@charset "UTF-8";
/*===========================================================
  >>> TABLE OF CONTENTS:
  # Reset
  # Fonts
  # Elements
  # Content
  # Media
  ========================================================== */

/*===========================================================
  Reset
  ========================================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-display: swap;
}

.red {
	color: red;
}

.site-main {
	min-height: 65vh;
}

.woocommerce-store-notice, p.demo_store {
	color: #000;
	position: fixed;
	right: 0;
	padding: 3em 2em 2em 2em;
	background-color: #fff;
	border: 0 !important;
	z-index: 9998;
	width: 50%;
	margin: 0 auto !important;
	font-size: 15px;
	line-height: 26px;
	top: 40% !important;
	transform: translate(0%, -50%) !important;
	border-radius: 8px;
	text-align: center;
	box-shadow: 1px 15px 30px rgba(38, 38, 38, 0.25);
	overflow: hidden;
	left: 0;
	box-sizing: border-box;
}

.demo_store a.woocommerce-store-notice__dismiss-link {
	background: rgba(0, 0, 0, .1);
	float: right;
	display: inline-block;
	margin-top: 20px;
	padding: 1em 1.41575em;
	font-size: 12px;
	margin-left: -100px;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
	.woocommerce-store-notice, p.demo_store {
		width: 70%;
	}
}

@media (max-width: 768px) {
	.woocommerce-store-notice, p.demo_store {
		width: 100%;
	}

}


/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	outline: none;
	text-decoration: none;
	cursor: pointer;
}

a:hover, a:focus {
	text-decoration: none;
}

input, select, button, textarea {
	margin: 0;
	font-size: 100%;
	outline: none;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

button {
	padding: 0;
	border: none;
	background: none;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

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

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

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

img {
	max-width: 100%;
	height: auto;
}

/*  ===========================================================
Fonts
@mixin ========================================================== */

@font-face {
	font-family: "Inter";
	font-weight: 900;
	font-style: normal;
	src: url("../fonts/inter/Inter-Black.ttf") format("truetype");
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	font-weight: 800;
	font-style: normal;
	src: url("../fonts/inter/Inter-ExtraBold.ttf") format("truetype");
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	font-weight: 700;
	font-style: normal;
	src: url("../fonts/inter/Inter-Bold.ttf") format("truetype");
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	font-weight: 600;
	font-style: normal;
	src: url("../fonts/inter/Inter-SemiBold.ttf") format("truetype");
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	font-weight: 500;
	font-style: normal;
	src: url("../fonts/inter/Inter-Medium.ttf") format("truetype");
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	font-weight: 400;
	font-style: normal;
	src: url("../fonts/inter/Inter-Regular.ttf") format("truetype");
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	font-weight: 300;
	font-style: normal;
	src: url("../fonts/inter/Inter-Light.ttf") format("truetype");
	font-display: swap;
}

/*  ===========================================================
    Elements
    @mixin ========================================================== */
/* width */
body::-webkit-scrollbar {
	width: 17px;
}

/* Track */
body::-webkit-scrollbar-track {
	background: #f2f2f2;
}

/* Handle */
body::-webkit-scrollbar-thumb {
	background: #1b1615;
}

/* Handle on hover */
body::-webkit-scrollbar-thumb:hover {
	background: var(--gpo-style-color);
}

.btn {
	display: inline-block;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	border: 1px solid #2a2423;
	border-radius: 35px;
	background-color: #2a2423;
	padding: 11px 21px;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.btn:hover {
	color: #2a2423;
	background-color: transparent;
	border: 1px solid #2b2423;
}

.btn_color {
	display: inline-block;
	background-color: var(--gpo-style-color);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	border: 1px solid var(--gpo-style-color);
	border-radius: 35px;
	padding: 11px 21px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.btn_color:hover {
	color: var(--gpo-style-color);
	background-color: transparent;
}

.btn-1 {
	border-radius: 35px;
	padding: 0 10px;
	height: 41px;
	border-radius: 35px;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	font-weight: bold;
	font-size: 15px;
	vertical-align: middle;
	overflow: hidden;
	background-color: var(--gpo-style-color);
	border: 1px solid var(--gpo-style-color);
	color: #fff;
	display: flex;
    align-items: center;
}

.btn-1 svg {
	margin-right: 5px;
	width: 24px;
	vertical-align: middle;
}

.btn-1 svg path {
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.btn-1:hover {
	background-color: transparent;
	color: var(--gpo-style-color);
}

.btn-1:hover svg path {
	fill: var(--gpo-style-color);
}

.btn-2 {
	border-radius: 35px;
	padding: 0 10px;
	height: 41px;
	border-radius: 35px;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	font-weight: bold;
	font-size: 15px;
	vertical-align: middle;
	overflow: hidden;
	background-color: #2b2423;
	border: 1px solid #2b2423;
	color: #fff;
}

.btn-2 svg {
	margin-right: 5px;
	width: 24px;
	vertical-align: middle;
}

.btn-2 svg path {
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.btn-2:hover {
	background-color: transparent;
	color: #2a2423;
	border: 1px solid #2a2423;
}

.btn-2:hover svg path {
	fill: var(--gpo-style-color);
}

.title_1 {
	font-size: 21px;
	font-weight: 300;
	text-transform: uppercase;
	color: #000;
	text-align: center;
	line-height: 1.2;
}

.title_1 b {
	font-weight: 900;
}

[data-tooltip] {
	position: relative;
}

.tooltip {
	display: none;
	position: absolute;
	right: 100%;
	top: 6px;
	margin-right: 8px;
	background-color: var(--gpo-style-color);
	padding: 10px 8px;
	-webkit-box-shadow: 0 0 9px rgba(73, 89, 102, 0.2);
	box-shadow: 0 0 9px rgba(73, 89, 102, 0.2);
	border-radius: 4px;
	font-weight: 600;
	font-size: 14px;
	color: #fff;
	min-width: 130px;
}

.tooltip::after {
	display: inline-block;
	content: '';
	position: absolute;
	right: -8px;
	top: 0;
	height: 0;
	width: 0;
	border: 10px solid var(--gpo-style-color);
	border-right-color: transparent;
	border-bottom-color: transparent;
}

.list-1 {
	margin-bottom: 15px;
}

.list-1 li {
	padding-left: 20px;
	position: relative;
	font-weight: 300;
	line-height: 1.5;
	margin-bottom: 5px;
}

.list-1 li::before {
	display: inline-block;
	content: '';
	width: 8px;
	height: 8px;
	background-color: var(--gpo-style-color);
	border-radius: 50%;
	position: absolute;
	top: 8px;
	left: 0;
}

.list_1 li {
	padding-left: 16px;
	position: relative;
}

.list_1 li::before {
	display: inline-block;
	content: "";
	width: 8px;
	height: 8px;
	background-color: var(--gpo-style-color);
	border-radius: 50%;
	position: absolute;
	top: 6px;
	left: 0;
}

::-webkit-input-placeholder {
	font-size: 14px;
	color: #727272;
}

::-moz-placeholder {
	font-size: 14px;
	color: #727272;
}

:-ms-input-placeholder {
	font-size: 14px;
	color: #727272;
}

::-ms-input-placeholder {
	font-size: 14px;
	color: #727272;
}

::placeholder {
	font-size: 14px;
	color: #727272;
}

.input,
.textarea {
	border: 1px solid #e0e0e0;
	background-color: transparent;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 10px;
	padding: 15px 10px;
	width: 100%;
	max-width: 500px;
	font-size: 15px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.input::-webkit-input-placeholder, .textarea::-webkit-input-placeholder {
	font-size: 14px;
	color: #727272;
}

.input::-moz-placeholder, .textarea::-moz-placeholder {
	font-size: 14px;
	color: #727272;
}

.input:-ms-input-placeholder, .textarea:-ms-input-placeholder {
	font-size: 14px;
	color: #727272;
}

.input::-ms-input-placeholder, .textarea::-ms-input-placeholder {
	font-size: 14px;
	color: #727272;
}

.input::placeholder,
.textarea::placeholder {
	font-size: 14px;
	color: #727272;
}

.input:focus,
.textarea:focus {
	border: 1px solid var(--gpo-style-color);
}

.textarea {
	height: 120px;
	resize: none;
}

.checkbox:checked, .checkbox:not(:checked),
.form-accept input[type="checkbox"] {
	position: absolute;
	left: -9999px;
}

.checkbox + label,
.checkbox + .wpcf7-list-item-label,
.form-accept .wpcf7-list-item-label {
	font-weight: 300;
	font-size: 13px;
	line-height: 1.2;
}

.checkbox:checked + label,
.checkbox:not(:checked) + label,
.checkbox:checked + .wpcf7-list-item-label,
.checkbox:not(:checked) + .wpcf7-list-item-label,
.form-accept .wpcf7-list-item-label {
	display: inline-block;
	position: relative;
	padding-left: 34px;
	cursor: pointer;
	padding-top: 5px;
	padding-bottom: 4px;
}

.checkbox:checked + label:before,
.checkbox:not(:checked) + label:before,
.checkbox:checked + .wpcf7-list-item-label:before,
.checkbox:not(:checked) + .wpcf7-list-item-label:before,
.form-accept .wpcf7-list-item-label:before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -11px;
	width: 24px;
	height: 24px;
	border: 1px solid #e0e0e0;
	background-color: transparent;
	border-radius: 5px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.checkbox:not(:checked) + label:hover:before,
.checkbox:not(:checked) + .wpcf7-list-item-label:hover:before,
.form-accept input[type="checkbox"]:not(:checked) ~ .wpcf7-list-item-label:hover:before  {
	border: 1px solid var(--gpo-style-color);
}

.checkbox:checked + label:before,
.checkbox:checked + .wpcf7-list-item-label:before,
.form-accept input[type="checkbox"]:checked .wpcf7-list-item-label:after {
	border: 1px solid var(--gpo-style-color);
}

.checkbox:checked + label:after,
.checkbox:not(:checked) + label:after,
.checkbox:checked + .wpcf7-list-item-label:after,
.checkbox:not(:checked) + .wpcf7-list-item-label:after,
.form-accept .wpcf7-list-item-label:after {
	content: "";
	position: absolute;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.checkbox:checked + label:after,
.checkbox:not(:checked) + label:after,
.checkbox:checked + .wpcf7-list-item-label:after,
.checkbox:not(:checked) + .wpcf7-list-item-label:after,
.form-accept .wpcf7-list-item-label:after {
	left: 5px;
	top: 50%;
	margin-top: -5px;
	width: 10px;
	height: 5px;
	border-radius: 1px;
	border-left: 4px solid var(--gpo-style-color);
	border-bottom: 4px solid var(--gpo-style-color);
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.checkbox:not(:checked) + label:after,
.checkbox:not(:checked) + .wpcf7-list-item-label:after,
.form-accept input[type="checkbox"]:not(:checked) ~ .wpcf7-list-item-label:after {
	opacity: 0;
}

.checkbox:checked + label:after,
.checkbox:checked + .wpcf7-list-item-label:after,
.form-accept input[type="checkbox"]:checked ~ .wpcf7-list-item-label:after {
	opacity: 1;
}


[type="radio"] {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

/* для элемента label связанного с .custom-radio */
[type="radio"] + label {
	display: inline-flex;
	align-items: center;
	user-select: none;
	margin-bottom: 18px;
	width: 100%;
	cursor: pointer;
}

/* создание в label псевдоэлемента  before со следующими стилями */
[type="radio"] + label::before {
	content: '';
	display: inline-block;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	flex-grow: 0;
	box-sizing: border-box;
	border: 2px solid #020202;
	border-radius: 50%;
	margin-right: 15px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 50% 50%;
	transition: 0.3s;
	position: relative;
	top: 3px;
}

/* стили при наведении курсора на радио */
[type="radio"]:not(:disabled):not(:checked) + label:hover::before {
	border-color: var(--gpo-style-color);
}

/* стили для активной радиокнопки (при нажатии на неё) */
[type="radio"]:not(:disabled):active + label::before {
	background-color: #b3d7ff;
	border-color: #b3d7ff;
}

/* стили для радиокнопки, находящейся в фокусе и не находящейся в состоянии checked */
[type="radio"]:focus:not(:checked) + label::before {
	border-color: #80bdff;
}

/* стили для радиокнопки, находящейся в состоянии checked */
[type="radio"]:checked + label::before {
	border-color: #020202;
	background-color: var(--gpo-style-color);
}

/* стили для радиокнопки, находящейся в состоянии disabled */
[type="radio"]:disabled + label::before {
	background-color: #e9ecef;
}


.wpcf7-not-valid-tip {
	font-size: 14px;
	margin-top: 5px;
}

.wpcf7-inited form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
	border-color: var(--gpo-style-color);
	font-size: 14px;
	line-height: 1.5;
	text-align: center;
	padding: 10px 10px;
	margin-top: 20px;
}

.wpcf7-inited form.sent .wpcf7-response-output {
	font-size: 14px;
	line-height: 1.5;
	text-align: center;
	padding: 10px 10px;
	margin-top: 20px;
}

.wpcf7-inited form.sent .wpcf7-response-output,.screen-reader-response {
	display: none !important;
}

.wpcf7-inited.captcha_inited .screen-reader-response {
	display: none !important;
}

.wpcf7-list-item {
	margin: 0;
}

.form-wrp {
	background: #ffffff;
	-webkit-box-shadow: 0 0 14px rgba(0, 0, 0, 0.25);
	box-shadow: 0 0 14px rgba(0, 0, 0, 0.25);
	border-radius: 4px;
	padding: 30px;
}

.form-1 {
	max-width: 460px;
	margin-left: auto;
	margin-right: auto;
}

.form-1 .form-title {
	font-size: 14px;
	text-align: center;
	line-height: 1.2;
	margin-bottom: 15px;
}

.form-1 .form-input {
	padding-top: 15px;
}

.form-1 .form-error {
	font-size: 14px;
	color: #ff0000;
	padding-top: 2px;
}

.form-1 .form-bottom {
	padding-top: 20px;
}

.form-1 .form-submit-wrp {
	text-align: center;
	margin-top: 32px;
}

.form-1 .form-submit {
	min-width: 150px;
	display: flex;
	justify-content: center;
	cursor: pointer;
}

.form-2, .wpcf7 {
	max-width: 460px;
	margin-left: auto;
	margin-right: auto;
}

.form-2 .form-title,
.wpcf7 .form-title {
	font-size: 14px;
	text-align: center;
	line-height: 1.2;
	margin-bottom: 15px;
}

.form-2 .form-input,
.wpcf7 .form-input {
	padding-top: 15px;
}

.form-2 .form-error {
	font-size: 14px;
	color: #ff0000;
	padding-top: 2px;
}

.form-2 .form-bottom,
.wpcf7 .form-bottom {
	padding-top: 20px;
}

.form-2 .form-submit-wrp,
.wpcf7 .form-submit-wrp {
	text-align: center;
	margin-top: 32px;
	position: relative;
	display: flex;
	justify-content: flex-start;
}

.wpcf7 .form-submit-wrp > span,form .form-submit-wrp > span {
	position: relative;
	display: inline-block;
}

.form-2 .form-submit,
.wpcf7 .form-submit {
	min-width: 150px;
	cursor: pointer;
	display: flex;
	justify-content: center;
}

.submitting .form-submit {
	background-color: transparent;
	color: var(--gpo-style-color);
	pointer-events: none;
}

.wpcf7 .ajax-loader, form .ajax-loader,form .wpcf7-spinner,
.wpcf7 [type="submit"] ~ span {
	background-color: transparent;
	opacity: 1;
	margin: 8px 0 0;
	position: absolute;
	right: 5px;
	top: 0;
}

.wpcf7 .ajax-loader::before,
.wpcf7 [type="submit"] ~ span:before {
	background-color: var(--gpo-style-color);
}

.section-0 {
	padding-top: 50px;
	padding-bottom: 50px;
	overflow: hidden;
}

.section-0 .title_1 {
	margin-bottom: 30px;
}

.section-1 {
	background-color: #f2f2f2;
	padding-top: 40px;
	padding-bottom: 40px;
	overflow: hidden;
}

.section-1 .title_1 {
	margin-bottom: 30px;
}

.slider-1 {
	margin: 0 -12px;
}

.slider-1:not(.slick-slider) {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.slider-1 .slick-dots {
	text-align: center;
}

.slider-1 .slick-dots li {
	display: inline-block;
	margin: 7px;
}

.slider-1 .slick-dots button {
	font-size: 0;
	width: 13px;
	height: 13px;
	background-color: #000;
	border-radius: 50%;
}

.slider-1 .slick-dots .slick-active button {
	background-color: var(--gpo-style-color);
}

.slider-1 .slide {
	padding: 0 12px;
	margin-bottom: 24px;
}

.slider-1 .product-card {
	margin: 0 auto;
}

.slider-1 .slider-arrow {
	display: none !important;
	position: absolute;
	right: 10px;
	top: -85px;
}

.slider-1 .slider-arrow svg path {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.slider-1 .slider-arrow.slick-disabled {
	cursor: auto;
}

.slider-1 .slider-arrow:not(.slick-disabled):hover svg path {
	fill: var(--gpo-style-color);
}

.slider-1 .slider-arrow.prev {
	right: 80px;
}

.product-card {
	background: #fff;
	-webkit-box-shadow: 0 0 14px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 14px rgba(0, 0, 0, 0.05);
	border-radius: 4px;
	width: 342px;
	max-width: 100%;
	height: 100%;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.slick-initialized .product-card {
	max-width: 480px;
}

.product-card__top {
	height: 328px;
	position: relative;
}

.product-card__top-link {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	overflow: hidden;
	z-index: 1;
}

.product-card__top-link img {
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.product-card__top-link:hover img {
	-webkit-transform: scale(1.08);
	-ms-transform: scale(1.08);
	transform: scale(1.08);
}

.product-card__labels {
	position: absolute;
	left: 12px;
	top: 14px;
}

.product-card__label {
	background-color: var(--gpo-style-color);
	border-radius: 50px;
	padding: 6px 11px;
	font-weight: bold;
	font-size: 13px;
	text-transform: uppercase;
	color: #fff;
	text-align: center;
	display: inline-block;
	margin-right: 5px;
}

.product-card__label-hit {
	background-color: var(--gpo-style-color);
}

.product-card__label-sale {
	background-color: #fe3232;
}

.product-card__label-new {
	background-color: #0082cb;
}

.product-card__add {
	position: absolute;
	top: 14px;
	right: 0;
	background-color: #fff;
	-webkit-box-shadow: 0 0 7px rgba(73, 89, 102, 0.19);
	box-shadow: 0 0 7px rgba(73, 89, 102, 0.19);
	border-radius: 10px 0 0 10px;
	padding: 10px;
	z-index: 1;
}

.product-card__add-item {
	display: block;
	cursor: pointer;
	margin-bottom: 15px;
	text-align: center;
}

.product-card__add-item--single {
	display: inline-block;
	margin-right: 10px;
}

.product-card__add-item svg {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.product-card__add-item svg path {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.product-card__add-item:hover svg {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.product-card__add-item.added svg path {
	fill: var(--gpo-style-color);
}

.product-card__add-item:hover svg path {
	fill: var(--gpo-style-color);
}

.product-card:hover .product-card__top-link img {
	-webkit-transform: scale(1.08);
	-ms-transform: scale(1.08);
	transform: scale(1.08);
}

.product-card__add-item:last-child {
	margin-bottom: 0;
}

.product-card__body {
	background-color: rgba(197, 197, 197, 0.12);
	padding: 15px 12px;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.product-card__body-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-bottom: 10px;
	border-bottom: 1px solid #e0e0e0;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.product-card__rating {
	color: #afafaf;
	font-size: 18px;
	position: relative;
	letter-spacing: -1px;
}

.product-card__rating .rating-all {
	color: #afafaf;
}

.product-card__rating .rating-active {
	color: var(--gpo-style-color);
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	overflow: hidden;
}

.product-card__stock svg {
	vertical-align: middle;
}

.product-card__stock span {
	font-size: 13px;
	padding-left: 2px;
	display: inline-block;
	vertical-align: middle;
	color: #000;
}

.product-card__title {
	display: block;
	font-weight: 600;
	font-size: 17px;
	margin-top: 10px;
	margin-bottom: 14px;
	line-height: 1.2;
	text-align: left;
}

.product-card__attribute {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 8px;
}

.product-card__attribute span {
	font-size: 13px;
	max-width: 60%;
	line-height: 1.2;
}

.product-card__attribute span:last-child {
	min-width: 30px;
}

.product-card__attribute:last-child {
	margin-bottom: 0;
}

.product-card__bottom {
	padding: 20px 12px 22px;
}

.product-card__prices-label {
	margin-top: 3px;
	font-size: 13px;
	text-wrap: nowrap;
}

.product-card__price {
	font-weight: 600;
	font-size: 23px;
	margin-right: 12px;
}

.product-card__noprice {
	font-weight: 600;
	font-size: 20px;
	margin-left: 10px;
}

.product-card__price .currency {
	font-weight: 600;
	font-size: 16px;
}

.product-card__price.sale {
	color: #fe3232;
}

.product-card__old-price {
	font-size: 16px;
	-webkit-text-decoration-line: line-through;
	text-decoration-line: line-through;
}

.product-card__btns {
	padding-top: 15px;
	text-align: center;
	display: flex;
	justify-content: center;
	gap: 5px;
}

.product-card__add-cart {
	vertical-align: middle;
}


.product-card__one-click {
	vertical-align: middle;
}

.article-card {
	height: 328px;
	width: 328px;
	max-width: 100%;
	position: relative;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.article-card__link {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.article-card__bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	min-height: 62px;
	background: rgba(0, 0, 0, 0.6);
	padding: 15px 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.article-card__title {
	font-weight: 500;
	font-size: 14px;
	text-align: left;
	color: #fff;
	line-height: 1.3;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	display: block;
	width: calc(100% - 26px);
}

.article-card__icon {
	width: 26px;
	padding-left: 10px;
}

.article-card__icon svg path {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.article-card__image {
	width: 100%;
	height: 100%;
}

.article-card:hover .article-card__title {
	color: var(--gpo-style-color);
}

.article-card:hover .article-card__icon svg path {
	fill: var(--gpo-style-color);
}

.article-card:hover .article-card__bottom {
	min-height: 100%;
}

.review-card {
	background: #fff;
	-webkit-box-shadow: 0 0 14px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 14px rgba(0, 0, 0, 0.05);
	border-radius: 4px;
	height: 100%;
	max-width: 100%;
	position: relative;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	padding: 20px;
}

.review-card__blockquote {
	font-weight: 300;
	font-size: 13px;
	text-align: justify;
	line-height: 1.8;
	position: relative;
	padding: 30px 0;
}

.review-card__blockquote::before, .review-card__blockquote::after {
	display: block;
	content: '“';
	color: var(--gpo-style-color);
	position: absolute;
	font-weight: bold;
	font-size: 50px;
	line-height: 1;
}

.review-card__blockquote::before {
	top: -10px;
	left: -10px;
}

.review-card__blockquote::after {
	bottom: -20px;
	right: -10px;
}

.review-card__author {
	font-weight: bold;
	font-size: 13px;
}

.slick-slider {
	position: relative;
	display: block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	overflow: hidden;
	display: block;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	left: 0;
	top: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 10px;
	padding-bottom: 10px;
}

.slick-track:before, .slick-track:after {
	content: "";
	display: table;
}

.slick-track:after {
	clear: both;
}

.slick-track .slick-loading {
	visibility: hidden;
}

.slick-slide {
	float: left;
	height: auto;
	min-height: 1px;
}

.slick-slide [dir="rtl"] {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-slide .slick-initialized {
	display: block;
}

.slick-slide .slick-loading {
	visibility: hidden;
}

.slick-slide .slick-vertical {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}

.overlay {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	opacity: 0;
	visibility: hidden;
	z-index: -1;
}

.overlay.active {
	z-index: 99991;
	opacity: 1;
	visibility: visible;
}

.overlay-body {
	overflow: hidden;
}

.modal {
	width: 580px;
	max-width: 96%;
	position: fixed;
	top: 45%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-box-shadow: 0 0 14px rgba(0, 0, 0, 0.25);
	box-shadow: 0 0 14px rgba(0, 0, 0, 0.25);
	padding: 60px 10px 40px;
	border-radius: 4px;
	background-color: #fff;
	max-height: 96%;
	overflow-y: auto;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	opacity: 0;
	visibility: hidden;
	z-index: -1;
	display: none;
}

.modal.active {
	top: 50%;
	z-index: 99992;
	opacity: 1;
	visibility: visible;
	display: block;
}

.modal .title_1 {
	margin-bottom: 10px;
}

.modal__close {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	width: 30px;
	height: 30px;
}

.modal__close svg {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.modal__close svg path {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.modal__close:hover svg {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.modal__close:hover svg path {
	fill: var(--gpo-style-color);
}

.form-model__labels {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.form-model__label {
	font-size: 16px;
	color: #727272;
	padding-left: 10px;
	padding-bottom: 10px;
}

.form-model__label:first-child {
	width: 60%;
}

.form-model__label:last-child {
	width: 40%;
}

.form-model__values {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.form-model__title {
	font-size: 15px;
	line-height: 1.2;
	border: 1px solid #e0e0e0;
	width: 60%;
	padding: 10px;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}

.form-model__value {
	font-weight: 600;
	font-size: 16px;
	line-height: 1.2;
	color: var(--gpo-style-color);
	border: 1px solid #e0e0e0;
	margin-left: -1px;
	width: 40%;
	padding: 10px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.modal__thanks {
	padding: 70px 10px;
}

.modal__thanks .title_1 {
	margin-bottom: 20px;
	color: var(--gpo-style-color);
}

.modal__thanks-text {
	font-size: 17px;
	text-align: center;
}

.breadcrums {
	padding-top: 20px;
	padding-bottom: 20px;
	line-height: 1.3;
}

.breadcrums ul li {
	font-size: 16px;
	color: #000;
	display: inline-block;
}

.breadcrums ul li .separator {
	color: var(--gpo-style-color);
	padding-left: 5px;
}

.breadcrums ul li a {
	color: var(--gpo-style-color);
}

.breadcrums ul li a:hover {
	text-decoration: underline;
}

.aside_widget {
	background: #ffffff;
	-webkit-box-shadow: 0 3px 23px rgba(0, 0, 0, 0.18);
	box-shadow: 0 3px 23px rgba(0, 0, 0, 0.18);
	border-radius: 4px;
	margin-bottom: 40px;
}

.widget_catalog__list {
	padding: 25px;
}

.widget_catalog__list > li {
	margin-bottom: 20px;
	position: relative;
}

.widget_catalog__list > li > a, .widget_catalog__list > li > .nolink {
	color: var(--gpo-style-color);
	font-size: 18px;
	font-weight: 600;
}

.widget_catalog__list > li > a:hover, .widget_catalog__list > li > .nolink:hover {
	text-decoration: underline;
}

.widget_catalog__list > li .dropdown {
	padding-right: 50px;
	position: relative;
	display: block;
}

.widget_catalog__list > li .dropdown .toggle {
	content: '';
	display: inline-block;
	width: 100%;
	position: absolute;
	right: 0;
	top: -5px;
	bottom: -5px;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='15' height='9' viewBox='0 0 15 9' fill='none'%3e%3cpath d='M8.0853 8.66685L14.7604 1.99166C14.9149 1.83727 15 1.63118 15 1.41142C15 1.19167 14.9149 0.985572 14.7604 0.831183L14.2689 0.339602C13.9487 0.0197263 13.4282 0.0197263 13.1084 0.339602L7.50311 5.94492L1.89157 0.333382C1.73706 0.178993 1.53109 0.0937502 1.31145 0.0937502C1.09158 0.0937502 0.885603 0.178993 0.730969 0.333382L0.239633 0.824964C0.0851212 0.979475 9.66693e-07 1.18545 9.69313e-07 1.4052C9.71934e-07 1.62496 0.0851212 1.83105 0.239633 1.98544L6.9208 8.66685C7.0758 8.82161 7.28275 8.90661 7.50274 8.90612C7.7236 8.90661 7.93042 8.82161 8.0853 8.66685Z' fill='%2319929B'/%3e%3c/svg%3e");
	background-position: right center;
	background-size: auto;
	background-repeat: no-repeat;
	-webkit-transition: 0.25s;
	-o-transition: 0.25s;
	transition: 0.25s;
}

.widget_catalog__list > li .dropdown.open .toggle {
	width: 50px;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='15' height='9' viewBox='0 0 15 9' fill='none'%3e%3cpath d='M6.9147 0.333087L0.239632 7.00828C0.0851212 7.16267 -6.72031e-08 7.36876 -5.75973e-08 7.58852C-4.79915e-08 7.80827 0.0851212 8.01437 0.239632 8.16876L0.731092 8.66034C1.05133 8.98021 1.57182 8.98021 1.89157 8.66034L7.49689 3.05502L13.1084 8.66656C13.2629 8.82095 13.4689 8.90619 13.6885 8.90619C13.9084 8.90619 14.1144 8.82095 14.269 8.66656L14.7604 8.17497C14.9149 8.02046 15 7.81449 15 7.59474C15 7.37498 14.9149 7.16889 14.7604 7.0145L8.0792 0.333087C7.9242 0.178332 7.71725 0.0933329 7.49726 0.0938202C7.2764 0.0933329 7.06958 0.178332 6.9147 0.333087Z' fill='%2319929B'/%3e%3c/svg%3e");
}

.widget_catalog__list > li .dropdown.nolink.open .toggle {
	width: 100%;
}

.widget_catalog__list > li .dropdown ~ ul {
	overflow: hidden;
	display: none;
}

.widget_catalog__list .current-menu-item > a,
.widget_catalog__list > li a.active {
	text-decoration: underline;
}

.widget_catalog__list > li .dropdown.open ~ ul {
	display: block;
}

.widget_catalog__sublist {
	padding-top: 20px;
	padding-left: 20px;
}

.widget_catalog__sublist > li {
	margin-bottom: 16px;
}

.widget_catalog__sublist > li:last-child {
	margin-bottom: 0;
}

.widget_catalog__sublist > li > a {
	font-weight: 600;
	font-size: 17px;
	margin-bottom: 10px;
	display: inline-block;
}

.widget_catalog__sublist .current-menu-item > a {
	text-decoration: underline;
}

/*.widget_catalog__sub_sublist {*/
/*	margin-top: 16px;*/
/*}*/

.widget_catalog__sub_sublist li {
	margin-bottom: 16px;
	position: relative;
	padding-left: 14px;
}

.widget_catalog__sub_sublist li::before {
	display: block;
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 5px;
	background-color: var(--gpo-style-color);
}

.widget_catalog__sub_sublist li a {
	font-size: 15px;
}

/*  ===========================================================
    Content
    @mixin ========================================================== */
body {
	font-family: 'Inter', sans-serif;
	font-weight: normal;
	color: #000;
	font-size: 16px;
}

a {
	color: #000;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}

a:hover {
	color: var(--gpo-style-color);
}

a:after, a::before {
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}

button:hover {
	cursor: pointer;
}

svg {
	max-width: 100%;
}

.only_mobile {
	display: block !important;
}

.only_desctop {
	display: none !important;
}

.only_mobile_visible {
	visibility: visible !important;
}

.only_desctop_visible {
	visibility: hidden !important;
}

.hide {
	display: none !important;
}

.show {
	display: block !important;
}

.container {
	padding: 0 10px;
	margin: 0 auto;
	width: 100%;
	max-width: 1460px;
	position: relative;
}

.row {
	position: relative;
	width: 100%;
}

.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.flex__v-center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.flex__h-between {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.flex__h-around {
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

.page {
	min-height: 100vh;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.container .page {
	min-height: auto;
}

.main {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.header {
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
	z-index: 999;
	top: 0;
	overflow: hidden;
}

.header__top {
	padding: 6px 0;
	background-color: #fff;
	overflow: hidden;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.header__logo {
	max-width: 100px;
	position: relative;
}

.header__logo a {
	display: inline-block;
}

.header__logo img {
	height: auto;
}

.logo__city {
	position: absolute;
	right: 0;
	bottom: 2px;
	font-weight: 300;
	font-size: 9px;
	color: #000;
	letter-spacing: 0.03em;
}

.header__info-block {
	padding-left: 10px;
	line-height: 1.2;
}

.header__callback-icon {
	display: inline-block;
	background-color: var(--gpo-style-color);
	border: 1px solid var(--gpo-style-color);
	border-radius: 7px;
	padding: 5px;
	line-height: 1;
	width: 38px;
	height: 38px;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.header__callback-icon svg {
	width: 25px;
	height: 25px;
}

.header__callback-icon:hover {
	background-color: transparent;
}

.header__callback-icon:hover svg path {
	fill: var(--gpo-style-color);
}

.header__callback-text {
	display: inline-block;
	color: #2a2423;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	border: 1px solid #2a2423;
	border-radius: 35px;
	padding: 11px 21px;
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.header__callback-text:hover {
	color: #fff;
	background-color: var(--gpo-style-color);
	border: 1px solid var(--gpo-style-color);
}

.header__phone {
	font-weight: 500;
	font-size: 14px;
	display: block;
}

.header__navbar {
	background-color: #1b1615;
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 999;
}

.header__navbar .row {
	padding-top: 8px;
	padding-bottom: 8px;
}

.header__mobmenu_btn {
	height: 36px;
	width: 49px;
	position: relative;
}

.header__mobmenu_btn .item {
	position: absolute;
	display: block;
	width: 49px;
	height: 6px;
	border-radius: 3px;
	background-color: #fff;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.header__mobmenu_btn .item:nth-child(1) {
	top: 5px;
}

.header__mobmenu_btn .item:nth-child(2) {
	top: 15px;
}

.header__mobmenu_btn .item:nth-child(3) {
	top: 25px;
}

.header__mobmenu_btn:hover .item:nth-child(1) {
	width: 47px;
}

.header__mobmenu_btn:hover .item:nth-child(2) {
	width: 38px;
}

.header__mobmenu_btn:hover .item:nth-child(3) {
	width: 43px;
}

.header__layout {
	visibility: hidden;
	opacity: 0;
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	-webkit-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
	z-index: 9999;
}

.header__layout.active {
	visibility: visible;
	opacity: 1;
}

.header__mobmenu {
	position: fixed;
	display: block;
	width: 420px;
	left: -420px;
	max-width: 90%;
	height: 100vh;
	max-height: 100vh;
	top: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: .4s ease-in-out;
	-o-transition: .4s ease-in-out;
	transition: .4s ease-in-out;
	overflow: auto;
	z-index: 9999999;
	background-color: #1b1615;
	padding: 20px;
}

.header__mobmenu.active {
	left: 0;
	-webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.header__mobmenu li {
	position: relative;
}

.header__mobmenu li a, .header__mobmenu li .nolink {
	display: block;
	position: relative;
	color: #fff;
}

.header__mobmenu li .dropdown {
	padding-right: 50px;
}

.header__mobmenu li .dropdown .toggle {
	content: '';
	display: inline-block;
	width: 100%;
	position: absolute;
	right: 0;
	top: -5px;
	bottom: -5px;
	background-image: url('data:image/svg+xml;utf8,<svg width="15" height="9" viewBox="0 0 15 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.0853 8.66691L14.7604 1.99172C14.9149 1.83733 15 1.63124 15 1.41148C15 1.19173 14.9149 0.985633 14.7604 0.831244L14.2689 0.339663C13.9487 0.0197873 13.4282 0.0197873 13.1084 0.339663L7.50311 5.94498L1.89157 0.333443C1.73706 0.179054 1.53109 0.0938104 1.31145 0.0938104C1.09158 0.0938104 0.885603 0.179054 0.730969 0.333443L0.239633 0.825024C0.0851211 0.979535 9.05955e-07 1.18551 8.96349e-07 1.40526C8.86743e-07 1.62502 0.0851211 1.83111 0.239633 1.9855L6.9208 8.66691C7.0758 8.82167 7.28275 8.90667 7.50274 8.90618C7.7236 8.90667 7.93042 8.82167 8.0853 8.66691Z" fill="white"/></svg>');
	background-position: right center;
	background-size: auto;
	background-repeat: no-repeat;
	-webkit-transition: 0.25s;
	-o-transition: 0.25s;
	transition: 0.25s;
}

.header__mobmenu li .dropdown.open .toggle {
	width: 50px;
	background-image: url('data:image/svg+xml;utf8,<svg width="15" height="9" viewBox="0 0 15 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.9147 0.333087L0.239632 7.00828C0.0851212 7.16267 -6.72031e-08 7.36876 -5.75973e-08 7.58852C-4.79915e-08 7.80827 0.0851212 8.01437 0.239632 8.16876L0.731092 8.66034C1.05133 8.98021 1.57182 8.98021 1.89157 8.66034L7.49689 3.05502L13.1084 8.66656C13.2629 8.82095 13.4689 8.90619 13.6885 8.90619C13.9084 8.90619 14.1144 8.82095 14.269 8.66656L14.7604 8.17497C14.9149 8.02046 15 7.81449 15 7.59474C15 7.37498 14.9149 7.16889 14.7604 7.0145L8.0792 0.333087C7.9242 0.178332 7.71725 0.0933329 7.49726 0.0938202C7.2764 0.0933329 7.06958 0.178332 6.9147 0.333087Z" fill="white"/></svg>');
}

.header__mobmenu li .dropdown.nolink.open .toggle {
	width: 100%;
}

.header__mobmenu li .dropdown ~ ul {
	overflow: hidden;
	display: none;
}

.header__mobmenu_list > li {
	margin-bottom: 40px;
	position: relative;
}

.header__mobmenu_list > li > a, .header__mobmenu_list > li > .nolink {
	color: #fff;
	font-size: 17px;
}

.header__mobcatalog_list > li {
	margin-top: 36px;
}

.header__mobcatalog_list > li > li > a {
	color: var(--gpo-style-color);
	font-size: 18px;
	font-weight: 800;
	text-transform: uppercase;
	position: relative;
}

.header__mobcatalog_sublist > li {
	margin-top: 32px;
}

.header__mobcatalog_sublist > li > a {
	color: #fff;
	font-weight: 600;
	font-size: 17px;
}

.header__mobcatalog_sub_sublist > li {
	position: relative;
	padding-left: 14px;
	margin-top: 20px;
}

.header__mobcatalog_sub_sublist > li::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--gpo-style-color);
	position: absolute;
	left: 0;
	top: 6px;
}

.header__mobcatalog_sub_sublist > li > a {
	color: #fff;
	font-size: 15px;
}

.header__mobmenu {
	position: fixed;
	display: block;
	width: 420px;
	left: -420px;
	max-width: 90%;
	height: 100vh;
	max-height: 100vh;
	top: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: .4s ease-in-out;
	-o-transition: .4s ease-in-out;
	transition: .4s ease-in-out;
	overflow: auto;
	z-index: 9999999;
	background-color: #1b1615;
	padding: 20px;
}

.header__mobmenu.active {
	left: 0;
	-webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.header__mobmenu li {
	position: relative;
}

.header__mobmenu li a, .header__mobmenu li .nolink {
	display: block;
	position: relative;
	color: #fff;
}

.header__mobmenu li.menu-item-has-children > a {
	padding-right: 50px;
}

.header__mobmenu li.menu-item-has-children > a .toggle {
	content: '';
	display: inline-block;
	width: 100%;
	position: absolute;
	right: 0;
	top: -5px;
	bottom: -5px;
	background-image: url('data:image/svg+xml;utf8,<svg width="15" height="9" viewBox="0 0 15 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.0853 8.66691L14.7604 1.99172C14.9149 1.83733 15 1.63124 15 1.41148C15 1.19173 14.9149 0.985633 14.7604 0.831244L14.2689 0.339663C13.9487 0.0197873 13.4282 0.0197873 13.1084 0.339663L7.50311 5.94498L1.89157 0.333443C1.73706 0.179054 1.53109 0.0938104 1.31145 0.0938104C1.09158 0.0938104 0.885603 0.179054 0.730969 0.333443L0.239633 0.825024C0.0851211 0.979535 9.05955e-07 1.18551 8.96349e-07 1.40526C8.86743e-07 1.62502 0.0851211 1.83111 0.239633 1.9855L6.9208 8.66691C7.0758 8.82167 7.28275 8.90667 7.50274 8.90618C7.7236 8.90667 7.93042 8.82167 8.0853 8.66691Z" fill="white"/></svg>');
	background-position: right center;
	background-size: auto;
	background-repeat: no-repeat;
	-webkit-transition: 0.25s;
	-o-transition: 0.25s;
	transition: 0.25s;
}

.header__mobmenu li.menu-item-has-children > a.open .toggle {
	width: 50px;
	background-image: url('data:image/svg+xml;utf8,<svg width="15" height="9" viewBox="0 0 15 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.9147 0.333087L0.239632 7.00828C0.0851212 7.16267 -6.72031e-08 7.36876 -5.75973e-08 7.58852C-4.79915e-08 7.80827 0.0851212 8.01437 0.239632 8.16876L0.731092 8.66034C1.05133 8.98021 1.57182 8.98021 1.89157 8.66034L7.49689 3.05502L13.1084 8.66656C13.2629 8.82095 13.4689 8.90619 13.6885 8.90619C13.9084 8.90619 14.1144 8.82095 14.269 8.66656L14.7604 8.17497C14.9149 8.02046 15 7.81449 15 7.59474C15 7.37498 14.9149 7.16889 14.7604 7.0145L8.0792 0.333087C7.9242 0.178332 7.71725 0.0933329 7.49726 0.0938202C7.2764 0.0933329 7.06958 0.178332 6.9147 0.333087Z" fill="white"/></svg>');
}

.header__mobmenu li.menu-item-has-children > a.nolink.open .toggle {
	width: 100%;
}

.header__mobmenu li.menu-item-has-children > a ~ ul {
	overflow: hidden;
	display: none;
}

.header__mobmenu_list > li {
	margin-bottom: 40px;
	position: relative;
}

.header__mobmenu_list > li > a, .header__mobmenu_list > li > .nolink {
	color: #fff;
	font-size: 17px;
}

.header__mobcatalog_list > li {
	margin-top: 36px;
}

.header__mobcatalog_list > li > a {
	color: var(--gpo-style-color);
	font-size: 18px;
	font-weight: 800;
	text-transform: uppercase;
	position: relative;
}

.header__mobcatalog_list > li > .sub-menu > li {
	margin-top: 32px;
}

.header__mobcatalog_list > li > .sub-menu > li > a {
	color: #fff;
	font-weight: 600;
	font-size: 17px;
}

.header__mobcatalog_list > li > .sub-menu > li > .sub-menu > li {
	position: relative;
	padding-left: 14px;
	margin-top: 20px;
}

.header__mobcatalog_list > li > .sub-menu > li > .sub-menu > li::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--gpo-style-color);
	position: absolute;
	left: 0;
	top: 6px;
}

.header__mobcatalog_list > li > .sub-menu > li > .sub-menu > li > a {
	color: #fff;
	font-size: 15px;
}

.header__top-menu_block {
	margin-left: 20px;
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
}

.header__top-menu_block a, .header__top-menu_block button {
	display: inline-block;
}

.header__top-menu_block a svg path, .header__top-menu_block button svg path {
	-webkit-transition: 0.25s;
	-o-transition: 0.25s;
	transition: 0.25s;
}

.header__top-menu_block a:hover svg path, .header__top-menu_block button:hover svg path {
	fill: var(--gpo-style-color);
}

.header__compare.active path,
.header__liked.active path {
	fill: var(--gpo-style-color);
}

.header__cart {
	position: relative;
	padding-right: 10px;
}

.header__cart-count {
	display: inline-block;
	width: 25px;
	height: 25px;
	background-color: var(--gpo-style-color);
	border-radius: 50%;
	color: #fff;
	font-weight: 500;
	font-size: 14px;
	position: absolute;
	top: -4px;
	left: 20px;
	text-align: center;
	padding-top: 6px;
	overflow: hidden;
}

.header__search {
	background-color: #fff;
	position: absolute;
	top: 1px;
	right: 0;
	bottom: 1px;
	overflow: hidden;
	left: 100%;
	-webkit-transition: left .5s ease-in-out;
	-o-transition: left .5s ease-in-out;
	transition: left .5s ease-in-out;
}

.header__search.open {
	left: 0;
}

.header__search .header__search-form {
	height: 100%;
}

.header__search .header__search-inner {
	height: 100%;
}

.header__search .header__search-item {
	-webkit-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	height: 100%;
}

.header__search .header__search-item:first-child {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.header__search .header__search-input {
	width: 100%;
	height: 100%;
	padding: 0 0 0 10px;
	border: none;
}

.header__search .header__search-close {
	height: 100%;
	padding: 0 18px;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
	position: relative;
	cursor: pointer;
}

.header__search .header__search-close svg path {
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}

.header__search .header__search-close:hover svg {
	line-height: 1;
}

.header__search .header__search-close:hover svg path {
	fill: var(--gpo-style-color);
}

.header__search .header__search-close::after {
	display: block;
	content: '';
	width: 1px;
	height: 36px;
	background-color: #8d8d8d;
	position: absolute;
	margin-top: -18px;
	top: 50%;
	right: 0;
}

.header__search .header__search-submit {
	height: 100%;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
	padding: 0 14px;
}
.header__search .header__search-submit svg path {
	fill: var(--gpo-style-color);
}
.header__search .header__search-submit:hover svg path {
	fill: #8d8d8d;
}

.header__catalog-wrp {
	display: none;
	position: relative;
}

.header__catalog {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	background: #ffffff;
	-webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
	width: 100%;
	top: 20px;
	padding: 35px 10px 40px;
	-webkit-transition: 0.2s ease-in .3s;
	-o-transition: 0.2s ease-in .3s;
	transition: 0.2s ease-in .3s;
	overflow: hidden;
	flex-wrap: wrap;
}

.header__catalog.active {
	visibility: visible;
	opacity: 1;
	top: 0;
	-webkit-transition: 0.2s ease-in;
	-o-transition: 0.2s ease-in;
	transition: 0.2s ease-in;
}

.header__catalog > .menu-item {
	position: relative;
	list-style: none;
	max-width: 20%;
	margin-left: 50px;
	margin-bottom: 40px;
}

.header__catalog > .menu-item > a {
	color: var(--gpo-style-color);
	font-weight: 800;
	font-size: 18px;
	text-transform: uppercase;
	display: inline-block;
	margin-bottom: 16px;
}

.header__catalog > .menu-item > a:after {
	display: block;
	content: "";
	width: 0;
	height: 2px;
	margin-top: 2px;
	background-color: var(--gpo-style-color);
	visibility: hidden;
	opacity: 0;
}

.header__catalog > .menu-item > a:hover:after {
	visibility: visible;
	opacity: 1;
	width: 100%;
}

.header__catalog > .menu-item > .sub-menu > .menu-item {
	padding-bottom: 3px;
}

.header__catalog > .menu-item > .sub-menu > .menu-item > a {
	font-weight: 600;
	font-size: 17px;
	margin-bottom: 16px;
	display: inline-block;
}

.header__catalog > .menu-item > .sub-menu > .menu-item > ul > li {
	margin-bottom: 15px;
	padding-left: 14px;
	position: relative;
}

.header__catalog > .menu-item > .sub-menu > .menu-item > ul > li::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--gpo-style-color);
	position: absolute;
	top: 5px;
	left: 0;
}

.header__catalog > .menu-item > .sub-menu > .menu-item > ul > li > a {
	font-size: 15px;
}

.header__catalog-btn,
.header__desctop-menu_item a {
	padding: 8px 0;
}

.header__desctop-menu_item {
	margin-right: 20px;
}

.header__desctop-menu_item.parent {
	position: relative;
}

.header__desctop-menu_item.parent .header__catalog-btn span {
	display: block;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
	position: relative;
	padding-right: 25px;
	overflow: hidden;
}

.header__desctop-menu_item.parent .header__catalog-btn span .arrow-down, .header__desctop-menu_item.parent .header__catalog-btn span .arrow-up {
	position: absolute;
	right: 0;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}

.header__desctop-menu_item.parent .header__catalog-btn span .arrow-down {
	top: 5px;
}

.header__desctop-menu_item.parent .header__catalog-btn span .arrow-up {
	top: -10px;
}

.header__desctop-menu_item.parent .header__catalog-btn span .arrow-up path {
	fill: var(--gpo-style-color);
}

.header__desctop-menu_item.parent .header__catalog-btn.active span {
	color: var(--gpo-style-color);
}

.header__desctop-menu_item.parent .header__catalog-btn.active span .arrow-down {
	top: 20px;
}

.header__desctop-menu_item.parent .header__catalog-btn.active span .arrow-up {
	top: 5px;
}

.header__catalog-btn {
	color: #fff;
}

.header__desctop-menu_item a {
	color: #fff;
}

.header__desctop-menu_item.current-menu-item a,
.header__desctop-menu_item a:hover {
	color: var(--gpo-style-color);
}

.footer__top {
	background-color: #1b1615;
	padding: 30px 0;
	color: #fff;
}

.footer__top .footer__top-wrp {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.footer__top .footer__top-item {
	margin-bottom: 30px;
}

.footer__top .footer__top-item:last-child {
	margin-bottom: 0;
}

.footer__top .footer__logo {
	max-width: 180px;
	position: relative;
}

.footer__top .footer__logo > span {
	position: relative;
}

.footer__top .footer__logo a {
	position: relative;
	display: inline-block;
	max-width: 100px;
}

.footer__top .footer__logo img {
	height: auto;
}

.footer__logo .logo__city {
	color: #fff;
}

.footer__top .footer__menu li {
	position: relative;
	padding-left: 16px;
	margin-bottom: 12px;
}

.footer__top .footer__menu li:last-child {
	margin-bottom: 0 !important;
}

.footer__top .footer__menu li::before {
	display: inline-block;
	content: '';
	background-color: var(--gpo-style-color);
	height: 5px;
	width: 5px;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -2px;
	border-radius: 50%;
}

.footer__top .footer__menu li a {
	color: #e8e8e8;
	font-size: 13px;
}

.footer__top .footer__menu li a:hover {
	color: var(--gpo-style-color);
}

.footer__top .footer__contacts-1 li {
	position: relative;
	margin-bottom: 15px;
}

.footer__top .footer__contacts-1 li:last-child {
	margin-bottom: 0;
}

.footer__top .footer__contacts-1 li svg {
	display: inline-block;
	vertical-align: middle;
}

.footer__top .footer__contacts-1 li p {
	font-size: 13px;
	margin-top: 7px;
}

.footer__top .footer__contacts-1 li a {
	color: #e8e8e8;
	font-size: 13px;
	display: inline-block;
	vertical-align: middle;
	padding-left: 10px;
}

.footer__top .footer__contacts-1 li a[href^="mail"] {
	margin-left: 3px;
}

.footer__top .footer__contacts-1 li a:hover {
	color: var(--gpo-style-color);
}

.footer__top .footer__contacts-2 li {
	position: relative;
	margin-bottom: 15px;
}

.footer__top .footer__contacts-2 li:last-child {
	margin-bottom: 0;
}

.footer__top .footer__contacts-2 li svg {
	display: inline-block;
	vertical-align: top;
}

.footer__top .footer__contacts-2 li span {
	color: #e8e8e8;
	font-size: 13px;
	display: inline-block;
	vertical-align: middle;
	padding-left: 10px;
	line-height: 1.2;
}

.footer__bottom {
	background-color: #231e1e;
	padding: 15px 0;
}

.footer__bottom .footer__bottom-copyright {
	font-size: 13px;
	color: #8d8d8d;
	text-align: center;
}

.footer__bottom .footer__bottom-confident {
	color: #8d8d8d;
	display: inline-block;
	margin-bottom: 15px;
}

.footer__bottom .footer__bottom-confident:hover {
	color: var(--gpo-style-color);
}

.section__catalog {
	padding-top: 40px;
	padding-bottom: 20px;
}

.section__catalog .title_1 {
	margin-bottom: 30px;
}

.section__catalog-wrp {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.section__catalog-card {
	margin-bottom: 10px;
	background: #ffffff;
	-webkit-box-shadow: 0 3px 23px rgba(0, 0, 0, 0.18);
	box-shadow: 0 3px 23px rgba(0, 0, 0, 0.18);
	border-radius: 4px;
	-webkit-transition: 0.25s;
	-o-transition: 0.25s;
	transition: 0.25s;
	min-height: 166px;
	padding: 15px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-size: contain;
	background-position: 100% center;
	background-repeat: no-repeat;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.section__catalog-card:hover {
	-webkit-box-shadow: 0 3px 34px rgba(0, 0, 0, 0.3);
	box-shadow: 0 3px 34px rgba(0, 0, 0, 0.3);
}

.section__catalog-card .section__catalog-title {
	font-weight: 900;
	font-size: 20px;
	text-transform: uppercase;
	color: #000;
	display: inline-block;
	margin-bottom: 12px;
	text-shadow: 0 0 10px #fff;
}

.section__catalog-card .section__catalog-title:hover {
	color: var(--gpo-style-color);
}

.section__catalog-card .section__catalog-link {
	font-size: 15px;
	display: inline-block;
	margin-bottom: 12px;
}

.section__catalog-card .section__catalog-link:hover {
	color: var(--gpo-style-color);
}

.section__catalog-card.section__catalog-2 {
	justify-content: space-between;
}

.section__features {
	padding-top: 20px;
	padding-bottom: 20px;
}

.section__features .title_1 {
	margin-bottom: 40px;
}

.section__features-wrp {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.section__features-item {
	text-align: center;
	margin-bottom: 30px;
}

.section__features-item .section__features-icon {
	display: inline-block;
	background: #ffffff;
	-webkit-box-shadow: 0 0 12px rgba(200, 200, 200, 0.5);
	box-shadow: 0 0 12px rgba(200, 200, 200, 0.5);
	border-radius: 4px;
	margin-bottom: 20px;
}

.section__features-item .section__features-title {
	font-weight: 800;
	font-size: 16px;
	margin-bottom: 5px;
	color: #000;
}

.section__features-item .section__features-text {
	color: #000;
	font-size: 13px;
	line-height: 1.5;
}

.section__about {
	padding-top: 20px;
	padding-bottom: 20px;
}

.section__about .title_1 {
	margin-bottom: 40px;
}

.section__about .section__about-wrp {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.section__about .section__about-img {
	margin-bottom: 40px;
	text-align: center;
}

.section__about .section__about-short p,
.section__about .section__about-more p {
	font-weight: 300;
	font-size: 13px;
	line-height: 1.5;
	text-align: justify;
	margin-bottom: 25px;
}

.section__about .section__about-short ul li,
.section__about-more .item_card .flex .item ul li {
	font-size: 13px;
}

.section__about .more_about {
	font-weight: 600;
	font-size: 15px;
	margin-left: auto;
	margin-bottom: 15px;
	padding-right: 20px;
	display: block;
	position: relative;
	-webkit-transition: 0.25s;
	-o-transition: 0.25s;
	transition: 0.25s;
	color: var(--gpo-style-color);
}

.section__about .more_about::after {
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -7px;
	display: inline-block;
	content: '';
	width: 15px;
	height: 15px;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='9' height='15' fill='none'%3e%3cpath d='M8.667 6.915L1.992.24a.815.815 0 00-.58-.24.815.815 0 00-.58.24L.34.73a.82.82 0 000 1.16l5.605 5.606-5.612 5.611a.815.815 0 00-.24.58c0 .22.086.426.24.581l.492.491c.154.155.36.24.58.24.22 0 .426-.085.58-.24l6.682-6.68a.816.816 0 00.24-.583.815.815 0 00-.24-.582z' fill='%2319929B'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	vertical-align: middle;
	margin-left: 6px;
	color: var(--gpo-style-color);
}

.section__about .more_about:hover {
	color: #333;
}

.section__about .more_about:hover:after {
	color: #333;
}

.section__about .section__about-more {
	display: none;
}

.section__about-more h3 {
	font-weight: bold;
	font-size: 19px;
	line-height: 1.5;
	color: #000000;
	margin-bottom: 25px;
}

.section__about-more h4 {
	font-weight: bold;
	font-size: 19px;
	line-height: 1.5;
	color: var(--gpo-style-color);
	margin-bottom: 25px;
}

.section__about-more p {
	font-weight: 300;
	font-size: 16px;
	line-height: 29px;
	text-align: justify;
	margin-bottom: 25px;
}

.section__about-more > .flex {
	padding-top: 25px;
}

.section__about-more .flex {
	gap: 35px;
	margin-bottom: 12px;
}

.section__about-more .flex:last-child {
	margin-bottom: 25px;
}

.section__about-more .item_card {
	background: #ffffff;
	box-shadow: 0 0 12px rgba(200, 200, 200, 0.5);
	border-radius: 4px;
	padding: 50px 50px;
}

.section__about-more .item_card .flex .item:first-child {
	width: 256px;
	min-width: 200px;
}

.section__about-more .item_card .flex .item {
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.section__about-more .item_card .flex .item p {
	margin: 5px 0;
	text-align: left;
}

.section__about-more .item_card .flex .item ul li {
	font-weight: 300;
	font-size: 13px;
	line-height: 1.5;
	margin-bottom: 5px;
	position: relative;
	padding-left: 20px;
	/*width: 49%;*/
}

.section__about-more .item_card .flex .item ul li:before {
	position: absolute;
	content: '';
	display: block;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background-color: var(--gpo-style-color);
	top: 8px;
	left: 0;
}


.section__consult .title_1 {
	margin-bottom: 15px;
}

.section__blog .article-card {
	margin: 0 auto;
}

.section__blog .section__blog-bottom {
	text-align: center;
	margin-top: 20px;
}

.section__blog .section__blog-bottom-link {
	display: inline-block;
	color: var(--gpo-style-color);
	border-bottom: 1px solid var(--gpo-style-color);
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	font-weight: 500;
	font-size: 15px;
	padding-bottom: 2px;
}

.section__blog .section__blog-bottom-link:hover {
	border-bottom: 1px solid transparent;
	color: #8d8d8d;
}

.review-card__add {
	margin-top: 15px;
	display: flex;
    justify-content: center;
}

.review-card__add, .woocommerce-noreviews {
	text-align: center !important;
}

.review-card__add .btn-1 {
	min-width: 190px;
	align-items: center;
    justify-content: center;
}

.section__map-img img {
	display: block;
	margin: 0 auto;
}

.section-inner .title_1 {
	padding-bottom: 25px;
}

.category_wrp {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding-bottom: 20px;
}

.subcategories:has(.subcategories__card) {
	margin-bottom: 30px;
}

.subcategories__wrp {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 -4px;
	flex-wrap: wrap;
}

.subcategories__card {
	background: #ffffff;
	border: 1px solid #cecece;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 4px;
	margin: 0 4px 8px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	width: calc(50% - 4px);
	max-width: 225px;
	height: 60px;
	-webkit-box-pack: space-evenly;
	-ms-flex-pack: space-evenly;
	justify-content: space-evenly;
	overflow: hidden;
}

.subcategories__card:hover {
	-webkit-box-shadow: 0 3px 23px rgba(0, 0, 0, 0.18);
	box-shadow: 0 3px 23px rgba(0, 0, 0, 0.18);
	border-color: transparent;
}

.subcategories__card-img {
	max-height: 60px;
	margin-left: 7px;
}

.subcategories__card-img img {
	max-height: 60px;
	vertical-align: middle;
}

.subcategories__card-title {
	font-weight: 500;
	font-size: 15px;
	padding-right: 10px;
	min-width: 60%;
}

.tags {
	margin-bottom: 30px;
}

.tags__title {
	font-size: 14px;
	margin-bottom: 10px;
}

.tags__line_title {
	font-size: 14px;
	font-weight: 600;
	display: inline-block;
}

.tags__tag {
	font-weight: 500;
	font-size: 14px;
	padding: 8px 15px;
	display: inline-block;
	margin: 5px 3px;
	background: #b2d8db;
	border: 1px solid #ededed;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 4px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	color: #000;
}

.tags__tag:hover {
	border: 1px solid var(--gpo-style-color);
	color: #000;
}

.cat_description__wrp {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.cat_description__text {
	font-size: 14px;
	line-height: 1.7;
	text-align: justify;
}

.cat_description__text--bottom{
	margin-top: 55px;
}

.cat_description__text p {
	margin-bottom: 8px;
}

.cat_description__text ul li,
.section__category-about-wrp ul li {
	line-height: 1.5;
	margin-bottom: 5px;
	position: relative;
	padding-left: 18px;
}

.cat_description__text ul li:before,
.section__category-about-wrp ul li:before {
	position: absolute;
	content: '';
	display: block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: var(--gpo-style-color);
	top: 8px;
	left: 0;
}

.cat__min-price {
	font-size: 16px;
	text-align: left;
	margin: 0 0 25px;
}

.cat__min-price span {
	font-weight: bold;
	font-size: 20px;
	color: var(--gpo-style-color);
}

.scopes {
	margin-bottom: 50px;
	overflow: hidden;
}

.scopes .slick-dots {
	text-align: center;
}

.scopes .slick-dots li {
	display: inline-block;
	margin: 7px;
}

.scopes .slick-dots button {
	font-size: 0;
	width: 13px;
	height: 13px;
	background-color: #000;
	border-radius: 50%;
}

.scopes .slick-dots .slick-active button {
	background-color: var(--gpo-style-color);
}

.scopes__title {
	font-weight: 500;
	font-size: 20px;
	line-height: 1.2;
	margin-bottom: 30px;
}

.scopes__wrp {
	margin: 0 -6px;
}

.scopes__slide {
	margin: 0 6px;
	text-align: center;
}

.scopes__item {
	position: relative;
	display: inline-block;
}

.scopes__item::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: -webkit-gradient(
			linear,
			left top,
			left bottom,
			color-stop(17.76%, rgba(44, 44, 44, 0)),
			to(rgba(44, 44, 44, 0.81))
	);
	background: -o-linear-gradient(
			top,
			rgba(44, 44, 44, 0) 17.76%,
			rgba(44, 44, 44, 0.81) 100%
	);
	background: linear-gradient(
			180deg,
			rgba(44, 44, 44, 0) 17.76%,
			rgba(44, 44, 44, 0.81) 100%
	);
}

.scopes__item-title {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 20px;
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	color: #ffffff;
	text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
	text-align: center;
}

.section__category-about-wrp {
	font-weight: 300;
	font-size: 14px;
	line-height: 1.7;
	text-align: justify;
}

.cat_description__text h2,
.section__category-about-wrp h2 {
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 20px;
	font-size: 20px;
}

.cat_description__text h3,
.section__category-about-wrp h3 {
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 15px;
	font-size: 18px;
}

.cat_description__text h4,
.section__category-about-wrp h4 {
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 15px;
	font-size: 16px;
}

.section__category-about-wrp div,
.section__category-about-wrp p {
	margin-bottom: 20px;
}

.section__category-about-wrp:last-child {
	margin-bottom: 0;
}

.seria {
	background: #ffffff;
	border: 1px solid #cecece;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 4px;
	margin-bottom: 20px;
	overflow: hidden;
}

.seria__header {
	padding: 10px;
}

.seria__body {
	overflow-x: auto;
}

.seria__title {
	font-weight: 600;
	font-size: 17px;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 20px;
	line-height: 1.3;
}

.seria__hr {
	height: 1px;
	background: var(--gpo-style-color);
	margin-bottom: 20px;
}

.seria__img {
	text-align: center;
}

.seria__desc {
	display: none;
	text-align: justify;
}

.seria__desc h4 {
	font-weight: 600;
	font-size: 17px;
	margin-bottom: 20px;
}

.seria__desc p {
	font-size: 14px;
	line-height: 1.7;
	margin-bottom: 15px;
}

.seria__desc_text {
	font-size: 14px;
	line-height: 1.7;
}

.seria__more-wrp {
	text-align: center;
	margin-bottom: 20px;
}

.seria__more {
	display: inline-block;
	position: relative;
	font-weight: 500;
	font-size: 15px;
	color: var(--gpo-style-color);
	cursor: pointer;
}

.seria__more::after {
	display: inline-block;
	content: '';
	width: 15px;
	height: 15px;
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOSIgaGVpZ2h0PSIxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNOC42NjcgNi45MTVMMS45OTIuMjRhLjgxNS44MTUgMCAwMC0uNTgtLjI0LjgxNS44MTUgMCAwMC0uNTguMjRMLjM0LjczYS44Mi44MiAwIDAwMCAxLjE2bDUuNjA1IDUuNjA2LTUuNjEyIDUuNjExYS44MTUuODE1IDAgMDAtLjI0LjU4YzAgLjIyLjA4Ni40MjYuMjQuNTgxbC40OTIuNDkxYy4xNTQuMTU1LjM2LjI0LjU4LjI0LjIyIDAgLjQyNi0uMDg1LjU4LS4yNGw2LjY4Mi02LjY4YS44MTYuODE2IDAgMDAuMjQtLjU4My44MTUuODE1IDAgMDAtLjI0LS41ODJ6IiBmaWxsPSIjRkRBNDIwIi8+PC9zdmc+");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	vertical-align: middle;
	margin-left: 6px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.seria__body table {
	width: 100%;
	min-width: 298px;
}

.series-block__thead-td {
	text-align: center;
}

.seria__body thead {
	background: #332e2e;
	color: #fff;
}

.seria__body thead tr {
	height: 54px;
}

.seria__body thead tr th {
	font-weight: bold;
	font-size: 14px;
}

.seria__body tbody tr {
	border-bottom: 1px solid #cecece;
	height: 54px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.seria__body tbody tr:last-child {
	border-bottom: none;
}

.seria__body tbody tr td {
	font-size: 15px;
	text-align: center;
	min-width: 60px;
	max-width: 100px;
}

.seria__body-link {
	font-size: 13px;
	font-weight: bold;
	line-height: 1.2;
	/*padding-right: 15px;*/
	position: relative;
	display: block;
}

.seria__body-link::after {
	position: absolute;
	/*right: 0;*/
	top: 50%;
	margin-top: -7px;
	display: inline-block;
	content: '';
	width: 15px;
	height: 15px;
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOSIgaGVpZ2h0PSIxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNOC42NjcgNi45MTVMMS45OTIuMjRhLjgxNS44MTUgMCAwMC0uNTgtLjI0LjgxNS44MTUgMCAwMC0uNTguMjRMLjM0LjczYS44Mi44MiAwIDAwMCAxLjE2bDUuNjA1IDUuNjA2LTUuNjEyIDUuNjExYS44MTUuODE1IDAgMDAtLjI0LjU4YzAgLjIyLjA4Ni40MjYuMjQuNTgxbC40OTIuNDkxYy4xNTQuMTU1LjM2LjI0LjU4LjI0LjIyIDAgLjQyNi0uMDg1LjU4LS4yNGw2LjY4Mi02LjY4YS44MTYuODE2IDAgMDAuMjQtLjU4My44MTUuODE1IDAgMDAtLjI0LS41ODJ6IiBmaWxsPSIjRkRBNDIwIi8+PC9zdmc+");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	vertical-align: middle;
	margin-left: 6px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	margin-right: 5px;
	right: -10px;
}

.seria__body-link:hover::after {
	right: -5px;
}

.seria__price-sale {
	font-weight: bold;
	color: #fe3232;
	position: relative;
	display: inline-block;
}

.seria__price-sale::before {
	content: '%';
	display: inline-block;
	margin-right: 3px;
	top: -6px;
	left: -28px;
	width: 25px;
	height: 25px;
	padding: 3px 4px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: #fff;
	font-size: 18px;
	border-radius: 50%;
	background-color: #fe3232;
}

.seria__order .btn-2 {
	height: 32px;
	font-size: 13px;
	padding: 0 6px;
	width: auto;
	max-width: 100%;
	margin: 0;
	line-height: 100%;
	background-color: var(--gpo-style-color);
	border: 1px solid var(--gpo-style-color);
}

.seria__order .btn-2:hover {
	background-color: transparent;
	color: var(--gpo-style-color);
}

.seria__add .btn-1 {
	height: 32px;
	font-size: 13px;
	padding: 0 6px;
	max-width: 32px;
	margin: 0;
	line-height: 100%;
}

.seria__add .btn-1 svg {
	vertical-align: middle;
}

.seria__add .btn-1 span {
	display: none;
}

.seria__add .btn-1.added {
	background: #2a2423;
	border: 1px solid #2a2423;
	cursor: auto;
	width: 130px;
	color: #fff;
}

.seria__add .btn-1.added:hover {
	color: #fff;
}

.seria__add .btn-1.added:hover svg path {
	fill: #fff !important;
}

.seria__body tbody tr:hover {
	background: #fff9ef;
	-webkit-box-shadow: 0 0 7px rgba(73, 89, 102, 0.19);
	box-shadow: 0 0 7px rgba(73, 89, 102, 0.19);
}


/* ====================== new styles ====================== */
.breadcrums ul li .separator {
	color: var(--gpo-style-color);
	padding-left: 5px;
}

.woocommerce-notices-wrapper .woocommerce-message {
	background-color: var(--gpo-woocommerce-message);
	border-radius: 2px;
	border-left: 8px solid rgba(0, 0, 0, .15);
	color: #fff;
	padding: 15px 20px 15px 50px;
	font-size: 15px;
	margin-bottom: 25px;
	position: relative;
	outline: none !important;
}

.woocommerce-notices-wrapper .woocommerce-message:before {
	content: "\2714";
	display: inline-block;
	position: absolute;
	font-size: 18px;
	left: 15px;
	top: 50%;
	margin-top: -12px;
	color: var(--gpo-woocommerce-message);
	border: 3px solid #fff;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	background: #fff;
	text-align: center;
}

.woocommerce-notices-wrapper .woocommerce-message a {
	float: right;
	color: #fff;
	font-weight: 700;
	transition: 0.3s;
}

.woocommerce-notices-wrapper .woocommerce-message a:hover {
	color: #1b1615;
}

.woocommerce-product-gallery {
	width: 400px;
	max-width: 100%;
	position: relative;
	margin-bottom: 40px;
	display: inline-block;
}

.woocommerce-product-gallery .woocommerce-product-gallery__image img {
	height: auto;
}

.woocommerce-product-gallery .product-card__labels {
	position: absolute;
	z-index: 1;
}

.woocommerce-product-gallery .flex-viewport {
	max-height: 400px;
	background: #ffffff;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
}

.flex-control-nav {
	display: flex;
	flex-wrap: wrap;
	margin: 5px -5px 0;
}

.flex-control-nav li {
	margin: 5px;
	width: calc(100% / 4 - 10px);
}

.flex-control-nav li img {
	max-width: 100%;
	max-height: 100%;
	box-shadow: 0 3px 10px rgb(0 0 0 / 10%);
	border-radius: 4px;
	cursor: pointer;
	height: auto;
}


.section__product_summary {
	margin-bottom: 30px;
}

.section__product_summary .product_summary_wrp {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: flex-start;
}

.section__product_summary .entry-summary {
	display: inline-block;
	vertical-align: top;
	width: 500px;
	max-width: 100%;
}

.section__product_summary .product_title {
	font-weight: 900;
	font-size: 20px;
	line-height: 24px;
	margin-bottom: 20px;
}

.section__product_summary .product_meta {
	margin-bottom: 20px;
}

.section__product_summary .sku_wrapper {
	font-size: 14px;
	margin-bottom: 20px;
	display: block;
}

.section__product_summary .price_prefix {
	font-size: 14px;
	line-height: 30px;
}

.section__product_summary .price {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}

.woocommerce-Price-amount {
	white-space: nowrap;
	font-style: normal;
	font-weight: 600;
	font-size: 22px;
	line-height: 28px;
	margin-left: 10px;
}

del .woocommerce-Price-amount {
	font-weight: 400;
	font-size: 16px;
}

ins .woocommerce-Price-amount {
	color: #fe3232;
}

ins .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
	font-size: 16px;
}

.price del {
	order: 2;
}

.price ins {
	text-decoration: none;
}

.seria__price-sale ins {
	text-decoration: none;
}

.seria__price-sale .woocommerce-Price-amount {
	font-weight: 400;
	font-size: 15px;
	line-height: 1;
	margin-left: 0;
	font-weight: 700;
}

.seria__price .woocommerce-Price-amount {
	font-weight: 400;
	font-size: 15px;
	line-height: 1;
	margin-left: 0;
}

.seria__price-sale del .woocommerce-Price-amount {
	display: none;
}

.product-card__one-click-noprice {
	vertical-align: middle;
	width: 120px;
}


.cart_noprise {
	margin-bottom: 40px;
}

@media only screen and (max-width: 992px) {
	.cart_noprise {
		text-align: center;
	}
}

.cart_noprise .product-card__one-click-noprice {
	margin-left: 0;
}

.product .cart {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
	flex-wrap: wrap;
	gap: 20px;
}

.quantity .minus,
.quantity .plus {
	display: inline-block;
	padding: 0 8px;
	font-weight: 600;
	font-size: 20px;
}

.quantity .minus:hover,
.quantity .plus:hover {
	color: var(--gpo-style-color);
	transition: 0.25s;
}

.cart .quantity {
	display: inline-block;
}

.product .cart .quantity_wrp {
	display: flex;
}

/* Chrome, Safari, Edge, Opera */
.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
.quantity input[type="number"] {
	-moz-appearance: textfield;
}

.quantity .qty {
	display: inline-block;
	background: #ffffff;
	box-shadow: 0 0 9px rgb(0 0 0 / 18%);
	border-radius: 4px;
	border: none;
	font-weight: 600;
	font-size: 15px;
	line-height: 18px;
	color: #010101;
	padding: 0 3px;
	height: 32px;
	width: 32px;
	text-align: center;
	margin: 0 5px;
}

.product-card__attrs {
	margin-bottom: 30px;
}

.product-card__attrs .line {
	border: 1px solid #e3e3e3;
	margin-top: -1px;
	display: flex;
	justify-content: space-between;
	padding: 15px 20px;
	align-items: center;
}

.product-card__attrs .name {
	max-width: 50%;
	font-size: 15px;
}

.product-card__attrs .value {
	text-align: right;
	max-width: 40%;
	font-size: 15px;
}

.product_features {
	display: inline-block;
	max-width: 440px;
	background: #fafafa;
	border-radius: 4px;
	padding: 30px 50px;
	vertical-align: top;
}

.product_features .item {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

.product_features .img {
	min-width: 125px;
}

.product_features .img img {
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
}

.product_features .title {
	font-size: 15px;
	max-width: 200px;
	padding-left: 30px;
	line-height: 1.2;
}

.section_tabs {
	background: #f2f2f2;
	margin-bottom: 45px;
}

.section_tabs .tabs > li {
	display: inline-block;
	margin-right: 50px;
}

.section_tabs .tabs li a {
	display: inline-block;
	font-weight: bold;
	font-size: 15px;
	line-height: 18px;
	padding: 19px 0 15px;
	box-sizing: content-box;
	border-bottom: 4px solid transparent;
	transition: 0.3s;
}

.section_tabs .tabs li a:hover,
.section_tabs .tabs li.active a {
	border-bottom: 4px solid var(--gpo-style-color);
	color: #000;
}

.woocommerce-Tabs-panel {
	margin-bottom: 50px;
	font-size: 14px;
	line-height: 1.5;
	text-align: justify;
}

.woocommerce-Tabs-panel .desc_img {
	text-align: center;
	padding: 20px 0;
}

.woocommerce-Tabs-panel h2 {
	font-weight: bold;
	font-size: 30px;
	line-height: 36px;
	margin-bottom: 35px;
}

.woocommerce-Tabs-panel h2 span {
	padding-bottom: 5px;
	border-bottom: 1px solid var(--gpo-style-color);
}

.woocommerce-Tabs-panel .desc p,
.woocommerce-Tabs-panel .desc ul {
	font-size: 14px;
	line-height: 22px;
	margin-bottom: 20px;
	text-align: justify;
}

.woocommerce-Tabs-panel .desc ul {
	margin-left: 20px;
}

.woocommerce-Tabs-panel .desc ul li {
	padding-left: 18px;
	position: relative;
	margin-bottom: 10px;
}

.woocommerce-Tabs-panel .desc ul li:before {
	position: absolute;
	content: '';
	left: 0;
	top: 8px;
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #4c4c4c;
}

.woocommerce-product-attributes {
	margin: 0 -10px;
	display: flex;
	flex-wrap: wrap;
}

.woocommerce-product-attributes-item {
	border: 1px solid #e3e3e3;
	display: flex;
	justify-content: space-between;
	width: calc(50% - 23px);
	margin: 0 10px 3px;
	text-align: left;
}

.woocommerce-product-attributes-item__label.name {
	max-width: 70%;
	font-size: 15px;
	font-weight: bold;
	padding: 15px 20px;
	line-height: 1.2;
	display: flex;
	align-items: center;
}

.woocommerce-product-attributes-item__label.value {
	width: 180px;
	max-width: 30%;
	font-size: 15px;
	font-weight: bold;
	text-align: center;
	background: #f2f2f2;
	padding: 15px 20px;
	line-height: 1.2;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product_tab_features {
	display: flex;
	gap: 100px;
}

.product_tab_features .item {
	margin-bottom: 50px;
	flex-basis: 50%;
}

.product_tab_features.product_bezopasnost .item{
	flex-basis: 100%;
}

.product_tab_features .top {
	padding: 10px 0;
	display: flex;
	gap: 30px;
	align-items: center;
	margin-bottom: 40px;
}

.product_tab_features .top img {
	box-shadow: 0 3px 10px rgb(0 0 0 / 10%);
	border-radius: 4px;
	width: 125px;
}

.product_tab_features .top p {
	text-align: left;
	margin: 0;
}

.product-card__prices {
	display: flex;
	align-items: center;
}

.product-card__prices .price {
	display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.product-card__add-cart {
	display: inline-flex;
	align-items: center;
}

.product-card__add-cart:not(.ajax_add_to_cart) svg {
	 display: none;
}

.ajax_add_to_cart.added {
	display: none;
}
.seria__add .custom_added_to_cart{
	display: none;
}
.custom_added_to_cart {
	border-radius: 35px;
	padding: 12px 28px;
	max-height: 41px;
	font-weight: bold;
	font-size: 15px;
	overflow: hidden;
	border: 1px solid var(--gpo-style-color);
	background: var(--gpo-style-color);
	color: white;
	vertical-align: middle;
	transition: 0.3s;
	line-height: 1;
}


.ajax_add_to_cart.loading {
	opacity: .6;
}

.ajax_add_to_cart.added + .custom_added_to_cart {
	display: flex;
	align-items: center;
	color: #fff;
	margin: 0 auto;
	cursor: pointer;
}

.products-old {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.woocommerce-ordering {
	margin-bottom: 35px;
	display: flex;
    justify-content: flex-start;
    align-items: center;
}

.woocommerce-ordering select {
	padding: 10px;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	cursor: pointer;
}

.woocommerce-ordering .s-hidden {
	visibility: hidden;
	padding-right: 10px;
}

.woocommerce-ordering .select {
	cursor: pointer;
	display: inline-block;
	position: relative;
	border: 1px solid #e0e0e0;
	box-sizing: border-box;
	border-radius: 10px 10px 0 0;
}

.woocommerce-ordering .styledSelect {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: white;
	padding: 0 10px;
	font-weight: bold;
}

.woocommerce-ordering .styledSelect:after {
	content: "";
	width: 0;
	height: 0;
	border: 5px solid transparent;
	border-color: black transparent transparent transparent;
	position: absolute;
	top: 9px;
	right: 6px;
}

.woocommerce-ordering .styledSelect:active, .styledSelect.active {
	background-color: #eee;
}

.woocommerce-ordering .options {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	z-index: 999;
	margin: 0 0;
	padding: 0 0;
	list-style: none;
	border: 1px solid #ccc;
	background-color: white;
	-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.woocommerce-ordering .options li {
	padding: 0 6px;
	margin: 0 0;
	padding: 0 10px;
}

.woocommerce-ordering .options li:hover {
	background-color: #39f;
	color: white;
}

.title_2 {
	font-weight: 900;
	font-size: 20px;
	line-height: 1.2;
}


.section__about .section__about-short ul {
	margin-bottom: 25px;
	-webkit-columns: 2;
	-moz-columns: 2;
	columns: 2;
}

.section__about .section__about-short ul li {
	font-weight: 300;
	font-size: 13px;
	line-height: 1.5;
	margin-bottom: 5px;
	position: relative;
	padding-left: 28px;
	padding-right: 10px;
}

.section__about .section__about-short ul li:before {
	position: absolute;
	content: '';
	display: block;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background-color: var(--gpo-style-color);
	top: 8px;
	left: 0;
}

.error-page {
	background: linear-gradient(180deg, var(--gpo-style-color) 0%, var(--gpo-woocommerce-message) 100%);
}

.error-page .header {
	text-align: center;
	padding: 70px 0 80px;
	background-image: url("/wp-content/themes/gpo/assets/img/404_bg.png");
	background-size: auto;
	background-repeat: no-repeat;
	background-position: center;
}

.error-page img {
	max-width: 60%;
}

.error-page .title {
	font-weight: 300;
	font-size: 31px;
	line-height: 1.3;
	margin: 40px 10px 25px;
	color: #1b1615;
}

.error-page .error-404__btn {
	padding: 10px 16px;
	display: inline-block;
}


.woocommerce-cart-form__contents thead {
	background: #332e2e;
	color: #fff;
}

.woocommerce-cart-form__contents thead th {
	padding: 19px 5px;
}

.woocommerce-cart-form__cart-item .product-thumbnail img {
	width: auto;
	height: auto;
}

.cart_table {
	max-width: 100%;
}

.cart_table__head {
	background: #332e2e;
	color: #fff;
}

.mobile_item {
	display: none;
}

.cart_table__row {
	display: grid;
	grid-template-columns: 10fr 22fr 18fr 12fr 18fr 8fr;
}

.cart_table__th,
.cart_table__td {
	display: flex;
	align-items: center;
	justify-content: center;
}

.cart_table__td .product-price .woocommerce-Price-amount {
	text-decoration: none;
}

.cart_table__th {
	padding: 18px 5px;
	font-weight: 600;
	line-height: 1.2;
}

.cart_table__td {
	padding: 12px 5px;
	border-right: 1px solid #cecece;
	border-bottom: 1px solid #cecece;
	line-height: 1.3;
}

.cart_table__td:first-child {
	padding: 12px 5px;
	border-left: 1px solid #cecece;
	border-right: none;
}

.cart_table__th.product-name,
.cart_table__td.product-name {
	justify-content: left;
}

.cart_table .product-remove a path {
	transition: 0.25s;
}

.cart_table .product-remove a:hover path {
	fill: var(--gpo-style-color);
}

.cart_table__bottom {
	text-align: right;
	margin-top: 15px;
}

.cart_table__bottom [name="update_cart"] {
	opacity: 0;
	transition: 0s;
}

.cart_table__bottom [name="update_cart"][aria-disabled="false"] {
	opacity: 1;
	transition: 0.3s;
}

.cart_table__td.product-price {
	flex-direction: column-reverse;
}

.cart_table__td del {
	text-decoration-color: #828282;
}

.cart_table__td del .woocommerce-Price-amount {
	font-weight: 400;
	font-size: 16px;
	font-weight: 600;
	font-size: 19px;
	color: #828282;
}

.cart_table__td ins {
	text-decoration: none;
}

.cart_table__td ins .woocommerce-Price-amount::before {
	content: '%';
	display: inline-block;
	margin-right: 3px;
	vertical-align: middle;
	width: 25px;
	height: 25px;
	padding: 0 5px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: #fff;
	font-size: 18px;
	border-radius: 50%;
	background-color: #fe3232;
}

.cart-page .woocommerce-notice--info {
	display: none;
}

.cart-page .woocommerce {
	margin-bottom: 70px;
}

.cart-page .title_2 {
	margin-bottom: 50px;
}

.woocommerce-checkout {
	box-shadow: 0 0 14px rgba(0, 0, 0, 0.25);
	border-radius: 4px;
	padding: 50px;
	display: flex;
	flex-direction: column-reverse;
}

.woocommerce-checkout__wrp {
	display: flex;
	gap: 60px;
}

.col_1 {
	width: 40%;
}

.woocommerce-billing-fields h3 {
	font-weight: bold;
	border-bottom: 2px solid var(--gpo-style-color);
	padding-bottom: 12px;
	margin-bottom: 40px;
}

#customer_details .form-row {
	margin-bottom: 18px;
}

#customer_details label {
	display: block;
	margin-bottom: 5px;
}

#customer_details label abbr {
	text-decoration: none;
	color: #ff0000;
}

#customer_details .input-text {
	border: 1px solid #e0e0e0;
	background-color: transparent;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 10px;
	padding: 15px 10px;
	width: 100%;
	font-size: 15px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

#customer_details .input-text.hide_value {
	color: transparent;
}

#customer_details .woocommerce-invalid .input-text {
	border: 1px solid #ff0000;
}

.woocommerce-error {
	margin-top: 25px;
}

.woocommerce-error li {
	color: #ff0000;
	margin-bottom: 5px;
}

.woocommerce-error li[data-id="shipping_address_1"] {
	display: none;
}

.woocommerce-shipping-totals .title {
	margin-bottom: 20px;
}

.woocommerce-shipping-totals .woocommerce-shipping-destination {
	display: none;
}

.woocommerce-additional-fields .woocommerce-input-wrapper {
	display: block;
}

.woocommerce-additional-fields label {
	margin-bottom: 5px;
	margin-top: 5px;
	display: inline-block;
}

.woocommerce-additional-fields label .optional {
	display: none;
}

.woocommerce-additional-fields textarea {
	border: 1px solid #e0e0e0;
	background-color: transparent;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 10px;
	padding: 15px 10px;
	width: 100%;
	font-size: 15px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	resize: none;
}

.woocommerce-shipping-methods {
	margin-bottom: 30px;
}

.woocommerce-shipping-methods li {
	margin-bottom: 15px;
}

.col_2 {
	width: 60%;
}

.col_2_inner {
	background: #332e2e;
	color: #fff;
	padding: 40px;
}

#order_review_heading {
	font-weight: bold;
	border-bottom: 1px solid #7a7a7a;
	padding-bottom: 12px;
	margin-bottom: 20px;
}

.woocommerce-checkout-review-order-table {
	width: 100%;
}

.woocommerce-checkout-review-order-table thead {
	border-bottom: 1px solid #ffffff;
}

.woocommerce-checkout-review-order-table thead .product-name {
	text-align: left;
}

.woocommerce-checkout-review-order-table thead th {
	padding-bottom: 16px;
}

.woocommerce-checkout-review-order-table thead .product-quantity,
.woocommerce-checkout-review-order-table thead .product-total {
	padding-left: 5px;
	padding-right: 5px;
}

.woocommerce-checkout-review-order-table tbody {
	border-bottom: 1px solid #ffffff;
}

.woocommerce-checkout-review-order-table tbody:before {
	content: '';
	height: 15px;
	display: block;
}

.woocommerce-checkout-review-order-table tbody:after {
	content: '';
	height: 12px;
	display: block;
}

.woocommerce-checkout-review-order-table tbody .woocommerce-Price-amount {
	font-weight: 400;
	font-size: 16px;
}

.woocommerce-checkout-review-order-table tbody td {
	text-align: center;
	padding: 7px 3px;
	min-width: 90px;
	line-height: 1.3;
}

.woocommerce-checkout-review-order-table tbody .product-name {
	text-align: left;
	padding-left: 24px;
	position: relative;
}

.woocommerce-checkout-review-order-table tbody .product-name:before {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -4px;
	border-radius: 50%;
	background-color: var(--gpo-style-color);
}

.woocommerce-checkout-review-order-table tfoot th {
	font-weight: bold;
	font-size: 18px;
	text-align: left;
	padding: 30px 0;
}

.woocommerce-checkout-review-order-table tfoot td {
	text-align: right;
}

.woocommerce-checkout-review-order-table tfoot .woocommerce-Price-amount {
	text-align: right;
	font-weight: 600;
	font-size: 32px;
	color: var(--gpo-style-color);
	white-space: nowrap;
}

.woocommerce-checkout-payment {
	margin-top: 20px;
	text-align: center;
}

.woocommerce-terms-and-conditions-wrapper {
	text-align: left;
}

.payment_methods {
	display: none;
}

.woocommerce-privacy-policy-text {
	font-size: 14px;
	line-height: 1.3;
}

.woocommerce-privacy-policy-text a {
	color: var(--gpo-style-color);
	border-bottom: 1px solid var(--gpo-style-color);
}

.woocommerce-privacy-policy-text a:hover {
	border-bottom: 1px solid transparent;
}

.woocommerce-checkout-review-order button[type="submit"] {
	margin-top: 50px;
	letter-spacing: 1px;
	padding: 0 26px;
}

.ship-to-different-address {
	display: none;
}

.policy_wrp {
	margin-top: 30px;
}

.policy_wrp .wpcf7-list-item-label {
	font-size: 14px;
}

.policy_wrp .wpcf7-list-item-label a {
	color: var(--gpo-style-color);
}

.policy_wrp .wpcf7-list-item-label a:hover {
	color: #fff;
}

.thankyou-page h1 {
	text-align: center;
	margin: 70px 0;
	display: none;
}

.thankyou-page .cart-empty,
.thankyou-page .return-to-shop {
	display: none;
}

.thankyou-page .woocommerce-order {
	box-shadow: 0 0 14px rgb(0 0 0 / 25%);
	border-radius: 4px;
	padding: 50px;
	width: 800px;
	max-width: 100%;
	margin: 80px auto 80px;
}

.thankyou-page .woocommerce-notice {
	text-align: center;
	font-size: 24px;
	margin-bottom: 40px;
}

.thankyou-page .woocommerce-thankyou-order-received {
	color: var(--gpo-style-color);
}

.thankyou-page .order_details {
	margin-bottom: 40px;
	text-align: center;
	width: 100%;
}

.thankyou-page .order_details li {
	margin-bottom: 12px;
	font-size: 15px;
}

.thankyou-page .order_details li strong {
	font-weight: 600;
}

.thankyou-page .woocommerce-order-details__title {
	font-weight: bold;
	border-bottom: 2px solid var(--gpo-style-color);
	padding-bottom: 12px;
}

.thankyou-page .woocommerce-table thead,
.thankyou-page .woocommerce-table tbody {
	border-bottom: 1px solid var(--gpo-style-color);
}

.thankyou-page .woocommerce-table thead th {
	padding: 15px 5px;
	font-weight: 600;
}

.thankyou-page .woocommerce-table thead th.product-total {
	width: 35%;
	min-width: 130px;
}

.thankyou-page .woocommerce-table tbody:before,
.thankyou-page .woocommerce-table tbody:after,
.thankyou-page .woocommerce-table tfoot:before {
	content: '';
	height: 15px;
	display: block;
}

.thankyou-page .woocommerce-table tbody td {
	padding: 15px 5px;
	line-height: 1.3;
}

.thankyou-page .woocommerce-table tbody .woocommerce-Price-amount {
	font-size: 16px;
}

.thankyou-page .woocommerce-table tfoot .cart_subtotal,
.thankyou-page .woocommerce-table tfoot .payment_method {
	display: none;
}

.thankyou-page .woocommerce-table tfoot th {
	padding: 10px 5px;
	font-weight: 600;
	text-align: right;
}

.thankyou-page .woocommerce-table tfoot td {
	padding: 5px 5px;
	line-height: 1.3;
	font-size: 15px;
}

.thankyou-page .woocommerce-table tfoot .woocommerce-Price-amount {
	color: var(--gpo-style-color);
}

.thankyou-page .woocommerce-customer-details {
	display: none;
}


.main_container {
	padding: 20px 0 80px;
}

.main_container h1 {
	margin-bottom: 40px;
}

.main_container p {
	font-weight: 300;
	line-height: 1.5;
	text-align: justify;
	margin-bottom: 25px;
}

.main_container h2 {
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 20px;
	font-size: 20px;
}

.main_container h3 {
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 15px;
	font-size: 18px;
}

/* article page styles: */
.post_container {
	padding: 20px 0 80px;
}

.post_container h1 {
	margin-bottom: 40px;
	color: var(--gpo-style-color);
	text-align: center;
}

.post_container h1 b {
	font-weight: 600;
}

.post_container .entry-content {
	font-weight: 300;
	line-height: 1.5;
	text-align: justify;
}

.post_container p {
	font-weight: 300;
	line-height: 1.5;
	text-align: justify;
	margin-bottom: 25px;
}

.post_container img {
	margin: 0 auto 25px;
	display: block;
}

.post_container h2 {
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 20px;
	font-size: 20px;
}

.post_container h3 {
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 15px;
	font-size: 18px;
}

.post_container h4 {
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 15px;
	font-size: 16px;
}

.post_container ul {
	margin-bottom: 25px;
}

.post_container ul li {
	padding-left: 20px;
	position: relative;
	font-weight: 300;
	line-height: 1.5;
	margin-bottom: 5px;
}

.post_container ul li::before {
	display: inline-block;
	content: '';
	width: 8px;
	height: 8px;
	background-color: var(--gpo-style-color);
	border-radius: 50%;
	position: absolute;
	top: 8px;
	left: 0;
}

.post_container ol {
	list-style: auto;
	margin-bottom: 25px;
	margin-left: 20px;
}

.post_container ol li {
	padding-left: 5px;
	position: relative;
	font-weight: 300;
	line-height: 1.5;
	margin-bottom: 5px;
}

.post_container ol li::marker {
	color: var(--gpo-style-color);
	font-weight: 600;
}


.type-post {
	max-width: 900px;
	margin: 0 auto;
	padding: 50px 50px;
	border-radius: 3px;
	box-shadow: 0 3px 23px rgb(0 0 0 / 18%);
}

.type-post p,
.type-post ul,
.type-post ol {
	margin-bottom: 40px;
}

.type-post h2 {
	font-size: 30px;
	text-align: center;
	margin-bottom: 30px;
}

.type-post h3 {
	font-size: 20px;
	text-align: center;
	margin-bottom: 30px;
}

.type-post h4,
.type-post h5,
.type-post h6 {
	margin-bottom: 30px;
}

.post_container ul li,
.post_container ol li {
	margin-bottom: 10px;
}

/* end. article page styles */

.return-to-shop .btn-1 {
	margin-top: 20px;
	display: inline-block;
	line-height: 39px;
}


.section-page {
	padding-bottom: 40px;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.8;
	text-align: justify;
}

.service_block {
	margin-bottom: 50px;
}

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

.service_block .item .img {
	display: flex;
	width: 125px;
	height: 90px;
	box-shadow: 0 3px 10px rgb(0 0 0 / 10%);
	border-radius: 4px;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	flex: none;
}

.service_block .item .text {
	text-align: left;
}

.service_1 {
	display: flex;
	gap: 30px;
}

.service_3 {
	box-shadow: 0 3px 10px rgb(0 0 0 / 10%);
	border-radius: 4px;
	padding: 25px;
	display: flex;
	gap: 60px;
	align-items: center;
}

.service_3 .list {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.service_3 .item .img {
	height: 105px;
}

.service_3 .item .text {
	font-weight: 500;
	text-align: left;
	max-width: 400px;
}


.paid_block {
	margin-bottom: 50px;
}

.paid_block .item {
	text-align: center;
}

.paid_block .item .img {
	display: flex;
	width: 103px;
	height: 88px;
	box-shadow: 0 3px 10px rgb(0 0 0 / 10%);
	border-radius: 4px;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	flex: none;
}

.paid_1 {
	display: flex;
	gap: 30px;
	margin-bottom: 0;
}

.paid_1 .text p:first-child {
	margin-bottom: 30px;
}

.paid_1 .img {
	width: 50%;
	flex: none;
	position: relative;
	top: -40px;
	text-align: center;
}

.paid_2 {
	display: flex;
	gap: 34px;
}

.paid_2 .inner {
	box-shadow: 0 3px 10px rgb(0 0 0 / 10%);
	border-radius: 4px;
	flex: 4;
}

.paid_2 .inner:first-child {
	flex: 3;
}

.paid_2 .inner .top {
	background: var(--gpo-style-color);
	font-weight: bold;
	font-size: 16px;
	color: #fff;
	text-align: center;
	padding: 13px 5px;
	line-height: 1.3;
}

.paid_2 .inner .list {
	display: flex;
	justify-content: space-around;
	gap: 25px;
	padding: 50px 20px 30px;
}

.paid_2 .inner .item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	flex: 1;
}

.paid_2 .inner .text {
	font-weight: bold;
	font-size: 14px;
	text-align: center;
	line-height: 1.4;
}

.paid_3 {
	margin-bottom: 40px;
}

.paid_3 h2 {
	font-weight: bold;
	font-size: 30px;
	border-bottom: 1px solid var(--gpo-style-color);
	display: inline-block;
	line-height: 1.3;
	padding-bottom: 3px;
}

.paid_4 {
	display: flex;
	justify-content: space-around;
	gap: 30px;
	padding-bottom: 30px;
}

.paid_4 .item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	flex: 1;
	max-width: 360px;
	font-weight: 400;
	line-height: 1.4;
}

.paid_4 .text {
	text-align: center;
}

.paid_5 {
	box-shadow: 0 3px 10px rgb(0 0 0 / 10%);
	border-radius: 4px;
	padding: 30px;
	display: flex;
	align-items: center;
}

.paid_5 button {
	margin: 0 8px;
}

.contact_block {
	display: flex;
	gap: 30px;
}

.contact_1 {
	box-shadow: 0 3px 10px rgb(0 0 0 / 10%);
	border-radius: 4px;
	padding: 45px;
}

.contact_1 .item {
	position: relative;
	margin-bottom: 30px;
}

.contact_1 .item:last-child {
	margin-bottom: 0;
}

.contact_1 .title {
	font-weight: 900;
	font-size: 17px;
	color: #020202;
	margin-bottom: 5px;
}

.contact_1 .text {
	text-align: left;
}

.contact_1 .item br {
	display: none;
}

.contact_1 .text svg {
	display: inline-block;
	vertical-align: middle;
}

.contact_1 .text a {
	font-size: 15px;
	display: inline-block;
	vertical-align: middle;
}

.contact_1 .text p {
	font-size: 15px;
}

.contact_1 .text span {
	font-size: 15px;
	padding-left: 10px;
}

.contact_1 .text span br {
	display: none;
}

.contact_2 {
	background: #fafafa;
	border-radius: 4px;
	padding: 45px;
}

.contact_2 .title_1 {
	font-weight: 900;
	font-size: 30px;
	color: #020202;
	margin-bottom: 20px;
}

.grecaptcha-badge {
	display: none;
}

.wishlist_page {
	display: flex;
	justify-content: flex-start;
	gap: 24px;
	flex-wrap: wrap;
}

.hidden {
	display: none;
}

/* Sales modal */
.modal__sales {
	width: 552px;
	padding: 0 !important;
	background: none;
}

.modal__sales_body {
	display: flex;
}

/* Comments reviews */
.section__reviews-slider {
	gap: 24px;
}

.section__reviews-slider .slick-track {
	padding-bottom: 10px;
	margin-bottom: 30px;
}

.comment-form-url {
	display: none;
}

.section__reviews-slider.slider-1 .slide {
	margin-bottom: 0;
}

.section__reviews-slider.slider-1 .slider-arrow {
	top: -50px;
}

.review-card__blockquote .description {
	max-height: 420px;
	overflow-y: auto;
}

.comment-notes {
	font-size: 14px;
	text-align: center;
	line-height: 1.2;
}

.comment-form-cookies-consent {
	display: none;
}


.comment-form .input_error {
	font-size: 14px;
	color: #dc3232;
}

.comment-form-cookies-consent {
	margin-top: 10px;
	margin-bottom: 10px;
}

.comment-form-cookies-accept {
	margin-top: 15px;
	margin-bottom: 25px;
}

.comment-form-submit {
	padding: 0 !important;
	text-align: center !important;
}

.woocommerce-Reviews .modal .title_1 {
	margin-bottom: 10px;
}

#email-notes {
	color: #727272;
	font-size: 13px;
	display: none;
}

.comment-form-rating {
	margin-top: 15px;
	display: flex;
	align-items: center;
}

.comment-form-rating label {
	margin-right: 10px;
	color: #727272;
}

.stars {
	display: inline-block;
	vertical-align: middle;
}

.stars > span {
	display: flex;
}

.stars a {
	width: 24px;
	height: 21px;
	color: transparent;
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkiIGhlaWdodD0iMTkiIHZpZXdCb3g9IjAgMCAxNSAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGQ9Ik0xNC45NjA5IDUuNzUzODZDMTQuODYyNyA1LjQ1MDEyIDE0LjU5MzMgNS4yMzQzOSAxNC4yNzQ2IDUuMjA1NjdMOS45NDUxNyA0LjgxMjU1TDguMjMzMiAwLjgwNTUzMkM4LjEwNjk3IDAuNTExODY5IDcuODE5NDkgMC4zMjE3NzcgNy41MDAwOCAwLjMyMTc3N0M3LjE4MDY2IDAuMzIxNzc3IDYuODkzMTggMC41MTE4NjkgNi43NjY5NSAwLjgwNjIxOEw1LjA1NDk4IDQuODEyNTVMMC43MjQ4ODUgNS4yMDU2N0MwLjQwNjczMiA1LjIzNTA4IDAuMTM4MDE3IDUuNDUwMTIgMC4wMzkyNTI0IDUuNzUzODZDLTAuMDU5NTEyNyA2LjA1NzU5IDAuMDMxNjk5MSA2LjM5MDc0IDAuMjcyMzc0IDYuNjAwNzRMMy41NDQ5IDkuNDcwNzZMMi41Nzk5MSAxMy43MjE2QzIuNTA5MjkgMTQuMDM0MSAyLjYzMDYgMTQuMzU3MiAyLjg4OTkzIDE0LjU0NDZDMy4wMjkzMyAxNC42NDUzIDMuMTkyNDEgMTQuNjk2NiAzLjM1Njg3IDE0LjY5NjZDMy40OTg2NiAxNC42OTY2IDMuNjM5MzEgMTQuNjU4NCAzLjc2NTU0IDE0LjU4MjlMNy41MDAwOCAxMi4zNTA5TDExLjIzMzIgMTQuNTgyOUMxMS41MDY0IDE0Ljc0NzIgMTEuODUwOCAxNC43MzIyIDEyLjEwOTUgMTQuNTQ0NkMxMi4zNjkgMTQuMzU2NiAxMi40OTAyIDE0LjAzMzQgMTIuNDE5NiAxMy43MjE2TDExLjQ1NDYgOS40NzA3NkwxNC43MjcxIDYuNjAxMzFDMTQuOTY3OCA2LjM5MDc0IDE1LjA1OTcgNi4wNTgxNiAxNC45NjA5IDUuNzUzODZaIiBmaWxsPSIjQUZBRkFGIi8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDAiPgo8cmVjdCB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==");
	background-position: center;
	background-size: auto;
	background-repeat: no-repeat;
}

.stars.selected a,
.stars:hover a,
.stars.selected:hover a[class^='star-'] {
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkiIGhlaWdodD0iMTkiIHZpZXdCb3g9IjAgMCAxNSAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGQ9Ik0xNC45NjA5IDUuNzUzODZDMTQuODYyNyA1LjQ1MDEyIDE0LjU5MzMgNS4yMzQzOSAxNC4yNzQ2IDUuMjA1NjdMOS45NDUxNyA0LjgxMjU1TDguMjMzMiAwLjgwNTUzMkM4LjEwNjk3IDAuNTExODY5IDcuODE5NDkgMC4zMjE3NzcgNy41MDAwOCAwLjMyMTc3N0M3LjE4MDY2IDAuMzIxNzc3IDYuODkzMTggMC41MTE4NjkgNi43NjY5NSAwLjgwNjIxOEw1LjA1NDk4IDQuODEyNTVMMC43MjQ4ODUgNS4yMDU2N0MwLjQwNjczMiA1LjIzNTA4IDAuMTM4MDE3IDUuNDUwMTIgMC4wMzkyNTI0IDUuNzUzODZDLTAuMDU5NTEyNyA2LjA1NzU5IDAuMDMxNjk5MSA2LjM5MDc0IDAuMjcyMzc0IDYuNjAwNzRMMy41NDQ5IDkuNDcwNzZMMi41Nzk5MSAxMy43MjE2QzIuNTA5MjkgMTQuMDM0MSAyLjYzMDYgMTQuMzU3MiAyLjg4OTkzIDE0LjU0NDZDMy4wMjkzMyAxNC42NDUzIDMuMTkyNDEgMTQuNjk2NiAzLjM1Njg3IDE0LjY5NjZDMy40OTg2NiAxNC42OTY2IDMuNjM5MzEgMTQuNjU4NCAzLjc2NTU0IDE0LjU4MjlMNy41MDAwOCAxMi4zNTA5TDExLjIzMzIgMTQuNTgyOUMxMS41MDY0IDE0Ljc0NzIgMTEuODUwOCAxNC43MzIyIDEyLjEwOTUgMTQuNTQ0NkMxMi4zNjkgMTQuMzU2NiAxMi40OTAyIDE0LjAzMzQgMTIuNDE5NiAxMy43MjE2TDExLjQ1NDYgOS40NzA3NkwxNC43MjcxIDYuNjAxMzFDMTQuOTY3OCA2LjM5MDc0IDE1LjA1OTcgNi4wNTgxNiAxNC45NjA5IDUuNzUzODZaIiBmaWxsPSIjRkRBNDIwIi8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDAiPgo8cmVjdCB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==");
}

.stars.selected a.active ~ a,
.stars a:hover ~ a,
.stars.selected a:hover ~ a[class^='star-'] {
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkiIGhlaWdodD0iMTkiIHZpZXdCb3g9IjAgMCAxNSAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGQ9Ik0xNC45NjA5IDUuNzUzODZDMTQuODYyNyA1LjQ1MDEyIDE0LjU5MzMgNS4yMzQzOSAxNC4yNzQ2IDUuMjA1NjdMOS45NDUxNyA0LjgxMjU1TDguMjMzMiAwLjgwNTUzMkM4LjEwNjk3IDAuNTExODY5IDcuODE5NDkgMC4zMjE3NzcgNy41MDAwOCAwLjMyMTc3N0M3LjE4MDY2IDAuMzIxNzc3IDYuODkzMTggMC41MTE4NjkgNi43NjY5NSAwLjgwNjIxOEw1LjA1NDk4IDQuODEyNTVMMC43MjQ4ODUgNS4yMDU2N0MwLjQwNjczMiA1LjIzNTA4IDAuMTM4MDE3IDUuNDUwMTIgMC4wMzkyNTI0IDUuNzUzODZDLTAuMDU5NTEyNyA2LjA1NzU5IDAuMDMxNjk5MSA2LjM5MDc0IDAuMjcyMzc0IDYuNjAwNzRMMy41NDQ5IDkuNDcwNzZMMi41Nzk5MSAxMy43MjE2QzIuNTA5MjkgMTQuMDM0MSAyLjYzMDYgMTQuMzU3MiAyLjg4OTkzIDE0LjU0NDZDMy4wMjkzMyAxNC42NDUzIDMuMTkyNDEgMTQuNjk2NiAzLjM1Njg3IDE0LjY5NjZDMy40OTg2NiAxNC42OTY2IDMuNjM5MzEgMTQuNjU4NCAzLjc2NTU0IDE0LjU4MjlMNy41MDAwOCAxMi4zNTA5TDExLjIzMzIgMTQuNTgyOUMxMS41MDY0IDE0Ljc0NzIgMTEuODUwOCAxNC43MzIyIDEyLjEwOTUgMTQuNTQ0NkMxMi4zNjkgMTQuMzU2NiAxMi40OTAyIDE0LjAzMzQgMTIuNDE5NiAxMy43MjE2TDExLjQ1NDYgOS40NzA3NkwxNC43MjcxIDYuNjAxMzFDMTQuOTY3OCA2LjM5MDc0IDE1LjA1OTcgNi4wNTgxNiAxNC45NjA5IDUuNzUzODZaIiBmaWxsPSIjQUZBRkFGIi8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDAiPgo8cmVjdCB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==");
}

.comment-form .form-submit:disabled {
	cursor: not-allowed;
}

.comment-form-submit > span {
	position: relative;
}

.comment-form .ajax-loader {
	visibility: hidden;
	display: inline-block;
	background-color: #23282d;
	opacity: 0.75;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 100%;
	padding: 0;
	margin: 0 24px;
	position: relative;
}

.comment-form .ajax-loader {
	background-color: transparent;
	opacity: 1;
	margin: 8px 0 0;
	position: absolute;
	right: 5px;
}

.comment-form .ajax-loader::before {
	content: '';
	position: absolute;
	background-color: #fbfbfc;
	top: 4px;
	left: 4px;
	width: 6px;
	height: 6px;
	border: none;
	border-radius: 100%;
	transform-origin: 8px 8px;
	animation-name: spin;
	animation-duration: 1000ms;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.comment-form .ajax-loader::before {
	background-color: var(--gpo-style-color);
}

.comment-form.submitting .ajax-loader {
	visibility: visible;
}

.woocommerce-product-gallery .product-card__rating {
	position: absolute;
	z-index: 1;
	right: 18px;
	top: 14px;
}

.section__reviews .review-card__add {
	display: none;
}

.section__blog-slider:not(.slick-slider) {
	justify-content: flex-start;
	gap: 42px;
}


.blog-page {
	margin-bottom: 60px;
}

.blog-page .slider-1 {
	margin: 0;
}

.blog-page .slider-1 .slide {
	margin-bottom: 0;
	padding: 0;
	max-width: 100%;
}

.posts-navigation {
	text-align: center;
}

.posts-navigation .screen-reader-text {
	display: none;
}

.product-card__stock {
    display: flex;
	gap: 10px 20px;
    flex-wrap: wrap;
    align-items: center;
}

/* compare styles: */
.product-card__in-stock,
.product-card__in-order {
	display: inline-block;
}

.product-page__compare {
	display: inline-block;
	margin-right: 10px;
}

.product-page__compare .br_compare_button {
	padding: 0;
	display: inline-block;
}

.product-page__compare .br_compare_button.br_compare_added path {
	fill: var(--gpo-style-color);
}

.product-page__compare .br_compare_button span {
	transition: 0.25s;
}

.product-page__compare .br_compare_button.br_compare_added span,
.product-page__compare .br_compare_button:hover span {
	color: var(--gpo-style-color);
}

.product-page__compare .br_compare_button:hover {
	background-color: transparent;
}

.product-page__compare .br_compare_button i {
	vertical-align: middle;
}

.product-card__add-compare .br_compare_button:hover {
	background-color: transparent;
}

.product-card__add-compare .br_compare_button {
	padding: 0;
	display: inline-block;
}

.product-card__add-compare .br_compare_button.br_compare_added path {
	fill: var(--gpo-style-color);
}

.br_new_compare_block_wrap {
	margin: 20px 0 40px;
}

.br_show_compare_dif {
	text-align: left;
	line-height: 1.2;
	font-weight: 500;
	font-size: 15px;
}

.br_top_table:has(tbody tr th:only-of-type) .br_show_compare_dif {
	display: none;
}

.br_new_compare_block .btn-1 {
	border: 1px solid var(--gpo-style-color) !important;
	margin-bottom: 10px;
}

.br_compare_product_action.seria__add a {
    margin-bottom: 15px !important;
}

.custom_added_to_cart.added {
    border: none !important;
}
/* end. compare styles */

/* New category styles */
.category-products {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
}

.category-products .product-card {
	width: 340px;
	max-width: 100%;
}

/* end. New category styles */


@media (min-width: 992px) {
	.section__catalog-card.section__catalog-3.last_49:nth-child(4),
	.section__catalog-card.section__catalog-3.last_49:nth-child(5) {
		width: 49%;
		background-size: 40%;
		background-position-y: center;
		background-position-x: right;
	}
	.tabs.wc-tabs{
		display: flex;
	}
	.section_tabs .tabs > li{
		display: inline-flex;
	}
	.reviews_tab{
		order: 8;
	}

	.static-page .section__consult{
		margin: 100px 0 55px;
	}
}

/* ====================== Desctop First ====================== */
@media only screen and (max-width: 1439px) {

	.slider-1:not(.slick-slider) {
		justify-content: center;
	}
}

@media only screen and (max-width: 1400px) {

	.section__product_summary .product_summary_wrp {
		justify-content: flex-start;
		gap: 50px;
	}

	.product_features_block {
		margin-bottom: 50px;
	}

	.product_features_block .product_features {
		width: 100%;
		max-width: 100%;
		display: flex;
		justify-content: space-around;
		gap: 30px;
		padding: 30px 10px;
	}

	.product_features_block .product_features .item {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}

	.product_features_block .product_features .title {
		padding-left: 0;
		text-align: center;
	}
}

@media only screen and (max-width: 992px) {

	.service_3 {
		gap: 40px;
		flex-direction: column;
	}

	.static-page .title_1 {
		text-align: left;
	}

	.static-page .section__consult-content .title_1 {
		text-align: center;
	}

	.paid_1 {
		gap: 0;
		flex-direction: column;
		margin-bottom: 30px;
	}

	.paid_1 .img {
		width: 100%;
		top: 0;
		text-align: center;
	}

	.paid_2 {
		gap: 24px;
		flex-direction: column;
	}

	.contact_2 .title_1 {
		font-size: 24px;
		text-align: center;
	}

	.title_1{
		font-size: 26px;
	}

	.contact_block {
		justify-content: center;
	}

	.contact_1,
	.contact_2 {
		padding: 30px 20px;
	}

	.section__features-item .section__features-icon {
		width: 80px;
		height: 80px;
	}

	.section__about-more .flex {
		gap: 20px;
	}

	.section__about-more .item_card {
		padding: 30px 20px;
	}

}


@media only screen and (max-width: 900px) {

	.type-post {
		padding: 40px 15px;
	}
}


@media only screen and (max-width: 991px) {

	.hide_mobile {
		display: none;
	}

	.category_content .scopes {
		display: none;
	}

	.cart_table__td .quantity_wrp {
		min-width: 105px;
	}

	.woocommerce-checkout {
		padding: 20px;
	}

	.woocommerce-checkout__wrp {
		gap: 20px;
	}

	.col_2_inner {
		padding: 20px;
	}

	.section__product_summary {
		margin-bottom: 40px;
	}

	.section__product_summary .product_summary_wrp {
		flex-direction: column;
		align-items: center;
		gap: 0;
		border: 1px solid #ececec;
		box-sizing: border-box;
		border-radius: 4px;
		padding: 15px 10px;
		margin-top: 15px;
	}

	.section__product_summary .product_title {
		margin-bottom: 10px;
		text-align: center;
	}

	.section__product_summary .sku_wrapper {
		margin-bottom: 30px;
	}

	.product-card__attrs {
		margin-bottom: 0;
	}

	.product_features_block .product_features {
		flex-wrap: wrap;
	}

	.product_features_block .product_features .item {
		flex: calc(50% - 20px);
	}

	.wishlist_page {
		justify-content: center;
	}
}

@media only screen and (max-width: 768px) {

	.thankyou-page .woocommerce-order {
		margin: 50px auto 50px;
		padding: 30px 15px 20px;
	}

	.main_container {
		padding: 30px 0 40px;
	}

	.service_1 {
		flex-direction: column;
	}

	.paid_2 .inner .top {
		font-size: 14px;
	}

	.paid_block {
		font-size: 14px;
	}

	.paid_2 .inner .list {
		flex-wrap: wrap;
	}

	.paid_2 .inner .item {
		max-width: 250px;
		gap: 15px;
	}

	.paid_2 .inner:nth-child(2) .item {
		flex-basis: calc(100% / 2 - 13px);
	}

	.paid_4 {
		padding-bottom: 0;
	}

	.paid_5 {
		text-align: center;
		margin-bottom: 10px;
		font-weight: 300;
		line-height: 1.5;
	}

	.paid_5 span {
		display: block;
		font-weight: 400;
	}

	.paid_5 button {
		margin: 0 10px;
	}

	.contact_block {
		justify-content: center;
	}

	.contact_block {
		flex-direction: column;
		align-items: center;
	}

	.contact_1 .list {
		max-width: 360px;
		margin: 0 auto;
	}

	.contact_1, .contact_2 {
		width: 500px;
		max-width: 100%;
	}

	.section__about-more > .flex {
		flex-direction: column;
	}

	.woocommerce-Price-amount {
		font-style: 20px;
	}

	.woocommerce-checkout__wrp {
		flex-direction: column;
	}

	.woocommerce-checkout__wrp .col_1,
	.woocommerce-checkout__wrp .col_2 {
		width: 100%;
	}

	.woocommerce-checkout {
		padding: 30px;
		max-width: 600px;
		margin: 0 auto;
	}

	.cart-page .title_2 {
		text-align: center;
	}

	.cart-page .woocommerce {
		margin-bottom: 20px;
	}

	.woocommerce-product-attributes {
		margin: 0;
	}

	.woocommerce-product-attributes-item {
		width: 100%;
		margin: 0 0 3px;
	}

	.product_tab_features {
		gap: 0;
		flex-direction: column;
	}

	.product_tab_features .item {
		margin-bottom: 10px;
	}

	.product_tab_features .top {
		margin-bottom: 20px;
	}

	.section_tabs {
		background: none;
	}

	.section_tabs .tabs > li {
		margin-right: 0;
		display: block;
		margin-bottom: 2px;
		background: #f2f2f2;
	}

	.section_tabs .tabs > li a {
		display: block;
		padding: 16px 15px 12px;
		position: relative;
	}

	.section_tabs .tabs > li a:hover,
	.section_tabs .tabs > li.active a {
		border-bottom: 4px solid transparent;
	}

	.section_tabs .tabs > li a:after {
		content: '';
		display: inline-block;
		width: 15px;
		height: 15px;
		position: absolute;
		top: 50%;
		margin-top: -7px;
		right: 20px;
		background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNSAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGQ9Ik0xMS42NjY5IDYuOTE0N0w0Ljk5MTY2IDAuMjM5NjMyQzQuODM3MjcgMC4wODUxMjEzIDQuNjMxMTggMCA0LjQxMTQyIDBDNC4xOTE2NyAwIDMuOTg1NTcgMC4wODUxMjEzIDMuODMxMTggMC4yMzk2MzJMMy4zMzk2IDAuNzMxMDkyQzMuMDE5NzMgMS4wNTEzMyAzLjAxOTczIDEuNTcxODIgMy4zMzk2IDEuODkxNTdMOC45NDQ5MiA3LjQ5Njg5TDMuMzMzMzggMTMuMTA4NEMzLjE3ODk5IDEzLjI2MjkgMy4wOTM3NSAxMy40Njg5IDMuMDkzNzUgMTMuNjg4NUMzLjA5Mzc1IDEzLjkwODQgMy4xNzg5OSAxNC4xMTQ0IDMuMzMzMzggMTQuMjY5TDMuODI0OTYgMTQuNzYwNEMzLjk3OTQ3IDE0LjkxNDkgNC4xODU0NSAxNSA0LjQwNTIgMTVDNC42MjQ5NiAxNSA0LjgzMTA1IDE0LjkxNDkgNC45ODU0NCAxNC43NjA0TDExLjY2NjkgOC4wNzkyQzExLjgyMTYgNy45MjQyIDExLjkwNjYgNy43MTcyNSAxMS45MDYxIDcuNDk3MjZDMTEuOTA2NiA3LjI3NjQgMTEuODIxNiA3LjA2OTU4IDExLjY2NjkgNi45MTQ3WiIgZmlsbD0iIzAyMDIwMiIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwIj4KPHJlY3Qgd2lkdGg9IjE1IiBoZWlnaHQ9IjE1IiBmaWxsPSJ3aGl0ZSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=");
		background-position: center;
		background-size: auto;
		background-repeat: no-repeat;
	}

	.section_tabs .tabs > li a:hover:after,
	.section_tabs .tabs > li.active a:after {
		background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 15 15' fill='none'%3e%3cg clip-path='url(%23clip0)'%3e%3cpath d='M8.0853 11.6669L14.7604 4.99166C14.9149 4.83727 15 4.63118 15 4.41142C15 4.19167 14.9149 3.98557 14.7604 3.83118L14.2689 3.3396C13.9487 3.01973 13.4282 3.01973 13.1084 3.3396L7.50311 8.94492L1.89157 3.33338C1.73706 3.17899 1.53109 3.09375 1.31145 3.09375C1.09158 3.09375 0.885603 3.17899 0.730969 3.33338L0.239633 3.82496C0.0851211 3.97947 9.05955e-07 4.18545 8.96349e-07 4.4052C8.86743e-07 4.62496 0.0851211 4.83105 0.239633 4.98544L6.9208 11.6669C7.0758 11.8216 7.28275 11.9066 7.50274 11.9061C7.7236 11.9066 7.93042 11.8216 8.0853 11.6669Z' fill='%2319929B'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0'%3e%3crect width='15' height='15' fill='white' transform='translate(15) rotate(90)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
	}

	.woocommerce-Tabs-panel {
		margin-bottom: 20px;
		margin-top: 20px;
	}

	.woocommerce-Tabs-panel h2 {
		font-size: 22px;
	}

	.blog-page .slider-1:not(.slick-slider) {
		gap: 24px;
	}
}


@media only screen and (max-width: 767px) {

	.seria__img {
		max-width: 200px;
		margin: 0 auto;
	}

	.cart_table__head {
		display: none;
	}

	.cart_table__row {
		display: block;
		position: relative;
	}

	.cart_table__td {
		border: none;
		display: block;
		padding: 0;
	}

	.woocommerce-cart-form__cart-item .product-name {
		padding-left: 10px;
		font-size: 14px;
	}

	.woocommerce-cart-form__cart-item .product-price,
	.woocommerce-cart-form__cart-item .product-quantity,
	.woocommerce-cart-form__cart-item .product-subtotal {
		position: relative;
		padding-left: 35%;
		padding-top: 6px;
		padding-bottom: 6px;
	}

	.cart_table__td:first-child {
		border: 1px solid #cecece;
		justify-content: space-evenly;
		padding: 5px 5px;
		display: flex;
		padding-right: 40px;
	}

	.woocommerce-cart-form__cart-item {
		margin-bottom: 10px;
	}

	.woocommerce-cart-form__cart-item .product-thumbnail img {
		width: 110px;
	}

	.woocommerce-cart-form__cart-item .product-price,
	.woocommerce-cart-form__cart-item .product-quantity,
	.woocommerce-cart-form__cart-item .product-subtotal {
		border-left: 1px solid #cecece;
		border-right: 1px solid #cecece;
		border-bottom: 1px solid #cecece;
	}

	.woocommerce-cart-form__cart-item .product-remove {
		position: absolute;
		top: 15%;
		right: 10px;
		padding: 0;
	}

	.woocommerce-cart-form__cart-item .woocommerce-Price-amount {
		font-size: 19px;
	}

	.mobile_item {
		display: flex;
		border-right: 1px solid #cecece;
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		width: 35%;
		min-width: 100px;
		padding-left: 10px;
		font-size: 14px;
		font-weight: 600;
		align-items: center;
	}

	.woocommerce-checkout-review-order-table tfoot th {
		font-size: 16px;
	}

	.woocommerce-checkout-review-order-table tfoot .woocommerce-Price-amount {
		font-size: 28px;
	}

	.woocommerce-privacy-policy-text {
		font-size: 13px;
		text-align: justify;
	}

	.woocommerce-checkout-review-order-table thead th,
	.woocommerce-checkout-review-order-table tbody .product-name,
	.woocommerce-checkout-review-order-table tbody .product-quantity,
	.woocommerce-checkout-review-order-table tbody .product-total {
		font-size: 14px;
		font-weight: 400;
	}

}


@media only screen and (max-width: 480px) {

	.error-page .header {
		padding: 50px 0 60px;
	}

	.error-page .title {
		font-size: 24px;
	}

	.thankyou-page .woocommerce-table tfoot .woocommerce-Price-amount {
		font-size: 20px;
	}

	.section-page {
		font-size: 14px;
	}

	.service_block {
		margin-bottom: 30px;
	}

	.service_block .item {
		gap: 18px;
	}

	.service_block .item .img {
		width: 96px;
		height: 69px;
	}

	.service_block .item .img img {
		width: 50%;
	}

	.service_3 .item .img {
		width: 83px;
		height: 71px;
	}

	.service_3 .list {
		gap: 20px;
	}

	.service_3 {
		padding: 15px;
	}

	.paid_block .item .img {
		width: 82px;
		height: 70px;
	}

	.paid_block .item .img img {
		width: 50%;
	}

	.paid_4 {
		flex-direction: column;
	}

	.paid_4 .item {
		max-width: 100%;
		flex-direction: row;
		text-align: left;
	}

	.seria__body thead tr th,
	.seria__body tbody tr td,
	.seria__price .woocommerce-Price-amount,
	.seria__price-sale .woocommerce-Price-amount,
	.seria .quantity .qty {
		font-size: 13px;
	}

	.quantity .minus, .quantity .plus {
		vertical-align: middle;
	}

	.seria__price-sale::before {
		font-size: 13px;
		width: 19px;
		height: 19px;
		display: block;
		margin: 0 auto;
	}

	.woocommerce-ordering {
		font-size: 14px;
	}

	.thankyou-page .woocommerce-notice {
		font-size: 20px;
	}

	.thankyou-page .woocommerce-table tbody td {
		font-size: 14px;
		padding: 8px 5px;
	}

	.thankyou-page .woocommerce-table tfoot td {
		font-size: 14px;
	}

	.woocommerce-product-attributes-item__label.name {
		max-width: 65%;
		padding: 10px 10px;
		font-size: 14px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.woocommerce-product-attributes-item__label.value {
		max-width: 35%;
		padding: 10px 5px;
		font-size: 14px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.product .cart {
		gap: 5px;
		justify-content: space-between;
	}

	/* article page styles: */
	.post_container {
		padding: 10px 0 40px;
	}

	.post_container p {
		font-size: 14px;
	}

	.post_container h1 {
		margin-bottom: 25px;
	}

	.post_container h2 {
		font-size: 18px;
	}

	.post_container h3 {
		font-size: 16px;
	}

	.post_container ul li {
		font-size: 14px;
	}


	.type-post p,
	.type-post ul,
	.type-post ol {
		font-size: 14px;
		margin-bottom: 25px;
	}

	.type-post h2 {
		font-size: 24px;
		margin-bottom: 25px;
	}

	.type-post h3 {
		font-size: 16px;
		margin-bottom: 25px;
	}

	.type-post h4,
	.type-post h5,
	.type-post h6 {
		margin-bottom: 25px;
	}

	/* end. article page styles */
}

@media only screen and (max-width: 450px) {

	.category_content .cat_description {
		margin-bottom: 20px;
	}

	.thankyou-page .woocommerce-order {
		padding: 30px 10px 20px;
	}

	.woocommerce-checkout {
		padding: 10px;
		min-width: 355px;
	}

	.woocommerce-checkout__wrp .col_2 {
		overflow: hidden;
	}

	.col_2_inner {
		padding: 20px 10px;
		min-width: 335px;
	}

	.product .cart {
		flex-wrap: wrap;
		gap: 15px;
		justify-content: center;
	}

	.entry-summary .cart .quantity {
		display: flex;
		flex-basis: 100%;
		justify-content: center;
	}
}

@media only screen and (max-width: 375px) {

	.section__product_summary .product_meta {
		text-align: center;
	}

	.section__product_summary .price {
		justify-content: center;
	}
}

@media only screen and (max-width: 374px) {

	.section__about-more .item_card {
		padding: 20px 10px;
	}

	.section__about-more .flex {
		gap: 5px;
		flex-direction: column;
		align-items: center;
		margin-bottom: 20px;
	}

	.section__about-more .item_card .flex .item {
		width: auto;
	}
}


/*  ===========================================================
    Media
    @mixin ========================================================== */
/* ====================== Mobile First ====================== */
@media only screen and (min-width: 375px) {
	.header__info-block {
		padding-left: 20px;
	}

	.header__logo,
	.footer__top .footer__logo a {
		max-width: 120px;
	}

	.logo__city {
		font-size: 10px;
	}

	.header__phone {
		font-size: 15px;
	}

	.header__top-menu_block {
		margin-left: 25px;
	}

	.section__features-wrp {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.section__features-item {
		width: calc(50% - 10px);
	}

	.btn-1, .btn-2 {
		padding: 0 16px;
	}

	.product-card__labels {
		left: 18px;
	}

	.product-card__body {
		padding: 15px 18px;
	}

	.product-card__bottom {
		padding: 20px 18px 22px;
	}

	.seria__add .btn-1 {
		padding: 0 6px;
	}

	.seria__order .btn-1 {
		padding: 0 6px;
	}
}

@media (min-width: 480px) {
	.header__logo,
	.footer__top .footer__logo a {
		max-width: 150px;
	}

	.logo__city {
		font-size: 12px;
	}

	.header__top-menu_block {
		margin-left: 28px;
	}

	.header__mobmenu {
		padding: 40px;
	}

	.header__search .header__search-input {
		padding: 0 0 0 20px;
	}

	.section__catalog-card.section__catalog-2 {
		background-size: 150px;
		background-position: 95% center;
	}

	.footer__top .footer__top-wrp {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: normal;
		-ms-flex-align: normal;
		align-items: normal;
	}

	.footer__top .footer__top-item:nth-child(1) {
		width: 100%;
	}

	.footer__top .footer__top-item:nth-child(2),
	.footer__top .footer__top-item:nth-child(3) {
		padding: 0 30px;
	}

	.footer__top .footer__top-item:last-child {
		width: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.footer__top .footer__logo {
		max-width: 100%;
		text-align: center;
	}

	.footer__top .footer__contacts-2 {
		margin: 0 auto;
	}

	.footer__bottom .footer__bottom-copyright {
		text-align: right;
	}

	.footer__bottom .footer__bottom-confident {
		float: right;
		margin-left: 50px;
	}

	.section__catalog-card {
		padding: 15px 28px 28px 28px;
	}

	.review-card {
		padding: 40px;
	}

	.input,
	.textarea {
		padding: 15px 20px;
	}

	.modal {
		padding: 60px 40px 40px;
	}

	.modal__close {
		top: 20px;
		right: 20px;
	}

	.form-model__label {
		padding-left: 20px;
	}

	.form-model__title,
	.form-model__value {
		padding: 18px 20px;
	}

	.subcategories__card {
		height: 75px;
	}

	.subcategories__card-img {
		max-height: 75px;
		min-width: 75px;
	}

	.subcategories__card-img img {
		max-height: 75px;
		min-width: 75px;
	}
}

@media (max-width: 480px) {
	.subcategories__card {
		width: 100%;
		max-width: 100%;
		justify-content: flex-start;
	}

	.section__catalog-card.section__catalog-3 {
		justify-content: space-around;
	}

	.section__catalog-card.section__catalog-3 .section__catalog-list-img img{
		max-height: 150px;
	}
}

@media (min-width: 768px) {
	.title_1 {
		font-size: 30px;
	}

	.section__catalog-wrp {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.section__catalog-card {
		width: calc(50% - 6px);
	}

	.section__catalog-card .section__catalog-link {
		font-size: 18px;
	}

	.seria__header {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.seria__header-left {
		width: 25%;
	}

	.seria__header-right {
		padding: 20px 30px 20px 20px;
		width: 75%;
	}

	.seria__title {
		text-align: left;
	}
}

@media (min-width: 992px) {
	.title_1 {
		text-align: left;
	}

	.header__top {
		padding: 12px 0;
	}

	.only_mobile {
		display: none !important;
	}

	.only_mobile_visible {
		visibility: hidden !important;
	}

	.only_desctop {
		display: block !important;
	}

	.only_desctop_visible {
		visibility: visible !important;
	}

	.header__logo,
	.footer__top .footer__logo a {
		max-width: 200px;
	}

	.logo__city {
		font-size: 15px;
	}

	.header__info-block {
		padding-left: 30px;
	}

	.header__search-wrp {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0;
	}

	.header__navbar {
		padding: 0;
	}

	.header__catalog-wrp {
		display: block;
	}

	.header__search {
		right: 175px;
		left: calc(100% - 175px);
	}

	.footer__top .footer__top-wrp {
		-ms-flex-pack: distribute;
		justify-content: space-around;
	}

	.footer__top .footer__top-item:nth-child(2),
	.footer__top .footer__top-item:nth-child(3) {
		padding: 0;
	}

	.footer__top .footer__top-item:last-child {
		width: auto;
	}

	.footer__top .footer__menu li {
		margin-bottom: 18px;
	}

	.footer__top .footer__menu li a {
		font-size: 15px;
	}

	.footer__top .footer__contacts-1 li a,
	.footer__top .footer__contacts-2 li span,
	.footer__top .footer__contacts-1 li p {
		font-size: 15px;
	}

	.footer__bottom .footer__bottom-copyright {
		font-size: 14px;
	}

	.section__catalog {
		padding-top: 65px;
		padding-bottom: 30px;
	}

	.section__catalog-card {
		min-height: 200px;
		margin-bottom: 24px;
	}

	.section__catalog-card.section__catalog-1 {
		width: 100%;
		padding-right: 30px;
	}

	.section__catalog-card.section__catalog-2 {
		width: calc(50% - 12px);
		padding-right: 30px;
	}

	.section__catalog-card.section__catalog-3, .section__catalog-card.section__catalog-4, .section__catalog-card.section__catalog-5 {
		width: calc(33.333% - 16px);
	}

	.section__catalog-card .section__catalog-list {
		max-width: 60%;
	}

	.section__features {
		padding-top: 30px;
		padding-bottom: 40px;
	}

	.section__features .title_1 {
		margin-bottom: 65px;
	}

	.section__features-item {
		width: calc(25% - 20px);
		max-width: 300px;
	}

	.section__features-item .section__features-title {
		font-size: 19px;
	}

	.section__features-item .section__features-text {
		font-size: 16px;
	}

	.section__about .section__about-wrp {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.section__about .section__about-img,
	.section__about .section__about-text {
		width: calc(50% - 25px);
	}

	.section__about .section__about-short p,
	.section__about .section__about-more p,
	.section__about .section__about-short ul li,
	.section__about-more .item_card .flex .item ul li {
		font-size: 16px;
	}

	.section__about {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.section-0 {
		padding-top: 80px;
		padding-bottom: 60px;
	}

	.section-0 .title_1 {
		margin-bottom: 60px;
	}

	.section-1 {
		padding-top: 80px;
		padding-bottom: 60px;
	}

	.section-1 .title_1 {
		margin-bottom: 60px;
	}

	.tooltip {
		opacity: 1;
	}

	.slider-1 .slider-arrow {
		display: inline-block !important;
	}

	.section__consult .title_1 {
		margin-bottom: 20px;
	}

	.section__consult-wrp {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.section__consult-img {
		margin-right: 5%;
	}

	.form-1 .form-title {
		font-size: 17px;
		text-align: left;
	}

	.form-2 .form-title,
	.wpcf7 .form-title {
		font-size: 17px;
		text-align: left;
	}

	.section__map-wrp {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.section__map-img {
		width: 56%;
	}

	.section__map-content {
		width: 44%;
		margin-left: 30px;
	}

	.section-0 .section__map-content .title_1 {
		margin-bottom: 20px;
	}

	.modal {
		padding: 60px;
	}

	.modal .title_1 {
		text-align: center;
		margin-bottom: 30px;
	}

	.modal__thanks {
		padding: 80px 50px;
	}

	.breadcrums {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.breadcrums ul li {
		font-size: 18px;
	}

	.section-inner .title_1 {
		padding-top: 20px;
		padding-bottom: 40px;
	}

	.category_wrp {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		padding-bottom: 60px;
	}

	.category_wrp .aside {
		width: 24%;
	}

	.category_wrp .category_content {
		margin-left: 2%;
		width: 74%;
	}

	.cat_description__wrp {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		float: right;
		margin-bottom: 15px;
	}

	.scopes__title {
		font-size: 24px;
	}

	.seria__add .btn-1 {
		padding: 0 15px;
		max-width: initial;
	}

	.seria__order .btn-1,
	.seria__order .btn-2 {
		padding: 0 15px;
		max-width: initial;
		width: 130px;
	}

	.seria__add .btn-1 span {
		display: inline-block;
		vertical-align: middle;
	}

	.seria__desc {
		display: block;
	}

	.aside {
		position: relative;
	}
}

@media (min-width: 1200px) {
	.header__desctop-menu_item {
		margin-right: 50px;
	}

	.header__catalog-item::before {
		left: -35px;
	}

	.footer__top .footer__top-wrp {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.footer__top .footer__top-item:nth-child(1) {
		width: auto;
	}

	.section__catalog-card {
		min-height: 300px;
	}

	.section__catalog-card .section__catalog-title {
		margin-bottom: 25px;
		font-size: 22px;
		line-height: 1.2;
	}

	.section__about .title_1 {
		margin-bottom: 60px;
	}

	.section__about .section__about-wrp {
		-webkit-box-align: normal;
		-ms-flex-align: normal;
		align-items: normal;
	}

	.section__consult .title_1 {
		margin-bottom: 20px;
		display: inline-block;
	}

	.section__consult-wrp {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.section__consult-img {
		margin-right: 5%;
	}

	.section__consult-content {
		width: 57%;
	}

	.form-1 {
		max-width: 100%;
	}

	.form-1 .form-title {
		font-size: 17px;
		text-align: left;
		margin-bottom: 40px;
	}

	.form-1 .form-fields {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.form-1 .form-fields > div {
		width: calc(50% - 11px);
	}

	.form-1 .form-input {
		padding-top: 22px;
	}

	.form-1 .form-bottom {
		padding-top: 40px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.form-1 .form-bottom > div {
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
	}

	.form-1 .form-submit-wrp {
		margin-top: 0;
		padding-left: 11px;
		text-align: left;
	}

	.form-2,
	.wpcf7 {
		max-width: 100%;
	}

	.form-2 .form-title,
	.wpcf7 .form-title {
		font-size: 17px;
		text-align: left;
		margin-bottom: 40px;
	}

	.form-2 .form-input,
	.wpcf7 .form-input {
		padding-top: 22px;
	}

	.form-2 .form-bottom,
	.wpcf7 .form-bottom {
		padding-top: 40px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.form-2 .form-bottom > div,
	.wpcf7 .form-bottom > div {
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
	}

	.form-2 .form-submit-wrp,
	.wpcf7 .form-submit-wrp {
		margin-top: 0;
		padding-left: 11px;
		text-align: left;
	}

	.section__reviews-slider .slick-list {
		margin-bottom: 30px;
	}

	.section__reviews-slider.commentlist .slick-list {
		margin-bottom: 0;
	}

	.review-card__add {
		text-align: right;
		position: relative;
	}

	.form-wrp {
		padding: 60px;
	}

	.form-2 .form-title {
		margin-bottom: 30px;
	}

	.form-2 .form-fields > div {
		width: 100%;
	}

	.form-2 .form-bottom {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.form-2 .form-bottom > div {
		-ms-flex-preferred-size: auto;
		flex-basis: auto;
	}

	.subcategories__wrp {
		margin: 0 -8px;
	}

	.subcategories__card {
		max-width: 342px;
		height: 116px;
		margin: 0 6px 12px;
		width: calc(33.333% - 12px);
	}

	.subcategories__card-img {
		max-height: 116px;
		min-width: 116px;
	}

	.subcategories__card-img img {
		max-height: 116px;
		min-width: 116px;
	}

	.subcategories__card-title {
		font-weight: 500;
		font-size: 17px;
	}
}

@media (min-width: 1440px) {
	.header__logo,
	.footer__top .footer__logo a {
		max-width: 230px;
	}

	.logo__city {
		font-size: 17px;
	}

	.header__info-block {
		padding-left: 50px;
	}

	.header__desctop-menu_item {
		margin-right: 75px;
	}

	.header__desctop-menu_item a,
	.header__catalog-btn {
		font-size: 17px;
	}

	.header__catalog-btn span {
		font-size: 18px;
	}

	.header__catalog-item::before {
		left: -50px;
	}

	.slider-1:not(.slick-slider) {
		margin: 0;
	}

	.slider-1:not(.slick-slider) .slide {
		padding: 0;
	}

	.section__blog .section__blog-bottom {
		margin-top: 30px;
		text-align: right;
	}

	.woocommerce-Tabs-panel .slick-dots {
		display: none;
	}
}


/* For Firefox custom styles: */
/* IE10 IE11 */

/* start 03.12.2021 */
.header__desctop-menu_item.parent .header__catalog-btn span {
	line-height: 20px;
}

.header__catalog-btn {
	padding: 16px 0;
	margin: -8px 0;
}

/* end 03.12.2021 */

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	.header__catalog {
		z-index: 100;
	}

	.paid_block.paid_4 {
		flex-wrap: wrap;
		max-width: 100%;
		-ms-flex-wrap: wrap;
	}

	.paid_block.paid_4 .item {
		width: 33%;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		gap: 20px;
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		font-weight: 400;
		line-height: 1.4;
		max-width: none;
	}

	.paid_4 .text {
		max-width: 100%;
	}

	#header_navbar.sticky {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
	}

	.br_compare_added .tooltip {
		display: none !important;
	}

	.product-card__add-item {
		overflow: visible;
	}
}

strong {
    font-weight: 600;
}

.product-card__attribute span:last-child {
	text-align: right;
}

.stock.available-on-backorder {
	margin-bottom: 15px;
}

@media (max-width: 480px) {
	.review-card__add {
		margin-top: 30px;
	}
}

.catalog_link {
	margin-bottom: 35px;
}

.catalog_link a {
	display: none;
}

.catalog_link a:nth-last-child(1) {
	display: inline-block;
}

@media only screen and (max-width: 721px) {
	.category-products {
		justify-content: space-around;
	}
}

.br_main_top {
	height: 100%;
}

.br_main_top table {
	height: 100%;
}

.compare-section-page .container {
	padding: 0;
}

.br_new_compare .br_right_table th p, .br_new_compare .br_right_table td p, .br_top_table th, .br_top_table td p{
	text-align: center;
}

@media(min-width:721px) and (max-width:992px){
	.category-products{
		justify-content: center;
	}
}


.cf-turnstile {
    width: 100% !important;
    display: block;
}

.cf-turnstile iframe {
    width: 100% !important;
}

#tab-description p {
	margin-bottom: 10px;
}

nav.woocommerce-pagination {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	overflow: visible !important
}

nav.woocommerce-pagination ul {
	list-style: none;
	text-align: center;
	text-decoration: none;
	margin: 2rem auto;
}

nav.woocommerce-pagination li span.current, nav.woocommerce-pagination li a {
	width: 50px;
	height: 50px;
	line-height: 50px;
	display: inline-block;
}

nav.woocommerce-pagination li {
	box-shadow: 0 3px 20px -0.2px rgba(0, 0, 0, 0.1);
	transition: all 300ms cubic-bezier(0.250, 0.100, 0.250, 1.000);
	transition-timing-function: cubic-bezier(0.250, 0.100, 0.250, 1.000);
	color: #000;
	background: #fff;
	float: left;
	margin-right: 10px;
}

nav.woocommerce-pagination li a {
	color: #000;
	text-decoration: none;
	width: 50px;
}

nav.woocommerce-pagination li span.current, nav.woocommerce-pagination li:hover {
	background: var(--gpo-style-color);
}

nav.woocommerce-pagination li:hover a {
	color: #fff;
}

nav.woocommerce-pagination li span.current {
	color: #fff;
}

nav.woocommerce-pagination li a.next {
	width: auto !important;
	padding: 0 17px 0 17px !important;
	position: relative;
}

nav.woocommerce-pagination li a.prev {
	width: auto !important;
	padding: 0 17px 0 17px !important;
	position: relative;
}

.post.type-post a{
	color: var(--gpo-style-color);
}

.post.type-post a:hover{
	text-decoration: underline;
}

button.product-card__add-item.product-card__liked span{
	font-size: 13px;
	font-family: Inter;
}

button.product-card__add-item.product-card__liked{

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

button.product-card__add-item.product-card__liked.added span{
	color: var(--gpo-style-color);

}

a.add_to_cart_button.button.br_compare_button{
	     margin-top: 0px !important;
}

button.btn-2.product-card__modal_morequestion {
    color: black;
    background: none;
    border: none;
    padding: 0;
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 20px;
    text-decoration: none;
    line-height: 100%;
    height: fit-content;
	text-align: left;
}
button.btn-2.product-card__modal_morequestion svg {
	max-width: 20px;

}
button.btn-2.product-card__modal_morequestion svg circle {
	transition: .5s;

}
button.btn-2.product-card__modal_morequestion:hover {
	color: var(--gpo-style-color);
	text-decoration: underline;

}
button.btn-2.product-card__modal_morequestion:hover svg circle {
	stroke: var(--gpo-style-color);
	transition: .5s;

}

div#captcha-container {
    margin: 15px 0;
}

.product-button{
	display: flex;
	align-items: center;
}

.product-card__modal_lizing{
	margin-left: 50px;
	border-radius: 0;
}

@media(max-width:400px){
	.product-button{
		flex-direction: column;
		align-items: flex-start;
	}

	.product-card__modal_lizing{
		margin-left: 0;
	}
}

.cat__min-price{
	float: right;
	margin-top: 6px;
}

.shop_cat.flex.block_shop_cat.facetwp-template .slide {

	width: 100%;
	max-width: calc(100% / 3 - 10px);
}
@media (max-width: 850px){
	.shop_cat.flex.block_shop_cat.facetwp-template .slide {

		width: 100%;
        max-width: calc(100% / 2 - 10px);
	}

}
@media (max-width: 500px){
	.shop_cat.flex.block_shop_cat.facetwp-template .slide {
		width: 100%;
        max-width: 100%;
	}

	.cat__min-price{
		float: none;
	}

}
.shop_cat.flex.block_shop_cat.facetwp-template {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.soput_view_all {
	float: right;
	text-transform: none;
	text-decoration: underline;
	font-size: 1.2rem;
	padding-top: 0.5rem;
}

.product_modal_link {
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	background: white;
	padding: 1rem;
	color: black;
	margin: 1rem 0;
	cursor: pointer;
	text-align: center;
	font-weight: bold;
	font-size: .9rem;
	max-height:60px;
}

@media (max-width: 991px) {
	.product_modal_link {
		margin: 0;
	}
}

.product_modal_link:hover {
	text-decoration: underline;
	color: var(--gpo-style-color);
}

#questions_comments .review-card {
	height: auto;
}

.soput .title_1 {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

@media (max-width: 400px) {
	.soput .title_1 {
		justify-content: center;
	}
}

@media (min-width: 320px) and (max-width: 992px){
	.shop_cat.facetwp-template.singletarget-mode-3-columns, .products-old{
		justify-content: center;
		gap: 20px;
	}
}

.cookies-modal {
	display: none;
	position: fixed;
	padding: 25px;
	width: 418px;
	bottom: 50px;
	right: 50px;
	z-index: 999;
	background: #F8F7F6;
}

.cookies-modal span {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 13px;
	display: block;
}

.cookies-modal p {
	font-size: 12px;
	margin-bottom: 10px;
	line-height: 1.5;
	font-weight: 500;
}

.cookies-modal p a {
	color: var(--gpo-style-color);
	text-decoration: underline;
}

.cookies-modal__button {
	margin-top: 20px;
	border-right: 0;
}

.cookies-modal__button button {
	border: 1px solid var(--gpo-style-color);
	background: var(--gpo-style-color);
	color: #fff;
	font-size: 14px;
	padding: 7px 22px;
	transition: 0.3s all;
	border-radius: 35px;
}

.cookies-modal__button button:hover {
	background: inherit;
	color: var(--gpo-style-color);
}

.cookies-modal__button .cookies-button__accept {
	margin-right: 13px;
}

@media (max-width: 576px) {
	.cookies-modal {
		width: 90%;
		left: 0;
		right: 0;
		margin: 0 auto;
		bottom: 0;
	}
}

.shop_content .woocommerce-ordering .orderby {
	display: none !important;
}

.shop_content:has(.singletarget-mode-3-columns) .woocommerce-ordering .orderby {
	display: flex !important;
}

.main_container p a,.section__category-about-wrp a,.term-description a,.section__about-text a,.section__about-more a{
	color: var(--gpo-style-color);
}
.main_container p a:hover,.section__category-about-wrp a:hover,.term-description a:hover,.section__about-text a:hover,.section__about-more a:hover{
	text-decoration: underline;
}