@font-face {
	font-family: 'Open Sans';
	font-weight: 400;
	font-style: normal;
	src: url(/fonts/opensans-regular.woff2) format('woff2');
}

@font-face {
	font-family: 'Open Sans';
	font-weight: 600;
	font-style: normal;
	src: url(/fonts/opensans-semibold.woff2) format('woff2');
}

* {
	font-family: 'Open Sans', sans-serif;
	text-decoration: none;
	color: #333;
	list-style-type: none;
	padding: 0;
	margin: 0;
	font-size: 20px;
}

body {
	background-color: #ffffff;
}

body.lock {
	overflow: hidden;
}

h1 {
	font-size: 24px;
	line-height: 30px;
	margin: 0 0 30px 0;
	font-weight: 600;
}

h2 {
	font-size: 22px;
	line-height: 28px;
	margin: 0 0 20px 0;
	font-weight: 600;
}

h3 {
	font-size: 20px;
	line-height: 20px;
	margin: 0 0 22px 0;
	font-weight: 600;
}

h4 {
	font-size: 18px;
	line-height: 18px;
	margin: 0 0 20px 0;
	font-weight: 600;
}

h5 {
	font-size: 16px;
	line-height: 16px;
	margin: 0 0 20px 0;
	font-weight: 600;
}

h6 {
	font-size: 14px;
	line-height: 16px;
	margin: 0;
	font-weight: 600;
}

p {
	font-size: 14px;
	margin-bottom: 30px;
}

address {
	font-style: normal;
}

.linc {
	color: #0088d2;
}

.gray-bacground-box {
	padding: 20px 20px;
	background-color: #efefef;
	border-radius: 16px;
}

.border-radius-s {
	border: 1px solid #d5d5d5;
	border-radius: 8px;
	padding: 20px;
	background-color: #fff;
}

.border-radius-b {
	border: 1px solid #d5d5d5;
	border-radius: 16px;
	padding: 20px;
	background-color: #fff;
}

.border-line-lite {
	display: flex;
	height: 1px;
	background-color: #d5d5d5;
	margin-top: 10px;
	margin-bottom: 10px;
}

/* BUTTON */

/* Голубая кнопка */

.blu-button {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #2eb6ff;
	border: 2px solid #2eb6ff;
	height: 58px;
	border-radius: 8px;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	padding: 0 20px;
	color: #fff;
	cursor: pointer;
	transition: background-color 0.1s ease 0s;
}

.blu-button:hover {
	background-color: #49c0ff;
	border: 2px solid #49c0ff;
}

.white-button {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #ffffff;
	border: 2px solid #7dd1ff;
	height: 58px;
	border-radius: 8px;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	padding: 0 20px;
	color: #4f4f4f;
	cursor: pointer;
	transition: background-color 0.1s ease 0s;
}

.white-button:hover {
	background-color: #eee;
	border: 2px solid #2eb6ff;
}

.info-button {
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid #2eb6ff;
	height: 58px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	padding: 0 20px;
	cursor: pointer;
	transition: background-color 0.1s ease 0s;
}

.info-button:hover {
	background-color: #ececec;
}

/* Текстовая кнопка */

.text-button {
	color: #0088d2;
	margin-right: 10px;
	cursor: pointer;
}

/* Овальная кнопка */

.oval-buton {
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid #7dd1ff;
	/* background-color: #fafafa; */
	color: #4f4f4f;
	height: 40px;
	border-radius: 32px;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	padding: 0 20px;
	cursor: pointer;
	transition: background-color 0.1s ease 0s;
}

.oval-buton:hover {
	background-color: #ececec;
}



.close-button {
	display: block;
	position: relative;
	width: 30px;
	height: 20px;
}

.close-button::before,
.close-button::after {
	content: '';
	background-color: black;
	position: absolute;
	width: 100%;
	height: 2px;
	left: 0;
	transition: all 0.3s ease 0s;
}

.close-button::before {
	transform: rotate(45deg);
	top: 9px;
}

.close-button::after {
	transform: rotate(-45deg);
	bottom: 9px;
}

.top-nubex {
	display: none;
}

/* DDM */

.ddm__shadow {
	visibility: hidden;
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	margin-left: 0;
	background-color: rgb(0 0 0 / 0);
	/* backdrop-filter: blur(0); */
	transition: all 0.2s ease 0s;
	overflow: auto;
	z-index: 100;
}

.ddm__shadow.active {
	visibility: visible;
	background-color: rgb(0 0 0 / 20%);
	/* backdrop-filter: blur(5px); */
}

.ddm {
	position: fixed;
	top: 0;
	right: -100%;
	width: calc((100% - 1200px) / 2 + 600px);
	height: 100%;
	margin-left: 0;
	background-color: #fff;
	transition: all 0.2s ease-in-out;
	overflow: auto;
	z-index: 110;
}

.ddm.active {
	right: 0%;
	box-shadow: 0 4px 32px rgba(36, 36, 36, .1), 0 0 1px rgba(36, 36, 36, .2);
}


/* КРЕСТ ЗАКРЫТЬ ОБЩИЙ*/

.close-button-all_conteiner {
	position: fixed;
	height: 60px;
	width: 60px;
	top: 20px;
	right: calc(-100% + 60px);
	background-color: #ffffff;
	border-radius: 50%;
	box-shadow: 6px 6px 26px rgba(36, 36, 36, .2), 0 0 1px rgba(36, 36, 36, .2);
	transition: all 0.2s ease 0s;
	cursor: pointer;
}

.close-button-all_conteiner.active {
	right: calc((100% - 1200px) / 2 + 589px);
}

.close-button-all {
	position: absolute;
	top: 19px;
	right: 15px;
	display: block;
	width: 30px;
	height: 20px;
}

.close-button-all::before {
	content: '';
	background-color: black;
	position: absolute;
	width: 100%;
	height: 2px;
	left: 0;
	transition: all 0.3s ease 0s;
	transform: rotate(45deg);
	top: 9px;
}

.close-button-all::after {
	content: '';
	background-color: black;
	position: absolute;
	width: 100%;
	height: 2px;
	left: 0;
	transition: all 0.3s ease 0s;
	transform: rotate(-45deg);
	top: 9px;
}

/* Стрелка вернуться ОБЩИЙ*/

.back-button-all_conteiner {
	position: fixed;
	height: 60px;
	width: 60px;
	top: 20px;
	right: calc(-100% + 60px);
	background-color: #ffffff;
	border-radius: 50%;
	box-shadow: 6px 6px 26px rgba(36, 36, 36, .2), 0 0 1px rgba(36, 36, 36, .2);
	transition: all 0.2s ease 0s;
	cursor: pointer;
}

.back-button-all_conteiner.active {
	right: calc((100% - 1200px) / 2 + 589px);
}

.back-button-all span {
	position: absolute;
	background-color: black;
	left: 2px;
	width: 26px;
	height: 2px;
	top: 9px;
	transition: all 0.3s ease 0s;
}

.back-button-all {
	position: absolute;
	top: 19px;
	right: 15px;
	display: block;
	width: 30px;
	height: 20px;
}

.back-button-all::before {
	content: '';
	background-color: black;
	position: absolute;
	width: 19px;
	height: 2px;
	left: -1px;
	transition: all 0.3s ease 0s;
	transform: rotate(45deg);
	top: 15px;
}

.back-button-all::after {
	content: '';
	background-color: black;
	position: absolute;
	width: 19px;
	height: 2px;
	left: -1px;
	transition: all 0.3s ease 0s;
	transform: rotate(-45deg);
	top: 3px;
}

/* HEADER */

.header {
	background-color: #ffffff;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, .26), 0 0 1px rgba(36, 36, 36, .2);
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 40;
}

.header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
}

.header__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.header__bottom {
	position: relative;
	display: flex;
	justify-content: space-between;
	height: 58px;
	align-items: center;
}

.logo {
	background-size: cover;
	height: 35px;
	width: 140px;
	font-size: 25px;
	font-weight: 600;
	text-transform: uppercase;
	color: #00a5ff;
	line-height: 32px;
	margin: 0;
}

.logo span {
	font-size: 25px;
	font-weight: 600;
	text-transform: uppercase;
	color: #c3c3c3;
}

.logo a {
	font-size: 32px;
	font-weight: 600;
}

.main-menu-mobile {
	display: none;
}

.main-menu {
	margin-left: 30px;
}

.main-menu__sections {
	display: grid;
	grid-template-columns: repeat(7, auto);
	column-gap: 30px;
}

.main-menu__sections li {
	margin-bottom: 0;
	position: relative;
}

.main-menu__sections__linc {
	padding: 20px 0;
	font-size: 20px;
	color: #0088d2;
}

/* MAIN */

.main {
	margin-top: 58px;
}

.main__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* КАТАЛОГ */

.catalog {
	margin-bottom: 60px;
}

/* ЗАГОЛОВОК СТРАНИЦЫ */

.title {
	padding-top: 40px;
}

.titl-region {
	display: grid;
	margin-bottom: 10px;
	grid-template-areas:
		"A A A A"
		"B B B B"
		"C C C C"
}

.titl-region h1 {
	margin: 0;
	grid-area: A;
}


/* УТОЧНИТЬ АДРЕС */

.region_serch__chois {
	display: flex;
	grid-area: B;
	margin-top: 20px;
	align-items: center;
	gap: 20px;
}

.oval-buton.region_serch {

	max-width: 170px;
}

.region_serch__menu {
	display: flex;
	flex-direction: column;
	width: 560px;
	margin-top: 80px;
	margin-left: 20px;
	margin-right: 20px;
}

.region_serch__city {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.region_serch__city-name {
	font-size: 24px;
	font-weight: 600;
	margin-right: 40px;
}

.region_serch__city-change {
	/* line-height: 32px; */
	min-width: 150px;
}

.region_serch__location {
	margin-top: 30px;
}

.region_serch__tabs {
	display: flex;
	margin-bottom: 30px;
}

.region_serch__tab {
	margin-right: 20px;
	display: inline-flex;
	line-height: 22px;
	cursor: pointer;
}

.region_serch__tab::before {
	content: '';
	width: 20px;
	height: 20px;
	border-radius: 1em;
	border: 2px solid #2eb6ff;
	margin-right: 10px;
}

.region_serch__tab.active::before {
	background-color: #2eb6ff;
}



/* Поиск метро */

.sersh-metro-input__region {
	font-size: 20px;
	border: none;
	outline: none;
	padding: 16px;
	border-radius: 8px;
	flex-grow: 1;
	width: 1%;
	transition: box-shadow 0.3s ease 0s;
	border: 2px solid #eee;
}

.sersh-metro {
	display: flex;
	height: 62px;
	width: 100%;
	background-color: #fff;
	border-radius: 8px;
}

.sersh-metro-input {
	font-size: 20px;
	border: none;
	outline: none;
	padding: 16px;
	border-radius: 8px;
	flex-grow: 1;
	width: 1%;
	border: 1px solid #b0b0b0;
	transition: box-shadow 0.3s ease 0s;
}

.sersh-metro-input:focus {
	box-shadow: 4px 4px 12px rgba(0, 0, 30, .13), 0 0 1px rgba(36, 36, 36, .2);
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.sersh-metro-results {
	display: none;
}

.sersh-metro-results__block {
	display: flex;
	flex-direction: column;
	width: 100%;
	background-color: #ffffff;
	box-shadow: 4px 4px 12px rgba(0, 0, 30, .13), 0 0 1px rgba(36, 36, 36, .2);
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	padding-bottom: 8px;
}

.sersh-metro__area:focus-within .sersh-metro-results {
	display: block;
}

.sersh-metro-results__list {
	padding: 14px 20px;
	font-size: 20px;
	border-top: 1px solid #dadada;
	transition: background-color 0.1s ease 0s;
	background-color: #fff;
}

.sersh-metro-results__list:hover {
	color: #0077ff;
	background-color: #f7f7f7;
}

.sersh-metro__intro-text {
	margin-bottom: 20px;
	margin-top: 20px;
	font-size: 18px;
	font-weight: 400;
}

/* Поиск адрес */

.sersh-adress-input__region {
	font-size: 20px;
	border: none;
	outline: none;
	padding: 16px;
	border-radius: 8px;
	flex-grow: 1;
	width: 1%;
	transition: box-shadow 0.3s ease 0s;
	border: 2px solid #eee;
}

.sersh-adress {
	display: flex;
	height: 62px;
	width: 100%;
	background-color: #fff;
	border-radius: 8px;
}

.sersh-adress-input {
	font-size: 20px;
	border: none;
	outline: none;
	padding: 16px;
	border-radius: 8px;
	flex-grow: 1;
	width: 1%;
	border: 1px solid #b0b0b0;
	transition: box-shadow 0.3s ease 0s;
}

.sersh-adress-input:focus {
	box-shadow: 4px 4px 12px rgba(0, 0, 30, .13), 0 0 1px rgba(36, 36, 36, .2);
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;

}

.sersh-adress-results {
	display: none;
}

.sersh-adress-results__block {
	display: flex;
	flex-direction: column;
	width: 100%;
	background-color: #ffffff;
	box-shadow: 4px 4px 12px rgba(0, 0, 30, .13), 0 0 1px rgba(36, 36, 36, .2);
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	padding-bottom: 8px;
}

.sersh-adress__area:focus-within .sersh-adress-results {
	display: block;
}

.sersh-adress-results__list {
	padding: 14px 20px;
	font-size: 20px;
	border-top: 1px solid #dadada;
	transition: background-color 0.1s ease 0s;
	background-color: #fff;
}

.sersh-adress-results__list:hover {
	color: #0077ff;
	background-color: #f7f7f7;
}

.sersh-adress__intro-text {
	margin-bottom: 20px;
	margin-top: 20px;
	font-size: 18px;
	font-weight: 400;
}

/* Поиск города */

.city_serch__menu {
	display: flex;
	flex-direction: column;
	width: 560px;
	margin-top: 80px;
	margin-left: 20px;
	margin-right: 20px;
}

.sersh-city-input__region {
	font-size: 20px;
	border: none;
	outline: none;
	padding: 16px;
	border-radius: 8px;
	flex-grow: 1;
	width: 1%;
	transition: box-shadow 0.3s ease 0s;
	border: 2px solid #eee;
}

.sersh-city {
	display: flex;
	height: 62px;
	width: 100%;
	background-color: #fff;
	border-radius: 8px;
}

.sersh-city-input {
	font-size: 20px;
	border: none;
	outline: none;
	padding: 16px;
	border-radius: 8px;
	flex-grow: 1;
	width: 1%;
	border: 1px solid #b0b0b0;
	transition: box-shadow 0.3s ease 0s;
}

.sersh-city-input:focus {
	box-shadow: 4px 4px 12px rgba(0, 0, 30, .13), 0 0 1px rgba(36, 36, 36, .2);
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;

}

.sersh-city-results {
	display: none;
}

.sersh-city-results__block {
	display: flex;
	flex-direction: column;
	width: 100%;
	background-color: #ffffff;
	box-shadow: 4px 4px 12px rgba(0, 0, 30, .13), 0 0 1px rgba(36, 36, 36, .2);
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	padding-bottom: 8px;
}

.sersh-city__area:focus-within .sersh-city-results {
	display: block;
}

.sersh-city-results__list {
	padding: 14px 20px;
	font-size: 20px;
	border-top: 1px solid #dadada;
	transition: background-color 0.1s ease 0s;
	background-color: #fff;
}

.sersh-city-results__list:hover {
	color: #0077ff;
	background-color: #f7f7f7;
}

.sersh-city__intro-text {
	margin-bottom: 20px;
	margin-top: 20px;
	font-size: 18px;
	font-weight: 400;
}


/* /УТОЧНИТЬ АДРЕС */


.titl-region .border-line {
	grid-area: C;
	margin-bottom: 0px;
	margin-top: 20px;
}

.breadcrumbs {
	margin-bottom: 30px;
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
}

.breadcrumbs_list_link {
	font-size: 18px;
	display: inline-flex;
	align-items: center;
	margin-right: 10px;
}

.breadcrumbs_list_link::after {
	content: '';
	width: 5px;
	height: 5px;
	border-radius: 1em;
	background-color: #2eb6ff;
	margin-left: 10px;
}

.breadcrumbs_list:last-child .breadcrumbs_list_link::after {
	display: none;
}

.border-line {
	height: 4px;
	background: #82d3ff;
	margin-bottom: 36px;
	border-radius: 2px;
}

/* БЛОК ФОРМЫ ПОИСКА */

.sersh__area {
	padding: 20px;
	background: linear-gradient(to right, rgb(176 227 255) 0px, rgb(48, 183, 255) 100%) no-repeat;
	margin-bottom: 50px;
}

.sersh {
	display: flex;
	height: 62px;
	width: 100%;
	background-color: #fff;
	border-radius: 8px;
}

.input {
	font-size: 20px;
	border: none;
	outline: none;
	padding: 16px;
	border-radius: 8px;
	flex-grow: 1;
	transition: box-shadow 0.3s ease 0s;
}

.input:focus {
	box-shadow: 4px 4px 12px rgba(0, 0, 30, .13), 0 0 1px rgba(36, 36, 36, .2);
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;

}

.serch-results {
	display: none;
}

.serch-results__block {
	display: flex;
	flex-direction: column;
	width: 100%;
	background-color: #ffffff;
	box-shadow: 4px 4px 12px rgba(0, 0, 30, .13), 0 0 1px rgba(36, 36, 36, .2);
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	padding-bottom: 8px;
}

.sersh__area:focus-within .serch-results {
	display: block;
}

.serch-results__list {
	padding: 14px 20px;
	font-size: 20px;
	border-top: 1px solid #dadada;
	transition: background-color 0.1s ease 0s;
	background-color: #fff;
}

.serch-results__list:hover {
	color: #0077ff;
	background-color: #f7f7f7;
}

.serch__intro-text {
	display: flex;
	justify-content: flex-end;
}

.serch__intro-text p {
	margin-bottom: 5px;
	margin-top: 20px;
	font-size: 40px;
	font-weight: 600;
	line-height: 20px;
	color: #9eddff;
}

.serch__intro-text span {
	color: #65c9ff;
	font-size: 40px;
}

/* БЫСТРОЕ МЕНЮ */

.fast-menu {
	display: grid;
	margin: 0 auto;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: auto;
	row-gap: 30px;
	column-gap: 30px;
	padding: 30px 20px;
	background-color: #efefef;
	border-radius: 16px;
}

.fast-menu__card {
	display: flex;
	flex-direction: column;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, .26), 0 0 1px rgba(36, 36, 36, .2);
	transition: box-shadow 0.3s ease 0s;
}

.fast-menu__card:hover {
	box-shadow: 4px 4px 12px rgba(0, 0, 30, .13), 0 0 1px rgba(36, 36, 36, .2);
}

.fast-menu__card__top {
	border-radius: 8px 8px 0 0;
	border-bottom: 4px solid #82d3ff;
}

.fast-menu__card__top h2 {
	margin-bottom: 0px;
	padding: 25px 20px;
}

.fast-menu__card__bottom object {
	display: flex;
	flex-direction: column;
}

.fast-menu__card__bottom__list {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #dadada;
	padding: 0 20px;
	height: 58px;
	transition: background-color 0.1s ease 0s;
}

.fast-menu__card__bottom__list:hover {
	color: #0077ff;
	background-color: #f7f7f7;
}

.fast-menu__card__button {
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	color: #0088d2;
	text-transform: uppercase;
	background-color: #ffffff;
	padding: 17px 0;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	transition: background-color 0.3s ease 0s;
}

.fast-menu__card__button:hover {
	background-color: #e4e4e4;
	box-shadow: 4px 4px 12px rgba(0, 0, 30, .13), 0 0 1px rgba(36, 36, 36, .2);
}

/* CEO TEXT */

.ceo-text__conteiner {
	background-color: #fff;
	padding-top: 80px;
	padding-bottom: 50px;
}

.ceo-text__conteiner__content p {
	font-size: 18px;
	margin-bottom: 30px;
}

.ceo-text__conteiner__content ul {
	margin-bottom: 40px;
}

.ceo-text__conteiner__content li {
	font-size: 18px;
	line-height: 22px;
	position: relative;
	margin-bottom: 20px;
	margin-left: 18px;
}

.ceo-text__conteiner__content li::before {
	color: #82d3ff;
	content: "\2022";
	font-size: 26px;
	font-weight: 700;
	left: -20px;
	/* line-height: 18px; */
	position: absolute;
	top: 0;
}

/* КАТАЛОГ */

/* Фильтр клиник */

.clinik-filter__conteyner {
	margin-bottom: 40px;
}

.clinik-filter_title {
	margin-bottom: 16px;
	font-weight: 600;
	border-bottom: 1px solid #eee;
	padding-bottom: 6px;
}

.wrapper-menu {
	display: flex;
	overflow-x: auto;
}

.wrapper-menu::-webkit-scrollbar {
	display: none;
}

.wrapper-obgect {
	margin-right: 16px;
	white-space: nowrap;
}

.wrapper-obgect.active {
	order: -1;
	background-color: #eee;
	border-color: #eee;
}

.sersh-vrachy__menu {
	display: flex;
	flex-direction: column;
	width: 560px;
	margin-top: 80px;
	margin-left: 20px;
	margin-right: 20px;
}

.sersh-vrachy-input__region {
	font-size: 20px;
	border: none;
	outline: none;
	padding: 16px;
	border-radius: 8px;
	flex-grow: 1;
	width: 1%;
	transition: box-shadow 0.3s ease 0s;
	border: 2px solid #eee;
}

.sersh-vrachy {
	display: flex;
	height: 62px;
	width: 100%;
	background-color: #fff;
	border-radius: 8px;
}

.sersh-vrachy-input {
	font-size: 20px;
	border: none;
	outline: none;
	padding: 16px;
	border-radius: 8px;
	flex-grow: 1;
	width: 1%;
	border: 1px solid #b0b0b0;
	transition: box-shadow 0.3s ease 0s;
}

.sersh-vrachy-input:focus {
	box-shadow: 4px 4px 12px rgba(0, 0, 30, .13), 0 0 1px rgba(36, 36, 36, .2);
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.sersh-vrachy-results {
	display: none;
}

.sersh-vrachy-results__block {
	display: flex;
	flex-direction: column;
	width: 100%;
	background-color: #ffffff;
	box-shadow: 4px 4px 12px rgba(0, 0, 30, .13), 0 0 1px rgba(36, 36, 36, .2);
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	padding-bottom: 8px;
}

.sersh-vrachy__area:focus-within .sersh-vrachy-results {
	display: block;
}

.sersh-vrachy-results__list {
	padding: 14px 20px;
	font-size: 20px;
	border-top: 1px solid #dadada;
	transition: background-color 0.1s ease 0s;
	background-color: #fff;
}

.sersh-vrachy-results__list:hover {
	color: #0077ff;
	background-color: #f7f7f7;
}

.sersh-vrachy__intro-text {
	margin-bottom: 20px;
	margin-top: 20px;
	font-size: 18px;
	font-weight: 400;
}

/* Сортировка */

.clinik-sorting__conteyner {
	margin-bottom: 40px;
}

.clinik-sorting_title {
	margin-bottom: 16px;
	font-weight: 600;
	border-bottom: 1px solid #eee;
	padding-bottom: 6px;
}

.catalog-list {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.catalog-list__card {
	display: flex;
	flex-direction: column;
}

.catalog-list__card__top {
	border-bottom: 2px solid #dadada;
	margin-bottom: 20px;
}

.catalog-list__card__top h2 {
	font-size: 28px;
}

.catalog-list_border-line {
	height: 2px;
	background: linear-gradient(to right, #ade2ff 0, #6ca7ff 100%) no-repeat;
	border-radius: 2px;
	margin-bottom: 20px;
}

.catalog-list__card__top h2 {
	margin-bottom: 0px;
	padding: 25px 20px;
}

.catalog-list__card__bottom ul .list-view{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0 20px;
}

.catalog-list__card__bottom__list {
	display: flex;
	align-items: center;
	padding: 0 20px;
	height: 48px;
	transition: background-color 0.1s ease 0s;
	color: #0088d2;
}

.catalog-list__card__bottom__list:hover {
	background-color: #f7f7f7;
}

/* ОСНОВНОЙ КАТАЛОГ */


.main-catalog {
	display: grid;
	margin: 0 auto;
	grid-template-rows: auto;
	row-gap: 40px;
	column-gap: 30px;
	padding: 20px 20px;
	background-color: #efefef;
	border-radius: 16px;
}

.main-catalog h2 {
	margin: 0;
	font-size: 20px;
}

.main-catalog__card {
	display: grid;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, .26), 0 0 1px rgba(36, 36, 36, .2);
	transition: box-shadow 0.3s ease 0s;
	grid-template-areas:
		"A A C"
		"B B C";
	grid-template-columns: repeat(3, 1fr);
	margin-bottom: 20px;
}



.main-catalog__card__top {
	grid-area: A;
}

.main-catalog__card__top {
	padding: 20px;
}


.main-catalog__card__logo {
	display: flex;
	width: 200px;
	height: 100px;
}

.main-catalog__card__logo img {
	object-fit: contain;
	width: 100%;
	height: 100%;
}

.main-catalog__card__title__name h2 {
	font-size: 22px;
	margin-bottom: 20px;
}

.main-catalog__card__top-block {
	display: flex;
	gap: 20px;
}

.main-catalog__card__top-block footer {
	width: 100%;
}

.main-catalog__card__title__rating__stare {
	display: flex;
	margin-right: 20px;
}

.rating-value {
	margin-left: 10px;
	font-weight: 600;
}

.rating-result {
	display: inline-flex;
	margin-left: 10px;
}

.rating-result span {
	content: '';
	width: 8px;
	height: 25px;
	background-color: #eee;
	margin-right: 3px;
	border-radius: 4px;
}

.rating-result>span.active {
	background-color: rgb(255, 213, 0);
}

/* Отзывы */

.main-catalog__card__title__rating__reviews {
	display: flex;
	gap: 10px;
}

.reviews-title.text-button {
	margin-right: 0;
}

.score__reviews {
	font-weight: 600;
}

.clinik-reviews__list {
	display: flex;
	flex-direction: column;
	width: 560px;
	margin-top: 80px;
	margin-left: 20px;
	margin-right: 20px;
}

.clinik-reviews__list-item li {
	margin-bottom: 80px;
}

.clinik-reviews__review-head {
	padding-bottom: 10px;
	margin-bottom: 10px;
}

.clinik-reviews__review-head .border-line {
	margin-bottom: 10px;
}

.clinik-reviews__review-head__name {
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 10px;
}

.clinik-reviews__review-head__date {
	font-size: 16px;
	margin-bottom: 10px;
}

.clinik-reviews__review-head__date span {
	font-size: 16px;
}

.clinik-reviews__review-content {
	margin-bottom: 20px;
	border: 2px solid #d6edff;
	background-color: #f0f8ff;
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
	border-bottom-right-radius: 16px;
	padding: 20px;
	width: 80%;
}

.clinik-reviews__review-content__title {
	font-weight: 600;
	margin-bottom: 10px;
	font-size: 18px;
}

.clinik-reviews__review-content__description {
	margin-bottom: 20px;
	font-size: 18px;
}

.clinik-reviews__review-comment {
	display: flex;
	align-items: flex-end;
	flex-direction: column;
}

.clinik-reviews__review-comment__title {
	display: flex;
	justify-content: flex-end;
	width: 80%;
	font-weight: 600;
	margin-bottom: 10px;
	font-size: 18px;
}

.clinik-reviews__review-comment__description {
	width: 80%;
	font-size: 18px;
	padding: 20px;
	background-color: #eee;
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
	border-bottom-left-radius: 16px;
}

.clinik-reviews__list__button.oval-buton {
	width: 150px;
	margin-bottom: 40px;
}


/* Карточка */

.main-catalog__card__top__border {
	grid-area: F;
	border-bottom: 4px solid #82d3ff;
	border-radius: 2px;
	margin-top: 10px;
}

.main-catalog__card__midl {
	grid-area: B;
}

.main-catalog__card__top-info {
	display: grid;
	gap: 5px 40px;
	padding: 0px 20px 20px 20px;
	grid-template-areas:
		"A A A A"
		"B B B B"
		"C C C C"
		"D D D D"
		"E E F F";
	grid-template-columns: repeat(4, 1fr);
}

.main-catalog__card__top-info__location {
	grid-area: A;
	border-bottom: 1px solid #eee;
	margin-bottom: 10px;
}

.main-catalog__card__top-info__location__address {
	display: flex;
	/* height: 58px; */
	align-items: center;
	border-bottom: 1px solid #eee;
	margin-bottom: 16px;
	padding-bottom: 16px;
}

.main-catalog__card__top-info__location__address .location__address {
	margin-right: 20px;
}

.location__route {
	display: flex;
	flex-direction: column;
	padding-bottom: 16px;
}

/* Карта */

.location-map__box {
	display: flex;
	flex-direction: column;
	width: 560px;
	margin-top: 100px;
	margin-left: 20px;
	margin-right: 20px;
}

/* /Карта */

/* Записаться на прием */
.lead-form__box {
	width: 560px;
	margin-top: 100px;
	margin-left: 20px;
	margin-right: 20px;
	background-color: #fff;
}

.lead-form__box-input .form-group{
	display: flex;
	flex-direction: column;
	max-width: 400px;
	margin: auto;
	padding: 20px;
	border-radius: 16px;
	background-color: #f8f8f8;
}

.lead-form__box-info {
	display: flex;
	flex-direction: column;
	max-width: 440px;
	margin: auto;
}

.lead-form__input {
	border: 1px solid #b0b0b0;
}

.lead-form__assent {
	display: flex;
	gap: 14px;
	margin-bottom: 40px;
	margin-top: 10px;
}

.lead-form__assent-chek {
	width: 34px;
	height: 34px;
}

.lead-form__assent-condition {
	font-size: 14px;
	max-width: 350px;
}

.lead-form__assent-condition-oll {
	font-size: 14px;
	margin-top: 40px;
}

/* /Записаться на прием */


.underground {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
}

.station-line {
	content: '';
	width: 10px;
	height: 10px;
	border-radius: 1em;
}

.station-name {
	font-weight: 600;
}

.station-route {
	margin-left: 10px;
}

.main-catalog__card__top-info__schedule {
	grid-area: B;
	border-bottom: 1px solid #eee;
	padding-bottom: 16px;
	margin-bottom: 10px;
}

.main-catalog__card__top-info__schedule li {
	display: flex;
}

.schedule-day {
	width: 80px;
}

.schedule-time {
	margin-left: 20px;
	font-weight: 600;
}

.main-catalog__card__bottom__phone address {
	font-weight: 600;
	font-size: 24px;
}

.main-catalog__card__top-info__description {
	grid-area: D;
	border-bottom: 1px solid #eee;
	padding-bottom: 12px;
	margin-bottom: 10px;
}

.main-catalog__card__top-info__details {
	grid-area: E;
}

.main-catalog__card__bottom {
	grid-area: C;
	border-left: 2px solid #eee;
	padding: 20px;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
}

.main-catalog__card__bottom__doktor {
	border: 2px solid #2eb6ff;
	border-radius: 8px;
	margin-bottom: 20px;
	display: none;
}

.main-catalog__card__bottom__doktor-title {
	font-size: 22px;
	font-weight: 600;
	margin: 10px 20px 10px 20px;
}

.main-catalog__card__bottom__doktor-price {
	margin: 0 20px 20px 20px;
}

.main-catalog__card__bottom__phone a {
	display: flex;
	gap: 10px;
	margin-top: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}

/* Пагенация */

.main-catalog__pagenation ol {
	display: flex;
	gap: 10px;
}

.main-catalog__pagenation__button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	background-color: #fff;
	border-radius: 50%;
	font-weight: 600;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, .26), 0 0 1px rgba(36, 36, 36, .2);
}

.main-catalog__pagenation__button.active {
	box-shadow: none;
	color: #d3d3d3;
}

/* МЕНЮ УСЛУГ  */


.drop-down-menu_title {
	border-bottom: 1px solid #dadada;
	margin-top: 50px;
	font-size: 28px;
	font-weight: 600;
	padding-left: 36px;
	padding-bottom: 10px;
}

.drop-down-menu__sections {
	display: flex;
	flex-direction: column;
}

.drop-down-menu__sections__linc {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 15px 20px 15px 36px;
	font-size: 20px;
	border-bottom: 1px solid #dadada;
}

.drop-down-menu__sections__linc-title {
	flex-shrink: 1;
	overflow-wrap: break-word;
}

.drop-down-menu__sections__linc-price {
	flex-shrink: 0;
}

.drop-down-menu__subsections__linc {
	padding: 15px 20px 15px 36px;
	font-size: 20px;
	border-bottom: 1px solid #dadada;
}

.drop-down-menu__menu {
	display: flex;
	justify-content: flex-end;
	height: 58px;
	margin-bottom: 20px;
	align-items: center;
}

.footer {
	display: flex;
	height: 80px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.footer-menu {
	width: 100%;
	display: flex;
	border-top: 3px solid #eee;
}

/* СТРАНИЦА КЛИНИКИ */

.clinic-card-colomn {
	display: flex;
	gap: 40px;
}

.clinic-card__left-colomn {
	width: 800px;
}

.clinic-card__left-colomn .border-radius-b {
	margin-bottom: 60px;
	scroll-margin-top: 170px;
}

.clinic-card__rhite-colomn {
	width: 360px;
}

.clinic-card__top-info {
	display: flex;
	gap: 20px;
}

.clinic-card__top-info__left__logo {
	display: flex;
	width: 200px;
	height: 100px;
}

.clinic-card__top-info .clinic-card__top-info__rhite {
	width: 100%;
}

.clinic-card__top-info__rhite__reiting {
	display: flex;
	border-bottom: 1px solid #d5d5d5;
	padding-bottom: 20px;
}

.clinic-card__top-info__rhite__achieve {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	padding-top: 20px;
}

.achieve-rec {
	background: linear-gradient(to right, #fff0b5 0, #ffd400 100%) no-repeat;
	padding: 4px 10px;
	border-radius: 5px;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 16px;
}

.achieve-min-price {
	background: linear-gradient(to right, #caffd9 0, #3fff00 100%) no-repeat;
	padding: 4px 10px;
	border-radius: 5px;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 16px;
}

.clinic-card__info__location__rhite {
	width: 250px;
	margin-top: 20px;
}

.clinic-card__info__location__address {
	display: flex;
	border-bottom: 1px solid #eee;
	padding-bottom: 16px;
	margin-bottom: 16px;
}

.clinic-card__info__location__address .location__address__button {
	display: none;
}

.clinic-card__info__location__route {
	margin-top: 10px;
}

.clinic-card__info__location__route .station-name {
	margin-left: 0;
}


.clinic-card__info__schedule .time {
	margin-left: 20px;
}

.clinic-card__lead-box {
	padding: 20px;
	border-radius: 16px;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, .26), 0 0 1px rgba(36, 36, 36, .2);
	position: sticky;
	top: 170px;
	z-index: 9;
}

.clinic-card__info__schedule {
	display: flex;
	gap: 40px;
}

.clinic-card__bottom__doktor {
	border: 2px solid #2eb6ff;
	border-radius: 8px;
	margin-bottom: 20px;
	padding: 10px 20px;
}

.lead-form__box__doktor {
	border: 2px solid #2eb6ff;
	border-radius: 8px;
	margin-bottom: 20px;
	padding: 10px 20px;
}

.clinic-card__bottom__phone {
	display: flex;
	/* margin-top: 40px;
	border-bottom: 1px solid #eee; */
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.clinic-card__bottom__phone a address {
	font-size: 24px;
	font-weight: 600;
}

.dottle-line {
	color: #aaa;
}

.clinic-card__info__schedule__rhite .border-radius-s {
	display: flex;
	justify-content: center;
	background-color: #fffcf3;
}

.clinic-card__info__schedule__rhite .border-radius-s span {
	padding: 0 10px;
}

.clinic-card__info__schedule time {
	display: flex;
}

.clinic-card__info__schedule .today {
	visibility: hidden;
	margin-left: 10px;
	font-size: 18px;
	color: #00a724;
}

.clinic-card__info__schedule .time {
	font-weight: 400;
}

.clinic-card__info__schedule .time.active {
	font-weight: 600;
}

.clinic-card__info__schedule .day {
	width: 40px;
}

/* Выбор врача, форма записи */

.lead-form__chois__box {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 560px;
	margin-top: 100px;
}

.lead-form__chois__box-filter {
	width: 300px;
}

.lead-form__chois__box-filter .oval-buton {
	margin-bottom: 20px;
}


/* Меню Инфоблока */

.clinic-card__info__menu {
	padding: 13px 0;
}

.clinic-card__info__menu-fix {
	position: sticky;
	top: 58px;
	background-color: #fff;
	margin-bottom: 40px;
	z-index: 11;
}

.clinic-card__info__menu ul {
	display: flex;
	justify-content: space-between;
	padding-top: 14px;
	padding-bottom: 14px;
	padding-left: 19px;
	padding-right: 20px;
	border: 1px solid #d5d5d5;
	border-radius: 8px;
	background-color: #fff;
}

.clinic-card__info__box .gray-bacground-box {
	margin-bottom: 80px;
}

.clinik-reviews__list-item .border-line {
	height: 2px;
	background-color: #eee;
}

.clinik-reviews__list__button-menu {
	width: 150px;
	margin-top: 40px;
	background-color: #fff;
}

.clinic-card__info__section-c {
	border: 2px solid #eee;
	padding: 20px;
	border-radius: 16px;
	margin-bottom: 80px;
	scroll-margin-top: 100px;
}

/* Слайдер карточки клиники */

.clinic-card__info__section-d {
	margin-bottom: 80px;
	scroll-margin-top: 122px;
}

.clinic-card-slider {
	min-width: 0;
	position: relative;
}

.clinic-card-slider .slick-dots {
	display: flex;
	align-items: center;
	justify-content: center;
}

.clinic-card-slider .slick-dots li {
	margin: 0 10px;
}

.clinic-card-slider .slick-dots li.slick-active button {
	background-color: #eee;
}

.clinic-card-slider .slick-dots button {
	font-size: 0;
	width: 14px;
	height: 14px;
	background-color: #fff;
	border-radius: 50%;
	border: 1px Solid #bcbcbc;
}

.clinic-card-slider .slick-arrow {
	position: absolute;
	top: 78%;
	z-index: 10;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 0;
	background-color: #fff;
	font-weight: 600;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, .26), 0 0 1px rgba(36, 36, 36, .2);
}

.clinic-card-slider .slick-arrow.slick-prev {
	left: 0;

}

.clinic-card-slider .slick-arrow.slick-next {
	right: 0;
}

.clinic-card-slider__item img {
	height: 200px;
	margin-right: 14px;
}

.slick-list {
	overflow: hidden;
}

.slick-track {
	display: flex;
}

.clinic-card__info__section-e {
	margin-bottom: 80px;
	scroll-margin-top: 122px;
}

/* Меню услуги */



.drop-down-menu__sections ul {
	padding-left: 20px;
	display: none;
}

.drop-down-menu.uslugy_serch {
	z-index: 109;
}

/* Карты */

.ya-map-block {
	display: flex;
	flex-direction: column;
	width: 560px;
	margin-top: 80px;
	margin-left: 20px;
	margin-right: 20px;
}

.ya-map-block iframe {
	width: 100%;
	height: 80vh;
}

.clinic-card__top-info__left__logo img {

	object-fit: contain;
	
	width: 100%;
	
	height: 100%;
	
	}