body {
	--transparent: rgba(255,255,255,0);
	--red: #f00;


	/* text-colors */
	--main-text-color: #060606;
	--gray-text-color: #777;
	--logo-text-color: #404041;
	--accent-text-color: #ff6e11;
	--light-gray-text-color: #aaa;
	--white-text-color: #fff;
	--second-accent-text-color: #34356d;
	--red-text-color: #f00;

	/* link colors */
	--link-text-color: #0000ee;
	--link-visited-text-color: #551a8b;
	--link-active-text-color: #f00;

	/* bg-colors */
	--main-bg-color: #fff;
	--inversion-main-bg-color: #000;
	--gray-bg-color: #eee;
	--accent-bg-color: #ff6e11;
	--second-accent-bg-color: #34356d;
	--yellow-bg-color: #dfcc03;

	/* border-colors */
	--main-border-color: #bfbfbf;
	--second-border-color: #e5e5e5;
}

body.dark {
	/* text-colors */
	--main-text-color: #dbdbdb;
	--inversion-main-text-color: #fff;
	--logo-text-color: #dbdbdb;
	--gray-text-color: #777;
	--accent-text-color: #ff6e11;
	--light-gray-text-color: #aaa;
	--white-text-color: #fff;
	--second-accent-text-color: #ff6e11;
	--red-text-color: #f00;

	/* link colors */
	--link-text-color: #a0a0fc;
	--link-visited-text-color: #c8bfd1;
	--link-active-text-color: #f00;

	/* bg-colors */
	--main-bg-color: #363636;  
	--inversion-main-bg-color: #dbdbdb;
	--gray-bg-color: #222; 
	--accent-bg-color: #34356d;
	--second-accent-bg-color: #ff6e11;
	--yellow-bg-color: #dfcc03;

	/* border-colors */
	--main-border-color: #bfbfbf;
	--second-border-color: #202020;
}


*{box-sizing:border-box;}h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
							 margin: 0;
							 padding: 0;
							 border: 0;
							 font-size: 100%;
							 font: inherit;
							 vertical-align: baseline;
						 }
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	position: relative;
	line-height: 1;
	margin:0;
	padding:0;
	font: 14px 'Open Sans', Tahoma, Geneva, sans-serif;
	width: 100%;
	background-color: var(--main-bg-color);
	color: var(--main-text-color);
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}
.link-default {
	color: var(--link-text-color);
}
.link-default:visited {
	color: var(--link-visited-text-color);
}
.link-default:active {
	color: var(--link-active-text-color);
}
.fixed {
	position:fixed !important;
}
.img {
	display:block;

}

strong {
	font-weight:700 !important;
}

.wrap {
	width: 1310px;
	margin: 0 auto;
}
.wrap-content {
	padding-top: 20px;
}
.none,.robots-noindex {
	display: none!important;
}
.header {
	/*padding-top: 55px;*/
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.header__banner {
	display: flex;
	justify-content: center;
	border-bottom: 1px solid var(--main-border-color);
}
.header__banner img {
	max-width: 100%;
	display: block;
}
.header__fixed {
	z-index: 9999;
	/*position: fixed;*/
	left: 0;
	right: 0;
	top: 0;
	background-color: var(--main-bg-color);
	transition: 0.5s;
}
.header__fixed.scroll {
	box-shadow: 0px -2px 20px 0px rgb(0 0 0 / 42%);
}
.header__top {
	width: 100%;
	text-align: center;
	padding: 10px 0;
	display: flex;
	align-items: center;
}
.to-top {
	position: fixed;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
	padding: 10px 20px;
	padding-left: 40px;
	border-radius: 20px;
	color: var(--main-text-color);
	text-decoration: none;
	z-index: 999;
	background: var(--main-bg-color);
	border: 1px solid var(--main-border-color);
	box-shadow: 0px 2px 9px -2px rgb(0 0 0 / 50%);
	font-weight: 700;
}
.to-top::before {
	content: '';
	display: block;
	height: 8px;
	width: 8px;
	border: 2px solid var(--main-text-color);
	border-bottom: none;
	border-right: none;
	transform: translateY(-50%) rotate(
			45deg
	) ;
	position: absolute;
	left: 19px;
	top: 57%;
}
.logo {
	float: left;
}
.logo__link {
	display: block;
	width: 140px;
}
.logo__img {
	max-width: 100%;
	height: 30px;
}
/*.logo__img--dark {*/
/*	display: none;*/
/*}*/
/*body.dark .logo__img--dark {*/
/*	display: block;*/
/*}*/
/*body.dark .logo__img:not(.logo__img--dark) {*/
/*	display: none;*/
/*}*/

/* toggle-theme */

.toggle-theme {
	overflow: visible;
}
.toggle-theme label {
	cursor: pointer;
}
.toggle-theme input {
	display: none;
}
.toggle-theme input:checked ~ span {
	border-color: #333;
	background: #2c4e63;
}
.toggle-theme input:checked ~ span:before {
	left: 16px;
	box-shadow: inset -3px 0px 0 1px #ffc207;
	background: transparent;
}
.toggle-theme input:checked ~ span:after {
	content: '\002605';
	top: 4px;
	left: 11px;
	width: 14px;
	height: 14px;
	font-size: 9px;
	color: #ffc207;
}
.toggle-theme span {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width: 32px;
	height: 18px;
	border-radius: 20px;
	border: 0 solid #666;
	background: #5197c4;
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.toggle-theme span:before {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	box-shadow: inset -14px -14px 0 0 #ffc203;
	transition: all 0.5s cubic-bezier(0, 0.55, 0.45, 1);
}
.toggle-theme span:after {
	content: '\002601';
	position: absolute;
	top: 7px;
	left: 6px;
	width: 14px;
	height: 14px;
	line-height: 1;
	color: #fff;
	font-size: 14px;
	transition: all 0.5s cubic-bezier(0, 0.55, 0.45, 1);
}

/* /toggle-theme */

.sources {
	margin-right: auto;
}
.sources__link {
	display: block;
	text-decoration: none;
	padding: 6px 24px;
	font-size: 14px;
	color: var(--main-text-color);
	font-weight: 600;
	border-radius: 8px;
}
.category {
	margin-left: auto;
	max-width: 60%;
	margin-right: 20px;

	margin-right: auto;
	margin-left: auto;
}
.category__item {
	display: inline-block;
	vertical-align: top;
	zoom: 1;
	*display: inline;
	font-size: 14px;
	line-height: 36px;
	float: left;
	margin-right: 1px;
}
.category__list {
	display: block;
	float: left;
	position: relative;
	white-space: nowrap;
	z-index: 950;
	max-height: 60px;
	overflow: hidden;
}
.category__link {
	display: block;
	text-decoration: none;
	padding: 9px 12px;
	font-size: 14px;
	line-height: 1;
	color: var(--main-text-color);
	font-weight: 600;
	border-radius: 5px;
}

.active .category__link, .category__link:hover {
	background: var(--second-accent-bg-color);
	color: var(--white-text-color);
}
.category__link--covid {
	color: var(--accent-text-color);
}
.category__link--covid:hover {
	background-color: var(--accent-bg-color);
	color: var(--white-text-color);
}
.category .wr {
	text-decoration: none;
	font-weight: 600;
	padding: 9px 12px;
	padding-right: 18px;
	font-size: 14px;
	line-height: 1;
	color: var(--main-text-color);
	display: -moz-inline-stack;
	display: none;
	vertical-align: top;
	zoom: 1;
	*display: inline;
	cursor: pointer;
	float: left;
	-webkit-transition: all 0.2s ease 0s;
	-moz-transition: all 0.2s ease 0s;
	-o-transition: all 0.2s ease 0s;
	transition: all 0.2s ease 0s;
	background: url("../img/svg/arrow_down.svg") center right no-repeat;
	background-size: 11px 7px;
}
.category .wr:hover {
	text-decoration: underline;
}
.category .wr.rec {
	background: url("../img/svg/arrow_up.svg") center right no-repeat;
	background-size: 11px 7px;
	cursor: default;
}
.category .wr.rec:hover {
	text-decoration: none !important;
}
.category__container {
	position: relative;
	width: 100%;
	display: flex;
}
.category .secondMenu {
	display: none;
	clear: both;
	float: left;
	border: 1px solid var(--main-border-color);
	padding: 6px;
	background: var(--main-bg-color);
	position: absolute;
	top: 100%;
	left: 0;
	border-radius: 7px;
}
.category .secondMenu:hover {
	opacity: 1 !important;
	visibility: visible !important;
}
.category .wrap-second-menu {
	position: relative;
}
.category .secondMenu li a {
	text-decoration: none;
	color: var(--main-text-color);
	display: block;
	white-space: nowrap;
	font-weight: 600;
}
.category .secondMenu li {
	text-align: left;
	line-height: 30px;
	font-size: 14px;
	display: block;
	overflow: hidden;
	background-color: var(--main-bg-color);
	margin-top: 2px;
}
.secondMenu .active span {
	color: var(--white-text-color);
}
.category .secondMenu li a:hover {
	background-color: var(--second-accent-bg-color);
	color: var(--white-text-color);
}


/*search*/
.search {
	margin-right: 10px;
	margin-left: 10px;
}
.search__form {
	position: relative;
}
.search__input {
	position: relative;
	z-index: 1;
	font-size: 14px;
	display: inline-block;
	font-weight: 100;
	border: none;
	outline: none;
	color: var(--gray-text-color);
	padding: 3px 30px 3px 3px;
	width: 0;
	opacity: 0;
	background: none;
	transition: width .4s cubic-bezier(0.000, 0.795, 0.000, 1.000), opacity .4s cubic-bezier(0.000, 0.795, 0.000, 1.000);
	cursor: pointer;
	border-radius: 5px;
}
.search__input:focus {
	width: 180px;
	border: 1px solid var(--main-border-color);
	cursor: text;
	opacity: 1;
}
.search__input:valid + .search__btn {
	z-index: 3;
}
/*.search__btn {*/
/*	height: 17px;*/
/*	width: 17px;*/
/*	padding: 0 25px 0 0;*/
/*	display: inline-block;*/
/*	color: var(--red-text-color);*/
/*	float: right;*/
/*	background: var(--transparent) url("../img/svg/search.svg") top left no-repeat;*/
/*	text-indent: -10000px;*/
/*	border: none;*/
/*	position: absolute;*/
/*	top: 4px;*/
/*	right: 0;*/
/*	z-index: 0;*/
/*	opacity: 0.4;*/
/*	cursor: pointer;*/
/*	outline: none;*/
/*	transition: opacity .4s ease;*/
/*}*/
.search__btn {
	position: absolute;
	display: block;
	height: 17px;
	width: 27px;
	padding-right: 10px;
	top: 4px;
	right: 0;
	text-indent: -10000px;
	border: none;
	cursor: pointer;
	outline: none;
	transition: opacity .4s ease;
}
.search__btn svg {
	display: block;
}
.user-block {
	display: flex;
	margin-right: 15px;
}
.user-block__item {
	color: var(--second-accent-text-color);
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	cursor: pointer;
}
.user-block__item:hover {
	text-decoration: underline;
}
.user-block__item--profile {
	padding-right: 10px;
	margin-right: 10px;
	border-right: 1px solid var(--main-border-color);
}
.menu {
	display: flex;
	align-items: center;
	/*position: relative;*/
}
.menu__panel {
	position: absolute;
	top: 100%;
	right: 0%;
	background-color: var(--gray-bg-color);
	min-height: 100vh;
	text-align: left;
	padding: 10px 15px;
	border-top: 1px solid var(--main-border-color);
	box-shadow: -7px 3px 20px -6px rgb(0 0 0 / 42%);
	transition: width 0.5s cubic-bezier(0.33, 0.3, 0.29, 1.3),
				padding 0.5s cubic-bezier(0.33, 0.3, 0.29, 1.3);
	width: 0px;
	padding: 10px 0px;
	overflow: hidden;
	overflow: auto;
	padding-bottom: 70px;
	z-index: 10001;
}
.menu__panel.show {
	width: 300px;
	padding: 10px 15px;
}
.menu__list {
	min-width: 270px;
}
.scroll .menu__panel {
	top: 100%;
}
.scroll .show.menu__panel {
	top: 100%;
}

.menu__panel {
	top: 157px;
}
.show.menu__panel {
	top: 157px;
}
.menu__overlay {
	background:rgba(0, 0, 0, .4);
	bottom:0;
	left:0;
	min-height:100%;
	position:fixed;
	right:0;
	top:0;
	width:100%;
	z-index:10000;
	display: none;
}
.menu__overlay.show {
	display: block;
}
.menu-block {
	border-bottom: 1px solid var(--main-border-color);
	padding-bottom: 15px;
	margin-bottom: 20px;
	text-transform: uppercase;
}
.menu-block:last-of-type {
	border: none;
	padding-bottom: 0;
	margin-bottom: 0;
}
.menu-block__title {
	font-weight: bold;
	margin-bottom: 10px;
	color: var(--main-text-color);
}
.menu-block__link {
	display: block;
	padding: 5px 10px;
	text-decoration: none;
	color: var(--main-text-color);
}
.menu-block__app {
	width: 100%;
	display: block;
	max-width: 155px;
}
.menu-block__social {
	display: flex;
	align-items: center;
}
.menu-block__social-img {
	height: 26px;
	width: 26px;
	background-size: 26px 26px;
	margin-right: 15px;
}
.menu-block__social--dz {
	background-color: #E5352F;
	background-image: url("../img/svg/menu-block--dz.svg");
}
.menu-block__social--fb {
	background-color: #3b5998;
	background-image: url("../img/svg/menu-block--fb.svg");
}
.menu-block__social--vk {
	background-color: #4680c2;
	background-image: url("../img/svg/menu-block--vk.svg");
}
.menu-block__social--ok {
	background-color: #eb722e;
	background-image: url("../img/svg/menu-block--ok.svg");
}
.menu-block__social--tw {
	background-color: #00aced;
	background-image: url("../img/svg/menu-block--tw.svg");
}
.menu-block__social--tg {
	background-color: #269ed2;
	background-image: url("../img/svg/menu-block--tg.svg");
	background-size: 18px;
	background-repeat: no-repeat;
	background-position: 50%;
}
.burger {
	height: 15px;
	width: 16px;
	position: relative;
	border: none;
	background: none;
	cursor: pointer;
	outline: none;
	padding: 0;
}
.burger__line {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	height: 2px;
	background-color: var(--inversion-main-bg-color);
}
.burger__line {
	transition: 0.3s;
}
.burger__line--1 {
	top: calc(100% / 3);
	transition-delay: 0s;
}
.burger__line--2 {
	top: calc(100% - (100% / 3));
	transition-delay: 0.15s;
}
.burger__line--3 {
	top: 100%;
	transition-delay: 0s;
}
.show .burger__line--1 {
	top: 50%;
	transform: translateY(-50%) rotate(135deg);
	transition-delay: 0.15s;
}
.show .burger__line--3 {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	transition-delay: 0.15s;
}
.show .burger__line--2 {
	width: 0;
	transition-delay: 0s;
}
.restriction {
	position: absolute;
	right: 0;
	top: 21px;
	line-height: 21px;
	font-size: 12px;
	font-weight: 600;
	border: 1px solid var(--main-border-color);
	padding: 0 5px;
	color: var(--gray-text-color);
}
.header__top .reg .find {
	float: left;
	border: 0;
	margin: 0;
	padding: 0;
}
.header__top .reg .find {
	margin: 2px 20px 0 0;
	padding: 0;
}
.header__top .reg div {
	cursor: pointer;
	float: right;
	text-decoration: none;
	color: var(--second-accent-text-color);
	border-left: 1px solid var(--main-border-color);
	padding: 4px 13px 0;
	text-transform: capitalize;
	font-weight: 600;
	font-size: 14px;
}
.header__top .reg div:hover {
	text-decoration: underline;
}
.header__top .reg div a {
	cursor: pointer;
	float: right;
	text-decoration: none;
	color: var(--second-accent-text-color);
	text-transform: capitalize;
	font-weight: 600;
	font-size: 14px;
}
.header__top .reg div:hover a {
	text-decoration: underline;
}
.header__top .reg div:first-child {
	padding: 4px 0 0 10px;
}
.header__bottom {
	width: 100%;
	background-color: var(--gray-bg-color);
}
.header__container {
	padding: 3px 0;
	display: flex;
	align-items: center;
}
.header__period {
	float: left;
	display: flex;
	margin-right:25px;
	background-color: var(--main-bg-color);
	border-radius: 8px;
	border: 1px solid var(--second-border-color);
	overflow: hidden;
}
.header__period a {
	text-decoration: none;
	float: left;
	color: var(--main-text-color);
	border-right: 1px solid var(--second-border-color);
	text-align: center;
	font-weight: 600;
	font-size:14px;
	line-height: 1;
	padding: 8px 12px;
	min-width: 76px;
}
.header__period a:first-letter {
	text-transform: uppercase;
}
.header__period a:last-of-type {
	border-right: none;
}
.header__period a.active {
	background-color: var(--second-accent-bg-color);
	color: var(--white-text-color);
}
.header__date, .header__money, .temperature {
	float: left;
	display: flex;
	padding: 2px 0;
	border-right: 1px solid var(--main-border-color);
}
.header__money span, .temperature span {
	float: left;
	color: var(--gray-text-color);
	padding: 0 15px 0 0;
	margin: 0 0 0 15px;
	font-weight: 600;
	font-size:14px;
	line-height: 1;
}
.header__date span {
	float: left;
	color: var(--gray-text-color);
	padding: 0 10px 0 0;
	margin: 0 0 0 0;
	font-weight: 600;
	font-size:14px;
	line-height: 1;
}
.header__date span:first-child, .header__money span:first-child {
	border-right: none;
}
.header__social {
	float: left;
	padding: 0 0 0 15px;
	display: flex;
	align-items: center;
}
.header__social li {
	float: left;
	margin-left: 15px;
}
.header__social li:nth-of-type(1) {
	margin-left: 0;
}
.header__social a {
	width: 13px;
	height: 13px;
	line-height: 13px;
	padding: 0 10px;
	vertical-align: top;
}
.header__social .dz {
	background:url("../img/svg/dzen_gray.svg") center center no-repeat;
	width:13px;
	height:13px;
}
.bottom .soc_net .dz:hover {
	background: url("../img/svg/dzen_hover.svg") center center no-repeat;
}
.dark .bottom .soc_net .dz:hover {
	background: url("../img/svg/dzen_white.svg") center center no-repeat;
}
.header__social .fb {
	background:url("../img/svg/fb_gray.svg") center center no-repeat;
	width:13px;
	height:13px;
}
.header__social .fb:hover {
	background:url("../img/svg/fb_hover.svg") center center no-repeat;
	width:13px;
	height:13px;
	transition: all 0.3s ease;
}
.dark .header__social .fb:hover {
	background:url("../img/svg/fb_white.svg") center center no-repeat;
	width:13px;
	height:13px;
	transition: all 0.3s ease;
}
.header__social .vk {
	background:url("../img/svg/vk_gray.svg") center center no-repeat;
	width:13px;
	height:13px;
}
.header__social .vk:hover {
	background:url("../img/svg/vk_hover.svg") center center no-repeat;
	width:13px;
	height:13px;
	transition: all 0.3s ease;
}
.dark .header__social .vk:hover {
	background:url("../img/svg/vk_white.svg") center center no-repeat;
	width:13px;
	height:13px;
	transition: all 0.3s ease;
}
.header__social .ok {
	background:url("../img/svg/ok_gray.svg") center center no-repeat;
	width:13px;
	height:13px;
}
.header__social .ok:hover {
	background:url("../img/svg/ok_hover.svg") center center no-repeat;
	width:13px;
	height:13px;
	transition: all 0.3s ease;
}
.dark .header__social .ok:hover {
	background:url("../img/svg/ok_white.svg") center center no-repeat;
	width:13px;
	height:13px;
	transition: all 0.3s ease;
}
.header__social .tw {
	background:url("../img/svg/tw_gray.svg") center center no-repeat;
	width:12px;
	height:13px;
}
.header__social .tw:hover {
	background:url("../img/svg/tw_hover.svg") no-repeat;
	width:12px;
	height:13px;
	transition: all 0.3s ease;
}
.dark .header__social .tw:hover {
	background:url("../img/svg/tw_white.svg") no-repeat;
	width:12px;
	height:13px;
	transition: all 0.3s ease;
}
.header__social .tg {
	background:url("../img/svg/tg_gray.svg") center center no-repeat;
	width:12px;
	height:13px;
}
.header__social .tg:hover {
	background:url("../img/svg/tg_hover.svg") no-repeat;
	width:12px;
	height:13px;
	transition: all 0.3s ease;
}
.dark .header__social .tg:hover {
	background:url("../img/svg/tg_white.svg") no-repeat;
	width:12px;
	height:13px;
	transition: all 0.3s ease;
}
.header__about {
	float: right;
	color: var(--second-accent-text-color);
	font-weight: 600;
	cursor: pointer;
	font-size:14px;
	line-height: 1;
	margin-left: auto;
}
.header__about:hover {
	text-decoration: underline;
}
.content {
	display: flex;
	align-items: flex-start;
	width: 100%;
}
.main {
	float: left;
	width: 972px;
	position:relative;
	z-index:900;
}
.main h1 {
	margin: 0 0 10px 0;
	text-transform: uppercase;
	font-size: 21px;
}
.topnews {
	width: 636px;
	position: relative !important;
	border-bottom: 1px solid var(--second-border-color);
	float: left;
	display:block;
}
.topnews .category {
	position: absolute;
	top: -17px;
	right: 0;
	font-size: 12px;
	color: var(--gray-text-color);
	text-decoration: none;
	font-weight: 600;
}
.topnews .img {
	overflow: hidden;
	float: left;
	position: relative;
	width: 300px;
	max-height: 200px;
	margin: 0 16px 10px 0;
}
.topnews .img img {
	max-width: 100%;
	position:relative;
}
body:not(.mobile) .topnews .img img {
	vertical-align: bottom;
}
.topnews .img .counter {
	position: absolute;
	left: 0;
	bottom: 0;
	color: var(--white-text-color);
	font-size: 12px;
	background-color: rgba(52, 53, 109, 0.7);
	padding: 4px 12px;
	font-weight: 600;
}
.topnews .img .counter .eye {
	margin: 4px 10px 0 0;
	float: left;
	background-size:14px 9px;
	background: url("../img/svg/eye_hover.svg") no-repeat;
	height:9px;
	width:14px;
}
.topnews .title {
	float: left;
	width: 320px;
	margin: 0;
	font-size: 21px;
	font-weight: 600;
	text-decoration: none;
	color: var(--main-text-color);
	line-height: 27px;
}
.topnews p {
	float: left;
	width: 320px;
	margin: 10px 0 16px;
	font-weight: 600;
	line-height: 24px;
	color: var(--gray-text-color);
	font-size: 18px;
	max-height: 75px;
	overflow: hidden;
}
.topnews .time {
	position: relative;
	right: 0;
	bottom: 0;
	font-size: 12px;
	color: var(--gray-text-color);
	font-weight: 600;
	margin:0 0 6px;
	width: 120px;
	height: 22px;
	float: right;
	text-align: right;
	display: block;
}
.topnews .more {
	width: 100%;
	cursor: pointer;
	position: absolute;
	bottom: -17px;
	left: 0;
}
.topnews .more:hover, .topnews .more.active {
	background: var(--gray-bg-color);
}
.topnews .more.active span {
	background: url("../img/svg/arrow_up.svg") center right no-repeat;
	background-size: 11px 7px;
}
.topnews .more span {
	float: right;
	line-height: 10px;
	font-size: 12px;
	margin: 3px;
	color: var(--gray-text-color);
	padding: 0 13px 0 0;
	background: url("../img/svg/arrow_down.svg") center right no-repeat;
	background-size: 11px 7px;
}
.topnews .more_block {
	float: left;
	display: none;
	border: 1px solid var(--second-border-color);
	position: absolute;
	left: 0;
	z-index: 2;
	background: var(--main-bg-color);
	margin-top: -10px;
}
.topnews .more_block .daynews {
	float: left;
	border-bottom: 1px solid var(--second-border-color);
	padding: 0 0 10px 0;
	margin: 0;
}
.topnews .more_block .daynews .source {
	float: left;
	margin: 5px;
}
.topnews .more_block .daynews .source img {
	float: left;
	margin: 4px 0 0 0;
}
.topnews .more_block .daynews .source a {
	float: left;
	text-decoration: none;
	color: var(--gray-text-color);
	font-size: 13px;
	margin: 3px 0 0 5px;
	font-weight: 600;
}
.topnews .more_block .daynews .timeside {
	float: right;
	font-size: 12px;
	color: var(--main-text-color);
	margin: 10px 5px;
	font-weight: 600;
}
.topnews .more_block .daynews .titleside {
	float: left;
	text-decoration: none;
	color: var(--gray-text-color);
	font-weight: 600;
	font-size: 14px;
	line-height: 23px;
	margin: 10px;
}
.topnews .more_block .daynews .titleside:hover {
	text-decoration: underline;
}
/********************************************************************************************/
.part {
	float: left;
	width: 636px;
	position:relative !important;
	z-index:1000;
	background:var(--main-bg-color);
}
.main .block1, .main .block2, .main .block3 {
	float: left;
	width: 300px;
}
.main .block3 {
	margin: 0 0 0 36px;
}
.main .block1 {
	margin: 0 36px 0 0;
}
.news {
	box-sizing: content-box;
	width: 300px;
	position: relative;
	margin: 0;
	border-bottom: 1px solid var(--second-border-color);
	padding: 0 0 10px 0;
}
.more {
	width: 100%;
	cursor: pointer;
	position: absolute;
	bottom: -17px;
	left: 0;
}
.more:hover, .news .more.active {
	background: var(--gray-bg-color);
}
.more.active span {
	background: url("../img/svg/arrow_up.svg") center right no-repeat;
	background-size: 11px 7px;
}
.more span {
	float: right;
	line-height: 10px;
	font-size: 12px;
	margin: 3px;
	color: var(--gray-text-color);
	padding: 0 13px 0 0;
	background: url("../img/svg/arrow_down.svg") center right no-repeat;
	background-size: 11px 7px;
}
.more_block {
	float: left;
	display: none;
	border: 1px solid var(--second-border-color);
	position: absolute;
	left: 0;
	right: 0;
	z-index: 2;
	background: var(--main-bg-color);
}
.more_block .daynews {
	float: left;
	border-bottom: 1px solid var(--second-border-color);
	padding: 0 0 10px 0;
	margin: 0;
}
.more_block .daynews .source {
	float: left;
	margin: 5px;
}
.more_block .daynews .source img {
	float: left;
	margin: 4px 0 0 0;
}
.more_block .daynews .source a {
	float: left;
	text-decoration: none;
	color: var(--gray-text-color);
	font-size: 13px;
	margin: 3px 0 0 5px;
	font-weight: 600;
}
.more_block .daynews .timeside {
	float: right;
	font-size: 12px;
	color: var(--main-text-color);
	margin: 10px 5px;
	font-weight: 600;
}
.more_block .daynews .titleside {
	float: left;
	text-decoration: none;
	color: var(--gray-text-color);
	font-weight: 600;
	font-size: 14px;
	line-height: 23px;
	margin: 10px;
}
.more_block .daynews .titleside:hover {
	text-decoration: underline;
}
.news .category {
	position: absolute;
	top: -17px;
	right: 0;
	font-size: 12px;
	color: var(--gray-text-color);
	text-decoration: none;
	font-weight: 600;
}
.news .img {
	position: relative;
	width: 300px;
	margin: 4px 16px 0 0;
	display:block;
}
.news .img > a {
	position: relative;
	overflow: hidden;
	display: block;
}

.news .img > a > img {
	display: block;
	width: 100%;
}
.news .img .counter {
	position: absolute;
	left: 0;
	bottom: 0;
	color: var(--white-text-color);
	font-size: 12px;
	background-color: rgba(52, 53, 109, 0.7);
	padding: 4px 12px;
}
.news .img .counter .eye {
	margin: 4px 10px 0 0;
	float: left;
	background-size:14px 9px;
	background: url("../img/svg/eye_hover.svg") no-repeat;
	display:block;
	height:9px;
	width:14px;
}
.share_pic {
	background: url(../img/svg/envelope.svg) no-repeat;
	width:22px;
	height:22px;
	background-size: 22px 22px;
}
.share_pic:hover {
	background: url(../img/svg/envelope_hover.svg) no-repeat;
	width:22px;
	height:22px;
	background-size: 22px 22px;
	transition: all 0.3s ease;
}
.share_pic, .topnews .share_pic {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
}
.sharesoc, .topnews .sharesoc, .m_main_news .sharesoc {
	position: absolute;
	top: 7px;
	right: 7px;
	z-index: 1;
}
body:not(.mobile) .topnews .sharesoc {
	right: 342px;
}
body:not(.mobile) .sharesoc .subshare + .subshare, body:not(.mobile) .topnews .sharesoc .subshare + .subshare {
	margin-top: 2px;
}
body:not(.mobile) .sharesoc, body:not(.mobile) .topnews .sharesoc {
	width: 22px;
}
body:not(.mobile) .sharesoc:hover, body:not(.mobile) .topnews .sharesoc:hover {
	width: auto;
}
body:not(.mobile) .sharesoc .subshare, body:not(.mobile) .topnews .sharesoc .subshare {
	overflow: hidden;
	width: 100%;
	background-color: var(--transparent);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body:not(.mobile) .sharesoc .subshare:hover, body:not(.mobile) .topnews .sharesoc .subshare:hover {
	background-color: var(--gray-bg-color);
	border-radius: 12px;
	box-shadow: -1px 2px 7px rgba(0, 0, 0, 0.23);
}
body:not(.mobile) .sharesoc .subshare a,
body:not(.mobile) .topnews .sharesoc .subshare a {
	float: right;
}
.sharesoc .subshare a,
.news .sharesoc .subshare a,
.topnews .sharesoc .subshare a,
.m_main_news .sharesoc .subshare a {
	height: 22px;
	width: 22px;
	line-height: 21px;
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
	color: var(--main-text-color);
	text-indent: -9999px;
}
.sharesoc .subshare a:hover,
.topnews .sharesoc .subshare a:hover,
.m_main_news .sharesoc .subshare a:hover {
	color: var(--second-accent-text-color);
	width: auto;
	height: 22px;
	text-indent: 0;
	padding-left: 10px;
	padding-right: 32px;
}
.news .sharesoc .tw,
.topnews .sharesoc .tw,
.m_main_news .sharesoc .tw {
	background-size: 12px 13px;
	width:12px;
	height:14px;
	background: url("../img/svg/tw.svg") no-repeat right 2px;
}
.sharesoc .tw:hover,
.topnews .sharesoc .tw:hover,
.m_main_news .sharesoc .tw:hover {
	background-size:12px 13px;
	width:12px;
	height:14px;
	background: url("../img/svg/tw_hover.svg") no-repeat right 2px;
}
.sharesoc .fb,
.topnews .sharesoc .fb,
.m_main_news .sharesoc .fb {
	background-size:8px 13px;
	width:12px;
	height:14px;
	background: url("../img/svg/fb.svg") no-repeat 98% 1px;
}
.sharesoc .fb:hover,
.topnews .sharesoc .fb:hover,
.m_main_news .sharesoc .fb:hover {
	background-size: 8px 13px;
	width:12px;
	height:14px;
	background: url("../img/svg/fb_hover.svg") no-repeat 98% 1px;
}
.sharesoc .vk,
.topnews .sharesoc .vk,
.m_main_news .sharesoc .vk {
	background-size: 14px 13px;
	width: 13px;
	height: 16px;
	background: url("../img/svg/vk.svg") no-repeat right 1px;
}
.sharesoc .vk:hover,
.topnews .sharesoc .vk:hover,
.m_main_news .sharesoc .vk:hover {
	background-size: 14px 13px;
	width: 13px;
	height: 16px;
	background: url("../img/svg/vk_hover.svg") no-repeat right 1px;
}
.sharesoc .ok,
.topnews .sharesoc .ok,
.m_main_news .sharesoc .ok {
	background-size:9px 12px;
	width:12px;
	height:14px;
	background: url("../img/svg/ok.svg") no-repeat 99% 2px;
}
.sharesoc .ok:hover,
.topnews .sharesoc .ok:hover,
.m_main_news .sharesoc .ok:hover {
	background-size: 9px 12px;
	width: 12px;
	height: 14px;
	background: url("../img/svg/ok_hover.svg") no-repeat 99% 2px;
}
body:not(.mobile) .sharesoc .fb,
body:not(.mobile) .topnews .sharesoc .fb,
body:not(.mobile) .m_main_news .sharesoc .fb {
	opacity: 0.8;
	background: url("../img/svg/fb_round.svg") right center no-repeat;
}
body:not(.mobile) .sharesoc:hover .fb,
body:not(.mobile) .topnews .sharesoc:hover .fb,
body:not(.mobile) .m_main_news .sharesoc:hover .fb {
	opacity: 1;
	background: url("../img/svg/fb_round_hover.svg") right center no-repeat;
}
body:not(.mobile) .sharesoc .ok,
body:not(.mobile) .topnews .sharesoc .ok,
body:not(.mobile) .m_main_news .sharesoc .ok {
	opacity: 0.8;
	background: url("../img/svg/ok_round.svg") right center no-repeat;
}
body:not(.mobile) .sharesoc:hover .ok,
body:not(.mobile) .topnews .sharesoc:hover .ok,
body:not(.mobile) .m_main_news .sharesoc:hover .ok {
	opacity: 1;
	background: url("../img/svg/ok_round_hover.svg") right center no-repeat;
}
body:not(.mobile) .sharesoc .tw,
body:not(.mobile) .topnews .sharesoc .tw,
body:not(.mobile) .m_main_news .sharesoc .tw {
	opacity: 0.8;
	background: url("../img/svg/tw_round.svg") right center no-repeat;
}
body:not(.mobile) .sharesoc:hover .tw,
body:not(.mobile) .topnews .sharesoc:hover .tw,
body:not(.mobile) .m_main_news .sharesoc:hover .tw {
	opacity: 1;
	background: url("../img/svg/tw_round_hover.svg") right center no-repeat;
}
body:not(.mobile) .sharesoc .vk,
body:not(.mobile) .topnews .sharesoc .vk,
body:not(.mobile) .m_main_news .sharesoc .vk {
	opacity: 0.8;
	background: url("../img/svg/vk_round.svg") right center no-repeat;
}
body:not(.mobile) .sharesoc:hover .vk,
body:not(.mobile) .topnews .sharesoc:hover .vk,
body:not(.mobile) .m_main_news .sharesoc:hover .vk {
	opacity: 1;
	background: url("../img/svg/vk_round_hover.svg") right center no-repeat;
}
.news .title {
	display:block;
	width: 300px;
	margin: 15px 0 21px 0;
	font-size: 24px;
	font-weight: 600;
	text-decoration: none;
	color: var(--main-text-color);
	line-height: 28px;
}
.news .title .nopic {
	display: block;
	color: var(--gray-text-color);
	font-size: 12px;
	font-weight: 600;
	margin: 0 0 0 10px;
}
.news .title .nopic .eyenopic {
	margin: 0 6px 0 0;
	background-size:14px 9px;
	background: url("../img/svg/eye.svg") no-repeat;
	height:9px;
	width:14px;
}
.news p {
	display:block;
	width: 300px;
	margin: -9px 0 26px;
	font-weight: 400;
	line-height: 20px;
	color: var(--gray-text-color);
	box-sizing: content-box;
}
.subnetwork {
	cursor:pointer;
}
.subnetwork a {
	color: var(--gray-text-color);
	text-decoration: none;
}
.news .subnetwork, .topnews .subnetwork {
	position: relative;
	height:16px;
	float:left;
	bottom: 10px;
	left: 0;
	font-size: 13px;
	color: var(--gray-text-color);
	font-weight: 600;
	margin:0 0 6px;
	display:block;
}
.news .subnetwork a {
	margin: 0 0 0 5px;
}
.topnews .subnetwork {
	bottom:1px !important;
}
.news .subnetwork .close, .topnews .subnetwork .close {
	width: 8px;
	height: 8px;
	background: url("../img/svg/close.svg") no-repeat;
	background-size: 8px 8px;
	display: inline-block;
	cursor: pointer;
}
.news .subnetwork .close {
	margin: 0 0 0 5px;
}
.news .subnetwork:hover .close, .topnews .subnetwork:hover .close {
	background: url("../img/svg/close_hover.svg") no-repeat;
	transition: all 0.3s ease;
}
.sub_popup {
	width: 165px;
	border: 1px solid var(--main-border-color);
	background: var(--gray-bg-color);
	color: var(--main-text-color);
	position: absolute;
	left: 50px;
	bottom: 30px;
	padding: 10px;
	font-size: 13px;
	z-index: 10;
}
.sub_popup .open-auth {
	color: var(--second-accent-text-color);
	font-weight: 700;
	text-decoration: none;
	display: block;
}
.news .sub_popup a:hover, .topnews .sub_popup a:hover {
	text-decoration: underline;
}
.news .time {
	position: relative;
	width:120px;
	height: 16px;
	float:right;
	text-align:right;
	right: 0;
	bottom: 10px;
	font-size: 12px;
	color: var(--gray-text-color);
	font-weight: 600;
	margin:0 0 6px;
	display:block;
}
.news .time span {
	height:16px;
}
.sidebar {
	float: right;
	width: 300px;
	margin: 0 0 0 36px;
	position:relative;
	z-index: 1200;
}
.sidebar h1 {
	margin: 0 0 15px 0;
	text-transform: uppercase;
	font-size: 21px;
}
.gismeteo-widget {
	margin-bottom: 20px;
	/* background: var(--gray-bg-color); */
	border: 2px solid var(--second-border-color);
	border-radius: 10px;
	padding: 10px;
}
.gismeteo-widget > div {
	width: 100%!important;
}
.sidebar .hotnews {
	background-color: var(--gray-bg-color);
	padding: 15px;
	margin-top: 10px;
	border-radius: 8px;
}
.hotnews__item {
	border-bottom: 1px solid var(--main-border-color);
	padding: 0 0 20px 0;
	margin: 0 0 15px 0;
}
.hotnews__info {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.hotnews__domain {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.hotnews__domain img {
	max-height:16px;
	max-width:16px;
}
.hotnews__domain a {
	text-decoration: none;
	color: var(--main-text-color);
	font-size: 13px;
	margin: 3px 0 0 5px;
	font-weight: 600;
}
.hotnews__time {
	float: right;
	bottom: 13px;
	font-size: 12px;
	color: var(--main-text-color);
	margin: 4px 0 0 0;
	font-weight: 600;
}
.hotnews__title{
	text-decoration: none;
	color: var(--main-text-color);
	font-weight: 600;
	font-size: 15px;
	line-height: 22px;
	margin: 12px 0 0 0;
	display: block;
	padding-right: 20px;
	position: relative;
}
.hotnews__title:hover {
	text-decoration: underline;
}
.hotnews__item .news__share {
	display: inline-block;
	margin-left: 5px;
	vertical-align: middle;

	position: absolute;
	right: 0;
	bottom: 4px;
}



.header__top .reg .findtarget {
	float: left;
	margin: 0 15px 0 0;
	width: 210px;
	border: 1px solid var(--main-border-color);
}
.targetnews {
	width: 636px;
	position: relative;
	border-bottom: 1px solid var(--second-border-color);
	float: left;
	padding: 4px 0 8px 0;
	display:block;
}
.targetnews .bg {
	width: 636px;
	background-color: var(--gray-bg-color);
	height:100%;
	position:relative;
	display: table-row;
}
.targetnews .category {
	position: absolute;
	top: -17px;
	right: 0;
	font-size: 12px;
	color: var(--gray-text-color);
	font-weight: 600;
	text-decoration: none;
}
.targetnews .img {
	position: relative;
	width: 300px;
	height: 100%;
	padding: 15px 15px 0 15px;
	display: table-cell;
	vertical-align: top;
}
.targetnews .img img {
	display: block;
	width: 300px;
}
.targetnews .img .abs {
	position: relative;
	float: left;
	margin-top: -38px;
	width: 300px;
	background: rgba(52, 53, 109, 0.6);
}
.targetnews .text-block {
	width: 320px;
	height:100%;
	display: table-cell;
	vertical-align: top;
}
.targetnews .subnetwork {
	float: left;
	font-size: 13px;
	color: var(--white-text-color);
	font-weight: 600;
	margin: 10px 10px 10px 10px;
}
.targetnews .time {
	float: left;
	font-size: 13px;
	color: var(--white-text-color);
	font-weight: 600;
	margin: 10px 0;
}
.targetnews .time .inTime {
	display:none;
}
.targetnews .img .counter {
	float: right;
	margin: 10px;
	color: var(--white-text-color);
	font-size: 13px;
	font-weight: 600;
}
.targetnews .img .counter .eye {
	margin: 5px 7px 0 0;
	float: left;
	background-size:14px 9px;
	background: url("../img/svg/eye_hover.svg") no-repeat;
	height:9px;
	width:14px;
}
.targetnews .title {
	width: 290px;
	margin: 15px 0 0 0;
	font-size: 26px;
	font-weight: 600;
	text-decoration: none;
	color: var(--main-text-color);
	line-height: 29px;
	display:block;
	position:relative;
}
.targetnews p {
	width: 310px;
	margin: 16px 0 0;
	font-weight: 600;
	line-height: 22px;
	color: var(--main-text-color);
	display:block;
	position:relative;
}
.targetnews .readmore {
	text-decoration: none;
	color: var(--white-text-color);
	border: 0 solid var(--transparent);
	font-size: 14px;
	padding: 10px 0 10px 15px;
	width: 130px;
	background: var(--second-accent-bg-color) url("../img/svg/arrow-circle-right-white.svg") no-repeat 120px 16px;
	background-size: 14px 9px;
	font-weight: 600;
	margin:16px 0 0 0;
	height:19px;
	display:block;
	position:relative;
}
.targetnews .readmore:hover {
	background: var(--second-accent-bg-color) url("../img/svg/arrow-circle-right-white.svg") no-repeat 120px 16px;
	background-size: 14px 9px;
	transition: all 0.3s ease;
}
.targetnews .soctarget {
	margin: 20px 0 20px;
	height: 19px;
	display:block;
	position:relative;
}
.targetnews .soctarget li {
	float: left;
	margin: 0 15px 0 0;
}
.targetnews .soctarget li a {
	width:28px;
	height:28px;
	display:block;
	float: left;
	margin: -4px 5px 0 0;
}
.targetnews .soctarget .vk {
	background:url("../img/svg/vk_big.svg") no-repeat;
	width:28px;
	height:28px;
	background-size:28px 28px;
}
.targetnews .soctarget .vk:hover {
	background:url("../img/svg/vk_big_hover.svg") no-repeat;
	width:28px;
	height:28px;
	background-size:28px 28px;
	transition: all 0.3s ease;
}
.targetnews .soctarget .fb {
	background:url("../img/svg/fb_big.svg") no-repeat;
	width:28px;
	height:28px;
	background-size:28px 28px;
}
.targetnews .soctarget .fb:hover {
	background:url("../img/svg/fb_big_hover.svg") no-repeat;
	width:28px;
	height:28px;
	background-size:28px 28px;
	transition: all 0.3s ease;
}
.targetnews .soctarget .tw {
	background:url("../img/svg/tw_big.svg") no-repeat;
	width:28px;
	height:28px;
	background-size:28px 28px;
}
.targetnews .soctarget .tw:hover {
	background:url("../img/svg/tw_big_hover.svg") no-repeat;
	width:28px;
	height:28px;
	background-size:28px 28px;
	transition: all 0.3s ease;
}
.targetnews .soctarget .ok {
	background:url("../img/svg/ok_big.svg") no-repeat;
	width:28px;
	height:28px;
	background-size:28px 28px;
}
.targetnews .soctarget .ok:hover {
	background:url("../img/svg/ok_big_hover.svg") no-repeat;
	width:28px;
	height:28px;
	background-size:28px 28px;
	transition: all 0.3s ease;
}
.targetnews .soctarget .subsoc img {
	float: left;
	margin: 3px 0 0 0;
}
.targetnews .soctarget .subsoc span {
	float: left;
	font-size: 14px;
	margin: 7px 0 0 5px;
	font-weight: 600;
}
.findline {
	float: left;
	width: 100%;
}
.findline .text {
	float: left;
	width: 82%;
	height: 30px;
	padding: 0 0 0 15px;
	outline: none;
	border: 1px solid var(--main-border-color);
	border-radius: 7px;
}
.findline .submit {
	float: right;
	width: 15%;
	height: 32px;
	background-color: var(--second-accent-bg-color);
	border: 0 solid var(--transparent);
	color: var(--white-text-color);
	font-weight: 600;
	cursor: pointer;
	border-radius: 5px;
}
.newscount {
	float: left;
	width: 100%;
	margin: 15px 0 0 0;
	border-bottom: 1px solid var(--main-border-color);
	padding: 0 0 15px 0;
}
.newscount .subnumb {
	float: left;
	font-size: 14px;
	font-weight: 600;
	color: var(--second-accent-text-color);
	margin: 0 6px 0 0;
}
.newscount .number {
	float: left;
	font-size: 14px;
	font-weight: 600;
	color: var(--second-accent-text-color);
}
.newscount img {
	float: right;
	margin: 6px 0 0 0;
}
.line {
	float: left;
	width: 100%;
	margin: 15px 0 0 0;
}
.line img {
	float: left;
	width: 17px;
	margin: 4px 25px 0 0;
}
.line .timeline {
	float: left;
	width: 40px;
	font-size: 14px;
	font-weight: 600;
	margin: 2px 25px 0 0;
}
.line span {
	float: left;
	font-size: 14px;
	font-weight: 600;
	max-width: 800px;
}
.line span a {
	color:var(--main-text-color);
	text-decoration:none;
}
.line .countline {
	float: right;
	font-size: 14px;
	font-weight: 600;
}
.titleside span {
	float: none;
	background-color: #9FEE00;
	color: #060606;
}
.layout {
	background: rgba(0, 0, 0, 0.8);
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 8888;
}
.popup {
	z-index: 9999;
	background: var(--main-bg-color);
	color: var(--main-text-color);
	position: absolute;
	top: 80px;
	width: 90%;
	width: auto;
	min-width: 300px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 10px;
	overflow: hidden;
}

#disableSource .logo {
	border-bottom:1px solid var(--main-border-color);
}
.popup .logo {
	margin: 25px 0 0 0;
	float: left;
	width: 100%;
	text-align: center;
}
.popup .logo .close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: url("../img/svg/close_popup_blue.svg") no-repeat;
	height: 13px;
	width: 13px;
	cursor: pointer;
}
.popup .poptitle {
	float: left;
	background-color: var(--second-accent-bg-color);
	padding: 12px 0;
	width: 100%;
	margin: 25px 0 0 0;
	text-align: center;
}

#reg .poptitle p {
	font-weight:bold;
	font-size:20px;
}
#reg .poptitle, #person .poptitle {
	margin-top:0;
}
.popup .poptitle p {
	color: var(--white-text-color);
	font-size: 21px;
	text-transform: uppercase;
}
.popup .poptitle span {
	color: var(--white-text-color);
	font-size: 22px;
	text-transform: uppercase;
	font-weight: 600;
}
.popup .textabout {
	float: left;
	margin: 40px 50px;
}
.popup .textabout .subtext {
	margin: 0 0 35px 0;
}
.popup .textabout .subtext span {
	font-weight: 700;
}
.popup .textabout .subtext .nounderline {
	text-decoration: none;
}
.popup form {
	float: left;
	width: 100%;
	text-align: center;
	margin: 40px 0 0 0;
}
.popup .setting {
	width: 400px;
	display: inline-block;
	margin: 0 0 35px 0;
}
.popup .setting span {
	line-height:24px;
}
.popup .setting span#placeholderSource {
	font-size: 14px;
	font-weight: 700;
}
.popup .setting input {
	padding: 5px 0;
	width: 290px;
	border: 0;
	outline: none;
}
.popup .setting .user {
	margin: 25px 0 15px 0;
	border-bottom: 1px solid var(--main-border-color);
	padding: 0 0 15px 0;
	width: 400px;
}
.popup .setting .edit {
	float: right;
	font-size: 12px;
	font-weight: 700;
	padding: 5px 0;
	cursor: pointer;
}
.popup .save {
	background-color: var(--gray-bg-color);
	overflow: hidden;
	clear: both;
}
.popup .save input {
	margin: 30px 5px 35px;
	padding: 15px;
	border: 0 solid var(--transparent);
	background-color: var(--second-accent-bg-color);
	color: var(--white-text-color);
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	min-width: 90px;
	border-radius: 5px;
}
.popup .save input.disabled {
	background-color: var(--gray-bg-color);
}
.popup .poptitle .popreg {
	display: inline-block;
	padding: 30px 0;
}
.popup .poptitle .popreg .icon-arrow-right {
	float: left;
	width: 8px;
	height: 12px;
	margin: 16px 15px 0 5px;
	background: url('../img/svg/arrow_right.svg') 0 0 no-repeat;
}
.popup .poptitle .popreg .numbnoactive img {
	float:none !important;
	margin:0 !important;
	padding-top:15px;
}
.popup .poptitle .blockactive {
	float: left;
	color: var(--white-text-color);
	font-size: 16px;
	font-weight: 600;
	border: 1px solid var(--main-bg-color);
	margin: 0 15px 0 0;
	padding: 10px 15px;
	width: 185px;
}
.popup .poptitle .numbactive {
	float: left;
	color: var(--white-text-color);
	font-size: 16px;
	font-weight: 600;
	border: 1px solid var(--main-bg-color);
	margin: 0 15px 0 0;
	padding: 0;
	border-radius: 25px;
	width:44px;
	height:44px;
}
.popup .poptitle .blocknoactive {
	float: left;
	color: #6d6e96; /* ??? */
	font-size: 16px;
	font-weight: 600;
	border: 1px solid currentColor; /* ??? */
	margin: 0 15px 0 0;
	padding: 10px 16px;
	width: 185px;
}
.popup .poptitle .numbnoactive {
	float: left;
	color: var(--second-accent-text-color);
	font-size: 16px;
	font-weight: 600;
	border: 1px solid currentColor; /* ??? */
	margin: 0 15px 0 0;
	padding: 0;
	border-radius: 25px;
	background-color: currentColor; /* ??? */
	width:44px;
	height:44px;
}
.popup .poptitle .numbactive span, .popup .poptitle .numbnoactive span {
	line-height:44px;
	font-size:16px !important;
}
.popup .poptitle .arrowpop {
	float: left;
	margin: 17px 30px 0 15px;
}
.popup .socnetwork {
	display: inline-block;
	text-align: center;
	width: 100%;
	margin: 50px 0 0 0;
}
.popup .socnetwork p {
	font-size: 21px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 25px 0;
}
.popup .socnetwork .socpic {
	margin-bottom: 50px;
	padding-left: 10px;
	padding-right: 10px;
}
.popup .socnetwork a {
	margin: 0 15px 0 0;
	color: var(--white-text-color);
	display: inline-block;
}
.popup .socnetwork a img {
	max-width: 100%;
}
.popup .profile {
	display: inline-block;
	text-align: center;
	width: 100%;
	margin: 50px 0 0 0;
}
.popup .profile .enter {
	font-size: 14px;
	font-weight: 600;
}
.popup .profile .enter img {
	margin: 0 0 3px 10px;
}
.popup .profile .button {
	margin: 35px 0 100px 0;
}
.popup .profile .button .buttonactive {
	text-decoration: none;
	font-size: 13px;
	color: var(--white-text-color);
	border: 0 solid var(--transparent);
	background-color: var(--second-accent-bg-color);
	font-weight: 600;
	padding: 10px 15px;
}
.popup .profile .button .buttonnoactive {
	text-decoration: none;
	font-size: 13px;
	color: var(--main-text-color);
	border: 0 solid var(--transparent);
	background-color: var(--gray-bg-color);
	font-weight: 600;
	padding: 10px 15px;
}
.popup .country {
	width: auto;
	float: left;
	margin: 0;
}
.popup .country span {
	font-size: 14px;
	font-weight: 700;
	display: block;
	margin: 0 0 10px 0;
	float: left;
}
.popup .country select {
	display: block;
	width: 245px;
	min-height: 40px;
	padding: 11px 8px!important;
	float: left;
	clear: both;
	font-weight: 600;
	font-size: 12px;
	background: var(--main-bg-color);
}
.popup .subjecttitle {
	float: left;
	margin: 0 0 5px 0;
	overflow: hidden;
}
.popup .subjecttitle span, .popup .emailtitle {
	font-size: 18px;
	font-weight: 600;
	display: block;
	margin: 0 0 20px 0;
	float: left;
}
.popup#new .subjecttitle > span,
.popup#person .subjecttitle > span {
	font-size: 14px;
	font-weight: 700;
	margin: 10px 0 12px;
}
.popup form.personalization-form {
	margin: 0;
}
.emailinput {
	/*	float: left;
	margin: 0 0 20px 0;
*/
	margin: 0 0 5px 0;
	width: 97%;
	padding: 8px 10px;
	border: solid 1px var(--main-border-color);
}
.error {
	box-shadow: 0 0 3px var(--red);
	border: solid 1px var(--red);
}
#personalization-badEmail, #badEmail {
	color: var(--red-text-color);
	line-height:40px;
}
.popup .logo .logotype {
	width: 140px;
	height: 28px;
}
.popup .subjecttitle .subject {
	float: left;
	width: 100%;
}
.popup .subjecttitle .subject div {
	float: left;
	position: relative;
	margin: 0 17px 10px 0;
	width: 135px;
	cursor: pointer;
	background: var(--gray-bg-color);
	box-sizing: border-box;
	max-height: 70px;
}
.popup#new .subjecttitle .subject div:nth-child(4n),
.popup#person .subjecttitle .subject div:nth-child(4n) {
	margin-right: 0;
}
.popup#new .subjecttitle .subject div p,
.popup#person .subjecttitle .subject div p {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0;
	line-height: 24px;
	background: rgba(238, 238, 238, .9);
}
.popup .subjecttitle .subject div.active .hover {
	display: block;
}
.popup .subjecttitle .subject div.active {
	background: var(--gray-bg-color);
}
.popup .subjecttitle .subject div .hover {
	position: absolute;
	top: 0;
	left: 0;
	width: 135px;
	height: 70px;
	display: none;
	background: rgba(52, 53, 109, 0.6) url("../img/svg/check mark.svg") 64px 20px no-repeat;
	background-size: 16px 12px;
}
.popup .subjecttitle .subject div p {
	font-size: 12px;
	font-weight: 600;
	color: #060606;
	margin: 0 0 5px 0;
}
.popup .blocked {
	float: left;
	width: auto;
	margin: 0 0 0 60px;
}
.popup .blocked span {
	display: block;
	float: left;
	font-size: 14px;
	font-weight: 700;
	margin: 0 0 10px 0;
}
.popup .blocked .checkbox {
	float: left;
	clear: both;
	max-width: 290px;
}
.popup .blocked .checkbox label {
	display: inline-block;
	float: left;
	position: relative;
	width: auto;
	min-width: 135px;
	font-size: 12px;
	font-weight: 600;
	text-align: left;
	margin: 0 10px 5px 0;
	word-break: break-all;
}
.popup .blocked .checkbox label input {
	display: none;
	position: absolute;
	left: 0;
	top: 0;
	margin: 0;
}
.popup .blocked .checkbox label span {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 1px solid var(--main-border-color);
	vertical-align: top;
	margin: 0 10px 0 0;
	background: inherit;
	cursor: pointer;
}
.popup .blocked .checkbox label input + span img{
	display: none;
}
.popup .blocked .checkbox label input:checked + span{
	display: block;
	background: url("../img/popup-check.png") 50% no-repeat;
}
.popup .forminner {
	overflow: hidden;
	margin: 0;
	padding: 0 40px 30px;
}
.popup .forminner h1 {
	font-size: 21px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 25px 0;
}
.popup .country .choose {
	float: left;
	width: 100%;
	margin: 0 0 30px 0;
}
.popup .country .choose img {
	float: left;
	font-weight: 600;
	border: 1px solid var(--second-accent-bg-color);
	background-color: var(--second-accent-bg-color);
	margin: 0 15px 0 0;
	padding: 12px 10px;
	border-radius: 25px;
}
.popup .country .choose span {
	color: var(--second-accent-text-color);
	text-transform: uppercase;
	margin: 8px 0 0 0;
}
.popup .country .choose p {
	float: left;
	font-size: 18px;
	font-weight: 600;
	margin: 8px 0 0 10px;
}
.popup .subjecttitle .choose {
	float: left;
	width: 100%;
	margin: 0 0 30px 0;
}
.popup .subjecttitle .choose img {
	float: left;
	font-weight: 600;
	border: 1px solid var(--second-accent-bg-color);
	background-color: var(--second-accent-bg-color);
	margin: 0 15px 0 0;
	padding: 12px 10px;
	border-radius: 25px;
}
.popup .subjecttitle .choose span {
	color: var(--second-accent-text-color);
	text-transform: uppercase;
	margin: 8px 0 0 0;
}
.popup .subjecttitle .choose p {
	float: left;
	font-size: 18px;
	font-weight: 600;
	margin: 8px 0 0 10px;
}
.popup .save .delivery {
	font-size: 14px;
	font-weight: 600;
	margin: 30px 0 0 0;
	position:relative;
}
.popup .save .delivery input {
	margin: 0 10px 0 0;
	min-width: 15px;
	padding: 0;
	position: relative;
	top: 1px;
}
.block4 {
	float: left;
	margin-left: 36px;
	width: 300px;
	display:none;
}
/*register popup*/
.popup_register {
	position: fixed;
	width: 100%;
	left: 0;
	bottom: 0;
	z-index: 5000;
	background: rgba(52, 53, 109, 0.8);
	text-align: center;
}
.popup_register .close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: url("../img/svg/close_popup.svg") top left no-repeat;
	width: 13px;
	height: 13px;
	background-size: 13px 13px;
	cursor: pointer;
}
.popup_register p {
	margin: 20px 30%;
	color: var(--white-text-color);
	font-size: 18px;
}
.popup_register a {
	padding: 15px 30px;
	display: inline-block;
	margin: 0 20px 20px 20px;
	font-size: 18px;
	color: var(--white-text-color);
	font-weight: 700;
	text-decoration: none;
}
.popup_register .login {
	padding: 15px 30px;
}
.popup_register .reg, .popup_register .login {
	background: rgba(52, 53, 109, 0.5);
	border: 1px solid var(--main-bg-color);
}
.popup_register .reg:hover, .popup_register .login:hover {
	background: var(--second-accent-bg-color);
	padding: 15px 30px;
}
.popup_arrow_right {
	float: left;
	height: 11px;
	width: 7px;
	margin: 15px 20px 0 10px;
}
.contacts__item {
	margin-top: 10px;
}
.contacts__definition {
	margin-left: 20px;
}
.contacts__phone {
	color: var(--main-text-color);
	text-decoration: none;
}
.contacts__mail {
	color: var(--main-text-color);
}

#new,
#person{
	width: 675px;
	top: 68px;
	box-sizing: border-box;
	position: fixed;
}
.popup#new .logo,
.popup#person .logo{
	display: inline-block;
	width: auto;
	height: auto;
	float: none;
	margin: 0;
	vertical-align: top;
}
.popup#new .poptitle,
.popup#person .poptitle{
	width: auto;
	display: inline-block;
	float: none;
	font-size: 18px;
	padding: 6px 0 0;
	margin: 0 0 0 28px;
	font-weight: 700;
	color: var(--main-text-color);
	background-color: inherit;
	text-transform: uppercase;
}
.popup-header {
	display: inline-block;
	position: relative;
	width: 100%;
	padding: 10px 40px 13px;
	box-sizing: border-box;
	border-bottom: 6px solid var(--second-accent-bg-color);
}
.popup#new .popup-header .close,
.popup#person .popup-header .close {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 13px;
	height: 13px;
	background: url(../img/popup-close-blue.png) no-repeat;
	cursor: pointer;
}
.popup-header svg {
	display: inline-block;
	vertical-align: top;
}
.popup#new .save,
.popup#person .save {
	background-color: var(--second-accent-bg-color);
}
.popup#new .save .personalization-save-settings,
.popup#person .save .personalization-save-settings {
	width: 100%;
	display: block;
	padding: 15px 0;
	background-color: inherit;
	font-size: 18px;
	font-weight: 600;
	line-height: 21px;
	color: var(--white-text-color);
	margin: 0;
	cursor: pointer;
}

.start-btn {
	float: right;
	color: var(--white-text-color);
	background: var(--accent-bg-color);
	padding: 8px 20px;
	margin-right: 54px;
	font-weight: 600;
	cursor: pointer;
	font-size: 14px;
	text-decoration: none;
	-webkit-transition: background 0.2s ease;
	transition: background 0.2s ease;
}
.start-btn:hover {
	background: var(--second-accent-bg-color);
}

/**********temp****************/
.temp {
	position: absolute;
	top: 100px;
	right: 0;
}
.temp div {
	cursor: pointer;
	margin: 5px 0;
}
.MasonryContent .item {
	float: left;
	width: 300px;
	box-sizing: content-box;
	margin: 0 0 25px 0;
}
.MasonryContent .item.w_2 {
	width: 636px;
	margin-bottom: 70px;
}
.MasonryContent .w_2 .targetnews {
	height:100%;
	float:none !important;
	display: table;
}
/* ajax-loading - while scrolling */
#ajax-loading {
	text-align: center;
	height: 32px;
	display: block;
}
#ajax-loading img {
	height: 32px;
	width: 32px;
	border: none;
}



.col-middle,
.target-section {
	display: none;
}
.target-section {
	display: block;
	margin-bottom: 20px;
}
.main__col {
	display: inline-block;
	width: 300px;
	vertical-align: top;
}

.target-section {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

/* ----- target-section-----*/
.target-news {
	display: inline-block;
	position: relative;
	width: 635px;
	box-sizing: border-box;
	vertical-align: top;
}

.target-news__img img {
	display: block;
	width: 100%;
	height: 345px;
	object-fit: cover;
	border-radius: 10px;
	overflow: hidden;
}

.target-news__img img[alt]:after {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 10px;
	box-sizing: border-box;
	padding: 10px;
	background-color: var(--gray-bg-color);
	color: var(--gray-text-color);
	font-family: 'Helvetica';
	font-weight: 300;
	font-size: 12px;
	line-height: 1.2;
	text-align: center;
	content: attr(alt);
	/* content: ''; */
	/* padding: 20px; */
	/* background-image: url(data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='550.801' height='550.8' xmlns:v='https://vecta.io/nano'%3E%3Cpath d='M515.828 61.201H34.972C15.659 61.201 0 76.859 0 96.172V454.63c0 19.312 15.659 34.97 34.972 34.97h480.856c19.314 0 34.973-15.658 34.973-34.971V96.172c0-19.313-15.658-34.971-34.973-34.971zm0 34.971V350.51l-68.92-62.66c-10.359-9.416-26.289-9.04-36.186.866l-69.752 69.741-137.532-164.278c-10.396-12.415-29.438-12.537-39.99-.271L34.972 343.219V96.172h480.856zm-148.627 91.8c0-26.561 21.523-48.086 48.084-48.086s48.086 21.525 48.086 48.086-21.523 48.085-48.086 48.085-48.084-21.524-48.084-48.085z'/%3E%3C/svg%3E); */
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: 50px;
}
.target-news__link {
	display: block;
	text-decoration: none;
}
.target-news__img {
	display: inline-block;
	width: 100%;
	max-height: 345px;
	position: relative;
}
.target-news__label {
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
}
.target-news__label span {
	display: block;
	font-size: 13px;
	line-height: 1;
	font-weight: 600;
	color: var(--gray-text-color);
}
span.target-news__category {
	display: flex;
	align-items: center;
}
.target-news__category img {
	width: 16px;
	height: 16px;
	margin-right: 5px;
}
.target-news__views {
	line-height: 1;
	font-size: 13px;
	font-weight: 600;
	color: var(--gray-text-color);
	display: inline-block;
	vertical-align: middle;
	margin-left: 5px;
}
.target-news__views:before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	background-size: 14px 9px;
	background: url(../img/svg/eye.svg) no-repeat;
	height: 9px;
	width: 14px;
	margin-right: 5px;
}
.target-news__title {
	font-size: 26px;
	line-height: 30px;
	color: var(--main-text-color);
	font-weight: 700;
	margin: 10px 0;
	margin-top: 8px;
	transition: color .3s ease;
}
.target-news__description {
	display: inline-block;
	font-size: 17px;
	line-height: 24px;
	color: var(--main-text-color);
	font-weight: 600;
	vertical-align: middle;
	transition: color .3s ease;
	max-height: 24px;
	overflow: hidden;

}
.target-news__title:hover,
.target-news__description:hover {
	color: var(--accent-text-color);
}
/* ----- /target-section-----*/

.news-header {
	position: relative;
	margin-bottom: 20px;
}
.hidden {
	position: absolute;
	clip: rect(0 0 0 0);
	width: 1px;
	height: 1px;
	margin: -1px;
}
.news-header h2,
.news-header a {
	display: inline-block;
	font-size: 21px;
	line-height: 1;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--main-text-color);
	background: var(--main-bg-color);
	z-index: 1;
	padding-right: 6px;
	text-decoration: none;
}
.news-header:after {
	display: block;
	content: '';
	position: absolute;
	top: calc(50% - 2px);
	left: 0;
	right: 0;
	width: 100%;
	height: 3px;
	color: var(--main-text-color);
	background-color: currentColor;
	z-index: -1;
}

/*----- related-news -----*/
.related-news {
	display: block;
	width: 300px;
}
.related-news__list {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}
.related-news .news__item {
	padding-bottom: 12px;
	padding-top: 12px;
	border-bottom: 1px solid var(--main-border-color);
}
.related-news .news__item:first-of-type {
	padding-top: 0;
}
.related-news .news__link {
	display: block;
	position: relative;
}

.related-news .news__title--small {
	font-size: 14px;
	line-height: 1.4;
	color: var(--main-text-color);
	font-weight: 700;
	margin-top: 10px;
	padding-right: 20px;
	position: relative;
}
.related-news .news__share {
	position: absolute;
	right: 0;
	bottom: 4px;
}


.middle-news__item {
	margin-bottom: 15px;
}
.middle-news__link {
	display: flex;
	justify-content: space-between;
	text-decoration: none;
}
.middle-news__img {
	max-width: 45%;
	margin-left: 8px;
	max-width: 45%;
	/* width: 100%; */
	flex-shrink: 0;
	width: 100%;
	position: relative;
}
.middle-news__img img {
	max-width: 100%;
	width: 100%;
	border-radius: 6px;
	height: 80px;
	object-fit: cover;
	display: block;
	overflow: hidden;
}

.middle-news__img img[alt]:after {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 6px;
	box-sizing: border-box;
	padding: 10px;
	background-color: var(--gray-bg-color);
	color: var(--gray-text-color);
	font-family: 'Helvetica';
	font-weight: 300;
	font-size: 12px;
	line-height: 1.2;
	text-align: center;
	/*content: attr(alt);*/
	content: '';
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:v='https://vecta.io/nano' width='550.801' height='550.8' style='fill: %23bbb'%3E%3Cpath d='M515.828 61.201H34.972C15.659 61.201 0 76.859 0 96.172V454.63c0 19.312 15.659 34.97 34.972 34.97h480.856c19.314 0 34.973-15.658 34.973-34.971V96.172c0-19.313-15.658-34.971-34.973-34.971zm0 34.971V350.51l-68.92-62.66c-10.359-9.416-26.289-9.04-36.186.866l-69.752 69.741-137.532-164.278c-10.396-12.415-29.438-12.537-39.99-.271L34.972 343.219V96.172h480.856zm-148.627 91.8c0-26.561 21.523-48.086 48.084-48.086s48.086 21.525 48.086 48.086-21.523 48.085-48.086 48.085-48.084-21.524-48.084-48.085z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: 50px;
}
.middle-news__domain {
	color: var(--gray-text-color);
	display: flex;
	align-items: center;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 5px;
}
.middle-news__fav {
	width: 16px;
	height: 16px;
	margin-right: 5px;
}
.middle-news__title {
	color: var(--main-text-color);
	font-size: 13px;
	line-height: 1;
	font-weight: 600;
	/*overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;*/
	max-height: 65px;
	overflow: hidden;
	margin-bottom: 3px;
}

.view-count {
	display: inline-block;
	position: relative;
	font-size: 13px;
	line-height: 18px;
	font-weight: 600;
	vertical-align: baseline;
	background-color: var(--main-bg-color);
	color: var(--gray-text-color);
	padding: 0;
}
.view-count::before {
	content: '';
	display: inline-block;
	vertical-align: baseline;
	background-size: 14px 9px;
	width: 14px;
	height: 9px;
	margin-right: 5px;
	background: url(../img/svg/eye.svg) no-repeat;
	margin-left: 9px;
}
.related-news .middle-news__img {
	align-self: flex-start;
}

.middle-news .view-count::before {
	margin-left: 0;
}
/*----- /middle-news -----*/

.middle-news-bottom {
	margin-top: 20px;
}


.news-section {
	display: flex;
	flex-direction: column;
}
.target-section .news-section {
	margin-top: 20px;
}
.category-news .news-section {
	margin-bottom: 20px;
}
.news {

}
.news__row {
	justify-content: space-between;
}
.news__more {
	display: block;
	background: var(--gray-bg-color);
	padding: 7px 15px;
	border-radius: 7px;
	color: var(--main-text-color);
	text-decoration: none;
	margin: 0 auto;
}
.news-section:nth-of-type(2n) .news__row {
	flex-direction: row-reverse;
}
.other-news .news-section:nth-of-type(2n) .news__row {
	flex-direction: row;
}
.other-news .news-section:nth-of-type(2n + 1) .news__row {
	flex-direction: row-reverse;
}
.news__list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.news-list--big {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: calc((100% / 3 - (36px / 2) / 3) * 2);
}
.news-list--small {
	width: calc(100% / 3 - (36px * 2) / 3);
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	padding-bottom: 20px;
}
.news__line {
	border-bottom: 1px solid var(--main-border-color);
}
.news__item {
	width: calc(100% / 3 - (36px * 2) / 3);
	max-width: 100%;
	margin-bottom: 20px;
	position: relative;
}
.news__item--big {
	width: calc(100% / 2 - (36px * 1) / 2);
	max-width: 100%;
	margin-bottom: 20px;
	position: relative;
}
.news__item--small {
	width: 100%;
	margin-bottom: 0;
}
.news__item2 img {
	display: none;
}
.news__link {
	text-decoration: none;
	color: var(--main-text-color);
}
.news__img {
	width: 100%;
	height: 0;
	padding-top: 50%;
	position: relative;
}
.news__img img {
	overflow: hidden;
}
.news__img img[alt]:after {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	box-sizing: border-box;
	padding: 10px;
	background-color: var(--gray-bg-color);
	color: var(--gray-text-color);
	font-family: 'Helvetica';
	font-weight: 300;
	font-size: 12px;
	line-height: 1.2;
	text-align: center;
	content: attr(alt);
	/* content: ''; */
	/* padding: 20px; */
	/* background-image: url(data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='550.801' height='550.8' xmlns:v='https://vecta.io/nano'%3E%3Cpath d='M515.828 61.201H34.972C15.659 61.201 0 76.859 0 96.172V454.63c0 19.312 15.659 34.97 34.972 34.97h480.856c19.314 0 34.973-15.658 34.973-34.971V96.172c0-19.313-15.658-34.971-34.973-34.971zm0 34.971V350.51l-68.92-62.66c-10.359-9.416-26.289-9.04-36.186.866l-69.752 69.741-137.532-164.278c-10.396-12.415-29.438-12.537-39.99-.271L34.972 343.219V96.172h480.856zm-148.627 91.8c0-26.561 21.523-48.086 48.084-48.086s48.086 21.525 48.086 48.086-21.523 48.085-48.086 48.085-48.084-21.524-48.084-48.085z'/%3E%3C/svg%3E); */
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: 50px;
}
.news__img img {
	max-width: 100%;
	width: 100%;
	border-radius: 10px;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}
.news__info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 5px;
	color: var(--gray-text-color);
	font-size: 13px;
	font-weight: 600;
}
.news__info--small {
	margin-top: 0;
}
.news__domain {
	display: flex;
	align-items: center;
	position: relative;
}
.news__fav {
	margin-right: 5px;
}
.news__close {
	margin-left: 5px;
	width: 8px;
	height: 8px;
	background: url(../img/svg/close.svg) no-repeat;
	background-size: 8px 8px;
	display: inline-block;
	cursor: pointer;
}
.news__time {
	margin-right: 0px;
	margin-left: auto;
}
.news__title {
	font-size: 18px;
	line-height: 1.3;
	font-weight: 700;
	color: var(--main-text-color);
	margin-top: 10px;
}

.news__title--small {
	font-size: 15px;
	color: var(--main-text-color);
	font-weight: 600;
	line-height: 1.5;
	margin-top: 25px;
	padding-right: 20px;
}

/* persons-carousel  */

.person-carousel {
	margin-bottom: 25px;
	opacity: 0;
}
.show.person-carousel {
	opacity: 1;
}

.person-carousel__slide {
	width: 210px;
	height: 280px;
	position: relative;
	border-radius: 5px;
	overflow: hidden;
}
.person-carousel__slide:nth-of-type(n+2) {
	margin-left: 15px;
}
.person-carousel__img {
	width: 210px;
	height: 280px;
}
.person-carousel__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.person-carousel__text {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	padding: 15px 20px;
	padding-top: 20%;
	background: linear-gradient(
			0deg
			, rgb(0 0 0) 37%, rgb(0 0 0 / 39%) 78%, var(--transparent));
}
.person-carousel__title {
	color: #fff;
	font-weight: 600;
	font-size: 18px;
	text-transform: uppercase;
}
.person-carousel__see {
	text-align: center;
	background-color: var(--yellow-bg-color);
	border-radius: 5px;
	padding: 7px 10px;
	margin-top: 20px;
	color: #000;
	font-size: 14px;
	font-weight: 600;
}
.person-carousel__btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	cursor: pointer;
	height: 45px;
	width: 45px;
	background-color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
}
.person-carousel__btn--next {
	right: 15px;
}
.person-carousel__btn--prev {
	left: 15px;
}
.person-carousel__btn--prev.swiper-button-disabled {
	left: -100px;
}
.person-carousel__btn--next.swiper-button-disabled {
	right: -100px;
}
.person-carousel__arrow {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='41' viewBox='27 12 10 40' width='50' xmlns:v='https://vecta.io/nano'%3E%3Cpath d='M37.379 12.552a2 2 0 0 0-2.758 2.897L49.963 30H10a2 2 0 1 0 0 4h39.899L34.621 48.552a2 2 0 0 0-.069 2.828c.393.412.92.62 1.448.62a1.99 1.99 0 0 0 1.379-.552l17.449-16.62A3.97 3.97 0 0 0 56 32c0-1.069-.416-2.073-1.207-2.862z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: 50%;
	height: 40%;
	width: 40%;
}
.person-carousel__arrow--prev {
	transform: scaleX(-1);
}


.promo {
	margin-top: 15px;
	margin-bottom: 15px;
}
.promo__label {
	font-size: 13px;
	color: var(--light-gray-text-color);
	text-align: right;
	margin-bottom: 2px;
}
.promo__link {
	font-size: 18px;
	font-weight: bold;
	line-height: 1.3;
	color: var(--main-text-color);
	text-decoration: none;
}

.promo__img img {
	max-width: 100%;
	border-radius: 10px;
	display: block;
}
.promo__text {
	padding: 0 8px;
	margin-top: 5px;
}
.promo__text:hover {
	text-decoration: underline;
}

.sidebar-adv {
	margin: 12px 0 34px;
}

.banner-js {
	display: none;
}
.banner-js_active {
	display: block;
}

.counter-title {
	display: none;
}
/*----- news-by-category -----*/
.main__col.col-middle {
	width: 672px;
	float: right;
}
.news-by-categories {
	display: block;
	overflow: hidden;
}
.news-by-category-left,
.news-by-category-right {
	display: inline-block;
	width: 300px;
	float: left;
	margin-left: 35px;
}
.news-by-category__link img {
	width: 300px;
	height: auto;
	object-fit: cover;
	display: block;
}
.news-by-category__link {
	display: block;
	position: relative;
	color: var(--main-text-color);
	text-decoration: none;
}
.news-by-category .news-header {
	margin-bottom: 14px;
}
.news-by-category__counter {
	position: absolute;
	bottom: 0;
	right: 0;
	font-size: 13px;
	line-height: 32px;
	font-weight: 600;
	color: var(--white-text-color);
	padding: 0 7px;
	background-color: rgba(52, 53, 109, 0.7);
}
.news-by-category__counter:before {
	content: '';
	display: inline-block;
	vertical-align: baseline;
	background-size: 14px 9px;
	background: url(../img/svg/eye_hover.svg) no-repeat;
	height: 9px;
	width: 14px;
	margin-right: 5px;
}
.news-by-category__title {
	font-size: 18px;
	line-height: 25px;
	font-weight: 700;
	margin: 12px 0 5px;
}
.news-by-category__title:hover {
	text-decoration: underline;
}
.news-by-category__text {
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
	color: var(--gray-text-color);
}
.news-by-category__item .subnetwork {
	display: inline-block;
	font-weight: 600;
	max-width: 200px;
}
.news-by-category__item .subnetwork a {
	font-size: 13px;
}
.news-by-category__item .close {
	width: 8px;
	height: 8px;
	background: url(../img/svg/close.svg) no-repeat;
	background-size: 8px 8px;
	display: inline-block;
	cursor: pointer;
}
.news-by-category__item .time {
	display: inline-block;
	float: right;
	font-size: 13px;
	line-height: 18px;
	font-weight: 600;
	color: var(--gray-text-color);
}
.news-by-category__bottom {
	margin-top: 11px;
}
.news-by-category__item {
	position: relative;
	padding-bottom: 5px;
	border-bottom: 1px solid var(--second-border-color);
	margin-bottom: 26px;
}
.news-by-category .news-by-category__item:last-child {
	border-bottom: 0;
}
.news-by-category .news-by-category__item:nth-child(3) .image-container,
.news-by-category .news-by-category__item:nth-child(3) .news-by-category__text {
	display: none;
}
.news-by-category {
	margin-bottom: 30px;
}

.news-by-category-accent .counter-title {
	display: inline-block;
	position: static;
	line-height: 18px;
	vertical-align: baseline;
	background-color: var(--main-bg-color);
	color: var(--gray-text-color);
	padding: 0;
}

.news-by-category-accent .news-by-category__counter::before{
	margin-left: 3px;
	background: url(../img/svg/eye.svg) no-repeat;
}
.news-by-category-accent .news-by-category__item:last-child .news-by-category__counter::before {
	margin-left: 0;
	background: url(../img/svg/eye_hover.svg) no-repeat;
}
.news-by-category-accent .news-by-category__item:last-child {
	background-color: var(--second-accent-bg-color);
}
.news-by-category-accent .news-by-category__item:last-child .news-by-category__title,
.news-by-category-accent .news-by-category__item:last-child .news-by-category__text,
.news-by-category-accent .news-by-category__item:last-child .news-by-category__bottom{
	padding: 0 24px;
	color: var(--white-text-color);
}
.news-by-category-accent .news-by-category__item:last-child .subnetwork a,
.news-by-category-accent .news-by-category__item:last-child .time{
	color: var(--white-text-color);
}
.news-by-category-accent .news-by-category__item:last-child .close,
.news-by-category-accent .news-by-category__item:last-child .close{
	background: url(../img/svg/close-white.svg) -2px no-repeat;
	background-size: 11px 11px;
	margin-left: 2px;
}

/*----- /news-by-category -----*/


/*----- main-bottom -----*/
.main-bottom {
	margin-left: 35px;
	overflow: hidden;
}
.main-bottom .news-header {
	margin-bottom: 14px;
}
.main-bottom-left,
.main-bottom-right {
	display: inline-block;
	width: 300px;
	float: left;
}
.main-bottom-right {
	margin-left: 35px;
}
.main-bottom-news__link img {
	width: 300px;
	height: auto;
	object-fit: cover;
	display: block;
}
.main-bottom-news__counter {
	position: absolute;
	bottom: 0;
	right: 0;
	font-size: 13px;
	line-height: 32px;
	font-weight: 600;
	color: var(--white-text-color);
	padding: 0 7px;
	background-color: rgba(52, 53, 109, 0.7);
}
.main-bottom-news__counter:before {
	content: '';
	display: inline-block;
	vertical-align: baseline;
	background-size: 14px 9px;
	background: url(../img/svg/eye_hover.svg) no-repeat;
	height: 9px;
	width: 14px;
	margin-right: 5px;
}
.main-bottom-news__title {
	font-size: 21px;
	line-height: 28px;
	font-weight: 700;
	margin: 12px 0 5px;
}
.main-bottom-news__title:hover {
	text-decoration: underline;
}
.main-bottom-news__text {
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
	color: var(--gray-text-color);
}
.main-bottom-news__item .subnetwork {
	display: inline-block;
	font-weight: 600;
	max-width: 200px;
}
.main-bottom-news__item .subnetwork a {
	font-size: 13px;
}
.main-bottom-news__item .close {
	width: 8px;
	height: 8px;
	background: url(../img/svg/close.svg) no-repeat;
	background-size: 8px 8px;
	display: inline-block;
	cursor: pointer;
}
.main-bottom-news__item .time {
	display: inline-block;
	float: right;
	font-size: 13px;
	line-height: 18px;
	font-weight: 600;
	color: var(--gray-text-color);
}
.main-bottom-news__bottom {
	margin-top: 11px;
}
.main-bottom-news__item {
	position: relative;
	padding-bottom: 5px;
	border-bottom: 1px solid var(--second-border-color);
	margin-bottom: 26px;
}
.main-bottom-news__link {
	display: block;
	position: relative;
	color: var(--main-text-color);
	text-decoration: none;
}
.main-bottom-news .main-bottom-news__item:last-child {
	border-bottom: 0;
}
.main-bottom-news {
	margin-bottom: 30px;
}
.main-bottom-news-accent .counter-title {
	display: inline-block;
	position: static;
	line-height: 18px;
	vertical-align: baseline;
	background-color: var(--main-bg-color);
	color: var(--gray-text-color);
	padding: 0;
}
.main-bottom-news-accent .main-bottom-news__counter:before{
	margin-left: 3px;
	background: url(../img/svg/eye.svg) no-repeat;
}
.main-bottom-news-accent .main-bottom-news__item:last-child .news-by-category__counter::before {
	margin-left: 0;
	background: url(../img/svg/eye_hover.svg) no-repeat;
}
.main-bottom-news-accent .main-bottom-news__item:last-child {
	background-color: var(--second-accent-bg-color);
}
.main-bottom-news-accent .main-bottom-news__item:last-child .main-bottom-news__title,
.main-bottom-news-accent .main-bottom-news__item:last-child .main-bottom-news__text,
.main-bottom-news-accent .main-bottom-news__item:last-child .main-bottom-news__bottom{
	padding: 0 24px;
	color: var(--white-text-color);
}
.main-bottom-news-accent .main-bottom-news__item:last-child .subnetwork a,
.main-bottom-news-accent .main-bottom-news__item:last-child .time{
	color: var(--white-text-color);
}
.main-bottom-news-accent .main-bottom-news__item:last-child .close,
.main-bottom-news-accent .main-bottom-news__item:last-child .close{
	background: url(../img/svg/close-white.svg) -2px no-repeat;
	background-size: 11px 11px;
	margin-left: 2px;
}
/*----- /main-bottom -----*/

/*----- target-full -----*/
#targetNews {
	display: block;
}
#targetNews ul {
	display: flex;
	justify-content: space-between;
}
.soctarget__text {
	float: left;
	margin-right: 13px;
	line-height: 27px;
}
#targetNews li {
	display: inline-block;
	width: 128px;
	margin-left: 6px;
	text-align: center;
}
#targetNews li a{
	width: auto;
	height: auto;
	display: block;
	line-height: 27px;
	padding: 0 18px;
	font-size: 10px;
	font-weight: 600;
	color: var(--white-text-color);
	text-decoration: none;
}
#targetNews li a.fb {
	background: #496194 url('../img/svg/icon-fb-white.svg') 28px 50% no-repeat;
	background-size: 10px;
}
#targetNews li a.vk {
	background: #6996c7 url('../img/svg/icon-vk-white.svg') 17px 5px no-repeat;
	background-size: 17px;
}
#targetNews li a.ok {
	background: #ff9c43 url('../img/svg/icon-ok-white.svg') 13px 7px no-repeat;
	background-size: 8px;
}
#targetNews li a.tw {
	background: #28c3ff url('../img/svg/icon-tw-white.svg') 28px 5px no-repeat;
	background-size: 15px;
}

.share_popup__text {
	display: inline-block;
	vertical-align: middle;
}
.news__item--small .news__share {
	display: inline-block;
	margin-left: 5px;
	vertical-align: middle;

	position: absolute;
	right: 0;
	bottom: 4px;
}
.news__share {
	height: 16px;
	width: 16px;
	background: url("../img/svg/share.svg");
	background-size: contain;
	background-repeat: no-repeat;
	position: relative;
}
.news__share .news__item--big .news__share {
	display: inline-block;
}
.news__share .share_popup{
	display: none;
	position: absolute;
	background: var(--main-bg-color);
	top: 0;
	left: calc(100% + 10px);
	padding: 8px 10px;
	border-radius: 10px;
	box-shadow: 0px 6px 14px 0px rgb(0 0 0 / 28%);
}
.news__share .sharesoc {
	width: auto!important;
	position: relative;
	right: auto !important;
	top: auto !important;
	background: none !important;
	border: none !important;
	padding: 0 !important;
	display:block !important;
}
.news__share .share_popup ul {
	display: flex;
	justify-content: space-between;
}
.news__share li.subshare {
	padding: 0;
	margin-top: 0!important;
	width: 25px!important;
}
.news__share li.subshare:nth-of-type(n+2) {
	margin-left: 3px;
}
.news__share li.subshare:hover {
	background: none!important;
}
.news__share a {
	opacity: 1!important;
}
.news__share a:hover {
	text-indent: -9999px!important;
}
.news__share .sharesoc .tw {
	display: block;
	background:url("../img/svg/tw_big.svg") no-repeat right top !important;
	background-size: 23px 23px !important;
	padding: 0 !important;
	width: 100% !important;
	height: 25px !important;
}
.news__share .sharesoc .fb {
	display: block !important;
	background:url("../img/svg/fb_big.svg") no-repeat right top !important;
	background-size: 23px 23px !important;
	padding: 0 !important;
	width: 100% !important;
	height: 25px !important;
}
.news__share .sharesoc .vk {
	display: block;
	background:url("../img/svg/vk_big.svg") no-repeat right top !important;
	background-size: 23px 23px !important;
	padding: 0 !important;
	width: 100% !important;
	height: 25px !important;
}
.news__share .sharesoc .ok {
	display: block;
	background:url("../img/svg/ok_big.svg") no-repeat right top !important;
	background-size: 23px 23px !important;
	padding: 0 !important;
	width: 100% !important;
	height: 25px !important;
}



.read-full {
	text-align: right;
	margin: 17px 0 16px;
}
.read-full a {
	display: inline-block;
	line-height: 35px;
	padding: 0 10px 0 17px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	color: var(--white-text-color);
	background-color: var(--second-accent-bg-color);
	cursor: pointer;
}
.read-full a:after {
	content: '';
	display: inline-block;
	width: 12px;
	height: 12px;
	margin-left: 20px;
	background: url(../img/svg/arrow-right-circle-white.svg) 0 0 no-repeat;
	vertical-align: middle;
}
/*----- /target-full -----*/


.sidebar-adv--2 .sidebar__link {
	display: block;
	width: 300px;
	height: 480px;
	/*background: url("../img/banner-min.png") 0 0 no-repeat;*/
	background-size: cover;
}

/*----- persons -----*/
.persons-wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
}
.persons {
	display: inline-block;
	width: calc(100% - 336px);
	vertical-align: top;
}
.persons__title {
	display: block;
	margin: 0;
	font-size: 21px;
	font-weight: 600;
	color: var(--main-text-color);
}
.persons__search {
	display: inline-block;
	position: relative;
	margin: 10px 0 15px 0;
	padding-left: 30px;
	border-bottom: 1px solid var(--second-accent-bg-color);
	background-size: 17px;
}
.persons__search:before {
	content:'';
	position: absolute;
	left: 0;
	top: 0;
	width: 19px;
	height: 19px;
	background: url(../img/svg/search.svg) no-repeat;
	background-size: contain;
}
.persons__search input{
	width: 250px;
	border: 0;
	font-size: 14px;
	line-height: 20px;
}
.persons__search input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: var(--gray-text-color);
	opacity: 1;
	transition: opacity .3s ease;
}
.persons__search input::-moz-placeholder { /* Firefox 19+ */
	color: var(--gray-text-color);
	opacity: 1;
	transition: opacity .3s ease;
}
.persons__search input:-ms-input-placeholder { /* IE 10+ */
	color: var(--gray-text-color);
	opacity: 1;
	transition: opacity .3s ease;
}
.persons__search input:-moz-placeholder { /* Firefox 18- */
	color: var(--gray-text-color);
	opacity: 1;
	transition: opacity .3s ease;
}
.persons__search input:focus::-webkit-input-placeholder {
	opacity: 0;
}
.persons__search input:focus::-moz-placeholder {
	opacity: 0;
}
.persons__search input:focus:-ms-input-placeholder {
	opacity: 0
}
.persons__search input:focus:-moz-placeholder {
	opacity: 0;
}
.persons__search input:focus {
	outline: none;
}
.persons__nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 65%;
	margin-bottom: 25px;
}
.persons__item {
	font-size: 21px;
	width: 6.5%;
	cursor: pointer;
}
.persons__list {
	font-size: 25px;
	line-height: 40px;
	font-weight: 600;
	position: relative;
	margin-bottom: 20px;
}
.persons__list-header {
	position: relative;
	margin-bottom: 15px;
}
.persons__list-header:after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background-color: var(--second-accent-bg-color);
}
.persons__list-item {
	display: inline-block;
	width: 150px;
	margin-right: 8px;
	vertical-align: top;
}
.persons__list-link {
	display: block;
	width: 100%;
	height: auto;
	color: var(--main-text-color);
	text-decoration: none;
}
.persons__list-link:hover {
	text-decoration: underline;
}
.persons__list-img {
	display: block;
	width: 100%;
	height: 200px;
	object-fit: cover;
}
.persons__list-name {
	display: block;
	font-size: 18px;
	line-height: 22px;
	color: var(--main-text-color);
	white-space: normal;
	word-break: break-word;
}
.persons__list-inner {
	width: 100%;
	white-space: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
}
.sidebar-adv {
	position: static;
}
.sidebar-adv.fixed {
	position: fixed;
}
.persons-news .topnews {
	margin-bottom: 40px
}
.persons-news .item {
	padding-top: 15px;
	margin-bottom: 10px;
	z-index: 1;
}
.sidebar_adv {
	margin-bottom: 20px;
}

#searchResult {
	display: none;
	position: absolute;
	width: 100%;
	max-height: 195px;
	top: 105%;
	left: 0;
	background: var(--main-bg-color);
	padding: 10px 0 10px 10px;
	overflow-y: auto;
	box-shadow: 0 0 2px 0 rgba(51,51,51,.05), 0 1px 4px 0 rgba(51,51,51,.15);
	z-index: 1;
}
#searchResult .persons__list-item {
	width: 100%;
	margin: 5px 0;
}
#searchResult .persons__list-item:first-child {
	margin-top: 0;
}
#searchResult .persons__list-item:last-child {
	margin-bottom: 0;
}
#searchResult .persons__list-img {
	width: 20px;
	height: 27px;
	display: inline-block;
	margin-right: 5px;
	vertical-align: top;
}
#searchResult .persons__list-name {
	display: inline-block;
	vertical-align: middle;
	font-size: 14px;
	line-height: 26px;
	text-transform: capitalize;
}
#searchResult .persons__list-link {
	background-color: var(--main-bg-color);
	transition: .3s background-color ease;
}
#searchResult .persons__list-link:hover {
	background-color: var(--second-accent-bg-color);
	text-decoration: none;
}
#searchResult .persons__list-link:hover .persons__list-name {
	color: var(--white-text-color);
	transition: .3s color ease;
}
.highlight {
	font-weight: 700;
}
/*----- /persons -----*/
.sidebar__link_3 {
	/*background: url("../images/sidebar-adv_3.gif") 0 0 no-repeat;*/
}
.sidebar-news {
	display: flex;
	justify-content: space-between;
	padding-top: 25px;
	margin-bottom: 20px;
	position: relative;
}
.sidebar-news__header {
	width: 100%;
	position: absolute;
	top: 0;
	font-size: 16px;
}
.sidebar-news__item {
	width: 95px;
	height: auto;
}
.sidebar-news__link {
	display: inline-block;
	width: 100%;
	color: var(--main-text-color);
}
.sidebar-news__img {
	width: 100%;
	height: 127px;
	object-fit: cover;
}
.sidebar-news__title {
	display: inline-block;
	width: 100%;
	height: auto;
	box-sizing: border-box;
	padding-right: 5px;
}
.sidebar-news__link:hover .sidebar-news__title {
	text-decoration: underline;
}

.js-textSearcher-highlight {
	background-color: var(--yellow-bg-color);
}

/*----- mobile -----*/

/*----- article_main -----*/
.article_main p {
	margin-bottom: 20px;
	line-height: 1.5;
}
.article_main figure img {
	width: 500px;
	margin: 0 auto;
	display: block;
}
.article_main figure {
	margin-bottom: 30px;
}
.article_main figcaption {
	font-size: 12px;
	line-height: 1.3;
	text-align: center;
	font-style: italic;
	color: var(--gray-text-color);
}
.article_container {
	display: inline-block;
	position: relative;
	width: 635px;
	box-sizing: border-box;
	vertical-align: top;
	margin: 12px 33px 0 0;
}
/*----- /article_main -----*/

@media screen and (max-width: 1360px) {
	.logo__link {
		width: 120px;
	}
	.category {
		margin-right: auto;
		margin-left: auto;
		max-width: 50%;
	}
	.category__link {
		font-size: 13px;
		padding-right: 6px;
		padding-left: 6px;
	}
	.category .wr {
		font-size: 13px;
		padding-right: 16px;
		padding-left: 6px;
	}
	.user-block__item {
		font-size: 13px;
	}
	.user-block__item--profile {
		padding-right: 8px;
		margin-right: 8px;
	}
	.wrap {
		/*width: 974px;*/
		width: 956px;
	}
	.sidebar {
		margin-left: 15px;
	}
	header .wrap .header__top {
		/*width: 970px;
		width: 950px;*/
	}
	.findline .text {
		width: 80%;
	}
	.line span {
		max-width: 500px;
	}
	.main .block3 {
		margin: 0;
	}
	.main {
		width: 636px;
	}

	header {
		font-size: 12px;
	}
	.start-btn {
		padding: 10px 6px;
		margin-right: 5px;
		font-size: 11px;
	}
	.related-news {
		margin-top: 20px;
		width: 100%;
	}
	.related-news__list {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.middle-news__item {
		width: 100%;
	}
	.middle-news__img {
		max-width: 25%;
	}
	.middle-news__text {
		flex-grow: 1;
	}
	.news__item {
		width: calc(100% / 2 - (20px * 1) / 2);
	}
	.news-section .news__row {
		flex-direction: column!important;
	}
	.news-list--big {
		width: 100%;
	}
	.news-list--small {
		width: 100%;
		flex-direction: row;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.news__item--small {
		width: calc(100% / 2 - (20px * 1) / 2);
	}
	.news__item--small:nth-of-type(n+3) {
		margin-top: 30px;
	}
	.related-news .news__item {
		width: 100%;
		margin: 0;
	}
	.news__title--small {
		margin-top: 10px;
	}
	.news__line {
		display: none;
	}


	.main__col.col-middle {
		width: 300px;
	}
	.news-by-category {
		margin: 0 0 30px 0;
	}
	.main-bottom {
		margin: 0;
	}
	.news-by-category-left,
	.news-by-category-right {
		margin-left: 0;
	}
	.header__date,
	.header__money,
	.temperature {
		padding: 10px 0;
	}
	.header__money span,
	.temperature span {
		font-size: 11px;
	}
	.header__date span {
		font-size: 11px;
	}

}

@media (max-width: 1100px) {
	.popup .socnetwork a {
		width: 50px;
	}
}
.olimpic-banner {
	width: 100%;
	max-width: 450px;
	height: 310px;
	background: #f9f9f9;
	border-radius: 4px;
	padding: 15px;
	box-sizing: border-box;
}
.olimpic-header {
	padding-bottom: 5px;
	box-sizing: border-box;
	border-bottom: 1px solid rgba(0,0,0,0.2);
}
.olimpic-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	width: max-content;
}
.olimpic-logo-sport {
	background: #000;
	margin-bottom: 5px;
	border-radius: 4px;
	padding: 4px;
	text-align: center;
	display: block;
	box-sizing: border-box;
	text-decoration: none;
}
.olimpic-logo {
	margin-right: 10px;
}
.olimpic-title {
	margin: 0;
	font-family: Helvetica,Arial,sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: 12px;
	line-height: 14px;
	color: #000000;
}
.olimpic-header time {
	font-weight: normal;
	opacity: 0.7;
}
.olimpic-skore {
	width: 100%;
}
.olimpic-list {
	list-style: none;
	scrollbar-width: thin;
	margin: 0;
	padding: 0;
}
.olimpic-list li {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-family: Helvetica,Arial,sans-serif;
	font-style: normal;
	font-weight: normal;
	font-size: 12px;
	line-height: 20px;
	color: #000000;
	margin-bottom: 10px;
}
.olimpic-list-item_left {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.olimpic-list-item_right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.olimpic-list-item-img {
	margin: 0 8px;
}
.olimpic-list-item-gold {
	font-weight: bold;
}
.olimpic-list-item-gold,
.olimpic-list-item-silver,
.olimpic-list-item-bronze {
	margin-right: 11px;
}
.olimpic-list-item-gold,
.olimpic-list-item-silver,
.olimpic-list-item-bronze,
.olimpic-list-item-all {
	width: 16px;
	text-align: center;
}
.olimpic-medal-icon {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 10px 10px 0;
	box-sizing: border-box;
}
.olimpic-medal-icon_left,
.olimpic-medal-icon_right {
	width: 50%;
}
.olimpic-medal-icon_right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.olimpic-medal-icon_gold,
.olimpic-medal-icon_silver,
.olimpic-medal-icon_bronze,
.olimpic-medal-icon_all {
	border: 1px solid #F9F9F9;
	width: 10px;
	height: 10px;
	display: block;
	border-radius: 50%;
	box-sizing: content-box;
}
.olimpic-medal-icon_gold {
	background: #EABD00;
	margin-right: 15px;
}
.olimpic-medal-icon_silver {
	background: #CACACA;
	margin-right: 14px;
}
.olimpic-medal-icon_bronze {
	background: #DD681A;
	margin-right: 8px;
}
.olimpic-medal-icon_all {
	background: #DD681A;
	margin-right: 8px;
	position: relative;
	right: -12px;
}
.olimpic-medal-icon_all::after {
	content: '';
	width: 10px;
	height: 10px;
	display: block;
	border-radius: 50%;
	background: #EABD00;
	z-index: 2;
	position: absolute;
	top: -1px;
	right: 9px;
	border: 1px solid #F9F9F9;
}
.olimpic-medal-icon_all::before {
	content: '';
	width: 10px;
	height: 10px;
	display: block;
	border-radius: 50%;
	background: #CACACA;
	z-index: 1;
	position: absolute;
	top: -1px;
	right: 4px;
	border: 1px solid #F9F9F9;
}
.olimpic-list-item-rank {
	width: 12px;
	text-align: right;
}
.olimpic-btn {
	font-family: Helvetica, Arial,sans-serif;
	font-style: normal;
	font-weight: normal;
	font-size: 12px;
	line-height: 13px;
	color: #A3A3A3;
	outline: none;
	border: none;
	background: none;
	outline-color: transparent;
	border-bottom: 1px dashed rgba(55, 58, 60, 0.5);
	padding: 0 0 3px;
	margin-left: 20px;
	cursor: pointer;
	transition: border-bottom 0.3s ease;
}
.olimpic-btn:hover {
	border-bottom: 1px solid rgba(55, 58, 60, 0.8);
}
.olimpic-list {
	overflow-x: hidden;
	overflow-y: hidden;
	height: 150px;
	padding-right: 9px;
}
.olimpic-banner.active .olimpic-list {
	overflow-y: scroll;
	height: 170px;
	padding-right: 5px;
}
.olimpic-banner.active .olimpic-btn {
	display: none;
}
.olimpic-list::-webkit-scrollbar {
	width: 4px;
}
.olimpic-list::-webkit-scrollbar-track {
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	border-radius: 100px;
}
.olimpic-list::-webkit-scrollbar-thumb {
	background-color: rgba(6, 6, 6,0.5);
	border-radius: 100px;
}
.olimpic-list-item-country {
	line-height: 13px;
}
body.dark .olimpic-banner {
	background: rgb(34, 34, 34);
}
body.dark .olimpic-header {
	border-bottom: 1px solid rgba(219,219,219,0.2);
}
body.dark .olimpic-logo {
	-webkit-filter: grayscale(100%) invert(100%) contrast(200%);
	filter: grayscale(100%) invert(100%) contrast(200%);
}
body.dark .olimpic-title {
	color: rgb(219, 219, 219);
}
body.dark .olimpic-title {
	color: rgb(219, 219, 219);
}
body.dark .olimpic-list li {
	color: rgb(219, 219, 219);
}
body.dark .olimpic-btn {
	color: rgb(219, 219, 219);
	border-bottom: 1px dashed rgba(219, 219, 219, 0.5);
}
body.dark .olimpic-btn:hover {
	border-bottom: 1px solid rgba(219, 219, 219, 0.8);
}
body.dark .olimpic-list::-webkit-scrollbar-track {
	box-shadow: inset 0 0 6px rgba(210, 210, 210, 0.7);
}
body.dark .olimpic-list::-webkit-scrollbar-thumb {
	background-color: rgba(150, 150, 150,0.8);
}

        
        
        
        
        
        
        
