/* Основные стили вёрстки */

/*
	@font-face {
	font-family: "Bebas Neue Bold";
	src: url("../fonts/bebas-neue-bold/bebas-neue-bold.eot");
	src: url("../fonts/bebas-neue-bold/bebas-neue-bold.eot?#iefix") format("embedded-opentype"),
	url("../fonts/bebas-neue-bold/bebas-neue-bold.otf") format("opentype"),
	url("../fonts/bebas-neue-bold/bebas-neue-bold.svg") format("svg"),
	url("../fonts/bebas-neue-bold/bebas-neue-bold.ttf") format("truetype"),
	url("../fonts/bebas-neue-bold/bebas-neue-bold.woff") format("woff"),
	url("../fonts/bebas-neue-bold/bebas-neue-bold.woff2") format("woff2");
	font-weight: normal;
	font-style: normal;
	}
*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
	--grayscale-0: #fff;
	--grayscale-50: #f2f2f2;
	--grayscale-100: #e6e6e6;
	--grayscale-200: #ccc;
	--grayscale-300: #b3b3b3;
	--grayscale-400: #999;
	--grayscale-500: #838383;
	--grayscale-600: #666;
	--grayscale-700: #4d4d4d;
	--grayscale-800: #333;
	--grayscale-900: #171717;
	--grayscale-1000: #000;
	--primary-50: #e5f4ff;
	--primary-100: #cce9ff;
	--primary-200: #99d3ff;
	--primary-300: #66bdff;
	--primary-400---main: #33a7ff;
	--primary-500: #0091ff;
	--primary-600: #0074cc;
	--primary-700: #005799;
	--primary-800: #003a66;
	--primary-900: #001d33;
	--primary-950: #000e1a;
	--opasity-dark-320: rgba(9, 43, 56, 0.32);
	--opasity-white-40: rgba(255, 255, 255, 0.04);
	--opasity-white-80: rgba(255, 255, 255, 0.08);
	--opasity-white-120: rgba(255, 255, 255, 0.12);
	--opasity-white-200: rgba(255, 255, 255, 0.2);
	--opasity-white-400: rgba(255, 255, 255, 0.4);
	--opasity-white-600: rgba(255, 255, 255, 0.6);
	--opasity-white-800: rgba(255, 255, 255, 0.8);
	--additional-purple: #9d5bff;
	--additional-purple-light: rgba(157, 91, 255, 0.1);
	--additional-blue: #0fb3fa;
	--additional-blue-light: rgba(15, 179, 250, 0.1);
	--additional-green: #2ed47c;
	--additional-green-light: rgba(46, 212, 124, 0.1);
	--additional-yellow: #f2d200;
	--additional-yellow-light: #fdfae5;
	--additional-orange: #ff801f;
	--additional-orange-light: rgba(255, 128, 31, 0.1);
	--additional-red: #e5484d;
	--additional-red-light: rgba(229, 72, 77, 0.1);
	
	--white: #FFFFFF;
	--black: #000000;
	--yellow: #FFF7C5;
}

:root {
	--font-family: "Inter", sans-serif;
	--second-family: "Seymour One", sans-serif;
}


/* 
	Сколько раз встречаются и какие шрифты в дизайне (для логической оптимизации)
	Inter Medium - 547
	Inter Regular - 357
	Inter Semi Bold - 181
	Seymour One Regular - 8
*/

html,
body {
	height: 100%;
}

html {
	line-height: 130%;
}

body {
	font-family: var(--font-family);
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 130%;
	color: var(--white);
	background: var(--black);
	text-align: left;
	margin: 0;
	letter-spacing: -0.04em;
}

.scroll_top {
	position: fixed;
	right: 15px;
	bottom: 15px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.scroll_top.active_progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.scroll_top:before {
	position: absolute;
	content: "";
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='48px' viewBox='0 -960 960 960' width='48px' fill='%23ffffff'%3E%3Cpath d='M452-244v-400L282-477l-42-43 241-241 241 241-42 42-168-168v402h-60Z'/%3E%3C/svg%3E");
	text-align: center;
	height: 32px;
	width: 32px;
	cursor: pointer;
	display: block;
	z-index: 2;
	background-size: cover;
	margin: auto;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
}

.scroll_top svg path { 
	fill: none; 
}

.scroll_top svg.scroll_circle path {
	stroke: #0FB3FA;
	stroke-width: 4;
	box-sizing:border-box;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

p {
	margin-top: 0;
	margin-bottom: 1rem;
}

ol,
ul,
dl {
	margin-top: 0;
	margin-bottom: 1rem;
	list-style: none;
}

ol ol,
ul ul,
ol ul,
ul ol {
	margin-bottom: 0;
}

blockquote {
	margin: 0 0 1rem;
}

b,
strong {
	font-weight: 700;
}

small {
	font-size: 80%;
}

a {
	color: inherit;
	text-decoration: none;
	background-color: transparent;
}

a:hover {
	text-decoration: none;
}

figure {
	margin: 0 0 1rem;
}

img {
	vertical-align: middle;
	border-style: none;
	max-width: 100%;
	height: auto;
    display: block;
}

svg {
	overflow: hidden;
	vertical-align: middle;
}

table {
	border-collapse: collapse;
}

caption {
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
	color: #6c757d;
	text-align: left;
	caption-side: bottom;
}

th {
	text-align: inherit;
	text-align: -webkit-match-parent;
}

label {
	display: inline-block;
	margin-bottom: 0.5rem;
}

button {
	border-radius: 0;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

textarea {
	overflow: auto;
	resize: vertical;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6  {
	margin-top: 0;
	width: 100%;
	min-width: 100%;
	z-index: 11;
	position: relative;
	margin-bottom: 0;
	font-style: normal;
	font-weight: 600;
	display: flex;
	margin-bottom: 8px;
}

h1, .h1 {
	font-size: 32px;
	line-height: 40px;
	margin-bottom: 12px;
}

h2, .h2 {
	font-size: 20px;
	line-height: 26px;
}

h3, .h3 {
	font-size: 18px;
	line-height: 27px;
}

h4, .h4 {
	font-size: 16px;
	line-height: 22px;
}

h5, .h5 {
	font-size: 16px;
	line-height: 22px;
}

h6, .h6 {
	font-size: 16px;
	line-height: 22px;
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
	border-bottom: 1px solid #fff;
	margin: 16px auto;
}

small,
.small {
	font-size: 80%;
	font-weight: 400;
}

mark,
.mark {
	padding: 0.2em;
	background-color: #fcf8e3;
}

.blockquote {
	margin-bottom: 1rem;
	font-size: 1.25rem;
}

.symptom_what_item:before,
.symptom_what_item,
.symptom_cause_item:before,
.symptom_cause_item,
.star_list_item > span:before,
.star_list_item > span:after,
.single_tab_button,
#breadcrumbs a,
.hero_item .hero_item_title,
.hero_item svg,
.analysis_item .analysis_item_title,
.analysis_item svg,
.archive_item .archive_item_title,
.archive_item svg,
.symptom_related_item .symptom_related_item_title,
.symptom_related_item svg,
header > .container,
.fonts_loaded header > .container,
.header_btn a.btn_small svg,
.header_btn a.btn_small svg path,
.pll-parent-menu-item > a:after,
ul.menu_other li.pll-parent-menu-item > a:after,
.pll-parent-menu-item ul.sub-menu,
ul.menu_other li.pll-parent-menu-item ul.sub-menu,
ul.menu_other li a,
.btn svg,
.footer_text a,
.menu_other_responsive, 
.btn:not(.btn_small),
.archive_center .archive_item img,
.btn_invert {  
	-webkit-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
}

.archive_bg,
.img_loaded .img_bg,
.img_bg {  
	-webkit-transition: all 400ms ease-out;
	transition: all 400ms ease-out;
}

ul.menu_header li a:after {
    -webkit-transition: width 300ms cubic-bezier(0, 0, 1, 1) 50ms;
    transition: width 300ms cubic-bezier(0, 0, 1, 1) 50ms;
}

.btn_invert input, a.btn_invert,
.btn_invert,
.btn input, .btn, a.btn {
	font-size: 16px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 12px 16px;
	gap: 6px;
	height: 46px;
	background: #FFFFFF;
	border-radius: 12px;
	color: #000;
	border: none;
	position: relative;
	z-index: 3;
	cursor: pointer;
	padding-left: 16px;
	padding-right: 16px;
	min-width: max-content;
	border: none;
	text-decoration: none;
	width: 100%;
}

.btn_small input, a.btn_small,
.btn_small {
	width: 51px;
	max-width: 51px;
	min-width: 51px;
	background: rgba(255, 255, 255, 0.12);
	/*background: #3a3a3a;*/
	backdrop-filter: blur(16px);
	border-radius: 12px;
}

.btn_invert input, a.btn_invert,
.btn_invert {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.header_btn .btn_small:hover svg path {
	fill: #000;
}

a.btn_primary,
.btn_primary {
    
}

a.btn_secondary,
.btn_secondary {
	
}

.btn:hover input, .btn:hover, a.btn:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}


.btn_invert:hover input, a.btn_invert:hover,
.btn_invert:hover {
	background: rgba(255, 255, 255, 1);
	color: #000;
}

.btn_small:hover input, .btn_small:hover, a.btn_small:hover {
	background: rgba(255, 255, 255, 1);
}

a.btn:active,
.btn:active, 
.btn input:active
/*
	.btn input:focus,
	.btn:focus,
	a.btn:focus
*/
{
	
}

.btn input {
	padding: 0;
}

.btn_input input {
	padding-left: 38px;
	padding-right: 16px;
	background: transparent;
}

.btn_input:hover input {
	color: var(--white);
}

.btn_input {
	padding-left: 0;
	padding-right: 0;
}

.wpcf7-submit.lock {
	opacity: .5;
	pointer-events: none;
	cursor: default;
}

.pointer_events_none {
	pointer-events: none;
	cursor: default;
}

.wpcf7-not-valid::-webkit-input-placeholder {color:#FF1506!important;}
.wpcf7-not-valid::-moz-placeholder          {color:#FF1506!important;}
.wpcf7-not-valid:-moz-placeholder           {color:#FF1506!important;}
.wpcf7-not-valid:-ms-input-placeholder      {color:#FF1506!important;}

*[data-name="agree"],
.agree_other,
.agree,
.wpcf7-spinner,
.ajax-loader {
	display:none;
}

body .wpcf7-mail-sent-ok, 
body .ajax-loader, 
body .wpcf7-validation-errors {
	font-size: 12px;
}

body .wpcf7-response-output,
body .wpcf7-not-valid-tip,
body .wpcf7 form.invalid .wpcf7-response-output, 
body .wpcf7 form.unaccepted .wpcf7-response-output {
	display: none;
}

body .wpcf7-mail-sent-ok {
	border: none;
	color: #398f14;
	margin: 0;
	padding: 0;
	margin-top: 15px;
}

body .wpcf7-validation-errors, 
body .wpcf7-acceptance-missing {
	border: none;
	color: #ff0000;
	padding: 0;
	margin: 0;
	margin-top: 15px;
}

body .wpcf7-not-valid {
	border: 1px solid #FF1506 ;
}

.mfp-arrow:after,
.mfp-arrow:before {
	content:'';
	border: none;
	opacity: 1;
	margin: auto;
    background-size: contain;
	width: 60px;
	height: 35px;
	background-repeat: no-repeat;
	background-position: center;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	opacity: 1;
}

.mfp-arrow:after {
	opacity: 0;
}

.mfp-arrow:hover:before {
	opacity: 0;
}

.mfp-arrow:hover:after {
	opacity: 1;
}

.mfp-arrow {
	width: 60px;
	height: 50px;
	margin: auto;
	opacity: 1;
}

.mfp-bg {
	
}

.popup_form {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 40px;
	background: var(--white);
	border-radius: 20px;
	max-width: 400px;
	margin: auto;
	border-top-right-radius: 0;
	border-bottom-left-radius: 0;
	box-shadow: 0px 0px 30px rgba(9, 43, 56, 0.25);
}

.popup_form .form_row_uploud {
	margin-bottom: 26px;
}

.popup_form_wide {
	max-width: 580px;
}

.popup_form .form_row > .wpcf7-form-control-wrap, 
.popup_form .form_row > span {
	width: 100%;
}

.mfp-arrow-left:before {
	background-image: url('data:image/svg+xml,<svg width="9" height="14" viewBox="0 0 9 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.720179 6.35957L6.87047 0.214738C7.01272 0.0725003 7.20261 -0.00585938 7.40508 -0.00585938C7.60756 -0.00585938 7.79745 0.0725003 7.9397 0.214738L8.39262 0.667158C8.68734 0.961961 8.68734 1.4411 8.39262 1.73545L3.22807 6.89551L8.39835 12.0613C8.5406 12.2035 8.61914 12.3931 8.61914 12.5953C8.61914 12.7977 8.5406 12.9874 8.39835 13.1297L7.94543 13.582C7.80306 13.7243 7.61329 13.8026 7.41081 13.8026C7.20834 13.8026 7.01845 13.7243 6.8762 13.582L0.720179 7.43157C0.577593 7.28888 0.499278 7.09837 0.499727 6.89585C0.499278 6.69254 0.577593 6.50214 0.720179 6.35957Z" fill="%23092B38"/></svg>');
}

.mfp-arrow-right:before {
	background-image: url('data:image/svg+xml,<svg width="9" height="14" viewBox="0 0 9 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.27982 6.36934L2.12953 0.224503C1.98728 0.0822659 1.79739 0.00390625 1.59492 0.00390625C1.39244 0.00390625 1.20255 0.0822659 1.0603 0.224503L0.607379 0.676923C0.312656 0.971726 0.312656 1.45087 0.607379 1.74522L5.77193 6.90528L0.601648 12.0711C0.4594 12.2133 0.380859 12.4029 0.380859 12.6051C0.380859 12.8075 0.4594 12.9971 0.601648 13.1395L1.05457 13.5918C1.19694 13.734 1.38671 13.8124 1.58919 13.8124C1.79166 13.8124 1.98155 13.734 2.1238 13.5918L8.27982 7.44134C8.42241 7.29865 8.50072 7.10814 8.50027 6.90562C8.50072 6.70231 8.42241 6.51191 8.27982 6.36934Z" fill="%23092B38"/></svg>');
}

.mfp-arrow-left:after {
	background-image: url('data:image/svg+xml,<svg width="9" height="14" viewBox="0 0 9 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.720179 6.35957L6.87047 0.214738C7.01272 0.0725003 7.20261 -0.00585938 7.40508 -0.00585938C7.60756 -0.00585938 7.79745 0.0725003 7.9397 0.214738L8.39262 0.667158C8.68734 0.961961 8.68734 1.4411 8.39262 1.73545L3.22807 6.89551L8.39835 12.0613C8.5406 12.2035 8.61914 12.3931 8.61914 12.5953C8.61914 12.7977 8.5406 12.9874 8.39835 13.1297L7.94543 13.582C7.80306 13.7243 7.61329 13.8026 7.41081 13.8026C7.20834 13.8026 7.01845 13.7243 6.8762 13.582L0.720179 7.43157C0.577593 7.28888 0.499278 7.09837 0.499727 6.89585C0.499278 6.69254 0.577593 6.50214 0.720179 6.35957Z" fill="%23FF6919"/></svg>');
}

.mfp-arrow-right:after {
	background-image: url('data:image/svg+xml,<svg width="9" height="14" viewBox="0 0 9 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.27982 6.36934L2.12953 0.224503C1.98728 0.0822659 1.79739 0.00390625 1.59492 0.00390625C1.39244 0.00390625 1.20255 0.0822659 1.0603 0.224503L0.607379 0.676923C0.312656 0.971726 0.312656 1.45087 0.607379 1.74522L5.77193 6.90528L0.601648 12.0711C0.4594 12.2133 0.380859 12.4029 0.380859 12.6051C0.380859 12.8075 0.4594 12.9971 0.601648 13.1395L1.05457 13.5918C1.19694 13.734 1.38671 13.8124 1.58919 13.8124C1.79166 13.8124 1.98155 13.734 2.1238 13.5918L8.27982 7.44134C8.42241 7.29865 8.50072 7.10814 8.50027 6.90562C8.50072 6.70231 8.42241 6.51191 8.27982 6.36934Z" fill="%23FF6919"/></svg>');
}

.mfp-arrow:active {
	margin-top: 0;
}

button.mfp-close,
.mfp-close,
.mfp-image-holder .mfp-close, 
.mfp-iframe-holder .mfp-close {
	background: #3B6FB0;
	max-width: 48px;
	padding: 0;
	display: flex;
	width: 48px;
	height: 48px;
	top: 0;
	right: 0;
	-webkit-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
	opacity: 1;
	border-bottom-left-radius: 20px;
}

button.mfp-close:hover,
.mfp-close:hover,
.mfp-image-holder .mfp-close:hover, 
.mfp-iframe-holder .mfp-close:hover {
	background: #D22A5F;
}

.mfp-close:after, 
.mfp-close:before {
	content: '';
	background-image: url('data:image/svg+xml,<svg width="11" height="11" viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.72767 1.24231C10.1182 1.63284 10.1182 2.266 9.72767 2.65653L6.89886 5.48457L9.72712 8.31328C10.1176 8.7038 10.1176 9.33697 9.72712 9.72749C9.33659 10.118 8.70343 10.118 8.31291 9.72749L5.48464 6.89879L2.65615 9.72805C2.26562 10.1186 1.63246 10.1186 1.24193 9.72805C0.851407 9.33752 0.851407 8.70436 1.24193 8.31384L4.07043 5.48457L1.24249 2.65707C0.851966 2.26655 0.851966 1.63339 1.24249 1.24286C1.63301 0.852337 2.26618 0.852337 2.6567 1.24286L5.48464 4.07036L8.31345 1.24231C8.70398 0.85179 9.33714 0.85179 9.72767 1.24231Z" fill="%23FFFFFF"/></svg>');
	background-size: 21px;
	width: 21px;
	height: 21px;
	display: block;
	opacity: 1;
	top: 0;
	position: absolute;
	right: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	-webkit-transition: -webkit-transform 0.6s;
	transition: -webkit-transform 0.6s;
	transition: transform 0.6s;
	transition: transform 0.6s,-webkit-transform 0.6s;
}

.mfp-close:hover:after, 
.mfp-close:hover:before {
	cursor: pointer;
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

button.mfp-close,
.mfp-close,
.mfp-image-holder .mfp-close, 
.mfp-iframe-holder .mfp-close {
	display: flex;
	align-items: center;
	justify-content: end;
	font-size: 1px;
	color: #000;
	top: 0;
}

.mfp-inline-holder .mfp-close {
	top: -40px;
	right: -40px;
}

.mfp-close:active,
.mfp-iframe-holder .mfp-close:active {
	top: 0;
}

.mfp-inline-holder .mfp-close:active {
	top: -40px;
	right: -40px;
}

.mfp-close:after {
	background-image: url('data:image/svg+xml,<svg width="11" height="11" viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.72767 1.24231C10.1182 1.63284 10.1182 2.266 9.72767 2.65653L6.89886 5.48457L9.72712 8.31328C10.1176 8.7038 10.1176 9.33697 9.72712 9.72749C9.33659 10.118 8.70343 10.118 8.31291 9.72749L5.48464 6.89879L2.65615 9.72805C2.26562 10.1186 1.63246 10.1186 1.24193 9.72805C0.851407 9.33752 0.851407 8.70436 1.24193 8.31384L4.07043 5.48457L1.24249 2.65707C0.851966 2.26655 0.851966 1.63339 1.24249 1.24286C1.63301 0.852337 2.26618 0.852337 2.6567 1.24286L5.48464 4.07036L8.31345 1.24231C8.70398 0.85179 9.33714 0.85179 9.72767 1.24231Z" fill="%23FFFFFF"/></svg>');
	opacity: 0;
}

.mfp-close:hover:after {
	opacity: 1;
}

.mfp-close:hover:before {
	opacity: 0;
}

.popup_content {
	justify-content: center;
	align-items: center;
	display: flex;
	width: 100%;
	position: relative;
	flex-wrap: wrap;
	margin-left: auto;
	margin-right: auto;
	border-radius: 10px;
}

#popup_thank .popup_content {
	max-width: 314px;
}

.form_title {
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 23px;
	line-height: 28px;
	text-align: center;
	text-transform: uppercase;
	color: var(--black);
	margin: 32px auto;
}

.page_content h1 {
	margin-bottom: 32px;
	text-align: left;
	font-weight: 400;
}

.page_content h2, 
.page_content .h2 {
	font-size: 1.6rem;
	font-weight: 400;
}

.page_content b, 
.page_content strong {
	font-weight: 600;
}

.page_content small {
	font-size: 80%;
}

.mfp-close-btn-in .mfp-close {
	color: rgba(0,0,0, 0.6);
}

.page_content ol, 
.page_content ul, 
.page_content dl {
	padding-left: 16px;
	margin: 1rem 0;
}

.page_content ol {
	padding-left: 18px;
}

.page_content ul {
	padding-left: 15px;
}

.page_content {
	position: relative;
	width: 100%;
	display: flex;
	margin-bottom: 40px;
	color: var(--black);
	flex-wrap: wrap;
}

.page_content a {
	color: #d22a5f;
}

.other_content {
	font-size: 16px;
	line-height: 20px;
	color: var(--black);
	width: 100%;
}

body:not(.home, .single-product) .other_content {
	margin: 16px auto 40px;
}

body.single-product .other_content {
	margin: 20px auto 40px;
	overflow: hidden;
}

.other_content .h2,
.other_content h2,
.other_content .has-large-font-size {
	font-size: 24px!important;
	margin-top: 20px;
	line-height: 52px;
	color: #000;
	font-weight: 700;
}

.other_content .h2 strong,
.other_content h2 strong,
.other_content .has-large-font-size  strong {
	font-weight: 700;
}

.other_content .h3,
.other_content h3,
.other_content .has-medium-font-size {
	color: #000;
	font-weight: 600;
	font-size: 22px !important;
}

.other_content .wp-block-columns {
	margin-bottom: 0;
}

.wp-block-heading,
h2.wp-block-heading,
h3.wp-block-heading,
h4.wp-block-heading {
	width: 100%;
	font-family: var(--font-family);
	
	font-weight: 500;
}

.wp-block-heading,
.other_content p {
	margin-bottom: 16px;
}

.other_content iframe {
	margin-top: 25px;
	margin-bottom: 30px;
	border-radius: 10px;
	overflow: 10px;
}

.container {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

.row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}

.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	/*
	overflow: hidden;*/
}

.content {
	flex: 1 0 auto;
	position: relative;
}

footer,
.footer {
	flex: 0 0 auto;
}

.pwd_title {
	width: 100%;
	z-index: 11;
	position: relative;
	margin-bottom: 40px;
	font-family: var(--font-family);
	font-style: normal;
	font-weight: 700;
	font-size: 23px;
	line-height: 28px;
	text-transform: uppercase;
	color: var(--black);
}

.pwd_subtitle {
	font-size: 16px;
	line-height: 22px;
	color: #656565;
	text-align: center;
	width: 100%;
}

.header_menu_toggle,
.header_menu_close {
	display: none;
}

[data-animate-item] {
	opacity: 0;
}

[data-children-animate] > * {
	opacity: 0;
}

[data-animate] {
	opacity: 0;
	-webkit-animation-duration: 1.2s;
	animation-duration: 1.2s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

[data-animate].animated {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}

[data-animate=fade].animated {
	-webkit-animation-name: fade;
	animation-name: fade;
}

[data-animate=fadeLeft].animated {
	-webkit-animation-name: fadeLeft;
	animation-name: fadeLeft;
}

[data-animate=fadeRight].animated {
	-webkit-animation-name: fadeRight;
	animation-name: fadeRight;
}

[data-animate=fadeDown].animated {
	-webkit-animation-name: fadeDown;
	animation-name: fadeDown;
}

[data-animate=zoomIn].animated {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
}

@-webkit-keyframes fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100px, 0);
		transform: translate3d(0, 100px, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate3d(9, 43, 56);
		transform: translate3d(9, 43, 56);
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100px, 0);
		transform: translate3d(0, 100px, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate3d(9, 43, 56);
		transform: translate3d(9, 43, 56);
	}
}

@-webkit-keyframes fadeLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100px, 0, 0);
		transform: translate3d(100px, 0, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate3d(9, 43, 56);
		transform: translate3d(9, 43, 56);
	}
}

@keyframes fadeLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100px, 0, 0);
		transform: translate3d(100px, 0, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate3d(9, 43, 56);
		transform: translate3d(9, 43, 56);
	}
}

@-webkit-keyframes fadeRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100px, 0, 0);
		transform: translate3d(-100px, 0, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate3d(9, 43, 56);
		transform: translate3d(9, 43, 56);
	}
}

@keyframes fadeRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100px, 0, 0);
		transform: translate3d(-100px, 0, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate3d(9, 43, 56);
		transform: translate3d(9, 43, 56);
	}
}

@-webkit-keyframes fadeDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100px, 0);
		transform: translate3d(0, -100px, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate3d(9, 43, 56);
		transform: translate3d(9, 43, 56);
	}
}

@keyframes fadeDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100px, 0);
		transform: translate3d(0, -100px, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate3d(9, 43, 56);
		transform: translate3d(9, 43, 56);
	}
}

@-webkit-keyframes shakeX {
	from, to {
		-webkit-transform: translate3d(9, 43, 56);
		transform: translate3d(9, 43, 56);
	}
	20%, 60% {
		-webkit-transform: translate3d(-3px, 0, 0);
		transform: translate3d(-3px, 0, 0);
	}
	40%, 80% {
		-webkit-transform: translate3d(3px, 0, 0);
		transform: translate3d(3px, 0, 0);
	}
}

@keyframes shakeX {
	from, to {
		-webkit-transform: translate3d(9, 43, 56);
		transform: translate3d(9, 43, 56);
	}
	20%, 60% {
		-webkit-transform: translate3d(-3px, 0, 0);
		transform: translate3d(-3px, 0, 0);
	}
	40%, 80% {
		-webkit-transform: translate3d(3px, 0, 0);
		transform: translate3d(3px, 0, 0);
	}
}

@-webkit-keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.6);
		transform: scale(0.6);
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.6);
		transform: scale(0.6);
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.pwd_parallax {
	pointer-events: none;
	position: absolute;
	right: 0;
	left: 0;
	margin: auto;
	top: 0;
	z-index: 1;
	bottom: 0;
	display: flex;
	justify-content: center;
}

.pwd_parallax img {
	-webkit-transition: -webkit-transform 0.3s;
	transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
	margin: auto;
	width: 100%;
	min-width: min-content;
}

/* ПОГНАЛИ */

.single_page,
.archive_page,
.page main,
.archive main,
.single main,
.center_page,
.analysis_page,
#breadcrumbs,
.home_page,
.symptom_page,
header {
	z-index: 4;
	position: relative;
}

header {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 4px;
	gap: 4px;
	min-height: 56px;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(16px);
	border-radius: 16px;
	max-width: max-content;
	margin: 20px auto 32px;
	min-width: 900px;
	position: sticky;
	top: 0;
	z-index: 999;
	transition: all 0.2s ease-in-out;
	justify-content: center;
}

.header_wrapper {
	min-width: 900px;
	max-width: max-content;
}

.header_wrapper > .container > .row {
	justify-content: space-between;
}

.pwd_fix {
	/*
		border-top-right-radius: 0;
		border-top-left-radius: 0;
	*/
	width: 100%;
	min-width: 100%;
	border-radius: 0;
}

.header_logo {
	display: flex;
	align-items: center;
}

.header_logo img {
	max-height: 48px;
}

.header_logo_img {
	min-width: 55px;
}

.header_logo_title {
	font-weight: 600;
}

.header_logo_descriptions {
	font-size: 13px;
	line-height: 16px;
	color: rgba(255, 255, 255, 0.6);
	font-weight: 400;
}

.header_menu_wrapper {
	height: 100%;
}

ul.menu_other {
	gap: 16px;
	margin: auto 32px;
	display: flex;
	height: 100%;
}

ul.menu_other li {
	display: flex;
	align-items: center;
	position: relative;
	width: max-content;
}

ul.menu_other li a {
    line-height: 1;
	text-decoration: none;
	font-size: 16px;
	line-height: 22px;
}

ul.menu_other li a:hover,
ul.menu_other li.current-menu-item a {
    color: var(--yellow);
}

.pll-parent-menu-item ul.sub-menu li.current-lang,
ul.menu_other li.pll-parent-menu-item ul.sub-menu li.current-lang {
	display: none;
}

.pll-parent-menu-item a,
ul.menu_other li.pll-parent-menu-item a {
	display: flex;
	align-items: center;
	width: 100%;
	min-width: max-content;
	height: 100%;
	z-index: 2;
}

.pll-parent-menu-item > a:after,
ul.menu_other li.pll-parent-menu-item > a:after {
	content: '';
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 10L12 14L8 10' stroke='%23262626' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	width: 24px;
	height: 18px;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
}

.pll-parent-menu-item ul.sub-menu,
ul.menu_other li.pll-parent-menu-item ul.sub-menu {
	opacity: 0;
	z-index: -1;
	height: 1px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	align-items: center;
	display: flex;
}

.pll-parent-menu-item ul.sub-menu li,
ul.menu_other li.pll-parent-menu-item ul.sub-menu li {
	width: 100%;
	min-width: max-content;
	height: 100%;
	margin-left: 10px;
}

.pll-parent-menu-item,
ul.menu_other li.pll-parent-menu-item {
	width: 100%;
	max-width: max-content;
	margin-left: 0;
	margin-left: 6px;
	padding-left: 10px;
	padding-right: 4px;
}

.pll-parent-menu-item > a:after,
ul.menu_other li.pll-parent-menu-item > a:after {
	content: '';
	background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.6107 14.2777L6.43856 10.1055C6.09208 9.75905 6.33747 9.16663 6.82747 9.16663H15.1718C15.6618 9.16663 15.9072 9.75905 15.5607 10.1055L11.3886 14.2777C11.1738 14.4925 10.8255 14.4925 10.6107 14.2777Z' fill='white' fill-opacity='0.6'/%3E%3C/svg%3E%0A");
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	margin-left: 6px;
}

.pll-parent-menu-item ul.sub-menu:before,
ul.menu_other li.pll-parent-menu-item ul.sub-menu:before {
	content: '';
	background: #41465c;
	width: 100%;
	position: absolute;
	height: 40px;
	top: -30px;
	z-index: -1;
	border-top-right-radius: 12px;
	border-top-left-radius: 12px;
}

.header_btn {
	display: flex;
	align-items: center;
	gap: 4px;
}

.img_bg,
.img_bg_frame_bottom,
.img_bg_frame_top:after,
.img_bg_frame_top:before,
.img_bg_frame_top {
	display: flex;
	position: absolute;
	width: 100%;
	min-height: 820px;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin-left: auto;
	margin-right: auto;
	z-index: 3;
	height: 100vh;
}

.img_bg_frame_top:after,
.img_bg_frame_top:before {
	content: '';
	min-height: 410px;
	height: 50%;
}

.img_bg_frame_top:before {
	bottom: 0px;
	top: initial;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.12) 100%);
	transform: matrix(1, 0, 0, -1, 0, 0);
}

.img_bg_frame_top:after {
	top: 0px;
	bottom: initial;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.12) 100%);
}

.home_bg .img_bg_frame_top:before {
	background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.2) 100%);
}

.home_bg .img_bg_frame_top:after {
	background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.2) 100%);
}


.img_bg_frame_bottom {
	z-index: 1;
}

.img_bg_frame_bottom > img {
	object-fit: cover;
	height: auto;
	width: 100%;
}

.img_bg {
	display: flex;
	align-items: start;
	justify-content: center;
}

.archive_bg,
.img_bg > .container,
.img_bg_row {
	height: 100%;
	position: relative;
}

.img_bg_row > img {
	margin: auto;
	object-fit: cover;
	height: 100%;
	width: auto;
	z-index: 2;
}

.archive_bg > img,
.archive .img_bg_row > img {
	margin-right: 0;
	max-width: 450px;
	height: auto;
	margin-top: 0;
	position: absolute;
	right: 0;
	bottom: 0;
}

.archive_bg,
.img_bg,
header > .container {
	opacity: 0;
}

.img_loaded .archive_bg,
.img_loaded .img_bg,
.fonts_loaded header > .container {
	opacity: 1;
}

body.home:not(.html_loaded) {
	overflow: hidden;
}

/*
body.single-doctor:not(.doctor_loaded) {
	overflow: hidden;
}
*/
header > .container > .row {
	justify-content: space-between;
}

.hero_content {
	width: 100%;
}

.hero_title {
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	margin-top: 28px;
}

.hero_title h1,
.hero_title .h1 {
	text-align: center;
	justify-content: center;
	font-weight: 600;
	font-size: 40px;
	line-height: 48px;
}

.hero_title span {
	font-size: 18px;
	line-height: 24px;
	font-weight: 400;
}

/* есть повторения */
.symptom_related_items,
.analysis_items,
.hero_items {
	width: 100%;
	display: grid;
	grid-template-columns: 5fr 1fr;
	gap: 20px;
	justify-content: space-between;
}

.archive_item,
.symptom_related_item,
.analysis_item,
.hero_item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 16px;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(16px);
	border-radius: 16px;
	max-width: 252px;
	width: 252px;
	min-width: 252px;
}

.hero_item_img {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	padding: 8px;
	gap: 8px;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(16px);
	border-radius: 8px;
	margin-bottom: 16px;
}

.hero_item_img img {
	width: 24px;
	height: 24px;	
}

.hero_item_title {
	margin-bottom: 4px;
}

.archive_item_subtitle,
.symptom_related_item_subtitle,
.analysis_item_subtitle,
.hero_item_subtitle {
	font-size: 14px;
	line-height: 20px;
	color: rgba(255, 255, 255, 0.6);
	font-weight: 400;
}

.archive_item svg,
.symptom_related_item svg,
.analysis_item svg,
.hero_item svg {
	position: absolute;
	right: 16px;
	top: 16px;
}

.archive_item .archive_item_title,
.symptom_related_item .symptom_related_item_title,
.analysis_item .analysis_item_title {
	color: rgba(255, 255, 255, 1);
}

.archive_item:hover .archive_item_title,
.symptom_related_item:hover .symptom_related_item_title,
.analysis_item:hover .analysis_item_title,
.hero_item:hover .hero_item_title {
	color: var(--yellow);
}

.archive_item:hover svg,
.symptom_related_item:hover svg,
.analysis_item:hover svg,
.hero_item:hover svg {
	transform: rotate(90deg);
}

.archive_item:hover svg path,
.symptom_related_item:hover svg path,
.analysis_item:hover svg path,
.hero_item:hover svg path {
	fill: var(--yellow);
	fill-opacity: 1;
}

.search_content {
	width: 690px;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: center;
}

.section_search {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}

.search_tags {
	display: flex;
	gap: 9px;
	flex-wrap: wrap;
}

.search_tag {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 8px 12px;
	gap: 4px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(16px);
	border-radius: 10px;
}

.home main {
	height: calc(100vh - 108px);
}

.section_hero {
	height: calc(100% - 192px);
}

.search_forms {
	width: 100%;
	height: 54px;
	display: flex;
	gap: 20px;
}

.term_search_btn {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 16px 20px;
	gap: 8px;
	background: #FFFFFF;
	border-radius: 16px;
	width: 170px;
	min-width: 170px;
	border: none;
}

.term_search {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding-left: 16px;
	gap: 8px;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(16px);
	border-radius: 16px;
	width: 100%;
}

.term_search_input {
	padding: 16px;
	padding-left: 0;
	border: none;
	background: transparent;
	color: #fff;
	width: 100%;
}

.search_info {
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	display: flex;
	gap: 8px;
}

#breadcrumbs {
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	display: flex;
	align-items: center;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 12px;
}

#breadcrumbs > span {
	gap: 8px;
	display: flex;
	align-items: center;
}

#breadcrumbs a {
	display: flex;
}

#breadcrumbs a:hover {
	color: #fff;
}

#breadcrumbs a:hover svg path {
	fill-opacity: 1;
}

.single h1,
.symptom_article p,
.wp-block-paragraph,
.symptom_page h1 {
	margin-bottom: 20px;
}

.wp-block-paragraph {
	font-weight: 400;
	font-size: 18px;
	line-height: 24px;
	color: rgba(255, 255, 255, 0.8);
}

.single_tab_content {
	color: rgba(255, 255, 255, 0.8);
}

.single_tab_content p:last-child {
	margin: 0;
}

.single_tab_content h1,
.single_tab_content h2,
.single_tab_content h3 {
	color: rgba(255, 255, 255, 1);
}

.symptom_article {
	
}

.single_tab_buttons {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	padding: 4px;
	gap: 4px;
	width: 100%;
	min-height: 44px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(16px);
	border-radius: 16px;
	margin-bottom: 32px;
	justify-content: space-between;
}

.symptom_article {
	width: 100%;
}

.single_tab_button {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
	width: 16.666%;
	height: 100%;
	padding: 8px 12px;
	min-height: 36px;
	cursor: pointer;
}

.single_tab_button:hover {
	color: #FFFFFF;
}

.single_tab_button.active {
	background: rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	color: #FFFFFF;
}

.single_tab_button_responsive {
	display: none;
}

.single_tab_title {
	font-weight: 600;
	font-size: 20px;
	line-height: 28px;
	color: rgba(255, 255, 255, 1);
}

br[data-mce-bogus="1"] { 
	display: none; 
}

.single_tab_content {
	display: flex;
	gap: 32px;
}

.single_tab_content {
	display: flex;
	gap: 32px;
	width: 100%;
}

.single_tab_text {
	font-weight: 400;
	letter-spacing: -0.02em;  
	width: 100%;
}

.single-doctor article,
.single_tab_content .single_tab_other {
	width: 100%;
	min-width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	align-items: start;
}

.archive_posts_left,
.single-doctor .doctor_article_left,
.single_tab_other_left {
	width:calc(100% - 375px);
	min-width: calc(100% - 375px);
}

.single_tab_other_left .single_tab_text {
	margin-bottom: 32px;
}

.archive_map,
.single-doctor .doctor_article_right,
.single_tab_other_right {
	width: 343px;
	min-width: 343px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.single_tab_other_right_wrapper {
	padding: 16px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(16px);
	border-radius: 16px;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	min-width: 100%;
	width: 100%;
}

.star_list_items {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 8px;
	color: rgba(255, 255, 255, 1);
}

.symptom_doctor_description,
.star_list_description {
	color: rgba(255, 255, 255, 0.8);
}

.star_list_btn {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 12px 16px;
	gap: 6px;
	width: 100%;
	min-height: 46px;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(16px);
	border-radius: 12px;
}

.star_list_btn:hover {
	background: rgba(255, 255, 255, 1);
}

.analysis_norma_items,
.symptom_what_items,
.symptom_cause_items {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin-bottom: 32px;
	margin-top: 12px;
	width: 100%;
	counter-reset: myCounter;
}

.analysis_norma_items {
	grid-template-columns: repeat(2, 1fr);
}

.analysis_norma_notgrid.analysis_norma_items,
.symptom_what_notgrid.symptom_what_items,
.symptom_cause_notgrid.symptom_cause_items {
	grid-template-columns: repeat(1, 1fr);
	margin-top: 0;
	gap: 0;
	margin-bottom: 0;
}

.symptom_what_item,
.symptom_cause_item {
	display: flex;
	flex-direction: column;
	justify-content: end;
	align-items: flex-start;
	padding: 12px;
	gap: 16px;
	height: 112px;
	min-height: 112px;
	background: rgba(255, 0, 72, 0.12);
	backdrop-filter: blur(16px);
	border-radius: 16px;
	font-size: 14px;
	line-height: 20px;
	position: relative;
	color: rgba(255, 255, 255, 1);
}

.analysis_norma_items:not(.analysis_what_notgrid) .analysis_norma_item:hover:before,
.symptom_what_items:not(.symptom_what_notgrid) .symptom_what_item:hover:before,
.symptom_cause_items:not(.symptom_cause_notgrid) .symptom_cause_item:hover:before {
	transform: scale(1.2);
}

.star_list_item > span {
	position: relative;
	font-weight: 500;
	padding-left: 27px;
}

.symptom_what_item {
	font-weight: 500;
	font-size: 16px;
	line-height: 22px;
	align-items: start;
	background: rgba(46, 212, 124, 0.1);
	justify-content: start;
	overflow: hidden;
}

.star_list_item > span:after,
.star_list_item > span:before {
	content: '';
	background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.75 0L11.1133 6.3867L17.5 8.75L11.1133 11.1133L8.75 17.5L6.3867 11.1133L0 8.75L6.3867 6.3867L8.75 0Z' fill='url(%23paint0_linear_16986_1637)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_16986_1637' x1='8.75' y1='0' x2='8.75' y2='17.5' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='1' stop-color='white' stop-opacity='0.2'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
	width: 18px;
	height: 18px;
	background-size: cover;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	opacity: 1;
}

.star_list_item > span:after {
	background-image: url("data:image/svg+xml,	%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.75 0L11.1133 6.3867L17.5 8.75L11.1133 11.1133L8.75 17.5L6.3867 11.1133L0 8.75L6.3867 6.3867L8.75 0Z' fill='url(%23paint0_linear_16986_1637)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_16986_1637' x1='8.75' y1='0' x2='8.75' y2='17.5' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.9999' stop-color='%23FF801F'/%3E%3Cstop offset='1' stop-color='%23FF801F' stop-opacity='0.2'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
	opacity: 0;
}

#single_tab_what .star_list_item > span:after,
#single_tab_doctor .star_list_item > span:after {
	opacity: 1;
}

.star_list_item:hover {
	cursor: pointer;
}

.star_list_item:hover > span:before {
	opacity: 0;
}

.star_list_item:hover > span:after {
	opacity: 1;
}

.analysis_norma_notgrid .analysis_norma_item,
.symptom_what_notgrid .symptom_what_item,
.star_list_notgrid .star_list_item,
.symptom_cause_notgrid .symptom_cause_item {
	justify-content: start;
	align-items: flex-start;
	gap: 16px;
	height: auto;
	min-height: max-content;
	font-size: 16px;
	padding-left: 44px;
	border-radius: 8px;
	margin-bottom: 20px;
}

.star_list_notgrid .star_list_item {
	padding-left: 0;
}

.analysis_norma_description,
.symptom_what_description,
.star_list_description,
.symptom_doctor_description,
.symptom_cause_description {
	margin-bottom: 16px;
}

.symptom_what_notgrid .symptom_what_item:before {
	left: 12px;
}

.symptom_what_items .symptom_what_item:before {
	counter-increment: myCounter;
	content: counter(myCounter)' ';
	font-family: 'Seymour One';
	font-weight: 400;
	font-size: 48px;
	line-height: 100%;
	text-align: right;
	letter-spacing: -0.1em;
	color: rgba(255, 255, 255, 0.2);
	position: absolute;
	bottom: -10px;
	right: 16px;
}

.symptom_what_items.symptom_what_notgrid .symptom_what_item:before {
	right: inherit;
	left: 0;
	bottom: 0;
	font-size: 32px;
	top: 0;
	margin: 0;
	display: flex;
	align-items: center;
	position: relative;
}

.symptom_what_items.symptom_what_notgrid .symptom_what_item {
	padding-left: 16px;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	align-items: center;
}

.symptom_cause_item:before {
	content: '';
	background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.51074 0L11.2629 4.60751L15.3886 1.90983L14.0979 6.66726L19.0213 6.90983L15.1807 10L19.0213 13.0902L14.0979 13.3327L15.3886 18.0902L11.2629 15.3925L9.51074 20L7.75862 15.3925L3.63289 18.0902L4.92362 13.3327L0.000177383 13.0902L3.84074 10L0.000177383 6.90983L4.92362 6.66726L3.63289 1.90983L7.75862 4.60751L9.51074 0Z' fill='%23FF0048'/%3E%3C/svg%3E%0A");
	display: flex;
	width: 20px;
	height: 20px;
	top: 12px;
	position: absolute;
	background-repeat: no-repeat;
}

.symptom_cause_notgrid .symptom_cause_item:before {
	left: 12px;
}

.symptom_cause_items .symptom_cause_wrapper:nth-child(3) .symptom_cause_item,
.symptom_cause_items .symptom_cause_wrapper:nth-child(4) .symptom_cause_item,
.symptom_cause_items .symptom_cause_item:nth-child(3),
.symptom_cause_items .symptom_cause_item:nth-child(4) {
	background: rgba(255, 128, 31, 0.1);
}

.symptom_cause_items .symptom_cause_wrapper:nth-child(3) .symptom_cause_item:before,
.symptom_cause_items .symptom_cause_wrapper:nth-child(4) .symptom_cause_item:before,
.symptom_cause_items .symptom_cause_item:nth-child(3):before,
.symptom_cause_items .symptom_cause_item:nth-child(4):before {
	background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 0L12.1698 4.7616L17.0711 2.92893L15.2384 7.83018L20 10L15.2384 12.1698L17.0711 17.0711L12.1698 15.2384L10 20L7.83018 15.2384L2.92893 17.0711L4.7616 12.1698L0 10L4.7616 7.83018L2.92893 2.92893L7.83018 4.7616L10 0Z' fill='%23FF801F'/%3E%3C/svg%3E ");
}

.symptom_cause_items .symptom_cause_wrapper:nth-child(5) .symptom_cause_item,
.symptom_cause_items .symptom_cause_wrapper:nth-child(6) .symptom_cause_item,
.symptom_cause_items .symptom_cause_item:nth-child(5),
.symptom_cause_items .symptom_cause_item:nth-child(6) {
	background: rgba(15, 179, 250, 0.1);
}

.symptom_cause_items .symptom_cause_wrapper:nth-child(5) .symptom_cause_item:before,
.symptom_cause_items .symptom_cause_wrapper:nth-child(6) .symptom_cause_item:before,
.symptom_cause_items .symptom_cause_item:nth-child(5):before,
.symptom_cause_items .symptom_cause_item:nth-child(6):before {
	background-image: url("data:image/svg+xml,%3Csvg width='18' height='20' viewBox='0 0 18 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.66016 0L11.4952 5.08964L17.3204 5L14.3302 10L17.3204 15L11.4952 14.9104L8.66016 20L5.82516 14.9104L-9.82285e-05 15L2.99016 10L-9.82285e-05 5L5.82516 5.08964L8.66016 0Z' fill='%230FB3FA'/%3E%3C/svg%3E%0A");
}

.symptom_cause_items .symptom_cause_wrapper:nth-child(7) .symptom_cause_item,
.symptom_cause_items .symptom_cause_wrapper:nth-child(8) .symptom_cause_item,
.symptom_cause_items .symptom_cause_item:nth-child(7),
.symptom_cause_items .symptom_cause_item:nth-child(8) {
	background: rgba(0, 255, 4, 0.1);
}

.symptom_cause_items .symptom_cause_wrapper:nth-child(7) .symptom_cause_item:before,
.symptom_cause_items .symptom_cause_wrapper:nth-child(8) .symptom_cause_item:before,
.symptom_cause_items .symptom_cause_item:nth-child(7):before,
.symptom_cause_items .symptom_cause_item:nth-child(8):before {
	background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.51074 0L11.2629 4.60751L15.3886 1.90983L14.0979 6.66726L19.0213 6.90983L15.1807 10L19.0213 13.0902L14.0979 13.3327L15.3886 18.0902L11.2629 15.3925L9.51074 20L7.75862 15.3925L3.63289 18.0902L4.92362 13.3327L0.000177383 13.0902L3.84074 10L0.000177383 6.90983L4.92362 6.66726L3.63289 1.90983L7.75862 4.60751L9.51074 0Z' fill='%23FF0048'/%3E%3C/svg%3E%0A");
}

.symptom_cause_items .symptom_cause_wrapper:nth-child(9) .symptom_cause_item,
.symptom_cause_items .symptom_cause_wrapper:nth-child(10) .symptom_cause_item,
.symptom_cause_items .symptom_cause_item:nth-child(9),
.symptom_cause_items .symptom_cause_item:nth-child(10) {
	background: rgba(255, 227, 0, 0.1);
}

.symptom_cause_items .symptom_cause_wrapper:nth-child(9) .symptom_cause_item:before,
.symptom_cause_items .symptom_cause_wrapper:nth-child(10) .symptom_cause_item:before,
.symptom_cause_items .symptom_cause_item:nth-child(9):before,
.symptom_cause_items .symptom_cause_item:nth-child(10):before {
	background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 0L12.1698 4.7616L17.0711 2.92893L15.2384 7.83018L20 10L15.2384 12.1698L17.0711 17.0711L12.1698 15.2384L10 20L7.83018 15.2384L2.92893 17.0711L4.7616 12.1698L0 10L4.7616 7.83018L2.92893 2.92893L7.83018 4.7616L10 0Z' fill='%23FF801F'/%3E%3C/svg%3E ");
}

.symptom_cause_items .symptom_cause_wrapper:nth-child(11) .symptom_cause_item,
.symptom_cause_items .symptom_cause_wrapper:nth-child(12) .symptom_cause_item,
.symptom_cause_items .symptom_cause_item:nth-child(11),
.symptom_cause_items .symptom_cause_item:nth-child(12) {
	background: rgba(250, 15, 202, 0.1);
}

.symptom_cause_items .symptom_cause_wrapper:nth-child(11) .symptom_cause_item:before,
.symptom_cause_items .symptom_cause_wrapper:nth-child(12) .symptom_cause_item:before,
.symptom_cause_items .symptom_cause_item:nth-child(11):before,
.symptom_cause_items .symptom_cause_item:nth-child(12):before {
	background-image: url("data:image/svg+xml,%3Csvg width='18' height='20' viewBox='0 0 18 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.66016 0L11.4952 5.08964L17.3204 5L14.3302 10L17.3204 15L11.4952 14.9104L8.66016 20L5.82516 14.9104L-9.82285e-05 15L2.99016 10L-9.82285e-05 5L5.82516 5.08964L8.66016 0Z' fill='%230FB3FA'/%3E%3C/svg%3E%0A");
}

.symptom_related_items,
.analysis_items {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	width: 100%;
}

.service_items {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
	justify-content: space-between;
}

.archive_items {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	justify-content: space-between;
}

.archive_item {
	max-width: auto;
	width: auto;
	min-width: auto;
	min-height: 84px;
	justify-content: space-between;
	justify-content: end;
}

.analysis_item {
	max-width: auto;
	width: auto;
	min-width: auto;
	min-height: 94px;
	justify-content: space-between;
}

.symptom_related_item {
	max-width: auto;
	width: auto;
	min-width: auto;
	min-height: 84px;
	justify-content: end;
}

.single_tab_contents {
	width: 100%;
}

/*
	.star_list_wrapper.empty .symptom_target_item,
	.symptom_cause_wrapper.empty .symptom_target_item,
	.symptom_what_wrapper.empty .symptom_target_item {
	margin: 0;
	}
	
	.star_list_wrapper.empty .star_list_description,
	.symptom_cause_wrapper.empty .symptom_cause_description,
	.symptom_what_wrapper.empty .symptom_what_description {
	display: none;
	}
*/

.analysis_tab_content h2,
.analysis_tab_content h3,
.analysis_tab_content h4 {
	color: rgba(255, 255, 255, 1);
}

.analysis_tab_content {
	font-weight: 400;
	font-size: 18px;
	line-height: 24px;
	color: rgba(255, 255, 255, 0.8);
}

.analysis_norma_notgrid .analysis_norma_item {
	padding-left: 16px;
	flex-wrap: wrap;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.analysis_norma_item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	padding: 12px 16px;
	gap: 16px;
	min-height: 112px;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(16px);
	border-radius: 16px;
	height: 22px;
	color: #FFFFFF;
}

.analysis_norma_subtitle {
	font-weight: 400;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.7;
}

.single article {
	width: 100%;
	min-width: 100%;
	padding-bottom: 32px;
}

.center_contact_items {
	display: flex;
	flex-direction: column;
	padding: 16px;
	gap: 16px;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(16px);
	border-radius: 16px;
	margin-bottom: 32px;
}

.center_contact_item {
	display: flex;
	gap: 8px;
}

.center_contact_title {
	width: 50%;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.6);
	display: flex;
	align-items: center;
	gap: 8px;
}

.center_contact_title > span {
	min-width: max-content;
}

.center_contact_title:after {
	content: '';
	border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
	position: relative;
	width: 100%;
	height: 100%;
	margin-bottom: 8px;
}

.center_contact_text {
	width: 50%;
	color: #FFFFFF;
}

.doctor_edge_items,
.center_edge_items {
	display: grid;
	grid-template-columns: repeat(2, 1fr);	
	gap: 12px;
}

.doctor_edge_item,
.center_edge_item {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 12px;
	gap: 12px;
	background: rgba(15, 179, 250, 0.1);
	backdrop-filter: blur(16px);
	border-radius: 16px;
	color: #FFFFFF;
}

.archive_other_map,
.single_tab_other_map {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 8px;
	gap: 16px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(16px);
	border-radius: 16px;
	min-height: 548px;
	width: 100%;
	overflow: hidden;
	position: relative;
}

.map_yandex {
	width: 100%;
	height: 100%;
	border-radius: 8px;
	overflow: hidden;
}


.zoom-control__group {
	border-radius: 8px;
	box-shadow: 0 2px 6px 0 rgba(0,0,0,.2);
}

.button_basic-small__icon:hover .zoom-control__zoom-out-icon, .button_basic-small__icon:hover .zoom-control__zoom-in-icon {
	opacity: 1;
}

.zoom-control {
	position: fixed;
	right: 10px;
	top: 10px;
}

.zoom-control__zoom-in-icon {
	width: 100%;
	height: 100%;
	pointer-events: none;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(//yastatic.net/s3/front-maps-static/front-maps/_/a6d31171886d0ad3d16ceef693023cbb.svg);
	opacity: 0.5;
}

.zoom-control__zoom-out-icon {
	width: 100%;
	height: 100%;
	pointer-events: none;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(//yastatic.net/s3/front-maps-static/front-maps/_/bdbc1efd7151709018cd6d7aacca13c7.svg);
	opacity: 0.5;
}

.zoom-control__zoom-in:after {
	content: '';
	position: absolute;
	height: 2px;
	bottom: -1px;
	left: 6px;
	right: 6px;
	background-color: #f5f5f5;
	z-index: 1;
}

.zoom-control__zoom-in {
	position: relative;
}

.button_basic-small._pin-top {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.button_basic-small {
	width: 32px;
	position: relative;
	display: inline-block;
	margin: 0;
	padding: 0;
	outline: 0;
	border: 0;
	vertical-align: middle;
	text-align: left;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-image: none;
	height: 32px;
	background-color: #fff;
	border-radius: 8px;
	overflow: hidden;
	-webkit-transition: box-shadow .1s ease-out;
	-moz-transition: box-shadow .1s ease-out;
	-ms-transition: box-shadow .1s ease-out;
	-o-transition: box-shadow .1s ease-out;
	transition: box-shadow .1s ease-out;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

.button_basic-small._pin-bottom {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.ymaps-2-1-79-copyrights-pane,
.ymaps-2-1-79-ground-pane {
	-webkit-filter: brightness(0.5) grayscale(1);
	filter: brightness(0.5) grayscale(1);
}

.doctor_article_other {
	display: flex;
	gap: 32px;
}

.doctor_article_img {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 8px;
	gap: 16px;
	width: 300px;
	min-width: 300px;
	height: 300px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(16px);
	border-radius: 16px;
}

.doctor_items {
	gap: 32px;
	display: flex;
	flex-wrap: wrap;
}

.doctor_items .doctor_article_img {
	width: 200px;
	min-width: 200px;
	height: 200px;
	overflow: hidden;
}

.doctor_items .wp-block-paragraph {
	font-size: 16px;
	line-height: 22px;
}

.doctor_article_img img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.doctor_article_meta {
	display: flex;
	gap: 11px;
	flex-wrap: wrap;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.8);
	flex-direction: column;
}

.doctor_specializations {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 2px 8px;
	gap: 4px;
	height: 24px;
	min-height: 24px;
	background: rgba(15, 179, 250, 0.1);
	backdrop-filter: blur(16px);
	border-radius: 8px;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #0FB3FA;
	max-width: max-content;
}

.doctor_specialization:after {
	content: '•';
	margin-left: 4px;
}

.doctor_specializations .doctor_specialization:last-child:after {
	display: none;
}

.doctor_article_meta h1 {
	font-weight: 600;
	font-size: 24px;
	line-height: 32px;
	margin: 0;
	color: #ffffff;
}

.doctor_job {
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
	color: #ffffff;
}

.center_edge_items {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.single-doctor .doctor_article_left {
	gap: 32px;
	display: flex;
	flex-wrap: wrap;
}

.doctor_map {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 16px;
	gap: 8px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(16px);
	border-radius: 16px;
	width: 100%;
	position: relative;
}

.doctor_map_bg {
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	background: url(../img/basemap.png);
	opacity: 0.4;
	background-size: cover;
	width: 100%;
	height: 100%;
}

.doctor_map_address {
	font-weight: 400;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 8px;
}

.doctor_map_title {
	font-weight: 600;
	font-size: 20px;
	line-height: 28px;
	color: #FFFFFF;
}

.doctor_map_iframe {
	height: 400px;
	width: 100%;
}

.doctor_map_iframe .map_yandex > ymaps > ymaps {
	min-height: 400px;
}

.doctor_title {
	font-weight: 600;
	font-size: 20px;
	line-height: 28px;
}

body.single-doctor:not(.doctor_loaded) .doctor_map {
	overflow: hidden;
}

body.single-doctor:not(.doctor_loaded) .doctor_map_iframe {
	opacity: 0;
}

.doctor_article_right {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 16px;
	gap: 16px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(16px);
	border-radius: 16px;
}

.vizit_title {
	font-weight: 600;
	font-size: 20px;
	line-height: 28px;
}

.vizit_items {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 8px;
}

.vizit_item {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.footer_banner_wrapper {
	bottom: 20px;
	margin: auto;
	left: 0;
	right: 0;
	position: fixed;
}

.footer_banner {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 8px 16px;
	gap: 10px;
	background: rgba(15, 179, 250, 0.1);
	backdrop-filter: blur(16px);
	border-radius: 20px;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: -0.04em;
	color: rgba(255, 255, 255, 0.6);
	margin: auto;
	max-width: max-content;
}

.footer_banner_title {
	margin-bottom: 2px;
	font-weight: 600;
	font-size: 16px;
	line-height: 22px;
	color: #F2F2F2;
}

.glsr-default .glsr-review {
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(16px);
	border-radius: 16px;
	padding: 16px;
}

.glsr-default .glsr-review-title h3, .glsr-default .glsr-review-title h4, .glsr-default .glsr-review-title h5 {
	font-size: 18px;
	color: #fff;
}

.glsr-default .glsr-review-author .glsr-tag-value {
	font-style: italic;
}

.glsr-default .wp-block-button {
	margin: 0;
	width: 100%;
	text-align: center;
}

.glsr-default button.glsr-button {
	border-radius: 12px;
	width: 100%;
	min-width: 100%;
	margin: auto;
    text-align: center;
	justify-content: center;
	margin-top: 12px;
}

.glsr-default button.glsr-button:not(.wp-block-search__button) {
	margin-top: 12px;
}

.shortcode-site-reviews-form {
	width: 100%;
	min-width: 100%;
}

form.glsr-form .glsr-star-rating span[data-value] {
	height: 22px;
	width: 22px;
}

.glsr-default form.glsr-form input.glsr-input:active, .glsr-default form.glsr-form select.glsr-select:active, .glsr-default form.glsr-form textarea.glsr-textarea:active,
.glsr-default form.glsr-form input.glsr-input:focus, .glsr-default form.glsr-form select.glsr-select:focus, .glsr-default form.glsr-form textarea.glsr-textarea:focus,
.glsr-default form.glsr-form input.glsr-input, .glsr-default form.glsr-form select.glsr-select, .glsr-default form.glsr-form textarea.glsr-textarea {
	border: 1px solid;
	border-radius: 8px;
	font-size: 14px;
	min-height: 45px;
	height: 45px;
	box-shadow: none;
}

.glsr-default form.glsr-form textarea.glsr-textarea {
	padding-top: 12px!important;
}

.glsr-form-message.glsr-form-failed,
.glsr-default .glsr-form-success {
	font-size: 12px;
}

.glsr-default form.glsr-form .glsr-field-error {
	display: none;
}

.glsr-default form.glsr-form {
	gap: 7px;
}

.glsr-default form.glsr-form label.glsr-label {
	padding: 0;
	font-size: 13px;
	font-weight: 400;
}

.map_yandex_wrapper {
	height: 400px;
	width: 100%;
}

.archive_content {
	width: calc(100% - 510px);
	gap: 32px;
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 32px;
}

.archive_content .search_content {
	width: 100%;
	gap: 12px;
	justify-content: start;
}

.archive_content .search_forms {
	gap: 12px;
}

.archive_subtitle {
	font-weight: 400;
	font-size: 18px;
	line-height: 24px;
	color: rgba(255, 255, 255, 0.8);
}

.archive_title {
	font-weight: 600;
	font-size: 20px;
	line-height: 28px;
	margin-bottom: 12px;
}

.archive_posts,
.archive_popular {
	width: 100%;
}

.archive_page .row {
	justify-content: space-between;
	position: relative;
}

.archive_bg {/*
	position: sticky;
top: 75px;*/
z-index: -1;
position: absolute;
right: 0;
width: 510px;
bottom: 0;
top: 0;
}

.archive_bg > img {
	opacity: 0.7;
	position: relative;
	position: fixed;
	right: 0;
	z-index: -1;
	bottom: 0;
}
/*
	.archive .wrapper {
	overflow: visible;
	}
*/
.archive_content {
	padding-bottom: 32px;
}

.btn_text_responsive {
	display: none;
}

.archive_analysis .archive_banner,
header,
.archive_item,
.symptom_related_item,
.analysis_item,
.hero_item,
.term_search_btn,
.term_search,
.single_tab_buttons,
.single_tab_other_right_wrapper,
.symptom_what_item,
.symptom_cause_item,
.analysis_norma_item ,
.center_contact_items,
.doctor_edge_item,
.center_edge_item,
.archive_other_map,
.single_tab_other_map,
.doctor_article_img,
.doctor_map,
.doctor_article_right,
.glsr-default .glsr-review {
	border-radius: 16px;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.btn_invert input, a.btn_invert,
.btn_invert,
.btn input, .btn, a.btn,
.btn_small input, a.btn_small,
.btn_small,
.single_tab_button.active,
.star_list_btn,
.glsr-default button.glsr-button {
	border-radius: 12px;
}

.archive_search {
	width: 100%;
}

.archive_analysis .archive_item {
	min-height: 94px;
    justify-content: space-between;
}


.archive_analysis .archive_content {
	width:calc(100% - 375px);
	min-width: calc(100% - 375px);
}

.archive_analysis .archive_banner {
	width: 343px;
	min-width: 343px;
	display: flex;
	flex-wrap: wrap;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 16px;
	gap: 16px;
	background: rgba(255, 255, 255, 0.08);
	margin-top: 70px;
}

.archive_analysis .archive_items {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	justify-content: space-between;
}

.archive_analysis .archive_item {
	width: 100%;
	padding: 12px;
}

.archive_analysis .archive_item .archive_item_title {
	padding-right: 20px;
	line-height: 1.2;
	margin-bottom: 10px;
} 

.archive_analysis .archive_item svg {
	right: 12px;
	top: 12px;
}

.archive_analysis .archive_item .archive_item_subtitle {
	font-size: 12px;
	line-height: 16px;
	word-wrap: anywhere;
}

.archive_analysis .row {
	justify-content: space-between;
	position: relative;
	align-items: start;
}

.archive_banner_title {
	font-weight: 600;
	font-size: 20px;
	line-height: 28px;
}

.archive_banner_subtitle {
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	color: rgba(255, 255, 255, 0.8);
} 

.archive_analysis h1,
.archive_analysis .h1 {
	margin-bottom: 0;
}

.archive_category h1,
.archive_category .h1 {
	margin-bottom: 20px;
}

.archive_category .archive_content {
	width: 100%;
}

.archive_category .archive_items {
	grid-template-columns: repeat(4, 1fr);
}

.archive_category .single_tab_buttons {
	margin-bottom: 0;
}

.archive_category .archive_item {
	max-width: 100%;
	padding: 12px;
	gap: 16px;
	justify-content: start;
}

.archive_item_thumbnail {
	width: 100%;
	height: 150px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.archive_item_thumbnail img {
	object-fit: cover;
	min-height: 150px;
}

.archive_item_title {
	line-height: 22px;
}

.archive_other {
	justify-content: space-between;
	position: relative;
	align-items: start;
	display: flex;
	width: 100%;
	gap: 32px;
}

.archive_center .archive_items {
	grid-template-columns: repeat(1, 1fr);
	gap: 20px;
}

.archive_center .archive_item {
	flex-wrap: nowrap;
	flex-direction: row;
}

.archive_center .archive_item_thumbnail {
	height: 92px;
	max-width: 92px;
}

.archive_center .archive_item_thumbnail img {
	min-height: 92px;
}

.archive_center .archive_item_title {
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
}

.archive_center .archive_item svg {
	position: relative;
	left: 0;
	margin: 0;
	top: 0;
	bottom: 0;
	right: 0;
}

.archive_center .archive_item svg {
	transform: none;
}

.archive_center .archive_item:hover svg path {
	fill: white;
	fill-opacity: 0.4;
}

.archive_center .archive_item:hover img {
	-webkit-transform: scale(1.09);
	-ms-transform: scale(1.09);
	transform: scale(1.09);
}

.archive_center .archive_item_title {
	width: 100%;
}

.archive_contact_item {
	display: flex;
	gap: 8px;
	align-items: center;
}

.archive_item_contant {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 8px;
}


.archive_item_content {
	height: 100%;
	display: flex;
	align-items: start;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: space-between;
}

a.btn_center {
	position: absolute;
	right: 12px;
	max-width: max-content;
	bottom: 12px;
	padding: 7px 12px;
	font-size: 14px;
	max-height: 34px;
	border-radius: 8px;
}

.archive_center .archive_item:hover .archive_item_title {
	color: #ffffff;
}

.search_forms_responsive {
	display: none;
}

/* Пока скрываем */

.header_login {
	display: none!important;
}

.search_open .search_forms_responsive {
	display: flex;
	position: absolute;
	top: 66px;
	left: 0;
	right: 0;
}

.search_open .search_forms_responsive .term_search {
	background: #282e49;
}

body.search .img_bg, 
body.search .img_bg_frame_bottom, 
body.search .img_bg_frame_top::after, 
body.search .img_bg_frame_top::before, 
body.search .img_bg_frame_top {
	min-height: 100%;
	height: 100%;
}

.archive main {
	padding-bottom: 30px; 
}

.post-type-archive-doctor .archive_items {
	grid-template-columns: repeat(1, 1fr);
}

.post-type-archive-doctor .archive_content {
	width: 100%;
}

.post-type-archive-doctor .archive_bg {
	opacity: 0;
}

.search .archive_category h1 {
	margin-bottom: 0;
}

.header_invert_white,
.header_invert_black {
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
}

.header_invert_black {
	opacity: 1;
}

.header_invert_white {
	opacity: 0;
}

.html_white .header_invert_white {
	opacity: 1;
}

.html_white .header_invert_black {
	opacity: 0;
}

.html_black .header_invert_white {
	opacity: 0;
}

.html_black .header_invert_black {
	opacity: 1;
}

/* Цвета фона */

.html_white body {
	color: #092b38;
	background: #fff;
}

.html_white .home_bg .img_bg_frame_top::before {
	background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.2) 100%);
}

.html_white .home_bg .img_bg_frame_top::after {
	background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.2) 100%);
}

.html_white .btn_small input, 
.html_white a.btn_small,
.html_white .btn_small {
	background: rgba(9, 43, 56, 0.12);
}

.html_white .btn_invert input, 
.html_white a.btn_invert,
.html_white .btn_invert {
	background: rgba(9, 43, 56, 0.12);
}

.html_white .btn:hover input, 
.html_white .btn:hover, 
.html_white a.btn:hover {
	background: rgba(9, 43, 56, 0.12);
}

.html_white .btn_small:hover input, .html_white .btn_small:hover, .html_white a.btn_small:hover {
	background: rgba(9, 43, 56, 1);
}

.html_white header {
	background: rgba(9, 43, 56, 0.12);
}

.html_white .header_logo_descriptions {
	color: rgba(9, 43, 56, 0.6);
}

.html_white .archive_item,
.html_white .symptom_related_item,
.html_white .analysis_item,
.html_white .hero_item {
	background: rgba(9, 43, 56, 0.12);
}

.html_white .hero_item_img {
	background: rgba(9, 43, 56, 0.08);
}

.html_white .archive_item_subtitle,
.html_white .symptom_related_item_subtitle,
.html_white .analysis_item_subtitle,
.html_white .hero_item_subtitle {
	color: rgba(9, 43, 56, 0.6);
}

.html_white .archive_item .archive_item_title,
.html_white .symptom_related_item .symptom_related_item_title,
.html_white .analysis_item .analysis_item_title {
	color: rgba(9, 43, 56, 1);
}

.html_white .search_tag {
	background: rgba(9, 43, 56, 0.08);
}

.html_white .term_search {
	background: rgba(9, 43, 56, 0.12);
}

.html_white #breadcrumbs {
	color: rgba(9, 43, 56, 0.6);
}

.html_white .wp-block-paragraph {
	color: rgba(9, 43, 56, 0.8);
}

.html_white .single_tab_content {
	color: rgba(9, 43, 56, 0.8);
}

.html_white .single_tab_content h1,
.html_white .single_tab_content h2,
.html_white .single_tab_content h3 {
	color: rgba(9, 43, 56, 1);
}

.html_white .single_tab_buttons {
	background: rgba(9, 43, 56, 0.08);
}

.html_white .single_tab_button {
	color: rgba(9, 43, 56, 0.6);
}

.html_white .single_tab_button.active {
	background: rgba(9, 43, 56, 0.2);
}

.html_white .single_tab_title {
	color: rgba(9, 43, 56, 1);
}

.html_white .single_tab_other_right_wrapper {
	background: rgba(9, 43, 56, 0.08);
}

.html_white .star_list_items {
	color: rgba(9, 43, 56, 1);
}

.html_white .symptom_doctor_description,
.html_white .star_list_description {
	color: rgba(9, 43, 56, 0.8);
}

.html_white .star_list_btn {
	background: rgba(9, 43, 56, 0.12);
}

.html_white .symptom_what_item,
.html_white .symptom_cause_item {
	color: rgba(9, 43, 56, 1);
}

.html_white .symptom_what_items .symptom_what_item:before {
	color: rgba(9, 43, 56, 0.2);
}

.html_white .analysis_tab_content h2,
.html_white .analysis_tab_content h3,
.html_white .analysis_tab_content h4 {
	color: rgba(9, 43, 56, 1);
}

.html_white .analysis_tab_content {
	color: rgba(9, 43, 56, 0.8);
}

.html_white .analysis_norma_item {
	background: rgba(9, 43, 56, 0.12);
	color: rgba(9, 43, 56, 0.8);
}
 
.html_white .analysis_norma_subtitle {
	color: rgba(9, 43, 56, 0.6);
}

.html_white .doctor_map_bg {
  opacity: 0;
}

.html_white .center_contact_items {
	background: rgba(9, 43, 56, 0.12);
}

.html_white .center_contact_title {
	color: rgba(9, 43, 56, 0.6);
}

.html_white .center_contact_title:after {
	border-bottom: 1px dashed rgba(9, 43, 56, 0.12);
}

.html_white .archive_other_map,
.html_white .single_tab_other_map {
	background: rgba(9, 43, 56, 0.08);
}

.html_white .doctor_article_img {
	background: rgba(9, 43, 56, 0.08);
}

.html_white .doctor_article_meta {
	color: rgba(9, 43, 56, 0.8);
}

.html_white .doctor_map {
	background: rgba(9, 43, 56, 0.08);
}

.html_white .doctor_map_address {
	color: rgba(9, 43, 56, 0.8);
}

.html_white .doctor_article_right {
	background: rgba(9, 43, 56, 0.08);
}

.html_white .footer_banner {
	color: rgba(9, 43, 56, 0.6);
}

.html_white .glsr-default .glsr-review {
	background: rgba(9, 43, 56, 0.12);
}

.html_white .archive_subtitle {
	color: rgba(9, 43, 56, 0.8);
}

.html_white .archive_analysis .archive_banner {
	background: rgba(9, 43, 56, 0.08);
}

.html_white .archive_banner_subtitle {
	color: rgba(9, 43, 56, 0.8);
} 

.html_white .archive_item_thumbnail {
	background: rgba(9, 43, 56, 0.08);
}

.html_white .hero_item svg path,
.html_white .search_info svg path,
.html_white .term_search_icon svg path,
.html_white .btn svg path {
	fill: #092b38!important;
}

.html_white .btn:hover svg path {
	fill: #fff!important;
}

.html_white .btn_input:hover input {
	color: var(--white);
}

.html_white .btn_invert input, 
.html_white .a.btn_invert,
.html_white .btn_invert {
	color: #092b38;
}


.html_white .btn:hover input,
.html_white .btn:hover, 
.html_white a.btn:hover {
	color: #092b38;
}

.html_white .term_search_input {
	color: #092b38;
}

.html_white #breadcrumbs a:hover {
	color: #092b38;
}

.html_white .button_basic-small {
	background-color: #ffffff;
}

.html_white .glsr-default .glsr-review-title h3,
.html_white .glsr-default .glsr-review-title h4, 
.html_white .glsr-default .glsr-review-title h5 {
	color: #092b38;
}

.html_white .popup_form {
	background: var(--white);
}

.html_white .pll-parent-menu-item > a:after,
.html_white ul.menu_other li.pll-parent-menu-item > a:after {
	background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.6107 14.2777L6.43856 10.1055C6.09208 9.75905 6.33747 9.16663 6.82747 9.16663H15.1718C15.6618 9.16663 15.9072 9.75905 15.5607 10.1055L11.3886 14.2777C11.1738 14.4925 10.8255 14.4925 10.6107 14.2777Z' fill='%23092b38' fill-opacity='1'/%3E%3C/svg%3E%0A");
}

.html_white .star_list_item > span:before {
	background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.75 0L11.1133 6.3867L17.5 8.75L11.1133 11.1133L8.75 17.5L6.3867 11.1133L0 8.75L6.3867 6.3867L8.75 0Z' fill='url(%23paint0_linear_16986_1637)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_16986_1637' x1='8.75' y1='0' x2='8.75' y2='17.5' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23092b38'/%3E%3Cstop offset='1' stop-color='%23092b38' stop-opacity='1'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
}

.html_white .archive_center .archive_item:hover svg path {
	fill: #092b38;
}

.html_white .form_title {
	color:#092b38;
}

.html_white .page_content {
	color:#092b38;
}

.html_white .other_content {
	color:#092b38;
}

.html_white .pwd_title {
	color:#092b38;
}

.html_white .term_search_btn {
	background: rgba(9, 43, 56, 0.46);
	color: #fff;
}

.html_white .scroll_top::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='48px' viewBox='0 -960 960 960' width='48px' fill='%23092b38'%3E%3Cpath d='M452-244v-400L282-477l-42-43 241-241 241 241-42 42-168-168v402h-60Z'/%3E%3C/svg%3E");
}


.html_white .archive_item:hover svg path,
.html_white .symptom_related_item:hover svg path,
.html_white .analysis_item:hover svg path,
.html_white .hero_item:hover svg path {
	fill: #075370;
}

.html_white ul.menu_other li a:hover,
.html_white ul.menu_other li.current-menu-item a,
.html_white .archive_item:hover .archive_item_title, 
.html_white .symptom_related_item:hover .symptom_related_item_title, 
.html_white .analysis_item:hover .analysis_item_title, 
.html_white .hero_item:hover .hero_item_title {
	color: #075370;
}

.html_white .pll-parent-menu-item ul.sub-menu:before, 
.html_white ul.menu_other li.pll-parent-menu-item ul.sub-menu:before {
	background: #8496a4;
}

.html_white .pll-parent-menu-item a:hover, 
.html_white ul.menu_other li.pll-parent-menu-item a:hover {
	color: #fff;
}

.html_white.search_open .search_forms_responsive .term_search {
	background: #dbe0e7;
}

.html_white .scroll_top svg.scroll_circle path {
	stroke: #075370;
}

.html_white .img_bg_frame_top:before {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.12) 100%);
}

.html_white .img_bg_frame_top:after {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.12) 100%);
}

.html_white .home_bg .img_bg_frame_top:before {
	background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.2) 100%);
}

.html_white .home_bg .img_bg_frame_top:after {
	background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.2) 100%);
}

.html_white .img_bg_frame_bottom {
	opacity: 0;
}

.html_white #breadcrumbs svg path {
	fill: rgba(9, 43, 56, 0.6);
}

.html_white .doctor_job,
.html_white .doctor_article_meta h1 {
	color: #092b38;
}

.html_white .doctor_map_title,
.html_white .footer_banner_title {
  color: #092b38;
}

.html_white .footer_banner svg path, 
.html_white .center_contact_title svg path, 
.html_white .archive_item svg path, 
.html_white .symptom_related_item svg path, 
.html_white .analysis_item svg path, 
.html_white .hero_item svg path {
	fill: #092b38;
}

.html_white .archive_item:hover svg path, 
.html_white .symptom_related_item:hover svg path, 
.html_white .analysis_item:hover svg path, 
.html_white .hero_item:hover svg path {
	fill: #075370!important;
}


.html_white .btn_invert:hover input, 
.html_white a.btn_invert:hover,
.html_white .btn_invert:hover {
	color: #fff;
	background: rgba(9, 43, 56, 1);
}

.html_white .ymaps-2-1-79-copyrights-pane,
.html_white .ymaps-2-1-79-ground-pane {
	-webkit-filter: brightness(1) grayscale(1);
	filter: brightness(1) grayscale(1);
}

.html_white .doctor_edge_item, 
.html_white .center_edge_item {
	background: rgba(9, 43, 56, 0.1);
	color: rgba(9, 43, 56, 0.6);
}

.html_white .center_contact_text {
	color: #092b38;
}