div.news-detail
{
	word-wrap: break-word;
}
div.news-detail img.detail_picture
{
	float:left;
	margin:0 8px 6px 1px;
}
.news-date-time
{
	color:#486DAA;
}
.detail_image {
	width: 100%;
	height: 80vh;
	text-align: center;
	margin: 40px 0;
}
.detail_image img {
	max-width: 100%;
	max-height: 100%;
}
.bc_section_title {
	background-color: #DFEFFF;
	padding: 6px 15px;
	border-radius: 5px;
	text-transform: uppercase;
}

.blog-page .grid {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 20px;
}
.blog-page .sticky {
	position: sticky;
	top: 125px;
	height: fit-content;
}
.blog-page .sticky .card {
	background: #f3f3f3;
	border-radius: 14px;
	padding: 14px;
	margin-bottom: 20px;
}
.blog-page .contact__title {
	margin-bottom: 20px;
}
.blog-page .block-text {
	margin-bottom: 30px;
	font-size: 16px;
	line-height: 24px;
}
.blog-page a.blog_scheme_link {
	display: block;
	text-decoration: underline;
	margin-bottom: 10px;
	padding-left: 36px;
	color: #585758;
	font-size: 15px;
	line-height: 21px;
	background: url(../../../../images/load3.png) top left no-repeat;
}
.blog-page a.blog_scheme_link:hover {
	color: #005b99;
	text-decoration: none;
}
.blog-page .blog_products {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 40px;
}
.blog-page .blog_product {
	border: 1px solid #f3f3f3;
	border-radius: 15px;
	padding: 15px;
	background-color: #FFFFFF;
}
.blog-page .blog_product:hover {
	background-color: #f2f7fa;
}
.blog-page .blog_product .product_description {
	margin: 15px 0;
}
.blog-page .block_product_btn, .blog-page .show_form_btn {
	background-color: #005B99;
	display: inline-flex;
	align-items: center;
	column-gap: 17px;
	padding-left: 20px;
	width: 160px;
	height: 48px;
	position: relative;
	top: -5px;
	margin-right: 50px;
	font-size: 14px;
	border-radius: 5px;
	color: #FFF;
	padding-right: 20px;
}
.blog-page .block_product_btn:hover, .blog-page .show_form_btn:hover {
	background-color: #00A5DB;
	border-color: #00A5DB;
}

.blog-page .blog_faq {
	margin-bottom: 20px;
}
.blog-page .blog_faq .question {
	font-weight: bold;
}
.blog-page aside .list a {
	display: block;
	#padding: 5px;
}
.list a {
    display: block;
    margin-bottom: 8px;
    line-height: 1.5;
    padding-left: 20px; /* отступ для звездочки */
    position: relative;
}

.list a::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #005b99; /* цвет звездочки */
    font-size: 14px;
}

.blog-block:before {
	display: block;
	content: " ";
	margin-top: -100px;
	height: 100px;
	visibility: hidden;
}
.blog-page aside .author_block {
	display: grid;
	grid-template-columns: 75px 1fr;
	align-items: start;
	gap: 15px;
}
.blog-page aside .author_description {
	font-size: 12px;
	line-height: 16px;
}
.blog-page aside .author_name {
	font-weight: bold;
}
.blog-page aside .author_img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    overflow: hidden;
}
.blog-page aside .author_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-page .btn_share {
	text-decoration: underline;
	margin-left: 15px;
	color: #585758;
	font-size: 15px;
	line-height: 21px;
}
.blog-page .btn_share:hover, .blog-page aside .list a:hover, .blog-page .blog_tag:hover {
	color: #005b99;
	text-decoration: none;
}

.block-text a: {
    color: #005b99;
	text-decoration: none;
}

.blog-page .btn_share.btn_email {
	background-color: #005b99;
	width: 20px;
	height: 20px;
	padding: 3px;
	border-radius: 10px;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	-moz-transition: 0.5s;
	transition: 0.5s;
}
.header__soc .btn_share.btn_email:hover {
	background-color: #ffcb49;
}
.header__soc .btn_share.btn_email:hover svg path {
	fill: #ffffff;
}
/* Стили всплывающего окна по-умолчанию */
.modal {
	position: fixed; /* фиксированное положение */
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.5); /* фон */
	z-index: 120;
	opacity: 0; /* по умолчанию модальное окно прозрачно */
	-webkit-transition: opacity 200ms ease-in;
	-moz-transition: opacity 200ms ease-in;
	transition: opacity 200ms ease-in; /* анимация перехода */
	pointer-events: none; /* элемент невидим для событий мыши */
	margin: 0;
	padding: 0;
}
/* При отображении модального окно */
.modal.show {
	opacity: 1; /* делаем окно видимым */
	pointer-events: auto; /* элемент видим для событий мыши */
	overflow-y: auto; /* добавляем прокрутку по y, когда элемент не помещается на страницу */
}
/* ширина модального окна и его отступы от экрана */
.modal-dialog {
	position: relative;
	width: auto;
	margin: 10px;
}
@media (min-width: 576px) {
	.modal-dialog {
		max-width: 900px;
		margin: 30px auto; /* отображение окна по центру */
	}
}
/* Стили для блока с контентом окна */
.form_block {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	background-color: #fff;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	border: 1px solid rgba(0,0,0,.2);
	border-radius: .3rem;
	outline: 0;
	padding: 20px;
}
@media (min-width: 768px) {
	.form_block {
		-webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
		box-shadow: 0 5px 15px rgba(0,0,0,.5);
	}
}
/* Стили кнопки "х" ("Закрыть")  */
.close {
	float: right;
	font-family: sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	color: #000;
	text-shadow: 0 1px 0 #fff;
	opacity: .5;
	text-decoration: none;
}
/* Стили для закрывающей кнопки в фокусе или наведении */
.close:focus, .close:hover {
	color: #000;
	text-decoration: none;
	cursor: pointer;
	opacity: .75;
}
.blog-page .show_form_btn {
	width: auto;
	margin-top: 30px;
}
/************************/

.ui-autocomplete {
	z-index: 121;
}
@media (max-width: 768px) {
	.blog-page .blog_products {
		grid-template-columns: 1fr;
	}
	.blog-page .grid {
		grid-template-columns: 1fr;
	}
	.blog-page .grid .blog_info {
		order: 2;
	}
	.blog-page .grid .sticky {
		order: 1;
		position: relative;
		top: 0;
	}
}