@charset "UTF-8";
:root {
	--header-color: #222222;
	--header-background: #ffffff;
	--header-border-color: #979797;
}
html, body {
	margin: 0;
	padding: 0;
	min-height: 100%;
}
html{
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
*, *::before, *::after{
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
	outline: none;
}
body{
	font-family: 'Helvetica', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.2;
	color: #000000;
	padding: 0 calc(20px - (100vw - 100%)) 0 0;
}
img{
	max-width: 100%;
	max-height: 100%;
	height: auto;
}
svg{
	max-width: 100%;
	height: auto;
}
a {
	color: inherit;
	text-decoration: none;
	transition: all 0.1s;
}
.wrapper {
	min-height: 100%;
	display: flex;
	flex-direction: column;
}
.container {
	width: 100%;
	max-width: 1232px;
	margin: 0 auto;
	padding: 0 24px;
}
.overflow {
	overflow: hidden;
	position: relative;
	min-height: 100%;
	touch-action: none;
	-ms-touch-action: none;	
}
input,
textarea,
select,
button {
	font-family: 'Helvetica', sans-serif;
	font-weight: 400;
}
h1 {
	font-size: 40px;
	line-height: 1.2;
	margin: 0 0 40px;
	font-weight: 400;
}
.block-title {
	font-size: 40px;
	line-height: 1.2;
	font-weight: 400;	
	margin-bottom: 24px;
	text-align: center;
}
.block-title--animation {
	opacity: 0;
	-webkit-transform: translate(0,100px);
    transform: translate(0,100px);
	-webkit-transition-property: opacity,transform;
    transition-property: opacity,transform;
    -webkit-transition-duration: 2s;
    transition-duration: 2s;
    -webkit-transition-timing-function: cubic-bezier(.19,1,.22,1);
    transition-timing-function: cubic-bezier(.19,1,.22,1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.block-title--started {
	opacity: 1;
	-webkit-transform: none !important;
    transform: none !important;
}
.content {
	flex: 1 1 auto;
	position: relative;
	background-color: #ffffff;	
	padding-bottom: 64px;
	margin-top: 28px;
}
.index-page .content {
	margin-top: 0;
}
.btn {
	display: inline-block;
	padding: 12px 32px 13px;
	border: 1px solid #8DA099;
	color: #ffffff;
	text-align: center;
	font-family: Helvetica;
	font-size: 18px;
	line-height: 24px;
	letter-spacing: 0.18px;
	background-color: #8DA099;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	border-radius: 0;
}
.btn:hover {
	background-color: #758780;
	color: #ffffff;
}
.btn--light {
	background-color: transparent;
	border-color: #ffffff;
}
.btn--light:hover {
	background-color: #ffffff;
	color: #8DA099;
}
.btn--radius {
	padding: 8px 16px 9px;
	border-radius: 20px;
}
.btn--border {
	background: #ffffff;
	border: 1px silid #000000;
	color: #000000;
}
.btn--border:hover {
	background-color: #ffffff;
	color: #8DA099;
}
.top-banner {
	position: sticky;
	margin-top: -101px;
	overflow: hidden;
	top: 0;
	z-index: 0;
}
.image-overlay {
	position: relative;
}
.image-overlay::after {
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.05);
    z-index: 5	
}
.mobile-only {
	display: none; 
}	
ul.styled {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
ul.styled li {
	padding-left: 26px;
    position: relative;
    margin-bottom: 8px;
}
ul.styled li:before {
	content: '';
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 6px;
    left: 0;
    background-color: #8DA099;
    border-radius: 50%;	
}
ul.styled li:last-child {
	margin-bottom: 0;
}
ul.styled--dark li:before {
	 background-color: #000000;
}
.page-text ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.page-text ul li {
	padding-left: 26px;
    position: relative;
    margin-bottom: 8px;
}
.page-text ul li:before {
	content: '';
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 6px;
    left: 0;
    background-color: #8DA099;
    border-radius: 50%;	
}
.page-text ul li:last-child {
	margin-bottom: 0;
}
.page-text p {
	margin: 10px 0;
}
.phone-link,
.phone-link:hover {
	color: inherit;
	text-decoration: none;
}

@media(min-width: 1024px)
{
	a:hover {
		color: #8DA099;
		text-decoration: none;
	}
}

@media(max-width: 1023px)
{
	body {
		padding: 0;
	}
	h1 {
		margin-bottom: 32px;
	}	
}

@media(max-width: 980px)
{
	.top-banner {
		position: relative;
		margin-top: -46px;
	}
	.mobile-only {
		display: block; 
	}	
}

@media(max-width: 767px)
{
	.container {
		padding: 0 12px;
	}
	.block-title {
		font-size: 32px;
	}
}

@media(max-width: 480px)
{
	.block-title {
		font-size: 28px;
	}
}

/* ----------- Form --------------- */
.form-field {
	padding-bottom: 10px;
}
.form-field--error .form-input {
	border-color: #B6372F;
}
.form-field--error .form-input::placeholder,
.form-field--error .form-label {
	color: #B6372F;
}
.form-field--error::after {
	font-weight: 400;
	font-size: 12px;
	line-height: 14px;
	letter-spacing: 0.24px;
	color: #B6372F;
	display: block;
    content: 'Проверьте правильность заполнения поля';
}
.form-field__require .form-label:after {
	content: '*';
	display: inline-block;
	font-weight: 500;
	font-size: 14px;
	line-height: 17px;
	color: #B6372F;
	margin-left: 3px;
}
.form-label {
	display: block;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0.32px;
	margin-bottom: 2px;
}
.form-input {
	font-family: 'Helvetica', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	letter-spacing: 0.32px;
    color: #000000;
	width: 100%;
    border: 1px solid #979797;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
	padding: 8px 20px 10px;
}
.form-select {
	font-family: 'Helvetica', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	letter-spacing: 0.32px;
    color: #000000;
	width: 100%;
    border: 1px solid #979797;
    border-radius: 0;
	padding: 8px 20px 10px;	
}
.form-textarea {
	font-family: 'Helvetica', sans-serif;
	font-style: normal;
    font-weight: 400;
    padding: 8px 20px 10px;
	font-size: 16px;
	line-height: 26px;
	letter-spacing: 0.32px;
    color: #000000;
	width: 100%;
    border: 1px solid #979797;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
    border-radius: 0;
    resize: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
	font-family: 'Helvetica', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	letter-spacing: 0.32px;
	color: #979797;
}
.form-checkbox
{
	position:relative;
	display:inline-block;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0.28px;
	cursor:pointer;
	padding-left:26px;
	font-weight: normal;
	text-transform: none;
}
.form-checkbox input
{
	position:absolute;
	display:inline;
	left:-25px;
	width:auto;
	height:auto;
	cursor:pointer;
	opacity:0;
	display: none;
}
.form-checkbox:before
{
	display: block;
    position: absolute;
    content: '';
    width: 18px;
    height: 18px;
    top: 3px;
    left: 0;
	border: 1px solid #000000;
    background: #fff;
}
.form-checkbox.checked:before
{
	background: #fff url(../images/svg/check.svg) no-repeat center center;
}
.form-btn{
	border: none;
	appearance: none;
}
.error-msg {
	padding: 10px 10px 10px 60px;
	background: url(../images/svg/warning.svg) no-repeat 20px center;		
	color: #B6372F;
	margin: 10px 0;
	border: 1px solid #B6372F;
}
font.error-msg {
	display: block;
}

/* ----------- Hamburger ------------ */
.hamburger {
	position: relative;
	width: 24px;
	min-width: 24px;
	height: 16px;
}
.hamburger__line,
.hamburger__line:before,
.hamburger__line:after {
	transition-timing-function: cubic-bezier(.55,.055,.675,.19);
    transition-duration: .22s;
	position: absolute;
	width: 100%;
	height: 2px;
	transition-property: transform;
	background: #000000;
	background: var(--header-color);
}
.hamburger__line-white,
.hamburger__line-white:before,
.hamburger__line-white:after{
	background: #fff;
}
.hamburger__line {
	top: 50%;
	display: block;
}
.hamburger__line:before,
.hamburger__line:after {
	content: '';
	display: block;
}
.hamburger__line:before {
    top: -7px;
}
.hamburger__line:after {
    bottom: -7px;
}
.hamburger-collapse .hamburger__line {
	transition-timing-function: cubic-bezier(.55,.055,.675,.19);
    transition-duration: 75ms;
}
.hamburger-collapse .hamburger__line:before {
    transition: top 75ms ease .12s,opacity 75ms ease;	
}
.hamburger-collapse .hamburger__line:after {
    transition: bottom 75ms ease .12s,transform 75ms cubic-bezier(.55,.055,.675,.19);
}
.hamburger-collapse.active .hamburger__line {
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
    transform: rotate(45deg);	
}
.hamburger-collapse.active .hamburger__line:before {
    top: 0;
    transition: top 75ms ease,opacity 75ms ease .12s;
    opacity: 0;
}
.hamburger-collapse.active .hamburger__line:after {
    bottom: 0;
    transition: bottom 75ms ease,transform 75ms cubic-bezier(.215,.61,.355,1) .12s;
    transform: rotate(-90deg);
}
.header__catalog-open:hover .hamburger__line,
.header__catalog-open:hover .hamburger__line:before,
.header__catalog-open:hover .hamburger__line:after {
	background: #8DA099;
}

/* --------------------- header ------------------------- */
.header {
	background: #ffffff;
	background: var(--header-background);
	position: sticky;
	top: 0;
	z-index: 20;
	color: var(--header-color);
}
.header-transparent {
	--header-background: none;
}
.header-light {
	--header-color: #ffffff;
	--header-background: none;
	--header-border-color: #ffffff;
}
.header-fixed {
	--header-color: #222222;
	--header-background: #ffffff;
	--header-border-color: #979797;
}
.catalog-opened {
	--header-color: #ffffff;
	--header-background: none;
	--header-border-color: #ffffff;
}
.menu-opened {
	--header-color: #222222;
	--header-background: #ffffff;
}
.header svg {
	display: block;
}
.header__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0 12px;
	min-height: 60px;
	position: relative;
}
.header__top a {
	transition: none;
}
.header__top a:hover {
	color: inherit;
}
.header__phone {
	display: flex;
	align-items: center;
	cursor: pointer;
	position: relative;
	margin-right: auto;
}
.header__phone-icon path {
	stroke: currentColor;
}
.header__phone-arrow {
	display: block;
    content: '';
    width: 10px;
    height: 6px;
	margin-left: 8px;
}
.header__phone-arrow path {
	fill: currentColor;
}
.header__phone.opened .header__phone-arrow {
	transform: rotate(180deg);
}
.header__contacts {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
	margin-top: 7px;
    width: 227px;
    background: #ffffff;
	box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.10);
    padding: 17px 20px 27px;
	font-weight: 400;
	font-size: 13px;
	line-height: 17px;
	color: #222222;
    z-index: 10;
}
.header__phone.opened .header__contacts {
	display: block;
}
.header__contacts-number {
	display: inline-block;
	margin-bottom: 2px;
	color: #222;
	font-size: 18px;
	font-weight: 400;
	line-height: 22px;
}
.header__contacts-item {	
	margin-bottom: 13px;
}
.header__contacts-worktime {
	color: #979797;
	margin: 17px 0 14px;	
}
.header__contacts-recall {
	display: block;
	padding-left: 22px;
	background: url(../images/svg/phone.svg) no-repeat left center/16px auto;
}
.header__contacts-recall span {
	text-decoration: underline;
}
.header__contacts-recall:hover span {
	text-decoration: none;
}
.header__logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.header__logo-small {
	display: none;
}
.index-page .header__logo-small {
	display: block;
}
.index-page .header__logo-small + .header__logo-img {
	display: none;
}
.header__logo path {
	fill: currentColor;
}
.header__actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	margin-left: auto;
}
.header__action {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 24px;
	color: inherit;
	text-decoration: none;
	cursor: pointer;
}
.header__action path {
	fill: currentColor;
}
.header__action:first-child {
	margin-left: 0;
}
.header__action-icon {
	position: relative;
	width: 20px;
	height: 20px;
}
.header__action-count {
	display: block;
    position: absolute;
    top: -3px;
    right: -6px;
    background: #B6372F;
    border-radius: 50%;
    overflow: hidden;
	font-size: 9px;
	line-height: 14px;
	letter-spacing: -0.18px;
    min-width: 14px;
    height: 14px;
    text-align: center;
	color: #ffffff;
}
.header__action-count.empty {
	display: none;
}
.header__search {
	display: none;
	width: 220px;
	margin-left: 8px;
}
.header__search-action.active .header__search {
	display: block;
}
.header__search-input {
	width: 100%;
	border: none;
	border-bottom: 1px solid var(--header-border-color);
	font-weight: 300;
	font-size: 14px;
	line-height: 22px;
	color: var(--header-color);
	padding-bottom: 2px;
	background: none;
}
.header__search-input::placeholder {
	color: #979797;
}
.header__search-result {
	background: #ffffff;
}
.header__search-popup {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 450px;
    background: #fff;
	box-shadow: 0px 0px 20px rgb(0 0 0 / 25%);
    z-index: 10;
	color: #000000;
	margin-top: 5px;
}
.header__bottom {
	padding: 8px 0 10px;
	border-top: 1px solid var(--header-border-color);
}
.header__menu-list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
    margin: 0;
    padding: 0;
}
.header__menu-item {
    list-style: none;
    padding: 0;
}
.header__menu-link {
	display: inline-block;
	font-size: 18px;
	line-height: 22px;
	color: inherit;
}
.header__catalog-open {
	display: flex;
	align-items: center;
	gap: 10px;
}
.header__catalog {
	color: #ffffff;
	display: none;
}
.header__catalog.active {
	display: block;
}
.header__catalog-bg {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	background: #121212;
	backdrop-filter: blur(1px);
	opacity: 0.699999988079071;
	z-index: 15;
}
.header__catalog-inner {
	position: fixed;
	top: 105px;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 17;
	width: 100%;
	height: 100%;
	overflow: auto;
	padding-top: 70px;
}
.header__catalog-list {
	margin: 0;
	padding: 0;
	list-style: none;
	column-count: 3;
}
.header__catalog-item {
	padding: 0;
	margin-bottom: 64px;
}
.header__catalog-link {
	font-size: 30px;
	line-height: 30px;
	letter-spacing: 0.6px;
}
.mobile-hamburger {
	display: none;
	margin-right: 24px;
}

@media(max-width: 980px)
{
	.header__logo-small {
		display: block;
	}
	.header__logo-small + .header__logo-img {
		display: none;
	}
	.mobile-hamburger {
		display: block;
	}
	.header__top {
		min-height: 46px;
		padding: 6px 0 0;
	}
	.header__bottom {
		display: none;
	}
}

@media(max-width: 767px)
{
	.header__action-favorite, 
	.header__action-compare,
	.header__action-personal {
		display: none;
	}	
}

/* ---------------- Breadcrumb ------------------ */
.breadcrumb {
	margin-bottom: 32px;
}
.breadcrumb__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	letter-spacing: 0.32px;
	color: #979797;
}
.breadcrumb__link {
	position: relative;
	display: inline-block;
	font-size: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	margin-right: 8px;
	padding-right: 13px;
	color: inherit;
}
.breadcrumb__link:after{
	display: block;
	content: '';
	width: 5px;
	height: 8px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	background: url("../images/svg/breadcrumb-arrow.svg") no-repeat center;
}
.breadcrumb__text {
	display: inline-block;
}

@media(max-width: 767px)
{
	.breadcrumb__inner{
		font-weight: 400;
		font-size: 14px;
		line-height: 18px;
		letter-spacing: 0.28px;	
	}
}

/* -------------------- advantages-block ----------------- */
.advantages-block__list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 44px 64px;
}
.advantages-block__list--center {
	justify-content: center;
}

@media(max-width: 780px)
{
	.advantages-block__list {
		flex-wrap: wrap;
		justify-content: center;
	}
	.advantages-block__item {
		max-width: 30%;
		text-align: center;
	}
}

@media(max-width: 480px)
{
	.advantages-block {
		margin-bottom: 48px;
	}
	.advantages-block__item {
		width: 100%;
	}
}

/* --------------------- ipad-block ------------------------ */
.ipad-block {
    position: relative;
    display: block;
    pointer-events: none;
    will-change: transform;
    transform-style: preserve-3d;
    perspective-origin: 50% 50% !important;
    box-sizing: border-box;
    text-align: center;
    perspective: 1110px;
}
.ipad-block__img {
    will-change: transform;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(26deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    vertical-align: middle;
    z-index: 2;
    -o-object-fit: cover;
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    max-height: 100%;
}
.ipad-block__content {
	position: absolute;
    -o-object-fit: cover;
    object-fit: cover;
    width: 89%;
	height: 86%;
    left: 0px;
    top: 0px;
    right: 0px;
    display: block;
    z-index: 2;
    margin-right: auto;
    margin-left: auto;
    transform-style: preserve-3d;
	margin-top: 5%;
}
.ipad-block__content-img {
    will-change: transform;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(26deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    vertical-align: middle;
    z-index: 2;
    -o-object-fit: cover;
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    max-height: 100%;
    left: 0%;
	top: -2px;
    position: absolute;	
}

@media(max-width: 1023px)
{
	.ipad-block {
		perspective: none;
	}
	.ipad-block__content {
		width: 87%;
	}
}

/* -------------------- index-banner ------------------------ */
.index-banner {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	max-height: 700px;
	color: #ffffff;
}
.index-banner__image {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
}
.index-banner__image img {
	display: block;
	object-fit: cover;
    object-position: top center;
	width: 100%;
	height: 100%;
}
.index-banner__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	text-align: center;
}
.index-banner__logo {
	margin: 0 auto 50px;
	max-width: 80%;
}
.index-banner__btns {
	display: flex;
	flex-wrap: wrap;
	gap: 24px 48px;
	justify-content: center;
}
.index-banner__btn:hover {
	background: rgba(255, 255, 255, 0.40);
	color: #ffffff;
}
.index-banner__link {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: block;
	z-index: 3;
}

@supports (-webkit-touch-callout: none) {
	.index-banner {
		height: -webkit-fill-available;
	}
}

@media(max-width: 980px)
{
	.index-banner__logo {
		margin-bottom: 100px;
		max-width: 75%;
	}
	.index-banner__btns {
		gap: 24px 30px;
	}
}

@media(max-width: 480px)
{
	.index-banner__logo {
		margin-bottom: 80px;
		max-width: 100%;
	}	
}

/* --------------------- index-catalog ---------------- */
.index-catalog {
	margin-top: 64px;
	margin-bottom: 28px;
}
.index-catalog__inner {
	display: flex;
	gap: 16px;
}
.index-catalog__item {
	width: 384px;
	display: flex;
	flex-direction: column;
}
.index-catalog__preview {
	margin-bottom: 16px;
	height: 400px;
}
.index-catalog__img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.index-catalog__name {
	font-size: 20px;
	line-height: 26px;
}

@media(max-width: 1184px)
{
	.index-catalog {
		max-width: 1184px;
		padding: 0 24px;
	}
}

@media(max-width: 980px)
{
	.index-catalog {
		margin: 48px 0 50px;
	}
	.index-catalog__item {
		width: 290px;
	}
	.index-catalog__preview {
		height: 305px;
	}
}

@media(max-width: 767px)
{
	.index-catalog {
		margin-top: 40px;
		padding: 0 12px;
	}
}

/* ------------------- index-collections ----------------- */
.index-collections {
	margin-bottom: 66px;
}
.index-collections__inner {
	display: flex;
	gap: 15px;
}
.index-collections__item {
	width: 284px;
	display: flex;
	flex-direction: column;
}
.index-collections__preview {
	margin-bottom: 16px;
	height: 200px;
}
.index-collections__img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.index-collections__name {
	font-size: 20px;
	line-height: 20px;
	text-transform: uppercase;
}

@media(max-width: 1184px)
{
	.index-collections {
		max-width: 1184px;
		padding: 0 24px;
	}
}

@media(max-width: 980px)
{
	.index-collections__item {
		width: 230px;
	}
	.index-collections__preview {
		height: 160px;
	}
}

@media(max-width: 767px)
{
	.index-collections {
		margin-bottom: 48px;
		padding: 0 12px;
	}
}

/* ------------------- owl-nav ---------------------- */

.owl-nav {
    width: 100%;
    max-width: 1184px;
    margin: 0 auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
	position: absolute;
	width: 40px;
	height: 40px;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(../images/svg/slider-arrow.svg);
	background-color: rgba(255, 255, 255, 0.52);
	backdrop-filter: blur(0.5px);
	border-radius: 50%;
	top: 50%;
	margin-top: -20px;
	text-indent: -9999px;
	overflow: hidden;
}
.owl-carousel .owl-nav .owl-prev {
	left: -20px;
}
.owl-carousel .owl-nav .owl-next {
	right: -20px;
	transform: rotate(180deg);
}
.owl-carousel .owl-nav .owl-prev:hover,
.owl-carousel .owl-nav .owl-next:hover {
	background-color: #ffffff;	
}
/*.index-video__slider.owl-carousel .owl-nav .owl-prev {
	left: 24px;
}
.index-video__slider.owl-carousel .owl-nav .owl-next {
	right: 24px;
}*/
.catalog-list--slider.owl-carousel .owl-nav .owl-prev {
	left: 10px;
}
.catalog-list--slider.owl-carousel .owl-nav .owl-next {
	right: 10px;
}

@media(max-width: 767px)
{
	.owl-carousel .owl-nav .owl-prev {
		left: -10px;
	}
	.owl-carousel .owl-nav .owl-next {
		right: -10px;
	}
}

/* --------------------- index-info ----------------------- */
.index-info {
	margin-bottom: 148px;
	background-color: #F2F2F2;
	padding: 30px 0;
}
.index-info__inner {
	display: flex;
	position: relative;
	gap: 12px;
}
.index-info__left {
	width: 40%;
}
.index-info__title {
	font-size: 40px;
	line-height: 40px;
	margin-bottom: 24px;	
}
.index-info__desc {
	font-size: 20px;
	color: #616161;
	margin-bottom: 24px;
}
.index-info__right {
	margin-bottom: -102px;
	width: calc(60% - 12px);
}


@media(max-width: 980px)
{
	.index-info {
		margin-bottom: 348px;
		padding: 40px 0 0;
	}
	.index-info__inner {
		display: block;
	}
	.index-info__left,
	.index-info__right {
		width: 100%;
		margin: 0;
		text-align: center;
	}
	.index-info__left {
		margin-bottom: 40px;
	}
	.index-info__right {
		margin-bottom: -294px;
	}
}

@media(max-width: 480px)
{
	.index-info {
		margin-bottom: 164px;
		padding: 30px 0 0;
	}
	.index-info__right {
		margin-bottom: -120px;
	}
	.index-info__title {
		font-size: 32px;
		line-height: 36px;
		margin-bottom: 20px;
	}
	.index-info__desc {
		margin-bottom: 20px;
	}
}

/* --------------------- index-advantages ------------------ */
.index-advantages {
	margin-bottom: 74px;
}

@media(max-width: 780px)
{
	.index-advantages {
		margin-bottom: 55px;
	}
}

/* --------------------- index-about -------------------- */
.index-about {
	margin-bottom: 64px;
}
.index-about__inner {
	position: relative;
	padding-left: 42%;
}
.index-about__info {
	padding-left: 94px;
	margin-bottom: 60px;
}
.index-about__title {
	color: #000000;
	font-size: 40px;
	line-height: 45px;
	margin-bottom: 15px;
}
.index-about__text {
	color: #616161;
	font-family: Helvetica;
	font-size: 20px;
	line-height: 25px;
	letter-spacing: -0.2px;
	margin-bottom: 15px;
}
.index-about__images {
	display: flex;
	align-items: flex-start;
}
.index-about__big-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 41%;
}
.index-about__small-images {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

@media(max-width: 980px)
{
	.index-about {
		margin-bottom: 48px;
	}
	.index-about__inner {
		position: relative;
		padding-left: 0;
	}	
	.index-about__info {
		padding-left: 0;
		margin-bottom: 24px;
		text-align: center;
	}
	.index-about__text {
		width: 100% !important;
	}
	.index-about__images {
		align-items: stretch;
	}
	.index-about__big-image {
		position: static;
		width: 57%;
	}
	.index-about__big-image img {
		height: 100%;
		object-fit: cover;
	}
	.index-about__small-images {
		display: block;
		width: calc(43% - 17px);
		margin-left: 17px;
	}
	.index-about__small-image {
		width: 100%;
		margin-bottom: 17px;
	}
	.index-about__small-image:last-child {
		margin-bottom: 0;
	}
	.index-about__small-image img {
		display: block;
		width: 100%;
		height: 70%;
		object-fit: cover;
	}
}

@media(max-width: 480px)
{
	.index-about__title {
		font-size: 32px;
		line-height: 36px;
	}
	.index-about__info {
		margin-bottom: 48px;
	}
	.index-about__text {
		font-size: 18px;
		line-height: 24px;
		letter-spacing: -0.18px;		
	}
	.index-about__big-image {
		width: 100%;
	}
	.index-about__big-image img {
		height: auto;
	}	
	.index-about__small-images {
		display: none;
	}
}

/* -------------------- index-catalog -------------------- */
.index-popular {
	margin-bottom: 64px;
	position: relative;
	background-color: #ffffff;
}
.index-popular__info {
	text-align: center;
	color: #979797;
	font-size: 18px;
	line-height: 22px;
	width: 85%;
	margin: 0 auto 15px;
}
.index-popular__slider {
	margin-bottom: 24px;
}
.index-popular__bottom {
	text-align: center;
}
.index-popular__slider {
	display: flex;
	align-items: center;
	justify-content: center;
}
.flickity-viewport {
    width:100%;
}
.index-popular__slider:not(.flickity-enabled) .flickity-viewport,
.index-popular__slider:not(.flickity-enabled) .flickity-slider,
.index-popular__slider:not(.flickity-enabled) .index-popular__item {
    width: 100%
}
.index-popular__item {
	width: 25%;
	color: #000000;
	padding-bottom: 15px;
	transition: opacity 0.1s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);	
}
.index-popular__item-inner {
	transition: opacity 0.05s !important;
}
.index-popular__effects {
	transform: scale(0.85);
	transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.is-selected .index-popular__effects {
    transform: scale(1);
}
.index-popular__item-img {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
	height: 310px;
	padding: 15px 0;
}
/*.index-popular__item-img img {
	max-width: 280px;
}*/
.index-popular__item-info {
	transition: opacity 0.1s cubic-bezier(0.165, 0.84, 0.44, 1) !important;	
}
.index-popular__item-name {
	text-align: center;
	font-size: 22px;
	font-weight: 700;
	line-height: 25px;
	margin-bottom: 8px;
}
.index-popular__item-line {
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px; /* 125% */
	text-transform: uppercase;	
}

@media(max-width: 1024px)
{
	.index-popular__info {
		width: 100%;
		margin-bottom: 22px;
	}
	.index-popular__item-img {
		height: 250px;
	}
}

@media(max-width: 767px)
{
	.index-popular__item {
		width: 100%;
	}
	.index-popular__item-name {
		font-size: 18px;
		line-height: 24px;
	}
}

/* -------------------- index-video ----------------------- */
.index-video {
	margin-bottom: 64px;
}
.index-video__item {
	display: none;
	width: 684px;
}
.index-video__item:first-child {
	display: block;
}

@media(max-width: 980px)
{
	.index-video__item {
		width: 596px;
	}
}

@media(max-width: 767px)
{
	.index-video {
		max-width: 100%;
		padding: 0 12px;
		margin-bottom: 48px;
	}	
}

@media(max-width: 600px)
{
	.index-video__item {
		width: auto;
	}	
}

/* --------------------- mobile-menu ----------------------- */
.mobile-menu {
	display: none;
	background-color: #ffffff;
	position: fixed;
	top: 45px;
	bottom: 0;
	left: 0;
	width: 100%;
	/* height: calc(100% - 45px); */
	overflow-y: auto;
	z-index: 20;
	color: #000000;
	-webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: translateX .15s;
    -o-transition: translateX .15s;
    transition: translateX .15s;
	-webkit-overflow-scrolling: touch;
}
.mobile-menu.active {
	-webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);	
}
.mobile-menu__inner {
	padding: 40px 24px 24px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100%;	
}
.mobile-menu__nav {
	flex: 1 1 auto;
	position: relative;
}
.mobile-menu__list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.mobile-menu__item {
	border-bottom: 1px solid #D9D9D9;
}
.mobile-menu__item:last-child {
	border-bottom: 0;
}
.mobile-menu__link {
	display: block;
	padding: 12px 0;
	letter-spacing: 0.32px;
}
.mobile-menu__parent {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.mobile-menu__parent::after {
	content: '';
	display: block;
	width: 6px;
	height: 10px;
	background: url('../images/svg/menu-arrow.svg') no-repeat center;
}
.mobile-menu__catalog {
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
	transform: translateX(-120%);
    transition: .35s;
	background: #ffffff;
}
.mobile-menu__catalog.active {
	transform: translateX(0);
}
.mobile-menu__submenu {
	margin: 0;
	padding: 0;
	list-style: none;
}
.mobile-menu__back {
	display: flex;
	margin-bottom: 16px;
	align-items: center;
	font-size: 18px;
	line-height: 22px;
}
.mobile-menu__back:before {
	content: '';
	display: block;
	width: 6px;
	height: 10px;
	background: url(../images/svg/menu-arrow.svg) no-repeat center;
	transform: rotate(180deg);
	margin-right: 12px;
}
.mobile-menu__footer {
	margin-top: 50px;
	border-top: 1px solid #8DA099;
	color: #8DA099;
	font-size: 14px;
	line-height: 1.2;
	display: flex;
	justify-content: space-between;
	padding-top: 28px;
}
.mobile-menu__footer-left {
	margin-right: 20px;
}
.mobile-menu__footer-copyright {
	margin-bottom: 24px;
}
.mobile-menu__footer-link {
	display: block;
	text-decoration: underline;
	color: inherit;
	margin-bottom: 5px;
}
.mobile-menu__footer-link:hover {
	text-decoration: none;
	color: inherit;
}
.mobile-menu__footer-link:last-child {
	margin-bottom: 0;
}

@media(max-width: 980px)
{
	.mobile-menu {
		display: block;
	}
}

@media(max-width: 767px)
{
	.mobile-menu__inner {
		padding: 40px 12px 24px;
	}	
}

@media(max-width: 580px)
{
	.mobile-menu__footer {
		padding-top: 24px;
		flex-wrap: wrap;
	}
	.mobile-menu__footer-left {
		width: 100%;
		margin-bottom: 24px;
		text-align: center;
	}
	.mobile-menu__footer-right {
		width: 100%;
		flex-direction: row;
		justify-content: space-between;
	}
	.mobile-menu__footer-socials .socials-list {
		justify-content: center;
	}
}

@media(max-width: 360px)
{
	.mobile-menu__footer-right {
		display: block;
	}
	.mobile-menu__footer-link {
		display: block;
		margin-bottom: 10px;
	}
	.mobile-menu__footer-link:last-child {
		margin-bottom: 0;
	}
}

.catalog__top {
	display: flex;
	justify-content: space-between;
	font-size: 18px;
	font-weight: 300;
	line-height: 18px;
	letter-spacing: 0.36px;	
	margin-bottom: 32px;
}
.catalog__filter-open {
	display: flex;
	align-items: flex-start;
	cursor: pointer;
}
.catalog__filter-open:hover {
	color: #8DA099;
}
.catalog__filter-open svg {
	display: inline-block;
	margin-right: 8px;
}
.catalog__filter-open svg path {
	fill: currentColor;
}
.catalog__sort {
	position: relative;
}
.catalog__sort-name {
	display: flex;
	cursor: pointer;
}
.catalog__sort-name:hover {
	color: #8DA099;
}
.catalog__sort-name svg {
	display: inline-block;
	margin-left: 8px;
}
.catalog__sort-name svg path {
	fill: currentColor;
}
.catalog__sort.active .catalog__sort-name svg {
	transform: rotate(180deg);
}
.catalog__sort-name::before {
	content: 'Сортировать по:';
	display: inline-block;
	margin-right: 5px;
}
.catalog__sort-params {
    display: none;
    width: 100%;
    position: absolute;
    left: 0;
    top: 25px;
    padding: 16px 32px;
	background: #FFF;
	box-shadow: 0px 5px 20px 0px rgba(51, 51, 51, 0.10);
    z-index: 15;
    margin-top: 8px;
}
.catalog__sort.active .catalog__sort-params {
	display: block;
}
.catalog__sort-list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.catalog__sort-param {
	margin-bottom: 14px;
}
.catalog__sort-param:last-child {
	margin-bottom: 0;
}
.catalog__sort-link {
	display: block;
	text-decoration: none;
	font-weight: 300;
	font-size: 16px;
	line-height: 18px;	
}
.catalog__sort-link.active {
	color: #8DA099;
	font-weight: bold;
}
.catalog__sort-link font {
	display: block;
}

@media(max-width: 767px)
{
	.catalog__sort-name::before {
		content: 'По';
	}
	.catalog__sort-params {
		min-width: 280px;
		right: 0;
		left: auto;
	}
}

/* ------------------ catalog-list ------------------- */
.catalog-list {
	display: grid;
   	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 32px 16px;
    gap: 32px 16px;
}
.catalog__main-list {
	margin-bottom: 40px;
}
.catalog__section-desc {
	margin: 40px 0 0;
}
.catalog-item {
	display: flex;
	flex-direction: column;
	position: relative;
	background: #ffffff;
}
.catalog-item__remove {
    display: block;
    width: 24px;
    height: 24px;
    background: url(../images/svg/close.svg) no-repeat center / 16px auto;
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 7;
}
.catalog-item__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	padding: 6px 6px 0;
	top: 0; 
	left: 0;
	width: 100%;
	z-index: 12;
}
.catalog-item__labels {
    display: flex;
    flex-wrap: wrap;
	margin-right: 10px;
	gap: 5px;
}
.catalog-item__label {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFF;
	font-size: 10px;
	font-weight: 400;
	text-transform: uppercase;
	border: 1px solid #B6372F;
	color: #ffffff;
	background-color: #B6372F;
	text-decoration: none;
	padding: 7px 2px;
	min-width: 30px;
	min-height: 30px;
}
.catalog-item__label:hover {
	color: #ffffff;
}
.catalog-item__actions {
	display: flex;
	gap: 16px;
}
.catalog-item__action {
	width: 24px;
	height: 24px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.catalog-item__compare {
	background-image: url(../images/svg/item-compare.svg);
}
.catalog-item__action.in-compare {
	background-image: url(../images/svg/item-compare-active.svg);
}
.catalog-item__favorite {
	background-image: url(../images/svg/item-favorite.svg);
}
.catalog-item__action.in-favorite {
	background-image: url(../images/svg/item-favorite-active.svg);
}
.catalog-item__img-wrap {
	position: relative;
	margin-bottom: 8px;
	padding-top: 125%;
}
.catalog-item__img {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.catalog-item__img img {
	display: inline-block;
    vertical-align: middle;
	width: 100%;
	height: 100%;
	object-fit: cover;	
}
.catalog-item__name {
	display: block;
	font-size: 16px;
	line-height: 20px;
	margin-bottom: 3px;
	flex-grow: 1;
}
.catalog-item__prices {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
	flex-wrap: wrap;
}
.catalog-item__price {
	white-space: nowrap;
}
.catalog-item__old-price {
	font-size: 14px;
	text-decoration-line: line-through;
	color: #8DA099;
	white-space: nowrap;
	margin-left: 10px;
}
.catalog-item__colors {
	display: flex;
	align-items: center;
	gap: 12px;
}
.catalog-item__color {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 12px;
	height: 12px;
	border: 1px solid transparent;
	border-radius: 50%;
}
.catalog-item__color.active {
	border-color: #979797;
}
.catalog-item__color span {
	display: block;
	background-color: #ffffff;
	border-radius: 50%;
	border: 1px solid #D9D9D9;
	width: 8px;
	height: 8px;
}
.catalog-item__preview-images {
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;	
}
.catalog-item__preview-item {
	height: 100%;
	flex: 1 1 auto;
}
.catalog-item__preview-dots {
    height: 2px;
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    position: absolute;
    bottom: 6px;
    left: 0;
	padding: 0 6px;
	z-index: 10;
}
.catalog-item__preview-dot {
    background: #D9D9D9;
	flex: 1 1 20%;
    height: 2px;
    margin-right: 4px;
}
.catalog-item__preview-dot:last-child {
	margin-right: 0;
}
.catalog-item__preview-dot--active {
	background: #8DA099;
}
.catalog-item__buy {
	display: none;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 12;
	background: rgba(255, 255, 255, 0.70);
	color: #8DA099;
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	text-transform: uppercase;
	padding: 16px 10px;
	align-items: center;
	justify-content: center;
}
.catalog-item__buy::before {
	display: block;
    content: '';
    background: url(../images/svg/btn-cart.svg) no-repeat center/20px auto;
    width: 20px;
    height: 22px;
    margin-right: 10px;	
}
.catalog-item__buy.in-basket {
	background: rgba(141, 160, 153, 0.70);
	color: #ffffff;
}
.catalog-item__buy.in-basket::before {
	width: 20px;
	height: 20px;
	background: url(../images/svg/btn-check.svg) no-repeat center;
}
.catalog__filter {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	height: 100%;
	width: 478px;
	background-color: #ffffff;
	z-index: 25;
	transition: 0.5s;
	transform: translateX(-100%);
}
.catalog__filter.opened {
	transform: translateX(0)
}
.catalog__filter-overlay {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: rgba(18, 18, 18, 0.50);
	z-index: 23;
}
.catalog__filter-overlay.showed {
	display: block;
}
.catalog__filter-wrap {
	padding-left: 55px;
	padding-right: 55px;
}
.catalog__filter-top {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding-top: 40px;
	display: flex;
	z-index: 2;
}
.catalog__filter-close {
	width: 22px;
	height: 22px;
	background: url(../images/svg/close.svg) no-repeat center / 22px auto;
	margin-left: auto;
}
.catalog__filter-content {
	width: 100%;
	height: 100%;
	position: relative;
	padding-top: 120px;
}
.catalog__filter-items {
	width: 100%;
    position: relative;
    overflow-x: auto;	
	height: calc(100% - 91px);
	scrollbar-color: #8DA099 #ffffff;
    scrollbar-width: thin
}
.catalog__filter-items::-webkit-scrollbar {
    width: 2px;
    background-color: #fff
}
.catalog__filter-items::-webkit-scrollbar-thumb {
    background-color: #8DA099;
    border-radius: 9em;
    box-shadow: none
}
.catalog__filter-items::-webkit-scrollbar-thumb:hover {
    background-color: #8DA099;
}
.catalog__filter-items::-webkit-scrollbar-button:vertical:start:decrement,
.catalog__filter-items::-webkit-scrollbar-button:vertical:end:increment,
.catalog__filter-items::-webkit-scrollbar-button:horizontal:start:decrement,
.catalog__filter-items::-webkit-scrollbar-button:horizontal:end:increment {
    display: none
}
.catalog__filter-bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 3;
	padding: 0 55px 40px;
}
.catalog__filter-apply {
	display: none;
	position: relative;
}
.catalog__filter-apply.active {
	display: block;
}
.catalog__filter-loader {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: #8DA099;
	z-index: 2;
	align-items: center;
	justify-content: center;
}
.catalog__filter-apply--loading {
	cursor: default;
}
.catalog__filter-apply--loading .catalog__filter-loader {
	display: flex;
}
.catalog__filter-btn {
	font-size: 18px;
	line-height: 18px;
	letter-spacing: 0.36px;
	display: flex;
}
.catalog__filter-btn svg {
	margin-right: 8px;
}
.catalog__filter-btn svg path {
	fill: #8DA099;
}
.catalog__filter-reset {
	display: none;
	margin-left: 24px;
	letter-spacing: 0.32px;
	color: #8DA099;
	text-decoration: none;
	border-bottom: 1px dashed #8DA099;
}
.catalog__filter-reset.active {
	display: block;
}
.catalog__filter-reset:hover {
	border-bottom-color: transparent;
}
.catalog__filter-item {
	padding: 12px 0;
	border-bottom: 1px solid #D9D9D9;
	letter-spacing: 0.32px;
	cursor: pointer;
}
.catalog__filter-item:last-child {
	border-bottom: 0;
}
.catalog__filter-name {
	display: flex;
	justify-content: space-between;
	position: relative;
	padding-right: 12px;
}
.catalog__filter-name:after{
    display: block;
    content: '';
    width: 10px;
    height: 6px;
    position: absolute;
    top: 50%;
	right: 0;
    margin-top: -3px;
    background: url(../images/svg/arrow-bottom.svg) no-repeat center / 10px 6px;
    transform: rotate(-90deg);
    transition: transform 0.2s;	
}
.filter-popup {
	position: fixed;
	top: 0;
	left: 0;
	transform: translateX(-100%);
	bottom: 0;
	width: 478px;
	height: 100%;
	background: #ffffff;
	z-index: 3;
	transition: 0.5s;
}
.filter-popup.opened {
	transform: translateX(0);
}
.filter-popup__top {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
	z-index: 2;
    padding-top: 40px;
    display: flex;
	justify-content: space-between;
}
.filter-popup__close {
	width: 22px;
	height: 22px;
	background: url(../images/svg/close.svg) no-repeat center / 22px auto;	
}
.filter-popup__content {
	width: 100%;
    height: 100%;
    position: relative;
    padding-top: 120px;	
}
.filter-popup__name {
	position: relative;
	font-size: 18px;
	font-weight: 400;
	line-height: 18px;
	letter-spacing: 0.36px;
	padding-left: 34px;
}
.filter-popup__name::before {
	display: block;
    content: '';
    width: 10px;
    height: 6px;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -3px;
    background: url(../images/svg/arrow-bottom.svg) no-repeat center / 10px 6px;
    transform: rotate(90deg);
    transition: transform 0.2s;	
}
.catalog__filter-list {
	width: 100%;
    position: relative;
    overflow-x: auto;
    height: calc(100% - 91px);
    scrollbar-color: #8DA099 #ffffff;
    scrollbar-width: thin;	
}
.catalog__filter-list::-webkit-scrollbar {
    width: 2px;
    background-color: #fff
}
.catalog__filter-list::-webkit-scrollbar-thumb {
    background-color: #8DA099;
    border-radius: 9em;
    box-shadow: none
}
.catalog__filter-list::-webkit-scrollbar-thumb:hover {
    background-color: #8DA099;
}
.catalog__filter-list::-webkit-scrollbar-button:vertical:start:decrement,
.catalog__filter-list::-webkit-scrollbar-button:vertical:end:increment,
.catalog__filter-list::-webkit-scrollbar-button:horizontal:start:decrement,
.catalog__filter-list::-webkit-scrollbar-button:horizontal:end:increment {
    display: none
}
.catalog__filter-link {
	display: flex;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid #D9D9D9;
	letter-spacing: 0.32px;
	cursor: pointer;
	padding-right: 12px;
	position: relative;
}
.catalog__filter-link:last-child {
	border-bottom: 0;
}
.catalog__filter-link.active:after{
    display: block;
    content: '';
    width: 14px;
    height: 14px;
    position: absolute;
    top: 50%;
	right: 0;
    margin-top: -7px;
    background: url(../images/svg/filter-check.svg) no-repeat center;
}
.catalog__filter-link.disabled {
    opacity: .4;
    cursor: default;
}
.catalog__filter-link.disabled:hover {
	color: inherit;
}
.catalog__filter-color {
	width: 8px;
	height: 8px;
	display: block;
	border: 1px solid #D9D9D9;
	border-radius: 50%;
	background-position: center;
	background-repeat: no-repeat;
	margin-right: 10px;
}
.catalog__filter-prop-active {
	font-size: 12px;
	color: #D9D9D9;
}
.catalog__filter-item-number  .catalog__filter-name {
	margin-bottom: 15px;
	padding-right: 0;
}
.catalog__filter-item-number .catalog__filter-name::after {
	display: none;
}
.catalog-range {
	margin-bottom: 5px;
}
.catalog-range__values {
	display: none;
}
.catalog-range__labels {
	color: #979797;
	white-space: nowrap;
	font-size: 14px;
	line-height: 18px;
}
.filter-selected__inner {
    display: flex;
	align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.filter-selected__item {
	display: flex;
    align-items: center;
    background: #f7f7f7;
    padding: 8px 36px 7px 10px;
	font-size: 14px;
    line-height: 20px;
    letter-spacing: .02em;
	position: relative;
}
.filter-selected__color {
	display: block;
	width: 15px;
	height: 15px;
	margin-left: 5px;
}
.filter-selected__reset {
	display: block;
    width: 36px;
    height: 36px;
    cursor: pointer;
    background: url(../images/svg/close.svg) no-repeat center / 10px auto;
    position: absolute;
	top: 0;
	right: 0;
}
.filter-selected__clear {
	font-size: 14px;
	border-bottom: 1px dashed #000000;
	text-decoration: none;
}
.filter-selected__clear:hover {
	text-decoration: none;
	border-bottom-color: transparent;
}

@media(min-width: 1024px)
{
	.catalog-item:hover .catalog-item__buy {
		display: flex;
	}
}

@media(max-width: 767px)
{
	.catalog-list {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 32px 12px;
		gap: 32px 12px;
	}
	.catalog__filter {
		width: 100%;
	}
	.catalog__filter-wrap {
		padding-left: 12px;
		padding-right: 12px;
	}	
	.catalog__filter-top {
		padding-top: 45px;
	}
	.catalog__filter-bottom {
		padding: 0 12px 40px;
	}
	.filter-popup {
		width: 100%;
	}
	.filter-popup__top {
		padding-top: 45px;
	}
}

@media(max-width: 480px)
{
	.catalog-item:nth-child(5n+1) {
		grid-column: 1 / -1;
	}
	.catalog-item:not(:nth-child(5n+1)) .catalog-item__label {
		min-width: 24px;
		min-height: 24px;
	}
	.catalog-item:not(:nth-child(5n+1)) .catalog-item__actions {
		gap: 8px;
	}
}

/* ----------- collection-banner ----------- */
.collection-banner {
	position: relative;
	width: 100%;
}
.collection-banner__name {
	position: absolute;
	top: 130px;
	left: 0;
	right: 0;
	width: 100%;
}
.collection-banner__image img {
    display: block;
    object-fit: cover;
    object-position: top center;
    width: 100%;
    height: 100%;
	min-height: 220px;
}
@media(max-width: 980px)
{
	.collection-banner__name {
		top: 58px;
	}
}

/* ----------- catalog-card --------------- */
.catalog-card__labels {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 16px;
    gap: 8px;
    color: #8DA099;
}
.catalog-card__label {
	font-size: 11px;
	text-align: center;
	text-transform: uppercase;
	color: #8DA099;
	padding: 4px 8px;
	border: 1px solid #8DA099;
	background-color: #ffffff;
	text-decoration: none;
	letter-spacing: 0.22px;
}
/*.catalog-card__label:hover {
	color: inherit;
}*/
.catalog-card__label--hurry {
	border: 1px solid #B6372F;
	background:  #B6372F;
	color: #ffffff;
}
.catalog-card__label--new {
	border: 1px solid #B6372F;
	background:  #B6372F;
	color: #ffffff;	
}
.catalog-card__column {
	margin-bottom: 45px;
}
.catalog-card__column::after {
	content: '';
	display: block;
	clear: both;
}
.catalog-card__top {
	width: 49%;
	float: right;
}
.catalog-card__title {
	margin-bottom: 0;
}
.catalog-card__art {
	font-size: 14px;
	letter-spacing: 0.28px;
	margin-bottom: 10px;
}
.catalog-card__gallery {
	width: calc(51% - 116px);
	max-width: 484px;
	margin-right: 116px;
	float: left;
}
.catalog-card__preview {
	position: relative;
	padding-top: 125%;
	margin-bottom: 24px;
	cursor: pointer;
}
.catalog-card__image {
	display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.catalog-card__image img {
	display: inline-block;
    vertical-align: middle;
    width: 100%;
    height: 100%;
    object-fit: cover;	
}
.catalog-card__thumbs {
	display: grid;
    grid-template-columns: repeat(5, 1fr);
	gap: 8px 16px;
}
.catalog-card__thumbs-item {
	position: relative;
}
.catalog-card__thumbs-item::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9;
	opacity: 0.5;
	background-color: #ffffff;
}
.catalog-card__thumbs-item.current::before {
	display: none;
}
.catalog-card__thumbs-inner {
	padding-top: 123%;
	position: relative;
}
.catalog-card__thumbs-img {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;	
}
.catalog-card__info {
	width: 49%;
	float: right;	
}
.catalog-card__info-label {
	font-size: 18px;
	font-weight: 700;
	line-height: 22px;
	margin-bottom: 12px;	
}
.catalog-card__info-block {
	margin-bottom: 30px;
}
.catalog-card__options-list {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}
.catalog-card__option {
	width: 84px;
	height: 84px;
	padding: 5px;
	border: 1px solid transparent;
	display: flex;
	align-items: center;
	justify-content: center;
}
.catalog-card__option.active {
	border-color: #8DA099;
}
.catalog-card__prices {
	display: flex;
	align-items: center;
}
.catalog-card__price {
	font-size: 40px;
	font-weight: 400;
	line-height: 44px;
	white-space: nowrap;
}
.catalog-card__old-price {
	font-weight: 500;
	font-size: 18px;
    line-height: 22px;
	letter-spacing: 0.02em;
	text-decoration-line: line-through;
	color: #8DA099;
	white-space: nowrap;
	margin-left: 20px;
}
.catalog-card__action {
	display: flex;
    gap: 16px;
    flex-wrap: wrap;
	max-width: 430px;	
}
.catalog-card__action svg {
	display: block;
	min-width: 24px;
	height: auto;
}
.catalog-card__action svg path {
	fill: currentColor;
}
.catalog-card__buy {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 700;
	line-height: 22px;
	letter-spacing: 0.32px;
	text-transform: uppercase;	
}
.catalog-card__favorite,
.catalog-card__compare {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border: 1px solid #8DA099;
	color: #8DA099;	
}
.catalog-card__favorite.in-favorite,
.catalog-card__compare.in-compare {
	color: #ffffff;
	background-color: #8DA099;
}
.catalog-card__callback {
	width: 100%;
}
.catalog-card__callback-link {
	color: #758780;
	text-decoration: underline;
}
.catalog-card__marketplaces {
	margin-bottom: 40px;
}
.catalog-card__marketplaces-list {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}
.catalog-card__marketplace {
	background-repeat: no-repeat;
	background-size: cover;
}
.catalog-card__marketplace-hover {
	display: block;
	visibility: hidden;
	opacity: 0;
	transition: all 0.2s;
}
.catalog-card__marketplace:hover .catalog-card__marketplace-hover {
	visibility: visible;
	opacity: 1;
}
.catalog-card__expand-label {
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	cursor: pointer;
}
.catalog-card__expand-label::after {
	content: '';
	display: block;
	margin-left: 10px;
	width: 10px;
	height: 6px;
	background: url(../images/svg/arrow-bottom.svg) no-repeat center / 10px auto;
	transition: all .2s ease-in-out;
}
.catalog-card__expand-label.active::after {
	transform: rotate(-180deg);
}
.catalog-card__expand-wrap {
	display: none;
}
.catalog-card__description {
	font-size: 14px;
	line-height: 20px;
}
.catalog-card__description p:first-child {
	margin-top: 0;
}
.catalog-card__location {
	display: flex;
	align-items: center;
	font-weight: 700;
	font-size: 16px;
	line-height: 22px;	
	letter-spacing: 0.32px;
	margin-bottom: 16px;
}
.catalog-card__location-change {
	color: #8DA099;
	margin-left: 16px;
	text-decoration: underline;
}
.catalog-card__location-change:hover {
	color: #8DA099;
	text-decoration: none;
}
.catalog-card__delivery-list {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 16px;
	margin-left: -25px;
}
.catalog-card__delivery-item {
	width: calc(50% - 25px);
	margin-left: 25px;
	margin-bottom: 16px;
}
.catalog-card__delivery-name {
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 0.32px;
	display: flex;
	margin-bottom: 8px;
}
.catalog-card__delivery-icon {
    width: 32px;
    min-width: 32px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: contain;
	background-position: center;
    margin-left: 16px;
}
.catalog-card__delivery-all {
	font-weight: 700;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 0.02em;
	text-decoration-line: underline;
	color: #8DA099;
}
.catalog-card__delivery-all:hover {
	color: #8DA099;
	text-decoration: none;
}
.catalog-card__props-list {
	font-size: 14px;
	line-height: 20px;	
	letter-spacing: 0.02em;
	width: 100%;
    border-collapse: collapse;
    border-spacing: 0;	
}
.catalog-card__props-list tr {
	border-bottom: 1px solid #D9D9D9;
}
.catalog-card__props-list tr:last-child {
	border-bottom: none;
}
.catalog-card__props-list th {
	width: 50%;
	text-align: left;
	padding: 7px 16px;
	font-weight: normal;
}
.catalog-card__props-list td {
	padding: 7px 16px;
}
.catalog-card__props-list a {
	text-decoration: underline;
}
.catalog-card__props-list a:hover {
	text-decoration: none;
}
.catalog-card__video {
    width: 100%;
    max-width: 1232px;
    margin: 0 auto;
    padding: 0 24px;
	margin-bottom: 64px;
}
.catalog-title {
	font-size: 40px;
	font-weight: 400;
	line-height: 44px;
	text-align: center;
	margin-bottom: 24px;
}
.catalog-slider {
	position: relative;
	margin-bottom: 64px;
}
.catalog-list--slider {
	display: none;
}
.catalog-card__about {
	margin-bottom: 64px;
}
.catalog-card__about-column {
	display: flex;
	justify-content: space-between;
	margin-bottom: 38px;
}
.catalog-card__about-text {
	width: 50%;
	margin-right: 50px;
	font-size: 16px;
	line-height: 24px;
}
.catalog-card__about-text p:first-child {
	margin-top: 0;
}
.catalog-card__about-text p:last-child {
	margin-bottom: 0;
}
.catalog-card__img {
	width: 41%;
}
.catalog-card__about-link {
	text-align: center;
}
.tooltip-option {
	padding: 10px 20px;
}
.tooltip-option-img {
	width: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 10px;
}
.tooltip-option-prices {
	display: flex;
}
.tooltip-option-oldprice {
	position: relative;
	font-size: 14px;
    line-height: 1;
    font-weight: 600;
    color: #000;
	margin-left: 10px;
}
.tooltip-option-oldprice:after {
	content:"";
	display:block;
	position:absolute;
	left:0;top:50%;
	color:#FD709F;
	width:100%;
	height:0;
	border-bottom:1px solid #FD709F;
	transform:rotate(-12deg);	
}

@media(max-width: 980px)
{
	.catalog-card__labels {
		margin-bottom: 40px;
	}
	.catalog-card__column {
		margin-bottom: 40px;
	}
	.catalog-card__top {
		width: 51%;
	}
	.catalog-card__gallery {
		width: calc(49% - 60px);
		margin-right: 60px;
		max-width: none;
	}
	.catalog-card__thumbs {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px 16px;		
	}
	.catalog-card__title {
		font-size: 28px;
		font-weight: 400;
		line-height: 32px;	
	}
	.catalog-card__info-block {
		margin-bottom: 20px;
	}
	.catalog-card__info {
		width: 51%;
	}
	.catalog-card__option {
		width: 76px;
		height: 76px;
	}
	.catalog-card__prices {
		margin-bottom: 24px;
	}
	.catalog-card__price {
		font-size: 28px;
		line-height: 32px;	
	}
	.catalog-card__action {
		max-width: none;
	}
	.catalog-card__delivery-list {
		margin-left: 0;
		margin-bottom: 10px;
	}
	.catalog-card__delivery-item {
		width: 100%;
		margin-left: 0;
	}
	.catalog-card__location {
		margin-bottom: 10px;
	}
	.catalog-card__props-list th {
		padding: 5px 3px;
	}
	.catalog-card__props-list td {
		padding: 5px 3px;
	}
	.catalog-card__video {
		padding: 0;
		margin-bottom: 56px;
	}
	.catalog-slider {
		position: relative;
		margin-bottom: 56px;
	}
	.catalog-card__about {
		margin-bottom: 56px;
	}	
	.catalog-card__about-column {
		display: block;
		margin-bottom: 24px;
	}
	.catalog-card__about-text {
		width: 100%;
		margin-right: 0;
		margin-bottom: 24px;
	}
	.catalog-card__about-img {
		width: 100%;
		text-align: center;
	}
}

@media(max-width: 580px)
{
	.catalog-card__labels {
		gap: 6px 8px;
		margin-bottom: 24px;
	}
	.catalog-card__label {
		font-size: 10px;
		letter-spacing: 0.2px;
	}
	.catalog-card__top {
		float: none;
		width: auto;
		margin-bottom: 8px;
	}
	.catalog-card__gallery {
		float: none;
		width: auto;
		margin-right: 0;
		margin-bottom: 40px;
	}
	.catalog-card__preview {
		margin-bottom: 12px;
	}
	.catalog-card__thumbs {
		grid-template-columns: repeat(6, 1fr);
    	gap: 16px 16px
	}
	.catalog-card__info {
		width: auto;
		float: none;
	}
	.catalog-card__video {
		margin-bottom: 40px;
	}
	.catalog-title {
		font-size: 32px;
		font-weight: 400;
		line-height: 36px;
	}
	.catalog-slider {
		position: relative;
		margin-bottom: 40px;
	}
	.catalog-card__about {
		margin-bottom: 40px;
	}
}

@media(max-width: 480px)
{
	.catalog-card__action {
		gap: 10px;
	}
}

/* ----------- socials ----------------- */
.socials-list {
	display: flex;
	align-items: center;
	gap: 20px;
}
.socials-item {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.socials-item svg {
	display: block;
}
.socials-item path {
	fill: currentColor;
}

/* ----------- Youtube video ------------- */

.youtube-video__wrap {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;	
}

.youtube-video__iframe,
.youtube-video__lazy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.youtube-video__lazy {
	background-size: cover;
	-ms-background-size: cover;
	-webkit-background-size: cover;
	background-repeat: no-repeat;
	cursor: pointer;
}
.youtube-video__lazy:before{
	content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
	transform: translate(-50%, -50%);
    background: url(../images/svg/video-play.svg) no-repeat center;
    z-index: 5;
}
iframe.youtube-video__lazy {
	background: none !important;
}

/* ------------------ pagination ------------------- */
.pagination {
	display: flex;
	justify-content: space-between;
}
.pagination__btn {
	border-radius: 20px;
	border: 1px solid #8DA099;
	background: #8DA099;
	color: #ffffff;
	font-size: 14px;
	line-height: 1.2;
	padding: 8px 16px;
}
.pagination__btn:hover {
	background-color: #758780;
	color: #ffffff;
}
.pagination__list {
	display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
	flex-wrap: wrap;
}
.pagination__list svg path {
	fill: currentColor;
}
.pagination__item {
	padding: 0;
}
.pagination__link {
	display: flex;
	width: 32px;
	height: 32px;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	border-radius: 50%;
	text-decoration: none;
	margin-left: 8px;
}
.pagination__link--current {
	background: #8DA099;
	color: #ffffff;
}
.pagination__next-link,
.pagination__prev-link{
	display: flex;
	align-items: center;
	letter-spacing: 0.32px;
}
.pagination__next-link {
	margin-left: 16px;
}
.pagination__next-link svg {
	margin-left: 12px;
	transform: rotate(180deg);
}
.pagination__prev-link {
	margin-right: 16px;
}
.pagination__prev-link svg {
	margin-right: 12px;
}
.pagination__showmore {
	display: none;
}

@media(max-width: 1023px)
{
	.pagination__list,
	.pagination__showall {
		display: none;
	}
	.pagination__showmore {
		display: block;
	}
}

/* ------------------ footer -------------------- */
.footer {
	background: #8DA099;
	position: relative;
}
.footer__middle a:hover,
.footer__bottom a:hover {
	color: rgba(255, 255, 255, 0.50);	
}
.footer__inner {
	font-size: 14px;
	padding: 64px 0 50px;
	color: #ffffff;
}
.footer__top {
	display: flex;
	justify-content: space-between;
	margin-bottom: 80px;
	align-items: flex-start;
}
.footer__logo {
	width: 370px;
}
.footer__logo svg {
	width: 100%;
}
.footer__logo path {
	fill: currentColor;
}
.footer__subscribe {
	display: flex;
	align-items: flex-start;
}
.footer__subscribe-title {
	margin-right: 16px;
	max-width: 166px;
}
.footer__subscribe-btn {
	padding-left: 42px;
	padding-right: 42px;
}
.footer__middle {
	margin-bottom: 60px;
}
.footer__menu {
	border-bottom: 1px solid #ffffff;
	padding-bottom: 8px;
	margin-bottom: 8px;
}
.footer__menu-list {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	gap: 5px;
	justify-content: space-between;
}
.footer__menu-item {
	padding: 0;
	list-style: none;
}
.footer__menu-link {
	font-weight: 700;
}
.footer__catalog-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: space-between;
	gap: 5px;
}
.footer__catalog-item {
	padding: 0;
}
.footer__catalog-link {
	color: rgba(255, 255, 255, 0.50);
}
.footer a.footer__catalog-link:hover {
	color: #ffffff;
}
.footer__bottom {
	display: flex;
	justify-content: space-between;
}
.footer__bottom-left {
	display: flex;
	align-items: center;
}
.footer__copyright {
	margin-right: 40px;
}
.footer__bottom-link {
	display: block;
	margin-bottom: 8px;
	color: rgba(255, 255, 255, 0.50);
	text-decoration: underline;
}
.footer__bottom-link:last-child {
	margin-bottom: 0;
}
a.footer__bottom-link:hover {
	text-decoration: none;
	color: inherit;
}

@media(max-width: 1024px)
{
	.footer__menu {
		padding-bottom: 32px;
	}
	.footer__menu-list {
		display: block;
		column-count: 4;
		max-width: 90%;
		margin-left: -15px;
	}
	.footer__menu-item {
		margin-bottom: 10px;
		margin-left: 15px;
	}
}

@media(max-width: 980px)
{
	.footer__inner {
		padding: 40px 0 25px;
	}
	.footer__top {
		margin-bottom: 50px;
	}
	.footer__logo {
		width: 245px;
	}
	.footer__subscribe-btn {
		padding-left: 32px;
		padding-right: 32px;
	}
	.footer__middle {
		margin-bottom: 50px;
	}
	.footer__menu {
		margin-bottom: 14px;
	}
	.footer__catalog-list {
		display: block;
		column-count: 2;
		margin-left: -15px;
	}
	.footer__catalog-item {
		margin-bottom: 10px;
		margin-left: 15px;
	}
	.footer__bottom-left {
		display: block;
	}
	.footer__copyright {
		margin-bottom: 24px;
		margin-right: 0;
	}
}

@media(max-width: 767px)
{
	.footer__inner {
		padding: 24px 0 30px;
	}
	.footer__top {
		display: block;
		margin-bottom: 32px;
	}
	.footer__logo {
		margin-bottom: 36px;
	}
	.footer__menu {
		padding-bottom: 40px;
		margin-bottom: 40px;
	}
	.footer__menu-list {
		max-width: none;
		column-count: 3;
	}
	.footer__middle {
		margin-bottom: 40px;
	}
	.footer__bottom {
		display: block;
	}
	.footer__bottom-left {
		margin-bottom: 40px;
		text-align: center;
	}
	.footer__socials .socials-list {
		justify-content: center;
	}
}

@media(max-width: 360px)
{
	.footer__menu-list {
		column-count: 2;
	}
}

/* --------------- footer-popup ------------ */
.footer-popup {
	display: none;
	position: fixed;
	bottom: 0;
	right: 0;
	width: 70%;
	max-width: 600px;
	background: #ffffff;
	-webkit-box-shadow: -15px -15px 60px 10px rgba(0,0,0,0.4);
	-moz-box-shadow: -15px -15px 60px 10px rgba(0,0,0,0.4);
	box-shadow: -15px -15px 60px 10px rgba(0,0,0,0.4);
	z-index: 1000;
	max-height: 100%;
}
.footer-popup__inner {
	display: flex;
}
.footer-popup__image {
	flex: 0 0 50%;
}
.footer-popup__image img {
	display: block;
}
.footer-popup__info {
	padding: 10px 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.footer-popup__logo {
	margin-bottom: 40px;
}
.footer-popup__logo svg {
	width: 100%;
}
.footer-popup__desc {
	font-size: 20px;
	line-height: 1.2;
	text-transform: uppercase;
	margin-bottom: 40px;
}
.footer-popup__discount {
	margin-bottom: 15px;
	font-size: 30px;
	text-transform: uppercase;
	font-weight: bold;
}
.footer-popup__discount span {
	display: block;
	font-size: 20px;
	font-weight: normal;
	text-transform: none;
}
.footer-popup__coupon {
	position: relative;
}
.footer-popup__coupon input {
	display: block;
	width: 100%;
	text-align: center;
	background: #000000;
	border: 0;
	font-size: 32px;
	color: #ffffff;
	padding: 5px;
	cursor: pointer;
	border-radius: 0;
	appearance: none;
}
.footer-popup__close {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 10px;
	top: 10px;
	background: #ffffff;
	border-radius: 50%;
	opacity: 0.8;
}
.footer-popup__close svg {
	width: 16px;
	height: 16px;
}
.footer-popup__coupon.copyed:after {
	position: absolute;
	top: 100%;
	display: block;
	content: 'Код скопирован';
	margin-top: 5px;
	font-size: 16px;
	color: #000000;
}

@media(max-width: 980px)
{
	.footer-popup__logo {
		margin-bottom: 20px;
	}
	.footer-popup__desc {
		font-size: 16px;
		margin-bottom: 20px;
	}
	.footer-popup__discount {
		font-size: 24px;
	}	
}

@media(max-width: 580px)
{
	.footer-popup {
		width: 100%;
	}
	.footer-popup__desc {
		font-size: 14px;
	}
	.footer-popup__discount {
		font-size: 20px;
	}
	.footer-popup__coupon input {
		font-size: 26px;
		padding: 10px;
	}	
}

@media(max-width: 380px)
{
	.footer-popup__image {
		flex: 0 0 40%;
	}
	.footer-popup__image img {
		height: 100%;
		object-fit: cover;
	}	
}

/* --------------- modal --------------- */
.modal {
	display: none;
}
.modal__center {
	text-align: center;
}
.modal__inner {
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	letter-spacing: 0.72px;
	max-width: 584px;
	padding: 56px 40px;
}
.modal__logo {
	width: 245px;
	margin: 0 auto;
	margin-bottom: 32px;
}
.modal__logo svg {
	width: 100%;
	max-width: none;
}
.modal__title {
	font-size: 28px;
	line-height: 30px;
	text-align: center;
	margin-bottom: 25px;
}
.modal__info {
	margin-bottom: 16px;
}
.modal__btn {
	width: 100%;
	margin-top: 16px;
}
a.modal__btn {
	display: inline-block;
}
.modal__field-label {
	margin-bottom: 5px;
}
.modal__bottom {
	margin-top: 16px;
}
.modal__errors {
	display: none;
}
.modal__success {
	display: none;
}
.flyform .modal__success {
	display: block;
}
.modal__warn {
	margin: 32px 0 16px;
	font-size: 26px;
	font-weight: 700;
	line-height: 36px;
	text-transform: uppercase;
	color: #8DA099;
	text-align: center;
}

@media(max-width: 620px)
{
	.modal__inner {
		max-width: none;
		padding: 40px 20px;
		font-size: 16px;
		line-height: 20px;
	}
}

/* ------------------- subscribe-popup --------------------- */
.subscribe-popup__inner {
	padding: 40px 20px 20px;
}
.subscribe-popup__banner {
	margin-bottom: 15px;
}
.subscribe-popup__banner img {
	max-width: 100% !important;
	height: auto;
}
.subscribe-popup__field {
	margin-bottom: 10px;
}
.subscribe-popup__field-input {
	margin-bottom: 20px;
}
.subscribe-popup__checkbox a {
	text-decoration: underline;
}
.subscribe-popup__checkbox a:hover {
	text-decoration: none;
}
.subscribe-popup__bottom {
	text-align: center;
	margin-top: 20px;
}
.subscribe-popup__field-error {
	font-size: 12px;
	color: #B6372F;
	margin: 5px 0 0; 
}
.subscribe-popup__msg {
	margin: 20px 0;
	font-size: 16px;
}
.subscribe-popup__error {
	color: #B6372F;
}
.subscribe-popup__success {
	color: #00C000;
}

@media(max-width: 580px)
{
	.subscribe-popup__inner {
		padding: 40px 10px 10px;
	}
	.subscribe-popup__checkbox {
		font-size: 14px;
	}
}

/* --------------- search-panel ----------------- */
.search-panel__block {
	padding: 20px;
}
.search-panel__category-link {
	display: block;
	margin-bottom: 10px;
	text-decoration: none;
}
.search-panel__category-link:last-child {
	margin-bottom: 0;
}
.search-panel__block h4 {
    font-size: 26px;
    line-height: 1.2;
    font-weight: 500;
    margin: 0 0 20px;
}
.search-panel__item {
	display: flex;
	margin-bottom: 15px;
	align-items: center;
	text-decoration: none;
}
.search-panel__item:last-child {
	margin-bottom: 0;
}
.search-panel__item-img {
	width: 70px;
	height: 70px;
	min-width: 70px;
	line-height: 40px;
	padding: 5px;
	background: #FFF;
	text-align: center;
	margin-right: 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.search-panel__item-img img {
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
	max-height: 100%;
}

/* ------------------ privacy ----------------- */
.privacy-info {
	overflow: hidden;
}
.privacy-info p {
	margin: 1em 0;
}
.privacy-info a {
	text-decoration: underline;
	color: inherit;
}
.privacy-info a:hover {
	text-decoration: none;
	color: inherit;
}
.privacy-info__date {
	font-weight: bold;
	margin: 20px 0;
}
.privacy-info__date:first-child {
	margin-top: 0;
}
.privacy-info__top {
	text-align: right;
	margin-bottom: 40px;
}
.privacy-info__point {
	font-size: 20px;
	font-weight: bold;
	margin: 30px 0;
}
.privacy-info ul {
    margin: 0;
    padding: 0;	
}
.privacy-info ul li {
    margin: 5px 0 10px 0;
}
.privacy-accept {
	display: block;
	position: relative;
	padding-left: 30px;
	margin: 15px 0;
	font-size: 14px;
	line-height: 20px;	
}
.privacy-accept input {
	position: absolute;
	bottom: 100%;
	right: 100%;
	opacity: 0;
	visibility: hidden;
}
.privacy-accept span::before {
	display: block;
	position: absolute;
	content: '';
	width: 18px;
	height: 18px;
	top: 0;
	left: 0;
	border: 1px solid #000000;
	background: #fff;
}
.privacy-accept input:checked + span::before {
	background: #fff url(../images/svg/check.svg) no-repeat center center;
}
.privacy-accept.error input:not(:checked) + span {
	color: #B6372F;
}
.privacy-accept.error input:not(:checked) + span::before {
	border-color: #B6372F;
}
.privacy-accept a {
	text-decoration: underline;
	color: inherit;
	border: 0;
}
.privacy-accept a:hover {
	text-decoration: none;
	color: inherit;
}
.privacy-info table {
	display: block;
    margin: 24px 0;
    overflow: auto;
    border-collapse: collapse;
    border-spacing: 0;
    text-align: left;
	color: inherit;
}
.privacy-info td,
.privacy-info th {	
    border: 1px solid #aaaaaa;
    padding: 12px;
    vertical-align: top;
	min-width: 250px;
}
.privacy-info th {
	text-align: center;
	font-weight: bold;
}

/* ------------------------ present -------------------------- */
.presents-list {
	display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 30px 15px;
    gap: 30px 15px;
}
.presents-item {
	position: relative;
}
.presents-item__name {
	font-size: 18px;
	line-height: 20px;
	flex-grow: 1;
	display: block;
	margin-top: 5px;
}
.presents-item__link {
	position: absolute;
	display: block;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
}
.presents-item__preview img {
	width: 100%;
	object-fit: cover;
}

@media(max-width: 860px)
{
	.presents-list {
		grid-template-columns: repeat(3, 1fr);
	}	
}

@media(max-width: 580px)
{
	.presents-list {
		grid-template-columns: repeat(2, 1fr);
	}	
}

/* ------------------------- 404 ----------------------------- */
.page-404__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 64px;
}
.page-404__info {
	width: 48%;
	margin-right: 2%;
	font-size: 20px;
	font-weight: 400;
	line-height: 28px;
	letter-spacing: 0.4px;	
}
.page-404__title {
	font-size: 44px;
	line-height: 46px;
	margin-bottom: 24px;
}
.page-404__text {
	margin-bottom: 24px;
}
.page-404__img {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50%;
}

@media(max-width: 780px)
{
	.page-404__inner {
		display: block;
		text-align: center;
		margin-top: 30px;
	}
	.page-404__info {
		width: 100%;
		margin: 0 0 64px;
	}
	.page-404__img {
		width: 100%;
	}
}


@media(max-width: 580px)
{
	.page-404__info {
		margin-bottom: 30px;
	}	
}

/* --------------- page-column ----------------- */

.page-column {
	display: flex;
}
.page-sidebar {
	width: 250px;
	margin-right: 70px;
}
.page-content {
	width: calc(100% - 320px);
}

@media(max-width: 1024px)
{
	.page-column {
		display: block;
	}
	.page-sidebar {
		width: 100%;
		margin-bottom: 20px;
	}
	.page-content {
		width: 100%;
	}
}

/* --------------- left menu ------------------- */
.left-menu {
	margin-bottom: 40px;
}
.left-menu a {
	display: block;
	margin-bottom: 15px;
}
.left-menu a.active {
	color: #8DA099;
}

/* ---------- search --------------- */
.search-form {
	margin-bottom: 40px;
}
.search-form__inner {
	display: flex;
}
.search-form__title {
	font-size: 16px;
	line-height: 24px;	
}
.search-form_input {
	max-width: 580px;
}
.search-form__btn {
	display: flex;
	align-items: center;
	margin-left: 16px;
	justify-content: space-between;
}
.search-form__btn svg {
	width: 24px;
	min-width: 24px;
	height: 24px;
	margin-left: 40px;
}
.search-form__btn svg path {
	fill: #ffffff;
}
.search-notfound {
	font-size: 16px;
	line-height: 26px;
	letter-spacing: 0.02em;	
}
.search-notfound h3 {
	font-weight: 400;
	font-size: 24px;
	line-height: 32px;
	margin: 0 0 8px;
}
.search-query {
	margin-bottom: 24px;
}
.search-query span {
	color: #C69364;
}

@media(max-width: 767px)
{
	.search-form {
		margin-bottom: 24px;
	}
	.search-form_input {
		max-width: none;
	}
	.search-form__btn {
		padding: 0;
		width: 48px;
		min-width: 48px;
		height: 48px;
		justify-content: center;
		margin-left: 12px;
	}	
	.search-form__btn span {
		display: none;
	}
	.search-form__btn svg {
		margin-left: 0;
	}
}

/* --------------- Erid --------------- */

.erid-label {
	font-size: 12px;
	line-height: 16px;
    position: absolute;
    z-index: 10;
    top: 6px;
    right: 6px;
    display: flex;
    align-items: center;
    height: 20px;
    padding: 2px 8px;
    cursor: pointer;
    color: #666666;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.64);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.erid-label::after {
	content: '';
	display: block;
	width: 16px;
	height: 16px;
	margin-left: 4px;
	background: url(../images/svg/erid-icon.svg) no-repeat center;
}
.erid-info {
	margin-top: 15px;
	font-size: 12px;
}

@media(max-width: 767px)
{
	.erid-label {
		top: 4px;
		right: 4px;
	}
}

/* ----------------------------- wait --------------------------------- */

div.wait
{
  position:fixed;
  top:0;
  bottom:0;
  left:0;
  right:0;
  background:url(../images/loading.gif) center center no-repeat;
  background-color:rgba(0,0,0,.5);
  -webkit-animation:wait-show .5s linear 0s forwards;
  animation:wait-show .5s linear 0s forwards;
  z-index:9999;
}
@-webkit-keyframes wait-show
{
  from{opacity:0}
  to{opacity:1;}
}
@keyframes wait-show
{
  from{opacity:0}
  to{opacity:1;}
}

/* ---------------- widget-yoomoney ----------------- */

#paysystem-yookassa {
	max-width: 460px;
	min-width: 280px;
	margin: 20px 0;	
}

#paysystem-yookassa .widget-payment-checkout-info {
	margin: 10px 0;
}

#paysystem-yookassa .widget-paysystem-checkout-sum {
	font-weight: bold;
}

#paysystem-yookassa #payment-widget-form {
	margin-top: 20px;
}

#paysystem-yookassa p.mb-4 {
	display: none !important; 
}

/* -------------------- virtual-tour --------------------- */

.virtual-tour {
	margin: 30px 0;
}

.virtual-tour iframe {
	border: 0;
}

@media(min-width: 581px)
{
	.virtual-tour__wrap {
		position: relative;
		padding-bottom: 46.87%;
		height: 0;
		overflow: hidden;
	}
	.virtual-tour iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		border: 0;
	}
}

.tbank-payment {
	margin: 10px 0;
}

.tbank-payment__btn {
	display: inline-block;
	padding: 12px 32px 13px;
	border: 1px solid #8DA099;
	color: #ffffff;
	text-align: center;
	font-family: Helvetica;
	font-size: 18px;
	line-height: 24px;
	letter-spacing: 0.18px;
	background-color: #8DA099;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	border-radius: 0;
	outline: none;
}

.tbank-payment__btn:hover {
	background-color: #758780;
	color: #ffffff;
}

.dolyame-payment {
	margin: 10px 0;
}

a.dolyame-payment__btn {
	display: inline-block;
	padding: 12px 32px 13px;
	border: 1px solid #8DA099;
	color: #ffffff;
	text-align: center;
	font-family: Helvetica;
	font-size: 18px;
	line-height: 24px;
	letter-spacing: 0.18px;
	background-color: #8DA099;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	border-radius: 0;
	outline: none;
}

a.dolyame-payment__btn:hover {
	background-color: #758780;
	color: #ffffff;
}

/* ---------------- popup-messages ------------------ */
.popup-messages {
	position: fixed;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	z-index: 10000;
	width: 350px;
	margin-bottom: 25px;
}

.popup-messages__item {
	display: none;
}

.popup-messages__item-wrap {
	display: flex;
	width: 100%;
	padding: 12px;
	margin-bottom: 5px;
	border-radius: 8px;
	color: #ffffff;
	background: #21282b;
	box-shadow: 0 1.17px 2px rgba(0, 0, 0, 0.0196802), 0 1.4px 5px rgba(0, 0, 0, 0.03), 0 2px 10px rgba(0, 0, 0, 0.03), 0 2px 18px rgba(0, 0, 0, 0.04), 0 9px 33px rgba(0, 0, 0, 0.03);
	font-size: 14px;
	line-height: 18px;
}

.cookie-accepted__text {
	padding: 4px;
}

.cookie-accepted__text a {
	color: inherit;
	text-decoration: underline;
}

.cookie-accepted__text a:hover {
	color: inherit;
	text-decoration: none;
}

.cookie-accepted__btn {
	display: block;
	padding: 4px 10px;
	border-radius: 4px;
	margin-left: 8px;
	color: #21282b;
	background: #ffffff;
	text-decoration: none;
	font-size: 16px;
	align-self: start;
}

.cookie-accepted__btn:hover {
	background: #cccccc;
	color: #21282b;
	text-decoration: none;
}
	
@media(max-width: 480px)
{
	.popup-messages {
		width: 100%;
		padding: 10px;
		margin-bottom: 0;
	}
}