﻿@charset "UTF-8";

*,
:after,
:before {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	outline: 0 !important;
}

.clear:after,
.clear:before {
	content: ' ';
	display: table;
}

.clear:after {
	clear: both;
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

body {
	background: #fff;
	font-family: Stem, sans-serif;
	font-size: 16px;
	color: #101010;
	padding-top: 222px;
}

@media screen and (max-width: 1199px) {
	body {
		padding-top: 182px;
	}
}

@media screen and (max-width: 1023px) {
	body {
		padding-top: 190px;
	}
}

@media screen and (max-width: 767px) {
	body {
		padding-top: 180px;
	}
}

body.scroll-locked {
	position: fixed;
	left: 0;
	width: 100%;
	height: 100dvh;
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration: none;
	transition: all 0.3s ease;
}

a:focus {
	outline: 0;
}

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

.no-scroll {
	position: fixed;
	width: 100%;
	overflow-y: scroll;
}

.wrapper {
	position: relative;
}

.container {
	margin-right: auto;
	margin-left: auto;
	max-width: 100%;
	width: 1630px;
	padding-left: 15px;
	padding-right: 15px;
}

.text-center {
	text-align: center;
}

.d-flex {
	display: flex;
}

.d-flex.a-center {
	align-items: center;
}

.d-flex.j-between {
	justify-content: space-between;
}

.d-flex.j-center {
	justify-content: center;
}

.d-flex.f-wrap {
	flex-wrap: wrap;
}

.d-flex.reverse {
	flex-direction: row-reverse;
}

ul.d-flex {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	height: 48px;
	padding: 0 20px;
	background-color: transparent;
	font-size: 15px;
	border-radius: 4px;
	border: none;
	font-weight: 400;
	max-width: 100%;
}

.btn i,
.btn svg {
	margin-right: 9px;
}

.btn i {
	font-size: 22px;
}

.btn.rose {
	background: #c42d96;
	color: #fff;
	border: 1px solid #c42d96;
}

.btn.rose:hover {
	background-color: #fff;
	color: #c42d96;
}

.btn.viol {
	background: #5c3da5;
	color: #fff;
	border: 1px solid #5c3da5;
}

.btn.viol:hover {
	background: #c42d96;
	border-color: #c42d96;
}

.btn.btn-border {
	border-width: 1px;
	border-style: solid;
	border-color: #6f6f6f;
	background: #fff;
}

.btn.btn-border:hover {
	color: #c42d96;
	border-color: #c42d96;
}

.btn.btn-border.rose {
	border-color: #c42d96;
	color: #c42d96;
}

.btn.btn-border.rose:hover {
	color: #fff;
	background-color: #c42d96;
}

.btn.btn-border.viol {
	border-color: #5c3da5;
	color: #5c3da5;
}

.btn.btn-border.viol:hover {
	color: #fff;
	background-color: #5c3da5;
}

.mob-logo {
	display: none;
}

@media screen and (max-width: 1023px) {
	.mob-logo {
		display: block;
	}
}

.banner {
	position: relative;
	display: none;
	overflow: hidden;
	padding: 12px 0;
	min-height: 72px;
	background-color: #0B935E;
}

.banner.active {
	display: block;
}

.banner .banner__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
}

.banner__info {
	display: grid;
	grid-row-gap: 4px;
}

.banner__info b {
	color: #FFF;
	font-family: Stem;
	font-size: 16px;
	font-weight: 500;
}

.banner__info span {
	color: #F9F3F7;
	opacity: 0.8;
	font-family: Stem;
	font-size: 13px;
	font-weight: 350;
	line-height: 1.23em;
}

.banner__btn-close {
	display: grid;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 100px;
	background-color: rgba(255, 255, 255, 0.10);
	border: none;
	cursor: pointer;
	transition: opacity 0.3s;
}

.banner__btn-close:hover {
	opacity: 0.6;
}

.banner__btn-close svg {
	width: 24px;
	height: 24px;
}

/* ----------snow--------- */

.snowflake {
	--size: 1vw;
	width: var(--size);
	height: var(--size);
	background: white;
	border-radius: 50%;
	position: absolute;
	top: -5vh;
}

@keyframes snowfall {
	0% {
		transform: translate3d(var(--left-ini), 0, 0);
	}
	100% {
		transform: translate3d(var(--left-end), 110vh, 0);
	}
}
.snowflake:nth-child(1) {
	--size: 0.2vw;
	--left-ini: -3vw;
	--left-end: 5vw;
	left: 2vw;
	animation: snowfall 11s linear infinite;
	animation-delay: -2s;
}

.snowflake:nth-child(2) {
	--size: 0.4vw;
	--left-ini: 2vw;
	--left-end: 6vw;
	left: 49vw;
	animation: snowfall 10s linear infinite;
	animation-delay: -5s;
}

.snowflake:nth-child(3) {
	--size: 0.2vw;
	--left-ini: -3vw;
	--left-end: -8vw;
	left: 91vw;
	animation: snowfall 11s linear infinite;
	animation-delay: -10s;
}

.snowflake:nth-child(4) {
	--size: 0.4vw;
	--left-ini: 1vw;
	--left-end: -6vw;
	left: 44vw;
	animation: snowfall 12s linear infinite;
	animation-delay: -10s;
}

.snowflake:nth-child(5) {
	--size: 0.4vw;
	--left-ini: -5vw;
	--left-end: -4vw;
	left: 77vw;
	animation: snowfall 10s linear infinite;
	animation-delay: -7s;
}

.snowflake:nth-child(6) {
	--size: 0.2vw;
	--left-ini: -7vw;
	--left-end: 1vw;
	left: 12vw;
	animation: snowfall 6s linear infinite;
	animation-delay: -2s;
}

.snowflake:nth-child(7) {
	--size: 0.6vw;
	--left-ini: 10vw;
	--left-end: -2vw;
	left: 22vw;
	animation: snowfall 6s linear infinite;
	animation-delay: -3s;
}

.snowflake:nth-child(8) {
	--size: 0.4vw;
	--left-ini: -7vw;
	--left-end: 1vw;
	left: 11vw;
	animation: snowfall 9s linear infinite;
	animation-delay: -2s;
}

.snowflake:nth-child(9) {
	--size: 0.2vw;
	--left-ini: 9vw;
	--left-end: -2vw;
	left: 65vw;
	animation: snowfall 12s linear infinite;
	animation-delay: -8s;
}

.snowflake:nth-child(10) {
	--size: 0.6vw;
	--left-ini: 10vw;
	--left-end: -8vw;
	left: 67vw;
	animation: snowfall 14s linear infinite;
	animation-delay: -7s;
}

.snowflake:nth-child(11) {
	--size: 0.4vw;
	--left-ini: 9vw;
	--left-end: 8vw;
	left: 65vw;
	animation: snowfall 6s linear infinite;
	animation-delay: -6s;
}

.snowflake:nth-child(12) {
	--size: 0.6vw;
	--left-ini: 2vw;
	--left-end: 3vw;
	left: 81vw;
	animation: snowfall 14s linear infinite;
	animation-delay: -6s;
}

.snowflake:nth-child(13) {
	--size: 0.4vw;
	--left-ini: 4vw;
	--left-end: -9vw;
	left: 9vw;
	animation: snowfall 12s linear infinite;
	animation-delay: -2s;
}

.snowflake:nth-child(14) {
	--size: 0.6vw;
	--left-ini: 3vw;
	--left-end: -4vw;
	left: 8vw;
	animation: snowfall 7s linear infinite;
	animation-delay: -9s;
}

.snowflake:nth-child(15) {
	--size: 0.6vw;
	--left-ini: 1vw;
	--left-end: 0vw;
	left: 51vw;
	animation: snowfall 14s linear infinite;
	animation-delay: -10s;
}

.snowflake:nth-child(16) {
	--size: 0.6vw;
	--left-ini: 5vw;
	--left-end: -7vw;
	left: 75vw;
	animation: snowfall 14s linear infinite;
	animation-delay: -5s;
}

.snowflake:nth-child(17) {
	--size: 0.2vw;
	--left-ini: -4vw;
	--left-end: 2vw;
	left: 21vw;
	animation: snowfall 10s linear infinite;
	animation-delay: -8s;
}

.snowflake:nth-child(18) {
	--size: 0.2vw;
	--left-ini: -1vw;
	--left-end: -6vw;
	left: 29vw;
	animation: snowfall 10s linear infinite;
	animation-delay: -7s;
}

.snowflake:nth-child(19) {
	--size: 0.4vw;
	--left-ini: -3vw;
	--left-end: -4vw;
	left: 51vw;
	animation: snowfall 8s linear infinite;
	animation-delay: -7s;
}

.snowflake:nth-child(20) {
	--size: 0.6vw;
	--left-ini: 0vw;
	--left-end: -8vw;
	left: 10vw;
	animation: snowfall 7s linear infinite;
	animation-delay: -6s;
}

.snowflake:nth-child(21) {
	--size: 0.4vw;
	--left-ini: 10vw;
	--left-end: 5vw;
	left: 20vw;
	animation: snowfall 8s linear infinite;
	animation-delay: -9s;
}

.snowflake:nth-child(22) {
	--size: 0.2vw;
	--left-ini: 2vw;
	--left-end: 3vw;
	left: 10vw;
	animation: snowfall 13s linear infinite;
	animation-delay: -8s;
}

.snowflake:nth-child(23) {
	--size: 0.2vw;
	--left-ini: -2vw;
	--left-end: -2vw;
	left: 71vw;
	animation: snowfall 10s linear infinite;
	animation-delay: -5s;
}

.snowflake:nth-child(24) {
	--size: 0.2vw;
	--left-ini: -2vw;
	--left-end: 7vw;
	left: 9vw;
	animation: snowfall 10s linear infinite;
	animation-delay: -6s;
}

.snowflake:nth-child(25) {
	--size: 0.2vw;
	--left-ini: -9vw;
	--left-end: 4vw;
	left: 89vw;
	animation: snowfall 10s linear infinite;
	animation-delay: -7s;
}

.snowflake:nth-child(26) {
	--size: 0.2vw;
	--left-ini: 8vw;
	--left-end: 8vw;
	left: 23vw;
	animation: snowfall 8s linear infinite;
	animation-delay: -4s;
}

.snowflake:nth-child(27) {
	--size: 0.2vw;
	--left-ini: 0vw;
	--left-end: 7vw;
	left: 98vw;
	animation: snowfall 7s linear infinite;
	animation-delay: -4s;
}

.snowflake:nth-child(28) {
	--size: 0.2vw;
	--left-ini: -1vw;
	--left-end: -2vw;
	left: 96vw;
	animation: snowfall 12s linear infinite;
	animation-delay: -8s;
}

.snowflake:nth-child(29) {
	--size: 0.6vw;
	--left-ini: 3vw;
	--left-end: -4vw;
	left: 23vw;
	animation: snowfall 15s linear infinite;
	animation-delay: -6s;
}

.snowflake:nth-child(30) {
	--size: 0.6vw;
	--left-ini: -3vw;
	--left-end: 2vw;
	left: 44vw;
	animation: snowfall 9s linear infinite;
	animation-delay: -2s;
}

.snowflake:nth-child(31) {
	--size: 0.6vw;
	--left-ini: 7vw;
	--left-end: 2vw;
	left: 49vw;
	animation: snowfall 12s linear infinite;
	animation-delay: -8s;
}

.snowflake:nth-child(32) {
	--size: 0.2vw;
	--left-ini: 10vw;
	--left-end: -3vw;
	left: 38vw;
	animation: snowfall 15s linear infinite;
	animation-delay: -8s;
}

.snowflake:nth-child(33) {
	--size: 0.6vw;
	--left-ini: -6vw;
	--left-end: 1vw;
	left: 22vw;
	animation: snowfall 14s linear infinite;
	animation-delay: -5s;
}

.snowflake:nth-child(34) {
	--size: 0.6vw;
	--left-ini: -1vw;
	--left-end: 5vw;
	left: 45vw;
	animation: snowfall 11s linear infinite;
	animation-delay: -3s;
}

.snowflake:nth-child(35) {
	--size: 0.4vw;
	--left-ini: 10vw;
	--left-end: -5vw;
	left: 54vw;
	animation: snowfall 10s linear infinite;
	animation-delay: -9s;
}

.snowflake:nth-child(36) {
	--size: 0.6vw;
	--left-ini: 2vw;
	--left-end: -3vw;
	left: 3vw;
	animation: snowfall 6s linear infinite;
	animation-delay: -7s;
}

.snowflake:nth-child(37) {
	--size: 0.4vw;
	--left-ini: -7vw;
	--left-end: 4vw;
	left: 22vw;
	animation: snowfall 7s linear infinite;
	animation-delay: -8s;
}

.snowflake:nth-child(38) {
	--size: 0.6vw;
	--left-ini: 5vw;
	--left-end: -7vw;
	left: 39vw;
	animation: snowfall 8s linear infinite;
	animation-delay: -3s;
}

.snowflake:nth-child(39) {
	--size: 0.4vw;
	--left-ini: 2vw;
	--left-end: -9vw;
	left: 96vw;
	animation: snowfall 15s linear infinite;
	animation-delay: -7s;
}

.snowflake:nth-child(40) {
	--size: 0.6vw;
	--left-ini: -3vw;
	--left-end: -3vw;
	left: 96vw;
	animation: snowfall 11s linear infinite;
	animation-delay: -9s;
}

.snowflake:nth-child(41) {
	--size: 0.4vw;
	--left-ini: 5vw;
	--left-end: 6vw;
	left: 80vw;
	animation: snowfall 7s linear infinite;
	animation-delay: -3s;
}

.snowflake:nth-child(42) {
	--size: 0.4vw;
	--left-ini: 6vw;
	--left-end: -4vw;
	left: 92vw;
	animation: snowfall 7s linear infinite;
	animation-delay: -8s;
}

.snowflake:nth-child(43) {
	--size: 0.2vw;
	--left-ini: -4vw;
	--left-end: 0vw;
	left: 76vw;
	animation: snowfall 8s linear infinite;
	animation-delay: -9s;
}

.snowflake:nth-child(44) {
	--size: 0.4vw;
	--left-ini: -6vw;
	--left-end: -2vw;
	left: 85vw;
	animation: snowfall 9s linear infinite;
	animation-delay: -4s;
}

.snowflake:nth-child(45) {
	--size: 0.6vw;
	--left-ini: -9vw;
	--left-end: -4vw;
	left: 90vw;
	animation: snowfall 7s linear infinite;
	animation-delay: -3s;
}

.snowflake:nth-child(46) {
	--size: 0.6vw;
	--left-ini: 7vw;
	--left-end: 0vw;
	left: 72vw;
	animation: snowfall 11s linear infinite;
	animation-delay: -9s;
}

.snowflake:nth-child(47) {
	--size: 0.6vw;
	--left-ini: 8vw;
	--left-end: 9vw;
	left: 57vw;
	animation: snowfall 8s linear infinite;
	animation-delay: -8s;
}

.snowflake:nth-child(48) {
	--size: 0.4vw;
	--left-ini: 4vw;
	--left-end: -1vw;
	left: 98vw;
	animation: snowfall 11s linear infinite;
	animation-delay: -6s;
}

.snowflake:nth-child(49) {
	--size: 0.2vw;
	--left-ini: -6vw;
	--left-end: 2vw;
	left: 88vw;
	animation: snowfall 10s linear infinite;
	animation-delay: -5s;
}

.snowflake:nth-child(50) {
	--size: 0.6vw;
	--left-ini: -7vw;
	--left-end: -2vw;
	left: 89vw;
	animation: snowfall 13s linear infinite;
	animation-delay: -9s;
}

/* added small blur every 6 snowflakes*/
.snowflake:nth-child(6n) {
	filter: blur(1px);
}

/* ---------------------------------- */

/* ----------a-pop-up-window--------- */

.a-pop-up-window {
	position: absolute;
	z-index: 10;
	top: calc(100% + 19px);
	right: 0;
	width: 480px;
	background-color: #fff;
	box-shadow: 0px 4px 23px 0px rgba(0, 0, 0, 0.05);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
}

.a-pop-up-window.active {
	opacity: 1;
	pointer-events: auto;
}

.a-pop-up-window__block-head {
	display: grid;
	grid-auto-flow: column;
	justify-content: space-between;
	align-items: center;
	padding: 26px;
}

.a-pop-up-window__title {
	color: #101010;
	opacity: 0.9;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.2em;
}

.a-pop-up-window__btn-close {
	background-color: transparent;
	padding: 0;
	margin: 0;
	display: grid;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 1px solid;
	border-color: #E0E0DD;
	border-radius: 100px;
	cursor: pointer;
	transition: border-color 0.3s;
}

.a-pop-up-window__btn-close:hover {
	border-color: #C42D96;
}

.a-pop-up-window__btn-close:hover svg path {
	stroke: #C42D96;
}

.a-pop-up-window__btn-close svg {
	width: 20px;
	height: 20px;
}

.a-pop-up-window__btn-close svg path {
	transition: stroke 0.3s;
}

.a-pop-up-window__block-cards {
	display: grid;
	max-height: 340px;
	overflow-x: hidden;
	overflow-y: auto;
}

.a-pop-up-window__card {
	display: grid;
	grid-template-columns: max-content 189px auto max-content;
	padding: 22px 26px;
	border-bottom: 1px solid #DAD9D9;
}

.a-pop-up-window__card-block-img {
	width: 68px;
	height: 68px;
	transition: opacity 0.3s;
}

.a-pop-up-window__card-block-img:hover {
	opacity: 0.6;
}

.a-pop-up-window__card-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.a-pop-up-window__card-block-info {
	display: grid;
	grid-row-gap: 2px;
	padding-left: 19px;
}

.a-pop-up-window__card-category {
	color: #969696;
	font-size: 13px;
	font-weight: 400;
}

.a-pop-up-window__card-name {
	color: #101010;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.53em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	transition: color 0.3s;
}

.a-pop-up-window__card-name:hover {
	color: #C42D96;
}

.a-pop-up-window__card-block-price {
	display: grid;
	align-content: start;
	grid-row-gap: 6px;
	justify-self: end;
	padding: 0 28px;
}

.a-pop-up-window__card-price-old {
	color: #AAA;
	text-align: right;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.71em;
	text-decoration: line-through;
}

.a-pop-up-window__card-price {
	color: #101010;
	opacity: 0.9;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.33em;
}

.a-pop-up-window__card-btn-del {
	align-self: center;
	width: 18px;
	height: 18px;
	background-color: transparent;
	padding: 0;
	margin: 0;
	cursor: pointer;
	border: none;
}

.a-pop-up-window__card-btn-del:hover svg path {
	stroke: #C42D96;
}

.a-pop-up-window__card-btn-del svg {
	width: 100%;
	height: 100%;
}

.a-pop-up-window__card-btn-del svg path {
	transition: stroke 0.3s;
}

.a-pop-up-window__block-footer {
	display: grid;
	justify-content: center;
	padding: 30px 26px;
}

.a-pop-up-window__block-footer .btn {
	border-radius: 6px;
}

@media screen and (max-width: 1023px) {
	.a-pop-up-window {
		position: fixed;
		top: auto;
		bottom: 42px;
		left: 0;
		width: 100vw;
	}
}

@media screen and (max-width: 490px) {
	.a-pop-up-window__block-cards {
		height: 250px;
	}

	.a-pop-up-window__card {
		position: relative;
		grid-template-columns: 68px 1fr;
		grid-row-gap: 20px;
	}

	.a-pop-up-window__card-btn-del {
		position: absolute;
		top: 10px;
		right: 20px;
	}

	.a-pop-up-window__card-block-price {
		grid-auto-flow: column;
		align-items: end;
		grid-column-gap: 10px;
		grid-column: 1/3;
		width: 100%;
		justify-content: start;
		padding: 0;
	}

	.a-pop-up-window__card-price {
		order: 1;
	}

	.a-pop-up-window__card-block-info {
		padding: 0 20px 0 20px;
	}

	.a-pop-up-window__card-price-old {
		order: 2;
		text-align: left;
	}

	.a-pop-up-window__block-footer {
		justify-content: inherit;
	}
}

/* -----------favorites--------*/

.favorites {
	margin-top: 40px;
}

.favorites .product-item:hover {
	box-shadow: none;
}

.favorites .product-item__block-btns-action.product-item__block-btns-action--compare {
	top: 0;
	opacity: 1;
	pointer-events: auto;
}

.favorites .product-item__block-btns-action.product-item__block-btns-action--compare .btn-action__icon {
	transition: border-color 0.3s, background-color 0.3s;
}

.favorites .product-item__block-btns-action.product-item__block-btns-action--compare svg path {
	transition: fill 0.3s, stroke 0.3s;
}

.favorites .product-item__block-btns-action.product-item__block-btns-action--compare:hover .btn-action__icon {
	border-color: #5C3DA5;
	background-color: #5C3DA5;
}

.favorites .product-item__block-btns-action.product-item__block-btns-action--compare:hover svg path {
	fill: #fff;
	stroke: #fff;
}

.favorites .product-item__block-btns-action.product-item__block-btns-action--compare .btn-action--compare.active ~ .btn-action__icon {
	border-color: #5C3DA5;
	background-color: #5C3DA5;
}

.favorites .product-item__block-btns-action.product-item__block-btns-action--compare .btn-action--compare.active ~ .btn-action__icon > svg path {
	fill: #fff;
	stroke: #fff;
}

.favorites .product-item__block-btns-action {
	position: relative;
	top: 0;
	right: 0;
}

.favorites .select {
	display: none;
}

.favorites__title {
	font-size: 30px;
	font-weight: 400;
	line-height: 0.8em;
}

.favorites__content {
	padding: 30px 40px 132px 40px;
	margin: 58px 0;
	background-color: #fff;
}

.favorites__wrap-settings {}

.favorites__wrap-select {
	display: grid;
	grid-template-columns: 1fr max-content;
	justify-content: space-between;
	grid-column-gap: 39px;
}

.favorites__inner-select {
	display: grid;
	grid-template-columns: repeat(auto-fit, 210px);
	grid-column-gap: 20px;
	grid-row-gap: 20px;
}

.favorites__link-tab {
	display: grid;
	grid-auto-flow: column;
	justify-content: space-between;
	min-height: 32px;
	padding: 7px 14px 7px 10px;
	border-radius: 4px;
	background-color: #F8F8F8;
	transition: background-color 0.3s;
}

.favorites__link-tab:not(.active):hover {
	background-color: #e7e7e7;
}

.favorites__link-tab.active {
	background-color: #C42D96;
}

.favorites__link-tab.active span {
	color: #fff;
}

.favorites__link-tab span {
	color: #101010;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.34em;
	transition: color 0.3s;
}

.favorites__del {
	display: grid;
	grid-auto-flow: column;
	align-items: center;
	grid-column-gap: 13px;
	cursor: pointer;
	transition: opacity 0.3s;
}

.favorites__del:hover {
	opacity: 0.6;
}

.favorites__del-icon {
	display: grid;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border: 1px solid;
	border-color: #E0E0DD;
	border-radius: 100px;
	transition: border-color 0.3s;
}

.favorites__del-icon svg {
	width: 12px;
	height: 12px;
}

.favorites__del span {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.71em;
}

.favorites__tabs-cards {
	position: relative;
	margin-top: 70px;
}

.favorites__wrap-cards {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s, position 0.3s;
}

.favorites__wrap-cards.active {
	position: relative;
	opacity: 1;
	pointer-events: auto;
}

.favorites__slider-btn {
	position: absolute;
	z-index: 3;
	top: 150px;
	padding: 0;
	margin: 0;
	display: grid;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	box-shadow: 0px 3px 20px rgba(121, 121, 121, 0.20);
	background-color: #fff;
	border-radius: 100px;
	border: none;
	transition: box-shadow 0.3s;
}

.favorites__slider-btn[disabled] {
	display: none;
}

.favorites__slider-btn:hover {
	box-shadow: none;
}

.favorites__slider-btn svg {
	width: 18px;
	height: 18px;
}

.favorites__slider-btn.favorites__slider-btn--prev {
	left: 0;
	transform: translateX(-50%);
}

.favorites__slider-btn.favorites__slider-btn--next {
	right: 0;
	transform: translateX(50%);
}

.favorites__block-nav-mob {
	display: none;
}

@media screen and (max-width: 1200px) {
	.favorites {
		margin-top: 38px;
	}

	.favorites__content {
		padding: 20px;
		margin: 38px 0 90px 0;
	}

	.favorites__tabs-cards {
		margin-top: 70px;
	}

	.favorites__slider-btn.favorites__slider-btn--next {
		transform: translateX(80%);
	}

	.favorites__slider-btn.favorites__slider-btn--prev {
		transform: translateX(-80%);
	}

	.favorites .product-item .name {
		margin-bottom: 32px;
	}
}

@media screen and (max-width: 768px) {
	.favorites .select {
		display: grid;
	}

	.favorites__inner-select {
		display: none;
	}
}

@media screen and (max-width: 576px) {
	.favorites__block-nav-mob {
		display: grid;
		grid-auto-flow: column;
		justify-content: space-between;
		align-items: center;
	}

	.favorites__nav-mob-btn {
		padding: 0;
		margin: 0;
		background-color: transparent;
		border: none;
		width: 18px;
		height: 18px;
	}

	.favorites__nav-mob-btn svg {}

	.favorites__nav-mob-counter {
		color: #626262;
		text-align: center;
		font-size: 16px;
		font-weight: 500;
		line-height: 1.2em;
	}

	.favorites__del span:nth-child(2) {
		display: none;
	}

	.favorites__slider-cards {
		margin-top: 40px;
	}

	.favorites__title {
		font-size: 24px;
	}

	.favorites__tabs-cards {
		margin-top: 33px;
	}

	.favorites__content {
		width: 100vw;
		padding: 20px 15px 70px 15px;
		margin: 30px 0 70px -15px;
	}

	.favorites__slider-cards .swiper-slide {
		padding: 0;
	}

	.favorites .product-item .thumb {
		height: 140px;
		margin-bottom: 25px;
	}

	.favorites__slider-btn {
		display: none;
	}

	.favorites .product-item .btn {
		width: 44px;
		height: 30px;
	}

	.favorites .product-item .btn .icon-Cart {
		display: grid;
	}

	.favorites .product-item .btn .icon-Cart::before {
		font-size: 18px;
	}

	.favorites .product-item__category-name {
		display: none;
	}

	.favorites .product-item .name {
		margin-bottom: 20px;
	}

	.favorites .product-item .item-bottom {
		justify-content: space-between;
	}

	.favorites .product-item__wrap-action {
		grid-row-gap: 15px;
	}

	.favorites .product-item .item-bottom .btn {
		margin-left: 0;
	}
}

/* =======favorites==========*/

.fix-cards {
	position: fixed;
	z-index: 11;
	top: 0;
	left: 0;
	width: 100%;
	padding: 0 40px;
	background-color: #fff;
	box-shadow: 0px 4px 23px 0px rgba(0, 0, 0, 0.05);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
}

.fix-cards .swiper-wrapper {
	height: 270px !important;
}

.fix-cards.active {
	opacity: 1;
	pointer-events: auto;
}

.fix-cards .container {
	position: relative;
}

.fix-cards .product-item__wrap-action,
.fix-cards .product-item__category-name,
.fix-cards .product-item .name {
	display: none;
}

.fix-cards .product-item {
	padding: 0;
}

.fix-cards .product-item:hover {
	box-shadow: none;
}

.compare .fix-cards .product-item .thumb {
	height: 150px;
	margin-bottom: 25px;
}

.fix-cards .compare__slider-btn {
	top: 50%;
}

.fix-cards .compare__slider-btn.compare__slider-btn--prev {
	transform: translate(-50%, -50%);
}

.fix-cards .compare__slider-btn.compare__slider-btn--next {
	transform: translate(50%, -50%);
}

.compare {
	margin-top: 40px;
}

.compare.compare--diff .compare__value-spec.compare__value-spec--diff {
	color: #fff;
}

.compare.compare--diff .compare__value-spec.compare__value-spec--diff::before {
	opacity: 1;
	pointer-events: auto;
}

.compare .product-item {
	height: 100%;
	padding: 0;
}

.compare .product-item:hover {
	box-shadow: none;
}

.compare .product-item .item-bottom {
	justify-content: start;
	align-items: end;
}

.compare .product-item .item-bottom .btn {
	margin-left: 25px;
}

.compare__title {
	font-size: 30px;
	font-weight: 400;
	line-height: 0.8em;
}

.compare__content {
	overflow: hidden;
	padding: 30px 40px;
	margin: 58px 0;
	background-color: #fff;
}

.compare__wrap-settings {

}

.compare__wrap-select {
	display: grid;
	grid-template-columns: 1fr max-content;
	justify-content: space-between;
	grid-column-gap: 39px;
}

.compare__inner-select {
	display: grid;
	grid-template-columns: repeat(auto-fit, 210px);
	grid-column-gap: 20px;
	grid-row-gap: 20px;
}

.compare__link-tab {
	display: grid;
	grid-auto-flow: column;
	justify-content: space-between;
	min-height: 32px;
	padding: 7px 14px 7px 10px;
	border-radius: 4px;
	background-color: #F8F8F8;
	transition: background-color 0.3s;
}

.compare__link-tab:not(.active):hover {
	background-color: #e7e7e7;
}

.compare__link-tab.active {
	background-color: #C42D96;
}

.compare__link-tab.active span {
	color: #fff;
}

.compare__link-tab span {
	color: #101010;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.34em;
	transition: color 0.3s;
}

.compare__del {
	display: grid;
	grid-auto-flow: column;
	align-items: center;
	grid-column-gap: 13px;
	cursor: pointer;
	transition: opacity 0.3s;
}

.compare__del:hover {
	opacity: 0.6;
}

.compare__del-icon {
	display: grid;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border: 1px solid;
	border-color: #E0E0DD;
	border-radius: 100px;
	transition: border-color 0.3s;
}

.compare__del-icon svg {
	width: 12px;
	height: 12px;
}

.compare__del span {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.71em;
}

.compare__wrap-choice {
	display: grid;
	grid-auto-flow: column;
	justify-content: start;
	grid-column-gap: 45px;
	margin-top: 40px;
}

.compare__tabs-cards {
	position: relative;
	margin-top: 70px;
}

.compare__wrap-cards {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s, position 0.3s;
}

.compare__wrap-cards.active {
	position: relative;
	opacity: 1;
	pointer-events: auto;
}

.compare__slider-btn {
	position: absolute;
	z-index: 3;
	top: 150px;
	padding: 0;
	margin: 0;
	display: grid;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	box-shadow: 0px 3px 20px rgba(121, 121, 121, 0.20);
	background-color: #fff;
	border-radius: 100px;
	border: none;
	transition: box-shadow 0.3s;
}

.compare__slider-btn[disabled] {
	display: none;
}

.compare__slider-btn:hover {
	box-shadow: none;
}

.compare__slider-btn svg {
	width: 18px;
	height: 18px;
}

.compare__slider-btn.compare__slider-btn--prev {
	left: 0;
	transform: translateX(-50%);
}

.compare__slider-btn.compare__slider-btn--next {
	right: 0;
	transform: translateX(50%);
}

.product-item__wrap-action {
	position: absolute;
	top: 0;
	right: 0;
	display: grid;
	grid-auto-flow: column;
	justify-content: end;
	grid-column-gap: 10px;
	grid-row-gap: 10px;
}

.product-item__action,
.product-item__action-favorites-block-icon {
	display: grid;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 100px;
	border: 1px solid;
	border-color: #E0E0DD;
	background-color: #fff;
	cursor: pointer;
	transition: background-color 0.3s, border-color 0.3s;
}

.product-item__action input,
.product-item__action-favorites input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.product-item__action-favorites input.active ~ .product-item__action-favorites-block-icon,
.product-item__action-favorites-block-icon:hover,
.product-item__action.active,
.product-item__action:hover {
	border-color: #5C3DA5;
	background-color: #5C3DA5;
}

.product-item__action.active path,
.product-item__action:hover path,
.product-item__action-favorites:hover path,
.product-item__action-favorites input.active ~ .product-item__action-favorites-block-icon path {
	fill: #fff;
	stroke: #fff;
}

.product-item__action path,
.product-item__action-favorites-block-icon path {
	transition: stroke 0.3s, fill 0.3s;
}

.compare__wrap-spec {}

.compare__block-spec {
	margin-top: 47px;
}

.compare__title-spec {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.08em;
}

.compare__slider-cards {}

.compare__slider-cards .swiper-slide {
	z-index: 3;
	padding: 30px 0;
	height: 100%;
}

.compare__slider-spec {
	margin-top: 55px;
}

.compare__slider-spec .swiper-slide {
	display: grid;
	grid-row-gap: 50px;
}

.compare__slider-spec .swiper-slide:not(:first-child) .compare__block-info-spec {
	/*padding: 0 30px;*/
}

.compare__block-info-spec {
	display: grid;
	grid-row-gap: 15px;
	align-content: start;
}

.compare__property-spec {
	color: #AAA;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.3em;
}

.compare__value-spec {
	max-width: 245px;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.73em;
}

.compare__value-spec.compare__value-spec--diff {
	position: relative;
	transition: color 0.3s;
}

.compare__value-spec.compare__value-spec--diff::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 10px;
	height: 2px;
	opacity: 0;
	pointer-events: none;
	background-color: #101010;
	transition: opacity 0.3s;
}

.compare .product-item .thumb {
	height: 230px;
	margin-bottom: 49px;
}

.compare .select {
	display: none;
}

.compare__block-nav-mob {
	display: none;
}

@media screen and (max-width: 1200px) {
	.compare {
		margin-top: 38px;
	}

	.compare__content {
		padding: 20px;
		margin: 38px 0 90px 0;
	}

	.compare__tabs-cards {
		margin-top: 60px;
	}

	.product-item__wrap-action {
		grid-auto-flow: row;
	}

	.compare__slider-btn.compare__slider-btn--next {
		transform: translateX(80%);
	}

	.compare__slider-btn.compare__slider-btn--prev {
		transform: translateX(-80%);
	}

	.compare__wrap-choice {
		margin-top: 32px;
	}

	.compare .product-item .name {
		margin-bottom: 32px;
	}

	.compare .fix-cards .product-item {
		height: 220px;
	}

	.compare__block-spec {
		margin-top: 77px;
	}
}

@media screen and (max-width: 768px) {
	.compare .select {
		display: grid;
	}

	.compare__inner-select {
		display: none;
	}

	.compare__wrap-choice {
		overflow-x: auto;
		overflow-y: hidden;
	}

	.compare__wrap-choice::-webkit-scrollbar {
		width: 0;
	}

	.compare__wrap-choice .radio__text {
		white-space: nowrap;
	}
}

@media screen and (max-width: 576px) {
	.compare__block-nav-mob {
		display: grid;
		grid-auto-flow: column;
		justify-content: space-between;
		align-items: center;
	}

	.compare__nav-mob-btn {
		padding: 0;
		margin: 0;
		background-color: transparent;
		border: none;
		width: 18px;
		height: 18px;
	}

	.compare__nav-mob-btn svg {}

	.compare__nav-mob-counter {
		color: #626262;
		text-align: center;
		font-size: 16px;
		font-weight: 500;
		line-height: 1.2em;
	}

	.compare__del span:nth-child(2) {
		display: none;
	}

	.compare__slider-cards {
		margin-top: 40px;
	}

	.fix-cards .compare__slider-cards {
		margin-top: 0;
	}

	.fix-cards .compare__slider-btn {
		display: none;
	}

	.compare__wrap-choice {
		margin-top: 16px;
		grid-column-gap: 15px;
	}

	.compare__title {
		font-size: 24px;
	}

	.compare__block-info-spec {
		grid-row-gap: 10px;
	}

	.compare__property-spec {
		font-size: 15px;
	}

	.compare__tabs-cards {
		margin-top: 33px;
	}

	.compare__block-spec {
		margin-top: 55px;
	}

	.compare__slider-spec .swiper-slide {
		grid-row-gap: 40px;
	}

	.compare__content {
		width: 100vw;
		padding: 20px 15px 70px 15px;
		margin: 30px 0 70px -15px;
	}

	.compare__slider-cards .swiper-slide {
		padding: 0;
	}

	.compare .product-item .thumb {
		height: 140px;
		margin-bottom: 25px;
	}

	.compare .fix-cards .product-item {
		height: 100%;
	}

	.compare__slider-btn {
		display: none;
	}

	.compare .product-item .btn {
		width: 44px;
		height: 30px;
	}

	.compare .product-item .btn .icon-Cart {
		display: grid;
	}

	.compare .product-item .btn .icon-Cart::before {
		font-size: 18px;
	}

	.compare .product-item__category-name {
		display: none;
	}

	.fix-cards {
		padding: 25px 0;
	}

	.fix-cards .swiper-wrapper {
		height: 150px !important;
	}

	.compare .fix-cards .product-item .thumb {
		height: 90px;
		margin-bottom: 23px;
	}

	.fix-cards .compare__slider-cards .swiper-slide {
		padding: 0;
	}

	.compare .product-item .name {
		margin-bottom: 20px;
	}

	.compare .product-item .item-bottom {
		justify-content: space-between;
	}

	.compare .product-item__wrap-action {
		grid-row-gap: 15px;
	}

	.compare .product-item .item-bottom .btn {
		margin-left: 0;
	}
}

/* select ------------ */

.select {
	width: 286px;
}

.select.active .select__icon {
	transform: rotate(-180deg);
}

.select.active .select__body {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.select[disabled] {
	opacity: 0.6;
	pointer-events: none;
}

.select__field {
	position: relative;
}

.select__head {
	display: grid;
	grid-auto-flow: column;
	align-items: center;
	justify-content: space-between;
	grid-column-gap: 20px;
	background-color: #F8F8F8;
	border-radius: 8px;
	height: 42px;
	padding: 0 20px;
	cursor: pointer;
}

.select__value {
	font-size: 15px;
	line-height: 1.6em;
}

.select__icon {
	display: grid;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	transition: transform 0.3s;
}

.select__body {
	position: absolute;
	z-index: 10;
	top: calc(100% + 4px);
	left: 0;
	width: 100%;
	padding: 4px 0;
	border-radius: 8px;
	background-color: #F8F8F8;
	transform: translateY(5px);
	opacity: 0;
	pointer-events: none;
	transition: transform 0.3s, opacity 0.3s;
}

.select__list {
	display: grid;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.select__list li {
	display: grid;
	grid-template-columns: 203px max-content;
	justify-content: space-between;
	grid-column-gap: 10px;
	padding: 8px 20px;
	cursor: pointer;
	transition: opacity 0.3s;
}

.select__list li span {
	font-size: 15px;
}

.select__list li span:nth-child(2) {
	font-weight: 350;
}

.select__list li:hover {
	opacity: 0.6;
}

.select__list li.active {
	opacity: 0.6;
	pointer-events: none;
}

/* --------------- */

/* radio ------------ */

.radio:not([disabled]):hover>.radio__label .radio__text {
	color: #000;
	cursor: pointer;
}

.radio:not([disabled]):hover>.radio__label .radio__decore::before {
	border-color: #000;
}

.radio[disabled] {
	opacity: 0.6;
	pointer-events: none;
}

.radio[disabled] .radio__decore::before {
	background-color: #EBECEC;
	border-color: #EBECEC;
}

.radio__label {
	position: relative;
	display: grid;
	padding-left: 32px;
}

.radio__input {
	position: absolute;
	z-index: -1;
	opacity: 0;
	display: none;
}

.radio__input:checked~.radio__decore {
	border-color: #5C3DA5;
}

.radio__input:checked~.radio__decore::before,
.radio__input:checked~.radio__decore::after {
	opacity: 1;
}

.radio__text {
	color: #101010;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.71em;
}

.radio__decore {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	cursor: pointer;
	border-radius: 100px;
	border: 1px solid;
	border-color: #C2C2C2;
	transition: border-color 0.3s;
}

.radio__decore::before,
.radio__decore::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: opacity 0.3s;
}

.radio__decore::before {
	width: 100%;
	height: 100%;
	border-radius: 100px;
	background-color: #5C3DA5;
}

.radio__decore::after {
	width: 10px;
	height: 10px;
	border-radius: 100px;
	background-color: #fff;
}

/* ----------- */

.product-main__cols {
	position: relative;
}

.product-main__cols .btn-action__text {
	display: none;
}

.product-main__cols .product-header__block-btns-action {
	position: absolute;
	z-index: 3;
	top: 5px;
	right: 0;
	grid-auto-flow: row;
	grid-row-gap: 15px;
}

.product-header__block-btns-action {
	display: grid;
	grid-auto-flow: column;
	justify-content: end;
	grid-column-gap: 40px;
}

.btn-action {
	display: grid;
	grid-auto-flow: column;
	justify-content: start;
	align-items: center;
	grid-column-gap: 6px;
	cursor: pointer;
}

.btn-action input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.btn-action.active .btn-action__icon,
.btn-action.active ~ .btn-action__icon {
	border-color: #9E2579;
}

.btn-action.active .btn-action__icon svg path,
.btn-action.active ~ .btn-action__icon svg path {
	stroke: #9E2579;
}

.btn-action.active .btn-action__text,
.btn-action.active ~ .btn-action__text {
	color: #9E2579;
}

.btn-action:hover .btn-action__icon,
.btn-action:hover ~ .btn-action__icon {
	border-color: #9E2579;
}

.btn-action:hover .btn-action__icon svg path,
.btn-action:hover ~ .btn-action__icon svg path {
	stroke: #9E2579;
}

.btn-action:hover .btn-action__text,
.btn-action:hover ~ .btn-action__text {
	color: #9E2579;
}

.btn-action__icon {
	display: grid;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 100px;
	border: 1px solid;
	border-color: #E0E0DD;
	background-color: #fff;
	transition: border-color 0.3s;
}

.btn-action__icon svg path {
	transition: stroke 0.3s;
}

.btn-action__text {
	color: #626262;
	font-size: 15px;
	transition: color 0.3s;
	white-space: nowrap;
}

.header {
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100vw;
	transition: transform 0.3s;
}

.header.header--fixed .fast-links {
	opacity: 0;
	pointer-events: none;
	margin-top: -90px;
}

.header.second {
	background: #fff;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.header.second .second-mob-toggle {
	display: none;
	font-size: 0;
	line-height: 0;
}

.header-actions__action {
	cursor: pointer;
}

.header-actions__action.not-active {
	opacity: 0.4;
	pointer-events: none;
}

.header-actions__action img {
	width: 32px;
	height: 32px;
}

@media screen and (max-width: 1023px) {
	.header-actions__action img {
		max-width: max-content;
		width: 28px;
		height: 28px;
	}
}

@media screen and (max-width: 767px) {
	.header.second .second-mob-toggle {
		display: block;
	}
}

.header.second .logo {
	width: 210px;
	height: 58px;
}

.header.second .logo img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.header.second .second-header-flex {
	height: 88px;
}

.header.second .second-menu {
	margin-right: auto;
	margin-left: 92px;
}

.header.second .second-menu li {
	font-size: 16px;
	line-height: 21px;
	color: #6f6f6f;
	margin-right: 68px;
}

.header.second .second-menu li a:hover {
	color: #c42d96;
}

.header.second .header-phone {
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
}

.header.second .header-phone:hover {
	color: #c42d96;
}

.header .header-top {
	background-color: #1b1b1b;
	color: #fff;
}

.header .header-top .header-flex {
	height: 42px;
}

.header .header-top .htop-menu {
	margin: 0;
	height: 42px;
}

.header .header-top .htop-menu li {
	margin-right: 44px;
	height: 100%;
	font-size: 14px;
}

.header .header-top .htop-menu li a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	position: relative;
}

.header .header-top .htop-menu li a:before {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	height: 0;
	border-bottom: 2px solid #ff80d8;
	opacity: 0;
	transition: all 0.3s ease;
}

.header .header-top .htop-menu li a:active::before,
.header .header-top .htop-menu li a:focus::before,
.header .header-top .htop-menu li a:hover::before {
	opacity: 1;
}

.header .header-top .to_director {
	height: 42px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background-color: #9e2579;
	padding: 0 14px;
	font-size: 14px;
	line-height: 1;
}

.header .header-top .to_director i {
	margin-right: 10px;
	font-size: 20px;
}

.header .header-top .header-phone {
	margin-left: 40px;
	margin-right: 16px;
	font-weight: 500;
	font-size: 18px;
	line-height: 42px;
	position: relative;
	white-space: nowrap;
}

.header .header-top .header-phone::before {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	height: 0;
	border-bottom: 2px solid #ff80d8;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.header .header-top .header-phone:active::before,
.header .header-top .header-phone:focus::before,
.header .header-top .header-phone:hover::before {
	opacity: 1;
}

.header .header-top .info-link {
	font-size: 20px;
	line-height: 1;
}

.header .header-bottom {
	position: relative;
	z-index: 1;
	background-color: #9e2579;
	color: #fff;
	padding: 17px 0;
}

.header .header-bottom .logo {
	margin-right: 55px;
	width: 210px;
	min-width: 210px;
	height: 58px;
}

.header .header-bottom .logo img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.header .header-bottom .btn-catalog {
	border: 1px solid #fff;
	box-sizing: border-box;
	border-radius: 8px;
	height: 54px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	width: 140px;
	min-width: 140px;
	line-height: 1;
	margin-right: 20px;
}

.header .header-bottom .btn-catalog i {
	margin-right: 9px;
	font-size: 24px;
}

.header-actions {
	margin: 0;
}

.header-actions li {
	position: relative !important;
}

.header-actions li + li {
	border-left: 1px solid #fff;
}

.header-actions li {
	display: flex;
	align-items: center;
	height: 54px;
	padding: 0 30px;
	position: relative;
	min-width: 92px;
}

.header-actions li .prod-list {
	display: none;
	width: 480px;
	position: absolute;
	z-index: 10;
	top: 100%;
	margin-top: 10px;
	right: 0;
	background-color: #fff;
	box-shadow: 0 4px 23px rgba(0, 0, 0, 0.05);
	color: #101010;
}

.header-actions li .prod-list .pl-footer {
	padding: 30px 25px;
}

.header-actions li .prod-list .pl-footer .btn {
	height: 42px;
	width: 300px;
	max-width: 100%;
	font-size: 16px;
}

.header-actions li .prod-list .pl-header {
	display: flex;
	justify-content: space-between;
	padding: 25px 15px 15px 26px;
}

.header-actions li .prod-list .pl-header .title {
	font-size: 20px;
	line-height: 24px;
}

.header-actions li .prod-list .pl-header .close-this {
	border: 1px solid #e0e0dd;
	width: 32px;
	height: 32px;
	border-radius: 16px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.header-actions li .prod-list .pl-header .close-this i {
	font-size: 18px;
}

.header-actions li .prod-list .pl-header .close-this i:before {
	color: #626262;
}

.header-actions li .prod-list .pl-header .close-this:hover i:before {
	color: #c42d96;
}

.header-actions li .prod-list .pl-main .item {
	display: flex;
	justify-content: space-between;
	padding: 22px 15px 22px 26px;
	border-bottom: 1px solid #dad9d9;
}

.header-actions li .prod-list .pl-main .item .thumb {
	height: 68px;
	width: 60px;
	min-width: 60px;
	margin-right: 10px;
}

.header-actions li .prod-list .pl-main .item .thumb img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.header-actions li .prod-list .pl-main .item .category {
	color: #969696;
	font-size: 13px;
	margin-bottom: 5px;
	line-height: 17px;
}

.header-actions li .prod-list .pl-main .item .name {
	font-size: 13px;
	line-height: 20px;
}

.header-actions li .prod-list .pl-main .item .col:nth-child(2) {
	width: 190px;
	margin-right: auto;
}

.header-actions li .prod-list .pl-main .item .col:last-child {
	align-self: center;
	margin-left: 30px;
	font-size: 0;
}

.header-actions li .prod-list .pl-main .item .price {
	padding-top: 24px;
	position: relative;
}

.header-actions li .prod-list .pl-main .item .price .old {
	position: absolute;
	-webkit-text-decoration-line: line-through;
	text-decoration-line: line-through;
	font-size: 14px;
	line-height: 18px;
	color: #aaa;
	right: 0;
	top: 0;
}

.header-actions li .prod-list .pl-main .item .price .current {
	font-weight: 500;
	font-size: 18px;
	line-height: 24px;
}

.header-actions li .prod-list .pl-main .item .delete-item {
	border: none;
	padding: 0;
	background: 0 0;
	font-size: 0;
}

.header-actions li .prod-list .pl-main .item .delete-item i {
	font-size: 18px;
}

.header-actions li .prod-list .pl-main .item .delete-item i::before {
	color: #626262;
}

.header-actions li .prod-list .pl-main .item .delete-item:hover i::before {
	color: #c42d96;
}

.header-actions li i {
	font-size: 30px;
}

.header-actions li:last-child {
	padding-right: 0;
}

.header-actions li:last-child a {
	display: flex;
	align-items: center;
	white-space: nowrap;
	font-size: 13px;
	line-height: 16px;
}

.header-actions li:last-child a i {
	margin-right: 12px;
}

.header .header-bottom .search-wrap {
	width: 100%;
	background: #fff;
	border: 1px solid #fff;
	box-sizing: border-box;
	border-radius: 8px;
}

.header .header-bottom .search-wrap .d-flex {
	height: 54px;
	align-items: center;
	padding: 0 20px;
}

.header .header-bottom .search-wrap .input-wrap {
	width: 100%;
}

.header .header-bottom .search-wrap .input-wrap input {
	width: 100%;
	border: none;
	font-size: 18px;
	line-height: 27px;
}

.header .header-bottom .search-wrap .input-wrap input::-webkit-input-placeholder {
	color: #b7b7b7;
}

.header .header-bottom .search-wrap .input-wrap input::-moz-placeholder {
	color: #b7b7b7;
}

.header .header-bottom .search-wrap .input-wrap input:-ms-input-placeholder {
	color: #b7b7b7;
}

.header .header-bottom .search-wrap .input-wrap input:-moz-placeholder {
	color: #b7b7b7;
}

.header .header-bottom .search-wrap button {
	border: none;
	background: 0 0;
	font-size: 24px;
	line-height: 0;
	padding: 0;
}

.header .header-bottom .search-wrap button i {
	line-height: 1;
}

.header .fast-links {
	background: #fff;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: margin 0.3s, opacity 0.3s;
}

.header .fast-links ul {
	height: 88px;
	flex-wrap: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
}

.header .fast-links ul li {
	display: flex;
	align-items: center;
}

.header .fast-links ul li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	white-space: nowrap;
	font-size: 15px;
	line-height: 19px;
}

.header .fast-links ul li a i {
	margin-bottom: 6px;
	font-size: 28px;
}

.header .fast-links ul li a svg {
	margin-bottom: 6px;
	height: 28px;
	width: 28px;
}

.header .fast-links ul li a:hover {
	color: #c42d96;
}

.header-phone__info,
.header-address__info{
	margin-left: 24px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.286;
	color: #fff;
}

.header-phone__info p {
	margin: 0;
}

.announcement-bar {
	width: 100%;
	display: flex;
	background-color: #efeefe;
}

.announcement-bar__container {
	width: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 5px;
	padding-bottom: 6px;
}

.announcement-bar__content {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.266;
	color: #101010;
}

.header-top-menu {
	display: none;
}

.header-top-menu__burger-button {
	position: relative;
	width: 20px;
	height: 20px;
	padding: 0;
	border: 0;
	background: 0 0;
	-webkit-tap-highlight-color: transparent;
}

.header-top-menu__burger-button::after,
.header-top-menu__burger-button::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 2px;
	border-radius: 20px;
	background-color: #fff;
	transition: transform 0.2s ease-in-out;
}

.header-top-menu__burger-button::before {
	transform: translateY(6px);
}

.header-top-menu__burger-button::after {
	transform: translateY(12px);
}

.header-top-menu__burger-button--active::before {
	transform: translateY(9px) rotate(45deg);
}

.header-top-menu__burger-button--active::after {
	transform: translateY(9px) rotate(-45deg);
}

.header-top-menu__body {
	position: absolute;
	z-index: 10;
	width: 100%;
	left: 0;
	bottom: 0;
	transform: translateY(100%);
	overflow: hidden;
	transition: height 0.2s ease-in-out;
}

.ws-chat__hidden-button {
	position: absolute;
	z-index: 100;
	top: -6px;
	right: 0;
	padding: 0;
	background: #fff;
	border: 0;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 0 17px 2px rgba(34, 60, 80, 0.2);
	transition: opacity 0.2s ease-in-out;
}

.ws-chat__hidden-button::after,
.ws-chat__hidden-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 10px;
	height: 2px;
	border-radius: 20px;
	background-color: #101010;
	transition: transform 0.2s ease-in-out;
}

.ws-chat__hidden-button::before {
	transform: translateY(9px) translateX(-50%) rotate(45deg);
	transition-delay: 50ms;
}

.ws-chat__hidden-button::after {
	transform: translateY(9px) translateX(-50%) rotate(-45deg);
}

.ws-chat__hidden-button--active {
	opacity: 0.8;
}

.ws-chat__hidden-button--active::before {
	transform: translateY(9px) translateX(-50%) rotate(-90deg);
}

.ws-chat__hidden-button--active::after {
	transform: translateY(9px) translateX(-50%) rotate(-180deg);
}

.tg-bot-link{
	display: block;
	position: fixed;
	inset: auto 3% 7% auto;
	z-index: 20000;
}

.header-top-menu__body-container {
	position: absolute;
	width: 100%;
	bottom: 0;
}

.footer {
	background-color: #1b1b1b;
	color: #838383;
	padding-top: 72px;
}

.footer .footer-phone {
	color: #fff;
	font-weight: 500;
	font-size: 20px;
	line-height: 26px;
	/*margin-bottom: 44px;*/
	margin-bottom: 20px;
}

.footer.footer-second {
	padding: 41px 0;
}

.footer.footer-second .copyright {
	font-size: 15px;
}

.footer.footer-second .footer-phone {
	margin: 0;
}

@media screen and (max-width: 1199px) {
	.footer.footer-second .copyright {
		max-width: 560px;
	}
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
	.footer.footer-second .container {
		padding: 0 40px;
	}
}

.footer .footer-top .footer-contacts-wrap {
	display: flex;
	flex-direction: column;
}

.footer .footer-top .footer-contacts-wrap .btn {
	width: 210px;
	opacity: 0.9;
	margin-bottom: 20px;
}

.footer .footer-top .footer-contacts-wrap .btn.rose:hover i:before {
	color: #c42d96;
	transition: all 0.3s ease;
}

.footer .footer-top .footer-menu-wrap ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
	font-size: 15px;
	line-height: 26px;
}

.footer .footer-top .footer-menu-wrap ul li {
	margin-bottom: 10px;
}

.footer .footer-top .footer-menu-wrap .col:first-child {
	padding-right: 46px;
	border-right: 1px solid #393939;
}

.footer .footer-top .footer-menu-wrap .col:first-child ul {
	-moz-columns: 2;
	columns: 2;
}

.footer .footer-top .footer-menu-wrap .col:nth-child(2) {
	border-right: 1px solid #393939;
	padding: 0 70px;
}

.footer .footer-top .footer-menu-wrap .col:nth-child(3) {
	padding-left: 70px;
}
.footer .footer-top .footer-menu-wrap .col:nth-child(4) {
	display: none;
}

.footer .footer-top .col-title {
	color: #fff;
	margin-bottom: 26px;
	font-size: 18px;
	line-height: 23px;
}

.footer .footer-bottom {
	margin-top: 70px;
	border-top: 1px solid #393939;
}

.footer .footer-bottom .footer-logo {
	width: 193px;
	height: 53px;
	display: block;
}

.footer .footer-bottom .footer-logo img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.footer .footer-bottom > .d-flex {
	min-height: 127px;
}

.footer .footer-bottom .social-links li {
	margin-right: 10px;
	margin-left: 10px;
	line-height: 0;
	font-size: 48px;
}

.footer .footer-bottom .social-links li a {
	display: block;
	line-height: 0;
}

.icon-custom {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 1px solid #9c9c9c;
	border-radius: 50%;
}
.icon-custom svg {
	width: 50%;
	height: 50%;
}
.icon-custom svg path {
	fill: #9c9c9c;
}
.icon-custom.icon-Zen svg path:first-child {
	fill: #9c9c9c;
}
.icon-custom.icon-Zen svg path:last-child {
	fill: #1b1b1b;
}

.footer .footer-bottom .copyright {
	font-size: 14px;
	line-height: 18px;
	text-align: right;
	margin: 0;
}

.catalog-mega-menu {
	display: none;
	position: fixed;
	top: 42px;
	left: 0;
	width: 100%;
	height: calc(100vh - 42px);
	height: calc(100dvh - 42px);
	background-color: #fff;
	z-index: 100;
	padding-bottom: 40px;
}

.catalog-mega-menu .container {
	height: 100%;
}

.catalog-mega-menu .mm-header {
	padding-top: 15px;
	padding-bottom: 36px;
	align-items: center;
	justify-content: space-between;
}

.catalog-mega-menu .mm-header .logo {
	width: 210px;
	height: 58px;
}

.catalog-mega-menu .mm-header .logo img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.catalog-mega-menu .mm-header .close-menu {
	font-size: 24px;
	line-height: 1;
}

.catalog-mega-menu .mm-header .search-wrap {
	margin-right: auto;
	margin-left: 105px;
	padding-bottom: 6px;
	padding-top: 6px;
	border-bottom: 1px solid #dad9d9;
}

.catalog-mega-menu .mm-header .search-wrap .input-wrap {
	max-width: calc(100% - 28px);
}

.catalog-mega-menu .mm-header .search-wrap input {
	border: none;
	font-size: 18px;
	line-height: 28px;
	height: 28px;
	width: 1056px;
	max-width: 100%;
}

.catalog-mega-menu .mm-header .search-wrap button {
	border: none;
	background: 0 0;
	padding: 0;
	font-size: 24px;
	line-height: 1;
	height: 28px;
}

.catalog-mega-menu .mm-header .search-wrap button i:before {
	color: #b7b7b7;
}

.catalog-mega-menu .mm-header .search-wrap button:hover i:before {
	color: #c42d96;
}

.catalog-mega-menu .cat-list {
	display: none;
	height: 100%;
	overflow-y: auto;
}

.catalog-mega-menu .cat-list.active {
	display: block;
}

.catalog-mega-menu .col-title {
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 40px;
}

.catalog-mega-menu .mm-main {
	height: calc(100% - 109px);
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: #dad9d9 #f8f8f8;
}

.catalog-mega-menu .mm-main::-webkit-scrollbar {
	width: 4px;
	border-radius: 2px;
}

.catalog-mega-menu .mm-main::-webkit-scrollbar-track {
	background: #f8f8f8;
}

.catalog-mega-menu .mm-main::-webkit-scrollbar-thumb {
	background-color: #dad9d9;
	border-radius: 2px;
}

.catalog-mega-menu .mm-main .d-flex {
	height: 100%;
}

.catalog-mega-menu .mm-main .d-flex > .col:first-child {
	width: 275px;
	min-width: 275px;
	border-right: 1px solid #dad9d9;
	margin-right: 40px;
	padding-right: 24px;
}

.catalog-mega-menu .mm-main .categories-main {
	list-style-type: none;
	padding: 0;
	margin: 0;
	overflow-y: auto;
	height: calc(100% - 70px);
}

.catalog-mega-menu .mm-main .categories-main li {
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 36px;
}

.catalog-mega-menu .mm-main .categories-main li a {
	display: block;
	position: relative;
	padding-left: 45px;
}

.catalog-mega-menu .mm-main .categories-main li a i {
	position: absolute;
	left: 0;
	font-size: 24px;
}

.catalog-mega-menu .mm-main .categories-main li a svg {
	position: absolute;
	left: 0;
	height: 24px;
	width: 24px;
}

.catalog-mega-menu .mm-main .categories-main li.active a,
.catalog-mega-menu .mm-main .categories-main li:hover a {
	color: #c42d96;
}

.catalog-mega-menu .mm-main .categories-main li.active {
	background-image: url("ArrowRight.svg");
	background-repeat: no-repeat;
	background-position: 100% 50%;
	padding-right: 14px;
}

.catalog-mega-menu .mm-main .categories-main li.divider {
	display: flex;
	height: 1px;
	background: #dad9d9;
	margin-top: 44px;
}

.catalog-mega-menu .mm-main .categories-child {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: block;
}

.catalog-mega-menu .mm-main .categories-child > li {
	page-break-inside: avoid;
	-moz-column-break-inside: avoid;
	break-inside: avoid;
	margin-bottom: 37px;
}

.catalog-mega-menu .mm-main .categories-child > li > a {
	display: block;
	font-weight: 500;
	font-size: 16px;
	line-height: 30px;
}

.catalog-mega-menu .mm-main .categories-child > li ul {
	list-style-type: none;
	padding: 0;
	margin: 23px 0 0;
}

.catalog-mega-menu .mm-main .categories-child > li ul li {
	margin-bottom: 12px;
	font-size: 16px;
	line-height: 20px;
}

.catalog-mega-menu .mm-main .categories-child > li ul li a {
	color: #969696;
}

.catalog-mega-menu .mm-main .categories-child > li ul li a:hover {
	color: #c42d96;
}

.catalog-mega-menu .mm-main .categories-child > li.grid-sizer {
	width: 25%;
	margin: 0;
	padding: 0;
}

main {
	min-height: 300px;
}

main.gray-bg {
	background: #f8f8f8;
}

.main-home .section-first {
	margin-top: 41px;
}

.main-home .section-first .col:last-child {
	width: 20%;
}

.main-home .section-first .col:last-child .section-title {
	display: none;
}

.main-home .section-first .col:first-child {
	width: calc(80% - 40px);
}

.main-home .section-first .brands {
	margin-top: 58px;
	/*background: #f8f8f8;*/
	border-radius: 10px;
}

.main-home .section-first .brands .d-flex {
	justify-content: flex-start;
	/*height: 100px;*/
	margin: -8px -8px;
}
.main-home .section-first .brands .d-flex li {
	width: calc(100% / 8);
	padding: 0 8px;
	margin: 8px 0;
}
.main-home .section-first .brands .d-flex li a {
	padding: 0 15px;
	background: #f8f8f8;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100px;
	width: 100%;
	border-radius: 10px;
}
.main-home .section-first .brands .d-flex img {
	max-width: 120px;
	max-height: 100px;
	max-width: 100%;

}

.main-home .section-first .home-prod-slider .slick-arrow.slick-next {
	right: -21px;
}

.main-home .section-first .home-prod-slider .slick-arrow.slick-prev {
	left: -21px;
}

.main-home .section-first .home-prod-slider .product-item {
	background: #f8f8f8;
	border-radius: 10px;
	height: 100%;
}

.main-home .section-first .home-prod-slider .product-item .price .current {
	color: #c42d96;
}

.main-home .section-first .home-prod-slider .product-item .prod-sale {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 14px;
	padding-top: 9px;
}

.main-home .section-first .home-prod-slider .product-item .prod-sale p {
	margin: 0;
	font-weight: 500;
	font-size: 18px;
	line-height: 24px;
}

.main-home .section-first .home-prod-slider .product-item .prod-sale .counter {
	background-color: #c42d96;
	color: #fff;
	line-height: 30px;
	font-size: 16px;
	font-weight: 500;
	padding: 0 11px;
	margin-right: -30px;
	border-radius: 5px 0 0 5px;
}

.main-home .section-first .home-slider .inner {
	display: flex;
	flex-direction: column;
	border-radius: 10px;
	padding: 80px 105px 30px;
	position: relative;
	height: 100%;
}

.main-home .section-first .home-slider .inner img {
	position: absolute;
	bottom: 0;
	right: 95px;
	max-width: 50%;
	max-height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.main-home .section-first .home-slider .inner .item-title {
	font-weight: 700;
	font-size: 56px;
	line-height: 1.1;
	margin-bottom: 7px;
	width: 450px;
}

.main-home .section-first .home-slider .inner .item-text {
	font-size: 24px;
	margin-bottom: 45px;
}

.main-home .section-first .home-slider .inner .item-desc {
	font-size: 7px;
	margin-top: auto;
	color: #5c3da5;
}

.main-home .section-first .home-slider .inner .btn {
	width: 140px;
	border-radius: 8px;
	margin-bottom: 47px;
	font-size: 18px;
}

@media screen and (max-width: 1199px) {
	.main-home .section-first .home-slider .inner .btn {
		margin-bottom: 20px;
	}
}

.main-home .promo-slider {
	margin-bottom: 100px;
	margin-top: 60px;
}

.main-home .promo-slider + .slick-dots {
	margin-top: -100px;
	margin-bottom: 100px;
}

.main-home .promo-slider .slick-arrow.slick-next {
	right: -21px;
}

.main-home .promo-slider .slick-arrow.slick-prev {
	left: -21px;
}

.main-home .promo-slider .inner {
	background-color: rgba(245, 245, 246, 0.4);
	border-radius: 18px;
}

.main-home .promo-slider .inner .d-flex {
	height: 280px;
	align-items: center;
	padding-left: 20%;
	padding-right: 20%;
	justify-content: space-between;
}

.main-home .promo-slider .inner .d-flex .title {
	font-weight: 500;
	font-size: 40px;
	line-height: 50px;
	margin-bottom: 7px;
}

.main-home .promo-slider .inner .d-flex p {
	font-size: 20px;
	line-height: 1.1;
	margin: 0;
}

.main-home .promo-slider .inner img {
	-o-object-fit: contain;
	object-fit: contain;
	max-width: 265px;
	max-height: 223px;
}

.main-home .section-infoblock {
	margin-top: 140px;
}

.main-home .section-infoblock .d-flex {
	background: #f8f8f8;
	border-radius: 10px;
}

.main-home .section-infoblock .d-flex .item {
	/*height: 220px;*/
	width: 20%;
	padding: 40px 56px;
	position: relative;
}

.main-home .section-infoblock .d-flex .item:before {
	content: '';
	display: block;
	position: absolute;
	height: 160px;
	width: 1px;
	background: #e0e0dd;
	left: -1px;
	top: 50%;
	transform: translateY(-50%);
}

.main-home .section-infoblock .d-flex .item:first-child::before {
	display: none;
}

.main-home .section-infoblock .d-flex .item i {
	font-size: 48px;
}

.main-home .section-infoblock .d-flex .item svg {
	height: 96px;
}

.main-home .section-infoblock .d-flex .item .item-name {
	margin-top: 7px;
	font-weight: 500;
	font-size: 18px;
	/*line-height: 34px;*/
}

.main-home .section-infoblock .d-flex .item p {
	margin: 0;
	font-size: 14px;
	line-height: 18px;
	color: #9e9e9e;
}

.main-home .section-home-about {
	margin-bottom: 160px;
	margin-top: 105px;
}

.main-home .section-home-about .about-wrap {
	background: #EEF2FE;
	border-radius: 10px;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
}

.main-home .section-home-about .about-wrap a {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.main-home .section-home-about .about-wrap .inner {
	display: flex;
	justify-content: space-between;
	padding: 0 calc(20% + 40px);
}

.main-home .section-home-about .about-wrap .inner img {
	-o-object-fit: contain;
	object-fit: contain;
	max-height: 280px;
}

.main-home .section-home-about .about-wrap .inner .col:first-child {
	padding-top: 70px;
}

.main-home .section-home-about .about-wrap .inner .title {
	font-weight: 500;
	font-size: 40px;
	line-height: 35px;
	margin-bottom: 35px;
}

.main-home .section-home-about .about-wrap .inner .link {
	display: flex;
	align-items: center;
}

.main-home .section-home-about .about-wrap .inner .link .icon {
	width: 84px;
	height: 84px;
	border-radius: 42px;
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 34px;
}

.main-home .section-home-about .about-wrap .inner .link p {
	font-size: 24px;
	margin: 0;
}

.main-home .section-home-about .about-wrap .inner .link p span {
	color: #c42d96;
}

.section-title {
	font-weight: 500;
	font-size: 30px;
	line-height: 100px;
	margin-top: 85px;
}

.slick-dots {
	width: 100%;
	height: 2px;
	list-style-type: none;
	transform: translateY(18px);
	margin: 0 auto;
	padding: 0;
	width: 141px;
}

.slick-dots .dot:only-child,
.slick-dots li:only-child {
	display: none;
}

.slick-dots .dot,
.slick-dots li {
	padding-right: 5px;
	padding-left: 5px;
	font-size: 0;
	line-height: 0;
}

.slick-dots .dot button,
.slick-dots li button {
	border: none;
	height: 1.9px;
	width: 100%;
	background: #dcdcdc;
	font-size: 0;
	line-height: 0;
	padding: 0;
}

.slick-dots .dot.slick-current button,
.slick-dots li.slick-current button {
	background: #c42d96;
}

.slick-arrow {
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	border: none;
	width: 42px;
	height: 42px;
	border-radius: 21px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	font-size: 20px;
	line-height: 1;
	box-shadow: 0 3px 20px rgba(121, 121, 121, 0.2);
}

.slick-arrow.slick-next {
	right: 30px;
}

.slick-arrow.slick-prev {
	left: 30px;
}

.products-slider {
	margin-left: -30px;
	margin-right: -30px;
}

.products-slider .slick-dots {
	bottom: -13px;
}

.products-slider .slick-list {
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 30px;
}

.products-slider .slick-arrow {
	top: calc((100% - 30px) / 2);
}

.products-slider .slick-arrow.slick-next {
	right: 9px;
}

.products-slider .slick-arrow.slick-prev {
	left: 9px;
}

.products-slider .slick-slide {
	pointer-events: none;
}

.products-slider .slick-slide.slick-active {
	pointer-events: auto;
}

.products-container {
	display: flex;
	flex-wrap: wrap;
}

.products-container .item {
	width: 20%;
}

.products-container.by-4 .item {
	width: 25%;
}

.main-home .promo-slider .inner {
	display: block;
}

.product-item {
	position: relative;
	display: flex;
	flex-direction: column;
	border-radius: 10px;
	background-color: #fff;
	transition: box-shadow 0.3s ease;
	padding: 22px 30px 30px;
}

.product-item:hover .product-item__block-btns-action {
	opacity: 1;
	pointer-events: auto;
}

.product-item__block-btns-action {
	position: absolute;
	z-index: 1;
	top: 27px;
	right: 20px;
	display: grid;
	grid-row-gap: 10px;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
}

.product-item__block-btns-action.product-item__block-btns-action--compare {
	top: 69px;
}

.product-item__block-btns-action.product-item__block-btns-action--favourites {}

.product-item__block-btns-action input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

@media screen and (max-width: 1199px) {
	.product-item__block-btns-action {
		opacity: 1;
		pointer-events: auto;
	}
}

@media screen and (max-width: 767px) {
	.product-item__block-btns-action {
		top: 0;
	}
}

.product-item__category-name {
	display: inline-block;
	margin-bottom: 16px;
	color: #969696;
	font-size: 13px;
	font-weight: 400;
}

.home-prod-slider .product-item {
	height: 460px;
}

.product-item:hover {
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	z-index: 2;
}

.product-item:hover .prod-actions {
	opacity: 1;
}

.product-item .thumb .prod-badges {
	position: absolute;
	top: 255px;
	right: 56px;
}

.products-slider .product-item .thumb .prod-badges {
	bottom: 0;
	top: auto;
}

.product-item .thumb .prod-badges img {
	width: 40px;
	height: 40px;
	-o-object-fit: contain;
	object-fit: contain;
}

.product-item .prod-actions {
	list-style-type: none;
	padding: 0;
	margin: 0;
	position: absolute;
	z-index: 2;
	top: 27px;
	right: 20px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.product-item .prod-actions li a {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	background-color: #fff;
	font-size: 16px;
	line-height: 1;
	width: 32px;
	height: 32px;
	border-radius: 16px;
	margin-bottom: 10px;
	border: 1px solid #e0e0dd;
}

.product-item .prod-actions li a.active,
.product-item .prod-actions li a:hover {
	background-color: #5c3da5;
	border-color: #5c3da5;
}

.product-item .prod-actions li a.active i:before,
.product-item .prod-actions li a:hover i:before {
	color: #fff;
}

.product-item .prod-actions li a i:before {
	color: #626262;
	transition: all 0.3s ease;
}

.product-item .thumb {
	height: 194px;
	margin-bottom: 38px;
}

.products-slider .product-item .thumb {
	position: relative;
}

.product-item .thumb img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.product-item .name {
	font-size: 15px;
	line-height: 26px;
	overflow: hidden;
	position: relative;
	margin-bottom: 10px;
}

.product-item .item-bottom {
	margin-top: auto;
}

.product-item .price {
	position: relative;
}

.product-item .price .current {
	font-weight: 500;
	font-size: 22px;
	line-height: 24px;
	opacity: 0.9;
}

.product-item .price .old {
	color: #aaa;
	text-decoration: line-through;
	opacity: 0.9;
}

.product-item .btn {
	height: 36px;
	width: 53px;
	font-size: 22px;
	border-radius: 5px;
}

.product-item .btn i {
	margin: 0;
}

.breadcrumbs {
	padding-top: 24px;
}

.breadcrumbs ul li {
	margin-right: 22px;
	font-size: 13px;
	line-height: 17px;
	color: #969696;
}

.breadcrumbs ul li:last-child {
	margin-right: 0;
}

.breadcrumbs ul li a {
	color: #101010;
}

.breadcrumbs ul li a:hover {
	text-decoration: underline;
}

.breadcrumbs ul li.sep {
	color: #101010;
	font-size: 8px;
}

.breadcrumbs ul li.sep i {
	vertical-align: middle;
}

.main-product .product-header {
	margin-bottom: 115px;
	margin-top: 43px;
}

.main-product .product-header .product-title {
	font-weight: 400;
	font-size: 30px;
	line-height: 40px;
	opacity: 0.9;
	margin: 0;
}

.main-product .product-header .prod-actions li {
	color: #626262;
	white-space: nowrap;
}

.main-product .product-header .prod-actions li + li {
	margin-left: 39px;
}

.main-product .product-header .prod-actions li i {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	border-radius: 16px;
	border: 1px solid #e0e0dd;
	margin-right: 6px;
	transition: all 0.3s ease;
}

.main-product .product-header .prod-actions li i:before {
	color: #626262;
	transition: all 0.3s ease;
}

.main-product .product-header .prod-actions li:hover a {
	color: #c42d96;
}

.main-product .product-header .prod-actions li:hover a i {
	border-color: #c42d96;
}

.main-product .product-header .prod-actions li:hover a i::before {
	color: #c42d96;
}

.main-product .product-main__cols .col:first-child {
	justify-content: space-between;
	width: calc(67% - 20px);
}

.main-product .product-main__cols .col:first-child .product-images {
	width: calc(50% - 20px);
	display: flex;
	align-items: flex-start;
	position: relative;
}

.main-product .product-main__cols .col:first-child .product-images .bages {
	width: 80px;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	display: flex;
	flex-direction: column;
}

.main-product .product-main__cols .col:first-child .product-images .bages img {
	margin-bottom: 10px;
}

.main-product .product-main__cols .col:first-child .product-images .bages2 {
	position: absolute;
	top: 422px;
	right: 94px;
	z-index: 1;
}

.main-product .product-main__cols .col:first-child .product-images .bages2 img {
	width: 40px;
	height: 40px;
}

.main-product .product-main__cols .col:first-child .product-images .images-wrap {
	width: 100%;
	position: relative;
}

.main-product .product-main__cols .col:first-child .product-images .images-wrap .main-image .item {
	height: 480px;
}

.main-product .product-main__cols .col:first-child .product-images .images-wrap .main-image .item.youtube {
	display: flex;
	align-items: center;
}

.main-product
.product-main__cols
.col:first-child
.product-images
.images-wrap
.main-image
.item.youtube
.video-container {
	width: 100%;
}

.main-product .product-main__cols .col:first-child .product-images .images-wrap .main-image img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.main-product .product-main__cols .col:first-child .product-images .images-wrap .thumbs {
	margin-top: 60px;
	width: 400px;
	margin-right: auto;
	margin-left: auto;
	max-width: 100%;
}

.main-product .product-main__cols .col:first-child .product-images .images-wrap .thumbs .item {
	margin-right: 10px;
	margin-left: 10px;
	cursor: pointer;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: solid 1px transparent;
	border-radius: 5px;
	overflow: hidden;
}

.main-product .product-main__cols .col:first-child .product-images .images-wrap .thumbs .item.slick-current {
	border-color: rgba(196, 45, 150, .75);
}

.main-product .product-main__cols .col:first-child .product-images .images-wrap .video-link {
	position: absolute;
	bottom: -2px;
	right: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 12px;
	letter-spacing: 0.05em;
	color: rgba(183, 183, 183, 0.9);
}

.main-product .product-main__cols .col:first-child .product-images .images-wrap .video-link svg {
	margin-bottom: 8px;
}

.main-product .product-main__cols .col:first-child .product-images .images-wrap .video-link svg path {
	transition: all 0.3s ease;
}

.main-product .product-main__cols .col:first-child .product-images .images-wrap .video-link:hover {
	color: #c42d96;
}

.main-product .product-main__cols .col:first-child .product-images .images-wrap .video-link:hover path {
	fill: #c42d96;
}

.main-product .product-main__cols .col:first-child .product-specs {
	width: calc(50% - 20px);
}

.main-product .product-main__cols .col:first-child .product-specs .r-val {
	font-size: 20px;
	line-height: 26px;
	margin-left: 9px;
	opacity: 0.9;
}

.main-product .product-main__cols .col:first-child .product-specs .star-ratings {
	position: relative;
	margin-left: -3px;
	font-size: 18px;
}

.main-product .product-main__cols .col:first-child .product-specs .star-ratings .fill-ratings {
	position: absolute;
	left: 0;
	top: 0;
	overflow: hidden;
}

.main-product .product-main__cols .col:first-child .product-specs .star-ratings .empty-ratings i:before {
	color: #e0e0dd;
}

.main-product .product-main__cols .col:first-child .product-specs .star-ratings i {
	padding-left: 3px;
	padding-right: 3px;
}

.main-product .product-main__cols .col:first-child .product-specs .rev-count {
	margin-left: 37px;
	line-height: 1;
}

.main-product .product-main__cols .col:first-child .product-specs .rev-count a {
	color: #5c3da5;
}

.main-product .product-main__cols .col:first-child .product-specs .rev-count a:hover {
	text-decoration: underline;
}

.main-product .product-main__cols .col:first-child .product-specs .rev-count img {
	margin-right: 12px;
}

.main-product .product-main__cols .col:first-child .product-specs .variations-list {
	margin-top: 39px;
}

.main-product .product-main__cols .col:first-child .product-specs .variations-list .variation {
	margin-bottom: 30px;
}

.main-product .product-main__cols .col:first-child .product-specs .variations-list .variation .v-name {
	margin-bottom: 16px;
	font-size: 14px;
	line-height: 18px;
	letter-spacing: 0.05em;
	opacity: 0.9;
}

.main-product .product-main__cols .col:first-child .product-specs .variations-list .variation label {
	cursor: pointer;
	margin-right: 10px;
	margin-bottom: 10px;
}

.main-product .product-main__cols .col:first-child .product-specs .variations-list .variation label input {
	visibility: hidden;
	position: absolute;
}

.main-product .product-main__cols .col:first-child .product-specs .variations-list .variation label span {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #dad9d9;
	border-radius: 4px;
	height: 36px;
	padding: 0 5px;
	color: #6f6f6f;
	text-transform: uppercase;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.main-product .product-main__cols .col:first-child .product-specs .variations-list .variation label span:hover {
	border-color: #5c3da5;
	color: #5c3da5;
}
.main-product .product-main__cols .col:first-child .product-specs .variations-list .variation label :disabled + span {
	opacity: 0.6;
	border: 1px solid #dad9d9!important;
	color: #6f6f6f!important;
	cursor: default;
}

.main-product
.product-main__cols
.col:first-child
.product-specs
.variations-list
.variation
label
input:checked
+ span {
	color: #fff;
	background-color: #5c3da5;
	border-color: #5c3da5;
}

.main-product .product-main__cols .col:first-child .product-specs .variations-list .variation .colors label span {
	width: 40px;
	height: 40px;
	border-radius: 20px;
	border: none;
	position: relative;
}

.main-product
.product-main__cols
.col:first-child
.product-specs
.variations-list
.variation
.colors
label
input:checked
+ span:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 48px;
	height: 48px;
	border-radius: 24px;
	border: 1px solid #9e2579;
}

.main-product .product-main__cols .col:first-child .product-specs .short-spec-list {
	padding: 0;
	margin: 0 0 20px;
	list-style-type: none;
}

.main-product .product-main__cols .col:first-child .product-specs .short-spec-list li:nth-child(3) {
	margin-bottom: 14px;
}

.main-product .product-main__cols .col:first-child .product-specs .short-spec-list li:nth-child(2) .val,
.main-product .product-main__cols .col:first-child .product-specs .short-spec-list li:nth-child(3) .val {
	color: #5c3da5;
}

.main-product .product-main__cols .col:first-child .product-specs .short-spec-list li {
	font-size: 15px;
	line-height: 30px;
	letter-spacing: 0.005em;
	color: #969696;
}

.main-product .product-main__cols .col:first-child .product-specs .short-spec-list li .val {
	color: #101010;
}

.main-product .product-main__cols .col:first-child .product-specs .all-specs {
	display: inline-block;
	color: #c42d96;
	text-decoration: underline;
	opacity: 0.9;
	font-size: 15px;
	line-height: 18px;
}

.main-product .product-main__cols .col:first-child .product-specs .all-specs:hover {
	text-decoration: none;
	opacity: 1;
}

.main-product .product-main__cols .col:last-child {
	width: calc(33% - 20px);
	margin-left: 40px;
}

.main-product .product-main__cols .list-of-sets .item {
	background: #fff;
	box-shadow: 0 8px 32px rgba(43, 45, 51, 0.08);
	border-radius: 10px;
	margin-bottom: 20px;
	padding: 30px 30px 20px;
	cursor: pointer;
}

.main-product .product-main__cols .list-of-sets .item.not-active {
	cursor: auto;
}

.main-product .product-main__cols .list-of-sets .item.active .item-name span {
	transform: rotate(180deg);
}

.main-product .product-main__cols .list-of-sets .item > .d-flex {
	margin-bottom: 12px;
}

.main-product .product-main__cols .list-of-sets .item .item-delivery {
	margin-bottom: 16px;
	font-size: 15px;
	color: #5c3da5;
	display: flex;
	align-items: center;
}

.main-product .product-main__cols .list-of-sets .item .item-delivery i {
	font-size: 24px;
	margin-right: 11px;
}

.main-product .product-main__cols .list-of-sets .item .item-desc {
	font-size: 15px;
	color: #6f6f6f;
	overflow: hidden;
	max-height: 100vh;
	transition: max-height 0.5s;
	position: relative;
}

.main-product .product-main__cols .list-of-sets .item .item-desc:after {
	content: '';
	display: block;
	position: absolute;
	width: 50%;
	height: 100%;
	background: linear-gradient(269.92deg, #fff 36%, rgba(255, 255, 255, 0) 99.93%);
	top: 0;
	right: 0;
	opacity: 0;
	z-index: -1;
	transition: z-index 0s 0.5s, opacity 0.5s;
}

.main-product .product-main__cols .list-of-sets .item .item-desc p {
	margin: 0;
}

.main-product .product-main__cols .list-of-sets .item .item-desc a {
	color: #c42d96;
	text-decoration: underline;
}

.main-product .product-main__cols .list-of-sets .item .item-desc a.ajax-popover-link {
	text-decoration-style: dotted;
}

.main-product .product-main__cols .list-of-sets .item .item-desc a.ajax-popover-link:hover {
	text-decoration-style: solid;
}

.main-product .product-main__cols .list-of-sets .item .item-desc.cuted {
	max-height: 22px;
}

.main-product .product-main__cols .list-of-sets .item .item-desc.cuted:after {
	opacity: 1;
	z-index: 1;
}

.main-product .product-main__cols .list-of-sets .item .item-name {
	color: #9e2579;
	opacity: 0.9;
	font-weight: 500;
	font-size: 20px;
	line-height: 24px;
}

.main-product .product-main__cols .list-of-sets .item .item-name span {
	display: inline-block;
	text-align: center;
	width: 26px;
	height: 26px;
	border-radius: 13px;
	font-size: 6px;
	margin-right: 20px;
	background: rgba(92, 61, 165, 0.1);
	vertical-align: text-bottom;
}

.main-product .product-main__cols .list-of-sets .item .item-name span i {
	vertical-align: middle;
	margin-left: 1px;
}

.main-product .product-main__cols .list-of-sets .item .item-price {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 20px;
}

.main-product .product-main__cols .list-of-sets .item .item-price .price {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px
}

.main-product .product-main__cols .list-of-sets .item .item-price .price .current {
	font-weight: 500;
	font-size: 22px;
	line-height: 24px;
}

.main-product .product-main__cols .list-of-sets .item .item-price .price .old {
	font-size: 16px;
	line-height: 18px;
	color: #aaa;
	opacity: 0.9;
	margin-left: 19px;
	text-decoration: line-through;
}

.main-product .product-main__cols .list-of-sets .item .item-price .price .economy,
.product-item .price .economy {
	background-color: rgba(196, 45, 150, 0.1);
	border-radius: 4px;
	padding: 0 6px;
	line-height: 24px;
	font-size: 14px;
	/*margin-left: 12px;*/
	color: #c42d96;
}
.product-item .price .economy {
	margin-left: 0;
	margin-right: 0;
}

.main-product .product-main__cols .list-of-sets .item .item-price .btn {
	height: 36px;
	width: 54px;
	font-size: 22px;
	white-space: nowrap;
}

.main-product .product-main__cols .list-of-sets .item .item-price .btn.btn-wa {
	width: auto;
}

.main-product .product-main__cols .list-of-sets .item .item-price .btn i {
	margin: 0;
}
.main-product .product-main__cols .list-of-sets .item .item-price .btn span {
	display: none;
}
@media screen and (min-width: 768px) {
	.main-product .product-main__cols .list-of-sets .item .item-price .btn:hover {
		width: auto;
	}
	.main-product .product-main__cols .list-of-sets .item .item-price .btn:hover span {
		display: inline;
	}
}

.main-product .section-content {
	margin-top: 270px;
	margin-bottom: 200px;
}

.main-product .section-product-tabs {
	margin-top: 70px;
}

.item-fullness i {
	margin-left: 6px;
}

.item-fullness i.icon-FireSimple {
	margin: 0;
	font-size: 20px;
}

.item-fullness.active-1 i:nth-child(1):before {
	color: #c42d96;
}

.item-fullness.active-2 i:nth-child(1):before,
.item-fullness.active-2 i:nth-child(2):before {
	color: #c42d96;
}

.item-fullness.active-3 i:nth-child(1):before,
.item-fullness.active-3 i:nth-child(2):before,
.item-fullness.active-3 i:nth-child(3):before {
	color: #c42d96;
}

.item-fullness.active-4 i:nth-child(1):before,
.item-fullness.active-4 i:nth-child(2):before,
.item-fullness.active-4 i:nth-child(3):before,
.item-fullness.active-4 i:nth-child(4):before {
	color: #c42d96;
}

.tabs {
	width: 100%;
}

@media screen and (max-width: 767px) {
	.tabs {
		background: #f8f8f8;
		border-radius: 10px;
	}
}

.tabs .tab-nav {
	display: flex;
	list-style-type: none;
	justify-content: space-between;
	padding: 0;
	margin: 0;
	background: #f8f8f8;
	border-radius: 10px;
}

@media screen and (max-width: 767px) {
	.tabs .tab-nav {
		display: none;
	}
}

.tabs .tab-nav li {
	white-space: nowrap;
	letter-spacing: 0.05em;
	font-weight: 500;
	font-size: 16px;
	line-height: 17px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	height: 80px;
	padding: 0 35px;
	cursor: pointer;
	transition: all 0.3s ease;
	border-top: 3px solid transparent;
	border-bottom: 3px solid transparent;
}

@media screen and (min-width: 1200px) {
	.tabs .tab-nav li {
		min-width: 160px;
	}
}

@media screen and (min-width: 1600px) {
	.tabs .tab-nav li {
		min-width: 200px;
	}
	footer .footer-top .footer-menu-wrap .col:nth-child(3) {
		border-right: 1px solid #393939;
		padding: 0 70px;
	}
}

.tabs .tab-nav li:hover {
	background-color: #fff;
}

.tabs .tab-nav li .counter {
	color: #c42d96;
	margin-left: 4px;
}

.tabs .tab-nav li.active {
	background: #fff;
	box-shadow: 0 8px 32px rgba(43, 45, 51, 0.08);
	border-radius: 4px;
	border-bottom: 3px solid #c42d96;
}

.tabs .tab-content {
	display: none;
}

.tabs .tab-content.active {
	display: block;
}

.tabs .tab-content .mob-toggle {
	display: none;
}

.tabs .tab-content .inner {
	padding-top: 160px;
	padding-bottom: 140px;
	background-color: #fff;
}

@media screen and (max-width: 767px) {
	.tabs .tab-content {
		display: block;
		border-bottom: 1px solid #ededed;
	}

	.tabs .tab-content:last-child {
		border: none;
	}

	.tabs .tab-content.active {
		border: none;
	}

	.tabs .tab-content.active .inner {
		display: block;
	}

	.tabs .tab-content .mob-toggle {
		display: flex;
		align-items: center;
		height: 52px;
		padding: 0 20px;
		font-weight: 500;
		font-size: 15px;
		letter-spacing: 0.05em;
	}

	.tabs .tab-content .mob-toggle span {
		color: #c42d96;
		margin-left: 4px;
	}

	.tabs .tab-content .mob-toggle:after {
		content: '';
		display: block;
		width: 18px;
		height: 18px;
		background-image: url("ArrowDownBlack.svg");
		background-repeat: no-repeat;
		background-position: center;
		margin-left: auto;
	}

	.tabs .tab-content .mob-toggle.open::after {
		transform: rotate(180deg);
	}

	.tabs .tab-content .inner {
		display: none;
	}

	.footer .footer-top .footer-menu-wrap .col:nth-child(4) {
		display: block;
	}
	.footer .footer-top .footer-contacts-wrap:not(.footer-contacts-mobile) {
		display: none;
	}
}

.content .content-block {
	margin-bottom: 200px;
}

.content .content-block:last-child {
	margin-bottom: 0;
}

.content .content-block .col {
	width: calc(50% - 40px);
}

.content .content-block .title {
	font-weight: 500;
	font-size: 26px;
	line-height: 36px;
	margin: 0 0 40px;
}

.content .content-block p {
	font-size: 22px;
	line-height: 34px;
}

.video-container {
	position: relative;
	padding-bottom: 56.2%;
}

.video-container2 .video-container {
	padding-bottom: 25%;
	width: 708px!important;
}

.video-container iframe {
	position: absolute;
	left: 0;
	top: 0;
	width: 100% !important;
	height: 100% !important;
	border: none !important;
}

.video-container2 iframe {
	position: absolute;
	left: 0;
	top: 0;
	width: 708px !important;
	height: 400px !important;
	border: none !important;
	margin: auto;
}

.video-container2 .youtube-preloader {
	width: 708px !important;
	margin: auto;
}

.video-container2 {
	display: flex;
	justify-content: center;
	margin: 0 auto 40px auto;
	height: 400px;
}

.specs-tab .col:first-child {
	width: 50%;
}

@media (max-width: 758px) {
	.video-container2 iframe {
		width: calc(290px + (708 - 290) * ((100vw - 320px) / (758 - 320)));
		height: calc(165px + (400 - 165) * ((100vw - 320px) / (758 - 320))) !important;
	}

	.video-container2 .youtube-preloader {
		width: calc(290px + (708 - 290) * ((100vw - 320px) / (758 - 320))) !important;
		margin: auto;
	}

	.video-container2 {
		height: calc(165px + (400 - 165) * ((100vw - 320px) / (758 - 320))) !important;
		margin: 0 auto 20px auto;
	}

	.video-container2 .video-container {
		padding-bottom: 25%;
		width: calc(290px + (708 - 290) * ((100vw - 320px) / (758 - 320))) !important;
	}
}

.specs-tab .col:last-child {
	width: calc(33% - 20px);
}

.specs-tab .specs-list .item {
	margin-bottom: 80px;
}

.specs-tab .specs-list .item .item-title {
	font-weight: 500;
	font-size: 28px;
	line-height: 40px;
	margin-bottom: 38px;
}

.specs-tab .specs-list .item .item-list {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.specs-tab .specs-list .item .item-list li {
	display: flex;
	justify-content: space-between;
	position: relative;
	align-items: flex-start;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 26px;
}

.specs-tab .specs-list .item .item-list li .key {
	background-color: #fff;
	position: relative;
	z-index: 1;
	padding-right: 4px;
}

.specs-tab .specs-list .item .item-list li .val {
	background-color: #fff;
	position: relative;
	z-index: 1;
	padding-left: 4px;
	width: 294px;
	max-width: 50%;
	margin-left: 10px;
}

.specs-tab .specs-list .item .item-list li:after {
	content: '';
	position: absolute;
	left: 0;
	top: 16px;
	width: 100%;
	height: 0;
	border-bottom: 1px dotted #b0b0b0;
	opacity: 0.9;
}

.infoblock {
	padding: 23px 20px 26px;
	border-radius: 10px;
	margin-bottom: 2px;
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
}

.infoblock .infoicon {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 40px;
	height: 40px;
	border-radius: 20px;
	background-color: #fff;
	min-width: 40px;
	margin-right: 24px;
}

.infoblock .infoicon i {
	line-height: 40px;
	display: block;
}

.infoblock .infoicon i:before {
	color: #101010;
}

.infoblock p {
	margin: 0;
	font-size: 20px;
	line-height: 34px;
	max-width: 100%;
}

.infoblock a {
	text-decoration: underline dotted;
}

.infoblock a:active,
.infoblock a:hover {
	text-decoration-style: solid;
}

.infoblock.rose {
	background-color: #fdedf8;
	color: #c42d96;
}

.infoblock.rose .infoicon i:before {
	color: #c42d96;
}

.infoblock.rose.notice,
.infoblock.rose.not-found-products {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
}

.infoblock.rose.notice p {
	margin: 0 auto;
	text-align: center;
}

.infoblock.viol {
	color: #5c3da5;
	background: #fbf9ff;
}

.infoblock.viol .infoicon i:before {
	color: #5c3da5;
}

.specs-tab .cross-block {
	margin-top: 178px;
	max-width: 100%;
	width: 460px;
}

.specs-tab .cross-block .title {
	margin-bottom: 38px;
	font-weight: 500;
	font-size: 28px;
	line-height: 24px;
}

.specs-tab .cross-block .cross-prods .item {
	padding: 52px 0;
	border-bottom: 1px solid #dad9d9;
	display: flex;
	align-items: center;
}

.specs-tab .cross-block .cross-prods .item .col {
	width: calc(100% - 195px);
}

.specs-tab .cross-block .cross-prods .item .thumb {
	width: 145px;
	height: 140px;
	text-align: center;
	margin-right: 50px;
}

.specs-tab .cross-block .cross-prods .item .thumb img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.specs-tab .cross-block .cross-prods .item .item-name {
	font-size: 15px;
	line-height: 24px;
	margin-bottom: 20px;
}

.specs-tab .cross-block .cross-prods .item .star-ratings {
	position: relative;
	display: inline-block;
	margin-bottom: 25px;
	font-size: 12px;
}

.specs-tab .cross-block .cross-prods .item .star-ratings .fill-ratings {
	position: absolute;
	left: 0;
	top: 0;
	overflow: hidden;
}

.specs-tab .cross-block .cross-prods .item .star-ratings .empty-ratings i:before {
	color: #e0e0dd;
}

.specs-tab .cross-block .cross-prods .item .star-ratings i + i {
	margin-left: 4px;
}

.specs-tab .cross-block .cross-prods .item .item-price .current {
	font-weight: 500;
	font-size: 22px;
	line-height: 24px;
}

.content.content--center {
	/*width: 752px;*/
	margin-right: auto;
	margin-left: auto;
	max-width: 100%;
}

.content.content--center p {
	font-size: 22px;
	line-height: 34px;
	margin: 44px 0;
}

.content.content--center p:last-child {
	margin-bottom: 0;
}

.content.content--center h2 {
	font-weight: 500;
	font-size: 28px;
	line-height: 40px;
	margin-bottom: 90px;
	margin-top: 44px;
}

.content.content--center h3 {
	font-weight: 500;
	font-size: 28px;
	line-height: 24px;
	margin-bottom: 44px;
	margin-top: 44px;
}

.content.content--center img {
	display: block;
	margin: 44px auto;
	object-fit: contain;
}

.faq .item {
	margin-bottom: 67px;
	max-width: 100%;
	width: 1176px;
}

.faq .item:last-child {
	margin-bottom: 0;
}

.faq .item .question {
	margin-bottom: 20px;
	display: inline-block;
	background: #fdedf8;
	border-radius: 10px;
	color: #c42d96;
	font-size: 24px;
	line-height: 40px;
	padding: 10px 24px;
}

.faq .item .answer {
	background: #f6f3fd;
	border-radius: 10px;
	padding: 30px 35px;
	font-size: 22px;
	line-height: 34px;
}

.faq .item .answer a {
	color: #c42d96;
}

.faq .item .answer a:hover {
	text-decoration: underline;
}

.comment-tab img {
	margin-right: auto;
	margin-left: auto;
	display: block;
}

.delivery-tab .block-title {
	font-weight: 500;
	font-size: 30px;
	line-height: 50px;
	text-align: center;
	margin-bottom: 120px;
}

.delivery-tab .cols-3 {
	margin-right: -20px;
	margin-left: -20px;
	margin-bottom: 150px;
	justify-content: space-around;
	flex-flow: row wrap;
	align-items: stretch;
}

.delivery-tab .cols-3 .item {
	width: calc(33.3333333333% - 40px);
	min-width: 433px;
	margin-right: 20px;
	margin-left: 20px;
	text-align: center;
	margin-bottom: 70px;
	max-width: 100%;
}

.delivery-tab .cols-3 .item .icon {
	background: #fff;
	box-shadow: 0 8px 32px rgba(43, 45, 51, 0.08);
	border-radius: 10px;
	width: 65px;
	height: 65px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 0;
	line-height: 0;
	margin-bottom: 25px;
	margin-right: auto;
	margin-left: auto;
}

.delivery-tab .cols-3 .item .name {
	font-weight: 500;
	font-size: 24px;
	line-height: 24px;
	color: #c42d96;
	margin-bottom: 15px;
	min-height: 66px;
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: center;
}

.delivery-tab .cols-3 .item p {
	font-size: 20px;
	line-height: 30px;
	margin: 0;
}

.delivery-tab .cols-3 .item p a {
	color: #c42d96;
}

.delivery-tab .cols-3 .item p a:hover {
	text-decoration: underline;
}

.delivery-tab .delivery-specs {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 120px;
}

.delivery-tab .delivery-specs .item.large {
	background: #efeefe;
	border-radius: 10px;
	width: 100%;
	margin-bottom: 69px;
	position: relative;
	padding-left: 45%;
	padding-top: 58px;
	padding-bottom: 58px;
}

.delivery-tab .delivery-specs .item.large img {
	position: absolute;
	left: 0;
	bottom: 0;
	max-width: 659px;
	max-height: 536px;
	-o-object-fit: contain;
	object-fit: contain;
}

.delivery-tab .delivery-specs .item.large .title {
	color: #5c3da5;
	font-weight: 500;
	font-size: 28px;
	line-height: 40px;
	margin-bottom: 40px;
}

.delivery-tab .delivery-specs .item.large p {
	font-size: 20px;
	line-height: 34px;
	margin: 0 0 60px;
}

.delivery-tab .delivery-specs .item .d-date .d-item {
	width: auto;
	color: #5c3da5;
	font-size: 18px;
	font-weight: 500;
	line-height: 52px;
	margin-right: 0;
	padding-left: 35px;
	background-image: url("clock2.svg");
	background-repeat: no-repeat;
	background-position: 0 50%;
	min-height: 52px;
	background-size: 28px 28px;
}

.delivery-tab .delivery-specs .item.small {
	width: calc(50% - 31px);
	display: flex;
	position: relative;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 8px 32px rgba(43, 45, 51, 0.05);
	border-radius: 10px;
	min-height: 280px;
}

.delivery-tab .delivery-specs .item.small .col {
	margin: 10px 20px;
}

.delivery-tab .delivery-specs .item.small .price {
	position: relative;
	z-index: 1;
	width: 300px;
	min-width: 300px;
	display: flex;
	align-items: center;
	font-weight: 500;
	font-size: 60px;
	line-height: 99px;
	padding: 0 23px;
}

.delivery-tab .delivery-specs .item.small .price svg {
	position: absolute;
	z-index: -1;
	top: 0;
	left: -153px;
}

.delivery-tab .delivery-specs .item.small .price.rose {
	color: #c42d96;
}

.delivery-tab .delivery-specs .item.small .price.viol {
	color: #5c3da5;
}

.delivery-tab .delivery-specs .item.small .price.viol svg path {
	fill: #efeefe;
}

.delivery-tab .delivery-specs .item.small .col {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.delivery-tab .delivery-specs .item.small .col p {
	font-weight: 500;
	font-size: 20px;
	line-height: 30px;
	margin: 0;
}

.delivery-tab .delivery-specs .item.small .col .btn {
	width: 174px;
	height: 48px;
	margin-top: 38px;
	font-size: 18px;
	border-radius: 8px;
}

.delivery-tab .delivery-cities .del-type {
	margin-right: -20px;
	margin-left: -20px;
	margin-bottom: 220px;
}

.delivery-tab .delivery-cities .del-type .col {
	width: calc(33.3333333333% - 40px);
	margin-right: 20px;
	margin-left: 20px;
	position: relative;
	z-index: 1;
}

.delivery-tab .delivery-cities .del-type .col .col-name {
	font-weight: 500;
	font-size: 24px;
	line-height: 40px;
	color: #c42d96;
	margin-bottom: 20px;
}

.delivery-tab .delivery-cities .del-type .col p {
	font-size: 20px;
	line-height: 30px;
	margin: 0;
}

.delivery-tab .delivery-cities .del-type .col svg {
	position: absolute;
	z-index: -1;
	width: 133px;
	height: auto;
	top: -22px;
	left: -23px;
}

.delivery-tab .delivery-cities .cities-list {
	list-style-type: none;
	padding: 0;
	margin: 0;
	-moz-columns: 3;
	columns: 3;
	-moz-column-gap: 40px;
	column-gap: 40px;
	margin-bottom: -30px;
}

.delivery-tab .delivery-cities .cities-list li {
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 30px;
}

.delivery-tab .delivery-cities .cities-list li a:hover {
	text-decoration: underline;
}

.delivery-tab .delivery-cities .cities-list li .rose,
.delivery-tab .delivery-cities .cities-list li::first-letter {
	color: #c42d96;
}

.assesory-tab {
	margin-bottom: -60px;
}

.page-404 {
	padding-bottom: 100px;
}

.page-404 .breadcrumbs {
	padding: 40px 0;
}

.box-404 {
	background: #fff;
	box-shadow: 0 4px 23px rgba(0, 0, 0, 0.05);
	padding-top: 76px;
	padding-bottom: 60px;
	padding-right: 20px;
	padding-left: 20px;
}

.box-404 img {
	max-width: 100%;
	width: 309px;
	height: auto;
}

@media screen and (max-width: 767px) {
	.box-404 img {
		width: 227px;
	}
}

.box-404 .title-404 {
	margin-top: 50px;
	font-size: 30px;
	line-height: 40px;
}

.box-404 p {
	margin: 50px 0 0;
	color: #6f6f6f;
	font-size: 16px;
	line-height: 30px;
}

.box-404 p a {
	color: #c42d96;
}

.section-catalog-categories {
	margin-top: 58px;
	margin-bottom: 132px;
}

.section-catalog-categories .categories-list {
	margin-left: -20px;
	margin-right: -20px;
}

.section-catalog-categories .categories-list .item {
	width: calc(33.3333333333% - 40px);
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 40px;
	background: #f8f8f8;
	border-radius: 10px;
	padding: 43px 20px 20px;
	position: relative;
	transition: all 0.3s ease;
}

.section-catalog-categories .categories-list .item a {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

.section-catalog-categories .categories-list .item:hover {
	background: #fff;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.section-catalog-categories .categories-list .item > .d-flex {
	justify-content: space-between;
	margin-bottom: 20px;
}

.section-catalog-categories .categories-list .item .thumb {
	height: 222px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.section-catalog-categories .categories-list .item .thumb img {
	max-width: 100%;
	max-height: 100%;
}

.section-catalog-categories .categories-list .item .cat-name {
	font-weight: 500;
	font-size: 20px;
	line-height: 24px;
}

.section-catalog-categories .categories-list .item .price {
	font-weight: 500;
	font-size: 20px;
	line-height: 24px;
}

.section-catalog-categories .categories-list .item .cat-count {
	font-size: 16px;
	line-height: 24px;
	color: #969696;
	margin-top: 13px;
}

.section-catalog-products {
	margin-top: 40px;
}

.section-catalog-products .products-container {
	margin-top: 20px;
}

.section-catalog-products .cat-title {
	font-size: 30px;
	line-height: 24px;
	margin-bottom: 47px;
}

.section-catalog-products .cat-title .count {
	color: #969696;
}

.main-static .cat-tags,
.section-catalog-products .cat-tags {
	margin-bottom: 47px;
	margin-left: -5px;
	margin-right: -5px;
	flex-wrap: wrap;
}

.main-static .cat-tags li,
.section-catalog-products .cat-tags li {
	margin-bottom: 10px;
	margin-right: 5px;
	margin-left: 5px;
}

.main-static .cat-tags li a,
.section-catalog-products .cat-tags li a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	height: 32px;
	border: 1px solid #dad9d9;
	box-sizing: border-box;
	border-radius: 4px;
	white-space: nowrap;
	padding-left: 7px;
	padding-right: 7px;
	font-size: 14px;
	line-height: 18px;
	color: #6f6f6f;
	text-transform: uppercase;
	min-width: 88px;
}

.dialog__wrapper {
	position: absolute;
	z-index: 3;
	left: 50%;
}

.dialog__wrapper--left {
	top: 30%;
}

.dialog__wrapper--right {
	top: 35%;
}

.dialog__message {
	position: absolute;
	left: 0;
	bottom: 0;
	height: min-content;
	width: fit-content;
	padding: 8px 12px;
	border-radius: 15px;
}

.dialog__message-text {
	position: relative;
	z-index: 2;
	margin: 0;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.5;
	color: #101010;
	white-space: nowrap;
}

@media (min-width: 577px) {
	.dialog__wrapper--right {
		top: 45%;
	}

	.dialog__message {
		padding: 10px 22px;
		border-radius: 30px;
	}

	.dialog__message-text {
		font-size: 16px;
	}
}

.dialog__message-decoration {
	display: flex;
	position: absolute;
	left: -7px;
	bottom: 0;
}

.dialog__message--right {
	transform: translateX(calc(-100% - 20px));
}

.dialog__message--right .dialog__message-decoration {
	right: -7px;
	bottom: 0;
	transform: scaleX(-100%);
}

.main-static .cat-tags li a:hover,
.section-catalog-products .cat-tags li a:hover {
	border-color: #5c3da5;
	color: #5c3da5;
}

.main-static .cat-tags li.active a,
.section-catalog-products .cat-tags li.active a {
	color: #fff;
	background-color: #5c3da5;
	border-color: #5c3da5;
}

.section-catalog-products .sidebar {
	width: 319px;
	min-width: 319px;
	margin-right: 40px;
}

.section-catalog-products .sidebar .mob-btns,
.section-catalog-products .sidebar .mob-header {
	display: none;
}

@media screen and (max-width: 1023px) {
	.section-catalog-products .sidebar .mob-btns,
	.section-catalog-products .sidebar .mob-header {
		display: block;
	}
}

.bx-filter-button-box {
	/*display: none*/
}
.bx-filter-button-box.box-sticky {
	position: -webkit-sticky;
	position: sticky;
	bottom: 20px;
}
.section-catalog-products .sidebar .filter-btns {
	margin-top: 40px;
}

.section-catalog-products .sidebar .filter-btns .btn {
	width: 100%;
	margin-bottom: 20px;
	height: 48px;
	font-size: 18px;
}

.section-catalog-products .sidebar .filter-btns .btn.btn-border:first-child {
	border-color: #dad9d9;
	color: #6f6f6f;
}

.section-catalog-products .sidebar .filter-btns .btn.btn-border:first-child i {
	font-size: 6px;
	margin-left: 10px;
	margin-top: 3px;
}

.section-catalog-products .sidebar .filter-btns .btn.btn-border:first-child i::before {
	color: inherit;
}

.section-catalog-products .sidebar .filter-btns .btn.btn-border:first-child:hover {
	border-color: #c42d96;
	color: #c42d96;
}

.section-catalog-products .sidebar .filter-block {
	background: #f8f8f8;
	border-radius: 8px;
	margin-bottom: 20px;
}

.section-catalog-products .sidebar .filter-block .inner {
	display: none;
	padding-left: 24px;
	padding-right: 24px;
}

.section-catalog-products .sidebar .filter-block.opened .inner {
	display: block;
}

.section-catalog-products .sidebar .filter-block.opened .block-title i {
	transform: rotate(180deg);
}

.section-catalog-products .sidebar .filter-block .checkbox-list {
	padding-bottom: 36px;
	padding-top: 15px;
}

.section-catalog-products .sidebar .filter-block .checkbox-list ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.section-catalog-products .sidebar .filter-block .checkbox-list ul li {
	margin-bottom: 23px;
}

.section-catalog-products .sidebar .filter-block .checkbox-list ul li label {
	display: block;
}

.section-catalog-products .sidebar .filter-block .checkbox-list ul li label input {
	visibility: hidden;
	position: absolute;
}

.section-catalog-products .sidebar .filter-block .checkbox-list ul li label input:checked + span {
	color: #5c3da5;
}

.section-catalog-products .sidebar .filter-block .checkbox-list ul li label input:checked + span:before {
	background-color: #5c3da5;
	background-image: url("checkbox.svg");
	background-repeat: no-repeat;
	background-position: 5px 7px;
	border-color: #5c3da5;
}

.section-catalog-products .sidebar .filter-block .checkbox-list ul li label > span {
	position: relative;
	color: #6f6f6f;
	padding-left: 39px;
	font-size: 16px;
	line-height: 24px;
	display: inline-block;
	cursor: pointer;
}

.section-catalog-products .sidebar .filter-block .checkbox-list ul li label > span:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 24px;
	height: 24px;
	background-color: #fff;
	border: 1px solid #c2c2c2;
	box-sizing: border-box;
	border-radius: 4px;
}

.section-catalog-products .sidebar .filter-block .checkbox-list ul li label > span:hover:before {
	border-color: #5c3da5;
}

.section-catalog-products .sidebar .filter-block .checkbox-list ul li label .count {
	color: #c42d96;
}

.section-catalog-products .sidebar .filter-block .checkbox-list .show-all {
	text-decoration: underline;
	color: #c42d96;
	display: inline-block;
	margin-top: 10px;
}

.section-catalog-products .sidebar .filter-block .checkbox-list .show-all:hover {
	text-decoration: none;
}

.section-catalog-products .sidebar .filter-block .price-filter {
	padding-top: 17px;
	padding-bottom: 30px;
}

.section-catalog-products .sidebar .filter-block .price-filter .show-all-prices {
	display: inline-block;
	margin-top: 16px;
	font-size: 15px;
	line-height: 17px;
	color: #c42d96;
	text-decoration: underline;
}

.section-catalog-products .sidebar .filter-block .price-filter .show-all-prices:hover {
	text-decoration: none;
}

.section-catalog-products .sidebar .filter-block .price-filter .prices-list {
	margin-top: 39px;
	justify-content: space-between;
}

.section-catalog-products .sidebar .filter-block .price-filter .prices-list li {
	width: 120px;
	margin-bottom: 24px;
	letter-spacing: 0.05em;
}

.section-catalog-products .sidebar .filter-block .price-filter .prices-list li a {
	-webkit-text-decoration-line: underline;
	text-decoration-line: underline;
}

.section-catalog-products .sidebar .filter-block .price-filter .prices-list li a:hover {
	color: #5c3da5;
}

.section-catalog-products .sidebar .filter-block .price-filter .sep {
	background: #c2c2c2;
	width: 18px;
	height: 1px;
}

.section-catalog-products .sidebar .filter-block .price-filter .input-wrap {
	width: 120px;
}

.section-catalog-products .sidebar .filter-block .price-filter .input-wrap input {
	width: 100%;
	background: #fff;
	border: 1px solid #c2c2c2;
	box-sizing: border-box;
	border-radius: 4px;
	height: 38px;
	text-align: center;
	font-size: 16px;
	line-height: 24px;
}

.section-catalog-products .sidebar .filter-block .ui-slider {
	margin-top: 30px;
	height: 3px;
	border: none;
	background: #e2e2e2;
	cursor: pointer;
}

.section-catalog-products .sidebar .filter-block .ui-slider .ui-slider-range {
	background: #c42d96;
}

.section-catalog-products .sidebar .filter-block .ui-slider .ui-slider-handle {
	width: 20px;
	height: 20px;
	background-color: #fff;
	border: 5px solid #c42d96;
	border-radius: 10px;
	top: -9px;
	cursor: pointer;
}

.section-catalog-products .sidebar .filter-block .ui-slider.not-active .ui-slider-range {
	background-color: #787878;
}

.section-catalog-products .sidebar .filter-block .ui-slider.not-active .ui-slider-handle {
	border-color: #787878;
}

.section-catalog-products .sidebar .filter-block .block-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 14px;
	line-height: 18px;
	height: 58px;
	text-transform: uppercase;
	padding: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.section-catalog-products .sidebar .filter-block .block-title i {
	font-size: 7px;
}

.section-catalog-products .sidebar .filter-block .block-title i:before {
	color: #101010;
}

.section-catalog-products .products-wrap {
	width: 100%;
}

.section-catalog-products .products-wrap .open-filter {
	display: none;
}

@media screen and (max-width: 1023px) {
	.section-catalog-products .products-wrap .open-filter {
		display: flex;
	}
}

.section-catalog-products .products-wrap .sort-block {
	position: relative;
	padding: 0;
}

.section-catalog-products .products-wrap .sort-block .current {
	border: 1px solid #c2c2c2;
	border-radius: 6px;
	background: #fff;
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
	height: 42px;
	padding: 0 15px;
}

.section-catalog-products .products-wrap .sort-block .current::after {
	content: '';
	display: flex;
	width: 9px;
	height: 26px;
	margin-left: 15px;
	background-image: url("ArrowDownBlack.svg");
	background-repeat: no-repeat;
	background-position: center right;
}

.section-catalog-products .products-wrap .sort-block .current.active::after {
	transform: rotate(180deg);
}

.section-catalog-products .products-wrap .sort-block .sort-links {
	display: none;
	flex-direction: column;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 10;
	background-color: #fff;
	border: 1px solid #c2c2c2;
	border-radius: 6px;
	padding: 5px 0;
}

.section-catalog-products .products-wrap .sort-block .sort-links a {
	display: block;
	line-height: 42px;
	padding: 0 15px;
	white-space: nowrap;
}

.section-catalog-products .products-wrap .product-item {
	padding: 51px 20px 32px 30px;
	display: flex;
	height: 100%;
}

.section-catalog-products .products-wrap .product-item .prod-actions {
	opacity: 1;
	top: 20px;
	right: 15px;
}

.section-catalog-products .products-wrap .product-item .thumb {
	height: 230px;
	margin-bottom: 73px;
}

.section-catalog-products .products-wrap .product-item .prod-sale,
.products-slider .product-item .prod-sale {
	position: absolute;
	top: 23px;
	left: 30px;
}

.section-catalog-products .products-wrap .product-item .prod-sale img,
.products-slider .product-item .prod-sale img {
	width: 42px;
	height: 42px;
	-o-object-fit: contain;
	object-fit: contain;
	margin-right: 5px;
}

.section-catalog-products .products-wrap .item.large {
	width: 100%;
	margin-top: 37px;
	margin-bottom: 40px;
}

.section-catalog-products .products-wrap .promotion {
	background: linear-gradient(87.27deg, #f1ffff 1.3%, #fff5fa 98.28%);
	border-radius: 8px;
}

.section-catalog-products .products-wrap .promotion .col:first-child {
	padding-top: 61px;
	padding-bottom: 41px;
	padding-left: 83px;
}

.section-catalog-products .products-wrap .promotion .col:first-child .title {
	font-weight: 500;
	font-size: 38px;
	line-height: 50px;
	margin-bottom: 17px;
}

.section-catalog-products .products-wrap .promotion .col:first-child .text {
	font-size: 22px;
	line-height: 15px;
	margin-bottom: 48px;
}

.section-catalog-products .products-wrap .promotion .col:first-child .btn {
	width: 140px;
}

.section-catalog-products .products-wrap .promotion .col:last-child {
	padding-top: 75px;
	padding-right: 38px;
}

.section-catalog-products .products-wrap .promotion .col:last-child p {
	margin: 27px 0 0;
	font-size: 14px;
	line-height: 24px;
}

.section-catalog-products .products-wrap .promotion .col:last-child img {
	width: 118px;
	height: 26px;
	-o-object-fit: contain;
	object-fit: contain;
}

.section-catalog-products .products-wrap .promotion .col:nth-child(2) img {
	max-width: 481px;
	max-height: 280px;
	-o-object-fit: contain;
	object-fit: contain;
}

.section-brands {
	margin-top: 183px;
	margin-bottom: 180px;
}

.section-brands .brands ul {
	margin-left: -13px;
	margin-right: -13px;
}

.section-brands .brands ul li {
	width: 380px;
	max-width: calc(25% - 26px);
	margin-right: 13px;
	margin-left: 13px;
}

.section-brands .brands ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #f8f8f8;
	border-radius: 8px;
	height: 120px;
}

.section-brands .brands ul li a:hover {
	background: #fff;
	box-shadow: 0 8px 32px rgba(43, 45, 51, 0.08);
}

.section-brands .brands ul li a img {
	max-width: 90%;
	max-height: 90%;
	-o-object-fit: contain;
	object-fit: contain;
}

.catalog-child .section-content {
	margin-bottom: 214px;
}

.catalog-child .section-content h2 {
	color: #c42d96;
	font-weight: 500;
	font-size: 32px;
	line-height: 44px;
	margin-bottom: 51px;
}

.page-title,
h1.page-title {
	margin-top: 40px;
	margin-bottom: 58px;
	font-size: 30px;
	line-height: 24px;
	font-weight: 400;
}

.wrap-header {
	padding: 30px 40px 40px;
}

@media screen and (max-width: 1199px) {
	.wrap-header {
		padding: 20px 20px 30px;
	}
}

.wrap-header .dropdown .current {
	display: none;
}

.wrap-header .block-nav {
	flex-wrap: wrap;
}

.wrap-header .block-nav li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 210px;
	height: 32px;
	margin-right: 20px;
	background: #f8f8f8;
	border-radius: 4px;
	padding-left: 10px;
	padding-right: 15px;
	font-size: 13px;
	line-height: 17px;
}

.wrap-header .block-nav li.active a {
	color: #fff;
	background-color: #c42d96;
}

.wrap-header .clear-all {
	display: flex;
	align-items: center;
	font-size: 14px;
	line-height: 24px;
	white-space: nowrap;
}

.wrap-header .clear-all i {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 20px;
	height: 20px;
	border-radius: 10px;
	border: 1px solid #e0e0dd;
	margin-right: 13px;
	font-size: 12px;
	line-height: 1;
}

.wrap-header .clear-all i:before {
	color: #626262;
}

.wrap-header .clear-all:hover {
	color: #5c3da5;
}

.wrap-header .clear-all:hover i {
	background-color: #5c3da5;
	border-color: #5c3da5;
}

.wrap-header .clear-all:hover i:before {
	color: #fff;
}

.compare-wrap {
	background-color: #fff;
}

.compare-wrap .slider-action {
	display: none;
}

.compare-wrap .product-item .prod-actions .to-wish {
	display: none;
}

.compare-wrap .product-item .prod-actions .delete-item {
	display: list-item;
}

.compare-wrap .compare-view {
	display: flex;
	list-style-type: none;
	padding: 0 40px;
	margin: 0 0 92px;
}

@media screen and (max-width: 1199px) {
	.compare-wrap .compare-view {
		margin-bottom: 70px;
		padding: 0 20px;
	}
}

.compare-wrap .compare-view li {
	margin-right: 45px;
}

.compare-wrap .compare-view li a {
	position: relative;
	display: flex;
	align-items: center;
	font-size: 14px;
	line-height: 24px;
}

.compare-wrap .compare-view li a span {
	margin-left: 4px;
}

.compare-wrap .compare-view li a:before {
	content: '';
	display: block;
	margin-right: 12px;
	width: 20px;
	height: 20px;
	border-radius: 10px;
	border: 1px solid #c2c2c2;
	transition: all 0.3s ease;
}

.compare-wrap .compare-view li.active a:before {
	border-width: 5px;
	border-color: #5c3da5;
}

.compare-wrap {
	position: relative;
}

.compare-fix-header {
	position: fixed;
	top: 0;
	left: 50%;
	width: 100%;
	transform: translateX(-50%);
	z-index: 10;
	visibility: hidden;
	opacity: 0;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	transition: all 0.7s ease;
}

.compare-fix-header.active {
	visibility: visible;
	opacity: 1;
}

.compare-fix-header.active.to-bottom {
	position: absolute;
	bottom: 0;
	top: auto;
}

.compare-fix-header .compare-list {
	background-color: #fff;
	box-shadow: 0 4px 23px rgba(0, 0, 0, 0.05);
}

.compare-list {
	display: flex;
}

.compare-list.slick-slider {
	display: block;
}

.compare-list .product-item .thumb {
	height: 230px;
}

.compare-list .slick-arrow {
	top: 210px;
}

.compare-list .item {
	flex: 1 0 0;
}

.compare-list .product-item {
	border-radius: 0;
	padding-left: 40px;
	padding-right: 40px;
}

@media screen and (max-width: 1199px) {
	.compare-list .product-item {
		padding-left: 20px;
		padding-right: 20px;
		height: 460px;
	}
}

.compare-list .product-item:hover {
	box-shadow: none;
}

.compare-list .product-item .name a:hover {
	text-decoration: underline;
}

.compare-list .product-item .prod-actions {
	opacity: 1;
	display: flex;
	top: 20px;
	right: 40px;
	flex-direction: row;
}

@media screen and (max-width: 1199px) {
	.compare-list .product-item .prod-actions {
		flex-direction: column;
		right: 20px;
	}
}

.compare-list .product-item .prod-actions li a {
	margin-bottom: 0;
	margin-left: 10px;
}

@media screen and (max-width: 1199px) {
	.compare-list .product-item .prod-actions li a {
		margin-bottom: 10px;
		margin-left: 0;
	}
}

.compare-list .product-item .category {
	font-size: 13px;
	line-height: 18px;
	color: #969696;
	margin-bottom: 15px;
}

.compare-list .product-item .item-bottom {
	justify-content: flex-start;
}

.compare-list .product-item .item-bottom .btn {
	margin-left: 25px;
}

.compare-list .prod-specs {
	padding-left: 40px;
	padding-right: 40px;
	padding-bottom: 40px;
}

.compare-list .prod-specs .specs-title {
	margin-top: 77px;
	font-size: 24px;
	line-height: 26px;
	margin-bottom: 55px;
}

.compare-list .prod-specs ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.compare-list .prod-specs ul li {
	margin-bottom: 50px;
}

.compare-list .prod-specs ul li .key {
	display: block;
	color: #aaa;
	margin-bottom: 15px;
	font-size: 20px;
	line-height: 26px;
}

.compare-list .prod-specs ul li .val {
	display: block;
	font-size: 15px;
	line-height: 24px;
}

.product-item .prod-actions .delete-item {
	display: none;
}

.section-wishlist {
	padding-bottom: 157px;
}

.wishlist-wrap {
	background-color: #fff;
	padding-bottom: 70px;
}

.wishlist-wrap .wishlist-slider {
	margin-top: 18px;
}

.wishlist-wrap .wishlist-slider .slick-arrow.slick-prev {
	left: -21px;
}

.wishlist-wrap .wishlist-slider .slick-arrow.slick-next {
	right: -21px;
}

.wishlist-wrap .slider-action {
	display: none;
}

.wishlist-wrap .product-item {
	max-width: 340px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 30px;
	padding-top: 52px;
	height: 515px;
}

.wishlist-wrap .product-item .thumb {
	height: 235px;
	margin-bottom: 74px;
}

.wishlist-wrap .product-item .prod-actions {
	opacity: 1;
}

.wishlist-wrap .product-item .prod-actions .to-wish {
	display: none;
}

.wishlist-wrap .product-item .prod-actions .delete-item {
	display: list-item;
}

.quantity {
	display: flex;
	align-items: center;
}

.quantity span {
	cursor: pointer;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 26px;
	height: 26px;
}

.quantity span path {
	fill: #000;
}

.quantity span.disabled {
	pointer-events: none;
}

.quantity span.disabled path {
	fill: #bbb;
}

.quantity span:hover path {
	fill: #5c3da5;
}

.quantity input {
	width: 26px;
	border-top-width: 0;
	border-left-width: 0;
	border-right-width: 0;
	border-color: #bbb;
	padding: 5px 0 5px;
	font-size: 16px;
	line-height: 17px;
	text-align: center;
}

.section-checkout {
	padding-top: 64px;
	padding-bottom: 100px;
}

.section-checkout .container {
	width: 930px;
}

@media screen and (max-width: 1600px) {
	.section-checkout .container {
		width: 940px;
	}
}

.section-checkout .input-wrap input {
	width: 100%;
	height: 42px;
	padding: 0 15px;
	background: #fff;
	border: 1px solid #c2c2c2;
	box-sizing: border-box;
	border-radius: 6px;
	font-size: 15px;
}

.section-checkout .input-wrap input.not-valid {
	border-color: red;
}

.section-checkout .input-wrap::-webkit-input-placeholder {
	color: #6f6f6f;
}

.section-checkout .input-wrap::-moz-placeholder {
	color: #6f6f6f;
}

.section-checkout .input-wrap:-ms-input-placeholder {
	color: #6f6f6f;
}

.section-checkout .input-wrap:-moz-placeholder {
	color: #6f6f6f;
}

.section-checkout .input-wrap:focus {
	border-color: #5c3da5;
}

.section-checkout .checkout-title {
	font-size: 30px;
	line-height: 40px;
}

.section-checkout .back-link {
	font-size: 14px;
	line-height: 18px;
	color: #6f6f6f;
}

.section-checkout .back-link:hover {
	color: #c42d96;
}

.section-checkout .checkout-blocks {
	margin-top: 35px;
}

.section-checkout .checkout-blocks__item {
	background-color: #fff;
	box-shadow: 0 4px 23px rgba(0, 0, 0, 0.05);
	margin-bottom: 20px;
	padding: 26px 30px;
}

.section-checkout .checkout-blocks__item .block-title {
	font-size: 18px;
	line-height: 28px;
}

.section-checkout .checkout-blocks__item.not-active .block-title {
	color: #6f6f6f;
}

.section-checkout .checkout-blocks__item .label {
	font-size: 18px;
	line-height: 28px;
}

.section-checkout .checkout-blocks .checkout-cart__row {
	display: flex;
	justify-content: space-between;
	padding-bottom: 30px;
	padding-top: 22px;
}

.section-checkout .checkout-blocks .checkout-cart__row .thumb {
	width: 123px;
	height: 106px;
	margin-right: 10px;
}

.section-checkout .checkout-blocks .checkout-cart__row .thumb img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.section-checkout .checkout-blocks .checkout-cart__row .col:nth-child(2) {
	width: 327px;
	margin-right: auto;
}

.section-checkout .checkout-blocks .checkout-cart__row .col:last-child {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
	width: 280px;
}

.section-checkout .checkout-blocks .checkout-cart__row .col:last-child > .d-flex {
	align-items: flex-end;
	width: 100%;
}

.section-checkout .checkout-blocks .checkout-cart__row .category {
	font-size: 13px;
	line-height: 17px;
	margin-bottom: 12px;
	color: #969696;
}

.section-checkout .checkout-blocks .checkout-cart__row .title {
	font-size: 15px;
	line-height: 24px;
	margin-bottom: 29px;
}

.section-checkout .checkout-blocks .checkout-cart__row .articul {
	font-size: 13px;
	line-height: 26px;
	color: #6f6f6f;
}

.section-checkout .checkout-blocks .checkout-cart__row .price {
	position: relative;
}

.section-checkout .checkout-blocks .checkout-cart__row .price .old {
	font-size: 14px;
	line-height: 18px;
	margin-bottom: 8px;
	text-decoration: line-through;
	display: block;
	text-align: right;
	color: #aaa;
}

.section-checkout .checkout-blocks .checkout-cart__row .price .current {
	font-size: 18px;
	line-height: 24px;
}

.section-checkout .checkout-blocks .checkout-cart__row .row-actions {
	text-align: right;
	font-size: 13px;
	line-height: 24px;
	color: #626262;
}

.section-checkout .checkout-blocks .checkout-cart__row .row-actions a {
	display: inline-flex;
	align-items: center;
	line-height: 24px;
}

.section-checkout .checkout-blocks .checkout-cart__row .row-actions a i {
	vertical-align: middle;
	line-height: 1;
	margin-right: 5px;
}

.section-checkout .checkout-blocks .checkout-cart__row .row-actions a i:before {
	color: #626262;
}

.section-checkout .checkout-blocks .checkout-cart__row .row-actions a:hover {
	color: #c42d96;
}

.section-checkout .checkout-blocks .checkout-cart__row .row-actions a:hover i:before {
	color: #c42d96;
}

.section-checkout .checkout-blocks .checkout-cart__row .row-actions a:last-child {
	margin-left: 30px;
}

.section-checkout .checkout-blocks .checkout-total {
	margin-left: -30px;
	margin-right: -30px;
	padding: 30px 30px 5px;
	border-top: 1px solid #c2c2c2;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.section-checkout .checkout-blocks .checkout-total p {
	margin: 0;
	font-size: 13px;
	line-height: 24px;
}

.section-checkout .checkout-blocks .checkout-total p a {
	color: #c42d96;
}

.section-checkout .checkout-blocks .checkout-total p a:hover {
	text-decoration: underline;
}

.section-checkout .checkout-blocks .checkout-total p .rose {
	color: #c42d96;
}

.section-checkout .checkout-blocks .checkout-total .total {
	color: #626262;
	font-size: 13px;
}

.section-checkout .checkout-blocks .checkout-total .total .price {
	margin-left: 22px;
	color: #101010;
	font-size: 18px;
}

.section-checkout .checkout-blocks .promocode .input-wrap {
	width: 417px;
	margin-left: auto;
}

@media screen and (max-width: 1199px) {
	.section-checkout .checkout-blocks .promocode .input-wrap {
		width: 501px;
	}
}

.section-checkout .checkout-blocks .promocode .input-wrap input {
	font-size: 16px;
}

.section-checkout .checkout-blocks .promocode .input-wrap input::-webkit-input-placeholder {
	color: #c2c2c2;
}

.section-checkout .checkout-blocks .promocode .input-wrap input::-moz-placeholder {
	color: #c2c2c2;
}

.section-checkout .checkout-blocks .promocode .input-wrap input:-ms-input-placeholder {
	color: #c2c2c2;
}

.section-checkout .checkout-blocks .promocode .input-wrap input:-moz-placeholder {
	color: #c2c2c2;
}

.section-checkout .checkout-blocks .promocode .btn {
	border: 1px solid #6f6f6f;
	box-sizing: border-box;
	border-radius: 6px;
	color: #6f6f6f;
	width: 200px;
	margin-left: 18px;
	height: 42px;
	font-size: 16px;
}

.section-checkout .checkout-blocks .order-total .price {
	font-size: 18px;
}

.section-checkout .checkout-blocks .order-total .btn {
	background: #c42d96;
	border-radius: 6px;
	height: 42px;
	width: 200px;
	font-size: 16px;
}

.section-checkout .checkout-blocks .phone-form {
	margin-top: 35px;
}

.section-checkout .checkout-blocks .phone-form .input-wrap {
	width: 417px;
}

.section-checkout .checkout-blocks .phone-form .input-wrap input {
	font-size: 16px;
}

.section-checkout .checkout-blocks .phone-form .btn {
	height: 42px;
	width: 200px;
	font-size: 16px;
}

.section-checkout .checkout-blocks .phone-form .desc {
	margin-top: 23px;
	font-size: 13px;
	line-height: 24px;
}

.section-checkout .checkout-blocks .phone-form .desc a {
	color: #c42d96;
}

.section-checkout .checkout-blocks .phone-form .desc a:hover {
	text-decoration: underline;
}

.section-checkout .checkout-blocks .passed-phone {
	font-size: 16px;
	line-height: 24px;
	margin-top: 31px;
	color: #6f6f6f;
}

.section-checkout .checkout-blocks .edit-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #626262;
	font-size: 13px;
}

.section-checkout .checkout-blocks .edit-link svg {
	margin-right: 5px;
}

.section-checkout .checkout-blocks .edit-link:hover {
	color: #c42d96;
}

.section-checkout .checkout-blocks .edit-link:hover path {
	fill: #c42d96;
}

.section-checkout .checkout-blocks .chose-delivery {
	display: flex;
	flex-wrap: wrap;
	margin-top: 44px;
}

.section-checkout .checkout-blocks .chose-delivery .chose-block {
	position: relative;
	padding-left: 32px;
	margin-right: 40px;
	width: 352px;
	margin-bottom: 20px;
}

.section-checkout .checkout-blocks .chose-delivery .chose-block label {
	display: block;
	margin-bottom: 11px;
	cursor: pointer;
}

.section-checkout .checkout-blocks .chose-delivery .chose-block label input {
	position: absolute;
	visibility: hidden;
}

.section-checkout .checkout-blocks .chose-delivery .chose-block label > span {
	display: block;
	font-size: 14px;
}

.section-checkout .checkout-blocks .chose-delivery .chose-block label > span a {
	color: #c42d96;
	text-decoration: none;
}

.section-checkout .checkout-blocks .chose-delivery .chose-block label > span a:hover {
	text-decoration: underline;
}

.section-checkout .checkout-blocks .chose-delivery .chose-block label > span .rose {
	display: inline;
	color: #c42d96;
}

.section-checkout .checkout-blocks .chose-delivery .chose-block label > span:before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 10px;
	border: 1px solid #c2c2c2;
	position: absolute;
	left: 0;
	top: 0;
}

.section-checkout .checkout-blocks .chose-delivery .chose-block label > span:hover:before {
	border-color: #5c3da5;
}

.section-checkout .checkout-blocks .chose-delivery .chose-block label input:checked + span:before {
	border-width: 5px;
	border-color: #5c3da5;
}

.section-checkout .checkout-blocks .chose-delivery .chose-block a {
	text-decoration: underline;
	color: #626262;
	font-size: 13px;
}

.section-checkout .checkout-blocks .chose-delivery .chose-block a:hover {
	color: #c42d96;
}

.section-checkout .checkout-blocks .delivery-form {
	margin-top: 38px;
}

.section-checkout .checkout-blocks .delivery-form .input-wrap {
	width: calc(50% - 10px);
	margin-bottom: 20px;
}

.section-checkout .checkout-blocks .delivery-form .col {
	width: calc(50% - 10px);
	margin-top: 25px;
}

.section-checkout .checkout-blocks .delivery-form .col .col-label {
	font-size: 14px;
	line-height: 18px;
	margin-bottom: 27px;
}

.section-checkout .checkout-blocks .delivery-form .comment-wrap {
	margin-top: 30px;
	border-top: 1px solid #c2c2c2;
	padding-top: 53px;
	margin-bottom: 34px;
}

.section-checkout .checkout-blocks .delivery-form .comment-wrap textarea {
	display: block;
	width: 100%;
	height: 103px;
	resize: none;
	background: #fff;
	border: 1px solid #c2c2c2;
	box-sizing: border-box;
	border-radius: 6px;
	padding: 20px 17px;
	font-size: 15px;
}

@media screen and (max-width: 767px) {
	.section-checkout .checkout-blocks .delivery-form .comment-wrap textarea {
		height: 120px;
	}
}

.section-checkout .checkout-blocks .delivery-form .btn {
	width: 200px;
	height: 42px;
	display: flex;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 15px;
	font-size: 16px;
}

.section-checkout .checkout-blocks .delivery-address {
	margin-top: 30px;
	font-size: 14px;
	line-height: 34px;
}

.section-checkout .checkout-blocks .delivery-address a {
	color: #c42d96;
}

.section-checkout .checkout-blocks .delivery-address .rose {
	color: #c42d96;
}

.section-checkout .checkout-blocks .client-type {
	display: flex;
	flex-wrap: wrap;
	margin-top: 40px;
}

.section-checkout .checkout-blocks .client-type .chose-block {
	position: relative;
	padding-left: 32px;
	margin-right: 40px;
	width: 220px;
	margin-bottom: 20px;
}

.section-checkout .checkout-blocks .client-type .chose-block label {
	display: block;
	margin-bottom: 11px;
	cursor: pointer;
}

.section-checkout .checkout-blocks .client-type .chose-block label input {
	position: absolute;
	visibility: hidden;
}

.section-checkout .checkout-blocks .client-type .chose-block label span {
	display: block;
	font-size: 14px;
}

.section-checkout .checkout-blocks .client-type .chose-block label span a {
	color: #c42d96;
	text-decoration: none;
}

.section-checkout .checkout-blocks .client-type .chose-block label span a:hover {
	text-decoration: underline;
}

.section-checkout .checkout-blocks .client-type .chose-block label span:before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 10px;
	border: 1px solid #c2c2c2;
	position: absolute;
	left: 0;
	top: 0;
}

.section-checkout .checkout-blocks .client-type .chose-block label span:hover:before {
	border-color: #5c3da5;
}

.section-checkout .checkout-blocks .client-type .chose-block label input:checked + span:before {
	border-width: 5px;
	border-color: #5c3da5;
}

.section-checkout .checkout-blocks .client-type .chose-block a {
	text-decoration: underline;
	color: #626262;
	font-size: 13px;
}

.section-checkout .checkout-blocks .client-type .chose-block a:hover {
	color: #c42d96;
}

.section-checkout .checkout-blocks .btn-wrap {
	margin-left: -30px;
	margin-right: -30px;
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 38px;
	padding-bottom: 15px;
	border-top: 1px solid #c2c2c2;
	text-align: center;
}

.section-checkout .checkout-blocks .btn-wrap .btn {
	width: 200px;
	height: 42px;
	font-size: 16px;
}

.section-checkout .checkout-blocks .client-final .order-confirmation {
	border-top: 1px solid #c2c2c2;
	padding-top: 40px;
	margin-top: 13px;
	margin-left: -30px;
	margin-right: -30px;
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 40px;
}

.section-checkout .checkout-blocks .client-final .order-confirmation .col {
	width: calc(50% - 10px);
}

.section-checkout .checkout-blocks .client-final .order-confirmation .col .product + .product {
	margin-top: 46px;
}

.section-checkout .checkout-blocks .client-final .order-confirmation .col .product .thumb {
	height: 84px;
	width: 100px;
	margin-right: 18px;
}

.section-checkout .checkout-blocks .client-final .order-confirmation .col .product .thumb img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.section-checkout .checkout-blocks .client-final .order-confirmation .col .product .title {
	font-size: 15px;
	line-height: 24px;
}

.section-checkout .checkout-blocks .client-final .order-confirmation .col .chose-block {
	position: relative;
	padding-left: 32px;
	margin-right: 40px;
	width: 220px;
	margin-bottom: 60px;
}

.section-checkout .checkout-blocks .client-final .order-confirmation .col .chose-block label {
	display: block;
	margin-bottom: 11px;
	cursor: pointer;
}

.section-checkout .checkout-blocks .client-final .order-confirmation .col .chose-block label input {
	position: absolute;
	visibility: hidden;
}

.section-checkout .checkout-blocks .client-final .order-confirmation .col .chose-block label span {
	display: block;
	font-size: 14px;
}

.section-checkout .checkout-blocks .client-final .order-confirmation .col .chose-block label span a {
	color: #c42d96;
	text-decoration: none;
}

.section-checkout .checkout-blocks .client-final .order-confirmation .col .chose-block label span a:hover {
	text-decoration: underline;
}

.section-checkout .checkout-blocks .client-final .order-confirmation .col .chose-block label span:before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 10px;
	border: 1px solid #c2c2c2;
	position: absolute;
	left: 0;
	top: 0;
}

.section-checkout .checkout-blocks .client-final .order-confirmation .col .chose-block label span:hover:before {
	border-color: #5c3da5;
}

.section-checkout
.checkout-blocks
.client-final
.order-confirmation
.col
.chose-block
label
input:checked
+ span:before {
	border-width: 5px;
	border-color: #5c3da5;
}

.section-checkout .checkout-blocks .client-final .order-confirmation .col .chose-block a {
	text-decoration: underline;
	color: #626262;
	font-size: 13px;
}

.section-checkout .checkout-blocks .client-final .order-confirmation .col .chose-block a:hover {
	color: #c42d96;
}

.section-checkout .checkout-blocks .client-final .order-confirmation .order-total-col {
	width: 271px;
	font-size: 15px;
	line-height: 22px;
}

.section-checkout .checkout-blocks .client-final .order-confirmation .order-total-col > div:first-child {
	border-bottom: 1px solid #c2c2c2;
	padding-bottom: 15px;
}

.section-checkout .checkout-blocks .client-final .order-confirmation .order-total-col > div {
	margin-bottom: 15px;
}

.section-checkout .checkout-blocks .client-final .order-confirmation .order-total-col .discount {
	color: #c42d96;
}

.section-checkout .checkout-blocks .client-final .order-confirmation .order-total-col .price {
	font-weight: 500;
	font-size: 18px;
}

.section-checkout .checkout-blocks .client-final .org-form {
	gap: 0 40px;
	margin: 0 -30px;
	padding: 40px 30px 0;
	border-top: 1px solid #c2c2c2;
}

.section-checkout .checkout-blocks .client-final .org-form .input-wrap {
	margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
	.section-checkout .checkout-blocks .client-final .org-form .input-wrap {
		margin-bottom: 20px;
	}
}

.section-checkout .checkout-blocks .client-final .org-form .col:first-child {
	width: 420px;
	min-width: calc(50% - 10px);
}

.section-checkout .checkout-blocks .client-final .org-form .col:last-child {
	width: 326px;
	max-width: calc(50% - 10px);
}

@media screen and (min-width: 1024px) and (max-width: 1199px) {
	.section-checkout .checkout-blocks .client-final .org-form .col:last-child {
		margin-right: auto;
		margin-left: 94px;
	}
}

.section-checkout .checkout-blocks .client-final .org-form .col:last-child p {
	font-size: 13px;
	line-height: 20px;
	margin: 0 0 28px;
	color: #6f6f6f;
}

.checkout-thanks {
	background: #fff;
	box-shadow: 0 4px 23px rgba(0, 0, 0, 0.05);
	text-align: center;
	padding: 70px 30px;
	margin-bottom: 80px;
	margin-top: 32px;
}

.checkout-thanks .title {
	font-size: 30px;
	line-height: 40px;
	margin-bottom: 60px;
}

.checkout-thanks p {
	color: #6f6f6f;
	font-size: 18px;
	line-height: 24px;
	margin: 0 0 54px;
}

.checkout-thanks p.rose {
	color: #c42d96;
	margin-bottom: 43px;
	font-weight: 500;
}

.checkout-thanks p a {
	color: #c42d96;
}

.checkout-thanks .btn {
	width: 227px;
	font-size: 16px;
}

.main-static {
	padding-bottom: 170px;
}

.main-static .tags {
	list-style-type: none;
	margin: 0 0 97px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}

.main-static .tags li {
	margin-right: 10px;
	margin-bottom: 10px;
}

.main-static .tags li a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 32px;
	border: 1px solid #dad9d9;
	box-sizing: border-box;
	border-radius: 4px;
	min-width: 108px;
	padding: 0 10px;
	font-size: 14px;
	line-height: 18px;
	text-transform: uppercase;
	color: #6f6f6f;
}

.main-static .tags li a:hover {
	border-color: #c42d96;
	color: #c42d96;
}

.main-static .section-camera-test .rose {
	font-weight: 500;
	font-size: 24px;
	line-height: 34px;
	color: #9e2579;
	margin-bottom: 106px;
}

.main-static .section-camera-test .block-title {
	font-weight: 500;
	font-size: 24px;
	line-height: 36px;
	margin-bottom: 65px;
}

.main-static .section-camera-test .d-flex.by-3,
.main-static .section-camera-test .slider-photos {
	margin-bottom: 160px;
}

@media screen and (max-width: 767px) {
	.main-static .section-camera-test .d-flex.by-3,
	.main-static .section-camera-test .slider-photos {
		margin-bottom: 60px;
	}
}

.main-static .section-camera-test .slider-photos {
	width: 1455px;
	max-width: 100%;
	margin-right: auto;
	margin-left: auto;
}

.main-static .section-camera-test .slider-photos .item {
	padding-left: 15px;
	padding-right: 15px;
}

.main-static .section-camera-test .slider-photos .item img {
	width: 100%;
	height: 282px;
	-o-object-fit: cover;
	object-fit: cover;
}

.main-static .section-camera-test .slider-photos .item img.contain {
	-o-object-fit: contain;
	object-fit: contain;
}

@media screen and (max-width: 767px) {
	.main-static .section-camera-test .slider-photos .item img {
		height: 100px;
	}
}

.main-static .section-camera-test .slider-photos .slick-arrow.slick-next {
	right: -106px;
}

.main-static .section-camera-test .slider-photos .slick-arrow.slick-prev {
	left: -106px;
}

@media screen and (max-width: 1500px) {
	.main-static .section-camera-test .slider-photos .slick-arrow.slick-next {
		right: -21px;
	}

	.main-static .section-camera-test .slider-photos .slick-arrow.slick-prev {
		left: -21px;
	}
}

.main-static .section-camera-test .promotion {
	background: #f5f5f6;
	border-radius: 10px;
	margin-top: 207px;
	margin-bottom: 122px;
	position: relative;
}

.main-static .section-camera-test .promotion a {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 767px) {
	.main-static .section-camera-test .promotion {
		margin-top: 60px;
		margin-bottom: 60px;
	}
}

.main-static .section-camera-test .promotion .d-flex {
	height: 280px;
}

.main-static .section-camera-test .promotion .d-flex .col {
	width: 50%;
	display: flex;
	align-items: center;
	font-weight: 500;
	font-size: 40px;
	line-height: 50px;
	padding: 0 40px;
}

.main-static .section-camera-test .promotion .d-flex .col:first-child {
	justify-content: flex-end;
}

@media screen and (min-width: 1200px) {
	.main-static .section-camera-test .promotion .d-flex .col:first-child {
		padding-right: 90px;
	}
}

.main-static .section-camera-test .promotion .d-flex .col:last-child {
	justify-content: flex-start;
	display: flex;
	align-items: flex-end;
}

@media screen and (min-width: 1200px) {
	.main-static .section-camera-test .promotion .d-flex .col:last-child {
		padding-left: 90px;
	}
}

.main-static .section-camera-test .promotion .d-flex .col:last-child img {
	max-height: 100%;
	max-width: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.main-static .section-komplekt .download {
	font-size: 20px;
}

.main-static .section-komplekt .download img {
	margin-right: 30px;
}

.section-komplekt__download img {
	margin-left: 0 !important;
}

.main-static .section-komplekt .download a {
	text-decoration: underline;
	color: #c42d96;
}

.main-static .section-komplekt .download a:hover {
	text-decoration: none;
}

.main-static .section-komplekt .content .content-block {
	margin-bottom: 140px;
}

.main-static .section-komplekt .content .content-block .col:last-child {
	padding-top: 90px;
}

.main-static .section-komplekt .content .content-block .col:last-child p:first-child {
	margin-bottom: 63px;
}

.main-static .section-komplekt p {
	margin: 0 0 30px;
}

.main-static .section-komplekt .rose {
	color: #9e2579;
	font-weight: 500;
}

.main-static .section-komplekt .promotion {
	background: #f5f5f6;
	border-radius: 10px;
	margin-bottom: 122px;
	position: relative;
}

.main-static .section-komplekt .promotion a {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.main-static .section-komplekt .promotion .d-flex {
	height: 280px;
}

.main-static .section-komplekt .promotion .d-flex .col {
	width: 50%;
	display: flex;
	align-items: center;
	font-weight: 500;
	font-size: 40px;
	line-height: 50px;
	padding: 0 40px;
}

.main-static .section-komplekt .promotion .d-flex .col:first-child {
	justify-content: flex-end;
}

.main-static .section-komplekt .promotion .d-flex .col:last-child {
	justify-content: flex-start;
	display: flex;
	align-items: flex-end;
}

.main-static .section-komplekt .promotion .d-flex .col:last-child img {
	max-height: 100%;
	max-width: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.content .d-flex.by-3 {
	margin-right: -15px;
	margin-left: -15px;
}

.content .d-flex.by-3 .item {
	width: 455px;
	margin: 0 15px;
	max-width: calc(33.3333333333% - 30px);
}

.content .d-flex.by-3 .item img {
	width: 100%;
	height: 282px;
	-o-object-fit: cover;
	object-fit: cover;
}

.modal,
.modal-box {
	z-index: 900;
}

.modal-sandbox {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: 0 0;
}

.modal {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000;
	background: rgba(0, 0, 0, 0.4);
	overflow: auto;
}

.modal-box {
	position: relative;
	width: 1376px;
	max-width: calc(100% - 40px);
	margin: 100px auto;
	-webkit-animation-name: modalbox;
	animation-name: modalbox;
	-webkit-animation-duration: 0.4s;
	animation-duration: 0.4s;
	-webkit-animation-timing-function: cubic-bezier(0, 0, 0.3, 1.6);
	animation-timing-function: cubic-bezier(0, 0, 0.3, 1.6);
}

@media screen and (max-width: 767px) {
	.modal-box {
		max-width: calc(100% - 30px);
	}
}

.small .modal-box {
	width: 840px;
}

.modal-header {
	padding: 20px 40px;
	background: #546e7a;
	color: #fff;
}

.modal-body {
	background: #fff;
	box-shadow: 0 8px 32px rgba(43, 45, 51, 0.08);
	border-radius: 10px;
}

.modal-body > .close-modal {
	cursor: pointer;
	position: absolute;
	top: 30px;
	right: 30px;
	font-size: 32px;
	line-height: 1;
}

.modal-body > .close-modal i:before {
	color: #000;
}

.modal-body > .close-modal:hover i:before {
	color: #c42d96;
}

@-webkit-keyframes modalbox {
	0% {
		top: -250px;
		opacity: 0;
	}

	100% {
		top: 0;
		opacity: 1;
	}
}

@keyframes modalbox {
	0% {
		top: -250px;
		opacity: 0;
	}

	100% {
		top: 0;
		opacity: 1;
	}
}

.cart-wrap {
	padding-top: 40px;
	padding-bottom: 44px;
	padding-left: 55px;
	padding-right: 90px;
}

.cart-wrap .quantity input {
	border-bottom-width: 1px;
}

.cart-wrap .btn {
	border-radius: 8px;
	font-size: 16px;
	padding: 0 16px;
}

.cart-wrap .cart-header {
	margin-bottom: 38px;
}

@media screen and (max-width: 1023px) {
	.cart-wrap .cart-header .btns-wrap {
		display: none;
	}
}

.cart-wrap .cart-header .btn {
	margin-left: 20px;
	width: 200px;
}

.cart-wrap .cart-title {
	font-weight: 500;
	font-size: 30px;
}

.cart-wrap .prod-row {
	align-items: flex-start;
}

.cart-wrap .prod-row > .col > .d-flex {
	margin-bottom: 34px;
}

.cart-wrap .prod-row .thumb {
	width: 155px;
	height: 118px;
}

.cart-wrap .prod-row .thumb img {
	max-height: 100%;
	max-width: 90%;
}

.cart-wrap .prod-row .art {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 7px;
	color: #6f6f6f;
}

.cart-wrap .prod-row .title {
	font-size: 24px;
	line-height: 34px;
	margin-bottom: 17px;
}

.cart-wrap .prod-row .avilability {
	font-size: 14px;
	line-height: 24px;
	margin-right: 20px;
	color: #5c3da5;
}

.cart-wrap .prod-row .p-delivery {
	color: #6f6f6f;
	font-size: 14px;
	line-height: 24px;
}

.cart-wrap .prod-row > .col:last-child {
	justify-content: space-between;
}

.cart-wrap .prod-row .price {
	font-size: 24px;
}

.cart-wrap .prod-row .quantity input {
	font-size: 24px;
	width: 36px;
	line-height: 1;
	border-bottom-width: 1px;
}

.cart-wrap .prod-row .quantity span {
	width: 30px;
	height: 43px;
}

.cart-wrap .prod-row .quantity span svg {
	width: 18px;
	height: 18px;
}

.cart-wrap .cart-inner .btns-wrap {
	display: none;
}

@media screen and (max-width: 1023px) {
	.cart-wrap .cart-inner .btns-wrap {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin-bottom: 35px;
	}

	.cart-wrap .cart-inner .btns-wrap .btn {
		margin: 0 10px;
	}
}

@media screen and (max-width: 767px) {
	.cart-wrap .cart-inner .btns-wrap {
		margin-bottom: 0;
	}

	.cart-wrap .cart-inner .btns-wrap .btn {
		width: 100%;
		margin: 0 0 20px;
	}

	.cart-wrap .fast-order.fast-order-btm {
		display: block;
	}

	.cart-wrap .btns-wrap.btns-wrap-btm {
		display: none;
	}

	.cart-wrap .fast-order.fast-order-top {
		display: none;
	}
}

.cart-wrap .prod-kompl {
	padding-left: 155px;
}

.cart-wrap .prod-kompl .kompl-row {
	height: 45px;
	padding: 10px 7px;
	margin-left: -7px;
	margin-right: -7px;
	margin-bottom: 20px;
}

.cart-wrap .prod-kompl .kompl-row.active {
	background: #f8f8f8;
}

.cart-wrap .prod-kompl .kompl-row.active .quantity {
	visibility: visible;
}

.cart-wrap .prod-kompl .kompl-row .name {
	width: 240px;
	color: #9e2579;
}

.cart-wrap .prod-kompl .kompl-row .name label input {
	visibility: hidden;
	position: absolute;
}

.cart-wrap .prod-kompl .kompl-row .name label span {
	position: relative;
	padding-left: 39px;
	font-size: 18px;
	line-height: 24px;
	display: inline-block;
	cursor: pointer;
}

.cart-wrap .prod-kompl .kompl-row .name label span::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 24px;
	height: 24px;
	background-color: #fff;
	border: 1px solid #c2c2c2;
	box-sizing: border-box;
	border-radius: 4px;
}

.cart-wrap .prod-kompl .kompl-row .name label input:checked + span::before {
	background-color: #5c3da5;
	background-image: url("checkbox.svg");
	background-repeat: no-repeat;
	background-position: 5px 7px;
	border-color: #5c3da5;
}

.cart-wrap .prod-kompl .kompl-row .info {
	width: 28px;
	position: relative;
	font-size: 0;
	line-height: 0;
	cursor: pointer;
}

.cart-wrap .prod-kompl .kompl-row .info .info-window {
	position: absolute;
	opacity: 0;
	visibility: hidden;
	font-size: 14px;
	line-height: 24px;
	background: #fff;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	padding: 30px;
	left: calc(100% + 30px);
	bottom: -72px;
	width: 376px;
	max-width: 100vw;
}

.cart-wrap .prod-kompl .kompl-row .info .info-window p {
	margin: 0;
}

.cart-wrap .prod-kompl .kompl-row .info .info-window p a {
	color: #c42d96;
	text-decoration: underline;
}

.cart-wrap .prod-kompl .kompl-row .info .info-window p a:hover {
	text-decoration: none;
}

.cart-wrap .prod-kompl .kompl-row .info .info-window p + p {
	margin-top: 28px;
	color: #5c3da5;
}

.cart-wrap .prod-kompl .kompl-row .info .info-window p i {
	font-size: 24px;
	margin-right: 20px;
	vertical-align: bottom;
}

.cart-wrap .prod-kompl .kompl-row .info .info-window p i:before {
	color: #5c3da5;
}

.cart-wrap .prod-kompl .kompl-row .info .info-window::after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 20px 10px 0;
	border-color: transparent #fff transparent transparent;
	position: absolute;
	left: -20px;
	bottom: 75px;
}

.cart-wrap .prod-kompl .kompl-row .info:hover .info-window {
	visibility: visible;
	opacity: 1;
}

.cart-wrap .prod-kompl .kompl-row .delivery {
	width: 30px;
	line-height: 0;
}

.cart-wrap .prod-kompl .kompl-row .delivery i {
	width: 30px;
	height: 30px;
	border-radius: 15px;
	background: #efeefe;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
}

.cart-wrap .prod-kompl .kompl-row .delivery i::before {
	color: #5c3da5;
}

.cart-wrap .prod-kompl .kompl-row .item-fullness {
	width: 80px;
}

.cart-wrap .prod-kompl .kompl-row .item-fullness i:first-child {
	margin: 0;
}

.cart-wrap .prod-kompl .kompl-row .quantity {
	visibility: hidden;
	width: 80px;
}

.cart-wrap .prod-kompl .kompl-row .quantity input {
	background: 0 0;
}

.cart-wrap .prod-kompl .kompl-row .price {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	width: 280px;
}

.cart-wrap .prod-kompl .kompl-row .price .current {
	font-size: 22px;
	line-height: 24px;
	white-space: nowrap;
}

.cart-wrap .prod-kompl .kompl-row .price .old {
	font-size: 14px;
	line-height: 24px;
	text-decoration: line-through;
	margin-right: 30px;
	color: #aaa;
}

.cart-wrap .prod-kompl .kompl-row .price .economy {
	color: #c42d96;
	font-size: 14px;
	background-color: rgba(196, 45, 150, 0.1);
	border-radius: 4px;
	line-height: 24px;
	white-space: nowrap;
	margin-right: 0;
	padding: 0;
	width: 138px;
	text-align: center;
}

@media screen and (max-width: 1023px) {
	.cart-wrap .prod-kompl .kompl-row .price .economy {
		margin-right: 0;
		margin-left: 10px;
	}
}

.cart-wrap .fast-order {
	padding-left: 155px;
}

.cart-wrap .fast-order::before {
	content: '';
	display: block;
	height: 1px;
	background: #c2c2c2;
	margin-bottom: 30px;
	margin-top: 40px;
}

.cart-wrap .fast-order .title {
	font-weight: 500;
	font-size: 20px;
	line-height: 28px;
	margin-bottom: 25px;
}

.cart-wrap .fast-order .desc {
	color: #9e2579;
	width: 512px;
	margin: 0;
	font-size: 15px;
	line-height: 24px;
}

.cart-wrap .fast-order .input-wrap {
	width: 257px;
	flex-shrink: 0;
	margin-left: auto;
}

.cart-wrap .fast-order .input-wrap input {
	background: #fff;
	border: 1px solid #c2c2c2;
	width: 100%;
	border-radius: 4px;
	height: 48px;
	padding: 0 30px;
	font-size: 20px;
	line-height: 24px;
}
.cart-wrap .fast-order .input-wrap input[type=checkbox] {
	width: unset;
	height: unset;
}
.fast-order p a {
	color: #c42d96;
	text-decoration: none;
}

.cart-wrap .fast-order .btn {
	width: 200px;
	margin-left: 20px;
}

.cart-wrap .fast-order .acceptance {
	color: #6f6f6f;
	font-size: 13px;
	margin-top: 25px;
}

.cart-wrap .fast-order .acceptance a {
	/*text-decoration: underline;*/
}

.cart-wrap .fast-order .acceptance a:hover {
	text-decoration: none;
}

.cart-wrap .prod-row > .col:last-child {
	width: 100%;
}
.cart-wrap .fast-order.fast-order-top {
	padding-left: 0;
}
.cart-wrap .fast-order.fast-order-top:before {
	display: none;
}
.cart-wrap .fast-order.fast-order-top::after {
	content: '';
	display: block;
	height: 1px;
	background: #c2c2c2;
	margin-bottom: 20px;
	margin-top: 40px;
}
.cart-wrap .fast-order.fast-order-top .finner {
	justify-content: space-between;
}
.cart-wrap .fast-order.fast-order-top .fast-order__wrapper {
	width: auto;
}
.cart-wrap .fast-order.fast-order-top .fast-order__wrapper .fast-order__phone{
	flex-direction: column;
}
.cart-wrap .fast-order.fast-order-top .input-wrap,
.cart-wrap .fast-order.fast-order-top .btn{
	width: 240px;
	margin: 0;
}
.cart-wrap .fast-order.fast-order-top .input-wrap {
	margin-bottom: 20px;
}
.cart-wrap .fast-order.fast-order-btm {
	display: none;
}
.cart-wrap .btns-wrap.btns-wrap-btm {
	display: block;
	text-align: right;
}
.cart-wrap .btns-wrap.btns-wrap-btm .btn {
	margin-left: 20px;
	width: 200px;
}
.cart-wrap .btns-wrap.btns-wrap-btm .btn {
	margin-left: 20px;
	width: 200px;
}
.cart-wrap .btns-wrap.btns-wrap-btm::before {
	content: '';
	display: block;
	height: 1px;
	background: #c2c2c2;
	margin-bottom: 30px;
	margin-top: 40px;
}

@media screen and (max-width: 1023px) {
	.cart-wrap .fast-order.fast-order-btm {
		display: block;
	}

	.cart-wrap .btns-wrap.btns-wrap-btm {
		display: none;
	}

	.cart-wrap .fast-order.fast-order-top {
		display: none;
	}
}

.modal.small .modal-body {
	padding: 30px;
}

.cities .title {
	font-weight: 500;
	font-size: 30px;
	margin-bottom: 24px;
	line-height: 45px;
	padding-right: 40px;
}

.cities .cities-list {
	-moz-columns: 2;
	columns: 2;
	list-style-type: none;
	margin: 0;
	padding: 0;
	font-size: 16px;
	-moz-column-gap: 23px;
	column-gap: 23px;
}

.cities .cities-list li {
	font-size: 16px;
	line-height: 20px;
	margin-bottom: 20px;
}

.cities .cities-list li .rose,
.cities .cities-list li::first-letter {
	color: #c42d96;
}

.cities .cities-list li a:hover {
	text-decoration: underline;
}

.cities .cities-list li:last-child {
	margin-bottom: 0;
}

.pickup .title {
	font-weight: 500;
	font-size: 30px;
	line-height: 150%;
	margin-bottom: 24px;
}

.pickup .contact-item {
	margin-bottom: 15px;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
}

@media screen and (max-width: 767px) {
	.pickup .contact-item {
		align-items: flex-start;
	}

	.pickup .contact-item:last-child {
		margin-bottom: 0;
	}
}

.pickup .contact-item p {
	margin: 0;
	font-size: 16px;
}

.pickup .contact-item p a:hover {
	text-decoration: underline;
}

.pickup .contact-item img {
	margin-right: 20px;
	max-width: 30px;
	max-height: 30px;
	-o-object-fit: contain;
	object-fit: contain;
}

.pickup .contact-item span {
	font-weight: 400;
}

.pickup .divider {
	height: 1px;
	margin: 24px 0;
	background: #c2c2c2;
}

.pickup .block-title {
	font-weight: 500;
	font-size: 20px;
	line-height: 28px;
	margin-bottom: 30px;
}

.pickup p {
	margin: 0 0 20px;
	font-size: 15px;
}

.pickup > .map-wrap {
	margin-bottom: 40px;
}

.pickup > .map-wrap img {
	max-width: 288px;
	max-height: 327px;
	-o-object-fit: contain;
	object-fit: contain;
}

.pickup .warning {
	color: #c42d96;
	font-weight: 500;
	font-size: 18px;
	line-height: 24px;
	margin-bottom: 15px;
}

.pickup ol {
	margin: 0 0 0 50px;
	padding: 0;
}

.pickup ol li::marker {
	color: #5c3da5;
	font-weight: 700;
	font-size: 15px;
}

.pickup ol li {
	margin-bottom: 24px;
	font-size: 15px;
	line-height: 150%;
	padding-left: 12px;
}

.pickup ol li span {
	color: #5c3da5;
	font-weight: 700;
}

.catalog-child .content-block img {
	display: block;
	margin-left: auto;
	margin-right: 58px;
}

.section-related .section-title {
	margin-top: 140px;
}

@media screen and (min-width: 768px) {
	.section-similar .section-title {
		margin-top: 0px;
	}
}

.main-product .content .content-block:first-child .title {
	padding-top: 20px;
}

@media screen and (max-width: 1199px) {
	.main-product .content .content-block:first-child .title {
		padding-top: 0;
	}
}

.delivery-tab .cols-3 .item .name br {
	display: none;
}

@media screen and (max-width: 767px) {
	.delivery-tab .cols-3 .item .name br {
		display: block;
	}
}

.section-compare .compare-fix-header .page-title,
.section-compare .compare-fix-header .slider-action {
	display: none;
	padding: 0 10px;
}

@media screen and (max-width: 767px) {
	.section-compare .compare-fix-header .page-title,
	.section-compare .compare-fix-header .slider-action {
		display: block;
	}
}

.section-compare .compare-fix-header .page-title {
	margin-top: 40px;
	margin-bottom: 30px;
}

.section-compare .compare-fix-header .slider-action {
	margin-bottom: 40px;
}

.mCustomScrollbar {
	touch-action: initial;
}

.pagination {
	display: inline-flex;
	background: #f8f8f8;
	border-radius: 10px;
}

.pagination .prev {
	width: 65px;
	height: 55px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.pagination .prev:hover path {
	stroke: #c42d96;
}

.pagination .next {
	width: 65px;
	height: 55px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-left: 1px solid #e3e5e6;
}

.pagination .next:hover path {
	stroke: #c42d96;
}

.pagination ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
}

.pagination ul li {
	border-left: 1px solid #e3e5e6;
	font-size: 16px;
}

.pagination ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 55px;
	height: 55px;
}

.pagination ul li a:hover {
	color: #c42d96;
}

.pagination ul li span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 55px;
	height: 55px;
}

.pagination ul li.active {
	border: none;
}

.pagination ul li.active span {
	background-color: #c42d96;
	color: #fff;
	font-weight: 700;
}

.pagination .disabled {
	pointer-events: none;
	opacity: 0.3;
}

.callback-form p {
	color: #6f6f6f;
	font-size: 18px;
	line-height: 24px;
	margin: 0 0 54px;
}

.callback-form p:last-child {
	margin-bottom: 0;
}

.callback-form p.rose {
	color: #c42d96;
	margin-bottom: 43px;
	font-weight: 500;
}

.callback-form p a {
	color: #c42d96;
}

.callback-form .input-wrap {
	margin-bottom: 20px;
}

.callback-form .input-wrap input {
	width: 100%;
	height: 42px;
	padding: 0 15px;
	background: #fff;
	border: 1px solid #c2c2c2;
	box-sizing: border-box;
	border-radius: 6px;
	font-size: 15px;
}

.callback-form .input-wrap input.not-valid {
	border-color: red;
}

.callback-form .input-wrap input[type=checkbox] {
	width: unset;
	height: unset;
}

.callback-form .input-wrap::-webkit-input-placeholder {
	color: #6f6f6f;
}

.callback-form .input-wrap::-moz-placeholder {
	color: #6f6f6f;
}

.callback-form .input-wrap:-ms-input-placeholder {
	color: #6f6f6f;
}

.callback-form .input-wrap:-moz-placeholder {
	color: #6f6f6f;
}

.callback-form .input-wrap:focus {
	border-color: #5c3da5;
}

.product-header__discount {
	margin-right: auto;
	line-height: 40px;
	padding: 0 15px;
}

.products-slider + .slick-dots[data-item-count='1'],
.products-slider + .slick-dots[data-item-count='2'] {
	display: none;
}

@media screen and (min-width: 767px) {
	.products-slider + .slick-dots[data-item-count='3'] {
		display: none;
	}
}

@media screen and (min-width: 1023px) {
	.products-slider + .slick-dots[data-item-count='4'] {
		display: none;
	}
}

@media screen and (min-width: 1600px) {
	.products-slider + .slick-dots[data-item-count='5'] {
		display: none;
	}
}

.mc-breakdwn-star path,
.mc-star path {
	fill: #c42d96 !important;
}

.page-loader {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.5;
	background: #fff url("ajax.gif") no-repeat center center;
	z-index: 99999;
}

.page-loader.active {
	display: block;
}

.cart-wrap .product {
	position: relative;
}

.product-modal-loader {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	opacity: 0.5;
	background: #fff url("ajax.gif") no-repeat center center;
	z-index: 99999;
}

.product-modal-loader.active {
	display: block;
}

.static-rekvizit .box .h5 {
	font-weight: 400;
	margin: 0;
}

.main-static .h5 {
	font-size: 22px;
	font-weight: 500;
}

.modal-delivery-cities {
	padding: 35px;
}

.delivery-update-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	flex: 1;
}

.delivery-span__content {
	margin-top: auto;
	margin-bottom: auto;
}

.comments-for-snippets {
	display: none !important;
}

.js-section-list-short + .js-section-list-long {
	display: none;
}

.page-navigation {
	padding: 25px 0;
}

.page-navigation ul {
	margin-left: -5px;
	margin-right: -5px;
	flex-wrap: wrap;
}

.page-navigation ul li {
	margin: 5px;
}

.page-navigation ul li a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	height: 32px;
	border: 1px solid #dad9d9;
	box-sizing: border-box;
	border-radius: 4px;
	white-space: nowrap;
	padding-left: 7px;
	padding-right: 7px;
	font-size: 14px;
	line-height: 18px;
	color: #6f6f6f;
	text-transform: uppercase;
	min-width: 48px;
}

.page-navigation ul li a:hover {
	border-color: #5c3da5;
	color: #5c3da5;
}

.page-navigation ul li.active a {
	color: #fff;
	background-color: #5c3da5;
	border-color: #5c3da5;
}

.page-navigation.page-navigation--rose ul li a:hover {
	border-color: #c42d96;
	color: #c42d96;
}

.page-navigation.page-navigation--rose ul li.active a {
	color: #fff;
	background-color: #c42d96;
	border-color: #c42d96;
}

.show-all-prices i {
	font-size: 7px;
}

.show-all-prices i::before {
	color: #c42d96;
}

.show-all-prices.active i {
	transform: rotate(180deg);
}

.show-all-prices + .prices-list {
	display: none;
}

.show-all-prices.active + .prices-list {
	display: flex;
}

.section-catalog-products .sidebar .filter-block .checkbox-list {
	padding-bottom: 5px;
	padding-top: 15px;
}

.section-catalog-products .sidebar .filter-block .checkbox-list .checkbox,
.section-catalog-products .sidebar .filter-block .checkbox-list .radio {
	margin-bottom: 23px;
}

.section-catalog-products .sidebar .filter-block .checkbox-list .checkbox label,
.section-catalog-products .sidebar .filter-block .checkbox-list .radio label {
	display: block;
}

.section-catalog-products .sidebar .filter-block .checkbox-list .checkbox label input,
.section-catalog-products .sidebar .filter-block .checkbox-list .radio label input {
	visibility: hidden;
	position: absolute;
}

.section-catalog-products .sidebar .filter-block .checkbox-list .checkbox label input:checked + span,
.section-catalog-products .sidebar .filter-block .checkbox-list .radio label input:checked + span {
	color: #5c3da5;
}

.section-catalog-products .sidebar .filter-block .checkbox-list .checkbox label input:checked + span:before,
.section-catalog-products .sidebar .filter-block .checkbox-list .radio label input:checked + span:before {
	background-color: #5c3da5;
	background-image: url("checkbox.svg");
	background-repeat: no-repeat;
	background-position: 5px 7px;
	border-color: #5c3da5;
}

.section-catalog-products .sidebar .filter-block .checkbox-list .checkbox label > div > span,
.section-catalog-products .sidebar .filter-block .checkbox-list .radio label > div > span {
	position: relative;
	color: #6f6f6f;
	padding-left: 39px;
	font-size: 16px;
	line-height: 24px;
	display: inline-block;
	cursor: pointer;
}

.section-catalog-products .sidebar .filter-block .checkbox-list .checkbox label > div > span:before,
.section-catalog-products .sidebar .filter-block .checkbox-list .radio label > div > span:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 24px;
	height: 24px;
	background-color: #fff;
	border: 1px solid #c2c2c2;
	box-sizing: border-box;
	border-radius: 4px;
}

.section-catalog-products .sidebar .filter-block .checkbox-list .checkbox label > div > span:hover:before,
.section-catalog-products .sidebar .filter-block .checkbox-list .radio label > div > span:hover:before {
	border-color: #5c3da5;
}

.section-catalog-products .sidebar .filter-block .checkbox-list .checkbox label .count,
.section-catalog-products .sidebar .filter-block .checkbox-list .radio label .count {
	color: #c42d96;
}

.section-catalog-products .sidebar .filter-block .checkbox-list .show-all {
	text-decoration: underline;
	color: #c42d96;
	display: inline-block;
	margin-top: 10px;
}

.section-catalog-products .sidebar .filter-block .checkbox-list .show-all:hover {
	text-decoration: none;
}

.sort-links .active a {
	color: #c42d96;
}

.main-home .promo-slider .inner {
	display: block;
}

.main-static .section-seo {
	margin-top: 180px;
}

.home-slider:not(.slick-initialized) .item:not(:first-child) {
	display: none;
}

.promo-slider:not(.slick-initialized) .item:not(:first-child) {
	display: none;
}

.home-prod-slider:not(.slick-initialized) .item:not(:first-child) {
	display: none;
}

.images-wrap .main-image:not(.slick-initialized) .item:not(:first-child) {
	display: none;
}

.compare-fix-header .compare-list:not(.slick-initialized) .item:not(:first-child) {
	display: none;
}

.compare-wrap > .compare-list:not(.slick-initialized) .item:not(:first-child) {
	display: none;
}

#not8234if8 {
	display: none;
}

.visible-mob {
	display: none;
}

@media screen and (max-width: 1600px) {
	.compare-fix-header {
		width: 100%;
	}

	.compare-fix-header .compare-list {
		width: 100%;
	}

	.wrapper {
		/*overflow: hidden;*/
	}

	.container {
		padding: 0 20px;
	}

	.catalog-mega-menu .mm-header .search-wrap {
		max-width: 63%;
	}

	.main-home .section-home-about .about-wrap .inner .col:first-child {
		padding-top: 35px;
	}

	.header .fast-links {
		overflow: hidden;
		position: relative;
	}

	.header .fast-links::after {
		content: '';
		display: block;
		position: absolute;
		right: 0;
		top: 0;
		height: 100%;
		width: 80px;
		background: linear-gradient(270deg, #fff 18.1%, rgba(255, 255, 255, 0) 88.79%);
		pointer-events: none;
	}

	.header .fast-links .container {
		width: auto;
	}

	.header .fast-links ul {
		width: 100%;
	}

	.header .fast-links ul li {
		margin-right: 15px;
		margin-left: 15px;
	}

	.main-home .section-first .home-slider .inner {
		padding: 60px;
	}

	.main-home .section-first .home-slider .inner img {
		right: 0;
	}

	.products-container {
		padding-bottom: 30px;
	}

	.products-container .item {
		width: 25%;
	}

	.main-home .section-infoblock .d-flex .item {
		padding: 40px 20px;
	}

	.main-home .section-infoblock .d-flex .item .item-name {
		font-size: 16px;
	}

	.delivery-tab .delivery-specs .item.large {
		padding-left: 50%;
		padding-right: 30px;
	}

	.delivery-tab .delivery-specs .item.large img {
		max-width: 50%;
	}

	.delivery-tab .delivery-specs .item.large .title {
		font-size: 24px;
		line-height: 36px;
		margin-bottom: 24px;
	}

	.delivery-tab .delivery-specs .item.large .title br {
		display: none;
	}

	.delivery-tab .delivery-specs .item.large p {
		font-size: 16px;
		line-height: 24px;
		margin-bottom: 40px;
	}

	.delivery-tab .delivery-specs .item.large .d-date .d-item {
		width: 230px;
		font-size: 16px;
		margin-right: 10px;
	}

	.delivery-tab .block-title {
		margin-bottom: 50px;
		font-size: 28px;
		text-align: right;
	}

	.delivery-tab .cols-3 .item p {
		font-size: 16px;
		line-height: 24px;
	}

	.delivery-tab .cols-3 .item .name {
		font-size: 22px;
		line-height: 33px;
	}

	.tabs .tab-content .inner {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.tabs .tab-nav li {
		font-size: 15px;
	}

	.faq .item {
		margin-bottom: 55px;
	}

	.faq .item .question {
		font-size: 18px;
		padding: 10px 30px;
	}

	.faq .item .answer {
		padding: 30px;
		font-size: 16px;
		line-height: 1.5;
	}

	.infoblock p {
		font-size: 16px;
		line-height: 24px;
	}

	.specs-tab .cross-block {
		margin-top: 90px;
	}

	.main-product .section-content {
		margin-top: 100px;
		margin-bottom: 90px;
	}

	.content .content-block .title {
		font-size: 24px;
		line-height: 1.5;
		margin-bottom: 24px;
	}

	.content .content-block p {
		font-size: 16px;
		line-height: 1.5;
	}

	.content .content-block .col {
		width: calc(50% - 20px);
	}

	.content .content-block {
		margin-bottom: 90px;
	}

	.specs-tab .specs-list .item .item-list li {
		font-size: 15px;
	}

	.specs-tab .cross-block .title {
		font-size: 24px;
		margin-bottom: 15px;
	}

	.specs-tab .cross-block .cross-prods .item {
		padding: 40px 0;
	}

	.review-tab .content h2 {
		font-size: 24px;
		line-height: 1.5;
		margin-bottom: 50px;
	}

	.review-tab .content p {
		font-size: 16px;
		line-height: 1.5;
		margin: 30px 0;
	}

	.review-tab .content img {
		margin: 50px auto;
	}

	.review-tab .content h3 {
		font-size: 24px;
		line-height: 1.5;
	}

	.delivery-tab .delivery-specs .item.small {
		width: calc(50% - 10px);
	}

	.delivery-tab .delivery-specs .item.small .price {
		font-size: 42px;
		width: 204px;
		min-width: 204px;
	}

	.delivery-tab .delivery-specs .item.small .price svg {
		left: -230px;
		top: 5%;
	}

	.delivery-tab .delivery-specs .item.small .col p {
		font-size: 16px;
		line-height: 1.5;
	}

	.delivery-tab .delivery-specs .item.small:last-child .col p:nth-child(2) {
		margin: 15px 0;
	}

	.delivery-tab .delivery-specs .item.small:last-child .col {
		padding-right: 30px;
	}

	.delivery-tab .delivery-specs {
		margin-bottom: 90px;
	}

	.delivery-tab .delivery-cities .del-type .col .col-name {
		font-size: 20px;
		margin-bottom: 0;
	}

	.delivery-tab .delivery-cities .del-type .col p {
		font-size: 16px;
		height: 28px;
	}

	.delivery-tab .delivery-cities .del-type {
		margin-bottom: 100px;
	}

	.delivery-tab .delivery-cities .cities-list li {
		font-size: 16px;
		line-height: 24px;
		margin-bottom: 20px;
	}

	.section-catalog-categories .categories-list {
		margin-right: -10px;
		margin-left: -10px;
	}

	.section-catalog-categories .categories-list .item {
		width: calc(33.3333333333% - 20px);
		margin-right: 10px;
		margin-left: 10px;
		margin-bottom: 20px;
	}

	.section-catalog-categories {
		margin-top: 28px;
	}

	.products-container.by-4 .item {
		width: 33.3333333333%;
	}

	.footer .footer-top .footer-menu-wrap .col:nth-child(2),
	.footer .footer-top .footer-menu-wrap .col:nth-child(3) {
		width: 33%;
		border: none;
		padding: 0 20px;
	}

	.slick-arrow {
		width: 40px;
		height: 40px;
	}

	.main-home .section-first .home-prod-slider .slick-arrow.slick-next {
		right: -20px;
	}

	.main-home .section-first .home-prod-slider .slick-arrow.slick-prev {
		left: -20px;
	}

	.products-slider {
		margin-left: -20px;
		margin-right: -20px;
	}

	.products-slider .slick-list {
		padding-left: 20px;
		padding-right: 20px;
	}

	.products-slider .slick-arrow.slick-prev {
		left: 0;
	}

	.products-slider .slick-arrow.slick-next {
		right: 0;
	}

	.main-product .product-header {
		margin-bottom: 50px;
	}

	.main-static .section-komplekt .content .content-block {
		margin-bottom: 50px;
	}

	.main-static .section-komplekt .promotion,
	.main-static .tags {
		margin-bottom: 50px;
	}

	.main-static {
		padding-bottom: 70px;
	}
	.header .header-top .htop-menu li {margin-right: 30px;}
}

@media screen and (max-width: 1199px) {
	.cart-wrap .prod-row > .col > .d-flex {
		margin-bottom: 0;
	}

	.main-product .product-main__cols .list-of-sets .item {
		padding: 20px;
	}

	.review-tab .content img {
		margin: 30px auto;
	}

	.review-tab .content h3 {
		margin-top: 50px;
	}

	.delivery-tab .block-title {
		width: 794px;
		max-width: 100%;
		margin-right: auto;
		margin-left: auto;
		margin-bottom: 121px;
	}

	.delivery-tab .block-title br {
		display: none;
	}

	.delivery-tab .delivery-cities .del-type .col p {
		height: auto;
	}

	.delivery-tab .delivery-specs .item.large {
		margin-bottom: 20px;
	}

	.specs-tab .cross-block .cross-prods .item .item-name {
		margin-bottom: 10px;
	}

	.specs-tab .specs-list .item .item-title {
		font-size: 24px;
	}

	.main-product .product-main__cols .list-of-sets .item .item-price .price .economy,
	.product-item .price .economy {
		font-size: 12px;
	}

	.main-product .content .content-block .col:first-child,
	.main-product .content .content-block .col:last-child {
		width: calc(50% - 20px);
	}

	.main-product .content .content-block {
		margin-bottom: 90px;
	}

	.main-product .content .content-block p:last-child {
		margin-bottom: 0;
	}

	.main-product .content .content-block .col img {
		height: 320px;
		-o-object-fit: cover;
		object-fit: cover;
		-o-object-position: 0 0;
		object-position: 0 0;
	}

	.section-catalog-products .cat-tags {
		margin-bottom: 30px;
	}

	.section-catalog-categories .categories-list .item {
		padding: 40px 20px 20px;
		width: calc(33.333% - 20px);
		margin-right: 10px;
		margin-left: 10px;
	}

	.section-catalog-categories .categories-list .item .thumb {
		height: 201px;
	}

	.section-catalog-categories .categories-list .item .price {
		white-space: nowrap;
		margin-left: 10px;
	}

	.main-static .section-camera-test .rose br {
		display: none;
	}

	.main-checkout .section-checkout {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.main-checkout .checkout-thanks {
		margin: 0;
	}

	.footer-menu-wrap {
		/*flex-direction: column;*/
		/*flex-wrap: wrap;*/
		/*width: 100%;*/
		/*max-height: 400px;*/
	}

	.footer .footer-top .footer-menu-wrap .col:first-child {
		width: 66%;
	}

	.footer .footer-top .footer-menu-wrap .col:nth-child(2),
	.footer .footer-top .footer-menu-wrap .col:nth-child(3) {
		width: 33%;
		border: none;
		padding: 0 20px;
	}

	.footer .footer-top .footer-menu-wrap .col:nth-child(3) {
		/*margin-top: 60px;*/
	}

	.main-home .section-first .col:first-child {
		width: 100%;
	}

	.main-home .section-first .col:first-child .slick-dots {
		display: none !important;
	}

	.main-home .section-first .col:last-child {
		width: 100%;
		background: #f8f8f8;
		border-radius: 10px;
		padding: 50px 0;
		margin-top: 12px;
	}

	.main-home .section-first .col:last-child .section-title {
		display: block;
		font-weight: 500;
		font-size: 30px;
		line-height: 24px;
		margin-bottom: 55px;
		padding-left: 20px;
		padding-right: 20px;
		margin-top: 0;
	}

	.main-home .section-first .col:last-child .home-prod-slider .product-item {
		padding-top: 0;
	}

	.main-home .section-first .col:last-child .home-prod-slider .product-item .prod-sale {
		padding-top: 0;
	}

	.main-home .section-first .col:last-child .home-prod-slider .product-item .prod-sale p {
		display: none;
	}

	.slick-arrow {
		width: 40px;
		height: 40px;
	}

	.slick-arrow.slick-prev {
		left: -21px;
	}

	.slick-arrow.slick-next {
		right: -21px;
	}

	.page-404 .breadcrumbs {
		padding: 24px 0;
	}

	.header.second .second-header-flex {
		height: 80px;
	}

	.header.second .second-header-flex .logo {
		width: 190px;
	}

	.header.second .second-menu {
		margin-left: 50px;
	}

	.header.second .second-menu li {
		margin-right: 50px;
	}

	.section-catalog-products .sidebar {
		width: 224px;
		min-width: 224px;
		margin-right: 20px;
	}

	.section-catalog-products .products-wrap {
		width: calc(100% - 244px);
	}

	.section-catalog-products .sidebar .filter-block .price-filter .prices-list li {
		font-size: 15px;
		width: 50%;
	}

	.section-catalog-products .products-wrap .sort-block ul li {
		margin-right: 30px;
	}

	.section-catalog-products .products-wrap .sort-block ul li:last-child {
		margin-right: 0;
	}

	.section-catalog-products .products-wrap .promotion .col:nth-child(2) img {
		height: 228px;
	}

	.section-catalog-products .sidebar .filter-block .checkbox-list,
	.section-catalog-products .sidebar .filter-block .price-filter {
		padding-top: 5px;
	}

	.section-catalog-products .products-wrap .product-item .thumb {
		height: 156px;
		margin-bottom: 47px;
	}

	.section-catalog-products .products-wrap .product-item {
		padding: 20px;
	}

	.product-item .prod-badges {
		top: 155px;
		right: 35px;
	}

	.section-catalog-products .products-wrap .product-item .prod-sale,
	.products-slider .product-item .prod-sale {
		left: 20px;
		top: 20px;
	}

	.section-catalog-products .products-wrap .promotion .col:last-child {
		display: none;
	}

	.section-catalog-products .products-wrap .promotion .col:first-child .title {
		font-size: 30px;
	}

	.section-catalog-products .products-wrap .promotion .col:first-child .text {
		font-size: 18px;
	}

	.section-catalog-products .products-wrap .promotion .col:first-child {
		padding: 42px 0 35px 40px;
		min-width: 300px;
	}

	.section-catalog-products .products-wrap .promotion .col:first-child .title {
		margin-bottom: 17px;
		line-height: 37px;
	}

	.section-catalog-products .products-wrap .promotion .col:first-child .text {
		margin-bottom: 34px;
	}

	.section-brands .brands ul li a {
		height: 100px;
	}

	.content .content-block .col:first-child {
		width: 398px;
		margin-right: 17px;
	}

	.content .content-block .col:last-child {
		width: calc(100% - 415px);
	}

	.content .content-block .col:last-child p:first-child {
		margin-top: 0;
	}

	.catalog-child .section-content h2 {
		font-size: 28px;
		line-height: 42px;
		margin-bottom: 44px;
	}

	.content .content-block .col img {
		width: 100%;
		height: auto;
	}

	.section-catalog-products .products-wrap .promotion .col:nth-child(2) {
		display: flex;
		align-items: flex-end;
	}

	.section-catalog-products .sidebar .filter-block .inner {
		padding-left: 20px;
		padding-right: 20px;
	}

	.section-catalog-products .sidebar .filter-block .checkbox-list ul li label > span {
		font-size: 15px;
	}

	.product-item .prod-actions {
		top: 20px;
	}

	.wishlist-wrap .product-item {
		padding: 20px;
		height: 380px;
	}

	.wishlist-wrap .product-item .thumb {
		height: 156px;
		margin-bottom: 25px;
	}

	.wishlist-wrap .wishlist-slider {
		margin-top: 10px;
	}

	.page-title {
		margin-bottom: 38px;
		margin-top: 38px;
	}

	.wishlist-wrap {
		padding-bottom: 30px;
	}

	.section-checkout .container {
		width: 100%;
	}

	.main-home .promo-slider .inner .d-flex {
		padding: 0 60px;
	}

	.main-home .promo-slider .inner .d-flex .title {
		font-size: 36px;
		margin-bottom: 30px;
	}

	.main-home .section-first .home-slider .inner .item-title {
		font-size: 46px;
		margin-bottom: 17px;
		width: 312px;
	}

	.main-home .section-first .home-slider .inner .item-text {
		font-size: 18px;
		margin-bottom: 42px;
	}

	.main-home .section-first .home-slider .inner {
		padding-bottom: 30px;
	}

	.header .header-top .htop-menu li {
		margin-right: 20px;
	}

	.header-phone__info,
	.header-address__info{
		margin-left: 16px;
	}

	.header .header-top .header-phone {
		margin-left: 28px;
		margin-right: 0;
	}

	.header .header-top .htop-menu li a {
		font-size: 14px;
	}

	.header .header-bottom .logo {
		width: 158px;
		min-width: 158px;
		margin-right: 20px;
		height: 40px;
	}

	.header .header-bottom {
		padding: 20px 0;
	}

	.header .header-bottom .btn-catalog,
	.header .header-bottom .search-wrap .d-flex {
		height: 40px;
	}

	.header .header-bottom .btn-catalog {
		width: 130px;
		min-width: 130px;
		padding: 0;
	}

	.header-actions li:last-child a span {
		display: none;
	}

	.header-actions li {
		height: 40px;
		min-width: 71px;
		width: 70px;
		padding: 0 20px;
	}

	.header-actions li:last-child {
		min-width: 0;
		width: auto;
		padding-right: 0;
	}

	.catalog-mega-menu .mm-header .search-wrap input,
	.header .header-bottom .search-wrap .input-wrap input {
		font-size: 16px;
	}

	.catalog-mega-menu .col-title {
		font-size: 18px;
	}

	.catalog-mega-menu .mm-main .categories-child > li ul li,
	.catalog-mega-menu .mm-main .categories-main li {
		font-size: 15px;
	}

	.catalog-mega-menu .mm-main .categories-main li a {
		padding-left: 43px;
	}

	.catalog-mega-menu .mm-main .categories-main li {
		margin-bottom: 28px;
	}

	.main-home .section-first .home-prod-slider .product-item {
		height: 420px;
	}

	.catalog-mega-menu .mm-main {
		height: calc(100vh - 151px);
		height: calc(100dvh - 151px);
	}

	.main-home .section-first .home-prod-slider .product-item .prod-sale .counter {
		margin-right: 0;
		border-radius: 5px;
		font-size: 14px;
	}

	.product-item {
		padding-left: 20px;
		padding-right: 20px;
	}

	.product-item .thumb {
		height: 156px;
		margin-bottom: 25px;
	}

	.product-item:hover {
		box-shadow: none;
	}

	.main-home .section-first .brands {
		margin-top: 40px;
	}

	.main-home .section-infoblock .d-flex {
		margin-right: -20px;
		margin-left: -20px;
		border-radius: 0;
	}

	.header .header-bottom .search-wrap {
		border: none;
	}

	.header .header-bottom .search-wrap .d-flex {
		padding: 0 15px;
	}

	.header-actions li:last-child a i {
		margin-right: 0;
	}

	.header .fast-links ul li a {
		flex-direction: row;
	}

	.header .fast-links ul li a i {
		margin: 0 5px 0 0;
	}

	.header .fast-links ul {
		height: 60px;
	}

	.header .fast-links ul li {
		margin: 0 30px 0 0;
	}

	.main-home .section-first {
		margin-top: 20px;
	}

	.main-home .section-first .home-slider .inner img {
		width: 481px;
		right: 37px;
	}

	.section-title {
		line-height: 33px;
		margin-bottom: 50px;
	}

	.main-home .section-home-about .about-wrap .inner {
		padding-left: 70px;
		padding-right: 30px;
	}

	.main-home .section-home-about {
		margin-bottom: 90px;
	}

	.products-slider .slick-dots {
		bottom: -7px;
	}

	.cart-wrap .fast-order,
	.cart-wrap .prod-kompl {
		padding-left: 0;
	}

	.cart-wrap .fast-order .desc {
		max-width: 373px;
	}

	.cart-wrap {
		padding: 73px 40px 40px;
	}

	.cart-wrap .prod-row {
		margin-bottom: 35px;
	}

	.modal-body > .close-modal {
		top: 20px;
		right: 20px;
	}

	.main-static .section-camera-test .promotion .d-flex,
	.main-static .section-komplekt .promotion .d-flex {
		height: auto;
	}

	.main-static .section-camera-test .promotion .d-flex .col:first-child,
	.main-static .section-komplekt .promotion .d-flex .col:first-child {
		font-size: 36px;
	}

	.main-product .product-main__cols .col:first-child {
		flex-direction: column;
		width: calc(50% - 20px);
	}

	.main-product .product-main__cols .col:last-child {
		width: calc(50% - 20px);
		margin-left: 0;
	}

	.main-product .product-main__cols .col:first-child .product-images {
		width: 100%;
	}

	.main-product .product-main__cols .col:first-child .product-images .bages2 {
		top: 318px;
		right: 110px;
	}

	.main-product .product-main__cols .col:first-child .product-specs {
		width: 100%;
		margin-top: 92px;
	}

	.main-product .product-main__cols .col:first-child .product-images .images-wrap .main-image .item {
		height: 370px;
	}

	.main-product .product-main__cols .col:first-child .product-images .images-wrap .thumbs {
		margin-top: 72px;
	}

	.tabs .tab-nav li {
		padding: 0 10px;
		white-space: normal;
		text-align: center;
	}

	.main-product .product-header .product-title {
		max-width: calc(100% - 350px);
	}

	.main-product .product-header {
		align-items: flex-start;
		margin-bottom: 60px;
	}

	.specs-tab .col:last-child {
		min-width: 320px;
	}

	.specs-tab .cross-block .cross-prods .item .thumb {
		margin-right: 20px;
		min-width: 145px;
	}

	.specs-tab .cross-block .cross-prods .item .col {
		min-width: 0;
		width: 100%;
	}

	.product-item {
		height: 390px;
	}

	.header .fast-links {
		position: relative;
	}

	.header .fast-links::after {
		content: '';
		display: block;
		position: absolute;
		right: 0;
		top: 0;
		height: 100%;
		width: 80px;
		background: linear-gradient(270deg, #fff 18.1%, rgba(255, 255, 255, 0) 88.79%);
	}

	.content .content-block {
		margin-bottom: 50px;
	}

	.specs-tab .col:first-child {
		width: 66%;
	}

	.section-brands {
		margin-top: 40px;
		margin-bottom: 90px;
	}

	.catalog-child .section-content h2 {
		margin-top: 0;
	}

	.catalog-child .section-content {
		margin-bottom: 90px;
	}

	.main-static .section-camera-test .d-flex.by-3,
	.main-static .section-camera-test .rose {
		margin-bottom: 50px;
	}

	.main-static .section-camera-test .block-title {
		margin-bottom: 30px;
	}

	.footer .footer-top .footer-contacts-wrap .btn {
		width: 243px;
	}

	.footer .footer-phone {
		text-align: right;
	}

	.delivery-tab .cols-3 {
		margin-bottom: 100px;
	}
}

@media screen and (max-width: 1023px) {
	.header .header-bottom .header-actions li,
	.header .header-bottom .header-actions li:last-child {
		padding: 3px 0 0 0 !important;
	}

	.header .header-top .header-phone {
		position: absolute;
		margin-left: 0;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		white-space: nowrap;
	}

	.content .content-block .col:first-child,
	.content .content-block .col:last-child,
	.section-catalog-products .products-wrap {
		width: 100%;
	}

	.product-item .thumb .prod-badges {
		top: 153px;
	}

	.content .content-block .col:first-child {
		margin-right: 0;
	}

	.header .header-top .header-flex {
		height: 50px;
	}

	.header .header-bottom .logo,
	.header .header-top .htop-menu {
		display: none;
	}

	.header .header-top .to_director,
	.header-phone__info,
	.header-address__info{
		display: none;
	}

	.header .header-top .to_director i {
		margin-right: 8px;
	}

	.header .header-bottom .btn-catalog {
		font-size: 0;
		width: 40px;
		min-width: 40px;
		padding: 0;
	}

	.header .header-bottom .btn-catalog i {
		margin: 0;
	}

	.header-actions {
		position: fixed;
		z-index: 100;
		bottom: 0;
		left: 0;
		width: 100%;
		background-color: #9e2579;
		height: 42px;
		justify-content: space-evenly;
	}

	.header-actions li + li {
		border: none;
	}

	.header-actions li,
	.header-actions li:last-child {
		position: static;
		height: 100%;
		line-height: 0;
		padding: 0 30px;
	}

	.header-actions li i,
	.header-actions li:last-child i {
		font-size: 18px;
	}

	.header-actions li .prod-list,
	.header-actions li:last-child .prod-list {
		width: 100%;
		bottom: 100%;
		top: auto;
	}

	.section-catalog-categories .categories-list .item {
		width: calc(50% - 20px);
	}

	.section-catalog-products .sidebar {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 101;
		background-color: #fff;
		width: 100%;
		height: 100vh;
		height: 100dvh;
		overflow: auto;
		transform: translateX(-100%);
		padding: 15px 15px 0;
		margin: 0;
		transition: transform 0.5s ease;
	}

	.section-catalog-products .sidebar.open {
		transform: translateX(0);
	}

	.section-catalog-products .sidebar .mob-header {
		margin-bottom: 16px;
	}

	.section-catalog-products .sidebar .mob-header .title {
		font-size: 18px;
		line-height: 28px;
	}

	.section-catalog-products .sidebar .mob-header .close-filter {
		font-size: 24px;
	}

	.section-catalog-products .sidebar .mob-btns {
		display: flex;
		justify-content: center;
		margin-top: 20px;
		position: -webkit-sticky;
		position: sticky;
		bottom: 0;
		background-color: #fff;
		margin-left: -15px;
		margin-right: -15px;
		padding: 20px 15px 20px;
	}

	.section-catalog-products .sidebar .mob-btns .btn {
		height: 48px;
		font-size: 18px;
	}

	.section-catalog-products .sidebar .mob-btns .btn:first-child {
		width: 108px;
		margin-right: 20px;
	}

	.section-catalog-products .sidebar .mob-btns .btn:last-child {
		width: 217px;
	}

	.section-catalog-products .products-wrap .open-filter {
		width: 108px;
		height: 42px;
	}

	.section-catalog-products .products-wrap .sort-block {
		position: relative;
		padding: 0;
	}

	.section-catalog-products .products-wrap .sort-block .current {
		border: 1px solid #c2c2c2;
		border-radius: 6px;
		background: #fff;
		display: inline-flex;
		justify-content: space-between;
		align-items: center;
		height: 42px;
		padding: 0 15px;
	}

	.section-catalog-products .products-wrap .sort-block .current::after {
		content: '';
		display: flex;
		width: 9px;
		height: 26px;
		margin-left: 15px;
		background-image: url("ArrowDownBlack.svg");
		background-repeat: no-repeat;
		background-position: center right;
	}

	.section-catalog-products .products-wrap .sort-block .current.active::after {
		transform: rotate(180deg);
	}

	.section-catalog-products .products-wrap .sort-block .sort-links {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 10;
		background-color: #fff;
		border: 1px solid #c2c2c2;
		border-radius: 6px;
		padding: 5px 0;
	}

	.section-catalog-products .products-wrap .sort-block .sort-links a {
		display: block;
		line-height: 42px;
		padding: 0 15px;
		white-space: nowrap;
	}

	.main-static .section-camera-test .promotion .d-flex .col:first-child,
	.main-static .section-komplekt .promotion .d-flex .col:first-child {
		font-size: 24px;
		line-height: 1.5;
	}

	.main-static .section-komplekt .content .content-block .col:last-child {
		padding-top: 0;
	}

	.main-home .section-first .home-slider .inner {
		padding: 20px;
	}

	.main-home .section-first .home-slider .inner .item-desc,
	.main-home .section-first .home-slider .inner img {
		max-width: 50%;
	}

	.catalog-mega-menu .mm-header .search-wrap {
		max-width: 50%;
	}

	.cart-wrap .prod-row {
		flex-wrap: wrap;
	}

	.cart-wrap .prod-row > .col:last-child {
		width: 100%;
		justify-content: flex-start;
	}

	.cart-wrap .prod-row > .col:last-child .quantity {
		width: 126px;
	}

	.cart-wrap .prod-row .thumb {
		width: 126px;
	}

	.cart-wrap .prod-row > .col:nth-child(2) {
		width: calc(100% - 126px);
	}

	.cart-wrap .cart-title {
		font-size: 24px;
	}

	.cart-wrap .btns-wrap {
		display: flex;
	}

	.cart-wrap .prod-kompl .kompl-row {
		flex-wrap: wrap;
		height: auto;
		justify-content: flex-start;
		padding: 20px;
	}

	.cart-wrap .prod-kompl .kompl-row .name {
		width: calc(100% - 28px);
	}

	.cart-wrap .prod-kompl .kompl-row .quantity {
		order: 6;
	}

	.cart-wrap .prod-kompl .kompl-row .price {
		order: 5;
		width: calc(100% - 80px);
		flex-direction: row-reverse;
		justify-content: flex-end;
	}

	.cart-wrap .prod-kompl .kompl-row .price .old {
		margin: 0 0 0 11px;
	}

	.cart-wrap .prod-kompl .kompl-row .item-fullness {
		order: 3;
		margin-top: 20px;
		margin-bottom: 16px;
	}

	.cart-wrap .prod-kompl .kompl-row .delivery {
		order: 4;
		margin-left: 20px;
	}

	.cart-wrap .prod-kompl .kompl-row .info {
		display: block;
		width: 100%;
	}

	.cart-wrap .prod-kompl .kompl-row .info svg {
		display: none;
	}

	.cart-wrap .prod-kompl .kompl-row .info .info-window {
		position: static;
		opacity: 1;
		visibility: visible;
		width: auto;
		background: 0 0;
		box-shadow: none;
		padding: 30px 0 0;
	}

	.cart-wrap {
		padding: 20px;
	}

	.cart-wrap .fast-order .d-flex {
		flex-direction: column;
	}

	.cart-wrap .fast-order .btn,
	.cart-wrap .fast-order .desc,
	.cart-wrap .fast-order .input-wrap {
		max-width: 100%;
		width: 100%;
		margin: 0 0 20px;
	}

	.section-brands {
		margin: 50px 0;
	}

	.section-brands .brands ul {
		flex-wrap: wrap;
	}

	.section-brands .brands ul li {
		width: calc(50% - 26px);
		margin-bottom: 26px;
	}

	.footer {
		padding-bottom: 42px;
	}

	.footer-menu-wrap {
		flex-direction: column;
		flex-wrap: wrap;
		width: 100%;
		max-height: 400px;
	}

	.footer .footer-top .footer-menu-wrap {
		flex-wrap: nowrap;
		max-height: none;
		width: 300px;
	}

	.footer .footer-top .footer-menu-wrap .col {
		border-right: none !important;
		width: 100% !important;
		padding: 0 !important;
		border-bottom: 1px solid #393939 !important;
	}

	.footer .footer-top .footer-menu-wrap .col .col-title {
		margin-bottom: 0;
		position: relative;
		padding: 12px 0;
		font-size: 16px;
	}

	.footer .footer-top .footer-menu-wrap .col .col-title:after {
		content: '';
		display: block;
		position: absolute;
		right: 0;
		width: 20px;
		height: 20px;
		top: 50%;
		transform: translateY(-50%);
		background-image: url("ArrowDown.svg");
		background-repeat: no-repeat;
		background-position: center;
	}

	.footer .footer-top .footer-menu-wrap .col .col-title.open:after {
		transform: translateY(-50%) rotate(180deg);
	}

	.footer .footer-top .footer-menu-wrap .col ul {
		-moz-columns: 1 !important;
		columns: 1 !important;
		display: none;
	}

	.footer .footer-top .footer-menu-wrap .col:nth-child(3) {
		margin-top: 0;
	}

	.main-home .promo-slider .inner .d-flex .title {
		font-size: 24px;
		line-height: 1.5;
	}

	.main-home .section-infoblock {
		margin-top: 62px;
	}

	.main-home .section-infoblock .d-flex {
		display: block;
	}

	.main-home .section-infoblock .d-flex .item {
		text-align: center;
		padding-bottom: 70px;
		height: auto;
	}

	.main-home .section-infoblock .d-flex .slick-dots {
		transform: translateY(-40px);
		display: flex;
		justify-content: center;
		width: 100%;
	}

	.main-home .section-infoblock .d-flex .slick-dots li {
		width: 30px;
	}

	.main-home .section-infoblock .d-flex .slick-dots li.slick-active button {
		background: #c42d96;
	}

	.main-home .section-home-about .about-wrap .inner {
		flex-direction: column;
		align-items: center;
		padding-left: 30px;
		padding-right: 30px;
	}

	.main-home .section-home-about .about-wrap .inner .col:last-child {
		text-align: center;
		margin-top: 15px;
	}

	.main-home .section-home-about .about-wrap .inner .col:last-child img {
		max-width: none;
		height: 280px;
		margin-left: 50px;
	}

	.header.second .second-menu li {
		margin-right: 30px;
	}

	.section-checkout .checkout-blocks .promocode .input-wrap {
		width: auto;
	}

	.main-home .section-first .brands .d-flex {
		flex-wrap: wrap;
		/*padding-top: 20px;*/
		/*height: auto;*/
	}

	.main-home .section-first .brands .d-flex li a{
		/*margin-right: 20px;*/
		/*margin-left: 20px;*/
		/*margin-bottom: 20px;*/
		height: 80px;
	}

	.tabs .tab-nav-wrap {
		position: relative;
	}

	.tabs .tab-nav-wrap .tab-nav li:last-child {
		padding-right: 100px;
	}

	.tabs .tab-nav-wrap li {
		width: auto;
		white-space: nowrap;
		padding-left: 20px;
		padding-right: 20px;
	}

	.tabs .tab-nav-wrap::after {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		height: 100%;
		width: 100px;
		right: -20px;
		background: linear-gradient(to right, transparent, #fff, #fff);
	}

	.section-prod-acces .section-title {
		margin-top: 0;
	}

	.content .content-block {
		flex-direction: column;
	}

	.content .content-block .col {
		width: 100%;
	}

	.content .content-block .col + .col {
		margin-top: 30px;
	}

	.delivery-tab .delivery-specs .item.large {
		padding: 30px 30px 300px;
		margin-bottom: 30px;
	}

	.delivery-tab .delivery-specs .item.large img {
		max-width: 50%;
		left: 50%;
		transform: translateX(-50%);
	}

	.delivery-tab .delivery-specs .item.small {
		width: 100%;
		margin-bottom: 20px;
		flex-direction: column;
		padding: 50px 20px 20px;
	}

	.delivery-tab .delivery-specs .item.small .col {
		position: relative;
		z-index: 1;
	}

	.delivery-tab .delivery-specs .item.small .price svg {
		top: -85%;
	}

	.wrap-header {
		padding: 20px 20px;
	}

	.wrap-header .block-nav li a {
		width: auto;
		margin-bottom: 5px;
		margin-top: 5px;
		margin-right: 10px;
	}

	.wrap-header .block-nav li a span {
		margin-left: 5px;
	}

	.product-item .price .current {
		font-size: 19px;
	}

	.delivery-tab .delivery-specs .item.large .title br {
		display: block;
	}
}

@media screen and (max-width: 767px) {
	.main-product .product-main__cols .col:first-child .product-specs .star-ratings {
		font-size: 18px;
		margin-left: -3px;
	}

	.review-tab .content img {
		height: auto;
		object-fit: contain;
	}
	.main-product .product-main__cols .col:first-child .product-specs .star-ratings i {
		padding-left: 3px;
		padding-right: 3px;
	}

	.quantity input {
		width: 34px;
		padding-bottom: 15px;
		line-height: 24px;
		border-bottom-width: 1px;
	}

	.quantity span {
		transform: translateY(-8px);
	}

	.quantity span svg {
		width: 18px;
		height: 18px;
	}

	.main-home .section-first .home-slider .inner img {
		right: 3px;
	}

	.visible-mob {
		display: block;
	}

	.hidden-mob {
		display: none !important;
	}

	.container {
		padding: 0 15px;
	}

	.header .header-bottom {
		padding: 15px 0;
	}

	.catalog-mega-menu {
		top: 0;
		overflow: hidden;
		width: 100%;
		height: 100%;
	}

	.catalog-mega-menu .container {
		padding: 0;
	}

	.catalog-mega-menu .mm-header {
		padding: 0;
	}

	.catalog-mega-menu .mm-header .logo,
	.catalog-mega-menu .mm-header .search-wrap {
		display: none;
	}

	.catalog-mega-menu .mm-header .close-menu {
		position: absolute;
		right: 15px;
		top: 18px;
		z-index: 99;
	}

	.catalog-mega-menu .mm-main {
		overflow: hidden;
		height: auto;
	}

	.catalog-mega-menu .mm-main .categories-main {
		padding: 20px 15px 0;
		height: calc(100% - 60px);
		overflow-y: auto;
	}

	.catalog-mega-menu .mm-main .col-title {
		padding: 0 15px;
		background: #f8f8f8;
		display: flex;
		align-items: center;
		height: 60px;
		margin-bottom: 0;
	}

	.catalog-mega-menu .mm-main .d-flex > .col:first-child {
		margin: 0;
		width: 100%;
		border: none;
		padding: 0;
		height: 100vh;
		height: 100dvh;
		overflow: hidden;
	}

	.catalog-mega-menu .mm-main .d-flex > .col:last-child {
		background-color: #fff;
		position: absolute;
		top: 0;
		left: 0;
		transform: translateX(100%);
		height: 100vh;
		height: 100dvh;
		width: 100%;
		z-index: 10;
		overflow: hidden;
	}

	.catalog-mega-menu .mm-main .d-flex > .col:last-child.open {
		transform: translateX(0);
	}

	.catalog-mega-menu .mm-main .d-flex > .col:last-child .col-title {
		padding-left: 50px;
		position: relative;
	}

	.catalog-mega-menu .mm-main .d-flex > .col:last-child .col-title::before {
		content: '';
		display: block;
		width: 20px;
		height: 20px;
		position: absolute;
		left: 15px;
		top: 20px;
		background-image: url("ArrowRight.png");
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
	}

	.catalog-mega-menu .mm-main .d-flex > .col:last-child .cat-list {
		width: 100%;
		height: 100%;
		position: relative;
		overflow: hidden;
	}

	.catalog-mega-menu .mm-main .categories-child {
		position: absolute;
		top: 60px;
		left: 0;
		-moz-columns: 1;
		columns: 1;
		padding: 20px 15px 0;
		height: calc(100% - 60px);
		width: 100%;
		overflow-y: auto;
		overflow-x: hidden;
		display: grid;
		align-content: start;
	}

	.catalog-mega-menu .mm-main .categories-child li.has-child > a {
		background-image: url("ArrowRightBlack.svg");
		background-repeat: no-repeat;
		background-position: 100% 50%;
	}

	.catalog-mega-menu .mm-main .categories-main li {
		margin-bottom: 30px;
	}

	.catalog-mega-menu .mm-main .categories-child > li {
		margin-bottom: 20px;
	}

	.catalog-mega-menu .mm-main .categories-child > li a {
		font-weight: 400;
	}

	.catalog-mega-menu .mm-main .categories-child > li ul {
		position: absolute;
		top: 0;
		left: 0;
		transform: translateX(100%);
		width: 100%;
		height: 100%;
		background-color: #fff;
		margin-top: 0;
		padding: 20px 15px 0;
		overflow: hidden auto;
	}

	.catalog-mega-menu .mm-main .categories-child > li ul.open {
		transform: translateX(0);
	}

	.catalog-mega-menu .mm-main .categories-child > li ul li {
		margin-bottom: 20px;
		line-height: 30px;
	}

	.catalog-mega-menu .mm-main .categories-child > li ul li a {
		color: inherit;
	}

	.content .d-flex.by-3 {
		flex-direction: column;
	}

	.content .d-flex.by-3 .item {
		max-width: calc(100% - 30px);
		margin-bottom: 20px;
	}

	.main-home .section-first {
		margin-top: 15px;
	}

	.main-static .section-camera-test .block-title,
	.main-static .section-camera-test .rose {
		font-size: 18px;
		line-height: 1.5;
	}

	.main-static .section-camera-test .block-title {
		margin-bottom: 30px;
	}

	.main-static .section-camera-test .d-flex.by-3 {
		margin-bottom: 50px;
	}

	.main-static .section-camera-test .promotion .d-flex,
	.main-static .section-komplekt .content .content-block,
	.main-static .section-komplekt .promotion .d-flex {
		flex-direction: column;
	}

	.main-static .section-camera-test .promotion .d-flex .col,
	.main-static .section-komplekt .promotion .d-flex .col {
		width: 100%;
		padding: 0 10px;
	}

	.main-static .section-camera-test .promotion .d-flex .col:first-child,
	.main-static .section-komplekt .promotion .d-flex .col:first-child {
		font-size: 20px;
		line-height: 1.5;
		text-align: center;
		justify-content: center;
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.main-static .section-komplekt .content .content-block .col {
		width: 100%;
	}

	.main-static .section-komplekt .content .content-block,
	.main-static .tags {
		margin-bottom: 50px;
	}

	.main-static .section-komplekt .content .content-block .col:last-child {
		padding-top: 30px;
	}

	.page-title {
		font-size: 24px;
		line-height: 1.2;
	}

	.header .header-top .to_director {
		padding: 0;
	}

	.main-home .section-first .col:first-child .slick-dots {
		display: flex !important;
		bottom: auto;
		height: auto;
	}

	.main-home .section-first .col:last-child .home-prod-slider .product-item .prod-sale {
		margin-bottom: 30px;
	}

	.main-home .section-first .home-slider .inner .item-title {
		max-width: 50%;
		font-size: 16px;
		line-height: 110.03%;
	}

	.main-home .section-first .home-slider .inner .item-text {
		max-width: 50%;
		font-size: 12px;
		line-height: 119.4%;
		margin-bottom: 0;
	}

	.main-home .section-first .home-slider .inner .btn {
		display: none;
	}

	.main-home .section-first .home-slider .inner .item-desc {
		font-size: 5px;
		line-height: 1.2;
	}

	.main-home .section-first .home-slider .inner .item-text {
		margin-bottom: 20px;
	}

	.main-home .section-first .col:last-child {
		margin-top: 57px;
		padding-top: 40px;
	}

	.main-home .section-first .col:last-child .section-title {
		font-size: 24px;
		line-height: 26px;
		margin-bottom: 40px;
	}

	.main-home .section-first {
		margin-top: 15px;
	}

	.main-home .section-first .col:last-child .home-prod-slider .product-item {
		padding-right: 10px;
		padding-left: 10px;
		height: 377px;
	}

	.main-home .section-first .col:last-child .home-prod-slider .product-item .item-bottom {
		margin-top: 39px;
	}

	.main-home .section-first .col:last-child .home-prod-slider .product-item .name {
		line-height: 26px;
	}

	.product-item .thumb {
		height: 140px;
		margin-bottom: 25px;
	}

	.product-item .name {
		font-size: 14px;
		line-height: 24px;
	}

	.product-item .item-bottom .price {
		font-size: 19px;
		line-height: 24px;
	}

	.product-item .btn {
		width: 51px;
	}

	.main-home .section-first .col:last-child {
		margin-right: -15px;
		margin-left: -15px;
		width: calc(100% + 30px);
		border-radius: 0;
		padding-bottom: 82px;
	}

	.main-home .section-first .col:last-child .slick-dots {
		transform: translateY(40px);
	}

	.home-prod-slider .slick-list {
		padding: 0 5px;
	}

	.main-home .section-first .brands .d-flex {
		/*height: auto;*/
		/*flex-wrap: wrap;*/
		/*padding: 20px 5px 0;*/
	}
	.main-home .section-first .brands .d-flex li {
		width: 25%;
	}
	.main-home .section-first .brands .d-flex li a{
		/*margin-right: 14px;*/
		/*margin-left: 14px;*/
		/*margin-bottom: 20px;*/
		height: 80px;
		padding: 0 10px;
	}

	.main-home .section-first .col:last-child .section-title {
		padding-left: 15px;
		padding-right: 15px;
	}

	.section-title {
		margin-top: 70px;
		margin-bottom: 40px;
		font-size: 24px;
		line-height: 26px;
	}

	.product-item {
		padding-top: 0;
		padding-right: 10px;
		padding-left: 10px;
		height: 312px;
		padding-bottom: 0;
	}

	.products-slider {
		margin: 0 -10px;
		padding-bottom: 42px;
	}

	.products-slider .slick-list {
		padding: 0;
	}

	.product-item .price .current {
		font-size: 19px;
	}

	.product-item .price .old {
		font-size: 14px;
	}

	.products-slider .slick-dots {
		bottom: 0;
	}

	.main-home .promo-slider .inner .d-flex {
		padding: 30px 30px 10px;
		flex-direction: column;
		height: auto;
	}

	.main-home .promo-slider .inner .d-flex .title {
		font-size: 28px;
		line-height: 35px;
		margin-bottom: 20px;
	}

	.main-home .promo-slider .inner .d-flex p {
		font-size: 16px;
		line-height: 18px;
		margin-bottom: 20px;
	}

	.main-home .promo-slider .slick-dots {
		bottom: -22px;
	}

	.main-home .promo-slider {
		margin-bottom: 92px;
		margin-top: 70px;
	}

	.main-home .section-infoblock .d-flex {
		display: block;
	}

	.main-home .section-infoblock .d-flex .item p {
		max-width: 176px;
		margin-right: auto;
		margin-left: auto;
	}

	.main-home .section-infoblock .d-flex .item:before {
		display: none;
	}

	.main-home .section-home-about .about-wrap .inner .col:first-child {
		padding-top: 40px;
		width: 100%;
	}

	.main-home .section-home-about .about-wrap .inner .title {
		font-size: 28px;
		line-height: 35px;
		margin-bottom: 15px;
	}

	.main-home .section-home-about .about-wrap .inner .link .icon {
		width: 68px;
		height: 68px;
		margin-right: 20px;
	}

	.main-home .section-home-about .about-wrap .inner .link p {
		font-size: 18px;
		line-height: 23px;
	}

	.footer-top > .d-flex {
		flex-direction: column;
	}

	.footer .footer-top .footer-menu-wrap {
		width: 100%;
	}

	.footer .footer-top .footer-contacts-wrap .btn {
		width: 100%;
	}

	.footer .footer-phone {
		text-align: center;
		margin: 40px 0;
		font-size: 18px;
	}

	.footer .footer-bottom > .d-flex {
		flex-direction: column;
	}

	.footer {
		position: relative;
		padding-top: 116px;
	}

	.footer .footer-bottom .footer-logo {
		position: absolute;
		top: 40px;
		left: 50%;
		transform: translateX(-50%);
		height: 43px;
	}

	.footer .footer-bottom {
		border: none;
		margin-top: 0;
		padding-top: 20px;
	}

	.footer .footer-bottom .copyright {
		margin-top: 30px;
		text-align: center;
	}

	.main-product .product-header {
		position: relative;
		margin-bottom: 30px;
		margin-top: 22px;
	}

	.main-product .product-header .prod-actions {
		position: absolute;
		right: 0;
		top: calc(100% + 30px);
		flex-direction: column;
	}

	.main-product .product-header .prod-actions li {
		font-size: 0;
	}

	.main-product .product-header .prod-actions li i {
		margin: 0;
		font-size: 15px;
	}

	.main-product .product-header .prod-actions li + li {
		margin-left: 0;
		margin-top: 15px;
	}

	.main-product .product-header .product-title {
		max-width: 100%;
		width: 100%;
		font-size: 24px;
		line-height: 29px;
	}

	.breadcrumbs ul li {
		display: none;
	}

	.breadcrumbs ul li:nth-last-child(3) {
		display: block;
	}

	.breadcrumbs ul li:nth-last-child(3):before {
		content: '\e901';
		display: inline-block;
		position: relative;
		font-family: icomoon !important;
		transform: rotate(180deg) translateY(2px);
		font-size: 8px;
		color: #101010;
		margin-right: 13px;
	}

	.product-main__cols {
		flex-direction: column;
	}

	.main-product .product-main__cols > .col:first-child,
	.main-product .product-main__cols > .col:last-child {
		width: 100%;
	}

	.main-product .product-main__cols .col:first-child .product-specs {
		order: 2;
		margin-top: 30px;
	}

	.main-product .product-main__cols .col:first-child .product-images .images-wrap .main-image .item {
		height: 310px;
	}

	.main-product .product-main__cols .col:first-child .product-images .bages {
		top: 0;
		left: 0;
		width: 42px;
	}

	.main-product .product-main__cols .col:first-child .product-images .bages2 {
		top: 57px;
		right: auto;
		left: 0;
	}

	.main-product .product-main__cols .col:first-child .product-images .images-wrap .thumbs {
		margin-top: 42px;
	}

	.main-product .product-main__cols .list-of-sets {
		margin-top: 50px;
	}

	.main-product .product-main__cols .list-of-sets .item {
		padding: 20px;
		margin-bottom: 15px;
	}

	.main-product .product-main__cols .list-of-sets .item .item-name {
		font-size: 20px;
		line-height: 24px;
	}

	.main-product .product-main__cols .list-of-sets .item > .d-flex {
		align-items: center;
	}

	.content .content-block {
		flex-direction: column;
		margin-bottom: 30px;
	}

	.content .content-block .col {
		width: 100%;
		margin-top: 30px;
	}

	.content .content-block .col:first-child {
		margin-top: 0;
	}

	.content .content-block .col p:first-child {
		margin-top: 0;
	}

	.delivery-tab .cols-3 {
		margin-bottom: 20px;
	}

	.main-product .section-content {
		margin-top: 70px;
	}

	.section-prod-acces {
		margin-top: 70px;
	}

	.tabs .tab-content .inner {
		padding: 30px 0;
	}

	.content .content-block p {
		font-size: 15px;
		line-height: 22px;
	}

	.specs-tab > .d-flex {
		flex-direction: column;
	}

	.specs-tab > .d-flex > .col {
		width: 100% !important;
	}

	.specs-tab .specs-list .item .item-title {
		font-size: 22px;
		margin-bottom: 24px;
		line-height: 33px;
	}

	.specs-tab .specs-list .item .item-list li:after {
		display: none;
	}

	.specs-tab .specs-list .item {
		margin-bottom: 50px;
	}

	.specs-tab .specs-list .item .item-list li {
		margin-bottom: 15px;
	}

	.review-tab .content h2 {
		font-size: 22px;
		margin-bottom: 30px;
	}

	.review-tab .content h2 br {
		display: none;
	}

	.review-tab .content img {
		height: auto;
		-o-object-fit: cover;
		object-fit: cover;
	}

	.review-tab .content h3 {
		font-size: 22px;
	}

	.faq .item .question {
		padding: 8px 20px;
		font-size: 16px;
		line-height: 1.5;
		display: inline-flex;
		align-items: center;
		min-height: 56px;
	}

	.faq .item .answer {
		padding: 20px;
		font-size: 15px;
	}

	.faq .item {
		margin-bottom: 40px;
	}

	.header.second .second-header-flex {
		height: 70px;
	}

	.header.second .second-menu {
		position: absolute;
		display: none;
		top: 100%;
		left: 0;
		width: 100%;
		flex-direction: column;
		margin: 0;
	}

	.header.second .second-menu li {
		margin: 0;
	}

	.header.second .second-menu a {
		display: flex;
		align-items: center;
		padding: 0 15px;
		height: 50px;
		background-color: #fff;
		border-bottom: 1px solid #665f5f;
	}

	.header.second .second-header-flex .logo {
		width: 124px;
	}

	.header.second .header-phone {
		font-size: 15px;
		line-height: 19px;
	}

	.box-404 {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.box-404 .title-404 {
		font-size: 26px;
		margin-top: 35px;
	}

	.box-404 p {
		font-size: 15px;
		line-height: 1.5;
		margin-top: 24px;
	}

	.section-catalog-categories .categories-list .item {
		width: calc(100% - 20px);
	}

	.delivery-tab .block-title {
		font-size: 26px;
		line-height: 1.5;
		text-align: center;
	}

	.delivery-tab .cols-3 {
		flex-direction: column;
	}

	.delivery-tab .cols-3 .item {
		width: calc(100% - 40px);
		margin-bottom: 70px;
	}

	.delivery-tab .cols-3 .item .name {
		font-size: 20px;
		line-height: 30px;
		margin-bottom: 24px;
	}

	.delivery-tab .cols-3 .item p,
	.delivery-tab .delivery-specs .item.large p {
		font-size: 15px;
		line-height: 1.5;
	}

	.delivery-tab .delivery-specs .item.large {
		padding: 30px 30px 320px;
		margin-bottom: 30px;
	}

	.delivery-tab .delivery-specs .item.large img {
		max-width: 400px;
	}

	.d-date {
		flex-direction: column;
	}

	.d-date .d-item {
		margin-bottom: 24px;
		margin-right: 0;
	}

	.delivery-tab .delivery-specs .item.large .title {
		font-size: 22px;
		line-height: 1.5;
		margin-bottom: 24px;
	}

	.delivery-tab .delivery-specs .item.large p {
		margin-bottom: 30px;
	}

	.delivery-tab .delivery-specs .item.small {
		width: 100%;
		margin-bottom: 20px;
		flex-direction: column;
		padding: 50px 20px 20px;
	}

	.delivery-tab .delivery-specs .item.small .col {
		position: relative;
		z-index: 1;
	}

	.delivery-tab .delivery-specs .item.small .col .btn {
		width: 100%;
		margin-top: 24px;
	}

	.delivery-tab .delivery-specs .item.small .price.rose {
		padding: 0;
	}

	.delivery-tab .delivery-specs .item.small .price svg {
		top: -85%;
	}

	.delivery-tab .delivery-cities .del-type {
		flex-direction: column;
		margin-bottom: 0;
	}

	.delivery-tab .delivery-cities .del-type .col {
		width: calc(100% - 40px);
		padding-left: 30px;
		margin-bottom: 110px;
	}

	.delivery-tab .delivery-cities .del-type .col > * {
		position: relative;
		z-index: 2;
	}

	.delivery-tab .delivery-cities .cities-list {
		-moz-columns: 1;
		columns: 1;
		margin-top: -32px;
	}

	.delivery-tab .delivery-cities .del-type .col svg {
		z-index: 1;
		left: 0;
	}

	.delivery-tab .delivery-specs {
		margin-bottom: 50px;
	}

	.section-catalog-products {
		margin-top: 22px;
	}

	.section-catalog-products .cat-title {
		font-size: 24px;
		line-height: 1.2;
		margin-bottom: 30px;
	}

	.section-catalog-products .cat-tags {
		margin-bottom: 27px;
	}

	.products-container.by-4 .item {
		width: 50%;
	}

	.section-catalog-products .products-container {
		margin-right: -10px;
		margin-left: -10px;
		padding-bottom: 0;
	}

	.section-catalog-products .products-wrap .product-item {
		padding-left: 10px;
		padding-right: 10px;
		margin-bottom: 10px;
	}

	.section-catalog-products .products-wrap .product-item .prod-sale,
	.products-slider .product-item .prod-sale {
		left: 0;
	}

	.section-catalog-products .products-wrap .product-item .prod-sale img,
	.products-slider .product-item .prod-sale img {
		width: 34px;
		height: 34px;
	}

	.section-catalog-products .products-wrap .promotion .d-flex {
		flex-direction: column;
	}

	.section-catalog-products .products-wrap .promotion .col:first-child {
		padding: 30px 30px 18px;
	}

	.section-catalog-products .products-wrap .promotion .col:first-child .title {
		font-size: 28px;
		margin-bottom: 15px;
	}

	.section-catalog-products .products-wrap .promotion .col:first-child .text {
		margin-bottom: 33px;
	}

	.content .content-block {
		flex-direction: column;
	}

	.section-brands .brands ul li a {
		height: 80px;
	}

	.section-brands .brands ul li {
		width: calc(50% - 10px);
		margin-right: 5px;
		margin-left: 5px;
		margin-bottom: 10px;
	}

	.section-brands .brands ul {
		margin-right: -5px;
		margin-left: -5px;
	}

	.catalog-child .section-content h2 {
		margin-top: -10px;
		margin-bottom: 24px;
		font-size: 26px;
		line-height: 1.5;
	}

	.catalog-child .section-content h2 br {
		display: none;
	}

	.catalog-child .section-content {
		margin-bottom: 70px;
	}

	.section-compare .page-title {
		margin-top: 22px;
		margin-bottom: 30px;
	}

	.wrap-header {
		padding: 20px 0 15px;
	}

	.compare-wrap,
	.wishlist-wrap {
		margin-right: -15px;
		margin-left: -15px;
		padding: 0 15px;
	}

	.compare-wrap .compare-view {
		padding-left: 0;
		padding-right: 0;
	}

	.compare-list .product-item,
	.wishlist-wrap .product-item {
		padding: 0 10px;
	}

	.compare-list .slick-arrow {
		display: none !important;
	}

	.compare-list .product-item .prod-actions {
		flex-direction: column;
		top: 0;
		right: 15px;
	}

	.compare-wrap > .compare-list,
	.wishlist-wrap .wishlist-slider {
		margin-right: -10px;
		margin-left: -10px;
	}

	.compare-fix-header {
		background: #fff;
		box-shadow: 0 4px 23px rgba(0, 0, 0, 0.05);
		padding-bottom: 25px;
		padding-top: 25px;
	}

	.compare-fix-header .compare-list {
		background: 0 0;
		box-shadow: none;
	}

	.compare-fix-header .compare-list .product-item .thumb {
		height: 140px;
	}

	.compare-fix-header .compare-list .product-item {
		height: 312px;
	}

	.compare-fix-header .container {
		padding-left: 5px;
		padding-right: 5px;
	}

	.compare-list .product-item .category {
		display: none !important;
	}

	.compare-list .prod-specs {
		padding-right: 10px;
		padding-left: 10px;
	}

	.compare-list .prod-specs .specs-title {
		font-size: 22px;
		margin-bottom: 40px;
		margin-top: 50px;
	}

	.compare-list .prod-specs ul li .key {
		margin-bottom: 10px;
		font-size: 15px;
	}

	.compare-list .prod-specs ul li {
		margin-bottom: 40px;
	}

	.wishlist-wrap .wishlist-slider .slick-arrow {
		display: none;
	}

	.wishlist-wrap .product-item {
		height: 312px;
	}

	.wishlist-wrap {
		padding-bottom: 40px;
	}

	.section-wishlist {
		padding-bottom: 70px;
	}

	.section-checkout {
		padding-top: 30px;
	}

	.section-checkout > .container > .d-flex {
		flex-direction: column-reverse;
		align-items: flex-start;
	}

	.section-checkout .checkout-title {
		font-size: 24px;
		line-height: 120%;
		margin-top: 16px;
	}

	.section-checkout .checkout-blocks__item .block-title {
		font-size: 16px;
	}

	.section-checkout .checkout-blocks {
		margin-top: 30px;
	}

	.section-checkout .checkout-blocks .checkout-cart__row {
		flex-wrap: wrap;
	}

	.section-checkout .checkout-blocks .checkout-cart__row .thumb {
		width: 117px;
		padding-right: 10px;
		margin-right: 0;
	}

	.section-checkout .checkout-blocks .checkout-cart__row .thumb img {
		-o-object-position: 0 0;
		object-position: 0 0;
	}

	.section-checkout .checkout-blocks .checkout-cart__row .col:nth-child(2) {
		width: calc(100% - 117px);
	}

	.section-checkout .checkout-blocks .checkout-cart__row .col:last-child {
		width: 100%;
		flex-direction: column-reverse;
	}

	.section-checkout .checkout-blocks .checkout-cart__row .col:last-child > .d-flex {
		flex-direction: row-reverse;
		margin-top: 40px;
	}

	.section-checkout .checkout-blocks .checkout-cart__row .row-actions {
		width: calc(100% - 117px);
		text-align: left;
		margin-top: 12px;
	}

	.section-checkout .checkout-blocks__item {
		margin-right: -15px;
		margin-left: -15px;
		margin-bottom: 15px;
	}

	.section-checkout .checkout-blocks .checkout-cart__row .price .old {
		text-align: left;
	}

	.section-checkout .checkout-blocks .checkout-cart__row .title {
		margin-bottom: 12px;
	}

	.section-checkout .checkout-blocks .checkout-total {
		flex-direction: column;
		align-items: flex-start;
	}

	.section-checkout .checkout-blocks .checkout-total p span {
		display: block;
	}

	.section-checkout .checkout-blocks .checkout-total .total {
		margin-top: 20px;
	}

	.section-checkout .checkout-blocks .promocode .label {
		width: 100%;
		margin-bottom: 12px;
	}

	.section-checkout .checkout-blocks .promocode .input-wrap {
		margin: 0;
		width: calc(100% - 127px);
	}

	.section-checkout .checkout-blocks .promocode .btn {
		margin-left: 10px;
		width: 117px;
	}

	.section-checkout .checkout-blocks__item .label {
		font-size: 16px;
	}

	.section-checkout .checkout-blocks .order-total .price {
		font-size: 16px;
	}

	.section-checkout .checkout-blocks .order-total .btn {
		width: 158px;
		padding: 0 10px;
	}

	.section-checkout .checkout-blocks .phone-form {
		margin-top: 12px;
	}

	.section-checkout .checkout-blocks .phone-form .d-flex {
		flex-direction: column;
	}

	.section-checkout .checkout-blocks .phone-form .input-wrap {
		width: 100%;
	}

	.section-checkout .checkout-blocks .phone-form .btn {
		width: 100%;
		margin-top: 20px;
	}

	.section-checkout .checkout-blocks .chose-delivery .chose-block {
		margin-bottom: 37px;
		margin-right: 0;
	}

	.section-checkout .checkout-blocks .delivery-form .input-wrap {
		width: 100%;
	}

	.section-checkout .checkout-blocks .delivery-form {
		margin-top: 30px;
	}

	.section-checkout .checkout-blocks .delivery-form .col {
		width: 100%;
		margin-top: 10px;
	}

	.section-checkout .checkout-blocks .delivery-form .col .input-wrap {
		width: calc(50% - 10px);
		margin-bottom: 0;
	}

	.section-checkout .checkout-blocks .delivery-form .btn {
		width: 100%;
	}

	.section-checkout .checkout-blocks .delivery-form .comment-wrap {
		padding-top: 30px;
		margin-bottom: 30px;
		margin-top: 5px;
	}

	.section-checkout .checkout-blocks .client-type {
		margin-top: 30px;
	}

	.section-checkout .checkout-blocks .client-type .chose-block label {
		margin-bottom: 0;
	}

	.section-checkout .checkout-blocks .client-final .order-confirmation {
		flex-direction: column;
		padding-bottom: 25px;
	}

	.section-checkout .checkout-blocks .client-final .order-confirmation .col {
		width: 100%;
	}

	.section-checkout .checkout-blocks .client-final .order-confirmation .col .chose-block,
	.section-checkout .checkout-blocks .client-final .order-confirmation .col .product {
		margin-bottom: 40px;
	}

	.section-checkout .checkout-blocks .client-final .order-confirmation .col .product .thumb {
		min-width: 100px;
	}

	.section-checkout .checkout-blocks .client-final .order-confirmation .col .product .thumb img {
		-o-object-position: 0 0;
		object-position: 0 0;
	}

	.section-checkout .checkout-blocks .btn-wrap {
		padding-bottom: 5px;
		padding-top: 30px;
	}

	.section-checkout .checkout-blocks .btn-wrap .btn {
		width: 100%;
	}

	.section-checkout {
		padding-bottom: 55px;
	}

	.footer-second-flex {
		flex-direction: column;
		align-items: flex-start !important;
	}

	.footer.footer-second .copyright {
		margin-bottom: 22px;
	}

	.section-checkout .checkout-blocks .client-final .org-form {
		flex-direction: column;
	}

	.section-checkout .checkout-blocks .client-final .org-form .col:first-child,
	.section-checkout .checkout-blocks .client-final .org-form .col:last-child {
		width: 100%;
		min-width: 0;
		max-width: 100%;
	}

	.checkout-thanks {
		margin-top: 0;
		padding: 40px 30px 50px;
		margin-bottom: -15px;
	}

	.checkout-thanks .title {
		font-size: 22px;
		line-height: 40px;
		margin-bottom: 30px;
	}

	.checkout-thanks p {
		margin-bottom: 30px;
		font-size: 16px;
	}

	.checkout-thanks p.rose {
		margin-bottom: 30px;
	}

	.modal-box {
		margin-top: 20px;
	}

	.modal.small .modal-body {
		padding: 70px 20px 30px;
	}

	.cities .title,
	.pickup .title {
		font-size: 22px;
		line-height: 150%;
		margin-bottom: 15px;
		padding: 0;
	}

	.cities .title br,
	.pickup .title br {
		display: none;
	}

	.pickup .block-title {
		margin-bottom: 15px;
	}

	.pickup > .map-wrap {
		flex-direction: column;
	}

	.pickup > .map-wrap img {
		height: auto;
	}

	.pickup > .map-wrap ol {
		margin-top: 24px;
		margin-left: 20px;
	}

	.cities .cities-list {
		-moz-columns: 1;
		columns: 1;
	}

	.section-checkout .checkout-blocks .delivery-form .col .col-label {
		margin-bottom: 15px;
	}

	.catalog-mega-menu .mm-main .categories-main li.active a {
		color: inherit;
	}

	.catalog-mega-menu .mm-main .categories-main li,
	.catalog-mega-menu .mm-main .categories-main li.active {
		background-image: url("ArrowRightBlack.svg");
		background-repeat: no-repeat;
		background-position: 100% 50%;
		padding-right: 14px;
	}

	.compare-wrap .compare-view li {
		margin-right: 15px;
	}

	.compare-wrap .compare-view li:last-child {
		margin-right: 0;
	}

	.compare-wrap .compare-view li a::before {
		min-width: 20px;
	}

	.compare-wrap .compare-view li a span {
		display: none;
	}

	.wrap-header .clear-all {
		font-size: 0;
	}

	.wrap-header .clear-all i {
		margin: 0;
	}

	.wrap-header .dropdown {
		position: relative;
		width: 286px;
	}

	.wrap-header .dropdown .current {
		display: flex;
		align-items: center;
		justify-content: space-between;
		height: 42px;
		padding: 0 20px;
		background: #f8f8f8;
		border-radius: 8px;
		font-size: 15px;
	}

	.wrap-header .dropdown .current::after {
		content: '';
		display: block;
		width: 18px;
		height: 18px;
		background-image: url("ArrowDownBlack.svg");
		background-repeat: no-repeat;
		background-position: center;
		background-size: 10px;
	}

	.wrap-header .dropdown .current.open::after {
		transform: rotate(180deg);
	}

	.wrap-header .dropdown .current span {
		display: none;
	}

	.wrap-header .dropdown .block-nav {
		display: none;
		position: absolute;
		top: 100%;
		width: 100%;
		left: 0;
		background-color: #fff;
		z-index: 10;
	}

	.wrap-header .dropdown .block-nav li a {
		border-radius: 0;
		margin: 0;
		width: 100%;
		height: 42px;
		padding: 0 20px;
		font-size: 15px;
	}

	.compare-wrap .compare-view {
		margin-bottom: 30px;
	}

	.wishlist-wrap .slider-action {
		margin-top: 15px;
	}

	.compare-wrap .slider-action,
	.wishlist-wrap .slider-action {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 40px;
	}

	.compare-wrap .slider-action .count,
	.wishlist-wrap .slider-action .count {
		color: #626262;
		font-size: 16px;
		font-weight: 500;
	}

	.section-wishlist .page-title {
		margin-top: 22px;
		margin-bottom: 30px;
	}

	.cart-wrap .prod-row .title {
		font-size: 16px;
		line-height: 1.5;
	}

	.cart-wrap .prod-row .title + .d-flex {
		flex-direction: column;
	}

	.cart-wrap .prod-row .avilability {
		margin: 0 0 8px;
	}

	.cart-wrap .prod-row .price {
		font-size: 16px;
	}

	.cart-wrap .prod-kompl .kompl-row {
		margin-bottom: 0;
		border-bottom: 1px solid #e0e0dd;
	}

	.cart-wrap .prod-kompl .kompl-row.active {
		border-bottom: none;
	}

	.cart-wrap .fast-order {
		margin-top: 30px;
	}

	.cart-wrap .fast-order::before {
		display: none;
	}

	.main-static,
	.page-404 {
		padding-bottom: 70px;
	}

	.main-static .tags li a {
		min-width: 100px;
	}

	.main-static .section-komplekt .content .content-block .col:last-child {
		padding-top: 0;
	}

	.main-static .section-komplekt .content .content-block .col:last-child p:first-child {
		margin-bottom: 30px;
	}

	.main-static .content .content-block p:last-child {
		margin-bottom: 0;
	}

	.main-static .section-komplekt .promotion,
	.main-static .tags {
		margin-bottom: 30px;
	}

	.products-slider + .slick-dots {
		transform: translateY(-2px);
	}

	.main-home .section-home-about {
		margin-bottom: 70px;
	}

	.wishlist-wrap .product-item .thumb {
		height: 140px;
	}

	.wishlist-wrap .product-item .prod-badges {
		display: none;
	}

	.wishlist-wrap .product-item .prod-actions {
		top: 0;
	}

	.section-catalog-products .products-wrap .sort-block .current {
		min-width: 196px;
	}

	.section-catalog-products .sidebar .filter-block .checkbox-list .show-all {
		font-size: 15px;
	}

	.section-catalog-products .sidebar .filter-block .price-filter .input-wrap {
		width: 128px;
	}

	.section-catalog-products .products-wrap .product-item .thumb {
		height: 140px;
	}

	.section-catalog-products .product-item .thumb .prod-badges {
		top: 140px;
	}

	.section-catalog-products .products-wrap .promotion {
		margin-right: 10px;
		margin-left: 10px;
		min-height: 400px;
	}

	.section-catalog-products .products-wrap .promotion .btn {
		font-size: 18px;
	}

	.section-catalog-products .products-wrap .promotion .col:nth-child(2) img {
		height: auto;
		width: 100%;
	}

	.section-brands {
		margin-top: 40px;
		margin-bottom: 60px;
	}

	.section-brands .brands ul li {
		max-width: none;
	}

	.catalog-child .content-block {
		flex-direction: column-reverse;
	}

	.catalog-child .content .content-block .col:last-child {
		margin-top: 0;
		margin-bottom: 10px;
	}

	.catalog-child .content .content-block .col:last-child p {
		font-size: 16px;
	}

	.main-product .content .content-block .col:first-child,
	.main-product .content .content-block .col:last-child {
		width: 100%;
	}

	.main-product .content .content-block {
		margin-bottom: 50px;
	}

	.main-product .content .content-block .col img {
		height: 234px;
	}

	.main-product .content .content-block:last-child {
		margin-bottom: 30px;
	}

	.main-product .content .content-block:first-child .title {
		padding-top: 0;
	}

	.main-product .content .content-block .title {
		font-size: 22px;
		margin-bottom: 20px;
	}

	.main-product .content .content-block .title br {
		display: none;
	}

	.main-product .section-content .content .content-block {
		margin-bottom: 70px;
	}

	.delivery-tab .cols-3 .item,
	.delivery-tab .cols-3 .item:last-child {
		max-width: 100%;
		width: calc(100% - 40px);
		min-width: auto;
	}

	.delivery-tab .block-title {
		margin-bottom: 30px;
	}

	.section-compare .compare-fix-header .compare-list .product-item .prod-actions,
	.section-compare .compare-fix-header .page-title,
	.section-compare .compare-fix-header .product-item .name,
	.section-compare .compare-fix-header .slider-action {
		display: none;
	}

	.compare-fix-header .compare-list .product-item .thumb {
		height: 90px;
	}

	.compare-fix-header .compare-list .product-item {
		height: 160px;
	}

	.compare-fix-header .product-item .price .current {
		font-size: 17px;
	}

	.compare-fix-header .compare-list .product-item .item-bottom .btn {
		height: 30px;
		width: 44px;
	}

	.compare-fix-header .compare-list .product-item .item-bottom .btn i {
		font-size: 19px;
	}
}

.main-static {
	line-height: 1.5;
	padding-bottom: 130px;
}

.main-static .large-heading {
	font-size: 32px;
	font-weight: 400;
}

.main-static .large-heading.large-heading--medium {
	font-weight: 500;
}

.main-static .large-heading.large-heading--bold {
	font-weight: 700;
}

.main-static h2.large-heading {
	font-weight: 500;
}

.main-static h1 {
	font-size: 30px;
	font-weight: 500;
}

.main-static h1.page-title {
	font-weight: 400;
}

.main-static h2 {
	font-size: 30px;
	font-weight: 500;
}

.main-static h3 {
	font-size: 28px;
	font-weight: 500;
}

.main-static .h4,
.main-static h4 {
	font-size: 26px;
	font-weight: 500;
}

.main-static .h5,
.main-static h5 {
	font-size: 22px;
	font-weight: 500;
}

.main-static .h6,
.main-static h6 {
	font-size: 18px;
	font-weight: 500;
}

.main-static p {
	font-size: 16px;
}

@media screen and (max-width: 1199px) {
	.main-static .large-heading {
		font-size: 30px;
	}

	.main-static h1 {
		font-size: 30px;
	}

	.main-static h2 {
		font-size: 28px;
	}

	.main-static h3 {
		font-size: 24px;
	}

	.main-static .h4,
	.main-static h4 {
		font-size: 24px;
	}

	.main-static .h5,
	.main-static h5 {
		font-size: 18px;
	}

	.main-static h6 {
		font-size: 16px;
	}

	.main-static p {
		font-size: 16px;
	}
}

@media screen and (max-width: 767px) {
	.main-static .large-heading {
		font-size: 28px;
	}

	.main-static h1 {
		font-size: 24px;
	}

	.main-static h1.page-title {
		line-height: 1.2;
	}

	.main-static h2 {
		font-size: 26px;
	}

	.main-static h3 {
		font-size: 22px;
	}

	.main-static .h4,
	.main-static h4 {
		font-size: 22px;
	}

	.main-static .h5,
	.main-static h5 {
		font-size: 16px;
	}

	.main-static h6 {
		font-size: 15px;
	}

	.main-static p {
		font-size: 15px;
	}
}

.static-obmen {
	padding-bottom: 130px;
}

.static-obmen .section-faq h2 {
	margin-top: 0;
	margin-bottom: 24px;
	font-weight: 500;
}

.static-obmen .section-faq .subtitle {
	font-size: 22px;
	line-height: 1.5;
	margin-bottom: 64px;
}

.static-obmen .section-faq .faq .item {
	width: auto;
	margin-bottom: 90px;
}

@media screen and (max-width: 1199px) {
	.static-obmen .section-faq .faq .item {
		margin-bottom: 55px;
	}
}

@media screen and (max-width: 1023px) {
	.static-obmen .section-faq .faq .item {
		margin-bottom: 30px;
	}

	.static-obmen .section-faq .faq .item .question {
		padding: 15px 30px;
	}

	.static-obmen .section-faq .faq .item .answer {
		padding: 30px;
	}
}

.static-obmen .section-faq .faq .item .answer,
.static-obmen .section-faq .faq .item .question {
	border-radius: 0;
}

.static-obmen .delivery-specs {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 130px;
}

.static-obmen .delivery-specs .item.large {
	background: #efeefe;
	border-radius: 10px;
	width: 100%;
	position: relative;
	padding-left: 45%;
	padding-top: 62px;
	padding-bottom: 65px;
	padding-right: 50px;
}

.static-obmen .delivery-specs .item.large img {
	position: absolute;
	left: 0;
	bottom: 0;
	max-width: 659px;
	max-height: 536px;
	-o-object-fit: contain;
	object-fit: contain;
}

.static-obmen .delivery-specs .item.large img.vb {
	display: none;
}

@media screen and (max-width: 1199px) {
	.static-obmen .delivery-specs .item.large img.vd {
		display: none;
	}

	.static-obmen .delivery-specs .item.large img.vb {
		display: block;
		width: 618px;
		max-width: none;
		left: 33px;
	}
}

@media screen and (max-width: 1023px) {
	.static-obmen .delivery-specs .item.large img.vb {
		display: block;
		width: auto;
		height: 302px;
		max-width: none;
		left: -7px;
	}
}

.static-obmen .delivery-specs .item.large .title {
	color: #5c3da5;
	font-weight: 500;
	font-size: 30px;
	margin-bottom: 18px;
}

@media screen and (max-width: 1199px) {
	.static-obmen .delivery-specs .item.large .title {
		font-size: 28px;
	}
}

@media screen and (max-width: 1023px) {
	.static-obmen .delivery-specs .item.large .title {
		font-size: 26px;
	}
}

.static-obmen .delivery-specs .item.large p {
	margin: 0 0 28px;
}

.static-obmen .delivery-specs .item.large p:last-child {
	margin: 0;
}

.static-obmen .delivery-specs .item.large .d-date {
	margin-bottom: 26px;
}

.static-obmen .delivery-specs .item.large .d-date .d-item {
	width: 420px;
	color: #5c3da5;
	font-size: 18px;
	font-weight: 500;
	line-height: 26px;
	margin-right: 60px;
	padding-left: 61px;
	background-image: url("clock.svg");
	background-repeat: no-repeat;
	background-position: 0 50%;
	min-height: 52px;
	background-size: 42px 42px;
}

.static-obmen .delivery-specs .item.small {
	width: calc(50% - 31px);
	display: flex;
	position: relative;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 8px 32px rgba(43, 45, 51, 0.05);
	border-radius: 10px;
	min-height: 226px;
}

.static-obmen .delivery-specs .item.small .price {
	position: relative;
	z-index: 1;
	width: 300px;
	min-width: 300px;
	display: flex;
	align-items: center;
	font-weight: 500;
	font-size: 60px;
	line-height: 99px;
	padding: 0 23px;
}

.static-obmen .delivery-specs .item.small .price svg {
	position: absolute;
	z-index: -1;
	top: -25px;
	left: -153px;
}

.static-obmen .delivery-specs .item.small .price.rose {
	color: #c42d96;
}

.static-obmen .delivery-specs .item.small .price.viol {
	color: #5c3da5;
}

.static-obmen .delivery-specs .item.small .price.viol svg path {
	fill: #efeefe;
}

.static-obmen .delivery-specs .item.small .col {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.static-obmen .delivery-specs .item.small .col p {
	font-weight: 400;
	font-size: 22px;
	line-height: 30px;
	margin: 0;
}

.static-obmen .delivery-specs .item.small .col .btn {
	width: 174px;
	height: 48px;
	margin-top: 38px;
	font-size: 18px;
	border-radius: 8px;
}

.static-obmen .delivery-specs .item.small:last-child .col {
	justify-content: center;
	padding-right: 54px;
}

.static-obmen .delivery-specs .item.small:last-child .col p:nth-child(2) {
	font-weight: 400;
	margin: 23px 0;
}

.static-obmen .delivery-specs .item.small:last-child .col p:last-child {
	color: #5c3da5;
	font-weight: 400;
}

.static-obmen .delivery-specs .item.full {
	width: 100%;
	margin-bottom: 94px;
	margin-top: 64px;
}

.static-obmen .delivery-specs .item.full p:first-child {
	margin: 0 0 130px;
}

.static-obmen .delivery-specs .item.full p:last-child {
	margin: 0;
}

.static-obmen .delivery-specs .item.full p {
	font-size: 22px;
	line-height: 33px;
}

.static-obmen .sec1 {
	margin-bottom: 130px;
}

.static-obmen .sec1 .col:first-child {
	width: 669px;
	height: 326px;
	min-width: 669px;
	margin-right: 60px;
}

.static-obmen .sec1 .col:first-child img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.static-obmen .sec1 .col:last-child {
	width: 100%;
}

.static-obmen .sec1 .col:last-child h1,
.static-obmen .sec1 .col:last-child p {
	margin: 0 0 24px;
}

.static-obmen .sec1 .col:last-child h1:last-child,
.static-obmen .sec1 .col:last-child p:last-child {
	margin: 0;
}

.static-obmen .sec1 .col:last-child h1 {
	font-weight: 500;
}

.static-obmen .sec1 .col:last-child p {
	font-size: 22px;
}

@media screen and (max-width: 1199px) {
	.static-obmen .sec1 .col:last-child p {
		font-size: 18px;
	}
}

@media screen and (max-width: 1023px) {
	.static-obmen .sec1 .col:last-child p {
		font-size: 15px;
	}
}

.static-obmen .box {
	padding: 60px 60px 58px;
	border-radius: 10px;
	margin-bottom: 130px;
}

.static-obmen .box.viol {
	background-color: #efeefe;
	color: #5c3da5;
}

.static-obmen .box h4 {
	font-weight: 500;
	margin: 0;
	line-height: 1.5;
}

.static-obmen .quote {
	position: relative;
	padding-top: 32px;
	padding-bottom: 39px;
	padding-left: 64px;
	margin-bottom: 130px;
	padding-right: 94px;
}

@media screen and (max-width: 1199px) {
	.static-obmen .quote {
		padding-right: 0;
	}
}

.static-obmen .quote .rose {
	color: #c42d96;
}

.static-obmen .quote::before {
	content: '';
	display: block;
	position: absolute;
	height: 100%;
	width: 4px;
	left: 0;
	top: 0;
	border-radius: 2px;
}

.static-obmen .quote.rose::before {
	background-color: #c42d96;
}

.static-obmen .quote h2,
.static-obmen .quote h6 {
	margin: 0 0 24px;
	font-weight: 500;
}

.static-obmen .quote p {
	margin: 0 0 24px;
}

.static-obmen .quote p:last-child {
	margin: 0;
}

.static-obmen .section-obmen-parts h2 {
	margin: 0 0 45px;
	font-weight: 500;
}

.static-how-review .box {
	background: #fff;
	box-shadow: 0 8px 32px rgba(43, 45, 51, 0.05);
	border-radius: 10px;
	padding: 60px 60px 62px;
}

.static-how-review .box p {
	margin: 0;
	font-size: 22px;
	line-height: 150%;
	max-width: 100%;
	width: 910px;
}

.static-how-review .box h1 {
	font-weight: 500;
	font-size: 32px;
	line-height: 150%;
	margin: 0 0 24px;
}

.static-how-review .box img {
	width: 314px;
	height: 67px;
	-o-object-fit: contain;
	object-fit: contain;
}

@media screen and (max-width: 1199px) {
	.static-how-review .box img {
		height: 60px;
		width: 282px;
	}
}

.static-how-review .section-two-col {
	margin-top: 150px;
}

.static-how-review .section-two-col .col {
	width: calc(50% - 30px);
}

.static-how-review .section-two-col .col .d-flex {
	position: relative;
}

.static-how-review .section-two-col .col:first-child .quote {
	position: relative;
}

.static-how-review .section-two-col .col .quote {
	padding: 25px 25px 25px 64px;
	max-width: 100%;
}

.static-how-review .section-two-col .col .quote p {
	margin: 0;
}

.static-how-review .section-two-col .col .quote p strong {
	font-weight: 500;
}

.static-how-review .section-two-col .col .quote h6 {
	margin: 24px 0;
	font-weight: 500;
}

.static-how-review .section-two-col .col .quote h6 strong {
	font-weight: 500;
}

.static-how-review .section-two-col .col .quote p + p {
	margin-top: 24px;
}

.static-how-review .section-two-col .col .quote a {
	color: #c42d96;
	text-decoration: underline;
	word-wrap: break-word;
}

.static-how-review .section-two-col .col .quote a:hover {
	text-decoration: none;
}

.static-how-review .section-two-col .col .quote::before {
	content: '';
	display: block;
	position: absolute;
	height: 100%;
	left: 0;
	top: 0;
	width: 4px;
	border-radius: 2px;
}

.static-how-review .section-two-col .col:first-child .quote::before {
	background-color: #c42d96;
}

.static-how-review .section-two-col .col:last-child .quote::before {
	background-color: #5c3da5;
}

.static-how-review .section-two-col .col:last-child img {
	width: 221px;
}

.static-how-review .section-two-col .col:last-child .d-flex {
	margin-bottom: 34px;
	justify-content: space-between;
	align-items: flex-start;
}

.static-how-review .section-two-col .col:last-child > p {
	font-size: 22px;
	margin: 24px 0 0;
}

.static-how-review .section-two-col .col .top-block {
	background: #fff;
	box-shadow: 0 8px 32px rgba(43, 45, 51, 0.05);
	border-radius: 10px;
	display: flex;
	height: 149px;
	align-items: center;
	margin-bottom: 64px;
	background-repeat: no-repeat;
	background-position: left bottom;
	padding: 50px 50px 54px 210px;
	position: relative;
}

.static-how-review .section-two-col .col .top-block p {
	margin: 0;
	font-weight: 500;
	font-size: 30px;
	line-height: 150%;
}

.static-how-review .section-two-col .col .top-block p.rose {
	color: #c42d96;
}

.static-how-review .section-two-col .col .top-block p.viol {
	color: #5c3da5;
}

.static-how-review .section-two-col .col .top-block.rose {
	background-image: url("Polygon_rose.svg");
}

.static-how-review .section-two-col .col .top-block.rose img {
	top: 64px;
	left: 43px;
	width: 59px;
	height: 59px;
}

.static-how-review .section-two-col .col .top-block.viol {
	background-image: url("Polygon_viol.svg");
}

.static-how-review .section-two-col .col .top-block.viol img {
	top: 51px;
	left: 40px;
	width: 60px;
	height: 59px;
}

.static-how-review .section-two-col .col .top-block img {
	position: absolute;
	-o-object-fit: contain;
	object-fit: contain;
}

.static-obman {
	padding-bottom: 130px;
}

.static-obman .obman-first .d-flex:first-child {
	margin-bottom: 130px;
}

.static-obman .obman-first .d-flex:first-child .col:first-child {
	width: 359px;
	min-width: 359px;
}

.static-obman .obman-first .d-flex:first-child .col:first-child img {
	max-width: 100%;
}

.static-obman .obman-first .d-flex:first-child .col:last-child h1 {
	margin: 0 0 24px;
}

.static-obman .obman-first .d-flex:first-child .col:last-child h5 {
	margin: 0 0 24px;
	font-weight: 400;
	max-width: 1117px;
}

.static-obman .obman-first .d-flex:first-child .col:last-child h5:last-child {
	margin: 0;
}

@media screen and (max-width: 767px) {
	.static-obman .obman-first .d-flex:first-child .col:last-child h5 {
		font-size: 16px;
	}
}

.static-obman .obman-first .d-flex:last-child {
	margin-bottom: 130px;
	justify-content: space-between;
	align-items: center;
}

.static-obman .obman-first .d-flex:last-child .col:first-child {
	width: 680px;
}

.static-obman .obman-first .d-flex:last-child .col:first-child h2 {
	margin: 0 0 24px;
}

.static-obman .obman-first .d-flex:last-child .col:first-child h5 {
	margin: 0;
	font-weight: 400;
}

.static-obman .obman-first .d-flex:last-child .col:last-child {
	width: 760px;
	margin-left: 60px;
}

.static-obman .section-reasons h2 {
	margin: 0 0 24px;
}

.static-obman .section-reasons h5 {
	font-weight: 400;
	margin: 0;
}

.static-obman .section-reasons .reasons-list {
	margin-top: 90px;
}

.static-obman .section-reasons .reasons-list .item {
	margin-bottom: 70px;
	max-width: 100%;
	width: 1159px;
}

.static-obman .section-reasons .reasons-list .item:last-child {
	margin-bottom: 0;
}

.static-obman .section-reasons .reasons-list .item .title {
	color: #c42d96;
	line-height: 50px;
	display: inline-flex;
	align-items: center;
	margin-bottom: 15px;
	font-weight: 500;
}

.static-obman .section-reasons .reasons-list .item .title span {
	display: inline-block;
	font-weight: 500;
	font-size: 60px;
	width: 40px;
	min-width: 40px;
	margin-right: 20px;
	line-height: 50px;
	vertical-align: middle;
}

.static-obman .section-reasons .reasons-list .item p {
	margin: 0 0 24px;
}

.static-obman .section-reasons .reasons-list .item p img {
	margin-top: 21px;
	width: 746px;
}

.static-obman .section-reasons .reasons-list .item a {
	color: #c42d96;
	text-decoration: underline;
}

.static-obman .section-reasons .reasons-list .item a:hover {
	text-decoration: none;
}

.static-obman .section-obman-promo {
	margin-top: 130px;
}

.static-obman .section-obman-promo .promo-wrap {
	background: #f5f5f6;
	border-radius: 10px;
	padding: 60px;
	position: relative;
}

.static-obman .section-obman-promo .promo-wrap img {
	position: absolute;
	width: 654px;
	height: 347px;
	-o-object-fit: contain;
	object-fit: contain;
	bottom: 0;
	right: 42px;
}

.static-obman .section-obman-promo .promo-wrap h2 {
	margin: 0 0 48px;
	max-width: 873px;
	font-size: 32px;
	line-height: 1.5;
}

.static-obman .section-obman-promo .promo-wrap .btn {
	width: 200px;
	font-size: 16px;
	border-radius: 8px;
	z-index: 1;
	position: relative;
}

.static-bron .bron-first {
	margin-bottom: 130px;
}

.static-bron .bron-first .box {
	background: #fff;
	box-shadow: 0 8px 32px rgba(43, 45, 51, 0.05);
	border-radius: 10px;
	padding: 60px 60px 58px;
}

.static-bron .bron-first .box h1 {
	font-size: 32px;
	line-height: 1.5;
	font-weight: 500;
	margin: 0 0 24px;
}

.static-bron .bron-first .box h5 {
	font-weight: 400;
	margin: 0;
	line-height: 1.5;
}

.static-bron .bron-deliv {
	margin-bottom: 130px;
}

.static-bron .bron-deliv h5 {
	font-weight: 400;
	margin-top: 80px;
	line-height: 1.5;
}

.static-bron .bron-deliv .box {
	background: #fff;
	box-shadow: 0 8px 32px rgba(43, 45, 51, 0.05);
	border-radius: 10px;
	overflow: hidden;
}

.static-bron .bron-deliv .box .col:first-child {
	padding: 50px 60px 56px;
}

.static-bron .bron-deliv .box .col:first-child h2 {
	margin: 0 0 24px;
	max-width: 634px;
}

.static-bron .bron-deliv .box .col:first-child p {
	margin: 0 0 24px;
	max-width: 532px;
}

.static-bron .bron-deliv .box .col:first-child .adr {
	margin: 0 0 24px;
}

.static-bron .bron-deliv .box .col:first-child .adr p {
	color: #5c3da5;
	margin: 0;
	font-size: 18px;
	font-weight: 500;
	margin-left: 27px;
}

.static-bron .bron-deliv .box .col:first-child .adr img {
	width: 26px;
	height: 33px;
}

.static-bron .bron-deliv .box .col:first-child h5 {
	margin: 0;
	font-weight: 400;
}

@media screen and (max-width: 1199px) {
	.static-bron .bron-deliv .box .col:first-child {
		width: 502px;
		max-width: 100%;
	}
}

.static-bron .bron-deliv .box .col:last-child {
	width: 760px;
	height: 430px;
	max-width: 100%;
}

.static-bron .bron-deliv .box .col:last-child img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

@media screen and (max-width: 1199px) {
	.static-bron .bron-deliv .box .col:last-child {
		width: 482px;
		height: 400px;
	}
}

@media screen and (max-width: 767px) {
	.static-bron .bron-deliv .box .col:last-child {
		height: auto;
	}
}

.static-bron .bron-cols .col {
	width: calc(50% - 40px);
}

.static-bron .bron-cols .col h2 {
	margin: 0 0 24px;
}

.static-bron .bron-cols .col p {
	margin: 0 0 24px;
}

.static-bron .bron-cols .col p a {
	color: #c42d96;
	text-decoration: underline;
}

.static-bron .bron-cols .col p a:hover {
	text-decoration: none;
}

.static-bron .bron-cols .col p strong a {
	color: inherit;
}

.static-bron .bron-cols .col p:last-child {
	margin: 0;
}

.static-bron .bron-cols .col:last-child a {
	text-decoration: none;
}

.static-servcentr .servcentr-first .box {
	background: #fff;
	box-shadow: 0 8px 32px rgba(43, 45, 51, 0.05);
	border-radius: 10px;
	overflow: hidden;
}

.static-servcentr .servcentr-first .box .col:first-child {
	padding: 50px 60px 64px;
}

.static-servcentr .servcentr-first .box .col:first-child h2 {
	margin: 0 0 24px;
}

.static-servcentr .servcentr-first .box .col:first-child h5 {
	font-weight: 400;
	margin: 0 0 40px;
}

.static-servcentr .servcentr-first .box .col:first-child h5 a {
	color: #c42d96;
	text-decoration: underline;
}

.static-servcentr .servcentr-first .box .col:first-child h5 a:hover {
	text-decoration: none;
}

.static-servcentr .servcentr-first .box .col:first-child .d-flex {
	margin: 0 0 24px;
	align-items: center;
}

.static-servcentr .servcentr-first .box .col:first-child .d-flex:last-child {
	margin: 0;
}

.static-servcentr .servcentr-first .box .col:first-child .d-flex p {
	margin: 0;
}

.static-servcentr .servcentr-first .box .col:first-child .d-flex img {
	margin-right: 20px;
	max-width: 22px;
	max-height: 26px;
	-o-object-fit: contain;
	object-fit: contain;
}

.static-servcentr .large-note {
	margin-top: 60px;
	color: #c42d96;
	font-weight: 500;
	font-size: 32px;
}

.static-servcentr .col:last-child {
	width: calc(50% - 40px);
}

.d-flex.j-between.flex-wrap {
	flex-wrap: wrap;
}

.col--3 {
	width: 100%!important;
	margin: 15px auto 0 auto;
}

.col--2 {
	width: calc(400px + (965 - 400) * ((100vw - 1024px) / (1920 - 1024)));
}

.col--1 {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#box3 .col {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#box3 .box3-img {
	margin-top: 35px;
}

@media (max-width: 1024px) {
	.col--2 {
		width: 100%!important;
		margin-top: 25px;
		margin-bottom: 25px;
	}

	.col--3 .bx-yandex-map,
	.col--3 .ymaps-map {
		width: 100%!important;
	}

	.col--3 {
		width: calc(100% + 35px)!important;
	}
}

.col--1 {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.static-servcentr #map {
	width: 100%;
	height: 400px;
	padding: 0;
	margin: 0;
	position: relative;
}

.static-postvsh .box {
	background: #fff;
	box-shadow: 0 8px 32px rgba(43, 45, 51, 0.05);
	border-radius: 10px;
	margin-bottom: 80px;
	padding: 60px 83px 55px 60px;
}

.static-postvsh .box h2 {
	margin: 0 0 24px;
	font-size: 32px;
}

.static-postvsh .box h5 {
	font-weight: 400;
	margin: 0;
	font-size: 22px;
}

@media screen and (max-width: 767px) {
	.static-postvsh .box h5 {
		font-size: 18px;
	}
}

.static-postvsh .d-flex .col {
	width: calc(50% - 40px);
}

.static-postvsh .d-flex .col:first-child strong {
	color: #c42d96;
}

.static-postvsh .d-flex .col:first-child a {
	color: #c42d96;
	text-decoration: underline;
}

.static-postvsh .d-flex .col:first-child a:hover {
	text-decoration: none;
}

.static-postvsh .d-flex .col:first-child h5 {
	margin: 0 0 24px;
	font-weight: 400;
}

.static-postvsh .d-flex .col:first-child h5:last-child {
	margin: 0;
}

.static-postvsh .d-flex .col:last-child {
	background: #fff;
	box-shadow: 0 8px 32px rgba(43, 45, 51, 0.05);
	border-radius: 10px;
	padding: 50px 60px 56px;
}

.static-postvsh .d-flex .col:last-child h2 {
	margin: 0 0 24px;
}

.static-postvsh .d-flex .col:last-child h5 {
	font-weight: 400;
	margin: 0;
}

.static-rekvizit .box {
	background: #fff;
	box-shadow: 0 8px 32px rgba(43, 45, 51, 0.05);
	border-radius: 10px;
	padding: 60px 60px 61px;
}

.static-rekvizit .box .col {
	width: 700px;
}

.static-rekvizit .box .col .d-flex {
	margin: 0 0 24px;
	align-items: flex-start;
}

.static-rekvizit .box .col .d-flex:last-child {
	margin: 0;
}

.static-rekvizit .box .col .d-flex p {
	margin: 0;
}

.static-rekvizit .box .col .d-flex img {
	margin-right: 20px;
	max-width: 26px;
	max-height: 26px;
	-o-object-fit: contain;
	object-fit: contain;
}

.static-rekvizit .box h5 {
	font-weight: 400;
	margin: 0;
}

.static-support .col {
	width: calc(50% - 40px);
}

.static-support .col:first-child {
	background: #fff;
	box-shadow: 0 8px 32px rgba(43, 45, 51, 0.05);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.static-support .col:first-child .inner {
	padding: 60px 60px 76px;
	width: 100%;
}

.static-support .col:first-child .inner h1 {
	font-size: 32px;
	font-weight: 500;
	margin: 0 0 24px;
}

.static-support .col:first-child .inner h5 {
	font-weight: 400;
	margin: 0;
	max-width: 535px;
}

.static-support .col:first-child img {
	width: 100%;
}

.static-support .col .box-viol {
	padding: 50px 60px 58px;
	margin-bottom: 40px;
	background: #fbf9ff;
	border-radius: 10px;
}

.static-support .col .box-viol:last-child {
	margin: 0;
}

.static-support .col .box-viol h2 {
	color: #5c3da5;
	margin: 0 0 14px;
	font-weight: 500;
}

.static-support .col .box-viol p {
	margin: 0 0 24px;
	max-width: 615px;
}

.static-support .col .box-viol h5 {
	font-weight: 400;
	margin: 0;
}

.static-support .col .box-viol h5 span {
	color: #5c3da5;
}

.static-support .col .box-viol h5 a:hover {
	text-decoration: underline;
}

.static-paymethod .viol {
	color: #5c3da5;
}

.static-paymethod .paymethod-first {
	margin-bottom: 130px;
}

.static-paymethod .paymethod-first .col {
	width: calc(50% - 40px);
}

.static-paymethod .paymethod-first .col .box-viol {
	background: #fbf9ff;
	border-radius: 10px;
	padding: 60px 60px 65px;
}

.static-paymethod .paymethod-first .col .box-viol h2 {
	margin: 0 0 14px;
	color: #5c3da5;
}

.static-paymethod .paymethod-first .col .box-viol .h5,
.static-paymethod .paymethod-first .col .box-viol h5 {
	font-weight: 400;
	margin: 0;
}

.static-paymethod .paymethod-first .col:first-child h2 {
	margin: 0 0 24px;
}

.static-paymethod .paymethod-first .col:first-child .h5,
.static-paymethod .paymethod-first .col:first-child h5 {
	margin: 0;
	font-weight: 400;
	max-width: 720px;
}

.static-paymethod .paymethod-nocash {
	margin-bottom: 130px;
}

.static-paymethod .paymethod-nocash .box {
	background: #fff;
	box-shadow: 0 8px 32px rgba(43, 45, 51, 0.05);
	border-radius: 10px;
	padding: 60px 60px 57px;
	margin-bottom: 80px;
}

.static-paymethod .paymethod-nocash .box .col:first-child {
	width: 533px;
	max-width: 50%;
}

.static-paymethod .paymethod-nocash .box .col:first-child h2 {
	margin: 0 0 14px;
	color: #5c3da5;
}

.static-paymethod .paymethod-nocash .box .col:first-child .h5,
.static-paymethod .paymethod-nocash .box .col:first-child h5 {
	font-weight: 400;
	margin: 0 0 24px;
}

.static-paymethod .paymethod-nocash .box .col:first-child p {
	margin: 0 0 24px;
}

.static-paymethod .paymethod-nocash .box .col:first-child .h6,
.static-paymethod .paymethod-nocash .box .col:first-child h6 {
	margin: 0;
	font-weight: 700;
	font-size: 18px;
}

@media screen and (max-width: 767px) {
	.static-paymethod .paymethod-nocash .box .col:first-child .h6,
	.static-paymethod .paymethod-nocash .box .col:first-child h6 {
		font-size: 16px;
	}
}

.static-paymethod .paymethod-nocash .box .col:last-child {
	width: 50%;
}

.static-paymethod .paymethod-nocash .box .col:last-child .list {
	position: relative;
	margin: 0;
	padding-left: 42px;
	list-style-type: none;
}

.static-paymethod .paymethod-nocash .box .col:last-child .list::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 4px;
	border-radius: 2px;
	background-color: #5c3da5;
}

.static-paymethod .paymethod-nocash .box .col:last-child .list li {
	position: relative;
	padding-left: 44px;
	font-size: 16px;
	color: #5c3da5;
	margin-bottom: 33px;
}

.static-paymethod .paymethod-nocash .box .col:last-child .list li:last-child {
	margin: 0;
}

.static-paymethod .paymethod-nocash .box .col:last-child .list li span {
	position: absolute;
	left: 0;
	top: -6px;
	font-size: 22px;
	font-weight: 700;
}

.static-paymethod .paymethod-nocash .second .col:first-child {
	width: calc(60% - 20px);
}

.static-paymethod .paymethod-nocash .second .col:first-child .quote {
	position: relative;
	padding-left: 43px;
	margin-bottom: 60px;
}

.static-paymethod .paymethod-nocash .second .col:first-child .quote::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 4px;
	border-radius: 2px;
	height: 100%;
	background-color: #5c3da5;
}

.static-paymethod .paymethod-nocash .second .col:first-child .quote .h5,
.static-paymethod .paymethod-nocash .second .col:first-child .quote h5 {
	margin: 0 0 24px;
	font-weight: 400;
}

.static-paymethod .paymethod-nocash .second .col:first-child .quote .h5:last-child,
.static-paymethod .paymethod-nocash .second .col:first-child .quote h5:last-child {
	margin: 0;
}

.static-paymethod .paymethod-nocash .second .col:last-child {
	width: calc(33% - 20px);
}

.static-paymethod .paymethod-nocash .second .col:last-child .box-rose {
	background: #fdedf8;
	border-radius: 10px;
	padding: 43px 43px 43px 40px;
}

.static-paymethod .paymethod-nocash .second .col:last-child .box-rose h4 {
	margin: 0 0 24px;
	color: #c42d96;
	display: flex;
	align-items: center;
}

.static-paymethod .paymethod-nocash .second .col:last-child .box-rose h4 img {
	vertical-align: middle;
	margin-right: 24px;
}

.static-paymethod .paymethod-nocash .second .col:last-child .box-rose p {
	font-size: 20px;
	line-height: 34px;
	color: #c42d96;
	margin: 0;
}

@media screen and (max-width: 1199px) {
	.static-paymethod .paymethod-nocash .second .col:last-child .box-rose p {
		line-height: 1.5;
	}
}

.static-paymethod .paymethod-nocash .second .col:last-child .box-rose p a {
	text-decoration: underline;
}

.static-paymethod .paymethod-nocash .second .col:last-child .box-rose p a:hover {
	text-decoration: none;
}

.static-paymethod .paymethod-phone .box-viol {
	text-align: center;
	background: #efeefe;
	border-radius: 10px;
	padding: 34px 30px 30px;
	color: #5c3da5;
	font-size: 22px;
}

.static-paymethod .paymethod-phone .box-viol a {
	font-size: 36px;
	font-weight: 500;
	display: block;
	margin-top: 6px;
}

.static-reviews .btn-wrap {
	text-align: center;
}

.static-reviews .btn-wrap .btn {
	width: 163px;
	font-size: 16px;
	border-radius: 8px;
}

.static-reviews .reviews-list .item {
	background: #efeefe;
	border-radius: 10px;
	margin-bottom: 80px;
	padding: 60px;
}

.static-reviews .reviews-list .item > .d-flex > .col:last-child {
	width: 520px;
	min-width: 520px;
	margin-left: 87px;
}

.static-reviews .reviews-list .item > .d-flex > .col:first-child {
	width: 100%;
}

.static-reviews .reviews-list .item > .d-flex > .col:first-child h4,
.static-reviews .reviews-list .item > .d-flex > .col:first-child h3 {
	margin: 0 0 24px;
	color: #5c3da5;
}

.static-reviews .reviews-list .item > .d-flex > .col:first-child p {
	margin: 0 0 52px;
}

.static-reviews .reviews-list .item > .d-flex > .col:first-child .h6 {
	margin: 0;
	position: relative;
	font-weight: 700;
	color: #5c3da5;
	padding-left: 40px;
}

.static-reviews .reviews-list .item > .d-flex > .col:first-child .h6::before {
	content: '“';
	display: block;
	position: absolute;
	font-weight: 500;
	font-size: 72px;
	line-height: 150%;
	left: 0;
	top: -40px;
}

.static-reviews .reviews-list .item:first-child .col:first-child .d-flex {
	align-items: flex-start;
}

.static-reviews .reviews-list .item:first-child .col:first-child .text {
	max-width: 474px;
}

.static-reviews .reviews-list .item:first-child .col:first-child .text p {
	margin: 0 0 24px;
}

.static-reviews .reviews-list .item:first-child .col:first-child img {
	width: 282px;
	height: 199px;
	-o-object-fit: cover;
	object-fit: cover;
	margin-right: 40px;
}

@media screen and (max-width: 1599px) {
	.static-obmen .delivery-specs .item.large img {
		max-width: 559px;
	}

	.static-obman .section-obman-promo .promo-wrap h2 {
		max-width: 700px;
		font-size: 30px;
	}

	.catalog-mega-menu .mm-main .categories-child > li.grid-sizer {
		width: 33.3333%;
	}
}

@media screen and (max-width: 1199px) {
	.main-static {
		padding-bottom: 90px;
	}

	.static-obmen .sec1 {
		justify-content: space-between;
		margin-bottom: 90px;
	}

	.static-obmen .sec1 .col:first-child,
	.static-obmen .sec1 .col:last-child {
		width: calc(50% - 20px);
		min-width: 0;
		margin: 0;
	}

	.static-obmen .box,
	.static-obmen .quote {
		margin-bottom: 90px;
	}

	.static-obmen .section-obmen-parts h2 {
		margin-bottom: 48px;
	}

	.static-obmen .delivery-specs .item.small .price {
		font-size: 42px;
	}

	.static-obmen .delivery-specs .item.small {
		min-height: 160px;
	}

	.static-obmen .delivery-specs .item.small .col p {
		font-size: 18px;
		line-height: 1.5;
	}

	.static-obmen .delivery-specs .item.small .price {
		width: 214px;
		min-width: 214px;
	}

	.static-obmen .delivery-specs .item.small .price svg {
		top: -53px;
		left: -218px;
	}

	.static-obmen .delivery-specs .item.full {
		margin-top: 40px;
		margin-bottom: 35px;
	}

	.static-obmen .delivery-specs,
	.static-obmen .delivery-specs .item.full p:first-child {
		margin-bottom: 90px;
	}

	.static-obmen .delivery-specs .item.full p {
		font-size: 16px;
		line-height: 1.5;
	}

	.static-obmen .delivery-specs .item.large {
		padding-left: 60px;
		padding-top: 50px;
	}

	.static-obmen .delivery-specs .item.large .d-date {
		margin-top: 100px;
	}

	.static-obmen .delivery-specs .item.large .d-date,
	.static-obmen .delivery-specs .item.large p:last-child {
		width: 50%;
		margin-left: auto;
		max-width: 388px;
	}

	.static-obmen .delivery-specs .item.large img {
		width: 445px;
		max-width: 50%;
		left: -15px;
	}

	.static-obmen .section-faq h2 {
		margin-bottom: 14px;
	}

	.static-obmen .section-faq .subtitle {
		margin-bottom: 50px;
		font-size: 18px;
	}

	.static-obmen {
		padding-bottom: 90px;
	}

	.static-obmen .delivery-specs .item.large .d-date .d-item {
		margin-right: 0;
	}

	.static-how-review .box {
		padding: 50px;
		position: relative;
	}

	.static-how-review .box img {
		position: absolute;
		right: 50px;
		top: 55px;
	}

	.static-how-review .box h1 {
		font-size: 30px;
		max-width: calc(100% - 329px);
	}

	.static-how-review .box p {
		font-size: 18px;
		width: 840px;
		max-width: 100%;
	}

	.static-how-review .section-two-col {
		margin-top: 111px;
	}

	.static-how-review .section-two-col .col .top-block {
		margin-bottom: 50px;
	}

	.static-how-review .section-two-col .col .quote {
		padding-left: 44px;
		padding-bottom: 30px;
	}

	.static-how-review .section-two-col .col:last-child .d-flex {
		flex-direction: column;
		padding-bottom: 25px;
	}

	.static-how-review .section-two-col .col:last-child .d-flex img {
		margin-left: 40px;
	}

	.static-how-review .section-two-col .col:last-child > p {
		font-size: 18px;
	}

	.static-how-review .section-two-col .col {
		width: calc(50% - 7.5px);
	}

	.static-obman .obman-first .d-flex:first-child {
		position: relative;
		margin-bottom: 90px;
	}

	.static-obman .obman-first .d-flex:first-child .col:first-child {
		width: 180px;
		min-width: 180px;
		margin-right: 40px;
		position: absolute;
		left: 0;
		top: 0;
	}

	.static-obman .obman-first .d-flex:first-child .col:first-child img {
		width: 180px;
		height: 180px;
		-o-object-fit: cover;
		object-fit: cover;
	}

	.static-obman .obman-first .d-flex:first-child .col:last-child h1 {
		padding-left: 220px;
		margin-bottom: 57px;
		padding-top: 12px;
	}

	.static-obman .obman-first .d-flex:last-child {
		justify-content: space-between;
		margin-bottom: 90px;
	}

	.static-obman .obman-first .d-flex:last-child .col:first-child,
	.static-obman .obman-first .d-flex:last-child .col:last-child {
		width: calc(50% - 10px);
		margin: 0;
	}

	.static-obman .obman-first .d-flex:last-child .col:first-child {
		padding-right: 90px;
	}

	.static-obman .section-reasons .reasons-list {
		margin-top: 60px;
	}

	.static-obman .section-reasons .reasons-list .item {
		margin-bottom: 60px;
	}

	.static-obman .section-obman-promo {
		margin-top: 90px;
	}

	.static-obman .section-obman-promo .promo-wrap h2 {
		font-size: 26px;
		max-width: 532px;
	}

	.static-obman .section-obman-promo .promo-wrap {
		overflow: hidden;
		padding: 40px;
	}

	.static-obman .section-obman-promo .promo-wrap img {
		right: -83px;
	}

	.static-obman {
		padding-bottom: 90px;
	}

	.static-bron .bron-first .box {
		padding: 50px;
	}

	.static-bron .bron-first .box h1 {
		font-size: 30px;
	}

	.static-bron .bron-deliv,
	.static-bron .bron-first {
		margin-bottom: 90px;
	}

	.static-bron .bron-deliv .box .col:first-child {
		padding: 40px 40px 48px 50px;
	}

	.static-bron .bron-deliv .box .col:last-child img {
		height: 100%;
		width: 100%;
		-o-object-fit: cover;
		object-fit: cover;
	}

	.static-bron .bron-deliv h5 {
		margin-top: 65px;
	}

	.static-bron .bron-cols .col {
		width: calc(50% - 20px);
	}

	.static-servcentr .box .col:first-child,
	.static-servcentr .col:last-child {
		width: calc(50% - 10px);
	}

	.static-servcentr .box .col:first-child {
		padding: 40px 40px 40px 50px;
	}

	.static-servcentr .large-note {
		font-size: 30px;
		margin-top: 50px;
	}

	.static-postvsh .box {
		padding: 50px;
		margin-bottom: 90px;
	}

	.static-postvsh .box h2 {
		font-size: 30px;
	}

	.static-postvsh .d-flex .col:last-child {
		padding: 50px 50px 30px;
	}

	.static-postvsh .d-flex .col {
		width: calc(50% - 20px);
	}

	.static-rekvizit .box {
		padding: 50px;
	}

	.static-rekvizit .box .col {
		width: 50%;
	}

	.support-first .d-flex {
		flex-direction: column;
	}

	.support-first .d-flex .col {
		width: 100%;
	}

	.support-first .d-flex .col:first-child {
		flex-direction: row;
		margin-bottom: 40px;
	}

	.static-support .col:first-child img {
		height: 320px;
		width: 50%;
	}

	.static-support .col .box-viol,
	.static-support .col:first-child .inner {
		padding: 50px;
	}

	.static-support .col:first-child .inner h1 {
		font-size: 30px;
	}

	.static-paymethod .paymethod-nocash .second .col:first-child .quote {
		margin-bottom: 40px;
	}

	.catalog-mega-menu .mm-main .categories-child > li.grid-sizer {
		width: 50%;
	}
}

@media screen and (max-width: 1023px) {
	.main-static {
		padding-bottom: 70px;
	}

	.static-obmen .sec1 {
		flex-direction: column;
		margin-bottom: 50px;
	}

	.static-obmen .sec1 .col:first-child,
	.static-obmen .sec1 .col:last-child {
		width: 100%;
	}

	.static-obmen .sec1 .col:first-child {
		height: 199px;
		margin-bottom: 40px;
	}

	.static-obmen .sec1 .col:last-child h1 {
		font-size: 28px;
		line-height: 1.5;
	}

	.static-obmen .sec1 .col:last-child p {
		font-size: 16px;
		line-height: 1.5;
	}

	.static-obmen .sec1 .col:last-child p:last-child {
		margin: 0;
	}

	.static-obmen .box {
		padding: 30px;
		margin-bottom: 50px;
	}

	.static-obmen .quote {
		margin-bottom: 50px;
		padding-top: 22px;
		padding-left: 34px;
		padding-right: 0;
		padding-bottom: 23px;
	}

	.static-obmen .delivery-specs,
	.static-obmen .delivery-specs .item.full p:first-child {
		margin-bottom: 50px;
	}

	.static-obmen .delivery-specs .item.small {
		width: 100%;
		margin-bottom: 30px;
	}

	.static-obmen .section-obmen-parts h2 {
		margin-bottom: 30px;
	}

	.static-obmen .delivery-specs .item.small {
		flex-direction: column;
		height: 228px;
		padding-top: 50px;
		padding-bottom: 30px;
	}

	.static-obmen .delivery-specs .item.small .col p {
		position: relative;
		z-index: 1;
		padding-left: 20px;
		font-size: 16px;
	}

	.static-obmen .delivery-specs .item.small .price svg {
		top: -88px;
	}

	.static-obmen .delivery-specs .item.full {
		margin-top: 0;
		margin-bottom: 50px;
	}

	.static-obmen .delivery-specs .item.large {
		padding: 30px 30px 332px;
	}

	.static-obmen .delivery-specs .item.large .d-date,
	.static-obmen .delivery-specs .item.large .d-date .d-item,
	.static-obmen .delivery-specs .item.large p:last-child {
		width: 100%;
	}

	.static-obmen .delivery-specs .item.large .d-date {
		margin: 30px 0;
	}

	.static-obmen .delivery-specs .item.large .d-date .d-item {
		margin: 0;
	}

	.static-obmen .delivery-specs .item.large .title {
		font-size: 26px;
		line-height: 1.5;
		margin-bottom: 15px;
	}

	.static-obmen .delivery-specs .item.large img {
		max-width: none;
		left: -25px;
		width: 115%;
	}

	.static-obmen .section-faq .subtitle {
		font-size: 16px;
		margin-bottom: 30px;
	}

	.faq .item .question {
		margin-bottom: 15px;
	}

	.faq .item {
		margin-bottom: 30px;
	}

	.static-obmen {
		padding-bottom: 70px;
	}

	.static-how-review .box {
		box-shadow: none;
		padding: 0;
	}

	.static-how-review .box img {
		position: static;
	}

	.static-how-review .box .d-flex {
		flex-direction: column;
	}

	.static-how-review .box .d-flex .col {
		width: 100%;
	}

	.static-how-review .box .d-flex .col h1 {
		width: 100%;
		max-width: none;
		font-size: 28px;
	}

	.static-how-review .box .d-flex .col p {
		font-size: 16px;
		margin-bottom: 30px;
	}

	.static-how-review .section-two-col {
		margin-top: 50px;
	}

	.static-how-review .section-two-col > .container > .d-flex {
		flex-direction: column;
	}

	.static-how-review .section-two-col > .container > .d-flex .col {
		width: 100%;
	}

	.static-how-review .section-two-col > .container > .d-flex .col:last-child {
		margin-top: 50px;
	}

	.static-how-review .section-two-col .col .top-block {
		padding-left: 140px;
		padding-right: 25px;
		height: 109px;
		background-size: 57%;
		margin-bottom: 30px;
	}

	.static-how-review .section-two-col .col .top-block p {
		font-size: 26px;
	}

	.static-how-review .section-two-col .col .top-block.rose img {
		width: 44px;
		height: 44px;
		top: 35px;
		left: 30px;
	}

	.static-how-review .section-two-col .col .quote {
		padding-left: 34px;
	}

	.static-how-review .section-two-col .col .top-block.viol img {
		width: 44px;
		height: 44px;
		top: 29px;
		left: 30px;
	}

	.static-how-review .section-two-col .col:last-child > p {
		font-size: 16px;
	}

	.static-how-review .section-two-col .col:last-child > p:nth-last-child(2) {
		margin-top: 30px !important;
	}

	.static-obman .obman-first .d-flex:first-child {
		flex-direction: column;
		margin-bottom: 70px;
	}

	.static-obman .obman-first .d-flex:first-child .col:first-child {
		position: static;
		margin-bottom: 20px;
		margin-right: 0;
	}

	.static-obman .obman-first .d-flex:first-child .col:last-child h1 {
		padding: 0;
		font-size: 28px;
		margin-bottom: 24px;
	}

	.static-obman .obman-first .d-flex:last-child {
		flex-direction: column;
		margin-bottom: 70px;
	}

	.static-obman .obman-first .d-flex:last-child .col:first-child,
	.static-obman .obman-first .d-flex:last-child .col:last-child {
		width: 100%;
		padding: 0;
	}

	.static-obman .obman-first .d-flex:last-child .col:first-child h2,
	.static-obman .section-reasons h2 {
		margin-bottom: 15px;
	}

	.static-obman .obman-first .d-flex:last-child .col:last-child {
		margin-top: 30px;
	}

	.static-obman .section-reasons .reasons-list {
		margin-top: 30px;
	}

	.static-obman .section-reasons .reasons-list .item {
		margin-bottom: 30px;
	}

	.static-obman .section-reasons .reasons-list .item .title {
		line-height: 1.5;
		font-size: 18px;
	}

	.static-obman .section-reasons .reasons-list .item p img {
		margin-top: 6px;
		margin-bottom: 10px;
		height: 195px;
		-o-object-fit: cover;
		object-fit: cover;
	}

	.static-obman .section-reasons .reasons-list .item .title span {
		font-size: 52px;
		margin-right: 15px;
	}

	.static-obman .section-obman-promo .promo-wrap {
		padding: 30px 30px 242px;
		text-align: center;
	}

	.static-obman .section-obman-promo .promo-wrap img {
		bottom: -63px;
		max-width: none;
		width: 415px;
		left: 50%;
		right: auto;
		transform: translateX(-59%);
	}

	.static-obman .section-obman-promo .promo-wrap h2 {
		font-size: 22px;
		margin: 0 auto 30px;
	}

	.static-obman {
		padding-bottom: 70px;
	}

	.static-bron .bron-first .box {
		padding: 0;
		box-shadow: none;
	}

	.static-bron .bron-first .box h1 {
		font-size: 28px;
	}

	.static-bron .bron-first .box h5 {
		font-size: 16px;
	}

	.static-bron .bron-deliv,
	.static-bron .bron-first {
		margin-bottom: 70px;
	}

	.static-bron .bron-deliv .box {
		box-shadow: none;
		border-radius: 0;
	}

	.static-bron .bron-deliv .box > .d-flex {
		flex-direction: column;
	}

	.static-bron .bron-deliv .box .col:first-child {
		padding: 0 0 20px;
	}

	.static-bron .bron-deliv .box .col:last-child img {
		height: 195px;
	}

	.static-bron .bron-deliv h5 {
		margin-top: 30px;
	}

	.static-bron .bron-cols .d-flex {
		flex-direction: column;
	}

	.static-bron .bron-cols .col {
		width: 100%;
	}

	.static-bron .bron-cols .col:last-child {
		margin-top: 50px;
	}

	.static-bron .bron-deliv h5 {
		font-size: 16px;
	}

	.static-bron .bron-cols .col h2 {
		margin-bottom: 15px;
	}

	.static-servcentr .box > .d-flex {
		flex-direction: column;
	}

	.static-servcentr .servcentr-first .box {
		box-shadow: none;
		border-radius: 0;
	}

	.static-servcentr .box .col:first-child,
	.static-servcentr .col:last-child,
	.static-servcentr .servcentr-first .box .col:first-child {
		width: 100%;
		padding: 0;
	}

	.static-servcentr #map {
		height: 280px;
		margin-top: 40px;
	}

	.static-servcentr .large-note {
		text-align: center;
		font-size: 26px;
		max-width: 315px;
		margin-right: auto;
		margin-left: auto;
	}

	.static-postvsh .box {
		padding: 0;
		box-shadow: none;
		margin-bottom: 70px;
	}

	.static-postvsh .box h2 {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.static-postvsh .box h5 {
		font-size: 18px;
	}

	.static-postvsh .postvsh-first .d-flex {
		flex-direction: column;
	}

	.static-postvsh .postvsh-first .d-flex .col {
		width: 100%;
	}

	.static-postvsh .postvsh-first .d-flex .col:last-child {
		padding: 0;
		box-shadow: none;
		margin-top: 70px;
	}

	.static-postvsh .postvsh-first .d-flex .col:last-child h2 {
		margin-top: 0;
		margin-bottom: 15px;
	}

	.static-rekvizit .box {
		padding: 0;
		box-shadow: none;
	}

	.rekvizit-first .box > .d-flex {
		flex-direction: column;
	}

	.static-rekvizit .box .col {
		width: 100%;
	}

	.static-rekvizit .box .col:last-child {
		margin-top: 50px;
	}

	.static-rekvizit .box .col .d-flex {
		align-items: flex-start;
	}

	.support-first .d-flex .col:first-child {
		box-shadow: none;
		flex-direction: column;
		margin-bottom: 30px;
	}

	.support-first .d-flex .col:first-child .inner {
		padding: 0;
	}

	.support-first .d-flex .col:first-child img {
		width: calc(100% + 30px);
		height: auto;
		margin-top: 30px;
		margin-left: -15px;
		max-width: none;
	}

	.static-support .col:first-child .inner h1 {
		font-size: 28px;
	}

	.static-support .col .box-viol {
		padding: 30px;
		margin-bottom: 30px;
	}

	.static-support .col:first-child .inner h5 {
		font-size: 16px;
	}

	.static-support a {
		display: inline-block;
	}
}

.static-smi .smi-first .box {
	background: #fff;
	box-shadow: 0 8px 32px rgba(43, 45, 51, 0.05);
	border-radius: 10px;
	margin-bottom: 80px;
}

.static-smi .smi-first .box .col {
	width: 50%;
	height: 420px;
}

.static-smi .smi-first .box .col:last-child {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 40px;
	padding-right: 60px;
}

.static-smi .smi-first .box .col:last-child h1 {
	margin: 0 0 24px;
}

.static-smi .smi-first .box .col:last-child h5 {
	font-weight: 400;
	margin: 0 0 24px;
}

.static-smi .smi-first .box .col:last-child h5:last-child {
	margin: 0;
}

.static-smi .smi-first .box .col:first-child {
	display: flex;
	justify-content: center;
	align-items: flex-end;
}

.static-smi .smi-first .box .col:first-child img {
	width: 348px;
	height: 375px;
	-o-object-fit: contain;
	object-fit: contain;
}

.static-smi .news-list .item {
	align-items: center;
	justify-content: space-between;
	margin-bottom: 80px;
}

.static-smi .news-list .item .col {
	width: calc(50% - 40px);
}

.static-smi .news-list .item .col .video-container {
	padding: 0;
	height: 405px;
}

@media screen and (max-width: 1199px) {
	.static-smi .news-list .item .col .video-container {
		height: 273px;
	}
}

@media screen and (max-width: 1023px) {
	.static-smi .news-list .item .col .video-container {
		height: 195px;
	}
}

.static-smi .news-list .item:last-child {
	margin-bottom: 0;
}

.static-smi .news-list .item:nth-child(even) {
	flex-direction: row-reverse;
}

.static-smi .news-list .item h4 {
	margin: 0 0 24px;
	max-width: 100%;
	width: 700px;
}

.static-smi .news-list .item p {
	margin: 0 0 24px;
	max-width: 100%;
	width: 700px;
}

.static-smi .news-list .item p:last-child {
	margin: 0;
}

.static-smi .news-list .item p a {
	color: #c42d96;
	text-decoration: underline;
}

.static-smi .news-list .item p a:hover {
	text-decoration: none;
}

.static-smi .smi-vklad {
	margin-top: 130px;
}

.static-smi .smi-vklad .box {
	padding: 60px;
	background: #fff;
	box-shadow: 0 8px 32px rgba(43, 45, 51, 0.05);
	border-radius: 10px;
}

.static-smi .smi-vklad .box .col {
	width: calc(50% - 40px);
}

.static-smi .smi-vklad .box .col h2 {
	margin: 0 0 24px;
	width: 315px;
	max-width: 100%;
}

.static-smi .smi-vklad .box .col h5 {
	margin: 0;
	font-weight: 400;
	width: 533px;
	max-width: 100%;
}

.static-smi .smi-vklad .box .col h6 {
	font-weight: 700;
	margin: 24px 0 0;
}

.static-smi .smi-vklad .box .col h6:first-child {
	margin-top: 0;
}

.static-smi .smi-vklad .box .col h6 a {
	color: #c42d96;
	text-decoration: underline;
}

.static-smi .smi-vklad .box .col h6 a:hover {
	text-decoration: none;
}

.static-smi .smi-vklad .box .col:last-child {
	position: relative;
}

.static-smi .smi-vklad .box .col:last-child::before {
	content: '';
	display: block;
	position: absolute;
	width: 4px;
	height: 100%;
	border-radius: 2px;
	left: -42px;
	top: 0;
	background-color: #c42d96;
}

.static-smi .smi-book {
	margin-top: 275px;
}

.static-smi .smi-book .box {
	position: relative;
	padding: 60px;
	background: #fff;
	box-shadow: 0 8px 32px rgba(43, 45, 51, 0.05);
	border-radius: 10px;
}

.static-smi .smi-book .box h2 {
	margin: 0 0 24px;
	max-width: 100%;
	width: 700px;
}

.static-smi .smi-book .box h5 {
	font-weight: 400;
	margin: 0;
	max-width: 100%;
	width: 700px;
}

.static-smi .smi-book .box img {
	position: absolute;
	right: 0;
	bottom: 20px;
	width: 436px;
	height: 380px;
	-o-object-fit: contain;
	object-fit: contain;
}

.static-pickup .servcentr-first .box .col:first-child h2 {
	margin: 0 0 44px;
}

.static-pickup .servcentr-first .box .col:first-child h5 {
	margin: 50px 0 0;
}

.static-pickup .servcentr-first .box .col:first-child h5 a {
	text-decoration: underline;
}

.static-pickup .servcentr-first .box .col:first-child h5 a:hover {
	text-decoration: none;
}

.static-pickup .alert-block .box {
	position: relative;
	background: #fff;
	box-shadow: 0 8px 32px rgba(43, 45, 51, 0.05);
	border-radius: 10px;
	margin: 130px 0;
	padding: 30px 60px 40px 207px;
	background-image: url("Polygon_rose.svg");
	background-repeat: no-repeat;
}

.static-pickup .alert-block .box:before {
	content: '';
	display: block;
	position: absolute;
	width: 60px;
	height: 53px;
	background-image: url("alert-rose.svg");
	background-repeat: no-repeat;
	background-position: center;
	top: 73px;
	left: 37px;
}

.static-pickup .alert-block .box h2 {
	margin: 0 0 14px;
	font-size: 32px;
	color: #c42d96;
}

.static-pickup .alert-block .box h5 {
	margin: 0;
	font-weight: 400;
}

.static-pickup .alert-block .box .btn {
	width: 144px;
	border-radius: 8px;
	font-size: 16px;
}

.static-pickup .question-list .qnav {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	list-style-type: none;
	padding: 0;
	margin: 0 0 80px;
}

.static-pickup .question-list .qnav li {
	width: 20%;
	text-align: center;
}

.static-pickup .question-list .qnav li a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-weight: 500;
	font-size: 26px;
	color: #5c3da5;
}

.static-pickup .question-list .qnav li a .icon {
	background: #fff;
	box-shadow: 0 8px 32px rgba(43, 45, 51, 0.08);
	border-radius: 10px;
	width: 65px;
	height: 65px;
	margin-bottom: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.static-pickup .question-list .qnav li a:hover {
	color: #c42d96;
	text-decoration: underline;
}

.static-pickup .question-list .qnav li a:hover path {
	fill: #c42d96;
}

.static-pickup .question-list .box {
	background: #fff;
	box-shadow: 0 8px 32px rgba(43, 45, 51, 0.05);
	border-radius: 10px;
	margin-bottom: 80px;
}

.static-pickup .question-list .box#box1 {
	padding: 60px;
}

.static-pickup .question-list .box#box1 h2 {
	margin: 0 0 30px;
}

.static-pickup .question-list .box#box1 ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	font-size: 16px;
}

.static-pickup .question-list .box#box1 ul > li {
	margin-bottom: 24px;
}

.static-pickup .question-list .box#box1 ul > li:last-child {
	margin-bottom: 0;
}

.static-pickup .question-list .box#box1 ul > li span {
	color: #5c3da5;
	font-size: 22px;
	font-weight: 700;
	display: inline-block;
	width: 34px;
}

.static-pickup .question-list .box#box1 ul > li ul {
	margin-top: 14px;
	padding-left: 34px;
}

.static-pickup .question-list .box#box1 ul > li ul li {
	margin: 0;
}

.static-pickup .question-list .box#box1 ul > li ul li span {
	font-size: 18px;
	width: 40px;
}

.static-pickup .question-list .box#box2 {
	padding: 60px;
}

.static-pickup .question-list .box#box2 h2 {
	margin: 0 0 24px;
}

.static-pickup .question-list .box#box2 .col {
	width: calc(50% - 34px);
}

.static-pickup .question-list .box#box2 .col h5 {
	margin: 0 0 24px;
	font-weight: 400;
	position: relative;
	padding-left: 46px;
	width: 383px;
}

.static-pickup .question-list .box#box2 .col h5 img {
	position: absolute;
	left: 0;
	top: 6px;
	width: 26px;
	height: 19px;
	-o-object-fit: contain;
	object-fit: contain;
}

.static-pickup .question-list .box#box2 .col p {
	margin: 0 0 24px;
}

.static-pickup .question-list .box#box2 .col h6 {
	margin: 0 0 26px;
}

.static-pickup .question-list .box#box2 .col ul {
	list-style-type: none;
	margin: 0;
	padding: 0 0 0 37px;
}

.static-pickup .question-list .box#box2 .col ul li {
	margin: 0 0 24px;
}

.static-pickup .question-list .box#box2 .col .video-container {
	padding: 0;
	height: 256px;
}

@media screen and (max-width: 1199px) {
	.static-pickup .question-list .box#box2 .col .video-container {
		height: 225px;
	}
}

@media screen and (max-width: 767px) {
	.static-pickup .question-list .box#box2 .col .video-container {
		height: 184px;
	}
}

.static-pickup .question-list .box#box3 {
	padding: 60px;
}

.static-pickup .question-list .box#box3 .video-container {
	padding: 0;
	height: 256px;
}

@media screen and (max-width: 1199px) {
	.static-pickup .question-list .box#box3 .video-container {
		height: 225px;
	}
}

@media screen and (max-width: 767px) {
	.static-pickup .question-list .box#box3 .video-container {
		height: 184px;
	}

	.catalog-mega-menu .mm-main .categories-child > li.grid-sizer {
		width: 100%;
	}
}

.static-pickup .question-list .box#box3 .col {
	width: 50%;
}

.static-pickup .question-list .box#box3 .col h2 {
	margin: 0 0 24px;
}

.static-pickup .question-list .box#box3 .col h5 {
	margin: 0;
	font-weight: 400;
}

.static-pickup .question-list .box#box4 {
	padding: 60px;
	box-shadow: none;
	background: #f8f8f8;
}

.static-pickup .question-list .box#box4 .col {
	width: calc(50% - 60px);
}

.static-pickup .question-list .box#box4 .col:last-child {
	position: relative;
}

.static-pickup .question-list .box#box4 .col:last-child:before {
	content: '';
	display: block;
	width: 4px;
	height: 100%;
	border-radius: 2px;
	position: absolute;
	left: -62px;
	top: 0;
	background-color: #c42d96;
}

.static-pickup .question-list .box#box4 .col h2 {
	color: #c42d96;
	margin: 0 0 24px;
}

.static-pickup .question-list .box#box4 .col h5 {
	font-weight: 400;
	margin: 0 0 24px;
}

.static-pickup .question-list .box#box4 .col h5:last-child {
	margin: 0;
}

.static-pickup .question-list .box#box4 .col p {
	margin: 0 0 24px;
}

.static-pickup .question-list .box#box4 .col p:last-child {
	margin: 0;
}

.static-pickup .question-list .box#box4 .col p a {
	color: #c42d96;
	text-decoration: underline;
}

.static-pickup .question-list .box#box4 .col p a:hover {
	text-decoration: none;
}

.static-pickup .question-list #box5 {
	margin: 130px 0;
}

.static-pickup .question-list #box5 .col {
	width: 50%;
}

.static-pickup .question-list #box5 .col:last-child {
	max-width: 630px;
}

.static-pickup .question-list #box5 .col:first-child {
	padding-right: 60px;
}

.static-pickup .question-list #box5 .col h2,
.static-pickup .question-list #box5 .col h5,
.static-pickup .question-list #box5 .col p {
	margin: 0 0 24px;
}

.static-pickup .question-list #box5 .col h5 {
	font-weight: 400;
	margin: 0;
}

.static-pickup .question-list #box5 .col p {
	max-width: 100%;
	width: 630px;
}

.static-pickup .question-list #box5 .col h6 {
	font-weight: 700;
	margin: 24px 0 0;
}

.static-pickup .question-list #box5 .col .video-container {
	padding: 0;
	height: 300px;
}

@media screen and (max-width: 1199px) {
	.static-pickup .question-list #box5 .col .video-container {
		height: 230px;
	}
}

@media screen and (max-width: 1023px) {
	.static-pickup .question-list #box5 .col .video-container {
		height: 165px;
	}
}

.static-pickup .question-list .box-rev {
	background: #efeefe;
	border-radius: 10px;
	padding: 60px;
}

.static-pickup .question-list .box-rev .col:first-child {
	width: 100%;
}

.static-pickup .question-list .box-rev .col:last-child {
	width: 520px;
	min-width: 520px;
	margin-left: 87px;
}

.static-pickup .question-list .box-rev h2 {
	margin: 0 0 24px;
}

.static-pickup .question-list .box-rev .col:first-child img {
	width: 282px;
	height: 199px;
	-o-object-fit: cover;
	object-fit: cover;
	margin-right: 40px;
}

.static-pickup .question-list .box-rev .col:first-child .text {
	max-width: 474px;
}

.static-pickup .question-list .box-rev .col:first-child .text p {
	margin: 0 0 24px;
}

.static-pickup .question-list .box-rev .col:first-child .text p:last-child {
	margin: 0;
}

.static-pickup .question-list .box-rev .video-container {
	padding: 0;
	height: 300px;
}

.static-blog .sidebar {
	width: 319px;
	margin-right: 80px;
	min-width: 319px;
}

.static-blog .sidebar .blog-nav {
	background: #f8f8f8;
	border-radius: 8px;
	padding: 30px 30px 25px;
	margin-bottom: 34px;
}

.static-blog .sidebar .blog-nav .title {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 14px;
}

.static-blog .sidebar .blog-nav ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.static-blog .sidebar .blog-nav ul li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 16px;
	line-height: 42px;
	letter-spacing: 0.05em;
}

.static-blog .sidebar .blog-nav ul li.hidden {
	display: none;
}

.static-blog .sidebar .blog-nav ul li a:hover {
	color: #c42d96;
}

.static-blog .sidebar .blog-nav ul li.active:after {
	content: '';
	display: block;
	width: 14px;
	height: 14px;
	background-image: url("ArrowRight.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.static-blog .sidebar .blog-nav ul li.active a {
	color: #c42d96;
}

.static-blog .content {
	width: 100%;
}

.static-blog .posts-container {
	margin-bottom: 80px;
}

.static-blog .posts-container .post-item {
	background: #fff;
	box-shadow: 0 8px 32px rgba(43, 45, 51, 0.05);
	border-radius: 10px;
	margin-bottom: 40px;
	padding: 60px;
}

.static-blog .posts-container .post-item .inner .thumb {
	width: 560px;
	min-width: 560px;
	height: 315px;
	margin-right: 51px;
	border-radius: 10px;
	overflow: hidden;
}

.static-blog .posts-container .post-item .inner .thumb img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.static-blog .posts-container .post-item .inner .col {
	width: 100%;
}

.static-blog .posts-container .post-item .inner .col > .d-flex {
	margin-bottom: 21px;
}

.static-blog .posts-container .post-item .inner .col .date {
	font-size: 16px;
	color: #6f6f6f;
}

.static-blog .posts-container .post-item .inner .col .category .item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	border-radius: 15px;
	font-weight: 500;
	padding: 0 30px;
	height: 30px;
	color: #fff;
	background-color: #c42d96;
}

.static-blog .posts-container .post-item .inner .col .post-title {
	margin: 0 0 24px;
}

.static-blog .posts-container .post-item .inner .col .post-title a:hover {
	color: #c42d96;
}

.static-blog .posts-container .post-item .inner .col .excerpt {
	margin: 0;
}

.single-post .date {
	font-size: 16px;
	margin-bottom: 14px;
	color: #6f6f6f;
}

.single-post .post-title {
	margin: 0 0 34px;
}

.single-post .col:first-child {
	width: 560px;
	min-width: 560px;
	margin-right: 60px;
}

.single-post .col:first-child .video-container {
	border-radius: 10px;
	overflow: hidden;
}

.single-post .col:last-child {
	width: 100%;
}

.single-post .col:last-child h5 {
	margin: 0 0 24px;
	font-weight: 400;
}

.single-post .col:last-child p {
	margin: 0 0 24px;
}

.single-post .col:last-child a {
	color: #c42d96;
	text-decoration: underline;
}

.single-post .col:last-child a:hover {
	text-decoration: none;
}

.single-post .col:last-child .social {
	margin-top: 64px;
}

.single-post .col:last-child .social .label {
	margin-bottom: 18px;
	font-size: 16px;
}

.single-post .col:last-child .social a {
	margin-right: 10px;
	font-size: 0;
}

.single-post .col:last-child .social a:hover path {
	fill: #c42d96;
}

.table-wrap {
	overflow-y: auto;
}

.table-wrap table {
	width: 100%;
	min-width: 600px;
	border-collapse: collapse;
}

.table-wrap table thead th {
	text-align: left;
	padding: 0 30px 18px;
	font-size: 26px;
	font-weight: 500;
	position: relative;
}

.table-wrap table thead th::after {
	content: '';
	display: block;
	width: 100%;
	height: 10px;
	background: #efeefe;
	position: absolute;
	left: 0;
	bottom: 0;
}

.table-wrap table thead th:first-child::after {
	border-radius: 10px 0 0 10px;
}

.table-wrap table thead th:last-child::after {
	border-radius: 0 10px 10px 0;
}

.table-wrap table tr td {
	padding: 16px 30px;
	font-size: 16px;
	border-bottom: 2px solid #efeefe;
}

.table-wrap table tr td:first-child {
	width: 46%;
	font-weight: 700;
	font-size: 18px;
}

.static-delivery .rose {
	color: #c42d96;
}

.static-delivery .viol {
	color: #5c3da5;
}

.static-delivery .delivery-first .rose {
	font-size: 32px;
	margin: 0 0 90px;
	font-weight: 500;
}

.static-delivery .delivery-first .container > .d-flex .col:first-child {
	width: 585px;
	height: 510px;
	min-width: 585px;
	margin-right: 144px;
}

.static-delivery .delivery-first .container > .d-flex .col:first-child img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.static-delivery .delivery-first .container > .d-flex .col:first-child img:last-of-type {
	display: none;
}

.static-delivery .delivery-first .container > .d-flex .col:last-child > * {
	margin: 0 0 24px;
}

.static-delivery .delivery-first .container > .d-flex .col:last-child h2 {
	font-size: 32px;
}

.static-delivery .delivery-first .container > .d-flex .col:last-child .h5,
.static-delivery .delivery-first .container > .d-flex .col:last-child h5 {
	font-weight: 400;
}

.static-delivery .delivery-first .box {
	background: #fff;
	box-shadow: 0 8px 32px rgba(43, 45, 51, 0.05);
	border-radius: 10px;
	padding: 60px;
}

.static-delivery .delivery-first .box .d-flex:first-child .col:first-child {
	width: 794px;
}

.static-delivery .delivery-first .box .d-flex:first-child .col:first-child h2 {
	margin: 0 0 40px;
}

.static-delivery .delivery-first .box .d-flex:first-child .col:first-child h6 {
	margin: 0;
	font-weight: 700;
	font-size: 18px;
}

@media screen and (max-width: 1199px) {
	.static-delivery .delivery-first .box .d-flex:first-child .col:first-child h6 br {
		display: none;
	}
}

.static-delivery .delivery-first .box .d-flex:first-child .col:first-child p {
	margin: 0 0 24px;
	width: 500px;
	max-width: 100%;
}

.static-delivery .delivery-first .box .d-flex:first-child .col:first-child p:last-child {
	margin: 0;
}

.static-delivery .delivery-first .box .d-flex:first-child .col:last-child {
	width: 395px;
	margin-left: 168px;
}

.static-delivery .delivery-first .box .d-flex:first-child .col:last-child h6 {
	margin: 0;
	font-weight: 700;
	font-size: 18px;
}

.static-delivery .delivery-first .box .d-flex:first-child .col:last-child p {
	margin: 0 0 24px;
}

.static-delivery .delivery-first .box .d-flex:first-child .col:last-child p:last-child {
	margin: 0;
}

.static-delivery .delivery-first .box .d-flex:last-child {
	flex-wrap: wrap;
}

.static-delivery .delivery-first .box .d-flex:last-child::before {
	content: '';
	display: block;
	width: 100%;
	height: 3px;
	background-color: #5c3da5;
	border-radius: 2px;
	margin-top: 60px;
	margin-bottom: 60px;
}

.static-delivery .delivery-first .box .d-flex:last-child .col:first-child {
	width: 533px;
}

.static-delivery .delivery-first .box .d-flex:last-child .col:first-child h4 {
	margin: 0 0 24px;
}

.static-delivery .delivery-first .box .d-flex:last-child .col:last-child {
	width: calc(100% - 533px);
}

.static-delivery .delivery-first .box .d-flex:last-child .col:last-child h6 {
	margin: 0 0 24px;
	font-weight: 700;
	font-size: 18px;
}

.static-delivery .delivery-first .box .d-flex:last-child .col:last-child p {
	margin: 0;
}

.static-delivery .deliv-table {
	margin-top: 130px;
}

.static-delivery .deliv-list {
	margin-top: 130px;
}

.static-delivery .deliv-list h2 {
	margin: 0 0 64px;
}

.static-delivery .deliv-list h5 {
	font-weight: 400;
	margin: 0 0 24px;
}

.static-delivery .deliv-list ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	-moz-columns: 4;
	columns: 4;
	-moz-column-gap: 50px;
	column-gap: 50px;
}

.static-delivery .deliv-list ul li {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 18px;
}

.static-delivery .deliv-list ul li::first-letter {
	color: #c42d96;
}

.static-delivery .deliv-notes {
	margin-top: 130px;
}

.static-delivery .deliv-notes .box {
	margin-bottom: 130px;
	background: #fff;
	box-shadow: 0 8px 32px rgba(43, 45, 51, 0.05);
	border-radius: 10px;
	padding: 60px;
}

.static-delivery .deliv-notes .box h2 {
	font-size: 32px;
	margin: 0 0 24px;
}

.static-delivery .deliv-notes .box .h5,
.static-delivery .deliv-notes .box h5 {
	font-weight: 400;
	margin: 0 0 11px;
}

.static-delivery .deliv-notes .box p {
	margin: 0 0 24px;
}

.static-delivery .deliv-notes .box p:last-child {
	margin: 0;
}

.static-delivery .deliv-notes .box.polygon {
	background-image: url("static-Polygon.svg");
	background-repeat: no-repeat;
	background-position: 0 0;
}

.static-delivery .deliv-notes .box .btn {
	color: #fff;
	font-size: 16px;
	border-radius: 8px;
}

.static-delivery .deliv-notes .box .btn:hover {
	color: #c42d96;
}

.static-delivery .deliv-notes .infograph {
	text-align: center;
	margin-bottom: 130px;
}

.static-delivery .deliv-notes .infograph h2 {
	margin: 0 0 68px;
}

.static-delivery .deliv-notes .infograph img {
	width: 742px;
}

.static-delivery .deliv-notes .del-serv .col:last-child {
	width: 629px;
}

.static-delivery .deliv-notes .del-serv .col:last-child .video-container {
	padding: 0;
	height: 300px;
}

.static-delivery .deliv-notes .del-serv .col:first-child {
	width: 740px;
	margin-right: 61px;
}

.static-delivery .deliv-notes .del-serv .col:first-child h4,
.static-delivery .deliv-notes .del-serv .col:first-child p {
	margin: 0 0 24px;
}

.static-delivery .deliv-notes .del-serv .col:first-child h5 {
	font-weight: 400;
	margin: 0;
}

.static-delivery .deliv-notes .del-serv .col:first-child h5 a {
	font-weight: 700;
	color: #c42d96;
}

.static-delivery .deliv-notes .del-serv .col:first-child h5 a:hover {
	text-decoration: underline;
}

.static-warranty .warranty-first .i-title {
	display: flex;
	align-items: center;
	margin-bottom: 22px;
	margin-top: 80px;
}

.static-warranty .warranty-first .i-title:nth-child(2) {
	margin-top: 0;
}

.static-warranty .warranty-first .i-title img {
	margin-right: 30px;
	width: 70px;
	height: 70px;
	-o-object-fit: contain;
	object-fit: contain;
}

.static-warranty .warranty-first .i-title h4 {
	margin: 0;
	color: #c42d96;
}

.static-warranty .warranty-first .h5,
.static-warranty .warranty-first h5 {
	font-weight: 400;
	margin: 0;
}

.static-warranty .warranty-first .box.rose {
	background: #fdedf8;
	border-radius: 10px;
	padding: 40px 40px 45px;
	color: #c42d96;
	margin-top: 40px;
}

.static-warranty .warranty-first .box.rose h5,
.static-warranty .warranty-first .box.rose p {
	margin: 0 0 24px;
}

.static-warranty .warranty-first .box.rose h5:last-child,
.static-warranty .warranty-first .box.rose p:last-child {
	margin: 0;
}

.static-warranty .warranty-first .box.rose h5 {
	font-weight: 500;
}

.static-warranty .warranty-faq {
	margin-top: 150px;
}

.static-warranty .warranty-faq h2 {
	margin: 0 0 44px;
}

.static-warranty .warranty-faq .faq-list .item {
	margin-bottom: 40px;
}

.static-warranty .warranty-faq .faq-list .item .question {
	background: #fdedf8;
	height: 65px;
	padding: 0 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #c42d96;
	font-size: 22px;
	cursor: pointer;
}

.static-warranty .warranty-faq .faq-list .item .question::after {
	content: '';
	display: block;
	width: 22px;
	min-width: 22px;
	height: 22px;
	margin-left: 10px;
	background-image: url("CaretDownRose.svg");
	background-repeat: no-repeat;
	background-position: center;
}

.static-warranty .warranty-faq .faq-list .item .question.open::after {
	transform: rotate(180deg);
}

.static-warranty .warranty-faq .faq-list .item .answer {
	display: none;
	padding-top: 20px;
}

.static-warranty .warranty-faq .faq-list .item .answer .inner {
	border-left: 4px solid #fdedf8;
	padding: 30px 26px;
}

@media screen and (max-width: 1199px) {
	.static-warranty .warranty-faq .faq-list .item .answer .inner {
		padding: 20px 26px;
	}
}

.static-warranty .warranty-faq .faq-list .item .answer .inner > * {
	margin: 0 0 24px;
}

.static-warranty .warranty-faq .faq-list .item .answer .inner > :last-child {
	margin: 0;
}

.static-warranty .warranty-faq .faq-list .item .answer .inner a {
	color: #c42d96;
	text-decoration: underline;
}

.static-warranty .warranty-faq .faq-list .item .answer .inner .inner-item {
	margin-bottom: 64px;
}

.static-warranty .warranty-faq .faq-list .item .answer .inner .inner-item p {
	margin: 0 0 24px;
}

.static-warranty .warranty-faq .faq-list .item .answer .inner .inner-item:last-child {
	margin-bottom: 0;
}

.static-warranty .warranty-faq .faq-list .item .answer .inner P {
	margin: 0 0 24px;
}

.static-warranty .warranty-faq .faq-list .item .answer .inner P:last-child {
	margin: 0;
}

.static-warranty .warranty-faq .faq-list .item .answer .inner .rev-box {
	background: #efeefe;
	border-radius: 10px;
	padding: 40px;
}

.static-warranty .warranty-faq .faq-list .item .answer .inner .rev-box .name {
	font-weight: 500;
	font-size: 22px;
	margin-bottom: 17px;
}

.static-warranty .warranty-faq .faq-list .item .answer .inner .rev-box .rating-wrap {
	margin-bottom: 12px;
	font-size: 18px;
}

.static-warranty .warranty-faq .faq-list .item .answer .inner .rev-box .rating-wrap .star-ratings {
	margin-right: 16px;
	margin-left: -3px;
}

.static-warranty .warranty-faq .faq-list .item .answer .inner .rev-box .rating-wrap .star-ratings .icon-star {
	margin-right: 3px;
	margin-left: 3px;
}

.static-warranty .warranty-faq .faq-list .item .answer .inner .rev-box .buy-type {
	font-size: 18px;
}

.static-warranty .warranty-faq .faq-list .item .answer .inner .rev-box .buy-type strong {
	font-weight: 500;
}

.static-warranty .warranty-faq .faq-list .item .answer .inner .rev-box .comment,
.static-warranty .warranty-faq .faq-list .item .answer .inner .rev-box .minuses,
.static-warranty .warranty-faq .faq-list .item .answer .inner .rev-box .pluses {
	margin-top: 24px;
}

.static-warranty .warranty-faq .faq-list .item .answer .inner .rev-box .comment .label,
.static-warranty .warranty-faq .faq-list .item .answer .inner .rev-box .minuses .label,
.static-warranty .warranty-faq .faq-list .item .answer .inner .rev-box .pluses .label {
	font-weight: 500;
	font-size: 18px;
	margin-bottom: 10px;
}

.static-warranty .warranty-faq .faq-list .item .answer .inner .rev-box .comment p,
.static-warranty .warranty-faq .faq-list .item .answer .inner .rev-box .minuses p,
.static-warranty .warranty-faq .faq-list .item .answer .inner .rev-box .pluses p {
	margin: 0;
}

.static-warranty .warranty-faq .faq-list .item .answer .inner .rev-heading {
	margin-top: 64px;
}

.static-warranty .warranty-faq .faq-list .item .answer .inner ol {
	margin: 0 0 24px;
	padding-left: 20px;
}

.static-warranty .warranty-faq .faq-list .item .answer .inner ol:last-child {
	margin: 0;
}

.static-warranty .warranty-faq .faq-list .item .answer .flex-cols {
	justify-content: space-between;
	margin-bottom: 64px;
}

.static-warranty .warranty-faq .faq-list .item .answer .flex-cols > .col .col {
	min-width: 367px;
	width: 367px;
}

.static-warranty .warranty-faq .faq-list .item .answer .flex-cols > .col .col + .col {
	margin-left: 20px;
}

.static-warranty .warranty-faq .faq-list .item .answer .flex-cols > .col .col img {
	margin-bottom: 14px;
}

.static-warranty .warranty-faq .faq-list .item .answer .flex-cols > .col:last-child {
	margin-left: 65px;
}

.static-warranty .warranty-faq .faq-list .item .answer .flex-cols > .col:last-child h5 {
	margin: 0 0 24px;
	font-weight: 400;
}

.static-warranty .warranty-faq .faq-list .item .answer .flex-cols.c1 > .col:last-child {
	min-width: 560px;
}

@media screen and (max-width: 1199px) {
	.static-warranty .warranty-faq .faq-list .item .answer .flex-cols.c1 > .col:last-child {
		margin-bottom: 35px;
		margin-top: 31px;
	}

	.static-warranty .warranty-faq .faq-list .item .answer .flex-cols.c1 > .col:last-child .video-container {
		max-width: 466px;
		height: 269px;
		padding: 0;
	}
}

.static-warranty .warranty-faq .faq-list .item .answer .table-wrap {
	margin-bottom: 64px;
}

.static-warranty .warranty-faq .faq-list .item .answer .table-wrap table td {
	width: 33%;
	vertical-align: top;
}

.static-warranty .warranty-faq .faq-list .item .answer .video-wrap {
	display: flex;
	flex-wrap: wrap;
	max-width: 1200px;
}

.static-warranty .warranty-faq .faq-list .item .answer .video-wrap .video-container {
	width: 520px;
	height: 300px;
	padding: 0;
	margin: 0 24px 24px 0;
}

.static-warranty .warranty-faq .faq-list .item .answer h2 a,
.static-warranty .warranty-faq .faq-list .item .answer h5 a {
	text-decoration: none !important;
}

.static-warranty .warranty-faq .faq-list .item .answer h2 a:hover,
.static-warranty .warranty-faq .faq-list .item .answer h5 a:hover {
	text-decoration: underline !important;
}

.static-warranty .warranty-callback {
	margin-top: 130px;
}

.static-warranty .warranty-callback .box {
	background: #fff;
	box-shadow: 0 8px 32px rgba(43, 45, 51, 0.05);
	border-radius: 10px;
	padding: 60px 60px 70px;
}

.static-warranty .warranty-callback .box .col {
	width: calc(100% - 333px);
}

.static-warranty .warranty-callback .box .col h2 {
	color: #c42d96;
	margin: 0 0 24px;
}

.static-warranty .warranty-callback .box .col .h5,
.static-warranty .warranty-callback .box .col h5 {
	margin: 0;
	font-weight: 400;
}

.static-warranty .warranty-callback .box .btn {
	width: 243px;
	border-radius: 8px;
	font-size: 16px;
}

@media screen and (max-width: 1599px) {
	.single-post .col:first-child,
	.static-blog .posts-container .post-item .inner .thumb {
		width: 350px;
		min-width: 350px;
		height: 242px;
		margin-right: 41px;
	}
}

@media screen and (max-width: 1199px) {
	.static-pickup .question-list .qnav li a .icon {
		width: 55px;
		height: 55px;
	}

	.static-servcentr.static-pickup .large-note {
		font-size: 24px;
	}

	.static-servcentr #map {
		height: 343px;
	}

	.static-pickup .servcentr-first .box .col:first-child h2 {
		margin-bottom: 30px;
	}

	.static-pickup .servcentr-first .box .col:first-child h5 {
		margin-top: 30px;
	}

	.static-servcentr .servcentr-first .box .col:first-child .d-flex {
		margin-bottom: 15px;
	}

	.static-smi .smi-first .box .col {
		height: 330px;
	}

	.static-smi .smi-book .box,
	.static-smi .smi-vklad .box {
		padding: 50px;
	}

	.static-paymethod .paymethod-first,
	.static-paymethod .paymethod-nocash {
		margin-bottom: 90px;
	}

	.static-paymethod .paymethod-first .col .box-viol {
		padding: 50px;
	}

	.static-paymethod .paymethod-first .col {
		width: calc(50% - 10px);
	}

	.static-paymethod .paymethod-first .col:first-child {
		padding-right: 30px;
	}

	.static-paymethod .paymethod-nocash .box {
		padding: 50px 40px 50px 50px;
		margin-bottom: 60px;
	}

	.static-paymethod .paymethod-nocash .box .col:first-child {
		padding-right: 70px;
	}

	.static-paymethod .paymethod-nocash .second .col:first-child,
	.static-paymethod .paymethod-nocash .second .col:last-child {
		width: calc(50% - 20px);
	}

	.static-paymethod .paymethod-nocash .second .col:last-child .box-rose {
		padding: 40px 60px 50px 40px;
	}

	.static-paymethod .paymethod-phone .box-viol {
		padding: 40px;
		font-size: 18px;
	}

	.static-paymethod .paymethod-phone .box-viol a {
		font-size: 30px;
	}

	.static-paymethod .paymethod-nocash .second .col:last-child .box-rose p {
		font-size: 18px;
	}

	.static-reviews .reviews-list .item {
		padding: 50px;
		margin-bottom: 40px;
	}

	.static-reviews .reviews-list .item .d-flex {
		flex-direction: column;
	}

	.static-reviews .reviews-list .item > .d-flex > .col:last-child {
		margin-top: 50px;
		margin-left: 0;
	}

	.static-reviews .reviews-list .item:first-child .col:first-child .d-flex {
		flex-direction: row;
	}

	.static-reviews .reviews-list .item:first-child .col:first-child .text {
		max-width: none;
	}

	.static-smi .smi-first .box .col:first-child {
		max-width: 413px;
		min-width: 413px;
	}

	.static-smi .smi-first .box .col:first-child img {
		height: 292px;
	}

	.static-smi .smi-first .box .col:last-child {
		padding-left: 0;
		width: 100%;
	}

	.static-smi .news-list .item,
	.static-smi .smi-first .box {
		margin-bottom: 60px;
	}

	.static-smi .news-list .item .col {
		width: calc(50% - 10px);
	}

	.static-smi .news-list .item .col:first-child {
		padding-right: 20px;
		padding-left: 10px;
	}

	.static-smi .smi-vklad {
		margin-top: 90px;
	}

	.static-smi .smi-book .box {
		padding-right: 354px;
	}

	.static-smi .smi-book {
		margin-top: 134px;
	}

	.static-smi .smi-book .box img {
		width: 280px;
		height: 244px;
	}

	.static-smi .smi-first .box .col:last-child h1 span {
		display: inline-block;
	}

	.static-servcentr.static-pickup .servcentr-first .box .col:first-child {
		padding: 50px;
	}

	.static-pickup .servcentr-first .box .col:last-child {
		width: 50%;
	}

	.static-pickup .alert-block .box {
		margin: 90px 0;
		padding-top: 30px;
		padding-bottom: 30px;
		padding-right: 50px;
	}

	.static-pickup .alert-block .box .col {
		width: auto;
		padding: 0;
		max-width: 514px;
	}

	.static-pickup .alert-block .box h2 {
		font-size: 28px;
		margin-bottom: 15px;
	}

	.static-pickup .question-list .qnav {
		flex-wrap: wrap;
		justify-content: center;
		margin-bottom: 30px;
	}

	.static-pickup .question-list .qnav li {
		width: 33%;
		margin-bottom: 60px;
	}

	.static-pickup .question-list .qnav li a {
		font-size: 22px;
	}

	.static-pickup .question-list .box#box1,
	.static-pickup .question-list .box#box2,
	.static-pickup .question-list .box#box3 {
		padding: 50px;
		margin-bottom: 50px;
	}

	.static-pickup .question-list .box#box1 ul {
		max-width: 734px;
	}

	.static-pickup .question-list .box#box1 ul > li {
		position: relative;
		padding-left: 34px;
	}

	.static-pickup .question-list .box#box1 ul > li span {
		position: absolute;
		left: 0;
		top: -6px;
	}

	.static-pickup .question-list .box#box2 .col,
	.static-pickup .question-list .box#box3 .col,
	.static-pickup .question-list .box#box3 .col + div {
		padding: 0;
		width: calc(50% - 20px) !important;
	}

	.static-pickup .question-list .box#box4 {
		padding: 50px;
	}

	.static-pickup .question-list .box#box4 .col {
		padding: 0;
		width: calc(50% - 48px);
	}

	.static-pickup .question-list .box#box4 .col:last-child:before {
		left: -50px;
	}

	.static-pickup .question-list #box5 .col {
		width: calc(50% - 10px);
	}

	.static-pickup .question-list #box5 .col:first-child {
		padding-right: 10px;
	}

	.static-pickup .question-list #box5 {
		justify-content: space-between;
		margin: 90px 0;
	}

	.static-pickup .question-list .box-rev {
		padding: 50px;
	}

	.static-pickup .question-list .box-rev > .d-flex {
		flex-direction: column;
	}

	.static-pickup .question-list .box-rev .col:last-child {
		margin-top: 50px;
		margin-left: 0;
	}

	.blog-cols {
		flex-direction: column;
	}

	.static-blog .posts-container .post-item {
		padding: 40px;
	}

	.static-blog .posts-container .post-item .inner .thumb {
		width: 432px;
		min-width: 432px;
		height: 242px;
		margin-right: 41px;
	}

	.static-blog .sidebar {
		width: 100%;
		margin: 0;
	}

	.static-blog .sidebar img {
		display: none;
	}

	.static-blog .sidebar .blog-nav {
		background: 0 0;
		padding: 0 0 0 20px;
		margin: 0 -20px 40px;
		overflow-x: auto;
		overflow-y: hidden;
	}

	.static-blog .sidebar .blog-nav .title {
		display: none;
	}

	.static-blog .sidebar .blog-nav ul {
		display: flex;
	}

	.static-blog .sidebar .blog-nav ul li.hidden {
		display: block;
	}

	.static-blog .sidebar .blog-nav ul li a {
		display: inline-flex;
		justify-content: center;
		align-items: center;
		text-align: center;
		background: #fff;
		border: 1px solid #c42d96;
		color: #c42d96;
		border-radius: 20px;
		height: 40px;
		margin-right: 20px;
		padding: 0 30px;
		white-space: nowrap;
		font-size: 16px;
		font-weight: 500;
	}

	.static-blog .sidebar .blog-nav ul li.active::after {
		display: none;
	}

	.static-blog .sidebar .blog-nav ul li.active a {
		background-color: #c42d96;
		color: #fff;
	}

	.static-blog .posts-container .post-item .inner .col > .d-flex {
		margin-bottom: 10px;
	}

	.static-blog .posts-container .post-item .inner .col .post-title {
		margin-bottom: 15px;
	}

	.pagination {
		margin-right: auto;
		margin-left: auto;
	}

	.static-blog .blog-cols {
		text-align: center;
	}

	.static-blog .blog-cols .posts-container {
		margin-bottom: 60px;
		text-align: left;
	}

	.static-blog .blog-cols .single-post {
		text-align: left;
	}

	.pagination .next,
	.pagination .prev,
	.pagination ul li a,
	.pagination ul li span {
		height: 46px;
	}

	.single-post > .d-flex {
		justify-content: space-between;
	}

	.single-post .col:first-child,
	.single-post .col:last-child {
		width: calc(50% - 20px);
		margin: 0;
		min-width: 0;
	}

	.single-post .post-title {
		margin-bottom: 30px;
	}

	.single-post .col:last-child .social {
		margin-top: 40px;
	}

	.single-post .col:last-child h5,
	.single-post .col:last-child p {
		margin-bottom: 15px;
	}

	.static-delivery .delivery-first .container > .d-flex .col:first-child {
		width: 352px;
		min-width: 352px;
		margin-right: 41px;
		height: auto;
	}

	.static-delivery .delivery-first .container > .d-flex .col:first-child img:first-of-type {
		display: none;
	}

	.static-delivery .delivery-first .container > .d-flex .col:first-child img:last-of-type {
		display: block;
		width: 100%;
		height: auto;
	}

	.static-delivery .delivery-first .container > .d-flex .col:last-child h2 {
		font-size: 30px;
	}

	.static-delivery .delivery-first .container > .d-flex .col:last-child h2 br {
		display: none;
	}

	.static-delivery .delivery-first .rose {
		display: none;
	}

	.static-delivery .delivery-first .container > .d-flex .col:last-child .h5 br,
	.static-delivery .delivery-first .container > .d-flex .col:last-child h5 br {
		display: none;
	}

	.static-delivery .delivery-first .box {
		padding: 50px;
	}

	.static-delivery .delivery-first .box .d-flex:first-child .col:first-child {
		width: 392px;
	}

	.static-delivery .delivery-first .box .d-flex:first-child .col:last-child {
		width: 335px;
		margin-left: 70px;
	}

	.static-delivery .delivery-first .box .d-flex:first-child .col:first-child h2 {
		margin-top: 0;
		margin-bottom: 24px;
	}

	.static-delivery .delivery-first .box .d-flex:last-child .col:first-child {
		width: 346px;
	}

	.static-delivery .delivery-first .box .d-flex:last-child .col:last-child {
		width: 389px;
		margin-left: 114px;
	}

	.static-delivery h4 {
		margin-top: 0;
	}

	.static-delivery .deliv-list,
	.static-delivery .deliv-notes,
	.static-delivery .deliv-notes .infograph,
	.static-delivery .deliv-table {
		margin-top: 90px;
	}

	.static-delivery .deliv-list h2,
	.static-delivery .deliv-notes .infograph h2 {
		margin-bottom: 50px;
	}

	.static-delivery .deliv-list ul {
		-moz-columns: 3;
		columns: 3;
	}

	.static-delivery .deliv-notes .box,
	.static-delivery .deliv-notes .box.polygon {
		margin-bottom: 90px;
		padding: 50px;
	}

	.static-delivery .deliv-notes .box .d-flex,
	.static-delivery .deliv-notes .box.polygon .d-flex {
		flex-direction: column;
		align-items: flex-start;
	}

	.static-delivery .deliv-notes .box .d-flex .btn,
	.static-delivery .deliv-notes .box.polygon .d-flex .btn {
		margin-top: 40px;
	}

	.static-delivery .deliv-notes .del-serv .col:first-child {
		width: 462px;
		margin-right: 40px;
	}

	.static-delivery .deliv-notes .del-serv .col:last-child {
		width: calc(100% - 502px);
	}

	.static-delivery .deliv-notes .del-serv .col:last-child .video-container {
		height: 229px;
	}

	.deliv-table .table-wrap table tr td:first-child {
		width: 47%;
		font-size: 16px;
	}

	.static-warranty .warranty-first .i-title {
		margin-top: 60px;
	}

	.static-warranty .warranty-faq {
		margin-top: 90px;
	}

	.static-warranty .warranty-faq h2 {
		margin-bottom: 50px;
	}

	.static-warranty .warranty-faq h2 br {
		display: none;
	}

	.static-warranty .warranty-callback {
		margin-top: 90px;
	}

	.static-warranty .warranty-callback .box {
		padding: 50px;
	}

	.static-warranty .warranty-callback .box .d-flex {
		flex-direction: column;
		align-items: flex-start;
	}

	.static-warranty .warranty-callback .box .d-flex .col {
		width: 100%;
	}

	.static-warranty .warranty-callback .box .d-flex .btn {
		margin-top: 40px;
	}

	.static-warranty .warranty-faq .faq-list .item .answer .inner .inner-item {
		margin-bottom: 50px;
	}

	.static-warranty .warranty-faq .faq-list .item .answer .flex-cols > .col:last-child {
		margin: 50px 0 30px;
	}

	.static-warranty .warranty-faq .faq-list .item .answer .flex-cols {
		flex-direction: column;
		margin-bottom: 20px;
	}

	.static-warranty .warranty-faq .faq-list .item .answer .inner .rev-heading {
		margin-top: 20px;
	}

	.static-warranty .warranty-faq .faq-list .item .answer .flex-cols > .col .col {
		width: 367px;
	}

	.static-warranty .warranty-faq .faq-list .item .answer .flex-cols > .col .col + .col {
		margin-left: 115px;
		margin-right: auto;
	}

	.static-warranty .warranty-faq .faq-list .item .answer .table-wrap {
		margin-top: 40px;
	}

	.table-wrap table thead th {
		font-size: 22px;
		white-space: nowrap;
	}

	.static-warranty .warranty-faq .faq-list .item .answer .table-wrap table td:first-child {
		padding-left: 0;
	}

	.static-warranty .warranty-faq .faq-list .item .answer .video-wrap {
		justify-content: space-between;
	}

	.static-warranty .warranty-faq .faq-list .item .answer .video-wrap .video-container {
		width: calc(50% - 11px);
		margin-right: 0;
	}

	.static-warranty .warranty-faq .faq-list .item .answer .table-wrap {
		margin-bottom: 50px;
	}

	.static-delivery .deliv-notes .del-serv .col:first-child p br,
	.static-rekvizit .box .col .d-flex p br {
		display: none;
	}

	.static-delivery .deliv-notes .box.polygon h2 {
		font-size: 30px;
	}

	.static-delivery .deliv-notes .box h2 {
		font-size: 28px;
	}

	.static-delivery .deliv-notes .box .h5,
	.static-delivery .deliv-notes .box h5 {
		margin: 0;
	}

	.static-delivery .deliv-notes .infograph {
		margin-bottom: 90px;
	}
}

@media screen and (max-width: 1023px) {
	.header .header-top {
		position: relative;
	}

	.header-top-menu {
		display: flex;
	}

	.static-delivery .deliv-notes .box h2 {
		font-size: 26px;
	}

	.static-paymethod .paymethod-first .d-flex {
		flex-direction: column;
	}

	.static-paymethod .paymethod-first .col {
		width: 100%;
		padding: 0;
	}

	.static-paymethod .paymethod-first .col .box-viol {
		margin-top: 30px;
		padding: 30px;
	}

	.static-paymethod .paymethod-first,
	.static-paymethod .paymethod-nocash {
		margin-bottom: 70px;
	}

	.static-paymethod .paymethod-nocash .box {
		padding: 0;
		box-shadow: none;
		margin-bottom: 23px;
	}

	.static-paymethod .paymethod-nocash .box .d-flex,
	.static-paymethod .paymethod-nocash .second {
		flex-direction: column;
	}

	.static-paymethod .paymethod-nocash .box .col:first-child,
	.static-paymethod .paymethod-nocash .box .col:last-child {
		width: 100%;
		max-width: 100%;
		padding-right: 0;
	}

	.static-paymethod .paymethod-nocash .box .col:last-child {
		margin-top: 30px;
	}

	.static-paymethod .paymethod-nocash .box .col:last-child .list {
		padding-left: 29px;
	}

	.static-paymethod .paymethod-nocash .box .col:last-child .list li {
		padding-left: 39px;
		font-size: 15px;
		margin-bottom: 20px;
	}

	.static-paymethod .paymethod-nocash .box .col:last-child .list li span {
		font-size: 20px;
	}

	.static-paymethod .paymethod-nocash .second .col:first-child,
	.static-paymethod .paymethod-nocash .second .col:last-child {
		width: 100%;
	}

	.static-paymethod .paymethod-nocash .second .col:first-child .quote {
		margin-bottom: 30px;
		padding-left: 36px;
	}

	.static-paymethod .paymethod-nocash .second .col:last-child {
		margin-top: 50px;
	}

	.static-paymethod .paymethod-nocash .second .col:last-child .box-rose {
		padding: 30px;
	}

	.static-paymethod .paymethod-nocash .second .col:last-child .box-rose p {
		margin-bottom: 0;
	}

	.static-paymethod .paymethod-phone .box-viol {
		padding: 30px;
		font-size: 16px;
	}

	.static-paymethod .paymethod-phone .box-viol a {
		font-size: 28px;
	}

	.static-reviews .reviews-list .item {
		padding: 30px 30px 0;
		margin-bottom: 30px;
		overflow: hidden;
	}

	.static-reviews .reviews-list .item:first-child .col:first-child .d-flex {
		flex-direction: column;
	}

	.static-reviews .reviews-list .item:first-child .col:first-child .d-flex .text {
		margin-top: 30px;
	}

	.static-reviews .reviews-list .item:first-child .col:first-child .d-flex .text p:last-child {
		margin: 0;
	}

	.static-reviews .reviews-list .item > .d-flex > .col:last-child {
		width: auto;
		margin-right: -30px;
		margin-left: -30px;
		min-width: 0;
		margin-top: 30px;
	}

	.static-reviews .reviews-list .item > .d-flex > .col:first-child h4,
	.static-reviews .reviews-list .item > .d-flex > .col:first-child h3 {
		margin-bottom: 15px;
	}

	.static-reviews .reviews-list .item > .d-flex > .col:first-child p {
		margin-bottom: 39px;
	}

	.static-smi .smi-first .box {
		padding: 0;
		box-shadow: none;
		margin-bottom: 70px;
	}

	.static-smi .smi-first .box .d-flex {
		flex-direction: column-reverse;
		justify-content: flex-start;
	}

	.static-smi .smi-first .box .d-flex .col {
		height: auto;
		padding: 0;
	}

	.static-smi .smi-first .box .d-flex img {
		margin-top: 30px;
	}

	.static-smi .news-list .item,
	.static-smi .news-list .item:nth-child(even) {
		flex-direction: column;
		margin-bottom: 50px;
	}

	.static-smi .news-list .item .col,
	.static-smi .news-list .item:nth-child(even) .col {
		width: 100%;
	}

	.static-smi .news-list .item .col:first-child {
		padding: 0;
		margin-bottom: 30px;
	}

	.static-smi .news-list .item h4 {
		margin-bottom: 15px;
	}

	.static-smi .smi-vklad {
		margin-top: 70px;
	}

	.static-smi .smi-vklad .box {
		padding: 0;
		box-shadow: none;
	}

	.static-smi .smi-vklad .box .d-flex {
		flex-direction: column;
	}

	.static-smi .smi-vklad .box .d-flex .col {
		width: 100%;
	}

	.static-smi .smi-vklad .box .col:last-child {
		padding-left: 34px;
		margin-top: 30px;
	}

	.static-smi .smi-vklad .box .col:last-child::before {
		left: 0;
	}

	.static-smi .smi-book .box {
		padding: 0 0 212px;
		box-shadow: none;
	}

	.static-smi .smi-book .box img {
		height: 212px;
		width: 243px;
		bottom: 0;
		right: -15px;
	}

	.static-smi .smi-book .box h5 {
		font-size: 16px;
	}

	.static-smi .smi-book .box h2,
	.static-smi .smi-vklad .box .col h2 {
		margin-bottom: 15px;
	}

	.static-smi .smi-book {
		margin-top: 70px;
	}

	.static-pickup .servcentr-first .box {
		box-shadow: none;
		border-radius: 0;
		overflow: visible;
	}

	.static-pickup.static-servcentr .servcentr-first .box .col:first-child {
		padding: 0;
	}

	.static-pickup.static-servcentr .servcentr-first .box .col:last-child {
		width: auto;
		margin-right: -15px;
		margin-left: -15px;
	}

	.static-servcentr.static-pickup .large-note {
		text-align: left;
		font-size: 22px;
		max-width: none;
	}

	.static-servcentr.static-pickup .large-note br {
		display: none;
	}

	.static-pickup .alert-block .box {
		margin: 70px 0;
		padding: 35px 30px 30px;
		background-image: url("Polygon_rose2.svg");
	}

	.static-pickup .alert-block .box .btn {
		width: 100%;
		border-radius: 8px;
	}

	.static-pickup .alert-block .box h2 {
		padding-left: 111px;
		font-size: 26px;
	}

	.static-pickup .alert-block .box:before {
		width: 47px;
		height: 42px;
		top: 30px;
		left: 30px;
		background-size: contain;
	}

	.static-pickup .question-list .qnav {
		flex-direction: column;
		margin-bottom: 40px;
	}

	.static-pickup .question-list .qnav li {
		width: 100%;
		margin-bottom: 30px;
	}

	.static-pickup .question-list .qnav li a {
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
		text-align: left;
		font-size: 18px;
	}

	.static-pickup .question-list .qnav li a span:last-child {
		width: 100%;
	}

	.static-pickup .question-list .qnav li a span:last-child br {
		display: none;
	}

	.static-pickup .question-list .qnav li a .icon {
		width: 55px;
		min-width: 55px;
		height: 55px;
		margin-bottom: 0;
		margin-right: 20px;
	}

	.static-pickup .question-list .qnav li a .icon svg {
		width: 37px;
		height: 37px;
	}

	.static-pickup .question-list .box#box1,
	.static-pickup .question-list .box#box2,
	.static-pickup .question-list .box#box3 {
		padding: 0;
		box-shadow: none;
	}

	.static-pickup .question-list .box#box2 .col,
	.static-pickup .question-list .box#box3 .col,
	.static-pickup .question-list .box#box3 .col + div {
		width: 100% !important;
	}

	.static-pickup .question-list .box#box2 .col h5 {
		width: 100%;
		font-size: 16px;
	}

	.static-servcentr.static-pickup .box .col:first-child {
		margin-bottom: 30px;
	}

	.static-pickup .question-list .box#box2 .col ul {
		padding: 0;
	}

	.static-pickup .question-list .box#box2 .col ul li:last-child {
		margin: 0;
	}

	.static-pickup .question-list .box#box3 .col h2,
	.static-pickup .question-list .box#box4 .col h2 {
		margin-bottom: 15px;
	}

	.static-pickup .question-list .box#box4 {
		padding: 30px;
	}

	.static-pickup .question-list #box5 .col,
	.static-pickup .question-list .box#box4 .col {
		width: 100%;
	}

	.static-pickup .question-list #box5 {
		margin: 70px 0;
		flex-direction: column;
	}

	.static-pickup .question-list #box5 .col h2 {
		margin-bottom: 15px;
	}

	.static-pickup .question-list #box5 .col .video-container {
		height: 165px;
	}

	.static-pickup .question-list .box-rev .col:first-child .d-flex {
		flex-direction: column;
	}

	.static-pickup .question-list .box-rev {
		padding: 30px;
		overflow: hidden;
	}

	.static-pickup .question-list .box-rev .col:first-child .text {
		margin-top: 30px;
	}

	.static-pickup .question-list .box-rev .col:last-child {
		width: auto;
		min-width: 0;
		margin-top: 30px;
		margin-bottom: -30px;
		margin-left: -30px;
		margin-right: -30px;
	}

	.static-pickup .question-list .box-rev .video-container {
		height: 195px;
		min-width: 0;
	}

	.static-pickup .servcentr-first .box .col:first-child {
		margin-bottom: 0;
	}

	.static-pickup .servcentr-first .box .col:first-child h2 {
		margin-bottom: 24px;
	}

	.static-pickup .servcentr-first .box .col:first-child h5 {
		margin-top: 30px;
		font-size: 16px !important;
	}

	.static-blog .posts-container .post-item {
		padding: 0;
		box-shadow: none;
		margin-bottom: 70px;
	}

	.static-blog .posts-container .post-item .inner {
		flex-direction: column-reverse;
	}

	.static-blog .posts-container .post-item .inner .col .excerpt {
		display: none;
	}

	.static-blog .posts-container .post-item .inner .thumb {
		width: 100%;
		height: 193px;
		min-width: 0;
	}

	.static-blog .posts-container .post-item .inner .col .date {
		font-size: 15px;
	}

	.static-blog .posts-container .post-item .inner .col .category .item {
		font-size: 13px;
		height: 26px;
		padding: 0 20px;
	}

	.pagination .prev {
		display: none;
	}

	.pagination ul li:first-child {
		border: none;
	}

	.pagination ul li.divider + li {
		display: none;
	}

	.pagination ul li.divider + li + li {
		display: none;
	}

	.single-post > .d-flex {
		flex-direction: column;
	}

	.single-post .col:first-child,
	.single-post .col:last-child {
		width: 100%;
		height: auto;
	}

	.single-post .post-title {
		margin-bottom: 15px;
	}

	.single-post .col:last-child {
		margin-top: 30px;
	}

	.single-post .col:last-child .social .label {
		margin-bottom: 15px;
	}

	.single-post .date {
		font-size: 15px;
	}

	.main-static .page-title {
		margin-top: 22px;
		margin-bottom: 30px;
	}

	.delivery-first .container > .d-flex {
		flex-direction: column-reverse;
	}

	.static-delivery .delivery-first .container > .d-flex .col:last-child h2 {
		font-size: 28px;
		margin: 0 0 24px;
	}

	.static-delivery .delivery-first .container > .d-flex .col:last-child > .h4 {
		font-size: 20px;
		margin: 0;
	}

	.static-delivery .delivery-first .container > .d-flex .col:first-child {
		margin: 0;
	}

	.static-delivery .delivery-first .container > .d-flex .col:first-child img {
		transform: translateX(-30px);
	}

	.static-delivery .delivery-first .box {
		padding: 0;
		box-shadow: none;
		margin-top: 70px;
	}

	.static-delivery .delivery-first .box .d-flex {
		flex-direction: column;
	}

	.static-delivery .delivery-first .box .d-flex .col {
		width: 100% !important;
		margin-left: 0 !important;
	}

	.static-delivery .delivery-first .box .d-flex:first-child .col:first-child {
		margin-bottom: 40px;
	}

	.static-delivery .delivery-first .box .d-flex:last-child::before {
		margin: 40px 0;
	}

	.static-delivery h4 {
		font-size: 20px;
		margin-bottom: 24px;
	}

	.static-delivery .deliv-list,
	.static-delivery .deliv-notes,
	.static-delivery .deliv-notes .infograph,
	.static-delivery .deliv-table {
		margin-top: 70px;
	}

	.static-delivery .table-wrap table thead th {
		font-size: 18px;
		padding-left: 15px;
		padding-right: 15px;
		padding-bottom: 30px;
	}

	.static-delivery .table-wrap table tr td,
	.static-delivery .table-wrap table tr td:first-child {
		font-size: 15px;
		vertical-align: top;
		padding-left: 15px;
		padding-right: 15px;
	}

	.static-delivery .table-wrap table thead th:first-child,
	.static-delivery .table-wrap table tr td:first-child {
		padding-left: 0;
		width: 38%;
	}

	.static-delivery .deliv-list h2,
	.static-delivery .deliv-notes .infograph h2 {
		margin-bottom: 24px;
	}

	.static-delivery .deliv-list ul {
		-moz-columns: 1;
		columns: 1;
	}

	.static-delivery .deliv-list ul li {
		font-size: 15px;
	}

	.static-delivery .deliv-notes .box,
	.static-delivery .deliv-notes .box.polygon {
		padding: 30px;
		background-size: auto 185px;
		margin-bottom: 30px;
	}

	.static-delivery .deliv-notes .box h2 {
		font-size: 26px;
		margin-bottom: 15px;
	}

	.static-delivery .deliv-notes .box .d-flex .btn {
		width: 100%;
		margin-top: 24px;
		border-radius: 8px;
		height: 47px;
	}

	.static-delivery .deliv-notes .infograph {
		margin-bottom: 70px;
	}

	.static-delivery .deliv-notes .infograph h2 {
		margin-bottom: 30px;
	}

	.static-delivery .deliv-notes .del-serv .d-flex {
		flex-direction: column;
	}

	.static-delivery .deliv-notes .del-serv .d-flex .col:first-child {
		width: 100%;
		margin: 0;
	}

	.static-delivery .deliv-notes .del-serv .d-flex .col:last-child {
		width: 100%;
	}

	.static-delivery .deliv-notes .del-serv .col:first-child h5 {
		margin: 0 0 30px;
	}

	.static-delivery .deliv-notes .del-serv .col:last-child .video-container {
		height: 164px;
	}

	.static-delivery .deliv-list ul + a {
		color: #c42d96;
		text-decoration: underline;
		font-weight: 500;
		font-size: 16px;
	}

	.static-warranty .warranty-first .i-title {
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 15px;
		margin-top: 50px;
	}

	.static-warranty .warranty-first .i-title img {
		margin: 0 0 15px;
		width: 55px;
		height: 55px;
	}

	.static-warranty .warranty-first .i-title h4 {
		font-size: 20px;
	}

	.static-warranty .warranty-first .box.rose {
		margin-top: 30px;
		padding: 30px;
	}

	.static-warranty .warranty-first .box.rose h5 {
		margin-bottom: 15px;
	}

	.static-warranty .warranty-faq {
		margin-top: 70px;
	}

	.static-warranty .warranty-faq h2 {
		font-size: 24px;
		margin-bottom: 30px;
	}

	.static-warranty .warranty-faq .faq-list .item .question {
		font-size: 16px;
		padding: 11px 15px;
		min-height: 48px;
		height: auto;
	}

	.static-warranty .warranty-faq .faq-list .item {
		margin-bottom: 15px;
	}

	.static-warranty .warranty-faq .faq-list .item .answer .inner {
		border-left: none;
		padding: 0 0 15px;
	}

	.static-warranty .warranty-faq .faq-list .item .answer {
		padding-top: 15px;
	}

	.static-warranty .warranty-faq .faq-list .item .answer .inner .inner-item {
		margin-bottom: 24px;
	}

	.static-warranty .warranty-faq .faq-list .item .answer .inner .rev-heading {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.static-warranty .warranty-faq .faq-list .item .answer .inner .rev-box {
		padding: 30px;
	}

	.static-warranty .warranty-faq .faq-list .item .answer .inner .rev-box .name {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.static-warranty .warranty-faq .faq-list .item .answer .inner .rev-box .buy-type,
	.static-warranty .warranty-faq .faq-list .item .answer .inner .rev-box .rating-wrap {
		font-size: 16px;
	}

	.static-warranty .warranty-faq .faq-list .item .answer .inner .rev-box .comment .label,
	.static-warranty .warranty-faq .faq-list .item .answer .inner .rev-box .minuses .label,
	.static-warranty .warranty-faq .faq-list .item .answer .inner .rev-box .pluses .label {
		font-size: 16px;
	}

	.static-warranty .warranty-faq .faq-list .item .answer .flex-cols > .col:last-child {
		margin-top: 30px;
	}

	.static-warranty .warranty-faq .faq-list .item .answer .flex-cols > .col .d-flex {
		flex-direction: column;
	}

	.static-warranty .warranty-faq .faq-list .item .answer .flex-cols > .col .col {
		width: 100%;
		min-width: 0;
	}

	.static-warranty .warranty-faq .faq-list .item .answer .flex-cols > .col .col + .col {
		margin: 40px 0 0;
	}

	.static-warranty .warranty-faq .faq-list .item .answer .table-wrap {
		margin-top: 70px;
	}

	.static-warranty .table-wrap table thead th {
		font-size: 18px;
		padding-bottom: 30px;
		padding-left: 15px;
		padding-right: 15px;
	}

	.static-warranty .table-wrap table tr td:first-child {
		font-size: 16px;
		width: 200px;
	}

	.static-warranty .table-wrap table tr td {
		font-size: 15px;
		padding-left: 15px;
		padding-right: 15px;
	}

	.static-warranty .warranty-faq .faq-list .item .answer .table-wrap table td:first-child {
		width: 25%;
		font-size: 15px;
	}

	.static-warranty .warranty-faq .faq-list .item .answer .video-wrap .video-container {
		width: 100%;
		height: 164px;
	}

	.static-warranty .warranty-callback .box {
		padding: 30px;
	}

	.static-warranty .warranty-callback .box .col h2 {
		margin-bottom: 15px;
	}

	.static-warranty .warranty-callback .box .d-flex .btn {
		margin-top: 30px;
		width: 100%;
		border-radius: 8px;
		height: 47px;
	}

	.static-warranty .warranty-callback {
		margin-top: 50px;
	}

	.static-obmen .delivery-specs .item.full p,
	.static-warranty .warranty-faq .faq-list .item .answer .inner {
		font-size: 15px;
	}

	.static-obmen .quote h2 {
		margin-bottom: 15px;
	}

	.static-obman .section-obman-promo {
		margin-top: 70px;
	}

	.static-bron .bron-deliv .box .col:first-child .adr p br {
		display: none;
	}

	.static-servcentr .servcentr-first .box .col:first-child h5 {
		font-size: 18px;
	}

	.static-paymethod .paymethod-nocash .second .col:first-child .quote .h5,
	.static-paymethod .paymethod-nocash .second .col:first-child .quote h5,
	.static-paymethod .paymethod-nocash .second .col:last-child .box-rose p,
	.static-postvsh .d-flex .col:first-child .h5,
	.static-postvsh .d-flex .col:first-child h5,
	.static-rekvizit .box .h5,
	.static-rekvizit .box h5,
	.static-support .col .box-viol .h5,
	.static-support .col .box-viol h5 {
		font-size: 16px;
	}

	.static-paymethod .paymethod-first .col:first-child {
		padding-right: 0;
	}

	.static-paymethod .paymethod-first .col:first-child .h5,
	.static-paymethod .paymethod-first .col:first-child h5 {
		font-size: 16px;
	}

	.static-paymethod .paymethod-nocash .box .col:first-child .h5,
	.static-paymethod .paymethod-nocash .box .col:first-child h5 {
		font-size: 18px;
	}

	.static-paymethod .paymethod-nocash .second .col:first-child p:last-child {
		margin: 0;
	}

	.static-delivery .deliv-list .h5,
	.static-delivery .deliv-list h5,
	.static-delivery .deliv-notes .box .h5,
	.static-delivery .deliv-notes .box h5,
	.static-delivery .delivery-first .container > .d-flex .col:last-child .h5,
	.static-delivery .delivery-first .container > .d-flex .col:last-child h5,
	.static-pickup .alert-block .box h5,
	.static-pickup .question-list .box#box3 .col h5,
	.static-pickup .question-list .box#box4 .col h5,
	.static-smi .smi-first .box .col:last-child h5,
	.static-smi .smi-vklad .box .col h5 {
		font-size: 16px;
	}

	.static-smi .smi-first .box .col:first-child {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	.static-delivery .delivery-first .box .d-flex:first-child .col:first-child h6,
	.static-delivery .delivery-first .box .d-flex:first-child .col:last-child h6,
	.static-delivery .delivery-first .box .d-flex:last-child .col:last-child h6,
	.static-pickup .question-list .box#box1 ul > li,
	.static-pickup .question-list .box#box2 .col ul li {
		font-size: 15px;
	}

	.static-pickup .question-list .box#box2 .col h6 br {
		display: none;
	}

	.static-pickup .question-list .box#box4 .col:last-child:before {
		height: 4px;
		width: 100%;
		position: static;
		margin-bottom: 30px;
	}

	.static-pickup .question-list #box5 .col:first-child {
		padding-right: 0;
	}

	.static-pickup .question-list #box5 .col:last-child {
		margin-top: 30px;
	}

	.static-pickup .question-list .box-rev h2 {
		font-size: 22px;
	}

	.static-delivery .deliv-list {
		margin-top: 50px;
	}

	.static-warranty .warranty-faq .faq-list .item .answer .flex-cols.c1 > .col:last-child {
		min-width: 0;
		width: 100%;
	}

	.static-warranty .warranty-faq .faq-list .item .answer .flex-cols.c1 > .col:last-child .video-container {
		height: 195px;
	}

	.static-warranty .warranty-faq .faq-list .item .answer .flex-cols.c1 > .col:first-child h5 {
		margin: 0;
	}

	.static-warranty .warranty-faq .faq-list .item .answer .flex-cols.c1 > .col:last-child {
		margin-bottom: 20px;
		margin-top: 40px;
	}

	.static-blog .sidebar .blog-nav ul li a {
		font-size: 15px;
	}

	.single-post .col:last-child p a {
		display: inline-block;
		margin-top: 6px;
	}

	.static-servcentr.static-pickup .servcentr-first .box .col:first-child .d-flex {
		margin-bottom: 24px;
	}

	.static-servcentr.static-pickup .servcentr-first .box .col:first-child h5 br {
		display: none;
	}

	.static-servcentr.static-pickup #map {
		margin-top: 30px;
	}
}

.ws-chat .ws-chat-btn-el-container {
	z-index: 9 !important;
	bottom: 50px!important;
}

.cr .mc-comment-time,
.cr .mc-review-time {
	display: none !important;
}

.main-home .section-first .home-slider .inner .link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border-radius: 10px;
	z-index: 1;
	opacity: 0;
}

.catalog-mega-menu .mm-main .show-mobile {
	display: none;
}

@media screen and (max-width: 767px) {
	.catalog-mega-menu .mm-main .show-mobile {
		display: list-item;
	}
}

.footer-top a:not(.btn) {
	color: #838383;
	text-decoration: underline #83838300;
	transition: text-decoration-color, color 0.3s, 0.3s;
}

.footer-top a:not(.btn):active,
.footer-top a:not(.btn):focus,
.footer-top a:not(.btn):hover {
	color: #fff;
	text-decoration-color: #838383;
}

.footer-top a:not(.btn).footer-phone {
	color: #fff;
}

.fast-order__wrapper {
	width: 500px;
}

.fast-order__wrapper .fast-order__phone {
	display: flex;
}

.fast-order__wrapper .fast-order__captcha {
	display: none;
}

.fast-order__wrapper.fast-order__wrapper--captcha .fast-order__phone {
	display: none;
}

.fast-order__wrapper.fast-order__wrapper--captcha .fast-order__captcha {
	display: flex;
}

.fast-order__wrapper .fast-order__captcha-image {
	flex-shrink: 0;
}

.fast-order__wrapper .fast-order__captcha-image img {
	padding: 4px;
}

.cart-wrap .fast-order .fast-order__captcha .input-wrap {
	flex-shrink: 1;
}

.cart-wrap .fast-order .fast-order__captcha .input-wrap input {
	padding: 10px;
	font-size: 16px;
}

@media screen and (max-width: 1023px) {
	.header .header-top .header-top-menu .to_director {
		display: inline-flex;
		width: 100%;
		height: 58px;
		background-color: #c42d96;
	}

	.header .header-top .header-top-menu .htop-menu,
	.header-top-menu .header-phone__info,
	.header-top-menu .header-address__info{
		display: flex;
	}

	.header .header-top .header-top-menu .htop-menu {
		flex-direction: column;
		height: unset;
	}

	.header .header-top .header-top-menu .htop-menu li {
		margin-right: 0;
	}

	.header .header-top .header-top-menu .htop-menu li a {
		width: 100%;
		padding: 19px 6px;
		font-size: 16px;
		font-weight: 400;
		line-height: 1.3125;
		background-color: #101010;
	}

	.header .header-top .header-top-menu .htop-menu li a:hover::before {
		opacity: 0;
	}

	.header .header-top .header-top-menu .htop-menu li a::after {
		content: '';
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 1px;
		background-color: #4f4f4f;
	}

	.fast-order__wrapper {
		width: 100%;
	}

	.fast-order__wrapper .fast-order__phone {
		display: block;
	}

	.fast-order__wrapper.fast-order__wrapper--captcha .fast-order__phone {
		display: none;
	}

	.fast-order__wrapper.fast-order__wrapper--captcha .fast-order__captcha {
		flex-wrap: wrap;
	}

	.cart-wrap .fast-order .fast-order__captcha .input-wrap {
		width: 160px;
		flex-grow: 1;
	}

	.ws-chat__hidden-button {
		display: none;
	}
}


@media screen and (max-width: 575px) {
	.cart-wrap .prod-kompl .kompl-row .quantity {
		width: 100%;
		align-items: flex-start;
		justify-content: center;
		margin-top: 20px;
	}

	.cart-wrap .prod-kompl .kompl-row .quantity input {
		padding-bottom: 5px;
		font-size: 20px;
		line-height: 28px;
		padding-top: 6px;
		width: 100px;
	}

	.cart-wrap .prod-kompl .kompl-row .quantity span {
		transform: none;
		height: 40px;
		width: 40px;
	}
}

.youtube-preloader {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border: none;
	background-size: cover;
	cursor: pointer;
}

.youtube-preloader::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.1);
	cursor: pointer;
}

.youtube-preloader::after {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 68px;
	height: 48px;
	margin-left: -34px;
	margin-top: -24px;
	background-image: url("yt-play-button.svg");
	cursor: pointer;
}

.header-actions__action-count {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 14px;
}

.header-actions__action .header-actions__action-count {
	right: 20px;
}

.cart-link .icon-Cart::before {
	font-size: 26px;
}

.cart-link .header-actions__action-count {
	right: 27px;
}

@media screen and (max-width: 1199px) {
	.header-actions__action .header-actions__action-count {
		right: 10px;
	}

	.cart-link .header-actions__action-count {
		right: -10px;
	}
}

@media screen and (max-width: 1023px) {
	.header .header-bottom .header-actions li {
		width: max-content;
		min-width: max-content;
	}

	.cart-link .icon-Cart::before {
		font-size: 22px;
	}

	.header-actions__action-count {
		position: absolute;
		top: 0;
		right: 0;
		font-weight: 400;
		font-size: 14px;
	}

	.header-actions__action .header-actions__action-count {
		top: 10px;
		right: 0;
		color: #fff;
	}

	.cart-link .header-actions__action-count {
		top: 2px;
		right: 15px;
		color: #fff;
	}
}

.catalog-mega-menu .categories-main li:nth-last-child(1) {
	padding-bottom: 50px;
	background-position-y: 50%;
}

@media screen and (max-width: 767px) {
	.product-item__block-btns-action.product-item__block-btns-action--compare {
		top: 40px;
	}

	.product-header__block-btns-action {
		grid-column-gap: 20px;
	}

	.btn-action__text {
		display: none;
	}

	.catalog-mega-menu .categories-main li:nth-last-child(1) {
		padding-bottom: 38px !important;
		background-position-y: 5px !important;
	}

	.catalog-mega-menu .mm-main .grid-item:nth-last-child(1),
	.catalog-mega-menu .mm-main .categories-child > li ul li:nth-last-child(1) {
		margin-bottom: 65px;
	}
}

@media screen and (min-width: 800px) {
	.mdl_position {
		visibility: hidden;
		display: none;
	}
}

.list-of-sets__top {
	width: 100%;
	background: #EFEEFE;
	position: relative;
	z-index: 1;
	height: 88px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 30px;
	box-shadow: 0px 8px 15px -8px gray;
	border-radius: 8px;
	overflow: hidden;
}

.list-of-sets__top-icon {
	min-height: 44px;
	max-height: 44px;
	max-width: 44px;
	min-width: 44px;
	border-radius: 8px;
	background: white;
	display: flex;
	justify-content: center;
	align-items: center;
	svg {
		min-height: 24px;
		max-height: 24px;
		max-width: 24px;
		min-width: 24px;
	}
}

.js-countdown {
	background:  #C42D96;
	color: white;
	font-size: 20px;
	font-weight: 500;
	padding: 10px;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.list-of-sets__top-inner {
	display: flex;
	align-items: center;
	gap: 12px;

	span {
		font-size: 20px;
		font-weight: 500;
		color: #C42D96;
	}
}

.current--sale {
	color: #C42D96;
}

@media (max-width: 1500px) {
	.main-product .product-main__cols .list-of-sets .item .item-price .price {
		gap: 10px;
		flex-wrap: wrap;
	}
	.main-product .product-main__cols .list-of-sets .item .item-price .price .economy,
	.product-item .price .economy {
		font-size: 12px;
		margin: 0 10px 0 0 ;
		flex-basis: auto;
	}
	.product-item .price .economy {
		margin-left: 0;
		margin-right: 0;
	}

	.main-product .product-main__cols .list-of-sets .item .item-price .price .old {
		margin: 0;
		margin-right: 19px;
	}
}

@media (max-width: 768px) {
	.list-of-sets__top {
		height: 76px;
		padding: 0 16px;
		box-shadow: none;
	}
}

.product-item .thumb {
	position: relative;
}

.product-item .thumb .card-countdown {
	height: 28px;
	padding: 0 10px;
	background: #C42D96;
	position: absolute;
	left: 0;
	bottom: 0;
	border-radius: 6px;
	display: flex;
	align-items: center;

	span {
		font-size: 12px;
		font-weight: 500;
		color: white;
	}
}


/*banner 24*/
.banner--24 {
	min-height: 73px;
	max-height: 73px;
	position: relative;
	display: flex;
	align-items: center;
	transition: .5s;
}

.banner--24 .banner__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.banner--24 .banner__wrapper {
	display: flex;
	justify-content: space-between;
	width: 100%;
	align-items: center;
	position: relative;
}

.banner--24 .banner__button {
	min-height: 48px;
	max-height: 48px;
	max-width: 48px;
	min-width: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 999px;
	background-color: rgba(255,255,255, .2);
	border: none;
	svg {
		min-height: 24px;
		max-height: 24px;
		max-width: 24px;
		min-width: 24px;
	}
}

.banner--24 .banner__copy-button svg {
	display: none;
	margin: 0!important;
}

@media (max-width: 720px) {
	.banner--24 .banner__copy-button svg {
		display: block;
	}

	.banner--24 .banner__copy-button svg.copy-svg-accept {
		display: none;
	}

	.banner--24 .banner__copy-button svg.copy-svg-accept.visible {
		display: block;
	}

	.banner--24 .banner__copy-button svg.copy-svg.hide {
		display: none;
	}
}

.banner--24 {
	.banner__content {
		display: flex;
		align-items: center;
		gap: 30px;

		.banner__content-text {
			display: flex;
			flex-direction: column;
			gap: 4px;
		}

		.banner__content-text-title {
			font-size: 22px;
			font-weight: 900;
			color: white;
		}

		.banner__content-text-subtitle {
			font-size: 14px;
			font-weight: 400;
			color: white;
		}
	}

	.banner__copy {
		position: relative;
		display: flex;
		align-items: center;
		gap: 16px;
		padding: 4px 4px 4px 12px;
		background-color: white;
		border-radius: 16px;

		.banner__copy-text {
			text-transform: uppercase;
			color: #5C3DA5;
			font-weight: 900;
			font-size: 28px;
		}

		.btn {
			background-color: #5C3DA5;
			border: 2px solid transparent;
			color: white;
			font-weight: 500;
			font-size: 14px;
			border-radius: 12px;
			padding: 5px 10px;
			max-height: 33px;
			min-height: 33px;
			transition: .3s;
		}

		.btn:hover, .btn.active {
			background-color: white;
			border: 2px solid #5C3DA5;
			color: #5C3DA5;
		}

		.btn:active {
			transform: scale(.97);
		}
	}
}

.banner--24.hide {
	margin-top: -73px;
}

@media (max-width: 1440px) {
	.banner--24 {
		.banner__imgs {
			img:nth-child(2) {
				display: none;
			}
		}
	}
}

@media (max-width: 1200px) {
	.banner--24 {
		.banner__imgs {
			img:nth-child(1) {
				display: none;
			}
		}
	}
}

@media (max-width: 992px) {
	.banner--24 {
		.banner__imgs {
			display: none;
		}
	}
}

@media (max-width: 720px) {
	.banner--24 {

		.banner__content {
			gap: 15px!important;
		}


		.banner__copy-text {
			font-size: 14px!important;
			font-weight: 900!important;
		}

		.banner__content-text-title {
			font-size: 18px!important;
			font-weight: 500!important;
			max-width: 120px;
		}

		.banner__content-text-subtitle {
			display: none!important;
		}

		.banner__button {
			margin-left: 0px;
			min-height: 32px!important;
			max-height: 32px!important;
			max-width: 32px!important;
			min-width: 32px!important;

			svg {
				min-height: 16px;
				max-height: 16px;
				max-width: 16px;
				min-width: 16px;
			}
		}

		.banner__copy {
			min-height: 36px!important;
			padding: 4px 40px 4px 7px!important;
			border-radius: 8px;
		}

		.banner__copy-button {
			position: absolute;
			top: 0;
			right: 0;
			border-radius: 6px!important;
			padding: 5px!important;
			font-size: 0!important;
			min-height: 36px!important;
			max-height: 36px!important;

			svg {
				min-height: 18px!important;
				max-height: 18px!important;
				max-width: 18px!important;
				min-width: 18px!important;
			}

			&:hover {
				background-color: #5C3DA5 !important;
				border: 2px solid transparent !important;
				color: white !important;
				font-weight: 500 !important;
				border-radius: 6px !important;
			}

			&:active {
				transform: none!important;
			}
		}
	}
}
.wrapper.wrapper-with-banner {
	padding-top: 73px;
}
.wrapper {
	transition: .5s;
}

.reviews-list-photo-slider-wrapper {
	position: relative;
	overflow: hidden;
	margin-bottom: 66px;
}

.reviews-list-photo-slider-wrapper h2 {
	margin-bottom: 40px;
}

.reviews-list-photo-slider-wrapper .swiper-slide,
.reviews-list-photo-slider-wrapper .swiper-slide img{
	min-width: 296px;
	max-width: 296px;
	min-height: 398px;
	max-height: 398px;
	object-fit: cover;
	cursor: grab;
}

.reviews-list-photo-slider-wrapper .swiper-slide:active,
.reviews-list-photo-slider-wrapper .swiper-slide img:active {
	cursor: grabbing;
}

.reviews-list-photo-slider-wrapper .btn {
	position: absolute;
	z-index: 2;
	top: 60%;
	transform: translateY(-50%);
	cursor: pointer;
	width: 83px;
	padding: 0;
}

.reviews-list-photo-slider-wrapper .btn--next {
	right: 0;
}

@media (max-width: 992px) {
	.reviews-list-photo-slider-wrapper h2 {
		margin-bottom: 20px;
	}
}
.main-product .product-main__cols .list-of-sets .item .item-price .price .old {
	margin: 0;
	margin-right: 10px;
}


@media (max-width: 768px) {
	.list-of-sets__top {
		height: 76px;
		padding: 0 16px;
		box-shadow: none;
	}
}

.product-item .thumb {
	position: relative;
}

.product-item .thumb .card-countdown {
	height: 28px;
	padding: 0 10px;
	background: #C42D96;
	position: absolute;
	left: 0;
	bottom: 0;
	border-radius: 6px;
	display: flex;
	align-items: center;

	span {
		font-size: 12px;
		font-weight: 500;
		color: white;
	}
}
.mobile-only {
	display: block; /* Или другой стиль, который вам нужен */
}

@media (min-width: 768px) {
	.mobile-only {
		display: none;
	}
}

.fast-order-link-wrap {
	text-align:center;
	padding-top: 10px;
}
@media (max-width: 1023px) {
	.fast-order-link-wrap {
		position: relative;
		top: 25px
	}
	.product-item:hover .in-stock-delivery-wrap {
		opacity: 0;
	}
}
.fast-order-link {
	display: inline-block;
	color: #c42d96;
	text-decoration: underline;
	opacity: 0.9;
	font-size: 15px;
	line-height: 18px;
}
.fast-order-link:hover{
	text-decoration: none;
	opacity: 1;
}
#modalFastOrder .modal-box {
	width: 400px
}
#modalFastOrder .cart-wrap {
	padding: 20px;
}
#modalFastOrder .cart-wrap .fast-order {
	padding: 0;
}
.cart-wrap .fast-order::before {
	content: unset;
}
#modalFastOrder .cart-wrap .fast-order .d-flex {
	flex-direction: column;
}
#modalFastOrder .fast-order__wrapper {
	width: 100%;
}
#modalFastOrder .fast-order__wrapper .fast-order__phone {
	display: block;
}
#modalFastOrder .cart-wrap .fast-order .btn, .cart-wrap .fast-order .desc,
#modalFastOrder .cart-wrap .fast-order .input-wrap {
	max-width: 100%;
	width: 100%;
	margin: 0 0 20px;
}
#modalFastOrder .fast-order__wrapper.fast-order__wrapper--captcha .fast-order__phone {
	display: none;
}
#modalFastOrder .fast-order__wrapper.fast-order__wrapper--captcha .fast-order__captcha {
	flex-wrap: wrap;
}