/*! BREADCRUMBS */
.breadcrumbs {
  font-size: 12px;
  text-align: left;
  padding-left: 0;
  width: 100%;
  margin: 10px 0px;
}
.breadcrumbs__item {
  font-family: var(--sans);
  display: inline;
  list-style: none;
  position: relative; 
}
.breadcrumbs__item-last {
  color: var(--grey);
  cursor: default;
}
.breadcrumbs__item-link {
  text-decoration: none;
  color: var(--grey);
  outline: none;
  transition: all .3s ease-in-out;
}
.breadcrumbs__item-partners{
  font-size: 12px;
  font-style: italic;
  font-family: var(--roboto);
}
.breadcrumbs__item-link:focus, .breadcrumbs__item-link:visited {
  text-decoration: none;
  color: var(--grey);
  outline: none; 
}
.breadcrumbs__item-link:hover, .breadcrumbs__item-link:active {
  text-decoration: underline;
  color: var(--dark-grey); 
}
.breadcrumbs__item + .breadcrumbs__item {
  padding-left: 20px; 
}      
.breadcrumbs__item + .breadcrumbs__item:before{
  display: inline-block;
  content: "\203A";
  position: absolute;
  left: 5px;
  font-size: 18px;
  color: var(--grey);
  top: -2px;
  line-height: 100%
}

@media screen and (max-width: 829px) {
  .breadcrumbs {
    font-size: 11px;
    margin: 15px 0px;
  }
  .breadcrumbs__item span{
    display: inline-block;
    overflow-x: hidden; 
  }
  .breadcrumbs__item:nth-child(3) .breadcrumbs__item-last {
    width: 90px;
    white-space: nowrap;
    overflow-x: hidden;
    text-overflow: ellipsis;
  }
  .breadcrumbs__item + .breadcrumbs__item:before {
    top: -6px;
  }
}

.article-page{
	font-family: var(--sans);
}
.article__title{
	font-family: var(--sans);
	font-style: normal;
	font-weight: bold;
	font-size: 36px;
	line-height: 49px;
	text-align: center;
	color: #000000;
	width: 100%;
	margin-top: 0px;
	margin-bottom: 14px;
}
.article__reklama-bage{
	display: flex;
  align-items: center;
  justify-content: center;
	font-family: var(--sans);
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 0.235em;
	text-transform: uppercase;
	color: var(--darken-grey);
	border-radius: 2px;
	background-color: var(--light-grey);
	width: 260px;
	height: 35px;
	margin-top: 10px;
}
.article__meta{
	width: 100%;
	margin: 20px 0 0;
}
.meta__time{
	font-size: 14px;
	color: var(--grey);
	line-height: 19px;
	text-align: center;
	width: 100%;
}
.article__content{
	font-family: var(--serif);
	color: var(--black);
	width: 100%;
	max-width: 770px;
	margin-top: 20px;
	margin-right: auto;
}
.article__content .article__image--main{
	width: 770px;
	height: 480px;
	margin-bottom: 20px;
}
.article__content .article__image--main img{
	height: 100%;
}
.article__content h1,
.article__content h2,
.article__content h3,
.article__content h4,
.article__content h5,
.article__content h6{
	font-family: var(--sans);
	font-style: normal;
	font-weight: bold;
	line-height: 1em;
}
.article__content h1{
	font-size: 30px;
}
.article__content h2{
	font-size: 24px;
}
.article__content h3{
	font-size: 18px;
}
.article__content h4,
.article__content h5,
.article__content h6{
	font-size: 16px;
}
.article__content p{
	font-family: var(--serif);
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: 1.8em;
	text-align: left;
	max-width: 100%;
	word-break: break-word;
	margin: 20px 0;
}
.article__content * .text-bold{
	font-weight: bold;
}
.article__content img{
	object-fit: cover;
	max-width: 100%;
	height: auto;
}
.article__content iframe{
	max-width: 100%;
}
.article__content a:not([class]),
.article__content a.link-tooltips{
	color: var(--link-blue);
	text-decoration: none;
	position:relative;
	transition: color 200ms ease-in-out;
}
.article__content a:not([class])::after,
.article__content a.link-tooltips::after{
	color: inherit;
	background-color: currentColor;
	display: block;
	content: "";
	height: 1px;
	width: 0%;
	left: 50%;
	bottom: 0px;
	position:absolute;
	transition: width 200ms ease-in-out;
	transform:translateX(-50%);
}
.article__content a:not([class]):hover::after,
.article__content a.link-tooltips:hover::after{
	width: 100%;
}
.article__content a:not([class]):focus,
.article__content a.link-tooltips:focus{
	color: var(--link-blue-hover);
}
.article__content ul li p,
.article__content ol li p{
	margin: 0;
	padding: 0;
}
.article__content ul:not(.glide__slides){
	list-style: none;
	margin-left: 20px;
	padding: 0;
	clear: both;
}
.article__content ul:not(.glide__slides) li{
	position: relative;
	font-size: 16px;
	line-height: 1.8em;
	padding: 4px 0 5px 21px;
}
.article__content ul:not(.glide__slides) li:before{
	content: '';
	left: 0;
	top: 12px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--blue);
	display: inline-block;
	position: absolute;
}
.article__content ol:not(.tags__list){
	counter-reset: my-counter;
	list-style: none;
	margin-left: 20px;
	padding: 0;
	clear: both;
}
.article__content ol:not(.tags__list) li{
	position: relative;
	font-size: 16px;
	line-height: 1.8em;
	padding: 4px 0 5px 30px;

}
.article__content ol:not(.tags__list) li:before{
	display: inline-block;
	position: absolute;
	left: 0;
	counter-increment: my-counter;
	content: counter(my-counter) ". ";
	font-family: var(--sans);
	font-weight: bold;
	font-size: 16px;
	color: var(--blue);
	text-align: right;
	min-width: 20px;
}

.article-blocks__title{
	font-family: var(--sans);
  font-size: 24px;
  line-height: 33px;
  text-transform: uppercase;
  color: var(--black);
}

/*!ARTICLE: slider*/
.article__content .article__slider li{
	text-align: center;
}
.article__slider li{
	display: flex;
  flex-flow: row nowrap;
  align-items: center;
  text-align: center;
  justify-content: center;
	text-align: center;
}

.article__content .attach-image{
	text-align: center;
}

/*!ARTICLE: status*/
.admin-tools{
	width: 100%;
	margin-right: auto;
}
.admin-tools__item{
	display: inline-block;
	font-size: 75%;
	line-height: 1;
	text-align: center;
	border-radius: 10rem;
	padding: 0.25em 0.6em;
	margin-left: 10px;
}
.admin-tools__item--edit{
	color: white;
	background-color: var(--blue);
	border-radius: 0;
	font-size: 90%;
	padding: 5px 20px;
	margin: 0;
}
.admin-tools__item--no-published{
	color: var(--black);
	background-color: #ECCD8E;
}
.admin-tools__item--published{
	color: white;
	background-color: #28a745;
}
.admin-tools__item--planned{
	color: white;
	background-color: #17a2b8;
}
.admin-tools__item--pay{
	color: white;
	background-color: #e25d5d;
}

@media screen and (max-width: 600px){
	.admin-tools__item--edit{
			width: 100%;
			margin-bottom: 10px;
	}
}

/*!ARTICLE: consult*/
.questions-box{
	box-sizing: border-box;
	position: relative;
	font-family: var(--sans);
	background: #FFFFFF;
	border: 10px solid var(--light-grey);
	box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
	border-radius: 3px;
	height: 260px;
	width: 100%;
	max-width: 770px;
	padding-top: 20px;
	margin: 40px 0 20px;
	clear: both;
}
.questions-box__title{
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translate(-50%, 0);
	background: var(--light-grey);
	box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.15);
	border-radius: 3px;
	width: 340px;
	height: 50px;
}
.questions-box__title span{
	font-family: var(--sans);
	font-style: normal;
	font-weight: normal;
	text-transform: none;
	color: var(--darken-grey);
	font-size: 18px;
	line-height: 29px;
	margin-right: 5px;
}
.questions-box__content {
	font-family: var(--sans);
	color: var(--black);
	width: 100%;
	background-color: white;
}
.question-wrapper{
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
}
.question-wrapper .question__doctor{
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-between;
	align-items: center;
	font-family: var(--sans);
	width: 160px;
	height: 100%;
	padding: 10px 22px 10px 10px;
	margin: 0 auto;
}
.question-wrapper .question__doctor .doctor__img{
	width: 94px;
	height: 94px;
	border-radius: 50%;
	overflow: hidden;
	border: 7px solid var(--light-grey);
}
.question-wrapper .question__doctor .doctor__name{
	font-weight: bold;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 18px;
	color: var(--link-blue);
	text-align: center;
	width: 100%;
	margin: 12px 0 3px;
}
.question-wrapper .question__doctor .doctor__specialty{
	font-size: 12px;
	text-align: center;
	color: var(--darken-grey);
}
.question-wrapper .question__content{
	width: calc(100% - 160px);
}
.question-wrapper .question__content .content__title{
	font-weight: bold;
	font-size: 24px;
	line-height: 29px;
	white-space: nowrap;
	overflow: hidden;
  text-overflow: ellipsis;
  max-height: 30px;
  width: 100%;
	margin: 10px 0 8px;
}
.question-wrapper .question__content .content__date{
	color: var(--grey);
	font-style: normal;
	font-weight: normal;
	font-size: 12px;
	line-height: 16px;
}
.question-wrapper .question__content .content__body{
	color: var(--darken-grey);
	font-style: normal;
	font-weight: normal;
	font-size: 15px;
	line-height: 24px;
	height: 50px;
	overflow-y: hidden;
	text-overflow: ellipsis;
	margin: 15px 0 20px;
}
.question-wrapper .question__content .content__body > *{
	margin: 0;
}
.question-wrapper .question__content .content__buttons{
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
	width: calc(100% - 160px);
}
.question-wrapper .question__content .content__buttons .btn{
	background-color: white;
	border: 1px solid var(--grey);
	text-align: center;
	font-size: 14px;
	line-height: 1.8em;
	padding: 6px;
}
.question-wrapper .question__content .content__buttons .btn span{
	display: inline;
	vertical-align: middle;
	font-family: var(--sans);
	font-weight: bold;
	font-size: 20px;
	line-height: 16px;
	text-align: center;
	color: var(--blue);
	padding-right: 5px;
}
.question-wrapper .question__content .content__buttons .btn:hover,
.question-wrapper .question__content .content__buttons .btn:focus{
  background-color: var(--light-grey-border);
}
.question-wrapper .question__content .content__buttons .btn.btn--blue{
	background-color: var(--blue);
	border-color: var(--blue);
	margin-right: 10px;
}
.question-wrapper .question__content .content__buttons .btn.btn--blue:hover,
.question-wrapper .question__content .content__buttons .btn.btn--blue:focus{
  color: var(--blue);
  background-color: white;
}



@media screen and (max-width: 700px){
	.question-wrapper .question__doctor{
		display: none;
	}
	.question-wrapper .question__content{
		width: 100%;
		padding: 0 20px;
	}
	.question-wrapper .question__content .content__buttons{
		width: 100%;
	}
}
@media screen and (max-width: 480px){
	.questions-box{
		border-width: 5px;
		height: auto;
		padding-bottom: 20px;
		margin-top: 50px;
	}
	.questions-box__title{
		width: calc(100% + 10px);
		box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.1);
	}
	.questions-box__title h2{
		font-size: 16px;
	}
	.question-wrapper .question__content{
		width: 100%;
		padding: 0 10px;
	}
	.question-wrapper .question__content .content__body{
		max-height: 150px;
	}
	.question-wrapper .question__content .content__title{
		font-size: 16px;
	}
	.question-wrapper .question__content .content__buttons{
		justify-content: space-between;
	}
	.question-wrapper .question__content .content__buttons .form-link{
		width: 48%;
	}
	.question-wrapper .question__content .content__buttons .btn{
		font-size: 13px;
		width: 100%;
		margin: 0;
	}
}
@media screen and (max-width: 319px){
	.questions-box__title h2{
		font-size: 15px;
	}
	.question-wrapper .question__content .content__buttons .btn{
		font-size: 11px;
	}
}

/*!ARTICLE: blockquote*/
.blockquote{
	position: relative;
}
.blockquote p{
	font-family: var(--serif);
	color: #000000;
	font-style: italic;
	font-weight: normal;
	font-size: 16px;
	line-height: 29px;
	margin: 20px 0 20px 50px;
}
.blockquote::before{
	content: "";
	display: block;
	background: url('/img/icons/icon_quote.svg') center / 100% no-repeat;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 31px;
	height: 22px;
}


/*!ARTICLE: blockquote with image*/
.blockquote-image{
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
	font-family: var(--sans);
	color: var(--black);
	background-color: white;
	width: 100%;
	margin: 20px 0;
	clear: both;
}
.blockquote-image .blockquote-image__author{
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-between;
	align-items: center;
	font-family: var(--sans);
	width: 160px;
	height: 100%;
	padding: 10px 22px 10px 10px;
	margin: 0 auto;
}
.blockquote-image .blockquote-image__author .author__img{
	width: 94px;
	height: 94px;
	border-radius: 50%;
	overflow: hidden;
	border: 7px solid var(--light-grey);
}
.blockquote-image .blockquote-image__author .author__name{
	font-weight: bold;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 18px;
	color: var(--link-blue);
	text-align: center;
	width: 100%;
	margin: 12px 0 3px;
}
.blockquote-image .blockquote-image__author .author__role{
	font-size: 12px;
	text-align: center;
	color: var(--darken-grey);
}
.blockquote-image .blockquote-image__text{
	font-family: var(--serif);
	color: #000000;
	font-style: italic;
	font-weight: normal;
	font-size: 16px;
	line-height: 29px;
	margin: 15px 0 20px;
	width: calc(100% - 160px);
}

/*!ARTICLE: tags diseases and simptoms*/
.article__tags .tags__title {
	font-family: var(--sans);
	font-style: normal;
	font-weight: bold;
	font-size: 18px;
	line-height: 24px;
	background-color:  var(--light-grey);
	height: 40px;
	width: 100%;
	padding: 8px 20px;
}
.article__tags .tags__list {
  display: flex;
  flex-flow: row wrap;
	justify-content: flex-start;
	list-style: none;
	width: 100%;
	padding: 0;
	margin: 10px 0;
}
.article__tags .tags__list a{
	display: block;
	font-family: var(--sans);
	font-size: 11px;
	line-height: 14px;
  color: var(--blue);
	border: 1px solid #098FF6;
	border-radius: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 200ms linear;
  padding: 4px 10px 5px;
  margin-right: 5px;
  margin-bottom: 5px;
}
.article__tags .tags__list a::after{
	content: none;
}
.article__tags .tags__list a:hover {
  color: white;
  background-color: var(--blue);
  border-color: var(--blue);
}

/*!ARTICLE: similar news*/
.article__similar-news{
	width: 100%;
	margin-top: 20px;
}
.similar-news .similar-news__title{
	font-family: var(--sans);
	font-size: 24px;
	line-height: 33px;
	text-transform: uppercase;
	color: var(--black);
}
.similar-news .similar-news__btn-load{
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--light-grey);
	width: 100%;
	height: 50px;
}
.similar-news .similar-news__btn-load::before{
	content: '+';
	color: var(--blue);
	font-size: 25px;
	line-height: 1em;
	padding-right: 10px;
	padding-bottom: 5px;
}
.similar-news .similar-news__loader{
	display: block;
	margin: 0 auto 10px;
}


/*!ARICLES: social buttons*/
.article__socials{
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	margin: 20px 0;
	clear: both;
}
.article__socials .socials__title{
	font-family: var(--sans);
	font-size: 24px;
	line-height: 33px;
	text-transform: uppercase;
	color: var(--black);
}
.article__socials .socials__list{
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
}
.article__socials .socials__button{
		position: relative;
		display: block;
		height: 50px;
		width: 141px;
		margin: 0 5px;
}
.article__socials .socials__button:hover>span{
	transform: translate(-4px,-4px);
}
.article__socials .socials__button:active{
	opacity: 0.8;
}
.article__socials .socials__button span{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	font-family: var(--sans);
	background: var(--color-facebook);
	color: #ffffff;
	font-weight: bold;
	font-size: 18px;
	line-height: 29px;
	border: 1.5px solid var(--color-facebook);
	text-align: center;
	transition: transform .3s ease;
	height: 100%;
	width: 100%;
}
.article__socials .socials__button span::before{
	content: "";
	display: block;
	background: no-repeat center / 140% url('/img/icons/icon_logo_fb.svg');
	height: 30px;
	width: 30px;
	margin-right: 3px;
}
.article__socials .socials__button::before{
	content: "";
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	border: 1.5px solid var(--color-facebook);
}
.article__socials .socials__button.button--viber span{
	background: var(--color-viber);
	border-color: var(--color-viber);
}
.article__socials .socials__button.button--viber span::before{
	background: no-repeat center / 100% url('/img/icons/icon_logo_viber2.svg');
	margin-right: 10px;
}
.article__socials .socials__button.button--viber::before{
	border-color: var(--color-viber);
}
.article__socials .socials__button.button--youtube span{
	background: var(--color-youtube);
	border-color: var(--color-youtube);
}
.article__socials .socials__button.button--youtube span::before{
	background: no-repeat center / 140% url('/img/icons/icon_logo_youtube.svg');
	margin-right: 10px;
}
.article__socials .socials__button.button--youtube::before{
	border-color: var(--color-youtube);
}
.article__socials .socials__button.button--tg span{
	background: var(--color-tg);
	border-color: var(--color-tg);
}
.article__socials .socials__button.button--tg span::before{
	background: no-repeat center / 100% url('/img/icons/icon_tg.svg');
	margin-right: 10px;
}
.article__socials .socials__button.button--tg::before{
	border-color: var(--color-tg);
}

/*!ARTICLES: readmore*/
.article__content .readmore{
	float: left;
	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-start;
	align-items: flex-start;
	background: #FFFFFF;
	border: 1px solid var(--blue);
	border-left-width: 5px;
	border-radius: 2px;
	box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
	width: 100%;
	max-width: 360px;
	padding: 6px 10px 12px;
	margin: 10px 20px 20px 0;
	z-index: 2;
	position: relative;
	/* transition: border 300ms ease-in-out; */
}
/* .article__content .readmore:hover,
.article__content .readmore:focus{
	border-left-width: 10px;
} */
.article__content .readmore .readmore__title{
	font-family: var(--sans);
	color: var(--link-blue);
	font-weight: bold;
	font-size: 14px;
	line-height: 29px;
	text-transform: uppercase;
	padding-bottom: 3px;
}
.article__content .readmore a{
	font-family: var(--sans);
	color: var(--black);
	font-weight: bold;
	font-size: 14px;
	line-height: 19px;
	transition: color 150ms ease-in-out;
}
.article__content .readmore a:hover,
.article__content .readmore a:focus{
	color: var(--link-blue);
}
.article__content .readmore a::after{
	content: none;
}
.article__content .readmore.readmore--relinking a:last-child{
	margin-top: 10px;
}

/*!ARTICLES: links tooltips*/
.article__content {
	position: relative;
}
.article__content .link-tooltips__box{
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -120%);
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: center;
	border-left: 5px solid var(--blue);
	border-radius: 2px;
	box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
	width: 370px;
	background: #FFFFFF;
	visibility: hidden;
  opacity: 0;
	transition: visibility 0s linear 1.33s, opacity 0.33s linear 1s;
	z-index: 10;
}
.article__content .link-tooltips[data-create-tooltip=false]:hover .link-tooltips__box,
.article__content .link-tooltips[data-create-tooltip=false]:focus .link-tooltips__box,
.article__content .link-tooltips[data-create-tooltip=false] .link-tooltips__box:focus,
.article__content .link-tooltips[data-create-tooltip=false] .link-tooltips__box:hover{
	visibility: visible;
	opacity: 1;
	transition-delay: 0s, 0.5s;
}
.article__content .link-tooltips .link-tooltips__box::after{
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 20px 20px 0 20px;
	border-color: #ffffff transparent transparent transparent;
}
.article__content .link-tooltips .link-tooltips__box .box__img{
	height: 100px;
	width: 160px;
}
.article__content .link-tooltips .link-tooltips__box .box__title{
	font-family: var(--sans);
	color: var(--black);
	font-style: normal;
	font-weight: normal;
	font-size: 15px;
	line-height: 20px;
	padding: 10px;
}

/*!TABLE*/
.article__content table{
	font-family: var(--sans);
	border: none;
	margin: 0 auto;
	margin-bottom: 20px;
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
	max-width: 100%;
	border: 1px solid var(--light-grey-border);
}
.article__content table caption{
	text-align: center;
	font-size: 26px;
	margin: 22px 0px;
	line-height: 120%;
}
.article__content table tbody{
	border: 1px solid var(--light-grey-border);
}
.article__content table th,
.article__content table td{
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
	border: none;
	border-right: 1px solid var(--light-grey-border);
	padding: 12px 20px 13px;
}
.article__content table td p{
	padding: 0;
	margin: 0;
}
.article__content table tr th{
	text-align: center;
	font-weight: bold;
	font-size: 14px;
	line-height: 29px;
	color: var(--darken-grey);
	background-color: var(--light-grey);
}
.article__content table tr:nth-child(2n) td{
	background-color: var(--light-grey);
}
.article__content table tr:nth-child(2n+1) td{
	background-color: #ffffff;
}
.article__content table.block-analyse-table th div{
	content: '';
	display: inline-block;
	background: url('/img/icons/arrow_down.png')  no-repeat;
	line-height: 22px;
	padding-right: 13px;
	width: 8px;
	height: 20px;
}
.article__content table.block-analyse-table th:first-child div{
	background: url('/img/icons/arrow_up.png')  no-repeat;
}
.article__content table.block-analyse-table td{
	font-weight: normal;
	font-size: 14px;
	line-height: 22px;
}

/*!BANNERS*/
.article_first_banner,
.article_second_banner {
	width: 100%;
	height: 100px;
	margin: 30px auto 20px;
}
/* #div-gpt-ad-1582728976212-0{
	margin: 20px 0 !important;
} */


@media screen and (max-width: 1199px){
	.article__content{
		margin: 20px auto;
	}
	.article__right-column{
		display: none;
	}
}
@media screen and (max-width: 829px){
	.article__title{
		font-size: 22px;
    line-height: 29px;
		margin-bottom: 5px;
	}
	.article__meta {
    margin: 0 0 10px;
	}
	.article__meta .meta__time{
		font-size: 11px;
		line-height: 15px;
	}
	.article__content .article__image--main{
		display: none;
	}
	.article__content h1{
		font-size: 21px;
	}
	.article__content h2{
		font-size: 20px;
	}
	.article__content ul:not(.glide__slides),
	.article__content ol{
		margin-left: 0;
	}
	.admin-tools{
		text-align: center;
		margin: 0 0 20px;
	}
	/*!ARTICLE: blockquote*/
	.article__content .glide__arrows.glide__arrows--full .glide__arrow{
		height: 50px;
    width: 30px;
	}
	/*!ARTICLE: blockquote*/
	.blockquote p{
		margin-left:30px;
	}
	.blockquote::before{
		width: 21px;
		height: 15px;
	}
	/*!ARTICLE: blockquote with image*/
	.blockquote-image{
		flex-flow: row wrap;
		border-bottom: 1px solid #DEE1E2;
	}
	.blockquote-image .blockquote-image__author{
		position: relative;
		width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	.blockquote-image .blockquote-image__author::before{
		content: '';
		position: absolute;
		top: 40px;
		left: 0;
		width: 100%;
		border-bottom: 1px solid #DEE1E2;
	}
	.blockquote-image .blockquote-image__author .author__img{
		z-index: 2;
		width: 89px;
    height: 89px;
	}
	.blockquote-image .blockquote-image__author .author__name{
		font-size: 12px;
		margin: 10px 0 5px;
	}
	.blockquote-image .blockquote-image__author .author__role{
		font-size: 12px;
		line-height: 16px;
	}
	.blockquote-image .blockquote-image__text{
		width: 100%;
    text-align: center;
	}

	/*!ARTICLE: socials btns*/
	.article__socials{
		flex-flow: row wrap;
	}
	.article__socials .socials__title{
		width: 100%;
		margin-bottom: 10px;
	}
	.article__socials .socials__list{
		width: 100%;
	}
	.article__socials .socials__button{
		width: 29%;
	}
	.article__socials .socials__button span::before{
		margin-right: 0;
	}

	/*!ARTICLE: blocks*/
	.article__tags .tags__list a{
		white-space: nowrap;
    overflow: hidden;
    height: 22px;
    text-overflow: ellipsis;
		padding: 2px 6px 3px;
		margin-right: 10px;
    margin-bottom: 10px;
	}

	/*!ARTICLE: rating*/
	.article__rating .rating__label{
		display: none;
	}
	.article__rating .rating__label{
		display: none;
	}

	/*! BANNERS  */
	.article_first_banner,
	.article_second_banner {
		height: auto;
	}
}

.article__authors{
	width: 100%;
	margin-bottom: 30px;
}
.article__authors .authors__list{
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	font-family: var(--sans);
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}
.article__authors .authors__list .list__author{
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-around;
	align-items: flex-start;
	width: 100%;
	max-width: 340px;
	margin: 0 auto;
}
.article__authors .authors__list .list__author:hover .info__name,
.article__authors .authors__list .list__author:focus .info__name{
	text-decoration: underline !important;
}
.article__authors .authors__list .list__author .author__img{
	position: relative;
}
.article__authors .authors__list .list__author .author__img .img-wrapper{
	position: relative;
	overflow: hidden;
	border-radius: 50%;
	width: 75px;
	height: 75px;
}
.article__authors .authors__list .list__author .author__img::after{
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	display: block;
	background: var(--blue) url('/img/author_star.png') center no-repeat;
	border-radius: 50%;
	box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.25);
	width: 27px;
	height: 27px;
}
.article__authors .authors__list .list__author:nth-child(2) .author__img::after{
	background: var(--blue) url('/img/author_pencil.png') center no-repeat;
}
.author__bage{
	display: none;
}
.article__authors .authors__list .list__author .author__info{
	width: calc(100% - 100px);
	margin-left: 20px;
}
.article__authors .authors__list .list__author .author__info .info__title{
	font-size: 16px;
	line-height: 16px;
	color: var(--black);
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 9px;
	margin-top: 0;
}
.article__authors .authors__list .list__author .author__info .info__name{
	font-size: 14px;
	line-height: 16px;
	color: var(--link-blue);
	font-weight: bold;
	margin-bottom: 4px;
	margin-top: 0;
}
.article__authors .authors__list .list__author .author__info .info__role{
	font-size: 12px;
	line-height: 16px;
	color: var(--darken-grey);
	text-align: left;
	width: 100%;
	margin: 0;
}

@media screen and (max-width: 829px){
	.article__authors{
		margin-bottom: 0;
	}
	.article__authors .authors__list {
		background-color: var(--light-grey);
		padding: 8px 9px;
	}
	.article__authors .authors__list .list__author{
		align-items: center;
	}
	.article__authors .authors__list .list__author:nth-child(2){
		margin-top: 10px;
	}
	.article__authors .authors__list .list__author .author__img{
		display: none;
	}
	.article__authors .authors__list .list__author .author__bage{
		display: block;
		background: var(--blue) url('/img/author_star.png') center no-repeat;
		border-radius: 50%;
		box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.25);
		width: 25px;
		height: 25px;
	}
	.article__authors .authors__list .list__author:nth-child(2) .author__bage{
		background: var(--blue) url('/img/author_pencil.png') center no-repeat;
	}
	.article__authors .authors__list .list__author .author__info{
		display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
		width: calc(100% - 30px);
		margin-left: 10px;
	}
	.article__authors .authors__list .list__author .author__info .info__title{
		font-size: 12px;
		margin-bottom: 0px;
	}
	.article__authors .authors__list .list__author .author__info .info__title::after{
		content: ":";
	}
	.article__authors .authors__list .list__author .author__info .info__name{
		font-size: 12px;
		padding-left: 5px;
		margin: 0;
	}
}

/*!SOURCES LIST */
.sources-box,
.content-box{
	clear: both;
	border: 1px solid var(--light-grey-border);
	transition: all ease-in-out .3s;
}
.content-box{
	margin-bottom: 35px;
}
.sources-box *{
	font-size: 14px;
}
.sources-box .sources__list *{
	font-family: var(--serif);
	font-style: italic !important;
	font-size: 14px !important;
	transition: all 300ms ease-in-out;
}
.sources-box .sources__list *:not(a){
	color: var(--grey) !important;
}
.sources-box .sources__btn,
.content-box .content__btn{
	display: flex;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	font-family: var(--sans);
	color: var(--grey);
	font-weight: normal;
	font-size: 16px;
	line-height: 22px;
	text-align: center;
	background-color: #FFFFFF;
	border: none;
	width: 100%;
	height: 50px;
	margin: 0;
	transition: background-color 300ms ease-in-out;
}
.sources-box .sources__btn:hover,
.sources-box .sources__btn:focus,
.content-box .content__btn:hover,
.content-box .content__btn:focus{
	background-color: var(--light-grey);
	outline: none;
}
.sources-box .sources__btn:after,
.sources-box .sources__btn:before,
.content-box .content__btn:after,
.content-box .content__btn:before{
	transition: opacity 300ms ease-in-out;
}
.sources-box[data-status=close] .sources__btn::before,
.content-box[data-status=close] .content__btn::before{
	content: "";
	display: block;
	opacity: 1;
	background: url('/img/icons/icon_sources.png') no-repeat;
	width: 29px;
	height: 29px;
	margin-right: 18px;
}
.content-box[data-status=close] .content__btn::before{
	background: url('/img/icons/icon_content.png') no-repeat;
	width: 24px;
  height: 16px;
}
.sources-box[data-status=open] .sources__btn::before,
.content-box[data-status=open] .content__btn::before{
	opacity: 0;
}
.sources-box[data-status=open] .sources__btn:after,
.content-box[data-status=open] .content__btn:after{
	content: "";
	display: block;
	opacity: 1;
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 10px solid var(--darken-grey);
	margin-left: 8px;
}
.sources-box[data-status=close] .sources__btn:after,
.content-box[data-status=close] .content__btn:after{
	opacity: 0;
}
.sources-box[data-status=close] .sources__list,
.content-box[data-status=close] .content__list{
	opacity: 0;
	height: 1px;
	margin: 0;
	padding: 0 15px;
	overflow: hidden;
}
.sources-box[data-status=close] .sources__list *{
	margin: 0;
}
.sources-box[data-status=open] .sources__list,
.content-box[data-status=open] .content__list{
	height: auto;
	opacity: 1;
	overflow: none;
	padding: 0 15px;
}


.rating {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	position: relative;
	font-family: var(--sans);
	color: var(--grey);
	margin-bottom: 20px;
}
.rating__label {
	font-weight: bold;
	font-size: 14px;
	line-height: 19px;
	padding-right: 10px;
}
.rating__form {
	z-index: 2;
	padding-right: 10px;
}
.rating__stars {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
}
.rating__stars:not(.rating__stars--small):hover .stars__item.activ::before {
	background: url("/img/icons/star_grey.svg");
}
.rating__stars:not(.rating__stars--small):hover .stars__item:hover::before {
	background: url("/img/icons/star_yellow.svg");
}
.rating__stars .stars__item {
	position: relative;
	display: inline-block;
	width: 16px;
	height: 16px;
	cursor: pointer;
}
.rating__stars .stars__item:not(:last-child) {
	margin-right: 6px;
}
.rating__stars .stars__item::before {
	content: ' ';
	display: block;
	position: absolute;
	top: 0;
	background-position: 0px 0px;
	background-repeat: no-repeat;
	background: url("/img/icons/star_grey.svg");
	width: 16px;
	height: 16px;
}
.rating__stars .stars__item.activ::before {
	background: url("/img/icons/star_blue.svg");
}
.rating__stars.rating__stars--small .stars__item {
	width: 12px;
	height: 12px;
}
.rating__stars.rating__stars--small .stars__item:not(:last-child) {
	margin-right: 5px;
}
.rating__stars.rating__stars--small .stars__item::before {
	width: 12px;
	height: 12px;
}
.rating__form[data-status=voted] .rating__stars .stars__item {
	cursor: default !important;
}
.rating__form[data-status=voted] .rating__stars .stars__item::before {
	background: url("/img/icons/star_grey.svg") !important;
}
.rating__form[data-status=voted] .rating__stars .stars__item.activ::before {
	background: url("/img/icons/star_blue.svg") !important;
}
.rating__score {
	display: inline;
	font-size: 12px;
	line-height: 16px;
}
.rating__response {
	position: absolute;
	font-size: 13px;
	opacity: 1;
	transition: all 300ms ease-in-out;
	transition-delay: 3s;
	width: 100%;
	text-align: right;
}
.rating__response.rating__response--error {
	color: red;
}
.rating__response.rating__response--success {
	color: #0096dd;
}
.rating__response.rating__response[data-status=hidden] {
	opacity: 0;
}



/*! doctor's page rating*/
.rating--card .rating {
	flex-flow: row wrap;
	justify-content: center;
}

.rating--card .stars-rating__star {
	width: 20px;
	height: 20px;
	margin-right: 5px;
}

.rating--card .stars-rating__star:before,
.rating--card .stars-rating__star:after {
	width: 20px;
	height: 20px;
}

.rating--card .rating .rating__text {
	font-size: 12px;
	width: 150px;
	margin-top: 5px;
}

/*!RIGHT COLUMN*/
.right-column{
	text-align: center;
	width: 100%;
	max-width: 350px;
	padding: 0;
	margin-top: 20px;
	margin-left: auto;
	margin-right: 0;
}

/*!RIGHT-COLUMN: blocks*/
.right-column__block{
	background: #FFFFFF;
	box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
	border-radius: 2px;
	width: 100%;
	margin: 30px 0 40px;
}
.right-column__title{
	font-family: var(--sans);
	font-style: normal;
	font-weight: normal;
	font-size: 19px;
	color: var(--black);
	text-transform: uppercase;
	text-align: left;
	padding: 15px 15px 0px;
	margin-bottom: 10px;
}

/*!RIGHT-COLUMN: letters*/
.right-column__letters .glide__track{
	max-width: 285px;
	margin: 0 auto;
}
.right-column__letters .letter{
	text-align: center;
	min-width: 29px;
}
.right-column__letters .letter a{
	font-family: var(--sans);
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 24px;
	color: var(--blue);
}
.right-column__letters .glide__arrows .glide__arrow--left{
	left: 15px;
}
.right-column__letters .glide__arrows .glide__arrow--right{
	right: 15px;
}

/*!RIGHT-COLUMN: tradenames and diseases lists*/
.right-column__list{
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: flex-end;
	padding: 10px 13px 17px;
	margin: 0;
}
.right-column__list li{
	list-style: none;
	width: 33%;
	border-bottom: 1px solid var(--light-grey);
}
.right-column__list li:nth-child(1),
.right-column__list li:nth-child(2){
	border-top: 1px solid var(--light-grey);
}
.right-column__list.right-column__list--diseases li{
	width: 50%;
}
.right-column__list.right-column__list--diseases li:nth-child(3){
	border-top: 1px solid var(--light-grey);
}
.right-column__list li a{
	display: block;
	font-size: 12px;
	line-height: 24px;
	text-align: left;
	color: var(--link-blue);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-left: 2px;
	transition: all 300ms ease-in-out;
}
.right-column__list li a:hover,
.right-column__list li a:focus{
	color: #FFFFFF;
	background-color: var(--blue);
}
.right-column__list.right-column__list--diseases li a{
	letter-spacing: -0.04em;
}
.right-column__list.right-column__list--diseases li:nth-child(2n) a{
	padding-left: 8px;
}

/*!RIGHT-COLUMN: socialbar*/
.rigth-column__socialbar{
	border-radius: 2px;
	background: #FFFFFF url(/img/article_socials_bar.png) center bottom 0 / 100% no-repeat;
	box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
	width: 100%;
	max-width: 350px;
	height: 190px;
	margin: 0 auto 40px;
}
.rigth-column__socialbar.rigth-column__socialbar--mobile{
	background: #FFFFFF ;
	height: 90px;
}
.rigth-column__socialbar .socialbar__title{
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
	padding: 20px;
}
.rigth-column__socialbar.rigth-column__socialbar--mobile .socialbar__title {
	justify-content: center;
	padding: 10px 20px 10px;
}
.rigth-column__socialbar .socialbar__title span{
	font-family: var(--sans);
	font-style: normal;
	font-weight: normal;
	text-transform: none;
	color: var(--darken-grey);
	font-size: 18px;
	line-height: 29px;
	margin-right: 5px;
}
.rigth-column__socialbar.rigth-column__socialbar--mobile .socialbar__title span{
	font-size: 16px;
	line-height: 18px;
}
.rigth-column__socialbar .socialbar__buttons{
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	width: 100%;
}
.rigth-column__socialbar .socialbar__buttons .socials__button{
		position: relative;
		display: block;
		height: 50px;
		width: 97px;
		margin: 0 5px;
}
.rigth-column__socialbar.rigth-column__socialbar--mobile .socialbar__buttons .socials__button {
	height: 38px;
	width: 66px;
	margin: 0 5px;
}
.rigth-column__socialbar .socialbar__buttons .socials__button:hover>span{
	transform: translate(-4px,-4px);
}
.rigth-column__socialbar .socialbar__buttons .socials__button:active{
	opacity: 0.8;
}
.rigth-column__socialbar .socialbar__buttons .socials__button span{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	font-family: var(--sans);
	background: var(--color-facebook);
	color: #ffffff;
	font-weight: bold;
	font-size: 18px;
	line-height: 29px;
	border: 1.5px solid var(--color-facebook);
	text-align: center;
	transition: transform .3s ease;
	border-radius: 3px;
	height: 100%;
	width: 100%;
}
.rigth-column__socialbar .socialbar__buttons .socials__button span::before{
	content: "";
	display: block;
	background: no-repeat center / 140% url('/img/icons/icon_logo_fb.svg');
	height: 30px;
	width: 30px;
}
.rigth-column__socialbar .socialbar__buttons .socials__button::before{
	content: "";
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	border-radius: 3px;
	width: 100%;
	height: 100%;
	background: #fff;
	border: 1.5px solid var(--color-facebook);
}
.rigth-column__socialbar .socialbar__buttons .socials__button.button--viber span{
	background: var(--color-viber);
	border-color: var(--color-viber);
}
.rigth-column__socialbar .socialbar__buttons .socials__button.button--viber span::before{
	background: no-repeat center / 100% url('/img/icons/icon_logo_viber2.svg');
}
.rigth-column__socialbar .socialbar__buttons .socials__button.button--viber::before{
	border-color: var(--color-viber);
}
.rigth-column__socialbar .socialbar__buttons .socials__button.button--youtube span{
	background: var(--color-youtube);
	border-color: var(--color-youtube);
}
.rigth-column__socialbar .socialbar__buttons .socials__button.button--youtube span::before{
	background: no-repeat center / 140% url('/img/icons/icon_logo_youtube.svg');
}
.rigth-column__socialbar .socialbar__buttons .socials__button.button--youtube::before{
	border-color: var(--color-youtube);
}
.rigth-column__socialbar .socialbar__buttons .socials__button.button--tg span{
	background: var(--color-tg);
	border-color: var(--color-tg);
}
.rigth-column__socialbar .socialbar__buttons .socials__button.button--tg span::before{
	background: no-repeat center / 100% url('/img/icons/icon_tg.svg');
}
.rigth-column__socialbar .socialbar__buttons .socials__button.button--tg::before{
	border-color: var(--color-tg);
}

@media screen and (max-width: 1199px){
	.right-column{
		margin: 20px auto;
	}
}

/*# sourceMappingURL=articles-article.css.map */
