.error{
  color: red;
}

.breadcrumbs__links:after {
 content: "";
 display: block;
 width: 1px;
 height: 80%;
 background: #4B4B4B;
}

.btn-nav{
  padding: 0.6rem 1rem;
  background: #07B1BC;
  border-radius: 5px;
  color: #fff;
  font-size: 1.8rem;
  margin: 20px 0px;
}
.btn-nav:hover{
  background: #057179;
  color: #fff;
}

.hidden{
  display: none;
}
.form-search{
  width: 100%;
}
.client_search{
  padding-top: 30px;
  text-align: center;
}
.choose-role{
  cursor: pointer;
  color: #07B1BC;
  font-size: 2.2rem;
  padding: 5px;
}
.choose-role:hover{
  text-decoration: underline;
}

.login-form{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.login-form h4{
  font-size: 3.2rem;
}


  

:root{
	font-size: 10px;
}

body{
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	font-size: 1.7rem;
	font-family: "Fira Sans", sans-serif;
}

.scroll{
	overflow: hidden;
}

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

a, button, input, textarea, select{
	transition: .2s linear;
	font-size: 1.6rem;
	font-family: "Fira Sans", sans-serif;
}

a{
	text-decoration: none;
	color: #000;
}

ul{
	margin: 0;
	padding: 0;
}

li{
	list-style-type: none;
}

h1, h2, h3, h4, h5, h5, p{
	margin: 0;
	font-weight: normal;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button{
	appearance: none;
}

.button, .input{
	border: none;
	cursor: pointer;
	background: none;
	outline: none;
}

.input{
	cursor: text;
}

.input:focus::placeholder{
	opacity: 0;	
}

.container, .footer__container{
	width: 100%;
	max-width: 1770px;
	margin: 0 auto;
}

.footer__container{
	max-width: 1250px;
}

.title{
	font-family: "Lora", serif;
	font-size: 4.8rem;
	font-weight: 600;
}

.default__link{
	display: inline-block;
	padding: 2.4rem;
	border-radius: 10px;
	color: #fff;
	background: #04677C;
	font-size: 3.2rem;
	font-weight: 500;
}

/* Шапка */
.header{
	width: 100%;
	background: #fff;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.header__top{
	width: 100%;
	padding: 1.75rem 0;
}

.header__inner{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header__logo{
	width: 350px;
	display: flex;
}

.header__logo--img{
	width: 100%;
}

.header__wrapper{
	display: flex;
	align-items: center;
	gap: 60px;
}

.header__selfrecordingdiary{
	display: flex;
	align-items: center;
	font-size: 1.8rem;
	font-weight: 700;
	color: #4B4B4B;
	margin-left: 10px;
	gap: 5px;
}

.header__favorite{
	gap: 10px;
}

.header__link{
	padding: 1rem;
	background: #07B1BC;
	border-radius: 5px;
	color: #fff;
	font-size: 1.8rem;
}

.header__menu{
	width: 100%;
	background: #07B1BC;
	position: relative;
}

.header__menu--content{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header__menu--link{
	color: #fff;
	font-size: 1.8rem;
	font-weight: 700;
}

.header__menu--link.mobile{
	display: none;
}

.header__menu--link svg{
	display: none;
}


.menu__link{
	padding: 2rem 5px;
	display: inline-block;
}

.main__title_diary{
    padding-top: 20px;
    font-size: 4.0rem;
}

.menu__link.active{
	color: #FFEEDB;
}

.mobile__menu{
	width: 100%;
	position: absolute;
	z-index: 3;
	top: 100%;
	left: 0;
	padding: 2rem 0;
	display: flex;
	border-bottom: 2px solid #04677C;
	background: #fff;
	opacity: 0;
	transition: .2s linear;
	pointer-events: none;
}

.mobile__menu--inner{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.mobile__menu--link{
	font-size: 1.8rem;
	color: #4B4B4B;
	display: flex;
	gap: 10px;
	align-items: center;
}

.mobile__menu--link:after{
	content: "";
	display: block;
	height: 100%;
	width: 1px;
	background: #07B1BC;
}

.mobile__menu--link:last-child:after, .menu__button{
	display: none;
}

/* Главный блок */
.main{
	width: 100%;
	min-height: 420px;
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.main:before, .main:after{
	content: "";
	display: block;
	pointer-events: none;
	z-index: -1;
	position: absolute;
	width: 600px;
	height: 350px;
	border-radius: 100px;
	box-shadow: 0 0 300px #23d5e2;
	background: #23d5e2;
	filter: blur(50px);
	bottom: -50px;
	left: 300px;
	opacity: 0.5;
}

.main:after{
	box-shadow: 0 0 300px #FFEEDB;
	background: #FFEEDB;
	filter: blur(50px);
	top: -50px;
	right: 400px;
	bottom: auto;
	left: auto;
	opacity: 1;
}

.main__img{
	width: 100%;
	max-width: 880px;
	max-height: 100%;
	position: absolute;
	bottom: 0;
	right: 0;
	pointer-events: none;
}

.main__inner{
	display: flex;
	justify-content: flex-start;
	position: relative;
}

.main__text--inner{
	width: 100%;
	max-width: 1163px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 60px;
}

.main__title{
	color: #04677C;
}

.main__text{
	font-size: 2.4rem;
	color: #4B4B4B;
}

/* Наши задачи */
.ourtasks{
	width: 100%;
	padding: 6rem 0;
}

.ourtasks__inner{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 60px;
}

.ourtasks__title{
	color: #04677C;
}

.ourtasks__content{
	width: 100%;
	max-width: 1620px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 60px;
}

.ourtasks__item{
	width: calc(100% / 4 - 180px / 4);
	padding: 1rem 2rem 3.5rem 2rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	border-top: 2px solid #04677C;
	border-bottom: 2px solid #04677C;
	transition: .2s linear;
}

.ourtasks__item--number{
	font-size: 4.8rem;
	font-weight: 600;
	color: #04677C;
	font-family: 'Lora', serif;
}

.ourtasks__item--text{
	color: #4B4B4B;
	font-size: 2rem;
}

/* Информационный блок */
.info__block{
	width: 100%;
	margin: 6rem 0;
	padding: 4.65rem 0;
	position: relative;
}

.info__block--img{
	position: absolute;
	bottom: 0;
	right: 0;
	max-width: 587px;
	max-height: 100%;
}

.info__block--img.crop{
	object-fit: cover;
}

.info__block.blue{
	background: #07B1BC;
}

.info__block.yellow{
	background: #FFEEDB;
}

.info__block--inner{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 60px;
	position: relative;
	z-index: 2;
}

.info__block--title{
	color: #fff;
	width: 100%;
	max-width: 1000px;
	text-align: center;
}

.info__block--title.big{
	max-width: 1100px;
}

.info__block.yellow .info__block--title{
	color: #04677C;
}

.info__block.blue .default__link{
	color: #04677C;
	background: #fff;
}

.info__block.blue .default__link:hover{
	background: #e7e3e3;
}

/* Гибридная амбулатория */
.gibrid{
	width: 100%;
	margin: 6rem 0;
	padding: 3rem 0rem 6rem 0;
	background: #FFEEDB;
}


.gibrid.mt0{
	margin-top: 0;
}

.gibrid.white{
	background: #fff;
}

.gibrid__inner{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.gibrid__title{
	color: #04677C;
}

.gibrid__content{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
	margin-top: 6rem;
	justify-content: center;
	max-width: 900px;
}

.gibrid__item{
	width: calc(100% / 2 - 30px);
	display: flex;
	gap: 20px;
}

.gibrid__item--img{
	width: 150px;
	height: 150px;
	border-radius: 10px;
	overflow: hidden;
}

.gibrid__item--img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gibrid__item--text, .template__item--text{
	flex: 1;
	padding: 1.5rem 0;
	border-top: 2px solid #4B4B4B;
	border-bottom: 2px solid #4B4B4B;
	display: flex;
	align-items: center;
	transition: .2s linear;
}

.search__block{
	width: 100%;
	padding: 3rem 0;
}

.search__block--inner{
	width: 100%;
	position: relative;
}

.search__block--input{
	width: 100%;
	padding: 1rem 9rem 1rem 3.9rem;
	border-radius: 10px;
	border: 1px solid #07B1BC;
	font-size: 1.8rem;
	font-weight: 700;
}

.search__block--icon{
	width: 24px;
	flex-shrink: 0;
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	pointer-events: none;
}

.search__block--button{
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	display: flex;
	align-items: center;
	padding: 0.5rem 1rem;
	border-radius: 10px;
	background: #07B1BC;
	color: #fff;
}


/* Шаблон */
.template{
	width: 100%;
	padding: 3rem 0rem 6rem 0;
}

.template__inner{
	width: 100%;
	display: flex;
	align-items: flex-start;
	gap: 60px;
}

.template__menu{
	width: 100%;
	max-width: 420px;
	flex-shrink: 0;
	border-radius: 10px;
	background: #FFEEDB;
	padding: 3rem 3rem 4rem 3rem;
	position: sticky;
	top: 10px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 40px;
}

.template__menu--wrapper{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
}

.template__action--link{
	display: flex;
	align-items: center;
	gap: 5px;
	color: #04677C;
	font-size: 2rem;
	font-weight: 600;
	padding: 0;
	text-align: left;
}

.header__favorite.active svg path, .template__action--link.active svg path{
	fill: #04677C;
}

.template__action--link svg{
	width: 24px;
	flex-shrink: 0;
	color: #04677C;
}

.template__content{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 60px;
}

.template__content--block{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 30px;
}

.template__menu--href{
	font-size: 1.8rem;
	color: #4B4B4B;
}

.template__menu--href{
	display: flex;
	align-items: center;
	gap: 10px;
}

.template__menu--href.dropdown__template{
	font-weight: 500;
}

.template__menu--href.dropdown__template.active svg{
	transform: rotate(180deg);
}

.template__menu--href svg{
	width: 24px;
	flex-shrink: 0;
	color: #04677C;
}

.dropdown__template--menu{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.dropdown__template--content{
	width: 100%;
	display: none;
	flex-direction: column;
	padding-left: 3.4rem;
	gap: 10px;
	margin-top: 1rem;
}

.dropdown__template--content.active{
	display: flex;
}

.subtitle{
	font-size: 3.2rem;
	font-weight: 700;
	color: #04677C;
}

.blue{
	color: #04677C;
}

.action__block{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.template__items{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 58px;
}

.template__item{
	width: calc(100% / 3 - 58px * 2 / 3);
	display: flex;
	gap: 30px;
}

.template__item--text{
	font-size: 1.8rem;
	color: #4B4B4B;
}

.template__item--img{
	width: 120px;
	height: 100%;
	display: flex;
}

.template__item--img img{
	max-width: 100%;
	max-height: 100%;
}

.template__text--block{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.template__title3{
	width: 100%;
	margin-bottom: 1.2rem;
	font-weight: 500;
}

.template__text--block p{
	font-size: 1.6rem;
}

.template__text--block ul, .template__text--block ol{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding-left: 2rem;
}

.template__text--block ol{
    padding-left: 0;
}

.template__content--block table{
	width: 100%;
	border: 1px solid #000;
}

.template__content--block td, .template__content--block th{
	padding: 0.5rem 1rem;
	border-right: 1px solid #000;
}

.template__content--block td{
	border-top: 1px solid #000;
}

.template__content--block td:last-child, .template__content--block th:last-child{
	border-right: none;
}

.template__text--block ul li{
    list-style-type: disc;
    font-size: 1.4rem;
}

.template__text--block ol li{
	font-size: 1.4rem;
}

.danger{
	padding: 5px 10px;
	border-left: 2px solid red;
	color: red;
	margin: 10px 0;
}

.template__text--block a{
	font-size: 1.4rem;
	color: #007cee;
}

.template__videos{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
}

.template__video{
	width: calc(100% / 3 - 120px / 3);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
}

.template__video--text--inner{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.template__video--text{
	font-size: 1.6rem;
	color: #4B4B4B;
}

.template__video--img{
	width: 100%;
	display: flex;
	position: relative;
}

.template__video--img svg{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.template__video--img img{
	width: 100%;
}

.modal{
	width: 100%;
    height: 100dvh;
    background: rgba(29, 28, 28, .75);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    overflow-x: hidden;
    overflow-y: auto;
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: .2s ease-in-out;
}

.modal.active{
	pointer-events: all;
    opacity: 1;
}

.modal__inner{
	width: 100%;
    max-width: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100% - 3.5rem);
    margin: 1.75rem auto;
}

.modal__content{
	width: 100%;
	display: flex;
}

.modal__video{
	width: 100%;
	aspect-ratio: 16 / 9;
}

/* Личный кабинет */
.cabinet{
	width: 100%;
	padding: 6rem 0rem 8rem 0;
	position: relative;
	overflow: hidden;
}

.cabinet:before, .cabinet:after{
	content: "";
	display: block;
	pointer-events: none;
	z-index: -1;
	position: absolute;
	width: 400px;
	height: 100%;
	border-radius: 100px;
	box-shadow: 0 0 300px #23d5e2;
	background: #23d5e2;
	filter: blur(50px);
	bottom: -50px;
	left: 300px;
	opacity: 0.6;
}

.cabinet:after{
	box-shadow: 0 0 300px #FFEEDB;
	background: #FFEEDB;
	filter: blur(50px);
	top: -50px;
	right: 400px;
	bottom: auto;
	left: auto;
	opacity: 1;
	width: 600px;
}

.cabinet__inner{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 60px;
}

.cabinet__title{
	text-align: center;
	color: #04677C;
}

.cabinet__text{
	width: 100%;
	font-size: 2.4rem;
	color: #4B4B4B;
}

.article__text {
    width: 100%;
    font-size: 2.4rem;
    color: #fff;
	padding-right: 20%;
}
.main__text_size{
	font-size: 3.1rem;
}

.article__text_blue {
    width: 100%;
    font-size: 2.4rem;
	padding-right: 20%;
}

.cabinet__text.bold{
	font-weight: 700;
}

.cabinet__points{
	width: 100%;
	padding-left: 2rem;
}

.cabinet__points li{
	list-style-type: disc;
	font-size: 2.4rem;
	color: #4B4B4B;
}

/* Подвал */
.footer{
	width: 100%;
	padding: 8rem 0;
	background: #04677C;
}

.footer__inner{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 40px;
}

.footer__logos{
	width: 100%;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 36px 20px;
	justify-content: center;
}

.footer__content{
	width: 100%;
	margin-top: 4rem;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.footer__item{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 15px;
}

.footer__item--link{
	color: #fff;
	font-size: 1.2rem;
}

.footer__item--title{
	font-size: 1.8rem;
	font-weight: 700;
	color: #fff;
}

/* Хлебные крошки */
.breadcrumbs{
	width: 100%;
	padding: 1.9rem 0;
}

.breadcrumbs__inner{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

.breadcrumbs__link, .breadcrumbs__text{
	color: #4B4B4B;
	font-size: 1.8rem;
	display: flex;
	align-items: center;
	gap: 5px;
}

.breadcrumbs__link:after{
	content: "";
	display: block;
	width: 1px;
	height: 80%;
	background: #4B4B4B;
}

.breadcrumbs__text{
	color: #07B1BC;
}

/* Симптомы */
.simptoms{
	width: 100%;
}

.simptoms__inner{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 60px;
}

.letters__content{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.letters__button{
	font-size: 3.2rem;
	color: #04677C;
	background: #FFEEDB;
	border-radius: 5px;
	padding: 0.2rem 0.4rem;
	border: 1px solid transparent;
	line-height: 1;
}

.letters__button.active{
	border: 1px solid #04677C;
}

.letters__button.disabled{
	background: #E0E0E0;
	pointer-events: none;
}

.simptoms__block{
	width: 100%;
	padding: 3rem 0rem 6rem 0;
}

.simptoms__block--inner{
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 60px;
}

.simptoms__block--content{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 30px;
}

.simptoms__link{
	width: 100%;
	display: flex;
	padding-bottom: 3rem;
	border-bottom: 2px solid #07B1BC;
	font-size: 3.2rem;
	font-weight: 700;
	color: #4B4B4B;
}

/* Пагинация */
.paggination{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

.show__more{
	padding: 1rem;
	color: #fff;
	font-size: 1.8rem;
	background: #07B1BC;
	border-radius: 5px;
}

.paggination__content{
	width: 100%;
	display: flex;
	align-items: center;
	gap: 5px;
}

.paggination__arrow{
	display: flex;
	padding: 0;
	width: 24px;
	flex-shrink: 0;
}

.paggination__arrow img{
	width: 100%;
}

.paggination__link{
	color: #4B4B4B;
	font-size: 1.8rem;
	display: flex;
	align-items: center;
	gap: 5px;
}

.paggination__link.active{
  color: #07B1BC;
}

.paggination__link:after{
	content: "";
	display: block;
	width: 1px;
	height: 18px;
	background: #4B4B4B;
}

/* Паллиативные */
.palliativ{
	width: 100%;
	padding: 3rem 0;
}

.palliativ__inner{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 30px;
}

.palliativ__img{
	width: 100%;
	max-width: 350px;
}

.states__content{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 60px;
	margin-top: 6rem;
}

.state__item{
	width: 100%;
	padding-bottom: 6rem;
	border-bottom: 2px solid #07B1BC;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 30px;
}

.state__item--link{
	font-size: 3.2rem;
	font-weight: 700;
	color: #4B4B4B;
}

.up__inner{
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 3rem 0 0 0;
}

.policy__inner{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 60px;
}

.policy p, .policy ul li{
	font-size: 2.4rem;
}

/* 404 */
.notfound{
	width: 100%;
	padding: 3rem 0 0 0;
}

.notfound__inner{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 60px;
}

.notfount__title{
	text-align: center;
}

.notfound__text{
	width: 100%;
	max-width: 620px;
	text-align: center;
	font-size: 2.4rem;
}

.notfound__img{
	width: 100%;
	max-width: 480px;
}

/* Авторизация */
.auth, .auth__text{
	width: 100%;
	padding: 6rem 0rem 8rem 0;
	background: #FFEEDB;
}

.auth__text{
	background: #fff;
}

.auth__inner, .auth__text--inner{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 60px;
}

.auth__form{
	width: 100%;
	max-width: 420px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}

.auth__forgot{
	padding: 1rem;
  margin-top: 40px;
	border-radius: 5px;
	background: #fff;
	border: 1px solid #07B1BC;
	font-size: 1.8rem;
}

.auth__form--item{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

.auth__form--item--title{
	font-size: 3.2rem;
	color: #04677C;
	font-weight: 500;
}

.auth__form--input{
	width: 100%;
	padding: 1.1rem 1.5rem;
	border: 1px solid #04677C;
	border-radius: 5px;
	background: #fff;
	font-size: 1.4rem;
}

.auth__form--input.auth__password{
	padding: 1.1rem 5.5rem 1.1rem 1.5rem;
}

.auth__form--input--inner{
	width: 100%;
	position: relative;
}

.show__pasword{
	height: 100%;
	width: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	position: absolute;
	top: 0;
	right: 6px;
}

.checkbox{
	display: none;
}

.checkbox:checked + .auth__form--label:after{
	opacity: 1;
}

.auth__form--label{
	color: #04677C;
	font-size: 2rem;
	padding-left: 3.4rem;
	position: relative;
}

.auth__form--label:before{
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	border-radius: 4px;
	border: 1px solid #04677C;
	background: #fff;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0px;
}

.auth__form--label:after{
	content: "";
	width: 24px;
	height: 24px;
	background: url("/img/pic/check.svg") center no-repeat;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0px;
	opacity: 0;
	transition: .2s linear;
}

.mobile__menu--link.active{
	font-weight: 700;
	color: #07B1BC;
}

.activate--link{
  text-decoration: underline;
  color: #04677C;
}

.activate--link:hover{
  text-decoration: none;
}

.btn-link--reg{
  color: #04677C;
  font-size: 1.0em;
  text-decoration: underline;
  padding: 15px;
}
.btn-link--reg:hover{
  text-decoration: none;
}

.msg--link{
   text-decoration: underline; 
   color: #07B1BC;
}
.msg--link:hover{
  text-decoration: none;
}

.auth__forgot--reg{
  padding-top: 50px;
  text-align: center;
}

@media (any-hover: hover) {
	.header__link:hover, .show__more:hover, .search__block--button:hover{
		background: #057179;
	}

	.search__block--button:active{
		background: #0b5c61;
	}

	.default__link:hover{
		background: #034756;
	}

	.header__menu--link:hover{
		text-decoration: underline;
		color: #FFEEDB;
	}

	.breadcrumbs__link:hover, .simptoms__link:hover, .state__item--link:hover{
		color: #07B1BC;
	}

	.state__item--link:hover{
		text-decoration: underline;
	}

	.ourtasks__item:hover{
		background: #FFEEDB;
	}

	.gibrid__item:hover .gibrid__item--text, .template__item:hover .template__item--text{
		color: #07B1BC;
		border-top: 2px solid #07B1BC;
		border-bottom: 2px solid #07B1BC;
	}

	.letters__button:hover{
		border: 1px solid #04677C;
	}

	.auth__form--label, .template__video--img{
		cursor: pointer;
	}

	.header__menu--wrapper:hover .mobile__menu{
		opacity: 1;
		pointer-events: all;
	}

	.mobile__menu--link:hover{
		text-decoration: underline;
		color: #07B1BC;
	}

	.mobile__menu--link:active{
		font-weight: 700;
	}
}
@media (any-hover: none) {
	.mobile__menu.active{
		opacity: 1;
		pointer-events: all;
	}
}

/* Адаптив */
@media (max-width: 1790px) {
	.container{
		max-width: 1450px;
	}

	.main__text{
		font-size: 3.2rem;
	}

	.main__text--inner{
		max-width: 840px;
	}

	.info__block--img{
		max-width: 450px;
	}

	.template__item{
		width: calc(100% / 2 - 58px / 2);
	}
}
@media (max-width: 1470px) {
	.container, .footer__container{
		max-width: 1180px;
	}

	.main__img{
		max-width: 650px;
	}

	.main__text{
		font-size: 3rem;
	}

	.main__text--inner{
		max-width: 710px;
	}

	.info__block--img{
		max-width: 320px;
		max-height: 250px;
		width: auto;
	}

	.template__menu{
		max-width: 340px;
		padding: 2rem 2rem 3rem 2rem;
	}

	.template__inner{
		gap: 30px;
	}

	.template__action--link{
		font-size: 1.8rem;
	}
}
@media(max-width: 1200px){
	.container, .footer__container{
		max-width: 978px;
	}

	.header__wrapper{
		gap: 30px;
	}

	.main{
		padding: 4rem 0 16rem 0;
	}

	.main__text--inner{
		gap: 30px;
	}

	.main__img{
		max-width: 550px;
	}

	.ourtasks__content{
		gap: 30px;
	}

	.ourtasks__item{
		width: calc(100% / 3 - 60px / 3);
		padding: 1rem 1rem 2.5rem 1rem;
	}

	.ourtasks__item--text{
		font-size: 1.8rem;
	}

	.ourtasks__item--number{
		font-size: 3.6rem;
	}

	.cabinet__points li, .cabinet__text{
		font-size: 2.2rem;
	}

	.template__item{
		width: 100%;
	}

	.subtitle{
		font-size: 2.8rem;
	}
	
	.notfound__text{
		font-size: 2.2rem;
	}
}
@media(max-width: 998px){
	.container, .footer__container{
		max-width: 748px;
	}

	.header__logo{
		max-width: 250px;
	}

	.main{
		padding: 4rem 0 24rem 0;
	}

	.header__search, .header__link, .header__favorite span{
		display: none;
	}

	.menu__button{
		display: flex;
		padding: 0;
		width: 32px;
	}

	.header__wrapper{
		gap: 16px;
	}

	.header__favorite svg{
		width: 24px;
		height: 24px;
		flex-shrink: 0;
	}

	.header__favorite svg path{
		stroke: #04677C;
	}

	.header__menu{
		position: absolute;
		top: 102px;
		left: 0;
		z-index: 99;
		width: 100%;
		transform: translateX(-110%);
		background: #07B1BC;
		padding: 2.4rem;
		transition: .3s ease-in-out;
	}

	.header__menu.active{
		transform: translateX(0);
	}

	.header__menu--wrapper{
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 9px;
	}

	.mobile__menu{
		position: relative;
		top: 0;
		background: none;
		border: none;
		padding: 0;
	}

	.mobile__menu .container{
		max-width: 100%;
		padding: 0;
	}

	.mobile__menu--inner{
		flex-direction: column;
		align-items: flex-start;
		gap: 9px;
	}

	.mobile__menu--link{
		font-size: 1.6rem;
		color: #fff;
	}

	.mobile__menu--link:after{
		display: none;
	}

	.menu__button.active .menu, .menu__button:not(.active) .cross{
		display: none;
	}

	.menu__button:not(.active) .menu, .menu__button.active .cross{
		display: flex;
	}

	.title{
		font-size: 3.8rem;
	}

	.default__link{
		padding: 1.6rem 2.4rem;
		font-size: 2.4rem;
	}

	.info__block--inner{
		gap: 30px;
	}

	.info__block{
		padding: 2.5rem 0rem 10rem 0;
	}

	.gibrid__content{
		gap: 30px;
	}

	.gibrid__item{
		width: calc(100% / 2 - 15px);
	}

	.cabinet__points li, .cabinet__text{
		font-size: 2rem;
	}

	.cabinet__inner{
		gap: 40px;
	}

	.footer__logo{
		max-width: 120px;
		max-height: 40px;
	}

	.footer__content{
		margin-top: 0;
	}

	.header__top{
		padding: 2.4rem 0rem 1.6rem 0;
		border-bottom: 2px solid #07B1BC;
	}

	.header__menu--content{
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
		padding-left: 3rem;
	}

	.header__menu--link.mobile{
		display: flex;
	}

	.menu__link{
		text-decoration: underline;
		position: relative;
	}

	.menu__link svg{
		display: flex;
		width: 24px;
		flex-shrink: 0;
		position: absolute;
		top: 0;
		left: -30px;
	}

	.menu__link.active svg{
		transform: rotate(180deg);
	}

	.mobile__menu--link:hover, .mobile__menu--link.active{
		color: #FFEEDB;
	}

	.breadcrumbs__link, .breadcrumbs__text{
		font-size: 1.6rem;
	}

	.template__inner{
		flex-direction: column;
		align-items: flex-start;
	}

	.template__menu{
		position: relative;
		top: 0;
		max-width: 100%;
	}

	.state__item--link{
		font-size: 2.8rem;
	}

	.state__item{
		gap: 20px;
		padding-bottom: 2.8rem;
	}

	.states__content{
		margin-top: 2.8rem;
		gap: 28px;
	}

	.policy__inner{
		gap: 30px;
	}
	
	.policy p, .policy ul li{
		font-size: 2rem;
	}

	.notfound__inner{
		gap: 30px;
	}

	.notfound__text{
		font-size: 2rem;
	}

	.notfound__img{
		max-width: 400px;
	}

	.auth__text{
		padding: 4rem 0rem;
	}

	.auth__text--inner{
		gap: 30px;
	}

	.auth{
		padding: 4rem 0;
	}

	.auth__form--item--title{
		font-size: 2.8rem;
	}

	.mobile__menu{
		display: none;
		opacity: 1;
		pointer-events: all;
	}

	.mobile__menu.active{
		display: flex;
	}

	.menu__link{
		padding: 0;
	}
}
@media(max-width: 768px){
	.container, .footer__container{
		max-width: 460px;
	}

	.main__text{
		font-size: 1.8rem;
	}

	.main__title{
		font-size: 3.6rem;
	}

	.ourtasks__item{
		width: calc(100% / 2 - 30px / 2);
		gap: 16px;
	}

	.ourtasks__item--number{
		font-size: 3.2rem;
	}

	.title{
		font-size: 3rem;
	}

	.ourtasks{
		padding: 4rem 0;
	}

	.ourtasks__inner{
		gap: 24px;
		align-items: flex-start;
	}

	.ourtasks__content{
		gap: 24px;
	}

	.ourtasks__item--text{
		font-size: 1.6rem;
	}

	.gibrid__item{
		width: 100%;
	}

	.gibrid__content{
		margin-top: 3rem;
	}

	.info__block{
		padding: 2.5rem 0rem 25rem 0;
	}

	.gibrid, .info__block{
		margin: 4rem 0;
	}

	.default__link{
		font-size: 1.6rem;
		padding: 1rem 1.2rem;
	}

	.info__block--inner{
		gap: 24px;
	}

	.cabinet__points li, .cabinet__text{
		font-size: 1.6rem;
	}

	.cabinet__inner{
		gap: 24px;
	}

	.cabinet{
		padding: 4rem 0;
	}

	.footer__content{
		flex-direction: column;
		align-items: flex-start;
	}

	.footer__item{
		gap: 12px;
	}

	.footer__item--title{
		margin-top: 1.6rem;
	}

	.footer{
		padding: 4rem 0;
	}

	.header__menu--content{
		gap: 12px;
	}

	.header__menu--link{
		font-size: 1.6rem;
	}

	.template__menu--wrapper{
		gap: 10px;
	}

	.template__action--link{
		font-size: 1.4rem;
	}

	.template__action--link img{
		width: 20px;
	}

	.breadcrumbs__link, .breadcrumbs__text{
		font-size: 1.4rem;
	}

	.search__block{
		padding: 1.5rem 0;
	}

	.template{
		padding: 2rem 0rem 3rem 0;
	}

	.subtitle, .state__item--link{
		font-size: 2.4rem;
	}

	.template__content--block{
		gap: 16px;
	}

	.state__item{
		padding-bottom: 1.6rem;
		gap: 12px;
	}

	.states__content{
		margin-top: 1.6rem;
		gap: 16px;
	}

	.up__inner{
		padding-top: 0;
	}

	.palliativ{
		padding: 0;
	}
	
	.policy p, .policy ul li{
		font-size: 1.8rem;
	}

	.notfound__text{
		font-size: 1.8rem;
	}

	.notfound__img{
		max-width: 300px;
	}

	.auth__text{
		padding: 3rem 0rem;
	}

	.auth__text--inner{
		gap: 24px;
	}

	.auth__form--item--title{
		font-size: 1.8rem;
	}

	.auth__inner, .auth__form{
		gap: 24px;
	}

	.auth__forgot{
		font-size: 1.6rem;
	}
}
@media(max-width: 480px){
	.container, .footer__container{
		max-width: 100%;
		padding: 0rem 1.6rem;
	}

	.main__text{
		font-size: 1.4rem;
	}

	.main__title{
		font-size: 2.4rem;
	}

	.main__text--inner{
		gap: 16px;
	}

	.main{
		padding: 2.4rem 0 16rem 0;
	}

	.title{
		font-size: 2.4rem;
	}

	.subtitle, .state__item--link{
		font-size: 2rem;
	}

	.ourtasks__item{
		width: 100%;
		padding: 0.8rem 1.6rem 1.6rem 1.6rem;
	}

	.footer{
		padding: 2.4rem 0rem 3.2rem 0;
	}

	.footer__logos{
		gap: 20px;
	}

	.header__logo{
		max-width: 160px;
	}

	.gibrid__item--img{
		width: 112px;
		height: 112px;
	}

	.gibrid__item{
		gap: 16px;
	}

	.gibrid__content{
		margin-top: 2.4rem;
	}

	.gibrid__title{
		text-align: center;
	}

	.header__menu{
		top: 79px;
	}

	.header__menu, .auth{
		padding: 2.4rem 0;
	}

	.template__item{
		gap: 15px;
	}

	.template__item--img{
		width: 100px;
	}

	.template__item--text{
		font-size: 1.6rem;
	}
	
	.policy p, .policy ul li{
		font-size: 1.6rem;
	}

	.notfound__text{
		font-size: 1.6rem;
	}

	.notfound__img{
		max-width: 280px;
	}

	.notfound{
		padding: 0;
	}
}