

:root {
	--main_color: #3A3A3A;
	--black: #3A3A3A;
	--main_bg: #fff;
	--red: #B50102;
	--green_color: #00b300;
	--dark_gray: #6A6C6D;
	--orange: #FF6B00;
	--swiper-navigation-color: #FF6B00;
	/*--dark_orange: #E53900;*/
	--dark_orange: #EB6200;
	--light_blue: #4C82E0;
	--white: #fff;
	--gray: #7D7E80;
	--yellow: #CEA862;
	
	--swiper-pagination-bullet-inactive-color: #D9D9D9;
	--swiper-pagination-color: var(--black);
	--swiper-pagination-bullet-inactive-opacity: 1;
}

::-webkit-scrollbar {
	width: 12px;               /* ширина scrollbar */
}
::-webkit-scrollbar-track {
	background: #FF6B0066;        /* цвет дорожки */
}
::-webkit-scrollbar-thumb {
	background: var(--dark_orange);    /* цвет плашки */
	border-radius: 20px;       /* закругления плашки */
	border: 3px solid var(--dark_orange);  /* padding вокруг плашки */
}

html, body {
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-family: 'Matter-TRIAL', Verdana, Geneva, sans-serif;
	line-height: 1.3;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: 'lnum' 1;
	color: var(--main_color);
}

img {
	border: 0;
	max-width: 100%;
	object-fit: cover;
}
iframe {
	max-width: 100%;
	border: 0;
}
a {
	color: var(--orange);
	transition: 0.3s color;
}
a.black {
	color: var(--black);
	transition: 0.3s color;
}
a.black:hover {
	color: var(--orange);
}
*, :before, :after {
	box-sizing: border-box;
	outline: none;
	font-family: 'Matter-TRIAL', Verdana, Geneva, sans-serif;
}
.hidden {
	display: none !important;
}
input[type="submit"],
input[type="button"],
input[type="reset"],
button {
	cursor: pointer;
}

.ccenter {
	padding: 0 20px;
	margin: 0 auto;
	max-width: 1440px;
}
.text_center {
	text-align: center;
}
.el-animation {
	transition: 1s;
}
.animation-title {
	transition: 0.5s;
	opacity: 0;
}
.animation-scale {
	transform: scale(0.1);
}
.animation-scale.el-show {
	opacity: 1;
	transform: scale(1);
}

p {
	margin: 0 0 1em;
}
p:last-child {
	margin-bottom: 0;
}
ul, ol {
	padding-left: 20px;
}

.grid {
	display: grid;
}
.grid.col2_auto {
	grid-template-columns: auto auto;
}
.grid.col2 {
	grid-template-columns: repeat(2, 1fr);
}
.grid.col3 {
	grid-template-columns: repeat(3, 1fr);
}
.grid.col4 {
	grid-template-columns: repeat(4, 1fr);
}
.grid.grid_3_2 {
	grid-template-columns: 3fr 2fr;
}
.flex {
	display: flex;
	justify-content: space-between;
	flex-direction: row;
}
.flex.column {
	flex-direction: column;
}
.flex.around {
	justify-content: space-around;
}

.flex.center, .grid.center {
	justify-content: center;
}
.flex.left {
	justify-content: flex-start;
}
.flex.right {
	justify-content: flex-end;
}
.flex.vcenter, .grid.vcenter {
	align-items: center;
}
.flex.vtop, .grid.vtop {
	align-items: flex-start;
}
.flex.vbottom, .grid.vbottom {
	align-items: flex-end;
}
.flex.wrap {
	flex-wrap: wrap;
}
.gap40 {
	gap: 40px;
}
.gap30 {
	gap: 30px;
}
.gap24 {
	gap: 24px;
}
.gap20 {
	gap: 20px;
}
.gap16 {
	gap: 16px;
}
.gap12 {
	gap: 12px;
}
.gap10 {
	gap: 10px;
}
.gap8 {
	gap: 8px;
}
.gap6 {
	gap: 6px;
}



.pt40 {
	padding-top: 40px;
}
.pb40 {
	padding-bottom: 40px;
}
.pt50 {
	padding-top: 50px;
}
.pb50 {
	padding-bottom: 50px;
}
.pt60 {
	padding-top: 60px;
}
.pb60 {
	padding-bottom: 60px;
}
.pt80 {
	padding-top: 80px;
}
.pb80 {
	padding-bottom: 80px;
}
.pt100 {
	padding-top: 100px;
}
.pb100 {
	padding-bottom: 100px;
}

.color_orange {
	color: var(--orange);
}
.color_yellow {
	color: var(--yellow);
}
.color_gray {
	color: var(--gray);
}

h1, .h1, h2, .h2, h3, .h3 {
	font-weight: 600;
	line-height: 1.3;
}
h1, .h1 {
	font-size: 50px;
	line-height: 1.16;
	font-family: 'Matter-TRIAL', Verdana, Geneva, sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 0.8em;
}


h2, .h2 {
	font-size: 36px;
	font-weight: 600;
	line-height: 1;
	margin: 0 0 1em;
	text-transform: uppercase;
}
h2.bold, .h2.bold {
	font-weight: 700;
}
h3, .h3 {
	font-size: 20px;
	font-weight: 500;
	line-height: 1;
	margin: 0 0 1em;
	text-transform: uppercase;
}

.field.name {
	position: relative;
}
.field.name:after {
	position: absolute;
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	background: url('../images/user.svg') no-repeat center/cover;
	pointer-events: none;
	z-index: 2;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
}

input[type=text],
input[type=tel],
input[type=email],
select,
textarea {
	background: #fff;
	color: var(--main_color);
	border: 1px solid #D9D9D9;
	transition: 0.3s;
	width: 100%;
	padding: 17px 15px;
	line-height: 1.5;
	font-size: 16px;
	display: block;
}
textarea {
	height: 110px;
	resize: none;
}
.field:hover input[type=text],
.field:hover input[type=tel],
.field:hover input[type=email],
.field:hover select,
.field:hover textarea {
	border-color: var(--orange);
}

input[type=text][disabled],
input[type=tel][disabled],
input[type=email][disabled],
textarea[disabled] {
	background: #E1E3E5;
	border-color: #E1E3E5 !important;
	color: #BBBDBF;
}
input[type=text][disabled]::placeholder,
input[type=tel][disabled]::placeholder,
input[type=email][disabled]::placeholder,
textarea[disabled]::placeholder {
	color: #B2B2B2;
}
.field.name input[type=text] {
	padding-left: 44px;
}

.field.policy {
	font-size: 14px;
}
.field.policy.grid {
	grid-template-columns: 18px auto;
	gap: 11px;
	color: #7D7E80;
}
.field.policy.grid a {
	text-decoration: none;
}
input[type=checkbox] {
	appearance: none;
	display: block;
	width: 18px;
	height: 18px;
	cursor: pointer;
	position: relative;
	margin: 0;
}
input[type=checkbox]:before,
input[type=checkbox]:after {
	content: '';
	display: block;
	width: 18px;
	height: 18px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: 0.3s;
}
input[type=checkbox]:before {
	border: 2px solid #D9D9D9;
	z-index: 1;
	background: #fff;
}
input[type=checkbox]:hover:before {
	border-color: var(--orange);
}
input[type=checkbox]:after {
	background: url('data:image/svg+xml,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="18" height="18" fill="%23FF6B00"/><path d="M13.3428 5.81543L14.1689 6.57227L14.3701 6.75684L14.1689 6.94043L8.73438 11.918C8.61837 12.0244 8.4819 12.1085 8.33301 12.165C8.22122 12.2075 8.1037 12.2344 7.98438 12.2451L7.86523 12.25C7.70525 12.2501 7.54629 12.2215 7.39746 12.165C7.24849 12.1085 7.11116 12.0245 6.99512 11.918V11.917L4.83105 9.93652L4.62988 9.75195L4.83105 9.56738L5.65723 8.81152L5.82617 8.65625L5.99512 8.81152L7.86426 10.5244L13.0049 5.81543L13.1738 5.66113L13.3428 5.81543Z" fill="white" stroke="white" stroke-width="0.5"/></svg>') no-repeat center/cover;
	z-index: 2;
	opacity: 0;
}
input[type=checkbox]:checked:after {
	opacity: 1;
}


input[type=radio] {
	appearance: none;
	display: block;
	width: 20px;
	height: 20px;
	cursor: pointer;
	position: relative;
	margin: 0;
	border-radius: 50%;
	border: 2px solid #BBBDBF;
	transition: 0.3s border-color;
}
input[type=radio]:before {
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: var(--orange);
	opacity: 0;
	transition: 0.3s;
}
input[type=radio]:checked {
	border-color: var(--orange);
}
input[type=radio]:checked:before {
	opacity: 1;
}

button, input[type=submit], input[type=button], input[type=reset] {
	cursor: pointer;
}

.field.phone {
	position: relative;
}
.field.phone input {
	padding-left: 70px;
}
.field.phone .flags {
	position: absolute;
	z-index: 10;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	padding: 0 15px 0 0;
}
.field.phone .flags:after {
	display: block;
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -5px;
	height: 10px;
	width: 10px;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23666" d="M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z"/></svg>') no-repeat center/cover;
	transition: 0.3s;
}
.field.phone .flags img {
	display: block;
	width: 30px;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
}
.field.phone .flags .list {
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 2;
	opacity: 0;
	pointer-events: none;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	transform: translate(-10px, 10px);
}
.field.phone .flags.opened:after {
	transform: scaleY(-1);
}
.field.phone .flags.opened .list {
	opacity: 1;
	pointer-events: all;
}
.field.phone .flags .list .item {
	padding: 5px 10px;
	background: #fff;
	white-space: nowrap;
	font-size: 12px;
	grid-template-columns: 30px auto;
	color: var(--main_color);
}
.field.phone .flags .list .item span.code {
	color: var(--gray);
}
/*.modal .field.phone .flags .list .item span.name {
	display: none;
}
.modal .field.phone .flags .list .item span.code {
	color: inherit;
}*/

.required_invalid {
	-webkit-animation: empty 0.8s ease infinite;
	animation: empty 0.8s ease infinite;
	display: block;
	color: var(--red);
}

.bg_lazy, .bg_lazy:before, .bg_lazy:after {
	background-image: none !important;
}

/* блок со скроллом для таблиц и прочего */
div.scr {
	overflow: auto;
	padding: 0 0 10px;
}
div.scr::-webkit-scrollbar {
	width: 12px; /* ширина scrollbar */
}
div.scr::-webkit-scrollbar-track {
	background: #eee; /* цвет дорожки */
}
div.scr::-webkit-scrollbar-thumb { /* плашка */
	background-color: #42a327;
	border-radius: 20px;
	border: 3px solid #555;
}

header {
	position: relative;
}
header .row1 {
	padding: 10px 0;
}

header .row1 .logo {
	transform: translateY(-4px);
}
header .row2 {
	border-top: 1px solid #D9D9D9;
	border-bottom: 1px solid #D9D9D9;
}

header .address_block {
	font-size: 13px;
	line-height: 1.2;
}
header .address_block .label {
	
}
header .mobile_row2 {
	display: none;
}
.btn_black_border {
	border: 1px solid var(--black);
	color: var(--black);
	display: inline-block;
	text-align: center;
	padding: 6px 16px;
	font-size: 14px;
	line-height: 1;
	text-decoration: none;
	border-radius: 7px;
	background: var(--white);
	white-space: nowrap;
	transition: 0.2s;
}
.btn_black_border:hover {
	border-color: var(--orange);
	color: var(--white);
	background: var(--orange);
}
header .block_phone a {
	text-decoration: none;
	color: var(--black);
	font-size: 24px;
	line-height: 1;
	font-weight: 700;
	margin: 0 0 5px;
	display: block;
	white-space: nowrap;
}

@media (min-width: 992px) {
	#btn_mobile_menu {
		display: none;
	}
}


#btn_mobile_menu {
	border: 0 none;
	background: var(--white);
}
#btn_mobile_menu rect {
	transition: 0.3s;
}
body.mobile_menu_opened #btn_mobile_menu rect.rect_row2 {
	opacity: 0;
}
body.mobile_menu_opened #btn_mobile_menu rect.rect_row1 {
	transform: rotate(-45deg) translate(-15px, 12px);
}
body.mobile_menu_opened #btn_mobile_menu rect.rect_row3 {
	transform: rotate(45deg) translate(7px, -20px);
}




.no_list_style, #primary-menu, #primary-menu ul, #mobile_menu_container ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

html body .block, svg {
	display: block;
}

button#menu-toggle {
	display: none;
}
#primary-menu {
	position: relative;
}
#primary-menu > li > a {
	padding: 24px 0px;
	font-weight: 500;
	font-size: 17px;
	display: flex;
	align-items: center;
	transition: 0.3s all;
	color: var(--main_color);
	text-decoration: none;
	white-space: nowrap;
}
#primary-menu > li > a:before {
	display: block;
	content: '';
	width: 12px;
	height: 12px;
	background: url('data:image/svg+xml,<svg width="5" height="5" viewBox="0 0 5 5" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="5" height="5" fill="%23FF6B00"/></svg>') no-repeat center;
	margin-right: 10px;
}
#primary-menu > li.menu-item-239 > a:before {
	background: url('data:image/svg+xml,<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="7" width="5" height="5" fill="%23FF6B00"/><rect x="7" y="7" width="5" height="5" fill="%23FF6B00"/><rect width="5" height="5" fill="%23FF6B00"/><rect y="7" width="5" height="5" fill="%23FF6B00"/></svg>') no-repeat center/cover;
}

#primary-menu  ul li a {
	font-weight: 500;
	display: block;
	transition: 0.3s all;
	color: var(--main_color);
	text-decoration: none;
}
#primary-menu li:hover > a {
	color: var(--orange);
}
#primary-menu > li.menu-item-has-children {
	position: relative;
}
#primary-menu > li.menu-item-has-children ul {
	display: none;
	position: absolute;
	z-index: 10;
	top: 100%;
	left: 0;
	padding: 8px 0;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	min-width: 300px;
	background: #fff;
}
#primary-menu > li.menu-item-has-children > a {
	display: flex;
	gap: 4px;
	align-items: center;
}
#primary-menu li.menu-item-has-children > a:after {
	display: block;
	content: '';
	height: 24px;
	width: 24px;
	background: url('data:image/svg+xml,<svg width="9" height="5" viewBox="0 0 9 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 5L9 0H0L4.5 5Z" fill="%233A3A3A"/></svg>') no-repeat center;
}
#primary-menu li.menu-item-has-children:hover > ul {
	display: block;
}
#primary-menu li.menu-item-has-children ul a {
	display: block;
	padding: 8px 16px;
	position: relative;
}
#primary-menu ul li.menu-item-has-children > a:after {
	top: 8px;
	right: 8px;
	position: absolute;
	transform: rotate(-90deg);
}
#primary-menu > li.menu-item-has-children ul ul {
	top: 0;
	left: 100%;
}
li.current-menu-item > a {
	pointer-events: none;
}

@media (min-width: 992px) {
	#primary-menu > li.menu-item-has-children.full_width {
		position: static;
	}
	#primary-menu > li.menu-item-has-children.full_width > ul {
		width: 100%;
		max-width: 1200px;
		left: 50%;
		transform: translateX(-50%);
		column-width: calc((100% - 80px) / 3);
		column-count: 3;
		padding: 40px;
		gap: 40px;
	}
	#primary-menu > li.menu-item-has-children.full_width ul ul {
		display: block;
		position: static;
		box-shadow: none;
		min-width: auto;
		padding: 0;
	}
	#primary-menu > li.menu-item-has-children.full_width ul > li + li {
		padding-top: 20px;
		margin-top: 20px;
		border-top: 1px solid var(--gray);
	}
	#primary-menu > li.menu-item-has-children.full_width ul a {
		padding: 8px 0;
	}
	#primary-menu > li.menu-item-has-children.full_width ul a:after {
		display: none;
	}
	#primary-menu > li.menu-item-has-children.full_width ul ul li a {
		font-weight: 400;
		padding: 0;
	}
}



header .site-branding img {
	display: block;
}
header .site-branding a {
	text-decoration: none;
	color: var(--main_color);
	font-size: 18px;
	font-weight: 500;
}

.gap15 {
	gap: 15px;
}

.section.breadcrumbs {
	padding:16px 0;
}
.breadcrumbs {
	font-size: 14px;
}
.breadcrumbs a {
	color: var(--main_color);
	text-decoration: none;
}

.btn_orange {
	display: inline-block;
	border: 0 none;
	background: var(--orange);
	padding: 21.5px 20px;
	color: #fff;
	transition: 0.3s background;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.4;
	text-decoration: none;
	text-align: center;
	white-space: nowrap;
	text-transform: uppercase;
}
.btn_orange:hover {
	background: var(--dark_orange);
}
.btn_orange.hover_white:hover {
	background: var(--white);
	color: var(--main_color);
}

header .btn_orange {
	padding: 12px 20px;
}

.btn_white, .btn_transparent {
	display: inline-block;
	border: 1px solid var(--dark_orange);
	background: var(--white);
	padding: 21.5px 20px;
	color: var(--dark_orange);
	transition: 0.3s background;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.4;
	text-decoration: none;
	text-align: center;
	white-space: nowrap;
	text-transform: uppercase;
}
.btn_transparent {
	background: transparent;
	backdrop-filter: blur(19px)
}
.btn_white svg path {
	transition: 0.3s fill;
}
.btn_white:hover {
	background: var(--dark_orange);
	color: var(--white);
}
.btn_orange.flex, .btn_white.flex, .btn_transparent.flex {
	display: flex;
	justify-content: center;
}
.btn_white:hover svg path {
	fill: var(--white);
}

.btn_orange.middle, .btn_transparent.middle {
	padding: 15px 20px;
}
.btn_orange.medium, .btn_white.medium, .btn_transparent.medium {
	padding: 11px 24px;
}
.btn_orange.small, .btn_white.small, .btn_transparent.small {
	padding: 9px 16px;
}

header .row1 .phone {
	font-size: 24px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.header_compare_wishlist a {
	position: relative;
}
.header_compare_wishlist a:after {
	position: absolute;
	min-width: 19px;
	height: 19px;
	border-radius: 20px;
	color: #fff;
	background: #B2B2B2;
	content: attr(data-count);
	font-size: 14px;
	line-height: 16px;
	font-weight: 500;
	text-align: center;
	display: block;
	top: -8px;
	right: -8px;
	border: 2px solid #fff;
}
.header_compare_wishlist a.active:after {
	background: var(--orange);
}
.header_compare_wishlist a.active path.path_fill {
	fill: var(--orange);
}
.header_compare_wishlist a.active path.path_stroke {
	stroke: var(--orange);
}

.lang_selector {
	position: relative;
	cursor: pointer;
}
.lang_selector .label:after {
	display: block;
	content: '';
	background: url('data:image/svg+xml,<svg width="9" height="5" viewBox="0 0 9 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 5L9 0H0L4.5 5Z" fill="%233A3A3A"/></svg>') no-repeat center/cover;
	width: 9px;
	height: 5px;
}
.lang_selector .select_list {
	position: absolute;
	opacity: 0;
	pointer-events: none;
	top: 100%;
	left: -16px;
	background: #fff;
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
	border: 1px solid #D9D9D9;
	transition: 0.3s;
	z-index: 2;
}
.lang_selector.active .select_list {
	opacity: 1;
	pointer-events: all;
}
.lang_selector .select_list .option {
	padding: 5px 15px;
	transition: 0.3s;
}
.lang_selector .select_list .option:hover,
.lang_selector .select_list .option.active {
	background: #D9D9D9;
}


.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999998;
	display: none;
	width: 100%;
	height: 100%;
	overflow: hidden;
	outline: 0;
	background: rgba(0, 0, 0, 0.5);
	padding: 0 15px;
}

.error-404 {
	text-align: center;
}
.error-404 form.search_form {
	max-width: 480px;
	margin: 0 auto 60px;
}

@media (max-width: 1439.98px) {
	header .row1 .header_address_block {
		display: none;
	}
}

@media (max-width: 1199.98px) {
	h1, .h1 {
		font-size: 45px;
	}
	.ccenter {
		padding: 0 15px;
	}
}

@media (max-width: 1099.98px) {
	h1, .h1 {
		font-size: 40px;
	}
	header form.search_form {
		width: 25vw;
	}
	header .row1 .flex {
		gap: 5px;
	}
	header .socials svg {
		width: 24px;
		height: 24px;
	}
	header .block_phone a {
		font-size: 20px;
	}
	.btn_black_border {
		font-size: 11px;
	}
}

@media (max-width: 991.98px) {
	html[lang] {
		margin-top: 0 !important;
	}
	#wpadminbar {
		display: none;
	}
	
	h1, .h1 {
		font-size: 28px;
	}
	header .row1 .socials,
	header .row1 .lang_selector,
	header .row2,
	.section.breadcrumbs {
		display: none;
	}
	header form.search_form {
		width: calc(100vw - 480px);
	}
	.btn_orange, .btn_white, .btn_transparent {
		padding: 15px 24px;
	}
	
	.pt40 {
		padding-top: 30px;
	}
	.pb40 {
		padding-bottom: 30px;
	}
	.pt50 {
		padding-top: 40px;
	}
	.pb50 {
		padding-bottom: 40px;
	}
	.pt80 {
		padding-top: 60px;
	}
	.pb80 {
		padding-bottom: 60px;
	}
	.pt100 {
		padding-top: 80px;
	}
	.pb100 {
		padding-bottom: 80px;
	}
	h2, .h2 {
		font-size: 36px;
	}
	h3, .h3 {
		font-size: 22px;
	}
	.btn_orange.medium, .btn_white.medium, .btn_transparent.medium,
	.btn_orange.small, .btn_white.small, .btn_transparent.small {
		font-size: 16px
	}
	input[type=text],
	input[type=tel],
	input[type=email] {
		padding: 12px 15px;
	}
}

@media (max-width: 767.98px) {

	button#menu-toggle {
		display: block;
		width: 40px;
		height: 40px;
		border: 0 none;
		padding: 10px 5px;
		background: transparent;
	}
	button#menu-toggle span.line {
		display: block;
		height: 2px;
		width: 100%;
		background: var(--main_color);
		margin: 0 0 6px;
	}
	#primary-menu-container {
		position: absolute;
		display: none;
		top: 100%;
		left: 0;
		width: 100%;
		z-index: 10;
		padding: 15px;
		background: #fff;
		box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
	}
	#primary-menu {
		flex-direction: column;
	}
	header .row1 .phone,
	header .row1 .btn_orange {
		display: none;
	}
	
	header .mobile_row2 {
		display: block;
		padding: 10px 0;
		border-top: 1px solid #D9D9D9;
	}
	header .mobile_row2 .phone {
		text-align: center;
		font-size: 16px;
		font-weight: 700;
		text-decoration: none;
	}
	
	.mobile_table_wrapper {
		overflow: auto;
	}
	.mobile_table_wrapper table.mobile_wrap {
		width: 100%;
	}
	
	#wpadminbar {
		display: none;
	}
	html[lang] {
		margin-top: 0 !important;
	}
	
	.sitewrap:has( ~ #wpadminbar) .header {
		margin-top: 32px;
	}
	
	/* полосы прокрутки на мобилах*/
	::-webkit-scrollbar {
		-webkit-appearance: none;
	}

	::-webkit-scrollbar:vertical {
		width: 12px;
	}

	::-webkit-scrollbar:horizontal {
		height: 12px;
	}

	::-webkit-scrollbar-thumb {
		background-color: rgba(0, 0, 0, .5);
		border-radius: 10px;
		border: 2px solid #ffffff;
	}

	::-webkit-scrollbar-track {
		border-radius: 10px;
		background-color: #ffffff;
	}
	.btn_orange, .btn_white, .btn_transparent {
		padding: 15px 16px;
	}
}

@media (max-width: 650.98px) {
	header .row1 form {
		display: none;
	}
}

@media (max-width: 575.98px) {

	h1, .h1 {
		font-size: 22px;
	}
	.pt40 {
		padding-top: 20px;
	}
	.pb40 {
		padding-bottom: 20px;
	}
	.pt80 {
		padding-top: 40px;
	}
	.pb80 {
		padding-bottom: 40px;
	}
	h2, .h2 {
		font-size: 30px;
	}
	h2.bold, .h2.bold {
		font-size: 22px;
	}
	h3, .h3 {
		font-size: 20px;
	}
	.btn_orange.medium, .btn_white.medium, .btn_transparent.medium,
	.btn_orange.small, .btn_white.small, .btn_transparent.small {
		font-size: 14px
	}
	input[type=text],
	input[type=tel],
	input[type=email] {
		padding: 7px 15px;
	}
	input[type=text],
	input[type=tel],
	input[type=email],
	select,
	textarea {
		font-size: 14px;
	}
	.buttons_right {
		right: 20px;
	}
}

@media (max-width: 480.98px) {

	header .row1 .block_phone,
	header .row1 .socials {
		display: none;
	}
	header .row1 .logo img {
		width: 128px;
	}
	header .btn_orange {
		font-size: 11px;
		padding: 8.5px 12px;
	}
	header .mobile_row2 .phone {
		text-align: left;
	}
}

