/*
LESS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: @icon-home-width;
}

The large array-like variables contain all information about a single icon
@icon-home: x y offset_x offset_y width height total_width total_height image_path name;

At the bottom of this section, we provide information about the spritesheet itself
@spritesheet: width height image @spritesheet-sprites;
*/
/*
The provided classes are intended to be used with the array-like variables

.icon-home {
  .sprite-width(@icon-home);
}
.icon-email {
  .sprite(@icon-email);
}

Example usage in HTML:

`display: block` sprite:
<div class="icon-home"></div>

To change `display` (e.g. `display: inline-block;`), we suggest using a common CSS class:

// CSS
.icon {
  display: inline-block;
}

// HTML
<i class="icon icon-home"></i>
*/
/*
The `.sprites` mixin generates identical output to the CSS template
  but can be overridden inside of LESS

This must be run when you have at least 2 sprites.
  If run with a single sprite, then there will be reference errors.

.sprites(@spritesheet-sprites);
*/
/* общие стили */

@font-face {
  font-family: 'FuturaPT';
  src: url('fonts/FuturaPT-Heavy.eot');
  src: local('Futura PT Heavy'), local('FuturaPT-Heavy'),
  url('fonts/FuturaPT-Heavy.eot?#iefix') format('embedded-opentype'),
  url('fonts/FuturaPT-Heavy.woff') format('woff'),
  url('fonts/FuturaPT-Heavy.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: 'FuturaPT';
  src: url('fonts/FuturaPT-Book.eot');
  src: local('Futura PT Medium'), local('FuturaPT-Medium'),
  url('fonts/FuturaPT-Book.eot?#iefix') format('embedded-opentype'),
  url('fonts/FuturaPT-Book.woff') format('woff'),
  url('fonts/FuturaPT-Book.ttf') format('truetype');
  font-display: fallback;
}

@font-face {
  font-family: 'FuturaPT';
  src: url('fonts/FuturaPT-MediumObl.eot');
  src: local('Futura PT Medium Oblique'), local('FuturaPT-MediumObl'),
  url('fonts/FuturaPT-MediumObl.eot?#iefix') format('embedded-opentype'),
  url('fonts/FuturaPT-MediumObl.woff') format('woff'),
  url('fonts/FuturaPT-MediumObl.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: fallback;
}

@font-face {
  font-family: "FiraSansCompressed";
  src: url("fonts/Firasanscompressedmedium.woff2") format("woff2");
  font-display: fallback;
}
@font-face {
  font-family: "OpenSans";
  src: url("fonts/opensans.woff2") format("woff2");
  font-weight: 400;
  font-display: fallback;
}
@font-face {
  font-family: "OpenSans";
  src: url("fonts/opensansbold.woff2") format("woff2");
  font-weight: 700;
  font-display: fallback;
}
@font-face {
  font-family: "OpenSans";
  src: url("fonts/opensanslight.woff2") format("woff2");
  font-weight: 300;
  font-display: fallback;
}
@font-face {
  font-family: "OpenSans";
  src: url("fonts/opensansitalic.woff2") format("woff2");
  font-style: italic;
  font-display: fallback;
}
body {
  font-family: "OpenSans", "Open Sans", sans-serif;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  margin-bottom: 60px;
}
.container {
  width: 990px;
  padding: 0 15px;
  margin: auto;
}
.page {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
h1,
h2,
h3,
h4 {
  font-weight: normal;
}
ul,
ol {
  margin: 0;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
button {
  cursor: pointer;
}
::-moz-selection {
  background: #0070e6;
  color: #fff;
}
::selection {
  background: #0070e6;
  color: #fff;
}
::-moz-selection {
  background: #0070e6;
}
a {
  text-decoration: none;
}
a:active,
a:focus,
a:hover {
  text-decoration: none;
}
li {
  list-style: none;
}
/* колонки */
.news-top-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.news-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.column-side {
  width: 200px;
}
.column-mid {
  width: 490px;
  height: fit-content;
}
.column-mid li {
  list-style: disc;
}
/* общие стили КОНЕЦ */
/* заголовок */
#InnerCont {
  transition: 0.1s background-position ease-in-out;
}
#InnerCont.fixed-menu {
  background-position: center top 50px !important;
}
.header {
  margin-top: 22px;
  position: relative;
  z-index: 155;
}
.header.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  margin: 0;
}
.header.fixed .header__logo {
  z-index: 199;
}
.header.fixed ~ .page {
  padding-top: 60px;
}
.header.fixed .header__inner:before {
  content: '';
  position: absolute;
  width: 100vw;
  height: 100%;
  background-color: #0070e6;
  left: 0vw;
  z-index: -1;
}
.header__inner {
  background-color: #0070e6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 50px;
  padding: 0 15px;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: 0.4s -webkit-box-shadow ease-in-out;
  transition: 0.4s -webkit-box-shadow ease-in-out;
  transition: 0.4s box-shadow ease-in-out;
  transition: 0.4s box-shadow ease-in-out, 0.4s -webkit-box-shadow ease-in-out;
}
.header__button-open {
  background-image: url(img/sprite.png);
  width: 28px;
  height: 25px;
  background-position-x: -61px;
  background-position-y: 0px;
  background-color: transparent;
  border: none;
  z-index: 199;
}
.header__logo {
  width: 172px;
  height: 32px;
  max-height: 32px;
}
.header__logo-img {
  height: 32px;
  max-height: 32px;
}

#openSidebarMenu {
  outline: none;
}
.open-SidebarMenu {
  position: fixed;
  top: 10px;
  left: 30px;
  background: url(img/close_sidebar.png);
  background-size: cover;
  border: none;
  background-repeat: no-repeat;
}

.header__inner-SidebarOpen {
  padding-left: 44px;
}

.header__inner-SidebarOpen .header__logo {
  margin: 0 auto;
}

.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  z-index: 198;
}
.header__menu.open {
  left: 0;
}
.header__link-wrapper {
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.header__link-wrapper_special {
  padding: 5px 10px;
  border: 2px solid #fff;
  position: relative;
  text-align: center;
}
.header__link-wrapper_border {
  padding: 5px 10px;
  border: 2px solid #fff;
  position: relative;
  top: -5px;
}
.header__link {
  color: #fff;
  text-transform: uppercase;
  font-size: 0.949em;
  font-family: "FiraSansCompressed";
}
.header__link:active,
.header__link:focus,
.header__link:hover {
  color: #fff;
}
.header__search {
  background-image: url(img/sprite.png);
  width: 18px;
  height: 17px;
  background-position-x: -73px;
  background-position-y: -75px;
  background-color: transparent;
  border: none;
}
.header__banner {
  overflow: hidden;
}

#header__menu-dop {
  padding:0;
  margin:0;
  list-style: none;
  position: relative;
  display: flex;
  top: 5px;
}

#header__menu-dop li {
  margin: 0px -7px 0 0;
  display:inline-block;
  margin: 0px 10px;
  width: max-content;
}

#header__menu-dop a {
  display:block;
  color:#FFF;
  text-decoration:none;
}

#header__menu-dop a:hover {
  color: #f8f8f8;
}

#header__menu-dop ul {
  display: none;
  position: absolute;
  list-style: none;
  right: -25px;
  padding-top: 15px;
}

#header__menu-dop li:hover > ul {
  display:inherit;
}

#header__menu-dop ul li {
  min-width:120px;
  float:none;
  display:list-item;
  position: relative;
  background: #3289e5;
  padding: 5px 10px;
}

#header__menu-dop li:last-child {
  margin: 0 0 0 10px;
  border-radius: 0 0 20px 20px;
}

/* заголовок КОНЕЦ */
/* прогресс чтения */
progress {
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: #a8cef6;
  color: #184f8a;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-name: progress-normal;
  animation-name: progress-normal;
}
progress.fixed {
  position: fixed;
  z-index: 150;
  top: 50px;
  -webkit-animation-name: progress;
  animation-name: progress;
}
@-webkit-keyframes progress-normal {
  0% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  80% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes progress-normal {
  0% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  80% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes progress {
  0% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes progress {
  0% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
progress::-webkit-progress-bar {
  background-color: #a8cef6;
}
progress::-webkit-progress-value {
  background-color: #184f8a;
}
progress::-moz-progress-bar {
  background-color: #a8cef6;
}
.progress-container {
  width: 100%;
  background-color: #184f8a;
  position: fixed;
  top: 0;
  left: 0;
  height: 5px;
  display: block;
}
.progress-bar {
  background-color: #184f8a;
  width: 0%;
  display: block;
  height: inherit;
}
/* прогресс чтения КОНЕЦ */
/* основной контент */
/* верхний ряд новостей */
.news-top-row {
  /*margin-top: 22px;*/
  margin-bottom: 22px;
  position: relative;
}
/* контейнер для новостей в три колонки */
.news-columns {
  /*margin-top: 30px;*/
}
/* большая новость */
.news-big, .banner-aside {
  margin-top: 22px;
}

.news-big {
  width: 700px;
  height: 400px;
  overflow: hidden;
  position: relative;
}
.news-big__picture {
  width: 100%;
  min-height: 400px;
}
.news-big__content {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  background-color: rgba(0, 112, 230, 0.6);
  padding: 10px 15px 8px;
}
.news-big__header {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 2.083em;
  font-family: "FiraSansCompressed";
}
.news-big__text {
  margin: 0;
  color: #fff;
  font-size: 1.191em;
}
.live {
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
  max-height: 145px;
}
.live:before {
  pointer-events: none;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(17, 17, 17, 0.33);
}
.live_active:after {
  pointer-events: none;
  content: '';
  position: absolute;
  top: 0;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: auto;
  background-image: url(img/sprite.png);
  width: 57px;
  height: 71px;
  background-position-x: 0px;
  background-position-y: 0px;
}
.live_disabled {
  pointer-events: none;
}
.live_top {
  left: 450px;
  top: 15px;
  width: 225px;
  height: 140px;
  position: absolute;
  border: 6px solid #fff;
}
.live_slide {
  display: inline-block;
  margin-bottom: 0;
  max-width: 268px;
}
.live__buttons {
  position: absolute;
  right: 8px;
  top: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: none;
}
.live__button {
  width: 14px;
  height: 14px;
  border: none;
  display: inline-block;
  background-color: transparent;
  padding: 0;
  margin: 0 3px;
}
.live__icon_expand {
  display: inline-block;
  background-image: url(img/sprite.png);
  width: 12px;
  height: 12px;
  background-position-x: -74px;
  background-position-y: -105px;
}
.live__icon_hide {
  display: inline-block;
  background-image: url(img/sprite.png);
  width: 12px;
  height: 2px;
  background-position-x: -93px;
  background-position-y: -60px;
}
.live__icon_close {
  display: inline-block;
  background-image: url(img/sprite.png);
  width: 13px;
  height: 12px;
  background-position-x: -57px;
  background-position-y: -105px;
  pointer-events: all;
}
.live__picture {
  min-width: 100%;
  min-height: 145px;
}
.live__plug {
  pointer-events: none;
  left: 4px;
  top: 2px;
  width: 100px;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.339em;
  font-family: "FiraSansCompressed";
  padding-left: 15px;
  position: absolute;
  display: inline-block;
}
.live__plug:before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background-color: #be1d1f;
}
.live__name {
  pointer-events: none;
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  text-align: center;
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.339em;
  font-family: "FiraSansCompressed";
}
.live__time {
  pointer-events: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.339em;
  font-family: "FiraSansCompressed";
  position: absolute;
  display: block;
  text-align: center;
  width: 100px;
  height: 50px;
  white-space: pre-line;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
/* заголовк для коротких новостей */
.news-short-header {
  margin-top: 0;
  color: #0070e6;
  text-transform: uppercase;
  font-size: 1.339em;
  font-family: "FiraSansCompressed";
}
.news-short-header_left {
  margin: 0 0 20px 0;
}
.news-short-header .news-short-header_black {
  color: black;
}
/* короткая новость */
.news-short {
  margin-bottom: 20px;
}
.news-short_important {
  font-weight: 700;
}
.news-short__time {
  color: #0070e6;
  font-size: 1.041em;
  margin-bottom: 5px;
  font-family: "FiraSansCompressed";
}
.news-short__header {
  display: inline-block;
  color: #3b3b3b;
  font-size: 0.893em;
}
.news-short__header:hover {
  color: #3b3b3b;
}
/* средняя новость */
.news-mid {
  margin-bottom: 30px;
  height: 141px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.news-mid_column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: auto;
}
.news-mid_column .news-mid__media-wrapper {
  width: 100%;
  margin-bottom: 10px;
}
.news-mid_column .news-mid__content {
  margin-left: 0;
  width: 100%;
}
.news-mid_column .news-mid__text {
  margin: 5px 0 10px;
}
.news-mid_slide {
  margin-bottom: 0;
}
.news-mid_slide .news-mid__content {
  margin-left: 10px;
}
.news-mid_slide .news-mid__text {
  display: none;
}
.news-mid__media-wrapper {
  width: 50%;
  min-width: 223px;
  overflow: hidden;
  position: relative;
}
.news-mid__media-wrapper_video:before {
  content: '';
  pointer-events: none;
  display: block;
  top: 0;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  background-image: url(img/sprite.png);
  width: 57px;
  height: 71px;
  background-position-x: 0px;
  background-position-y: 0px;
}
.news-mid__picture {
  width: 100%;
  min-height: 140px;
}
.news-mid__urgent {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.news-mid__urgent-word {
  display: inline-block;
  background-color: #9e0000;
  padding: 0 5px;
  margin: 3px 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.339em;
  font-family: "FiraSansCompressed";
}
.news-mid__partner {
  position: absolute;
  top: 5px;
  left: 5px;
  border: 2px solid #fff;
  border-radius: 3px;
  padding: 0 5px 2px;
}
.news-mid__partner_blue {
  border: 2px solid #0070e6;
}
.news-mid__partner-word {
  color: #fff;
  font-size: 0.75em;
}
.news-mid__partner-word_blue {
  color: #0070e6;
}
.news-mid__content {
  margin-left: 18px;
  width: 50%;
  /*height: 100%;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.news-mid__header {
  margin: 0;
  text-transform: uppercase;
  font-size: 1.30em;
  line-height: 1.13;
  font-family: "FiraSansCompressed";
  color: #000;
  max-height: 104px;
  /*overflow: hidden;*/
}
.news-mid__header:hover {
  color: #0070e6;
}
.news-mid__text {
  margin: 0;
  color: #3b3b3b;
  font-size: 0.893em;
  max-height: 33px;
  /*overflow: hidden;*/
}
.news-mid__info {
  color: #a0a0a0;
  text-transform: uppercase;
  font-size: 0.893em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.news-mid__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 10px;
}
.news-mid__day {
  position: relative;
  padding-right: 12px;
  margin: 0;
}
.news-mid__day:after {
  content: '|';
  position: absolute;
  right: 2px;
  bottom: 1px;
}
.news-mid__time {
  margin: 0;
}
.news-mid__comments {
  position: relative;
  padding-left: 20px;
  margin: 0;
}
.news-mid__comments:before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  background-image: url(img/sprite.png);
  width: 17px;
  height: 13px;
  background-position-x: 0px;
  background-position-y: -105px;
}
.news-small {
  margin-top: 10px;
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.news-small_slide {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 0;
}
.news-small_slide .news-small__media-wrapper {
  min-width: 50%;
  margin-right: 10px;
}
.news-small__media-wrapper {
  height: 125px;
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
}
.news-small__picture {
  width: 100%;
  min-height: 125px;
}
.news-small__info {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
  font-size: 1.339em;
  line-height: 1.13;
  font-family: "FiraSansCompressed";
  color: #fff;
  background-color: rgba(0, 0, 0, 0.3);
}
.news-small__views {
  position: relative;
  padding-left: 22px;
  margin-right: 15px;
  margin-bottom: 0;
}
.news-small__views:before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  background-image: url(img/sprite.png);
  width: 18px;
  height: 12px;
  background-position-x: -61px;
  background-position-y: -59px;
}
.news-small__comments {
  position: relative;
  padding-left: 22px;
  margin-bottom: 0;
}
.news-small__comments:before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  background-image: url(img/sprite.png);
  width: 17px;
  height: 13px;
  background-position-x: 0px;
  background-position-y: -105px;
  -webkit-filter: brightness(2);
  filter: brightness(2);
}
.news-small__header {
  display: inline-block;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-size: 1.339em;
  line-height: 1.13;
  font-family: "FiraSansCompressed";
  color: #000;
}
.news-small__header:hover {
  color: #0070e6;
}
.news-small__text {
  margin: 0;
  color: #3b3b3b;
  font-size: 0.893em;
}
.interview {
  margin-top: 10px;
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.interview_slide {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-top: 0;
  margin-bottom: 0;
}
.interview_slide .interview__media-wrapper {
  min-width: 50%;
  height: 100%;
}
.interview_slide .interview__text {
  width: 50%;
  padding-left: 10px;
}
.interview_slide .interview__header {
  padding-left: 10px;
  text-transform: inherit;
}
.interview__media-wrapper {
  height: 125px;
  overflow: hidden;
  position: relative;
}
.interview__picture {
  width: 100%;
  min-height: 125px;
}
.interview__text {
  margin: 5px 0;
  padding-left: 25px;
  font-style: italic;
  font-size: 0.893em;
  color: #0070e6;
}
.interview__header {
  padding-left: 25px;
  display: inline-block;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-size: 1.339em;
  line-height: 1.13;
  font-family: "FiraSansCompressed";
  color: #000;
}
.interview__header:hover {
  color: #0070e6;
}
.divider {
  margin-top: 30px;
  margin-bottom: 10px;
  background-color: #0070e6;
  height: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.divider_margin-top-0 {
  margin-top: 0;
}
.divider_bottom-space {
  margin-bottom: 20px;
}
.divider__icon {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-right: 8px;
  -webkit-transition: .2s all ease;
  transition: .2s all ease;
  background-size: cover;
  background-repeat: no-repeat;
}
.divider__icon_vk {
  background-image: url(img/vk.png);
}
.divider__icon_insta {
  background-image: url(img/insta.png);
}
.divider__icon_telegram {
  background-image: url(img/telegram.png);
  padding: 0;
}
.divider__icon:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.divider__text {
  margin: 0 8px;
  padding-top: 2px;
  color: #fff;
  text-transform: uppercase;
  font-size: 1em;
  line-height: .95;
  font-family: "FiraSansCompressed";
}
/* основной контент КОНЕЦ */
/* статья */
article, .news-short__header, .comment__text {
  line-height: 1.59;
}
.article__name {
  text-transform: uppercase;
  font-size: 1.786em;
  line-height: 1.13;
  font-family: "FiraSansCompressed";
  margin-top: 0;
  margin-bottom: 10px;
  white-space: pre-line;
}
.article__lead {
  margin: 10px 0 16px;
  font-size: 1.339em;
  font-weight: 300;
}
.article__line {
  margin: 15px 0 25px;
}
.article__header {
  text-align: center;
  text-transform: uppercase;
  font-family: "FiraSansCompressed";
  font-size: 0.893em;
  margin: 10px 0 5px;
}
article.article .Cens {
  position: absolute;
  left: 7px;
  top: 7px;
  color: #FFF;
  padding: 2px 4px;
  line-height: 14px;
  background: rgba(0, 0, 0, 0.7);
  z-index: 30;
}
article.article .Cens img {
  width: 16px;
  height: 16px;
  border: none;
  position: relative;
  z-index: 2;
}
.article__text {
  font-size: 0.893em;
  font-weight: 300;
}
.article__link {
  font-size: 0.893em;
  font-weight: 300;
  color: #0070e6;
}
.article-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 95px;
}
.article-top__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 460px;
}
.article-top-photo {
  position: relative;
  margin-bottom: 10px;
}
.article-top-photo__picture-wrapper {
  width: 100%;
  max-height: 275px;
  overflow: hidden;
}
.article-top-photo__picture {
  width: 100%;
  min-height: 275px;
  max-width: 460px;
}
.article-top-photo__text {
  min-height: 27px;
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  background-color: rgba(0, 112, 230, 0.6);
  font-size: 0.893em;
  line-height: 1;
  padding: 5px 10px 5px 28px;
}
.article-top-photo__text:before {
  content: '';
  position: absolute;
  display: block;
  left: 5px;
  background-image: url(img/sprite.png);
  width: 17px;
  height: 16px;
  background-position-x: -95px;
  background-position-y: -75px;
}
.article-author {
  position: relative;
  min-width: 150px;
  padding-top: 60px;
  padding-bottom: 5px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.article-author__wrapper {
  position: absolute;
  left: 0;
  right: 0;
  top: -50px;
  height: 104px;
  width: 104px;
  margin: auto;
  border: 4px solid #fff;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}
.article-author__author {
  font-size: 1.339em;
  text-transform: uppercase;
  font-family: "FiraSansCompressed";
}
.article-author__prof {
  font-size: 0.893em;
  color: #717171;
}
/* информация о статье */
.article-info {
  color: #a0a0a0;
  text-transform: uppercase;
  font-size: 0.893em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.article-info__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 10px;
}
.article-info__views {
  position: relative;
  padding-left: 20px;
  margin-bottom: 0;
}
.article-info__views:before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  background-image: url(img/sprite.png);
  width: 18px;
  height: 12px;
  background-position-x: -61px;
  background-position-y: -59px;
  -webkit-filter: brightness(0.72);
  filter: brightness(0.72);
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
}
.article-info__comments {
  position: relative;
  padding-left: 20px;
  margin: 0 12px;
}
.article-info__comments:before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  background-image: url(img/sprite.png);
  width: 17px;
  height: 13px;
  background-position-x: 0px;
  background-position-y: -105px;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
/* фото из статьи */
.article-photo {
  width: 100%;
}
.article-photo__picture-wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
  text-align: center;
}
.article-photo__picture {
  width: 100%;
  min-height: 275px;
}
.article-photo__text {
  color: #717171;
  font-size: 0.744em;
  font-weight: 300;
}
.article-photo__quote {
  font-size: 0.893em;
  margin: 18px 45px;
  position: relative;
}
.article-photo__quote:before {
  content: '';
  position: absolute;
  left: 0;
  top: -5px;
  width: 52px;
  height: 2px;
  background-color: #0070e6;
}
/*слайдер*/
.slider {
  position: relative;
  margin: 20px 0;
}
.slider_mobile {
  margin: 50px 0;
  border: 5px solid #0070e6;
  padding: 15px 20px 10px;
}
.slider_mobile .owl-prev {
  width: auto;
  height: 100%;
}
.slider_mobile .owl-prev:before {
  left: 0;
  width: 40px;
  height: 40px;
  padding: 9px 0;
  -webkit-transform: translateX(-15px);
  transform: translateX(-15px);
  border-radius: 50px;
}
.slider_mobile .owl-next {
  width: auto;
  height: 100%;
}
.slider_mobile .owl-next:before {
  right: 0;
  width: 40px;
  height: 40px;
  padding: 9px 15px;
  -webkit-transform: translateX(15px);
  transform: translateX(15px);
  border-radius: 50px;
}
.owl-nav {
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.owl-prev {
  pointer-events: all;
  position: absolute;
  height: 275px;
  width: 30%;
}
.owl-prev:before {
  content: '\003C';
  position: absolute;
  text-align: center;
  color: #fff;
  font-size: 24px;
  background-color: rgba(0, 112, 230, 0.6);
  top: 0;
  bottom: 0;
  left: 5px;
  margin: auto;
  display: block;
  width: 22px;
  height: 22px;
  line-height: 22px;
}
.owl-next {
  pointer-events: all;
  position: absolute;
  right: 0;
  height: 275px;
  width: 30%;
}
.owl-next:before {
  content: '\003E';
  position: absolute;
  text-align: center;
  color: #fff;
  font-size: 24px;
  background-color: rgba(0, 112, 230, 0.6);
  top: 0;
  bottom: 0;
  left: auto;
  right: 5px;
  margin: auto;
  display: block;
  width: 22px;
  height: 22px;
  line-height: 22px;
}
.owl-dots {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 280px;
}
.owl-dot {
  background-color: #0070e6;
  border-radius: 50%;
  margin: 0 5px;
  width: 8px;
  height: 8px;
  background-color: #a0a0a0;
}
.owl-dot.active {
  background-color: #626262;
}
/* слайд */
.slide_news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.slide_news .live_slide {
  width: 70%;
}
.slide__picture-wrapper {
  width: 100%;
  height: 275px;
  overflow: hidden;
}
.slide__picture {
  width: 100%;
  min-height: 275px;
}
.slide__text {
  color: #717171;
  font-size: 0.744em;
  font-weight: 300;
}
.slide__header {
  text-transform: uppercase;
  font-family: "FiraSansCompressed";
  font-size: 1.339em;
  font-weight: 300;
  color: #0070e6;
  margin-bottom: 5px;
}
.slide__header_live {
  display: inline-block;
  vertical-align: top;
  width: 30%;
}
.article-list {
  font-size: 0.893em;
  font-weight: 300;
  margin: 0 45px;
}
.article-list__item {
  list-style: disc;
}
.article-video {
  width: 100%;
  margin: 30px 0;
  position: relative;
  overflow: hidden;
}
.article-video:after {
  pointer-events: none;
  content: '';
  position: absolute;
  top: 0;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: auto;
  background-image: url(img/sprite.png);
  width: 57px;
  height: 71px;
  background-position-x: 0px;
  background-position-y: 0px;
}
.article-video:before {
  pointer-events: none;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(17, 17, 17, 0.33);
}
.article-video__picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
/* голосование */
.vote {
  margin-top: 30px;
  text-align: center;
}
.vote__header {
  display: inline-block;
  text-transform: uppercase;
  font-family: "FiraSansCompressed";
  font-size: 0.893em;
  margin: 10px 0;
  position: relative;
}
.vote__header:before {
  content: '';
  position: absolute;
  left: 0;
  top: -10px;
  width: 52px;
  height: 2px;
  background-color: #0070e6;
}
.vote__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.vote__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 100px;
}
.vote__block_example input {
  width: 50px;
}
.vote__circle {
  position: relative;
  width: 45px;
  height: 45px;
  margin-bottom: 10px;
}
.vote__value {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "FiraSansCompressed";
  font-size: 0.893em;
  width: 45px;
  height: 45px;
  line-height: 45px;
}
.vote__value:after {
  content: '%';
}
.vote__text {
  font-size: 0.893em;
}
.vote__text:first-of-type {
  font-weight: bold;
}
/* круг с голосованием */
.vote-progress {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.vote-progress__meter,
.vote-progress__value {
  fill: none;
}
.vote-progress__meter {
  stroke: #99c9fb;
}
.vote-progress__value {
  stroke: #0070e6;
  stroke-linecap: round;
}
/* блок с отзывом */
.review {
  background-color: #edeef2;
  position: relative;
  padding-top: 80px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 30px;
  margin-top: 100px;
  margin-bottom: 10px;
  text-align: center;
}
.review__photo-wrapper {
  position: absolute;
  top: -67.5px;
  border-radius: 50%;
  overflow: hidden;
  width: 135px;
  height: 135px;
  left: 0;
  right: 0;
  margin: auto;
}
.review__photo {
  width: 100%;
  min-height: 135px;
}
.review__user {
  text-transform: uppercase;
  font-family: "FiraSansCompressed";
  font-size: 0.893em;
}
.review__prof {
  font-size: 0.893em;
  color: #717171;
  margin-bottom: 15px;
}
.review__text {
  font-size: 0.893em;
  color: #717171;
  white-space: pre-line;
}
/* блок с вопросами */
.questions__header {
  text-transform: uppercase;
  font-family: "FiraSansCompressed";
  font-size: 0.893em;
  margin: 10px 0;
}
.questions__text {
  font-size: 0.893em;
  font-weight: 300;
}
/* контакты */
.contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 30px 0;
}
.contacts__inner {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  width: 100%;
}
.contacts__block {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.contacts__icon {
  background-image: url(img/sprite.png);
  margin-bottom: 5px;
}
.contacts__icon_phone {
  width: 26px;
  height: 26px;
  background-position-x: -61px;
  background-position-y: -29px;
}
.contacts__icon_map {
  width: 17px;
  height: 26px;
  background-position-x: -29px;
  background-position-y: -75px;
}
.contacts__icon_internet {
  width: 26px;
  height: 26px;
  background-position-x: -93px;
  background-position-y: 0px;
}
.contacts__text {
  color: #717171;
  font-size: 0.893em;
  font-weight: 300;
}
/* поделиться */
.share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin-top: 50px;
}
.share:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  margin: auto;
  width: 52px;
  height: 2px;
  background-color: #0070e6;
}
.share__block {
  min-width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.share__icon {
  background-image: url(img/sprite.png);
}
.share__icon_ok {
  width: 25px;
  height: 26px;
  background-position-x: -93px;
  background-position-y: -30px;
}
.share__icon_vk {
  width: 25px;
  height: 26px;
  background-position-x: 0px;
  background-position-y: -75px;
}
.share__text {
  display: inline-block;
  margin: 0 5px;
  color: #717171;
  font-size: 0.893em;
  font-weight: 300;
}
/* рекомендуемые */
.recommend {
  margin-top: 30px;
}
.recommend__header {
  margin: 10px 0;
  text-align: center;
  font-size: 1.339em;
  text-transform: uppercase;
  font-family: "FiraSansCompressed";
}
.recommend__link {
  color: #000;
}
.recommend__line {
  margin: 15px 0;
}
/* комментарии */
.comments {
  margin: 30px 0;
  display: block;
}
.comments__header {
  margin: 10px 0;
  text-align: center;
  font-size: 1.339em;
  text-transform: uppercase;
  font-family: "FiraSansCompressed";
}
.comment {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  position: relative;
}
.comment_best {
  background-color: #d9eafd;
}
.comment__ava-wrapper {
  margin-right: 10px;
  width: 58px;
  min-width: 58px;
  height: 58px;
  overflow: hidden;
}
.comment__ava {
  width: 100%;
  min-height: 58px;
}
.comment__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 8px;
}
.comment__username {
  font-size: 0.893em;
  color: #0070e6;
}
.comment__info-wrapper {
  font-size: 0.893em;
  color: #717171;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.comment__like {
  margin: 0 10px;
}
.comment__like:before {
  content: '';
  display: inline-block;
  margin-right: 5px;
  background-image: url(img/sprite.png);
  width: 14px;
  height: 13px;
  background-position-x: -21px;
  background-position-y: -105px;
}
.comment__dislike {
  margin: 0 10px;
}
.comment__dislike:before {
  content: '';
  display: inline-block;
  margin-right: 5px;
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  background-image: url(img/sprite.png);
  width: 14px;
  height: 13px;
  background-position-x: -39px;
  background-position-y: -105px;
}
.comment__date {
  margin: 0 10px;
}
.comment__time {
  margin: 0 5px;
}
.comment__text {
  font-size: 0.893em;
  color: #717171;  
}
.comment__main {
  width: 100%;
}
.quote-container {
  font-size: 11px;
  line-height: 13px;
  padding: 6px;
  background: #f0f0f0;
  display: block;
  color: #777;
  margin: 5px 0 10px 0;
  border-radius: 2px;
  border: 1px dashed #CCC;
  background: rgba(0, 0, 0, 0.01);
}
.quote-container .quote-overview.short {
  max-height: 55px;
  overflow: hidden;
}
.ToggleShow {
  display: none;
}
.ToggleShow a {
  font-size: 11px;
  font-style: normal;
  text-decoration: underline;
}
/* добавить комментарий */
.add-comment {
  margin-bottom: 30px;
}
.add-comment__header {
  margin: 0 0 10px;
  text-align: center;
  font-size: 1.339em;
  text-transform: uppercase;
  font-family: "FiraSansCompressed";
}
.add-comment__text {
  font-size: 0.893em;
}
.add-comment__text_blue {
  color: #0070e6;
}
.add-comment__input {
  min-width: 220px;
  max-width: 312px;
  padding: 5px 10px;
  border: 1px solid #0070e6;
  border-radius: 5px;
  outline: none;
  font-size: 0.893em;
  font-family: "OpenSans";
}
.add-comment__link {
  display: inline-block;
  font-size: 0.893em;
  color: #0070e6;
  width: 100%;
  margin-bottom: 10px;
}
.add-comment__textarea {
  font-family: "OpenSans";
  width: 100%;
  padding: 5px 10px;
  margin: 10px 0;
  border: 1px solid #0070e6;
  border-radius: 5px;
  min-height: 100px;
  resize: vertical;
  font-size: 0.893em;
  outline: none;
}
.add-comment__submit {
  font-size: 0.893em;
  color: #fff;
  background-color: #0070e6;
  padding: 5px 10px;
  border: 1px solid #0070e6;
  border-radius: 5px;
  outline: none;
  -webkit-transition: .2s all ease;
  transition: .2s all ease;
}
.add-comment__submit:active {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}
/* подсказка для текстового поля */
.add-comment__textarea::-webkit-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-family: "OpenSans", "Open Sans";
  font-size: 12.5px;
  opacity: 1;
  /* Firefox */
}
.add-comment__textarea:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-family: "OpenSans", "Open Sans";
  font-size: 12.5px;
  opacity: 1;
  /* Firefox */
}
.add-comment__textarea::-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-family: "OpenSans", "Open Sans";
  font-size: 12.5px;
  opacity: 1;
  /* Firefox */
}
.add-comment__textarea::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-family: "OpenSans", "Open Sans";
  font-size: 12.5px;
  opacity: 1;
  /* Firefox */
}
.add-comment__textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-family: "OpenSans", "Open Sans";
  font-size: 12.5px;
}
.add-comment__textarea::-ms-input-placeholder {
  /* Microsoft Edge */
  font-family: "OpenSans", "Open Sans";
  font-size: 12.5px;
}
/* ошибка если статьи нет */
.article-error {
  text-align: center;
}
.article-error__text {
  font-size: 0.893em;
  color: #0070e6;
}
.text-header {
  text-align: center;
  text-transform: uppercase;
  font-family: "FiraSansCompressed";
  font-size: 1.339em;
}
.text-header_blue {
  color: #0070e6;
}
.text-link {
  display: inline-block;
  font-size: 0.893em;
  color: #0070e6;
  margin-bottom: 10px;
}
/* статья КОНЕЦ */
/* баннеры */
.banner-mid {
  margin-top: 44px;
  margin-bottom: 42px;
  height: 120px;
  width: 490px;
}
.banner-mid__picture {
  width: 100%;
  min-height: 120px;
}
.banner-aside {
  width: 240px;
  height: 400px;
}
.banner-aside__picture {
  width: 100%;
  min-height: 400px;
}
.banner-toggleable {
  width: 200px;
  /*margin-top: 45px;*/
  border: 4px solid #0070e6;
  position: relative;
  padding-bottom: 50px;
  height: 500px;
  overflow: hidden;
}
.banner-toggleable.height-full {
  height: auto !important;
}
.banner-toggleable.height-full .banner-toggleable__button {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.banner-toggleable__picture-wrapper {
  margin: 15px 15px 0;
  border-radius: 8px;
  overflow: hidden;
}
.banner-toggleable__picture {
  width: 100%;
}
.banner-toggleable__header {
  margin: 5px 15px 10px;
  text-transform: uppercase;
  font-size: 1.339em;
  font-family: "FiraSansCompressed";
}
.banner-toggleable__text {
  color: #a0a0a0;
  font-size: 1.532em;
  text-transform: uppercase;
  line-height: .9;
  display: block;
  white-space: nowrap;
}
.banner-toggleable__text_stroke1 {
  -webkit-transform: scaleX(0.53) translateX(-78px);
  transform: scaleX(0.53) translateX(-78px);
}
.banner-toggleable__text_stroke2 {
  -webkit-transform: scaleX(0.38) translateX(-149px);
  transform: scaleX(0.38) translateX(-149px);
}
.banner-toggleable__text-small {
  display: block;
  margin: 10px 15px;
  line-height: 1;
  word-wrap: break-word;
  color: #a0a0a0;
  font-size: 0.744em;
}
.banner-toggleable__button {
  margin: auto;
  border: none;
  background-color: transparent;
  background-image: url(img/sprite.png);
  width: 19px;
  height: 19px;
  background-position-x: -50px;
  background-position-y: -75px;
}
.banner-toggleable__button-wrapper {
  background-color: #fff;
  width: 100%;
  height: 50px;
  bottom: 0;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.banner-bottom {
  position: fixed;
  z-index: 150;
  left: 0;
  right: 0;
  top: auto;
  bottom: 0;
  margin: auto;
  width: 990px;
  height: auto;
}
.banner-bottom__close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0;
  top: -32px;
  background-color: transparent;
  border: 1px solid #bbb;
  border-radius: 50%;
  outline: none;
}
.banner-bottom__close:before {
  content: '';
  position: absolute;
  width: 19px;
  left: 5px;
  height: 1px;
  background-color: #bbb;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.banner-bottom__close:after {
  content: '';
  position: absolute;
  width: 19px;
  left: 5px;
  height: 1px;
  background-color: #bbb;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.banner-bottom__picture {
  width: 100%;
}
/* баннеры КОНЕЦ */
/* подвал */
.footer__inner {
  background-color: #0070e6;
}
.footer__sites {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.footer__sites-header {
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  margin: 20px 0;
  font-size: 1.339em;
  font-family: "FiraSansCompressed";
  width: 100%;
}
.footer__sites-link {
  color: #fff;
  display: inline-block;
  text-transform: uppercase;
  margin: 20px 0 10px;
  font-size: 1.339em;
  font-family: "FiraSansCompressed";
}
.footer__sites-block {
  margin-bottom: 0;
  padding-left: 0;
}
.footer__site {
  color: #fff;
  font-size: 0.893em;
}
.footer__site:active,
.footer__site:focus,
.footer__site:hover {
  color: #fff;
}
.footer__line {
  margin: 20px;
  border-top: 2px solid #99c6f5;
}
.footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.footer__link-wrapper {
  margin: 0 20px;
}
.footer__link {
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25em;
  font-family: "FiraSansCompressed";
}
.footer__link:active,
.footer__link:focus,
.footer__link:hover {
  color: #fff;
}
.footer__copyrights {
  color: #fff;
  font-size: 0.893em;
  text-align: center;
  white-space: pre-line;
}
.footer__plugins {
  margin-top: 20px;
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.footer__plugin {
  margin: 0 3px;
}
/* подвал конец */
/* Social lines in article */

.social-line-item {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;
  color: #000;
}

.social-line-item:hover {
  color: #0070e6;
}

.social-line-item img {
  width: 36px;
}

.social-line-item span {
  font-size: 18px;
  font-weight: bold;
  margin-left: 20px;
}

/*
  prostandart
  */

  /* Show more news button */
  #ShowMoreInd {
    overflow: hidden;
    margin: 15px 0;
    text-align: center;
  }

  #ShowMoreInd a {
    display: inline-block;
    font-size: 16px;
    text-decoration: none;
    /*background: #2a5b85;*/
    background: #0070e6;
    color: #FFF;
    border-radius: 7px;
    padding: 5px 17px;
  }

  /* pager */
  .pager {
    text-align: center;
    padding-top: 10px;
    font-family: PT Serif;
    font-size: 15px;
  }

  .pager a, .pager span {
    margin: 0 1px;
    color: #000;
  }

  .pager a {
    background: #eee;
    display: inline-block;
    padding: 3px 5px;
    border-radius: 3px;
    text-decoration: none;
    text-align: center;
    min-width: 15px;
  }

  .pager a.active, .pager a:hover {
    background: #4887b7;
    color: #fff;
  }

  /* news list item */
  .NewsLentaList {
    overflow: hidden;
    padding-bottom: 15px;
    border-bottom: 1px dashed #CCC;
  }

  .NewsLentaList H2 {
    color: #000;
    font-size: 18px;
    line-height: 25px;
    margin: 0;
    font-weight: normal;
  }

  .NewsLentaList .Info {
    line-height: 16px;
    font-size: 10px;
    overflow: hidden;
  }

  .NewsLentaList .Info .Other {
    float: left;
    padding-top: 1px;
  }

  .NewsLentaList .Info .Other, .NewsLentaList .Info .Other a {
    color: #777;
  }

  .CommentBox {
    width: 23px;
    height: 16px;
    padding-left: 4px;
    line-height: 16px;
    background: url(commentbox.png);
    text-align: center;
    font-size: 9px;
  }

  .CommentBox, .CommentBox a {
    color: #FFF;
    text-decoration: underline;
  }

  .NewsLentaList .Info .CommentBox {
    float: right;
  }

  /* Comments */
  .CommentEdit, .CommentDelete {
    float: right;
  }

  .CommentEdit img, .CommentDelete img {
    display: none;
  }

  .Smiles {
    float: left;
    margin-left: 3px 0 3px 8px;
    width: 25px;
    height: 25px;
    position: relative;
  }

  .Smiles .toggle {
    margin-right: 8px;
  }

  .SmilesGroup {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 470px;
    padding: 3px;
    border-radius: 2px;
    border: 1px solid #999;
    background: #fff;
    display: none;
  }

  .Smile {
    background-image: url('smiles.jpg');
    background-repeat: no-repeat;
    display: inline-block;
    width: 20px;
    height: 20px;
    font-size: 0;
    line-height: 0;
    vertical-align: middle;
  }

  a.Smile {
    float: left;
    width: 24px;
    height: 24px;
    border-radius: 2px;
    border: 1px solid #fff;
  }

  a.Smile:hover {
    border-color: #999;
  }

  a.Smile1 {
    background-position: -2px -2px;
  }

  span.Smile1 {
    background-position: -4px -4px;
  }

  a.Smile2 {
    background-position: -2px -25px;
  }

  span.Smile2 {
    background-position: -4px -27px;
  }

  a.Smile3 {
    background-position: -2px -48px;
  }

  span.Smile3 {
    background-position: -4px -50px;
  }

  a.Smile4 {
    background-position: -2px -71px;
  }

  span.Smile4 {
    background-position: -4px -73px;
  }

  a.Smile5 {
    background-position: -83px -2px;
  }

  span.Smile5 {
    background-position: -85px -4px;
  }

  a.Smile6 {
    background-position: -83px -94px;
  }

  span.Smile6 {
    background-position: -85px -96px;
  }

  a.Smile7 {
    background-position: -162px -25px;
  }

  span.Smile7 {
    background-position: -164px -27px;
  }

  a.Smile8 {
    background-position: -162px -94px;
  }

  span.Smile8 {
    background-position: -164px -96px;
  }

  a.Smile9 {
    background-position: -162px -163px;
  }

  span.Smile9 {
    background-position: -164px -165px;
  }

  a.Smile10 {
    background-position: -240px -2px;
  }

  span.Smile10 {
    background-position: -242px -4px;
  }

  a.Smile11 {
    background-position: -240px -118px;
  }

  span.Smile11 {
    background-position: -242px -120px;
  }

  a.Smile12 {
    background-position: -240px -141px;
  }

  span.Smile12 {
    background-position: -242px -143px;
  }

  a.Smile13 {
    background-position: -240px -186px;
  }

  span.Smile13 {
    background-position: -242px -188px;
  }

  a.Smile14 {
    background-position: -317px -25px;
  }

  span.Smile14 {
    background-position: -319px -27px;
  }

  a.Smile15 {
    background-position: -396px -48px;
  }

  span.Smile15 {
    background-position: -398px -50px;
  }

  a.Smile16 {
    background-position: -396px -117px;
  }

  span.Smile16 {
    background-position: -398px -119px;
  }

  .qq-upload-button {
    width: 100%;
    height: 26px !important;
    line-height: 26px !important;
    font-size: 11px;
    border-radius: 3px !important;
  }

  /* Кнопка редактировать */

  #AdminEditItem {
    margin: 10px 0;
  }

  #AdminEditItem a, #AdminEditItem a:visited, #AdminEditItem a:active {
    padding: 7px 15px;
    font: 15px/20px PT Serif;
    color: #FFF;
    border-radius: 3px;
    background: rgba(255, 0, 0, 0.9);
  }

  #AdminEditItem a:hover {
    padding: 7px 15px;
    color: #000 !important;
    font: 15px/20px PT Serif;
    color: #FFF;
    border-radius: 3px;
    background: rgba(0, 100, 0, 0.9);
  }

  /* Pretty Photo Gallery */

  div.prettyPhotoOverlay {
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9500;
    width: 100%;
  }

  div.pictureHolder {
    position: absolute;
    z-index: 10000;
    width: 100px;
  }

  div.pictureHolder .top {
    position: relative;
    height: 20px;
  }

  * html div.pictureHolder .top {
    padding: 0 20px;
  }

  div.pictureHolder .top .left {
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
  }

  div.pictureHolder .top .middle {
    position: absolute;
    left: 20px;
    right: 20px;
    height: 20px;
  }

  * html div.pictureHolder .top .middle {
    position: static;
  }

  div.pictureHolder .top .right {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    width: 20px;
    height: 20px;
  }

  div.pictureHolder .content {
    position: relative;
    text-align: left;
    width: 100%;
    height: 40px;
  }

  div.pictureHolder .content .details {
    display: none;
    margin: 10px 15px 0 20px;
  }

  div.pictureHolder .content .details p {
    float: left;
    clear: left;
    margin: 0;
  }

  div.pictureHolder .content div.hoverContainer {
    position: absolute;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
  }

  div.pictureHolder .content a.next {
    position: relative;
    z-index: 2000;
    display: block;
    float: right;
    text-indent: -10000px;
    width: 49%;
    height: 100%;
    background: url(btnNext0.gif) 10000px 50% no-repeat;
  }

  div.pictureHolder .content a.previous {
    cursor: pointer;
    display: block;
    text-indent: -10000px;
    width: 49%;
    height: 100%;
    background: url(btnNext0.gif) 10000px 50% no-repeat;
  }

  div.pictureHolder .content a.expand, div.pictureHolder .content a.contract {
    position: absolute;
    z-index: 20000;
    top: 10px;
    right: 30px;
    cursor: pointer;
    display: none;
    text-indent: -10000px;
    width: 20px;
    height: 20px;
  }

  div.pictureHolder .content a.close {
    float: right;
    display: block;
    text-indent: -10000px;
  }

  div.pictureHolder .bottom {
    position: relative;
    height: 20px;
  }

  * html div.pictureHolder .bottom {
    padding: 0 20px;
  }

  div.pictureHolder .bottom .left {
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
  }

  div.pictureHolder .bottom .middle {
    position: absolute;
    left: 20px;
    right: 20px;
    height: 20px;
  }

  * html div.pictureHolder .bottom .middle {
    position: static;
  }

  div.pictureHolder .bottom .right {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    width: 20px;
    height: 20px;
  }

  div.pictureHolder .loaderIcon {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -12px 0 0 -12px;
    width: 32px;
    height: 32px;
  }

  div.pictureHolder #fullResImageContainer {
    width: 100%;
    text-align: center;
  }

  div.prettyPhotoTitle {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    color: #fff;
    font-size: 12px;
    font-family: Tahoma;
  }

  div.prettyPhotoTitle div.prettyPhotoTitleLeft, div.prettyPhotoTitle div.prettyPhotoTitleRight {
    float: left;
    width: 10px;
    height: 23px;
    overflow: hidden;
  }

  div.prettyPhotoTitle div.prettyPhotoTitleContent {
    float: left;
    line-height: 23px;
  }

  /* Баннеры */

  @media screen and (max-width: 1024px) {
    #LeftCont, #RightCont, .actionBanner2, .actionBanner1 {
      display: none !important;
    }
  }

  @media screen and (max-width: 1200px) {
    #LeftCont, #RightCont {
      background-size: auto 100%;
    }
  }
  @media screen and (min-width: 1201px) and (max-width: 1300px) {
    #LeftCont, #RightCont {
      background-size: 400px auto;
    }
  }
  @media screen and (min-width: 1650px) {
    #LeftCont, #RightCont {
      background-size: 600px auto;
    }
  }

  .banner {
    display: none;
    overflow: hidden;
    z-index: 1;
    max-height:375px;
    margin-bottom: 20px;
  }

  .banner .closeban {
    display: none !important;
  }

  .banner > iframe {
    min-height: 300px;
  }

  .banner2 {
    display: none;
    overflow: hidden;
    max-width: 100%;
    width: 490px !important;
    height: 120px !important;
    margin-bottom: 45px;
  }

  .banner3 {
    display: none;
    overflow: hidden;
    width: 200px !important;
    height: 333px !important;
    overflow: hidden;
    margin: 0 auto 20px auto;
  }

  .banner-aside .banner3 {
    width: 240px !important;
    height: 400px !important;
  }

  .banner.banner-right {
    margin-left: -30px;
    max-height: 400px;
    margin-bottom: 20px;
  }

  .banner4 {
    display: none;
    overflow: hidden;
    width: 200px !important;
    height: 200px !important;
    overflow: hidden;
    margin: 0 auto 30px auto;
  }

  .banner5 {
    display: none;
    overflow: hidden;
    width: 490px !important;
    height: 60px !important;
    overflow: hidden;
    margin-left: 5px;
    margin-bottom: 30px;
  }

  #Banner-2-1 {
    margin: 0 auto;
    min-height: 190px
  }

  #Banner-3-1{
    display: block,
    background:rgba(255,255,255,0.9);
  }

  #Banner-35-1 {
    display: block;
    margin-bottom: 0;
    min-height: 300px;
  }

  .richBanner {
    position: absolute;
    z-index: 300;
    top: 0;
    left: 0;
    overflow: hidden;
    height: 40px;
    display: none;
    border-bottom: 1px solid #CCC;
  }

  .actionBanner1 {
    position: fixed !important;
    display: none;
    bottom: 115px;
    left: 50%;
    z-index: 1000 !important;
    margin: 0 0 0 -645px !important;
    border: none;
  }

  .actionBanner1 img {
    height: 233px !important;
    width: 140px !important;
    border: none;
  }

  .actionBanner1 .closeban {
    position: fixed !important;
    bottom: 90px;
    left: 50%;
    z-index: 1000 !important;
    margin: 0 0 0 -645px !important;
    padding: 3px 5px;
    color: red;
    font-size: 10px;
    border-radius: 3px;
    background: #FFF;
    cursor: pointer;
  }

  .actionBanner2 {
    position: fixed !important;
    display: none;
    bottom: 115px;
    right: 5px;
    z-index: 1000 !important;
    margin: 0 !important;
    border: none;
  }

  .actionBanner2 img {
    height: 233px !important;
    width: 140px !important;
    border: none;
  }

  .actionBanner2 .closeban {
    position: fixed !important;
    bottom: 90px;
    right: 5px;
    z-index: 1000 !important;
    padding: 3px 5px;
    color: red;
    font-size: 10px;
    border-radius: 3px;
    background: #FFF;
    cursor: pointer;
  }

  .bannerdown {
    position: fixed !important;
    display: none;
    text-align: center;
    bottom: 0px;
    left: 0px;
    z-index: 1000 !important;
    margin: 0 !important;
    border: none;
  }

  .bannerdown img {
    height: 60px !important;
    width: auto !important;
    border: none;
  }

  .bannerdown .closeban {
    position: absolute !important;
    bottom: 63px;
    left: 50%;
    z-index: 1000 !important;
    padding: 3px 5px;
    color: red;
    font-family: 'NeoSans';
    margin-left: 426px;
    font-size: 11px;
    border-radius: 3px;
    background: #FFF;
    cursor: pointer;
  }

  #LeftCont {
    width: 0px;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0px;
    cursor: pointer;
    z-index: 10;
    background-position: top right;
    background-repeat: no-repeat;
  }

  #LeftCont::after {
    content: '';
    display: block;
    position: absolute;
    height: 100%;
    width: 100vw;
    right: 0px;
    box-shadow: inset 0 0 10px 0.5px;
  }

  #RightCont {
    width: 0px;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0px;
    cursor: pointer;
    z-index: 10;
    background-position: top left;
    background-repeat: no-repeat;
  }

  #RightCont::before {
    content: '';
    display: block;
    position: absolute;
    height: 100%;
    width: 100vw;
    left: 1px;
    box-shadow: inset 0 0 10px 0.5px;
  }

  #ProPodlogka {
    width: 0px;
    height: 826px;
    display: none;
    position: absolute;
    right: 0;
    top: 1300px;
    cursor: pointer;
    z-index: 1;
  }

  .banner .closeban, .banner2 .closeban, .banner3 .closeban, .banner4 .closeban, .banner5 .closeban, #ProPodlogka .closeban {
    display: none;
  }

  .slider-tags {
    border: 4px solid #0070e6;
    padding: 20px;
    margin-bottom: 45px;
  }

  .slider-tags .owl-stage-outer {
    height: 106px;
  }

  .slider-tags .owl-nav {
    height: 205px;
  }

  .slider-tags > h3 {
    margin: 0 0 10px 0;
    color: #00f;
    text-transform: uppercase;
    font-size: 1.339em;
    line-height: 1.13;
    font-family: "FiraSansCompressed";
    max-height: 84px;
    overflow: hidden;
  }

  .dater {
    float: left;
    font-size: 11px;
    height: 20px;
    padding-bottom: 2px;
  }

  .dater b, .dater i, .dater u, .dater s {
    display: inline-block;
    margin-right: 5px;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    height: 22px;
    line-height: 19px;
    padding-bottom: 3px;
  }

  .dater b a, .dater i a, .dater b u, .dater i s {
    text-decoration: none;
  }

  .dater b {
    color: #366faa;
    font-weight: bold;
  }

  .dater i {
    width: 22px;
    background: url(coms.png) center center no-repeat;
    text-align: center;
    font-size: 9px;
    color: #666;
  }

  .dater s {
    width: 42px;
    padding-left: 22px;
    background: url(seen.png) left center no-repeat;
    text-align: left;
    font-size: 9px;
    color: #666;
    padding-bottom: 0px;
    margin-top: -1px;
  }

  .dater u {
    width: 42px;
    padding-left: 18px;
    background: url(thumb.png) left top no-repeat;
    text-align: left;
    font-size: 9px;
    color: #666;
  }

  .RedNews {
    overflow: hidden;
  }

  .RedNews .img {
    float: left;
    width: 150px;
    overflow: hidden;
  }

  .RedNews .img img {
    width: 100%;
    height: auto;
    border-none;
    padding-top: 4px;
  }

  .RedNews .stext {
    float: right;
    overflow: hidden;
    width: 325px;
  }

  .RedNews .caption {
    font-size: 15px;
  }

  .RedNews a {
    font-weight: bold;
    display: block;
    color: #000;
    text-decoration: underline;
  }

  .RedNews .lid {
    font-size: 13px;
    line-height: 19px;
    color: #333;
    margin: 5px 0;
  }
  /* popup */
  #BoxUp { position:absolute; top:0; left:0; background:url(dark.png); z-index:5000; display:none; filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);  -moz-opacity:0;  -khtml-opacity:0; opacity:0;}
  .inBlock { padding:10px; color:#000;  background-color:#FFF; border:5px solid #CCC; position:absolute; z-index:10000; overflow:hidden; left:50%; top:50%; filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); -moz-opacity:0; -khtml-opacity:0; opacity:0; max-width:900px; border-radius:10px; } .OpenName { float:left; height:30px; line-height:30px; color:#376091; font-size:19px; letter-spacing:0px; min-width:350px; width:auto; margin-top:-5px; margin:0; padding:0; font-weight:bold; } .OpenLink { float:right; height:20px; line-height:30px; width:16px; cursor:pointer; }  .CloseBar0 { border:none; filter:progid:DXImageTransform.Microsoft.Alpha(opacity=50); -moz-opacity:0.5; -khtml-opacity:0.5; opacity:0.5; height:16px; width:16px;} .CloseBar1 { border:none; filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100); -moz-opacity:1;  -khtml-opacity:1; opacity:1; height:16px; width:16px; }
  .UsersLineLogined { display: none !important; }
  /* to up */
  #ToUp { display:none; position:fixed; top:10px; left:10px; border:1px solid #a0a0a0; z-index:5000; border-radius:5px; padding:7px 7px 7px 30px; background:#FFF url(up.png) left center no-repeat; color:#777; cursor:pointer; filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);  -moz-opacity:0.6;  -khtml-opacity:0.6; opacity:0.6; } #ToUp:hover { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100);  -moz-opacity:1;  -khtml-opacity:1; opacity:1; }
  /* user settings */
  .SaveDiv { margin-bottom:10px; padding:6px 6px 6px 25px; color:#D94600; border:2px solid #F8CB30; background:url(loader.gif) 5px center no-repeat #FDF2D0; border-radius:5px; }
  #sendstat { display:none; }
  .Lab { line-height:13px; font-size:11px; color:#777; }
  .Lab b { color:#F00; }
  .Inp380 { padding:7px; font-size:12px; width:320px; height:16px; line-height:16px; margin:3px 0 13px 0; border-radius:5px; }
  .SaveButton { border-radius:6px; width:190px; height:35px; cursor:pointer; font-weight:bold; font-size:13px; }
  .SaveButton:hover { background:#4887b7;  color:#FFF; }
  .Avatar { width:345px; padding-top:19px; line-height:14px; font-size:11px; color:#666; margin-bottom:15px; }
  #AvatarI { padding:7px; border:1px solid #CCC; margin-right:10px; border-radius:5px; }
  #AvatarI .Info { display: inline-block; float: right; }
  #AvatarI img { width:75px; height:75px; border:none; border-radius:5px; }
  #Podstava { overflow:hidden; width:150px; height:30px; margin-top:7px; float:left; overflow:hidden; border-radius:5px; }
  #Podstava input { cursor:pointer !important; }
  .Podstava1 { background:url(avatar.png) center center no-repeat; }
  .Podstava1:hover { background:url(avatar2.png) center center no-repeat; }
  .Podstava2 { background:url(loader2.gif) left center no-repeat; }
  .C,.C5,.C10,.C15,.C20,.C25,.C30,.CB,.CBG { clear:both; font-size:0; line-height:1px; }
  .PayBlock { font-weight: normal; border-top:1px solid #DDD; font:11px/16px 'NeoSans' !important; color:#666; text-align: justify; padding-top:10px; margin-top:10px; }
  /* MEDIA */
  @media (min-width: 991px) {
    .slider_mobile,
    .footer__sites-link,
    .header__button-open,
    .hidden-desktop {
      display: none !important;
    }
  }
  @media (max-width: 990px) {
    .banner-bottom,
    .banner-aside,
    .news-big,
    .header__link-wrapper_border,
    .column-side,
    .footer__sites-header,
    .footer__sites-block,
    .hidden-mobile {
      display: none !important;
    }
    .header__menu .header__link-wrapper_special {
      padding: 10px;
    }
    #header__menu-dop {
      top: 0px;
    }
    .container {
      width: 520px;
    }
    .column-mid {
      width: 100%;
    }
    /* баннеры */
    .banner-mid {
      width: 490px;
    }
    /* баннеры КОНЕЦ */
    /* заголовок */
    .header__banner {
      width: 100%;
    }
    .header__banner-img {
      width: 100%;
      min-height: 190px;
    }
    .header__logo {
      width: auto;
    }
    .header__menu {
      position: fixed;
      padding-top: 60px;
      padding-left: 35px;
      padding-right: 10px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      height: 100%;
      background-color: rgba(0, 112, 230, 0.9);
      left: -100%;
      right: auto;
      bottom: 0;
      font-size: 1.875em;
      -webkit-transition: .3s all ease;
      transition: .3s all ease;
    }
    .header__link-wrapper {
      padding: 15px 0;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
    }
    .header__link-wrapper:nth-of-type(2) {
      -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
      order: 3;
    }
    .header__link-wrapper:nth-of-type(4) {
      -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
      order: 4;
    }
    .header__link-wrapper:nth-of-type(5) {
      -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
      order: 5;
    }
    .header__link-wrapper:nth-of-type(6) {
      -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
      order: 6;
    }
    .live_top {
      position: fixed;
      z-index: 152;
      left: auto;
      top: auto;
      right: 15px;
      bottom: 15px;
      margin-bottom: 0;
    }
    /* заголовок КОНЕЦ */
    /* главная страница */
    .news-top-row {
      margin-top: 14px;
    }
    .news-columns {
      margin-top: 0;
    }
    /* главная страница КОНЕЦ */
    /* статья */
    .article {
      font-size: 18px;
      margin-top: 10px;
    }
    .article__header {
      font-size: 1.0em;
    }
    .article__name {
      font-size: 1.1em;
    }
    .article__line {
      margin-bottom: 15px;
    }
    .article__lead {
      font-size: 16px;
    }
    .article-info {
      font-size: 12px;
    }
    .article-top-photo {
      font-size: 14px;
    }
    .article-top-photo__picture-wrapper {
      height: 200px;
    }
    .article-top-photo__picture {
      min-height: 200px;
    }
    .article-author {
      min-width: 80px;
      padding-top: 30px;
      margin-right: 12px;
      font-size: 16px;
    }
    .article-author__wrapper {
      width: 80px;
      height: 80px;
    }
    .article-author__author {
      font-size: 0.9em;
    }
    .article-photo {
      font-size: 18px;
    }
    .article-photo__text {
      font-size: 0.8em;
    }
    .article-photo__picture {
      min-height: 200px;
    }
    .slider {
      margin-bottom: 30px;
    }
    .slide__picture-wrapper {
      height: 200px;
    }
    .slide__picture {
      min-height: 200px;
    }
    .slide__text {
      font-size: 0.8em;
    }
    .owl-prev {
      height: 200px;
    }
    .owl-next {
      height: 200px;
    }
    .owl-dots {
      top: 224px;
    }
    .article-list {
      margin: 0 10px;
    }
    .vote__header {
      font-size: 1.0em;
    }
    .review__user {
      font-size: 1.1em;
    }
    .questions__header {
      font-size: 1.0em;
    }
    .contacts__inner {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    }
    .contacts__block {
      width: 50%;
      margin-bottom: 10px;
    }
    .comments__header {
      font-size: 1em;
    }
    .comment__info-wrapper .comment {
      position: absolute;
      top: 40px;
      right: 0;
      display: flex;
      flex-flow: column nowrap;
    }
    .comment__main {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -ms-flex-line-pack: start;
      align-content: flex-start;
    }
    .comment__text {
      width: 75%;
    }
    .add-comment {
      margin-top: 20px;
      font-size: 18px;
    }
    .add-comment__header {
      font-size: 1em;
    }
    .article-error__text {
      font-size: 16px;
    }
    .recommend {
      font-size: 18px;
    }
    .recommend__header {
      font-size: 1em;
    }
    .text-header {
      font-size: 16px;
    }
    .text-link,
    .article__text {
      font-size: 16px;
    }
    /* статья КОНЕЦ */
    /* подвал */
    .footer__line {
      margin: 0 20px 15px;
      border-top: 2px solid #99c6f5;
    }
    .footer__menu {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
    }
    .footer__link-wrapper {
      width: 50%;
      margin: 7px 0;
    }
    .footer__copyrights {
      padding: 0 10px;
      white-space: normal;
    }
    /* подвал КОНЕЦ */
    /* подсказка для текстового поля */
    .add-comment__textarea::-webkit-input-placeholder {
      /* Chrome, Firefox, Opera, Safari 10.1+ */
      font-size: 16px;
    }
    .add-comment__textarea:-ms-input-placeholder {
      /* Chrome, Firefox, Opera, Safari 10.1+ */
      font-size: 16px;
    }
    .add-comment__textarea::-ms-input-placeholder {
      /* Chrome, Firefox, Opera, Safari 10.1+ */
      font-size: 16px;
    }
    .add-comment__textarea::placeholder {
      /* Chrome, Firefox, Opera, Safari 10.1+ */
      font-size: 16px;
    }
    .add-comment__textarea:-ms-input-placeholder {
      /* Internet Explorer 10-11 */
      font-size: 16px;
    }
    .add-comment__textarea::-ms-input-placeholder {
      /* Microsoft Edge */
      font-size: 16px;
    }
    #ToUp {
      top: auto;
      bottom: 10px;
    }
  }
  .ArticleContent li {
    list-style: circle;
  }
  .ArticleContent iframe {
    width: 100%;
  }
  .Article_tags {
    text-align: center;
  }
  .Article_tags a {
    border: 1px solid #0070e6;
    display: inline-block;
    border-radius: 10px;
    padding: 5px 10px;
    margin: 5px 10px;
  }
  @media (max-width: 768px) {
    .container {
      max-width: 520px;
      width: auto;
    }
    iframe:not(.instagram-media) {
      max-width: 100% !important;
    }
    .ArticleContent img, .banner, .banner img, .banner2, .banner2 img, div[id^="vk_post_"] {
      max-width: 100% !important;
      height: auto !important;
    }
    /* баннеры */
    .banner-mid {
      max-width: 520px;
      width: auto;
      height: 100px;
    }
    .banner-mid__picture {
      min-height: 100px;
    }
    /* баннеры КОНЕЦ */
    /* главная страница */
    .news-mid {
      height: 106px;
    }
    .news-mid__media-wrapper {
      min-width: 0;
    }
    .news-mid__header {
      max-height: 84px;
      font-size: 15px;
      line-height: 17.5px;
    }
    .slider-tags {
      line-height: 14px;
    }
    .news-mid__text {
      display: none;
    }
    .news-mid__content {
      margin-left: 10px;
    }
    .news-mid__picture {
      max-width: 100%;
      min-height: 80px;
      max-height: 140px;
    }
    .slide_news .live_slide {
      max-height: 130px;
    }
    .interview_slide .interview__text {
      width: 100%;
    }
    .divider__text {
      font-size: 1em;
    }
    /* главная страница КОНЕЦ */
    /* заголовок */
    .header {
      margin-top: 14px;
    }
    .header__banner {
      max-width: 520px;
      width: 100%;
    }
    .header__banner-img {
      width: 100%;
      min-height: 160px;
    }
    /* заголовок КОНЕЦ */
    /* подвал */
    .footer__menu {
      margin-right: 30px;
    }
    /* подвал КОНЕЦ */
  }
  #mailcounter, #livecounter{
   position: fixed;
   margin-top: 50%;
 }

 #mailcounter{
   margin-left:90%;
 }


 #SVK-Native-c97123ea1dcc3807e91be30b3fa0c2de522158 .sub-list {
  height: 100px !important;
}

img[data-src] {
  background: url(/template/standart/img/preloader.gif);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

#covid-19_wrapper {
  /*display: inline-block;*/
  /*padding-right: 30px;*/
  /*border-bottom: 1px dashed #0070e6;*/
  background: black;
}

#covid-19_wrapper div {
  margin: 0 30px;
  display: inline-block;
  padding: 10px 0 10px 0;
  font-weight: bolder;
  color: white;
}

#covid-19_wrapper div:first-child,  #covid-19_wrapper div:last-child{
  position: relative;
}

#covid-19_wrapper p {
  display: inline-block;
  margin: 0;
}

#covid-19_wrapper p:nth-child(1), #covid-19_wrapper p:nth-child(2) {
  border-right: 1px solid rgba(255,255,255, 0.5);
  padding-right: 5px;
}

@media (max-width: 991px) {
  #covid-19_wrapper div:first-child,  #covid-19_wrapper div:last-child{
    position: auto;
    top: auto;
  }

  #covid-19_wrapper div:nth-child(2) {
    padding-left: 5px;
    padding: 5px 0 5px 5px;
    margin-left: 35px;
    margin: 5px 0 5px 40px;
    border-left: 1px dashed white;
  }

  #covid-19_wrapper div {
    display: block;
    padding: 0;
  }

  #covid-19_wrapper {
    padding: 10px 0;
  }

  #covid-19_wrapper p {
    display: block;
  }

  #covid-19_wrapper p:nth-child(1), #covid-19_wrapper p:nth-child(2) {
    border: none;
    padding-right: 0px;
  }
}

@media (min-width: 991px) {
  #QEM0h6hFXVvD1HRwFkHH, .smi24__informer {
    width: 50% !important;
    float: left;
  }
}


#telegram_subscription {
  z-index: 9999;
  position: fixed;
  right: -400px;
  top: 55%;
  padding: 10px 0;
  background: #00a0e3;
  cursor: pointer;
  display: block;
}

@media (max-width: 990px) {
  #telegram_subscription {
    display: none;
  }
}

.telegram_subscription-close {
  font-style: normal;
  position: absolute;
  right: 0;
  top: 0;
  font-weight: bolder;
  color: white;
  font-size: 18px;
  padding: 4px 8px;
  background: #0080b5;
}

#telegram_link {
  display: flex;
}

.telegram_subscription-in {
  animation: telegramin 3s ease-in both;
}

.telegram_subscription-out {
  animation: telegramin 1s ease reverse;
}

@keyframes telegramin {
  0% { 
    right: -400px;
  }

  100% {
    right: 0;
  }
}

#telegram_subscription:hover {
  background: #0090cc;
}

.telegram_icon {
  padding: 0 20px;
  padding-top: 20px;
}

.telegram_content {
  width: 200px;
  color: white;
  padding-right: 20px;
  font-size: 16px;
  font-weight: normal;
}

.telegram_subscribe {
  padding: 5px 0px;
  text-align: center;
  background: white;
  color: #00a0e3;
  margin-top: 10px;
  font-size: 14px;
}

.el-border_light {
  border: 2px solid #0070e6;
  padding: 5px;
}