/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

@charset "UTF-8";
/* ------------ *Default ------------- */
/* Flex Class */
.fx-column {display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: nowrap;flex-wrap: nowrap;-webkit-box-orient: vertical;-webkit-box-direction: normal;-ms-flex-direction: column;flex-direction: column;}
.flex-center {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;}
.fx-between {-webkit-box-pack: justify;-ms-flex-pack: justify;justify-content: space-between;}
.align-start {-webkit-box-align: start;-ms-flex-align: start;align-items: flex-start;}
.align-center {-webkit-box-align: center;-ms-flex-align: center;align-items: center;}
.align-end {-webkit-box-align: end;-ms-flex-align: end;align-items: flex-end;}
.fx-start {-webkit-box-pack: start;-ms-flex-pack: start;justify-content: flex-start;}
.fx-center {-webkit-box-pack: center;-ms-flex-pack: center;justify-content: center;}
.fx-end {-webkit-box-pack: end;-ms-flex-pack: end;justify-content: flex-end;}
.fx {display: -webkit-box;display: -ms-flexbox;display: flex;}
.fx-wrap {-ms-flex-wrap: wrap;flex-wrap: wrap;}
/* Flex Class End */

/* Caption for fslightbox library */
.fslightbox-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.fslightbox-flex > .fslightbox-caption {
  font-family: 'PT Sans', sans-serif;
  font-size: 12px;
  color: white;
  text-align: center;
}

.fslightbox-flex > img {
  order: -1;
}


/* Reserved Class */
.text-left {text-align: left;}
.text-center {text-align: center;}
.text-right {text-align: right;}
/* Reserved Class End*/

/* Style Default*/
a, button, .speed {-webkit-transition: all .2s;-o-transition: all .2s;transition: all .2s;}
button {border: 0;padding: 0;cursor: pointer;background: none;}
* {-webkit-box-sizing: border-box;box-sizing: border-box;}
* {outline: none;}
/* Style Default End */

body {
  color: #2b2b2b;
  font-size: 16px;
  font-weight: normal;
  font-family: 'PT Sans', sans-serif;
}

.wrapper {
  overflow: hidden;
  min-height: 100%;
}

.btn {
  line-height: 1;
  color: #2b2b2b;
  font-size: 16px;
  border-radius: 2px;
  padding: 10px 20px;
  text-align: center;
  position: relative;
  font-weight: normal;
  display: inline-block;
  font-family: 'PT Sans', sans-serif;
}

.btn_white {
  background: #fff;
  border: 1px solid #bbbbbb;
}

.btn_white:hover {
  background: #ededed;
}

.btn_blue {
  color: #fff;
  position: relative;
  background: -o-linear-gradient(top, #0f86ca, #0f588e);
  background: -webkit-gradient(linear, left top, left bottom, from(#0f86ca), to(#0f588e));
  background: linear-gradient(to bottom, #0f86ca, #0f588e);
}

.btn_blue:after {
  opacity: 0;
  top: 0;left: 0;right: 0;bottom: 0;
  background: -o-linear-gradient(bottom, #0f86ca, #0f588e);
  background: -webkit-gradient(linear, left bottom, left top, from(#0f86ca), to(#0f588e));
  background: linear-gradient(to top, #0f86ca, #0f588e);
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

.btn_blue span {
  z-index: 1;
  position: relative;
}

.btn_blue:hover:after {
  opacity: 1;
}

.main {
  display: flex;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}


.pt-93 {
  padding-top: 93px;
}
.pt-120 {
  padding-top: 120px;
}
.pb-80 {
  padding-bottom: 80px;
}

/* ------------ *Header ------------- */

.header__top {
  position: relative;
  background-color: #251170;
  transition: background-color 0.3s linear;
}

.header__top > .container {
  padding-block: 12px;
}

.header__top.search_active {
  background-color: #000000;
}

.header__top.search_active > .container > :not(.search) {
  opacity: 0.1;
  pointer-events: none;
  cursor: not-allowed;
}

@media screen and (max-width: 768px) {
  .header__top.search_active > .container > .navbar-toggle {
    opacity: 0;
  }
}

.header_fix {
  z-index: 999;
  position: fixed;
  top: 0;left: 0;right: 0;
}

.scroll-page {
  -webkit-box-shadow: 0 0 10px rgb(0 0 0 / 0.2);
  box-shadow: 0 0 10px rgb(0 0 0 / 0.2);
}

.logo {
  z-index: 2;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media screen and (max-width: 1200px) {
  .logo {
    margin-right: auto;
  }
}

@media screen and (max-width: 767px) {
  .logo {
    margin-right: 0;
  }
}

@media screen and (max-width: 480px) {
  .header__top > .container {
    gap: 16px;
  }
}

div.logo > a > img:first-child {
  height: 40px;
}

.nav__item:not(:last-child) {
  margin-right: 12px;
}

.nav__link {
  color: #fff;
  position: relative;
}

.nav__link:hover,
.nav__drop__link:hover {
  opacity: .6;
}

.nav__item_drop {
  position: relative;
}

.nav__item_drop .nav__link {
  padding-right: 20px;
}

/* .nav__item_drop .nav__link:after {
  top: 50%;right: 0;
  width: 11px;height: 7px;
  background: url(../img/icons/i-dropdown.png) center no-repeat;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
} */

.nav__item_drop .nav__link:after {
  top: 50%;right: 0;
  width: 11px;height: 7px;
  background: url(/themes/2013/images/new/i-dropdown.png) center no-repeat;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.nav__drop__box {
  opacity: 0;
  width: 624px;
  padding-top: 18px;
  position: absolute;
  top: -100em;left: -391px;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

.nav__drop__box_single {
  opacity: 0;
  padding-top: 18px;
  position: absolute;
  top: -100em;left: -391px;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

.nav__item_drop:hover .nav__drop__box, .nav__item_drop:hover .nav__drop__box_single {
  top: 100%;
  opacity: 1;
}

.nav__drop {
  z-index: 1;
  padding: 25px 0;
  overflow: hidden;
  position: relative;
  background: #251170;
}

.nav__drop__item {
  left: 2px;
  position: relative;
  padding: 10px 20px;
  padding-left: 40px;
  width: 33.3333333333%;
  border-right: 2px solid #351b98;
}

.nav__drop__item_single {
  left: 2px;
  position: relative;
  padding: 10px 20px;
  padding-left: 40px;
  width: 100%;
  border-right: 2px solid #351b98;
}

.nav__drop__item:not(:last-child), .nav__drop__item_single:not(:last-child) {
  padding-bottom: 25px;
}

.nav__drop__link {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav__icon {
  margin-right: 12px;
  width: 27px;height: 21px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

i.i-politics {
  background: url(/themes/2013/images/new/i-politics.png) center no-repeat;
}

i.i-sport {
  background: url(/themes/2013/images/new/i-sport.png) center no-repeat;
}

i.i-planet {
  background: url(/themes/2013/images/new/i-planet.png) center no-repeat;
}

i.i-economy {
  background: url(/themes/2013/images/new/i-economy.png) center no-repeat;
}

i.i-culture {
  background: url(/themes/2013/images/new/i-culture.png) center no-repeat;
}

i.i-society {
  background: url(/themes/2013/images/new/i-society.png) center no-repeat;
}

i.i-incidents {
  background: url(/themes/2013/images/new/i-incidents.png) center no-repeat;
}

i.i-social {
  background: url(/themes/2013/images/new/i-social.png) center no-repeat;
}

/* .search__field,
.search__field input {
  display: block;
  border: 0;
} */

/* .search__field input {
  border-bottom: #473782 1px solid;
  color:#867bae;
  font-size: 14px;
  font-weight: normal;
  padding: 2px 15px 0 2px;
  width: 120px;
  opacity: 0.7;
  height: 30px;
  font-family: 'PT Sans', sans-serif;
  background: transparent;
} */

/* .search__field input:focus {
  opacity: 1;
  border-bottom: #574a88 1px solid;
} */

.search__field *::-webkit-input-placeholder {color: #828282;}
.search__field *::-moz-placeholder          {color: #828282;}/* Firefox 19+ */
.search__field *:-moz-placeholder           {color: #828282;}/* Firefox 18- */
.search__field *:-ms-input-placeholder      {color: #828282;}

/* .search__btn {
  top: 50%;right: 9px;
  position: absolute;
  width: 17px;height: 18px;
  background: url(../img/icons/i-search.png) center no-repeat;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
} */

/* SEARCH */

.search {
  height: 30px;
}

@media screen and (max-width: 767px) {
  .search {
    order: -1;
  }
}

.search form {
  height: 100%;
}

.search__input-container {
  padding: 12px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 56px;
  background-color: white;
  z-index: 10;
  box-shadow: 0 3px 9px rgb(0 0 0 / 40%);
  transition: opacity 0.3s linear, visibility 0.3s linear;
}

.search__input-container.hidden {
  opacity: 0;
  visibility: hidden;
}

.search__input-container .container {
  gap: 16px;
  height: 100%;
}

@media screen and (max-width: 576px) {
  .search__input-container .container {
    padding-inline: 0;
  }

  .search__input-container .container > span {
    display: none;
  }
}

.search__button-container_open {
  width: 30px;
  height: 100%;
}

.search__button-container_open.search_active {
  opacity: 0.1;
  pointer-events: none;
}

.search__button-container_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 100%;
  background-color: #251170;
  transition: opacity 0.3s linear, visibility 0.3s linear;
}

.search__button-container_close.hidden {
  visibility: hidden;
  opacity: 0;
}

.search__button {
  width: 100%;
  height: 100%;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #FFFFFF;
}

.search__button_open {
  mask-image: url(/themes/2013/images/new/i-search.png);
  opacity: 0.3;
  transition: opacity 0.3s linear;
}

.search__button_open:hover {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .search__button_open {
    opacity: 1;
  }
}

.search__button_close {
  mask-image: url(/themes/2013/images/new/i-close.png);
  mask-size: 20%;
}

.search__input {
  padding-bottom: 4px;
  width: 100%;
  height: 100%;
  font-family: 'PT Sans', sans-serif;
  background: transparent;
  border: none;
}

.search__submit {
  width: 24px;
  height: 24px;
  mask-image: url(/themes/2013/images/new/i-search.png);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  flex-shrink: 0;
  background-color: #251170;
}

@media screen and (min-width: 768px) {
  .search__submit {
    display: none;
  }
}

.partners {
  margin-left: auto;
}

@media screen and (max-width: 1200px) {
  .partners {
    margin-left: 0;
  }
}

.partners__item:not(:last-child) {
  margin-left: 10px;
}

.partners__item img {
  display: block;
  opacity: .3;
  width: 80%;
  transition: 300ms linear;
}

.partners__item img:hover {
  opacity: .8;
}

.login a {
  color: #fff;
  margin-left: 20px;
}

.login__icon {
  margin-right: 12px;
  width: 19px;
  height: 19px;
  background: url(/themes/2013/images/new/i-login.png) center no-repeat;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: none;
}

.login a:hover {
  text-decoration: underline;
}

.header__bot {
  font-size: 14px;
  padding: 10px 0;
  background: #fff;
}

.plots__title,
.plots__title a {
  /* color: #004e87; */
  color: #251170;;
}

.plots__title a:hover {
  text-decoration: underline;
}

.plots__item {
  margin-left: 20px;
}

.plots__link,
.radio a {
  /* color: #004e87; */
  color: #251170;;
}

.plots__link:hover,
.radio a:hover {
  text-decoration: underline;
}

i.radio__play {
  margin-right: 10px;
  width: 13px;height: 18px;
  background: url(/themes/2013/images/new/i-play.png) center no-repeat;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

i.radio__pause {
  margin-right: 18px;
  width: 13px;height: 18px;
  background: url(/themes/2013/images/new/i-pause.svg) center no-repeat;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* Toggle */

.navbar-toggle {
  z-index: 60;
  display: none;
  background: none;
}

@media screen and (max-width: 1200px) {
  .navbar-toggle {
    margin-left: auto;
  }
}

@media screen and (max-width: 767px) {
  .navbar-toggle {
    margin-left: 0;
  }
}

.navbar-toggle span {
  display: block;
  background: #fff;
  position: relative;
  width: 30px;height: 3px;
}

.navbar-toggle .icon-bar+.icon-bar {
  margin-top: 6px;
}

.navbar-toggle.active span:first-child {
  top: 9px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:last-child {
  top: -9px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* Toggle End */

/* ------------ *Banner ------------- */

.pb-18 {
  padding-bottom: 18px;
}

.pt-45 {
  padding-top: 45px;
}

.banner img {
  width: 100%;
  display: block;
}

/* ------------- *News -------------- */

.pt-50 {
  padding-top: 50px;
}

.row_manual .col-auto:first-child {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60%;
  flex: 0 0 60%;
  max-width: 60%;
}

.row_manual .col-auto:last-child {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  max-width: 40%;
}

.news__group .col-12 {
  margin-bottom: 30px;
}

.news__group .col-md-4 {
  margin-bottom: 40px;
}

.news__link {
  display: block;
  color: #2b2b2b;
  font-size: 14px;
}

.news__link:hover {
  color: #004e87;
}

.news__img {
  width: 100%;
  height: 118px;
  display: block;
  background-size: cover !important;
  background-position: 50% !important;
}

.news__img {
  -webkit-box-shadow: 0 5px 5px rgb(0 0 0 / 0.4);
  box-shadow: 0 5px 5px rgb(0 0 0 / 0.4);
}

.news__txt {
  margin-top: 15px;
  font-size: 15px;
}

.news__link_big {
  color: #fff;
  padding: 25px;
  height: 390px;
  position: relative;
  -webkit-box-shadow: 0 5px 10px rgb(0 0 0 / 0.5);
  box-shadow: 0 5px 10px rgb(0 0 0 / 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.news__link_big:hover {
  color: #fff;
}

.news__link_big:after {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2), transparent);
}

.news__box {
  z-index: 1;
  position: relative;
}

.news__main {
  font-size: 16px;
  padding: 3px 12px;
  border: 1px solid #fff;
}

.news__text {
  font-size: 22px;
  font-weight: 400;
  margin-top: 20px;
  font-family: 'Noto Serif', serif;
  text-shadow: 1px 1px 3px rgba(0, 0, 0);
}

.news__text.inner_content {
  font-size: 32px;
  margin-top: 0;
  margin-bottom: 20px;
}

.live__title {
  color: #595959;
  font-weight: 500;
  position: relative;
  padding-right: 24px;
}

.live__title:after {
  top: 50%;right: 0;
  border-radius: 50%;
  background: #10b500;
  width: 8px;height: 8px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.live__video {
  margin-top: 15px;
}

.live__video img,
.live__video video,
.live__video iframe {
  width: 100%;
  max-height: 300px;
}

.latest-news {
  /* margin-top: 45px; */
  padding-bottom: 20px;
}

.latest-news__title a {
  color: #595959;
  font-weight: 500;
  position: relative;
  padding-right: 20px;
}

.latest-news__title a:hover {
  text-decoration: underline;
}

.latest-news__title a:after {
  top: 50%;right: 0;
  width: 7px;height: 12px;
  background: url(/themes/2013/images/new/i-arrow-right.png) center no-repeat;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.latest-news__list {
  margin-top: 20px;
}

.latest-news__item {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.latest-news__item-flex {
  display: flex;
  align-items: center;
}

.latest-news__item-flex img {
  margin-right: 5px;
}

.latest-news__time {
  color: #b7b7b7;
  padding-right: 10px;
  max-width: 45px;width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.latest-news__name {
  width: 100%;
  padding: 10px 0;
}

.latest-news__item:not(:last-child) .latest-news__name {
  border-bottom: 1px solid rgb(226 226 226 / 0.75);
}

.latest-news__name a {
  color: #2b2b2b;
}

.latest-news__name a:hover {
  color: #004e87;
}

.latest-news__more {
  margin-top: 20px;
  padding-left: 45px;
}

.latest-news__more a {
  color: #004e87;
  font-size: 14px;
  position: relative;
  padding-right: 15px;
}

.latest-news__more a:hover {
  text-decoration: underline;
}

.latest-news__more a:after {
  top: 50%;right: 0;
  width: 5px;height: 10px;
  background: url(/themes/2013/images/new/i-arrow-right-blue.png) center no-repeat;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.news__banner {
  margin-top: 50px;
}

.news__banner__item:not(:last-child) {
  margin-bottom: 30px;
}

.news__banner__item,
.news__banner__item img {
  display: block;
}

/* ------------ *Running ------------- */

.running {
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  /* background: #d2d2d2; */
  background: #e2e2e2;
  border: 1px solid #949494;
  box-shadow: 0 3px 9px rgb(0 0 0 / 40%);
  white-space: nowrap;
}

.running li {
  white-space: nowrap;
  overflow: hidden;
  display: inline;
}


.running__item {
  color: #373737;
  font-size: 18px;
}

.running__item:not(:last-child) {
  margin-right: 100px;
}

.running__item:hover {
  text-decoration: underline;
}

.running__type {
  padding: 5px 8px;
  margin-block: 1px;
  margin-right: 15px;
  border-radius: 1px;
  display: inline-block;
  border: 1px solid #373737;
}

.commBlock {
  padding-left: 15px;
  padding-right: 15px;
}

.commBlock .banner__overlay{
  background-color: #000;
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  margin-left: -25px;
  margin-bottom: -15px;
}

.commBlock .news__box{
  z-index: 2;
}

.commBlock:hover .banner__overlay{
  background-color: #000;
  opacity: 50%;
}

.commBlock:hover .news__text {
  font-size: 22.5px;
}
/* ----------- *News big ------------- */

.news__link_bigg {
  height: 554px;
  padding: 35px 25px;
}

.news__link_bigg .news__text {
  font-size: 28px;
}

.news__link_small {
  height: 308px;
  padding: 15px 25px;
}

/* ------------ *Footer ------------- */

.footer {
  margin-top: auto;
  /* -webkit-transform: translateY(45px);
      -ms-transform: translateY(45px);
          transform: translateY(45px); */
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.footer-show,
.footer.open {
  -webkit-transform: translateY(0) !important;
  -ms-transform: translateY(0) !important;
  transform: translateY(0) !important;
}

.footer_fix {
  z-index: 9;
  position: fixed;
  left: 0;right: 0;bottom: 0;
}

.footer__top {
  display: none;
  font-size: 15px;
  padding: 20px 0;
  /* background: #2e2742; */
  background: rgb(35 29 55 / 95%);
  line-height: 1.5;
}

.footer__text {
  color: #bebbcc;
}

.footer__text:not(:last-child) {
  margin-bottom: 15px;
}

.footer__nav__item:not(:last-child) {
  margin-bottom: 8px;
}

.footer__nav__link {
  color: #fff;
}

.footer__nav__link:hover {
  text-decoration: underline;
}

.footer__bot {
  padding: 10px 0;
  /* background: #231d37; */
  background: rgb(35 29 55 / 95%);
}

.footer__menu,
.subscribe__text {
  color:#e0dfe6;
  cursor: pointer;
  font-size: 16px;
  position: relative;
}

.footer__menu:hover,
.subscribe__text:hover {
  text-decoration: underline;
}

.footer__menu {
  padding-left: 25px;
}

.footer__menu:before {
  top: 50%;left: 0;
  width: 11px;height: 7px;
  background: url(/themes/2013/images/new/i-footer-down-3.png) center no-repeat;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.footer.open .footer__menu:before {
  -webkit-transform: rotate(180deg) translateY(50%);
  -ms-transform: rotate(180deg) translateY(50%);
  transform: rotate(180deg) translateY(50%);
}

.footer__social {
  margin-left: 30px;
}

.footer__social__item {
  width: 31px;height: 22px;
}

.footer__social__item:not(:first-child):not(:last-child) {
  margin-left: 5px;
}

.footer__social__item:hover,
.subscribe__item:hover {
  opacity: .7;
}

.i-vk {
  background: url(/themes/2013/images/new/i-vk.png) center no-repeat;
}

.i-in {
  background: url(/themes/2013/images/new/i-in.png) center no-repeat;
}

.i-tg {
  background: url(/themes/2013/images/new/i-tg.png) center no-repeat;
}

.i-ok {
  background: url(/themes/2013/images/new/i-ok.png) center no-repeat;
}

.i-tw {
  background: url(/themes/2013/images/new/i-tw.png) center no-repeat;
}

.i-fb {
  background: url(/themes/2013/images/new/i-fb.png) center no-repeat;
}

.subscribe__text {
  top: 2px;
  position: relative;
}

.subscribe__item {
  margin-left: 15px;
  position: relative;
}

.i-res {
  top: 2px;
  width: 20px;height: 20px;
  background: url(/themes/2013/images/new/i-res.png) center no-repeat;
}

.i-adult {
  width: 31px;height: 25px;
  background: url(/themes/2013/images/new/i-adult.png) center no-repeat;
}

.i-adult:hover {
  opacity: 1 !important;
}

/* =================================== */
/*           Page: Article:            */
/* =================================== */

.mt-0 {
  margin-top: 0;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.mt-25 {
  margin-top: 25px;
}

.article__info {
  font-size: 14px;
}

.article__info__type a {
  color: #004e87;
}

.article__info__type a:hover {
  text-decoration: underline;
}

.article__info__date {
  color: #b7b7b7;
  margin-left: 10px;
}

.article__info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.article__info__item:not(:last-child) {
  margin-right: 18px;
}

.article__info__icon {
  margin-right: 8px;
  width: 25px;height: 21px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

i.i-comment {
  background: url(/themes/2013/images/new/i-comment.png) center no-repeat;
}

i.i-views {
  background: url(/themes/2013/images/new/i-views.png) center no-repeat;
}

.article__info__txt {
  color: #a0a0a0;
}

.article__box p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.5;
  text-align: justify;
}

.article__box p a {
  color: #004e87;
}

.article__box p a:hover {
  text-decoration: underline;
}

.undersign {
  margin-top: 30px;
  margin-bottom: 30px;
  border-radius: 2px;
  padding: 15px 30px;
  background: -o-linear-gradient(top, #004e87, #007ec8);
  background: -webkit-gradient(linear, left top, left bottom, from(#004e87), to(#007ec8));
  background: linear-gradient(to bottom, #004e87, #007ec8);
  position: relative;
  animation: pulse .65s ease-in-out infinite alternate;
}

.undersign:hover {
  animation: none;
  transform: scale(1);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.01);
  }
}

.undersign__icon {
  margin-right: 25px;
  width: 44px;height: 37px;
  background: url(/themes/2013/images/new/i-tg-big.png) center no-repeat;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.undersign__text {
  width: 100%;
  color: #fff;
  font-size: 18px;
}

.undersign__text p {
  margin-top: 0;
}

.undersign__text p:first-child {
  font-weight: bold;
}

.undersign__text p:last-child {
  margin-top: 2px;
}

.undersign__btn {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.quote {
  margin: 40px 35px;
  padding: 20px 20px 15px;
  background: rgb(0 78 135 / 0.05);
}

.quote__img {
  width: 46px;height: 46px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.quote__img img,
.read__img img,
.comments__img img {
  display: block;
  width: 100%;height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

p.quote__txt {
  margin-top: 0;
  font-size: 20px;
  padding: 0 70px 0 40px;
}

.quote__name {
  color: #888888;
  font-size: 14px;
  font-style: italic;
}

.article__sl,
.read {
  margin-top: 30px;
  margin-bottom: 30px;
}

.article__sl__item {
  position: relative;
}

.article__sl__item img {
  width: 100%;
}

.article__sl__name {
  color: #fff;
  font-size: 14px;
  position: absolute;
  right: 15px;bottom: 15px;
}

/* Sl controls */

.slick-arrow:before {
  content: none;
}

.slick-arrow {
  z-index: 1;
  width: 18px;height: 35px;
  background: url(/themes/2013/images/new/sl-controls.png) 0 0 no-repeat !important;
}

.slick-arrow:hover {
  opacity: .7;
}

.slick-prev {
  left: 15px;
}

.slick-next {
  right: 15px;
  background-position: 100% 0 !important;
}

/* Sl controls END */

.read {
  padding: 14px 40px 10px 8px;
  background: rgb(0 78 135 / 0.05);
}

.read__img,
.read__btn {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.read__img {
  width: 88px;height: 46px;
}

.read__title {
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  padding: 0 28px 0 18px;
}

.read__btn .btn {
  padding: 7px 33px;
}

.audio {
  padding: 30px 50px 30px;
}

.audio__txt {
  color: #626262;
  display: block;
  font-size: 13px;
  margin-top: 10px;
  font-style: italic;
}

.video {
  padding: 40px 0 40px;
}

.video__bg {
  padding: 15px;
  text-align: center;
  background: rgb(0 78 135 / 0.05);
}

.hashtag a:not(:last-child) {
  margin-right: 5px;
}

.article__desc {
  margin-top: 20px;
}

.article__desc p {
  margin-top: 3px;
}

.article__nav {
  margin-top: 45px;
}

.article__nav a {
  color: #8c8c8c;
  font-size: 14px;
}

.article__nav a:hover,
.comments__title:hover {
  text-decoration: underline;
}

.article__nav a:not(:last-child) {
  margin-right: 25px;
}

.content__socials {
  margin: 50px 0;
}

.comments {
  margin-top: 35px;
}

.comments__title {
  cursor: pointer;
  font-weight: 500;
  position: relative;
  padding-right: 30px;
}

.comments__title:after {
  top: 50%;right: 0;
  width: 14px;height: 8px;
  background: url(/themes/2013/images/new/i-arrow-up.png) center no-repeat;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.comments__title.active:after {
  -webkit-transform: rotate(-180deg) translateY(50%);
  -ms-transform: rotate(-180deg) translateY(50%);
  transform: rotate(-180deg) translateY(50%);
}

.comments__form {
  margin-top: 25px;
  position: relative;
}

.comments__input,
.comments__input input {
  width: 100%;
  display: block;
}

.comments__input input {
  height: 48px;
  color: #000;
  font-size: 14px;
  border-radius: 2px;
  font-weight: normal;
  padding: 0 60px 0 15px;
  font-family: 'PT Sans', sans-serif;
  border: 1px solid rgb(187 187 187 / 0.7);
}

.comments__input *::-webkit-input-placeholder {color: #797979;}
.comments__input *::-moz-placeholder          {color: #797979;}/* Firefox 19+ */
.comments__input *:-moz-placeholder           {color: #797979;}/* Firefox 18- */
.comments__input *:-ms-input-placeholder      {color: #797979;}

.comments__btn {
  position: absolute;
  border-radius: 50%;
  top: 50%;right: 15px;
  width: 30px;height: 30px;
  background: url(/themes/2013/images/new/i-plus.png) center no-repeat rgb(0 78 135 / 0.05);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.comments__btn:hover {
  opacity: .6;
}

.comments__item {
  padding-top: 27px;
  list-style: none !important;
}

.comments__img {
  width: 32px;height: 32px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.comments__user__info {
  line-height: 1;
  padding-left: 15px;
}

.comments__user__name {
  font-weight: 500;
}

p.comments__user__date {
  color: #929292;
  font-size: 12px;
  margin-top: 5px;
}

p.comments__txt {
  font-size: 14px;
  margin-top: 15px;
}

p.comments__answer {
  font-size: 12px;
  margin-top: 8px;
}

.comments__sublist {
  margin-top: 10px;
  padding-left: 35px;
  border-left: 1px dashed #c8c8c8;
  margin-left: 0 !important;
}

.article__banner {
  margin-top: 35px;
}

.article__banner a,
.article__banner img {
  width: 100%;
  display: block;
}

.interview {
  padding: 25px;
  margin-top: 35px;
  border-radius: 5px;
  background: rgb(0 78 135 / 0.05);
}

p.interview__title {
  margin-top: 0;
  font-size: 18px;
  font-weight: bold;
}

.interview__box {
  margin-top: 30px;
}

/* Checkbox && Radio */

.check__item {
  cursor: pointer;
}

input[type='checkbox'],
input[type='radio'] {
  display: none;
}

.check__custom {
  cursor: pointer;
  position: relative;
  border-radius: 50%;
  display: inline-block;
  vertical-align: inherit;
  width: 14px;height: 14px;
  border: 1px solid #808080;
}

.check__custom:before {
  top: 50%;left: 50%;
  border-radius: inherit;
  width: 8px;height: 8px;
  background: transparent;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.check__item input:checked + .check__custom:before {
  background: #808080;
}

/* Checkbox && Radio END */

.interview__name {
  font-size: 18px;
  margin-left: 10px;
  display: inline-block;
}

.interview__result {
  margin-top: 25px;
}

.interview__result__item:not(:last-child) {
  margin-bottom: 20px;
}

.interview__result__name,
.interview__result__sum {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.interview__result__name {
  font-size: 18px;
  padding-right: 10px;
  max-width: 160px;width: 100%;
}

.interview__result__progressbar {
  height: 7px;
  border-radius: 10px;
  background: #c8c8c8;
}

.interview__result__sum {
  color: #686868;
  font-size: 14px;
  padding-left: 10px;
}

.article__news {
  margin-top: 40px;
}

/* =================================== */
/*            Page: Video:             */
/* =================================== */

.video.pt-20 {
  padding-top: 20px;
}

.title__page {
  font-size: 22px;
  font-weight: 500;
  margin: 20px 0 40px;
}

/* =================================== */
/*             Page: News:             */
/* =================================== */

.p-news {
  padding-top: 30px;
}

.p-news .latest-news {
  margin-top: 0;
  padding-bottom: 0;
}

/* =================================== */
/*            Page: Search:            */
/* =================================== */

.p-search__request {
  color: #595959;
  font-size: 20px;
  font-weight: 500;
}

.p-search__list {
  margin-top: 30px;
}

.p-search__item {
  padding: 15px 0;
  border-bottom: 1px solid #c8c8c8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-search__img {
  max-width: 132px;width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-search__img a,
.p-search__img img {
  width: 100%;
  display: block;
}

.p-search__info {
  padding-left: 15px;
}

.p-search__title {
  max-width: 400px;width: 100%;
}

.p-search__title a {
  color: #2b2b2b;
}

.p-search__date {
  color: #939393;
  font-size: 14px;
  margin-top: 10px;
}

/* =================================== */
/*           Page: Articles:           */
/* =================================== */

.articles .news__group [class*='col'] {
  margin-bottom: 30px;
}

/* =================================== */
/*             Page: Paper:            */
/* =================================== */

.news__user {
  margin-top: 20px;
}

.news__user__img {
  overflow: hidden;
  border-radius: 50%;
  width: 34px;height: 34px;
}

.news__user__img img {
  display: block;
  width: 100%;height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.news__user__name {
  margin-left: 10px;
}

.read__icon {
  top: -2px;
  position: relative;
  width: 42px;height: 39px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.i-clip {
  background: url(/themes/2013/images/new/i-clip.png) center no-repeat;
}

.article__nav .footer__social {
  margin-left: 0;
}

.article__nav .footer__social__item {
  margin-left: 0 !important;
}

.article__nav .footer__social__item:not(:last-child) {
  margin-right: 5px !important;
}

.article__nav a:not(:last-child) {
  margin-right: 10px;
}

/* =================================== */
/*             Page: Video:            */
/* =================================== */

.p-video .row [class*='col'] {
  margin-bottom: 35px;
}

.p-video__item {
  position: relative;
  width: 100%;height: 200px;
}

.p-video__item:after,
.gallery__item:after,
.modal__gallery__item:after {
  pointer-events: none;
  top: 0;left: 0;right: 0;bottom: 0;
  background: -o-linear-gradient(bottom, rgb(0 0 0 / 40%) 0%, transparent 60%);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(0 0 0 / 40%)), color-stop(60%, transparent));
  background: linear-gradient(to top, rgb(0 0 0 / 40%) 0%, transparent 60%);
}

.p-video__btn {
  border-radius: 50%;
  top: 50%;left: 50%;
  position: absolute;
  width: 64px;height: 64px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url(/themes/2013/images/new/i-play-video.png) center no-repeat rgb(15 88 142 / 0.3);
}

.p-video__btn:hover {
  background: url(/themes/2013/images/new/i-play-video.png) center no-repeat rgb(15 88 142 / 0.7);
}

.p-video__txt {
  z-index: 1;
  color: #fff;
  font-weight: 500;
  left: 0;bottom: 0;
  padding: 15px 12px;
  position: absolute;
}

.modal__video iframe {
  display: block;
  width: 100%;height: 400px;
}

/* =================================== */
/*            Page: Gallery:           */
/* =================================== */

.gallery .row [class*='col'] {
  margin-bottom: 25px;
}

.gallery__item {
  color: #fff;
  font-weight: 500;
  position: relative;
  padding: 15px 12px;
  width: 100%;height: 200px;
  -webkit-box-shadow: 0 5px 10px rgb(0 0 0 / 0.5);
  box-shadow: 0 5px 10px rgb(0 0 0 / 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.gallery__txt {
  z-index: 1;
  position: relative;
}

/* ------------- *Modal -------------- */

.modal {
  z-index: 99;
  display: none;
  position: fixed;
  overflow-y: auto;
  background: rgb(0 0 0 / 0.7);
  top: 0;left: 0;right: 0;bottom: 0;
}

.modal__fullScreen {
  padding: 70px 0;
  min-height: 100%;
}

.modal__gallery__box {
  margin: 0 auto;
  position: relative;
  max-width: 960px;width: 100%;
}

.modal__close {
  z-index: 1;
  position: absolute;
  top: -33px;right: -33px;
  width: 22px;height: 22px;
  background: url(/themes/2013/images/new/i-close.png) center no-repeat;
}

.modal__close:hover {
  opacity: .7;
}

.modal__gallery .modal__close {
  top: -50px;right: -45px;
  width: 34px;height: 34px;
  background: url(/themes/2013/images/new/i-close-modal-big.png) center no-repeat;
}

.modal__gallery__sl .slick-arrow {
  width: 36px;height: 69px;
  background: url(/themes/2013/images/new/sl-controls-big.png) 0 0 no-repeat !important;
}

.modal__gallery__sl .slick-prev {
  left: -100px;
}

.modal__gallery__sl .slick-next {
  right: -100px;
  background-position: 100% 0 !important;
}

.modal__gallery__item {
  position: relative;
}

.modal__gallery__item img {
  width: 100%;
}

.modal__gallery__desc {
  z-index: 1;
  color: #fff;
  position: absolute;
  padding: 20px 20px 20px 35px;
  left: 0;right: 0;bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.modal__gallery__title {
  font-size: 22px;
  font-weight: 500;
  padding-right: 30px;
}

.modal__gallery__info {
  top: 7px;
  font-size: 14px;
  position: relative;
  text-align: right;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.modal__gallery__info p:last-child {
  margin-top: 3px;
}

.pagingInfo {
  color: #fff;
  font-size: 14px;
  margin-top: 30px;
  text-align: center;
}

/* Modal login */

.modal__box {
  margin: 0 auto;
  background: #fff;
  position: relative;
  border-radius: 5px;
  padding: 25px 30px 15px;
  max-width: 640px;width: 98%;
}

.modal__left,
.modal__right {
  width: calc(60% - 1px);
}

.modal__left {
  padding-right: 30px;
  padding-bottom: 20px;
  border-right: 1px solid #dfdfdf;
}

.modal__right {
  padding-left: 30px;
}

.modal__title {
  font-weight: 500;
  text-align: center;
}

.modal__form {
  margin-top: 20px;
}

.modal__input {
  margin-bottom: 20px;
}

.modal__input,
.modal__input input {
  width: 100%;
  display: block;
}

.modal__input input {
  color: #000;
  height: 40px;
  font-size: 14px;
  padding: 0 15px;
  font-weight: normal;
  font-family: 'PT Sans', sans-serif;
  border: 1px solid rgb(187 187 187 / 0.7);
}

.modal__input *::-webkit-input-placeholder {color: #5b5b5b;}
.modal__input *::-moz-placeholder          {color: #5b5b5b;}/* Firefox 19+ */
.modal__input *:-moz-placeholder           {color: #5b5b5b;}/* Firefox 18- */
.modal__input *:-ms-input-placeholder      {color: #5b5b5b;}

.modal__btn {
  width: 100%;height: 45px;
}

.modal__pass,
.modal__social,
.modal__txt {
  margin-top: 20px;
}

.modal__pass a {
  color: #0f588e;
  font-size: 14px;
}

.modal__pass a:hover,
.modal__txt a:hover {
  text-decoration: underline;
}

.modal__captcha {
  margin-bottom: 20px;
}

.modal__txt {
  color: #858585;
  font-size: 10px;
}

.modal__txt a {
  color: #0f588e;
}

/* ------------ *Default ------------- */
/* ------------ *Default ------------- */
/* ------------ *Default ------------- */
/* ------------ *Default ------------- */
/* ------------ *Default ------------- */
/* ------------ *Default ------------- */
/* --------- *Before::After ---------- */
.nav__item_drop .nav__link:after,
.news__link_big:after,
.live__title:after,
.latest-news__title a:after,
.latest-news__more a:after,
.footer__menu:before,
.comments__title:after,
.check__custom:before,
.p-video__item:after,
.gallery__item:after,
.modal__gallery__item:after,
.btn_blue:after {
  content: " ";
  position: absolute;
}

.mark {
  background-color: yellow;
}

.quoteAuthorPhoto {
  width:100%;
  height:100%;
  border-radius: 100%;
  background-size: cover !important;
  background-position: 50% !important;
}

audio, video {
  width: 100%;
}

.comments__list {
  display: none;
  /* margin-left: 0 !important; */
}

.social-auth {
  color: #fff;
  padding: 10px;
  font-size: 12px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  cursor: pointer;
  transition: 250ms;
  padding-left: 52px;
}

/*
.vk {
	background: url('../img/icons/vk.svg') 12px no-repeat;
	background-size: 18px;
	background-color: #6589ad;
	margin-bottom: 18px;
}

.vk:hover {
	background-color: #557a9e;
}*/

.facebook {
  background: url('../img/icons/facebook.svg') 12px no-repeat;
  background-size: 18px;
  background-color: #4664a0;
}

.facebook:hover {
  background-color: #354f82;
}

.recoveryMessage {
  margin-bottom: 36px;
  margin-top: 18px;
}

.customHtmlBlock {
  display: block;
  margin-top: 32px;
  margin-bottom: 32px;
}

.article__box ol {
  margin-left: 16px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.article__box li {
  list-style: inherit;
}

.articleContent ul {
  margin-left: 16px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.subLogo {
  margin-left: 10px;
  margin-right: 0px;
  margin-top: 7px;
  height: 30px;
  display:none;
}

.loadMoreNews {
  margin-top: 24px;
  margin-bottom: 36px;
  width: 100%;
  background: #e2e2e2;
  padding: 12px;
}

.loadMoreNews:hover {
  background: #dcdbdb;
}

.loadMoreNews:active {
  background: #f3f1f1;
}

.frontPageSectionHeader {
  font-family: 'PT Sans';
  /* color: #004e87; */
  color: #251170;
  margin-bottom: 20px;
}

.frontPageSectionLink {
  border-bottom: 1px dotted;
  color: inherit;
}

.footer__text a {
  color: inherit;
  border-bottom: 1px dotted;
}

main .rightcol50, .colhidden, .colview {
  width: auto;
  float: none;
}

a.low-visio-link {
  display: none;
}

main .pad20hor {
  padding-left: 0;
  padding-right: 0;
}

main .stronglink {
  font-family: 'Noto Serif', serif;
}

main .newslist .lightp {
  font-style: normal;
  font-size: 14px;
}

main .newslist .time {
  font-size: 12px;
  top: 4px;
}

main .news-date {
  background-color: #251170;
  color: #fff !important;
  padding: 5px 10px;
  width: auto;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 10px;
}

main .items .pad30hor.pad10ver {
  padding-left: 0;
  padding-right: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

main .pager.pager {
  padding: 0;
  margin-top: 32px;
}

main .pager > span {
  display: none !important;
}

main .pager .yiiPager {
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

main .pager .yiiPager .page {
  padding: 0;
}

main .pager .yiiPager .page a {
  padding: 0 16px 16px;
  display: block;
  font-family: 'Open Sans', 'PT Sans Caption', sans-serif;
  font-size: 20px;
  color: #251170;
  border-bottom: 2px solid transparent;
  transition: none;
}

main .pager .yiiPager .page.selected > a {
  font-weight: 600;
  border-color: currentColor;
}

main .pager .yiiPager .page:not(.selected) > a:hover {
  color: #CDD5DF;
  border-color: #CDD5DF;
}

main .pager .yiiPager .previous,
main .pager .yiiPager .next {
  padding: 0;
  margin-inline: 16px;
  align-self: flex-start;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  mask-image: url("/themes/2013/images/gallery/arrow-left-bold.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: #251170;
}

main .pager .yiiPager .next {
  transform: rotate(180deg);
}

main .pager .yiiPager .previous:hover,
main .pager .yiiPager .next:hover {
  background-color: #CDD5DF;
}

main .pager .yiiPager .previous > a,
main .pager .yiiPager .next > a {
  display: block;
  opacity: 0;
}

main .pager .yiiPager .hidden {
  display: none;
}

/* media for pager */
@media screen and (max-width: 767px) {
  main .pager .yiiPager .page a {
    font-size: 18px;
    padding: 0 10px 10px;
  }

  main .pager .yiiPager .previous,
  main .pager .yiiPager .next {
    margin-inline: 10px;
    width: 16px;
    height: 16px;
  }
}

main .container h1 {
  padding: 20px 0;
}

.news__main.date {
  border: none !important;
  padding: 0;
  font-size: 12px;
}

a.theme-link {
  color: #004e87 !important;
}

article {
  margin-bottom: 10px;
}

article h1,
article h2 {
  font-family: 'Noto Serif', serif;
}

article p {
  font-family: 'PT Sans', sans-serif;
  font-size: 16px;
  line-height: 1.5em;
}

article>p, article>time {
  padding: 5px 0;
}

.rubarticle {
  background: #251170 !important;
}

.artcommentlink {
  float: left;
  padding: 15px 40px 5px 40px;
  background: #251170 !important;
  color: #fff;
  font-weight: 400;
}

.floatright.artserv {
  display: none;
}

.under_article_block .tab {
  margin: 0 !important;
  padding: 20px 0;
}

.under_article_block .form-label label {
  position: static;
}

.under_article_block .form-radio input[type='radio'] {
  display: inline;
}

.form-label label, #portlet-poll-form label {
  margin: 10px 0 10px 30px;
  display: block;
}

.poll-title {
  background: #251170 !important;
}

.darkblueactive {
  background: #251170 !important;
  color: #fff;
}

.allblogers {
  display: block;
  text-align: center;
  color: #fff;
  background: #251170 !important;
  padding: 5px;
  font-weight: 700;
}

#page-login label, #registration-form label, #recovery-password label, #change-password label {
  position: static;
}

.login > p {
  padding: 20px 0;
}

.login p.note {
  margin-bottom: 20px;
}

.login input {
  border-bottom: 1px solid #dedede;
}

.login .row {
  margin-bottom: 20px;
  margin-left: 0;
  margin-right: 0;
}

.login p.hint {
  margin-bottom: 20px;
}

.login p.hint * {
  color: #004e87 !important;
}

.login p.hint a {
  margin-left: 0;
}

.login input[type='checkbox'] {
  display: inline;
  width: auto;
  margin-bottom: 3px;
  margin-right: 5px;
}

#UserLogin_rememberMe + label {
  display: inline;
}

.login .loginbuttons {
  margin-top: 20px;
}

.login .loginbuttons input[type='submit'] {
  border-bottom: 0;
  background: #251170;
  color: #fff;
}

.login h2 {
  font-size: 16px;
}

.login .auth-title {
  color: #251170;
  font-weight: bold;
}

.auth-services li {
  display: inline-block;
  margin-top: 15px;
}

.auth-services li a {
  margin-right: 20px;
  margin-left: 0;
}

.jp-audio {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .search-page__container {
    width: 100%;
  }
}

.search_page .search_page_form {
  margin-left: 0;
}

.search_page .grbgr {
  background: transparent !important;
}

.search_page_form {
  margin: 15px 0px 30px 30px;
}

.search_page .search_page_form form {
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 16px;
}

.search_page .search_page_form .search_page_input {
  width: auto;
  max-width: 100%;
  padding: 6px 10px;
  color: #999;
  font: 21px 'PT Sans Caption', sans-serif;
  border: 1px solid #ccc;
}

.search_page .search_page_form .search_page_input:focus {
  color: #867bae;
  border-color: #473782;
}

.search_page .search_page_form button {
  width: 130px;
  min-height: 32px;
  color: #fff;
  border: 0;
  font-size: 14px;
  cursor: pointer;
  background: #251170;
}

.polls_page .d-none iframe,
.polls_page .telegram-button {
  display: none;
}

.polls_page .list-view h1 {
  font-size: 21px;
}

.polls_page .list-view .box.whitebgr {
  width: auto !important;
  max-width: 100% !important;
  min-width: auto !important;
}

.polls_page .pad30hor.pad20ver {
  padding: 30px 0 !important;
}

.polls_page .form-label label {
  position: static;
}

.polls_page .form-radio input[type='radio'] {
  display: inline;
  margin-bottom: 3px;
}

.polls_page .pad10hor {
  padding-left: 0;
  padding-right: 0;
}

#pollBlock .form-label label {
  position: static;
}

#pollBlock .form-radio input[type='radio'] {
  display: inline;
  margin-bottom: 3px;
}

#sch {
  display: none !important;
}

.banner .tab {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.tab .fluid-banner a {
  display: block;
  /* margin-bottom: 30px; */
  margin-bottom: 10px;
}

iframe {
  width: 100% !important;
}

article span.author a {
  display: block;
  margin-bottom: 30px;
  color: #251170;
}

.row.top_banner .tab {
  width: 100%;
  color: rgba(0, 0, 0, 0.60);
}

#mainTopVideoBlock iframe, #mainTopVideoBlock video {
  min-height: 240px;
  margin-bottom: 20px;
}

article ol li, article ul li {
  list-style: disc;
  list-style-position: inside;
}

article video {
  position: static !important;
}

.slider_marquee_container {
  visibility: hidden;
  white-space: nowrap;
  width: 1000%;
  height: 0;
}

.errorMessage {
  padding-bottom: 15px;
  color: red;
}

.bxslider li {
  text-align: center;
}

.newslist .stronglink:hover {
  color: #422f8c;
}

.gallery-thumb-container .bx-wrapper, .gallery-thumb-container .bxslider, .gallery-thumb-container .bxslider li {
  height: 100%;
}

.gallery-thumb-container .bxslider li img{
  max-width: 100%;
  max-height: 100%;
}

.gallery-thumb-container .bx-controls-direction a {
  top: 50%;
  margin-top: -15px;
}

/********************************
*  Telegram Button Styles Start *
********************************/
.btn-primary {
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-color: #251170;
  color: #fff;
  border: 0;
  border-radius: 100px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  /* position as relative as :after is absolute  */
  position: relative;
  /* Start pulseButton animation */
  animation-name: pulseButton;
  animation-delay: 1s;
  animation-duration: 1.5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: normal;
  /* Slow & ease scaling down when coming off hover */
  transform: scale(1);
  /*   transition: all ease 0.5s; */
  transition: all linear 1s;
}

/* Medium Size Button */
.btn-md {
  height: 60px;
  max-width: 300px;
  width: 100%;
  font-size: 22px;
  line-height: 25px;
  /* Creates space for the play icon to sit */
  padding-right: 60px;
  margin-left: 10px;
}

/* Adds the play icon to the button */
.btn-primary:after {
  content: "";
  width: 40px;
  height: 40px;
  /* online play icon image as codepen doens't allow image uploads */
  background-image: url(https://cdn4.iconfinder.com/data/icons/logos-and-brands/512/335_Telegram_logo-512.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 50%;
  position: absolute;
  top: 50%;
  right: 26px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* Stop animation on hover and scale button up */
.btn-primary:hover {
  animation: none;
  /* transform: scale(1.1); */
  transition: all linear 0.5s;
}

.captcha a {
  color: #004e87 !important;
}

/* pulseButton animation */
@keyframes pulseButton {

  0% {
    -webkit-box-shadow: 0;
    box-shadow: 0;
  }
  50% {
    -webkit-box-shadow: 0 0 0 10px rgb(37 17 112 / 30%);
    box-shadow: 0 0 0 10px rgb(37 17 112 / 30%);
  }
  100% {
    -webkit-box-shadow: 0 0 0 25px rgb(37 17 112 /0%);
    box-shadow: 0 0 0 10px rgb(37 17 112 / 0%);
  }
}

/********************************
*  Telegram Button Styles End *
********************************/

.artline.artline-new {
  background-color: transparent !important;
}

.text-mdia-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
}
.news__txt-icon, .news__txt-icon-main {
  position: relative;
}

.text-mdia-icon img {
  position: absolute;
  top: 7px;
}

.news__txt-icon-main .text-mdia-icon img {
  top: 4px;
  color: white;
  filter: brightness(0) invert(1);
}

.news-list-icon {
  width: 24px;
  height: 24px;
  position: relative;
  display: inline-block;
}

.news-list-icon img {
  float: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 7px;
}

@font-face {
  font-family: 'OpenSansCondensed';
  src: url('/themes/2013/css/fonts/OpenSansCondensed-Light.woff2') format('woff2');
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: 'OpenSansCondensed';
  src: url('/themes/2013/css/fonts/OpenSansCondensed-SemiBold.woff2') format('woff2');    font-style: normal;
  font-weight: 600;
}
@font-face {
  font-family: 'OpenSansCondensed';
  src: url('/themes/2013/css/fonts/OpenSansCondensed-Bold.woff2') format('woff2');
  font-style: normal;
  font-weight: 700;
}

.photo-gallery {
  padding-bottom: 100px;
  position: relative;
}

.photo-gallery__container, .video-gallery__container{
  max-width: 1360px !important;
}

.video-gallery__row {
  margin-right: -30px !important;
  margin-left: -30px !important;
}

.video-gallery__col {
  padding-right: 30px !important;
  padding-left: 30px !important;
}

.photo-gallery__row {
  margin-right: -20px;
  margin-left: -20px;
}

.photo-gallery__top {
  margin-bottom: 40px;
}

.photo-gallery__row:last-child {
  margin-bottom: 0;
}

.photo-gallery__col {
  padding-right: 20px !important;
  padding-left: 20px !important;
}

.photo-gallery__top .photo-item:last-child {
  margin-bottom: 0;
}

.photo-gallery__heading {
  padding: 40px 0;
}

.photo-gallery__heading--flex {
  display: flex;
  align-items: center;
}

.photo-gallery__title-container {
  position: relative;
  display: flex;
  gap: 54px;
  min-height: 64px;
  transform: translateX(calc(-54px - 64px));
}

@media screen and (max-width: 1439px) {
  .photo-gallery__title-container {
    flex-direction: column;
    gap: 16px;
    transform: translateX(0);
  }
}

.photo-gallery__title {
  margin-bottom: 12px;
  font-family: 'PT Sans', sans-serif;
  font-size: 36px;
  padding: 0 !important;
}

.photo-gallery__description {
  font-family: 'Noto Serif', 'PT Sans', sans-serif;
  font-size: 22px;
}

.photo-gallery__description p {
  padding: 5px 0;
}

.photo-gallery__date {
  color: white;
  margin-left: 20px;
  padding: 5px 15px;
  border-radius: 15px;
  border: 1px solid black;
  background-color: #202939;
  font-size: 14px;
  font-weight: 700;
  line-height: 143%;
}

.photo-gallery #icons {
  position: relative;
  padding: 0;
  display: flex;
  width: auto;
}

.photo-gallery #icons a {
  margin-right: 5px;
  margin-bottom: 0;
  height: 33px;
}

.photo-gallery__slider-wrapper {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  row-gap: 36px;
  width: auto !important;
  transform: none !important;
}

.photo-gallery__slide {
  margin: 0 !important;
  width: 188px !important;
  height: auto !important;
}

@media screen and (max-width: 768px) {
  .photo-gallery__slider-wrapper{
    gap: 1%;
  }

  .photo-gallery__slide {
    width: 32% !important;
    height: 32% !important;
  }
}

.photo-gallery__link {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.2s ease-in-out;
}

.photo-gallery__link:hover {
  transform: scale(1.05);
}

.photo-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-gallery__info {
  margin-top: 10px;
  display: flex;
  align-items: center;
}

.photo-gallery__info #photoiconwrapper .vk    {
  background: url(/themes/2013/images/sprite.png) -80px -120px;
}

.photo-gallery__info #photoiconwrapper .lj {
  background: url(/themes/2013/images/sprite.png) -80px -296px;
}

.photo-gallery__info #photoiconwrapper .evernote {
  background: url(/themes/2013/images/sprite.png) -80px -340px;
}

.photo-gallery__back {
  display: flex;
  width: 64px;
  height: 64px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 32px;
  background: rgba(0, 0, 0, 0.20);
  transition: transform 0.2s ease-in-out;
}

.photo-gallery__back > span {
  display: block;
  width: 32px;
  height: 32px;
  mask: url("/themes/2013/images/gallery/arrow-left-bold.svg") no-repeat center;
  background-color: #FFFFFF;
}

@media screen and (max-width: 767px) {
  .photo-gallery__back {
    width: 48px;
    height: 48px;
  }

  .photo-gallery__back > span {
    width: 24px;
    height: 24px;
  }

  .photo-item__box {
    justify-content: flex-end;
  }
}

.photo-gallery__comments, .photo-gallery__share, .photo-gallery__time, .photo-gallery__views {
  text-shadow: 0px 12px 16px rgba(16, 24, 40, 0.08), 0px 4px 6px rgba(16, 24, 40, 0.03);
  font-size: 12px;
  font-weight: 400;
  margin-right: 12px;
  display: block;
  position: relative;
}

.photo-gallery__comments, .photo-gallery__share, .photo-gallery__views {
  color: #9aa4b2;
  padding-left: 21px;
}

.photo-gallery__comments span, .photo-gallery__share span {
  border-bottom: 1px dashed #9aa4b2;
}

.photo-gallery__share  {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.photo-gallery__share span {
  margin-right: 12px;
}

.photo-gallery__socials {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(100%, -50%);
  background: #F4F6F8;
  border-radius: 50px;
  width: auto;
  padding: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  z-index: 1;
}

.photo-gallery__share:hover .photo-gallery__socials{
  opacity: 1;
  visibility: visible;
}

.photo-gallery__comments:before, .photo-gallery__share:before, .photo-gallery__views:before {
  content: "";
  background-color: #9aa4b2;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.photo-gallery__comments:before {
  mask: url("/themes/2013/images/gallery/chat-text-fill.svg") no-repeat center;
}

.photo-gallery__views:before {
  mask: url("/themes/2013/images/gallery/eye-fill.svg") no-repeat center;
}

.photo-gallery__share:before{
  mask: url("/themes/2013/images/gallery/share-fill.svg") no-repeat center;
}

.photo-gallery__top-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 40px;
}

.photo-gallery__count {
  padding: 5px 15px;
  border-radius: 15px;
  background: #dce1e7;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 143%;
  white-space: nowrap;
}

.photo-gallery__top-line span {
  width: 100%;
  height: 1px;
  background: #dce1e7;
  margin-left: 40px;
}

.photo-gallery__nav {
  display: none;
}

.photo-gallery.photo-gallery--gal {
  padding: 0;
  height: 100%;
}


@media (max-width: 1199px) {

  .video-gallery__row {
    margin-right: -15px !important;
    margin-left: -15px !important;
  }

  .video-gallery__col {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
}

@media (max-width: 767px) {

  .video-gallery__container{
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .photo-gallery--gal:before {
    /*content: "";*/
    background-color: #202939;
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 360px;
    height: 360px;
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
  }

  .photo-gallery__heading {
    padding: 30px 0;
  }

  .photo-gallery__heading--flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .photo-gallery__title {
    font-size: 36px;
    line-height: 117%;
    letter-spacing: 0.36px;
  }

  .photo-gallery__date {
    margin-left: 0;
    order: -1;
    margin-bottom: 20px;
  }

  .photo-gallery__top {
    margin-bottom: 10px;
  }

  .photo-gallery__info {
    flex-wrap: wrap;
    margin-top: 20px;
  }

  div.photo-gallery__time {
    width: 100%;
    margin-bottom: 12px;
    color: #202939;
  }

  .photo-gallery__comments, .photo-gallery__share, .photo-gallery__views, .photo-gallery__time {
    font-size: 14px;
    line-height: 20px;
  }

  .photo-gallery__comments, .photo-gallery__views {
    margin-right: 24px;
  }

  .photo-gallery__socials {
    right: 50%;
    top: 110%;
    transform: translate(50%, 0%);
  }

  .photo-gallery__top-line {
    display: none;
  }
}

.photo-item {
  position: relative;
  padding-bottom: 66.6%;
  margin-bottom: 40px;
  height: 0;
  background-color: rgba(0, 0, 0, 0.8);
}

.photo-item--big {
  height: 100%;
}

.photo-item--big .photo-item__title {
  font-size: 38px;
  line-height: 125%;
  letter-spacing: 0.48px;
  margin-bottom: 20px;
  -webkit-line-clamp: 5;
}

.photo-item__link {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  color: white;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.photo-item__link:hover .photo-item__img{
  transform: scale(1.1);
}

.photo-item__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  transition: all 0.2s ease-in-out;
  opacity: 0.9;
}

.photo-item__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-item__box {
  width: 100%;
  padding: 30px 20px 10px;
  position: relative;
  text-shadow: 1px 1px 3px rgba(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2), transparent);
}

.photo-item__box--md {
  padding: 0 30px 40px;
}

.photo-item__tag {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.40);
  background: rgba(255, 255, 255, 0.20);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 143%;
  margin-bottom: 30px;
}

.photo-item__title {
  font-size: 24px;
  line-height: 117%;
  letter-spacing: 0.24px;
  margin-bottom: 10px;
  display: -webkit-box;
  font-family: 'Noto Serif', 'PT Sans', sans-serif;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.photo-item__info {
  font-size: 12px;
  font-weight: 700;
}

.photo-item__info span {
  color: rgba(255, 255, 255, 0.60);
  font-weight: 400;
  margin-left: 10px;
}

.photo-item__info span:only-child {
  margin-left: 0;
}

@media (max-width: 991px) {

  .video-gallery__col--affix {
    order: -1;
  }

  .photo-item {
    margin-bottom: 10px;
  }

  .photo-item__title {
    font-size: 18px;
    line-height: 133%;
    letter-spacing: 0.18px;
  }

  .photo-item--big {
    height: auto;
    padding-bottom: 136%;
    margin-bottom: 10px !important;
  }

  .photo-item--big .photo-item__title {
    font-size: 36px;
    margin-bottom: 10px;
    line-height: 115%;
  }

  .photo-item__box {
    padding-top: 60px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .photo-item__box--md {
    padding: 20px 20px 20px;
  }

  .photo-item__tag {
    font-size: 12px;
    margin-bottom: auto;
  }

  .photo-item__info span {
    margin-left: 0;
    display: block;
    margin-top: 5px;
  }
}

.video-item {
  display: block;
  margin-bottom: 90px;
  transition: none;
  width: 100%;
  color: rgba(0, 0, 0, 0.60);
}

.video-item.only-name {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.20);
}

@media (min-width: 992px) {
  .video-item:hover .video-item__play {
    width: 80px;
    height: 80px;
  }
}

.video-item__head {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 62.5%;
  position: relative;
  margin-bottom: 10px;
}

.video-item__preview {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.video-item__preview img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease-out;
}

.video-item__play {
  width: 72px;
  height: 72px;
  background-color: rgba(0, 0, 0, 0.40);
  border: 2px solid rgba(255, 255, 255, 0.40);
  border-radius: 50%;
  padding: 5px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.video-item__play img {
  width: 32px;
  height: 32px;
  object-fit: cover;
}

.video-item__body {
  padding: 20px 0px 0px 20px;
  color: rgba(0, 0, 0, 0.60);
}

.video-item__body-link {
  display: block;
}

.video-item__info {
  font-size: 12px;
  font-weight: 700;
  color: #2b2b2b;
}

.video-item__info span {
  font-weight: 400;
  color: rgba(0, 0, 0, 0.60);
  margin-left: 10px;
}

.video-item__name {
  color: #2b2b2b;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: 0.4px;
  margin-top: 10px;
  font-family: 'Noto Serif', 'PT Sans', sans-serif;
}

.video-item__text {
  color: rgba(0, 0, 0, 0.60);
  font-size: 18px;
  line-height: 140%;
  font-weight: 400;
  margin-top: 10px;
}

.video-item__text a{
  color: rgba(0, 0, 0, 0.60);
}

.video-item__text p{
  padding: 5px 0;
}

.video-item.only-name .video-item__text {
  display: none;
}

@media (max-width: 767px) {

  .video-item {
    margin-bottom: 48px;
  }

  .video-item.only-name {
    margin-bottom: 20px;
  }

  .video-item__head {
    padding-bottom: 59%;
  }

  .video-item__play {
    width: 60px;
    height: 60px;
  }

  .video-item__body {
    padding: 10px 0px 0px 0px;
  }

  .video-item__info span {
    display: block;
    margin-left: 0;
    margin-top: 8px;
  }

  .video-item__name {
    font-size: 30px;
    margin-top: 10px;
    line-height: 140%;
  }

  .video-item__text {
    font-size: 16px;
    margin-top: 12px;
  }

}


.nx-affix.absolute {
  position: absolute;
}

.nx-affix.fixed {
  z-index: 9;
}

.nx-affix-list {
  padding: 40px 40px 60px 40px;
  background: #202939;
  color: #FFF;
}

.nx-affix-list__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.24px;
  margin-bottom: 30px;
}

.nx-affix-list__item {
  position: relative;
  padding: 10px 0 10px 34px;
  transition: all 0.4s ease-in-out;
}

.nx-affix-list__item:before {
  content: "";
  background-color: black;
  width: 4px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.nx-affix-list__item.active:before {
  background-color: white;
}

.nx-affix-list__item.active .nx-affix-list__link {
  color: white;
  font-weight: 600;
}

.nx-affix-list__link {
  color: rgba(255, 255, 255, 0.60);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.36px;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 1199px) {

  .nx-affix-list {
    padding: 30px 20px 40px 20px;
  }
}

@media (max-width: 991px) {
  .nx-affix-list {
    display: none;
  }
}

.checkbox {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  display: block;
  user-select: none;
  margin-bottom: 30px;
  font-size: 16px;
  color: #2b2b2b !important;
}

.checkbox__input {
  display: none;
}

.checkbox__input + .checkbox__text {
  display: inline-block;
  vertical-align: top;
  position: relative;
  cursor: pointer;
  padding: 0 0 0 34px;
  min-height: 24px;
}

.checkbox__input + .checkbox__text:before, .checkbox__input + .checkbox__text:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 2px;
  border-radius: 2px;
  line-height: 1;
  width: 20px;
  height: 20px;
  transition: all 0.2s ease-in-out;
  text-align: center;
  box-shadow: none;
}

.checkbox__input + .checkbox__text:before {
  background: white;
  border: 1px solid #2b2b2b;
}

.checkbox__input + .checkbox__text:after {
  content: '';
  background-image: url("/themes/2013/images/gallery/check.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  visibility: hidden;
  opacity: 0;
  transform: scale(0, 0);
}

.checkbox__input:checked + .checkbox__text:before {
  border-color: black;
}
.checkbox__input:checked + .checkbox__text:after {
  opacity: 1;
  visibility: visible;
  transform: scale(1, 1);
}

.checkbox__text {
  font-size: 16px;
  font-weight: 400;
}
