/*!
Theme Name: Hydro Hub
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: hydrohub
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.

Hydro Hub 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=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
	--container: 1316px;
	--gap: 24px;
	--shadow: 0 0px 5px 0px rgba(0, 0, 0, 0.1);

	--text-size: 14px;
	--text-size-md: 16px;
	--text-size-sm: 12px;
	--h1-size: 36px;
	--h2-size: 30px;
	--h3-size: 26px;
	--h4-size: 22px;
	--h5-size: 20px;
	--h6-size: 18px;

	--bg: #f1f2f6;
	--blue: #0c7eaf;
	--blue-dark: #29435b;
	--white: #FFFFFF;
	--black: #333333;
	--black-dark: #222222;
	--yellow: #EFB93F;
	--line: #ededed;
}
*, ::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: 'Inter', sans-serif;
	line-height: 1.5;
	color: var(--black);
	background: var(--white);
}
body.home {
	background: var(--bg);
}
a {
	color: var(--blue);
	transition: .5s;
}
a:hover {
	text-decoration: none;
	color: var(--blue-dark);
}
img {
	margin: 0;
	vertical-align: middle;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	transition: .5s;
}
.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: 'Inter', serif;
	font-weight: 600;
	margin: 0 0 15px;
	line-height: 1.2;
}
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 15px;
}
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 -7px -15px;
}
.form-field {
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 7px;
	margin-bottom: 15px;
}
.form-field-50 {
	flex: 0 0 50%;
	max-width: 50%;
}
.form-field-label {
	display: block;
	margin-bottom: 25px;
	font-family: 'Abhaya Libre', serif;
	font-weight: 400;
	font-size: var(--text-size);
	line-height: 1.25;
}
::-webkit-input-placeholder {
	color: rgba(36, 36, 36, .6);
}
::-moz-placeholder {
	color: rgba(36, 36, 36, .6);
}
:-ms-input-placeholder {
	color: rgba(36, 36, 36, .6);
}
:-moz-placeholder {
	color: rgba(36, 36, 36, .6);
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Inter', sans-serif;
	line-height: 1.5;
	width: 100%;
	background: #eeeeee;
	border: none;
	color: var(--black);
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	padding: 10px 14px;
	min-height: 42px;
	outline: none;
	transition: .5s;
}
textarea {
	height: 90px;
	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: 4px;
}
.wpcf7 form .wpcf7-response-output {
	margin: 20px 0 0;
	padding: 10px 16px;
}




.screen-reader-text {
	display: none;
}
.container {
	width: 100%;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
}
.section {
	position: relative;
	padding-top: 60px;
	padding-bottom: 60px;
	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: var(--gap);
}
.heading:last-child {
	margin-bottom: 0;
}
.heading.center {
	text-align: center;
}
.heading h2 {
	position: relative;
	font-size: var(--h2-size);
	font-family: 'Inter', serif;
	text-transform: uppercase;
	color: var(--black-dark);
	padding-left: 40px;
	z-index: 1;
}
.heading h2:before {
	content: '';
	position: absolute;
    left: 5px;
    bottom: 8px;
    border-left: 5px solid var(--blue);
    transform: skew(-26deg);
    height: 20px;
    width: 15px;
    border-right: 5px solid var(--blue);
}



.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: var(--text-size);
	font-family: 'Inter', serif;
	font-weight: 600;
	line-height: 1.5;
	border: none;
	padding: 10px 24px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	outline: none;
	min-height: 44px;
	cursor: pointer;
	text-transform: uppercase;
	text-decoration: none;
	z-index: 1;
	transition: .5s;
}
.btn-primary {
	background-color: var(--blue);
	border-color: var(--blue);
	color: var(--white);
}
.btn-primary:hover {
	background-color: var(--blue-dark);
	border-color: var(--blue-dark);
	color: var(--white);
}
.btn-secondary {
	background-color: var(--white);
	border-color: var(--white);
	color: var(--blue);
}
.btn-secondary:hover {
	background-color: var(--blue-dark);
	border-color: var(--blue-dark);
	color: var(--white);
}
.btn.btn-link {
	padding: 0;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	color: var(--blue);
	text-decoration: underline;
	text-decoration-style: dashed;
	text-underline-offset: 4px;
	min-height: inherit;
}
.btn.btn-link:hover {
	color: var(--blue-dark);
}


.swiper-pagination {
	position: relative !important;
	bottom: auto !important;
	top: auto !important;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: calc(var(--gap) * 1.5);
	gap: 8px;
}
.swiper-pagination-bullet {
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px !important;
	height: 10px !important;
	background: #E2E5F0 !important;
	margin: 0 !important;
	opacity: 1 !important;
	-moz-border-radius: 0 !important;
	-webkit-border-radius: 0 !important;
	border-radius: 0 !important;
	transform: skew(-25deg);
}
.swiper-pagination.white .swiper-pagination-bullet {
	background: #ffffff !important;
	opacity: .4 !important;
}
.swiper-pagination-bullet-active {
	background: #019658 !important;
}
.swiper-pagination.white .swiper-pagination-bullet-active {
	background: #ffffff !important;
	opacity: 1 !important;
}

.swiper-navigation {
	position: relative;
	display: flex;
	align-items: center;
	z-index: 9;
}
.swiper-navigation button {
	position: relative;
	flex: 0 0 56px;
	max-width: 56px;
	width: 56px;
	height: 36px;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	border: none;
	background: var(--blue);
	display: flex;
	align-items: center;
	justify-content: center;
	outline: none;
	padding: 0;
	cursor: pointer;
	clip-path: polygon(30% 0, 100% 0%, 70% 100%, 0% 100%);
	transition: .5s;
}
.swiper-navigation button:hover {
	background: var(--blue-dark);
}
.swiper-navigation button:disabled {
	background: var(--blue);
	opacity: .15;
	cursor: no-drop;
}
.swiper-navigation 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(--white);
    flex: 0 0 20px;
    max-width: 20px;
    width: 20px;
    height: 20px;
    transition: .5s;
    z-index: 1;
}
.swiper-navigation button.swiper-navigation-prev:before {
	transform: rotate(90deg);
}
.swiper-navigation button.swiper-navigation-next:before {
	transform: rotate(-90deg);
}


.soc-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 2.4);
}
.soc-links li.soc-mobile {
	display: none;
}
.soc-links li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: var(--white);
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	box-shadow: 0px 2px 6px 0 rgba(0, 0, 0, 0.08);
	-ms-box-shadow: 0px 2px 6px 0 rgba(0, 0, 0, 0.08);
	-moz-box-shadow: 0px 2px 6px 0 rgba(0, 0, 0, 0.08);
	-webkit-box-shadow: 0px 2px 6px 0 rgba(0, 0, 0, 0.08);
}
.soc-links li a:hover {
	background: var(--black);
}
.soc-links li a svg {
	flex: 0 0 20px;
	max-width: 20px;
	height: 20px;
}
.soc-links li a path {
	fill: #555555;
	transition: .5s;
}
.soc-links li a:hover path {
	fill: #FFFFFF;
}



.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 var(--gap) var(--gap);
	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: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--black);
	width: 34px;
	height: 34px;
	border: none;
	padding: 0;
	outline: none !important;
	transition: .5s;
}
.modal-mobile-close:hover {
	background-color: var(--blue);
}
.mobile-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	text-transform: uppercase;
}
.mobile-menu li {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	z-index: 1;
}
.mobile-menu > li {
	border-bottom: 1px solid var(--line);
}
.mobile-menu > li:last-child {
	border-bottom: 0;
}
.mobile-menu li a {
	order: 1;
	font-size: var(--text-size-md);
	flex: 0 0 100%;
	max-width: 100%;
	position: relative;
	font-weight: 500;
	display: block;
	padding: 10px 0;
	text-decoration: none;
	color: var(--black);
	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(--blue);
}
.mobile-menu-toggle {
	order: 2;
	-webkit-mask-size: 12px;
	-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(--blue);
}
.mobile-menu li.menu-item-has-children.active > .mobile-menu-toggle {
	background-color: var(--blue);
	transform: rotate(180deg);
}
.mobile-menu ul {
	flex: 0 0 100%;
	max-width: 100%;
	display: none;
	order: 3;
	margin: 0 0 10px;
	padding: 0 0 0 20px;
	list-style: none;
	text-transform: none;
	z-index: 9;
}



.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1055;
	display: none;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	outline: 0;
}
.modal-dialog {
	position: relative;
	width: auto;
	max-width: 420px;
	margin: 1.75rem auto;
	pointer-events: none;
	display: flex;
	align-items: center;
	min-height: calc(100% - 3.5rem);
}
.modal-content {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background-color: var(--white);
	background-clip: padding-box;
	outline: 0;
	padding: calc(var(--gap) * 1.5) var(--gap) var(--gap);
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	overflow: hidden;
	z-index: 1;
}
.modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	width: 100vw;
	height: 100vh;
	background-color: #000000;
	opacity: 0;
	z-index: -1;
}
.modal-backdrop.show {
	opacity: .7;
	z-index: 1049;
}
.modal-title {
	font-size: var(--h4-size);
	color: var(--black);
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: var(--gap);
	text-align: center;
}
.modal-close {
	position: absolute;
	-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: #999999;
	width: 34px;
	height: 34px;
	top: 12px;
	right: 12px;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: .5s;
	z-index: 9;
}
.modal-close:hover {
	background-color: var(--black);
}



.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: 32px -15px 2px;
}
.gallery:first-child {
	margin-top: 0;
}
.gallery:last-child {
	margin-bottom: -30px;
}
.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
	margin: 0 0 24px;
	padding: 0 12px;
}
.gallery-item > * {
	overflow: hidden;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid var(--line);
}
.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) - 30px) / 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) - 30px * 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) - 30px * 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) - 30px * 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) - 30px * 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) - 30px * 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) - 30px * 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) - 30px * 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: 30px;
	margin-bottom: 20px;
}
.alignright {
	float: right;
	margin-left: 30px;
	margin-bottom: 20px;
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
}
img.alignleft,
img.alignright,
img.aligncenter {
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
}




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

.topbar {
	position: sticky;
	top: 0;
	background: var(--blue-dark);
	color: var(--white);
	font-size: var(--text-size-sm);
	z-index: 93;
}
.topbar a {
	color: var(--white);
	text-decoration: none;
}
.topbar a:hover {
	color: var(--yellow);
}
.topbar-wrap {
	position: relative;
	display: flex;
	align-items: center;
	gap: var(--gap);
	height: 36px;
	z-index: 1;
}
.topbar-wrap:before {
	content: '';
	flex: 0 0 260px;
	max-width: 260px;
	background: var(--blue);
	height: 37px;
	transform: skew(-25deg);
}
.topbar-contacts {
	flex: auto;
	display: flex;
	align-items: center;
	gap: var(--gap);
}
.topbar-contacts p {
	margin: 0;
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 2);
}
.topbar-soc {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 8);
}
.topbar-soc span.soc-mobile {
	display: none;
}
.topbar-soc span a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
}
.topbar-soc span a svg {
	flex: 0 0 16px;
	max-width: 16px;
	height: 16px;
}
.topbar-soc span a path {
	fill: var(--white);
	transition: .5s;
}
.topbar-soc span a:hover path {
	fill: var(--yellow);
}
.topbar-account {
	position: relative;
	padding-right: var(--gap);
	display: flex;
	z-index: 1;
}
.topbar-account:after {
	content: '';
	background: var(--white);
	width: 1px;
	height: 90%;
	position: absolute;
	top: 5%;
	right: -1px;
	z-index: 1;
}
.topbar-account a {
	display: inline-flex;
	align-items: center;
	gap: calc(var(--gap) / 6);
}
.topbar-account a:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/user.svg);
    mask-image: url(images/user.svg);
    background-color: var(--white);
    flex: 0 0 16px;
    max-width: 16px;
    width: 16px;
    height: 16px;
    transition: .5s;
}
.topbar-account a:hover:before {
	background-color: var(--yellow);
}
.topbar-language {
	position: relative;
	display: flex;
	align-items: center;
	gap: 6px;
	padding-right: calc(var(--gap) / 1.5);
	font-weight: 600;
	line-height: 1;
	z-index: 1;
}
.topbar-language:after {
	content: '';
	background: var(--white);
	width: 1px;
	height: 90%;
	position: absolute;
	top: 5%;
	right: -1px;
	z-index: 1;
}
.topbar-language a,
.topbar-language span {
	display: inline-flex;
	align-items: center;
	color: var(--white);
}
.topbar-language a.active,
.topbar-language a:hover {
	color: var(--yellow);
}
.topbar-currency {
	flex: 0 0 42px;
	max-width: 42px;
}
.topbar-currency > div {
	height: 36px;
}
.selectron23-container {
	background: none !important;
}
.selectron23-container .selectron23-option {
	background: var(--blue-dark) !important;
	padding: 0 5px !important;
	height: 36px;
	display: flex;
	align-items: center;
}
.selectron23-container .selectron23-option:first-child {
	padding: 0 !important;
}
.selectron23-option-title {
	color: var(--white) !important;
	font-size: var(--text-size-sm) !important;
	transition: .5s;
}
.selectron23-option-title:hover {
	color: var(--yellow) !important;
}
.selectron23-container > span {
	right: 0 !important;
	color: var(--white) !important;
}
.selectron23-container > span:hover {
	color: var(--yellow) !important;
}


.header {
	position: sticky;
	top: 36px;
	background: var(--blue);
	color: var(--white);
	padding: 10px 0;
	z-index: 92;
}
.header-wrap {
	display: flex;
	align-items: center;
	height: 60px;
	gap: var(--gap);
}
.header-logo {
	flex: 0 0 240px;
	max-width: 240px;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 1.5);
}
.header-logo img {
	max-height: 60px;
}
.header-logo span {
	line-height: 1.2;
	font-weight: 600;
	font-size: var(--text-size);
	text-transform: uppercase;
}
.main-menu {
	flex: auto;
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: var(--gap);
}
.main-menu li {
	position: relative;
	z-index: 1;
}
.main-menu li a {
	font-weight: 500;
	color: var(--white);
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 6px 0;
	text-decoration: none;
	text-transform: uppercase;
}
.main-menu > li:after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	background: var(--yellow);
	left: 0;
	bottom: 0;
	transition: .5s;
	z-index: -1;
}
.main-menu > li:hover:after,
.main-menu > li.current-menu-item:after {
	width: 100%;
}
.main-menu li.menu-item-has-children > a:after {
	content: '';
	flex: 0 0 10px;
	max-width: 10px;
	width: 10px;
	height: 10px;
	-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);
	transition: .5s;
}
.main-menu li.menu-item-has-children:hover > a:after {
	transform: rotate(180deg);
}
.main-menu li.menu-item-has-children > a:hover:after,
.main-menu li.current-menu-item.menu-item-has-children > a:after {
	background-color: var(--yellow);
}
.main-menu ul {
	position: absolute;
	top: 100%;
	left: calc(var(--gap) / -1.5);
	margin: 0;
	padding: calc(var(--gap) / 3) 0;
	list-style: none;
	background: var(--white);
	color: var(--black);
	box-shadow: var(--shadow);
	width: 240px;
	transform: translateY(20px);
	opacity: 0;
	visibility: hidden;
	transition: .5s;
	z-index: -99;
}
.main-menu li:hover > ul {
	transform: translateY(0);
	opacity: 1;
	visibility: inherit;
	z-index: 1;
}
.main-menu > li:last-child > ul {
	left: auto;
	right: 0;
}
.main-menu ul li {
	padding: 10px calc(var(--gap) / 1.5);
	border-bottom: 1px solid var(--bg);
}
.main-menu ul li:last-child {
	border-bottom: none;
}
.main-menu ul li a {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--black);
	text-transform: none;
}
.main-menu ul li a:hover {
	color: var(--blue);
}
.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: calc(var(--gap) / 1.5);
	left: 100%;
}
.header-icons {
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 1.5);
	flex: 0 0 auto;
}
.header-icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}
.header-icon > a,
.header-icon > button {
	position: relative;
	flex: 0 0 32px;
	max-width: 32px;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: none;
	padding: 0;
	outline: none;
	cursor: pointer;
	text-decoration: none;
	transition: .5s;
	z-index: 1;
}
.header-icon.cart > a {
	flex: 0 0 auto;
	max-width: 100%;
	width: auto;
	gap: 6px;
	color: var(--white);
}
.header-icon.cart > a:hover {
	color: var(--yellow);
}
.header-icon > a:before,
.header-icon > button:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--white);
	flex: 0 0 32px;
	max-width: 32px;
	width: 32px;
	height: 100%;
	transition: .5s;
}
.header-icon.search > button:before {
	-webkit-mask-size: 36px;
}
.header-icon > a:hover:before,
.header-icon > button:hover:before {
	background-color: var(--yellow);
}
.header-icon.cart > a:before {
	-webkit-mask-image: url(images/bag_alt.svg);
	mask-image: url(images/bag_alt.svg);
}
.header-icon.wishlist > a:before {
	-webkit-mask-image: url(images/favorite.svg);
	mask-image: url(images/favorite.svg);
}
.header-icon.search > button:before {
	-webkit-mask-image: url(images/search.svg);
	mask-image: url(images/search.svg);
}
.header-icon.menu-toggle > button:before {
	-webkit-mask-image: url(images/menu.svg);
	mask-image: url(images/menu.svg);
}
.header-icon.search.active > button:before {
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
}
.header-icon > a > span {
	position: absolute;
	bottom: -2px;
	left: 18px;
	min-width: 16px;
	height: 16px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: var(--blue-dark);
	color: var(--white);
	font-size: 10px;
	font-weight: 400;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}
.header-icon.menu-toggle {
	display: none;
}
.header-icon a div {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	font-weight: 600;
	line-height: 1.2;
	gap: 2px;
}
.header-icon a div > span:first-child {
	color: var(--white);
	opacity: .8;
	font-size: 10px;
	font-weight: 400;
}
.header-search-inner {
	display: none;
	position: absolute;
	top: calc(100% + 24px);
	right: -24px;
	width: 480px;
	padding: 5px 0;
	z-index: 1;
}
.header-search-inner:before {
	content: '';
	position: absolute;
	transform: skew(-23deg);
	background: var(--blue);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.active .header-search-inner {
	display: block;
}
.header-search-inner-in {
	position: relative;
	z-index: 1;
	margin: 0 10px;
}
.header-search-inner-in:before {
	content: '';
	position: absolute;
	transform: skew(-23deg);
	background: var(--white);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.search-form {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	z-index: 1;
}
.search-form:after {
	content: '';
	position: absolute;
	width: 4px;
	height: 40px;
	background: var(--blue);
	right: 40px;
	top: 0;
	transform: skew(-23deg);
	z-index: -1;
}
.search-form select {
	flex: 0 0 150px;
	max-width: 150px;
	height: 40px;
	min-height: auto;
	background: none;
	border: none;
	padding: 0 0 0 10px;
	outline: none;
	cursor: pointer;
}
.search-form-line {
	flex: 1px;
	max-width: 1px;
	height: 24px;
	background: var(--bg);
	margin: 0 10px;
}
.search-form input {
	position: relative;
	flex: auto;
	max-width: 100%;
	height: 40px;
	background: none;
	border: none;
	padding: 0 10px 0px 0;
	font-size: var(--text-size);
	font-weight: 400;
	outline: none;
	transition: .5s;
}
.search-form button {
	-webkit-mask-size: 28px;
	-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(--black);
	flex: 0 0 40px;
	max-width: 40px;
	height: 40px;
	cursor: pointer;
	outline: none;
	border: 0;
	padding: 0;
	transition: .5s;
}
.search-form button:hover {
	background-color: var(--blue);
}



.main {
	position: relative;
	z-index: 2;
}





.footer {
	position: relative;
	background: var(--blue-dark);
	color: var(--white);
	z-index: 1;
}
.footer a {
	color: var(--white);
	text-decoration: none;
}
.footer a:hover {
	color: var(--yellow);
}
.footer-wrap {
	padding: 50px 0;
	display: flex;
	gap: calc(var(--gap) * 2);
}
.footer-widget {
	flex: 1;
}
.footer-widget:nth-child(2) {
	flex: 2;
}
.footer-widget-title {
	font-size: var(--h4-size);
	font-weight: 600;
	text-transform: uppercase;
}
.footer-logo {
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 1.5);
}
.footer-logo img {
	max-height: 60px;
}
.footer-logo span {
	line-height: 1.2;
	font-weight: 600;
	font-size: var(--text-size);
	text-transform: uppercase;
}
.footer-company {
	margin-top: var(--gap);
}
.footer-menu {
	margin: 0 0 -10px;
	padding: 0;
	list-style: none;
	-moz-column-count: 2;
	column-count: 2;
}
.footer-menu li {
	page-break-inside: avoid;
	break-inside: avoid;
	margin-bottom: 10px;
}
.footer-menu li a {
	position: relative;
	transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-webkit-transition: all 0.2s ease-in-out 0s;
}
.footer-menu li a:hover {
	padding-left: 15px;
}
.footer-menu li a:before {
	content: '';
	position: absolute;
	width: 0px;
	height: 1px;
	top: 50%;
	margin-top: 0;
	left: 0;
	background: var(--yellow);
	transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-webkit-transition: all 0.2s ease-in-out 0s;
}
.footer-menu li a:hover:before {
	width: 8px;
}
.footer-contacts {
	position: relative;
}
.footer-contacts p {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
}
.footer-contacts p:last-child {
	margin-bottom: 0;
}
.footer-contacts p:before {
	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;
	background-color: var(--white);
	margin-right: 6px;
}
.footer-contacts p.address:before {
	-webkit-mask-image: url(images/address.svg);
	mask-image: url(images/address.svg);
}
.footer-contacts p.e-mail:before {
	-webkit-mask-image: url(images/e-mail.svg);
	mask-image: url(images/e-mail.svg);
}
.footer-contacts p.phone:before {
	-webkit-mask-image: url(images/phone.svg);
	mask-image: url(images/phone.svg);
}
.footer-contacts-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
}
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .15);
	padding: 15px 0;
	color: #999999;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--gap);
}
.footer-bottom p {
	margin: 0;
}
.footer-bottom ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 3);
}
.footer-payment img {
	max-height: 20px;
}


.social-section:before {
	content: '';
	background: var(--blue-dark);
	position: absolute;
	width: 100%;
	height: 50%;
	bottom: 0;
	left: 0;
	z-index: -1;
}
.social-wrap {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
	padding: 32px 65px;
	clip-path: polygon(2% 0%, 98% 0%, 100% 50%, 100% 50%, 98% 100%, 2% 100%, 0 50%, 0 50%);
	background: var(--blue);
	display: flex;
	justify-content: space-around;
	align-items: center;
	gap: var(--gap);
	z-index: 1;
}





.hero-section {
	position: relative;
	height: 680px;
	overflow: hidden;
	z-index: 1;
}
.hero-section:after {
	height: 40px;
    position: absolute;
    bottom: -1px;
    width: 300px;
    right: 0;
    content: "";
    background-color: #f1f2f6;
    z-index: 99;
    clip-path: polygon(10% 0%, 100% 0, 100% 100%, 0 100%);
}
.heroSlider-item {
	position: relative;
	height: 680px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	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: var(--blue-dark);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: .55;
	z-index: 1;
}
.heroSlider-item__content {
	max-width: 800px;
	margin: 0 auto;
	font-size: var(--h5-size);
	margin-bottom: calc(var(--gap) * 1.5);
	color: var(--white);
}
.heroSlider-item__content:last-child {
	margin-bottom: 0;
}
.heroSlider-item__content h1,
.heroSlider-item__content h2 {
	font-size: calc(var(--h1-size) * 1.5);
}
.heroSlider-item__button {
	text-align: center;
}
.hero-pagination {
	margin-top: 0 !important;
	position: absolute !important;
	bottom: calc(var(--gap) * 1.5) !important;
	top: auto !important;
}
.hero-navigation {
	position: absolute;
	top: calc(50% - 18px);
	width: 100%;
	opacity: 0;
	transition: .5s;
}
.hero-section:hover .hero-navigation {
	opacity: 1;
}
.hero-navigation button {
	position: absolute;
}
.hero-navigation button.hero-navigation-prev {
	left: calc((100% - var(--container)) / 2);
}
.hero-navigation button.hero-navigation-next {
	right: calc((100% - var(--container)) / 2);
}




.advantages-items {
	display: flex;
	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 {
	position: relative;
	z-index: 1;
}
.advantages-item__image {
	height: 40px;
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.advantages-item__image img {
	max-height: 40px;
}
.advantages-item__number {
	position: absolute;
	top: -5px;
	left: 35px;
	font-size: calc(var(--h1-size) * 1.5);
	font-weight: 400;
	color: #d9d9d9;
	line-height: 1;
	z-index: -1;
}
.advantages-item__title {
	color: var(--black-dark);
	font-size: var(--h6-size);
	margin-bottom: 5px;
	font-weight: 700;
}
.advantages-item__title span {
	color: var(--blue);
}
.advantages-item__text {
	color: #999;
	font-size: var(--text-size-sm);
	max-width: 240px;
}



.products-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.products-item {
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.columns-4 .products-item {
	flex: 0 0 25%;
	max-width: 25%;
}
.categories-block .products-items {
	margin: 0;
	border: 1px solid var(--line);
	border-right: none;
	border-bottom: none;
}
.columns-3 .categories-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.columns-4 .categories-item {
	flex: 0 0 25%;
	max-width: 25%;
}
.columns-5 .categories-item {
	flex: 0 0 20%;
	max-width: 20%;
}
.categories-item a {
	position: relative;
	height: 100%;
	background: var(--white);
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 2);
	text-decoration: none;
	padding: 10px;
	min-height: 120px;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	z-index: 1;
}
.categories-item__image {
	flex: 0 0 100px;
	max-width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.categories-item__image img {
	max-height: 100px;
}
.woocommerce-loop-category__title {
	font-size: var(--text-size-md);
	font-weight: 700;
	color: var(--black-dark);
	margin-bottom: 6px;
	transition: .5s;
}
.woocommerce-loop-category__title:hover {
	color: var(--blue);
}
.woocommerce-loop-category__title mark {
	display: none;
}
.categories-item__count {
	color: #999999;
	font-weight: 400;
}



.products-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.products-heading {
	max-width: calc(100% - 112px - var(--gap));
}
.products-navigation {
	margin-bottom: var(--gap);
}
.products-carousel {
	flex: 0 0 100%;
	max-width: 100%;
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--white);
}



.products-item__wrap {
	position: relative;
	background: var(--white);
	border: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	height: 100%;
	z-index: 1;
}
.products-item__wrap:hover {
	box-shadow: 0 0 16px rgba(0, 0, 0, 0.08);
}
.woocommerce-loop-product__link {
	text-decoration: none;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.products-item__actions {
	position: absolute;
	top: calc(var(--gap) / 2);
	right: calc(var(--gap) / 1.2);
	display: flex;
	flex-direction: column;
	gap: 6px;
	opacity: 0;
	transition: .5s;
	z-index: 2;
}
.products-item__wrap:hover .products-item__actions {
	opacity: 1;
}
.products-item__button {
	width: 32px;
	height: 32px;
	background: #f5f5f5;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}
.products-item__button:hover {
	background: var(--blue);
}
.products-item__button:before {
	content: '';
	-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-dark);
	flex: 0 0 18px;
	max-width: 18px;
	height: 18px;
	transition: .5s;
}
.products-item__button:hover:before {
	background-color: var(--white);
}
.products-item__button.add_to_cart_button:before {
	-webkit-mask-image: url(images/bag_alt.svg);
	mask-image: url(images/bag_alt.svg);
}
.products-item__button.add_to_cart_button.loading:before {
	-webkit-mask-image: url(images/progress.svg);
	mask-image: url(images/progress.svg);
	animation: rotate 2s linear infinite;
	opacity: .3;
}
.products-item__button.add_to_cart_button.added:before {
	-webkit-mask-image: url(images/done.svg);
	mask-image: url(images/done.svg);
}
.products-item__wrap .yith-add-to-wishlist-button-block,
.products_2-item__wrap .yith-add-to-wishlist-button-block {
	margin: 0;
	font-size: 0;
	transition: .5s;
	z-index: 2;
}
.products-item__wrap .yith-wcwl-add-to-wishlist-button,
.products_2-item__wrap .yith-wcwl-add-to-wishlist-button {
	width: 32px;
	height: 32px;
	background: #f5f5f5;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.products-item__wrap .yith-wcwl-add-to-wishlist-button:hover,
.products_2-item__wrap .yith-wcwl-add-to-wishlist-button:hover {
	background: var(--blue);
}
.products-item__wrap .yith-wcwl-add-to-wishlist-button svg,
.products_2-item__wrap .yith-wcwl-add-to-wishlist-button svg {
	flex: 0 0 18px;
	max-width: 18px;
	height: 18px;
	width: 18px;
	transition: .5s;
}
.products-item__wrap .yith-wcwl-add-to-wishlist-button svg:hover,
.products_2-item__wrap .yith-wcwl-add-to-wishlist-button svg:hover,
.products-item__wrap .yith-wcwl-add-to-wishlist-button--added:hover svg,
.products_2-item__wrap .yith-wcwl-add-to-wishlist-button--added:hover svg {
	color: var(--white) !important;
}
.products-item__wrap .yith-wcwl-add-to-wishlist-button__label,
.products_2-item__wrap .yith-wcwl-add-to-wishlist-button__label  {
	display: none;
}
.products-item__image {
	position: relative;
	flex: 0 0 calc((var(--container) - var(--gap) * 4) / 5 - 6px);
	max-height: calc((var(--container) - var(--gap) * 4) / 5 - 6px);
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 1px solid var(--line);
	z-index: 1;
}
.products-item__image img {
	max-height: calc((var(--container) - var(--gap) * 4) / 5 - 6px);
}
.woocommerce-loop-product__link .onsale {
	position: absolute;
	top: calc(var(--gap) / 2);
	left: calc(var(--gap) / 2);
	border: 1px solid var(--yellow);
	padding: 0 10px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 10px;
	background: var(--white);
	color: var(--yellow);
	font-size: var(--text-size-sm);
	z-index: 2;
}
.products-item__info {
	flex: auto;
    display: flex;
    flex-direction: column;
    padding: calc(var(--gap) / 1.2);
}
.woocommerce-loop-product__title {
	flex: auto;
	margin-bottom: calc(var(--gap) / 3);
	font-weight: 500;
	font-size: var(--text-size);
	color: var(--black-dark);
	text-align: center;
	transition: .5s;
}
.woocommerce-loop-product__title:hover {
	color: var(--blue);
}
.products-item__rating {
	position: relative;
	margin-bottom: calc(var(--gap) / 3);;
	z-index: 1;
}
.products-item__rating-stars {
	position: relative;
	width: 95px;
	margin: 0 auto;
	z-index: 1;
}
.products-item__rating-stars::before {
	content: '';
	background: url(images/stars-rating-1.svg) no-repeat center;
	background-size: contain;
	width: 100%;
	height: 14px;
	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/stars-rating-2.svg) no-repeat center;
	background-size: contain;
	width: 95px;
	height: 14px;
	display: block;
}
.woocommerce-loop-product__link .price {
	text-align: center;
	font-size: var(--h6-size);
	font-weight: 500;
	color: var(--blue);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.woocommerce-loop-product__link .price del {
	display: block;
	font-size: var(--text-size-sm);
	color: #999999;
}
.woocommerce-loop-product__link .price ins {
	display: block;
	text-decoration: none;
}
.woocommerce-loop-product__link .price-specify {
	font-weight: 500;
	color: var(--blue);
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}
.added_to_cart {
	display: none !important;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}




.products-swiper .swiper-slide,
.productsRelated-swiper .swiper-slide {
	height: auto;
	transition: .5s;
	z-index: 1;
}
.products-swiper .swiper-slide:hover,
.productsRelated-swiper .swiper-slide:hover {
	z-index: 2;
}
.products_2-item {
	height: 100%;
}
.products_2-item__wrap {
	position: relative;
	height: 100%;
	background: var(--white);
	border-left: 1px solid var(--line);
	transition: .5s;
	z-index: 1;
}
.products_2-item__wrap:hover {
	box-shadow: 0 0 16px rgba(0, 0, 0, 0.08);
}
.swiper-slide:first-child .products_2-item__wrap {
	border-left: 0;
}
.products_2-item__image {
	flex: 0 0 calc(var(--container) / 5 - 2px);
	max-height: calc(var(--container) / 5 - 2px);
	display: flex;
	align-items: center;
	justify-content: center;
}
.products_2-item__image img {
	max-height: calc(var(--container) / 5 - 2px);
}
.products_2-item__info {
	flex: auto;
	display: flex;
	flex-direction: column;
	padding: calc(var(--gap) / 2) calc(var(--gap) / 1.2);
}
.products_2-item .woocommerce-loop-product__title {
	text-align: left;
}
.products_2-item .products-item__rating-stars {
	margin: 0;
}
.products_2-item .price,
.products_2-item .price-specify {
	text-align: left;
	max-width: calc(100% - 40px);
	min-height: 32px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}
.products_2-item .products-item__button {
	position: absolute;
	bottom: calc(var(--gap) / 2);
	right: calc(var(--gap) / 1.2);
}
.products_2-item .yith-add-to-wishlist-button-block {
	opacity: 0;
	position: absolute;
	top: calc(var(--gap) / 2);
	right: calc(var(--gap) / 2);
	transition: .5s;
}
.products_2-item__wrap:hover .yith-add-to-wishlist-button-block {
	opacity: 1;
}



.brands-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -5px -10px;
}
.brands-item {
	flex: 0 0 calc(100% / 8);
	max-width: calc(100% / 8);
	margin: 0 0 10px;
	padding: 0 5px;
}
.brands-item__wrap {
	position: relative;
	height: 100%;
	display: block;
	background: var(--white);
	text-decoration: none;
	color: var(--black-dark);
	padding: 10px 5px 15px;
	z-index: 1;
}
.brands-item__wrap:hover {
	box-shadow: 0 0 16px rgba(0, 0, 0, 0.08);
}
.brands-item__image {
	height: 70px;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.brands-item__image img {
	max-height: 70px;
}
.brands-item__title {
	font-size: var(--text-size);
	font-weight: 600;
	text-align: center;
	transition: .5s;
}
.brands-item__title:hover {
	color: var(--blue);
}




.productsGrid-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
}
.productsGrid-col {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	align-content: flex-start;
}
.productsGrid-navigation {
	margin-bottom: var(--gap);
}
.productsGrid-carousel {
	width: 100%;
	overflow: hidden;
	height: calc(122px * 3 + var(--gap) * 2);
}



.products_3-item .woocommerce-loop-product__link {
	flex-direction: row;
	gap: calc(var(--gap) / 1.5);
	height: 122px;
	background: var(--white);
	border: 1px solid transparent;
}
.products_3-item .woocommerce-loop-product__link:hover {
	border-color: var(--line);
}
.products_3-item__image {
	flex: 0 0 120px;
	max-width: 120px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.products_3-item__image img {
	max-height: 120px;
}
.products_3-item__info {
	padding: 20px 20px 20px 0;
}
.products_3-item .price {
	font-size: var(--text-size-md);
	font-weight: 600;
	color: var(--blue);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.products_3-item .price del {
	display: block;
	font-size: var(--text-size-sm);
	color: #999999;
}
.products_3-item .price ins {
	display: block;
	text-decoration: none;
}
.products_3-item .price-specify {
	font-weight: 500;
	color: var(--blue);
}
.products_3-item .woocommerce-loop-product__title {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}





.services-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.services-item {
	flex: 0 0 25%;
	max-width: 25%;
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.services-item:first-child {
	flex: 0 0 50%;
	max-width: 50%;
}
.services-item__wrap {
	position: relative;
	min-height: calc((var(--container) - var(--gap) * 3) / 4 / .7142);
	height: 100%;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	z-index: 1;
}
.services-item__image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.services-item__image:after {
	content: '';
	background: var(--black-dark);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	transition: .5s;
	z-index: 1;
}
.services-item__wrap:hover .services-item__image:after {
	opacity: .25;
}
.services-item__title {
	position: relative;
	padding: 100px 40px 30px;
	background: linear-gradient(0deg, rgba(12, 126, 175, 0.9) 30%, rgba(255, 255, 255, 0) 100%);
	color: var(--white);
	font-size: var(--h5-size);
	font-weight: 600;
	color: var(--white);
	text-transform: uppercase;
	z-index: 1;
}




.page-header {
	position: relative;
	z-index: 1;
}
.page-breadcrumbs {
	padding: 15px 0;
	color: #878787;
	font-size: 13px;
	font-weight: 400;
	margin-bottom: 0;
}
.page-breadcrumbs a {
	color: #878787;
	text-decoration: none;
}
.page-breadcrumbs a:hover {
	color: var(--blue);
}
.breadcrumb_last {
	color: var(--blue);
}
.page-title {
	font-size: var(--h2-size);
	color: var(--black-dark);
	text-transform: uppercase;
	margin-bottom: calc(var(--gap) * 1.5) !important;
}

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



.singleServices-image {
	margin-bottom: var(--gap);
}


.pageContacts-wrap {
	display: flex;
	gap: var(--gap);
}
.pageContacts-left {
	flex: 1;
}
.pageContacts-right {
	flex: 2;
}
.pageContacts-info {
	position: relative;
}
.pageContacts-info p {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
	font-size: var(--text-size-md);
}
.pageContacts-info p:last-child {
	margin-bottom: 0;
}
.pageContacts-info p:before {
	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;
	background-color: var(--blue);
	margin-right: 6px;
}
.pageContacts-info p.address:before {
	-webkit-mask-image: url(images/address.svg);
	mask-image: url(images/address.svg);
}
.pageContacts-info p.e-mail:before {
	-webkit-mask-image: url(images/e-mail.svg);
	mask-image: url(images/e-mail.svg);
}
.pageContacts-info p.phone:before {
	-webkit-mask-image: url(images/phone.svg);
	mask-image: url(images/phone.svg);
}
.pageContacts-info p.schedule:before {
	-webkit-mask-image: url(images/clock.svg);
	mask-image: url(images/clock.svg);
}
.pageContacts-info-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
}
.pageContacts-info a {
	color: var(--black);
	text-decoration: none;
}
.pageContacts-info a:hover {
	color: var(--blue);
}
.pageContacts-logo {
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 1.5);
	margin-bottom: var(--gap);
}
.pageContacts-logo img {
	max-height: 60px;
}
.pageContacts-logo span {
	line-height: 1.2;
	font-weight: 600;
	font-size: var(--text-size);
	text-transform: uppercase;
}




.page-body-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
}
.page-body-sidebar {
	flex: 0 0 calc(20% - var(--gap) / 2);
	max-width: calc(20% - var(--gap) / 2);
}
.page-body-main {
	flex: 0 0 calc(80% - var(--gap) / 2);
	max-width: calc(80% - var(--gap) / 2);
}
.archiveShop-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--gap);
	margin-bottom: var(--gap);
}
.archiveShop-top p {
	margin-bottom: 0;
}
.archiveShop-categories {
	margin-bottom: var(--gap);
}
.archiveShop-categories:last-child {
	margin-bottom: 0;
}




.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;
	flex-wrap: wrap;
	justify-content: center;
	gap: calc(var(--gap) / 3);
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.page-numbers li a,
ul.page-numbers li span,
.nav-links .page-numbers {
	min-width: 44px;
	height: 44px;
	font-weight: 500;
	color: var(--black);
	border: 1px solid var(--line);
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	text-decoration: none;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}
ul.page-numbers li a:hover,
ul.page-numbers li span.current,
.nav-links .page-numbers:hover,
.nav-links .page-numbers.current {
	background: var(--blue);
	border-color: var(--blue);
	color: var(--white);
}








.filter-button button {
	width: 100%;
}
.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_alt.svg);
	mask-image: url(images/filter_alt.svg);
	background-color: var(--white);
	transition: .5s;
}
.filter-button button.active:before {
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
}

.widget-area {
	position: relative;
	z-index: 1;
}

.widget,
.berocket_single_filter_widget {
	position: relative;
	overflow: hidden;
	margin-bottom: var(--gap);
	border: 1px solid var(--line);
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	z-index: 1;
}
.widget:last-child,
.berocket_single_filter_widget:last-child {
	margin-bottom: 0;
}
.bapf_sfilter {
	margin-bottom: 0;
}
.widget-title,
.bapf_head h3 {
	position: relative;
	background: var(--blue);
	color: var(--white);
	font-size: var(--text-size);
	font-weight: 500;
	margin-bottom: 0;
	padding: 10px 12px;
	text-transform: uppercase;
	display: flex;
	align-items: center;
}
.bapf_body {
	position: relative;
	padding: 10px 12px;
	z-index: 1;
}
.product-categories {
	padding: 10px 12px;
	list-style: none;
	line-height: 1.2;
}
.product-categories li {
	margin-bottom: calc(var(--gap) / 4);
}
.product-categories li:last-child {
	margin-bottom: 0;
}
.product-categories li.cat-item-15 {
	display: none;
}
.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;
	color: var(--black);
}
.product-categories li.cat-parent > a {
	order: 1;
	flex: auto;
	max-width: calc(100% - 24px);
}
.product-categories li a:hover,
.product-categories li.current-cat > a {
	color: var(--blue);
}
.product-categories-toggle {
	order: 2;
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px;
	height: 20px;
	-webkit-mask-size: 12px;
	-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);
	cursor: pointer;
	transition: .5s;
}
.product-categories-toggle:hover,
.product-categories li.current-cat > .product-categories-toggle {
	background-color: var(--blue);
}
.product-categories li.active > .product-categories-toggle {
	transform: rotate(180deg);
}
.product-categories ul {
	display: none;
	flex: 0 0 100%;
	max-width: 100%;
	order: 3;
	margin: 10px 0 0;
	padding: 0 0 0 calc(var(--gap) / 1.5);
	list-style: none;
}
.product-categories li.active > ul {
	display: block;
}
.bapf_slidr_main.ui-widget-content, .berocket_filter_price_slider.ui-widget-content {
	background: #999999;
	height: 2px;
}
.bapf_slidr_main.ui-widget-content .ui-slider-range, .berocket_filter_price_slider.ui-widget-content .ui-slider-range {
	background: #CACACA;
}
.bapf_slidr_jqrui .bapf_from, .bapf_slidr_jqrui .bapf_to {
	color: var(--black);
	font-size: var(--text-size-sm);
}
.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(--blue);
	outline: none !important;
	font-size: 16px;
	top: -7px;
}
.bapf_sfilter.bapf_ckbox_sqchck ul li {
	display: flex;
	margin-bottom: calc(var(--gap) / 3) !important;
	color: var(--black);
	line-height: 1.2;
}
.bapf_sfilter.bapf_ckbox_sqchck ul li:last-child {
	margin-bottom: 0 !important;
}
.bapf_sfilter.bapf_ckbox_sqchck input[type=checkbox] {
	flex: 0 0 18px;
	max-width: 18px;
	width: 18px;
	height: 18px;
	margin: -2px 8px 0 0 !important;
	border: 1px solid var(--line);
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
}
.bapf_sfilter.bapf_ckbox_sqchck input[type=checkbox]:checked {
	border-color: var(--blue);
	background: var(--blue);
}
.bapf_sfilter.bapf_ckbox_sqchck input[type=checkbox]:checked:after {
	border-bottom-color: var(--white);
	border-right-color: var(--white);
	top: 1px;
    left: 5px;
    width: 6px;
    height: 11px;
}

.product_list_widget {
	padding: 10px 12px;
	margin: 0;
	list-style: none;
}
.product_list_widget li {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--line);
}
.product_list_widget li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}
.product_list_widget li a {
	text-decoration: none;
}
.product_list_widget li img {
	width: 60px;
	float: left;
	margin: 0 10px 10px 0;
}
.product_list_widget li .product-title {
	color: var(--black);
	font-weight: 400;
	display: block;
	margin-bottom: 6px;
	transition: .5s;
}
.product_list_widget li .product-title:hover {
	color: var(--blue);
}
.product_list_widget li a + span {
	float: right;
	width: calc(100% - 60px - 10px);
	font-weight: 600;
	color: var(--blue);
	font-size: var(--text-size-md);
}
.product_list_widget li:after {
	content: '';
	display: block;
	clear: both;
}






.wc-block-components-notice-banner,
.woocommerce-message,
.woocommerce-NoticeGroup,
.woocommerce-info,
.woocommerce-error {
	padding: calc(var(--gap) / 2);
	background: var(--bg);
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	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;
}



.singleProduct-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.singleProduct-images {
	position: relative;
	flex: 0 0 calc((var(--container) * .8 - var(--gap) / 2) * .42 - var(--gap) / 2);
	max-width: calc((var(--container) * .8 - var(--gap) / 2) * .42 - var(--gap) / 2);
	overflow: hidden;
	margin-bottom: calc(var(--gap) * 1.5);
	z-index: 1;
}
.singleProduct-images .onsale {
	position: absolute;
	top: calc(var(--gap) / 2);
	right: calc(var(--gap) / 2);
	border: 1px solid var(--yellow);
	padding: 0 10px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 10px;
	background: var(--white);
	color: var(--yellow);
	font-size: var(--text-size);
	z-index: 99;
}
.singleProduct-summary {
	position: relative;
	flex: 0 0 calc((var(--container) * .8 - var(--gap) / 2) * .58 - var(--gap) / 2);
	max-width: calc((var(--container) * .8 - var(--gap) / 2) * .58 - var(--gap) / 2);
	margin-bottom: calc(var(--gap) * 1.5);
	z-index: 1;
}
.singleProduct-summary-sticky {
	position: sticky;
	top: calc(80px + var(--gap));
	z-index: 1;
}
.singleProductImagesMain-swiper {
	position: relative;
	width: 100%;
	border: 1px solid var(--line);
	margin-bottom: 10px;
	overflow: hidden;
	z-index: 1;
}
.singleProductImagesMain-item__image {
	background: var(--white);
	height: calc((var(--container) * .8 - var(--gap) / 2) * .42 - var(--gap) / 2);
	display: flex;
	align-items: center;
	justify-content: center;
}
.singleProductImagesMain-item__image img {
	max-height: calc((var(--container) * .8 - var(--gap) / 2) * .42 - var(--gap) / 2);
}
.singleProductImagesOther-swiper {
	overflow: hidden;
	position: relative;
	width: 100%;
}
.singleProductImagesOther-swiper .swiper-slide {
	opacity: 1;
}
.singleProductImagesOther-item__image {
	height: calc((((var(--container) * .8 - var(--gap) / 2) * .42 - var(--gap) / 2) - 10px * 2) / 3);
	border: 1px solid var(--line);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .5s;
}
.singleProductImagesOther-item__image img {
	max-height: calc((((var(--container) * .8 - var(--gap) / 2) * .42 - var(--gap) / 2) - 10px * 2) / 3 - 2px);
}
.singleProductImagesOther-swiper .swiper-slide-thumb-active .singleProductImagesOther-item__image {
	border-color: var(--blue);
}
.swiper-navigation.singleProductImagesMain-swiper-navigation {
	position: absolute;
	top: calc(((var(--container) * .8 - var(--gap) / 2) * .42 - var(--gap) / 2) / 2 - 18px);
	width: 100%;
	opacity: 0;
	transition: .5s;
}
.singleProductImagesMain-swiper:hover .swiper-navigation.singleProductImagesMain-swiper-navigation {
	opacity: 1;
}
.swiper-navigation.singleProductImagesMain-swiper-navigation button {
	position: absolute;
}
.swiper-navigation.singleProductImagesMain-swiper-navigation button.swiper-navigation-prev {
	left: 10px;
}
.swiper-navigation.singleProductImagesMain-swiper-navigation button.swiper-navigation-next {
	right: 10px;
}

.product_title {
	font-size: var(--h3-size);
	text-transform: uppercase;
	color: var(--black-dark);
}
.singleProducts-rating {
	position: relative;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 2);
	z-index: 1;
}
.singleProducts-rating-stars {
	position: relative;
	width: 95px;
	z-index: 1;
}
.singleProducts-rating-stars::before {
	content: '';
	background: url(images/stars-rating-1.svg) no-repeat center;
	background-size: contain;
	width: 100%;
	height: 14px;
	display: block;
}
.singleProducts-rating-stars span {
	position: absolute;
	overflow: hidden;
	font-size: 0;
	top: 0;
	left: 0;
	z-index: 1;
}
.singleProducts-rating-stars span:before {
	content: '';
	background: url(images/stars-rating-2.svg) no-repeat center;
	background-size: contain;
	width: 95px;
	height: 14px;
	display: block;
}
.singleProducts-rating-count {
	color: #878787;
	font-size: var(--text-size-sm);
	margin-bottom: -2px;
}
.singleProducts-price,
.woocommerce-variation-price .price {
	font-weight: 600;
	font-size: var(--h5-size);
	color: var(--blue);
	display: flex;
	flex-direction: column;
}
.woocommerce-variation-price .price {
	margin-bottom: 15px;
}
.singleProducts-price del,
.woocommerce-variation-price .price del {
	display: block;
	font-size: var(--text-size);
	color: #999999;
}
.singleProducts-price ins,
.woocommerce-variation-price .price ins {
	display: block;
	text-decoration: none;
}
.singleProducts-price-specify {
	font-size: var(--h6-size);
	color: var(--blue);
}
.woocommerce-product-details__short-description {
	margin-bottom: var(--gap);
}

.singleProduct-summary .variations,
.singleProduct-summary .variations tbody,
.singleProduct-summary .variations tr,
.singleProduct-summary .variations th,
.singleProduct-summary .variations td {
	display: block;
	width: 100%;
	border: none;
	padding: 0;
	text-align: left;
}
.singleProduct-summary .variations {
	margin-bottom: var(--gap);
}
.singleProduct-summary .variations th {
	margin-bottom: calc(var(--gap) / 5);
}
.variable-items-wrapper {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.variable-items-wrapper li span.variable-item-span {
	background: var(--white);
	border: 1px solid var(--blue);
	color: var(--blue);
	padding: 8px 16px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	display: block;
	cursor: pointer;
	transition: .5s;
}
.variable-items-wrapper li span.variable-item-span:hover,
.variable-items-wrapper li.selected span.variable-item-span {
	background: var(--blue);
	border-color: var(--blue);
	color: var(--white);
}
.reset_variations {
	display: none !important;
}


.singleProducts-action {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
	margin-bottom: var(--gap);
}
.singleProducts-qty {
	flex: 0 0 100px;
	max-width: 100px;
	height: 44px;
	border: 1px solid var(--line);
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	display: flex;
}
.singleProducts-qty span {
	flex: 0 0 30px;
	max-width: 30px;
	font-size: var(--h5-size);
	color: var(--black);
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	user-select: none;
	transition: .5s;
}
.singleProducts-qty span:hover {
	color: var(--blue);
}
.singleProducts-qty .quantity {
	flex: auto;
}
.singleProducts-qty input {
	width: 100%;
	height: 100%;
	background: var(--white);
	font-size: var(--h5-size);
	line-height: 1.5;
    border: none;
    text-align: center;
    outline: none;
    padding: 10px 0;
    color: var(--black);
    -moz-appearance:textfield;
}
.singleProducts-qty input::-webkit-outer-spin-button,
.singleProducts-qty input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.singleProduct-summary .yith-add-to-wishlist-button-block.yith-add-to-wishlist-button-block--single {
	margin: 0 0 var(--gap);
	width: auto;
}
.singleProduct-summary .yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--single.yith-wcwl-add-to-wishlist-button--anchor {
	gap: 6px;
	color: #999999;
	font-size: var(--text-size);
}
.singleProduct-summary .yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--single.yith-wcwl-add-to-wishlist-button--anchor:hover {
	color: var(--blue);
}
.singleProduct-summary .yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--anchor svg.yith-wcwl-icon-svg, .singleProduct-summary .yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--anchor img {
	width: 24px;
	max-width: 24px;
	height: 24px;
}
.singleProducts-meta {
	display: flex;
	flex-wrap: wrap;
	gap: calc(var(--gap) / 2);
	color: #999999;
}
.singleProducts-meta a {
	background: #999999;
	color: var(--white);
	text-transform: uppercase;
	border-radius: 3px;
	padding: 5px 12px;
	font-size: var(--text-size-sm);
	line-height: 1.5;
	text-decoration: none;
}
.singleProducts-meta a:hover {
	background: #555555;
}



.singleProducts-tabs {
	flex: 0 0 100%;
	max-width: 100%;
}
.singleProducts-tabs ul.tabs {
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: auto;
	border-bottom: 1px solid #e5e5e5;
	display: flex;
	z-index: 1;
}
.singleProducts-tabs ul.tabs li {
	flex: 0 0 auto;
}
.singleProducts-tabs ul.tabs li a {
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 2px solid transparent;
	padding: 0 calc(var(--gap) / 2) 10px;
	text-decoration: none;
	color: var(--black);
	font-weight: 500;
}
.singleProducts-tabs ul.tabs li a:hover {
	color: var(--blue);
}
.singleProducts-tabs ul.tabs li.active a {
	border-color: var(--blue);
}
.woocommerce-Tabs-panel {
	margin: var(--gap) 0 0;
}
.woocommerce-product-attributes {
	width: 100%;
	border-spacing: inherit;
}
.woocommerce-product-attributes th,
.woocommerce-product-attributes td {
	border: 1px solid var(--line);
	padding: calc(var(--gap) / 2) 20px;
}
.woocommerce-product-attributes th {
	text-align: left;
	font-weight: 400;
	color: #999999;
	width: 35%;
}
.woocommerce-product-attributes td {
	color: var(--black);
}

.woocommerce-Tabs-panel--description {
	overflow: auto;
}
.woocommerce-Tabs-panel--description table {
	width: 100% !important;
	margin-bottom: 20px;
	border-collapse: collapse;
}
.woocommerce-Tabs-panel--description table:last-child {
	margin-bottom: 0;
}
.woocommerce-Tabs-panel--description td {
	border: 1px solid #999999;
	padding: 5px 10px;
}



.singleProductsPDF-items {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
}
.singleProductsPDF-item {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
}
.singleProductsPDF-item__wrap {
	position: relative;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 2);
	text-decoration: none;
	z-index: 1;
}
.singleProductsPDF-item__wrap span {
	flex: 0 0 30px;
	max-width: 30px;
	height: 30px;
	background: url(images/pdf30.png) no-repeat center;
	background-size: contain;
}
.singleProductsPDF-item__wrap p {
	flex: auto;
	color: var(--black);
}
.singleProductsPDF-item__wrap:hover p {
	color: var(--blue);
}


.commentlist {
	margin: 0 0 var(--gap) !important;
	padding: 0;
	list-style: none;
}
.commentlist li {
	margin-bottom: calc(var(--gap) / 1.5);
	border: 1px solid var(--line);
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	padding: var(--gap);
}
.commentlist li:last-child {
	margin-bottom: 0;
}
.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: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	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: #999999;
}
.woocommerce-review__author {
	font-weight: 600;
	margin-left: 8px;
}
.comment-info .star-rating {
	position: relative;
	margin: -4px 0 calc(var(--gap) / 2);
	flex: 0 0 84px;
	max-width: 84px;
	width: 84px;
	height: 14px;
	z-index: 1;
}
.comment-info .star-rating::before {
	content: '';
	background: url(images/ic_baseline-star.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/ic_baseline-star-full.svg) space 0 0;
	background-size: contain;
	width: 84px;
	height: 14px;
	display: block;
}
.comment-info .description {
	flex: 0 0 100%;
	max-width: 100%;
}


.comment-reply-title {
	font-size: var(--h6-size);
	font-weight: 400;
	margin-bottom: 20px;
	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/ic_baseline-star.svg);
	mask-image: url(images/ic_baseline-star.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 {
	background-color: var(--yellow);
}
.comment-form-rating .stars a:hover~a {
	background-color: #E1E1E1;
}
.comment-form-rating .stars.selected span a.active {
	background-color: var(--yellow);
}
.comment-form-rating .stars.selected a.active~a {
	background-color: #E1E1E1;
}
.comment-form-rating .stars.selected a:not(.active) {
	background-color: var(--yellow);
}
.comment-form-rating,
.comment-form-comment,
.comment-form-author,
.comment-form-email {
	margin-bottom: 20px;
}
.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: 4px;
	color: var(--black);
}
.comment-form .form-submit {
	margin-bottom: 0;
}

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


.related.products,
.up-sells.products,
.singleProduct-recently {
	flex: 0 0 100%;
	max-width: 100%;
}







/*------- 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);
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}
.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 {
	color: #999999;
	font-weight: 400;
	padding: 0 calc(var(--gap) / 2) 10px;
}
.pageCartTableProducts td {
	border-top: 1px solid var(--line);
	padding: calc(var(--gap) / 2);
}
.pageCartTableProducts th:first-child,
.pageCartTableProducts td:first-child {
	padding-left: 0;
}
.pageCartTableProducts th:last-child,
.pageCartTableProducts td:last-child {
	padding-right: 0;
}
.pageCartTableProducts-image {
	width: 80px;
	height: 80px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	overflow: hidden;
}
.pageCartTableProducts .product-name {
	text-align: left;
}
.pageCartTableProducts .product-name a {
	text-decoration: none;
	font-weight: 500;
	color: var(--black);
}
.pageCartTableProducts .product-name dl {
	margin: 10px 0 0;
	display: flex;
	flex-wrap: wrap;
	color: #999999;
}
.pageCartTableProducts .product-name dt {
	flex: 0 0 80px;
	max-width: 80px;
	margin-right: 10px;
}
.pageCartTableProducts .product-name dd {
	flex: 0 0 calc(100% - 80px - 10px);
	max-width: calc(100% - 80px - 10px);
	margin-left: 0;
}
.pageCartTableProducts-qty {
	flex: 0 0 100px;
	max-width: 100px;
	height: 44px;
	border: 1px solid var(--line);
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	display: flex;
}
.pageCartTableProducts-qty span {
	flex: 0 0 30px;
	max-width: 30px;
	font-size: var(--h5-size);
	color: var(--black);
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: .5s;
}
.pageCartTableProducts-qty span:hover {
	color: var(--blue);
}
.pageCartTableProducts-qty .quantity {
	flex: auto;
}
.pageCartTableProducts-qty input {
	width: 100%;
	height: 100%;
	background: var(--white);
	font-size: var(--h5-size);
	line-height: 1.5;
    border: none;
    text-align: center;
    outline: none;
    padding: 10px 0;
    color: var(--black);
    -moz-appearance:textfield;
}
.pageCartTableProducts-qty input::-webkit-outer-spin-button,
.pageCartTableProducts-qty input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.pageCartTableProducts tbody .product-subtotal {
	font-weight: 500;
	text-align: center;
	white-space: nowrap;
	color: var(--black);
	font-size: var(--h6-size);
}
.pageCartTableProducts .product-remove a {
	-webkit-mask-size: 20px;
	-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 .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: calc(80px + var(--gap));
	z-index: 9;
}
.pageCartTotals {
	background: var(--bg);
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	padding-bottom: 10px;
	margin-bottom: 20px;
}
.pageCartTotals > h2 {
	font-size: var(--h5-size);
	padding: var(--gap) var(--gap) 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(--line);
	padding: calc(var(--gap) / 2) var(--gap);
}
.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);
	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(--h5-size);
	font-weight: 500;
}
.cart_totals table tr.order-total td {
	font-size: var(--h4-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: #f9f9f9;
	margin-top: 4px;
	padding: calc(var(--gap) / 2);
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	font-size: var(--text-size);
}

/*------- 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(--bg);
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}
.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;
	margin-bottom: calc(var(--gap) * -1);
}
.woocommerce-billing-fields__field-wrapper:last-child {
	margin-bottom: 0;
}
#ukrposhta_shippping_fields > h3 {
	display: none;
}
.form-row {
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0;
	margin-bottom: 20px !important;
}
.form-row-first,
.form-row-last {
	flex: 0 0 calc(50% - 10px);
	max-width: calc(50% - 10px);
}
.form-row > label {
	color: #999999;
	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: var(--gap);
}
.zen-ui-select__value {
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Inter', sans-serif;
	line-height: 1.5;
	width: 100%;
	background: #eeeeee;
	border: none;
	color: var(--black);
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}
.zen-ui-select__value:hover {
	background: #eeeeee;
}

#order_review_heading {
	padding: var(--gap) var(--gap) 0;
}
.woocommerce-checkout-review-order-table {
	width: 100%;
	border-collapse: collapse;
	display: block;
	margin-bottom: var(--gap);
}
.woocommerce-checkout-review-order-table thead th {
	color: var(--grey);
	font-weight: 400;
	padding: 0 var(--gap) 10px;
	text-align: left;
	border-bottom: 1px solid var(--line);
}
.woocommerce-checkout-review-order-table tbody td {
	padding: calc(var(--gap) / 2.4) var(--gap);
	border-bottom: 1px solid var(--line);
	color: var(--black);
}
.woocommerce-checkout-review-order-table tbody td:first-child {
	width: 65%;
}
.woocommerce-checkout-review-order-table tbody td:last-child {
	font-weight: 500;
}
.woocommerce-checkout-review-order-table tbody td dl {
	margin: 10px 0 0;
	display: flex;
	flex-wrap: wrap;
	color: #999999;
	font-size: var(--text-size-sm);
}
.woocommerce-checkout-review-order-table tbody td dt {
	flex: 0 0 80px;
	max-width: 80px;
	margin-right: 10px;
}
.woocommerce-checkout-review-order-table tbody td dd {
	flex: 0 0 calc(100% - 80px - 10px);
	max-width: calc(100% - 80px - 10px);
	margin-left: 0;
}
.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(--line);
	padding: calc(var(--gap) / 2.4) var(--gap);
}
.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: #999999;
	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 var(--gap) var(--gap);
}
.wc_payment_methods {
	margin-bottom: var(--gap);
}
.woocommerce-privacy-policy-text,
.checkout-policy {
	color: #999;
	margin-bottom: var(--gap) !important;
	font-size: var(--text-size-sm);
}
.form-row.place-order {
	margin-bottom: 0;
}
/*-------- 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(--hap) / 2);
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	padding: var(--gap);
	border: 1px solid var(--line);
}
.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) / 2) var(--gap);
	background: var(--bg);
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	color: var(--black);
	text-decoration: none;
}
.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li.is-active a  {
	background: var(--blue);
	color: var(--white);
}
.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;
}
.woocommerce-orders-table th,
.woocommerce-orders-table td,
.woocommerce-table--order-details th,
.woocommerce-table--order-details td {
	border: 1px solid var(--line);
	padding: calc(var(--gap) / 2.4) var(--gap);
}
.woocommerce-orders-table th,
.woocommerce-table--order-details th {
	color: #999999;
	font-weight: 500;
	text-align: left;
}
.woocommerce-orders-table td,
.woocommerce-table--order-details td {
	color: var(--black);
}
.woocommerce-table--order-details .wc-item-meta {
	margin: 6px 0 0;
	padding: 0;
	list-style: none;
	color: #999999;
	font-size: var(--text-size-sm);
}
.woocommerce-table--order-details .wc-item-meta li {
	display: flex;
	margin-bottom: 4px;
}
.woocommerce-table--order-details .wc-item-meta li:last-child {
	margin-bottom: 0;
}
.woocommerce-table--order-details .wc-item-meta strong {
	font-weight: 500;
	margin-right: 5px;
}

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%;
	border: none;
	padding: 0;
	margin: 0;
}
.woocommerce-EditAccountForm fieldset legend {
	font-size: var(--h4-size);
	font-weight: 500;
	margin-bottom: 10px;
	padding: 0;
	display: block;
}

.woocommerce-customer-details {
	background: var(--bg);
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	padding: var(--gap);
}


.wishlist-title-container,
.yith_wcwl_wishlist_footer {
	display: none;
}
table.wishlist_table {
	font-size: 100%;
	width: 100%;
	border-collapse: collapse;
}
table.wishlist_table thead th,
table.wishlist_table tbody td {
	border: 1px solid var(--line);
}
.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: #999999;
	font-weight: 400;
}
table.wishlist_table .product-name a {
	font-weight: 500;
	text-decoration: none;
	color: var(--black);
}
table.wishlist_table .product-name a:hover {
	color: var(--blue);
}
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(--blue);
}
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 {
	position: relative;
	bottom: auto;
	right: auto;
	display: flex !important;
}




.woocommerce-thankyou-order-received {
	font-size: var(--h4-size);
	font-weight: 500;
	text-align: center;
}
.woocommerce-thankyou-order-details {
	margin: 0 0 var(--gap);
	padding: var(--gap);
	gap: var(--gap);
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background: var(--bg);
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}
.woocommerce-thankyou-order-details li {
	flex: auto;
	max-width: 100%;
	text-align: center;
}
.woocommerce-thankyou-order-details li strong {
	display: block;
}





@media (max-width: 1399px) {
	:root {
		--container: 1116px;
		--gap: 24px;
		--shadow: 0 0px 5px 0px rgba(0, 0, 0, 0.1);

		--text-size: 14px;
		--text-size-md: 16px;
		--text-size-sm: 12px;
		--h1-size: 32px;
		--h2-size: 28px;
		--h3-size: 24px;
		--h4-size: 22px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.topbar-wrap:before {
		flex: 0 0 230px;
		max-width: 230px;
	}
	.header-logo {
		flex: 0 0 190px;
		max-width: 190px;
		gap: calc(var(--gap) / 2.4);
	}
	.main-menu {
		gap: calc(var(--gap) / 2.4);
	}
	.header-icons {
		gap: calc(var(--gap) / 2.4);
	}
	.heroSlider-item__content {
		max-width: 740px;
	}
	.hero-section,
	.heroSlider-item {
		height: 620px;
	}
	.columns-5 .categories-item {
		flex: 0 0 25%;
		max-width: 25%;
	}
	.productsGrid-carousel {
		height: calc(102px * 3 + var(--gap) * 2);
	}
	.products_3-item .woocommerce-loop-product__link {
		height: 102px;
	}
	.products_3-item__image {
		flex: 0 0 100px;
		max-width: 100px;
		height: 100px;
	}
	.products_3-item__image img {
		max-height: 100px;
	}
	.footer-widget-title {
		font-size: var(--h6-size);
	}
	.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);
	}
	.page-body-main .columns-4 .categories-item {
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
	.singleProduct-images {
		flex: 0 0 calc((var(--container) * .75 - var(--gap) / 2) * .42 - var(--gap) / 2);
		max-width: calc((var(--container) * .75 - var(--gap) / 2) * .42 - var(--gap) / 2);
	}
	.singleProduct-summary {
		flex: 0 0 calc((var(--container) * .75 - var(--gap) / 2) * .58 - var(--gap) / 2);
		max-width: calc((var(--container) * .75 - var(--gap) / 2) * .58 - var(--gap) / 2);
	}
	.singleProductImagesMain-item__image {
		height: calc((var(--container) * .75 - var(--gap) / 2) * .42 - var(--gap) / 2);
	}
	.singleProductImagesMain-item__image img {
		max-height: calc((var(--container) * .75 - var(--gap) / 2) * .42 - var(--gap) / 2);
	}
	.singleProductImagesOther-item__image {
		height: calc((((var(--container) * .75 - var(--gap) / 2) * .42 - var(--gap) / 2) - 10px * 2) / 3);
	}
	.singleProductImagesOther-item__image img {
		max-height: calc((((var(--container) * .75 - var(--gap) / 2) * .42 - var(--gap) / 2) - 10px * 2) / 3 - 2px);
	}
	.swiper-navigation.singleProductImagesMain-swiper-navigation {
		top: calc(((var(--container) * .75 - var(--gap) / 2) * .42 - var(--gap) / 2) / 2 - 18px);
	}


	.categories-item a {
		min-height: 94px;
	}
	.categories-item__image {
		flex: 0 0 74px;
		max-width: 74px;
		height: 74px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.categories-item__image img {
		max-height: 74px;
	}
}





@media (max-width: 1199px) {
	:root {
		--container: 916px;
		--gap: 24px;
		--shadow: 0 0px 5px 0px rgba(0, 0, 0, 0.1);

		--text-size: 14px;
		--text-size-md: 16px;
		--text-size-sm: 12px;
		--h1-size: 32px;
		--h2-size: 28px;
		--h3-size: 24px;
		--h4-size: 22px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.header-logo {
		flex: 0 0 70px;
		max-width: 70px;
	}
	.header-logo span {
		display: none;
	}
	.topbar-wrap:before {
		flex: 0 0 100px;
		max-width: 100px;
	}
	.header-icon a div {
		display: none;
	}
	.heroSlider-item__content {
		margin-bottom: var(--gap);
	}
	.heroSlider-item__content h1, .heroSlider-item__content h2 {
	    font-size: calc(var(--h1-size) * 1.25);
	}
	.hero-section, .heroSlider-item {
		height: 540px;
	}
	.categories-item a {
		padding: 10px;
		min-height: 80px;
	}
	.categories-item__image {
		flex: 0 0 60px;
		max-width: 60px;
		height: 60px;
	}
	.categories-item__image img {
		max-height: 60px;
	}
	.woocommerce-loop-category__title {
		font-size: var(--text-size);
	}
	.products_2-item__image {
		flex: 0 0 calc(var(--container) / 4 - 2px);
   	 	max-height: calc(var(--container) / 4 - 2px);
	}
	.products_2-item__image img {
		max-height: calc(var(--container) / 4 - 2px);
	}
	.advantages-item__title {
		font-size: var(--text-size-md);
	}
	.brands-item {
		flex: 0 0 calc(100% / 6);
    	max-width: calc(100% / 6);
	}
	.products_3-item__image {
		flex: 0 0 80px;
		max-width: 80px;
	}
	.productsGrid-carousel {
		height: calc(102px * 3 + 8px * 2);
	}
	.services-item__title {
		padding: 80px 16px 16px;
		font-size: var(--h6-size);
	}
	.page-body-main .columns-4 .products-item {
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
	.page-body-main .products-item__image {
		flex: 0 0 calc((var(--container) - var(--gap) * 3) / 4 - 6px);
		max-height: calc((var(--container) - var(--gap) * 3) / 4 - 6px);
	}
	.page-body-main .products-item__image img {
		max-height: calc((var(--container) - var(--gap) * 3) / 4 - 6px);
	}
	.woocommerce-product-attributes th, .woocommerce-product-attributes td {
		padding: calc(var(--gap) / 2.4) calc(var(--gap) / 2);
	}
	.social-wrap {
		padding: 20px 40px;
	}
	.pageCart-left {
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: var(--gap);
	}
	.pageCart-right {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.woocommerce-MyAccount-navigation {
		width: 220px;
	}
	.woocommerce-MyAccount-content {
		width: calc(100% - 220px - var(--gap));
	}
	.woocommerce-orders-table th, .woocommerce-orders-table td, .woocommerce-table--order-details th, .woocommerce-table--order-details td {
		padding: calc(var(--gap) / 2.4) calc(var(--gap) / 2);
	}
}





@media (max-width: 991px) {
	:root {
		--container: 696px;
		--gap: 16px;
		--shadow: 0 0px 5px 0px rgba(0, 0, 0, 0.1);

		--text-size: 14px;
		--text-size-md: 15px;
		--text-size-sm: 12px;
		--h1-size: 28px;
		--h2-size: 24px;
		--h3-size: 22px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 16px;
	}
	.soc-links li.soc-mobile,
	.topbar-soc span.soc-mobile {
		display: block;
	}
	.soc-links li.soc-desktop,
	.topbar-soc span.soc-desktop {
		display: none;
	}
	.topbar-wrap:before {
		display: none;
	}
	.header-logo {
		flex: auto;
		max-width: 100%;
	}
	.main-menu {
		display: none;
	}
	.header-wrap {
		height: 48px;
	}
	.header-logo img {
		max-height: 48px;
	}
	.header-icon.menu-toggle {
		display: flex;
	}
	.header-icons {
		gap: calc(var(--gap) / 1.5);
	}
	.hero-section, .heroSlider-item {
		height: 420px;
	}
	.heroSlider-item__wrap {
		max-width: calc(100% - 120px);
		margin: auto;
	}
	.hero-navigation {
		opacity: 1;
	}
	.hero-section:after {
		display: none;
	}
	.advantages-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.columns-3 .categories-item,
	.columns-4 .categories-item,
	.columns-5 .categories-item,
	.page-body-main .columns-4 .categories-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.products_2-item__image {
		flex: 0 0 calc(var(--container) / 3 - 2px);
   	 	max-height: calc(var(--container) / 3 - 2px);
	}
	.products_2-item__image img {
		max-height: calc(var(--container) / 3 - 2px);
	}
	.brands-item {
        flex: 0 0 calc(100% / 4);
        max-width: calc(100% / 4);
    }
    .productsGrid-wrap {
    	gap: calc(var(--gap) * 2);
    }
    .productsGrid-col {
    	flex: 0 0 100%;
    	max-width: 100%;
    }
    .services-item {
    	flex: 0 0 50%;
    	max-width: 50%;
    }
    .services-item:first-child {
    	flex: 0 0 100%;
    	max-width: 100%;
    }
    .services-item__wrap {
    	min-height: calc((var(--container) - var(--gap)) / 2 / 1.5);
    }
    .social-wrap {
    	flex-direction: column;
    }
    .footer-wrap {
    	flex-direction: column;
    }
    .footer-widget:nth-child(2) {
    	flex: 1;
    }
    .footer-bottom {
    	flex-direction: column;
    	text-align: center;
    }
    .page-body-sidebar,
    .page-body-main {
    	flex: 0 0 100%;
    	max-width: 100%;
    }
    .widget-area {
    	display: none;
    	margin-top: calc(var(--gap));
    }
    .columns-4 .products-item,
	.page-body-main .columns-4 .products-item {
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
	.products-item__image,
	.page-body-main .products-item__image {
		flex: 0 0 calc((var(--container) - var(--gap) * 2) / 3 - 6px);
		max-height: calc((var(--container) - var(--gap) * 2) / 3 - 6px);
	}
	.products-item__image img,
	.page-body-main .products-item__image img {
		max-height: calc((var(--container) - var(--gap) * 2) / 3 - 6px);
	}
	.products-item__actions {
		opacity: 1;
	}
	.singleProduct-images {
		flex: 0 0 calc(var(--container) * .42 - var(--gap) / 2);
		max-width: calc(var(--container) * .42 - var(--gap) / 2);
	}
	.singleProduct-summary {
		flex: 0 0 calc(var(--container) * .58 - var(--gap) / 2);
		max-width: calc(var(--container) * .58 - var(--gap) / 2);
	}
	.singleProductImagesMain-item__image {
		height: calc(var(--container) * .42 - var(--gap) / 2);
	}
	.singleProductImagesMain-item__image img {
		max-height: calc(var(--container) * .42 - var(--gap) / 2);
	}
	.singleProductImagesOther-item__image {
		height: calc(((var(--container) * .42 - var(--gap) / 2) - 10px * 2) / 3);
	}
	.singleProductImagesOther-item__image img {
		max-height: calc(((var(--container) * .42 - var(--gap) / 2) - 10px * 2) / 3 - 2px);
	}
	.swiper-navigation.singleProductImagesMain-swiper-navigation {
		top: calc((var(--container) * .42 - var(--gap) / 2) / 2 - 18px);
	}
	.pageContacts-wrap {
		flex-direction: column;
	}
	.pageCheckout-left,
	.pageLogin-left,
	.pageContacts-left {
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: var(--gap);
	}
	.pageCheckout-right,
	.pageLogin-right,
	.pageContacts-right {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.woocommerce-MyAccount-navigation {
		width: 100%;
		float: none;
		margin-bottom: var(--gap);
	}
	.woocommerce-MyAccount-content {
		width: 100%;
		margin-left: 0;
		float: none;
	}
	table.wishlist_table thead th {
		padding: 8px 12px;
	}
	.swiper-navigation.singleProductImagesMain-swiper-navigation {
		opacity: 1;
	}
	.wc-block-components-notice-banner__content .button, .woocommerce-message .button, .woocommerce-info .button, .woocommerce-error .button {
		float: none;
		margin-left: 0;
		margin-top: 4px;
		display: inline-block;
	}

	.header-search-inner {
		top: calc(100% + 16px);
		right: -128px;
		width: var(--container);
		max-width: 480px;
	}
}





@media (max-width: 767px) {
	:root {
		--container: 516px;
		--gap: 16px;
		--shadow: 0 0px 5px 0px rgba(0, 0, 0, 0.1);

		--text-size: 14px;
		--text-size-md: 15px;
		--text-size-sm: 12px;
		--h1-size: 28px;
		--h2-size: 24px;
		--h3-size: 22px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 16px;
	}
	.heroSlider-item__content h1, .heroSlider-item__content h2 {
        font-size: var(--h1-size);
    }
    .archiveShop-top {
    	flex-direction: column;
    	align-items: center;
    }
    .singleProduct-images {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.singleProduct-summary {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.singleProductImagesMain-item__image {
		height: var(--container);
	}
	.singleProductImagesMain-item__image img {
		max-height: var(--container);
	}
	.singleProductImagesOther-item__image {
		height: calc((var(--container) - 10px * 2) / 3);
	}
	.singleProductImagesOther-item__image img {
		max-height: calc((var(--container) - 10px * 2) / 3 - 2px);
	}
	.swiper-navigation.singleProductImagesMain-swiper-navigation {
		top: calc(var(--container) / 2 - 18px);
	}
	.form-field-50 {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.form-row-first, .form-row-last {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.woocommerce-billing-fields__field-wrapper {
		margin-bottom: calc(var(--gap));
	}

	.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: 1px solid var(--line);
		padding: var(--gap);
		border-radius: 3px;
		margin-bottom: 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 .qib-container:not(#qib_id):not(#qib_id) {
		margin: 0;
	}
	.pageCartTableProducts tbody td.product-quantity {
		flex: 0 0 110px;
		max-width: 110px;
	}
	.pageCartTableProducts tbody td.product-subtotal {
		flex: 0 0 calc(100% - 110px - 50px);
		max-width: calc(100% - 110px - 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;
	}
	.form-row.place-order .btn {
		width: 100%;
	}


	.wishlist_table.mobile {
		padding: 0;
	}
	.wishlist_table.mobile li {
		background: var(--white);
		border: 1px solid var(--line);
		border-radius: 3px;
		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-md);
	}
	.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);
	}
	.wishlist_table.modern_grid li .item-details table.item-details-table td, .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 {
		padding: 0;
		color: #999;
	}
	.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;
		color: var(--black);
	}
	.wishlist-in-stock {
		color: green;
	}
	.wishlist_table.mobile li .additional-info-wrapper .product-remove a {
		-webkit-mask-size: 16px;
		-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;
	}
}





@media (max-width: 575px) {
	:root {
		--container: calc(100vw - var(--gap) * 2);
		--gap: 16px;
		--shadow: 0 0px 5px 0px rgba(0, 0, 0, 0.1);

		--text-size: 14px;
		--text-size-md: 15px;
		--text-size-sm: 12px;
		--h1-size: 28px;
		--h2-size: 24px;
		--h3-size: 22px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 16px;
	}
	.topbar-contacts {
		flex-direction: column;
		align-items: flex-start;
		gap: 0px;
	}
	.categories-item__image {
		display: none;
	}
	.categories-item a {
		min-height: auto;
		height: 100%;
	}
	.brands-item {
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
	.services-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
    .services-item__wrap {
    	min-height: calc(var(--container) / 1.5);
    }
    .columns-4 .products-item,
	.page-body-main .columns-4 .products-item {
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
	}
	.products-item__image,
	.page-body-main .products-item__image {
		flex: 0 0 calc((var(--container) - var(--gap)) / 2 - 6px);
		max-height: calc((var(--container) - var(--gap)) / 2 - 6px);
	}
	.products-item__image img,
	.page-body-main .products-item__image img {
		max-height: calc((var(--container) - var(--gap)) / 2 - 6px);
	}
	.singleProductsPDF-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.error-404-number {
		font-size: calc(var(--h1-size) * 5);
	}
	.woocommerce-thankyou-order-details {
		flex-direction: column;
	}

	.header-search-inner-in {
		margin: 0 5px;
	}
	.search-form select {
		flex: 0 0 105px;
		max-width: 105px;
		font-size: var(--text-size-sm);
		margin-right: 10px;
	}
	.search-form input {
		max-width: calc(100% - 105px - 10px - 40px - 5px);
		font-size: var(--text-size-sm);
	}
	.search-form-line {
		display: none;
	}
	.search-form button {
		margin-left: 2px;
	}

	
	.topbar {
		font-size: var(--text-size);
	}
	.topbar-wrap {
		height: 44px;
	}
	.topbar-account a {
		font-size: 0;
		width: 24px;
	}
		.topbar-account a:before {
			flex: 0 0 24px;
			max-width: 24px;
			width: 24px;
			height: 24px;
		}
		.topbar-language {
			padding-right: 10px;
			gap: 4px;
			font-size: 13px;
		}
		.topbar-soc {
			gap: 4px;
		}
	.topbar-soc span a svg {
		flex: 0 0 20px;
		max-width: 20px;
		height: 20px;
	}
	.header {
		top: 44px;
	}
}
