* {
	box-sizing: border-box;
	outline: none;
	font: inherit;
	scroll-behavior: smooth; }
strong {
	font-weight: bold; }
em {
	font-style: italic; }
	
:root {
    --black-color: #232323;
	--main-color: #C50048;
	--grey-color: #CFCFCF;
	--main-v-margin: 60px;
	--main-width: 1640px;
	--shadow-box: 0 0 20px rgb(74 74 74 / 10%);
	}

body {
	display: flex;
    flex-direction: column;
    min-height: 100dvh;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color); }

.wrapper {
	max-width: var(--main-width);
	width: 100%;
	margin: 0 auto;
	padding-left: 10px;
	padding-right: 10px;
	flex-grow: 1; }
	
img {
	display: block;
	max-width: 100%;
	height: auto; }
	
h1 {
	font-size: 32px;
	font-weight: 700; }

h2 {
	font-size: 28px;
	font-weight: 700; }
	
h3 {
	font-size: 16px;
	font-weight: 700; }
	
p {
	margin-top: 0; }
	
	a {
		color: var(--main-color); }
	
.flexed {
	display: flex; }
.flexed-c {
	display: flex;
	align-items: center; }
.flexed-b-c {
	display: flex;
	justify-content: space-between;
	align-items: center; }
	
.data-hint {
	position: relative; }
.data-hint-text {
	position: absolute;
	bottom: -50px;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	padding: 5px 10px;
	border-radius: 5px;
	right: 0;
	font-size: 14px;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	white-space: nowrap;
	transition: 0.2s; }
.data-hint:hover .data-hint-text {
	bottom: -35px;
	opacity: 1;
	visibility: visible; }
	
.transparent-cover {
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgb(74 74 74 / 60%);
	z-index: 1000; }
.over-main-menu .transparent-cover {
	display: block; }
	
.alert {
	background: #fff;
	box-shadow: 0 0 10px var(--grey-color);
	color: var(--black-color);
	padding: 20px 30px;
	text-align: center;
	max-width: 600px;
	width: 90%;
	position: fixed;
	top: 20%;
	right: 10px;
	z-index: 9999999; }
.alert .close {
	width: 30px;
	height: 30px;
	padding: 4px;
	background: var(--black-color);
	border: none;
	cursor: pointer;
	font-size: 0;
	transition: .3s;
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center; }
.alert .close:hover {
	background: var(--main-color); }
.alert .close:before {
	content: "";
	background: url(/image/templates/close-btn.svg) no-repeat;
	background-position: center;
	display: block;
	width: 18px;
	height: 18px; }

/* css: header */
header {
	position: relative;
	z-index: 2000;
	background: #fff; }
header ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
	display: flex;
	flex-wrap: wrap; }
header a {
	color: var(--black-color);
	text-decoration: none;
	transition: .3s; }

.header-top {
	padding: 10px;
	border-bottom: 1px solid var(--grey-color); }
.top-menu li {
	padding-right: 30px;
	margin-right: 30px;
	border-right: 1px solid var(--black-color);
	font-size: 12px; }
.top-menu li:last-of-type {
	padding-right: 0;
	margin-right: 0;
	border-right: none; }
.top-menu a:hover {
	color: var(--main-color); }
.lang-switcher li {
	padding-left: 12px;
	margin-left: 12px;
	border-left: 1px solid var(--black-color);
	font-size: 12px; }
.lang-switcher li:first-of-type {
	padding-left: 0;
	margin-left: 0;
	border-left: none; }
.lang-switcher a,
.lang-switcher button {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	text-transform: uppercase; }
.lang-switcher a:hover,
.lang-switcher button:hover {
	color: var(--main-color); }
.lang-switcher .lang-active {
	font-weight: bold; }

.header-main {
	height: 60px;
	padding: 0 10px;
	border-bottom: 1px solid var(--grey-color); }
.header-main > div {
	display: flex;
	align-items: center;
	width: 33.3%; }
.search-icon {
	display: flex;
	margin-right: 20px;
	cursor: pointer; }
.menu-burger-btn {
	display: none; }
.header-main .logo {
	justify-content: center; }
.header-main .logo a {
	display: flex; }
.header-main .right-side {
	justify-content: flex-end; }
.header-main .right-side > div {
	margin-left: 20px; }
.header-main .right-side > div:first-of-type {
	margin-left: 0; }
.header-main .wishlist-icon {
	position: relative; }
.header-main .wishlist-count {
	position: absolute;
	top: -4px;
	right: -4px;
	background: var(--main-color);
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	width: 17px;
	height: 17px;
	border-radius: 50%;
	font-size: 10px; }
.header-bottom {
	position: relative; }
.header-bottom nav {
	padding: 0 10px; }

.mob-menu-header {
	display: none; }
.main-menu .level-1 > .menu-box {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	padding-top: 10px; }
.main-menu .level-1 > .menu-box > .menu-wrapper {
	background: #fff;
	padding: 10px;
	width: 100%; }
.main-menu .level-1.is-parent:hover > .menu-box {
	display: flex; }
.main-menu a {
	font-weight: 700;
	transition: .3s; }
.main-menu .active a {
	color: var(--main-color); }
@media (pointer: fine) and (hover: hover) {
	.main-menu a:hover {
		color: var(--main-color); }
}
	
.main-menu .level-1 > .menu-box > .menu-wrapper > ul {
	max-width: var(--main-width);
	width: 100%;
	margin: auto;
	padding: 40px 0; }
.main-menu .level-1 > a {
	padding: 10px 0;
	display: block; }
.main-menu .level-2 > .menu-box > .menu-wrapper > ul {
	display: flex;
	flex-direction: column;
	margin-top: 10px; }
.main-menu .level-3 a {
	font-weight: 400; }
.main-menu .level-3 {
	margin-bottom: 5px; }
.main-menu .level-3:last-of-type {
	margin-bottom: 5px; }

.header-bottom ul.main-menu .menu-show-all {
	display: none; }

.grid-1x6 > .menu-box > .menu-wrapper > ul {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: 20px; }
.grid-1x6 > .menu-box > .menu-wrapper > ul > li:nth-child(1) {
	grid-row: 1 / span 2;
	grid-column: 1 / 2; }
.grid-1x6 > .menu-box > .menu-wrapper > ul > li:nth-child(2) {
	grid-row: 1 / 2;
	grid-column: 2 / 3; }
.grid-1x6 > .menu-box > .menu-wrapper > ul > li:nth-child(3) {
	grid-row: 2 / 3;
	grid-column: 2 / 3; }
.grid-1x6 > .menu-box > .menu-wrapper > ul > li:nth-child(4) {
	grid-row: 1 / 2;
	grid-column: 3 / 4; }
.grid-1x6 > .menu-box > .menu-wrapper > ul > li:nth-child(5) {
	grid-row: 2 / 3;
	grid-column: 3 / 4; }
.grid-1x6 > .menu-box > .menu-wrapper > ul > li:nth-child(6) {
	grid-row: 1 / 2;
	grid-column: 4 / 5; }
.grid-1x6 > .menu-box > .menu-wrapper > ul > li:nth-child(7) {
	grid-row: 2 / 3;
	grid-column: 4 / 5; }
	
.flex-3 > .menu-box > .menu-wrapper > ul {
	display: flex;
	justify-content: space-between; }
.flex-3 > .menu-box > .menu-wrapper > ul > li {
	width: 30%; }
	
.simple-flex > .menu-box > .menu-wrapper > ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap; }
	
.cart {
	display: flex; }
.cart button.header-cart-icon {
	background: none;
	border: none;
	padding: 0;
	position: relative;
	cursor: pointer; }
.cart button.header-cart-icon svg {
	display: flex; }
span.cart-total {
	position: absolute;
	top: -6px;
	right: -4px;
	background: var(--main-color);
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	width: 17px;
	height: 17px;
	border-radius: 50%;
	font-size: 10px;
	font-weight: 400; }
	
.search-box {
	display: none;
	position: fixed;
	left: 0;
	top: 50px;
	right: 0;
	z-index: 9999; }
body.active-search .search-box {
	display: block; }
body.active-search .transparent-cover {
	display: block;
	z-index: 3000; }
.search-top-row {
	background: #fff;
	padding: 14px;
	display: flex;
	align-items: center;
	justify-content: space-between; }
.search-input-group {
	display: flex;
	align-items: center;
	position: relative;
	flex-grow: 1;
	margin-right: 20px; }
.search-top-row input[type="text"] {
	padding: 10px 20px 10px 40px;
	border: none;
	border-bottom: 1px solid var(--grey-color);
	border-radius: 0;
	font-weight: 600; }
.search-input-group .search-btn {
	position: absolute; }
.search-input-group .search-btn button {
	background: none;
	padding: 0;
	border: none;
	cursor: pointer;
	display: flex; }
.live-search-result {
	padding: 30px 40px;
	background: #fff;
	margin-top: 10px; }
.search-block-title {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 30px; }
.live-products .search-all a {
	background: none;
	border: none;
	padding: 0;
	color: var(--main-color);
	text-decoration: underline;
	cursor: pointer;
	display: flex;
	align-items: center;
	margin-bottom: 30px; }
.one-live-product-box {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 0 30px;
	margin-bottom: 50px; }
.one-live-product {
	display: flex;
	align-items: center;
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid var(--grey-color); }
.one-live-product:nth-child(1),
.one-live-product:nth-child(2) {
	margin-top: 0;
	padding-top: 0;
	border-top: none; }
.one-live-product img {
	width: 64px;
	height: auto;
	margin-right: 20px;
	flex-shrink: 0; }
.one-live-product .live-special,
.one-live-product .live-full-price {
	font-size: 18px;
	font-weight: 700;
	color: var(--main-color);
	white-space: nowrap;
	width: 100px;
	text-align: right;
	margin-left: 15px;
	flex-shrink: 0; }
.one-live-product .live-price {
	color: var(--grey-color);
	text-decoration: line-through;
	white-space: nowrap;
	width: 80px;
	text-align: right;
	margin-left: 15px;
	flex-shrink: 0; }
.one-live-product .search-prod-name {
	font-size: 12px;
	font-weight: 700;
	flex-grow: 1; }
.one-live-product .search-prod-name a {
	text-decoration: none;
	color: var(--black-color); }
.live-categories {
	padding-bottom: 30px;
	margin-bottom: 50px;
	border-bottom: 1px solid var(--grey-color); }
.one-live-category-box {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 20px; }
.one-live-category {
	font-size: 14px;
	font-weight: 700; }
.one-live-category a {
	color: var(--black-color);
	text-decoration: none; }
.one-live-category:after {
	content: url(/image/templates/menu-arrow-right.png);
	margin-left: 10px;
	position: relative;
	top: 2px;
	transition: .3s; }
.one-live-category:hover:after {
	margin-left: 15px; }
.one-live-deeper a {
	color: var(--black-color);
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	display: flex; }
.one-live-deeper a:before {
	content: url(/image/templates/search-icon.svg);
	margin-right: 10px; }


/* css: breadcrumbs */
ul.breadcrumb {
	list-style: none;
	padding: 0 10px;
	margin: 30px 0 60px;
	font-size: 12px;
	display: flex;
	align-items: center; }
ul.breadcrumb li:after {
	content: "/";
	margin: 0 4px; }
ul.breadcrumb li:last-of-type:after {
	display: none; }
ul.breadcrumb a {
	color: var(--main-color);
	text-decoration: none; }
	
/* css: home page */

.slide-banner {
	position: relative;
	margin: 60px 0;
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
	overflow: hidden;
	display: flex;
	align-items: center; }
.slider-holder .a-slider {
	display: flex;
	flex-grow: 1;
	gap: 0;
	overflow: hidden; }
.slider-holder .a-slider.mod-prod-list {
	margin-left: -10px;
	margin-right: -10px; }
.slider-holder .a-slider .one-slide {
	display: flex;
	flex-shrink: 0;
	width: 100%;
	transition: .3s; }
.slider-holder .cover {
	position: relative;
	display: flex;
	align-items: center; }
.slider-holder.bestseller-mod .one-slide,
.slider-holder.latest-mod .one-slide,
.slider-holder.image-list .one-slide,
.slider-holder.visited-products .one-slide,
.slider-holder.related-products .one-slide {
	width: 16.66%;
	padding: 10px; }
.slider-holder.bestseller-mod .arrow,
.slider-holder.latest-mod .arrow {
	top: -58px; }
.slider-holder.articles-mod .one-slide {
	width: 25%;
	flex-direction: column;
	padding: 10px; }
.slider-holder .arrow {
	position: absolute;
	z-index: 111;
	cursor: pointer; }
.slider-holder .arrow.don-t-show {
	display: none; }
.slider-holder .arrow.to-the-knee {
	opacity: .2;
	cursor: default; }
.slider-holder .arr-right {
	right: 15px; }
.slider-holder .arr-left {
	left: 15px; }
.mob-slide.slider-holder .arr-right {
	right: 0; }
.mob-slide.slider-holder .arr-left {
	left: 0; }
.slide-banner .swiper-pagination {
	bottom: 12px; }
.slide-banner .swiper-pagination-bullet {
	width: 11px;
	height: 11px;
	background: transparent;
	border-radius: 50%;
	border: 1px solid var(--black-color);
	box-shadow: none;
	margin: 0 5px;
	opacity: 1; }
.slide-banner .swiper-pagination-bullet-active {
	background: var(--black-color); }
	
.mod-heading {
	font-size: 30px;
	font-weight: 700; }
	
.mod-prod-list {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-gap: 20px; }
.mod-prod-list .product-layout > div {
	--shadow-box: 0 0 10px rgb(74 74 74 / 10%);
	box-shadow: var(--shadow-box);
	padding: 10px;
	text-align: center;
	font-size: 12px; }
.product-layout .prod-name a {
	text-decoration: none;
	color: var(--black-color); }
.product-layout .product-thumb {
	position: relative;
	display: flex;
	flex-grow: 1;
	flex-direction: column;
	justify-content: space-between;
	height: 100%; }
.product-layout .product-thumb .image a {
	display: flex;
	justify-content: center; }
.product-layout .caption {
	flex-grow: 1;
	border-top: 1px solid var(--grey-color);
	padding-top: 10px; }
.product-layout .prod-brand {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 3px; }
.product-layout .price {
	padding: 14px 0;
	font-size: 18px;
	font-weight: 700;
	color: var(--main-color);
	height: 70px; }
.product-layout .price-old {
	color: var(--grey-color);
	text-decoration: line-through;
	margin-top: 5px;
	/*font-size: 12px;*/ }
.product-layout button.button-wishlist {
	position: absolute;
	top: 10px;
	left: 10px;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer; }
.product-layout.in-wishlist .button-wishlist svg {
	fill: var(--main-color); }
.product-layout.in-wishlist .button-wishlist svg path {
	stroke: var(--main-color); }
.product-layout button.add-cart-btn,
.product-layout button.notify-btn {
	width: 100%;
	height: 32px;
	display: flex;
	align-items: center;
	background: var(--black-color);
	border: 1px solid var(--black-color);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	justify-content: center;
	cursor: pointer;
	transition: .3s; }
.product-layout button.notify-btn {
	font-size: 14px;
	border: 1px solid var(--grey-color);
	background: var(--grey-color); }
.product-layout button.add-cart-btn:hover {
	background: #fff;
	color: var(--black-color); }
	
.home-content .banner-box {
	margin: 60px 0; }
.home-content .banner-box .banner-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 30px; }
	
.home-cat {
	margin: 60px 0;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 30px;
	list-style: none;
	padding-left: 0; }
.home-cat li {
	height: 190px;
	position: relative; }
.home-cat a {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #fff;
	font-size: 32px;
	font-weight: 600;
	backdrop-filter: blur(4px);
	transition: .5s; }
.home-cat li.face {
	background: url(/image/catalog/site/face-care.jpg);
	background-position: center right;
	background-size: cover; }
.home-cat li.makeup {
	background: url(/image/catalog/site/makeup.jpg);
	background-position: center right;
	background-size: cover; }
.home-cat li.body {
	background: url(/image/catalog/site/body-care.jpg);
	background-position: center right;
	background-size: cover; }
.home-cat li:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--main-color);
	opacity: 0.25; }
.home-cat a:hover {
	backdrop-filter: blur(8px); }
	
.image-list[data-id="29"] {
	margin: 60px 0; }

/*.image-list[data-id="29"] .image-list-holder {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-gap: 30px; 
	list-style: none;
	padding-left: 0; }*/
.image-list[data-id="29"] .arrow {
	display: none; }
.image-list[data-id="29"] .image-list-holder div {
	display: flex;
	align-items: center;
	justify-content: center; }


	
.home-text {
	box-shadow: var(--shadow-box);
	padding: 40px; }
.home-text > div {
	max-width: 1345px;
	margin: auto; }
.column-text {
	column-count: 2;
	column-gap: 60px; }
.home-text ol {
	list-style: none;
	position: relative; }
.home-text ol li {
	counter-increment: item;
	margin: 15px 0; }
.home-text ol li:before {
	content: counter(item) " ";
	position: absolute;
	left: 0;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	color: #fff;
	background: var(--main-color);
	font-size: 16px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center; }
.important-text {
	font-size: 18px;
	margin-top: 30px; }
	
/*blog*/
	
.last-articles,
.list-articles {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 30px;
	margin-bottom: 60px; }
.last-articles .article-item > div,
.list-articles .article-item {
	box-shadow: var(--shadow-box);
	font-size: 12px; }
.last-articles .article-item > div {
	--shadow-box: 0 0 10px rgb(74 74 74 / 10%); }
.last-articles .blog-text,
.list-articles .blog-text {
	padding: 20px; }
.last-articles .blog-title a,
.list-articles .blog-title a {
	font-size: 16px;
	font-weight: 600;
	color: var(--black-color);
	text-decoration: none;  }
.last-articles .blog-title,
.list-articles .blog-title {
	margin-bottom: 10px; }
.last-articles .blog-text p:first-of-type,
.list-articles .blog-text p:first-of-type {
	margin-top: 0; }
.last-articles .blog-text p:last-of-type,
.list-articles .blog-text p:last-of-type {
	margin-bottom: 0; }
	
.last-articles.a-slider {
	margin-left: -10px;
	margin-right: -10px; }
	

.wrapper .blog-item-page {
	max-width: 1070px;
	margin: 0 auto; }
.blog-item-page h1 {
	text-align: center; }


/* css: footer */
footer {
	margin-top: 60px; }
footer a {
	color: var(--black-color);
	text-decoration: none;
	transition: .3s; }
footer a:hover {
	color: var(--main-color); }
.main-footer-row {
	border-top: 1px solid var(--grey-color);
	border-bottom: 1px solid var(--grey-color);
	padding: 25px 10px;
	display: flex;
	justify-content: space-between;
	align-items: center; }
.main-footer-row .left-side {
	display: flex;
	align-items: center; }
.footer-contact {
	margin-left: 50px;
	display: flex; }
.footer-contact .html {
	margin-right: 20px; }
.footer-contact .phones a {
	white-space: nowrap;
	display: block; }
.footer-contact .work-hours {
	margin-top: 5px; }
.footer-contact .soc-btns {
	display: flex;
	margin-top: 11px; }
.footer-contact .soc-btns > div {
	margin-right: 16px; }
.footer-contact .soc-btns > div:last-of-type {
	margin-right: 0; }
.footer-contact .form-btns button {
	background: var(--main-color);
	color: #fff;
	border: 1px solid var(--main-color);
	font-size: 12px;
	padding: 5px 15px;
	margin-right: 16px;
	margin-bottom: 5px;
	cursor: pointer;
	transition: .3s; }
.footer-contact .form-btns button:hover {
	background: #fff;
	color: var(--main-color); }
.footer-contact .form-btns button:last-of-type {
	margin-right: 0; }
.footer-menu {
	margin: 0;
	padding-left: 0;
	list-style: none;
	column-count: 2;
	column-gap: 50px;
	font-weight: 500; }
footer .copyright {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	font-size: 12px;
	padding: 10px 10px 20px 10px; }
	
	
/* css: product */
.main-prod-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	max-width: 1350px;
	margin: auto;}
.main-prod-row .prod-images {
	width: 663px;
	padding-right: 20px;
	display: flex;
	flex-shrink: 0; }
.main-prod-row .thumbnails {
	margin-left: 15px; }
.main-prod-row .main-image {
	box-shadow: var(--shadow-box); }
.main-prod-row .image-additional {
	margin-bottom: 20px;
	box-shadow: var(--shadow-box); }

.main-prod-row .prod-params {
	width: calc(100% - 663px); }
.prod-params .prod-manufacturer a {
	color: var(--black-color);
	text-decoration: none;
	text-transform: uppercase;
	display: flex;
	align-items: center; }
.main-prod-row .prod-params h1 {
	font-size: 26px; }

.prod-params .prod-sku {
	margin-bottom: 10px; }
.prod-params .prod-manufacturer svg {
	margin-left: 5px; }
.prod-params .prod-sku span {
	color: var(--grey-color); }
.prod-params h1 {
	margin: 20px 0; }
.prod-params .prod-price {
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
	margin: 45px 0; }
.prod-params .main-price {
	font-size: 35px;
	color: var(--main-color);
	font-weight: 600;
	order: 1;
	margin-right: 15px; }
.prod-params .old-price {
	font-size: 35px;
	color: var(--grey-color);
	text-decoration: line-through;
	order: 2; }
.prod-params .prod-buttons {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
	width: 100%; }
.prod-params .prod-buttons > div {
	width: 200px; }
.prod-params .button-cart,
.prod-params .notify-btn {
	width: 100%;
	height: 40px;
	font-size: 20px;
	font-weight: 700;
	background: var(--black-color);
	color: #fff;
	border: 1px solid var(--black-color);
	cursor: pointer;
	transition: .3s; }
.prod-params .button-cart:hover {
	background: #fff;
	color: var(--black-color); }
.prod-params .notify-btn {
	width: 360px;
	margin-top: 20px;
	border: 1px solid var(--grey-color);
	background: var(--grey-color); }
.prod-params .prod-wishlist {
	margin-left: 10px;
	border: none;
	padding: 0;
	background: none;
	cursor: pointer;
	display: flex;
	transition: .3s; }
.prod-params .prod-wishlist svg {
	transition: .3s; }
.prod-params .prod-wishlist:hover svg {
	fill: var(--main-color); }
.prod-params .product-variants {
	display: inline-block;
	position: relative;
	margin-bottom: 40px;
	max-width: 100%; }
.prod-params .product-variants select {
 	border: 1px solid var(--grey-color);
	padding: 10px 36px 10px 15px;
	font-weight: bold;
	appearance: none;
	background: transparent;
	max-width: 100%;
	color: var(--black-color);}
.prod-params .product-variants svg {
	position: absolute;
	right: 10px;
	top: 15px;
	z-index: -1; }
.shipping-info,
.bonus-info {
	display: flex;
	align-items: center; }
.bonus-info {
	margin-top: 20px; }
.shipping-info .text,
.bonus-info .text {
	font-size: 14px; }
.shipping-info span,
.bonus-info span {
	color: var(--grey-color);
	display: block; }
.shipping-info .prod-param-icon,
.bonus-info  .prod-param-icon {
	width: 60px;
	text-align: center;
	margin-right: 20px; }
.prod-timer {
	display: flex;
	gap: 7px;
	margin-top: 14px;
	order: 3;
	width: 100%; }
.prod-timer .info:before {
	content: url(/image/templates/icon-info.svg);
	height: 18px;
	width: 18px; }
.prod-timer .data-hint-text {
	right: unset;
	left: 0; }
	
.prod-info {
	margin: 60px 0; }
.prod-info .tab-holder {
	border-bottom: 1px solid var(--grey-color); }
.prod-info .nav-tabs {
	list-style: none;
	margin: auto;
	padding-left: 0;
	display: flex;
	max-width: 1350px; }
.prod-info .nav-tabs a {
	text-decoration: none;
	color: var(--black-color);
	display: block;
	padding: 6px 10px;
	border-bottom: 4px solid #fff;
	transition: .3s; }
.prod-info .nav-tabs li {
	margin-right: 10px; }
.prod-info .nav-tabs li:last-of-type {
	margin-right: 0; }
.prod-info .nav-tabs a:hover,
.prod-info .nav-tabs .active a {
	color: var(--main-color);
	border-bottom: 4px solid var(--main-color); }
.tab-content .tab-pane {
	display: none;
	max-width: 1350px;
	margin: auto;
	padding-top: 40px; }
.tab-content .tab-pane.active {
	display: block; }

.product-characteristics ul {
	list-style: none;
	margin: 0;
	padding-left: 0; }
.product-characteristics li {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px; }
.product-characteristics li:last-of-type {
	margin-bottom: 0; }
.product-characteristics .option-name {
	display: flex;
	white-space: nowrap;
	flex-grow: 1; }
.product-characteristics .option-name:after {
	content: "";
	border-bottom: 1px dotted var(--grey-color);
	width: 100%;
	margin: 0 5px;
	position: relative;
	top: -4px; }
	
span.fa-stack {
	position: relative;
	display: inline-block;
	width: 22px;
	height: 20px; }
span.fa-stack i {
	display: block;
	position: absolute; }
.review-item {
	display: flex;
	padding: 20px;
	margin-bottom: 30px;
	box-shadow: var(--shadow-box); }
.review-item:last-of-type {
	margin-bottom: 0; }
.review-item .left-side {
	width: 240px;
	padding-right: 30px;
	border-right: 1px solid var(--grey-color);
	flex-shrink: 0; }
.review-item .right-side {
	padding-left: 30px; }
.review-autor {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 10px; }
.review-date {
	font-size: 12px;
	color: var(--grey-color); }
.review-rating {
	margin-bottom: 12px; }
.tab-review .review-btn {
	max-width: 600px;
	display: block;
	margin: 0 auto 40px; }
.tab-review .stars {
	display: flex;
	align-items: center;
	gap: 20px;
	margin: 25px 0 40px; }
.tab-review .stars svg,
.tab-review .stars span.fa-stack {
	display: block;
	width: 27px;
	height: 27px; }
.tab-review .stars .full svg * {
	fill: var(--main-color); }
.tab-review .stars input {
	display: none; }
.tab-review .stars > div label {
	display: inline-block;
	padding: 0 5px; }
	
.rating > div {
	display: flex;
	align-items: center; }
.rating .text-reviews {
	font-size: 12px;
	margin-left: 20px; }
	
.prod-promo-box {
	margin-bottom: 45px;
	display: inline-block; }
.promo-shadow-box {
	display: flex;
	align-items: center;
	box-shadow: var(--shadow-box);
	height: 36px;
	padding-right: 4px;
	background: var(--black-color); }
	.promo-shadow-box .promo-copied {
		position: absolute;
		color: #fff;
		left: 0;
		right: 15px;
		text-align: center; }
	.promo-shadow-box.text-copied .promo-copied,
	.promo-shadow-box .promo-code {
		opacity: 1;
		visibility: visible; }
	.promo-shadow-box .promo-copied,
	.promo-shadow-box.text-copied .promo-code {
		opacity: 0;
		visibility: hidden; }
.discount-amount {
	width: 110px;
	height: 36px;
	background: var(--main-color);
	color: #fff;
	font-size: 24px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center; }
.promo-text {
	padding: 0 10px;
	font-size: 14px;
	color: #fff;
	font-weight: 800;
	text-transform: uppercase; }
.promo-code-box {
	height: 28px;
	display: flex;
	align-items: center;
	border: 2px solid #fff;
	border-radius: 3px;
	padding: 0 10px;
	background: var(--main-color);
	position: relative; }
.promo-code {
	padding: 0 30px;
	font-size: 18px;
	color: #fff;
	transition: .3s; }
.copy-btn {
	display: flex;
	cursor: pointer; }
.promo-instruction {
	font-size: 12px;
	display: block;
	text-align: right;
	color: var(--grey-color); }

.product-content .slider-holder .arr-right {
	top: -20px;
	right: 10px; }
.product-content .slider-holder .arr-left{
	top: -20px;
	right: 50px;
	left: unset; }
	
.visited-products {
	margin-top: 60px; }
	
	
/* css: account */
.account-login .login-box,
.account-login .reg-box,
.account-register .register-box,
.account-forgotten .forgotten-box,
.information-contact .content {
	max-width: 350px;
	margin: auto;
	text-align: center; }

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
textarea {
	padding: 10px 20px;
	border: 1px solid var(--black-color);
	border-radius: 2px;
	width: 100%;
	outline: none; }
.login-box .form-group,
.register-box .form-group,
.forgotten-box .form-group,
.information-contact .form-group {
	margin-bottom: 34px; }
.pass-link {
	display: flex;
	justify-content: flex-end;
	margin-top: 10px; }
.pass-link a {
	color: var(--main-color); }
.account-login .login-btn,
.account-login .reg-box a,
.reg-btn,
.forgotten-btn,
.information-contact .send-btn {
	height: 35px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--black-color);
	color: #fff;
	border: 1px solid var(--black-color);
	cursor: pointer;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	transition: .3s; }
.account-login .login-btn:hover,
.account-login .reg-box a:hover,
.reg-btn:hover,
.forgotten-btn:hover,
.information-contact .send-btn:hover {
	background: #fff;
	color: var(--black-color); }
.account-login .reg-box {
	margin-top: 60px; }
.reg-agree {
	text-align: left;
	margin-bottom: 10px; }
.forgotten-box .go-back {
	background: none;
	border: none;
	padding: 0;
	color: var(--main-color);
	text-decoration: underline;
	cursor: pointer;
	margin-top: 15px; }
	
.account-content {
	max-width: 1080px;
	margin: auto; }
.account-content .account-heading {
	display: flex;
	justify-content: space-between;
	align-items: center; }
.account-heading.logout-btn {
	justify-content: center; }
.account-content .account-heading a {
	background: var(--black-color);
	color: #fff;
	border: 1px solid var(--black-color);
	text-decoration: none;
	font-size: 16px;
	padding: 7px 60px;
	margin-top: 40px;
	transition: .3s; }
.account-content .account-heading a:hover {
	background: #fff;
	color: var(--black-color); }
.account-content .account-items {
	margin-top: 55px;
	display: flex;
	justify-content: space-between; }
.account-content .account-items a {
	width: 174px;
	display: block;
	text-align: center;
	box-shadow: var(--shadow-box);
	font-size: 16px;
	font-weight: 600;
	color: var(--black-color);
	text-decoration: none;
	padding: 34px 5px 20px;
	transition: .3s; }
.account-content .account-items a span {
	display: block;
	margin-top: 24px }
.account-content .account-items a:hover {
	background: var(--grey-color); }
	
.account-page {
	display: flex;
	margin-top: 40px; }
.account-page h1 {
	margin-top: 0; }
.account-page aside {
	order: 1;
	min-width: 224px;
	padding: 0 10px;
	margin-right: 50px; }
.account-page .account-page-content {
	order: 2;
	width: 100%; }
ul.sidebar-menu {
	margin: 0;
	padding-left: 0;
	list-style: none; }
ul.sidebar-menu li {
	margin-bottom: 14px; }
ul.sidebar-menu li:last-of-type {
	margin-bottom: 0; }
ul.sidebar-menu a {
	text-decoration: none;
	color: var(--black-color);
	font-weight: 700;
	/*display: inline-block;*/
	align-items: center;
	position: relative;
	transition: .3s; }
ul.sidebar-menu a:after {
	content: url(/image/templates/menu-arrow-right.png);
	margin-left: 7px;
	position: absolute;
	bottom: -2px;
	left: 100%;
	transition: .3s; }
ul.sidebar-menu a:hover {
	color: var(--main-color); }
ul.sidebar-menu a:hover:after {
	margin-left: 10px; }
	
.account-page .intup-block-x2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 35px 30px;
	margin-bottom: 40px; }
.account-page .btn-nl {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap; }
.account-page .btn-nl .form-group {
	display: flex;
	align-items: center; }
.account-page input[type="submit"] {
	font-weight: 600;
	font-size: 16px;
	background: var(--black-color);
	color: #fff;
	border: 1px solid var(--black-color);
	padding: 7px 80px;
	cursor: pointer;
	transition: .3s; }
.account-page input[type="submit"]:hover {
	background: #fff;
	color: var(--black-color); }
	
input[type="radio"] {
	accent-color: var(--main-color); }
	
.orders-list {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 30px; }
.one-order {
	box-shadow: var(--shadow-box);
	padding: 25px 20px; }
.orders-list .order-general {
	display: flex;
	align-items: center;
	justify-content: space-between; }
.one-order .order-numbers {
	width: 220px; }
.orders-list .order-mini-products {
	display: flex;
	align-items: center;
	width: 180px; }
.one-order .order-sum {
	width: 200px;
	display: flex;
	align-items: flex-end; }
.one-order span.order-num {
	font-size: 20px;
	font-weight: 700;
	color: var(--main-color); }
.one-order span.order-date {
	margin-left: 10px; }
.one-order .order-status {
	font-weight: 700;
	margin-top: 10px; }
.orders-list .order-products-images {
	display: flex; }
.orders-list .order-products-images img {
	margin-right: 10px;
	width: 64px;}
.orders-list .order-products-images img:last-of-type {
	margin-right: 0; }
.one-order .order-products-plus {
	margin-left: 5px;
	font-size: 16px;
	color: var(--main-color); }
.order-sum-sum {
	font-size: 20px;
	font-weight: 700;
	color: var(--main-color);
	margin-left: 10px;
	line-height: 1; }
.order-toggle-details span {
	display: flex;
	align-items: center;
	width: 22px;
	height: 22px;
	margin-left: 20px; }
.order-toggle-details svg {
	cursor: pointer; }
.open-details .order-toggle-details svg {
	transform: rotate(180deg); }
.orders-list .one-order.open-details .order-details {
	display: flex; }
.orders-list .order-details {
	border-top: 1px solid var(--grey-color);
	margin-top: 20px;
	padding-top: 20px;
	display: none; }
.order-products-total {
	width: 65%; }
.orders-list .order-delivery-payment {
	display: flex;
	flex-direction: column;
	width: 35%;
	padding-left: 30px; }
.orders-list .one-product {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--grey-color); }
.orders-list .one-product > div {
	margin-right: 15px;
	font-size: 13px; }
.orders-list .one-product > div:last-of-type {
	margin-right: 0; }
.orders-list .one-product .left-side {
	display: flex;
	align-items: center; }
.order-product-image {
	width: 64px;
	flex-grow: 0;
	flex-shrink: 0; }
.orders-list .one-product .order-product-name {
	margin-left: 10px;
	flex-shrink: 1;
	font-weight: 600; }
.orders-list .one-product .right-side {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 220px;
	flex-shrink: 0; }
.orders-list .order-product-price {
	white-space: nowrap;
	width: 110px; }
.order-product-sum {
	width: 100px;
	white-space: nowrap;
	font-size: 18px;
	font-weight: 700;
	color: var(--main-color); }
.orders-list .order-products-sum {
	display: flex;
	justify-content: space-between;
	margin-top: 30px; }
.orders-list .order-delivery-payment {
	display: flex;
	flex-direction: column;
	width: 40%;
	padding-left: 30px; }
.orders-list .order-payment {
	margin-bottom: 10px;
	display: flex;
	justify-content: space-between;
	text-align: right; }
.orders-list .order-payment, .orders-list .order-delivery {
	border: 1px solid var(--grey-color);
	border-radius: 3px;
	font-size: 12px;
	padding: 8px 14px; }
.order-details-sum-title {
	font-weight: 700; }
.order-details-sum-sum {
	font-size: 18px;
	font-weight: 700;
	color: var(--main-color);
	line-height: 1; }
.order-payment-value {
	font-weight: 600; }
.order-delivery {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 10px; }
.order-delivery > div {
	display: grid;
	grid-template-columns: 115px 1fr;
	grid-gap: 10px; }
.order-delivery-value,
.order-address-value,
.order-recipient-value {
	font-weight: 600; }

.bonus-total {
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 20px; }
.bonus-total span {
	color: var(--main-color); }
.bonus-heading {
	font-size: 12px;
	font-weight: 700; }
.bonus-list {
	margin: 30px 0 60px; }
.data-name {
	display: flex;
	align-items: center;
	color: var(--grey-color);
	font-size: 12px;
	font-weight: 600;
	padding-bottom: 10px;
	margin-bottom: 16px;
	border-bottom: 1px solid var(--grey-color); }
.bonus-item {
	display: flex;
	font-size: 12px;
	padding-bottom: 16px;
	margin-bottom: 16px;
	border-bottom: 1px solid var(--grey-color); }
.data-name > div,
.bonus-item > div {
	max-width: 170px;
	width: 100%;
	flex-shrink: 0;
	text-align: center;
	padding: 0 10px; }
.bonus-item .bonus-count,
.bonus-item .bonus-order-number span {
	color: var(--main-color);
	font-weight: 700; }
	
.account-wishlist .prod-remove {
	position: absolute;
	top: 0;
	left: 0;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	width: 32px;
	height: 32px;
	background: var(--grey-color);
	display: flex;
	align-items: center;
	justify-content: center; }

	
.account-register .restyled-checkbox {
	display: inline;
	margin-right: 10px; }
.account-register .restyled-checkbox:last-of-type {
	margin-right: 0; }
.account-register input[type="radio"] {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	position: absolute;
	opacity: 0; }
label.restyled-checkbox:has(input[type="radio"]:checked) .ui-checkboxradio-icon-space {
	opacity: 1; }
.radio-holder {
	margin-top: 10px; }
	
#account-edit form,
#account-password form {
	max-width: 700px;
	margin: auto; }


	
	
/* css: category */
.product-category h1 {
	text-align: center; }
.product-category .btn-group,
.product-category .btn-adaptive {
	display: none;
	gap: 15px; }
.product-category .btn-group button,
.product-category .btn-adaptive > * {
	width: 50%;
	padding: 5px 15px;
	color: var(--black-color);
	background: transparent;
	border: 1px solid var(--black-color);
	cursor: pointer; }
.product-category .search-btn-group button {
	width: 100%; }
.product-category .btn-adaptive a {
	text-align: center; }
.product-category .btn-adaptive .apply-btn {
	color: white;
	background: var(--black-color); }
.product-category .btn-adaptive {
	margin-top: 10px; }
.product-category .btn-group {
	margin-bottom: 10px; }
.product-category .filter-adaptive,
.product-category .order-adaptive,
.category-ordering .order-asc-desc .text {
	display: none; }
.product-category .filter-adaptive,
.product-category .order-adaptive {
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px; }
.category-ordering .radio-btn {
	display: none;
	flex-shrink: 0;
	position: relative;
	width: 15px;
	height: 15px;
	margin-right: 20px;
	border-radius: 50%;
	border: 1px solid var(--grey-color); }
.category-ordering .active .radio-btn:before,
.category-ordering .active + .radio-btn:before {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--main-color); }

.category-content {
	display: flex; }
.category-content .sidebar {
	width: 245px;
	margin-right: 30px; }
.category-content .sidebar ul {
	list-style: none;
	margin: 0;
	padding-left: 0; }
.category-content .main-content {
	width: calc(100% - 275px); }
.category-content .full-filters-list .w-filter-values {
	max-height: 200px; }
.category-content .w-filter-values ul {
	padding-top: 2px; }

body.filter .sidebar,
body.sorting .category-ordering,
body.filter .transparent-cover,
body.sorting .transparent-cover {
	display: block; }
body.filter .transparent-cover,
body.sorting .transparent-cover {
	z-index: 11111; }
	
.cat-prod-list {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));}

.cat-prod-list .product-layout {
	box-shadow: var(--shadow-box);
	padding: 10px;
	text-align: center;
	font-size: 12px; }
	.category-content .product-out-of-stock,
	.product-layout.product-out-of-stock {
		filter: grayscale(1); }
.category-content ul.sidebar-menu {
	font-size: 13px;
	padding-bottom: 22px;
	margin-bottom: 22px;
	border-bottom: 1px solid var(--grey-color); }
.full-filters-list .w-filter-option {
	margin-bottom: 22px; }
.full-filters-list .w-filter-option:last-of-type {
	margin-bottom: 0; }
.full-filters-list .box-heading {
	font-weight: 700;
	margin-bottom: 14px; }
.full-filters-list label a {
	font-size: 12px;
	color: var(--black-color);
	text-decoration: none;
	min-height: 16px; }
.full-filters-list li {
	margin-bottom: 10px; }
.restyled-checkbox {
	position: relative;
	padding-left: 22px;
	cursor: pointer;
	display: flex;
	flex-wrap: wrap;
	width: 100%; }
.restyled-radio .ui-icon-background, .restyled-checkbox .ui-icon-background {
	position: absolute;
	top: -1px;
	left: 0;
	width: 16px;
	height: 16px;
	border: 1px solid var(--grey-color); }
.restyled-checkbox .ui-checkboxradio-icon-space {
	content: url(/image/templates/filter-check.svg);
	position: absolute;
	top: 2px;
	left: 2px;
	width: 11px;
	height: 11px;
	transition: .2s;
	opacity: 0; }
label.restyled-checkbox.active-filter .ui-checkboxradio-icon-space {
	opacity: 1; }

.prod-labels {
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-end;
	gap: 4px;
	position: absolute;
	top: 10px;
	right: 10px; }
.prod-labels > div {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 20px;
	color: white;
	font-weight: 600;
	background: var(--main-color); }
.prod-labels .label-new {
	font-size: 11px;
	background: var(--black-color); }
	
.pagination-box {
	margin: 40px 0 60px; }
ul.pagination {
	margin: 0;
	padding-left: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center; }
.pagination a {
	font-weight: 500;
	text-decoration: none;
	color: var(--black-color);
	transition: .3s; }
.pagination a:hover,
.pagination .active span {
	color: var(--main-color);
	font-weight: 500; }
.pagination li {
	margin-right: 16px; }
.pagination li:last-of-type {
	margin-right: 0; }
.pagination .go-to-start {
	display: none; }
.pagination .go-to-next {
	order: 999;
	margin-left: 16px; }
.pagination .go-to-end:before {
	content: '...';
	margin-right: 16px; }
.pagination .go-to-next a,
.pagination .go-to-prev a {
	width: 20px;
	height: 20px;
	display: flex;
	font-size: 0;
	transform: rotate(90deg);
	background: url(/image/templates/arrow.svg);
	background-repeat: no-repeat;
	background-position: 6px 0; }
.pagination .go-to-prev a {
	transform: rotate(-90deg); }
	
.cat-description {
	box-shadow: var(--shadow-box);
	padding: 40px; }
.cat-description > div {
	max-width: 1000px;
	margin: auto; }

.schema-faq-page .faq-item {
	overflow: hidden;
	border: 1px solid var(--grey-color); }
.schema-faq-page .faq-question {
	padding: 10px 50px 10px 20px;
	font-weight: 700;
	position: relative;
	cursor: pointer; }
.schema-faq-page .faq-question:after {
	content: "";
	background: url(/image/templates/arrow-down.svg) no-repeat;
	width: 28px;
	height: 28px;
	position: absolute;
	right: 13px;
	top: 3px; }
.faq-item.active .faq-question:after {
	transform: rotate(180deg); }
.schema-faq-page .faq-question > p {
	margin-bottom: 0; }
.schema-faq-page .faq-item + .faq-item {
	margin-top: 20px; }
.schema-faq-page .faq-answer {
	padding: 15px 20px; }
.schema-faq-page .faq-answer-holder {
	height: 0;
	transition: .2s; }
	
.category-ordering {
	display: flex;
	align-items: center;
	margin-bottom: 30px; }
.order-asc-desc {
	display: flex;
	align-items: center; }
.category-ordering span {
	font-weight: 700; }
.category-ordering .one-sort a {
	font-size: 12px;
	color: var(--black-color);
	text-decoration: none;
	border: 1px solid var(--black-color);
	padding: 2px 16px;
	margin-left: 8px;
	transition: .3s; }
.category-ordering .one-sort a:hover,
.category-ordering .one-sort a.active {
	color: #fff;
	background: var(--black-color); }
.order-asc-desc > div {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 21px;
	border: 1px solid var(--black-color);
	padding: 2px 10px;
	margin-left: 8px;
	cursor: pointer;
	transition: .3s; }
.order-asc-desc a {
	display: flex;
	width: 100%;
	justify-content: center; }
.order-asc-desc div svg {
	fill: var(--black-color);
	transition: .3s; }
.order-asc-desc div.desc {
	transform: rotate(180deg); }
.order-asc-desc div.active {
	background: var(--black-color); }
.order-asc-desc div.active svg,
.order-asc-desc div:hover svg {
	fill: #fff; }
.order-asc-desc > div:hover {
	background: var(--black-color); }
	
.chosen-filters {
	margin-bottom: 15px; }
.chosen-filters ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
	display: flex;
	flex-wrap: wrap; }
.chosen-filters li {
	font-size: 12px;
	color: #fff;
	background: var(--black-color);
	padding: 2px 8px;
	margin-right: 8px;
	margin-bottom: 3px; }
.w-r-chosen-filter {
	display: flex;
	align-items: center; }
.w-r-chosen-filter a {
	display: flex;
	margin-left: 10px;}
.w-r-chosen-filter a svg * {
	transition: .3s; }
.w-r-chosen-filter a:hover svg * {
	stroke: var(--main-color); }



/* css: cart */
.cart.open .popup-cart-wrapper {
	display: flex; }
.popup-cart-wrapper {
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	justify-content: center;
	align-items: center;
	overflow: auto;
	background: rgb(74 74 74 / 60%);
	z-index: 2000; }
.popup-cart {
	width: 90%;
	max-width: 1350px;
	margin: auto; }
.popup-cart > div {
	background: #fff;
	padding: 30px 50px; }
.close-btn {
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--black-color);
	border: 1px solid var(--black-color);
	cursor: pointer;
	transition: .3s; }
.close-btn:hover {
	background: #fff; }
.close-btn svg {
	transition: .3s; }
.close-btn:hover svg * {
	stroke: var(--black-color); }
.cart-header.flexed-b-c {
	margin-bottom: 40px; }
.cart-prod-list {
	max-height: 284px;
	overflow-y: auto; }
.cart-prod-item {
	display: flex;
	align-items: center;
	margin-bottom: 18px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--grey-color); }
.cart-prod-item:last-of-type {
	margin-bottom: 0;
	border-bottom: none; }
.popup-cart .prod-img {
	width: /*64*/100px;
	flex-shrink: 0; }
.popup-cart .cart-remove {
	width: 48px; }
.popup-cart .cart-remove button {
	width: 48px;
	height: 48px;
	border: 0;
	background: #fff;
	padding: 0;
	cursor: pointer; }
.popup-cart .cart-remove button svg * {
	transition: .3s; }
.popup-cart .cart-remove button:hover svg * {
	stroke: var(--main-color); }
.popup-cart .prod-price {
	width: 110px;
	text-align: center; }
.popup-cart .prod-quantity {
	width: 125px;
	display: flex;
	align-items: center; }
.popup-cart .prod-total {
	width: 167px;
	font-size: 18px;
	font-weight: 700;
	color: var(--main-color);
	text-align: center; }
.popup-cart .prod-name {
	flex-grow: 1;
	padding: 0 15px; }
.popup-cart .prod-name a {
	font-weight: 700;
	transition: .3s; }
.popup-cart .prod-name a:hover {
	color: var(--main-color); }
.cart-prod-item .second-row {
	display: flex;
	align-items: center; }
.cart-bottom {
	margin-top: 20px; }
.total-text {
	font-size: 32px; }
.cart-total {
	font-size: 32px;
	font-weight: 700;
	color: var(--main-color);
	margin-left: 10px; }
.cart-bottom a {
	font-weight: 600;
	font-size: 16px;
	background: var(--black-color);
	color: #fff;
	border: 1px solid var(--black-color);
	padding: 7px 30px;
	cursor: pointer;
	text-align: center;
	display: block;
	transition: .3s; }
.cart-bottom a:hover {
	background: #fff;
	color: var(--black-color); }
.cart-bottom .close-cart {
	background: none;
	padding: 0;
	border: none;
	text-decoration: underline;
	color: var(--main-color);
	cursor: pointer;
	margin-right: 10px; }
.cart-button-holder {
	display: flex; }
.popup-cart .one-total {
	display: none; }
.cart-bottom .totals-total {
	display: flex;
	align-items: center; }
.cart-prod-item .prod-quantity input[type="text"],
.quickcheckout-prod-list .quantity input {
	font-size: 14px;
	border: 1px solid var(--grey-color);
	padding: 5px;
	width: 46px;
	text-align: center; }
.subtract-quantity {
	font-size: 32px;
	margin-right: 10px;
	padding: 5px;
	cursor: pointer; }
.add-quantity {
	font-size: 32px;
	margin-left: 10px;
	padding: 5px;
	cursor: pointer; }
	
.cart-related {
	margin-top: 20px; }
.cart-related-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 20px; }
.cart-related-item {
	display: flex;
	align-items: center;
	padding-bottom: 18px;
	margin-bottom: 18px;
	border-bottom: 1px solid var(--grey-color); }
.cart-related-item:last-of-type {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none; }
.cart-related .prod-price {
	width: 240px;
	display: flex;
	align-items: flex-end; }
.cart-related .main-price {
	width: 50%;
	text-align: right;
	font-size: 18px;
	font-weight: 700;
	color: var(--main-color); }
.cart-related .old-price {
	width: 50%;
	padding-left: 10px;
	color: var(--grey-color);
	text-decoration: line-through; }
.cart-related .add-to-cart {
	width: 48px; }
.cart-related .add-to-cart button {
	width: 48px;
	height: 48px;
	border: none;
	background: #fff;
	cursor: pointer; }
.cart-related .add-to-cart svg * {
	stroke: var(--main-color); }

	
/* css: checkout new */

.shipping-heading-info {
	display: flex;
	justify-content: space-between; }
.shipping-info-title .shipping-info-icon {
	border: 1px solid var(--main-color);
	color: var(--main-color);
	border-radius: 50%;
	width: 16px;
	height: 16px;
	display: inline-block;
	text-align: center;
	font-family: revert;
	line-height: 15px;
	font-size: 10px;
	font-weight: bold; }
.shipping-special-info {
	position: relative; }
.shipping-info-title {
	font-size: 13px;
	font-weight: bold;
	cursor: pointer;
	position: relative; }
.shipping-info-details {
	position: absolute;
	z-index: 1;
	background: white;
	border: 1px solid gray;
	right: 0;
	white-space: nowrap;
	padding: 7px 14px;
	display: none; }
	.shipping-info-details * {
		margin: 0; }
.shipping-info-title:hover + .shipping-info-details {
	display: block; }

#onepcheckout > .row {
	gap: 30px; }
#onepcheckout .mb-30 > div,
#onepcheckout .opc_block_totals .checkout-cart-accordion,
#onepcheckout .opc_block_totals .checkout-totals,
#onepcheckout .checkout-checkboxes {
	padding: 40px;
	box-shadow: var(--shadow-box);
	border-radius: 0; }
#onepcheckout a {
	color: inherit;
	text-decoration: none; }
#onepcheckout .opc_block_totals .checkout-cart-accordion {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 30px;
	margin-bottom: 30px; }
/*#onepcheckout .opc_block_totals .checkout-cart-accordion > div {
	width: 47.9%; }*/
#onepcheckout .opc_block_totals .totals-inner {
	padding: 0;
	box-shadow: none;
	border-radius: 0; }
#onepcheckout .chm-radio label input {
	outline: 1px solid var(--grey-color) !important;
	border: 3px solid white !important; }
#onepcheckout .chm-radio label input[type="radio"]:checked {
	background: var(--main-color); }
#onepcheckout .chm-radio label input[type="radio"]:checked:after {
	display: none; }
#onepcheckout .checkbox-check {
	background-color: white;
	border: 1px solid var(--grey-color);
	border-radius: 0; }
#onepcheckout .checkbox-input:checked + span.checkbox-check {
	}
#onepcheckout .btn-primary,
#onepcheckout .opc-btn-primary,
#onepcheckout .opc-btn {
	height: auto;
	min-height: auto;
	padding: 7px 10px;
	color: white;
	font-weight: 500;
	line-height: initial;
	border-radius: 0;
	border: 1px solid var(--black-color);
	background-color: var(--black-color);
	transition: .3s;
	cursor: pointer; }
#onepcheckout .btn-primary:hover,
#onepcheckout .opc-btn-primary:hover,
#onepcheckout .opc-btn:hover {
	background: #fff;
	color: var(--black-color); }
#onepcheckout #button-login-popup {
	width: 250px; }
#onepcheckout .confirm-block .opc-btn-primary {
	height: auto;
	line-height: initial;
	padding: 10px 50px;
	font-size: 21px;
	font-weight: bold;
	border-radius: 0; }
#onepcheckout .opc-btn-primary:hover {
	color: var(--black-color);
	background-color: white; }
#onepcheckout div input.form-control,
#onepcheckout textarea {
	border: 1px solid #919191;
	border-radius: 0; }
#onepcheckout textarea {
	width: 100%; }
#onepcheckout .checkout-heading,
#onepcheckout .checkout-cart-accordion .control-label {
	padding-top: 0;
	font-size: 16px;
	font-weight: bold; }
#onepcheckout .cart-list {
	padding: 0;
	box-shadow: none; }
/*#onepcheckout .cart-item + div.cart-item {
	border-top: 1px solid #E7E7E7; }*/
#onepcheckout .cart-item-prod-name a {
	text-decoration: none; }
#onepcheckout .cart-item:hover a {
	color: initial; }
#onepcheckout .cart-item-center {
	width: calc(100% - 385px);
	flex: none;
	/*flex-grow: 1;*/
	align-self: center; }
#onepcheckout .cart-item {
	align-items: center; }
#onepcheckout .cart-item .ch-cart-quantity {
	margin: 0 25px; }
.opc_block_cart .ch-cart-quantity input {
	margin: 0 10px; }
.opc_block_cart .ch-cart-quantity svg {
	width: 23px;
	height: 23px; }
#onepcheckout .cart-item .cart-item-price-quantity {
	width: auto;
	margin-top: 0;
	align-items: center; }
#onepcheckout .cart-item .cart-item-price-quantity .btn-remove {
	position: absolute;
	right: 0;
	background: none;
	top: 5px;
	cursor: pointer; }
.opc_block_cart .btn-remove svg {
	width: 24px;
	height: 30px;
	color: var(--grey-color);
	transition: .3s; }
.opc_block_cart .btn-remove:hover svg {
	color: var(--main-color); }
#onepcheckout .ch-cart-quantity .form-control {
	width: 50px;
	border: 1px solid #E7E7E7;
	border-color: #E7E7E7; }
#onepcheckout .ch-cart-quantity .form-control,
#onepcheckout .ch-cart-quantity .btn-quantity-minus,
#onepcheckout .ch-cart-quantity .btn-quantity-plus {
	height: 28px; }
#onepcheckout .ch-cart-quantity .btn-quantity-minus,
#onepcheckout .ch-cart-quantity .btn-quantity-plus {
	border: none;
	cursor: pointer; }
#onepcheckout .cart-item .product-model,
#onepcheckout .cart-item .cart-prod-info-reward,
#onepcheckout .checkout-address .checkout-heading,
#onepcheckout .checkout-address .control-label,
#onepcheckout .switch .checkbox-check,
#onepcheckout .chm-modal .modal-header:after,
#onepcheckout .chm-modal .close-modal,
#onepcheckout .customer-login .chm-input-icon,
#onepcheckout .checkout-сustomer .clearfix.w-100,
#onepcheckout .customer-guest-register label,
#onepcheckout .customer-guest-register label,
#onepcheckout .customer-login .opc-btn-grey {
	display: none; }
#onepcheckout .opc_block_shipping_method {
	margin-bottom: 0; }
#onepcheckout .opc_block_shipping_address .checkout-address,
#onepcheckout .checkout-checkboxes {
	padding-top: 10px; }
#onepcheckout .opc_block_shipping_method .checkout-shipping-method {
	padding-bottom: 15px; }
#onepcheckout .checkout-address .form-group:first-child {
	margin-bottom: 15px; }
#onepcheckout .checkout-col-fix-right {
	display: flex;
	flex-direction: column; }
#onepcheckout .checkout-checkboxes {
	order: 1; }
#onepcheckout .opc_block_confirm {
	order: 2;
	margin-top: 50px;
	text-align: center; }
#onepcheckout .opc_block_comment .checkout-comment {
	padding-bottom: 20px; }
#onepcheckout .checkout-cart-accordion input.form-control {
	margin: 10px 0 20px; }
/*#onepcheckout .opc_block_totals input[type="button"] {
	font-weight: bold;
	font-size: 16px;
	padding: 8px 7px; }*/

#onepcheckout .switch {
	display: flex;
	margin-bottom: 30px; }
#onepcheckout .switch,
#onepcheckout .switch label {
	font-size: 12px; }
#onepcheckout .switch > * {
	padding: 2px 15px;
	color: white;
	background: var(--grey-color);
	cursor: pointer; }
#onepcheckout .switch label {
	margin: 0 !important; }
#onepcheckout .customer-guest-register,
#onepcheckout .customer-login .modal-body,
#onepcheckout .register-form {
	/*display: flex;
	gap: 30px;
	flex-wrap: wrap;*/
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 30px;
	width: 100%; }
/*#onepcheckout .checkout-сustomer .form-group {
	width: 47.9%; }*/
#onepcheckout .active-1 .switch div:nth-child(1),
#onepcheckout .active-2 .switch div:nth-child(2),
#onepcheckout .active-3 .switch div:nth-child(3) {
	background: var(--black-color);
	cursor: default; }
#onepcheckout .active-1 .customer-guest-register,
#onepcheckout .active-2 .customer-login,
#onepcheckout .active-2 .register-form {
	display: none; }

#onepcheckout .customer-login {
	flex-grow: 1; }
#onepcheckout .customer-login .modal-header {
	height: auto;
	padding: 0;
	border: 0; }
#onepcheckout .chm-modal .modal-content {
	width: 100%; }
#onepcheckout .customer-login .modal-body,
#onepcheckout .customer-login .modal-footer {
	padding: 0; }
#onepcheckout .customer-login .chm-modal.sm-modal-4 {
	width: auto;
	max-width: 100%; }
#onepcheckout .row-flex,
#onepcheckout .modal-dialog {
	margin: 0; }
#onepcheckout .forgotten-pass {
	position: absolute;
	top: 74px;
	right: 0; }

.checkout-shipping-method .shipping_method_title {
	display: none; }
.checkout-shipping-method .shipping-method label,
.checkout-payment-method .payment-method label {
	font-size: 12px; }
#onepcheckout .chm-radio input[type="radio"]:checked + span {
	font-weight: bold; }

#onepcheckout .table-cart {
	width: 100%;
	margin: 0;
	border: 0; }
#onepcheckout .table-cart tr {
	display: none; }
#onepcheckout .table-cart .checkout-total-sub_total,
#onepcheckout .table-cart .checkout-total-reward,
#onepcheckout .table-cart .checkout-total-coupon,
#onepcheckout .table-cart .checkout-total-total {
	display: flex;
	justify-content: space-between;
	align-items: center; }
#onepcheckout .table-cart tr + tr {
	margin-top: 20px; }
#onepcheckout .table-cart .total-title {
	flex-grow: 1; }
#onepcheckout .table-cart .total-title,
#onepcheckout .table-cart .total-text {
	padding: 0;
	color: var(--black-color); }
#onepcheckout .checkout-total-title {
	display: flex; }
#onepcheckout .table-cart .total-text {
	min-width: auto;
	font-size: 16px;}
#onepcheckout .table-cart tr:first-child .checkout-total-title {
	font-size: 16px;
	font-weight: 600; }
#onepcheckout .opc_block_totals .checkout-total-sub_total .checkout-total-title.checkout-total-title {
	font-weight: bold; }
#onepcheckout .checkout-total-title:after {
	content: "";
	display: block;
	border-bottom: 1px dotted var(--grey-color);
	flex-grow: 1;
	height: 0;
	margin-top: 14px; }
#onepcheckout .table-cart .checkout-total-total {
	justify-content: flex-end;
	margin: 0;
	margin-top: 35px;
	font-size: 20px; }
#onepcheckout .checkout-total-total .total-last {
	flex-grow: 0;
	width: auto; }
#onepcheckout .checkout-total-total .total-title,
#onepcheckout .checkout-total-total .total-text {
	font-size: 24px;
	font-weight: 600; }
#onepcheckout .checkout-total-total .total-text {
	margin-left: 11px;
	color: var(--main-color); }
.opc_block_totals .table-cart .total-text {
	font-weight: bold; }

.checkout-checkboxes label {
	font-size: 12px; }
#onepcheckout .checkout-agree a {
	color: darkblue;
	text-decoration: underline; }
	
#onepcheckout .cart-list .cart-item-price,
#onepcheckout .cart-list .cart-item-total .text-cart-item-total {
	display: none; }
#onepcheckout .cart-list .cart-item-total {
	color: var(--main-color);
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	margin-top: 0; }
#onepcheckout .cart-item .cart-item-price-quantity .cart-totals {
	width: 100px;
	margin-right: 50px; }
#onepcheckout .cart-item {
	padding-top: 0;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #E7E7E7;
	border-top: none; }
#onepcheckout .cart-item:last-of-type {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none; }

.checkout-payment-method label img {
	display: none; }
	
.opc_block_shipping_address,
.opc_block_comment,
#onepcheckout .checkout-checkboxes {
	position: relative; }
.opc_block_shipping_address:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 20px;
	background: #fff;
	top: -20px; }
#onepcheckout .checkout-checkboxes:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 40px;
	background: #fff;
	left: 0;
	right: 0;
	top: -20px;
	z-index: 1; } 
/*.opc_block_comment:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 20px;
	background: #fff;
	bottom: -20px; }*/
.mb-30.opc_block_comment {
	margin-bottom: 0; }


/* css: checkout */

/*.checkout-main-box {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 30px;
	align-items: flex-start; }
.checkout-left,
.checkout-right,
.checkout-right .cart1 > .quickcheckout-content {
	display: grid;
	grid-gap: 30px; }
.checkout-block {
	box-shadow: var(--shadow-box);
	padding: 40px; }
.checkout-block .quickcheckout-heading {
	font-size: 16px;
	font-weight: 600;
	color: unset;
	margin-top: 0;
	background: none;
	padding: 0; }
.checkout-block .quickcheckout-content {
	border: none;
	padding: 0;
	margin-bottom: 0;
	margin-top: 30px; }
.checkout-main-box button {
	padding: 5px 25px;
	color: white;
	font-weight: 500;
	border: 1px solid var(--black-color);
	background: var(--black-color);
	transition: .3s;
	cursor: pointer; }
.checkout-main-box button:hover {
	color: var(--black-color);
	background: white; }
.checkout-main-box #reward-content {
	display: block; }*/

.checkout-user-box .blocks > div,
.checkout-user-box #create,
.checkout-user-box #create + label,
.checkout-user-box #shipping,
.checkout-user-box #shipping + label,
.logged-in .checkout-user-box,
.checkout-info-box .total-shipping,
.checkout-main-box button.button-update {
	display: none; }
.checkout-user-box .login-box button {
	margin-top: 20px; }
.checkout-user-box .login-box #login {
	display: flex;
	gap: 20px; }
.checkout-user-box #payment-address .quickcheckout-content,
.checkout-user-box #create_account > div {
	display: flex;
	flex-wrap: wrap;
	gap: 20px; }
.checkout-user-box #payment-address .col-sm-6 {
	width: 48.6% !important; }

.checkout-shipping-box .quickcheckout-heading {
	display: flex;
	justify-content: space-between; }
.checkout-shipping-box .shipping-info {
	font-size: 12px;
	position: relative;
	display: flex;
	align-items: center; }
.checkout-shipping-box .shipping-info:before {
	content: url(/image/templates/icon-info.svg);
	margin-right: 5px;
	height: 18px; }
.checkout-shipping-box .method-item > div,
.checkout-payment-box .method-item {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px; }
.checkout-shipping-box .method-item:last-child > div:last-child,
.checkout-payment-box .method-item:last-child {
	margin-bottom: 0; }

.checkout-right .quickcheckout-content {
	margin-top: 0;
	overflow: initial; }
.quickcheckout-prod-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--grey-color); }
.quickcheckout-prod-item:last-of-type {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none; }
.quickcheckout-prod-item .left-side {
	display: flex;
	align-items: center;
	flex-grow: 1;
	width: 70%; }
.quickcheckout-prod-item .name {
	margin-left: 10px; }
.quickcheckout-prod-item .name a {
	text-decoration: none;
	color: var(--black-color);
	font-size: 14px;
	font-weight: 700; }
.quickcheckout-prod-item .image {
	flex-shrink: 0;
	flex-grow: 0; }
.quickcheckout-prod-item .right-side {
	display: flex;
	align-items: center; }
.quickcheckout-prod-item .total {
	width: 120px;
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	color: var(--main-color); }
.quickcheckout-prod-item .cart-remove {
	width: 48px;
	display: flex;
	justify-content: center;
	flex-shrink: 0; }
.quickcheckout-prod-item .cart-remove button {
	border: none;
	background: none;
	padding: 0;
	cursor: pointer; }
.quickcheckout-prod-item .cart-remove svg * {
	transition: .3s; }
.quickcheckout-prod-item .cart-remove button:hover svg * {
	stroke: var(--main-color); }
.quickcheckout-prod-list .quantity .input-group {
	display: flex;
	align-items: center; }
	
.voucher .quickcheckout-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 30px; }
.voucher .voucher-item input {
	margin: 10px 0 30px; }

.checkout-total-box .totals {
	display: flex;
	justify-content: space-between; }
.checkout-total-box	.totals + .totals {
	margin-top: 20px; }
.checkout-total-box .totals.total-total {
	gap: 10px;
	justify-content: flex-end;
	margin-top: 30px;
	font-size: 18px; }
.checkout-total-box .total-total .text-right:last-child {
	color: var(--main-color); }
.checkout-total-box	.total-sub_total,
.checkout-total-box .total-total,
.checkout-total-box .totals	.text-right:last-child,
.checkout-info-box .checkout-comment > div {
	font-weight: 700; }

.checkout-info-box .checkout-comment > div {
	margin-bottom: 15px; }
.checkout-info-box textarea {
	width: 100%;
	margin-bottom: 20px;
	padding: 10px 15px; }
.checkout-info-box .quickcheckout-content {
	border: none;
	padding: 0; }
.checkout-info-box .cover-btn {
	margin-top: 30px;
	text-align: center; }
.checkout-info-box button {
	padding: 10px 50px;
	font-size: 18px; }
	
body .opc-loader-circle::before {
	border-top-color: var(--main-color); }
body .opc-loader-circle::after {
	border-bottom-color: var(--black-color); }

/* css: product */

.prod-images .more-images {
	text-align: center;
	color: var(--main-color);
	text-decoration: underline;
	cursor: pointer; }
.images-popup {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 11165;
	display: flex;
	flex-direction: column;
	text-align: right;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s; }
body.active-pop-up .images-popup {
	opacity: 1;
	visibility: visible; }
.images-popup .cover {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	background: white; }
.images-popup .cover-close {
	margin: 20px;
	font-size: 50px;
	line-height: 25px;
	transition: .2s;
	cursor: pointer; }
.images-popup .close {
	color: grey; }
.images-popup svg * {
	fill: grey; }
.images-popup .sliders {
	display: flex;
	align-items: center;
	flex-grow: 1; }
.images-popup .side-slider {
	position: relative;
	display: flex;
	justify-content: center;
	margin-left: 30px;
	padding: 50px 0; }
.images-popup .side-slider .a-slider {
	display: flex;
	flex-direction: column;
	height: 260px;
	overflow: hidden; }
.images-popup .side-slider .one-thumb {
	display: flex;
	flex-shrink: 0;
	justify-content: center;
	width: 120px;
	height: 130px;
	border: 1px solid transparent;
	border-radius: 5px;
	transition: .3s; }
@media (width > 960px) {
	.images-popup .side-slider .one-thumb {
		margin-left: 0 !important; }
	.images-popup .side-slider .arrow.to-the-knee {
		opacity: 1; }
	.images-popup .side-slider .arrow.light {
		opacity: .2; }
	.images-popup .side-slider .arrow.hide {
		display: none; }
}
.images-popup .main-slider .to-the-knee {
	opacity: .2; }
.images-popup .one-thumb.active,
.images-popup .one-thumb:hover {
	border: 1px solid var(--main-color); }
.images-popup .side-slider .cover-img {
	display: flex;
	padding: 5px 0; }
.images-popup .side-slider img {
	max-height: 100%;
	margin: auto; }
.images-popup .side-slider .arrow {
	position: absolute;
	right: unset;
	left: unset;
	display: flex;
	transform: rotate(90deg); }
.images-popup .side-slider svg {
	width: 30px;
	height: 30px;
	margin-top: 0;
	cursor: pointer; }
.images-popup .side-slider .arr-left {
	top: 0; }
.images-popup .side-slider .arr-right {
	bottom: 0; }
.images-popup .main-slider {
	flex-grow: 1; }
.images-popup .cover-main {
	position: relative;
	display: flex;
	align-items: center;
	width: 70%;
	margin: 0 auto; }
.images-popup .main-slider .arrow {
	position: absolute;
	top: 0;
	display: flex;
	align-items: center;
	z-index: 10;
	width: 30px;
	height: 100%;
	cursor: pointer; }
.images-popup .main-slider svg {
	width: 100%; }
.images-popup .main-slider .arr-left {
	left: 0; }
.images-popup .main-slider .arr-right {
	right: 0; }
.images-popup .main-slider .a-slider {
	display: flex;
	flex-grow: 1;
	overflow: hidden; }
.images-popup .main-slider .cover-img {
	display: flex;
	flex-shrink: 0;
	width: 100%;
	transition: .3s; }
.images-popup .main-slider img {
	margin: 0 auto; }

.product-content.product-out-of-stock .prod-images img,
.wrapper.product-out-of-stock .images-popup img {
	filter: grayscale(1); }
.product-product .product-out-of-stock-text {
	margin-top: 30px; }

/* css: search page */

.search-options .left-side {
	/*flex-grow: 1;
	padding-right: 40px;*/
	width: 100%;
	max-width: 500px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end; }
.search-options {
	margin-bottom: 30px; }
.search-options .top-row {
	display: flex;
	align-items: flex-end; }
.search-options .search-fild {
	/*flex-grow: 1;*/
	padding-right: 30px;
	width: 100%;
	max-width: 500px; }
.search-options .search-fild label {
	font-weight: 700;
	margin-bottom: 5px; }
.search-options .search-cat select {
	padding: 9px 20px;
	border: 1px solid var(--black-color);
	border-radius: 2px;
	width: 100%;
	outline: none; }
.search-options .button-search {
	background: var(--black-color);
	color: #fff;
	border: 1px solid var(--black-color);
	text-decoration: none;
	font-size: 17px;
	padding: 9px 20px;
	cursor: pointer;
	transition: .3s; }
.search-options .button-search:hover {
	background: #fff;
	color: var(--black-color); }
.search-options .bottom-row {
	margin-top: 5px;
	display: flex; }
.search-options .bottom-row > * {
	margin-right: 10px; }
.search-options .bottom-row > *:last-of-type {
	margin-right: 0; }
input[type="checkbox"]{
	accent-color: var(--main-color); }
	
/* css: forms */
.form-cover,
#modal-agree {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2001;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgb(74 74 74 / 60%); }
#modal-agree {
	display: flex; }
.form-cover {
	display: none; }
body.write-to-us .form-cover.contact-us,
body.corporate-client .form-cover.contact-corporate,
body.leave-review .form-cover.form-horizontal,
body.stock-active .form-cover.contact-stock {
	display: flex; }
.popup-form,
#modal-agree .modal-dialog {	
	background: #fff;
	padding: 20px;
	width: 90%;
	max-width: 700px; }
#modal-agree .modal-dialog {
	max-height: 95dvh;
	overflow: auto; }
.popup-form .form-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px; }
.popup-form label {
	font-size: 12px;
	font-weight: 700; }
.popup-form label span {
	color: var(--main-color); }
.popup-form .input-group {
	margin-bottom: 15px; }
.popup-form textarea {
	padding: 10px 20px;
	border: 1px solid var(--black-color);
	border-radius: 2px;
	width: 100%;
	outline: none;
	height: 100px; }
.popup-form .send,
.review-btn {
	width: 100%;
	background: var(--black-color);
	color: #fff;
	border: 1px solid var(--black-color);
	cursor: pointer;
	font-size: 16px;
	font-weight: 700;
	padding: 7px;
	transition: .3s; }
.popup-form .send:hover,
.review-btn:hover {
	background: #fff;
	color: var(--black-color); }
.popup-form .processing {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	background: rgba(255, 255, 255, .7); }
.popup-form.process .processing {
	display: block; }
.form-cover.form-horizontal .pull-right {
	text-align: center; }
.form-cover.form-horizontal button {
	width: 300px; }

form.form-bad-phone input[name="phone"],
form.form-bad-email input[name="email"] {
	border-color: red;
	border-width: 2px; }
.form-cover .contact-form-success,
.form-cover.form-success form,
.form-cover.form-success .html {
	display: none; }
.form-cover.form-success .contact-form-success {
	display: block; }
.form-cover .contact-form-success .success-msg {
	text-align: center; }
.form-cover .form-header .mod-heading-success {
	display: none; }
.form-cover.form-success .form-header .mod-heading-success {
	display: flex; }
.form-cover.form-success .form-header .mod-heading-normal {
	display: none; }

.simplebar-track.simplebar-vertical.simplebar-vertical .simplebar-scrollbar:before {
	top: 0;
	bottom: 0;
	opacity: 0.5;
	background: var(--main-color); }
.simplebar-track.simplebar-vertical.simplebar-vertical {
	width: 4px;
	background: var(--grey-color); }
.simplebar-track.simplebar-vertical	.simplebar-scrollbar {
	right: 0px;
	width: 4px; }
	
#modal-agree .modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center; }
#modal-agree .modal-header .modal-title {
	order: 1;
	font-size: 30px;
	font-weight: 700;
	margin: 0; }
#modal-agree .modal-header button {
	order: 2;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--black-color);
	border: 1px solid var(--black-color);
	cursor: pointer;
	transition: .3s;
	color: #fff;
	font-size: 50px;
	font-weight: 100; }
	
	
/* css: manufacturers */

.all-manufacturers {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 50px 30px; }