@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

*,
*::before,
*::after
{
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html
{
	scroll-behavior: smooth;
}

body
{
	margin: 0;
	font-family: "Inter", sans-serif;
	color: #232126;
}

body.lock
{
	overflow: hidden;
}

.h5,
.h4,
.h3,
.h2,
.h1
{
	margin: 0;
	color: inherit;
	font-family: inherit;
}

.h1
{
	font-size: 50px;
	font-weight: 800;
	line-height: 65px;
}

.h2
{
	font-size: 38px;
	font-weight: 800;
	line-height: 40px;
}

.h3
{
	font-size: 26px;
	font-weight: 700;
	line-height: 32px;
}

.h4
{
	font-size: 18px;
	font-weight: 700;
	line-height: 26px;
}

.h5
{
	font-size: 14px;
	font-weight: 700;
	line-height: 22px;
}

p
{
	margin: 0;
}

ol,
ul
{
	padding: 0;
	margin: 0;
}

li
{
	list-style-type: none;
}

a
{
	color: inherit;
	text-decoration: none;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

button
{
	border: none;
	cursor: pointer;
	outline: none;
}

input,
textarea
{
	border: none;
	outline: none;
	font-family: inherit;
	margin: 0;
}

textarea
{
	resize: none;
}

.btn
{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	transition: .3s;
	font-family: inherit;
	font-weight: 600;
}

.btn svg path
{
	transition: .3s;
}

.btn-blue
{
	border-radius: 12px;
	background-color: #20247A;
	color: #FFFFFF;
	font-size: 15px;
	line-height: 140%;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.btn-blue::after
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #49207E 0%, #21257E 100%);
	z-index: -1;
	opacity: 0;
	transition: .3s;
}

.btn-blue:hover::after
{
	opacity: 1;
}

.btn-outline
{
	border-radius: 10px;
	border: 2px solid #BACFE3;
	color: #20247A;
	font-size: 13px;
	line-height: 138%;
	background-color: transparent;
}

.btn-outline:hover
{
	background-color: #BACFE3;
}

.btn-white
{
	background-color: #FFFFFF;
	color: #20247A;
	font-size: 15px;
	line-height: 140%;
	border-radius: 12px;
}

.btn-white:hover
{
	background-color: #19D8C4;
	color: #20247A;
}



/* Класс для инпутов */
.input
{}

/* Класс для label*/
.fg
{
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.fg__title
{
	color: #191C21;
	font-size: 13px;
	font-weight: 500;
	line-height: 138%;
	display: flex;
	align-items: center;
	gap: 4px;
}

.fg__title span
{
	color: #F00F00;
	font-size: 12px;
	line-height: 133%;
}

.fg input
{
	display: block;
	width: 100%;
	border-radius: 9px;
	border: 1px solid #F3F4F5;
	background: #FFFFFF;
	padding: 14px;
	transition: .3s;
	color: #191C21;
	font-size: 13px;
	line-height: 138%;
}

.fg input:focus
{
	border-color: #20247A;
}

.fg._error input
{
	border-color: #FF0000;
}

.fg__error-text
{
	color: #FF0000;
	font-size: 12px;
	line-height: 133%;
}

.checkbox-label
{
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
}

.checkbox-label>input
{
	display: none;
}

.checkbox
{
	border-radius: 6px;
	border: 1.6px solid #F3F4F5;
	background: #FFF;
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	transition: .3s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.checkbox-label._error .checkbox
{
	border-color: #FF0000;
}

.checkbox::after
{
	content: '';
	display: block;
	width: 14px;
	height: 14px;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzMwMjVfMjE3MTM2KSI+CjxwYXRoIGQ9Ik0yLjkxNjUgNy4wMDAxNkw1LjgzMzE3IDkuOTE2ODNMMTEuNjY2NSA0LjA4MzUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InNxdWFyZSIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzMwMjVfMjE3MTM2Ij4KPHJlY3Qgd2lkdGg9IjE0IiBoZWlnaHQ9IjE0IiBmaWxsPSJ3aGl0ZSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 50% 0;
	opacity: 0;
	transition: .3s;
}

label:hover .checkbox
{
	border-color: #20247A;
}

label>input:checked+.checkbox
{
	background-color: #20247A;
	border-color: #20247A;
}

label>input:checked+.checkbox::after
{
	opacity: 1;
}

.checkbox__text
{
	color: #343E4A;
	font-size: 13px;
	line-height: 138%;
}

.checkbox__text a
{
	color: #20247A;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}

.checkbox__text a:hover
{
	opacity: 0.6;
}




.main
{
	display: flex;
	flex-direction: column;
	min-height: calc(100 * var(--vh));
}

.container
{
	max-width: 1500px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.top
{
	padding-top: 10px;
	padding-bottom: 13px;
	position: relative;
	z-index: 1;
	display: none;
}

.top__bg
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.top-row
{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 37px;
}

.top__text
{
	max-width: 282px;
	color: #FFF;
	font-size: 18px;
	font-weight: 700;
	line-height: 26px;
}

.top__text span
{
	color: #19D8C4;
}

.top__btn
{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	border-radius: 10px;
	border: 1.2px solid #BACFE3;
	width: 131px;
	height: 40px;
	color: #E7EDF3;
	font-size: 13px;
	font-weight: 600;
	line-height: 138%;
}

.top__btn path
{
	transition: .3s;
}

.top__btn:hover
{
	background-color: #FFFFFF;
	color: #232126;
}

.top__btn:hover path
{
	stroke: #232126;
}

.top-close
{
	position: absolute;
	top: 50%;
	right: 50px;
	transform: translateY(-50%);
	width: 34px;
	height: 34px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s;
	cursor: pointer;
}

.top-close:hover
{
	background-color: #FFFFFF;
	border-color: #FFFFFF;
}

.top-close path
{
	transition: .3s;
}

.top-close:hover path
{
	stroke: #232126;
}


.header
{
	position: absolute;
	top: 75px;
	left: 0;
	width: 100%;
	z-index: 10;
	background-color: #FFFFFF;
}

.header.fix
{
	position: fixed;
	top: 0;
	width: 100%;
	background-color: #FFFFFF;
}

.header-top
{
	background-color: #F3F4F5;
	padding-top: 9px;
	padding-bottom: 9px;
}

.header.fix .header-top
{
	display: none;
}

.header-top_row
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

.header-menu
{
	display: flex;
	align-items: center;
	gap: 35px;
}

.header-menu li
{
	display: flex;
}

.header-menu li a
{
	color: #343E4A;
	font-size: 12px;
	font-weight: 600;
	line-height: 133%;
	opacity: 0.8;
	display: block;
	padding-top: 3px;
	padding-bottom: 1px;
	border-bottom: 2px solid transparent;
}

.header-menu li a:hover
{
	color: #0B54A0;
	border-color: #0B54A0;
	opacity: 1;
}

.header-top_r
{
	display: flex;
	align-items: center;
	gap: 55px;
}

.header-phones
{
	position: relative;
}

.header-phones,
.header__phone
{
	display: flex;
	align-items: center;
	gap: 7px;
}

.header__phone svg
{
	opacity: 0.3;
	transition: .3s;
}

.header__phone:hover svg
{
	opacity: 1;
}

.header__phone svg path
{
	transition: .3s;
}

.header__phone:hover svg path
{
	stroke: #20517A;
}

.header__phone--text
{
	color: #191C21;
	font-size: 14px;
	font-weight: 700;
	line-height: 143%;
	transition: .3s;
	letter-spacing: 0.3px;
}

.header__phone:hover .header__phone--text
{
	color: #20517A;
}

.header-phones__icon
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background-color: #FFFFFF;
	cursor: pointer;
	transition: .3s;
}

.header-phones__icon:hover
{
	background-color: #20517A;
}

.header-phones__icon.active
{
	transform: rotate(180deg);
}

.header-phones__icon svg path
{
	transition: .3s;
}

.header-phones__icon:hover svg path
{
	stroke: #FFFFFF;
}

.header-phones_wrapper
{
	position: absolute;
	right: -13px;
	top: 100%;
	width: 301px;
	border-radius: 10px;
	background: #FFFFFF;
	box-shadow: 0 11px 40px 0 rgba(0, 0, 0, 0.25);
	padding: 15px;
	transition: .3s;
	opacity: 0;
	visibility: hidden;
	z-index: 6;
}

.header-phones_wrapper::after
{
	content: '';
	position: absolute;
	display: block;
	border: 12px solid transparent;
	border-bottom: 12px solid #FFFFFF;
	top: -17px;
	right: 9px;
}

.header-phones.active .header-phones_wrapper
{
	opacity: 1;
	visibility: visible;
	transform: translateY(9px);
}

.header-phones_inner
{
	display: flex;
	flex-direction: column;
	gap: 13px;
}

.phones
{
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.phones-box
{
	display: flex;
	align-items: center;
	gap: 10px;
}

.phones-box__item
{
	display: flex;
	align-items: center;
	gap: 7px;
}

.phones-box__item svg
{
	width: 17px;
	height: auto;
	flex-shrink: 0;
}

.phones-box__item svg path
{
	transition: .3s;
}

.phones-box__item:hover svg path
{
	stroke: #20247A;
}

.phones-box__item span
{
	color: #191C21;
	font-size: 14px;
	font-weight: 600;
	line-height: 143%;
	transition: .3s;
}

.phones-box__item:hover span
{
	color: #20247A;
}

.phones-info
{
	display: flex;
	align-items: center;
	gap: 7px;
}

.phones-info img
{
	width: 20px;
	height: auto;
	flex-shrink: 0;
}

.phones-info span
{
	color: #92969A;
	font-size: 13px;
	font-weight: 500;
	line-height: 138%;
}

.header-phones__btn
{
	padding: 11px 18px;
	width: 100%;
}

.header-email p
{
	color: #92969A;
	font-size: 13px;
	font-weight: 500;
	line-height: 138%;
	margin-bottom: 7px;
}

.email
{
	display: flex;
	align-items: center;
	gap: 6px;
}

.email svg
{
	width: 17px;
	height: auto;
	flex-shrink: 0;
}

.email span
{
	border-bottom: 1px solid rgba(32, 36, 122, 0.30);
	color: #20247A;
	font-size: 16px;
	font-weight: 700;
	line-height: 150%;
	transition: .3s;
}

.email span:hover
{
	border-color: #20247A;
}

.address
{
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.address img
{
	width: 17px;
	height: auto;
	flex-shrink: 0;
}

.address span
{
	color: #343E4A;
	font-size: 14px;
	line-height: 143%;

}

.header-address
{
	gap: 8px;
	padding-right: 10px;
}

.header-address span
{
	font-size: 13px;
	line-height: 138%;
}

.schedule
{
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.schedule img
{
	width: 17px;
	height: auto;
	flex-shrink: 0;
}

.schedule-items
{
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.schedule p
{
	color: #343E4A;
	font-size: 13px;
	font-weight: 500;
	line-height: 138%;
}

.schedule p span
{
	color: #5E920A;
}

.header-schedule
{
	gap: 8px;
}


.header__btn
{
	border-bottom: 1px solid rgba(32, 36, 122, 0.30);
	padding: 0;
	background: transparent;
	color: #20247A;
	font-size: 11px;
	font-weight: 800;
	line-height: 143%;
	text-transform: uppercase;
	font-family: inherit;
	transition: .3s;
}

.header__btn:hover
{
	border-color: #20247A;
}

.header-online
{
	border-radius: 0 9px 9px 9px;
	border: 1px solid rgba(121, 167, 66, 0.28);
	padding: 4px 12px;
	position: relative;
}

.header-online__text
{
	color: #5E920A;
	font-size: 12px;
	font-weight: 700;
	line-height: 133%;
}

.online
{
	width: 8px;
	height: 8px;
	border-radius: 50%;
	/* border: 3px solid rgba(121, 167, 66, 0.3); */
	background-color: #5E920A;
	position: absolute;
	top: -2px;
	left: -2px;
	animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation
{
	0%
	{
		box-shadow: 0 0 0 0px rgba(121, 167, 66, 0.5);
	}

	100%
	{
		box-shadow: 0 0 0 5px rgba(0, 0, 0, 0);
	}
}

.header-mid
{
	padding-top: 16px;
	padding-bottom: 16px;
	position: relative;
}

.header-row
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.header-logo
{
	width: 128px;
	height: 50px;
	flex-shrink: 0;
}

.header.fix .header-logo
{
	display: none;
}

.header.fix .header-r
{
	display: none;
}

.header-logo img
{
	max-width: 100%;
	max-height: 100%;
}

.header-center
{
	display: flex;
	align-items: center;
	gap: 15px;
}

.catalog__btn
{
	width: 147px;
	height: 50px;
	flex-shrink: 0;
	gap: 10px;
}

.catalog__btn--burger
{
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.catalog__btn--burger span
{
	position: relative;
}

.catalog__btn--burger span,
.catalog__btn--burger span::before,
.catalog__btn--burger span::after
{
	width: 15px;
	height: 2px;
	background-color: #FFFFFF;
	display: block;
	border-radius: 900px;
	-webkit-transition: .3s;
	-o-transition: .3s;
	-moz-transition: .3s;
	transition: .3s;
}

.catalog__btn--burger span::before
{
	content: "";
	position: absolute;
	left: 0;
	top: -5px;
	-webkit-transition: top .2s .2s, -webkit-transform .2s cubic-bezier(.23, 1, .32, 1);
	transition: top .2s .2s, -webkit-transform .2s cubic-bezier(.23, 1, .32, 1);
	-o-transition: top .2s .2s, -o-transform .2s cubic-bezier(.23, 1, .32, 1);
	-moz-transition: top .2s .2s, transform .2s cubic-bezier(.23, 1, .32, 1), -moz-transform .2s cubic-bezier(.23, 1, .32, 1);
	transition: top .2s .2s, transform .2s cubic-bezier(.23, 1, .32, 1);
	transition: top .2s .2s, transform .2s cubic-bezier(.23, 1, .32, 1), -webkit-transform .2s cubic-bezier(.23, 1, .32, 1), -moz-transform .2s cubic-bezier(.23, 1, .32, 1), -o-transform .2s cubic-bezier(.23, 1, .32, 1);
}

.catalog__btn--burger span::after
{
	content: "";
	position: absolute;
	left: 0;
	bottom: -5px;
	-webkit-transition: bottom .2s .2s, -webkit-transform .2s cubic-bezier(.23, 1, .32, 1);
	transition: bottom .2s .2s, -webkit-transform .2s cubic-bezier(.23, 1, .32, 1);
	-o-transition: bottom .2s .2s, -o-transform .2s cubic-bezier(.23, 1, .32, 1);
	-moz-transition: bottom .2s .2s, transform .2s cubic-bezier(.23, 1, .32, 1), -moz-transform .2s cubic-bezier(.23, 1, .32, 1);
	transition: bottom .2s .2s, transform .2s cubic-bezier(.23, 1, .32, 1);
	transition: bottom .2s .2s, transform .2s cubic-bezier(.23, 1, .32, 1), -webkit-transform .2s cubic-bezier(.23, 1, .32, 1), -moz-transform .2s cubic-bezier(.23, 1, .32, 1), -o-transform .2s cubic-bezier(.23, 1, .32, 1);
}

.catalog__btn.active .catalog__btn--burger span
{
	background: rgba(255, 255, 255, 0) !important;
}

.catalog__btn.active .catalog__btn--burger span::before
{
	top: 0;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: top .2s, -webkit-transform .2s .2s cubic-bezier(.68, -.55, .265, 1.55);
	transition: top .2s, -webkit-transform .2s .2s cubic-bezier(.68, -.55, .265, 1.55);
	-o-transition: top .2s, -o-transform .2s .2s cubic-bezier(.68, -.55, .265, 1.55);
	-moz-transition: top .2s, transform .2s .2s cubic-bezier(.68, -.55, .265, 1.55), -moz-transform .2s .2s cubic-bezier(.68, -.55, .265, 1.55);
	transition: top .2s, transform .2s .2s cubic-bezier(.68, -.55, .265, 1.55);
	transition: top .2s, transform .2s .2s cubic-bezier(.68, -.55, .265, 1.55), -webkit-transform .2s .2s cubic-bezier(.68, -.55, .265, 1.55), -moz-transform .2s .2s cubic-bezier(.68, -.55, .265, 1.55), -o-transform .2s .2s cubic-bezier(.68, -.55, .265, 1.55);
}

.catalog__btn.active .catalog__btn--burger span::after
{
	bottom: 0;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: bottom .2s, -webkit-transform .2s .2s cubic-bezier(.68, -.55, .265, 1.55);
	transition: bottom .2s, -webkit-transform .2s .2s cubic-bezier(.68, -.55, .265, 1.55);
	-o-transition: bottom .2s, -o-transform .2s .2s cubic-bezier(.68, -.55, .265, 1.55);
	-moz-transition: bottom .2s, transform .2s .2s cubic-bezier(.68, -.55, .265, 1.55), -moz-transform .2s .2s cubic-bezier(.68, -.55, .265, 1.55);
	transition: bottom .2s, transform .2s .2s cubic-bezier(.68, -.55, .265, 1.55);
	transition: bottom .2s, transform .2s .2s cubic-bezier(.68, -.55, .265, 1.55), -webkit-transform .2s .2s cubic-bezier(.68, -.55, .265, 1.55), -moz-transform .2s .2s cubic-bezier(.68, -.55, .265, 1.55), -o-transform .2s .2s cubic-bezier(.68, -.55, .265, 1.55);
}

.catalog__btn--text
{
	font-size: 14px;
	line-height: 143%;
}

.search
{
	position: relative;
	flex-shrink: 0;
	z-index: 5;
	display: flex;
	align-items: center;
	gap: 20px;
}

.search__wrapper
{
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100 * var(--vh));
	background: rgba(4, 6, 34, 0.20);
	z-index: -2;
	opacity: 0;
	visibility: hidden;
}

.search__clear
{
	position: absolute;
	top: 50%;
	right: 74px;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: .3s;
	opacity: 0;
	visibility: hidden;
}

.search.fill .search__clear
{
	opacity: 1;
	visibility: visible;
}

.search__clear svg path
{
	transition: .3s;
}

.search__clear:hover svg path
{
	stroke: #19D8C4;
}

.search__close
{
	color: #20247A;
	font-size: 14px;
	font-weight: 600;
	line-height: 143%;
	display: none;
}

.search.active .search__wrapper
{
	opacity: 1;
	visibility: visible;
}

header .search input, .brands-search input
{
	border: 2px solid #20247A;
	padding: 19px 15px;
	padding-right: 100px;
	display: block;
	border-radius: 14px;
	transition: .3s;
	position: relative;
}

.search.active input
{
	border-color: #19D8C4;
}

.search input:not(.megamenu-search input)::placeholder
{
	opacity: 0;
}

.header-search input
{
	width: 756px;
	height: 62px;
}

.search__text
{
	color: #92969A;
	font-size: 13px;
	font-weight: 500;
	line-height: 138%;
	position: absolute;
	top: 50%;
	left: 17px;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	gap: 4px;
}

.search input:focus+.search__text
{
	display: none;
}

.search.active>.btn
{
	background-color: #19D8C4;
}

.search__text span
{
	color: #20247A;
	border-bottom: 1px solid rgba(33, 37, 126, 0.50);
	cursor: pointer;
	transition: .3s;
}

.search__text span:hover
{
	border-color: #20247A;
}

header .search-results
{
	padding-top: 62px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 14px;
	background-color: #FFFFFF;
	box-shadow: 0 4px 55px 0 rgba(36, 42, 45, 0.20);
	z-index: -1;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
}

.search.active .search-results
{
	opacity: 1;
	visibility: visible;
}

.search-box
{
	padding: 14px 0 13px;
	border-top: 1px solid #F3F4F5;
}

.search-tags_wrapper
{
	border-top: none;
}

.search-box__title
{
	color: #191C21;
	font-size: 15px;
	font-weight: 600;
	line-height: 140%;
	padding-left: 15px;
	padding-right: 15px;
}

.search-tags
{
	margin-top: 5px;
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: nowrap;
	white-space: nowrap;
	overflow: hidden;
	overflow-x: auto;
}

.search-tag
{
	padding: 6px 9px;
	border-radius: 6px;
	border: 1px solid #F3F4F5;
	background-color: #FFFFFF;
	color: #20247A;
	font-size: 13px;
	font-weight: 600;
	line-height: 138%;
}

.search-tag:hover
{
	background-color: #20247A;
	border-color: #20247A;
	color: #FFFFFF;
}

.search-products
{
	margin-top: 10px;
}

.search-product
{
	padding: 8px 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 4px;
}

.search-product:hover
{
	background-color: #E7EDF3;
}

.search-product_l
{
	display: flex;
	align-items: center;
	gap: 10px;
	max-width: 403px;
	width: 100%;
}

.search-product__pic
{
	width: 60px;
	height: 57px;
	flex-shrink: 0;
	border-radius: 6px;
	border: 1px solid #F3F4F5;
	background: #FFFFFF;
	overflow: hidden;
}

.search-product__pic img
{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.search-product_info
{
	flex-grow: 1;
}

.search-product__title
{
	color: #343E4A;
	font-size: 14px;
	font-weight: 700;
	line-height: 22px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.search-product_info--row
{
	margin-top: 3px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.search-product__attr
{
	padding: 3px 6px;
	display: flex;
	align-items: center;
	gap: 3px;
	border-radius: 8px;
	border: 1.3px solid rgba(186, 207, 227, 0.50);
	background-color: #FFFFFF;
	color: #20517A;
	font-size: 11px;
	font-weight: 700;
	line-height: 150%;
}

.search-product__attr svg
{
	width: 14px;
	height: auto;
	flex-shrink: 0;
}

.search-product__rating
{
	padding: 4px 7px;
	display: flex;
	align-items: center;
	gap: 2px;
	border-radius: 8px;
	background: #FAF7F3;
	color: #343E4A;
	font-size: 12px;
	font-weight: 700;
	line-height: 133%;
}

.search-product__rating img
{
	width: 17px;
	height: auto;
	flex-shrink: 0;
}

.search-product_r
{
	max-width: 211px;
	width: 100%;
}

.search-product_prices
{
	display: flex;
	align-items: center;
	gap: 5px;
}

.search-product_price
{
	margin-right: 3px;
}

.search-product_price span
{
	color: #343E4A;
	font-size: 12px;
	font-weight: 600;
	line-height: 133%;
	position: relative;
}

.search-product_price span::after
{
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 0;
	border-bottom: 1px solid #343E4A;
	transform: rotate(-15deg) translateY(-50%);
}

.search-product_price p
{
	color: #20247A;
	font-size: 17px;
	font-weight: 700;
	line-height: 141%;
	margin-top: -6px;
}

.search-product__discount
{
	padding: 4px 5px;
	border-radius: 9px;
	background: linear-gradient(180deg, #49207E 0%, #21257E 100%);
	color: #FFFFFF;
	font-size: 12px;
	font-weight: 600;
	line-height: 133%;
}

.search-product_bonus
{
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 3px;
	border-radius: 9px;
	background-color: #E0EDEB;
}

.search-product_bonus>img
{
	width: 20px;
	height: auto;
	flex-shrink: 0;
}

.search-product_bonus--text
{
	color: rgba(52, 62, 74, 0.8);
	font-size: 12px;
	font-weight: 700;
	line-height: 133%;
}

.search-product_bonus>span
{
	width: 21px;
	height: 21px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background-color: #FFFFFF;
}

.search-product_r__text
{
	margin-top: 3px;
	color: #92969A;
	font-size: 12px;
	line-height: 133%;
}

.search-products_loadmore
{
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: max-content;
	color: #20247A;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	line-height: 143%;
	border-bottom: 1px dashed rgba(32, 36, 122, 0.50);
	transition: .3s;
	cursor: pointer;
	margin-top: 10px;
}

.search-products_loadmore:hover
{
	border-color: #19D8C4;
	color: #19D8C4;
}

.search-brands
{
	padding-left: 15px;
	padding-right: 15px;
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: nowrap;
	white-space: nowrap;
	overflow: hidden;
	overflow-x: auto;
	margin-top: 5px;
}

.search-brand
{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	width: 67px;
	flex-shrink: 0;
}

.search-brand__pic
{
	width: 52px;
	height: 44px;
	transition: .3s;
	border-radius: 7px;
	border: 1px solid #F3F4F5;
	background: #FFFFFF;
}

.search-brand:hover .search-brand__pic
{
	border-color: #20247A;
}

.search-brand__pic img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.search-brand span
{
	color: #343E4A;
	text-align: center;
	font-size: 12px;
	font-weight: 500;
	line-height: 133%;
	transition: .3s;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	width: 100%;
}

.search-brand:hover span
{
	color: #20247A;
}

.search-cats
{
	background-color: #F3F4F5;
	padding-bottom: 0;
}

.search-cats_slider
{
	padding: 10px 9px 14px;
	width: calc(100% - 12px);
	margin-left: auto;
	margin-right: auto;
	overflow: visible;
}

.search-cat
{
	display: flex;
	align-items: center;
	gap: 10px;
	border-radius: 10px;
	background-color: #FFFFFF;
	box-shadow: 0 11px 18px 0 rgba(8, 37, 67, 0.06);
	width: 235px;
	padding: 6px;
}

.search-cat__pic
{
	width: 53px;
	height: 53px;
	flex-shrink: 0;
	border-radius: 10px;
	background-color: #E7EDF3;
	overflow: hidden;
}

.search-cat__pic img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.search-cat span
{
	color: #343E4A;
	font-size: 14px;
	font-weight: 600;
	line-height: 143%;
	transition: .3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;	
}

.search-cat:hover span
{
	color: #20247A;
}

.search-cats_nav
{
	height: 0;
	position: absolute;
	top: 50%;
	left: 2px;
	right: 2px;
	transform: translateY(calc(-50% - 2px));
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 1;
}





.header-search__btn
{
	width: 54px;
	position: absolute;
	top: 4px;
	right: 4px;
	bottom: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header-r
{
	display: flex;
	align-items: center;
	gap: 10px;
}

.header-user
{
	display: flex;
	align-items: center;
	gap: 8px;
	padding-right: 13px;
}

.header-user__icon
{
	border-radius: 10px;
	border: 1px solid #20247A;
	background-color: #FFFFFF;
	width: 41px;
	height: 42px;
	flex-shrink: 0;
	overflow: hidden;
}

.header-user__icon img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.header-user_info
{
	position: relative;
}

.header-user_info p
{
	color: #191C21;
	font-size: 14px;
	font-weight: 600;
	line-height: 143%;
	max-width: 77px;
	overflow: hidden;
	white-space: nowrap;
	position: relative;
}

.header-user_info span
{
	display: block;
	color: rgba(52, 62, 74, 0.7);
	font-size: 12px;
	line-height: 133%;
	max-width: 85px;
	overflow: hidden;
	white-space: nowrap;
	position: relative;
}

.header-user_info p::after,
.header-user_info span::after
{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, #FFFFFF 100%);
}

.header-user_info p::after
{
	width: 33px;
}

.header-user_info span::after
{
	width: 23px;
}

.header-icon
{
	width: 41px;
	height: 42px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s;
	border-radius: 10px;
	border: 1px solid #E7EDF3;
	background: #FFFFFF;
	position: relative;
}

.header-icon:hover
{
	background-color: #20247A;
	border-color: #20247A;
}

.header-icon svg path
{
	transition: .3s;
}

.header-icon:hover svg path
{
	stroke: #FFFFFF;
}

.header-icon__text
{
	position: absolute;
	top: -5px;
	right: -5px;
	width: 18px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: #19D8C4;
	color: rgba(52, 62, 74, 0.8);
	font-size: 11px;
	font-weight: 700;
}

.header-cart
{
	display: flex;
	align-items: center;
	gap: 8px;
	position: relative;
	border-radius: 10px;
	border: 1px solid #E7EDF3;
	background-color: #FFFFFF;
	padding: 2px;
	padding-right: 9px;
	transition: .3s;
}

.header-cart:hover
{
	border-color: #20247A;
}

.header-cart .header-icon
{
	width: 36px;
	height: 36px;
	border-radius: 7px;
	background-color: #E7EDF3;
}

.header-cart:hover .header-icon
{
	background-color: #20247A;
	border-color: #20247A;
}

.header-cart:hover .header-icon svg path
{
	stroke: #FFFFFF;
}

.header-cart__price
{
	color: #20247A;
	font-size: 13px;
	font-weight: 700;
	line-height: 138%;
}

.header-bottom
{
	border-top: 1px solid #F3F4F5;
	border-bottom: 1px solid #F3F4F5;
}

.header-cats_menu
{
	padding-top: 14px;
	padding-bottom: 14px;
}

.header-cats
{
	opacity: 0;
}

.header-cats.swiper-initialized
{
	opacity: 1;
}

.header-cats_menu li
{
	display: flex;
	width: max-content;
}

.header-cats_menu li a
{
	color: #191C21;
	font-size: 14px;
	font-weight: 600;
	line-height: 143%;
	border-bottom: 1px solid transparent;
}

.header-cats_menu li a:hover
{
	border-color: rgba(239, 36, 93, 0.30);
	color: #EF245D;
}

.header-cats__icon
{
	width: 22px;
	height: 22px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: #F3F4F5;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s;
	z-index: 1;
	cursor: pointer;
	-webkit-box-shadow: 0px 0px 9px 20px rgba(255, 255, 255, 1);
	-moz-box-shadow: 0px 0px 9px 20px rgba(255, 255, 255, 1);
	box-shadow: 0px 0px 9px 20px rgba(255, 255, 255, 1);
}

.header-cats__icon.swiper-button-disabled
{
	opacity: 0;
	visibility: hidden;
}

/* .header-cats__icon::before {
content: '';
position: absolute;
top: 50%;
left: 0;
transform: translateY(-50%);
background: #FFFFFF;
background: radial-gradient(circle,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
width: 100%;
height: 100%;
border-radius: 50%;
z-index: -2;
} */
.header-cats__icon:hover
{
	background-color: #20247A;
}

.header-cats__icon svg
{
	position: relative;
	z-index: 1;
}

.header-cats__icon svg path
{
	transition: .3s;
}

.header-cats__icon:hover svg path
{
	stroke: #FFFFFF;
}

.header-cats__prev
{
	left: 0;
}

.header-cats__next
{
	right: 0;
}

.header-right
{
	display: none;
}

.megamenu
{
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	z-index: 6;
	background: #FFFFFF;
	box-shadow: 0 11px 40px 0 rgba(0, 0, 0, 0.25);
	padding-top: 30px;
	padding-bottom: 30px;
	display: none;
}

.megamenu-row
{
	display: flex;
	align-items: flex-start;
	gap: 47px;
}

.megamenu-items
{
	flex-grow: 1;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 15px;
	position: relative;
}

.megamenu-items::before
{
	content: '';
	position: absolute;
	display: block;
	border: 25px solid transparent;
	border-bottom: 25px solid #FFFFFF;
	top: -65px;
	left: 188px;
}

.megamenu-items>li
{
	padding-left: 63px;
	padding-top: 13.5px;
	position: relative;
}

.megamenu-items>li>img
{
	position: absolute;
	top: 0;
	left: 0;
	width: 53px;
	height: 53px;
	border-radius: 10px;
	object-fit: cover;
}

.megamenu-items>li>a
{
	display: block;
	color: #191C21;
	font-size: 18px;
	font-weight: 700;
	line-height: 26px;
}

.megamenu-items>li>a:hover
{
	color: #20247A;
}

.megamenu-items>li ul
{
	margin-top: 13.5px;
	padding-left: 1px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.megamenu-items>li ul li
{
	display: flex;
}

.megamenu-items>li ul li a
{
	color: #343E4A;
	font-size: 14px;
	font-weight: 500;
	line-height: 143%;
	border-bottom: 1px solid transparent;
}

.megamenu-items>li ul li a:hover
{
	color: #20247A;
	border-color: rgba(32, 36, 122, 0.30);
}

.megamenu-banner
{
	width: 249px;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
	border-radius: 15px;
	overflow: hidden;
	min-height: 362px;
	padding: 20px;
}

.megamenu-banner__bg
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
	transition: .3s;
}

.megamenu-banner:hover .megamenu-banner__bg
{
	transform: scale(1.05);
}

.megamenu-banner__title
{
	max-width: 145px;
	color: #FFFFFF;
	font-size: 18px;
	font-weight: 700;
	line-height: 26px;
}

.megamenu-banner__text
{
	color: #E7EDF3;
	font-size: 15px;
	font-weight: 500;
	line-height: 140%;
	margin-top: 2px;
	margin-bottom: 7px;
}

.megamenu-banner span
{
	padding: 6px 12px;
	border-radius: 8px;
	background: #FFFFFF;
	box-shadow: 0 11px 18px 0 rgba(8, 37, 67, 0.06);
	display: inline-flex;
	gap: 5px;
	color: #20247A;
	font-size: 13px;
	font-weight: 600;
	line-height: 138%;
	transition: .3s;
}

.megamenu-banner:hover span
{
	background-color: #20247A;
	color: #FFFFFF;
}

.megamenu-banner span svg path
{
	transition: .3s;
}

.megamenu-banner:hover svg path
{
	stroke: #FFFFFF;
}

.megamenu-top
{
	display: none;
}

.mob-menu
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100 * var(--vh));
	background-color: rgba(4, 6, 34, 0.20);
	z-index: 5;
	display: none;
}

.mob-menu_inner
{
	max-width: 360px;
	width: 100%;
	height: 100%;
	background-color: #FFFFFF;
	display: flex;
	flex-direction: column;
	transform: translateX(-100%);
	transition: .3s;
}

.mob-menu.active .mob-menu_inner
{
	transform: translateX(0);
}

.mob-menu_top
{
	padding: 6px 15px 5px;
	border-bottom: 1px solid #F3F4F5;
	display: flex;
	align-items: center;
	gap: 10px;
}

.mob-menu_search
{
	flex-grow: 1;
}

.mob-menu__close
{
	width: 34px;
	height: 34px;
	background-color: #EFF5FB;
	border-radius: 7px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.mob-menu_mid
{
	padding: 14px 14px 13px;
}

.mob-menu__catalog
{
	padding: 14px;
	gap: 10px;
	width: 100%;
}

.mob-menu__catalog span
{
	display: block;
	margin-right: auto;
	font-size: 14px;
	font-weight: 600;
	line-height: 143%;
}

.mob-menu_items
{
	margin-bottom: 20px;
}

.mob-menu_items li
{
	display: flex;
	width: 100%;
}

.mob-menu_items li a
{
	display: block;
	width: 100%;
	padding: 14px 14px 13px;
	border-bottom: 1px solid #F3F4F5;
	color: #343E4A;
	font-size: 12px;
	font-weight: 700;
	line-height: 133%;
	text-transform: uppercase;
}

.mob-menu_bottom
{
	padding: 15px 14px;
	display: flex;
	flex-direction: column;
	gap: 9px;
	margin-top: auto;
}











.popup
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100 * var(--vh));
	z-index: 11;
	background-color: rgba(24, 24, 38, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	display: none;
}

.popup-inner
{
	background-color: #FFFFFF;
	border-radius: 15px;
	padding: 30px;
	position: relative;
}

.popup-callback
{
	max-width: 485px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.popup__close
{
	position: absolute;
	top: 10px;
	right: 10px;
	width: 37px;
	height: 37px;
	border-radius: 9px;
	border: 1px solid #F3F4F5;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s;
	cursor: pointer;
}

.popup__close:hover
{
	background-color: #20247A;
	border-color: #20247A;
}

.popup__close svg path
{
	transition: .3s;
}

.popup__close:hover svg path
{
	stroke: #FFFFFF;
}

.popup__title
{
	padding-right: 25px;
	color: #191C21;
	font-size: 26px;
	font-weight: 700;
	line-height: 32px;
}

.popup__btn
{
	width: 100%;
	height: 57px;
}


.pagination
{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
}

.swiper-pagination-bullet
{
	margin: 0 !important;
	width: 10px;
	height: 10px;
	border-radius: 900px;
	background-color: transparent;
	border: 2px solid #20247A;
	opacity: 0.3;
	transition: .3s;
}

.swiper-pagination-bullet-active
{
	width: 22px;
	border-color: #19D8C4;
	opacity: 1;
}

.d-none
{
	display: none !important;
}

.wave
{
	position: relative;
	z-index: 1;
}

/* .wave::before
{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(-100%);
	width: 100%;
	height: 154px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 0;
}

.wave::after
{
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	transform: translateY(100%);
	width: 100%;
	height: 154px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 0;
} */

.wave-gray
{
	background-color: #EFF5FB;
}
/*  

.wave-gray::before
{
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkyMCIgaGVpZ2h0PSIxNTQiIHZpZXdCb3g9IjAgMCAxOTIwIDE1NCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzQxXzIwMjgpIj4KPHBhdGggZD0iTTAuMDAwMTIyMDcgNDEuODlDMTAyNyAtMTI4LjIxNCAxMjA0IDQyMC44NDQgMTkyMCAwVjE3MUgwTDAuMDAwMTIyMDcgNDEuODlaIiBmaWxsPSIjRDhFNkY0Ii8+CjxwYXRoIGQ9Ik0wLjAwMDEyMjA3IDEwMi40NDFDOTI2IC0xMjguNDI0IDEyNjAuNjIgMzYwLjA2NSAxOTIwIDQxLjM0NDJWMTcySDBMMC4wMDAxMjIwNyAxMDIuNDQxWiIgZmlsbD0iI0VGRjVGQiIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzQxXzIwMjgiPgo8cmVjdCB3aWR0aD0iMTkyMCIgaGVpZ2h0PSIxNTQiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSAxOTIwIDApIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==);
}

.wave-gray.wave-reverse::before
{
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkyMCIgaGVpZ2h0PSIxNTQiIHZpZXdCb3g9IjAgMCAxOTIwIDE1NCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzEyNl80MDAyKSI+CjxwYXRoIGQ9Ik0xOTIwIDQxLjg5Qzg5MyAtMTI4LjIxNCA3MTYgNDIwLjg0NCAwIDBWMTcxSDE5MjBMMTkyMCA0MS44OVoiIGZpbGw9IiNEOEU2RjQiLz4KPHBhdGggZD0iTTE5MjAgMTAyLjQ0MUM5OTQgLTEyOC40MjQgNjU5LjM4NCAzNjAuMDY1IDAgNDEuMzQ0MlYxNzJIMTkyMEwxOTIwIDEwMi40NDFaIiBmaWxsPSIjRUZGNUZCIi8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDBfMTI2XzQwMDIiPgo8cmVjdCB3aWR0aD0iMTkyMCIgaGVpZ2h0PSIxNTQiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==);
} */

/* .wave-gray::after
{
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkyMCIgaGVpZ2h0PSIxNTQiIHZpZXdCb3g9IjAgMCAxOTIwIDE1NCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzY3XzQ0MjApIj4KPHBhdGggZD0iTTE5MjAgMTEyLjExQzg5MyAyODIuMjE0IDcxNiAtMjY2Ljg0NCAwIDE1NFYtMTdIMTkyMEwxOTIwIDExMi4xMVoiIGZpbGw9IiNEOEU2RjQiLz4KPHBhdGggZD0iTTE5MjAgNTEuNTU5MkM5OTQgMjgyLjQyNCA2NTkuMzg0IC0yMDYuMDY1IDAgMTEyLjY1NlYtMThIMTkyMEwxOTIwIDUxLjU1OTJaIiBmaWxsPSIjRUZGNUZCIi8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDBfNjdfNDQyMCI+CjxyZWN0IHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjE1NCIgZmlsbD0id2hpdGUiIHRyYW5zZm9ybT0ibWF0cml4KDEgMCAwIC0xIDAgMTU0KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=);
}

.wave-gray.wave-reverse::after
{
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkyMCIgaGVpZ2h0PSIxNTQiIHZpZXdCb3g9IjAgMCAxOTIwIDE1NCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzEyNl8yMTI4OSkiPgo8cGF0aCBkPSJNMC4wMDAxMjIwNyAxMTIuMTFDMTAyNyAyODIuMjE0IDEyMDQgLTI2Ni44NDQgMTkyMCAxNTRWLTE3SDBMMC4wMDAxMjIwNyAxMTIuMTFaIiBmaWxsPSIjRDhFNkY0Ii8+CjxwYXRoIGQ9Ik0wLjAwMDEyMjA3IDUxLjU1OTJDOTI2IDI4Mi40MjQgMTI2MC42MiAtMjA2LjA2NSAxOTIwIDExMi42NTZWLTE4SDBMMC4wMDAxMjIwNyA1MS41NTkyWiIgZmlsbD0iI0VGRjVGQiIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzEyNl8yMTI4OSI+CjxyZWN0IHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjE1NCIgZmlsbD0id2hpdGUiIHRyYW5zZm9ybT0ibWF0cml4KC0xIDAgMCAtMSAxOTIwIDE1NCkiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K);
} */

.wave-svg {
	position: absolute;
	left: 0;
	width: 100%;
	height: auto;
}
.wave-top {
	top: 2px;
	transform: translateY(-100%);
}
.wave-bottom {
	bottom: 2px;
	transform: translateY(100%);
}

.slider-tags
{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 11px;
	margin-top: 15px;
}

.slider-tag
{
	padding: 9px 14px;
	border-radius: 9px;
	background-color: #FFFFFF;
	color: #343E4A;
	font-size: 14px;
	font-weight: 600;
	line-height: 143%;
	cursor: pointer;
	transition: .3s;
}

.slider-tag:hover
{
	color: #0B54A0;
}

.slider-tag.active
{
	pointer-events: none;
	background-color: #0B54A0;
	color: #FFFFFF;
}

.products-sliders
{
	margin-top: 30px;
	position: relative;
	z-index: 2;
}

.products-slider
{
	overflow: visible;
	display: none;
	position: relative;
}

.products-slider.active
{
	display: block;
}



.product-cart
{
	position: relative;
	padding: 11px;
	border-radius: 14px;
	background-color: #FFFFFF;
	box-shadow: 0 11px 18px 0 rgba(8, 37, 67, 0.06);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	border: 1px solid #FFFFFF;
	transition: .3s;
}

.product-cart:hover
{
	border-color: #19D8C4;
	border-radius: 14px 14px 0 0;
	z-index: 2;
}

.products-slide
{
	height: auto;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.products-slide.active
{
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.product-cart_top
{
	position: relative;
	width: 100%;
	aspect-ratio: 1.055;
	overflow: hidden;
	z-index: 1;
}

.product-cart_pics
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-color: #FFFFFF;
}

.product-cart_pics img
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	object-fit: contain;
}

.product-cart_pics img.active
{
	opacity: 1;
	visibility: visible;
}

.product-cart_tags
{
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 3px;
	z-index: 2;
}

.product-cart_tags span
{
	display: block;
	padding: 4px 7px;
	border-radius: 8px;
	color: #FFFFFF;
	font-size: 11px;
	font-weight: 700;
	line-height: 150%;
}

.product-cart_tags span.product-cart__discount
{
	padding: 4px 5px;
	background: linear-gradient(180deg, #49207E 0%, #21257E 100%);
	font-size: 12px;
	font-weight: 600;
	line-height: 133%;
	border-radius: 9px;
}

.product-cart__favourite
{
	position: absolute;
	top: 0;
	right: 0;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 9px;
	background-color: #F3F4F5;
	border: 1px solid #F3F4F5;
	z-index: 2;
}

.product-cart__favourite:hover
{
	background-color: #e8eaeb;
	border-color: #e8eaeb;
}

.product-cart__favourite._added
{
	background-color: transparent;
}

.add-wishlist
{
	transition: .3s;
}

.add-wishlist._added svg path
{
	stroke: #EF245D;
	fill: #EF245D;
}

.product-cart__attr
{
	position: absolute;
	bottom: 10.55px;
	left: 0;
	border-radius: 8px;
	border: 1px solid rgba(186, 207, 227, 0.50);
	background: #FFFFFF;
	padding: 2px 3px;
	color: #20517A;
	font-size: 11px;
	font-weight: 700;
	line-height: 150%;
	z-index: 2;

}

/* Initialy in content-product-brand-popular.php */
.product-cart__attr.volume-attr {
	padding: 4px 7px 4px 5px;
	display: flex;
	align-items: center;
	gap: 3px;
}

.product-cart_pics--inner
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: stretch;
	z-index: 1;
}

.product-cart_pics--inner span
{
	height: 100%;
	flex-grow: 1;
}

.product-cart_items
{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	display: flex;
	align-items: center;
	gap: 3px;
}

.product-cart_items span
{
	display: block;
	flex-grow: 1;
	height: 4px;
	border-radius: 900px;
	opacity: 0.2;
	background: #191C21;
	transition: .3s;
}

.product-cart_items span.active
{
	opacity: 0.7;
}

.product-cart__term
{
	margin-top: 10px;
	width: max-content;
	overflow: hidden;
	color: #343E4A;
	font-size: 12px;
	font-weight: 600;
	line-height: 133%;
	opacity: 0.6;
}

.product-cart__term:hover
{
	opacity: 1;
}

.product-cart__title
{
	margin-top: 5px;
	margin-bottom: 10px;
	color: #343E4A;
	font-size: 14px;
	font-weight: 700;
	line-height: 22px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	min-height: 44px;
}

.product-cart__title:hover
{
	color: #20247A;
}

.product-cart_prices
{
	padding-top: 1px;
	padding-bottom: 1px;
	margin-top: auto;
	transition: .3s;
}

.product-cart:hover .product-cart_prices
{
	height: auto;
}

.product-cart__oldprice
{
	color: #343E4A;
	font-size: 12px;
	font-weight: 600;
	line-height: 133%;
	position: relative;
	opacity: 0.4;
	width: max-content;
}

.product-cart__oldprice::after
{
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 0;
	border-bottom: 1px solid #343E4A;
	transform: rotate(-15deg) translateY(-50%);
}

.product-cart__newprice
{
	color: #20247A;
	font-size: 17px;
	font-weight: 700;
	line-height: 141%;
	padding-top: 10px;
}

.product-cart__oldprice+.product-cart__newprice
{
	margin-top: -6px;
	padding-top: 0;
}

.product-cart__info
{
	margin-top: 2px;
	color: #92969A;
	font-size: 12px;
	line-height: 133%;
}

.product-cart_bottom
{
	position: absolute;
	bottom: 11px;
	left: -1px;
	right: -1px;
	transform: translateY(100%);
	margin-top: 2px;
	background-color: #FFFFFF;
	border: 1.6px solid #19D8C4;
	padding: 0 11px 11px;
	border-top: none;
	border-radius: 0 0 14px 14px;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
}

.product-cart:hover .product-cart_bottom
{
	opacity: 1;
	visibility: visible;
}

.product-cart_bonuses
{
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 3px;
	border-radius: 9px;
	background-color: #E0EDEB;
}

.product-cart_bonuses>img
{
	width: 20px;
	height: auto;
	flex-shrink: 0;
}

.product-cart_bonuses__text
{
	color: rgba(52, 62, 74, 0.8);
	font-size: 12px;
	font-weight: 700;
	line-height: 133%;
}

.product-cart_bonuses>span
{
	width: 21px;
	height: 21px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background-color: #FFFFFF;
	position: relative;
	cursor: pointer;
}

.tooltip
{
	position: absolute;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
	width: 210px;
	border-radius: 4px;
	background-color: rgba(0, 0, 0, 0.79);
	color: #FFFFFF;
	padding: 10px;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	z-index: 5;
	line-height: 143%;
	font-size: 14px;
}

.tooltip::after
{
	content: '';
	position: absolute;
	display: block;
	border: 6px solid transparent;
	border-top: 6px solid rgba(0, 0, 0, 0.79);
	transform: translateX(-50%);
	bottom: -11px;
	left: 50%;
}

.product-cart_bonuses>span:hover .tooltip
{
	opacity: 1;
	visibility: visible;
}

.product-cart_attrs
{
	margin-top: 10px;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.product-cart_attr
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
}

.product-cart_attr::after
{
	content: '';
	flex-grow: 1;
	height: 0;
	border-bottom: 1px dashed rgba(146, 150, 154, 0.5);
}

.product-cart_attr p
{
	color: rgba(25, 28, 33, 0.4);
	font-size: 12px;
	font-weight: 600;
	line-height: 133%;
}

.product-cart_attr span
{
	display: block;
	color: #343E4A;
	font-size: 12px;
	font-weight: 600;
	line-height: 133%;
	order: 1;
	text-align: right;
}

.product-cart_bottom--row
{
	display: flex;
	align-items: center;
	gap: 15px;
	margin-top: 10px;
}

.product-cart_qty
{
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
}

.product-cart_qty__btn
{
	width: 47px;
	height: 47px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #F3F4F5;
	border-radius: 13px;
	transition: .3s;
}

.product-cart_qty__btn:hover
{
	background-color: #19D8C4;
}

.product-cart_qty__btn svg path
{
	transition: .3s;
}

.product-cart_qty__btn:hover svg path
{
	stroke: #20247A;
}

.product-cart_qty__text
{
	width: 30px;
	background-color: transparent;
	border: none;
	padding: 0;
	pointer-events: none;
	text-align: center;
	color: #191C21;
	font-size: 15px;
	font-weight: 600;
	line-height: 140%;
	opacity: 0.8;
}

.product-cart__addCart
{
	width: 62px;
	height: 46px;
}

.product-cart__addCart span
{
	display: none;
}

.product-cart_bottom .product-cart__favourite
{
	display: none;
}

.product-cart_bottom__btn
{
	margin-top: 10px;
	width: 100%;
	height: 40px;
	gap: 6px;
}

.products-slider_navigation
{
	position: absolute;
	top: 50%;
	left: -83px;
	right: -83px;
	transform: translateY(-50%);
	height: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 1;
}

.products-slider__btn
{
	width: 53px;
	height: 53px;
	border-radius: 13px;
	background-color: #FFFFFF;
	box-shadow: 0 11px 18px 0 rgba(8, 37, 67, 0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s;
	cursor: pointer;
}

.products-slider__btn:hover
{
	background-color: #20247A;
}

.products-slider__btn svg path
{
	transition: .3s;
}

.products-slider__btn:hover svg path
{
	stroke: #FFFFFF;
}

.products-slider__btn.swiper-button-disabled
{
	background-color: #E7EDF3;
	pointer-events: none;
}

.products-slider__btn.swiper-button-disabled svg path
{
	stroke: rgba(146, 150, 154, 0.4);
}

.products-slider_pagination
{
	margin-top: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
}


.form-block_row
{
	display: flex;
	align-items: stretch;
	gap: 20px;
}

.form-banner
{
	width: 518px;
	flex-shrink: 0;
	padding: 35px;
	padding-bottom: 25px;
	position: relative;
	z-index: 1;
	border-radius: 18px;
	overflow: hidden;
	color: #FFFFFF;
}

.form-banner__bg
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.form-banner__title
{
	font-size: 26px;
	font-weight: 700;
	line-height: 32px;
	max-width: 285px;
}

.form-banner__text
{
	font-size: 15px;
	font-weight: 500;
	line-height: 140%;
	max-width: 281px;
	margin-top: 10px;
}

.form-banner__btn
{
	padding: 15px 18px;
	gap: 8px;
	margin-top: 12px;
	display: inline-flex;
}

.subscribe
{
	position: relative;
	z-index: 1;
	padding: 32px;
	border-radius: 18px;
	border: 3px solid #BACFE3;
	background: #FFFFFF;
	flex-grow: 1;
	overflow: hidden;
}

.subscribe__pic
{
	position: absolute;
	right: -43px;
	top: 3px;
	width: 399px;
	height: auto;
	z-index: -1;
}

.subscribe-inner
{
	max-width: 599px;
}

.subscribe__title
{
	color: #343E4A;
	font-size: 26px;
	font-weight: 700;
	line-height: 32px;
	padding-right: 40px;
}

.subscribe__text
{
	color: rgba(52, 62, 74, 0.7);
	font-size: 15px;
	font-weight: 500;
	line-height: 140%;
	margin-top: 10px;
}

.subscribe-form
{
	margin-top: 17px;
	margin-bottom: 17px;
	display: flex;
	align-items: start;
	gap: 10px;
}

.subscribe-fg
{
	flex-grow: 1;
	position: relative;
}

.subscribe-fg>svg
{
	position: absolute;
	top: 19px;
	left: 15px;
	width: 18px;
	height: auto;
}

.subscribe-fg input
{
	width: 100%;
	height: 57px;
	border-radius: 12px;
	border: 2px solid var(--Primary-Blue, #0B54A0);
	background: var(--UI-White, #FFF);
	padding-left: 38px;
	padding-right: 13px;
	color: #191C21;
	font-size: 13px;
	line-height: 138%;
}

.subscribe-form__btn
{
	width: 174px;
	height: 57px;
}

.subscribe .checkbox__text
{
	color: #92969A;
}

.map-heart_wrapper
{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}

.map-heart iframe
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.map-heart__pic
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}


.product-views_slider
{
	margin-top: 37px;
	height: 642px;
	overflow: visible;
}

/* Высота слайдера в зависимости от количества строк */
.product-views_slider.rows-1
{
	height: auto;
}

.product-views_slider.rows-2
{
	height: 428px;
}

.product-views_slider.rows-3
{
	height: 642px;
}

.product-view
{
	height: calc((100% / 3) - 36px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	border-radius: 14px;
	background-color: #FFFFFF;
	box-shadow: 0 11px 18px 0 rgba(8, 37, 67, 0.06);
	padding: 12px;
	display: flex;
	align-items: stretch;
	gap: 11px;
}

/* Высота товара в зависимости от количества строк в слайдере */
.product-views_slider.rows-1 .product-view
{
	height: auto;
}

.product-views_slider.rows-2 .product-view
{
	height: calc((100% / 2) - 18px);
}

.product-views_slider.rows-3 .product-view
{
	height: calc((100% / 3) - 36px);
}

.product-view.active
{
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.product-view_l
{
	width: 184px;
	aspect-ratio: 1.0823;
	position: relative;
	flex-shrink: 0;
}

.product-view__pic
{
	width: 100%;
	height: 100%;
}

.product-view__pic img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-view .product-cart__favourite
{
	width: 30px;
	height: 30px;
}

.product-view .product-cart__attr
{
	left: 0;
	bottom: 0;
}

.product-view_r
{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	flex-grow: 1;
}

.product-cart_info
{
	display: flex;
	align-items: center;
	gap: 7px;
}

.product-cart_rating
{
	padding: 5px 7px;
	display: flex;
	align-items: center;
	gap: 2px;
	border-radius: 8px;
	background: #FAF7F3;
}

.product-cart_rating img
{
	width: 17px;
	height: auto;
	flex-shrink: 0;
}

.product-cart_rating span
{
	color: #343E4A;
	font-size: 12px;
	font-weight: 700;
	line-height: 133%;
}

.product-cart_reviews
{
	display: flex;
	align-items: center;
	gap: 5px;
}

.product-cart_reviews img
{
	width: 14px;
	height: auto;
	flex-shrink: 0;
}

.product-cart_reviews span
{
	display: block;
	border-bottom: 1px solid rgba(33, 82, 124, 0.30);
	color: #20517A;
	font-size: 12px;
	font-weight: 500;
	line-height: 133%;
	transition: .3s;
}

.product-cart_reviews:hover span
{
	border-color: #20517A;
}

.product-view__title--wrapper
{
	height: 43px;
	display: flex;
	align-items: center;
	margin-top: 5px;
}

.product-view__title
{
	color: #343E4A;
	font-size: 14px;
	font-weight: 700;
	line-height: 22px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.product-view .product-cart_prices
{
	margin-top: 0;
}

.product-view .product-cart__newprice
{
	padding-top: 11px;
}

.product-view .product-cart__oldprice+.product-cart__newprice
{
	padding-top: 0;
}

.product-view_bottom
{
	width: 100%;
}

.product-view .product-cart__addCart
{
	width: auto;
	flex-grow: 1;
}

.product-view .product-cart_qty
{
	flex-grow: unset;
}

.woocommerce-breadcrumb
{
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	white-space: nowrap;
	overflow: hidden;
	overflow-x: auto;
}

.woocommerce-breadcrumb span
{
	color: rgba(52, 62, 74, 0.3);
	font-size: 13px;
	font-weight: 500;
	line-height: 138%;
}

.woocommerce-breadcrumb a
{
	color: #343E4A;
	font-size: 13px;
	font-weight: 500;
	line-height: 138%;
}

.woocommerce-breadcrumb a:hover
{
	color: #20247A;
}

.woocommerce-breadcrumb svg
{
	width: 15px;
	flex-shrink: 0;
}



.m-page
{
	flex-grow: 1;
	padding-top: 188px;
	overflow: hidden;
}

.footer
{
	position: relative;
	z-index: 2;
	background: linear-gradient(180deg, #49207E 0%, #21257E 43.69%);
}
.footer__wave {
	position: absolute;
	top: 2px;
	transform: translateY(-100%);
	width: 100%;
	height: auto;
}

.footer-top
{
	padding-top: 30px;
	padding-bottom: 29px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-top_row
{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-logo
{
	width: 128px;
	height: auto;
	display: flex;
}

.footer-logo img
{
	width: 100%;
	height: auto;
}

.footer-links
{
	display: flex;
	align-items: center;
	gap: 45px;
}

.footer-links li
{
	display: flex;
	align-items: center;
}

.footer-links li a
{
	display: block;
	padding-top: 6px;
	padding-bottom: 4px;
	border-bottom: 2px solid transparent;
	color: #FFFFFF;
	font-size: 13px;
	font-weight: 500;
	line-height: 138%;
	opacity: 0.7;
}

.footer-links li a:hover
{
	border-color: #19D8C4;
	opacity: 1;
}

.footer-top_r
{
	display: flex;
	align-items: center;
	gap: 16px;
}

.footer__email
{
	display: flex;
	align-items: center;
	gap: 6px;
	margin-right: 24px;
}

.footer__email svg
{
	width: 17px;
	height: auto;
	flex-shrink: 0;
}

.footer__email span
{
	border-bottom: 1px solid rgba(25, 223, 201, 0.30);
	color: #19D8C4;
	font-size: 16px;
	font-weight: 700;
	line-height: 150%;
	transition: .3s;
}

.footer__email:hover span
{
	border-color: #19D8C4;
}

.footer__phone
{
	display: flex;
	align-items: center;
	gap: 7px;
	color: #FFFFFF;
	font-size: 17px;
	font-weight: 700;
	line-height: 150%;
}

.footer__phone:hover
{
	color: #19D8C4;
}

.footer__phone svg
{
	width: 17px;
	height: auto;
	flex-shrink: 0;
}

.footer__phone svg path
{
	transition: .3s;
}

.footer__phone:hover svg path
{
	stroke: #19D8C4;
}

.footer__btn
{
	padding: 11px 18px;
	border-radius: 10px;
	border: 2px solid #BACFE3;
	color: #19D8C4;
	font-size: 13px;
	font-weight: 600;
	line-height: 138%;
	background-color: transparent;
	transition: .3s;
	font-family: inherit;
}

.footer__btn:hover
{
	background-color: #19D8C4;
	border-color: #19D8C4;
	color: #20247A;
}

.footer-mid
{
	padding-top: 30px;
	padding-bottom: 30px;
}

.footer-mid_row
{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.footer-col
{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
}

.footer-menu
{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 13px;
}

.footer-menu>li
{
	display: flex;
	align-items: center;
}

.footer-menu>li span
{
	color: #FFFFFF;
	font-size: 16px;
	font-weight: 700;
	line-height: 150%;
}

.footer-menu>li a
{
	color: #FFFFFF;
	font-size: 14px;
	line-height: 143%;
	opacity: 0.7;
}

.footer-menu>li a:hover
{
	opacity: 1;
}

.footer-bottom
{
	background-color: #1A1E77;
	padding-top: 25px;
	padding-bottom: 25px;
}

.footer-bottom_row
{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.copyright
{
	color: #FFFFFF;
	font-size: 13px;
	font-weight: 500;
	line-height: 138%;
}

.footer-payments
{
	display: flex;
	align-items: center;
	gap: 27px;
}

.footer-payments p
{
	color: #FFFFFF;
	font-size: 12px;
	font-weight: 500;
	line-height: 133%;
	opacity: 0.6;
}

.footer-bottom_links
{
	display: flex;
	align-items: center;
	gap: 15px;
}

.footer-bottom_links li
{
	display: flex;
	align-items: center;
}

.footer-bottom_links li a
{
	border-bottom: 1px solid rgba(231, 237, 243, 0.30);
	color: #E7EDF3;
	font-size: 13px;
	font-weight: 500;
	line-height: 138%;
}

.footer-bottom_links li a:hover
{
	border-color: #E7EDF3;
}


.sort
{
	display: flex;
	align-items: center;
	gap: 15px;
}

.sort>span
{
	color: #343E4A;
	font-size: 13px;
	font-weight: 600;
	line-height: 138%;
}

.pagination-wrapper
{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.loadmore
{
	max-width: 365px;
	width: 100%;
	height: 40px;
}

nav.pagination
{
	gap: 7px;
}

nav.pagination a,
nav.pagination span,
nav.pagination .page-number-dots
{
	padding: 18px 23px;
	border-radius: 10px;
	border: 1px solid #F3F4F5;
	background-color: #FFFFFF;
	text-decoration: none;
	color: #191C21;
	text-align: center;
	font-size: 13px;
	font-weight: 500;
	line-height: 138%;
}

nav.pagination a.prev,
nav.pagination a.next
{
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 18px 20px;
}

nav.pagination span.current
{
	background-color: #20247A;
	pointer-events: none;
	color: #FFFFFF;
}

nav.pagination a:hover
{
	border-color: #20247A;
	color: #20247A;
}

.product-cart__desc
{
	display: none;
}

.product-cart__compare
{
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 9px;
	background-color: #F3F4F5;
}

.product-cart_content .product-cart_attrs,
.product-cart_content .product-cart_bonuses,
.product-cart_content .product-cart_prices
{
	display: none;
}

.product-cart_r .product-cart_bottom--row,
.product-cart_r .product-cart_bottom__btn,
.product-cart_r .product-cart_bonuses
{
	display: none;
}


.empty-block
{
	background-color: #FFFFFF;
	padding: 12px;
	border-radius: 15px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	border-left: 3px solid #0B54A0;
}
.empty-block._dark {
	background-color: #EFF5FB;
}

.empty-block>img
{
	width: 24px;
	height: auto;
	flex-shrink: 0;
}

.empty-block p
{
	color: #20247A;
	font-size: 18px;
	font-weight: 700;
	line-height: 26px;
}

.empty-block span
{
	margin-top: 3px;
	display: block;
	color: #343E4A;
	font-size: 14px;
	line-height: 143%;
	opacity: 0.8;
}

.added-popup
{
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	right: 60px;
	z-index: 9;
	border-radius: 15px;
	background-color: #FFFFFF;
	box-shadow: 0 11px 40px 0 rgba(0, 0, 0, 0.25);
	padding: 15px;
	padding-right: 25px;
	display: flex;
	align-items: center;
	gap: 15px;
	display: none;
}

.added-popup__close
{
	width: 12px;
	display: flex;
	align-items: center;
	cursor: pointer;
	opacity: 0.4;
	position: absolute;
	top: 10px;
	right: 10px;
	transition: .3s;
}

.added-popup__close:hover
{
	opacity: 1;
}

.added-popup_pic
{
	width: 93px;
	height: 87px;
	border-radius: 10px;
	border: 1px solid #F3F4F5;
	background-color: #FFFFFF;
	flex-shrink: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.added-popup_pic img
{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.added-popup__title
{
	color: rgba(52, 62, 74, 0.6);
	font-size: 12px;
	font-weight: 600;
	line-height: 133%;
}

.added-popup .product-cart__title
{
	overflow: hidden;
	color: #343E4A;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	font-size: 14px;
	font-weight: 700;
	line-height: 22px;
	min-height: 0;
	margin: 0;
}

.added-popup_row
{
	display: flex;
	align-items: flex-end;
	gap: 7px;
}

.added-popup .product-cart__discount
{
	display: block;
	color: #FFFFFF;
	padding: 4px 5px;
	background: linear-gradient(180deg, #49207E 0%, #21257E 100%);
	font-size: 12px;
	font-weight: 600;
	line-height: 133%;
	border-radius: 9px;
}

.hero-product__arr
{
	width: 35px;
	height: 35px;
	border-radius: 8px;
	background-color: #FFFFFF;
	box-shadow: 0 11px 18px 0 rgba(8, 37, 67, 0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s;
	cursor: pointer;
}

.hero-product__arr:hover
{
	background-color: #20247A;
}

.hero-product__arr.swiper-button-disabled
{
	pointer-events: none;
	background-color: #E7EDF3;
}

.hero-product__arr svg
{
	transition: .3s;
}

.hero-product__arr.swiper-button-disabled svg
{
	opacity: 0.4;
}

.hero-product__arr svg path
{
	transition: .3s;
}

.hero-product__arr:hover svg path
{
	stroke: #FFFFFF;
}

.hero-product__arr.swiper-button-disabled svg path
{
	stroke: #92969A;
}


.popup-oneclick
{
	max-width: 525px;
	padding: 30px;
}

.popup-oneclick_top
{
	display: flex;
	align-items: center;
	gap: 20px;
	padding-bottom: 14px;
	border-bottom: 1px solid #F3F4F5;
	border-radius: 14px;
}

.popup-oneclick_prices
{
	display: flex;
	align-items: center;
	gap: 8px;
}

.popup-oneclick_form
{
	margin-top: 15px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.popup-oneclick_inputs
{
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.popup-oneclick_checks
{
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.popup-oneclick__btn
{
	width: 100%;
	padding: 18px;
	gap: 10px;
}

.popup-bonuses
{
	max-width: 989px;
}

.popup-bonuses_row
{
	display: flex;
	align-items: center;
	gap: 15px;
}

.popup-bonuses_l
{
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.popup-bonuses__pic
{
	width: 284px;
	height: auto;
}

.popup-bonuses__text
{
	color: #343E4A;
	font-size: 15px;
	line-height: 140%;
}

.popup-bonuses__title
{
	font-size: 18px;
	line-height: 26px;
	font-weight: 700;
	color: #191C21;
}

.popup-bonuses_grid
{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 15px;
}

.popup-bonuses_item
{
	padding: 9px 14px;
	border-radius: 10px;
	border: 1px solid #F3F4F5;
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.popup-bonuses_item span
{
	color: #343E4A;
	font-size: 14px;
	line-height: 143%;
}

.popup-thank
{
	max-width: 430px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}

.popup-thank .popup__title
{
	padding-right: 0;
}

.popup-thank__text
{
	color: #343E4A;
	font-size: 14px;
	line-height: 143%;
	text-align: center;
}

.popup-thank__btn
{
	padding: 11px;
	width: 222px;
	font-size: 13px;
	gap: 5px;
}

.btn-gray
{
	background-color: #BACFE3;
	border-radius: 10px;
	color: #20247A;
	font-size: 13px;
}

.btn-gray:hover
{
	color: #fff;
	background-color: #0B54A0;
}

.btn-gray:hover svg path
{
	fill: #fff;
}

.radio
{
	display: inline-block;
	width: 14px;
	height: 14px;
	border: 2px solid #fff;
	outline: 1px solid #F3F4F5;
	margin: 1px;
	border-radius: 100vmax;
	background-color: #fff;
	transition: 0.3s;
	flex-shrink: 0;
}

input[type="radio"]:checked+label>.radio
{
	background-color: #20247A;
	outline: 1px solid #20247A;
}

.popup-mobile
{
	align-items: flex-end;
}

.popup-mobile .popup-inner
{
	padding: 0;
	width: 100%;
	border-radius: 15px 15px 0 0;
	padding-bottom: 50px;
}



.product-footer
{
	position: relative;
	z-index: 2;
}


@media(min-width: 1261px) and (max-width: 1550px)
{
	.search-product
	{
		flex-direction: column;
		align-items: flex-start;
	}

	.search-product_l
	{
		max-width: 100%;
	}

	.search-product__title
	{
		font-size: 13px;
	}

	.search-product_price
	{
		display: flex;
		align-items: center;
		gap: 6px;
	}

	.search-product_r
	{
		max-width: 100%;
	}

	.search-product_price p
	{
		font-size: 15px;
		margin-top: 0;
		line-height: 139%;
	}

	.search-product__discount
	{
		padding: 2px 5px;
		font-size: 11px;
		border-radius: 6px;
	}

	.search-product_bonus
	{
		margin-left: auto;
		border: none;
		background-color: transparent;
		padding: 0;
		gap: 3px;
	}

	.search-product_bonus>img
	{
		width: 17px;
	}

	.search-product_bonus>span
	{
		width: 15px;
		height: 15px;
		border-radius: 50%;
		background-color: #EFF5FB;
	}

	.search-product_r__text
	{
		margin-top: 0;
	}
}

@media(max-width: 1700px)
{
	.products-slider_navigation
	{
		left: -20px;
		right: -20px;
	}
}

@media(max-width: 1550px)
{
	.container
	{
		max-width: 1260px;
		padding-left: 24px;
		padding-right: 24px;
	}

	.header-row
	{
		gap: 15px;
	}

	.header-logo
	{
		width: 118px;
		height: 45px;
	}

	.catalog__btn
	{
		width: 128px;
	}

	.header-search input
	{
		width: 530px;
		height: auto;
	}

	.search__text
	{
		font-size: 12px;
	}

	.megamenu-row
	{
		gap: 20px;
	}

	.megamenu-items
	{
		gap: 10px;
	}

	.megamenu-items::before
	{
		left: 152px;
	}

	.products-slider_navigation
	{
		left: -83px;
		right: -83px;
	}

	.product-view_l
	{
		width: 140px;
	}


	.footer-links
	{
		gap: 20px;
	}

	.footer-logo
	{
		width: 118px;
	}

	.footer__email
	{
		margin-right: 0;
	}

	.footer__email span
	{
		font-size: 15px;
	}

	.footer__phone
	{
		font-size: 15px;
	}

	.footer-top_r
	{
		gap: 13px;
	}

	.footer-menu>li span
	{
		font-size: 15px;
	}

	.footer-menu>li a
	{
		font-size: 13px;
	}
}

@media(max-width: 1400px)
{
	.products-slider_navigation
	{
		left: -20px;
		right: -20px;
	}
}

@media(max-width: 1260px)
{
	.m-page
	{
		padding-top: 123px;
	}

	.header-menu
	{
		gap: 12px;
	}

	.header-menu li a
	{
		font-size: 12px;
		font-weight: 500;
		padding: 0;
		border: none;
	}

	.header__phone--text
	{
		font-size: 13px;
	}

	.header__btn,
	.header-online
	{
		display: none;
	}

	.header-mid
	{
		padding-top: 6px;
		padding-bottom: 8px;
	}

	.header-row
	{
		gap: 20px;
	}

	.header-logo
	{
		width: 86px;
		height: 34px;
	}

	.header-center
	{
		gap: 10px;
		flex-grow: 1;
	}

	.catalog__btn--text
	{
		display: none;
	}

	.catalog__btn
	{
		width: 34px;
		height: 34px;
		padding: 0;
		border-radius: 8px;
	}

	.header-search
	{
		flex-grow: 1;
	}

	header .search input
	{
		padding: 9px 70px 10px 10px;
		border-radius: 10px;
		width: 100%;
	}

	.search__text
	{
		font-size: 13px;
	}

	.header-search__btn
	{
		width: 20px;
		height: 20px;
		top: 50%;
		right: 11px;
		bottom: unset;
		transform: translateY(-50%);
		background-color: transparent;
		border-radius: 0;
		padding: 0;
		background-color: transparent !important;
	}

	.header-search__btn::after
	{
		content: none;
	}

	.header-search__btn svg
	{
		width: 100%;
		height: auto;
	}

	.header-search__btn svg path,
	.header-search__btn:hover svg path
	{
		stroke: #343E4A;
	}

	.header-r
	{
		gap: 20px;
	}

	.header-user
	{
		padding-right: 0;
	}

	.header-user__icon
	{
		width: 19px;
		height: 19px;
		border-radius: 5px;
		border-width: 1px;
	}

	.header-user_info
	{
		display: none;
	}

	.header-icon,
	.header-cart .header-icon
	{
		width: 19px;
		height: 19px;
		border: none;
		background-color: transparent !important;
		border-radius: 0;
	}

	.header-icon svg path
	{
		stroke: #191C21 !important;
	}

	.header-icon__text
	{
		width: 16px;
		height: 16px;
		font-size: 10px;
		line-height: 110%;
		top: -6px;
		right: -8px;
	}

	.header-cart
	{
		padding: 0;
		border: none;
	}

	.header-cart__price
	{
		display: none;
	}

	.header-cats_menu
	{
		padding-top: 7px;
		padding-bottom: 7px;
	}

	.header-cats_menu li a
	{
		font-size: 13px;
	}

	.search__text
	{
		left: 11px;
	}


	.megamenu
	{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: calc(100 * var(--vh));
		background-color: rgba(4, 6, 34, 0.20);
		padding: 0;
		display: none;
	}

	.megamenu>.container
	{
		padding: 0;
	}

	.megamenu-row
	{
		flex-direction: column;
		gap: 0;
		background-color: #FFFFFF;
		max-width: 360px;
		height: calc(100 * var(--vh));
		overflow: hidden;
		overflow-y: auto;
		padding-bottom: 30px;
		transform: translateX(-100%);
		transition: .3s;
	}

	.megamenu.active .megamenu-row
	{
		transform: translateX(0);
	}

	.megamenu-top
	{
		display: block;
		padding: 6px 15px;
		width: 100%;
		border-bottom: 1px solid #F3F4F5;
	}

	.megamenu-top_row
	{
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		margin-bottom: 12px;
	}

	.megamenu-top__btn
	{
		width: 33px;
		height: 33px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 9px;
		border: 1px solid #F3F4F5;
		cursor: pointer;
	}

	.megamenu-top_row>p
	{
		color: #191C21;
		text-align: center;
		font-size: 15px;
		font-weight: 700;
		line-height: 19px;
		flex-grow: 1;
	}

	.megamenu-search input
	{
		width: 100%;
		padding: 8px;
		border-radius: 10px;
		border-width: 1px;
		font-size: 12px;
		line-height: 133%;
	}

	.megamenu-search .header-search__btn
	{
		right: 8px;
	}

	.megamenu-items
	{
		flex-direction: column;
		width: 100%;
		gap: 0;
		justify-content: flex-start;
		margin-bottom: 20px;
	}

	.megamenu-items>li
	{
		padding: 0;
		width: 100%;
		display: flex;
		align-items: center;
		gap: 10px;
		padding: 11px 14px 10px;
		position: relative;
		border-bottom: 1px solid #F3F4F5;
	}

	.megamenu-items>li::after
	{
		content: '';
		position: absolute;
		top: 20px;
		right: 14px;
		width: 13px;
		height: 13px;
		background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxMyAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTQuODc1IDEwLjI1TDguMTI1IDdMNC44NzUgMy43NSIgc3Ryb2tlPSIjMjAyNDdBIiBzdHJva2Utd2lkdGg9IjEuNiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: 50% 0;
	}

	.megamenu-items>li>img
	{
		position: static;
		width: 32px;
		height: 32px;
	}

	.megamenu-items>li ul
	{
		position: fixed;
		opacity: 0;
		visibility: hidden;
		top: 92px;
		left: 0;
		background-color: #FFFFFF;
		z-index: 2;
		max-width: 360px;
		width: 100%;
		margin-top: 0;
		height: calc((100 * var(--vh)) - 92px);
		transition: .3s;
		gap: 0;
	}

	.megamenu-items>li.active ul
	{
		opacity: 1;
		visibility: visible;
	}

	.megamenu-items>li>span
	{
		font-size: 14px;
	}

	.megamenu-banner
	{
		width: calc(100% - 28px);
		margin-left: auto;
		margin-right: auto;
		min-height: 251px;
	}

	.megamenu-items>li ul li a
	{
		border: none;
		padding: 11px 14px 10px;
		border-bottom: 1px solid #F3F4F5;
		width: 100%;
	}

	.megamenu-top__back
	{
		visibility: hidden;
	}

	.header-phones_inner
	{
		gap: 9px;
	}

	.phones
	{
		gap: 7px;
	}

	.search-results
	{
		padding-top: 39px;
	}

	.search__clear
	{
		right: 45px;
	}


	.products-slide
	{
		visibility: visible;
		opacity: 1;
		pointer-events: auto;
	}

	.products-slide:hover
	{
		border-color: #FFFFFF;
		border-radius: 12px;
	}

	.product-cart_pics--inner,
	.product-cart_items,
	.product-cart_attrs,
	.products-slider_navigation,
	.products-slider_pagination,
	.product-cart_qty
	{
		display: none;
	}

	.product-cart_bottom
	{
		opacity: 1;
		visibility: visible;
		position: static;
		border: none;
		padding: 0;
		transform: none;
		display: flex;
		align-items: flex-start;
		flex-wrap: wrap;
		row-gap: 8px;
		column-gap: 6px;
		width: 100%;
	}

	.product-cart_bottom .product-cart_bonuses
	{
		width: 100%;
		padding: 0;
		background-color: transparent;
		border-radius: 0;
	}

	.product-cart_bottom--row
	{
		margin-top: 0;
	}

	.product-cart_bottom__btn
	{
		margin-top: 0;
		width: calc(100% - 68px);
		height: 46px;
	}



	.form-banner
	{
		width: 440px;
	}

	.subscribe
	{
		padding: 10px;
		border-width: 2px;
	}

	.subscribe__pic
	{
		width: 200px;
		top: -14px;
		right: -6px;
	}

	.subscribe__text
	{
		max-width: 300px;
	}


	.product-view
	{
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		height: auto;
	}

	.product-views_slider
	{
		height: auto;
	}

	.product-view .product-cart_qty
	{
		display: flex;
	}


	.footer-logo
	{
		width: 90px;
	}

	.footer-links
	{
		gap: 10px;
	}

	.footer-links li a
	{
		font-size: 12px;
	}

	.footer-top_r
	{
		gap: 9px;
	}

	.footer__email span
	{
		font-size: 12px;
		line-height: 138%;
	}

	.footer__phone
	{
		font-size: 12px;
		line-height: 143%;
	}

	.footer__btn
	{
		padding: 6px 11px;
	}

	.footer-menu
	{
		gap: 8px;
	}

	.footer-menu>li span
	{
		font-size: 13px;
	}

	.footer-menu>li a
	{
		font-size: 12px;
	}


	.product-cart:hover
	{
		border-color: #FFFFFF;
		border-radius: 14px;
	}

}

@media(max-width: 991px)
{
	.d-none_tablet
	{
		display: none !important;
	}

	.d-block_tablet
	{
		display: block !important;
	}

	.d-flex_tablet
	{
		display: flex !important;
	}

	.h1
	{
		font-size: 22px;
		line-height: 28px;
	}

	.h2
	{
		font-size: 20px;
		line-height: 22px;
	}

	.h3
	{
		font-size: 17px;
		line-height: 21px;
	}

	.btn
	{
		border-radius: 12px;
	}


	.top
	{
		padding-top: 8px;
		padding-bottom: 8px;
	}

	.top__btn
	{
		display: none;
	}

	.top__text
	{
		font-size: 11px;
		line-height: 16px;
		max-width: 201px;
	}

	.top-close
	{
		width: 20px;
		height: 20px;
		right: 24px;
		border-radius: 6px;
	}

	.top-close svg
	{
		width: 8px;
		height: auto;
	}

	.header
	{
		top: 48px;
	}

	.top__bg
	{
		object-position: 67% 0;
	}


	.megamenu-banner
	{
		padding: 12px;
		border-radius: 10px;
	}

	.megamenu-banner__title
	{
		font-size: 15px;
		line-height: 19px;
		max-width: 100%;
	}

	.megamenu-banner__text
	{
		font-size: 12px;
		line-height: 133%;
	}


	.search-results
	{
		top: -10px;
		width: auto;
		left: -15px;
		right: -15px;
		padding-top: 60px;
		border-radius: 18px;
	}

	.search-box
	{
		border-top: 1px solid #F3F4F5;
		padding-top: 12px;
		padding-bottom: 11px;
	}

	.search-box__title
	{
		font-size: 14px;
		line-height: 143%;
		padding-left: 14px;
		padding-right: 14px;
	}

	.search-tags
	{
		gap: 6px;
		padding-left: 14px;
		padding-right: 14px;
	}

	.search-tag
	{
		font-size: 12px;
		line-height: 133%;
	}

	.search-products
	{
		margin-top: 6px;
	}

	.search-product
	{
		flex-direction: column;
		align-items: flex-start;
		padding: 8px 14px 7px;
		border-bottom: 1px solid #F3F4F5;
	}

	.search-product_l
	{
		max-width: 100%;
	}

	.search-product__title
	{
		font-size: 13px;
	}

	.search-product_price
	{
		display: flex;
		align-items: center;
		gap: 6px;
	}

	.search-product_r
	{
		max-width: 100%;
	}

	.search-product_price p
	{
		font-size: 15px;
		margin-top: 0;
		line-height: 139%;
	}

	.search-product__discount
	{
		padding: 2px 5px;
		font-size: 11px;
		border-radius: 6px;
	}

	.search-product_bonus
	{
		margin-left: auto;
		border: none;
		background-color: transparent;
		padding: 0;
		gap: 3px;
	}

	.search-product_bonus>img
	{
		width: 17px;
	}

	.search-product_bonus>span
	{
		width: 15px;
		height: 15px;
		border-radius: 50%;
		background-color: #EFF5FB;
	}

	.search-product_r__text
	{
		margin-top: 0;
	}

	.search-brands
	{
		gap: 8px;
		padding-left: 14px;
		padding-right: 14px;
	}

	.search-cats
	{
		border: none;
		padding-bottom: 0;
	}

	.search-cats_slider
	{
		padding: 10px 8px 12px;
	}

	.search-cats_nav
	{
		display: none;
	}



	.wave::before
	{
		height: 62px;
	}

	.wave::after
	{
		height: 62px;
	}

	.wave-gray::before,
	.wave-gray.wave-reverse::before
	{
		background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzY4IiBoZWlnaHQ9IjYyIiB2aWV3Qm94PSIwIDAgNzY4IDYyIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8ZyBjbGlwLXBhdGg9InVybCgjY2xpcDBfODY0XzEyODIwNykiPgo8cGF0aCBkPSJNNi4xMDM1MmUtMDUgMTYuODY0OEM0MTAuOCAtNTEuNjE4NiA0ODEuNiAxNjkuNDMxIDc2OCAwVjY4Ljg0NDJIMEw2LjEwMzUyZS0wNSAxNi44NjQ4WiIgZmlsbD0iI0Q4RTZGNCIvPgo8cGF0aCBkPSJNNi4xMDM1MmUtMDUgNDEuMjQyNEMzNzAuNCAtNTEuNzAzMSA1MDQuMjQ2IDE0NC45NjEgNzY4IDE2LjY0NTFWNjkuMjQ2OEgwTDYuMTAzNTJlLTA1IDQxLjI0MjRaIiBmaWxsPSIjRUZGNUZCIi8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDBfODY0XzEyODIwNyI+CjxyZWN0IHdpZHRoPSI3NjgiIGhlaWdodD0iNjIiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA3NjggMCkiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K);
	}

	.wave-gray::after,
	.wave-gray.wave-reverse::after
	{
		background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzY4IiBoZWlnaHQ9IjYyIiB2aWV3Qm94PSIwIDAgNzY4IDYyIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8ZyBjbGlwLXBhdGg9InVybCgjY2xpcDBfODY0XzEyODUzNCkiPgo8cGF0aCBkPSJNNzY4IDQ1LjEzNTJDMzU3LjIgMTEzLjYxOSAyODYuNCAtMTA3LjQzMSAwIDYyVi02Ljg0NDE1SDc2OEw3NjggNDUuMTM1MloiIGZpbGw9IiNEOEU2RjQiLz4KPHBhdGggZD0iTTc2OCAyMC43NTc2QzM5Ny42IDExMy43MDMgMjYzLjc1NCAtODIuOTYxMiAwIDQ1LjM1NDlWLTcuMjQ2NzZINzY4TDc2OCAyMC43NTc2WiIgZmlsbD0iI0VGRjVGQiIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzg2NF8xMjg1MzQiPgo8cmVjdCB3aWR0aD0iNzY4IiBoZWlnaHQ9IjYyIiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJtYXRyaXgoMSAwIDAgLTEgMCA2MikiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K);
	}


	.slider-tags
	{
		margin-top: 10px;
		gap: 5px;
		flex-wrap: nowrap;
		padding-left: 24px;
		margin-left: -24px;
		width: 100vw;
		white-space: nowrap;
		overflow: hidden;
		overflow-x: auto;
	}

	.slider-tags::after
	{
		content: '';
		display: block;
		min-width: 19px;
	}

	.slider-tag
	{
		padding: 4px 9px;
		font-size: 13px;
		line-height: 138%;
	}

	.products-sliders
	{
		margin-top: 18px;
	}

	.products-slide
	{
		width: 210px;
		padding: 6px;
	}

	.product-cart_tags
	{
		gap: 2px;
	}

	.product-cart_tags span
	{
		padding: 2px 5px;
		border-radius: 6px;
		font-size: 10px;
		line-height: 134%;
	}

	.product-cart_tags span.product-cart__discount
	{
		padding: 2px 5px;
		border-radius: 6px;
		font-size: 11px;
	}

	.product-cart__favourite
	{
		width: 32px;
		height: 32px;
		right: -1px;
	}

	.product-cart__attr
	{
		bottom: -3px;
	}

	.product-cart__term
	{
		display: none;
	}

	.product-cart__title
	{
		font-size: 13px;
		line-height: 17px;
		font-weight: 600;
		margin-top: 11px;
		margin-bottom: 6px;
		min-height: 34px;
	}

	.product-cart_prices
	{
		display: flex;
		align-items: center;
		gap: 5px;
	}

	.added-popup .product-cart_prices
	{
		display: block;
	}

	.product-cart__oldprice+.product-cart__newprice
	{
		margin-top: 0;
	}

	.product-cart__newprice
	{
		font-size: 15px;
		line-height: 109%;
		padding-top: 0;
	}

	.added-popup .product-cart__newprice
	{
		font-size: 17px;
		line-height: 141%;
		margin-top: -6px;
	}

	.product-cart__info
	{
		margin-top: -2px;
	}

	.added-popup .product-cart__info
	{
		margin-top: 2px;
	}

	.product-cart_bottom--row
	{
		width: calc(100% - 46px);
	}

	.product-cart__addCart
	{
		width: 100%;
		height: 36px;
		font-size: 12px;
		border-radius: 8px;
	}

	.product-cart_bottom__btn
	{
		width: 40px;
		height: 36px;
		border-radius: 10px;
	}

	.product-cart_bonuses
	{
		margin-top: -3px;
		gap: 3px;
	}

	.product-cart_bonuses>img
	{
		width: 17px;
	}

	.product-cart_bonuses>span
	{
		width: 15px;
		height: 15px;
		border-radius: 50%;
		background-color: #EFF5FB;
	}


	.form-block_row
	{
		gap: 15px;
	}

	.form-banner
	{
		padding: 12px;
		width: 279px;
		border-radius: 10px;
	}

	.form-banner__title
	{
		max-width: 181px;
		font-size: 17px;
		line-height: 21px;
	}

	.form-banner__text
	{
		max-width: 181px;
		margin-top: 6px;
		font-size: 12px;
		line-height: 133%;
	}

	.form-banner__btn
	{
		margin-top: 20px;
		padding: 10px 11px;
		font-size: 13px;
		gap: 3px;
	}

	.subscribe
	{
		border-radius: 10px;
	}

	.subscribe__title
	{
		font-size: 17px;
		line-height: 21px;
		max-width: 264px;
		padding-right: 0;
	}

	.subscribe__text
	{
		margin-top: 6px;
		max-width: 264px;
		font-size: 12px;
		line-height: 133%;
	}

	.subscribe-form
	{
		margin-top: 11px;
		margin-bottom: 11px;
	}

	.subscribe-fg input
	{
		height: 46px;
	}

	.subscribe-form__btn
	{
		width: 110px;
		height: 46px;
		font-size: 13px;
	}

	.checkbox__text
	{
		font-size: 12px;
		line-height: 133%;
	}

	.form-banner__bg
	{
		object-position: 86%;
	}



	.product-views_slider
	{
		margin-top: 10px;
	}

	.product-view
	{
		gap: 0;
		border-radius: 10px;
		padding: 10px;
		flex-wrap: wrap;
		width: 290px;
	}

	.product-view_l
	{
		width: 101px;
	}

	.product-view_r
	{
		justify-content: flex-start;
		width: calc(100% - 101px);
	}

	.product-cart_rating
	{
		padding: 3px;
	}

	.product-cart_rating img
	{
		width: 14px;
	}

	.product-view__title--wrapper
	{
		height: 35px;
	}

	.product-view__title
	{
		font-size: 13px;
		line-height: 138%;
	}

	.product-view .product-cart__newprice
	{
		padding-top: 0;
	}

	.product-view .product-cart_prices
	{
		margin-top: 5px;
	}

	.product-cart_attrs
	{
		width: 100%;
	}

	.product-view_btns
	{
		gap: 4px;
		width: 100%;
		margin-top: 10px;
	}

	.product-view .product-cart__favourite,
	.product-view .product-cart__compare
	{
		width: 32px;
		height: 32px;
		flex-shrink: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 6px;
		background-color: #F3F4F5;
		position: static;
	}

	.product-view .product-cart__compare
	{
		border-radius: 9px;
	}

	.product-view__btn
	{
		width: 97px;
		height: 32px;
		font-size: 12px;
		line-height: 133%;
		border-radius: 10px;
		flex-shrink: 0;
	}

	.product-view__addCart
	{
		flex-grow: 1;
		font-size: 12px;
		line-height: 133%;
		gap: 8px;
		border-radius: 8px;
	}

	.product-view__addCart svg
	{
		width: 15px;
		height: auto;
	}

	.woocommerce-breadcrumb
	{
		margin-bottom: 6px;
		gap: 2px;
	}

	.woocommerce-breadcrumb a,
	.woocommerce-breadcrumb span
	{
		font-size: 12px;
		line-height: 133%;
	}

	.footer-top
	{
		padding-top: 15px;
		padding-bottom: 14px;
	}

	.footer-top_r
	{
		gap: 15px;
	}

	.footer__email span
	{
		font-size: 13px;
	}

	.footer__phone
	{
		font-size: 15px;
	}

	.footer-mid
	{
		padding-top: 15px;
		padding-bottom: 15px;
	}

	.footer-mid__btn
	{
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 12px 25px;
		gap: 10px;
		border-radius: 12px;
		background: rgba(255, 255, 255, 0.06);
	}

	.footer-mid__btn span
	{
		color: #FFFFFF;
		font-size: 14px;
		font-weight: 600;
		line-height: 143%;
	}

	.footer-links
	{
		margin-top: 15px;
		flex-direction: column;
		gap: 11px;
	}

	.footer-links>li a
	{
		padding: 0;
		border: none;
		font-size: 14px;
		font-weight: 600;
		line-height: 143%;
	}

	.footer-bottom
	{
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.footer-bottom_row
	{
		column-gap: 60px;
		flex-wrap: wrap;
	}

	.footer-payments p
	{
		display: none;
	}


	.added-popup
	{
		right: 20px;
	}

	.hero-product__arr
	{
		width: 27px;
		height: 27px;
		border-radius: 6px;
	}

	.woocommerce-breadcrumb
	{
		width: 100vw;
		margin-left: -24px;
		padding-left: 24px;
	}

	.woocommerce-breadcrumb::after
	{
		content: '';
		display: block;
		min-width: 22px;
	}

	.tooltip
	{
		width: 160px;
		font-size: 12px;
	}

	.pagination-wrapper
	{
		margin-top: 20px;
		gap: 10px;
	}

	.loadmore
	{
		max-width: 100%;
	}

	nav.pagination a.prev,
	nav.pagination a.next
	{
		font-size: 0;
		gap: 0;
	}

	nav.pagination span+a~*
	{
		display: none;
	}

	nav.pagination a.next
	{
		display: flex;
	}


	.popup-bonuses
	{
		max-width: 658px;
		z-index: 1;
	}

	.popup-bonuses__pic
	{
		position: absolute;
		top: 30px;
		right: 0;
		z-index: -1;
	}

	.popup-bonuses__text
	{
		max-width: 366px;
	}

	.subscribe-fg>svg
	{
		top: 13px;
	}
}

@media(max-width: 767px)
{
	.m-page
	{
		padding-top: 98px;
	}

	.header-top,
	.catalog__btn,
	.header-r,
	.header-bottom
	{
		display: none;
	}

	.header-row
	{
		flex-wrap: wrap;
		gap: 10px;
	}

	.header.fix .header-row
	{
		flex-wrap: nowrap;
	}

	.header-center
	{
		width: 100%;
		order: 1;
	}

	header .search input
	{
		border-width: 1px;
		padding: 11px;
		padding-right: 70px;
		font-size: 13px;
	}

	header .search input::placeholder
	{
		opacity: 1 !important;
	}

	.header-mid
	{
		padding-top: 7px;
		padding-bottom: 7px;
	}

	.header-right
	{
		display: flex;
		align-items: center;
		gap: 12px;
	}

	.header.fix .header-right
	{
		order: 1;
	}

	.header__call
	{
		display: flex;
		align-items: center;
		gap: 8px;
		padding: 9px;
		border-radius: 7px;
		background: #E7EDF3;
		color: #343E4A;
		font-size: 12px;
		font-weight: 600;
		line-height: 133%;
		position: relative;
	}

	.header.fix .header__call
	{
		display: none;
	}

	.online
	{
		width: 6px;
		height: 6px;
		top: -1px;
		left: -2px;
	}

	.burger
	{
		width: 34px;
		height: 34px;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
	}

	.header.fix .burger
	{
		background-color: #EFF5FB;
		border-radius: 7px;
	}


	.search__text
	{
		display: none !important;
	}

	.search input::placeholder
	{
		opacity: 1;
	}


	.search.active
	{
		z-index: 999999999999999999999999;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		padding: 10px 15px;
		background-color: #FFFFFF;
		/* top: 10px;
		left: 15px;
		right: 15px; */
	}

	.search.active::before
	{
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: #FFFFFF;
		z-index: -1;
	}

	.search.active .search__clear
	{
		right: 135px;
	}

	.search.active .search__close
	{
		display: block;
		cursor: pointer;
	}

	.search-results
	{
		border-radius: 0;
		height: calc(100 * var(--vh));
		overflow: hidden;
		overflow-y: auto;
		top: 0;
		left: 0;
		right: 0;
		z-index: -2;
	}

	.search.active .header-search__btn
	{
		right: 100px;
	}

	.search-product__title
	{
		display: block;
		line-height: 17px;
	}


	.form-block_row
	{
		flex-direction: column;
	}

	.form-banner
	{
		width: 100%;
	}

	.form-banner__title
	{
		max-width: 213px;
	}

	.form-banner__text
	{
		max-width: 195px;
	}

	.form-banner__btn
	{
		display: none;
	}

}

@media(max-width: 640px)
{
	.footer-top_r
	{
		flex-direction: column;
		align-items: flex-end;
		gap: 2px;
	}

	.footer__btn
	{
		display: none;
	}

	.footer-bottom_row
	{
		column-gap: 20px;
	}
}

@media(max-width: 580px)
{
	.d-block_mobile
	{
		display: block !important;
	}

	.d-flex_mobile
	{
		display: flex !important;
	}

	.d-none_mobile
	{
		display: none !important;
	}

	.container
	{
		padding-left: 14px;
		padding-right: 14px;
	}

	.wave::before
	{
		height: 8.056vw;
	}

	.wave::after
	{
		height: 8.056vw;
	}

	.wave-gray::before,
	.wave-gray.wave-reverse::before
	{
		background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzYwIiBoZWlnaHQ9IjI5IiB2aWV3Qm94PSIwIDAgMzYwIDI5IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8ZyBjbGlwLXBhdGg9InVybCgjY2xpcDBfNjQ1XzY5NDE4KSI+CjxwYXRoIGQ9Ik0zLjA1MTc2ZS0wNSA3Ljg4ODM3QzE5Mi41NjMgLTI0LjE0NDIgMjI1Ljc1IDc5LjI0OTggMzYwIDBWMzIuMjAxM0gwTDMuMDUxNzZlLTA1IDcuODg4MzdaIiBmaWxsPSIjRDhFNkY0Ii8+CjxwYXRoIGQ9Ik0zLjA1MTc2ZS0wNSAxOS4yOTA4QzE3My42MjUgLTI0LjE4MzcgMjM2LjM2NSA2Ny44MDQ0IDM2MCA3Ljc4NTU4VjMyLjM4OTZIMEwzLjA1MTc2ZS0wNSAxOS4yOTA4WiIgZmlsbD0iI0VGRjVGQiIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzY0NV82OTQxOCI+CjxyZWN0IHdpZHRoPSIzNjAiIGhlaWdodD0iMjkiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSAzNjAgMCkiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K);
	}

	.wave-gray::after,
	.wave-gray.wave-reverse::after
	{
		background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzYwIiBoZWlnaHQ9IjI5IiB2aWV3Qm94PSIwIDAgMzYwIDI5IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8ZyBjbGlwLXBhdGg9InVybCgjY2xpcDBfNjQ1XzY5NDQyKSI+CjxwYXRoIGQ9Ik0zNjAgMjEuMTExNkMxNjcuNDM3IDUzLjE0NDIgMTM0LjI1IC01MC4yNDk4IDAgMjlWLTMuMjAxM0gzNjBMMzYwIDIxLjExMTZaIiBmaWxsPSIjRDhFNkY0Ii8+CjxwYXRoIGQ9Ik0zNjAgOS43MDkxNUMxODYuMzc1IDUzLjE4MzcgMTIzLjYzNSAtMzguODA0NSAwIDIxLjIxNDRWLTMuMzg5NjVIMzYwTDM2MCA5LjcwOTE1WiIgZmlsbD0iI0VGRjVGQiIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzY0NV82OTQ0MiI+CjxyZWN0IHdpZHRoPSIzNjAiIGhlaWdodD0iMjkiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09Im1hdHJpeCgxIDAgMCAtMSAwIDI5KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=);
	}


	.top-row
	{
		justify-content: flex-start;
		padding-left: 14px;
	}

	.checkbox__text
	{
		font-size: 12px;
		line-height: 133%;
	}

	.popup-inner
	{
		align-self: flex-end;
		border-radius: 15px 15px 0 0;
		padding: 14px;
		padding-bottom: 60px;
		gap: 10px;
	}

	.popup__title
	{
		font-size: 17px;
		line-height: 21px;
	}

	.slider-tags
	{
		padding-left: 14px;
		margin-left: -14px;
	}

	.slider-tags::after
	{
		min-width: 9px;
	}


	.subscribe__title
	{
		max-width: 228px;
	}

	.subscribe__text
	{
		max-width: 202px;
	}

	.subscribe__pic
	{
		width: 218px;
		top: -1px;
		right: -42px;
	}

	.subscribe-form
	{
		flex-direction: column;
		gap: 9px;
	}

	.subscribe-fg
	{
		width: 100%;
	}

	.subscribe-form__btn
	{
		width: 100%;
	}

	.checkbox-label
	{
		gap: 7px;
	}

	.footer-bottom_row
	{
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}

	.footer-links
	{
		align-items: flex-start;
	}

	.empty-block
	{
		padding: 10px;
		padding-left: 9px;
		padding-right: 12px;
		border-radius: 10px;
		gap: 6px;
	}

	.empty-block p
	{
		font-size: 13px;
		line-height: 17px;
		font-weight: 600;
	}

	.empty-block span
	{
		font-size: 12px;
		line-height: 133%;
	}


	.added-popup
	{
		right: 0;
		left: 0;
		bottom: 0;
		top: unset;
		transform: none;
		gap: 10px;
		border-radius: 10px 10px 0 0;
	}

	.added-popup_pic
	{
		width: 79px;
		height: 73px;
	}

	.added-popup__title
	{
		font-size: 12px;
		line-height: 133%;
	}

	.added-popup .product-cart__title
	{
		font-size: 13px;
		line-height: 17px;
		font-weight: 600;
	}

	.woocommerce-breadcrumb
	{
		margin-left: -14px;
		padding-left: 14px;
	}

	.woocommerce-breadcrumb::after
	{
		content: '';
		display: block;
		min-width: 12px;
	}

	.popup-oneclick_inputs
	{
		gap: 10px;
	}

	.popup-oneclick__btn
	{
		padding: 11px;
		font-size: 13px;
		gap: 8px;
	}

	.popup-bonuses__pic
	{
		width: 161px;
		top: 0;
		right: 14px;
	}

	.popup-bonuses .popup__title
	{
		max-width: 205px;
		padding-right: 0;
	}

	.popup-bonuses_grid
	{
		grid-template-columns: 1fr;
		grid-gap: 5px;
	}

	.popup-bonuses__text
	{
		font-size: 13px;
		line-height: 138%;
	}

	.popup-bonuses__title
	{
		font-size: 15px;
		line-height: 19px;
	}

	.popup-inner
	{
		max-width: 100%;
	}

	.popup-thank
	{
		gap: 10px;
	}

	.popup-thank__text
	{
		font-size: 13px;
		line-height: 138%;
	}

	.popup__close
	{
		width: 33px;
		height: 33px;
	}

	.popup-oneclick .product-view__title--wrapper
	{
		height: auto;
	}
}

.benefits
{
	padding: 0 0 110px;
}

.benefits__list
{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

.benefits__item
{
	display: flex;
	gap: 15px;
}

.benefits__icon
{
	line-height: 0;
}

.benefits__icon svg
{
	width: 38px;
	height: 38px;
	aspect-ratio: 1/1;
}

.benefits__title
{
	color: #191C21;
	font-size: 14px;
	font-weight: 700;
	line-height: 135%;
	text-transform: uppercase;
	margin-bottom: 4px;
}

.benefits__text
{
	color: rgba(52, 62, 74, 0.8);
	font-size: 13px;
	font-weight: 500;
	line-height: 138%;
}

@media (max-width: 1024px)
{
	.benefits
	{
		padding: 20px 0;
	}

	.benefits__list
	{
		display: flex;
		gap: 16px;
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-inline: 24px;
	}

	.benefits__item
	{
		display: flex;
		gap: 10px;
		width: 300px;
		min-width: 300px;
	}

	.benefits__icon svg
	{
		width: 30px;
		height: 30px;
	}

	.benefits__title
	{
		font-size: 12px;
	}

	.benefits__text
	{
		font-size: 12px;
	}

	.benefits .container
	{
		max-width: max-content;
		padding-left: 0;
		padding-right: 0;
	}
}

@media (max-width: 991px)
{
	.benefits
	{
		padding-top: 15px;
		padding-bottom: 70px;
	}
}

@media (max-width: 768px)
{
	.benefits__item
	{
		width: 237px;
		min-width: 237px;
	}

	.benefits__list
	{
		padding-inline: 15px;
		gap: 10px;
	}

	.product-cart__attr.volume-attr {
		padding: 3px 4px;
	}
	.product-cart__attr.volume-attr svg {
		display: none;
	}
}



input[type="radio"]:checked+.radio
{
	background-color: #20247A;
	outline: 1px solid #20247A;
}

/* .wave {
margin-bottom: 154px;
} */

.page-empty
{
	width: 100%;
	display: flex;
	align-items: center;
	gap: 40px;
}

.page-empty__image
{
	max-width: 395px;
}

.page-empty__img
{
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
}

.page-empty__content
{
	display: flex;
	align-items: center;
	flex-grow: 1;
	gap: 40px;
}

.page-empty__content-info
{
	max-width: 508px;
}

.page-empty__title
{
	margin-bottom: 8px;
	color: #343e4a;
}

.page-empty__text
{
	line-height: 1.4;
	font-size: 15px;
	color: #343e4a;
}

.page-empty__btn
{
	padding: 18px 23px;
	gap: 8px;
	display: inline-flex;
	margin-left: auto;
	flex-shrink: 0;
}

.tooltip-top
{
	position: relative;
}

.tooltip-top__window
{
	display: inline-block;
	position: absolute;
	left: 50%;
	bottom: 100%;
	white-space: nowrap;
	padding: 10px;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.80);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.43;
	color: #fff;
	transform: translateX(-50%) translateY(-5px);
	/* Y -10px on show */
	z-index: 10;
	transition: .3s;
	opacity: 0;
	pointer-events: none;
}

.tooltip-top__window::after
{
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);

	border-width: 10px;
	border-style: solid;
	border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
	pointer-events: none;
}

.tooltip-top:hover .tooltip-top__window
{
	opacity: 1;
	pointer-events: all;
	transform: translateX(-50%) translateY(-10px);
}


.checkbox-switch
{
	margin-top: 4px;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	cursor: pointer;
}

.checkbox-switch__title
{
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
	color: #343E4A;
}

.checkbox-switch__value
{
	font-size: 12px;
	font-weight: 500;
	line-height: 1.3;
	color: #92969A;
}

.checkbox-switch input
{
	display: none;
	opacity: 0;
	font-size: 0;
	width: 0;
	height: 0;
}

.checkbox-switch__track
{
	padding: 2px;
	width: 46px;
	height: 24px;
	border-radius: 100vmax;
	background-color: #E7EDF3;
	position: relative;
	transition: 0.3s
}

.checkbox-switch__track::after
{
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #fff;
	box-shadow: 0px 11px 18px 0px rgba(8, 37, 67, 0.06);
	transition: 0.3s;
}

.checkbox-switch__inputs>input:checked+.checkbox-switch__track::after
{
	left: calc(100% - 22px);
}

.checkbox-switch__inputs>input:checked+.checkbox-switch__track
{
	background-color: #5E920A;
}

/* //////POPUP PRODUCT/////// */
.popup-product
{
	display: flex;
	align-items: center;
	gap: 16px;
}

.popup-product__image
{
	aspect-ratio: 112.20/106.86;
	max-width: 112px;
	width: 100%;
	border-radius: 10px;
	border: 1px solid #F3F4F5;
	flex-shrink: 0;
}

.popup-product__img
{
	max-width: 100%;
	max-height: 100%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.popup-product__info
{
	display: flex;
	margin-bottom: 5px;
}

.popup-product__title
{
	font-size: 14px;
	font-weight: 700;
	line-height: 1.57;
	color: #343E4A;
}

.popup-product__prices
{
	padding-top: 0;
	margin-top: 8px;
}


@media screen and (max-width: 991px)
{
	.wave
	{
		margin-bottom: 62px;
	}

	.page-empty
	{
		gap: 20px;
	}

	.page-empty__image
	{
		max-width: 285px;
	}

	.page-empty__content
	{
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}

	.page-empty__title
	{
		margin-bottom: 4px;
	}

	.page-empty__text
	{
		font-size: 14px;
	}

	.page-empty__btn
	{
		padding: 12px 16px;
		font-size: 13px;
		margin-left: 0;
	}

}


@media screen and (max-width: 580px)
{
	.wave
	{
		margin-bottom: 8.056vw;
	}

	.page-empty
	{
		flex-direction: column;
		align-items: center;
	}

	.page-empty__content
	{
		text-align: center;
	}

	.page-empty__btn
	{
		width: 100%;
	}

	.popup-product__image
	{
		width: 92px;
	}


	.benefits
	{
		padding-bottom: 41px;
	}
}

/* INPUTS */

.tel-check
{
	position: relative;
}

.tel-check::before
{
	content: '';
	width: 18px;
	height: 18px;
	position: absolute;
	left: 15px;
	bottom: 15px;
	background-image: url('../../img/icons/icon-check.svg');
	background-repeat: no-repeat;
	background-position: center center;
}

.tel-check>input
{
	padding-left: 43px;
}


.fg__icon
{
	display: flex;
	align-items: center;
	border-radius: 9px;
	border: 1.4px solid #F3F4F5;
	background: #FFF;
	padding-left: 15px;
	transition: border-color .3s
}

.fg__icon-svg svg
{
	display: block;
	object-fit: contain;
}

.fg__icon>input
{
	border: none;
	padding-left: 7px;
}

.fg__icon:focus-within
{
	border-color: #20247A;
}




/* REG */

.block-padding-header
{
	padding-top: 218px;
}

.register-banner
{
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 28px;
	padding: 25px;
	background-color: #E2EDF8;
	background-image: url('../img/register/reg-banner-pattern.svg');
	background-image: url('../../img/register/reg-banner-pattern.svg');
	background-repeat: repeat-y;
	background-position: center center;
	background-size: cover;
}

.register-banner__title
{
	color: #191C21;
	font-size: 21px;
	font-weight: 700;
	line-height: 143%;
	/* 30.03px */
}

.register-banner__item
{
	display: flex;
	column-gap: 12px;
}

.register-banner__item-icon
{
	flex-shrink: 0;
}

.register-banner__item-icon img,
.register-banner__item-icon svg
{
	display: block;
	max-width: 38px;
	height: auto;
	object-fit: contain;
}

.register-banner__item-title
{
	font-size: 14px;
	font-weight: 700;
	line-height: 1.57;
	margin-bottom: 3px;
}

.register-banner__item-text
{
	color: #57616C;
	font-size: 13px;
	font-weight: 500;
	line-height: 138%;
	/* 17.94px */
}


/* BTNS */

.btn-blue:disabled
{
	background-color: #C8CBCC;
	color: #FFF;
	pointer-events: none;
}

@media screen and (max-width: 1260px)
{
	.block-padding-header
	{
		padding-top: 144px;
	}
}

@media screen and (max-width: 768px)
{
	.block-padding-header
	{
		padding-top: 116px;
	}
}

/* ==========================================
   WooCommerce Notices
   ========================================== */

.woocommerce-error,
.woocommerce-message,
.woocommerce-info
{
	margin: 0 0 15px;
	padding: 0;
	list-style: none;
}

.woocommerce-error li,
.woocommerce-message,
.woocommerce-info
{
	font-size: 12px;
	line-height: 133%;
}

.woocommerce-error,
.woocommerce-error li
{
	color: #FF0000;
}

.woocommerce-message
{
	color: #19D8C4;
}

.woocommerce-info
{
	color: #20517A;
}

@media screen and (max-width: 767px) {
	.subscribe-form-block {
		margin-bottom: 30px;
	}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	.subscribe-form-block {
		margin-bottom: 50px;
	}
}