@import url("https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap");

/* Тут добавляем шрифты, если от гугла, то импортом */
*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-y: scroll;
}

html.lock {
	overflow: hidden;
	/*Это для того, чтобы не допускать скрол когда открыт попап*/
}

body {
	width: 100%;
	height: 100%;
	margin: 0;
	/*font-family: Шрифт; font-size: Размер шрифта; font-weight: Жирность шрифта; line-height: Межстрочный интервал; color: Цвет шрифта*/
	font-family: "Onest", sans-serif;
}

h6,
h5,
h4,
h3,
h2,
h1 {
	font-family: Onest, sans-serif;
	color: var(--Black, #232126);
}

/*Классы для заголовков*/
.h6,
.h5,
.h4,
.h3,
.h2,
.h1 {
	margin: 0;

	/* Далее стили для общих заголовков (если есть) */
}

.h1 {
	font-size: 62px;
	font-weight: 700;
	line-height: 103%;
}

.h2 {
	font-size: 36px;
	font-weight: 700;
	line-height: 120%;
	/* 43.2px */
}

.h3 {
	font-size: 25px;
	font-weight: 700;
	line-height: 120%;
}

.h4 {
	font-size: 16px;
	font-weight: 500;
	line-height: 130%;
}

.h5 {
}

.h6 {
}

p {
	margin: 0;
}

ol,
ul {
	padding: 0;
	margin: 0;
}

li {
	list-style-type: none;
}

a {
	color: inherit;
	text-decoration: none;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

button {
	border: none;
	cursor: pointer;
	outline: none;
	background-color: transparent;
	font-family: inherit;
}

input,
textarea {
	border: none;
	outline: none;
	font-family: inherit;
	margin: 0;
}

textarea {
	resize: none;
}

/* Класс основной кнопки */
.btn {
}

/* Дальше можно добавлять стили для других кнопок, например .btn-blue, btn-lg, btn-sm и т.д. */

/* Класс для инпутов */
.input {
}

/* Класс для label*/
.fg {
}

.main {
	display: flex;
	flex-direction: column;
	min-height: calc(100 * var(--vh));
	background: #fbfbfb;
	/* Минимильная высота - высота экрана (100 * var(--vh) нужно для моб. версий, 100vh не работает, так-как мешает адресная строка)  */
}

/* Шапка */
.header {
}

/* Тут блоки в шапке */

/* Блок между шапкой и подвалом */
.page {
	flex-grow: 1;
	/* Это делается для того, чтобы блок между шапкой и подвалом растягивался и .main был на всю высоту экрана, иначе при маленьком контенте под футером останется пространство */
}

/* Подвал */
.footer {
}

/* Тут блоки в подвале */

/* Далее стили страницы и похожих блоков */

.d-none {
	display: none !important;
}

.btn-style2 {
	padding: 11px 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	background: #f5f6f9;
	transition: all 0.3s;
	font-family: inherit;
}
.btn-style2[disabled],
.btn-style2[disabled]:hover {
	background: #E1E1E1;
	cursor: default;
}
.btn-style2[disabled] svg path,
.btn-style2[disabled]:hover svg path {
	stroke: #5C6D8D;
}


.btn-style2 span {
	color: #5c6d8d;
	font-size: 14px;
	font-weight: 500;
	line-height: 19px;
	transition: all 0.3s;
	font-family: inherit;
}

.btn-style2 svg {
	min-width: 20px;
	width: auto;
	height: 20px;
	display: block;
	margin-left: 10px;
}

.btn-style2 svg path {
	transition: all 0.3s;
}

.btn-style2:hover {
	background: #5c6d8d;
}

.btn-style2:hover span {
	color: #f5f6f9;
}

.btn-style2:hover path {
	stroke: #f5f6f9;
}

.btn-style3 {
	display: block;
	width: fit-content;
	color: #232126;
	font-size: 14px;
	font-weight: 500;
	line-height: 126%;
	padding: 15px 24px;
	border-radius: 900px;
	border: 1px solid #ffc839;
	transition: all 0.3s;
}

.btn-style3:hover {
	background: #ffc839;
}

.arrow-btn {
	display: flex;
	width: fit-content;
	align-items: center;
	gap: 15px;
	padding: 4px 4px 4px 25px;
	border-radius: 900px;
	background: #ffc839;
	box-shadow: 0px 8px 11px 0px rgba(0, 0, 0, 0.06);
	transition: all 0.3s;
	font-family: inherit;
}
.arrow-btn[disabled] {
	opacity: 0.3;
	background-color: #a0a3aa;
	pointer-events: none;
}

.arrow-btn:hover {
	background: #232126;
}

.arrow-btn span {
	color: #232126;
	font-size: 15px;
	font-weight: 700;
	line-height: 18px;
	transition: all 0.3s;
	flex-grow: 1;
}

.arrow-btn:hover span {
	color: #fff;
}

.arrow-btn svg {
	box-shadow: 2px 5px 20px 0px rgba(0, 0, 0, 0.25);
	border-radius: 50%;
}

.slick-arrow {
	font-size: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #fff;
	box-shadow: 3px 61px 17px 0px rgba(0, 0, 0, 0),
		2px 39px 16px 0px rgba(0, 0, 0, 0.01), 1px 22px 13px 0px rgba(0, 0, 0, 0.02),
		0px 10px 10px 0px rgba(0, 0, 0, 0.03), 0px 2px 5px 0px rgba(0, 0, 0, 0.04);
	transition: all 0.3s;
	padding: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-repeat: no-repeat;
	background-size: 17px;
	background-position: center;
	z-index: 2;
}

.slick-arrow:hover {
	background-color: #ffc839;
}

.slick-next {
	background-image: url("../img/icons/next-icon.svg");
	right: -50px;
}

.slick-prev {
	background-image: url("../img/icons/slick-prev.svg");
	left: -60px;
}

.slick-disabled {
	pointer-events: none;
	opacity: 0.5;
}

.container {
	max-width: 1510px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}

.related-post-items .related-post-item {
	margin-right: 15px;
}

.related-post-items .slick-slide:last-child {
	margin-right: 0;
}

.related-post-items {
	margin-right: -15px;
}

.related-post-items .related-post-item {
	margin-right: 15px;
}

.related-post-items .slick-slide:last-child {
	margin-right: 0;
}

.related-post-items {
	margin-right: -15px;
}


.label {
	color: #232126;
	font-size: 14px;
	font-weight: 500;
	line-height: 17.64px;
	margin-bottom: 4px;
	display: block;
}

.label span.required {
	color: #F72460;
	font-size: 14px;
	font-weight: 400;
	line-height: 18.2px;
}

.input-wrapper {
	width: 100%;
}

.form-input {
	padding: 14px;
	border-radius: 8px;
	border: 1px solid #EEF0F5;
	background: #FFF;
	width: 100%;
	color: #232126;
	font-size: 14px;
	font-weight: 400;
	line-height: 18.2px;
}

.form-input::placeholder {
	color: #A0A3AA;
}

.form-input:focus {
	border: 1px solid rgba(92, 109, 141, 0.47);
	box-shadow: 0 0 0 1px rgba(92, 109, 141, 0.47);
}

.toggle-password-btn {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
}

.sms-row {
	display: flex;
	align-items: flex-end;
	gap: 15px;
}

.sms-row .form-group {
	margin-bottom: 0;
	width: 260px;
}

.sms-row-right {
	padding-bottom: 8px;
}

.sms-row-text {
	display: block;
	color: #A0A3AA;
	font-size: 14px;
	font-weight: 500;
	line-height: 17.64px;
}

.sms-row-text--sec {
	max-width: 177px;
}

.sms-row-text span {
	font-weight: 500;
	color: #232126;
}

.sms-row-btn {
	color: #5C6D8D;
	font-size: 14px;
	font-weight: 500;
	line-height: 17.64px;
	border-bottom: 1px dashed rgba(92, 109, 141, 0.70);
	transition: all .3s;
}



.sms-row-btn:hover {
	color: #FFC839;
	border-bottom: 1px dashed #FFC839;
}

.woocommerce-notices-wrapper,
.woocommerce-error {
	display: none!important;
}

@media (max-width: 1635px) {
	.related-post-items .slick-arrow,
	.recently-slider .slick-arrow {
		display: none !important;
	}
}

@media (max-width: 1024px) {
	.container {
		padding: 0 24px;
	}

	.h2 {
		font-size: 28px;
	}

	.h3 {
		font-size: 21px;
	}

	.h4 {
		font-size: 15px;
	}

	.related-post-items .related-post-item {
		margin-right: 10px;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 0 14px;
	}

	.h2 {
		font-size: 25px;
	}

	.h3 {
		font-size: 19px;
	}
}

.more-post-block {
	width: 100%;
	display: flex;
	justify-content: center;
}
.more-post-link {
	max-width: 800px;
	width: 100%;
}
.archive-pagination {
	width: 100%;
	display: flex;
	justify-content: center;
}

.pagination {
	display: flex;
	gap: 9px;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	width: fit-content;
}

.pagination a,
.pagination span,
.pagination .page-number-dots {
	padding: 14px 19px;
	border: 1px solid #eef0f5;
	background: #fff;
	text-decoration: none;
	border-radius: 5px;
	color: #232126;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	line-height: 18px;
}

.pagination a.prev,
.pagination a.next {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 14px 16px;
}

.pagination a:hover,
.pagination span.current {
	background-color: #ffc839;
	border-color: #ffc839;
}

.page-number-desktop {
	display: inline-block;
}















.recently {
	padding-top: 40px;
	padding-bottom: 40px;
	background-color: #fff;
}
.recently-slider {
	margin-top: 25px;
}
.recently-slide {
	padding-right: 10px;
	margin-right: 15px;
}
.product-mini {
	display: flex;
	align-items: center;
	gap: 9px;
}
.product-mini_pic {
	display: block;
	width: 80px;
	min-width: 80px;
	height: 80px;
	border-radius: 7px;
	border: 1px solid #eef0f5;
	overflow: hidden;
	outline: none;
}
.product-mini_pic:hover {
	border-color: #ffc839;
}
.product-mini_pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.product-mini_content {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.product-mini_top {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 11px;
	row-gap: 5px;
}
.product-cart_info {
	display: flex;
	align-items: center;
	gap: 3px;
}
.product-cart_rating > img {
	width: 16px;
	min-width: 16px;
	height: auto;
}
.product-cart_info > span {
	color: #a0a3aa;
	font-size: 12px;
	font-weight: 500;
}
.product-cart_info > a {
	border-bottom: 1px solid rgba(92, 109, 141, 0.25);
	color: #5c6d8d;
	font-size: 12px;
	font-weight: 500;
	line-height: 100%;
}
.product-cart_reviews {
	gap: 5px;
}
.product-mini__title {
	color: #2b343c;
	font-size: 15px;
	font-weight: 500;
	line-height: 130%;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
a.product-mini__title:hover {
	color: #FFC839;
}
.product-mini_prices {
	display: flex;
	align-items: center;
	gap: 7px;
}
.product-mini_price {
	color: #232126;
	font-size: 16px;
	font-weight: 500;
	line-height: 120%;
}
.product-mini_oldprice {
	color: #a0a3aa;
	font-size: 14px;
	line-height: 130%;
	text-decoration-line: line-through;
}
.product-mini_discount {
	height: 20px;
	padding-left: 5px;
	padding-right: 5px;
	border-radius: 900px;
	background: radial-gradient(
		61.24% 42.75% at 13.12% 2.79%,
		rgba(255, 255, 255, 0.48) 0%,
		rgba(255, 255, 255, 0) 100%
	),
		#f72460;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	text-align: center;
	font-size: 11px;
	font-weight: 800;
	line-height: 18px;
	letter-spacing: 0.3px;
}
.product-mini_btns {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-left: auto;
}
.favourite__btn {
	width: 40px;
	min-width: 40px;
	height: 40px;
	border: 1px solid #eef0f5;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	transition: 0.3s;
}
.favourite__btn:hover {
	background-color: #232126;
	border-color: #232126;
}
.favourite__btn svg path {
	transition: 0.3s;
}
.favourite__btn:hover svg path {
	stroke: #ffffff;
}
.favourite__btn._added {
	background-color: #f5f6f9;
	border-color: #f5f6f9;
}
.favourite__btn._added svg path {
	fill: #f72460;
	stroke: #f72460;
}
.remove__btn {
	background-color: #F5F6F9;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.remove__btn:hover {
	background-color: #232126;
}
.remove__btn svg path {
	transition: .3s;
}
.remove__btn:hover svg path {
	stroke: #FFFFFF;
}
.product-mini__btn {
	width: 32px;
	min-width: 32px;
	height: 32px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
	padding: 0;
}
.product-mini__btn svg {
	height: 19px;
	width: auto;
}
.addCart__btn {
	border-radius: 6px;
	background-color: #ffc839;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
}
.addCart__btn:hover {
	background-color: #232126;
}
.addCart__btn:hover span {
	color: #FFFFFF!important;
}
.addCart__btn svg path {
	transition: 0.3s;
}
.addCart__btn:hover svg path {
	stroke: #ffffff;
}
.addCart__btn .added {
	display: none;
}
.addCart__btn._added {
	background-color: #498F11;
}
.addCart__btn._added svg {
	display: none;
}
.addCart__btn._added svg.added {
	display: block;
}
.addCart__btn._added svg path {
	stroke: #FFFFFF;
}
.addCart__btn._added span {
	color: #FFFFFF;
}

.slick-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
}
.slick-dots li {
	display: flex;
}
.slick-dots button {
	font-size: 0;
	padding: 0;
	width: 6px;
	height: 6px;
	transition: 0.3s;
	border-radius: 50%;
	background-color: rgba(160, 163, 170, 0.4);
}
.slick-dots .slick-active button {
	width: 14px;
	background-color: #ffc839;
	border-radius: 900px;
}

._view2,
._view3 {
	display: none!important;
}

.product-cart {
	border-radius: 15px;
	border: 1px solid #FBFBFB;
	background-color: #FFFFFF;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.02);
	/* overflow: hidden; */
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
}
.product-cart:hover {
	z-index: 2;
}
.product-cart_wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100% + 79px);
	border: 2px solid #FFC839;
	background-color: #FFFFFF;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.16);
	border-radius: 15px;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	z-index: -1;
	display: flex;
	flex-direction: column;
}
.product-cart:hover .product-cart_wrapper {
	opacity: 1;
	visibility: visible;
}
.product-cart_attrs {
	padding: 12px;
	padding-top: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
	margin-top: auto;
	/* transition: .3s; */
}
.product-cart_attr {
	padding: 9px 8px;
	border-radius: 8px;
	background-color: #F5F6F9;
}
.product-cart_attr span {
	color: #3F3F3F;
	font-size: 13px;
	line-height: 120%;
	display: block;
}


.product-cart_pic {
	height: 0;
	display: block;
	position: relative;
	width: calc(100% - 4px);
	margin-left: auto;
	margin-right: auto;
	margin-top: 2px;
	padding-bottom: 100%;
	overflow: hidden;
	border-radius: 15px;
	overflow: hidden;
}
.product-cart_pic > img {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s;
}
.product-cart_pic:hover > img {
	transform: scale(1.05);
}
.product-cart_top {
	position: absolute;
	top: 14px;
	left: 14px;
	display: flex;
	align-items: center;
	gap: 5px;
	z-index: 1;
}
.product-cart_checkbox {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
}
.product-cart_checkbox input {
	display: none;
}
.product-cart_top > img {
	width: 24px;
	height: auto;
}
.product-cart_top > span {
	display: flex;
	align-items: center;
	height: 20px;
	padding-left: 4px;
	padding-right: 4px;
	border-radius: 3px;
	background: radial-gradient(
		119.66% 86.96% at -0.76% -15%,
		rgba(255, 255, 255, 0.48) 0%,
		rgba(255, 255, 255, 0) 100%
	),
		linear-gradient(90deg, #438e44 0%, #2ba32c 100%);
	color: #fff;
	text-align: center;
	font-size: 12px;
	font-weight: 500;
	line-height: 120%;
}
.product-cart_bottom {
	display: flex;
	align-items: center;
	gap: 4px;
	position: absolute;
	bottom: 14px;
	left: 14px;
	z-index: 1;
}
.product-cart_discount,
.product-cart_tag {
	height: 24px;
	display: flex;
	align-items: center;
	border-radius: 900px;
	color: #fff;
	text-align: center;
	font-size: 12px;
	font-weight: 700;
	line-height: 120%;
	background: radial-gradient(
		61.24% 42.75% at 13.12% 2.79%,
		rgba(255, 255, 255, 0.48) 0%,
		rgba(255, 255, 255, 0) 100%
	),
		#f72460;
	padding-left: 7px;
	padding-right: 7px;
}
.product-cart_tag {
	padding-left: 9px;
	padding-right: 9px;
}
.product-cart_tag.new {
	background: radial-gradient(
		71.83% 65.32% at 13.12% 2.79%,
		rgba(255, 255, 255, 0.48) 0%,
		rgba(255, 255, 255, 0) 100%
	),
		linear-gradient(97deg, #2b343c 2.82%, #213344 72.75%);
}
.product-cart_box {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	padding: 14px;
}
.product-cart_row {
	display: flex;
	align-items: center;
	gap: 11px;
}
.product-cart__cat {
	margin-top: 10px;
	color: #a0a3aa;
	font-size: 13px;
	font-weight: 500;
	line-height: 120%;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.product-cart__cat:hover {
	color: #232126;
}
.product-cart__title {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	color: #232126;
	font-size: 16px;
	font-weight: 500;
	line-height: 130%;
	margin-top: 5px;
	margin-bottom: 5px;
}
.product-cart__title:hover {
	color: #ffc839;
}
.product-cart_details {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
	margin-top: auto;
}
.product-cart_prices {
	display: flex;
	align-items: center;
	gap: 10px;
}
.price {
	color: #232126;
	font-size: 18px;
	font-weight: 500;
	line-height: 120%;
}
.oldprice {
	color: #a0a3aa;
	font-size: 14px;
	line-height: 130%;
	text-decoration-line: line-through;
}
.product-cart_btns {
	display: flex;
	align-items: center;
	gap: 5px;
}
.product-cart__btn {
	width: 40px;
	height: 40px;
	transition: 0.3s;
}
.product-cart_shops {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 9px 8px;
	border-radius: 8px;
	background: #f5f6f9;
	margin-top: 10px;
}
.product-cart_shops.red {
	background-color: #fff0f6;
}
.product-cart_shops > span {
	color: #3f3f3f;
	font-size: 13px;
	line-height: 120%;
}
.product-cart_shops.red > span {
	color: #8a4762;
}
.product-cart_shops > p {
	display: flex;
	align-items: center;
	gap: 2px;
	cursor: pointer;
}
.product-cart_shops > p span {
	color: #5c6d8d;
	font-size: 13px;
	font-weight: 500;
	line-height: 120%;
	transition: 0.3s;
}
.product-cart_shops > p path {
	transition: 0.3s;
}
.product-cart_shops > p:hover span {
	color: #ffc839;
}

.product-cart_shops > p:hover path {
	stroke: #ffc839;
}

.sort__title {
	color: #232126;
	font-size: 14px;
	line-height: 130%;
}

.empty-block {
	padding: 15px;
	border-radius: 10px;
	background: #eef1f6;
	grid-column: 1/-1;
	/* display: none; */
}
.empty-block_inner {
	display: flex;
	align-items: center;
	gap: 15px;
}
.empty-block_inner > span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	min-width: 48px;
	border-radius: 50%;
	background-color: #fff;
}
.empty-block_inner > span > svg {
	width: 28px;
	height: auto;
}
.empty-block_content p {
	color: #232126;
	font-size: 15px;
	font-weight: 700;
	line-height: 120%;
	margin-bottom: 1px;
}
.empty-block_content span {
	color: #57575e;
	font-size: 15px;
	line-height: 144%;
	display: block;
}

.product-alert {
	position: fixed;
	top: 10vh;
	right: 100px;
	z-index: 9;
	border-radius: 5px;
	background: #fff;
	box-shadow: -0.41px 11.993px 80px 0px rgba(0, 0, 0, 0.13),
		-0.082px 2.399px 13px 0px rgba(0, 0, 0, 0.06);
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 15px;
	width: 359px;
}
.product-alert__close {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	z-index: 1;
	display: flex;
	cursor: pointer;
	transition: 0.3s;
}
.product-alert__close svg path {
	transition: 0.3s;
}
.product-alert__close:hover svg path {
	stroke: #ffc839;
}
.product-alert_loader {
	position: absolute;
	top: 0;
	left: 0;
	height: 3px;
	width: 0;
	border-radius: 900px;
	background: #ffc839;
}
.product-alert_pic {
	border-radius: 7px;
	border: 1px solid #eef0f5;
	background: #fff;
	width: 66px;
	min-width: 66px;
	height: 66px;
}
.product-alert_pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.product-alert__title {
	color: #a0a3aa;
	font-size: 12px;
	font-weight: 500;
	line-height: 120%;
	text-transform: uppercase;
	margin-bottom: 6px;
}
.product-alert__name {
	color: #2b343c;
	font-size: 15px;
	font-weight: 500;
	line-height: 130%;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.product-alert_prices {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-top: 4px;
}
.product-alert_prices .price {
	font-size: 16px;
}
.product-alert_prices .discount {
	height: 20px;
	padding-left: 5px;
	padding-right: 5px;
	border-radius: 900px;
	background: radial-gradient(
		61.24% 42.75% at 13.12% 2.79%,
		rgba(255, 255, 255, 0.48) 0%,
		rgba(255, 255, 255, 0) 100%
	),
		#f72460;
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.3px;
	display: flex;
	align-items: center;
}

.discount-block {
	padding-left: 36px;
	padding-right: 8px;
	border-radius: 25px;
	background-image: url(../img/header/special-bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
	display: flex;
}
.discount-block > img {
	position: absolute;
	left: 0;
	bottom: 0;
}
.discount-block > span {
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.31);
	font-weight: 700;
	line-height: 120%;
	text-transform: uppercase;
}

.checkbox {
	position: relative;
	display: block;
	width: 24px;
	min-width: 24px;
	height: 24px;
	border-radius: 4px;
	border: 1px solid #EEF0F5;
	background-color: #FFFFFF;
	transition: 0.3s;
}
label:hover .checkbox,
label:hover .radio {
	border-color: #ffc839;
}
input:checked + .checkbox {
	background-color: #ffc839;
	border-color: #ffc839;
}
.checkbox::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 14px;
	height: 14px;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTExLjY2NjMgMy41TDUuMjQ5NjcgOS45MTY2N0wyLjMzMzAxIDciIHN0cm9rZT0iIzIzMjEyNiIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 50%;
	opacity: 0;
	transition: 0.3s;
}
input:checked + .checkbox::after {
	opacity: 1;
}

.radio {
	position: relative;
	width: 20px;
	min-width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1px solid #EEF0F5;
	background-color: #FFFFFF;
	transition: 0.3s;
}
/* input:checked + .radio {
border: 2px solid #ffc839;
} */
.radio::after,
.radio::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: 0.3s;
	border-radius: 50%;
}
.radio::before {
	border: 2px solid #ffc839;
	width: calc(100% + 2px);
	height: calc(100% + 2px);
}
.radio::after {
	width: 10px;
	height: 10px;
	background-color: #ffc839;
}
input:checked + .radio::before,
input:checked + .radio::after {
	opacity: 1;
}


.cart-empty {
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 35px;
	border-radius: 10px;
	background-color: #ffffff;
}
.cart-empty_block {
	display: flex;
	align-items: center;
	gap: 20px;
}
.cart-empty_block svg {
	width: 62px;
	min-width: 62px;
	height: auto;
}
.cart-empty_box {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.cart-empty__text {
	color: #57575e;
	font-size: 15px;
	line-height: 144%;
}
.cart-empty__btn {
	width: 234px;
	min-width: 234px;
}

.product-sliders {
	padding-top: 60px;
	padding-bottom: 60px;
	position: relative;
	z-index: 2;
}
.product-slider_wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 60px;
}
.product-slider_inner {
	width: 100%;
}

.product-slider {
	margin-top: 32px;
}
.product-slider .slick-list {
	margin: 0 -7.5px;
	overflow: visible;
}
.product-slider .slick-track {
	display: flex;
}
.product-slider .slick-slide {
	margin: 0 7.5px;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
}
.product-slider .slick-slide.slick-active {
	opacity: 1;
	visibility: visible;
}
.product-slider .slick-next {
	right: -60px;
}

.filter-details_select {
	display: flex;
	align-items: center;
	gap: 11px;
	cursor: pointer;
}
.filter-details_select input{
	display: none;
}
.filter-details__text {
	color: #57575E;
	font-size: 14px;
	line-height: 130%;
}
.filter-details_remove {
	display: flex;
	align-items: center;
	gap: 5px;
	cursor: pointer;
}
.filter-details_remove span {
	color: #5C6D8D;
	font-size: 14px;
	font-weight: 500;
	line-height: 126%;
	border-bottom: 1px dashed rgba(92, 109, 141, 0.70);
	transition: .3s;
}
.filter-details_remove:hover span {
	color: #ffc839;
	border-color: rgba(255, 200, 57, 0.70);
}
.filter-details_remove svg path {
	transition: .3s;
}
.filter-details_remove:hover svg path {
	stroke: #ffc839;
}



.fancy-popup {
	overflow: hidden;
	overflow-y: auto;
	border-radius: 15px;
	overflow: hidden;
}
.fancy-popup .is-close-btn {
	top: 0!important;
	right: 0!important;
	border-radius: 0px 0px 0px 10px;
	background: #EEF0F5;
	width: 42px;
	height: 42px;
	opacity: 1!important;
	outline: none!important;
	--f-button-color: transparent!important;
	--f-button-hover-color: transparent!important;
}
.fancy-popup .is-close-btn:focus-visible {
	outline: none!important;
}
.fancy-popup .is-close-btn svg {
	width: 12px;
	height: 12px;
	display: none;
}
.fancy-popup .is-close-btn::after {
	content: '';
	display: block;
	width: 17px;
	height: 17px;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEzLjI1IDQuNzVMNC43NSAxMy4yNSIgc3Ryb2tlPSIjMkIzNDNDIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNNC43NSA0Ljc1TDEzLjI1IDEzLjI1IiBzdHJva2U9IiMyQjM0M0MiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: 50% 0;
}
.fancy-popup .is-close-btn:hover {
	background-color: #FFC839;
}


.shop-block {
	display: flex!important;
	flex-direction: column;
	align-items: center;
	padding: 15px;
	border-radius: 20px;
	border: 1px solid #EEF0F5;
	background-color: #FFF;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMyIiBoZWlnaHQ9IjIxMiIgdmlld0JveD0iMCAwIDIzMiAyMTIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIG9wYWNpdHk9IjAuMTIiPgo8cGF0aCBkPSJNMjc2IDE4OUMyNzYgMjM1Ljk0NCAyMzcuNDk2IDI3NCAxOTAgMjc0QzE0Mi41MDQgMjc0IDEwNCAyMzUuOTQ0IDEwNCAxODlDMTA0IDE0Mi4wNTYgMTQyLjUwNCAxMDQgMTkwIDEwNEMyMzcuNDk2IDEwNCAyNzYgMTQyLjA1NiAyNzYgMTg5WiIgc3Ryb2tlPSJ1cmwoI3BhaW50MF9saW5lYXJfMzAwMV8zNjI1MCkiIHN0cm9rZS13aWR0aD0iMjYiLz4KPHBhdGggZD0iTTIzMCAxODkuNUMyMzAgMjExLjg2OCAyMTIuMDkxIDIzMCAxOTAgMjMwQzE2Ny45MDkgMjMwIDE1MCAyMTEuODY4IDE1MCAxODkuNUMxNTAgMTY3LjEzMiAxNjcuOTA5IDE0OSAxOTAgMTQ5QzIxMi4wOTEgMTQ5IDIzMCAxNjcuMTMyIDIzMCAxODkuNVoiIHN0cm9rZT0idXJsKCNwYWludDFfbGluZWFyXzMwMDFfMzYyNTApIiBzdHJva2Utd2lkdGg9IjI2Ii8+CjxwYXRoIGQ9Ik0zMTkgMTg5LjVDMzE5IDI2MS4wMjEgMjYxLjI0NSAzMTkgMTkwIDMxOUMxMTguNzU1IDMxOSA2MSAyNjEuMDIxIDYxIDE4OS41QzYxIDExNy45NzkgMTE4Ljc1NSA2MCAxOTAgNjBDMjYxLjI0NSA2MCAzMTkgMTE3Ljk3OSAzMTkgMTg5LjVaIiBzdHJva2U9InVybCgjcGFpbnQyX2xpbmVhcl8zMDAxXzM2MjUwKSIgc3Ryb2tlLXdpZHRoPSIyNiIvPgo8cGF0aCBkPSJNMzY3IDE5MEMzNjcgMjg3Ljc1NCAyODcuNzU0IDM2NyAxOTAgMzY3QzkyLjI0NTYgMzY3IDEzIDI4Ny43NTQgMTMgMTkwQzEzIDkyLjI0NTYgOTIuMjQ1NiAxMyAxOTAgMTNDMjg3Ljc1NCAxMyAzNjcgOTIuMjQ1NiAzNjcgMTkwWiIgc3Ryb2tlPSJ1cmwoI3BhaW50M19saW5lYXJfMzAwMV8zNjI1MCkiIHN0cm9rZS13aWR0aD0iMjYiLz4KPC9nPgo8ZGVmcz4KPGxpbmVhckdyYWRpZW50IGlkPSJwYWludDBfbGluZWFyXzMwMDFfMzYyNTAiIHgxPSIzNTciIHkxPSIyNCIgeDI9IjE5MCIgeTI9IjI0NCIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPgo8c3RvcCBzdG9wLWNvbG9yPSIjNzU4MzhCIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzc2QjVEOSIgc3RvcC1vcGFjaXR5PSIwIi8+CjwvbGluZWFyR3JhZGllbnQ+CjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQxX2xpbmVhcl8zMDAxXzM2MjUwIiB4MT0iMzU3IiB5MT0iMjQiIHgyPSIxOTAiIHkyPSIyNDQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzc1ODM4QiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiM3NkI1RDkiIHN0b3Atb3BhY2l0eT0iMCIvPgo8L2xpbmVhckdyYWRpZW50Pgo8bGluZWFyR3JhZGllbnQgaWQ9InBhaW50Ml9saW5lYXJfMzAwMV8zNjI1MCIgeDE9IjM1NyIgeTE9IjI0IiB4Mj0iMTkwIiB5Mj0iMjQ0IiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CjxzdG9wIHN0b3AtY29sb3I9IiM3NTgzOEIiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjNzZCNUQ5IiBzdG9wLW9wYWNpdHk9IjAiLz4KPC9saW5lYXJHcmFkaWVudD4KPGxpbmVhckdyYWRpZW50IGlkPSJwYWludDNfbGluZWFyXzMwMDFfMzYyNTAiIHgxPSIzNTciIHkxPSIyNCIgeDI9IjE5MCIgeTI9IjI0NCIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPgo8c3RvcCBzdG9wLWNvbG9yPSIjNzU4MzhCIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzc2QjVEOSIgc3RvcC1vcGFjaXR5PSIwIi8+CjwvbGluZWFyR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 100% 100%;
}
.shop-block:hover {
	border-color: #FFC839;
}
.shop-block>img {
	width: 100%;
	height: 172px;
	object-fit: cover;
	transition: .3s;
}
.shop-block:hover>img {
	transform: scale(1.05);
}
.shop-block>span {
	display: flex;
	align-items: center;
	color: #232126;
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	line-height: 130%;
	min-height: 42px;
	transition: .3s;
}
.shop-block:hover>span {
	color: #FFC839;
}

.product-slider .slick-track {
	margin-left: 0;
}

.product-prefoot {
	padding-top: 40px;
	padding-bottom: 40px;
	border-top: 1px solid #EEF0F5;
	background-color: #FFFFFF;
}
.product-prefoot_grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 40px;
}
.product-prefoot_block {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
.product-prefoot_box {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.product-prefoot_box p {
	color: #232126;
	font-size: 17px;
	font-weight: 700;
	line-height: 120%;
}
.product-prefoot_box span {
	color: #2B343C;
	font-size: 14px;
	line-height: 130%;
	opacity: 0.7;
	display: block;
}


.cartcalc {
	display: flex;
	height: 53px;
	border-radius: 8px;
	border: 1px solid #EEF0F5;
	background: #FFFFFF;
	overflow: hidden;
}
.ccalc__btn {
	padding: 8px;
	transition: .3s;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ccalc__btn[disabled] {
	pointer-events: none;
	background-color: #F8F8F9;
}
.ccalc__btn:hover {
	background-color: #FFC839;
}
.cartcalc input {
	color: #232126;
	text-align: center;
	font-size: 14px;
	line-height: 130%;
	width: 54px;
	border-left: 1px solid #EEF0F5;
	border-right: 1px solid #EEF0F5;
}


.tooltip {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 10px;
	background-color: rgba(35, 33, 38, 0.90);
	padding: 10px;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	z-index: 5;
}
.tooltip::after {
	content: '';
	position: absolute;
	display: block;
	border: 6px solid transparent;
	border-top: 6px solid rgba(35, 33, 38, 0.90);
	transform: translateX(-50%);
	bottom: -12px;
	left: 50%;
}
.tooltip p {
	color: #FFFFFF;
	font-size: 14px;
	line-height: 130%;
}


.popup__close {
	border-bottom: 1px dashed rgba(43, 52, 59, 0.70);
	color: #2B343C;
	font-size: 14px;
	font-weight: 500;
	line-height: 126%;
	cursor: pointer;
	transition: .3s;
}
.popup__close:hover {
	color: #FFC839;
	border-color: rgba(255, 200, 57, 0.70);
}
.popup-btns {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}
.popup-btns button {
	width: 100%;
	padding: 11px 35px;
}

.fancy-popup__title {
	color: #232126;
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	line-height: 130%;
}
.fancy-popup__title span {
	color: #5C6D8D;
}


.productRemove {
	display: flex;
	flex-direction: column;
	gap: 25px;
	max-width: 440px;
	width: 100%;
}
.productRemove .product-cart_info {
	margin-left: auto;
}



.productRemove .product-mini_price {
	font-size: 18px;
}


.stockPopup {
	max-width: 1070px;
	width: 100%;
	padding: 25px;
	overflow-y: auto;
}
.stockPopup__title {
	color: #232126;
}
.stockPopup-block {
	margin-top: 25px;
}
.stockPopup-row {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #EEF0F5;
	padding-top: 15px;
	padding-bottom: 14px;
}
.stockPopup-row>p:first-child {
	width: 52.89%;
}
.stockPopup-row>p:last-child {
	margin-left: auto;
	text-align: right;
}
.stockPopup-block_top {
	padding-right: 8px;
}
.stockPopup-block_top p {
	color: #232126;
	font-size: 14px;
	font-weight: 500;
	line-height: 126%;
}
.stockPopup__address {
	color: #232126;
	font-size: 14px;
	line-height: 130%;
	opacity: 0.8;
}
.stockPopup__stock {
	display: flex;
	align-items: center;
	gap: 5px;
}
.stockPopup__stock--text {
	color: #498F11;
	font-size: 14px;
	font-weight: 500;
	line-height: 126%;
}
.stockPopup__stock--count {
	color: #A0A3AA;
	font-size: 13px;
	line-height: 120%;
}
.stockPopup__graph {
	padding-right: 13px;
	color: #232126;
	font-size: 14px;
	line-height: 130%;
	opacity: 0.8;
}
.stockPopup__graph span {
	display: none;
}


.product-credits {
	max-width: 644px;
	padding: 35px;
}
.product-credits__title {
	text-align: center;
	margin-bottom: 20px;
}
.product-credits p {
	margin-bottom: 15px;
	color: #232126;
	font-size: 15px;
	font-weight: 500;
	line-height: 130%;
}
.product-credits ul {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.product-credits ul li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
.product-credits ul li span {
	display: block;
}
.product-credits ul li span:first-child {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	min-width: 25px;
	height: 25px;
	background-color: #FFC839;
	border-radius: 50%;
}
.product-credits ul li span:first-child::before {
	content: '';
	width: 11px;
	height: 11px;
	display: block;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 50% 0;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCAxMSAxMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzc0MV80ODM5MzEpIj4KPHBhdGggZD0iTTkuMTY5MjcgMi43NUw0LjEyNzYgNy43OTE2N0wxLjgzNTk0IDUuNSIgc3Ryb2tlPSIjMjMyMTI2IiBzdHJva2Utd2lkdGg9IjEuOCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDBfNzQxXzQ4MzkzMSI+CjxyZWN0IHdpZHRoPSIxMSIgaGVpZ2h0PSIxMSIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K);
}
.product-credits ul li span:last-child {
	color: #57575E;
	font-size: 15px;
	line-height: 144%;
}

.search-block {
	position: relative;
}
.search-block_inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 900px;
	border: 2px solid #FFC839;
	background: #FFFFFF;
	padding-left: 20px;
	padding-right: 58px;
	position: relative;
	height: 54px;
}
.search-block_inner>input {
	flex-grow: 1;
	color: #2B343C;
	font-size: 13px;
	line-height: 129%;
	height: 100%;
}
.search-block_inner>input:-webkit-autofill,
.search-block_inner>input:-webkit-autofill:hover,
.search-block_inner>input:-webkit-autofill:focus,
.search-block_inner>input:-webkit-autofill:active  {
	-webkit-box-shadow: 0 0 0px 1000px white inset;
}
.search-block_cat {
	width: 168px;
	min-width: 168px;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 6px;
	padding-bottom: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	border-left: 1px solid #EBEBEB;
	cursor: pointer;
}
.search-block_cat span {
	color: #57575E;
	font-size: 13px;
	font-weight: 500;
	line-height: 129%;
	transition: .3s;
}
.search-block_cat:hover span {
	color: #FFC839;
}
.search-block_cat svg path {
	transition: .3s;
}
.search-block_cat:hover svg path {
	stroke: #FFC839;
}
.search-block__btn {
	position: absolute;
	top: -2px;
	bottom: -2px;
	right: -2px;
	width: 60px;
	background-color: #FFC839;
	transition: .3s;
	border-radius: 0px 900px 900px 0px;
}
.search-block__btn:hover {
	background-color: #232126;
}
.search-block__btn svg path {
	transition: .3s;
}
.search-block__btn:hover svg path {
	stroke: #FFFFFF;
}
.search-block_cats--list {
	position: absolute;
	top: 100%;
	right: 58px;
	width: 171px;
	border-radius: 0px 0px 9px 9px;
	border-right: 1px solid #EBEBEB;
	border-bottom: 1px solid #EBEBEB;
	border-left: 1px solid #EBEBEB;
	background: #FFF;
	box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.15);
	height: 160px;
	overflow: hidden;
	overflow-y: auto;
	display: none;
	z-index: 2;
}
.search-block_cats--list::-webkit-scrollbar {
	width: 5px;
}
.search-block_cats--list::-webkit-scrollbar-track {
	background: #EEF0F5;
}
.search-block_cats--list::-webkit-scrollbar-thumb {
	border-radius: 900px;
	opacity: 0.8;
	background-color: #232126;
	border: 1px solid #EEF0F5;
	cursor: pointer;
}
.search-block_cats--list li {
	font-family: inherit;
	display: block;
	padding: 12px 8px;
	color: #232126;
	font-size: 13px;
	font-weight: 500;
	line-height: 120%;
	cursor: pointer;
	transition: .3s;
}
.search-block_cats--list li.active {
	opacity: 0.7;
	pointer-events: none;
}
.search-block_cats--list li:hover {
	background-color: #FFC839;
}


.fancybox__container {
	--fancybox-bg: rgba(25, 26, 27, 0.55);
}




.mapPopup {
	max-width: 1480px;
	width: 100%;
	padding: 0;
}
.popup-tabs {
	padding: 40px 25px 0;
	border-bottom: 1px solid #EEF0F5;
	display: flex;
	align-items: center;
	gap: 10px;
}
.popup-tab {
	border-bottom: 1px solid #000;
	padding: 18px 17px;
	border-radius: 10px 10px 0px 0px;
	border: 1px solid #FFFFFF;
	border-bottom: 1px solid #EEF0F5;
	display: flex;
	align-items: center;
	gap: 6px;
	background-color: #FFFFFF;
	margin-bottom: -1px;
	cursor: pointer;
	transition: .3s;
}

.popup-tab.active {
	background-color: #FBFBFB;
	border: 1px solid #EEF0F5;
	border-bottom: 1px solid #EEF0F5;
	pointer-events: none;
}
.popup-tab span {
	color: #5C6D8D;
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	line-height: 130%;
	transition: .3s;
	border-bottom: 1px dashed #5C6D8D;
}
.popup-tab.active span {
	border-color: transparent;
	color: #2B343C;
}
.popup-tab:not(.active):hover span {
	color: #FFC839;
	border-color: #FFC839;
}

.popup-tab svg path {
	transition: .3s;
}
.popup-tab svg path {
	stroke: #2B343C;
}
.popup-tab:not(.active):hover svg path {
	stroke: #FFC839;
}
.mapPopup-block {
	align-items: stretch;
	gap: 20px;
	padding: 20px 40px 40px;
	display: none;
	background-color: #FBFBFB;
}
.mapPopup-block.active {
	display: flex;
}
.mapPopup-l {
	display: flex;
	flex-direction: column;
	gap: 4px;
	height: 596px;
	width: 286px;
	min-width: 286px;
	overflow: hidden;
	overflow-y: auto;
	padding-right: 10px;
}
.mapPopup-l::-webkit-scrollbar {
	width: 5px;
}
.mapPopup-l::-webkit-scrollbar-track {
	border-radius: 900px;
	background: #EEF0F5;
	padding-left: 1px;
	padding-right: 1px;
}
.mapPopup-l::-webkit-scrollbar-thumb {
	border-radius: 900px;
	background-color: rgba(35, 33, 38, 0.8);
	cursor: pointer;
	border: 1px solid transparent;
	background-clip: content-box;
	transition: .3s;
}
.mapPopup-l::-webkit-scrollbar-thumb:hover {
	background-color: #232126;
}
.mapPopup-box {
	border-radius: 9px;
	background: #FFF;
	border: 2px solid #FFF;
	transition: .3s;
	padding: 13px;
	cursor: pointer;
}
.mapPopup-box.active,
.mapPopup-box:hover {
	border-color: #FFC839;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.02);
}
.mapPopup__address {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #000;
	font-size: 14px;
	font-weight: 500;
	line-height: 126%;
}
.mapPopup__address::before {
	content: '';
	display: block;
	width: 4px;
	min-width: 4px;
	height: 4px;
	background-color: #FFC839;
	border-radius: 50px;
}
.mapPopup-time {
	margin-top: 6px;
	display: flex;
	align-items: center;
	gap: 6px;
	padding-left: 10px;
}
.mapPopup-time span {
	color: #57575E;
	font-size: 13px;
	line-height: 120%;
	opacity: 0.8;
}
.mapPopup-r {
	flex-grow: 1;
}
.mapPopup-r__map {
	width: 100%;
	height: 100%;
	border-radius: 13px;
	overflow: hidden;
}
.ymaps-2-1-79-balloon {
	top: calc(100% + 40px)!important;
	left: -152px !important;
	box-shadow: none!important;
	border-radius: 10px;
	background: #FFF;
	box-shadow: 0px 0px 34px 0px rgba(0, 0, 0, 0.20)!important;
	overflow: hidden;
}
.ymaps-2-1-79-balloon__tail {
	display: none!important;
}
.ymaps-2-1-79-balloon__content {
	margin: 0!important;
	padding: 0!important;
}
.ymaps-2-1-79-balloon-content__footer {
	margin: 0!important;
}
.ymaps-2-1-79-balloon__close-button {
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxMyAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC40Ij4KPHBhdGggZD0iTTkuNzUgMy43NUwzLjI1IDEwLjI1IiBzdHJva2U9IiM1NzU3NUUiIHN0cm9rZS13aWR0aD0iMS4zIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTMuMjUgMy43NUw5Ljc1IDEwLjI1IiBzdHJva2U9IiM1NzU3NUUiIHN0cm9rZS13aWR0aD0iMS4zIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9nPgo8L3N2Zz4K)!important;
	opacity: 1!important;
}
.marker {
	padding: 25px;
	max-width: 296px;
}
.marker-wrapper {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.marker-block {
	display: flex;
	flex-direction: column;
	gap: 7px;
	font-family: "Onest", sans-serif;
}
.marker-block>span {
	color: #A0A3AA;
	font-size: 14px;
	font-weight: 500;
	line-height: 126%;
}
.marker-block>p {
	display: flex;
	align-items: center;
	gap: 6px;
}
.marker-block>p.start {
	align-items: flex-start;
	gap: 3px;
}
.marker-block>p>svg {
	width: 17px;
	height: auto;
}
.marker-block>p.start>svg {
	width: 20px;
}
.marker-block__address {
	color: #232126;
	font-size: 14px;
	font-weight: 500;
	line-height: 126%;
}
.marker-block>p>a {
	color: #232126;
	font-size: 13px;
	font-weight: 700;
	line-height: 120%;
}
.marker-block>p>a:hover {
	color: #FFC839;
}
.marker-block__graph {
	color: #57575E;
	font-size: 13px;
	line-height: 120%;
}
.marker__btn {
	padding-left: 0;
	padding-right: 0;
	width: 100%;
	font-family: "Onest", sans-serif;
}

.mapPopup-phone {
	padding-left: 24px;
	margin-top: 2px;
	display: flex;
}
.mapPopup-phone a {
	color: #232126;
	font-size: 14px;
	line-height: 130%;
}




.popup-callback {
  padding: 25px;
  max-width: 413px;
  width: 100%;
}
.popup-callback .popup-content {
	position: relative;
}

.popup-callback .popup-header {
	margin-bottom: 20px;
}

.popup-title {
	margin: 0;
	text-align: center;
	margin-bottom: 10px;
}

.popup-subtitle {
	color: #57575E;
	text-align: center;
	font-size: 15px;
	font-weight: 400;
	line-height: 21.6px;
}

.popup-callback .popup-form-group {
	margin-bottom: 17px;
}

.popup-callback .popup-label {
	color: #232126;
	font-size: 14px;
	font-weight: 500;
	line-height: 17.64px;
	margin-bottom: 4px;
	display: block;
}

.popup-callback .popup-label span {
	color: #F72460;
	font-size: 16px;
	font-weight: 400;
	line-height: 18.2px;
}

.popup-callback .popup-input-wrapper {
	position: relative;
}

.popup-callback .popup-input {
	padding: 15px 14px;
	font-size: 14px;
	font-weight: 400;
	line-height: 18.2px;
	color: #232126;
	width: 100%;
	border-radius: 8px;
	border: 1px solid #EEF0F5;
	background: #FFF;
}

.popup-callback .popup-input:focus {
	border: 1px solid #5C6D8D;
}

.popup-callback .popup-input::placeholder {
	color: #A0A3AA;
}

.popup-callback .popup-icon {
	position: absolute;
	top: 15px;
	right: 15px;
}

.popup-callback .popup-checkbox {
	display: flex;
	gap: 10px;
	align-items: center;
}

.popup-callback .popup-checkbox-label {
	color: rgba(43, 52, 60, 0.6);
	font-size: 13px;
	font-weight: 400;
	line-height: 15.6px;
}

.popup-callback .popup-checkbox-label a {
	text-decoration: underline;
}

.popup-callback .popup-checkbox-label a:hover {
	color: #FFC839;
}

.popup-submit {
	margin-top: 20px;
	margin-inline: auto;
	cursor: pointer;
}

.popup-callback .popup-submit span {
	width: 119px;
}


.popup-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.popup-checkbox._error .popup-checkbox-label::before {
  border-color: #F72460;
  box-shadow: 0px 3px 11px 0px rgba(247, 36, 96, 0.15) inset;
}

.popup-checkbox-input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.popup-checkbox-label {
	position: relative;
	padding-left: 34px;
	cursor: pointer;
	user-select: none;
}

.popup-checkbox-label::before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	width: 24px;
	height: 24px;
	border: 1px solid #ccc;
	border-radius: 4px;
	background-color: #fff;
	transition: border-color 0.2s, background-color 0.2s;
}

.popup-checkbox-input:checked+.popup-checkbox-label::after {
	content: "";
	position: absolute;
	left: 9px;
	top: 8px;
	width: 6px;
	height: 10px;
	border: solid rgba(35, 33, 38, 1);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.popup-checkbox-input:checked+.popup-checkbox-label::before {
	background-color: #FFC839;
	border-color: #FFC839;
}


.popup-thanks {
  max-width: 413px;
  width: 100%;
}

.popup-form-group._error input,
.popup-form-group._error textarea {
  border-color: #F72460;
  box-shadow: 0px 3px 11px 0px rgba(247, 36, 96, 0.15) inset;
  color: #F72460;
}



@media (max-width: 1024px) {
	.popup-callback {
		max-width: 432px;
		width: 100%;
		border-radius: 10px;
	}

	.popup-callback {
		padding: 20px;
	}

	.popup-callback .popup-subtitle {
		font-size: 14px;
		line-height: 18.2px;
		max-width: 250px;
		margin: 0 auto;
	}

	.popup-callback .popup-header {
		margin-bottom: 10px;
	}

	.popup-callback .popup-form .popup-form-group:nth-child(2) {
		margin-bottom: 10px;
	}

	.addCart__btn._added svg.added {
		width: 13px;
		height: auto;
	}

	.product-cart__btn.addCart__btn {
		width: auto;
		flex-grow: 1;
	}
	.product-cart__btn.addCart__btn span {
		color: #232126;
		font-size: 13px;
		font-weight: 500;
		line-height: 120%;
	}
	.product-cart__btn._added.addCart__btn span {
		color: #FFFFFF;
	}
}


@media (max-width: 768px) {
	.popup-callback {
		min-width: auto;
		width: calc(100% - 28px);
		max-width: 332px;
	}

	.popup-callback {
		padding: 14px;
	}
}




.home-blog {
	padding-top: 60px;
	padding-bottom: 60px;
	overflow: hidden;
}

.home-tabs {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 16px;
}
.home-tab {
	padding: 8px 14px;
	border-radius: 6px;
	background-color: #FFFFFF;
	box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.10);
	cursor: pointer;
	transition: .3s;
}
.home-tab.active,
.home-tab:hover {
	background-color: #FFC839;
	box-shadow: none;
}
.home-tab.active {
	pointer-events: none;
}
.home-tab span {
	color: #57575E;
	font-size: 14px;
	font-weight: 500;
	line-height: 126%;
	opacity: 0.7;
	transition: .3s;
	display: block;
}
.home-tab.active span,
.home-tab:hover span {
	color: #232126;
	opacity: 1;
}

.home-slider {
	display: none;

}
.home-slider .slick-list {
	padding-bottom: 32px;
}
.home-slider.active {
	display: block;
}
.home-bottom {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 32px;
}

.woocommerce-breadcrumb {
	display: flex;
	column-gap: 11px;
	row-gap: 3px;
	align-items: flex-start;
	color: rgba(87, 87, 94, 0.6);
	font-size: 13px;
	line-height: 120%;
	margin-bottom: 20px;
}
.woocommerce-breadcrumb::before {
	content: none!important;
}
.woocommerce-breadcrumb a {
	color: #57575E;
}
.woocommerce-breadcrumb a:hover {
	color: #FFC839;
}



@media (max-width: 1600px) {
	.product-slider .slick-prev {
		left: -13px;
		z-index: 1;
	}
	.product-slider .slick-next {
		right: -13px;
		z-index: 1;
	}
}

@media (max-width: 1530px) {
	.mapPopup {
		max-width: calc((100% - 40px));
	}
}



@media (max-width: 1470px) {
	.product-cart_info > a > span,
	.product-cart_info > span > span {
		display: none;
	}
}

@media (max-width: 1450px) {
	.product-slider .slick-list {
		overflow: visible;
	}

	.product-slider .slick-slide {
		opacity: 1;
		visibility: visible;
	}
}

@media (max-width: 1380px) {
	.product-slider .slick-list {
		margin: 0 -5px;
	}
	.product-slider .slick-slide {
		margin: 0 5px;
	}
}

@media(max-width: 1290px) {
	.product-prefoot_grid {
		grid-template-columns: repeat(2, 1fr);
		grid-row-gap: 20px;
	}
}

@media(max-width: 1280px) {
	.shop-block>img {
		height: 13.609vw;
	}
}

@media (max-width: 1210px) {
	.recently-slide {
		padding-right: 0;
	}
}

@media (max-width: 1120px) {
	.stockPopup {
		max-width: 476px;
	}
	.stockPopup-block {
		margin-top: 10px;
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
	.stockPopup-row {
		padding: 11px;
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
		border-radius: 6px;
		border: 1px solid #EEF0F5;
	}
	.stockPopup-block_top {
		display: none;
	}
	.stockPopup-row>p:first-child {
		width: 100%;
	}
	.stockPopup__address {
		opacity: 1;
	}
	.stockPopup-row>p:last-child {
		margin-left: 0;
	}
	.stockPopup__graph {
		padding-right: 0;
		margin-left: 0;
		opacity: 1;
		font-weight: 500;
	}
	.stockPopup__graph span {
		display: inline;
	}
}

@media (max-width: 1024px) {
	.d-none_tablet {
		display: none !important;
	}
	.d-block_tablet {
		display: block !important;
	}

	.recently {
		overflow: hidden;
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.recently .slick-list {
		overflow: visible;
		margin-bottom: 15px;
	}
	.recently-slider {
		padding-left: 2.344vw;
		margin-top: 20px;
	}
	.recently-slide {
		margin-right: 20px;
	}
	.recently .product-mini {
		max-width: 337px;
		width: 100%;
	}

	._view2 {
		display: block!important;
	}
	._view1,
	._view3 {
		display: none!important;
	}

	.more-post-link {
		max-width: 720px;
	}

	.product-cart_top {
		top: 10px;
		left: 10px;
		gap: 3px;
	}
	.product-cart_top > img {
		width: 16px;
	}
	.product-cart_top > span {
		height: 16px;
		padding-left: 2px;
		padding-right: 2px;
		font-size: 10px;
	}
	.product-cart_discount,
	.product-cart_tag {
		height: 19px;
		padding-left: 4px;
		padding-right: 4px;
		font-size: 11px;
	}
	.product-cart_box {
		padding: 8px;
	}
	.product-cart_row {
		gap: 8px;
	}
	.product-cart__cat {
		margin-top: 6px;
		font-size: 12px;
	}
	.product-cart__title {
		margin-top: 2px;
		margin-bottom: 2px;
		font-size: 15px;
	}
	.product-cart_details {
		flex-direction: column;
		align-items: flex-start;
	}
	.price {
		font-size: 15px;
		line-height: 144%;
	}
	.product-cart_btns {
		width: 100%;
	}
	.product-cart__btn.addCart__btn {
		width: auto;
		flex-grow: 1;
	}
	.product-cart__btn.addCart__btn span {
		color: #232126;
		font-size: 13px;
		font-weight: 500;
		line-height: 120%;
	}
	.product-cart_shops {
		margin-top: 6px;
	}
	.product-cart_shops > span,
	.product-cart_shops > p span {
		font-size: 12px;
	}
	.product-cart_shops > p span {
		line-height: 1.1;
	}

	.empty-block {
		padding: 12px;
	}
	.empty-block_inner {
		align-items: flex-start;
		gap: 10px;
	}
	.empty-block_inner > span {
		width: 32px;
		min-width: 32px;
		height: 32px;
	}
	.empty-block_inner > span > svg {
		width: 16px;
	}
	.empty-block_inner p {
		font-size: 13px;
	}
	.empty-block_inner span {
		font-size: 13px;
		line-height: 120%;
	}

	.product-alert {
		right: 24px;
		width: 332px;
	}
	.product-alert__title {
		font-size: 11px;
	}
	.product-alert__name {
		font-size: 14px;
	}

	.product-sliders {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.product-slider_wrapper {
		gap: 30px;
	}
	.product-slider {
		margin-top: 22px;
	}
	.product-slider .slick-arrow {
		width: 26px;
		height: 26px;
		background-size: 15px;
	}

	.cart-empty {
		padding: 15px;
	}
	.cart-empty_block {
		align-items: flex-start;
	}
	.cart-empty__text {
		font-size: 14px;
		line-height: 130%;
	}

	.fancy-popup {
		border-radius: 10px;
	}
	.fancy-popup .is-close-btn {
		width: 32px;
		height: 32px;
	}
	.fancy-popup .is-close-btn::after {
		width: 14px;
		height: 14px;
	}


	.product-prefoot_grid {
		grid-column-gap: 67px;
		grid-row-gap: 20px;
	}
	.product-prefoot_block img {
		width: 30px;
		height: auto;
	}
	.product-prefoot_box p {
		font-size: 14px;
	}
	.product-prefoot_box span {
		font-size: 12px;
		line-height: 120%;
	}
	.product-prefoot {
		padding-top: 20px;
		padding-bottom: 20px;
	}


	.shop-block {
		padding: 11px 9px;
	}
	.shop-block>img {
		height: 15.609vw;
	}
	.shop-block>span {
		font-size: 15px;
		min-height: 38px;
	}


	.product-cart_wrapper {
		display: none;
	}


	.fancy-popup__title {
		font-size: 15px;
	}

	.productRemove {
		padding: 24px;
		max-width: 430px;
		gap: 10px;
	}

	.productRemove .product-mini_pic {
		width: 63px;
		min-width: 63px;
		height: 63px;
	}


	.product-credits {
		padding: 20px;
	}
	.product-credits p,
	.product-credits ul li span:last-child {
		font-size: 14px;
	}

	.search-block {
		max-width: 100%;
	}


	.popup-tabs {
		padding: 14px 14px 0;
		gap: 0;
	}
	.popup-tab {
		padding: 17px 11px;
		gap: 4px;
	}
	.mapPopup-block {
		padding: 14px;
		gap: 10px;
	}
	.mapPopup-l {
		height: 414px;
		width: 248px;
		min-width: 248px;
	}
	.mapPopup-box {
		padding: 7px 1px;
		padding-right: 4px;
	}
	.mapPopup__address {
		font-size: 13px;
		line-height: 120%;
		order: 1;
		gap: 3px;
	}
	.mapPopup__address::before {
		width: 18px;
		min-width: 18px;
		height: 18px;
		background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyIDZDMTIgNy42NTY4NiAxMC42NTY5IDkgOSA5QzcuMzQzMTcgOSA2IDcuNjU2ODYgNiA2QzYgNC4zNDMxNCA3LjM0MzE3IDMgOSAzQzEwLjY1NjkgMyAxMiA0LjM0MzE0IDEyIDZaIiBzdHJva2U9IiNBMEEzQUEiIHN0cm9rZS13aWR0aD0iMS42IiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNOSA5VjE1VjlaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNOSA5VjE1IiBzdHJva2U9IiNBMEEzQUEiIHN0cm9rZS13aWR0aD0iMS42IiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K);
		background-color: transparent;
		background-size: contain;
		background-repeat: no-repeat;
		background-position: 50% 0;
	}
	.mapPopup-time {
		padding-left: 24px;
		margin-top: 3px;
	}
	.mapPopup-time svg {
		display: none;
	}



	.marker {
		padding: 15px;
	}


	.home-blog {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.home-tabs {
		margin-top: 8px;
		gap: 8px;
	}
	.home-tab {
		padding: 6px 10px;
	}
	.home-tab span {
		font-size: 13px;
		line-height: 120%;
	}
	.home-bottom {
		margin-top: 22px;
	}


	.woocommerce-breadcrumb {
		font-size: 12px;
		gap: 8px;
	}

}

@media (max-width: 768px) {
	.d-none_mobile {
		display: none !important;
	}
	.d-block_mobile {
		display: block !important;
	}
	.d-flex_mobile {
		display: flex !important;
	}
	._view3 {
		display: block!important;
	}
	._view1,
	._view2 {
		display: none!important;
	}

	.page-number-desktop {
		display: none;
	}

	.pagination a.page-prev,
	.pagination a.page-next {
		font-size: 0;
		gap: 0;
	}

	.slick-arrow {
		width: 26px;
		height: 26px;
		background-size: 13px;
	}

	.fancy-popup {
		padding: 14px!important;
		max-width: calc(100% - 20px)!important;
	}

	.product-prefoot_grid {
		grid-template-columns: 1fr;
		grid-gap: 14px;
	}

	.cart-empty {
		flex-direction: column;
	}
	.cart-empty_block {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.cart-empty {
		gap: 16px;
	}

	.productRemove .product-mini_price {
		font-weight: 700;
		font-size: 19px;
	}


	.sms-row {
		flex-direction: column;
		gap: 10px;
		align-items: center;
	}
	.sms-row .form-group {
		width: 100%;
	}
	.sms-row-right {
		padding-top: 0;
		text-align: center;
	}

	.search-block_cat {
		display: none;
	}
	.search-block__btn {
		width: 50px;
	}
	.search-block_inner {
		height: 42px;
	}


	.mapPopup {
		padding: 0!important;
	}

	.mapPopup-block {
		flex-direction: column;
		gap: 10px;
	}

	.mapPopup-r {
		display: none;
	}
	.mapPopup__address {
		font-size: 14px;
		font-weight: 700;
		max-width: 210px;
	}
	.mapPopup-box.active, .mapPopup-box:hover {
		border-color: #FFFFFF;
		box-shadow: none;
	}
	.mapPopup-box {
		border-bottom: 1px solid #EEF0F5;
		position: relative;
	}
	.mapPopup-box .btn-style2 {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
		padding: 10px 8px;
	}
	.mapPopup-box .btn-style2 svg {
		margin-left: 3px;
	}

	.mapPopup-r {
		width: 100%;
	}
	.mapPopup-r_top {
		padding: 10px 14px;
	}
	.mapPopup-r_top .btn-style2 {
		padding: 0;
		width: 100%;
		height: 42px;
	}
	.mapPopup-r__map {
		height: 437px;
	}
	.marker-block:nth-child(2) {
		display: none;
	}

	.mapPopup-l {
		width: 100%;
		min-width: 0;
	}

	.home-tabs {
		overflow: hidden;
		overflow-x: auto;
		white-space: nowrap;
		gap: 6px;
		width: calc(100% + 28px);
		margin-left: -14px;
		padding-left: 14px;
		padding-bottom: 10px;
	}
	.home-tabs::after {
		content: '';
		display: block;
		min-width: 8px;
	}
}


@media(max-width: 680px) {
	.shop-block>img {
		height: 22.609vw;
	}
}
@media(max-width: 530px) {
	.shop-block>img {
		height: 33.333vw;
	}
}
@media (max-width: 480px) {
	.recently-slider {
		padding-left: 0;
	}
	.recently-slider .slick-slide {
		display: flex !important;
		flex-direction: column;
		gap: 11px;
	}
	.recently-slide {
		margin-right: 0;
	}
	.recently .slick-list {
		overflow: hidden;
	}
	.recently .product-mini {
		max-width: 100%;
	}
	.product-mini_btns {
		margin-left: auto;
	}

	.product-mini__title {
		font-size: 14px;
	}

	.product-alert {
		right: 14px;
		width: calc(100% - 28px);
		top: 10vh;
	}
}
