/*!
Theme Name: Tandem Tools
Theme URI: http://underscores.me/
Author: WEBTOP
Author URI: https://web24.pro/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: tandem
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Tandem Tools is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

:root {
	--container: 1316px;
	--gap: 24px;
	--radius: 2px;

	--text-size: 16px;
	--text-size-sm: 14px;
	--h1-size: 34px;
	--h2-size: 32px;
	--h3-size: 28px;
	--h4-size: 24px;
	--h5-size: 20px;
	--h6-size: 18px;

	--black: #212121;
	--black-2: #636363;
	--white: #ffffff;
	--yellow: #FFB901;
	--bg: #F6F6F6;
	--grey: #E1E1E1;

	--shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.05);
}
*, ::after, ::before {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	margin: 0;
	padding: 0;
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Rubik', sans-serif;
	line-height: 1.35;
	color: var(--black);
	background: var(--bg);
}
a {
	color: var(--black);
	transition: .5s;
}
a:hover {
	color: var(--yellow);
}
img {
	margin: 0;
	vertical-align: middle;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
.bg-cover {
	position: relative;
}
.bg-cover img,
.bg-cover video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.bg-cover span {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Rubik', sans-serif;
	font-weight: 500;
	margin: 0 0 calc(var(--gap) / 1.5);
	line-height: 1.25;
}
h1 {
	font-size: var(--h1-size);
}
h2 {
	font-size: var(--h2-size);
}
h3 {
	font-size: var(--h3-size);
}
h4 {
	font-size: var(--h4-size);
}
h5 {
	font-size: var(--h5-size);
}
h6 {
	font-size: var(--h6-size);
}
p, ul, ol, blockquote {
	margin: 0 0 calc(var(--gap) / 1.5);
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, p:last-child, ul:last-child, ol:last-child, blockquote:last-child {
	margin-bottom: 0;
}
iframe {
	max-width: 100%;
}
.form-fields {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.form-field {
	position: relative;
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 calc(var(--gap) / 2);
	margin-bottom: var(--gap);
}
.form-field-50 {
	flex: 0 0 50%;
	max-width: 50%;
}
::-webkit-input-placeholder {
	color: #9A9A9A;
}
::-moz-placeholder {
	color: #9A9A9A;
}
:-ms-input-placeholder {
	color: #9A9A9A;
}
:-moz-placeholder {
	color: #9A9A9A;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
select,
textarea {
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Rubik', sans-serif;
	line-height: 1.5;
	width: 100%;
	background: var(--white);
	border: 1px solid var(--grey);
	color: var(--black);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	padding: 10px 20px;
	min-height: 44px;
	outline: none;
	transition: .5s;
}
textarea {
	height: 145px;
	resize: vertical;
}
select {
	cursor: pointer;
}
.form-field-button.center {
	text-align: center;
}
.wpcf7-spinner {
	position: absolute;
	right: 0;
	top: 0;
}
.wpcf7-not-valid-tip {
	margin-top: 2px;
	font-size: var(--text-size-sm);
}
.wpcf7 form .wpcf7-response-output {
	margin: 20px 0 0;
	padding: 10px 15px;
	font-size: var(--text-size);
}


.screen-reader-text {
	display: none;
}
.container {
	width: 100%;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
}
.section {
	position: relative;
	padding-top: 80px;
	padding-bottom: 80px;
	z-index: 1;
}
.pt-0 {
	padding-top: 0 !important;
}
.pb-0 {
	padding-bottom: 0 !important;
}
.mt-0 {
	margin-top: 0 !important;
}
.mb-0 {
	margin-bottom: 0 !important;
}
@media (min-width: 992px) {
	.hide-lg {
		display: none !important;
	}
}


.heading {
	position: relative;
	margin-bottom: calc(var(--gap) * 1.35);
}
.heading.center {
	text-align: center;
}
.heading h1,
.heading h2 {
	font-size: var(--h1-size);
	font-weight: 500;
	text-transform: uppercase;
}


.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: var(--text-size);
	font-family: 'Rubik', sans-serif;
	font-weight: 500;
	line-height: 1.5;
	border: 1px solid transparent;
	padding: 9px 30px;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	text-decoration: none;
	outline: none;
	min-height: 54px;
	cursor: pointer;
	transition: .5s;
}
.btn-uppercase {
	text-transform: uppercase;
}
.btn.btn-sm {
	padding: 9px 30px;
	min-height: 44px;
}
.btn-primary {
	background-color: var(--yellow);
	border-color: var(--yellow);
	color: var(--black);
}
.btn-primary:hover {
	background-color: var(--black);
	border-color: var(--black);
	color: var(--white);
}
.btn-secondary {
	background-color: var(--black);
	border-color: var(--black);
	color: var(--white);
}
.btn-secondary:hover {
	background-color: var(--black-2);
	border-color: var(--black-2);
	color: var(--white);
}
.btn.btn-link {
	padding: 0;
	min-height: inherit;
	border: none;
}
.btn.btn-link:after {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/expand_down.svg);
    mask-image: url(images/expand_down.svg);
    background-color: var(--black);
    flex: 0 0 16px;
    max-width: 16px;
    width: 16px;
    height: 16px;
    margin-left: 4px;
    transition: .5s;
    transform: rotate(-90deg);
    z-index: 1;
}
.btn.btn-link:hover:after {
	background-color: var(--yellow);
}


.owl-dots {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: var(--gap);
	z-index: 9;
}
.owl-dots button {
	flex: 0 0 16px;
	max-width: 16px;
	width: 16px;
	height: 16px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	border: 2px solid var(--yellow) !important;
	margin-right: 12px;
	transition: .5s;
}
.owl-carousel.dots-white .owl-dots button {
	border-color: var(--white) !important;
}
.owl-dots button:last-child {
	margin-right: 0;
}
.owl-dots button:hover,
.owl-dots button.active {
	background: var(--yellow) !important;
}
.owl-carousel.dots-white .owl-dots button:hover,
.owl-carousel.dots-white .owl-dots button.active {
	background: var(--white) !important;
}



.owl-nav {
	position: relative;
	width: 70px;
	display: flex;
	align-items: center;
	z-index: 9;
}
.owl-nav:before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 1px;
	height: 100%;
	transform: translateX(-50%);
	background: var(--grey);
	z-index: -1;
}
.owl-nav button {
	position: relative;
	flex: 0 0 30px;
	max-width: 30px;
	width: 30px;
	height: 30px;
	margin-right: 10px;
	background: none !important;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .5s;
}
.owl-nav button:last-child {
	margin-right: 0;
}
.owl-nav button:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/expand_down.svg);
    mask-image: url(images/expand_down.svg);
    background-color: var(--black);
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    height: 100%;
    transition: .5s;
    z-index: 1;
}
.owl-nav button.owl-prev:before {
	transform: rotate(90deg);
}
.owl-nav button.owl-next:before {
	transform: rotate(-90deg);
}
.owl-nav button:hover:before {
	background-color: var(--yellow);
}


.soc-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
}
.soc-links li {
	margin-right: 8px;
}
.soc-links li:last-child {
	margin-right: 0;
}
.soc-links li.mobile {
	display: none;
}
@media (max-width: 991px) {
	.soc-links li.mobile {
		display: block;
	}
	.soc-links li.desktop {
		display: none;
	}
}
.soc-links li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
}
.soc-links li a svg {
	flex: 0 0 100%;
	max-width: 100%;
	height: 100%;
}
.soc-links li a path {
	fill: var(--black);
	transition: .5s;
}
.soc-links li a:hover path {
	fill: var(--black-2);
}
.soc-links.white li a path {
	fill: var(--white);
}
.soc-links.white li a:hover path {
	fill: var(--yellow);
}



.modal-mobile {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -9999;
	opacity: 0;
	transition: .5s;
}
.modal-mobile.show {
	z-index: 9999;
	opacity: 1;
}
.modal-mobile-bg {
	background: rgb(0 0 0 / 45%);
	position: absolute;
	opacity: 0;
	transition: .5s;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.modal-mobile.show .modal-mobile-bg {
	opacity: 1;
}
.modal-mobile-wrap {
	position: relative;
	background: var(--white);
	height: 100%;
	width: 100%;
	max-width: 360px;
	margin-left: auto;
	transform: translateX(100%);
	padding: 60px 20px 20px;
	transition: .5s;
	overflow: auto;
	z-index: 1;
}
.modal-mobile.show .modal-mobile-wrap {
	transform: translateX(0);
}
.modal-mobile-close {
	position: absolute;
	top: 15px;
	right: 15px;
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
	-webkit-mask-size: 28px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--black-2);
	width: 32px;
	height: 32px;
	border: none;
	padding: 0;
	cursor: pointer;
	outline: none !important;
	transition: .5s;
}
.modal-mobile-close:hover {
	background-color: var(--black);
}
.modal-mobile-search.search-form {
	position: relative;
	margin-bottom: 20px;
	z-index: 9;
}
.mobile-menu {
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
}
.mobile-menu li {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	z-index: 1;
}
.mobile-menu li:last-child {
	margin-bottom: 0;
}
.mobile-menu li a {
	order: 1;
	font-size: var(--text-size);
	flex: 0 0 100%;
	max-width: 100%;
	position: relative;
	font-weight: 500;
	display: block;
	text-transform: uppercase;
	padding: calc(var(--gap) / 2.2) 0;
	text-decoration: none;
	z-index: 1;
}
.mobile-menu li.menu-item-has-children > a {
	flex: 0 0 calc(100% - 32px);
	max-width: calc(100% - 32px);
}
.mobile-menu li:hover > a,
.mobile-menu li.current-menu-item > a {
	color: var(--yellow);
}
.mobile-menu-toggle {
	order: 2;
	-webkit-mask-size: 24px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/expand_down.svg);
	mask-image: url(images/expand_down.svg);
	background-color: var(--black);
	flex: 0 0 32px;
	max-width: 32px;
	width: 32px;
	height: 32px;
	cursor: pointer;
	transition: .5s;
}
.mobile-menu li.menu-item-has-children:hover > .mobile-menu-toggle {
	background-color: var(--yellow);
}
.mobile-menu li.menu-item-has-children.active > .mobile-menu-toggle {
	background-color: var(--yellow);
	transform: rotate(-180deg);
}
.mobile-menu ul {
	flex: 0 0 100%;
	max-width: 100%;
	display: none;
	order: 3;
	margin: 0;
	padding: 0 0 0 20px;
	list-style: none;
	z-index: 9;
}


.wp-caption {
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}
.wp-caption-text {
	text-align: center;
}
.gallery {
	display: flex;
	flex-wrap: wrap;
	margin: calc(var(--gap) * 1.5) calc(var(--gap) / -2) 2px;
}
.gallery:first-child {
	margin-top: 0;
}
.gallery:last-child {
	margin-bottom: calc(var(--gap) * -1);
}
.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.gallery-item > * {
	overflow: hidden;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
}
.gallery-columns-2 .gallery-item {
	flex: 0 0 calc(100% / 2);
	max-width: calc(100% / 2);
}
.gallery-columns-2 .gallery-item > * {
	height: calc((var(--container) - var(--gap)) / 2 / 1.4);
}
.gallery-columns-3 .gallery-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.gallery-columns-3 .gallery-item > * {
	height: calc((var(--container) - var(--gap) * 2) / 3 / 1.4);
}
.gallery-columns-4 .gallery-item {
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
}
.gallery-columns-4 .gallery-item > * {
	height: calc((var(--container) - var(--gap) * 3) / 4 / 1.4);
}
.gallery-columns-5 .gallery-item {
	flex: 0 0 calc(100% / 5);
	max-width: calc(100% / 5);
}
.gallery-columns-5 .gallery-item > * {
	height: calc((var(--container) - var(--gap) * 4) / 5 / 1.4);
}
.gallery-columns-6 .gallery-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
}
.gallery-columns-6 .gallery-item > * {
	height: calc((var(--container) - var(--gap) * 5) / 6 / 1.4);
}
.gallery-columns-7 .gallery-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
}
.gallery-columns-7 .gallery-item > * {
	height: calc((var(--container) - var(--gap) * 6) / 7 / 1.4);
}
.gallery-columns-8 .gallery-item {
	flex: 0 0 calc(100% / 8);
	max-width: calc(100% / 8);
}
.gallery-columns-8 .gallery-item > * {
	height: calc((var(--container) - var(--gap) * 7) / 8 / 1.4);
}
.gallery-columns-9 .gallery-item {
	flex: 0 0 calc(100% / 9);
	max-width: calc(100% / 9);
}
.gallery-columns-9 .gallery-item > * {
	height: calc((var(--container) - var(--gap) * 8) / 9 / 1.4);
}
.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: .5s;
}
.gallery-item a:hover img {
	transform: scale(1.08);
}
.gallery-caption {
	display: block;
}
.alignleft {
	float: left;
	margin-right: var(--gap);
	margin-bottom: var(--gap);
}
.alignright {
	float: right;
	margin-left: var(--gap);
	margin-bottom: var(--gap);
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: var(--gap);
}
img.alignleft,
img.alignright,
img.aligncenter {
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
}


.search-form {
	position: relative;
	z-index: 1;
}
.search-form form {
	display: flex;
}
input.search-field {
	flex: auto;
	-moz-border-top-right-radius: 0;
	-webkit-border-top-right-radius: 0;
	border-top-right-radius: 0;
	-moz-border-bottom-right-radius: 0;
	-webkit-border-bottom-right-radius: 0;
	border-bottom-right-radius: 0;
}
.search-submit {
	flex: 0 0 auto;
	-moz-border-top-left-radius: 0;
	-webkit-border-top-left-radius: 0;
	border-top-left-radius: 0;
	-moz-border-bottom-left-radius: 0;
	-webkit-border-bottom-left-radius: 0;
	border-bottom-left-radius: 0;
}
.search-results-ajax {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	z-index: 1;
}
.ajaxSearch-wrap {
	position: relative;
	background: var(--white);
	box-shadow: var(--shadow);
	padding: var(--gap);
	-webkit-border-radius: var(--radius);
	-moz-border-radius: var(--radius);
	border-radius: var(--radius);
	min-width: 320px;
	max-height: 565px;
	overflow: auto;
	z-index: 1;
}
.ajaxSearch-no-result {
	font-size: var(--h6-size);
	text-align: center;
	color: var(--black);
}
.ajaxSearch-item {
	position: relative;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--grey);
}
.ajaxSearch-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}
.ajaxSearch-item__wrap {
	position: relative;
	display: flex;
	align-items: center;
	text-decoration: none;
}
.ajaxSearch-item__image {
	flex: 0 0 68px;
	max-width: 68px;
	height: 68px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}
.ajaxSearch-item__image img {
	max-height: 68px;
}
.ajaxSearch-item__info {
	flex: auto;
	max-width: 100%;
}
.ajaxSearch-item__title {
	font-size: var(--text-size);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 12px;
}
.ajaxSearch-item__price {
	position: relative;
	display: flex;
	align-items: flex-end;
}
.ajaxSearch-item__price .price {
	line-height: 1.2;
	font-size: var(--h5-size);
	font-weight: 500;
	color: var(--black);
}
.ajaxSearch-item__price .price del {
	font-weight: 400;
	font-size: var(--text-size);
	display: block;
	opacity: .75;
}
.ajaxSearch-item__price .price ins {
	margin-top: -2px;
	display: block;
	color: var(--yellow);
	text-decoration: none;
}







.wrapper {
	position: relative;
	z-index: 1;
}

.header {
	position: relative;
	background: var(--yellow);
	padding: 18px 0;
	z-index: 92;
}
.header-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 70px;
}
.header-wrap > * {
	margin-left: calc(var(--gap) * 1.5);
}
.header-logo {
	max-width: 260px;
	margin-left: 0;
}
.header-logo img {
	max-height: 70px;
}
.header-search {
	flex: auto;
	max-width: 540px;
}
.header-contacts {
	flex: 0 0 auto;
	position: relative;
}
.header-contacts p {
	position: relative;
	margin-bottom: 1px;
	text-align: right;
	z-index: 1;
}
.header-contacts p:last-child {
	margin-bottom: 0;
}
.header-contacts p.schedule {
	margin-bottom: 4px;
	font-size: var(--text-size-sm);
	opacity: .75;
}
.header-contacts p.phone {
	font-weight: 500;
	display: flex;
	flex-direction: column;
	padding-left: 38px;
}
.header-contacts p.phone:before {
	content: '';
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/phone.svg);
    mask-image: url(images/phone.svg);
    background-color: var(--white);
    position: absolute;
    width: 32px;
    height: 32px;
    top: calc(50% - 16px);
    left: 0;
    z-index: 1;
}
.header-contacts p.phone a {
	text-decoration: none;
}
.header-contacts p.phone a:hover {
	color: var(--white);
}

.nav {
	position: relative;
	background: var(--white);
	box-shadow: var(--shadow);
	z-index: 91;
}
.nav-wrap {
	display: flex;
	justify-content: space-between;
}
.nav-catalog {
	position: relative;
	flex: 0 0 200px;
	max-width: 200px;
	z-index: 1;
}
.nav-catalog-toggle {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	background: var(--black);
	border: none;
	color: var(--white);
	padding: calc(var(--gap) / 2.4) calc(var(--gap) / 2) calc(var(--gap) / 2.4) var(--gap);
	height: 54px;
	font-size: var(--text-size);
	font-family: 'Rubik', sans-serif;
	font-weight: 500;
	line-height: 1.5;
	text-transform: uppercase;
	outline: none;
	cursor: pointer;
	transition: .5s;
}
.nav-catalog-toggle:hover,
.nav-catalog.active .nav-catalog-toggle {
	background: var(--black-2);
}
.nav-catalog-toggle:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/catalog.svg);
	mask-image: url(images/catalog.svg);
	background-color: var(--white);
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 24px;
	margin-right: 8px;
}
.nav-catalog-toggle span {
	flex: auto;
	text-align: left;
}
.nav-catalog-toggle:after {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/expand_down.svg);
	mask-image: url(images/expand_down.svg);
	background-color: var(--white);
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 24px;
	margin-left: 8px;
	transition: .5s;
}
.nav-catalog.active .nav-catalog-toggle:after {
	transform: rotate(180deg);
}
.nav-catalog-sub {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: calc(var(--container) * .25 - 10px);
	background: var(--white);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	z-index: 1;
}
.active > .nav-catalog-sub {
	display: block;
}
.main-menu {
	flex: auto;
	margin: 0 0 0 var(--gap);
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
}
.main-menu li {
	position: relative;
	z-index: 1;
}
.main-menu li:last-child {
	margin-right: 0;
}
.main-menu li:hover > a {
	background: var(--black-2);
	color: var(--white);
}
.main-menu li a {
	height: 54px;
	font-weight: 500;
	display: flex;
	align-items: center;
	padding: calc(var(--gap) / 2.4) calc(var(--gap) / 1.5);
	text-decoration: none;
	text-transform: uppercase;
}
.main-menu li.menu-item-has-children > a:after {
	content: '';
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 24px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/expand_down.svg);
	mask-image: url(images/expand_down.svg);
	background-color: var(--black);
	margin-left: 2px;
	transition: .5s;
}
.main-menu li.menu-item-has-children:hover > a:after {
	transform: rotate(180deg);
}
.main-menu li.menu-item-has-children:hover > a:after {
	background-color: var(--white);
}
.main-menu ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	background: var(--white);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	width: 280px;
	transition: .5s;
	z-index: 1;
}
.main-menu li:hover > ul {
	display: block;
}
.main-menu ul li {
	border-bottom: 1px solid var(--grey);
}
.main-menu ul li:last-child {
	border-bottom: none;
}
.main-menu ul li a {
	height: auto;
	min-height: 54px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.main-menu ul li.menu-item-has-children a {
	padding-right: calc(var(--gap) / 1.5);
}
.main-menu ul li.menu-item-has-children > a:after,
.main-menu ul li.menu-item-has-children:hover > a:after {
	transform: rotate(-90deg);
}
.main-menu ul ul {
	top: 0;
	left: 100%;
}
.nav-icons {
	display: flex;
	align-items: center;
}
.nav-icon {
	display: flex;
	flex: 0 0 54px;
	max-width: 54px;
	height: 54px;
	margin-left: 0px;
}
.nav-icon:first-child {
	margin-left: 0;
}
.nav-icon a {
	position: relative;
	flex: 0 0 100%;
	max-width: 100%;
	z-index: 1;
}
.nav-icon a:hover {
	background: var(--black-2);
}
.nav-icon a:before {
	content: '';
	-webkit-mask-size: 32px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--black);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transition: .5s;
	z-index: -1;
}
.nav-icon a:hover:before {
	background-color: var(--white);
}
.nav-icon.account a:before {
	-webkit-mask-image: url(images/user.svg);
	mask-image: url(images/user.svg);
}
.nav-icon.wishlist a:before {
	-webkit-mask-image: url(images/favorite.svg);
	mask-image: url(images/favorite.svg);
}
.nav-icon.cart a:before {
	-webkit-mask-image: url(images/cart.svg);
	mask-image: url(images/cart.svg);
}
.nav-icon.menu-toggle a:before {
	-webkit-mask-image: url(images/menu.svg);
	mask-image: url(images/menu.svg);
	-webkit-mask-size: 36px;
}
.nav-icon a span {
	position: absolute;
	top: 8px;
	right: 6px;
	width: 16px;
	height: 16px;
	background: var(--yellow);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	font-size: 11px;
	z-index: 1;
}





/*----- Catalog Start -----*/
.catalog-menu {
	position: relative;
	z-index: 1;
}
.catalog-menu > ul {
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
}
.catalog-menu > ul > li {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	border-bottom: 1px solid var(--grey);
	transition: .5s;
}
.catalog-menu > ul > li:last-child {
	margin-bottom: 0;
	border-bottom: none;
}
.catalog-menu > ul > li:hover,
.catalog-menu > ul > li.active {
	background: var(--black-2);
}
.catalog-menu ul li.loading:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: var(--white);
	opacity: .85;
	top: 0;
	left: 0;
	z-index: 1;
}
.catalog-menu ul li.loading:after {
	content: '';
	background: url(images/loading.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 40px;
	height: 40px;
	top: calc(50% - 20px);
	left: calc(50% - 20px);
	z-index: 2;
}
.catalog-menu > ul > li > a {
	min-height: 54px;
	padding: calc(var(--gap) / 2.4) var(--gap);
	flex: 0 0 100%;
	max-width: 100%;
	font-size: var(--text-size);
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.catalog-menu > ul > li:hover > a,
.catalog-menu > ul > li.active > a {
	color: var(--white);
}
.catalog-menu > ul > li.parent > a {
	flex: 0 0 calc(100% - 36px);
	max-width: calc(100% - 36px);
	padding-right: calc(var(--gap) / 1.5);
}
.catalog-menu-toggle {
	-webkit-mask-size: 24px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/expand_down.svg);
	mask-image: url(images/expand_down.svg);
	background-color: var(--black);
	flex: 0 0 36px;
	max-width: 36px;
	width: 36px;
	height: 36px;
	margin-top: -2px;
	transform: rotate(-90deg);
	cursor: pointer;
	transition: .5s;
}
.catalog-menu > ul > li:hover > .catalog-menu-toggle,
.catalog-menu > ul > li.active > .catalog-menu-toggle {
	background-color: var(--white);
}

/*----- Second Level -----*/
.catalog-menu > ul > li > ul {
	display: none;
	position: absolute;
	background: var(--white);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	width: calc(var(--container) - 100%);
	left: 100%;
	top: 0;
	margin: 0;
	padding: var(--gap) var(--gap) 0;
	list-style: none;
	-moz-column-count: 4;
	-webkit-column-count: 4;
	column-count: 4;
	-moz-column-gap: var(--gap);
	-webkit-column-gap: var(--gap);
	column-gap: var(--gap);
	z-index: 1;
}
.catalog-menu > ul > li.parent:hover > ul {
	display: block;
}
.catalog-menu > ul > li > ul > li {
	page-break-inside: avoid;
	break-inside: avoid-column;
	padding-bottom: var(--gap);
}
.catalog-menu > ul > li > ul > li > a {
	position: relative;
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--black);
	display: inline-flex;
	align-items: center;
	padding-bottom: 5px;
}
.catalog-menu > ul > li > ul > li > a:hover {
	color: var(--black-2);
}
.catalog-menu > ul > li > ul > li > a:after {
	content: '';
	display: block;
	width: 80px;
	height: 2px;
	background: var(--yellow);
	position: absolute;
	bottom: 0;
	left: 0px;
	z-index: 1;
}
/*----- Third Level -----*/
.catalog-menu > ul > li > ul > li > ul {
	margin: calc(var(--gap) / 1.5) 0 0;
	padding: 0 0 0 calc(var(--gap) / 1.5);
	list-style: none;
}
.catalog-menu > ul > li > ul > li > ul li {
	margin-bottom: 10px;
}
.catalog-menu > ul > li > ul > li > ul li:last-child {
	margin-bottom: 0;
}
.catalog-menu > ul > li > ul > li > ul li a {
	text-decoration: none;
}
.catalog-menu > ul > li > ul > li > ul li a:hover {
	color: var(--yellow);
}
/*----- Catalog End -----*/


.footer {
	background: var(--black);
	color: var(--white);
}
.footer-wrap {
	display: flex;
	justify-content: space-between;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.footer-widget {
	max-width: 25%;
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.footer-widget-title {
	font-weight: 500;
	margin-bottom: calc(var(--gap) / 1.2);
	text-transform: uppercase;
}
.footer-logo {
	margin-bottom: var(--gap);
}
.footer-logo img {
	max-height: 70px;
}
.footer-company {
	font-weight: 500;
	margin-bottom: var(--gap);
}
.footer-contacts {
	position: relative;
}
.footer-contacts-item {
	position: relative;
	margin-bottom: calc(var(--gap) / 2);
	padding-left: 36px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 28px;
	z-index: 1;
}
.footer-contacts-item:last-child {
	margin-bottom: 0;
}
.footer-contacts-item:before {
	content: '';
	position: absolute;
	width: 28px;
	height: 28px;
	top: calc(50% - 14px);
	left: 0;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: #9A9A9A;
	z-index: 1;
}
.footer-contacts-item.phone:before {
	-webkit-mask-image: url(images/phone.svg);
	mask-image: url(images/phone.svg);
}
.footer-contacts-item.schedule:before {
	-webkit-mask-image: url(images/clock.svg);
	mask-image: url(images/clock.svg);
}
.footer-contacts-item.address:before {
	-webkit-mask-image: url(images/location.svg);
	mask-image: url(images/location.svg);
}
.footer-contacts-item.e-mail:before {
	-webkit-mask-image: url(images/message.svg);
	mask-image: url(images/message.svg);
}
.footer-contacts-item p {
	margin-bottom: 0;
	font-weight: 500;
}
.footer-contacts-item p a {
	color: var(--white);
	text-decoration: none;
}
.footer-contacts-item p a:hover {
	color: var(--yellow);
}
.footer-soc-icons {
	margin-top: calc(var(--gap) / 2);
}
.footer-soc-label {
	font-weight: 500;
	margin-bottom: calc(var(--gap) / 2);
	color: #9A9A9A;;
}
.footer-menu {
	padding-left: calc(var(--gap));
	color: #9A9A9A;
	font-weight: 500;
}
.footer-menu li {
	margin-bottom: calc(var(--gap) / 2);
}
.footer-menu li:last-child {
	margin-bottom: 0;
}
.footer-menu li a {
	color: #9A9A9A;;
	text-decoration: none;
}
.footer-menu li a:hover {
	color: var(--yellow);
}
.footer-menu ul {
	display: none;
}

.footer-bottom {
	position: relative;
	background: var(--yellow);
	padding: 10px 0;
	z-index: 1;
}
.copyright {
	text-align: center;
	font-size: var(--text-size-sm);
	text-transform: uppercase;
}
.footer-bottom a {
	text-decoration: none;
}
.footer-bottom a:hover {
	color: var(--black-2);
}





.hero-section,
.heroSlider-item__wrap {
	position: relative;
	height: 720px;
	z-index: 1;
}
.heroSlider-item__bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.heroSlider-item__bg:after {
	content: '';
	background: linear-gradient(83.86deg, rgba(217, 217, 217, 0) 0%, rgba(0, 0, 0, 0.44) 64.84%);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.heroSlider-item__wrap {
	display: flex;
	justify-content: space-between;
}
.heroSlider-item__left {
	flex: 0 0 70%;
	max-width: 70%;
	padding: 80px 0 130px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.heroSlider-item__text-before-heading {
	font-size: var(--h5-size);
	font-weight: 300;
	margin-bottom: var(--gap);
	color: var(--white);
}
.heroSlider-item__heading {
	font-size: calc(var(--h1-size) * 1.55);
	font-weight: 500;
	line-height: 1.07;
	color: var(--white);
	text-transform: uppercase;
	margin-bottom: var(--gap);
}
.heroSlider-item__content {
	color: var(--white);
	margin-bottom: var(--gap);
	max-width: 520px;
}
.heroSlider-item__right {
	flex: 0 0 30%;
	max-width: 30%;
	padding: 80px 0 90px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.heroSlider-item__image {
	text-align: right;
}
.heroSlider-item__image img {
	width: auto !important;
	display: inline-block !important;
	max-height: calc(720px - 90px - 80px);
}
.owl-heroSlider .owl-dots {
	margin-top: 0;
	position: absolute;
	left: 50%;
	bottom: 40px;
	transform: translateX(-50%);
}




.banners-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.banners-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.banners-item__wrap {
	position: relative;
	height: 100%;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: var(--gap);
	min-height: 280px;
	color: var(--white);
	line-height: 1.07;
	z-index: 1;
}
.banners-item__image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.banners-item__image:after {
	content: '';
	background: linear-gradient(246.34deg, rgba(33, 33, 33, 0) 0%, #212121 100%);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.banners-item__text-before-heading {
	font-size: var(--h5-size);
	font-weight: 300;
	margin-bottom: 4px;
	text-transform: uppercase;
}
.banners-item__heading {
	font-size: var(--h1-size);
	font-weight: 500;
	margin-bottom: calc(var(--gap) / 2);
	text-transform: uppercase;
}
.banners-item__text-after-heading {
	font-size: var(--h4-size);
	color: var(--yellow);
	font-weight: 600;
	margin-bottom: var(--gap);
}




.offers-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
}
.offers-heading {
	flex: auto;
	margin-bottom: 0;
}
.offers-tab {
	flex: 0 0 auto;
	display: flex;
	margin: 0 94px 0 0;
	padding: 0;
	list-style: none;
}
.offers-tab li {
	margin-right: calc(var(--gap) / 2);
}
.offers-tab li:last-child {
	margin-right: 0;
}
.offers-tab li a {
	position: relative;
	display: block;
	padding: 6px 8px;
	border-bottom: 1px solid transparent;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	color: #81858C;
	text-decoration: none;
	text-transform: uppercase;
	z-index: 1;
}
.offers-tab li a:hover {
	color: var(--black);
}
.offers-tab li.active a {
	border-bottom-color: var(--yellow);
	color: var(--black);
}
.offers-blocks {
	flex: 0 0 100%;
	max-width: 100%;
	border-top: 1px solid var(--grey);
	margin-top: calc(var(--gap) / 1.2);
	padding-top: calc(var(--gap) * 1.4);
}
.offers-block {
	display: none;
}
.offers-block.active {
	display: block;
}
.offers-wrap .owl-nav {
	position: absolute;
	top: -85px;
	right: 0;
}




.page-header {
	position: relative;
	padding: var(--gap) 0 calc(var(--gap) * 1.4);
	z-index: 1;
}
.page-breadcrumbs {
	margin-bottom: calc(var(--gap) / 2);
}
.page-breadcrumbs:last-child {
	margin-bottom: 0;
}
.page-breadcrumbs a {
	text-decoration: none;
}
.page-breadcrumbs a:hover {
	color: var(--yellow);
}
.page-breadcrumbs span.breadcrumb_last {
	color: var(--yellow);
}
.page-title {
	font-size: var(--h1-size);
	font-weight: 500;
	text-transform: uppercase;
}

.error-404-number {
	font-size: calc(var(--h1-size) * 6);
	font-weight: 700;
	color: var(--grey);
	line-height: 1;
	text-align: center;
	margin-bottom: var(--gap);
}
.error-404-button {
	text-align: center;
}




.page-body-wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.page-body-sidebar {
	flex: 0 0 calc(25% - var(--gap) / 2);
	max-width: calc(25% - var(--gap) / 2);
}
.page-body-main {
	flex: 0 0 calc(75% - var(--gap) / 2);
	max-width: calc(75% - var(--gap) / 2);
}


.filter-button button {
	display: inline-flex;
	align-items: center;
	background: none;
	color: var(--black);
	font-size: var(--text-size);
	font-weight: 400;
	border: none;
	outline: none;
	padding: 0;
	cursor: pointer;
	transition: .5s;
}
.filter-button button:before {
	content: '';
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 24px;
	margin-right: 4px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/filter.svg);
	mask-image: url(images/filter.svg);
	background-color: var(--black);
	transition: .5s;
}
.filter-button button:hover {
	color: var(--yellow);
}
.filter-button button:hover:before {
	background-color: var(--yellow);
}

.widget-area {
	position: relative;
	background: var(--white);
	box-shadow: var(--shadow);
	padding: calc(var(--gap) / 3) var(--gap) var(--gap);
	z-index: 1;
}




.widget,
.berocket_single_filter_widget {
	position: relative;
	border-bottom: 1px solid var(--grey);
	margin-bottom: calc(var(--gap) / 3);
	z-index: 1;
}
.widget:last-child,
.berocket_single_filter_widget:last-child {
	margin-bottom: 0;
	border-bottom: none;
}
.bapf_sfilter {
	margin-bottom: 0;
}
.widget-title,
.bapf_head h3 {
	position: relative;
	padding: calc(var(--gap) / 1.3) 0;
	font-size: var(--h6-size);
	font-weight: 500;
	margin-bottom: 0;
}
.bapf_sfilter .bapf_colaps_smb {
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 24px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/expand_down.svg);
	mask-image: url(images/expand_down.svg);
	background-color: var(--black-2);
	cursor: pointer;
	transition: .5s;
}
.bapf_sfilter .bapf_colaps_smb:hover {
	background-color: var(--yellow);
}
.bapf_sfilter .bapf_colaps_smb.fa-chevron-up {
	transform: rotate(-180deg);
}
.bapf_body {
	margin-bottom: var(--gap);
}
.product-categories {
	padding: 0 0 var(--gap);
	list-style: none;
}
.product-categories li {
	margin-bottom: calc(var(--gap) / 2.4);
}
.product-categories li:last-child {
	margin-bottom: 0;
}
.product-categories li.cat-parent {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.product-categories li a {
	position: relative;
	padding: 2px 0;
	display: block;
	text-decoration: none;
}
.product-categories li.cat-parent > a {
	order: 1;
	flex: auto;
	max-width: calc(100% - 24px);
}
.product-categories li a:hover {
	color: var(--yellow);
}
.product-categories li.current-cat > a {
	font-weight: 500;
}
.product-categories-toggle {
	order: 2;
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 24px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/plus.svg);
	mask-image: url(images/plus.svg);
	background-color: var(--black-2);
	cursor: pointer;
	transition: .5s;
}
.product-categories-toggle:hover {
	background-color: var(--yellow);
}
.product-categories li.active > .product-categories-toggle {
	-webkit-mask-image: url(images/minus.svg);
	mask-image: url(images/minus.svg);
}
.product-categories ul {
	display: none;
	flex: 0 0 100%;
	max-width: 100%;
	order: 3;
	padding: 0 0 0 calc(var(--gap) / 2);
	margin: 10px 0 0 ;
	list-style: none;
}
.product-categories li.active > ul {
	display: block;
}
.bapf_slidr_main.ui-widget-content, .berocket_filter_price_slider.ui-widget-content {
	background: var(--grey);
	height: 2px;
}
.bapf_slidr_main.ui-widget-content .ui-slider-range, .berocket_filter_price_slider.ui-widget-content .ui-slider-range {
	background: var(--yellow);
}
.bapf_slidr_jqrui .bapf_from, .bapf_slidr_jqrui .bapf_to {
	color: var(--black-2);
}
.bapf_slidr_main.ui-widget-content .ui-slider-handle, 
.berocket_filter_price_slider.ui-widget-content .ui-slider-handle, 
.slide.default .bapf_slidr_main .ui-state-default, 
.slide.default .bapf_slidr_main .ui-widget-header .ui-state-default, 
.slide.default .bapf_slidr_main.ui-widget-content .ui-state-default, 
.slide.default .berocket_filter_price_slider .ui-state-default, 
.slide.default .berocket_filter_price_slider .ui-widget-header .ui-state-default, 
.slide.default .berocket_filter_price_slider.ui-widget-content .ui-state-default {
	background: var(--yellow);
	border: 4px double var(--white);
	outline: none !important;
	font-size: 16px;
	top: -7px;
}
.bapf_sfilter ul li {
	display: flex;
	margin-bottom: calc(var(--gap) / 2.4) !important;
}
.bapf_sfilter ul li:last-child {
	margin-bottom: 0 !important;
}
.bapf_ckbox_sqchck input[type=checkbox] {
	flex: 0 0 16px;
	max-width: 16px;
	width: 16px;
	height: 16px;
	margin: 0 10px 0 0 !important;
	border: 1px solid var(--grey);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
}
.bapf_ckbox_sqchck input[type=checkbox]:checked {
	border-color: var(--yellow);
}
.bapf_ckbox_sqchck input[type=checkbox]:checked:after {
	border-bottom-color: var(--yellow);
	border-right-color: var(--yellow);
	top: 1px;
	left: 4px;
	width: 5px;
	height: 9px;
}


.archiveProducts-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: var(--gap);
}
.woocommerce-result-count {
	margin-bottom: 0;
	margin-right: var(--gap);
	max-width: calc(50% - var(--gap) / 2);
}
.woocommerce-ordering {
	max-width: calc(50% - var(--gap) / 2);
}
.woocommerce-ordering select {
	max-width: 380px;
}

.term-description {
	position: relative;
	margin-top: 80px;
	z-index: 1;
}



.productsCarousel .woocommerce {
	margin: -5px;
}

.products-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.products-items.owl-carousel {
	margin: 0;
}
.products-item,
.category-item {
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.products-items.columns-4 .products-item,
.products-items.columns-4 .category-item {
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
}
.products-items.columns-3 .products-item,
.products-items.columns-3 .category-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.products-items.columns-2 .products-item,
.products-items.columns-2 .category-item {
	flex: 0 0 calc(100% / 2);
	max-width: calc(100% / 2);
}
.products-items.columns-1 .products-item,
.products-items.columns-1 .category-item {
	flex: 0 0 calc(100% / 1);
	max-width: calc(100% / 1);
}
.products-items.owl-carousel .products-item {
	margin: 0;
	padding: 5px;
	flex: 0 0 100% !important;
	max-width: 100% !important;
}

.archiveProducts-categories {
	margin-bottom: var(--gap);
}
.archiveProducts-categories:last-child {
	margin-bottom: 0;
}
.category-item a {
	display: flex;
	flex-direction: column;
	background: #F9F9F9;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	text-decoration: none;
	height: 100%;
}
.category-item__image {
	flex: 0 0 calc((var(--container) - var(--gap) * 3) / 4);
	max-height: calc((var(--container) - var(--gap) * 3) / 4);
	padding: calc(var(--gap) / 1.2);
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
}
.category-item__image img {
	width: auto !important;
	display: inline-block !important;
	max-height: calc((var(--container) - var(--gap) * 3) / 4 - var(--gap));
}
.woocommerce-loop-category__title {
	padding: calc(var(--gap) / 1.5);
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: var(--text-size);
	min-height: 68px;
	font-weight: 500;
	text-transform: uppercase;
}
.woocommerce-loop-category__title mark {
	display: none;
}

.products-item__wrap {
	position: relative;
	height: 100%;
	background: var(--white);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	z-index: 1;
}
.products-item__wrap > .yith-add-to-wishlist-button-block {
	display: none;
}
.woocommerce-loop-product__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
}
.products-item__image {
	flex: 0 0 calc((var(--container) - var(--gap) * 3) / 4);
	max-height: calc((var(--container) - var(--gap) * 3) / 4);
	padding: calc(var(--gap) / 1.2);
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
}
.products-item__image img {
	width: auto !important;
	display: inline-block !important;
	max-height: calc((var(--container) - var(--gap) * 3) / 4 - var(--gap));
}
.products-item__badge {
	background: var(--yellow);
	-moz-border-radius: 0 var(--radius) var(--radius) 0;
	-webkit-border-radius: 0 var(--radius) var(--radius) 0;
	border-radius: 0 var(--radius) var(--radius) 0;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 400;
	color: var(--black);
	padding: 4px var(--gap);
	position: absolute;
    top: 8px;
    left: -5px;
    z-index: 1;
}
.products-item__badge:before {
	content: '';
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 0px solid transparent;
	border-top: 6px solid #B78000;
	position: absolute;
	bottom: -5px;
	left: 0;
	z-index: -1;
}
.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button-over-image {
	margin: calc(var(--gap) / 2);
	padding: 0;
}
.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button-over-image--top-left {
	left: auto;
	right: 0;
}
.yith-wcwl-add-to-wishlist-button:not(.yith-wcwl-add-to-wishlist-button--themed-button).yith-wcwl-add-to-wishlist-button--added svg.yith-wcwl-add-to-wishlist-button-icon {
	color: var(--yellow);
}
.products-item__info {
	position: relative;
	flex: auto;
	padding: calc(var(--gap) / 1.5);
	color: var(--black);
	display: flex;
	flex-direction: column;
	z-index: 1;
}
.products-item__category {
	font-size: var(--text-size-sm);
	font-weight: 400;
	text-transform: uppercase;
	opacity: .75;
	margin-bottom: 6px;
}
.woocommerce-loop-product__title {
	font-size: var(--text-size);
	flex: auto;
	font-weight: 500;
	margin-bottom: 8px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.products-item__rating {
	position: relative;
	margin-bottom: calc(var(--gap) / 3);
	display: flex;
	align-items: flex-end;
	z-index: 1;
}
.products-item__rating-stars {
	position: relative;
	width: 105px;
	height: 18px;
	z-index: 1;
}
.products-item__rating-stars::before {
	content: '';
	background: url(images/star-grey.svg) space 0 0;
	background-size: contain;
	width: 100%;
	height: 100%;
	display: block;
}
.products-item__rating-stars span {
	position: absolute;
	overflow: hidden;
	font-size: 0;
	top: 0;
	left: 0;
	z-index: 1;
}
.products-item__rating-stars span:before {
	content: '';
	background: url(images/star-yellow.svg) space 0 0;
	background-size: contain;
	width: 105px;
	height: 18px;
	display: block;
}
.products-item__rating-count {
	font-size: 12px;
	text-transform: uppercase;
	color: var(--black-2);
	margin-left: 6px;
}
.products-item__price {
	display: flex;
	min-height: 32px;
	align-items: center;
	font-weight: 600;
}
.products-item__price del {
	order: 2;
	color: #9A9A9A;
	font-weight: 400;
	font-size: var(--text-size-sm);
	margin-left: 6px;
}
.products-item__price ins {
	text-decoration: none;
	color: var(--yellow);
}
.products-item__button {
	position: absolute;
	bottom: calc(var(--gap) / 1.5);
	right: calc(var(--gap) / 1.5);
	width: 32px;
	height: 32px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/expand_right.svg);
	mask-image: url(images/expand_right.svg);
	background-color: var(--black);
	z-index: 1;
}
.products-item__button.add_to_cart_button {
	-webkit-mask-image: url(images/cart.svg);
	mask-image: url(images/cart.svg);
}
.products-item__button.add_to_cart_button.loading {
	-webkit-mask-image: url(images/loading.svg);
	mask-image: url(images/loading.svg);
	animation: rotate 2s linear infinite;
	opacity: .3;
}
.products-item__button.add_to_cart_button.added {
	-webkit-mask-image: url(images/done.svg);
	mask-image: url(images/done.svg);
}
.added_to_cart {
	display: none !important;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.woocommerce-pagination,
.navigation.pagination {
	position: relative;
	margin-top: calc(var(--gap) * 1.5);
	z-index: 2;
}
ul.page-numbers,
.nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.page-numbers li,
.nav-links .page-numbers {
	margin-right: 8px;
}
ul.page-numbers li:last-child,
.nav-links .page-numbers:last-child {
	margin-right: 0;
}
ul.page-numbers li a,
ul.page-numbers li span,
.nav-links .page-numbers {
	font-size: var(--text-size);
	border: 1px solid var(--grey);
	color: var(--black-2);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 2px;
}
ul.page-numbers li a:hover,
ul.page-numbers li span.current,
.nav-links .page-numbers:hover,
.nav-links .page-numbers.current {
	background: var(--yellow);
	border-color: var(--yellow);
	color: var(--black);
}





.promoSlider-section,
.promoSlider-item__wrap {
	position: relative;
	height: 420px;
	z-index: 1;
}
.promoSlider-item__bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.promoSlider-item__bg:after {
	content: '';
	background: linear-gradient(84.71deg, rgba(0, 0, 0, 0.57) 0%, rgba(0, 0, 0, 0.78) 76.77%);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.promoSlider-item__wrap {
	display: flex;
	justify-content: space-between;
	padding: 40px 0 60px;
}
.promoSlider-item__left {
	flex: 0 0 70%;
	max-width: 660px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.promoSlider-item__content {
	color: var(--white);
	margin-bottom: var(--gap);
}
.promoSlider-item__content h2 {
	font-size: var(--h1-size);
}
.promoSlider-item__button {
	text-align: center;
}
.promoSlider-item__right {
	position: relative;
	flex: 0 0 30%;
	max-width: 30%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	z-index: 1;
}
.promoSlider-item__image {
	text-align: center;
}
.promoSlider-item__image img {
	width: auto !important;
	display: inline-block !important;
	max-height: calc(420px - 40px - 60px);
}
.promoSlider-item__badge {
	position: absolute;
	width: 118px;
	height: 118px;
	top: 0;
	left: 0;
	background: var(--yellow);
	color: var(--white);
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: var(--h1-size);
	font-weight: 700;
	letter-spacing: 2px;
	z-index: 1;
}
.owl-promoSlider .owl-dots {
	margin-top: 0;
	position: absolute;
	left: 50%;
	bottom: 40px;
	transform: translateX(-50%);
}




.advantages-wrap {
	border-top: 1px solid #ebebeb;
	border-bottom: 1px solid #ebebeb;
	padding: var(--gap) 0;
}
.advantages-items {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.advantages-item {
	flex: 0 0 25%;
	max-width: 25%;
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.advantages-item__wrap {
	display: flex;
	align-items: center;
}
.advantages-item__image {
	flex: 0 0 60px;
	max-width: 60px;
	margin-right: calc(var(--gap) / 1.8);
}
.advantages-item__text strong {
	font-weight: 500;
	text-transform: uppercase;
	display: block;
	margin-bottom: 2px;
}



.recommendProducts-wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.recommendProducts-left {
	flex: 0 0 calc(75% - var(--gap) / 2);
	max-width: calc(75% - var(--gap) / 2);
}
.recommendProducts-right {
	flex: 0 0 calc(25% - var(--gap) / 2);
	max-width: calc(25% - var(--gap) / 2);
}

.recommendBanner {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-direction: column;
	padding: 44px 32px 24px;
	z-index: 1;
}
.recommendBanner-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.recommendBanner-bg:before {
	content: '';
	background: linear-gradient(84.71deg, rgba(0, 0, 0, 0.57) 0%, rgba(0, 0, 0, 0.78) 76.77%);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.recommendBanner-bg:after {
	content: '';
	border: 2px solid var(--yellow);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	border-bottom: none;
	width: calc(100% - var(--gap) / 1.5 * 2);
	height: calc(100% - var(--gap) / 1.5);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}
.recommendBanner-text {
	margin-bottom: 4px;
	color: var(--white);
	font-size: var(--h5-size);
	font-weight: 300;
	text-align: center;
	text-transform: uppercase;
	line-height: 1.15;
}
.recommendBanner-heading {
	margin-bottom: 10px;
	text-align: center;
	font-size: var(--h1-size);
	font-weight: 500;
	color: var(--yellow);
	text-transform: uppercase;
	line-height: 1.15;
}
.recommendBanner-image {
	flex: auto;
	margin-bottom: 10px;
}



.blog-wrap {
	position: relative;
	background: var(--white);
	box-shadow: var(--shadow);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	padding: var(--gap) var(--gap);
	z-index: 1;
}
.blog-heading {
	margin-bottom: 0;
}
.blogCarousel {
	flex: 0 0 100%;
	max-width: 100%;
	border-top: 1px solid var(--grey);
	margin-top: calc(var(--gap) / 1.2);
	padding-top: calc(var(--gap) * 1.4);
}

.blog-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.blog-item {
	flex: 0 0 50%;
	max-width: 50%;
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.owl-carousel .blog-item {
	flex: 0 0 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
}
.blog-item__wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	min-height: 300px;
	background: var(--white);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
}
.owl-carousel .blog-item__wrap {
	box-shadow: none;
}
.blog-item__image {
	flex: 0 0 40%;
	max-width: 40%;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
}
.blog-item__info {
	flex: 0 0 60%;
	max-width: 60%;
	padding: var(--gap);
}
.blog-item__date {
	margin-bottom: calc(var(--gap) / 2);
	display: flex;
	align-items: center;
	color: var(--yellow);
}
.blog-item__date:before {
	content: '';
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px;
	height: 20px;
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/calendar.svg);
    mask-image: url(images/calendar.svg);
    background-color: var(--yellow);
	margin-right: 6px;
	margin-bottom: 2px;
}
.blog-item__title {
	font-size: var(--h6-size);
	margin-bottom: calc(var(--gap) / 2);
}
.blog-item__title a {
	text-decoration: none;
}
.blog-item__excerpt {
	margin-bottom: var(--gap);
}
.blog-wrap .owl-nav {
	position: absolute;
	top: -85px;
	right: 0;
}



.partners-item__wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 90px;
}
.partners-item__wrap img {
	max-height: 90px;
	width: auto !important;
	display: inline-block !important;
}




.singleBlog-wrap:after {
	content: '';
	display: block;
	clear: both;
}
.singleBlog-image {
	float: left;
	margin: 0 calc(var(--gap) * 1.5) var(--gap) 0;
	max-width: 40%;
}
.singleBlog-image img {
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	max-height: 420px;
}
.singleBlog-date {
	margin-bottom: calc(var(--gap) / 2);
	display: flex;
	align-items: center;
	color: var(--yellow);
}
.singleBlog-date:before {
	content: '';
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px;
	height: 20px;
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/calendar.svg);
    mask-image: url(images/calendar.svg);
    background-color: var(--yellow);
	margin-right: 6px;
	margin-bottom: 2px;
}



.pageContacts-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.pageContacts-left {
	flex: 0 0 calc(40% - var(--gap) / 2);
	max-width: calc(40% - var(--gap) / 2);
}
.pageContacts-right {
	flex: 0 0 calc(60% - var(--gap) / 2);
	max-width: calc(60% - var(--gap) / 2);
}
.pageContacts-bottom {
	flex: 0 0 100%;
	max-width: 100%;
}
.pageContacts-map iframe {
	width: 100%;
	height: 420px;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.pageContacts-items {
	position: relative;
}
.pageContacts-item {
	position: relative;
	margin-bottom: calc(var(--gap) / 2);
	padding-left: 36px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 28px;
	z-index: 1;
}
.pageContacts-item:last-child {
	margin-bottom: 0;
}
.pageContacts-item:before {
	content: '';
	position: absolute;
	width: 28px;
	height: 28px;
	top: calc(50% - 14px);
	left: 0;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--yellow);
	z-index: 1;
}
.pageContacts-item.phone:before {
	-webkit-mask-image: url(images/phone.svg);
	mask-image: url(images/phone.svg);
}
.pageContacts-item.schedule:before {
	-webkit-mask-image: url(images/clock.svg);
	mask-image: url(images/clock.svg);
}
.pageContacts-item.address:before {
	-webkit-mask-image: url(images/location.svg);
	mask-image: url(images/location.svg);
}
.pageContacts-item.e-mail:before {
	-webkit-mask-image: url(images/message.svg);
	mask-image: url(images/message.svg);
}
.pageContacts-item p {
	margin-bottom: 0;
	font-weight: 500;
}
.pageContacts-item p a {
	text-decoration: none;
}
.pageContacts-soc-icons {
	margin-top: calc(var(--gap) / 2);
}
.pageContacts-soc-label {
	font-weight: 500;
	margin-bottom: calc(var(--gap) / 2);
	color: var(--black-2);
}
.pageContacts-form {
	position: relative;
	background: var(--white);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: var(--gap);
	z-index: 1;
}
.pageContacts-form .wpcf7 {
	margin-top: var(--gap);
}



.singleProduct-main {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.singleProduct-left {
	position: relative;
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
	z-index: 1;
}
.singleProduct-left-inner {
	position: sticky;
	top: 0;
	background: var(--white);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: var(--gap);
	display: flex;
	flex-wrap: wrap;
	z-index: 1;
}
.singleProduct-title {
	flex: 0 0 100%;
	max-width: 100%;
	font-size: var(--h4-size);
	font-weight: 500;
	line-height: 1.1;
	text-transform: uppercase;
	margin-bottom: calc(var(--gap) / 2);
}
.singleProduct-meta {
	flex: 0 0 auto;
	max-width: calc(50% - var(--gap) / 2);
	margin-right: var(--gap);
}
.singleProduct-sku {
	display: inline-block;
	background: #F3F3F3;
	padding: 10px;
	line-height: 1.25;
}
.singleProduct-rating {
	position: relative;
	flex: 0 0 auto;
	max-width: calc(50% - var(--gap) / 2);
	display: flex;
	align-items: center;
	z-index: 1;
}
.singleProduct-rating-stars {
	position: relative;
	width: 105px;
	height: 18px;
	z-index: 1;
}
.singleProduct-rating-stars::before {
	content: '';
	background: url(images/star-grey.svg) space 0 0;
	background-size: contain;
	width: 100%;
	height: 100%;
	display: block;
}
.singleProduct-rating-stars span {
	position: absolute;
	overflow: hidden;
	font-size: 0;
	top: 0;
	left: 0;
	z-index: 1;
}
.singleProduct-rating-stars span:before {
	content: '';
	background: url(images/star-yellow.svg) space 0 0;
	background-size: contain;
	width: 105px;
	height: 18px;
	display: block;
}
.singleProduct-rating-count {
	font-size: var(--text-size-sm);
	text-transform: uppercase;
	color: var(--black-2);
	margin-left: 6px;
	margin-bottom: -3px;
}
.singleProduct-images {
	position: relative;
	flex: 0 0 100%;
	max-width: 100%;
	margin-top: calc(var(--gap) * 1.5);
	z-index: 1;
}
.singleProduct-badge {
	background: var(--yellow);
	-moz-border-radius: 0 var(--radius) var(--radius) 0;
	-webkit-border-radius: 0 var(--radius) var(--radius) 0;
	border-radius: 0 var(--radius) var(--radius) 0;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 400;
	color: var(--black);
	padding: 4px var(--gap);
	position: absolute;
    top: 8px;
    left: calc(((var(--container) - var(--gap)) / 2 - var(--gap) * 2) * .20 + var(--gap) / 2 - 5px);
    z-index: 3;
}
.singleProduct-badge:before {
	content: '';
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 0px solid transparent;
	border-top: 6px solid #B78000;
	position: absolute;
	bottom: -5px;
	left: 0;
	z-index: -1;
}
.woocommerce-product-gallery {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	height: calc(((var(--container) - var(--gap)) / 2 - var(--gap) * 2) * .80 - var(--gap) / 2);
}
.singleProduct-mainSlider {
	position: initial !important;
	flex: 0 0 calc(80% - var(--gap) / 2);
	max-width: calc(80% - var(--gap) / 2);
	overflow: hidden;
	z-index: 1;
}
.singleProduct-mainSlider.slick-initialized {
	position: relative !important;
}
.woocommerce-product-gallery__image {
	position: relative;
	display: flex !important;
	align-items: center;
	justify-content: center;
	height: calc(((var(--container) - var(--gap)) / 2 - var(--gap) * 2) * .80 - var(--gap) / 2);
	background: var(--white);
	z-index: 1;
}
.woocommerce-product-gallery__image img {
	max-height: calc(((var(--container) - var(--gap)) / 2 - var(--gap) * 2) * .80 - var(--gap) / 2);
}
.woocommerce-product-gallery__image a:after {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/search.svg);
    mask-image: url(images/search.svg);
	background-color: var(--grey);
	position: absolute;
	bottom: var(--gap);
	right: var(--gap);
	width: 32px;
	height: 32px;
	z-index: 6;
	transition: .5s;
}
.woocommerce-product-gallery__image a:hover:after {
	background-color: var(--black);
}
.singleProduct-mainSlider > * {
	display: none !important;
}
.singleProduct-mainSlider:before {
	content: '';
	background: url(images/loading.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 60px;
	height: 60px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: .5;
	animation: rotate 2s linear infinite;
	z-index: 2;
}
.singleProduct-mainSlider.slick-initialized > * {
	display: block !important;
}
.singleProduct-mainSlider.slick-initialized:before {
	display: none;
}
.singleProduct-otherSlider {
	flex: 0 0 calc(20% - var(--gap) / 2);
	max-width: calc(20% - var(--gap) / 2);
	overflow: hidden;
	margin: calc(var(--gap) / -2) 0;
}
.singleProduct-otherSlider .slick-slide {
	display: block;
	height: auto;
	border: none;
}
.singleProduct-otherSlider .slick-slide > div {
	padding: calc(var(--gap) / 2) 0;
}
.woocommerce-product-gallery__thumbnail {
	position: relative;
	height: calc(((((var(--container) - var(--gap)) / 2 - var(--gap) * 2) * .80 - var(--gap) / 2) - var(--gap) * 3 ) / 4);
	overflow: hidden;
	display: flex !important;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: .65;
	transition: .25s;
	z-index: 1;
}
.singleProduct-otherSlider .slick-slide.slick-current .woocommerce-product-gallery__thumbnail {
	opacity: 1;
}
.woocommerce-product-gallery__thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	opacity: 1;
}
.singleProduct-otherSlider > * {
   display: none !important;
}
.singleProduct-otherSlider.slick-initialized > * {
   display: block !important;
}
.singleProduct-mainSlider .slick-arrow {
	position: absolute;
	top: calc(50% - 18px);
	width: 36px;
	height: 36px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	padding: 0;
	border: none;
	background: rgba(255,255,255,.75);
	outline: none;
	padding: 0;
	cursor: pointer;
	opacity: 0;
	display: flex !important;
	align-items: center;
	justify-content: center;
	transition: .25s;
	z-index: 9;
}
.singleProduct-mainSlider:hover .slick-arrow {
	opacity: 1;
}
.singleProduct-mainSlider .slick-arrow:hover {
	background-color: var(--black);
}
.singleProduct-mainSlider .slick-arrow.slick-prev {
	transform: rotate(90deg);
	left: 15px;
}
.singleProduct-mainSlider .slick-arrow.slick-next {
	transform: rotate(-90deg);
	right: 15px;
}
.singleProduct-mainSlider .slick-arrow:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/expand_down.svg);
    mask-image: url(images/expand_down.svg);
	background-color: var(--black);
	flex: 0 0 28px;
	max-width: 28px;
	height: 28px;
	transition: .5s;
}
.singleProduct-mainSlider .slick-arrow:hover:before {
	background-color: var(--white);
}
.singleProduct-right {
	position: relative;
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
	z-index: 1;
}
.singleProduct-right-inner {
	position: sticky;
	top: 0;
	z-index: 1;
}
.singleProduct-summary {
	position: relative;
	background: var(--white);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: var(--gap);
	margin-bottom: var(--gap);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	z-index: 1;
}
.singleProduct-summary:last-child {
	margin-bottom: 0;
}
.woocommerce-product-details__short-description {
	flex: 0 0 100%;
	max-width: 100%;
	margin-bottom: var(--gap);
}
.singleProduct-price {
	flex: 0 0 auto;
	margin-right: var(--gap);
	margin-bottom: calc(var(--gap) * 1.5);
	font-size: var(--h5-size);
	font-weight: 500;
	display: flex;
	align-items: baseline;
}
.singleProduct-price ins {
	order: 1;
	text-decoration: none;
	color: var(--yellow);
}
.singleProduct-price del {
	order: 2;
	color: #9A9A9A;
	font-weight: 400;
	font-size: var(--text-size);
	margin-left: 6px;
}
.singleProduct-stock {
	flex: 0 0 auto;
	position: relative;
	margin-bottom: calc(var(--gap) * 1.5);
	font-size: var(--text-size-sm);
}
.singleProduct-stock.instock {
	color: #169543;
}
.singleProduct-stock.outofstock {
	color: red;
}
.singleProduct-stock.onbackorder {
	color: var(--yellow);
}
.singleProduct-formCart {
	flex: 0 0 100%;
	max-width: 100%;
}

.singleProduct-addCart {
	display: flex;
}
.singleProduct-addCart .qib-container:not(#qib_id):not(#qib_id) {
	flex: 0 0 auto;
	background: var(--bg);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	display: flex;
	justify-content: space-between;
	padding: 3px;
}
.singleProduct-addCart .qib-button:not(#qib_id):not(#qib_id) {
	flex: 0 0 25px;
	max-width: 25px;
	height: auto;
	border: none;
	outline: none;
	box-shadow: none;
	font-size: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-mask-size: 16px;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #626262;
    cursor: pointer;
    transition: .5s;
}
.singleProduct-addCart .qib-button.minus:not(#qib_id):not(#qib_id) {
	-webkit-mask-image: url(images/minus.svg);
	mask-image: url(images/minus.svg);
}
.singleProduct-addCart .qib-button.plus:not(#qib_id):not(#qib_id) {
	-webkit-mask-image: url(images/plus.svg);
	mask-image: url(images/plus.svg);
}
.singleProduct-addCart .qib-button:hover:not(#qib_id):not(#qib_id) {
	background-color: var(--black);
}
.singleProduct-addCart .qib-container div.quantity:not(#qib_id):not(#qib_id) {
	flex: auto;
}
.singleProduct-addCart .qib-container .quantity input.qty:not(#qib_id):not(#qib_id) {
	height: 100%;
	border: none !important;
	color: #626262;
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Rubik', sans-serif;
	line-height: 1.5;
	outline: none !important;
	box-shadow: none !important;
}
.singleProduct-addCart button.btn {
	flex: auto;
	box-shadow: none !important;
	outline: none !important;
}
.yith-add-to-wishlist-button-block {
	margin: var(--gap) 0 0;
}


.singleProduct-advantages {
	position: relative;
	background: var(--white);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: var(--gap);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	z-index: 1;
}
.singleProduct-advantages-items {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.singleProduct-advantages-item {
	flex: 0 0 50%;
	max-width: 50%;
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.singleProduct-advantages-item__wrap {
	display: flex;
	align-items: center;
}
.singleProduct-advantages-item__image {
	flex: 0 0 40px;
	max-width: 40px;
	margin-right: calc(var(--gap) / 2.4);
}
.singleProduct-advantages-item__text strong {
	font-weight: 500;
	text-transform: uppercase;
	display: block;
	margin-bottom: 2px;
}


.woocommerce-tabs ul.tabs {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}
.woocommerce-tabs ul.tabs li {
	margin-right: 3px;
}
.woocommerce-tabs ul.tabs li::last-child {
	margin-right: 0;
}
.woocommerce-tabs ul.tabs li a {
	position: relative;
	background: #EFEFEF;
	color: #626262;
	text-transform: uppercase;
	font-weight: 500;
	padding: 17px 46px 15px;
	display: block;
	text-decoration: none;
	z-index: 1;
}
.woocommerce-tabs ul.tabs li a:hover {
	color: var(--black);
}
.woocommerce-tabs ul.tabs li.active a {
	background: var(--white);
	color: var(--black);
}
.woocommerce-tabs ul.tabs li a:before {
	content: '';
	background: var(--yellow);
	width: 100%;
	height: 2px;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: .5s;
	z-index: 1;
}
.woocommerce-tabs ul.tabs li.active a:before {
	opacity: 1;
}
.woocommerce-Tabs-panel {
	position: relative;
	background: var(--white);
	-moz-border-radius: 0 0 var(--radius) var(--radius);
	-webkit-border-radius: 0 0 var(--radius) var(--radius);
	border-radius: 0 0 var(--radius) var(--radius);
	padding: calc(var(--gap) * 1.5);
}
.woocommerce-product-attributes {
	width: 100%;
	border-spacing: inherit;
}
.woocommerce-product-attributes th,
.woocommerce-product-attributes td {
	border: 1px solid #EFEFEF;
	padding: calc(var(--gap) / 1.5) var(--gap);
	width: 50%;
}
.woocommerce-product-attributes th {
	text-align: left;
	font-weight: 400;
	color: var(--black);
}
.woocommerce-product-attributes td {
	color: var(--black-2);
}

.commentlist {
	margin: 0;
	padding: 0;
	list-style: none;
}
.commentlist li {
	margin-bottom: calc(var(--gap));
	padding-bottom: calc(var(--gap));
	border-bottom: 1px solid var(--grey);
}
.comment_container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.comment-avatar {
	flex: 0 0 78px;
	max-width: 78px;
	height: 78px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	overflow: hidden;
	margin-right: var(--gap);
}
.comment-info {
	flex: 0 0 calc(100% - var(--gap) - 78px);
	max-width: calc(100% - var(--gap) - 78px);
	display: flex;
	align-items: center;
	align-content: flex-start;
	flex-wrap: wrap;
}
.comment-info .meta {
	margin: 0 calc(var(--gap) / 1.5) calc(var(--gap) / 2) 0;
	color: var(--black-2);
}
.woocommerce-review__author {
	font-weight: 400;
	margin-left: 8px;
}
.comment-info .star-rating {
	position: relative;
	margin: -4px 0 calc(var(--gap) / 2);
	flex: 0 0 105px;
	max-width: 105px;
	width: 105px;
	height: 19px;
	z-index: 1;
}
.comment-info .star-rating::before {
	content: '';
	background: url(images/star-grey.svg) space 0 0;
	background-size: contain;
	width: 100%;
	height: 100%;
	display: block;
}
.comment-info .star-rating span {
	position: absolute;
	overflow: hidden;
	font-size: 0;
	top: 0;
	left: 0;
	z-index: 1;
}
.comment-info .star-rating span:before {
	content: '';
	background: url(images/star-yellow.svg) space 0 0;
	background-size: contain;
	width: 105px;
	height: 19px;
	display: block;
}
.comment-info .description {
	flex: 0 0 100%;
	max-width: 100%;
}


.comment-reply-title {
	font-size: var(--h5-size);
	font-weight: 500;
	margin-bottom: var(--gap);
	display: block;
}
.comment-form-rating .stars span {
	display: inline-flex;
	align-items: center;
}
.comment-form-rating .stars {
	display: flex;
	margin-bottom: 0;
}
.comment-form-rating .stars a {
	flex: 0 0 22px;
	max-width: 22px;
	height: 22px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/star-grey.svg);
	mask-image: url(images/star-grey.svg);
	background-color: #E1E1E1;
	margin-right: 5px;
	font-size: 0;
}
.comment-form-rating .stars a:last-child {
	margin-right: 0;
}
.comment-form-rating .stars span:hover a {
	-webkit-mask-image: url(images/star-yellow.svg);
	mask-image: url(images/star-yellow.svg);
	background-color: var(--yellow);
}
.comment-form-rating .stars a:hover~a {
	-webkit-mask-image: url(images/star-grey.svg);
	mask-image: url(images/star-grey.svg);
	background-color: #E1E1E1;
}
.comment-form-rating .stars.selected span a.active {
	-webkit-mask-image: url(images/star-yellow.svg);
	mask-image: url(images/star-yellow.svg);
	background-color: var(--yellow);
}
.comment-form-rating .stars.selected a.active~a {
	-webkit-mask-image: url(images/star-grey.svg);
	mask-image: url(images/star-grey.svg);
	background-color: #E1E1E1;
}
.comment-form-rating .stars.selected a:not(.active) {
	-webkit-mask-image: url(images/star-yellow.svg);
	mask-image: url(images/star-yellow.svg);
	background-color: var(--yellow);
}
.comment-form-rating,
.comment-form-comment,
.comment-form-author,
.comment-form-email {
	margin-bottom: var(--gap);
}
.comment-form-rating label,
.comment-form-comment label,
.comment-form-author label,
.comment-form-email label {
	font-size: var(--text-size);
	display: block;
	margin-bottom: calc(var(--gap) / 2.4);
	color: var(--black-2);
}
.comment-form .form-submit {
	margin-bottom: 0;
}

.woocommerce-noreviews {
	margin-bottom: var(--gap) !important;
}




.wc-block-components-notice-banner,
.woocommerce-message,
.woocommerce-NoticeGroup,
.woocommerce-info,
.woocommerce-error {
	padding: var(--gap);
	background: var(--white);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	display: flex;
	align-items: center;
	margin-bottom: var(--gap) !important;
	outline: none !important;
	list-style: none;
}
.woocommerce-message,
.woocommerce-NoticeGroup,
.woocommerce-info,
.woocommerce-error {
  display: block;
}
.wc-block-components-notice-banner svg {
	flex: 0 0 36px;
	max-width: 36px;
	margin-right: var(--gap);
}
.wc-block-components-notice-banner__content {
	position: relative;
	overflow: hidden;
	flex: auto;
	max-width: 100%;
}
.wc-block-components-notice-banner__content .button,
.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button {
	float: right;
	margin-left: var(--gap);
	margin-bottom: 0px;
}



/*------- Cart Start ----------*/
.wc-empty-cart-message {
	margin-bottom:var(--gap);
	font-size: var(--h6-size);
	text-align: center;
}
.return-to-shop {
	text-align: center;
}
.pageCart-wrap {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.pageCart-left {
	flex: 0 0 calc(75% - var(--gap) / 2);
	max-width: calc(75% - var(--gap) / 2);
	background: var(--white);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}
.pageCart-right {
	flex: 0 0 calc(25% - var(--gap) / 2);
	max-width: calc(25% - var(--gap) / 2);
}
.pageCartTableProducts {
	width: 100%;
	border-collapse: collapse;
}
.pageCartTableProducts th,
.pageCartTableProducts td {
	padding: calc(var(--gap) / 1.5) calc(var(--gap) / 1.2);
}
.pageCartTableProducts th {
	color: var(--black-2);
	font-weight: 400;
}
.pageCartTableProducts td {
	border-top: 1px solid var(--grey);
}
.pageCartTableProducts-image {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pageCartTableProducts-image img {
	max-height: 80px;
}
.pageCartTableProducts .product-name {
	text-align: left;
}
.pageCartTableProducts .product-name a {
	text-decoration: none;
	font-weight: 500;
}

.pageCartTableProducts .product-quantity .qib-container:not(#qib_id):not(#qib_id) {
	flex: 0 0 auto;
	height: 54px;
	background: var(--bg);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	display: flex;
	justify-content: space-between;
	padding: 3px;
}
.pageCartTableProducts .product-quantity .qib-button:not(#qib_id):not(#qib_id) {
	flex: 0 0 25px;
	max-width: 25px;
	height: auto;
	border: none;
	outline: none;
	box-shadow: none;
	font-size: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-mask-size: 16px;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #626262;
    cursor: pointer;
    transition: .5s;
}
.pageCartTableProducts .product-quantity .qib-button.minus:not(#qib_id):not(#qib_id) {
	-webkit-mask-image: url(images/minus.svg);
	mask-image: url(images/minus.svg);
}
.pageCartTableProducts .product-quantity .qib-button.plus:not(#qib_id):not(#qib_id) {
	-webkit-mask-image: url(images/plus.svg);
	mask-image: url(images/plus.svg);
}
.pageCartTableProducts .product-quantity .qib-button:hover:not(#qib_id):not(#qib_id) {
	background-color: var(--black);
}
.pageCartTableProducts .product-quantity .qib-container div.quantity:not(#qib_id):not(#qib_id) {
	flex: auto;
}
.pageCartTableProducts .product-quantity .qib-container .quantity input.qty:not(#qib_id):not(#qib_id) {
	height: 100%;
	border: none !important;
	color: #626262;
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Rubik', sans-serif;
	line-height: 1.5;
	outline: none !important;
	box-shadow: none !important;
}

.pageCartTableProducts .product-remove a {
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
	background-color: red;
	width: 28px;
	height: 28px;
	display: block;
}
.pageCartTableProducts .product-remove a:hover {
	background-color: var(--black);
}
.pageCartTableProducts tbody .product-subtotal {
	font-weight: 500;
	text-align: center;
	white-space: nowrap;
	color: var(--black);
}
.pageCartTableProducts .coupon {
	display: flex;
	max-width: 480px;
	float: left;
}
.pageCartTableProducts .coupon button {
	flex: 0 0 auto;
	margin-left: 10px;
}
.pageCartTableProducts .coupon ~ button {
	float: right;
}



.cart-collaterals {
	position: sticky;
	top: 0;
	z-index: 9;
}
.pageCartTotals {
	background: var(--white);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding-bottom: 10px;
	margin-bottom: 20px;
}
.pageCartTotals > h2 {
	font-size: var(--h6-size);
	padding: 20px 20px 0;
	margin-bottom: 10px;
}
.cart_totals table {
	width: 100%;
	border-collapse: collapse;
}
.cart_totals table tr {
	display: block;
	width: 100%;
	border-bottom: 1px solid var(--grey);
	padding: 14px 20px;
}
.cart_totals table tr:last-child {
	border-bottom: none;
}
.cart_totals table th {
	display: block;
	font-size: var(--text-size-sm);
	font-weight: 400;
	color: var(--black-2);
	text-align: left;
	margin-bottom: 6px;
	padding: 0;
}
.cart_totals table td {
	padding: 0;
	display: block;
	color: var(--black);
}
.cart_totals table tr.cart-subtotal td {
	font-size: var(--h6-size);
	font-weight: 500;
}
.cart_totals table tr.order-total td {
	font-size: var(--h5-size);
	font-weight: 500;
}
.checkout-button {
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
}
.woocommerce-shipping-destination {
	display: none !important;
}
.woocommerce-shipping-methods,
.wc_payment_methods {
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
}
.woocommerce-shipping-methods li,
.wc_payment_methods li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 10px;
}
.woocommerce-shipping-methods li:last-child,
.wc_payment_methods li:last-child {
	margin-bottom: 0;
}
.woocommerce-shipping-methods li input,
.wc_payment_methods li input {
	flex: 0 0 16px;
	max-width: 16px;
	width: 16px;
	height: 16px;
	margin: 0 10px 0 0;
	cursor: pointer;
}
.woocommerce-shipping-methods li label,
.wc_payment_methods li label {
	flex: 0 0 calc(100% - 16px - 10px);
	max-width: calc(100% - 16px - 10px);
	font-weight: 500;
	cursor: pointer;
	color: var(--black);
}
.payment_box {
	flex: 0 0 100%;
	max-width: 100%;
	background: var(--bg);
	margin-top: 4px;
	padding: 16px 20px;
}

/*------- Cart End ----------*/



/*---------- Checkout Start ------------*/
.pageCheckout-wrap {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}
.pageCheckout-left {
	flex: 0 0 calc(60% - var(--gap) / 2);
	max-width: calc(60% - var(--gap) / 2);
}
.pageCheckout-right {
	flex: 0 0 calc(40% - var(--gap) / 2);
	max-width: calc(40% - var(--gap) / 2);
	background: var(--white);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}
.woocommerce-billing-fields {
	margin-bottom: var(--gap);
}
.woocommerce-billing-fields > h3,
.wcus-checkout-fields > h3,
.woocommerce-additional-fields > h3,
#order_review_heading,
.woocommerce-checkout-payment > h3,
.pageLogin-left > h2,
.pageLogin-right > h2,
.woocommerce-Address-title > h3,
.woocommerce-MyAccount-content form > h3,
.woocommerce-order-details__title,
.woocommerce-column__title,
.woocommerce-Address-title h2 {
	font-size: var(--h5-size);
}
.woocommerce-billing-fields__field-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	overflow: hidden;
}
#ukrposhta_shippping_fields > h3 {
	display: none;
}
.form-row {
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0;
	margin-bottom: var(--gap);
}
.form-row-first,
.form-row-last {
	flex: 0 0 calc(50% - 10px);
	max-width: calc(50% - 10px);
}
.form-row > label {
	color: var(--black-2);
	display: block;
	line-height: 1.25;
	width: 100%;
	margin-bottom: 5px;
}
.form-row > label span.optional {
	display: none;
}
.form-row > label abbr {
	color: red;
}
.checkout-inline-error-message {
	color: red;
	margin-top: 2px;
	font-size: var(--text-size-sm);
}
#billing_country_field,
#oplata_country_field {
	display: none;
}
.wcus-checkout-fields {
	margin-top: 10px;
}

#order_review_heading {
	padding: 20px 20px 0;
	margin-bottom: 10px;
}
.woocommerce-checkout-review-order-table {
	width: 100%;
	border-collapse: collapse;
	display: block;
	margin-bottom: 30px;
}
.woocommerce-checkout-review-order-table thead th {
	color: var(--black-2);
	font-weight: 400;
	padding: calc(var(--gap) / 1.5) calc(var(--gap) / 1.2);
	text-align: left;
	border-bottom: 1px solid var(--grey);
}
.woocommerce-checkout-review-order-table tbody td {
	padding: calc(var(--gap) / 1.5) calc(var(--gap) / 1.2);
	border-bottom: 1px solid var(--grey);
	color: var(--black);
}
.woocommerce-checkout-review-order-table tbody td:first-child {
	width: 65%;
}
.woocommerce-checkout-review-order-table tfoot {
	display: block;
	width: 100%;
}
.woocommerce-checkout-review-order-table tfoot tr {
	display: block;
	width: 100%;
	border-bottom: 1px solid var(--grey);
	padding: calc(var(--gap) / 1.5) calc(var(--gap) / 1.2);
}
.woocommerce-checkout-review-order-table tfoot tr:last-child {
	border-bottom: none;
}
.woocommerce-checkout-review-order-table tfoot th {
	display: block;
	font-size: var(--text-size-sm);
	font-weight: 400;
	color: var(--black-2);
	text-align: left;
	margin-bottom: 6px;
	padding: 0;
}
.woocommerce-checkout-review-order-table tfoot td {
	padding: 0;
	display: block;
	color: var(--black);
}
.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal td {
	font-size: var(--h6-size);
	font-weight: 500;
}
.woocommerce-checkout-review-order-table tfoot tr.order-total td {
	font-size: var(--h5-size);
	font-weight: 500;
}

.woocommerce-checkout-payment {
	padding: 0 calc(var(--gap) / 1.2) calc(var(--gap) / 1.5);
}
.wc_payment_methods {
	margin-bottom: var(--gap);
}
.woocommerce-privacy-policy-text,
.checkout-policy {
	color: var(--black-2);
	margin-bottom: var(--gap) !important;
}
/*-------- Checkout End -----------*/





.pageLogin-wrap {
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}
.pageLogin-left,
.pageLogin-right {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--grey) / 2);
	background: var(--white);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: var(--gap);
}
.show-password-input {
	display: none;
}



.woocommerce-account .container > .page-content > .woocommerce:after {
	content: '';
	clear: both;
	display: block;
}
.woocommerce-MyAccount-navigation {
	width: 280px;
	float: left;
}

.woocommerce-MyAccount-navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.woocommerce-MyAccount-navigation ul li {
	position: relative;
	margin-bottom: 10px;
}
.woocommerce-MyAccount-navigation ul li:last-child {
	margin-bottom: 0;
}
.woocommerce-MyAccount-navigation ul li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 500;
	padding: calc(var(--gap) / 1.5) calc(var(--gap) / 1.2);
	background: var(--white);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	text-decoration: none;
}
.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li.is-active a  {
	background: var(--yellow);
	color: var(--black);
}
.woocommerce-MyAccount-content {
	float: right;
	width: calc(100% - 280px - var(--gap));
	margin-left: var(--gap);
}



.woocommerce-orders-table,
.woocommerce-table--order-details {
	width: 100%;
	border-collapse: collapse;
	box-shadow: var(--shadow);
}
.woocommerce-orders-table th,
.woocommerce-orders-table td,
.woocommerce-table--order-details th,
.woocommerce-table--order-details td {
	border: 1px solid var(--grey);
	padding: calc(var(--gap) / 1.5) calc(var(--gap) / 1.2);
	background: var(--white);
}
.woocommerce-orders-table th,
.woocommerce-table--order-details th {
	color: var(--black-2);
}
.woocommerce-orders-table td,
.woocommerce-table--order-details td {
	color: var(--black);
}

a.edit {
	color: red;
	display: inline-block;
	margin-bottom: 10px;
}

.woocommerce-order-details {
	margin-bottom: var(--gap);
}

.woocommerce-address-fields__field-wrapper,
.woocommerce-EditAccountForm {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.woocommerce-EditAccountForm fieldset {
	flex: 0 0 100%;
	max-width: 100%;
} 

.woocommerce-customer-details {
	background: var(--white);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: var(--gap);
}


.wishlist-title-container {
	display: none;
}
table.wishlist_table {
	font-size: 100%;
	width: 100%;
	border-collapse: collapse;
	box-shadow: var(--shadow);
}
table.wishlist_table thead th,
table.wishlist_table tbody td {
	border: 1px solid var(--grey);
}
.wishlist_table thead tr th, .wishlist_table tfoot td td, .widget_yith-wcwl-lists ul.dropdown li.current a, .widget_yith-wcwl-lists ul.dropdown li a:hover, .selectBox-dropdown-menu.selectBox-options li.selectBox-selected a, .selectBox-dropdown-menu.selectBox-options li.selectBox-hover a {
	background: var(--white);
	color: var(--black);
	font-weight: 400;
}
table.wishlist_table .product-name a {
	font-weight: 500;
	text-decoration: none;
}
table.wishlist_table tbody .product-price {
	color: var(--black);
}
.woocommerce table.shop_table.wishlist_table tr td {
	border-color: #ededed;
	color: var(--black);
}
table.wishlist_table .product-price ins {
	text-decoration: none;
	font-weight: 500;
	color: var(--yellow);
}
table.wishlist_table .product-price del {
	font-size: .95em;
	opacity: .75;
	color: var(--black);
}
table.wishlist_table .product-remove {
	width: 50px !important;
	text-align: center;
}
table.wishlist_table .product-remove a {
	text-decoration: none;
	color: red;
	font-weight: 400;
	font-size: var(--h4-size);
}
.woocommerce table.shop_table.wishlist_table tr td .yith-add-to-wishlist-button-block {
	display: none !important;
}
table.wishlist_table .product-add-to-cart {
	width: 64px;
}
.wishlist_table .product-add-to-cart a {
	display: block !important;
}




.woocommerce-thankyou-order-received {
	font-size: var(--h5-size);
	font-weight: 500;
	text-align: center;
}
.woocommerce-thankyou-order-details {
	margin: 0 0 var(--gap);
	padding: var(--gap) var(--gap) 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background: var(--white);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}
.woocommerce-thankyou-order-details li {
	flex: auto;
	max-width: 100%;
	margin-right: var(--gap);
	margin-bottom: var(--gap);
	text-align: center;
}
.woocommerce-thankyou-order-details li:last-child {
	margin-right: 0;
}
.woocommerce-thankyou-order-details li strong {
	display: block;
}



@media (max-width: 1399px) {
	:root {
		--container: 1116px;
		--gap: 24px;
		--radius: 2px;

		--text-size: 16px;
		--text-size-sm: 14px;
		--h1-size: 34px;
		--h2-size: 32px;
		--h3-size: 28px;
		--h4-size: 24px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.header-wrap {
		height: 60px;
	}
	.header-logo img {
		max-height: 60px;
	}
	.main-menu {
		margin: 0 0 0 calc(var(--gap) / 2.4);
	}
	.main-menu li a {
		padding: calc(var(--gap) / 2.4) calc(var(--gap) / 2);
	}
	.main-menu li.menu-item-has-children > a:after {
		margin-left: 0;
		flex: 0 0 20px;
		max-width: 20px;
		width: 20px;
		height: 20px;
		margin-top: -2px;
	}
	.hero-section, .heroSlider-item__wrap {
		height: 640px;
	}
	.heroSlider-item__left {
		padding: 40px 0 90px;
	}
	.heroSlider-item__heading {
		font-size: calc(var(--h1-size) * 1.3);
	}
	.heroSlider-item__right {
		padding: 40px 0 90px;
	}
	.heroSlider-item__image img {
		max-height: calc(640px - 90px - 40px);
	}

	.banners-item__text-before-heading,
	.recommendBanner-text {
		font-size: var(--h6-size);
	}
	.banners-item__heading,
	.recommendBanner-heading {
		font-size: var(--h2-size);
	}
	.banners-item__text-after-heading {
		font-size: var(--h5-size);
	}
	.promoSlider-item__badge {
		width: 100px;
		height: 100px;
		font-size: var(--h2-size);
		left: -30px;
	}
	.promoSlider-section, .promoSlider-item__wrap {
		height: 360px;
	}
	.promoSlider-item__image img {
		max-height: calc(360px - 40px - 60px);
	}
	.recommendBanner {
		padding: 34px 20px 20px;
	}
	.recommendBanner-bg:after {
		width: calc(100% - var(--gap) / 2 * 2);
		height: calc(100% - var(--gap) / 2);
	}
}




@media (max-width: 1199px) {
	:root {
		--container: 916px;
		--gap: 20px;
		--radius: 2px;

		--text-size: 15px;
		--text-size-sm: 14px;
		--h1-size: 32px;
		--h2-size: 28px;
		--h3-size: 24px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 16px;
	}
	.btn {
		min-height: 48px;
		padding: 8px 24px;
	}
	.btn.btn-sm {
		min-height: 42px;
		padding: 8px 24px;
	}
	.header {
		padding: 12px 0;
	}
	.nav-catalog {
		flex: 0 0 170px;
		max-width: 170px;
	}
	.nav-catalog-toggle,
	.main-menu li a {
		height: 48px;
	}
	.main-menu ul {
		width: 240px;
	}
	.main-menu ul li a {
		min-height: 48px;
	}
	.nav-icon {
		flex: 0 0 48px;
		max-width: 48px;
		height: 48px;
	}
	.hero-section, .heroSlider-item__wrap {
		height: 560px;
	}
	.heroSlider-item__image img {
		max-height: calc(560px - 90px - 40px);
	}
	.catalog-menu-toggle {
		flex: 0 0 32px;
		max-width: 32px;
		width: 32px;
		height: 32px;
	}
	.catalog-menu > ul > li > a {
		min-height: 48px;
	}
	.catalog-menu > ul > li.parent > a {
		flex: 0 0 calc(100% - 32px);
		max-width: calc(100% - 32px);
	}
	.catalog-menu > ul > li > ul {
		-moz-column-count: 3;
		-webkit-column-count: 3;
		column-count: 3;
	}
	.offers-wrap .owl-nav {
		top: -75px;
	}
	.recommendBanner-button .btn {
		padding-left: 16px;
		padding-right: 16px;
	}
	.blog-wrap .owl-nav {
		top: -80px;
	}
	.woocommerce-MyAccount-navigation {
		width: 240px;
	}
	.woocommerce-MyAccount-content {
		width: calc(100% - 240px - var(--gap));
	}
}




@media (max-width: 991px) {
	:root {
		--container: 696px;
		--gap: 20px;
		--radius: 2px;

		--text-size: 14px;
		--text-size-sm: 12px;
		--h1-size: 24px;
		--h2-size: 22px;
		--h3-size: 20px;
		--h4-size: 18px;
		--h5-size: 16px;
		--h6-size: 15px;
	}
	input[type="text"], input[type="email"], input[type="tel"], input[type="password"], input[type="search"], select, textarea {
		min-height: 42px;
	}
	.section {
		padding-top: 54px;
		padding-bottom: 54px;
	}
	.owl-dots button {
		flex: 0 0 12px;
		max-width: 12px;
		width: 12px;
		height: 12px;
	}
	.owl-nav {
		width: 60px;
	}
	.owl-nav button {
		flex: 0 0 25px;
		max-width: 25px;
		width: 25px;
		height: 25px;
	}
	.heading {
		margin-bottom: var(--gap);
	}
	.heading h1, .heading h2 {
		font-size: var(--h4-size);
	}
	.header-search,
	.header-soc,
	.header-contacts .schedule,
	.main-menu {
		display: none;
	}
	.header-wrap {
		height: 32px;
	}
	.header-logo img {
		max-height: 32px;
	}
	.header-contacts {
		font-size: var(--text-size-sm);
	}



	.nav-catalog-sub {
		width: var(--container);
	}
	.catalog-menu-toggle {
		margin-right: calc(var(--gap) / 2);
		transform: rotate(0deg);
	}
	.active > .catalog-menu-toggle {
		transform: rotate(180deg);
	}
	.catalog-menu > ul > li.parent > a {
		flex: 0 0 calc(100% - 32px - var(--gap) / 2);
		max-width: calc(100% - 32px - var(--gap) / 2);
	}
	.catalog-menu > ul > li.parent:hover > ul {
		display: none;
	}
	.catalog-menu > ul > li.parent.active > ul {
		display: block;
	}
	.catalog-menu > ul > li > ul {
		position: relative;
		left: 0;
		-moz-column-count: 1;
		-webkit-column-count: 1;
		column-count: 1;
		width: 100%;
	}

	.heroSlider-item__wrap {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
	.heroSlider-item__left {
		padding: 40px 0;
		flex: auto;
		max-width: 100%;
		align-items: center;
	}
	.heroSlider-item__right {
		padding: 0 0 65px;
		flex: auto;
		max-width: 100%;
		align-items: center;
	}
	.heroSlider-item__image img {
		max-height: 190px;
	}

	.heroSlider-item__text-before-heading {
		font-size: var(--text-size-sm);
		margin-bottom: calc(var(--gap) / 1.6);
	}
	.heroSlider-item__heading {
		font-size: var(--h1-size);
		margin-bottom: calc(var(--gap) / 1.6);
	}

	.owl-heroSlider .owl-dots {
		bottom: 26px;
	}

	.banners-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.banners-item__wrap {
		min-height: 220px;
	}
	.banners-item__text-before-heading, .recommendBanner-text {
		font-size: var(--text-size-sm);
	}
	.banners-item__heading {
		font-size: var(--h5-size);
	}
	.recommendBanner-heading {
		font-size: var(--h4-size);
	}
	.banners-item__text-after-heading {
		font-size: var(--h4-size);
		margin-bottom: calc(var(--gap) / 1.5);
	}

	.offers-heading {
		margin-bottom: calc(var(--gap) / 2);
	}
	.offers-blocks {
		padding-top: 0;
		border-top: 0;
	}
	.offers-wrap .owl-nav {
		top: -45px;
	}

	.offers-tab {
		flex: 0 0 calc(100% - 60px - var(--gap));
		max-width: calc(100% - 60px - var(--gap));
		margin-right: 0;
	}
	.offers-tab li a {
		font-size: var(--text-size-sm);
		padding: 6px;
	}

	.products-items.columns-4 .products-item, .products-items.columns-4 .category-item,
	.products-items.columns-3 .products-item, .products-items.columns-3 .category-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.products-item__image {
		flex: 0 0 calc((var(--container) - var(--gap)) / 2);
		max-height: calc((var(--container) - var(--gap)) / 2);
	}
	.products-item__image img {
		max-height: calc((var(--container) - var(--gap)) / 2 - var(--gap));
	}

	.promoSlider-item__content {
		font-size: var(--text-size-sm);
	}
	.promoSlider-item__content h2 {
		font-size: var(--text-size);
	}
	.promoSlider-item__badge {
        width: 40px;
        height: 40px;
        font-size: var(--text-size-sm);
        left: 0;
        letter-spacing: 0;
    }
    .promoSlider-section, .promoSlider-item__wrap {
    	height: 280px;
    }
    .promoSlider-item__wrap {
    	padding: 30px 0 40px;
    }
    .promoSlider-item__image img {
    	max-height: calc(280px - 30px - 40px);
    }
    .promoSlider-item__left {
    	flex: 0 0 calc(100% - 140px);
    	max-width: calc(100% - 140px);
    }
    .promoSlider-item__right {
    	flex: 0 0 140px;
    	max-width: 140px;
    	justify-content: center;
    }

    .owl-promoSlider .owl-dots {
    	bottom: 24px;
    }
    .advantages-item {
    	flex: 0 0 100%;
    	max-width: 100%;
    }
    .advantages-item__wrap {
    	flex-direction: column;
    	text-align: center;
    }
    .advantages-item__image {
    	flex: 0 0 45px;
    	max-height: 45px;
    	width: 45px;
    	margin-right: 0;
    	margin-bottom: calc(var(--gap) / 2.5);
    }
    .recommendProducts-left {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.recommendProducts-wrap {
		position: relative;
		z-index: 1;
	}
	.recommendProducts-right {
		flex: 0 0 100%;
		max-width: 100%;
		position: absolute;
		bottom: 0;
		right: 0;
		width: calc(50% - var(--gap) / 2);
		height: calc(50% - var(--gap) / 2);
	}

	.blog-wrap .owl-nav {
		top: -70px;
	}

	.blog-item__wrap {
		min-height: 180px;
	}
	.blog-item__date {
		font-size: var(--text-size-sm);
	}
	.blog-item__title {
		font-size: var(--text-size);
	}
	.blog-item__excerpt {
		font-size: var(--text-size-sm);
	}
	.partners-item__wrap {
		height: 70px;
	}
	.partners-item__wrap img {
		max-height: 70px;
	}

	.footer-wrap {
		margin: 0;
		flex-direction: column;
	}
	.footer-widget {
		max-width: 100%;
		padding: 0;
		margin-bottom: var(--gap);
	}
	.footer-widget:last-child {
		margin-bottom: 0;
	}
	.footer-logo img {
		max-height: 50px;
	}

	.page-header {
		padding: calc(var(--gap) / 2) 0 var(--gap);
	}
	.page-breadcrumbs {
		font-size: var(--text-size-sm);
	}
	.page-title {
		font-size: var(--h4-size);
	}
	.page-body-sidebar {
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: var(--gap);
	}
	.page-body-main {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.widget-area {
		display: none;
		margin-top: calc(var(--gap) / 1.5);
	}
	.category-item__image {
		flex: 0 0 calc((var(--container) - var(--gap) ) / 2);
		max-height: calc((var(--container) - var(--gap) ) / 2);
	}
	.category-item__image img {
		max-height: calc((var(--container) - var(--gap)) / 2 - var(--gap));
	}
	.woocommerce-loop-category__title {
		min-height: 48px;
	}
	.widget-title, .bapf_head h3 {
		font-size: var(--text-size);
	}
	.term-description {
		margin-top: 56px;
	}

	.singleProduct-left {
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: var(--gap);
	}
	.singleProduct-right {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.singleProduct-title {
		font-size: var(--text-size);
	}
	.singleProduct-sku {
		font-size: var(--text-size-sm);
		padding: 8px;
	}
	.products-item__rating-count {
		font-size: var(--text-size-sm);
	}
	.singleProduct-rating-count {
		font-size: var(--text-size-sm);
	}

	.woocommerce-product-gallery {
		display: block;
		height: 380px;
	}
	.singleProduct-mainSlider {
		max-width: 100%;
		margin-bottom: var(--gap);
	}
	.woocommerce-product-gallery__image {
		height: 280px;
	}
	.woocommerce-product-gallery__image img {
		max-height: 280px;
	}
	.singleProduct-otherSlider {
		margin: 0 calc(var(--gap) / -2);
		max-width: 100%;
	}
	.singleProduct-otherSlider .slick-slide > div {
		padding: 0 calc(var(--gap) / 2);
	}
	.woocommerce-product-gallery__thumbnail {
		height: 80px;
	}
	.yith-wcwl-add-to-wishlist-button {
		font-size: var(--text-size);
	}
	.singleProduct-advantages-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.woocommerce-tabs ul.tabs li a {
		padding: 14px 24px 12px;
	}
	.woocommerce-Tabs-panel {
		padding: var(--gap);
	}


	.products-item__rating-stars,
	.products-item__rating-stars span:before,
	.singleProduct-rating-stars,
	.singleProduct-rating-stars span:before,
	.comment-info .star-rating,
	.comment-info .star-rating span:before {
		width: 80px;
		height: 15px;
	}
	.comment-info .star-rating {
		flex: 0 0 80px;
		max-width: 80px;
	}

	.pageContacts-left {
		order: 1;
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: var(--gap);
	}
	.pageContacts-bottom {
		order: 2;
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: var(--gap);
		padding-top: 0 !important;
	}
	.pageContacts-right {
		order: 3;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.pageContacts-map iframe {
		height: 360px;
	}
	.blog-item {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.alignleft,
	.alignright,
	.aligncenter {
		max-width: 50%;
	}
	.gallery-columns-3 .gallery-item,
	.gallery-columns-4 .gallery-item,
	.gallery-columns-5 .gallery-item,
	.gallery-columns-6 .gallery-item,
	.gallery-columns-7 .gallery-item,
	.gallery-columns-8 .gallery-item,
	.gallery-columns-9 .gallery-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.gallery-columns-3 .gallery-item > *,
	.gallery-columns-4 .gallery-item > *,
	.gallery-columns-5 .gallery-item > *,
	.gallery-columns-6 .gallery-item > *,
	.gallery-columns-7 .gallery-item > *,
	.gallery-columns-8 .gallery-item > *,
	.gallery-columns-9 .gallery-item > * {
		height: calc((var(--container) - var(--gap)) / 2 / 1.4);
	}


	.pageCart-left,
	.pageCheckout-left,
	.pageLogin-left {
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: var(--gap);
	}
	.pageCart-right,
	.pageCheckout-right,
	.pageLogin-right {
		flex: 0 0 100%;
		max-width: 100%;
	}


	.woocommerce-MyAccount-navigation {
		width: 100%;
		margin-bottom: var(--gap);
		float: none;
	}
	.woocommerce-MyAccount-content {
		width: 100%;
		float: none;
		margin-left: 0;
	}

	.comment-avatar {
		flex: 0 0 48px;
		max-width: 48px;
		height: 48px;
	}
	.comment-info {
		flex: 0 0 calc(100% - var(--gap) - 48px);
		max-width: calc(100% - var(--gap) - 48px);
	}
}




@media (max-width: 767px) {
	:root {
		--container: 516px;
		--gap: 16px;
		--radius: 2px;

		--text-size: 14px;
		--text-size-sm: 12px;
		--h1-size: 24px;
		--h2-size: 22px;
		--h3-size: 20px;
		--h4-size: 18px;
		--h5-size: 16px;
		--h6-size: 15px;
	}
	.singleBlog-image {
		float: none;
		margin: 0 0 var(--gap);
		max-width: 100%;
	}

	.form-field-50 {
		flex: 0 0 100%;
		max-width: 100%;
	}


	.blog-wrap .owl-nav {
        top: -65px;
    }


	.archiveShop-top {
		flex-wrap: wrap;
	}
	.woocommerce-result-count {
		font-size: var(--text-size-sm);
	}
	.woocommerce-ordering select {
		font-size: var(--text-size-sm);
	}
	.form-row-first, .form-row-last {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.pageCartTableProducts,
	.woocommerce-orders-table {
		display: block;
		width: 100%;
	}
	.pageCartTableProducts thead,
	.woocommerce-orders-table thead {
		display: none;
	}
	.pageCartTableProducts tbody,
	.woocommerce-orders-table tbody {
		display: block;
		width: 100%;
	} 
	.pageCartTableProducts tbody tr,
	.woocommerce-orders-table tbody tr {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		border-bottom: 1px solid var(--grey);
		padding: var(--gap);
	}
	.pageCartTableProducts tbody td,
	.woocommerce-orders-table tbody td {
		flex: 0 0 100%;
		max-width: 100%;
		display: block;
		padding: 0;
		border: none;
		background: none;
	}
	.woocommerce-orders-table tbody td {
		margin-bottom: 5px;
	}
	.woocommerce-orders-table tbody td:last-child {
		margin-bottom: 0;
	}
	.woocommerce-orders-table tbody td:before {
		content: attr(data-title) ":";
		font-weight: 600;
	}
	.woocommerce-orders-table__cell-order-actions:before {
		display: none;
	}
	.pageCartTableProducts tbody td.product-thumbnail {
		flex: 0 0 54px;
		max-width: 54px;
		width: 54px;
		margin-bottom: 10px;
	}
	.pageCartTableProducts-image {
		width: 54px;
		height: 54px;
	}
	.pageCartTableProducts-image {
		margin: auto;
	}
	.pageCartTableProducts tbody td.product-name {
		flex: 0 0 calc(100% - 54px);
		max-width: calc(100% - 54px);
		padding-left: 20px;
		margin-bottom: 10px;
		font-size: var(--text-size);
	}
	.pageCartTableProducts tbody td.product-quantity {
		flex: 0 0 100px;
		max-width: 100px;
		min-width: 100px;
	}
	.pageCartTableProducts .qib-container:not(#qib_id):not(#qib_id) {
		margin: 0;
	}
	.pageCartTableProducts tbody td.product-subtotal {
		flex: 0 0 calc(100% - 100px - 50px);
		max-width: calc(100% - 100px - 50px);
		padding: 0 var(--gap);
	}
	.pageCartTableProducts tbody td.product-remove {
		flex: 0 0 50px;
		max-width: 50px;
	}
	.pageCartTableProducts .product-remove a {
		margin-left: auto;
	}
	.form-row {
		margin-bottom: var(--gap);
	}
	.woocommerce-order .address {
		margin: var(--gap) calc(var(--gap) / 2) calc(var(--gap) * -1);
	}
	.pageCartTableProducts .coupon {
		float: none;
		max-width: 100%;
		margin-bottom: 10px;
	}


	.wishlist_table.mobile {
		padding: 0;
	}
	.wishlist_table.mobile li {
		background: var(--white);
		border: 1px solid var(--grey);
		box-shadow: var(--shadow);
		border-radius: var(--radius);
		margin-bottom: var(--gap);
		padding: var(--gap);
	}
	.wishlist_table.mobile li:last-child {
		margin-bottom: 0;
	}
	.wishlist_table.mobile li .item-wrapper {
		display: flex;
		width: 100%;
		margin-bottom: 10px;
	}
	.wishlist_table.mobile li .item-wrapper .product-thumbnail {
		flex: 0 0 60px;
		max-width: 60px;
		margin-right: var(--gap);
	}
	.wishlist_table.mobile li .item-wrapper .item-details {
		flex: 0 0 calc(100% - 60px - var(--gap));
		max-width: calc(100% - 60px - var(--gap));
	}
	.wishlist_table.mobile li .item-wrapper .product-name {
		margin-bottom: 10px;
	}
	.wishlist_table.images_grid li .item-details h3, .wishlist_table.mobile li .item-details h3, .wishlist_table.modern_grid li .item-details h3 {
		margin-bottom: 0;
		font-size: var(--text-size);
	}
	.wishlist_table.images_grid li .item-details table.item-details-table, .wishlist_table.mobile li .item-details table.item-details-table, .wishlist_table.mobile li table.additional-info, .wishlist_table.modern_grid li .item-details table.item-details-table {
		width: 100%;
		margin-bottom: 0;
	}
	.wishlist_table.images_grid li .item-details table.item-details-table td, .wishlist_table.mobile li .item-details table.item-details-table td, .wishlist_table.mobile li table.additional-info td, .wishlist_table.modern_grid li .item-details table.item-details-table td {
		font-size: var(--text-size-sm);
	}
	.item-details-table ins {
		text-decoration: none;
		font-weight: 600;
		font-size: var(--text-size);
	}
	.wishlist_table.mobile li .additional-info-wrapper {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.wishlist_table.mobile li .additional-info-wrapper .move-to-another-wishlist, .wishlist_table.mobile li .additional-info-wrapper .product-add-to-cart {
		margin-bottom: 0;
	}
	.wishlist_table.mobile li .item-details h3 a {
		text-decoration: none;
	}
	.wishlist-in-stock {
		color: green;
	}
	.wishlist_table.mobile li .additional-info-wrapper .product-remove a {
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		-webkit-mask-image: url(images/close.svg);
		mask-image: url(images/close.svg);
		background-color: red;
		width: 28px;
		height: 28px;
		display: block;
	}
	.offers-wrap .owl-nav {
		top: -37px;
	}
	.wc-block-components-notice-banner__content .button, .woocommerce-message .button, .woocommerce-info .button, .woocommerce-error .button {
		float: none;
		margin-top: 10px;
		margin-left: 0;
		display: inline-block;
	}
}


@media (max-width: 575px) {
	:root {
		--container: calc(100vw - var(--gap) * 2);
		--gap: 16px;
		--radius: 2px;

		--text-size: 14px;
		--text-size-sm: 12px;
		--h1-size: 24px;
		--h2-size: 22px;
		--h3-size: 20px;
		--h4-size: 18px;
		--h5-size: 16px;
		--h6-size: 15px;
	}
	.gallery-columns-2 .gallery-item > *,
	.gallery-columns-3 .gallery-item > *,
	.gallery-columns-4 .gallery-item > *,
	.gallery-columns-5 .gallery-item > *,
	.gallery-columns-6 .gallery-item > *,
	.gallery-columns-7 .gallery-item > *,
	.gallery-columns-8 .gallery-item > *,
	.gallery-columns-9 .gallery-item > * {
		height: calc((var(--container) - var(--gap)) / 2 / 1.08);
	}
	.nav {
		position: sticky;
		top: 0;
	}
	.nav-catalog {
		flex: 0 0 150px;
		max-width: 150px;
	}
	.nav-icon {
		flex: 0 0 42px;
		max-width: 42px;
	}
	.nav-catalog-sub {
		overflow: auto;
    	max-height: calc(100vh - 48px - var(--gap));
	}
	.woocommerce-loop-product__title {
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
	}
	.products-item__rating-count {
		display: none;
	}
	.blog-item__title {
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
	}
	.blog-item__excerpt {
		display: none;
	}
	.singleProduct-rating-count {
		display: none;
	}
	.woocommerce-tabs ul.tabs {
		overflow: auto;
	}
	.woocommerce-tabs ul.tabs li {
		flex: 0 0 auto;
	}
	.pageCartTableProducts .coupon button {
		padding-right: 12px;
		padding-left: 12px;
	}
	.offers-tab li a {
		padding: 6px 0;
	}
}



/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}