body {
	font-family: "Raleway", sans-serif;
	font-weight: 400;
	color: #222325;
	font-size: 14px;
	line-height: 140%;
	width: 100%;
	font-size: 15px;
	font-variant-numeric: lining-nums proportional-nums !important;
	padding-top: 156px !important;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 60px;
}

@supports (-webkit-touch-callout: none) {

	input,
	textarea,
	select {
		font-size: 18px !important;
	}
}

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

:root {
	--main-color: #d7e4f5;
	--safe-bottom: env(safe-area-inset-bottom);
}

@media (max-width: 768px) {

	input,
	textarea,
	select {
		font-size: 16px;
	}
}

h2 {
	font-weight: 600;
	font-size: 27px;
	line-height: 100%;
	text-align: center;
	color: #222325;
	margin-top: 0;
	margin-bottom: 30px;
	text-align: center;
}

#common-home h2 {
	margin-bottom: 30px;
}

button {
	cursor: pointer;
}

.d-flex {
	display: flex;
}

.d-center {
	justify-content: center;
	align-items: center;
}



html {
	box-sizing: border-box;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
figure,
pre,
dl,
dd,
ol,
ul,
fieldset,
legend,
textarea,
button,
input,
select {
	margin: 0;
	padding: 0;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

button,
input,
select,
textarea {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	background: none;
	border: none;
	outline: none;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	text-decoration: none;
	color: inherit;
}

































/* preloader start */

#preloader-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.3);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 10000;
}

#preloader-overlay.active {
	display: flex;
}

.preloader-spinner {
	position: relative;
	width: 60px;
	height: 60px;
}

.preloader-spinner::before,
.preloader-spinner::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	border: 5px solid transparent;
	border-top-color: #3498db;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.preloader-spinner::before {
	animation: spin 1s linear infinite;
}

.preloader-spinner::after {
	width: 40px;
	height: 40px;
	border-width: 4px;
	border-top-color: #efd100;
	animation: spin 0.75s linear infinite reverse;
}

@keyframes spin {
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

/* preloader end */

/* label start */

#notification-container {
	/* display: flex;
    flex-direction: column-reverse; */
	position: fixed;
	bottom: 20px;

	left: 50%;
	translate: -50% 0;
	width: auto;
	z-index: 999999999;
}

.notification {
	display: flex;
	align-items: center;
	padding: 10px 15px;
	margin-bottom: 10px;
	color: #000;
	border-radius: 7px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.15);
	opacity: 0;
	transform: translateX(100%);
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.notification.show {
	opacity: 1;
	transform: translateX(0);
}

.notification a {
	color: inherit;
	text-decoration: underline;
	font-weight: 400;
	/* text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5); */
}

.notification a:hover {
	opacity: 0.8;
}

.notification.success {
	background-color: #d7e4f5;
	gap: 4px;
}

.notification.alert {
	background-color: #ffc107;
	color: #333;
}

.notification.alert a {
	color: #333;
}

.notification.warning {
	background-color: #dc3545;
}

.notification.default {
	background-color: #007bff;
}

.notification.my-custom {
	border: 2px dashed #fff;
	font-style: italic;
}

/* label end */

/* compare start */

.compare-toggle i,
.wishlist-toggle i {
	font-size: 18px;
	color: #666;
	transition: color .2s;
}

.compare-toggle.active i,
.wishlist-toggle.active i {
	color: #28a745;
}

/* compare end */

/* stickers start */

.product_tags {
	display: flex;
	flex-direction: column;
	gap: 7px;
	position: absolute;
	top: 14px;
	z-index: 10;
}

.product_sticker {
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 13px;
	text-align: center;
	color: #fff;
	height: 29px;
	padding: 0 15px;
	z-index: 10;
	border-radius: 0 5px 5px 0;
}

/* stickers end */

/* cookie start */

.cookie-banner {
	position: fixed;
	bottom: 24px;
	left: 24px;
	padding: 18px 24px;
	border-radius: 14px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
	display: flex;
	align-items: center;
	gap: 18px;
	z-index: 9999;
	max-width: 340px;
	width: 90vw;
	background: #222;
}

.cookie-accept {
	border: none;
	border-radius: 8px;
	padding: 8px 16px;
	cursor: pointer;
	font-weight: 500;
	font-size: 15px;
	margin-left: auto;
	background-color: #ffd600;
	color: #222;
	transition: background-color 0.2s, color 0.2s;
}

.cookie-accept:hover {
	background-color: #ffb300;
	color: #fff;
}

@media (max-width: 600px) {
	.cookie-banner {
		left: 8px;
		bottom: 8px;
		right: 8px;
		padding: 14px 10px;
		flex-direction: column;
		align-items: stretch;
		max-width: 95vw;
		gap: 10px;
	}

	.cookie-accept {
		width: 100%;
		font-size: 16px;
		padding: 10px 0;
		margin-left: 0;
	}
}

/* cookie end */

/* np start */

.autocomplete-wrapper {
	position: relative;
	display: block;
}

.autocomplete-dropdown {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	margin-top: 0;
	padding: 0;
	list-style: none;
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 6px;
	max-height: 240px;
	overflow-y: auto;
	box-shadow: 0 8px 20px 0 rgba(40, 40, 40, .13);
	font-size: 15px;
	z-index: 200;
}

.autocomplete-dropdown li {
	padding: 8px 14px;
	cursor: pointer;
	transition: background .15s;
}

.autocomplete-dropdown li:hover,
.autocomplete-dropdown li.active {
	background: #f1f3f5;
}

@media (max-width: 600px) {
	.autocomplete-dropdown {
		font-size: 13px;
	}
}

/* np end */













.burger_block {
	display: flex;
	width: 37px;
	height: 16px;
	justify-content: center;
	align-items: center;
	background: transparent;
}

.burger-menu-wraper {
	display: block;
	width: 37px;
	height: 16px;
	align-items: center;
	justify-content: center;
	position: relative;
	cursor: pointer;
	transform: rotate(0deg);
	transition: .5s ease-in-out;
	margin-right: 0;
}

#nav-icon3 span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #000;
	border-radius: 2px;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: .25s ease-in-out;
}

#nav-icon3 span:nth-child(1) {
	top: 0px;
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
	top: 7px;
}

#nav-icon3 span:nth-child(4) {
	top: 14px;
}

#nav-icon3.show-menu span:nth-child(1) {
	top: 12px;
	width: 0%;
	left: 50%;
}

#nav-icon3.show-menu span:nth-child(2) {
	transform: rotate(45deg);
}

#nav-icon3.show-menu span:nth-child(3) {
	transform: rotate(-45deg);
}

#nav-icon3.show-menu span:nth-child(4) {
	top: 12px;
	width: 0%;
	left: 50%;
}

.header_top {
	background: #d2e0f1;
	padding: 6px 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	font-size: 13px;
	line-height: 150%;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: #222325;
	position: relative;
	z-index: 2000;
	height: 30px;
}

.header_text {
	position: absolute;
	left: 50%;
	top: 50%;
	translate: -50% -50%;
	/* width: 100%; */
	transition: opacity 0.4s ease;
}

.text1 {
	opacity: 1;
	z-index: 2;
}

.text2 {
	opacity: 0;
	z-index: 1;
}

.header_wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 0;
	position: relative;
}

.header_body {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #f4f4f4;
	transition: 0.4s;
	position: relative;
	z-index: 2000;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 2000;
}

.header_body.sticky {
	/* position: fixed;
	left: 0;
	right: 0;
	z-index: 800;
	top: 0;
	box-shadow: 0px 4px 12px rgb(0 0 0 / 16%); */
}

.header_column_logo {
	position: absolute;
	left: 50%;
	top: 50%;
	translate: -50% -50%;
	z-index: 10;
	display: flex;
	justify-content: center;
	align-items: center;
}

.header_column_soc {
	display: flex;
	align-items: center;
	gap: 40px;
}

.header_social {
	align-items: center;
	gap: 10px;
}

.header_social a {
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 33px;
	height: 33px;
	border: 1px solid #d5d4d1;
	transition: 0.3s;
}

.header_social a:hover {
	border: 1px solid #d7e4f5;
	background: #d7e4f5;
}

.header_social a img {
	height: 18px;
	width: 18px;
}

.header_column_r {
	display: flex;
	align-items: center;
	gap: 22px;
}

#search img,
.icon-wishlist {
	height: 28px;
}

#cart button img {
	height: 28px;
}

.login_btn img {
	height: 28px;
}

#search .input-group-btn {
	display: flex;
	align-items: center;
}

.swiper-main {
	margin-top: 20px;
}

.store-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 20px;
}

.store-feature {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	background: #f4f4f4;
	border-radius: 8px;
	padding: 10px 15px;
	height: 80px;
	border: 1px solid #f4f4f4;
	transition: 0.3s;

}

.store-feature img {
	width: 29px;
}

.store-feature-title {
	font-weight: 500;
	font-size: 18px;
	line-height: 120%;
	text-align: center;
	color: #222325;
}

.top_slider_link {
	overflow: hidden;
	display: block;
	border-radius: 8px;
	display: block;
}

.top_slider_link img {
	transition: 0.3s;
	width: 100%;
}

.top_slider_link:hover img {
	scale:
		/*1.1*/
		1;
}


.popular_cat {
	padding: 80px 0;
}

.category-wall-title-icon {
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	width: 34px;
	min-width: 34px;
	height: 34px;
}

.category-wall-title-icon img {
	width: auto !important;
	height: 16px !important;
}



@media(min-width: 992px) {
	.category-wall {
		display: grid;
		grid-template-columns: repeat(20, 1fr);
		grid-template-rows: 275px 200px;
		grid-auto-rows: 200px;
		gap: 15px;
	}

	.category-wall-item:nth-child(1) {
		grid-column: 1 / span 8;
		grid-row: 1 / 3;
	}


	.category-wall-item:nth-child(2) {
		grid-column: 9 / span 4;
		grid-row: 1 / 2;
	}

	.category-wall-item:nth-child(3) {
		grid-column: 13 / span 4;
		grid-row: 1 / 2;
	}

	.category-wall-item:nth-child(4) {
		grid-column: 17 / span 4;
		grid-row: 1 / 2;
	}

	.category-wall-item:nth-child(5) {
		grid-column: 9 / span 3;
		grid-row: 2 / 3;
	}

	.category-wall-item:nth-child(6) {
		grid-column: 12 / span 3;
		grid-row: 2 / 3;
	}

	.category-wall-item:nth-child(7) {
		grid-column: 15 / span 3;
		grid-row: 2 / 3;
	}

	.category-wall-item:nth-child(8) {
		grid-column: 18 / span 3;
		grid-row: 2 / 3;
	}
}


.category-wall-item {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	border-radius: 10px;
}

.review_link_img {
	border-radius: 10px;
	overflow: hidden;
	display: block;
}

.product-layout .image {
	border-radius: 8px;
	overflow: hidden;
}

.category-wall-item:before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0);
	background: linear-gradient(0deg,
			#d2e0f1 0%,
			rgba(255, 255, 255, 0) 65%);
	transition: 0.4s;
	opacity: 0;
	translate: 0 100px;
	z-index: 1;
}

.category-wall-item:hover:before {
	opacity: 1;
	translate: 0 50px;
}

.category-wall-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: 0.4s;
}

.category-wall-item:hover .category-wall-img {
	scale: 1.1;
}

.category-wall-title {
	position: absolute;
	left: 15px;
	bottom: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	font-size: 15px;
	color: #fff;
	padding-right: 15px;
	transition: 0.4s;
	z-index: 2;
}

.category-wall-item:hover .category-wall-title {
	translate: 0 -10px;
}



.our_insta {
	padding: 40px 0;
	background: #f4f4f4;
}

.home_page {
	overflow: hidden;
}

.our_insta_head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
}

.our_insta_head h2 {
	text-align: left;
	margin-bottom: 0 !important;
}

.our_insta_hea_r {
	display: flex;
	align-items: center;
	gap: 60px;
}

.our_insta_head_r_logo {
	display: flex;
	align-items: center;
	gap: 12px;
}

.insta_nik {
	font-weight: 600;
	font-size: 20px;
	line-height: 100%;
	text-transform: uppercase;
	color: #222325;
	margin-bottom: 7px;
	display: block;
}

.insta_sbscr {
	font-weight: 400;
	font-size: 14px;
	line-height: 100%;
	color: #222325;
}

.our_insta_hea_r_btn {
	border: 1px solid #222325;
	border-radius: 5px;
	padding: 0 23px;
	height: 45px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 16px;
	line-height: 130%;
	color: #222325;
	transition: 0.3s;
}

.our_insta_hea_r_btn:hover {
	border: 1px solid #222325;
	background: #222325;
	color: white;
}

.our_insta_wrapper {
	display: flex;
	align-items: center;
	gap: 15px;
}

.our_insta_item {
	flex: 1;
	overflow: hidden;
	border-radius: 10px;
}

.our_insta_item img {
	width: 100%;
	border-radius: 10px;
	display: block;
	transition: 0.3s;
}

.our_insta_item:hover img {
	scale: 1.1;
}

.best_sell_block {
	margin-bottom: 80px;
}

.best_sell_block .nav-tabs a {
	font-weight: 600;
	font-size: 14px;
	line-height: 130%;
	letter-spacing: -0.01em;
	text-align: center;
	color: #222325;
	padding: 10px 22px;
	display: block;
	position: relative;
	transition: 0.3s;
}

.best_sell_block .nav-tabs a.active:before {
	content: '';
	position: absolute;
	bottom: -1px;
	width: 100%;
	left: 0;
	right: 0;
	border-top: 2px solid #9eacbd;
}

.best_sell_block .nav-tabs {
	margin-bottom: 30px;
}

.best_sell_block .nav-tabs li.active a {
	color: #9eacbd;
}

.product-thumb img {
	width: 100%;
}

.wish_btn {
	position: absolute;
	top: 10px;
	right: 10px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 42px;
	height: 42px;
	z-index: 5;
}

.wish_btn path {
	transition: 0.3s;
}

.wish_btn:hover .empty_wish path {
	fill: #aab8c9;
	stroke: #aab8c9;
}

.noempty_wish {
	display: none;
}

.wish_btn.active .empty_wish {
	display: none;
}

.wish_btn.active .noempty_wish {
	display: block;
}

.star {
	color: #ffc146;
	font-size: 22px;
}

.category_products .star {
	font-size: 18px;
}

.rating_info {
	margin-top: 7px;
	display: flex;
	align-items: center;
	gap: 7px;
}

.reviews_count {
	font-size: 14px;
}

.product_name a {
	font-weight: 600;
	font-size: 16px;
	line-height: 130%;
	color: #222325;
	margin-top: 5px;
	transition: 0.3s;
	display: block;
}

.product_name a:hover {
	color: #6a809d;
}

.caption_bottom {
	display: flex;
	align-items: center;
	margin-top: 17px;
	margin-top: auto;
}

.product-layout .caption {
	margin-bottom: 17px;
}

.buy_btn {
	background: #d7e4f5;
	border-radius: 6px;
	padding: 0 18px;
	height: 42px;
	border: unset;
	transition: 0.4s;
	font-weight: 600;
	font-size: 17px;
	line-height: 130%;
	color: #333;
	transition: 0.4s;
}

.buy_btn:hover {
	background: #6a809d;
	color: white;
}

.caption_bottom .price {
	font-weight: 700;
	font-size: 21px;
	line-height: 101%;
	text-align: center;
	color: #222325;
	flex: 1;
	white-space: nowrap;
}

.empty_prod_btn {
	background: var(--main-color);
	color: #000;
	height: 40px;
	padding: 0 15px;
	margin-top: 15px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 6px;
	transition: 0.3s;
	margin-bottom: 30px;
}

.empty_prod_btn:hover {
	background: #6a809d;
	color: white;
}

.viewed_products .price {
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
	padding-left: 15px;
}

.ocf-theme-light .ocf-search-btn-static:hover,
.ocf-theme-light .ocf-search-btn-static,
.ocf-theme-light .ocf-search-btn-popover,
.ocf-theme-light .ocf-search-btn-popover:hover {
	background-color: var(--main-color) !important;
	color: #000 !important;
}

.ocf-theme-light .ocf-filter-header .ocf-filter-discard:hover {
	filter: brightness(0.5) !important;
}

.ocf-noUi-handle {
	width: 18px !important;
	height: 18px !important;
	right: -13px !important;
	top: -1px !important;
}

.ocf-noUi-handle {
	border: 1px solid #000 !important;
}

.viewed_products .price-old {
	font-size: 15px;
	text-decoration: line-through;
}

.viewed_products .price-new {
	color: red;
}

.pdoduct_block_wrapper {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 15px;
}

.latest_blog {
	padding: 80px 0;
}

.latest_blog_wrapper {
	max-width: 1100px;
	width: 100%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.latest_blog_wrapper .image img {
	width: 100%;
	transition: 0.4s;
	display: block;
	border-radius: 10px;
}

.latest_blog_wrapper .image {
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 15px;
}

.blog_latest_name {
	font-weight: 500;
	font-size: 16px;
	line-height: 120%;
	color: #222325;
	display: block;
	margin-bottom: 10px;
	transition: 0.3s;
}

.blog_date {
	font-weight: 300;
	font-size: 14px;
	line-height: 120%;
	color: #54585c;
}

.blog_latest_item:hover img {
	scale: 1.1;
}

.blog_latest_item:hover .blog_latest_name {
	color: #9eacbd;
}

.blog_show_more {
	font-weight: 600;
	font-size: 16px;
	line-height: 130%;
	color: #222325;
	border: 1px solid #d5d4d1;
	border-radius: 5px;
	padding: 0 23px;
	height: 45px;
	transition: 0.3s;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
	position: relative;
	left: 50%;
	translate: -50% 0;
}

.blog_show_more:hover {
	background: rgba(92, 109, 143, 0.15);
	color: #222325;
}

.seo_block_txt p {
	font-weight: 300;
	font-size: 14px;
	line-height: 150%;
	letter-spacing: 0.01em;
	color: #222325;
}

.seo_block_flex {
	margin-top: 30px;
	display: flex;
	gap: 50px;
}

.seo_block_txt_side {
	flex-basis: 50%;
}

.seo_block_img_side img {
	width: 100%;
	border-radius: 10px;
}

.seo_block_wrapper {
	max-width: 840px;
	width: 100%;
	margin: 0 auto;
}

.seo_block {
	margin-bottom: 80px;
}

footer {
	padding: 40px 0;
	background: #f4f4f4;
}

.footer_wrapper {
	display: flex;
	justify-content: space-between;
	gap: 40px;
}

.footer_logo {
	margin-bottom: 20px;
}

.footer_social {
	display: flex;
	align-items: center;
	gap: 12px;
}

.footer_social a {
	width: 43px;
	height: 43px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #d5d4d1;
	transition: 0.3s;
}

.footer_social a:hover {
	border: 1px solid #d7e4f5;
	background: #d7e4f5;
}

.footer_social a img {
	width: 55%;
}

.footer_column_logo {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
}

.footer_pay {
	display: flex;
	align-items: center;
	gap: 30px;
}

.footer_created {
	margin-top: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.footer_created span {
	font-weight: 400;
	font-size: 13px;
	line-height: 150%;
	color: #6e6e6e;
}

.footer_created span a {
	color: #6e6e6e;
	text-decoration: underline;
	text-decoration-skip-ink: none;
}

.footer_column_title {
	font-weight: 600;
	font-size: 18px;
	line-height: 120%;
	color: #222325;
	margin-bottom: 15px;
}

.footer_column_title a {
	transition: 0.3s;
}

.footer_column_title a:hover {
	color: #9eacbd;
}

.footer_column_menu {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer_column_menu a {
	font-weight: 400;
	font-size: 14px;
	line-height: 120%;
	color: #222325;
}

.slider_top_name {
	position: absolute;
	top: 29px;
	display: block;
	/* width: 100%; */
	font-weight: 800;
	font-size: 28px;
	line-height: 104%;
	text-transform: uppercase;
	text-align: center;
	color: #fff;
	left: 10px;
	right: 10px;
}

.modal-content {
	border-radius: 15px !important;
}

.modal-dialog {
	max-width: 486px;
}

.swiper-slide {
	border-radius: 5px;
	overflow: hidden;
}

.reviews {
	padding-bottom: 80px;
}

.reviews_item {
	margin: 0 10px;
}

.burger_menu {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	background: #f4f4f4;
	z-index: 7000;
	width: 100%;
	max-width: 400px;
	padding: 20px 15px;
	transition: 0.4s;
	opacity: 0;
	visibility: hidden;
	translate: -110% 0;
	overflow: auto;
}

.burger_menu:has(.showSub) {
	overflow: hidden;
}

.burger_menu::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}

.burger_menu::-webkit-scrollbar-thumb {
	background-color: #6e6e6e;
	outline: 1px solid slategrey;
}

.burger_menu.active_menu {
	opacity: 1;
	visibility: visible;
	translate: 0 0;
}

.burger_menu_over {
	position: fixed;
	inset: 0;
	z-index: 6999;
	background: #000;
	opacity: 0;
	visibility: hidden;
	transition: 0.4s;
}

.burger_menu_over.active_menu {
	opacity: 0.5;
	visibility: visible;
}

.burger_menu_head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}

.burger_menu_close {
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.burger_menu_p {
	margin: 30px 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}

.burger_menu_p a {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #252322;
	transition: 0.3s;
}

.burger_menu_p a:hover {
	color: #6a7179;
}

.burger_menu_soc a {
	width: 50px;
	height: 50px;
}

.burger_menu_soc {
	justify-content: center;
	gap: 15px;
	margin-bottom: 30px;
}

.lang_wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.lang_wrapper a {
	border: 1px solid #d5d4d1;
	width: 73px;
	height: 39px;
	background: white;
	font-weight: 400;
	font-size: 16px;
	color: #252322;
	text-decoration: none;
	transition: 0.3s;
	display: flex;
	justify-content: center;
	align-items: center;
}

.lang_wrapper a:hover {
	border: 1px solid #5b5857;
	color: #252322;
}

.lang_wrapper a.active_lang {
	border: 1px solid #5b5857;
}

.menu_main {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 500;
	font-size: 16px;
	color: #222325;
	transition: 0.3s;
	position: relative;
}

.menu_item {
	position: relative;
}

.desk_menu_wrapper .menu_item:has(ul) {
	padding-bottom: 20px;
	margin-bottom: -20px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.desk_menu_wrapper .menu_item:hover svg {
	rotate: 180deg;
}

.desk_menu_wrapper .menu_item svg {
	transition: 0.3s;
}

header .menu_item:last-child .menu_item_sub {
	left: unset;
	right: 0;
	/* translate: 0 -20px; */
}

.desk_menu_wrapper .menu_item:nth-last-child(2) .menu_item_sub {
	left: unset;
	left: 50%;
	translate: -50% 0;
	padding-left: 0;
}

.desk_menu_wrapper .menu_item:nth-last-child(2) .menu_item_sub .menu_item_subsub_list {
	padding-left: 20px;
}

.desk_menu_wrapper .menu_item:nth-last-child(2) .menu_item_sub .menu_item_sub_sub {
	left: -115%;
}

.desk_menu_wrapper:has(.other_menus) .menu_item:nth-last-child(3) .menu_item_sub {
	left: unset;
	left: 50%;
	translate: -50% 0;
	padding-left: 0;
}

.desk_menu_wrapper:has(.other_menus) .menu_item:nth-last-child(3) .menu_item_sub .menu_item_subsub_list {
	padding-left: 20px;
}

.desk_menu_wrapper:has(.other_menus) .menu_item:nth-last-child(3) .menu_item_sub .menu_item_sub_sub {
	left: -115%;
}

.desk_menu_wrapper:has(.other_menus) .menu_item:nth-last-child(2) .menu_item_sub .menu_item_sub_sub {
	left: -169%;
}

footer .menu_item svg,
footer .menu_item ul {
	display: none;
}

.burger_menu_m .menu_item svg {
	display: none;
}

.desk_menu_wrapper .menu_item ul {
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
	background: #fff;
	border-radius: 5px;
	padding: 15px 17px;
	padding-right: 0;
	position: absolute;
	left: 0;
	top: 30px;
	z-index: 100;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	max-height: 67vh;
	width: max-content;
	gap: 12px;
	column-gap: 40px;
	transition: 0.4s;
	translate: -20px -20px;
	scale: 0.7;
	opacity: 0;
	visibility: hidden;
}

.desk_menu_wrapper .menu_item ul li {
	padding-right: 20px;
}

.menu_item_sub:has(.menu_item_sub_sub) {
	max-width: 260px !important;
}

.desk_menu_wrapper .show_all_item {
	display: none;
}

.desk_menu_wrapper .menu_item ul.menu_item_sub_sub {
	top: -15px;
	left: 92%;
	translate: -20px 0 !important;
	opacity: 0 !important;
	visibility: hidden !important;
}

.desk_menu_wrapper .menu>.menu_item:last-child ul.menu_item_sub_sub {
	left: unset;
	right: 100%;
}

.desk_menu_wrapper .menu>.menu_item:last-child li.menu_item_subsub_list {
	padding-left: 20px;
	margin-left: -20px;
}

.desk_menu_wrapper .menu_item ul.menu_item_sub_sub a {
	white-space: unset;
}

.menu_item_sub li:has(.menu_item_sub_sub) {
	position: relative;
	padding-right: 25px;
	margin-right: -25px;
}

.menu_item_sub li:has(.menu_item_sub_sub):hover ul.menu_item_sub_sub {
	opacity: 1 !important;
	visibility: visible !important;
	translate: 0 0 !important;
}

.menu_item_sub li:has(.menu_item_sub_sub) svg {
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	right: 35px;
	rotate: -90deg !important;
}



.desk_menu_wrapper .menu_item:hover ul {
	opacity: 1;
	visibility: visible;
	translate: 0 0;
	scale: 1;
}



.desk_menu_wrapper .menu_item ul a {
	white-space: nowrap;
	font-weight: 400;
	font-size: 14px;
	color: #222325;
}

.menu_main:hover {
	color: #6a7179;
}

.menu_icon {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background: white;
	width: 32px;
	height: 32px;
	transition: 0.3s;
}

footer .other_menus span {
	display: none;
}

footer .other_menus ul {
	display: block;
}

.burger_menu_m .other_menus svg,
.all_cat_modal .other_menus svg,
.burger_menu_m .other_menus span,
.all_cat_modal .other_menus span {
	display: none;
}

.burger_menu_m .menu_item:not(:last-child),
.all_cat_modal .menu_item:not(:last-child) {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #ededed;
}

.burger_menu_m .menu_item .sidebar_icon,
.all_cat_modal .menu_item .sidebar_icon {
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
	transition: 0.3s;
	pointer-events: none;
	display: flex;
	justify-content: center;
	align-items: center;
}

.burger_menu_m .menu_item .sidebar_icon svg,
.all_cat_modal .menu_item .sidebar_icon svg {
	rotate: 180deg;
}

.showSub.sidebar_icon {
	rotate: 90deg;
}


.burger_menu_m .menu_item ul a,
.all_cat_modal .menu_item ul a {
	font-weight: 400;
	font-size: 16px;
	color: #222325;
	transition: 0.3s;
	display: block;
	width: 100%;
}

.show_all_item a {
	font-weight: 600 !important;
}

.burger_menu_m .menu_item ul a:hover,
.all_cat_modal .menu_item ul a:hover {
	color: #6a7179;
}

.burger_menu_m .menu_item ul li,
.all_cat_modal .menu_item ul li {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #ededed;
}

.burger_menu_m .menu_item ul li:last-child,
.all_cat_modal .menu_item ul li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: unset;
}

.burger_menu_m .menu_item ul,
.all_cat_modal .menu_item ul {
	transition: 0.3s;
	/* max-height: 0; */
	/* opacity: 0; */
	/* overflow: hidden; */
	width: 100%;
	max-width: 100% !important;
}

.menu_item_sub_wrapper:has(.menu_item_subsub_wrapper.showSub),
.menu_item_sub_wrapper:has(.menu_item_subsub_list) {
	overflow: hidden;
}

.burger_menu .menu_item_sub_sub {
	margin-top: 20px;
}

.all_cat_modal .menu_item_sub {
	padding-top: 20px;
}

.burger_menu_m .menu_item ul.menu_item_sub_sub {
	max-height: 400px;
	/* margin-bottom: 15px; */
	margin-top: 20px;
	opacity: 1;
	padding-left: 0;
}

.all_cat_modal .menu_item ul.menu_item_sub_sub {
	padding-top: 20px;
}

.burger_menu_m .menu_item ul.menu_item_sub_sub a {
	line-height: 130%;
	display: block;
}

.burger_menu_m .menu_item ul.showSub {
	max-height: 1000px;
	opacity: 1;
	padding-top: 20px;
}

.desk_menu .menu_icon {
	display: none;
}

.menu_item_sub li:last-child {
	padding-bottom: 30px !important;
}

.desk_menu_wrapper .menu_item_sub li:last-child {
	padding-bottom: 0 !important;
}

.desk_menu {
	padding: 15px 0;
	border-bottom: 1px solid #e2e2e2;
	background: white;
}

.desk_menu_wrapper .menu {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

.desk_menu_wrapper .menu a {
	font-weight: 500;
	font-size: 14px;
	color: #222325;
	transition: 0.3s;
}

.desk_menu_wrapper .menu a:hover {
	color: #6a7179;
}

.burger_menu .menu_item_a {
	display: none;
}

.menu_main_a {
	gap: 7px;
	color: #8a98a9 !important;
}

footer .menu_item_a {
	display: none;
}

footer .menu_main {
	font-weight: 400;
	font-size: 14px;
	line-height: 120%;
	color: #222325;
}

footer .menu {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer_pay_mob {
	display: none;
}

.header_top_mob {
	display: none;
}

.mob_empty {
	display: none;
}

.all_cat {
	display: none;
}

.all_cat_modal {
	display: none;
}

.product-layout .product-thumb {
	display: flex;
	flex-direction: column;
	height: 100%;
}


.best_sell_block .product-layout:nth-child(n+6) {
	display: none;
}

.best_sell_block .nav-tabs a {
	padding: 10px;
	white-space: nowrap;
}

.best_sell_block .slick-prev {
	display: none !important;
}

.best_sell_block .slick-next {
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	right: 0;
	z-index: 10;
	font-size: 0;
	width: 20px;
	height: 20px;
	color: transparent;
	background-color: white;
	background-image: url(/image/catalog/cat_slider_btn.svg);
	background-position: center;
	background-repeat: no-repeat;
}

.best_sell_block .nav-tabs {
	position: relative;
}

.best_sell_block .nav-tabs:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 6;
	width: 54px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 70%);
}

.reviews .slick-slide img {
	height: 460px;
}

img.mfp-img {
	padding: 0;
	border-radius: 10px;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
	right: -32px;
	top: -36px;
}

footer .sidebar_icon,
.desk_menu_wrapper .sidebar_icon {
	display: none;
}

.sidebar_icon svg {
	display: block !important;
}

.sidebar_icon {
	width: 33px;
	height: 33px;
}


button.mfp-arrow {
	background-image: url(/image/gal-arrow.svg);
	background-repeat: no-repeat;
	background-position: center;
}

button.mfp-arrow:before,
button.mfp-arrow:after {
	opacity: 0;
}

button.mfp-arrow-left {
	scale: -1;
}

.reviews_item.slick-slide .review_popup_txt {
	display: none;
}

.mfp-title {
	position: absolute;
	bottom: -36px;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	text-align: center;
	padding: 0;
	height: 100px;
	display: none;
	justify-content: center;
	align-items: center;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.mfp-title:has(.mfp-title-descr) {
	display: flex;
}

.mfp-title-descr {
	font-size: 18px;
	line-height: 130%;
	padding: 0 15px;
}

.pdoduct_block_wrapper .product-layout a img {
	scale: 1.1;
	aspect-ratio: 1/1;
	object-fit: cover;
}

.viewed_products .image a img {
	aspect-ratio: 1/1;
	object-fit: cover;
}

.desk_menu_wrapper .menu_item .menu_img,
footer .menu_item .menu_img {
	display: none;
}

.menu_img {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: white;
}

.breadcrumb {
	padding: 10px 0;
	margin-bottom: 10px;
}

.breadcrumb>li:after {
	content: '';
	display: block;
	position: absolute;
	top: 8px;
	right: -1px;
	width: 5px;
	height: 5px;
	border-right: 1px solid #54585c;
	border-bottom: 1px solid #54585c;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

ul.breadcrumb li:first-child {
	padding-left: 0px;
}

.breadcrumb>li {
	padding: 0 10px;
	position: relative;
	white-space: nowrap;
}

.breadcrumb>li+li:after {
	content: '';
	padding: 0;
}

.breadcrumb li:last-child:after {
	display: none;
}

.breadcrumb li * {
	font-weight: 500;
	font-size: 13px;
	line-height: 150%;
	letter-spacing: 0.01em;
	color: #222325;
}

.breadcrumb li a span {
	color: #5a697e;
}

.category_descr {
	font-weight: 600;
	font-size: 25px;
	line-height: 100%;
	color: #222325;
	margin-bottom: 20px;
}

.sort_wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	gap: 15px;
}

.ocf-selected-card {
	display: flex;
	align-items: center;
	margin-bottom: 0 !important;
	gap: 6px;
	padding: 0 !important;
	flex-wrap: wrap;
}

/* #input-sort {
	height: 46px;
	border: 1px solid #d5d4d1;
	border-radius: 6px;
	padding: 0 20px 0 22px;
	width: auto !important;
	flex: unset !important;
} */

#input-sort:focus {
	box-shadow: unset !important;
}


.custom-select {
	position: relative;
	width: 250px;
	cursor: pointer;
	user-select: none;
}

.custom-select-trigger {
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 6px;
	padding: 11px 20px 11px 22px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	white-space: nowrap;
}

.custom-select-value {
	font-weight: 600;
	font-size: 14px;
	line-height: 130%;
	color: #222325;
}

.custom-arrow {
	border: solid #333;
	border-width: 0 2px 2px 0;
	padding: 4px;
	transform: rotate(45deg);
	margin-left: 10px;
	position: relative;
	top: -2px;
}

.custom-options {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #d5d4d1;
	border-radius: 6px;
	margin-top: 4px;
	display: none;
	z-index: 20;
}

.custom-select.open .custom-options {
	display: block;
}

.custom-option {
	padding: 11px 20px 11px 22px;
	font-weight: 600;
	font-size: 14px;
	line-height: 130%;
	color: #222325;
}

.custom-option:hover {
	background: #f0f0f0;
}

.custom-option.selected {
	background: #eaeaea;
}

/* #input-sort::picker(select) {
	border-radius: 6px;
	border: 1px solid #d5d4d1;
} */

.ocf-header {
	display: none !important;
}

#product-category .ocf-theme-light .ocf-selected-card {
	padding: 0;
	box-shadow: unset;
	border-radius: 0;
	display: flex;
	align-items: center;
	gap: 7px;
	position: absolute;
	top: 4px;
	left: 15px;
}

.ocf_products {
	margin-right: 23px;
}

body .ocf-between,
.ocf-selected-filter-name,
.ocf-selected-header {
	display: none !important;
}

#product-category .ocf-theme-light .ocf-selected-filter {
	padding: 0;
	background: transparent;
	border-radius: 0;
	margin-bottom: 0;
	flex-wrap: nowrap;
	gap: 7px;
}

.img_responsive_n {
	filter: grayscale(0.6);
}

.product_empty {
	position: absolute;
	bottom: 15px;
	left: 0;
	background: gray;
	/* border: 1px solid #000; */
	color: #fff;
	isolation: isolate;
	font-weight: 500;
}

/* .product_empty:before {
	content: '';
	position: absolute;
	display: block;
	width: 4px;
	height: 7px;
	background: #000;
	bottom: -7px;
	left: -1.3px;
	z-index: -1;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 45% 45%);
} */

.filter_choosen {
	display: none;
}

.filter_choosen:has(.ocf-selected-discard) {
	display: block;

}

/* .sort_wrapper:has(.ocf-selected-discard) .all_products_cat {
	display: none;
} */

.all_products_cat {
	display: none;
	opacity: 0;
	transition: 0.3s;
}

.sort_wrapper:not(:has(.ocf-selected-discard)) .all_products_cat {
	display: block;
	opacity: 1;
	transition-delay: 0.2s;
}

.filter_choosen .ocf-selected-filter {
	margin-bottom: 0 !important;
	padding: 0 !important;
	gap: 6px;
}

.filter_choosen .ocf-selected-discard {
	background-color: #f4f4f4 !important;
	border-radius: 33px !important;
	padding: 0 15px;
	height: 38px;
	padding-right: 22px;
	position: relative;
	border: 1px solid transparent;
}

.filter_choosen .ocf-selected-discard span {
	font-weight: 500;
	font-size: 14px;
	line-height: 129%;
	text-align: center;
	color: #252322;
	white-space: nowrap;
	overflow: unset !important;
	text-overflow: unset !important;
}

.ocf-selected-discard svg {
	position: absolute;
	right: 10px;
}

.ocf-products-count {
	font-weight: 500;
	font-size: 14px;
	line-height: 129%;
	text-align: center;
	color: #252322;
	white-space: nowrap;
}

.ocf-body {
	background: #f4f4f4;
	border-radius: 10px;
	padding: 20px;
}

.category_descr_check {
	margin: 25px 0 35px;
}

#product-search .ocf-body {
	margin-top: 0;
}


.ocf-value-input::before {
	background-color: transparent !important;
	border: 1px solid #d0d0d0 !important;
	border-radius: 5px !important;
}

.ocf-selected-discard:hover {
	border-color: #000 !important;
	border: 1px solid #000;
}

.ocf-selected .ocf-value-input-checkbox::after {
	/* filter: invert(1); */
	background-color: #d7e4f5 !important;
	border: 1px solid #acc6e8 !important;
	background-image: url('/image/filter-check.svg') !important;
	border-radius: 5px !important;
}

.ocf-value-name {
	font-weight: 500;
	font-size: 13px !important;
	color: #252322;
	font-variant-numeric: lining-nums proportional-nums !important;
}

.ocf-filter-name {
	font-size: 16px !important;
	font-weight: 500 !important;
}

.ocf-theme-light .ocf-filter-header {
	font-weight: 500;
	font-size: 16px;
	color: #252322;
	text-transform: unset !important;
}

.category_products {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
	row-gap: 35px;
}

.price:has(.price-old) {
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
	padding-left: 15px;
}

.price-old {
	font-size: 15px;
	text-decoration: line-through;
}

.ocf-noUi-pips.ocf-noUi-pips-horizontal {
	display: none;
}

.ocf-scroll-y {
	background: transparent !important;
}

.ocf-btn-link {
	color: #000 !important;
}

.price-new {
	color: red;
}

.category_products .image {
	border-radius: 6px;
	overflow: hidden;
	position: relative;
}

.category_products .image .img-responsive {
	aspect-ratio: 1/1;
	object-fit: cover;
	transition: 0.3s;
}


.product-thumb:hover .img-responsive {
	scale: 1.1;
}

.product_name_cat {
	margin-bottom: 17px;
}

.pagin_wrapper>div {
	width: 100%;
	max-width: 100%;
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
}

.pagin_wrapper {
	width: 100%;
	margin: 40px 0;
}

#button-load-more {
	border: 1px solid #d5d4d1;
	border-radius: 5px;
	padding: 0 25px;
	height: 46px;
	background: transparent;
	font-weight: 600;
	font-size: 14px;
	line-height: 130%;
	color: #222325;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: 0.4s;
	margin-bottom: 40px;
}

#button-load-more img {
	transition: 0.4s;
}

#button-load-more:hover img {
	rotate: 180deg;
}

#button-load-more:hover {
	background: #f4f4f4;
}

.pagination {
	gap: 8px;
}

/* .pagination li {
	border: 1px solid #d5d4d1;
	border-radius: 3px;
	width: 36px;
	height: 36px;
	display: flex;
	justify-content: center;
	align-items: center;
} */

.pagination li a {
	font-weight: 500;
	font-size: 14px;
	color: #222325;
	border: 1px solid #d5d4d1;
	border-radius: 3px;
	width: 36px;
	height: 36px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.3s;
}

.pagination li a:hover {
	background: #f4f4f4;
}

#product-category h2 {
	margin-bottom: 25px;
}

.pagination li span {
	font-weight: 500;
	font-size: 14px;
	color: #fff;
}

.pagination li.active {
	background: #b0bfd3;
	border: 1px solid #b0bfd3;
	border-radius: 3px;
	width: 36px;
	height: 36px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.pagin_prev {
	margin-right: 30px;
}

.pagin_next {
	margin-left: 30px;
}

.pagin_prev_noactive {
	pointer-events: none;
	opacity: 0.6;
}

.all_products_cat {
	font-weight: 500;
	font-size: 14px;
	line-height: 129%;
	color: #252322;
}

.row_cat {
	position: relative;
}

.row_cat:has(.ocf-selected-card.ocf-desktop) .all_products_cat {
	display: none;
}

.product-thumb {
	display: flex;
	flex-direction: column;
}

#cart-total {
	position: absolute;
	right: -5px;
	top: -5px;
	width: 17px;
	height: 17px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #9eacbd;
	border-radius: 50%;
	color: white;
	font-size: 11px;
	font-variant-numeric: lining-nums proportional-nums !important;
}

#cart>button {
	position: relative;
}

a.not-empty-wishlist {
	position: relative;
}

a.not-empty-wishlist:before {
	content: attr(data-num-wishlist);
	font-size: 11px;
	color: white;
	position: absolute;
	top: -5px;
	right: -5px;
	background: #9eacbd;
	width: 17px;
	height: 17px;
	display: flex;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
	font-variant-numeric: lining-nums proportional-nums !important;
}

#shoping_cart_content {
	display: flex;
	flex-direction: column;
	height: 94%;
}

.cart_modal.show_cart {
	opacity: 1;
	visibility: visible;
	translate: -50% -50%;
}

.cart_items {
	height: 100%;
	max-height: 37vh;
	overflow: auto;
	padding-right: 10px;
	-webkit-overflow-scrolling: touch;
	position: relative;
	isolation: isolate;
}

.cart_items_wrapper {
	position: relative;
}

.cart_items_wrapper:after {
	content: '';
	position: absolute;
	left: 0;
	right: 3px;
	bottom: -2px;
	height: 22%;
	z-index: 104;
	pointer-events: none;
	background: linear-gradient(0deg, rgba(244, 244, 244, 1) 18%, rgba(255, 255, 255, 0) 81%);
}

@media(min-width: 1700px) {
	.cart_items {
		height: 100%;
		max-height: 56vh;
	}

	.cart_items_wrapper:after {
		height: 24%;
	}
}

.cart_items::-webkit-scrollbar-thumb {
	background-color: lightgray;
	outline: 1px solid #efefef;
	border-radius: 20px;
}

.cart_empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-bottom: 50px;
	font-size: 18px;
}

.cart_modal:has(.cart_empty) .cart_prod_wrapper_bottom {
	display: none;
}


.cart_items::-webkit-scrollbar {
	width: 5px;
	height: 5px;
	border-radius: 20px;
}

.cart_modal {
	position: fixed;
	top: 15px;
	bottom: 15px;
	right: calc((100vw - 1440px) / 2 + 15px);
	padding: 17px 15px;
	border-radius: 10px;
	background: #f4f4f4;
	z-index: 6000;
	transition: 0.3s;
	opacity: 0;
	visibility: hidden;
	width: 500px;
	translate: 70px 0;
	/* height: 80vh; */
}

.header_body.sticky .cart_modal {
	top: 15px;
}

.cart_modal.show_cart {
	translate: 0 0;
	opacity: 1;
	visibility: visible;
}

.cart_modal_title {
	font-weight: 600;
	font-size: 16px;
	color: #252322;
	display: flex;
	align-items: center;
	gap: 12px;
}

.cart_modal_overlay {
	z-index: 1999;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	transition: 0.3s;
	opacity: 0;
	visibility: hidden;
}

.show_cart.cart_modal_overlay {
	opacity: 1;
	visibility: visible;
}

.cart_item {
	display: flex;
	/* align-items: center; */
	gap: 15px;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #e5e6e8;
}

.smartsearch ul.items {
	overflow: auto;
}

.img_cart_prod {
	width: 60px;
	height: 60px !important;
	min-width: 60px;
	height: 100%;
	object-fit: cover;
	border-radius: 3px;
	aspect-ratio: 1 / 1;
}

.cart_img_wrapper {
	height: 100%;
	display: block;
}

.cart_item_r {
	width: 100%;
}

.cart_item_r_t {
	margin-bottom: 10px;

}

.cart_item_r_t,
.cart_item_r_b {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

.cart_item_r_t a {
	font-weight: 500;
	font-size: 14px;
	color: #000;
	display: block;
	max-width: 280px;
}

.shoping-cart-products-item-quantity input {
	text-align: center;
}

.shoping-cart-products-item-quantity span {
	background: #e5e6e8;
	border-radius: 15px;
	padding: 0 12px;
	height: 24px;
	display: flex;
	align-items: center;
}

.shoping-cart-products-item-quantity i {
	cursor: pointer;
	/* width: 10px;
	height: 10px; */
	width: 25px;
	height: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.cart_prod_price {
	font-weight: 600;
	font-size: 16px;
	color: #000;
	display: flex;
	flex-direction: column;
}

.cart-price-new {
	color: red;
}

.old_prod_price {
	color: #FF0004;
	font-size: 36px;
	font-weight: 700;
	margin-top: 5px;
	line-height: 80%;
}

.xbundle_products .regular-price {
	color: #FF0004 !important;
}

.new_prod_price {
	color: #9C9C9C;
	font-size: 18px;
	text-decoration: line-through;
}

.cart-price-old {
	font-size: 16px;
	opacity: 0.7;
	text-decoration: line-through;
}

.cart_prod_wrapper_bottom_side_t {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
}


.cart_prod_wrapper_bottom_side_t div {
	font-weight: 600;
	font-size: 16px;
	color: #000;
}

.cart_prod_wrapper_bottom_side_t div.cart_total_txt {
	font-weight: 400;
}

.cart_prod_wrapper_bottom_side_t div.cart_total_num {
	font-size: 20px;
}

.cart_prod_wrapper_bottom {
	margin-top: 15px;
	/* height: 100%; */
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.cart_items_wrapper {
	flex-grow: 1;
}

.cart_prod_wrapper_bottom_side_b {
	display: flex;
	flex-direction: column;
	justify-content: end;
}

.checkout_cart_btn {
	background: #d7e4f5;
	border-radius: 5px;
	padding: 0 20px;
	height: 45px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.3s;
	margin: 17px 0;
	font-weight: 600;
	font-size: 16px;
	line-height: 112%;
	text-align: center;
	color: #252322;
}

.checkout_cart_btn:hover {
	background: #b5d0f0;
	color: #252322;
}

.keep_shopping {
	margin-bottom: 5px;
	font-weight: 500;
	font-size: 16px;
	line-height: 112%;
	text-align: center;
	color: #252322;
	cursor: pointer;
	transition: 0.3s;
}

.keep_shopping:hover {
	color: #9eacbd;
}

.prod_wrapper_cont {
	display: flex;
	gap: 60px;
}

.prod_side_photos {
	flex-basis: 57%;
}

.prod_side_info {
	flex-basis: 43%;
	position: relative;
}

.thumbnails {
	/* overflow: auto; */
	clear: both;
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	aspect-ratio: 1.23 / 1;
	width: 100%;
	min-height: 0;
}


.image-additional a {
	margin-bottom: 20px;
	padding: 5px;
	display: block;
	border: 1px solid #ddd;
}

.image-additional {
	max-width: 78px;
}

.thumbnails .image-additional {
	float: left;
	margin-left: 20px;
}

.additional_imgs_prod img {
	width: 100px;
	min-width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 5px;
}

.additional_imgs_prod .thumbnail {
	margin-bottom: 0;
	overflow: hidden;
	cursor: pointer;
	transition: 0.3s;
	min-height: 100px;
}

#product-product .additional_imgs_prod .thumbnail:hover,
#product-product .additional_imgs_prod .thumbnail.active {
	border: 1px solid var(--main-color);
}

.additional_imgs_prod {
	display: flex;
	align-items: center;
	gap: 15px;
	flex-direction: column;
	margin-right: 20px;
	overflow-x: hidden;
	padding-right: 3px;
	min-width: 108px;
	width: 108px;
}

.additional_imgs_prod::-webkit-scrollbar-thumb {
	background-color: #6a809d;
	outline: 1px solid #e1e1e1;
	border-radius: 20px;
}

.additional_imgs_prod::-webkit-scrollbar {
	width: 4px;
	height: 4px;
	border-radius: 10px;
}

.main_image_prod img {
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
	border-radius: 10px;
}

.main_image_prod {
	width: 100%;
	position: relative;
	max-width: 595px;
	overflow: hidden;
	border-radius: 10px;
}

.main_image_prod .slick-arrow {
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	border-radius: 50%;
	background-color: white;
	width: 50px;
	height: 50px;
	background-image: url(/image/catalog/icons/arrow-sl.svg);
	background-size: 50%;
	background-repeat: no-repeat;
	background-position: center;
	font-size: 0;
	z-index: 10;
	transition: 0.3s;
}

.main_image_prod .slick-arrow:hover {
	scale: 1.1;
}

.main_image_prod .slick-next {
	right: 22px;
}

.main_image_prod .slick-prev {
	left: 22px;
	rotate: 180deg;
}

.prod_side_info_top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 15px;
}

.stock_info {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
	font-size: 14px;
	line-height: 100%;
	color: #84af80;
}

.model_info_title {
	font-weight: 300;
	font-size: 14px;
	line-height: 100%;
	color: #575859;
}

.model_info_num {
	font-weight: 500;
	color: #222325;
	font-size: 14px;
	line-height: 100%;
}

.product_page_title {
	font-weight: 600;
	font-size: 32px;
	line-height: 100%;
	color: #222325;
	margin-bottom: 15px;
	margin-top: 0;
}

.rating_wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
}

.rating_wrapper .rating {
	display: flex;
}

.rating_wrapper .star {
	font-size: 23px;
	display: inline-block;
	width: 14px;
	color: #ffc146;
}

.rev_count_prod {
	font-weight: 500;
	font-size: 16px;
	line-height: 100%;
	color: #222325;
	transition: 0.3s;
}

.notification.warning {
	background: lightgray !important;
}

.rev_count_prod:hover {
	color: #54585c;
}

.price_buy_wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 23px;
	margin: 23px 0;
}

.prod_page_btns {
	display: flex;
	align-items: center;
	gap: 5px;
}

.main_price_prod {
	font-weight: 700;
	font-size: 36px;
	line-height: 92%;
	text-align: left;
	color: #222325;
	white-space: nowrap;
	width: 160px;
}

.input-group.number-spinner.spinner-in-mob input {
	width: 40px;
	height: 40px;
	border: 1px solid #d5d4d1;
	border-radius: 5px !important;
	text-align: center;
	flex: unset;
	padding: 0;
}

.input-group.number-spinner.spinner-in-mob {
	width: auto;
	flex-wrap: nowrap;
}

.input-group.number-spinner.spinner-in-mob button:focus {
	box-shadow: unset;
}


.number-spinner .input-group-btn {
	display: flex;
	align-items: center;
	justify-content: center;
}


input,
button {
	font-variant-numeric: lining-nums proportional-nums !important;
}

#button-cart {
	background: #d7e4f5;
	border-radius: 5px;
	padding: 0 27px;
	height: 50px;
	border: unset;
	font-weight: 600;
	font-size: 17px;
	line-height: 130%;
	color: #333;
	transition: 0.3s;
}

button:focus {
	box-shadow: unset !important;
}

#button-cart:hover {
	background: #6a809d;
	color: #fff;
}

.wish_btn_prod {
	position: unset;
	border-radius: 5px;
	border: 1px solid #d5d4d1;
	width: 50px;
	height: 50px;
}

.prod_side_info_inner {
	transition: top 0.2s ease, bottom 0.2s ease;
	position: sticky;
	top: 180px;
}

.product_page_bottom {
	margin-top: 60px;
}

.product_descr_title {
	font-weight: 500;
	font-size: 20px;
	color: #222325;
	display: block;
	margin-bottom: 15px;
}

.flex-row-attribute {
	display: flex;
	align-items: center;
	padding: 15px 0;
	border-bottom: 1px solid #d0d0d0;
}

.name-attr {
	font-weight: 500;
	font-size: 16px;
	color: #222325;
	flex-basis: 35%;
	min-width: 35%;
}

.value-attr {
	font-weight: 400;
	font-size: 16px;
	color: #626366;
	text-align: left;
}

.product_p_description {
	margin-top: 40px;
}

.product_p_description_descr,
.product_p_description_descr p {
	font-weight: 300;
	font-size: 16px;
	line-height: 150%;
	letter-spacing: 0.01em;
	color: #222325;
}

.product_dop_info_t p {
	font-weight: 300;
	font-size: 16px;
	line-height: 150%;
	letter-spacing: 0.01em;
	color: #222325;
	margin-bottom: 15px;
}

.product_dop_info_t a {
	font-weight: 500;
	text-decoration: underline;
	transition: 0.3s;
}

.product_dop_info_t a:hover {
	color: #6a809d;
}

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

.faq_cat_item {
	margin-top: 40px;
}

.faq_ques.product_descr_title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}

.faq_answ.product_dop_info_t {
	max-height: 0;
	transition: 0.3s;
	overflow: hidden;
}

.faq_ques.product_descr_title.active svg {
	rotate: 180deg;
}

.faq_ques.product_descr_title svg {
	transition: 0.3s;
}


.reviews_block_title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	margin-bottom: 20px;
}

.reviews_block_title_t {
	font-weight: 500;
	font-size: 20px;
	color: #222325;
}

.review_button_l {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
	background: transparent;
	border: 1px solid #222325;
	border-radius: 5px;
	padding: 0 20px;
	height: 42px;
}

.review_button_l:hover {
	background: #d7e4f5;
}

.review_head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 15px;
}

.review_autor {
	display: flex;
	align-items: center;
	gap: 12px;
}

.review_autor_icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: white;
	font-weight: 500;
	font-size: 23px;
	text-align: center;
	color: #222325;
}

.review_autor_rating .fa {
	width: 14px;
	height: 14px;
	color: #FFD200;
	font-size: 15px;
}

.reviews_block {
	background: #f4f4f4;
	border-radius: 10px;
	padding: 14px 16px;
	margin-bottom: 15px;
}

.review_autor_name_t {
	font-weight: 600;
	font-size: 16px;
	line-height: 100%;
	color: #222325;
	margin-bottom: 5px;
	display: block;
}

.review_date {
	font-weight: 300;
	font-size: 13px;
	line-height: 100%;
	text-align: center;
	color: #54585c;
}

.review_body {
	font-weight: 300;
	font-size: 14px;
	line-height: 150%;
	letter-spacing: 0.01em;
	color: #222325;
}

.review_popup {
	position: fixed;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	z-index: 4000;
	transition: 0.3s;
	background: #fff;
	border-radius: 10px;
	padding: 30px;
	width: 580px;
	opacity: 0;
	visibility: hidden;
	scale: 0.5;
}

.reviews_section {
	margin-top: 40px;
}

.active.review_popup {
	opacity: 1;
	visibility: visible;
	scale: 1;
}

.review_popup_title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 22px;
}

.review_popup_title h2 {
	font-weight: 700;
	font-size: 24px;
	line-height: 120%;
	color: #222325;
}

.review_popup_close {
	cursor: pointer;
}

.review_popup input {
	border: 1px solid #d0d0d0;
	border-radius: 10px;
	width: 100%;
	height: 50px;
	padding: 0 15px;
	margin-bottom: 15px;
}

.review_popup textarea {
	border: 1px solid #d0d0d0;
	border-radius: 10px;
	width: 100%;
	height: 126px;
	resize: none;
	padding-left: 15px;
	padding-top: 15px;
}

.review_popup_over {
	position: fixed;
	inset: 0;
	transition: 0.3s;
	z-index: 3999;
	background: #000;
	opacity: 0;
	visibility: hidden;
}

.review_popup_over.active {
	opacity: 0.6;
	visibility: visible;
}

.btn_rev_wrapper {
	margin-top: 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.btn_rev_wrapper button {
	border: unset;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #d7e4f5;
	border-radius: 5px;
	padding: 0 23px;
	height: 46px;
	transition: 0.3s;
	font-weight: 600;
	font-size: 14px;
	line-height: 130%;
	color: #333;
	transition: 0.3s;
}

.btn_rev_wrapper button:hover {
	background: #6a809d;
	color: #fff;
}

.wrap.stars_wrapper {
	display: flex;
}

.rating-group {
	display: flex;
	align-items: center;
	gap: 10px;
}

.stars-rating .wrap[data-rate="1"] span:nth-child(-n+1) path,
.stars-rating .wrap[data-rate="2"] span:nth-child(-n+2) path,
.stars-rating .wrap[data-rate="3"] span:nth-child(-n+3) path,
.stars-rating .wrap[data-rate="4"] span:nth-child(-n+4) path,
.stars-rating .wrap[data-rate="5"] span:nth-child(-n+5) path {
	stroke: #F4C962;
	fill: #F4C962;
}

.stars-rating .wrap span path:hover {
	stroke: #F4C962;
	fill: #F4C962;
}

.variant_title {
	font-weight: 500;
	font-size: 16px;
	line-height: 100%;
	color: #222325;
	margin-bottom: 12px;
}

.show_more_var {
	margin-top: 10px;
	display: block;
	font-weight: 500;
	font-size: 15px;
	line-height: 110%;
	text-decoration: underline;
	text-decoration-style: dotted;
	color: #5a697e;
}

.show_more_var:hover {
	color: #000;
}

.variant-item img {
	width: 100%;
	aspect-ratio: 1/1;
	/* height: 55px; */
	object-fit: cover;
	display: block;
	border-radius: 2px;
}

.variant-item-stock {
	opacity: 0.5;
}

.variant-sizes {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: flex-end;
}

.variant-size-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 36px;
	padding: 0 10px;
	border: 1px solid #d0d0d0;
	border-radius: 6px;
	background: #fff;
	color: #222;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: border-color 0.2s, background-color 0.2s, color 0.2s;
	cursor: pointer;
}

.variant-size-btn:hover {
	border-color: #222;
	background-color: #f5f5f5;
	color: #000;
	text-decoration: none;
}

.variant-size-active {
	background: #d7e4f5;
	border-color: #6a809d;
	color: #333;
	pointer-events: none;
}

.variant-size-stock {
	opacity: 0.4;
	text-decoration: line-through;
}

.variant-items {
	display: flex;
	align-items: center;
	gap: 5px;
	flex-wrap: wrap;
	display: grid;
	grid-template-columns: repeat(9, 1fr);
}

.swiper-viewport-bundle {
	background: #f4f4f4;
	border-radius: 10px;
	padding: 14px 16px;
}

.bundle_title {
	font-weight: 600;
	font-size: 16px;
	color: #222325;
	margin-bottom: 15px;
}

.xbundle_products {
	display: flex;
	/* align-items: center; */
	gap: 15px;
	margin: 0 !important;
	border: unset !important;
	width: auto !important;
	padding: 0 !important;
	background: transparent !important;
	flex: 1;
}

.xbundle_container {
	box-shadow: unset !important;
	min-height: unset !important;
	border: unset !important;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
}

.xbundle_product_img img {
	width: 78px;
	height: 78px;
	min-width: 78px;
	display: block;
	border-radius: 3px;
	object-fit: cover;
}

.xbundle_container .xbundle_plus {
	padding: 0 !important;
	align-self: anchor-center;
}

.xbundle_product_name {
	font-weight: 400;
	font-size: 14px;
	color: #222325;
	text-align: left;
	display: block;
	margin-bottom: 8px;
	line-height: 130%;
	word-break: break-word;
}

a {
	transition: 0.3s;
}

.xbundle_product_name:hover {
	color: #6a7179;
}

.xbundle_product_price {
	font-weight: 700;
	font-size: 16px;
	color: #222325;
	display: block;
	text-align: left;
}

.addtocart_bundle {
	margin-top: 15px;
	width: 100%;
	background: #d7e4f5;
	border-radius: 6px;
	padding: 0 27px;
	height: 50px;
	font-weight: 600;
	font-size: 17px;
	line-height: 130%;
	color: #333;
	transition: 0.3s;
	border: unset;
}

.addtocart_bundle:hover {
	background: #6a809d;
}

.addtocart_bundle:active,
.addtocart_bundle:focus {
	background: #4a5e77;

}

.page_home_title {
	font-weight: 600;
	font-size: 29px;
	line-height: 100%;
	text-align: center;
	color: #222325;
	margin-top: 0;
	margin-bottom: 30px;
	text-align: center;
}

.addtocart_bundle .new-price {
	transition: 0.3s;
}

.addtocart_bundle:hover .new-price {
	color: #fff;
}

img.mfp-img {
	height: 90vh;
}

.mfp-bg,
.mfp-wrap {
	z-index: 5000;
}


.additional_imgs_prod img {
	border: 1px solid transparent;
	transition: 0.3s;
	display: block;
}

.additional_imgs_prod img:hover {
	border: 1px solid transparent;
	scale: 1.05;
}

.main_image_prod .thumbnail img {
	transition: opacity 0.2s ease-in-out;
}

.thumbnail.btn-images-change {
	border: unset !important;
	overflow: hidden;
	border-radius: 5px;
}

.stock_info span {
	color: #9c9c9c;
}

/* .prod_wrapper_cont:has(.no_product_stock) .prod_side_photos img {
	filter: grayscale(1);
} */

.product_name_empty {
	color: #97989c !important;
	font-weight: 500;
}


.price_off {
	/* display: none !important; */
	/* font-size: 17px !important;
	padding-left: 0 !important; */
	color: gray !important;
}

.prod_wrapper_cont:has(.no_product_stock) #button-cart {
	filter: grayscale(1);
	pointer-events: none;
	font-size: 14px;
	white-space: nowrap;
}

.prod_wrapper_cont:has(.no_product_stock) .swiper-viewport-bundle {
	display: none;
}

.hidden {
	display: none;
}

.related_prod {
	margin: 80px 0;
}

.related_prod_title {
	font-weight: 600;
	font-size: 27px;
	line-height: 100%;
	color: #222325;
	margin-bottom: 30px;
	margin-top: 0;
	text-align: left;
}

.viewed_products {
	margin-bottom: 80px;
}

.blog_wrapper {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	column-gap: 30px;
	row-gap: 25px;
}

.article_name {
	font-weight: 500;
	font-size: 16px;
	line-height: 120%;
	color: #222325;
	margin-top: 15px;
	display: block;
	transition: 0.3s;
}

.article_name:hover {
	color: #6a7179;
}

.article_date {
	margin-top: 10px;
	font-weight: 300;
	font-size: 14px;
	line-height: 120%;
	color: #54585c;
	flex: 1;
}

.image_article {
	overflow: hidden;
	border-radius: 12px;
}

.image_article img {
	transition: 0.3s;
	width: 100%;
	aspect-ratio: 1 / 0.67;
	object-fit: cover;
	object-position: top;
}

.blog_item:hover img {
	scale: 1.1;
}

.blog_item {
	display: flex;
	flex-direction: column;
}

.blog_content {
	margin-bottom: 80px;
}

.login_page {
	width: 100%;
	margin: 40px 0 90px;
	display: flex;
	justify-content: center;
}

.login_wrapper {
	background: #f4f4f4;
	border-radius: 10px;
	padding: 45px 40px 40px;
	width: 486px;
}

.login_title {
	font-weight: 700;
	font-size: 25px;
	line-height: 100%;
	color: #222325;
	margin-bottom: 30px;
	text-align: center;
}

.form_input_block {
	margin-bottom: 15px;
}

.login_form_wrapper .form-control {
	background: #fff;
	border: 1px solid rgba(34, 35, 37, 0.2);
	border-radius: 10px;
	height: 50px;
	width: 100%;
	margin-bottom: 3px;
}

.forgotten_pass {
	font-weight: 600;
	font-size: 14px;
	line-height: 157%;
	color: #78879c;
	margin: 30px 0;
	display: block;
	transition: 0.3s;
}

.forgotten_pass:hover {
	color: #000;
}

.login_from_btns {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 25px;
}

.login_from_btns input {
	background: #d7e4f5;
	border-radius: 5px;
	padding: 0 23px;
	height: 46px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.3s;
	font-weight: 600;
	font-size: 14px;
	line-height: 130%;
	color: #333;
	border: unset;
	width: 240px;
}

.login_from_btns input:hover {
	background: #6a809d;
	color: #fff;
}

.register_link {
	font-weight: 600;
	font-size: 14px;
	line-height: 100%;
	color: #78879c;
}

.register_page {
	display: flex;
	justify-content: center;
}

.register_page_wrapper {
	width: 100%;
	max-width: 780px;
}

.reg_items_wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 15px;
}

.button_reg {
	width: 100%;
	display: flex;
	justify-content: center;
}

.reg_submit {
	background: #d7e4f5;
	border-radius: 5px;
	padding: 0 23px;
	height: 46px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.3s;
	font-weight: 600;
	font-size: 14px;
	line-height: 130%;
	color: #333;
	border: unset;
	width: 240px;
	transition: 0.3s;
	margin-top: 30px;
}

.reg_submit:hover {
	background: #6a809d;
	color: #fff;
}

.have_acc {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 25px;
}

.login_link {
	text-align: center;
	font-weight: 400;
	font-size: 14px;
	line-height: 100%;
	color: #222325;
}

.login_link a {
	font-weight: 600;
	color: #78879c;
}

.success_login_wrapper {
	width: 100%;
	max-width: 780px;
	align-items: center;
	display: flex;
	flex-direction: column;
}

.success_title {
	margin-top: 20px;
}

.success_submit {
	margin-top: 0;
}

.success_buttons {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 25px;
}

.register_link:hover {
	color: #000;
}

.forgot_input {
	max-width: 405px;
	background: #fff;
	border: 1px solid rgba(34, 35, 37, 0.2);
	border-radius: 10px;
	height: 50px;
	margin-bottom: 15px;
	width: 100%;
	margin: 0 auto;
}

.success_buttons_n {
	gap: 15px;
}

.forgot_input_new {
	margin-bottom: 15px;
}

.form_new_pass {
	width: 100%;
}

.forgotten_descr {
	margin: 15px 0 30px;
	font-weight: 400;
	font-size: 14px;
	line-height: 157%;
	text-align: center;
	color: #111;
}

.agree_wrapper {
	display: none;
}

#information-information:has(.contactspage_wrapper) h1 {
	font-weight: 600;
	margin-bottom: 30px;
	font-size: 25px;
	line-height: 100%;
	color: #222325;
}

.contactspage_wrapper {
	display: flex;
	align-items: center;
	gap: 60px;
	margin-bottom: 100px;
	transition: 0.4s;
}

.contactspage_wrapper.hide_contact {
	/* overflow: hidden; */
	opacity: 0;
	visibility: hidden;
	margin-bottom: 0;
}

.contactspage_wrapper_f {
	flex-basis: 65%;
	background: #f4f4f4;
	border-radius: 10px;
	padding: 35px;
}

.contactspage_wrapper_s {
	flex-basis: 35%;
}

.contactspage_wrapper_f_title {
	font-weight: 600;
	font-size: 18px;
	color: #000;
	text-align: center;
	margin-bottom: 16px;
}

.form_inputs {
	display: flex;
	gap: 10px;
	margin-bottom: 10px;
}

.form_inputs input {
	flex: 1;
	background: #fff;
	border-radius: 5px;
	padding: 0 16px;
	height: 42px;
	font-weight: 500;
	font-size: 14px;
	line-height: 130%;
	color: #000;
}

.form_inputs input::placeholder {
	font-weight: 500;
	font-size: 14px;
	line-height: 130%;
	color: #cacaca;
}

.input-textarea {
	background: #fff;
	border-radius: 5px;
	padding: 12px 16px;
	width: 100%;
	width: 100%;
	height: 114px;
	resize: none;
	font-weight: 500;
	font-size: 14px;
	line-height: 130%;
	color: #000;
	font-family: "Raleway", sans-serif;
}

.input-textarea::placeholder {
	font-weight: 500;
	font-size: 14px;
	line-height: 130%;
	color: #cacaca;
}

.contactspage_wrapper_s {
	display: flex;
	flex-direction: column;
	gap: 15px;
	align-items: flex-start;
}

.contactspage_wrapper_s a {
	border: 1px solid #d5d4d1;
	border-radius: 10px;
	padding: 0 20px;
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 14px;
	font-weight: 400;
	font-size: 23px;
	line-height: 120%;
	color: #222325;
}

.contactspage_wrapper_s a img {
	width: 22px;
}

.black_btn {
	position: relative;
	left: 50%;
	translate: -50% 0;
	margin-top: 15px;
	background: #d7e4f5;
	border-radius: 6px;
	padding: 0 27px;
	height: 46px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	max-width: 253px;
	width: 100%;
	transition: 0.3s;
}

.black_btn:hover {
	background: #6a809d;
	color: white;
}

.error-1 {
	border: 1px solid red;
}

.ocf-noUi-connect:before {
	background-color: var(--main-color) !important;
}

.ocf-noUi-handle {
	background-color: #fff !important;
	opacity: 1 !important;
}

.account_page {
	display: flex;
	gap: 30px;
	margin-bottom: 60px;
}

.accountin_wrapper {
	background: #f4f4f4;
	border-radius: 10px;
	padding: 27px 35px 35px;
	flex-basis: 70%;
}

.account_list {
	flex-basis: 30%;
}

.login_title {
	font-weight: 600;
	font-size: 21px;
	line-height: 120%;
	color: #222325;
	margin-bottom: 25px;
	/* text-align: left; */
}

.logout_descr p {
	font-weight: 400;
	font-size: 14px;
	line-height: 120%;
	color: #222325;
	margin-bottom: 10px;
}

.login_title_newsletter {
	text-align: left;
}

.account_list a {
	font-weight: 500;
	font-size: 16px;
	line-height: 120%;
	color: #222325 !important;
	background: transparent;
	border-radius: 10px !important;
	padding: 0 25px;
	height: 59px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding-left: 25px;
	border: unset !important;
}

.account_list a.active {
	background: #eaf2fc;
}

.control_label_l {
	font-weight: 300;
	font-size: 13px;
	line-height: 120%;
	color: #222325;
	margin-bottom: 8px;
}

.wish_prod_item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	background: #fff;
	border-radius: 8px;
	padding: 12px 25px 12px 12px;
	margin-bottom: 10px;
}

.wish_prod_item_img img {
	border-radius: 3px;
	width: 75px;
	min-width: 75px;
	height: 75px;
	object-fit: cover;
}

.wish_prod_item_name a {
	font-weight: 500;
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	color: #222325;
	max-width: 245px;
	transition: 0.3s;
}

.wish_prod_item_name a:hover {
	color: #6a7179;
}

.wish_prod_item_art {
	font-weight: 500;
	font-size: 14px;
	color: #222325;
	opacity: 0.4;
}

.wish_prod_item_stock {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
	font-size: 13px;
	line-height: 100%;
	color: gray;
	white-space: nowrap;
	width: 118px;
}

.wish_prod_item_stock svg {
	min-width: 15px;
}

.wish_prod_item_stock span {
	color: #71a66c;
}

.wish_prod_item_price_regular {
	font-weight: 600;
	font-size: 14px;
	color: #222325;
}

.wish_prod_item_price .price {
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
}

.wish_prod_item_price .price-old {
	font-size: 12px;
	text-decoration: line-through;
	color: #222325;
}

.wish_prod_item_price .price-new {
	font-size: 14px;
	color: red;
	font-weight: 600;
}

.wish_prod_item_price {
	width: 65px;
}

.wish_prod_item_left {
	display: flex;
	align-items: center;
	gap: 20px;
}

.checkout_wrapper {
	display: flex;
	gap: 60px;
	margin-bottom: 60px;
}

.checkout_left {
	flex-basis: 65%;
}

.checkout_right {
	flex-basis: 35%;
}

.mail_err {
	border: 1px solid red !important;
}

.mail_err:focus {
	box-shadow: 0 0 0 .25rem rgba(255, 0, 0, .25) !important;
}

.ocf-scroll-y {
	overscroll-behavior: auto !important;
}

.checkout_contacts_title {
	font-weight: 600;
	font-size: 16px;
	line-height: 120%;
	color: #222325;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 15px;
}

.checkout_contacts_title span {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background: #f4f4f4;
	width: 37px;
	height: 37px;
	font-weight: 600;
	font-size: 16px;
	line-height: 100%;
	color: #222325;
}

.checkout_right_in {
	position: sticky;
	top: 100px;
}

.checkout_contacts fieldset {
	display: flex;
	flex-wrap: wrap;
	column-gap: 20px;
	row-gap: 15px;
}

.checkout_right_in legend {
	font-weight: 600;
	font-size: 21px;
	line-height: 120%;
	color: #222325;
}

.checkout_right_in {
	background: #f4f4f4;
	border-radius: 10px;
	padding: 20px 27px 27px;
}

.checkout_card_items {
	margin-top: 30px;
}

.checkout_card_item {
	display: flex;
	align-items: center;
	gap: 17px;
	margin-bottom: 20px;
}

.checkout_card_item_img img {
	width: 74px;
	min-width: 74px;
	height: 74px;
	padding: 0;
	margin: 0;
	border-radius: 3px;
	object-fit: cover;
}

.checkout_card_items_name {
	font-weight: 500;
	font-size: 16px;
	color: #222325;
	margin-bottom: 5px;
	line-height: 130%;
}

.check_total_wrapper li {
	background: transparent;
	border: unset !important;
	padding: 0 !important;
}

.check_total_wrapper {
	margin-top: 20px;
	gap: 15px;
}

.check_total_title {
	font-weight: 300;
	font-size: 14px;
	line-height: 120%;
	color: #222325;
}



.check_total_value {
	font-weight: 600;
	font-size: 16px;
	line-height: 120%;
	color: #222325;
}

.check_total_wrapper .check_total_value_s {
	color: #FF0004;
}

.check_total_value_t {
	font-size: 21px;
}

.checkout_card_item_r_count button {
	padding: 0;
	background: #e5e6e8;
	height: 24px;
	width: 35px;
	font-size: 11px;
}

.checkout_card_item_r_count button:active {
	background: #bdbdbd;
}

.js-cart-minus {
	border-top-left-radius: 15px;
	border-bottom-left-radius: 15px;
}

.checkout_card_item_r_count button .fa {
	position: relative;
	top: 1px;
}

.js-cart-plus {
	border-top-right-radius: 15px;
	border-bottom-right-radius: 15px;
}

.js-cart-qty {
	height: 24px;
	border: unset;
	background: #e5e6e8;
	text-align: center;
	font-size: 13px;
	width: 40px !important;
	min-width: 40px !important;
	padding: 0;
}

.checkout_card_item_r_count {
	flex-wrap: nowrap;
	width: 80px;
}

.checkout_card_item_r_b {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.checkout_card_item_r_b .price-old {
	color: #9C9C9C;
	display: inline-block;
	margin-right: 10px;
}

.checkout_card_item_r_b_price {
	font-weight: 600;
	font-size: 18px;
	color: #222325;
}

.buy_btn_empty {
	background: lightgray;
	/* color: #fff; */
	pointer-events: none;
	/* width: 100% !important; */
	/* font-size: 12px !important; */
}

.img_responsive_empty {
	position: relative;

}

.img_responsive_empty img {
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
}

.product_lat_emp {
	display: none;
}

.img_responsive_empty:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	top: 0;
	height: 400px;
	width: 400px;
	z-index: 1;
	background: rgba(255, 255, 255, 0.5);
}

.promo_title {
	margin-bottom: 8px;
	font-weight: 300;
	font-size: 13px;
	line-height: 120%;
	color: #222325;
}

.test-div input {
	border: 1px solid rgba(34, 35, 37, 0.2);
	border-radius: 5px;
	padding: 0px 20px;
	height: 44px;
	flex: 1;
}

.test-div {
	display: flex;
	align-items: center;
	gap: 8px;
}

.test-div button {
	border: 1px solid #222325;
	border-radius: 5px;
	padding: 0 23px;
	height: 44px;
	transition: 0.3s;
	font-weight: 600;
	font-size: 14px;
	line-height: 130%;
	color: #222325;
}

.promo_wrapper {
	margin-bottom: 30px;
}

.tottal_item_b {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 15px;
}

/* .confirm_ch_block {
	opacity: 0;
	visibility: hidden;
	height: 0;
} */

.tottal_item_b_title {
	font-weight: 300;
	font-size: 14px;
	line-height: 120%;
	color: #222325;
}

.tottal_item_b_value {
	font-weight: 600;
	font-size: 16px;
	line-height: 120%;
	color: #222325;
}

.tottal_item_b_value_promo {
	color: #ff0004;
}

.checkout_contacts_title_w {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 20px;
}

.checkout_contacts_title_w .checkout_contacts_title {
	margin-bottom: 0;
}

.tottal_item_b:last-child .tottal_item_b_value {
	font-size: 21px;
}

#button-confirm {
	background: #d7e4f5;
	border-radius: 5px;
	padding: 0 23px;
	height: 46px;
	font-weight: 600;
	font-size: 14px;
	line-height: 130%;
	color: #222325;
	width: 100%;
	border: unset;
}



#button-preorder .fa-bell {
	display: none;
}

#button-preorder {
	white-space: nowrap;
	font-size: 15px;
	height: 50px;
	background: #EBEBEB;
	border: unset;
	transition: 0.3s;
	color: #000;
}

#button-preorder:hover {
	background: #cbcbcb;
}

.number_spinner_pr_em {
	display: none;
}

#preorder-box .modal-dialog {
	top: 50%;
	translate: 0 -50%;
}

#preorder-box .modal-title {
	display: none;
}

#preorder-box .modal-header button {
	position: absolute;
	right: 10px;
	top: 10px;
	font-size: 40px;
	z-index: 10;
}

#preorder-box .modal-header {
	padding: 0 !important;
	border: unset !important;
}

#preorder-box .modal-body>.row {
	flex-direction: column;
	/* gap: 20px; */
}

#preorder-box .modal-body .row .col-md-4 {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: unset;
	flex-basis: 100%;
	width: 100%;
	margin-bottom: 20px;
}

#preorder-box .modal-body .row .col-md-8 {
	flex: unset;
	flex-basis: 100%;
	width: 100%;
}

#preorder-box .modal-body .row .col-md-8 .col-sm-9 {
	width: 100%;
}

#preorder-box .form-group {
	margin-top: 0;
}

#preorder-box .modal-body .row .col-md-4 h4 {
	text-align: left !important;
}

#preorder-box .modal-body .row .col-md-4 h4 a {
	color: #000 !important;
	font-size: 14px;
	display: block;
	line-height: 130%;
}

#preorder-box .modal-footer {
	padding: 0 !important;
	border: unset !important;
	justify-content: center !important;
	margin-bottom: 20px;
}

#preorder-box .modal-footer button {
	background: #d7e4f5;
	border-radius: 6px;
	padding: 0 18px;
	height: 42px;
	border: unset;
	font-weight: 600;
	font-size: 17px;
	line-height: 130%;
	color: #333;
	transition: 0.4s;
}








.hidden-anim {
	opacity: 0;
	visibility: hidden;
	transition: 0.8s cubic-bezier(.34, .88, .44, .95);
}

.leftAnim {
	translate: -50px 0;
	transition: 1s;
}

.rightAnim {
	translate: 50px 0;
}

.bottomAnim {
	translate: 0 50px;
}

.topAnim {
	translate: 0 -50px;
}

.scaleAnim {
	scale: 0.1;
}

.scaleAnim07 {
	scale: 0.7;
}

.delay_02 {
	transition-delay: 0.2s;
}

.delay_03 {
	transition-delay: 0.3s;
}

.delay_04 {
	transition-delay: 0.4s;
}

.delay_05 {
	transition-delay: 0.5s;
}

.delay_06 {
	transition-delay: 0.6s;
}

.delay_08 {
	transition-delay: 0.8s;
}

.delay_1 {
	transition-delay: 1s;
}


.show-elements.leftAnim,
.show-elements.rightAnim,
.show-elements.bottomAnim,
.show-elements.topAnim,
.show-elements.scaleAnim,
.show-elements.scaleAnim07 {
	translate: 0;
	visibility: visible;
	opacity: 1;
	scale: 1;
}

.cart_modal_head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 15px;
}

.cart_close_btn {
	cursor: pointer;
}

.account_button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-top: 15px;
}

.addr_wrapper {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid lightgray;
}

.addr_wrapper:nth-last-child(2) {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: unset;
}

.noprod_wish {
	margin-top: 15px;
	text-align: center;
}

.newsl_title {
	margin-bottom: 10px;
}

.form-group:has(.newsl_title) label {
	margin-right: 10px;
}

.account_page:has(.wish_prod_item) h2 {
	font-weight: 600;
	text-align: left;
	margin-bottom: 20px;
	font-size: 21px;
	line-height: 120%;
	color: #222325;
}

.search_block {
	position: fixed;
	top: 0;
	left: unset;
	right: 6%;
	bottom: 0;
	transition: 0.4s;
	opacity: 0;
	translate: 110% 0;
	width: 100%;
	max-width: 400px;
	background: #f4f4f4;
	z-index: 100;
	padding: 20px 15px;
	overflow: auto;
}

.search_block input {
	width: 85%;
	height: 42px;
	background: white;
	border: unset;
}

.search_over {
	position: fixed;
	inset: 0;
	background: #000;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
	z-index: 99;
}

.search_over.openSearch {
	opacity: 0.5;
	visibility: visible;
}

.smartsearch {
	top: 75px !important;
	left: 0 !important;
}

.search_close {
	position: absolute;
	right: 16px;
	top: 28px;
	cursor: pointer;
}

.search_block.openSearch {
	translate: 0 0;
	opacity: 1;
}

.header_search_open {
	width: 28px;
	height: 28px;
	cursor: pointer;
}

.header_search_open img {
	width: 100%;
}

.smartsearch .item_block img {
	display: block;
	width: 60px !important;
	height: 60px !important;
	min-width: 60px;
	object-fit: cover;
	border-radius: 3px;
}

.smartsearch .item_block .title a {
	font-weight: 300 !important;
	font-size: 14px !important;
	color: #222325 !important;
	margin-bottom: 8px;
}

.smartsearch li.item {
	border-top: unset !important;
}

.smartsearch {
	background: transparent !important;
	border: unset !important;
}

.smartsearch li.item .item_block .price {
	padding: 0 !important;
	font-weight: 600;
	font-size: 14px !important;
	color: #222325 !important;
}

.price_sec {
	display: flex;
	flex-direction: column;
}

.price_sec span {
	display: block;
	line-height: 130%;
}

.oldprice {
	font-size: 12px !important;
	color: #222325 !important;
}

.newprice {
	font-size: 14px !important;
	color: red;
}

.check_label {
	font-weight: 300;
	font-size: 14px;
	line-height: 120%;
	color: #222325;
	margin-bottom: 8px;
}

.checkout_contacts fieldset input,
#shipping_method .del_addr input {
	background: #fff;
	border: 1px solid rgba(34, 35, 37, 0.2);
	border-radius: 10px;
	padding: 0px 20px;
	height: 47px;

	font-weight: 500;
	font-size: 16px;
	line-height: 120%;
	color: #222325;
}

.checkout_contacts fieldset input::placeholder {
	font-weight: 500;
	font-size: 17px;
	line-height: 120%;
	color: #222325;
	opacity: 0.5;
}

.checkout_contacts fieldset .form-group {
	flex-basis: 48.6%;
}

/* .checkout_contacts fieldset .form-group:nth-child(-n+3) {
	flex-basis: 31.5%;
} */

#confirm_order_btn {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
	background: #d7e4f5;
	border-radius: 5px;
	padding: 0 23px;
	height: 46px;

	font-weight: 600;
	font-size: 14px;
	line-height: 130%;
	color: #222325;
	transition: 0.3s;
	border: unset;
}

#confirm_order_btn:hover {
	background: #6a809d;
	color: white;
}

.checkout_info_block {
	margin-bottom: 40px;
}

#payment_method {
	display: flex;
	gap: 20px;
}

#payment_method .radio {
	border: 1px solid rgba(34, 35, 37, 0.2);
	border-radius: 10px;
	padding: 20px 15px;
	width: 100%;
	max-width: 328px;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	transition: 0.3s;
}

#payment_method .radio:has(input:checked) {
	border: 1px solid #222325;
}

#payment_method .radio input {
	opacity: 0;
	/* visibility: hidden; */
	position: absolute;
	inset: 0;
}

.ch_icon_title img {
	height: 40px;
}

.ch_icon_title {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}

.check_pay_bottom_imgs {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 15px;
	/* flex-wrap: wrap; */
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.check_pay_bottom_imgs img {
	width: 100%;
	flex: 1;
}

.ch_icon_title span {
	font-weight: 500;
	font-size: 16px;
	line-height: 120%;
	color: #222325;
}

.check_pay_bottom_descr {
	font-weight: 300;
	font-size: 14px;
	line-height: 120%;
	text-align: center;
	color: #222325;
	margin-top: 10px;
}

.check_custom {
	position: absolute;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.3s;
	top: 12px;
	right: 12px;
	border: 1px solid rgba(34, 35, 37, 0.2);
}

.check_custom svg {
	position: relative;
	top: 1px;
}

#payment_method .radio:has(input:checked) .check_custom {
	background: #222325;
}

#shipping_method .radio {
	background: #fff;
	border: 1px solid rgba(34, 35, 37, 0.2);
	border-radius: 10px;
	padding: 18px 22px;
	margin-bottom: 15px;
	cursor: pointer;
}

.check_del_title_wrapper {
	display: flex;
	align-items: center;
	gap: 18px;
}

.check_del_title_wrapper span {
	font-weight: 500;
	font-size: 16px;
	line-height: 120%;
	color: #222325;
}

#shipping_method .radio .del_block_top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	position: relative;
}

#shipping_method .radio:has(input:checked) {
	border: 1px solid #222325;
}

#shipping_method .radio:has(input:checked) .del_block_top .check_custom {
	background: #222325;
}

.del_block_top .check_custom {
	position: relative;
	top: 0;
	right: 0;
}

#shipping_method .radio label input {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
}

.del_addr {
	transition: 0.4s;
	max-height: 0;
	opacity: 0;
}

.free-delivery-info {
	background: #e2edfb;
	border-radius: 12px;
	padding: 10px 18px;
	width: 100%;
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	margin: 10px 0;
}

.free-delivery-info-l-wrapper {
	display: flex;
	align-items: center;
	gap: 20px;
}

.free-delivery-info-l-wrapper div {
	font-weight: 400;
	font-size: 16px;
	line-height: 135%;
	color: #222325;
}

.free-delivery-info-l-wrapper div span {
	font-weight: 600;
	text-transform: uppercase;
}

.free-delivery-info-l-wrapper div span.res_num {
	text-transform: unset;
	white-space: nowrap;
}

.free-delivery-info-l_btn {
	background: #fff;
	border-radius: 5px;
	padding: 0 37px;
	height: 42px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 14px;
	line-height: 130%;
	color: #252322;
	transition: 0.3s;
	border: 3px solid transparent;
	white-space: nowrap;
}

.free-delivery-info-l_btn:hover {
	background: #e2edfb;
	border: 3px solid white;
	color: #252322;
}

#shipping_method .radio:has(input:checked) .del_addr {
	opacity: 1;
	max-height: 200px;
	margin-top: 20px;
}

.del_addr fieldset {
	display: flex;
	align-items: baseline;
	gap: 20px;
	flex-wrap: wrap;
}

/* .del_addr fieldset .form-group {
	min-width: 265px;
} */

.del_addr fieldset .form-group:nth-child(2) {
	flex: 1;
}

.checkout_comment_title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	font-weight: 500;
	font-size: 14px;
	line-height: 120%;
	color: #222325;
}

.checkout_comment {
	margin-top: 40px;
}

.checkout_comment textarea {
	border: 1px solid rgba(34, 35, 37, 0.2);
	border-radius: 10px;
	padding: 17px 20px;
	height: 121px;
	resize: none;
	font-weight: 500;
	font-size: 16px;
	line-height: 120%;
	color: #222325;
}

.checkout_comment textarea::placeholder {
	font-weight: 500;
	font-size: 16px;
	line-height: 120%;
	color: #222325;
	opacity: 0.5;
}

.related_prod .product-thumb .image a img {
	aspect-ratio: 1/1;
	object-fit: cover;
}

.ocf-scroll-y {
	max-height: unset !important;
}


.search_block {
	bottom: unset;
	height: auto;
}

.search_block .smartsearch {
	position: unset;
}

.footerCatBtn {
	cursor: pointer;
}

.footerCatBtn:hover {
	color: #6a7179;
}

#preorder-box .image img {
	width: 62px;
	min-width: 62px;
	aspect-ratio: 1/1;
	object-fit: cover;
	border-radius: 10px;
}

#preorder-box form>p {
	text-align: center;
}

.mob_header_logo {
	display: none;
}

.contactspage_wrapper_s_title {
	margin-bottom: 20px;
	font-size: 25px;
	font-weight: 500;
}

.search_links_title {
	margin-top: 15px;
	margin-bottom: 8px;
	font-size: 13px;
	font-weight: 500;
	color: gray;
	text-transform: uppercase;
}

.search_links {
	margin-top: 5px;
}

.search_links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.search_links li {
	margin-bottom: 6px;
}

.search_links a {
	display: inline-block;
	font-size: 13px;
	color: #000;
	text-decoration: none;
	transition: 0.2s;
	font-weight: 600;
	text-transform: uppercase;
}

.search_links a:hover {
	color: #6a7179;
}

.bundle_cart {
	background: #fff;
	border-radius: 10px;
	padding: 15px;
	margin-bottom: 30px;
	transition: 0.4s;
	overflow: hidden;
	max-height: 300px;
	display: none;
}

.bundle_cart:has(.closeBundle) {
	max-height: 0;
	opacity: 0;
	visibility: hidden;
	scale: 0.3;
	margin: 0;
	padding: 0;
}

.bundle_name {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
}

.bundle_name span {
	font-weight: 600;
	font-size: 14px;
	color: #222325;
}

.bundle_item {
	display: flex;
	align-items: center;
	gap: 15px;
}

.bundle_item_left img {
	width: 60px;
	height: 60px;
	min-width: 60px;
	object-fit: cover;
	border-radius: 3px;
	border: 1px solid #f4f4f4;
}

.bundle_item_right_t a {
	font-weight: 500;
	font-size: 14px;
	color: #222325;
	display: block;
	line-height: 130%;
}

.bundle_item_right_b {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 10px;
}

.bundle_item_price {
	font-weight: 600;
	font-size: 14px;
	color: #222325;
}

.bundle_item_buy {
	background: #d7e4f5;
	border-radius: 5px;
	padding: 0 20px;
	height: 29px;
	font-weight: 600;
	font-size: 13px;
	line-height: 130%;
	color: #252322;
	transition: 0.4s;
}

.bundle_item_buy:hover {
	background: #6a809d;
	color: white;
}

.mfp-counter {
	display: none !important;
}

#newsletter-popup-error,
#newsletter-popup-success {
	min-height: unset !important;
}

#newsletter-popup-success {
	text-align: center;
	color: #000 !important;
	font-size: 20px;
	line-height: 140%;
}

#newsletter-popup label {
	font-size: 13px;
	display: block;
	line-height: 130%;
	margin: 0px 0 17px;
	display: flex;
	align-items: flex-end;
	gap: 7px;
}

#newsletter-popup h4 {
	font-size: 22px;
	margin-bottom: 25px !important;
}

#newsletter-popup p {
	max-width: 280px;
	margin: 0 auto 30px !important;
	font-size: 16px !important;
}

.newsletter_popup_b {
	position: absolute;
	border-radius: 8px !important;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	padding: 35px 20px 35px !important;
	max-width: 370px !important;
}

#newsletter-popup-close {
	font-size: 34px;
}

#newsletter-popup input {
	height: 50px;
}

#newsletter-popup-submit {
	height: 55px;
}

body:has(#product-search) #newsletter-footer-bar {
	display: none !important;
}


.empty_text {
	height: 30vh;
}

.category_products .rating_info .rating {
	display: flex;
}

.review-uploader {
	margin-top: 10px;
}

.upload-dropzone {
	border: 2px dashed #cccccc;
	padding: 25px;
	text-align: center;
	border-radius: 10px;
	cursor: pointer;
	transition: 0.2s;
	background: #fafafa;
}

.upload-dropzone.dragover {
	background: #eef7ff;
	border-color: #4aa3ff;
}

.upload-dropzone svg {
	margin-bottom: 10px;
	opacity: 0.8;
}

.drop-text {
	font-size: 14px;
	color: #666;
	line-height: 1.4;
}

.drop-text span {
	font-size: 12px;
	color: #999;
}

.file-input {
	display: none;
}

.preview {
	margin-top: 15px;
}

.preview img {
	max-width: 32%;
	border-radius: 8px;
	border: 1px solid #ddd;
	padding: 3px;
	display: block;
}

.review_gallery {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 10px;
}

.review_gallery_item {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	cursor: pointer;
	flex: 0 0 calc(25% - 8px);
	max-width: 120px;
}

.review_gallery_item img {
	display: block;
	width: 100%;
	height: 100%;
	max-height: 200px;
	object-fit: cover;
	border-radius: 8px;
	border: 1px solid #ddd;
	padding: 2px;
	transition: transform .25s ease, filter .25s ease, opacity .25s ease;
}

.review_gallery_item::after {
	content: "\f002";
	font-family: "FontAwesome";
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.35);
	color: #fff;
	font-size: 16px;
	opacity: 0;
	transition: opacity .25s ease;
	pointer-events: none;
}

.review_gallery_item:hover img {
	transform: scale(1.05);
	filter: blur(0.5px);
	opacity: 0.9;
}

.review_gallery_item:hover::after {
	opacity: 1;
}

.mail_success {
	height: 50vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	transition: 0.7s;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	max-height: 0;
	scale: 0.7;
	position: absolute;
	z-index: 10;
	inset: 0;
}

.mail_success.show_success {
	opacity: 1;
	visibility: visible;
	max-height: 500px;
	scale: 1;
}

.mail_success_title {
	font-weight: 600;
	font-size: 21px;
	color: #000;
	margin: 30px 0 12px;
	text-align: center;
}

.mail_success_subtitle {
	font-weight: 400;
	font-size: 16px;
	color: #000;
	text-align: center;
}

.mail_success a {
	background: #d7e4f5;
	border-radius: 6px;
	padding: 0 27px;
	height: 46px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
	font-weight: 600;
	font-size: 14px;
	line-height: 130%;
	color: #333;
	transition: 0.4s;
}

.mail_success a:hover {
	color: #fff;
	background: #6a809d;
}

#content:has(.mail_success) {
	position: relative;
}


.header_top {
	transition: opacity .5s ease-in-out;
}

.show_more_var {
	font-size: 18px;
	text-decoration: none;
}

.notification {
	position: relative;
	display: none !important;
}

.notification__text {
	margin-right: 20px;
}

.cart_remove_prod svg {
	filter: opacity(0.5);
}

.notification__close {
	position: absolute;
	top: 4px;
	right: 6px;
	border: none;
	background: transparent;
	cursor: pointer;
	font-size: 26px;
	line-height: 1;
	padding: 0;
	rotate: 45deg;
}

#scrollTopBtn {
	position: fixed;
	bottom: 25px;
	right: 25px;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #f4f4f4;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
	cursor: pointer;
	z-index: 1050;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s ease, transform 0.3s ease;
	opacity: 0;
	pointer-events: none;
}

#scrollTopBtn.visible {
	opacity: 1;
	pointer-events: auto;
	transform: scale(1);
}

#scrollTopBtn .arrow {
	position: absolute;
	font-size: 20px;
	color: #222;
	font-weight: 600;
}

.progress-svg {
	position: absolute;
	top: 0;
	left: 0;
	transform: rotate(-90deg);
}

.progress-svg circle {
	fill: none;
	stroke-width: 4px;
}

.progress-bg {
	stroke: #ddd;
}

.progress-bar {
	stroke: #d2e0f1;
	stroke-linecap: round;
	stroke-dasharray: 150;
	stroke-dashoffset: 150;
	transition: stroke-dashoffset 0.1s linear;
}

.free-progress-bar {
	position: relative;
	width: 100%;
	height: 8px;
	background: #eaeaea;
	border-radius: 20px;
	margin: 10px 0 15px;
	overflow: hidden;
}

.free-progress-wrapper {
	width: 100%;
	margin: 10px 0 20px;
}

.free-progress-labels {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: #555;
	margin-bottom: 4px;
	padding: 0 2px;
}

.free-progress-row {
	display: flex;
	align-items: center;
	width: 100%;
	gap: 10px;
	margin: 10px 0 15px;
}

.free-progress-min,
.free-progress-max {
	/*font-size: 12px;*/
	color: #555;
	font-weight: 500;
	white-space: nowrap;
}

.free-progress-bar {
	flex: 1;
	position: relative;
	height: 8px;
	background: #eaeaea;
	border-radius: 20px;
	overflow: hidden;
}

.free-progress-fill {
	height: 100%;
	background: #81b7ff;
	border-radius: inherit;
	position: relative;
	z-index: 2;
	transition: width 0.4s ease;
}

.free-progress-wave {
	position: absolute;
	top: 0;
	left: 0;
	width: 200%;
	height: 100%;
	background: repeating-linear-gradient(135deg,
			rgba(255, 255, 255, 0.55) 0px,
			rgba(255, 255, 255, 0.55) 6px,
			rgba(215, 228, 245, 0.4) 6px,
			rgba(215, 228, 245, 0.4) 12px);
	animation: waveMove 25s linear infinite;
	z-index: 3;
	pointer-events: none;
}

@keyframes waveMove {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-25%);
	}
}








.article-1701 {
	font-family: 'Raleway', sans-serif;
}

.article-1701 .article-title {
	font-weight: 600;
	font-size: 25px;
	line-height: 100%;
	letter-spacing: 0%;
	vertical-align: middle;
	color: #222325;
	max-width: 900px;
	margin: 0px auto 20px auto;
}

.article-1701 .article-image {
	margin: 25px 0;
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.article-1701 .article-image img {
	width: 100%;
	max-width: 900px;
	height: auto;
	max-height: 100%
		/*605.77px*/
	;
	border-radius: 5px;
	object-fit: cover;
}

.article-1701 .article-description {
	font-weight: 300;
	font-size: 14px;
	line-height: 150%;
	letter-spacing: 1%;
	color: #222325;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

.article-1701 .article-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 900px;
	margin: 0 auto;
	margin-top: 30px;
	margin-bottom: 30px;
}

.article-1701 .article-date {
	font-weight: 300;
	font-size: 13px;
	line-height: 120%;
	letter-spacing: 0%;
	color: #222325;
	text-align: left;
	margin: 0;
}

.article-1701 .article-button-container {
	margin: 0;
	text-align: right;
}

.article-1701 .article-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 177px;
	height: 48px;
	background: transparent;
	border: 1px solid #D5D4D1;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	line-height: 130%;
	letter-spacing: 0%;
	color: #222325;
	transition: all 0.3s ease;
}

.article-1701 .article-button:hover {
	background: #222325;
	color: white;
}

.article-1701 .article-button svg {
	margin-left: 10px;
}

.article-1701 .article-button:hover svg path {
	stroke: white;
}

/* Стили для секции "Схожі публікації" */
.similar-articles {
	margin: 80px 0;
}

.similar-articles h3 {
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	font-size: 24px;
	line-height: 120%;
	letter-spacing: 0%;
	color: #222325;
	text-align: center;
	margin-bottom: 30px;
}

.similar-articles-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.similar-article-card {
	display: flex;
	flex-direction: column;
}

.similar-article-card .article-image {
	width: 100%;
	height: 233px;
	border-radius: 5px;
	overflow: hidden;
	margin-bottom: 15px;
}



.similar-article-card .article-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	transition: transform 0.3s ease;
}

.similar-article-card:hover .article-image img {
	transform: scale(1.05);
}

.similar-article-card .article-title {
	font-family: 'Raleway', sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 120%;
	letter-spacing: 0%;
	color: #222325;
	margin-bottom: 12px;
	text-decoration: none;
	transition: color 0.3s ease;
}

.similar-article-card .article-title:hover {
	color: #007bff;
}

.similar-article-card .article-date {
	font-family: 'Raleway', sans-serif;
	font-weight: 300;
	font-size: 14px;
	line-height: 120%;
	letter-spacing: 0%;
	color: #54585C;
}



.article-1701 .op-section-title {
	font-family: 'Raleway';
	font-style: normal;
	font-weight: 600;
	font-size: 20px;
	line-height: 23px;
	color: #222325;
	margin: 30px 0 17px 0;
}


.article-1701 p {
	font-family: 'Raleway';
	font-style: normal;
	font-weight: 300;
	font-size: 16px;
	line-height: 150%;
	letter-spacing: 0.01em;
	color: #222325;
	margin-bottom: 10px;
}



.article-1701 .op-conditions-list {
	list-style-type: disc;
	margin: 0 0 10px 0;
	padding-left: 20px;
}


.article-1701 .op-text-medium {
	font-family: 'Raleway';
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 150%;
	letter-spacing: 0.01em;
	font-feature-settings: 'pnum' on, 'lnum' on;
	color: #222325;
	margin-bottom: 10px;
}

.article-1701 .op-text-light {
	font-family: 'Raleway';
	font-style: normal;
	font-weight: 300;
	font-size: 16px;
	line-height: 150%;
	letter-spacing: 0.01em;
	color: #222325;
	margin-bottom: 10px;
}


.rating_info .rating {
	display: flex;
}

.main_image_prod_wrapper {
	position: relative;
}


.review_body {
	white-space: normal !important;
	word-break: break-word !important;
	overflow-wrap: anywhere !important;
}

.review_success_msg {
	display: none;
	margin-top: 15px;
	padding: 12px 15px;
	color: #333333;
	border-radius: 8px;
	font-size: 16px;
	line-height: 1.4;
}

.cart_products_mobile {
	display: none;
}

.cart_products_mobile_title {
	display: none;
}

.confirm_ch_block {
	display: flex;
	gap: 5px;
	margin-top: 10px;
}

.confirm_ch_block input {
	height: 18px;
}

.desk_menu_wrapper .side_menu_back {
	display: none;
}

.burger_menu_m .menu {
	position: relative;
}

.burger_menu_m .menu_item_sub_wrapper,
.all_cat_modal .menu_item_sub_wrapper {
	position: fixed;
	background: #f4f4f4;
	width: 100%;
	z-index: 10;
	top: 84px;
	left: 0;
	right: 0;
	height: 90vh;
	overflow-x: hidden;
	overflow-y: auto;
	transition: 0.5s cubic-bezier(.34, .88, .44, .95);
	translate: -100% 0;
	opacity: 0;
	padding: 20px;
}

body:has(.burger_menu.active_menu) {
	overflow: hidden;
}

.all_cat_modal .menu_item_sub_wrapper {
	top: 60px;
}

.burger_menu_m .menu_item_sub_wrapper::-webkit-scrollbar,
.all_cat_modal .menu_item_sub_wrapper::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}

.burger_menu_m .menu_item_sub_wrapper::-webkit-scrollbar-thumb,
.all_cat_modal .menu_item_sub_wrapper::-webkit-scrollbar-thumb {
	background-color: #6e6e6e;
	outline: 1px solid slategrey;
}

.burger_menu_m .menu_item_subsub_wrapper,
.all_cat_modal .menu_item_subsub_wrapper {
	position: fixed;
	background: #f4f4f4;
	width: 100%;
	z-index: 10;
	top: 0;
	left: 0;
	right: 0;
	height: 90vh;
	overflow: auto;
	transition: 0.5s cubic-bezier(.34, .88, .44, .95);
	translate: -100% 0;
	opacity: 0;
	padding: 20px;
}

.burger_menu_m .menu_item_subsub_wrapper::-webkit-scrollbar,
.all_cat_modal .menu_item_subsub_wrapper::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}

.burger_menu_m .menu_item_subsub_wrapper::-webkit-scrollbar-thumb,
.all_cat_modal .menu_item_subsub_wrapper::-webkit-scrollbar-thumb {
	background-color: #6e6e6e;
	outline: 1px solid slategrey;
}

.burger_menu_m .menu_item_subsub_wrapper.showSub,
.all_cat_modal .menu_item_subsub_wrapper.showSub {
	opacity: 1;
	translate: 0 0;
}

.side_menu_back,
.side_menusub_back {
	font-size: 20px;
	font-weight: 500;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 5px;
	transition: 0.3s;
	position: sticky;
	top: -23px;
	left: 0;
	background: #f4f4f4;
	padding: 5px 0 15px;
}

.all_cat_modal .side_menu_back,
.all_cat_modal .side_menusub_back {
	top: -21px;
	padding: 10px 0 9px;
}

.side_menu_back:before {
	content: '';
	position: absolute;
	left: 50%;
	translate: -50% 0;
	width: 120%;
	top: -20px;
	right: 0;
	bottom: 0;
	height: 60px;
	z-index: 5;
	display: block;
	box-shadow: rgba(0, 0, 0, 0.06) 0px 9px 12px;
	transition: 0.4s;
	opacity: 0;
}

.side_menu_back.scroll:before {
	opacity: 1;
}

.side_menu_back:hover {
	color: #6a7179;
}

.side_menu_back svg,
.side_menusub_back svg {
	display: block !important;
}

body .burger_menu_m .side_menusub_back svg,
body .all_cat_modal .side_menusub_back svg {
	position: unset !important;
	rotate: 0deg !important;
	translate: 0 0 !important;
	top: 0 !important;
	right: 0 !important;
}

.menu_item_sub_wrapper:has(.showSub) {
	translate: 0 0;
	opacity: 1;
}

.menu_item_subsub_list {
	position: relative;
}

body .menu_item_subsub_list .sidebar_icon svg {
	rotate: 180deg !important;
}

body .menu_item_subsub_list .sidebar_icon {
	top: -7px !important;
	right: -10px !important;
}

.desk_menu_wrapper .side_menusub_back {
	display: none;
}

footer .side_menu_back {
	display: none;
}

.order_list_tabs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 30px;
}

.order_list_tab {
	padding: 7px 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.4s;
	border-radius: 45px;
	background: #fff;
	color: #111;
	cursor: pointer;
}

.order_list_tab:hover {
	background: #d2d2d2;
	color: #111;
}

.order_list_tab.active {
	background: #111;
	color: #fff;
}

.order_list {
	padding: 15px;
	background: #fff;
	margin-bottom: 15px;
	border-radius: 10px;
}



.order_list_head:has(.status_3) {
	border-left: 2px solid #39df39;
}

.order_list_head:has(.status_7) {
	border-left: 2px solid red;
}

.order_list_head:has(.status_2) {
	border-left: 2px solid rgb(255, 204, 0);
}

.order_list_head:has(.status_17) {
	border-left: 2px solid gray;
}

.order_list_head:has(.status_18) {
	border-left: 2px solid #2b7cff;
}

.order_list_head:has(.status_19) {
	border-left: 2px solid #7a3cff;
}

.order_list_head:has(.status_5) {
	border-left: 2px solid #28a745;
}

.status_7 {
	color: red;
}

.status_3 {
	color: #39df39;
}

.status_2 {
	color: rgb(255, 204, 0);
}

.status_17 {
	color: gray;
}

.status_18 {
	color: #2b7cff;
}

.status_19 {
	color: #7a3cff;
}

.status_5 {
	color: #28a745;
}

.order_list_head {
	padding-left: 12px;
}

.order_list_name {
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
	gap: 20px;
}

.order_list_name {
	font-size: 14px;
	color: gray;
}

.order_list_name svg {
	rotate: -90deg;
	width: 10px;
	transition: 0.3s;
}

.order_list:has(.show) .order_list_name svg {
	rotate: 90deg;
}

.order_list_pr {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.order_list_status {
	font-size: 16px;
	font-weight: 600;
}

.order_list_price {
	font-size: 16px;
	font-weight: 700;
}

.order_list_products_imgs {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.order_list_product {
	width: 70px;
	min-width: 70px;
	height: 70px;
	overflow: hidden;
	border-radius: 10px;
}

.order_list_product img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	border: 1px solid #f4f4f4;
	transition: 0.3s;
}

.order_list_product:hover img {
	scale: 1.1;
}

.order_list_body {
	transition: 0.6s;
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	visibility: hidden;
}

.order_list_body.show {
	max-height: 5000px;
	opacity: 1;
	visibility: visible;
	margin-top: 25px;
}

.order_info span,
.order_info_np {
	font-size: 14px;
	font-weight: 500;
	line-height: 150%;
	color: gray;
}

.order_info_np a {
	font-size: 16px;
	font-weight: 600;
	color: #007bff;
}

.order_info {
	margin-bottom: 20px;
}

.order_product {
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #f4f4f4;
}

.order_product:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: unset;
}

.order_product_img {
	overflow: hidden;
	border-radius: 15px;
	width: 160px;
	min-width: 160px;
}

.order_product_img img {
	width: 100%;
	aspect-ratio: 1/1;
	display: block;
	object-fit: cover;
	border-radius: 15px;
	transition: 0.4s;
}

.order_product_info_name {
	font-size: 18px;
	color: #000;
	font-weight: 500;
	margin-bottom: 20px;
	transition: 0.3s;
}

.order_product_info_pr {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.order_product_info_num {
	font-size: 18px;
	color: #000;
}

.order_product_info_price {
	font-size: 18px;
	font-weight: 600;
	color: #000;
}

.order_product_info {
	width: 100%;
}

.order_product:hover .order_product_info_name {
	color: #6a7179;
}

.order_product:hover .order_product_img img {
	scale: 1.1;
}



/* Header fix */

header {
	z-index: 1040;
}

/* Succes order */

.success-opc-text {
	font-size: 16px;
	font-weight: 500;
	text-align: center;
}

.success_login_wrapper>p:first-of-type {
	margin-top: 20px;
}

.success_login_wrapper>p.success-opc-text:nth-of-type(3) {
	margin-top: 30px;
}

.success_login_wrapper>p:last-of-type {
	margin-bottom: 20px;
}

/* Checkout */

.radio.radio-disabled {
	opacity: .45;
	pointer-events: none;
	display: none !important;
}

/* Popup cart */

.black_and_white_filter {
	filter: grayscale(100%);
	transition: all .3s ease;
}

.black_and_white_filter:hover {
	filter: grayscale(0%);
	transition: all .3s ease;
}

.notify_about_the_availability {
	cursor: pointer;
}

.notify_about_the_availability>img {
	margin-right: 10px;
}

.shoping-cart-products-item-quantity span {
	height: unset;
}

#cartOosModal .modal-dialog {
	display: flex;
	align-items: center;
	min-height: calc(100% - 1rem);
}

@media (min-width: 576px) {
	#cartOosModal .modal-dialog {
		min-height: calc(100% - 3.5rem);
	}
}

.newsletter-modal-title-two {
	font-size: 24px;
	font-weight: 600;
}

.newsletter-modal-text {
	margin-top: 10px;
}



#checkoutLoginModal .modal-dialog {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: 0;
	width: 400px;
	max-width: 95%;
	z-index: 99999 !important;
}

.modal-backdrop.in {
	z-index: 99998 !important;
}

/* Checkout authorization row */

.checkout_authorization_row {
	border: solid 1px #d3d3d3;
	border-radius: 12px;
	display: flex;
	flex-direction: row;
	margin-bottom: 25px;
}

.authorization_icon,
.authorization_text,
.authorization_text_wrapper {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.authorization_icon {
	width: 59px;
	min-height: 48px;
	border-radius: 12px 0 0 12px;
	background-color: #e2edfb;
}

.authorization_text_wrapper {
	width: 100%;
}

.authorization_text {
	color: #222325;
	font-size: 14px;
	font-weight: 400;
}

.authorization_text>p>a {
	color: #78879c;
	text-decoration: underline;
	font-weight: 600;
}

.authorization_text>p>a:hover {
	color: #434c58;
	transition: all .3s;
}


.confirm_ch_block {
	font-size: 14px;
	justify-content: center;
}

.confirm_ch_block>label>a {
	color: #78879c;
	text-decoration: underline;
	font-weight: 600;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.confirm_ch_block>label>a:hover {
	color: #434c58;
}

/* checkout authorization modal */

#checkoutLoginModal>.modal-dialog {
	min-width: 475px;
}

#checkoutLoginModal>.modal-dialog>.modal-content>.modal-body {
	border-radius: 10px;
	padding: 45px 40px 40px;
	background-color: #f4f4f4;
}

#checkout-login-form>.form-group>label {
	display: none;
}

p.help-block>a,
#checkout-login-form>.form-group:last-child>a {
	font-size: 14px;
	color: #78879c;
	font-weight: 600;
	line-height: 150%;
	margin-top: 10px;
}

p.help-block>a {
	margin: 30px 0;
	display: block;
}

#checkout-login-form>.form-group:not(:last-child)>input {
	background: #fff;
	border: 1px solid rgba(34, 35, 37, 0.2);
	border-radius: 10px;
	height: 50px;
	width: 100%;
	margin-bottom: 10px;
}

p.help-block>a:hover,
#checkout-login-form>.form-group:last-child>a:hover {
	color: #5d6979;
	transition: 0.3s;
}

#checkout-login-form>.form-group:last-child {
	display: flex;
	align-items: center;
	flex-direction: column;
}

#checkout-login-form>.form-group:last-child>button {
	background: #d7e4f5;
	border-radius: 5px;
	padding: 0 23px;
	height: 46px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 14px;
	line-height: 130%;
	color: #333;
	border: unset;
	width: 240px;
}

/* newsletter popup */

#newsletterPopupModal .modal-dialog {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 860px;
	max-width: 95%;
	margin: 0px;
	border-radius: 8px;
	z-index: 99999 !important;
	background-color: #fff;
}

#newsletterPopupModal .modal-content {
	background: #fff;
	border: none;
}

#newsletterPopupModal .modal-body {
	display: flex;
	flex-direction: row;
	padding: 0;
}

#newsletterPopupModal .left-side {
	border-radius: 8px 0 0 8px;
	flex: 0 0 50%;
	min-height: 480px;
	position: relative;
	overflow: hidden;
}

#newsletterPopupModal .left-side img {
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 8px 0 0 8px;
	object-fit: cover;
}

#newsletterPopupModal .right-side {
	border-radius: 8px;
	flex: 1 1 auto;
	padding: 0;
}

.newsletter-button-close {
	position: absolute;
	top: 16px;
	right: 16px;
}

.newsletter-modal-row {
	padding: 38px 38px 0 38px;
}

.newsletter-modal-row>.newsletter-modal-title {
	font-size: 30px;
	text-align: center;
	font-weight: 400;
	line-height: 115%;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.newsletter-modal-row>.newsletter-modal-title span {
	display: block;
	font-size: 36px;
	font-weight: 900;
}

.newsletter-modal-row>.newsletter-modal-text {
	font-size: 16px;
	font-weight: 400;
	line-height: 125%;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	text-align: center;
	margin-top: 20px;
}

.newsletter-modal-row>.newsletter-modal-text span {
	font-weight: 600;
}

.newsletter-modal-row:last-child {
	margin-top: 30px;
	padding-top: 0;
}

.newsletter-modal-row:last-child>input.form-control {
	padding: 16px 0 16px 18px;
	border-radius: 4px;
}

.newsletter-modal-row:last-child>input.form-control:focus {
	border: none;
}

.newsletter-modal-row:last-child>button.btn.btn-primary {
	margin-top: 15px;
	font-size: 16px;
	font-weight: 600;
	color: #333333;
	background: #d7e4f5;
	border: none;
	border-radius: 6px;
	width: 100%;
	padding: 14px 0;
}

.newsletter-modal-row:last-child>button.btn.btn-primary:hover {
	background: #cad8eb;
	transition: all .3s;
}

.newsletter-modal-row>label.weather {
	position: relative;
	margin-top: 15px;
	font-size: 13px;
	font-weight: 300;
	line-height: 130%;
	padding-left: 26px;
	color: #222325;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.newsletter-modal-row label.weather>input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.newsletter-modal-row>label.weather::before,
.newsletter-modal-row>label.weather::after {
	pointer-events: none;
}

.newsletter-modal-row>label.weather::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 16px;
	height: 16px;
	background-color: #c3d0e1;
	border: none;
	border-radius: 3px;
	transform: translateY(-50%);
}

.newsletter-modal-row>label.weather:hover::before {
	background-color: #bdcadb;
	transition: all .3s;
}

.newsletter-modal-row>label.weather::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 50%;
	width: 9px;
	height: 5px;
	border-left: 2px solid #222325;
	border-bottom: 2px solid #222325;
	opacity: 0;
	transition: all .3s;
	transform: translateY(-50%) rotate(-45deg);
}

.newsletter-modal-row>label.weather:has(input:checked)::after {
	opacity: 1;
	transition: all .3s;
}

#newsletterPopupModal .weather p {
	text-align: center;
	margin: 0;
	user-select: none;
}

#newsletterPopupModal label.weather p {
	position: relative;
	top: 2px;
}

.empty_orderslist_img {
	width: 45%;
}

.checkout_card_item_r {
	width: 100%;
}

.preorder-top-block {
	padding-top: 35px !important;
	padding-left: 35px !important;
	padding-right: 35px !important;
}

#preorder-box .modal-body {
	padding-left: 35px !important;
	padding-right: 35px !important;
}

#preorder-box .modal-footer {
	margin-bottom: 35px;
}

.preorder-top-icon {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.preorder-top-icon img {
	width: 62px !important;
	height: 62px !important;
}

.preorder-top-text {
	font-weight: 600;
	font-size: 18px;
	line-height: 120%;
	text-align: center;
	color: #222325;
	margin-bottom: 4px;
}

.modal-body .col-md-4 {
	background: #f8f8f8;
	padding: 12px;
	border-radius: 8px;
	margin-bottom: 32px;
}

#form-preorder .form-group {
	margin-bottom: 15px;
}

#form-preorder .form-control {
	background: #fff;
	height: 50px;
	border: 1px solid rgba(34, 35, 37, 0.2);
	border-radius: 10px;
}

#preorder-box .btn.btn-primary {
	width: 240px;
	height: 46px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.cart_items .quantity-block {
	width: 35px;
}

.category_description h2 {
	margin: 40px 0 20px !important;
}

.att_descr {
	background: #f4f4f4;
	border-radius: 10px;
	padding: 25px;
	display: flex;
	align-items: center;
	flex-direction: column;
	margin-top: 30px;
	margin-bottom: 30px;
}

.att_descr_txt a {
	font-weight: 500;
	text-decoration: underline;
}

.faq__btn {
	position: relative;
	width: 100%;
	text-align: left;
}

.faq__btn span {
	font-weight: 500;
	font-size: 20px;
	color: #a4a9ac;
}

.faq__btn:after {
	content: '';
	position: absolute;
	width: 14px;
	height: 8px;
	right: 0;
	top: 5px;
	background-image: url(/image/faq-arrow-descr.svg);
	transition: 0.3s;
}

.faq__item.is-open .faq__btn:after {
	rotate: 180deg;
}

.faq__item.is-open {
	border: 1px solid rgba(0, 0, 0, 0.5);
}

.att_descr_title {
	font-weight: 700;
	font-size: 18px;
	line-height: 150%;
	text-align: center;
	color: #a4a9ac;
	margin-bottom: 8px;
}

.att_descr_icon {
	background-image: url(/image/att-icon.svg);
	background-size: cover;
	width: 34px;
	height: 31px;
	margin-bottom: 8px;
}

.att_descr_txt {
	font-weight: 300;
	font-size: 16px;
	line-height: 150%;
	text-align: center;
	color: #a4a9ac;
}

.faq__item {
	border: 1px solid rgba(0, 0, 0, 0.15);
	background: #fff;
	border-radius: 5px;
	padding: 17px 22px;
	margin-bottom: 12px;
	transition: 0.4s;
}

body .faq__body {
	max-height: 0;
	overflow: hidden;
	transition: 0.5s;

}

body .faq__body p {
	margin-bottom: 0;
	font-weight: 300;
	font-size: 14px;
	line-height: 150%;
	letter-spacing: 0.01em;
	color: #a4a9ac;
}

.faq__item.is-open .faq__body {
	max-height: 300px;
	margin-top: 13px;
}

.category_description h2,
.category_description h3 {
	font-size: 24px;
	text-align: left;
	/* margin-bottom: 16px !important; */
	text-transform: uppercase;
	color: #A4A9AC;
	font-weight: 500;
}

.category_description h3 {
	font-weight: 500;
	font-size: 20px;
	text-transform: unset;

}

.category_description {
	width: 100%;
	margin: 0 auto;
}

.category_description p {
	margin-bottom: 15px;
	color: #A4A9AC;
	font-weight: 300;
	font-size: 16px;
	line-height: 150%;
}

.category_description ul {
	list-style: disc;
	padding-left: 15px;
}

.category_description ol {
	list-style: decimal;
	padding-left: 15px;

}

.category_description ul li,
.category_description ol li {
	color: #A4A9AC;
	font-weight: 300;
	font-size: 16px;
	line-height: 150%;
	margin-bottom: 15px;
}

.category_description ul li a,
.category_description ol li a,
.category_description p a {
	color: #000;
	font-size: 16px;
	line-height: 150%;
}

.category_description img {
	width: 100% !important;
	display: block;
	height: auto !important;
	border-radius: 10px;
}




.desk_menu_wrapper .other_menus ul.other_menus_sub_1,
.desk_menu_wrapper .other_menus ul.other_menus_sub_2,
.desk_menu_wrapper .other_menus ul.other_menus_sub_3 {
	left: unset;
	right: 0;
	translate: 20px -20px;
	opacity: 0 !important;
	visibility: hidden !important;
	padding-left: 0;
}

.desk_menu_wrapper .other_menus ul.other_menus_sub_2,
.desk_menu_wrapper .other_menus ul.other_menus_sub_3 {
	right: 110%;
}

.desk_menu_wrapper .other_menus:hover ul.other_menus_sub_1 {
	opacity: 1 !important;
	visibility: visible !important;
	translate: 0 0 !important;
	scale: 1;
}

.desk_menu_wrapper .other_menus ul.other_menus_sub_1 li,
.desk_menu_wrapper .other_menus ul.other_menus_sub_2 li {
	position: relative;
	padding-left: 17px;
}

.desk_menu_wrapper .other_menus ul.other_menus_sub_1 li:hover .other_menus_sub_2,
.desk_menu_wrapper .other_menus ul.other_menus_sub_2 li:hover .other_menus_sub_3 {
	opacity: 1 !important;
	visibility: visible !important;
	right: 102%;
	left: unset;
	top: -16px;
	translate: 0 0;
}












































@media(max-width: 1440px) {
	.cart_modal {
		right: 20px;
	}
}

@media(max-width: 1280px) {

	.authorization_text {
		padding: 8px 15px;
	}

	.checkout_wrapper {
		gap: 40px;
	}

	.caption_bottom .price {
		font-size: 19px;
	}

	.desk_menu_wrapper .menu a {
		font-size: 12px;
	}

	.contactspage_wrapper {
		gap: 30px;
	}

	.contactspage_wrapper_s a {
		font-size: 20px;
	}

	.main_image_prod {
		max-width: 540px;
	}

	.prod_wrapper_cont {
		gap: 33px;
	}

	.thumbnails {
		aspect-ratio: 1.275 / 1;
	}
}

@media(max-width: 1200px) {
	.caption_bottom .price {
		font-size: 16px;
	}

	.buy_btn {
		font-size: 15px;
	}

	.desk_menu_wrapper .menu a {
		font-size: 11px;
	}

	.desk_menu_wrapper .menu {
		gap: 8px;
	}
}

@media(max-width: 1120px) {

	#payment_method {
		flex-direction: column;
	}

	#payment_method .radio {
		max-width: 100%;
	}

	.main_image_prod {
		max-width: 340px;
	}

	.thumbnails {
		aspect-ratio: 1.4 / 1;
	}

	.main_image_prod .slick-arrow {
		scale: 0.7;
	}

	.checkout_left,
	.checkout_right {
		flex-basis: 50%;
		width: 50%;
	}

	.checkout_contacts fieldset .form-group {
		flex-basis: 47.9%;
	}

	.del_addr fieldset .form-group {
		min-width: unset;
		width: 50%;
	}

	.caption_bottom .price {
		font-size: 14px;
	}

	.wish_prod_item_name a {
		line-height: 130%;
		font-size: 12px;
	}

	.wish_prod_item_art {
		font-size: 12px;
	}

	.wish_prod_item_left {
		gap: 10px;
	}

	.wish_prod_item_stock {
		font-size: 10px;
	}

	.wish_prod_item_price .price-old {
		font-size: 10px;
	}

	.wish_prod_item_price .price-new,
	.wish_prod_item_price_regular {
		font-size: 12px;
		white-space: nowrap;
	}

	.wish_prod_item_buy button {
		font-size: 12px;
		white-space: nowrap;
	}

	.wish_prod_item {
		gap: 15px;
	}

	.wish_prod_item_img img {
		width: 60px;
		min-width: 60px;
		height: 60px;
	}
}

@media(max-width: 1025px) {

	body {
		padding-top: 105px !important;
	}

	.main_image_prod .slick-next {
		right: 4px;
	}

	.main_image_prod .slick-prev {
		left: 4px;
	}

	.filter_choosen .ocf-selected-discard {
		height: 28px;
		padding: 0 13px;
	}

	.ocf-selected-discard svg {
		right: 6px;
		scale: 0.7;
	}

	.filter_choosen .ocf-selected-discard span {
		font-size: 12px;
	}

	.prod_wrapper_cont {
		gap: 30px;
	}

	.input-group.number-spinner.spinner-in-mob svg {
		min-width: 10px;
	}

	.xbundle_product_name {
		font-size: 12px;
	}

	.name-attr {
		font-size: 14px;
	}

	.price_buy_wrapper {
		margin: 15px 0;
	}

	.additional_imgs_prod {
		margin-right: 15px;
	}

	.prod_side_info_top {
		margin-bottom: 14px;
	}

	.product_page_title {
		font-size: 28px;
	}

	.swiper-viewport-bundle {
		margin-top: 18px;
	}

	.wish_btn_prod,
	#button-cart {
		height: 40px;
	}

	.main_price_prod {
		font-size: 30px;
	}

	.value-attr {
		font-size: 12px;
	}

	#category-products .product_name {
		font-size: 14px;
	}

	.burger_menu_m .menu_item:not(:last-child),
	.all_cat_modal .menu_item:not(:last-child) {
		margin-bottom: 8px;
		padding-bottom: 8px;
	}

	.desk_menu {
		display: none;
	}

	.slider_top_name {
		top: 20px;
		font-size: 20px;
	}

	.store-feature-title {
		font-size: 14px;
	}

	.category-wall-title {
		left: 9px;
		bottom: 9px;
		font-size: 12px;
		line-height: 130%;
	}

	.buy_btn {
		height: 40px;
		padding: 0 18px;
		font-size: 14px;
	}

	.buy_btn_empty {
		font-size: 12px;
	}

	.caption_bottom .price {
		font-size: 14px;
	}

	.ocf-value-name {
		font-size: 12px !important;
	}

	.ocf-theme-light .ocf-value-count {
		display: none;
	}

}

@media(max-width: 992px) {

	.footer_created {
		flex-direction: column;
	}

	.accountin_wrapper {
		flex-wrap: wrap;
	}

	.order_product_img {
		width: 110px;
		min-width: 110px;
	}

	.order_product_info_name {
		font-size: 16px;
	}

	.newsletter-modal-row>.newsletter-modal-title {
		font-size: 28px;
	}

	.newsletter-modal-row>.newsletter-modal-title {
		font-size: 30px;
	}

	.newsletter-modal-row>.newsletter-modal-title {
		font-size: 30px;
	}

	.review_gallery_item {
		flex: 0 0 calc(33.333% - 8px);
		max-width: 110px;
	}

	.contactspage_wrapper_s_wrapper {
		width: 100%;
	}

	.contactspage_wrapper_s {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}

	.contactspage_wrapper_s_title {
		text-align: center;
	}

	.contactspage_wrapper_s_title {
		font-size: 20px;
	}

	#payment_method {
		flex-direction: row;
	}

	.main_image_prod .slick-next {
		right: 4px;
	}

	.main_image_prod .slick-prev {
		left: 4px;
	}

	.additional_imgs_prod {
		min-width: 78px;
	}

	.thumbnails {
		aspect-ratio: 1.3 / 1;
	}

	.related_prod .product_name a,
	.viewed_products .product_name a {
		font-size: 14px;
		height: 54px;
	}

	.additional_imgs_prod .thumbnail {
		min-height: 70px;
	}

	.main_image_prod {
		max-width: 280px;
	}

	.checkout_wrapper {
		flex-direction: column;
	}

	.checkout_left,
	.checkout_right {
		flex-basis: 100%;
		width: 100%;
	}

	.checkout_contacts fieldset .form-group {
		flex-basis: 48.6%;
	}

	.wish_prod_item {
		flex-wrap: wrap;
	}

	.contactspage_wrapper {
		flex-direction: column;
		margin-bottom: 45px;
	}

	.contactspage_wrapper_f {
		flex-basis: 100%;
		width: 100%;
	}

	.contactspage_wrapper_s {
		flex-basis: 100%;
		width: 100%;
	}

	.footer_pay_mob {
		display: none !important;
	}

	.category_products {
		grid-template-columns: repeat(2, 1fr);
	}

	.prod_side_photos,
	.prod_side_info {
		width: 50%;
		flex-basis: 50%;
	}

	.additional_imgs_prod {
		gap: 8px;
		margin-right: 10px;
	}

	.additional_imgs_prod img {
		width: 70px;
		height: 70px;
		min-width: 70px;
	}

	.product_page_title {
		font-size: 25px;
	}

	.main_price_prod {
		font-size: 24px;
	}

	.main_price_prod {
		width: 130px;
	}

	.price_buy_wrapper {
		gap: 18px;
	}

	#button-cart {
		font-size: 14px;
		padding: 0 18px;
	}

	.wish_btn_prod {
		width: 35px !important;
		height: 35px !important;
	}

	.input-group.number-spinner.spinner-in-mob input {
		width: 35px;
		height: 35px;
	}

	.xbundle_product_img img {
		width: 50px;
		height: 50px;
		min-width: 50px;
	}

	.xbundle_products {
		gap: 11px;
	}

	.wish_btn_prod,
	#button-cart {
		height: 35px;
	}

	.header_column_soc {
		gap: 25px;
	}

	.header_column_r {
		gap: 17px;
	}

	.slider_top_name {
		top: 15px;
		font-size: 16px;
	}

	.category-wall {
		display: grid;
		gap: 15px;
		grid-template-columns: repeat(4, 1fr);
	}

	.product_name {
		font-size: 14px;
		margin-top: 4px;
	}

	.wish_btn {
		width: 30px;
		height: 30px;
	}

	.wish_btn svg {
		width: 60%;
	}

	.rating_info {
		margin-top: 10px;
	}

	.caption_bottom {
		margin-top: 10px;
	}

	.buy_btn {
		height: 32px;
		padding: 0 11px;
		font-size: 13px;
	}

	.caption_bottom .price {
		font-size: 16px;
	}

	.review_link_img {
		height: 365px;
		display: block;
	}

	.review_link_img img {
		height: 100%;
	}

	.latest_blog_wrapper {
		gap: 15px;
	}

	.footer_pay {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}

	.footer_wrapper {
		gap: 28px;
	}

	footer .menu_main,
	.footer_column_menu a {
		font-size: 13px;
	}

	.ocf-theme-light .ocf-filter.ocf-active {
		background: transparent !important;
	}

	.custom-select-value,
	.custom-option {
		font-size: 13px;
		font-weight: 400;
	}
}

@media(max-width: 769px) {

	.newsletter-modal-row>.newsletter-modal-title {
		font-size: 24px;
	}

	.newsletter-modal-row>.newsletter-modal-title {
		font-size: 26px;
	}

	.newsletter-modal-row:last-child {
		padding-bottom: 10px;
	}

	.review_gallery {
		/*flex-wrap: nowrap;*/
		overflow-x: auto;
		overflow-y: hidden;
		padding-bottom: 4px;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
	}

	.review_gallery_item {
		max-width: none;
		scroll-snap-align: start;
	}

	.price_buy_wrapper {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media(max-width: 600px) {

	.footer_created span {
		text-align: center;
		display: block;
	}

	.cart_prod_wrapper {
		position: relative;
	}

	.cart_items_wrapper {
		position: relative;
		min-height: 180px;
		height: 100%;
		/* Висота скрол області */
	}

	.cart_items {
		height: 100%;
		overflow-y: auto;
		overflow-x: hidden;
		padding-right: 10px;
		-webkit-overflow-scrolling: touch;
	}

	/* Приховуємо стандартний скрол */
	.cart_items::-webkit-scrollbar {
		display: none;
	}

	.cart_items {
		-ms-overflow-style: none;
		/* IE and Edge */
		scrollbar-width: none;
		/* Firefox */
	}

	/* Кастомний скролбар */
	.custom-scrollbar {
		position: absolute;
		top: 0;
		right: -3px;
		width: 6px;
		height: 100%;
		/* 100% від висоти cart_items_wrapper */
		background: rgba(241, 241, 241, 0.5);
		border-radius: 3px;
		opacity: 0;
		transition: opacity 0.3s;
		pointer-events: none;
	}

	.cart_items_wrapper:hover .custom-scrollbar,
	.cart_items_wrapper.active .custom-scrollbar {
		opacity: 1;
	}

	.scroll-thumb {
		position: absolute;
		width: 100%;
		background: #333;
		border-radius: 3px;
		cursor: pointer;
		transition: background 0.3s;
		pointer-events: auto;
	}

	.scroll-thumb:hover {
		background: #555;
	}

	.custom-scrollbar {
		opacity: 1;
		background: rgba(241, 241, 241, 0.8);
	}

	.scroll-thumb {
		background: #666;
	}



	.order_list_tab {
		font-size: 13px;
	}

	.order_list_product {
		width: 50px;
		min-width: 50px;
		height: 50px;
		border-radius: 5px;
	}

	.order_product_img {
		width: 90px;
		min-width: 90px;
	}

	#checkoutLoginModal>.modal-dialog {
		min-width: 95%;
	}

	.cart_products_mobile_title {
		display: block;
		font-size: 20px;
		font-weight: 600;
	}

	.cart_products_mobile {
		display: block;
	}

	.cart_products_mobile .checkout_card_items {
		margin-top: 13px;
	}

	.checkout_right_in legend,
	.checkout_right_in .cart_products {
		display: none;
	}

	body {
		padding-top: 120px !important;
	}

	.checkout_wrapper {
		flex-direction: column;
	}

	.checkout_left {
		display: flex;
		flex-direction: column;
	}

	#block-free-delivery {
		order: 1;
	}

	.checkout_contacts.checkout_info_block {
		order: 2;
	}

	.checkout_payments.checkout_info_block {
		order: 4;
	}

	.checkout_delivery {
		order: 3;
	}

	.checkout_comment {
		order: 5;
	}

	.checkout_wrapper {
		gap: 25px;
	}


	.contactspage_wrapper_s {
		gap: 10px;
	}

	.contactspage_wrapper_s a {
		font-size: 17px;
		padding: 0 10px;
		gap: 8px;
	}

	.mob_header_logo {
		display: block;
	}

	.header_column_soc {
		gap: 9px;
	}


	.mob_rating_n {
		display: none;
	}

	.thumbnails {
		aspect-ratio: unset;
		padding-bottom: 27px;
	}

	.main_image_prod {
		max-width: unset;
	}

	.checkout_contacts fieldset .form-group {
		flex-basis: 100%;
		width: 100%;
	}

	.check_del_img img {
		min-width: 30px;
		width: 30px;
	}

	.del_block_top .check_custom {
		min-width: 22px;
	}

	.checkout_comment {
		margin-top: 15px;
	}

	.checkout_right_in {
		padding: 20px 15px 27px;
	}

	.checkout_card_item {
		gap: 12px;
	}

	#payment_method .radio {
		max-width: 100%;
	}

	#payment_method {
		flex-direction: column;
	}

	.wish_prod_item_buy button {
		width: 100%;
	}

	.wish_prod_item {
		justify-content: unset;
	}

	.wish_prod_item_buy {
		width: 40%;
	}

	.form_inputs {
		flex-direction: column;
		margin-bottom: 10px;
		gap: 10px;
		align-items: flex-start;
		justify-content: start;
	}

	.contactspage_wrapper_f {
		padding: 30px 20px;
	}

	.black_btn {
		width: 100%;
		max-width: 100%;
	}

	.form_inputs input {
		min-height: 42px;
		width: 100%;
	}

	.caption_bottom {
		margin-top: auto;
	}

	.product_name a {
		margin-bottom: 12px;
		font-weight: 500;
		font-size: 14px;
	}

	.ocf-selected-discard svg {
		right: 0px;
		top: 50%;
		translate: 0 -50%;
	}

	.ocf-active-label {
		display: none !important;
	}

	.ocf-filter.ocf-active {
		padding: 0 !important;
	}

	.all_cat_modal_body {
		height: 94vh;
		overflow: auto;
	}

	.all_cat_modal_body .menu_item svg {
		display: none;
	}

	.all_cat_modal_body .sidebar_icon {
		position: absolute;
		right: 0;
		top: 0;
	}

	.all_cat_modal_body .menu_item_sub {
		max-height: 0;
		opacity: 0;
		visibility: hidden;
		transition: 0.5s;
	}

	.all_cat_modal_body .menu_item_sub.showSub {
		max-height: 2000px;
		opacity: 1;
		visibility: visible;
	}

	body .ocf-theme-light .ocf-selected-card,
	#product-category .ocf-theme-light .ocf-selected-card {
		position: unset;
		display: flex !important;
	}

	.ocf-content {
		background: #f4f4f4 !important;
	}

	.ocf-btn-mobile-fixed.ocf-mobile {
		display: none;
	}

	.footer_pay_mob {
		display: flex !important;
	}

	.pagination {
		gap: 5px;
		justify-content: center;
		width: 100%;
	}

	.pagin_next {
		margin-left: 10px;
	}

	.pagin_prev {
		margin-right: 10px;
	}

	.pagination li a,
	.pagination li.active {
		width: 30px;
		height: 30px;
		font-size: 12px;
	}

	/* .header_body.sticky {
		top: unset;
	} */

	.header_body .header_column_logo {
		display: none;
	}

	.header_wrapper .header_social {
		display: none !important;
	}

	/* .header_body {
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 998;
		background: #eee;
		padding: 0 10px;
	} */

	.store-feature:last-child {
		grid-column: 1 / 3;
	}

	.store-features {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
		margin-top: 10px;
		translate: 0;
		visibility: visible;
		opacity: 1;
		scale: 1;
	}

	.category-wall {
		gap: 10px;
		grid-template-columns: repeat(2, 1fr);
	}

	.footer_wrapper {
		/* flex-direction: column; */
		flex-wrap: wrap;
		gap: 35px;
	}

	.footer_column_logo,
	.footer_column_cat {
		width: 100%;
	}

	.footer_logo img {
		width: 210px;
	}

	.footer_column_logo {
		align-items: center;
	}

	.footer_pay_desk {
		display: none;
	}

	.footer_pay_mob {
		display: flex;
		margin-top: 40px;
		justify-content: center;
	}

	.header_top_mob {
		display: none;
		align-items: center;
		justify-content: space-between;
		gap: 15px;
		padding: 20px 0;
	}

	.telegram_mob {
		display: flex;
		align-items: center;
		gap: 10px;
		font-weight: 500;
		font-size: 14px;
		line-height: 120%;
		color: #222325;
	}

	.top_logo_mob {
		display: flex;
		align-items: center;
	}

	.top_logo_mob img {
		width: 148px;
	}

	.telegram_mob_img {
		width: 33px;
		height: 33px;
		border-radius: 50%;
		display: flex;
		justify-content: center;
		align-items: center;
		border: 1px solid #d5d4d1;
	}

	.telegram_mob_img img {
		width: 15px;
		height: 12px;
	}

	.swiper-main {
		margin-top: 0;
	}

	.swiper-main img {
		width: 100%;
	}

	.swiper-slide {
		border-radius: 0;
	}

	.container_top_mob {
		padding: 0;
	}

	.slider_top_name {
		top: 35px;
		right: 0;
		left: 0;
		font-size: 30px;
		max-width: 315px;
		margin: 0 auto;
		display: block;
		width: 100%;
	}

	.popular_cat {
		padding: 40px 0;
	}

	#common-home h2 {
		font-weight: 600;
		font-size: 25px;
		line-height: 100%;
		text-align: center;
		color: #222325;
		margin-bottom: 25px;
	}

	.category-wall-title {
		font-size: 14px;
	}

	.swiper-pagination-bullet {
		background: #fff;
		border-radius: 1px;
		width: 41px;
		height: 5px;
		opacity: 1 !important;
	}

	.swiper-pagination-bullet-active {
		background: #d9c8a4;
	}

	.swiper-pagination {
		margin-bottom: 10px;
	}

	/* .best_sell_block .nav-tabs a {
		padding: 10px;
		white-space: nowrap;
	}

	.best_sell_block .slick-prev {
		display: none !important;
	}

	.best_sell_block .slick-next {
		position: absolute;
		top: 50%;
		translate: 0 -50%;
		right: 0;
		z-index: 10;
		font-size: 0;
		width: 20px;
		height: 20px;
		color: transparent;
		background-color: white;
		background-image: url(/image/catalog/cat_slider_btn.svg);
		background-position: center;
		background-repeat: no-repeat;
	}

	.best_sell_block .nav-tabs {
		position: relative;
	}

	.best_sell_block .nav-tabs:after {
		content: '';
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		z-index: 6;
		width: 54px;
		background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 70%);
	} */

	.pdoduct_block_wrapper {
		display: block;
	}

	.best_sell_block .product-layout {
		margin-right: 15px;
	}

	.best_sell_block .container {
		padding: 0;
	}

	.best_sell_block h2 {
		padding: 0 15px;
	}

	.best_sell_block .nav-tabs {
		margin: 0 15px 30px;
	}

	.best_sell_block .tab-content {
		padding-left: 15px;
	}

	.review_link_img {
		height: 460px;
		width: 100%;
		object-fit: cover;
		border-radius: 10px;
	}

	.reviews_wrapper {
		padding-left: 15px;
	}

	.best_sell_block {
		margin-bottom: 40px;
	}

	.reviews {
		padding-bottom: 40px;
	}

	.our_insta_item img {
		height: 380px;
		min-height: 380px !important;
		object-fit: cover;
	}

	#newsletter-footer-email,
	#newsletter-footer-submit {
		height: 38px !important;
		min-height: 38px;
	}

	.cart_remove_prod {
		min-width: 12px;
	}

	.our_insta_item {
		margin-right: 10px;
		height: 380px;
	}

	.our_insta_head {
		margin-bottom: 25px;
		justify-content: center;
	}

	.our_insta .container {
		padding: 0;
	}

	.our_insta_head,
	.our_insta_mob {
		padding: 0 15px;
	}

	.our_insta_mob {
		margin-top: 20px;
	}

	.our_insta_wrapper {
		padding-left: 15px;
	}

	.our_insta_hea_r_btn {
		height: 40px;
		font-size: 14px;
		padding: 0 18px;
	}

	.insta_nik {
		font-size: 17px;
		margin-bottom: 5px;
	}

	.insta_sbscr {
		font-size: 12px;
	}

	.latest_blog {
		padding: 40px 0;
	}

	.latest_blog_wrapper {
		grid-template-columns: repeat(1, 1fr);
		gap: 25px;
	}

	.seo_block_flex {
		flex-direction: column-reverse;
		gap: 25px;
	}

	.seo_block {
		margin-bottom: 40px;
	}

	.footer_column_cat {
		text-align: center;
	}

	.footer .menu {
		align-items: center;
	}

	footer {
		padding: 40px 0 100px;
	}

	.footer_created {
		flex-direction: column;
	}



	.burger-menu-wraper {
		width: 25px;
	}

	.mob_header_logo img {
		width: 140px;
		min-width: 140px;
	}

	.header_search_open img {
		width: 22px;
	}

	.icon-wishlist {
		height: 22px;
	}

	.header_search_open {
		width: 22px;
		height: 22px;
		cursor: pointer;
	}

	#nav-icon3 span {
		height: 1px;
	}

	#cart button img {
		height: 24px;
	}

	.header_wrapper {
		gap: 33px;
	}

	.login_btn img {
		height: 24px;
	}

	.header_column_soc {
		/* position: absolute; */
		/* left: 0; */
		/* top: 50%; */
		/* translate: 0 -50%; */
		width: 100%;
	}

	.header_column_r {
		justify-content: space-between;
		width: 100%;
	}

	.all_cat {
		display: block;
		margin: 20px 0;
	}

	.all_cat_btn {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 10px;
		background: #d2e0f1;
		border-radius: 5px;
		padding: 0 20px;
		height: 58px;
		font-weight: 600;
		font-size: 18px;
		line-height: 100%;
		text-align: center;
		color: #222325;
	}

	.all_cat_modal {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 4000;
		background: white;
		padding: 20px 15px;
		transition: 0.5s;
		translate: 0 110%;
	}

	.modalShow.all_cat_modal {
		translate: 0 0;
	}

	.all_cat_modal_head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 20px;
		margin-bottom: 25px;
	}

	.all_cat_modal_title {
		display: flex;
		align-items: center;
		gap: 10px;
		font-weight: 600;
		font-size: 16px;
		line-height: 112%;
		text-align: center;
		color: #252322;
	}

	.all_cat_modal_close {
		cursor: pointer;
	}

	.product-thumb img {
		width: 100%;
		object-fit: cover;
	}

	.pdoduct_block_wrapper .product-layout {
		width: 218px;
	}

	body:has(#product-category) header {
		background: #f4f4f4;
	}

	.sort_wrapper {
		width: 60%;
		margin-left: auto;
	}

	#input-sort {
		width: 100% !important;
	}

	.ocf-btn-mobile-static.ocf-mobile {
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: unset;
		position: absolute;
		top: 0;
		top: -62px;
		left: 12px;
		width: 34.3%;
	}

	.ocf-filter-header-append {
		display: none !important;
	}

	.product_name_cat {
		margin-bottom: 2px;
	}

	.ocf-filter-header {
		pointer-events: none;
	}

	#product-category #content {
		position: relative;
	}

	.all_products_cat {
		display: none !important;
	}

	.header_top {
		text-align: center;
		font-size: 12px;
	}

	.ocf-btn.ocf-btn-default {
		height: 42px;
		background: #d2e0f1;
		border-radius: 6px;
		width: 100%;
		font-weight: 600;
		font-size: 16px;
		line-height: 130%;
		color: #222325;
		display: flex;
		align-items: center;
		flex-direction: row-reverse;
		gap: 5px;
		justify-content: center;
	}

	.ocf-value-list {
		transform: translateX(0) !important;
	}

	.ocf-header {
		display: flex !important;
		background: #f4f4f4;
		gap: 5px;
		font-weight: 600;
		font-size: 16px;
		line-height: 112%;
		text-align: center;
		color: #252322;
	}

	.ocf-body {
		margin-top: 0;
		padding: 0 20px;
	}

	body .ocf-filter-body>.ocf-value-list {
		position: unset !important;
		background: transparent !important;
		padding: 0 !important;
		overflow: unset !important;
	}

	.ocf-filter-header,
	.ocf-module-page-header {
		padding: 8px 0 !important;
	}

	.ocf-theme-light .ocf-filter+.ocf-filter {
		border-top: unset !important;
	}

	.ocf-hide-expand-1 {
		font-size: 13px !important;
	}

	.ocf-value,
	.ocf-value:active,
	.ocf-value:focus,
	.ocf-value:visited,
	.ocf-value:hover {
		margin-bottom: 8px !important;
	}

	.ocf-filter {
		margin: 0 !important;
	}

	.buy_btn {
		width: 43%;
		height: 38px;
	}

	body:has(#product-category) .seo_block .container {
		padding: 0;
	}

	.custom-select-value {
		font-size: 14px;
	}

	.custom-select-trigger {
		padding: 11px 15px 11px 17px;
		overflow: hidden;
	}

	.custom-arrow {
		margin-left: 0;
		scale: 0.7;
	}

	.breadcrumb {
		flex-wrap: nowrap;
		overflow: auto;
	}

	.breadcrumb li * {
		white-space: nowrap;
	}

	.product_page_title {
		font-weight: 600;
		font-size: 25px;
		line-height: 100%;
		text-align: center;
		color: #222325;
		margin-top: 10px;
	}

	.mob_rating {
		margin-bottom: 20px;
	}

	.prod_wrapper_cont {
		flex-direction: column;
	}

	.additional_imgs_prod {
		display: none;
	}

	.prod_side_photos,
	.prod_side_info {
		width: 100%;
		flex-basis: 100%;
	}

	.price_buy_wrapper {
		flex-wrap: wrap;
		flex-direction: row;
		margin-top: 20px;
	}

	.main_price_prod {
		width: 185px;
		font-size: 32px;
	}

	.input-group.number-spinner.spinner-in-mob input {
		width: 40px;
		height: 40px;
	}

	.prod_page_btns {
		width: 100%;
	}

	.prod_page_btns #button-cart {
		flex: 1;
	}


	.wish_btn_prod,
	#button-cart {
		height: 51px !important;
	}

	#button-cart {
		font-size: 17px;
	}

	.swiper-viewport-bundle {
		margin-top: 40px;
	}

	.xbundle_container>div {
		width: auto !important;
	}

	.xbundle_product_img img {
		width: 100%;
		height: auto;
		aspect-ratio: 1 / 1;
		min-width: unset;
	}

	.xbundle_product_name {
		font-size: 14px;
		margin-top: 15px;
	}

	.name-attr {
		min-width: 128px;
		width: 128px;
		flex-basis: unset;
	}

	.value-attr {
		font-size: 14px;
		text-align: left;
	}

	.reviews_block_title_t {
		font-size: 16px;
	}

	.review_popup {
		width: 92%;
	}

	.btn_rev_wrapper {
		flex-direction: column-reverse;
	}

	.viewed_products {
		margin-bottom: 45px;
	}

	#product-product #content {
		overflow: hidden;
	}

	.related_prod {
		margin: 20px 0 65px;
	}

	#product-product .pdoduct_block_wrapper .product-layout {
		margin-right: 15px;
	}

	#product-product .pdoduct_block_wrapper .slick-list {
		overflow: unset;
	}

	.product_page_bottom {
		margin-top: 40px;
	}

	.wish_btn_prod {
		width: 51px !important;
	}

	.main_image_prod a {
		display: block !important;
		border-radius: 10px;
		overflow: hidden;
	}

	img.mfp-img {
		height: auto;
	}

	body:has(#product-product) button.mfp-arrow-left {
		left: 65px;
	}

	.variantproducts {
		margin-top: 20px;
	}

	.prod_side_info_inner {
		margin-top: 40px;
	}

	.blog_wrapper {
		grid-template-columns: repeat(1, 1fr);
		column-gap: 15px;
		row-gap: 20px;
	}

	.article_name {
		margin-top: 10px;
	}

	.login_wrapper {
		background: transparent;
		padding: 0;
		border-radius: 0;
		width: 100%;
	}

	.login_page {
		margin-bottom: 70px;
	}

	.reg_items_wrapper {
		grid-template-columns: repeat(1, 1fr);
	}

	.cart_modal {
		right: 0;
		left: 0;
		top: unset;
		bottom: 0;
		width: 100%;
		border-radius: 0;
		translate: 0 20px;
	}

	.header_body.sticky .cart_modal {
		top: unset;
	}

	.main_image_prod .slick-arrow:hover {
		scale: 0.8;
	}

	.account_page {
		flex-direction: column-reverse;
		margin-bottom: 30px;
		gap: 22px;
	}

	.account_list {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		flex-direction: row;
		justify-content: center;
		/* background: #f4f4f4; */
		border-radius: 10px;
		gap: 10px;
	}

	.account_list a.active {
		background: #cdcdcd;
	}

	.account_list a {
		flex-basis: 48%;
		text-align: center;
		justify-content: center;
		font-size: 13px;
		height: 45px;
		background: #f4f4f4;
	}

	.accountin_wrapper {
		padding: 30px 20px;
	}

	.account_button {
		width: 100%;
		margin-top: 10px;
	}

	header:has(.openSearch) .header_top {
		opacity: 0;
		visibility: hidden;
	}

	.search_block {
		width: 100%;
		max-width: 100%;
		left: 0;
	}



	.ocf-theme-light .ocf-selected-filter {
		margin-bottom: 0 !important;
		padding: 0 !important;
		gap: 6px;
	}

	.ocf-theme-light .ocf-selected-discard {
		background-color: #f4f4f4 !important;
		border-radius: 33px !important;
		padding: 0 15px;
		height: 30px;
		padding-right: 22px;
		position: relative;
		border: 1px solid #000;
	}

	.ocf-theme-light .ocf-selected-discard span {
		font-weight: 500;
		font-size: 14px;
		line-height: 129%;
		text-align: center;
		color: #252322;
		white-space: nowrap;
		overflow: unset !important;
		text-overflow: unset !important;
	}

	.ocf-selected-discard svg {
		position: absolute;
		right: 10px;
	}

	#product-category .ocf-theme-light .ocf-selected-filter {
		display: flex;
		flex-wrap: wrap;
	}

	.free-delivery-info {
		flex-direction: column;
	}

	.free-delivery-info-l_btn,
	.free-delivery-info-r {
		width: 100%;
	}

	.del_addr fieldset {
		flex-direction: column;
	}

	.del_addr fieldset .form-group {
		width: 100%;
	}

	#shipping_method .radio:has(input:checked) .del_addr {
		max-height: 435px;
	}

	.test-div {
		flex-direction: column;
	}

	.test-div input {
		width: 100%;
		min-height: 44px;
		font-size: 17px;
	}

	.checkout_contacts fieldset input,
	#shipping_method .del_addr input,
	.checkout_comment textarea {
		font-size: 17px !important;
		line-height: 1em !important;
		-webkit-text-size-adjust: 100%;
		touch-action: manipulation;
	}

	.test-div input::placeholder,
	.checkout_contacts fieldset input::placeholder,
	#shipping_method .del_addr input::placeholder {
		font-size: 17px !important;
		-webkit-text-size-adjust: 100%;
		touch-action: manipulation;
	}

	.checkout_contacts fieldset input,
	#shipping_method .del_addr input {
		height: auto;
		padding: 14px 20px;

	}


	.test-div button {
		width: 100%;
	}

	.checkout_contacts_title_w {
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 10px;
		gap: 13px;
	}

	.category_descr_check {
		margin: 10px 0 13px;
	}

	.check_label {
		margin-bottom: 5px;
	}

	.checkout_contacts fieldset {
		gap: 8px;
	}

	.checkout_info_block {
		margin-bottom: 20px;
	}

	.free-delivery-info {
		margin-bottom: 10px;
	}

	.cart_items {
		max-height: 260px;
		height: 100%;
	}

	body:has(.cart_modal.show_cart),
	body.no-scroll {
		overflow: hidden;
	}

	.notification.success.show {
		/* flex-direction: column; */
		align-items: center;
		flex-wrap: wrap;
		text-align: center;
		justify-content: center;
	}

	#notification-container {
		width: 80%;
	}

	.login_page {
		margin: 15px 0 50px;
	}

	.login_title {
		margin-bottom: 13px;
	}

	#preorder-box .image img {
		width: 80px;
		min-width: 80px;
		height: 80px;
		object-fit: cover;
	}

	#preorder-box .modal-body .row .col-md-4 h4 a {
		font-size: 18px;
	}

	#preorder-box form>p {
		margin-top: 15px;
	}

	.search_links_title {
		margin-top: 12px;
		font-size: 14px;
	}

	.search_links a {
		font-size: 13px;
	}

	.mfp-image-holder .mfp-close,
	.mfp-iframe-holder .mfp-close {
		right: -4px;
	}

	.slick-dots {
		display: flex;
		align-items: center;
		gap: 5px;
		position: absolute;
		bottom: -35px;
		left: 50%;
		translate: -50% 0;
	}

	.slick-dots button {
		padding: 0;
		width: 10px;
		height: 10px;
		border-radius: 50%;
		background: #d7e4f5;
		border: unset;
		font-size: 0;
		transition: 0.3s;
	}

	.slick-dots .slick-active button {
		background: #6a809d;
	}

	#newsletter-footer-submit {
		width: 100%;
		border-bottom-left-radius: 0;
		border-top-left-radius: 0;
	}

	#newsletter-footer-bar h4 {
		font-size: 18px;
	}

	#newsletter-footer-bar p,
	#newsletter-footer-bar .checkbox label {
		font-size: 12px;
	}

	#newsletter-footer-error,
	#newsletter-footer-success {
		min-height: unset !important;
	}

	#shipping_method .radio label input {
		top: -17px;
		bottom: -17px;
		width: 114%;
		left: -20px;
	}

	.reviews_count {
		font-size: 12px;
	}

	.contactspage_wrapper.hide_contact {
		height: 360px;
	}

	.mail_success img {
		width: 70px;
	}

	.main_image_prod_wrapper {
		width: 100%;
		max-width: 100%;
	}

	.confirm_ch_block input {
		height: 22px;
	}

	.burger_menu_m .menu_item ul li:last-child,
	.all_cat_modal .menu_item ul li:last-child {
		padding-bottom: 130px !important;
	}

	.all_cat_modal .menu_item_sub_wrapper {
		height: 95vh;
	}

	.variant-items {
		grid-template-columns: repeat(6, 1fr);
	}

	#newsletterPopupModal .modal-dialog {
		border-radius: 16px;
		top: 50%;
		transform: translate(-50%, -50%);
		width: calc(100% - 20px);
		max-width: 420px;
		margin: 0;
	}

	#newsletterPopupModal .modal-content {
		max-height: calc(100vh - 20px);
		overflow: hidden;
		border-radius: 8px;
	}

	#newsletterPopupModal .modal-body {
		flex-direction: column;
		padding: 0;
	}

	#newsletterPopupModal .left-side {
		height: 250px;
		min-height: 0;
		flex: none;
		border-radius: 8px 8px 0 0;
	}

	#newsletterPopupModal .left-side img {
		height: 100%;
		width: 100%;
		object-fit: cover;
		border-radius: 8px 8px 0 0;
	}

	.newsletter-modal-row {
		padding: 19px 19px 0 19px;
	}

	.newsletter-modal-row:last-child {
		margin: 5px;
	}

	.newsletter-modal-row>.newsletter-modal-title,
	.newsletter-modal-row>.newsletter-modal-title span {
		font-size: 28px;
	}

	.newsletter-modal-row>.newsletter-modal-title span {
		display: unset;
	}

	.newsletter-modal-row>.newsletter-modal-text {
		margin-top: 10px;
	}

	.newsletter-modal-row:last-child>button.btn.btn-primary {
		margin-top: 5px;
	}

	.search_block {
		right: 0;
	}

	.cart_items::-webkit-scrollbar-thumb {
		background-color: #000;
		outline: 1px solid #efefef;
		border-radius: 20px;
	}

	.ocf-content {
		height: 101vh;
	}

	.notify_about_the_availability .notify_text {
		/*display: none;*/
		font-size: 10px;
	}

	.notify_about_the_availability>img {
		margin-right: 0;
	}

	.ocf-container {
		height: 100vh !important;
	}

	.empty_orderslist_img {
		width: 70%;
	}

	.similar-article-card .article-image {
		height: auto !important;
	}

	.ocf-body>.ocf-filter-list {
		padding-bottom: 70px !important;
	}

	.pdoduct_block_wrapper .slick-track {
		display: grid;
		grid-auto-flow: column;
		grid-auto-columns: max-content;
	}

	.ocf-container {
		padding-bottom: calc(16px + var(--safe-bottom));
		background: #f4f4f4 !important;
	}

	#column-left .ocf-container {
		width: 100%;
		max-width: 400px;
		overflow: auto;
		bottom: 0;
		overflow-anchor: unset !important;
		height: auto !important;
	}

	.main_image_prod {
		overflow: unset;
	}

	.header_text {
		width: 100%;
	}

	.faq__btn span {
		font-size: 16px;
	}

}

@media(max-width: 400px) {
	.header_top {
		font-size: 10px;
	}
}


@media(max-width: 375px) {
	.cart_modal {
		bottom: unset !important;
		top: 0 !important;
		height: 100dvh;
		overflow: auto;
		padding-bottom: calc(16px + env(safe-area-inset-bottom));
	}

	.cart_items_wrapper {
		min-height: 160px;
	}

	.newsletter-modal-row>.newsletter-modal-title,
	.newsletter-modal-row>.newsletter-modal-title span {
		font-size: 22px;
	}

	.newsletter-modal-row>.newsletter-modal-text {
		font-size: 12px;
	}

	.newsletter-modal-row:last-child>input.form-control {
		padding: 8px 0 6px 18px;
	}

	#newsletter-popup-submit {
		height: 40px;
		padding: 0;
	}

	#newsletterPopupModal .left-side {
		height: 190px;
	}
}

@media(max-width: 320px) {

	.product_page_title {
		text-align: left;
	}

	.pagination li:nth-child(8) {
		display: none;
	}

	.pagin_next {
		margin-left: 5px;
	}

	.pagin_prev {
		margin-right: 5px;
	}

	.variant-items {
		display: grid;
		grid-template-columns: repeat(5, 1fr);
	}
}

.form-pass {
	/* position: absolute;
	z-index: 2;
	right: 15px;
	top: 15px; */
	fill: rgba(34, 35, 37, 0.5);
	cursor: pointer;
	transition: 0.1s;
}

.form-pass.active path:nth-child(3) {
	display: none;
}

.product-thumb .product_name {
	/* padding: 0 12px; */
	box-sizing: border-box;
}

.viewed_products .product-thumb .product_name {
	padding: 0;
}

.product-thumb .product_name a {
	display: block;
}

.product-thumb .product_name a {
	display: block;
	white-space: normal;
	overflow: visible;
	text-overflow: unset;
	word-break: break-word;
	overflow-wrap: anywhere;
	hyphens: auto;
}

#reviewPreview {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

#reviewPreview .preview-item {
	position: relative;
	width: 90px;
	height: 90px;
	border-radius: 8px;
	overflow: hidden;
}

#reviewPreview .preview-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

#reviewPreview .remove-preview {
	position: absolute;
	top: 6px;
	right: 6px;
	width: 22px;
	height: 22px;
	border: 0;
	border-radius: 999px;
	background: rgba(0, 0, 0, .6);
	color: #fff;
	cursor: pointer;
	line-height: 22px;
	text-align: center;
	padding: 0;
}

.preview img {
	max-width: 100%;
}

.addr_wrapper_l {
	display: flex;
	align-items: center;
}

@media (max-width: 560px) {
	.notification-container {
		display: none;
	}
}

.del_addr fieldset>div {
	flex-basis: calc(50% - 10px);
}

.input-clear-wrap {
	position: relative;
}

.input-clear-wrap .form-control {
	padding-right: 32px;
}

.input-clear-btn {
	display: none;
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	width: 22px;
	height: 22px;
	border: none;
	background: #ffffff;
	color: #000;
	border-radius: 50%;
	font-size: 22px;
	line-height: 22px;
	text-align: center;
	cursor: pointer;
	padding: 0;
	z-index: 5;
}

.input-clear-btn:active {
	background: #ffffff;
}

.variant-block {
	margin-bottom: 20px;
}