main.main-blog {
	margin-top: 0;
}

/* Articles list */
.articles-content {
	max-width: 1600px;
	align-items: flex-start;
	flex-flow: row nowrap;
	justify-content: space-evenly;
	column-gap: 16px;
}

.articles-list {
	flex: 0 0 75%;
	position: sticky;
	top: 0;
	padding-bottom: 20px;
	margin-top: 32px;

}

.articles-list--left-bar {
	flex: 0 1 220px;
	align-self: flex-end;
	position: -webkit-sticky;
	position: sticky;
	bottom: 0;
	min-width: 200px;
	margin: 90px 0 110px;
	overflow-y: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.articles-list--left-bar::-webkit-scrollbar {
	display: none;
	/* Chrome, Safari и Opera */
}

.articles-list--wrap {
	align-items: flex-start;
	column-gap: 12px;
}

.articles-h1 {
	margin-bottom: 10px;
	font-size: clamp(26px, 1.531rem + 0.47vw, 32px);
}

.articles-h1 .add-new--art {
	background: #eee;
	border-radius: 50px;
	box-shadow: none;
	position: relative;
	padding: 18px 18px 18px 42px;
	line-height: 0;
	font-size: 13px;
	color: var(--color-main);
}

.articles-h1 .add-new--art:hover {
	background: #b4dae7;
	box-shadow: 0 15px 5px -15px #666;
	transform: translateY(-2px);
}

.articles-h1 .add-new--art svg {
	position: absolute;
	width: 16px;
	height: 16px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
	top: calc(50% - 8px);
	left: 12px;
}

.new-art-wi--tip {
	background: #f9f2dd;
	border-radius: var(--box-br);
	position: relative;
	padding: 25px 20px;
	flex-flow: column nowrap;
	align-items: center;
	justify-content: center;
	max-width: 450px;
	margin: 0 0 50px;
	text-align: center;
}

.new-art-wi--tip img {
	margin: 20px 0 0;
}

.articles-h1--sign {
	margin: 10px 0 40px;
	font-size: 16px;
	line-height: 1.2;
}

.article-list--item {
	background: #f6f6f6;
	border-radius: var(--box-br);
	display: inline-block;
	position: relative;
	flex: 0 1 32%;
	margin: 0 0 calc(26px + 26 * ((100vw - 320px) / (1600 - 320)));
	transition: .5s;
	overflow: hidden;
}

.article-list--item:hover {
	box-shadow: 0 2px 15px -5px #a0a0a0;
	transform: translateY(-3px);
}

.al-item--image {
	justify-content: center;
	align-items: center;
	font-size: 10px;
	overflow: hidden;
}

.al-item--image img {
	transition: 1s;
}

.article-list--item:hover img {
	transform: scale(1.1);
}

.al-item--title {
	padding: 16px calc(10px + 4 * ((100vw - 320px) / (1600 - 320))) 8px;
	font-size: clamp(18px, 0.938rem + 0.31vw, 22px);
	font-weight: bold;
	line-height: 1.1;
}

.al-item--text {
	padding: 0 calc(10px + 4 * ((100vw - 320px) / (1600 - 320))) 16px;
	line-height: 1.4;
	color: var(--color-dop);
	font-size: 14px;
}

.al-item--info {
	justify-content: flex-start;
	column-gap: 16px;
	padding: 6px clamp(8px, 2vw, 16px) 12px;
	font-size: clamp(11px, 1.3vw, 14px);
}

.article-info {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	white-space: nowrap;
}

.article-info svg {
	position: relative;
	margin-right: 4px;
	width: 16px;
	height: 16px;
	--strok: #22272F;
}

.al-item--info-like .hard {
	margin: 0 12px;
}

.al-item--info-like:before {
	margin: 0 3px 0 0;
}

/* Article page */
.article-page {
	position: relative;
	padding: 0 calc(0px + 18 * ((100vw - 320px) / (1600 - 320)));
	max-width: 1600px;
	margin: 0 auto 50px;
}

.article-page--content {
	height: auto;
	align-items: flex-start;
	justify-content: space-around;
	flex-wrap: nowrap;
	column-gap: 16px;
}

.article-wrap {
	flex: 1 1 659px;
	background: #f7f7f7;
	border-radius: var(--box-br);
	position: relative;
	padding: 16px calc(16px + 14 * ((100vw - 320px) / (1600 - 320)));
	top: 60px;
	max-width: 760px;
	min-height: 500px;
	margin: 0 auto 80px;
	color: #2f363d;
}

.crumbs-article {
	max-width: 980px;
	margin: 0 auto;
}

.article-name {
	position: relative;
	margin: 0 0 22px;
}

.article-name h1 {
	position: relative;
	margin: 0 0 10px;
	font-size: calc(24px + 10 * ((100vw - 320px) / (1600 - 320)));
	font-weight: bold;
	line-height: 1.1;
}

.article-page--left-bar,
.article-page--right-bar {
	flex: 0 1 206px;
	align-self: flex-start;
	position: -webkit-sticky;
	position: sticky;
	top: 110px;
	min-width: 200px;
	margin: 60px 0 50px;
	overflow-y: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.article-page--left-bar::-webkit-scrollbar,
.article-page--right-bar::-webkit-scrollbar {
	display: none;
	/* Chrome, Safari и Opera */
}

.sidebar-content {
	margin: 0 0 46px;
}

.sidebar-title {
	margin: 0 0 18px;
	padding: 0 6px;
	font-size: calc(18px + 2 * ((100vw - 320px) / (1600 - 320)));
	font-weight: 500;
}

.sidebar-title img,
.sidebar-title svg {
	margin-right: 6px;
	width: 26px;
	height: 26px;
	--fill: #22272F;
}

.sidebar-item {
	display: block;
	border-radius: var(--box-br);
	position: relative;
	line-height: 0;
	overflow: hidden;
	margin: 0 0 15px;
}

.sidebar-item img,
.article-previev img,
.al-item--image img {
	display: flex;
	align-items: center;
	justify-content: center;
}

.sidebar-content.new-products--list {
	max-width: 220px;
}

.sidebar-item--data {
	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-end;
	background: #0e1921;
	background: -webkit-gradient(linear,
			left bottom,
			left top,
			color-stop(1%, rgba(0, 0, 0, .8)),
			to(rgba(255, 255, 255, 0)));
	background: -o-linear-gradient(bottom,
			rgba(0, 0, 0, .8)1%,
			rgba(255, 255, 255, 0) 100%);
	background: linear-gradient(0deg, rgba(0, 0, 0, .8)1%, rgba(255, 255, 255, 0) 100%);
	border-radius: var(--box-br);
	position: absolute;
	padding: 0 15px 10px;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	font-size: 13px;
	line-height: 1.4;
	opacity: 1;
	color: #fff;
	text-align: left;
	transition: 0.3s;
}

.rec-info--price {
	margin: 0 0 6px;
	font-size: 16px;
	font-weight: normal;
}

.rec-info--price span {
	font-weight: normal;
}

.rec-info--name {
	margin: 0 0 8px;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.2;
}

.rec-info--id {
	font-size: 11px;
	color: #8c9bac;
}

.sidebar-item:hover .sidebar-item--data {
	background: linear-gradient(0deg, #0e1921 0.1%, rgba(255, 255, 255, 0) 100%);
}

.sidebar-prod {
	position: relative;
	overflow: hidden;
}

.article-page--left-bar .sidebar-prod {}

.b-title {
	padding: 3px 6px;
	position: absolute;
	bottom: 20px;
	left: 10px;
	font-size: 13px;
	font-weight: bold;
}

.post-text {
	position: relative;
}

.article-wrap h2,
.article-wrap h3,
.article-wrap h4 {
	font-size: calc(23px + 5 * ((100vw - 320px) / (1600 - 320)));
	font-weight: bold;
	text-align: left;
	margin: calc(22px + 38 * ((100vw - 320px) / (1600 - 320))) auto calc(12px + 10 * ((100vw - 320px) / (1600 - 320)));
	max-width: 680px;
	color: #131a22;
	line-height: 1.2;
}

.article-big-img {
	box-shadow: 0 5px 10px -10px #000;
	border-radius: 16px 16px 0 0;
	display: block;
	position: relative;
	overflow: hidden;
}

.article-big-img>img {
	display: flex;
	position: relative;
	align-items: flex-end;
	justify-content: center;
	width: 100%;
	transition: 1s;
	z-index: 1;
}

.article-big-img figcaption {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 1;
}

.abi-info--btn {
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border-radius: 12px;
	position: relative;
	padding: 0 8px;
	font-size: 12px;
	color: #dfdfdf;
	font-weight: 400;
}

.article-big-img figcaption:hover .abi-info--btn {
	background: rgba(0, 0, 0, 0.5);
}

.abi-info--btn:after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 0;
	width: 100%;
	height: 20px;
}

.abi-info {
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border-radius: 14px;
	position: absolute;
	padding: 6px 12px;
	min-width: 250px;
	right: 0;
	top: 20px;
	transform: scale3d(0.9, 0.9, 1);
	opacity: 0;
	font-size: 13px;
	color: var(--win-title);
	line-height: 1.5;
	transform-origin: top right;
	transition: .3s;
	pointer-events: none;
}

.article-big-img figcaption:hover .abi-info {
	opacity: 1;
	transform: scale3d(1, 1, 1);
	pointer-events: auto;
}

.abi-url {
	color: var(--win-text);
}

.img_deal {
	background: #ececec;
	border-radius: 16px 16px 0 0;
	display: block;
	position: relative;
	width: 100%;
	margin: calc(30px + 30 * ((100vw - 320px) / (1600 - 320))) 0 calc(30px + 20 * ((100vw - 320px) / (1600 - 320)));
	overflow: hidden;
	line-height: 0;
}

.img_deal .data-title {
	background-color: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	transform: scale3d(0.95, 0.9, 1);
	transform-origin: bottom center;
	transition: .5s;
	opacity: 0;
	position: absolute;
	bottom: 10px;
	right: 10px;
	color: var(--win-title);
	line-height: 1.5;
	padding: 6px 12px;
	border-radius: 12px;
	font-size: 12px;
	display: block;
	z-index: 2;
	width: 300px;
}

.img_deal:hover .data-title {
	opacity: 1;
	transform: scale3d(1, 1, 1);
}


.post-text img {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: 1s;
	width: 100%;
	z-index: 2;
	/* min-height: 300px; */
	font-size: 14px;
}

.article-big-img img:hover,
.post-text img:hover {
	transform: scale(1.02);
}

.text-object {
	margin: 25px 0 30px;
}

.article-wrap .img-sign {
	background: #e8e8e8;
	border-radius: 0 0 16px 16px;
	display: block;
	position: relative;
	padding: 10px 12px;
	margin: calc(-32px + -22 * ((100vw - 320px) / (1600 - 320))) auto calc(30px + 20 * ((100vw - 320px) / (1600 - 320)));
	max-width: 100%;
	font-size: 14px;
	font-style: italic;
	color: #131a22;
	font-weight: 500;
	line-height: 1.2;
	z-index: 2;
}

.post-text a {
	color: #4d8ed4;
	text-decoration: underline;
}

.post-text a:hover {
	color: #125daf;
	text-decoration: none;
}

.post-text p {
	display: block;
	margin: 0 auto;
	max-width: 680px;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.6;
}

.post-text ol,
.post-text ul {
	display: block;
	padding: 16px 0 10px 16px;
	list-style: disc;
	max-width: 680px;
	margin: 0 auto;
	font-size: 17px;
	font-weight: 300;
}

.post-text li {
	padding: 0 0 15px;
}

a.text-info-img {
	border-radius: 10px;
	border: 1px solid #c1c1c1;
	display: block;
	position: relative;
	margin: 30px 0;
	overflow: hidden;
}

.text-info-img img {
	min-height: auto;
	z-index: 0;
}

.text-info-img span {
	background: rgba(255, 255, 255, 0.7);
	border-radius: 8px 0 8px 0;
	position: absolute;
	padding: 1px 8px;
	right: 1px;
	bottom: 1px;
	text-align: center;
	color: var(--color-main);
	font-size: 12px;
	z-index: 1;
}

.article-previev {
	background: #f7f7f7;
	border-radius: var(--box-br);
	margin-bottom: 40px;
	display: inline-block;
	overflow: hidden;
}

.article-previev-info {
	padding: 0 10px 6px;
}

.article-previev img {
	width: 100%;
}

.article-previev--title {
	font-size: 16px;
	font-weight: bold;
	margin: 10px 0 5px;
	text-align: left;
	line-height: 1.1;
}

.article-previev p {
	font-size: 12px;
	line-height: 1.4;
	color: #888;
}

.article-prev-date {
	justify-content: flex-end;
	font-size: 12px;
	padding: 0 6px 4px;
	margin-top: 20px;
	font-weight: normal;
}

.article-prev--icon {
	margin-left: 14px;
}

.article-prev--icon svg {
	width: 14px;
	height: 14px;
	margin-right: 3px;
}

.google-plus-sign {
	bottom: 20px;
	position: absolute;
	font-size: 12px;
	right: 0;
}

.article-video {
	border-radius: var(--box-br);
	overflow: hidden;
	margin: 70px 0 20px;
	box-shadow: 0 5px 10px -8px #000;
	line-height: 0;
}

.article-wrap iframe {
	border: none;
	width: 100%;
	max-height: 420px;
}

.post-list--info {
	position: relative;
	align-items: flex-end;
	justify-content: flex-start;
	margin: 15px 0;
	font-size: 12px;
}

.post-list--info .article-info {
	padding-bottom: 3px;
	margin: 0 18px 0 0;
}

.article-date-publish.article-info {
	padding: 0;
	margin: 0;
}

.post-list--info .article-info svg {
	margin-right: 5px;
	width: 18px;
	height: 18px;
}

.bottom-info {
	align-items: center;
	padding: 8px 12px;
	margin: 32px 0 22px;
	justify-content: flex-start;
	font-size: 13px;
}

.article-author {
	align-items: center;
	margin-right: 20px;
}

.bottom-info--item {
	background: #eee;
	border-radius: 14px;
	padding: 8px 12px;
	margin-right: 12px;
	flex: 0 1 auto;
	text-align: center;
	transition: .2s;
	cursor: pointer;
}

.bottom-info--item:hover {
	background: #fff;
	transform: translateY(-1px);
	box-shadow: 0 1px 12px -5px #aaa;
}

.bottom-info--item svg {
	position: relative;
	width: 20px;
	height: 20px;
	margin: 0 5px 0 0;
	--strok: #22272F;
}

.bottom-info--item .i-info {
	--fill: #e68a06;
}



.article-author--name-wrap.article-info {
	flex-flow: column;
	align-items: flex-start;
}

.article-author--name {
	margin: 0 0 2px 3px;
	color: #a53600;
}

.article-author--avatar {
	border-radius: 50%;
	border: 3px solid #ebebeb;
	flex: 0 0 48px;
	position: relative;
	width: 48px;
	height: 48px;
	overflow: hidden;
	margin-right: 6px;
	transition: 0.3s;
	z-index: 2;
}

.article-author--avatar:hover {
	transform: scale(1.2);
}

.article-author--avatar svg {
	width: 100%;
	height: 100%;
}

.al-item--info-like {
	justify-content: flex-end;
}

.al-item--info-like .article-info {
	margin-left: 14px;
}

.al-item--info-like .article-info:first-child {
	margin-left: min(8px, 3vw);
}

.post-list-info b {
	color: #131a22;
	font-size: 13px;
	font-weight: 500;
}

.article-comment,
.bottom-info .article-heart {
	transition: 0.3s;
}

.article-comment:hover,
.bottom-info .article-heart:hover {
	color: #131a22;
	cursor: pointer;
	transform: scale(1.1);
}

.bottom-info .article-heart:hover {
	color: #f94b66;
}

.bottom-info a {
	font-size: 14px;
}

@media (max-width: 1080px) {
	.article-line h4 {
		font-size: 18px;
		margin: 6px 0 20px;
	}

	.article-line-text {
		display: none;
	}
}

.all-article-link {
	background: #030304;
	border-radius: 12px;
	padding: 8px 16px 8px 12px;
	position: relative;
	margin-right: 22px;
	color: #fff;
	cursor: pointer;
	font-size: 13px;
	transition: 0.3s;
	white-space: nowrap;
}

.all-article-link:hover {
	background: #057ad2;
	transform: translate(-2px);
}

.all-article-link:before {
	content: '';
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	border-radius: 0 0 0 2px;
	display: block;
	position: relative;
	transform: rotate(45deg);
	width: 6px;
	height: 6px;
	margin-right: 8px;
}

.article-prev {
	padding-left: 6px;
}

.article-prev h4 {
	margin: 0 0 2px;
	font-weight: normal;
}

.article-prev p {
	line-height: 1.1;
	color: #999;
}

.article-act .fa-caret-left {
	vertical-align: middle;
}

.article-soc-btn {
	column-gap: 6px;
	max-width: 500px;
	padding: 6px 12px;
	align-items: center;
	justify-content: flex-start;
}

.article-comment-wrap {
	margin: 30px 0 0;
}

.topic-closed {
	background: #fff5e7;
	-webkit-box-shadow: 0 5px 15px -10px #999;
	box-shadow: 0 5px 15px -10px #999;
	padding: 30px 60px;
	display: inline-block;
	margin: 80px auto 0;
	font-size: 18px;
	text-align: center;
	color: #f86a3f;
}

/* Другие статьи на эту тему */
.on-topic-title {
	font-size: 18px;
	color: #131a22;
	font-weight: bold;
	margin: 50px 0 10px;
}

.on-topic-liks {
	position: relative;
}

.on-topic-links {
	list-style: none !important;
	margin: 0 0 30px -15px;
}

.on-topic-liks a {
	font-size: 15px;
	line-height: 2;
}

/* Секция читайте также */
.read-also {
	background: #f7f7f7;
	padding: calc(22px + 30 * ((100vw - 320px) / (1600 - 320))) 0 calc(2px + 18 * ((100vw - 320px) / (1600 - 320)));
}

.read-also--content {
	align-items: flex-start;
	column-gap: calc(8px + 2 * ((100vw - 320px) / (1600 - 320)));
}

.read-also-title {
	text-align: center;
	margin: 0 0 calc(22px + 38 * ((100vw - 320px) / (1600 - 320)));
	font-size: 28px;
	font-weight: bold;
	color: #131a22;
}

.read-also-item.article-list--item {
	background: #fff;
}

.b-ya {
	margin: 30px 0;
}

/* Right side bar */
.right-bar-rec-prod {
	position: relative;
	overflow: hidden;
}

.sidebar-prod--wrap {
	border-radius: var(--box-br);
	width: calc(100% + 17px);
	padding-right: 2px;
	overflow-x: hidden;
	height: 1500px;
}

.sidebar-prod--wrap>:last-child {
	margin-bottom: 60px;
}

.headings-list {
	padding: 30px 15px;
}

.sidebar-info {
	background: #f6f6f6;
	border-radius: var(--box-br);
	box-shadow: 0 1px 6px -3px #a0a0a0;
	overflow: hidden;
	position: relative;
	padding: 6px;
	text-align: left;
	margin-bottom: 48px;
}

.br-item {
	align-items: center;
	border-radius: 16px;
	display: flex;
	flex-wrap: nowrap;
	font-size: 14px;
	position: relative;
	padding: 14px 12px;
	margin-bottom: 3px;
	transition: 0.3s;
	cursor: pointer;
	scroll-snap-align: center;
}

.br-item b {
	flex: 1;
	font-weight: 500;
	white-space: nowrap;
}

.br-item span {
	position: relative;
	font-size: 12px;
	color: #5a7fb9;
}

.br-item svg {
	position: relative;
	width: 15px;
	height: 15px;
	margin-right: 4px;
	left: -2px;
	top: -2px;
}

.br-item:hover {
	background: #f5ece5;
	transform: scale(1.01);
}

.br-item.active {
	background: #e9d9f5;
}

.news-previev {
	background: #f7f7f7;
	padding: 5px;
	max-width: 48%;
	margin: 10px 0 20px;
}

.news-previev img {
	width: 100%;
}

.news-previev-text {
	text-align: left;
	font-size: 12px;
	line-height: 1.2;
	overflow: hidden;
	margin: 0 0 5px;
}

.rubr-title {
	margin: 93px 0 15px !important;
}

.article-category a {
	font-size: 14px;
	display: block;
	color: #888;
	line-height: 2;
}

.block-previev {
	padding: 20px 0;
}

.news-line a:hover {
	color: #000;
}

.page-right-bar a:hover h4 {
	color: #ff6300;
}

/* Новинки */
.container-wrap {
	width: 100%;
	padding: 0 20px;
}

.dop-prod-wrap {
	margin: 40px auto !important;
	max-width: 1000px;
	padding: 10px 0 30px;
}

.dop-prod-title {
	font-size: 16px;
	font-weight: bold;
	padding: 15px 10px 25px;
}

.dop-prod {
	flex: 0 1 20%;
	padding: 0 6px;
}

.blog-dop-prod-img {
	position: relative;
}

.blog-dop-prod-img img {
	display: block;
	width: 100%;
	font-size: 12px;
	line-height: 1.1;
	min-height: 235px;
}

.pr-shad {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.dop-prod-info {
	font-size: 12px;
	padding: 5px;
	text-align: left;
}

.dop-prod-name {
	color: #131a22;
}

.dop-prod-brand {
	color: #d43101;
	margin: 2px 0 1px;
	font-size: 10px;
}

.dop-prod-price {
	font-size: 10px;
	color: #999;
}

.dop-prod-price b {
	font-size: 12px;
	color: #131a22;
}

/* END Новинки */

/* Сноски */
.footnote {
	background: #d4dee8;
	border-radius: var(--box-br);
	cursor: pointer;
	padding: 0 10px;
}

.footnote:hover {
	background: #d4dee8;
}

.footnote-text {
	background: #131a22;
	box-shadow: 0 2px 35px -5px #777;
	border-radius: var(--box-br);
	color: #cacdd2;
	opacity: 0;
	font-size: 14px;
	line-height: 1.6;
	padding: 10px 14px 15px;
	position: absolute;
	transition: 0.3s;
	max-width: 300px;
	z-index: 2;
}

.footnote-text:after {
	content: '';
	background: #131a22;
	border-radius: 3px;
	position: absolute;
	width: 15px;
	height: 15px;
	z-index: -2;
}

.footnote-text.open-right.open-top {
	-webkit-transform: scale3d(0.7, 0.7, 1) translate3d(-60px, 20px, 0);
	transform: scale3d(0.7, 0.7, 1) translate3d(-60px, 20px, 0);
}

.footnote-text.open-left.open-top {
	-webkit-transform: scale3d(0.7, 0.7, 1) translate3d(60px, 20px, 0);
	transform: scale3d(0.7, 0.7, 1) translate3d(60px, 20px, 0);
}

.footnote-text.open-right.open-bottom {
	-webkit-transform: scale3d(0.7, 0.7, 1) translate3d(-60px, -20px, 0);
	transform: scale3d(0.7, 0.7, 1) translate3d(-60px, -20px, 0);
}

.footnote-text.open-left.open-bottom {
	-webkit-transform: scale3d(0.7, 0.7, 1) translate3d(60px, -20px, 0);
	transform: scale3d(0.7, 0.7, 1) translate3d(60px, -20px, 0);
}

.footnote-text.open {
	opacity: 1 !important;
	transform: scale3d(1, 1, 1) translate3d(0, 0, 0) !important;
}

.footnote-text.open-top:after {
	top: 100%;
	margin-top: -12px;
	transform: rotate(-45deg);
}

.footnote-text.open-bottom:after {
	bottom: 100%;
	margin-bottom: -12px;
	transform: rotate(135deg);
}

.footnote-text.open-left:after {
	right: 10px;
}

.footnote-text.open-right:after {
	left: 10px;
}

/* END Сноски */

/* Навигация по статье */
.navi {
	background: #e7ebf0;
	border-radius: 0 0 16px 16px;
	padding: 18px calc(12px + 4 * ((100vw - 320px) / (1600 - 320))) 8px;
	font-size: 15px;
	color: #131a22;
	cursor: pointer;
	margin: 0 0 calc(30px + 20 * ((100vw - 320px) / (1600 - 320)));
}

.navi span {
	margin-bottom: 18px;
	font-size: 14px;
	font-weight: bold;
}

.navi p:before {
	content: '';
	border: solid var(--color-main);
	border-width: 0 1.5px 1.5px 0;
	display: inline-block;
	position: absolute;
	top: calc(50% - 5px);
	left: 0;
	padding: 3px;
	transition: 0.6s;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	margin-right: 8px;
}

.post-text .navi p {
	list-style-type: none;
	line-height: 1.2;
	font-size: 14px;
	font-weight: 500;
	position: relative;
	padding-left: 16px;
	max-width: 100%;
	margin: 0 0 16px;
}

.navi p:hover {
	color: #217ee4;
	text-decoration: underline;
}

.navi p:hover:before {
	transform: rotate(45deg);
}

/* END Навигация по статье */

/* Показать еще */
.load-more-wrap {
	background: #eee;
	border-radius: var(--box-br);
	position: relative;
	height: 1px;
	max-width: 800px;
	margin: 10px auto 150px;
	transition: 0.3s;
}

.load-more-wrap:hover {
	background: #ddd;
}

.load-more {
	background: #eee;
	border: 1px solid #eee;
	border-radius: 0 0 20px 20px;
	box-shadow: 0 4px 7px -6px #9b9595;
	position: relative;
	margin: 0 auto;
	top: 0;
	font-size: 14px;
	transition: 0.3s;
	color: #999;
	width: 160px;
}

.load-more-wrap:hover .load-more {
	background: #ddd;
	border: 1px solid #ddd;
}

.load-more-qtw {
	background: #fff;
	border-radius: 0 0 0 10px;
	padding: 10px 14px;
	font-size: 13px;
}

.load-more-qtw small {
	color: #131a22;
	margin-left: 2px;
	font-size: 12px;
	font-weight: bold;
}

.load-more-btn {
	padding: 12px 18px;
	color: #131a22;
	text-align: left;
	transition: 0.3s;
}

.load-more-btn:after {
	content: '';
	position: absolute;
	top: calc(50% - 5px);
	right: 15px;
	border: solid var(--color-main);
	border-width: 0 1.5px 1.5px 0;
	padding: 4px;
	transition: 0.6s;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}

.load-more-btn .cssload-double-torus {
	background: rgba(238, 238, 238, 0.6);
	position: absolute;
	width: 26px;
	height: 26px;
	margin: 0;
	top: calc(50% - 13px);
	right: 6px;
	z-index: 1;
}

/* END Показать еще */

/* Плавная подгрузка */
.wrap {
	width: 400px;
	margin: 100px auto;
}

.cssload-double-torus {
	display: inline-block;
	position: absolute;
}

.section_articles .y-market-icon {
	display: inline-block;
	position: relative;
	left: 20px;
	top: 2px;
	flex: 0 0 90px;
	transition: 0.3s;
}

.section_articles .y-market-icon:hover {
	transform: scale(1.1);
}

/* Soc Liks button */
.section_articles .likely {
	opacity: 0;
	transition: opacity 0.1s ease-in;
}

.section_articles .likely * {
	visibility: hidden;
}

.section_articles .likely_visible {
	opacity: 1;
}

.section_articles .likely_visible * {
	visibility: inherit;
}

.section_articles .likely .likely__widget {
	background: #e8e8e8;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	white-space: nowrap;
	cursor: pointer;
	padding: 6px 12px;
	transition: 0.3s;
}

.section_articles .likely .likely__widget:hover {
	transform: scale(1.1);
}

.section_articles .likely .likely__button {
	padding: 1px 4px 1px 0;
}

.section_articles .likely svg {
	position: relative;
	width: 22px;
	height: 22px;
}

.section_articles .likely__button,
.section_articles .likely__counter {
	text-decoration: none;
	margin: 0;
	outline: 0;
}

.section_articles .likely__button {
	position: relative;
	user-select: none;
}

.section_articles .likely__counter {
	display: none;
	position: relative;
}

.section_articles .likely_ready .likely__counter {
	display: inline-block;
}

.section_articles .likely_ready .likely__counter_empty {
	display: none;
}

.section_articles .likely__button,
.section_articles .likely__counter,
.section_articles .likely__icon,
.section_articles .likely__widget {
	vertical-align: top;
	cursor: pointer;
}

.section_articles .likely__icon {
	position: relative;
	height: 24px;
}

.section_articles .likely__button,
.section_articles .likely__counter {
	line-height: inherit;
	cursor: inherit;
}

.section_articles .likely__button:empty {
	display: none;
}

.section_articles .likely__counter {
	text-align: center;
	padding: 0 0 0 8px;
	vertical-align: middle;
}

.section_articles .likely__widget_facebook {
	fill: #1877f2;
}

.section_articles .likely__widget_facebook:active,
.section_articles .likely__widget_facebook:focus,
.section_articles .likely__widget_facebook:hover {
	background: #1877f2;
	fill: #fff;
}

.section_articles .likely__widget_odnoklassniki {
	fill: #ee8208;
}

.section_articles .likely__widget_odnoklassniki:active,
.section_articles .likely__widget_odnoklassniki:focus,
.section_articles .likely__widget_odnoklassniki:hover {
	background: #ee8208;
	fill: #fff;
}

.section_articles .likely__widget_pinterest {
	fill: #e60019;
}

.section_articles .likely__widget_pinterest:active,
.section_articles .likely__widget_pinterest:focus,
.section_articles .likely__widget_pinterest:hover {
	background: #e60019;
	fill: #fff;
}

.section_articles .likely__widget_telegram {
	fill: #35a3dc;
}

.section_articles .likely__widget_telegram:active,
.section_articles .likely__widget_telegram:focus,
.section_articles .likely__widget_telegram:hover {
	background: #35a3dc;
	fill: #fff;
}

.section_articles .likely__widget_twitter {
	fill: #1da1f2;
}

.section_articles .likely__widget_twitter:active,
.section_articles .likely__widget_twitter:focus,
.section_articles .likely__widget_twitter:hover {
	background: #1da1f2;
	fill: #fff;
}

.section_articles .likely__widget_vkontakte {
	fill: #4680c2;
}

.section_articles .likely__widget_vkontakte:active,
.section_articles .likely__widget_vkontakte:focus,
.section_articles .likely__widget_vkontakte:hover {
	background: #4680c2;
	fill: #fff;
}

.section_articles .likely__widget_whatsapp {
	fill: #25d366;
}

.section_articles .likely__widget_whatsapp:active,
.section_articles .likely__widget_whatsapp:focus,
.section_articles .likely__widget_whatsapp:hover {
	background: #25d366;
	fill: #fff;
}


@media screen and (max-width: 959px) {
	.articles-list--left-bar {
		flex: 1 1 100%;
		position: relative;
		top: 0;
		margin: 22px 0 0;
		height: auto !important;
	}

	.add-new--art.btn {
		display: none;
	}

	.articles-content.content-wrap {
		flex-wrap: wrap;
		padding: 0 calc(10px + 14 * ((100vw - 320px) / (1600 - 320)));
	}

	.article-page--content {
		display: block;
	}

	.article-page--left-bar {
		margin: 0;
		position: relative;
		top: 14px;
	}

	.article-wrap {
		top: 32px;
	}

	.sidebar-headings {
		max-width: 740px;
		margin: 0 auto;
	}

	.sidebar-info.headings-list {
		background: inherit;
		box-shadow: none;
		display: flex;
		flex-flow: row nowrap;
		column-gap: 6px;
		margin-bottom: 0;
		align-items: flex-start;
		justify-content: space-between;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
		scroll-padding: 0 20px;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}

	.sidebar-info.headings-list::-webkit-scrollbar {
		display: none;
	}

	.br-item {
		background: #e7ebf2;
		padding: 12px 14px;
	}

	.br-item span {
		margin-left: 8px;
	}

	.sidebar-ban-list,
	.sidebar-new-prod,
	.sidebar-prod-list,
	.sidebar-new-articles,
	.article-page--right-bar {
		display: none;
	}

	.articles-list {
		flex: 1 1 100%;
		padding: 0 0 20px;
		margin-top: 22px;
	}

	.articles-list--wrap {
		justify-content: space-evenly;
		column-gap: 10px;
	}

	.al-item--title {
		margin-bottom: 6px;
	}

	.al-item--text {
		display: none;
	}
}

@media screen and (max-width: 519px) {
	.article-list--item {
		flex: 1 1 48%;
	}

	.articles-list--left-bar {
		margin: 10px 0 0;
	}
}

@media screen and (max-width: 446px) {
	.post-text p {
		line-height: 1.4;
	}

	.article-wrap .img-sign {
		margin-bottom: 26px;
	}
}

@media screen and (max-width: 359px) {

	.ai-created {
		display: none;
	}

	.article-list--item {
		flex: 1 1 100%;
	}
}