.commentsApp {
  padding: 30px 20px 10px;
}
.commentsApp * {
  outline: 0;
}
.commentsApp__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-flow: row wrap;
}
.commentsApp__heading {
  color: #222;
  font: 600 30px/35px calibre, sans-serif;
}
.commentsApp__headerCounter {
  font-weight: 400;
}
.commentsApp__sorting {
  position: relative;
}
.commentsApp__textStyledBtn {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: all 0.2s ease-out;
}
.commentsApp__textStyledBtn:hover {
  opacity: 0.8;
}
.commentsApp__sortingSelected {
  font: 600 15px/18px calibre, sans-serif;
  color: #666;
}
.commentsApp__sortingSelected:first-letter {
  text-transform: uppercase;
}
.commentsApp__Box {
  display: none;
  position: absolute;
  width: auto;
  z-index: 9;
  white-space: nowrap;
  top: -14px;
  right: 0;
  background: #fff;
  padding: 14px 20px 14px 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.commentsApp__Box--active {
  display: block;
}
.commentsApp__Box--options {
  padding: 13px 15px;
  top: 27px;
}
.commentsApp__BoxOption {
  display: block;
  text-align: left;
  position: relative;
  font: 400 15px/18px calibre, sans-serif;
  margin: 10px 0;
  color: #666;
}
.commentsApp__BoxOption:first-of-type {
  margin-top: 0;
}
.commentsApp__BoxOption:last-of-type {
  margin-bottom: 0;
}
.commentsApp__sorting .commentsApp__BoxOption--active {
  font: 600 15px/18px calibre, sans-serif;
}
.commentsApp__sorting .commentsApp__BoxOption--active:before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 8px;
  left: -20px;
  top: 5px;
  background-image: url("918bbdb696c0de4adb461edb08bf198f9b371cfd.svg");
}
.commentsApp__BoxOption--report {
  font: 600 15px/18px calibre, sans-serif;
}
.commentsApp__sortingTriangle {
  vertical-align: middle;
  margin-left: 7px;
}
.commentsApp__sortingTrianglePath {
  fill: #666;
}
.commentsApp__articleTitle {
  color: #999;
  font: 400 15px/21px calibre, sans-serif;
  padding: 10px 0 15px;
}
.commentsApp__infoMessage {
  height: 0;
  transition: height 0.3s ease-in-out, margin-top 0.3s ease-in-out;
  width: 100%;
  font: 600 15px/18px calibre, sans-serif;
  padding: 0 6px;
  margin-top: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}
.commentsApp__infoMessage--error,
.commentsApp__infoMessage--success {
  height: 30px;
  margin: 40px 0 22px;
  height: fit-content;
  padding: 6px 5px 5px;
  transition: height 0.3s ease-in-out, margin-top 0.3s ease-in-out;
}
.commentsApp__infoMessage--error {
  background-color: #ffcdd2;
  color: #d32f2f;
}
.commentsApp__infoMessage--success {
  background-color: #e8f5e9;
  color: #388e3c;
}
.commentsApp__comment .commentsApp__infoMessage {
  width: calc(100% - 40px);
  margin-left: 40px;
}
.commentsApp__subComments .commentsApp__infoMessage {
  width: 100%;
  margin-left: 0;
}
.commentsApp__infoMessageClose {
  cursor: pointer;
}
.commentsApp__textField {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.06);
  border: 1px solid #ccc;
  border-radius: 2px;
}
.commentsApp__comment .commentsApp__textField {
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.commentsApp__comment .commentsApp__textField--active {
  height: auto;
  opacity: 1;
  margin: 36px 0 30px 40px;
}
.commentsApp__textField:not(.commentsApp__textField--active)
  ~ .commentsApp__infoMessage {
  width: 100%;
  margin-left: 0;
}
.commentsApp__addCommentTextarea {
  font: 400 18px/25px calibre, sans-serif;
  color: #999;
  width: 100%;
  border: none;
  resize: none;
  min-height: 48px;
  display: block;
  padding: 12px 20px 11px;
}
.commentsApp__addCommentTextarea--revealBottom {
  color: #222;
  resize: vertical;
  transition: min-height 1s ease-in-out;
  min-height: 110px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.04);
}
.commentsApp__addCommentTextarea--revealBottom::-webkit-input-placeholder {
  color: #222;
}
.commentsApp__addCommentTextarea--revealBottom::-moz-placeholder {
  color: #222;
}
.commentsApp__addCommentTextarea--revealBottom:-ms-input-placeholder {
  color: #222;
}
.commentsApp__addCommentTextarea--revealBottom:-moz-placeholder {
  color: #222;
}
.commentsApp__addCommentTextarea::-webkit-input-placeholder {
  color: #999;
}
.commentsApp__addCommentTextarea::-moz-placeholder {
  color: #999;
}
.commentsApp__addCommentTextarea:-ms-input-placeholder {
  color: #999;
}
.commentsApp__addCommentTextarea:-moz-placeholder {
  color: #999;
}
.commentsApp__bottom {
  justify-content: space-between;
  align-items: center;
  flex-flow: row wrap;
  box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.04);
  border-radius: 0 0 2px 2px;
  display: none;
  padding: 0 20px;
}
.commentsApp__addCommentTextarea--revealBottom + .commentsApp__bottom {
  padding: 20px;
  display: flex;
}
.commentsApp__bottomFrame {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 20px;
  transition: height 0.5s ease-in-out;
  padding-right: 10px;
  outline: 0;
}
.commentsApp__bottomFrame--expand {
  height: 36px;
  transition: height 0.5s ease-in-out;
}
.commentsApp__bottomFrame--expand:after {
  transform: rotate(180deg);
}
.commentsApp:not(.commentsApp--logged) .commentsApp__bottomFrame {
  visibility: hidden;
  width: 1px;
}
.commentsApp.commentsApp--guest .commentsApp__bottomFrame {
  visibility: visible;
  width: auto;
}
.commentsApp__bottomFrame:after {
  content: "";
  position: absolute;
  right: 0;
  top: 7px;
  width: 8px;
  height: 4px;
  background-image: url("7ea96a809ed22e5ed1b721df15c93a528fe90293.svg");
  background-repeat: no-repeat;
  cursor: pointer;
}
.commentsApp__bottomFrame .commentsApp__bottomFrameElement {
  background: transparent;
  border: 0;
  text-align: left;
  font: 600 15px/18px calibre, sans-serif;
}
.commentsApp__bottomFrame .commentsApp__userName {
  padding: 0 6px 0 0;
  cursor: pointer;
  color: #666;
  transition: all 0.2s ease-out;
}
.commentsApp__bottomFrame .commentsApp__userName:hover {
  opacity: 0.8;
}
.commentsApp__bottomFrame .commentsApp__logout {
  cursor: pointer;
}
.commentsApp__bottomFrame .commentsApp__logout:hover {
  color: #000;
}
.commentsApp__bottomFrame .commentsApp__change {
  position: absolute;
  width: max-content;
  display: none;
  top: -48px;
  left: 0;
  background: #fff;
  padding: 13px 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 10;
  font: 600 15px/18px calibre, sans-serif;
  color: #666;
}
.commentsApp__bottomFrame .commentsApp__change--active {
  display: inline-block;
}
.commentsApp__button {
  background: #444;
  color: #fff;
  border: none;
  border-radius: 15px;
  padding: 6px 20px;
  text-transform: uppercase;
  transition: all 0.2s ease-out;
  font: 600 15px/18px calibre, sans-serif;
  cursor: pointer;
}
.commentsApp__button:hover {
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1), 0 4px 7px 0 rgba(0, 0, 0, 0.2);
  filter: brightness(1.2);
  -webkit-filter: brightness(120%);
}
.commentsApp.commentsApp--logged .commentsApp__button--login {
  display: none;
}
.commentsApp.commentsApp--logged
  .commentsApp__popup
  .commentsApp__button--login {
  display: block;
}
.commentsApp:not(.commentsApp--logged) .commentsApp__button--send {
  display: none;
}
.commentsApp__commentsContainer {
  margin: 26px 0 0;
  display: flex;
  flex-direction: column;
}
.commentsApp__comment {
  margin: 0 0 5px;
  padding: 18px 0 0;
  border-top: 1px solid #e5e5e5;
}
.commentsApp__comment--first,
.commentsApp__comment:first-of-type {
  padding: 0;
  border-top: none;
}
.commentsApp__commentHead {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
}
.commentsApp__commentAuthor {
  font: 600 18px/22px calibre, sans-serif;
  margin-right: 10px;
  color: #222;
}
.commentsApp__commentDate {
  font: 400 18px/22px calibre, sans-serif;
}
.commentsApp__commentBody {
  font: 400 18px/25px calibre, sans-serif;
  color: #222;
  margin: 6px 0 10px;
}
.commentsApp__commentDate {
  color: #999;
}
.commentsApp__subComments {
  padding-left: 40px;
  transition: height 0.3s ease-in-out;
  height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.commentsApp__comment--expand .commentsApp__subComments {
  transition: height 0.3s ease-in-out;
  height: 100%;
  overflow: visible;
}
.commentsApp__subComments .commentsApp__textField {
  margin-left: 0;
}
.commentsApp__subComments .commentsApp__comment {
  padding-top: 0;
  border: none;
  margin-top: 16px;
}
.commentsApp__subComments .commentsApp__comment:last-of-type {
  margin-bottom: 0;
}
.commentsApp__options {
  position: relative;
  margin-left: auto;
}
.commentsApp__optionsDots {
  position: relative;
  min-width: 16px;
  min-height: 16px;
}
.commentsApp__optionsDots:before {
  content: "";
  display: block;
  background-image: url("8e03e453f67c3955365e6a5b60b2fcb67a20783f.svg");
  width: 12px;
  height: 3px;
  margin-left: 2px;
}
.commentsApp__optionsDots:focus ~ .commentsApp__Box,
.commentsApp__optionsDots ~ .commentsApp__Box:hover {
  display: block;
}
.commentsApp__commentFooter {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
}
.commentsApp__commentFooter > :not(:last-child) {
  margin-right: 30px;
}
.commentsApp__votes {
  font: 400 15px/25px calibre, sans-serif;
  position: relative;
}
.commentsApp__votesInfo {
  display: none;
  position: absolute;
  top: -35px;
  width: 260px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  padding: 4px 8px;
}
.commentsApp__votesInfo--active {
  display: block;
}
.commentsApp__votesInfo--close {
  position: absolute;
  right: 10px;
  cursor: pointer;
}
.commentsApp__votesInfo a {
  font-weight: 600;
}
.commentsApp__vote {
  padding: 0;
  color: #666;
  font: 400 15px/25px calibre, sans-serif;
}
.commentsApp.commentsApp--logged .commentsApp__vote--unlogged,
.commentsApp:not(.commentsApp--logged) .commentsApp__vote--logged {
  display: none;
}
.commentsApp__vote--up {
  margin-right: 30px;
}
.commentsApp__vote--up:hover .commentsApp__voteSVGPath--fill {
  fill: #48c110;
}
.commentsApp__vote--down:hover .commentsApp__voteSVGPath--fill {
  fill: #e30000;
}
.commentsApp__vote--active.commentsApp__vote--up
  .commentsApp__voteSVGPath--fill {
  fill: #48c110;
}
.commentsApp__vote--active.commentsApp__vote--down
  .commentsApp__voteSVGPath--fill {
  fill: #e30000;
}
.commentsApp__voteSVG {
  vertical-align: middle;
  margin: 0 5px 0 0;
}
.commentsApp__voteSVGPath--transparent {
  fill: none;
}
.commentsApp__voteSVGPath--fill {
  fill: #666;
}
.commentsApp__reply,
.commentsApp__showReplies {
  font: 600 15px/25px calibre, sans-serif;
}
.commentsApp__reply {
  color: #222;
}
.commentsApp__showReplies {
  color: #666;
  position: relative;
  padding: 0 15px 0 0;
}
.commentsApp__showReplies:after {
  content: "";
  position: absolute;
  right: 0;
  top: 11px;
  width: 8px;
  height: 4px;
  background-image: url("7ea96a809ed22e5ed1b721df15c93a528fe90293.svg");
  background-repeat: no-repeat;
}
.commentsApp__loadMore {
  padding: 8px 0 0;
}
.commentsApp__buttonLoadMore {
  border: 2px solid #444;
  background: #fff;
  color: #222;
  padding: 4px 20px 6px;
  height: 30px;
}
.commentsApp__buttonLoadMore--hidden {
  display: none;
}
.commentsApp__popup,
.commentsApp__popupOverlay {
  display: none;
  position: fixed;
}
.commentsApp__popup--active,
.commentsApp__popupOverlay--active {
  display: block;
}
.commentsApp__popupOverlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999990;
}
.commentsApp__popup {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.26);
  border-radius: 2px;
  z-index: 999991;
  width: 100%;
  max-width: 390px;
}
.commentsApp__popupInner {
  position: relative;
  padding: 30px;
}
.commentsApp__popupClose {
  position: absolute;
  right: 15px;
  top: 15px;
  line-height: 0;
}
.commentsApp__popupCloseSVGPath {
  fill: #666;
}
.commentsApp__popupHeader {
  display: block;
  font: 600 22px/26px calibre, sans-serif;
}
.commentsApp__popup--guest .commentsApp__popupHeader {
  margin: 0 0 30px;
}
.commentsApp__popupInfo {
  font: 400 15px/25px calibre, sans-serif;
  padding: 8px 0 26px;
}
.commentsApp__popupInputContainer {
  margin: 0 0 15px;
}
.commentsApp__popupInputContainer--memory {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  align-items: flex-start;
  margin: -5px 0 30px;
}
.commentsApp__popupInputContainer--memory .commentsApp__popupLink {
  color: #666;
}
.commentsApp__popupInputError,
.commentsApp__popupInputErrorTop {
  display: none;
  color: #e30000;
  margin: 5px 0 0;
  font: 400 15px/18px calibre, sans-serif;
}
.commentsApp__popupInputError--show,
.commentsApp__popupInputErrorTop--show {
  display: block;
}
.commentsApp__popupInputErrorTop {
  padding-bottom: 5px;
}
.commentsApp__popupInput--password,
.commentsApp__popupInput--username {
  font: 400 15px/25px calibre, sans-serif;
  padding: 6px 15px 7px;
  width: 100%;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 1px;
  color: #999;
  position: relative;
}
.commentsApp__popupInput--password:focus,
.commentsApp__popupInput--username:focus {
  color: #222;
}
.commentsApp__popupInput--password:focus::-webkit-input-placeholder,
.commentsApp__popupInput--username:focus::-webkit-input-placeholder {
  color: #222;
}
.commentsApp__popupInput--password:focus::-moz-placeholder,
.commentsApp__popupInput--username:focus::-moz-placeholder {
  color: #222;
}
.commentsApp__popupInput--password:focus:-ms-input-placeholder,
.commentsApp__popupInput--username:focus:-ms-input-placeholder {
  color: #222;
}
.commentsApp__popupInput--password:focus:-moz-placeholder,
.commentsApp__popupInput--username:focus:-moz-placeholder {
  color: #222;
}
.commentsApp__popupInput--password::-webkit-input-placeholder,
.commentsApp__popupInput--username::-webkit-input-placeholder {
  color: #999;
}
.commentsApp__popupInput--password::-moz-placeholder,
.commentsApp__popupInput--username::-moz-placeholder {
  color: #999;
}
.commentsApp__popupInput--password:-ms-input-placeholder,
.commentsApp__popupInput--username:-ms-input-placeholder {
  color: #999;
}
.commentsApp__popupInput--password:-moz-placeholder,
.commentsApp__popupInput--username:-moz-placeholder {
  color: #999;
}
.commentsApp__popupInput--error {
  border-bottom: 2px solid #e30000;
}
.commentsApp__label {
  cursor: pointer;
}
.commentsApp__popup .commentsApp__label {
  font: 400 16px/22px calibre, sans-serif;
}
.commentsApp__checkbox {
  display: none;
}
.commentsApp__fakeCheckbox {
  display: inline-block;
  background-size: 14px;
  margin: 0 10px 0 0;
  color: #666;
  cursor: pointer;
  background-image: url("362a9346ea387210d6af07a8397ced74321bf888.svg");
  background-repeat: no-repeat;
  background-position: 0;
}
.commentsApp__checkbox:checked + .commentsApp__fakeCheckbox {
  background-image: url("47ee4ae224639d4ed701c6c5de98c7c140fd552b.svg");
}
.commentsApp__fakeCheckbox-span {
  padding-left: 21px;
  width: max-content;
}
.commentsApp__popupLink {
  font: 600 15px/25px calibre, sans-serif;
}
.commentsApp__submit .commentsApp__button {
  display: block;
  font: 600 15px/18px calibre, sans-serif;
  width: 100%;
  height: 30px;
}
.commentsApp__submit .commentsApp__button--guest {
  border: 2px solid #444;
  background: #fff;
  color: #222;
}
.commentsApp__submit--asGuest {
  margin: 30px 0 0;
}
#pageNav .lists:after,
#pageNav:after,
.mod_hat2014 .gridWrap:after {
  display: block;
  content: " ";
  width: 100%;
  clear: both;
  float: none;
}
.mod_hat2014 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  font-family: Arial, sans-serif;
  z-index: 11000;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  height: 34px;
  font-size: 12px;
  background: #383842;
}
.mod_hat2014 a:hover {
  text-decoration: none;
}
.mod_hat2014 .gridWrap {
  margin: auto;
  min-width: 980px;
}
.mod_hat2014 .hat-partner {
  float: right;
  text-align: right;
}
.mod_hat2014 .hat-partner p {
  display: inline-block;
  padding: 2px 11px 3px 9px;
  font-size: 11px;
}
.mod_hat2014 .hat-partner a,
.mod_hat2014 .hat-partner a:hover,
.mod_hat2014 .hat-partner p {
  color: #565656;
  background: #eaeaea;
}
.mod_hat2014 .c0 {
  float: left;
}
.mod_hat2014 .c0 .home.bar a {
  position: relative;
  padding: 0 10px 0 27px;
}
.mod_hat2014 .c0 .home a:before {
  position: absolute;
  display: block;
  content: "";
  top: 10px;
  left: 9px;
  width: 12px;
  height: 11px;
  background: url(../images/"") -22px -133px no-repeat transparent;
}
.mod_hat2014 .c0 .bar a {
  padding: 0 10px;
  font-weight: 700;
  color: #fff;
  -webkit-transition: color 0.2s linear;
  -moz-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
}
.mod_hat2014 .c0 .bar a.active,
.mod_hat2014 .c0 .bar a:hover {
  color: #e0e0e8;
}
.mod_hat2014 .c0 .bar a:not(.home) .safari_mobile .mod_hat2014 .c0 .bar a {
  padding: 0 9px;
}
.mod_hat2014 .c1 {
  float: right;
  font-size: 11px;
}
.mod_hat2014 .c1 .bar a {
  position: relative;
  padding: 0 5px;
  color: #a4a4a4;
  z-index: 0;
  -webkit-transition: color 0.2s linear;
  -moz-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
}
.mod_hat2014 .c1 .bar a:hover {
  color: #fff;
}
.mod_hat2014 .bar,
.mod_hat2014 .bar + li {
  float: left;
  position: relative;
  line-height: 34px;
  z-index: 1;
}
.mod_hat2014 .bar + li a,
.mod_hat2014 .bar a {
  display: block;
}
.mod_hat2014 .user {
  color: #e0e0e8;
}
.mod_hat2014 .user img {
  display: none;
}
.mod_hat2014 .user a {
  padding: 0 10px;
  color: #a4a4a4;
  -webkit-transition: color 0.2s linear;
  -moz-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
}
.mod_hat2014 .user a:hover {
  color: #fff;
}
.mod_hat2014 .user.logged {
  background: #292930;
}
.mod_hat2014 .user.logged .user {
  display: block;
  max-width: 75px;
  height: 100%;
  padding: 0 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: #292930;
  cursor: pointer;
}
.mod_hat2014 .user.logged .user-box {
  display: none;
  position: absolute;
  top: 33px;
  right: 0;
  width: 150px;
  background: #292930;
  z-index: 1;
}
.mod_hat2014 .user.logged .user-box.active {
  display: block;
}
.mod_hat2014 .user.logged .user-box li a:hover {
  background: #191920;
}
.mod_hat2014 .user.logged:hover .user-box {
  display: block;
}
.mod_hat2014 .more {
  position: relative;
  border-left: 1px solid #4e4e5a;
  height: 34px;
  width: 36px;
  -webkit-transition: background-position 0.3s ease-in-out;
  -moz-transition: background-position 0.3s ease-in-out;
  -o-transition: background-position 0.3s ease-in-out;
  transition: background-position 0.3s ease-in-out;
}
.mod_hat2014 .more:before {
  top: 11px;
  left: 12px;
  width: 12px;
  height: 12px;
  background-position: 0 -132px;
}
.mod_hat2014 .more:before,
.mod_hat2014 .more input + ul:after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-image: url("");
}
.mod_hat2014 .more:hover:before {
  background-position: 0 -110px;
}
.mod_hat2014 .more input + ul {
  display: none;
}
.mod_hat2014 .more input:checked + ul {
  display: block;
  position: absolute;
  top: 100%;
  right: 0;
  height: auto;
}
.mod_hat2014 .more input + ul:before {
  position: absolute;
  content: "";
  display: block;
  bottom: 100%;
  right: 0;
  z-index: 0;
  background-color: #fff;
  width: 35px;
  height: 35px;
}
.mod_hat2014 .more input + ul:after {
  top: -22px;
  right: 11px;
  z-index: 0;
  width: 12px;
  height: 12px;
  background-position: 0 -132px;
  background-color: #fff;
}
.mod_hat2014 .more .menu {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.mod_hat2014 .more > ul {
  display: none;
  width: 920px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 0 18px 0 rgba(57, 57, 57, 0.15);
  background: #fff;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.mod_hat2014 .more > ul .show_more {
  width: 100%;
}
.mod_hat2014 .search {
  position: relative;
  height: 33px;
  width: 36px;
  border-left: 1px solid #4e4e5a;
}
.mod_hat2014 .search:before {
  position: absolute;
  content: "";
  top: 10px;
  left: 11px;
  width: 13px;
  height: 13px;
  background: url(../images/"") -45px -110px no-repeat;
}
.mod_hat2014 .search:hover:before {
  background-position: -22px -110px;
}
.mod_hat2014 .search input[type="checkbox"] {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.mod_hat2014 .search input:checked + #pageSearch {
  position: absolute;
  top: 33px;
  right: 0;
}
.mod_hat2014 .search input:checked + #pageSearch form {
  display: block;
}
.mod_hat2014 .search input:checked ~ * form:after,
.mod_hat2014 .search input:checked ~ * form:before {
  position: absolute;
  content: "";
  display: block;
  background-color: #292930;
}
.mod_hat2014 .search input:checked ~ * form:before {
  top: -32px;
  right: 0;
  width: 35px;
  height: 33px;
  z-index: 0;
}
.mod_hat2014 .search input:checked ~ * form:after {
  top: -21px;
  right: 12px;
  width: 10px;
  height: 10px;
  background: url(../images/"") -45px -133px no-repeat;
}
.mod_hat2014 #pageSearch {
  position: relative;
  margin-bottom: 0;
}
.mod_hat2014 #pageSearch form {
  display: none;
  width: 292px;
  height: 48px;
  padding: 10px;
  background: #292930;
}
.mod_hat2014 #pageSearch #pageSearchQ {
  float: left;
  width: 200px;
  height: 26px;
  padding: 0 10px;
  font: normal 13px Arial, sans-serif;
  line-height: 26px;
  border: 1px solid #4e4e5a;
  color: #b4b3b3;
  background: #383842;
}
.mod_hat2014 #pageSearch input[type="submit"] {
  float: left;
  width: 64px;
  height: 26px;
  margin-left: 8px;
  padding: 0 6px 2px;
  font: 700 12px/28px Arial, sans-serif;
  line-height: 28px;
  color: #fff;
  border: 0;
  background: #3370bc;
  cursor: pointer;
  -webkit-appearance: none;
}
.mod_hat2014 #pageSearch .hidden {
  display: none;
}
#pageNav {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 27px 10px 13px;
  line-height: 16px;
  z-index: 2000;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#pageNav a {
  padding: 0;
  font-weight: 400;
  color: #148;
  line-height: 18px;
}
#pageNav a:hover {
  color: #148;
  background: none;
  text-decoration: underline;
}
#pageNav .bolded a {
  font-weight: 700;
}
#pageNav .buttons {
  display: block;
}
#pageNav header {
  padding-bottom: 6px;
  font-weight: 700;
  color: #2e2e2e;
  text-transform: uppercase;
}
#pageNav .lists > ul {
  float: left;
  width: 140px;
  margin-left: 10px;
}
#pageNav .lists > ul:first-child {
  margin-left: 0;
}
#pageNav .lists li ul {
  padding-bottom: 13px;
}
.pageHeadBrand .col1 {
  z-index: 2;
}
.pageHeadBrand {
  position: relative;
  height: 110px;
  padding-top: 10px;
  background-color: transparent;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-items: center;
  align-items: center;
}
.pageHeadBrand .col1 img {
  height: auto;
}
.pageHeadBrand.logo_center .col1,
.pageHeadBrand.logo_left .col1 {
  -webkit-flex: 1;
  flex: 1;
}
.pageHeadBrand .col2 {
  text-align: center;
}
.pageHeadBrand .col2 .col21 {
  padding-bottom: 6px;
}
.pageHeadBrand .col2 .col21 span {
  font: 400 12px/14px calibre, sans-serif;
  color: #b5b5b5;
  white-space: nowrap;
}
.pageHeadBrand .col2 .col22 a {
  display: block;
  line-height: 0;
}
.pageHeadBrand .col2 .col22 img {
  max-height: 90px;
}
.pageHeadBrand .additional_link {
  position: relative;
  display: inline-block;
  height: 45px;
  padding: 0 10px 0 33px;
  font: 700 15px/45px calibre;
  color: #fff;
  background: #222;
  -webkit-transition: background 0.3s ease-in;
  -moz-transition: background 0.3s ease-in;
  -o-transition: background 0.3s ease-in;
  transition: background 0.3s ease-in;
}
.pageHeadBrand .additional_link:before {
  content: "+";
  position: absolute;
  top: 0;
  left: 10px;
  font: 700 17px/45px calibre;
}
.pageHeadBrand .additional_link:hover {
  background: rgba(80, 110, 145, 0.7);
}
.pageHeadBrand .search {
  z-index: 10;
  display: none;
}
.pageHeadBrand .search fieldset {
  position: relative;
}
.pageHeadBrand .search input[name="q"] {
  height: 40px;
  padding: 10px;
  background: #e5e5e5;
  width: 220px;
  border: none;
  font: 20px archivo_narrowregular, sans-serif;
  outline: none;
  color: #020202;
  box-sizing: border-box;
}
.pageHeadBrand .search input[name="q"]::-moz-placeholder,
.pageHeadBrand .search input[name="q"]::-webkit-input-placeholder {
  color: #afafaf;
}
.pageHeadBrand .search input[type="submit"] {
  position: absolute;
  background: #e5e5e5;
  top: 25px;
  right: 0;
  border: none;
  height: 40px;
  width: 36px;
  background-image: url("");
  background-position: -31px -27px;
  cursor: pointer;
  text-indent: -100px;
}
.pageHeadBrand .search input[type="submit"]:hover {
  background-position: -31px 5px;
}
.pageHeadBrand.logo_center:not(.hasBanner) .col1 {
  position: relative;
  left: 50%;
  text-align: center;
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  transform: translate(-50%);
}
.pageHeadBrand.logo_center:not(.hasBanner) .search {
  display: block;
}
.pageHeadBrand.hasBanner {
  margin-bottom: 10px;
}
#article_title:after,
#gazeta_article_lead:after,
.author_and_date .article_author:after,
.author_and_date:after {
  display: block;
  content: " ";
  width: 100%;
  clear: both;
  float: none;
}
.author_and_date {
  padding: 15px 0;
}
#article_title {
  color: #222;
  word-break: break-word;
  padding: 0 0 10px;
}
.main_wrapper--video #article_title {
}
.main_wrapper:not(.main_wrapper--video) #article_title {
  margin-bottom: 10px;
}
@supports (display: grid) {
  #article_title {
    grid-row: 2;
    position: relative;
  }
  .main_wrapper:not(.main_wrapper--video) #article_title {
    grid-column: 2;
    width: 750px;
  }
  .main_wrapper--video #article_title {
    grid-column: 3;
    z-index: 2;
    background: #fff;
    padding: 20px;
  }
}
@supports not (display: grid) {
  #article_title,
  #gazeta_article_lead,
  .author_and_date {
    width: 902px;
    padding-right: 50px;
    padding-left: 102px;
  }
  .main_wrapper--video #article_title,
  .main_wrapper--video #gazeta_article_lead,
  .main_wrapper--video .author_and_date {
    padding-top: 20px;
  }
  #article_title:after,
  #gazeta_article_lead:after,
  .author_and_date:after {
    display: block;
    content: " ";
    width: 100%;
    clear: both;
    float: none;
  }
}
@media (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #article_title {
    float: left;
    width: 902px;
    padding-right: 50px;
    padding-left: 102px;
  }
  #article_title:after {
    display: block;
    content: " ";
    width: 100%;
    clear: both;
    float: none;
  }
}
.author_and_date .article_author,
.author_and_date .article_date,
.author_and_date img {
  display: block;
}
.author_and_date {
  display: flex;
  flex-flow: row nowrap;
  padding-top: 10px;
}
.author_and_date img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}
.author_and_date .article_data {
  display: block;
  width: 100%;
}
.author_and_date .article_author {
  color: #666;
  font: 600 15px/18px calibre, sans-serif;
}
.author_and_date .article_date {
  color: #999;
  font: 400 15px/18px calibre, sans-serif;
}
@supports (display: grid) {
  .author_and_date {
    grid-row: 3;
    position: relative;
    z-index: 1;
  }
  .main_wrapper--video .author_and_date {
    grid-column: 3;
    background: #fff;
    padding-left: 20px;
    padding-right: 20px;
  }
  .main_wrapper:not(.main_wrapper--video) .author_and_date {
    grid-column: 2;
    width: 750px;
  }
}
#gazeta_article_lead {
  color: #222;
  word-break: break-word;
}
.main_wrapper:not(.main_wrapper--video) #gazeta_article_lead {
  font: 600 21px/29px calibre, sans-serif;
  padding: 15px 0;
}
.main_wrapper--video #gazeta_article_lead {
  font: 700 22px/30px calibre, sans-serif;
}
#gazeta_article_lead object {
  max-width: 100%;
}
@supports (display: grid) {
  #gazeta_article_lead {
    grid-row: 4;
    position: relative;
    z-index: 1;
  }
  #article_wrapper:not(.main_wrapper--video) #gazeta_article_lead {
    grid-column: 2;
  }
  .main_wrapper--video #gazeta_article_lead {
    grid-column: 3;
    padding: 20px 20px 15px;
    background: #fff;
  }
}
#rwdNav {
  height: 40px;
  position: relative;
  margin: 0 auto;
  z-index: 4;
  padding: 0;
  background-color: #506e91;
}
#rwdNav li,
#rwdNav span {
  display: block;
  padding: 0 10px;
  color: #fff;
  font: 600 18px/40px calibre, sans-serif;
  text-transform: none;
  transition: background-color 0.2s ease;
}
#rwdNav a:hover,
#rwdNav span:hover {
  color: #fff;
}
#rwdNav .p0 {
  height: 100%;
  text-align: left;
}
#rwdNav .p0 > li {
  position: relative;
  display: inline-block;
}
#rwdNav .p0 > li.rightReverse {
  float: right;
}
#rwdNav .p0 > li span {
  cursor: pointer;
}
#rwdNav .p0 > li:hover:not(.active) a,
#rwdNav .p0 > li:hover:not(.active) span {
  background-color: hsla(0, 0%, 100%, 0.2);
}
#rwdNav .p0 > li:hover .p1 {
  z-index: 1;
  background-color: #506e91;
}
#rwdNav .p0 > li:hover .p1,
#rwdNav .p0 > li:hover .p1 li {
  display: block;
}
#rwdNav .p0 > li:hover .p1 li {
  position: static;
}
#rwdNav .p0 > li:hover .p1 a:hover {
  background-color: hsla(0, 0%, 100%, 0.35);
}
#rwdNav .p0 > li:hover .p1 .active a,
#rwdNav .p0 > li:hover .p1 .active a:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
#rwdNav .p0 > li.active a,
#rwdNav .p0 > li.active span {
  color: #fff;
}
#rwdNav .p0 > li.active > a,
#rwdNav .p0 > li.active > a:hover,
#rwdNav .p0 > li.active > span {
  background-color: rgba(0, 0, 0, 0.2);
}
#rwdNav .p0 > li.active .p1 li {
  display: block;
}
#rwdNav .p0 > li.active .p1 a:hover {
  background-color: hsla(0, 0%, 100%, 0.2);
}
#rwdNav .p0 > li.active .p1 .active a,
#rwdNav .p0 > li.active .p1 .active a:hover,
#rwdNav .p0 > li.active .p1 li {
  background-color: rgba(0, 0, 0, 0.2);
}
#rwdNav .p0 > li.active .p1 a {
  min-width: 100px;
}
#rwdNav .p1 {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  text-align: left;
}
#rwdNav .p1 a {
  padding: 0 9px;
  white-space: nowrap;
  transition: none;
}
.related_articles .related_articles_list:after,
.related_articles:after {
  display: block;
  content: " ";
  width: 100%;
  clear: both;
  float: none;
}
.related_articles {
  width: 100%;
  padding: 15px 0;
}
.related_articles .related_articles_list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.related_articles .related_article {
  background-color: #fff;
  width: 218px;
  max-height: 260px;
  margin: 15px 0;
}
.related_articles .related_article,
.related_articles .related_article img {
  box-shadow: 0 1px 1px 0 transparent, 0 1px 5px 0 transparent;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.related_articles .related_article:hover {
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
.related_articles .related_article:hover,
.related_articles .related_article:hover a {
  color: rgba(34, 34, 34, 0.8);
}
.related_articles .related_article:hover img {
  -webkit-filter: brightness(107%) contrast(107%);
  -moz-filter: brightness(107%) contrast(107%);
  filter: brightness(107%) contrast(107%);
}
.related_articles .related_article_link {
  display: block;
  min-height: 260px;
  color: #222;
}
.related_articles
  .adviewDFPBanner.activeBan
  ~ .related_article_link--ifAdHidden {
  display: none;
}
.related_articles .related_article_photo {
  display: block;
  width: 100%;
  border-radius: 1px 1px 0 0;
  background: url(../images/"") repeat 0 0 transparent;
}
.related_articles .related_article_title {
  flex: 1;
  display: block;
  padding: 10px 15px;
  font: 600 18px/22px calibre, sans-serif;
  max-height: 124px;
  overflow: hidden;
}
.related_articles.is-forYou .related_article {
  max-height: 315px;
  width: 380px;
}
.related_articles.is-forYou .related_article_link {
  min-height: 315px;
}
.related_articles .adviewDFPBanner.activeBan {
  padding-top: 0;
}
.related_quiz .related_quiz_body .number_of_questions:after,
.related_quiz .related_quiz_body .question_title:after,
.related_quiz .related_quiz_body .quiz_open_image:after,
.related_quiz .related_quiz_title:after {
  display: block;
  content: " ";
  width: 100%;
  clear: both;
  float: none;
}
.related_quiz {
  border-radius: 1px;
  width: 464px;
  min-width: 464px;
  height: 550px;
  margin: 30px 28px 30px 0;
  z-index: 1;
}
.related_quiz + .related_articles {
  width: 710px;
  min-width: 710px;
}
.related_quiz .related_quiz_container {
  height: 100%;
  overflow: hidden;
  background-color: #fff;
  box-shadow: -1px 10px 102px -50px rgba(60, 60, 60, 0);
  -webkit-transition: height 0.2s ease, box-shadow 0.25s ease;
  -moz-transition: height 0.2s ease, box-shadow 0.25s ease;
  -o-transition: height 0.2s ease, box-shadow 0.25s ease;
  transition: height 0.2s ease, box-shadow 0.25s ease;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.2, 1);
  -webkit-transition-delay: 2s;
  transition-delay: 2s;
}
.related_quiz .related_quiz_container.hovered,
.related_quiz .related_quiz_container:hover {
  box-shadow: -1px 10px 102px -21px #3c3c3c;
  -webkit-transition: box-shadow 0.25s ease, height 0.25s ease;
  -moz-transition: box-shadow 0.25s ease, height 0.25s ease;
  -o-transition: box-shadow 0.25s ease, height 0.25s ease;
  transition: box-shadow 0.25s ease, height 0.25s ease;
  -webkit-transition-timing-function: cubic-bezier(0.7, -0.2, 0.25, 1);
  transition-timing-function: cubic-bezier(0.7, -0.2, 0.25, 1);
}
.related_quiz .related_quiz_header {
  padding: 20px 0 15px;
}
.related_quiz .related_quiz_title {
  position: relative;
  width: 100%;
  min-height: 50px;
  color: #222;
  font: 600 18px/21px calibre, sans-serif;
  padding: 0 15px 0 67px;
}
.related_quiz .related_quiz_title:before {
  position: absolute;
  content: "QUIZ";
  display: inline-block;
  height: 36px;
  width: 36px;
  top: 0;
  color: #fff;
  font: 600 13px/36px calibre, sans-serif;
  text-align: center;
  border-radius: 50%;
  background-color: #222;
  left: 15px;
}
.related_quiz .related_quiz_body .quiz_open_image img {
  display: block;
  width: 100%;
  height: auto;
}
.related_quiz .related_quiz_body .question_content {
  padding: 0 15px 15px;
}
.related_quiz .related_quiz_body .number_of_questions,
.related_quiz .related_quiz_body .question_title {
  display: block;
}
.related_quiz .related_quiz_body .number_of_questions {
  padding-top: 10px;
  font: 600 15px/22px calibre, sans-serif;
  color: #999;
}
.related_quiz .related_quiz_body .question_title {
  padding: 6px 0 16px;
  color: #222;
  word-break: break-word;
  font: 600 22px/24px calibre, sans-serif;
}
.related_quiz .related_quiz_body .answer_fields,
.related_quiz .related_quiz_body .submit_btn {
  width: 100%;
  border-radius: 2px;
}
.related_quiz .related_quiz_body .answer_fields {
  position: relative;
  background-color: #ededed;
  margin-bottom: 10px;
}
.related_quiz .related_quiz_body .answer_fields .answer_btn {
  position: absolute;
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  left: 20px;
}
.related_quiz .related_quiz_body .answer_fields .answer_label {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  padding: 15px 20px 15px 60px;
  cursor: pointer;
}
.related_quiz .related_quiz_body .answer_fields .answer_label:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: calc(50% - 10px);
  left: 20px;
  border: 2px solid #444;
  border-radius: 50%;
  background-color: #ededed;
}
.related_quiz .related_quiz_body .answer_fields .answer_label:hover {
  background-color: #dcdcdc;
}
.related_quiz .related_quiz_body .answer_fields .answer_label .answer_photo {
  margin-right: 10px;
}
.related_quiz .related_quiz_body .answer_fields .answer_label .answer_txt {
  color: #242424;
  cursor: pointer;
  font: 400 19px/22px calibre, sans-serif;
}
.related_quiz .related_quiz_body .answer_btn:checked + .answer_label:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: calc(50% - 5px);
  left: 25px;
  border-radius: 50%;
  background-color: #444;
}
.related_quiz .related_quiz_body .submit_btn {
  height: 60px;
  padding: 15px 0;
  color: #fff;
  border: none;
  cursor: pointer;
  background-color: #506e91;
  font: 600 23px/26px calibre, sans-serif;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.related_quiz .related_quiz_body .submit_btn:hover {
  background-color: #627d9c;
  box-shadow: 0 4px 8px 1px rgba(0, 0, 0, 0.2);
}
#overlay_adult_content_inner .c1 .btns div:after {
  display: block;
  content: " ";
  width: 100%;
  clear: both;
  float: none;
}
#overlay_adult {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  min-width: 320px;
  height: 100vh;
  background: #fff;
  z-index: 10000;
}
#overlay_adult,
#overlay_adult * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#overlay_adult_content_inner {
  margin: 96px auto;
  padding: 15px;
  background: #fff;
  overflow: hidden;
  word-wrap: break-word;
  width: 675px;
  border: 1px solid #dfdfdf;
}
#overlay_adult_content_inner .c0 {
  float: left;
  width: 114px;
  height: 135px;
  text-align: center;
  font: 700 64px/134px Arial, sans-serif;
  color: #fff;
  background-image: -owg-linear-gradient(#e11025, #a91f2e);
  background-image: -webkit-linear-gradient(#e11025, #a91f2e);
  background-image: -moz-linear-gradient(#e11025, #a91f2e);
  background-image: -o-linear-gradient(#e11025, #a91f2e);
  background-image: linear-gradient(#e11025, #a91f2e);
}
#overlay_adult_content_inner .c1 {
  width: 100%;
  padding-left: 125px;
}
#overlay_adult_content_inner .c1 strong {
  font: 700 24px Arial, sans-serif;
  color: #c90d20;
  text-transform: uppercase;
}
#overlay_adult_content_inner .c1 p {
  font: 700 18px Arial, sans-serif;
  color: #000;
  margin-bottom: 0.8em;
}
#overlay_adult_content_inner .c1 input {
  vertical-align: middle;
}
#overlay_adult_content_inner .c1 label {
  font: normal 12px Arial, sans-serif;
  color: #000;
}
#overlay_adult_content_inner .c1 .btns {
  overflow: hidden;
  zoom: 1;
  margin-top: 15px;
}
#overlay_adult_content_inner .c1 .btns div {
  display: inline-block;
  width: 257px;
  margin: 10px 0;
  padding: 0 10px;
  font: 400 14px/29px Arial, sans-serif;
  text-align: center;
  cursor: pointer;
  background: #f5f5f5;
  border-radius: 4px;
  border: 1px solid #cecece;
  border-bottom-color: #b6b6b6;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#overlay_adult_content_inner .c1 .btns span {
  color: #c90d20;
  font-weight: 700;
}
@media screen and (max-height: 400px) {
  #overlay_adult #overlay_adult_content_inner {
    margin-top: 40px;
  }
}
@media screen and (min-width: 675px) {
  #overlay_adult #overlay_adult_content_inner .btns {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
@media screen and (max-width: 480px) {
  #overlay_adult_content_inner {
    margin-top: 75px;
    text-align: center;
  }
  #overlay_adult_content_inner .c0 {
    float: none;
    display: inline-block;
  }
  #overlay_adult_content_inner .c1 {
    max-width: 257px;
    margin: 27px auto 0;
    text-align: left;
  }
  #overlay_adult_content_inner .c1 .btns {
    width: 100%;
    margin-top: 0;
    text-align: center;
  }
  #overlay_adult_content_inner .c1 .btns div {
    margin: 20px auto 0;
  }
}
.index_simple:after {
  display: block;
  content: " ";
  width: 100%;
  clear: both;
  float: none;
}
.index_simple {
  padding: 15px 0;
  width: 100%;
}
body.dfp-video-bg .index_simple .content_wrap,
body.screeningADFP .index_simple .content_wrap {
  background: #fff;
}
.index_simple .body > .content_wrap {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  margin: 0 auto;
  position: relative;
  width: 1242px;
  padding: 0 20px;
}
.index_simple .header h1,
.index_simple .header h2 {
  color: #222;
  font: 700 25px/29px calibre, sans-serif;
  padding: 15px 0;
}
.index_simple .list_tiles {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 15px;
}
.index_simple .midindex {
  padding-bottom: 15px;
}
.index_simple #indexDFP99:not(.active) {
  display: none;
}
.index_simple:not(.tiles):not(.mill) .entry {
  width: 100%;
}
.index_simple .entry {
  display: -webkit-flex;
  display: flex;
  border-bottom: 1px solid #e5e5e5;
  transition: all 0.2s ease;
  padding: 30px 0;
}
.index_simple .entry:hover a {
  color: inherit;
}
.index_simple .entry:hover h2,
.index_simple .entry:hover h2 a {
  color: rgba(34, 34, 34, 0.8);
}
.index_simple .entry:hover figure img {
  -webkit-filter: brightness(105%) contrast(105%);
  -moz-filter: brightness(105%) contrast(105%);
  filter: brightness(105%) contrast(105%);
}
.index_simple .entry:first-child {
  padding-top: 0;
}
.index_simple .entry:last-child {
  border-bottom: none;
}
.index_simple .entry iframe {
  max-width: 100%;
}
.index_simple .entry .article {
  -webkit-flex: 1;
  flex: 1;
}
.index_simple .entry:not(.video) figure {
  background-image: url("");
}
.index_simple .entry .imgw {
  position: relative;
  background: 50% no-repeat #ddd;
  min-width: 250px;
  max-width: 250px;
  height: 140px;
  margin-right: 20px;
  overflow: hidden;
}
.index_simple .entry .imgw img {
  display: block;
  width: 100%;
  border-radius: 2px;
  transition: all 0.2s ease-out;
}
.index_simple .entry .imgw img[alt] {
  font-size: 10px;
  line-height: 12px;
}
.index_simple .entry .imgw a {
  display: block;
  line-height: 0;
}
.index_simple .entry header,
.index_simple .entry header a {
  color: #222;
  word-break: break-word;
  transition: all 0.2s ease-out;
  font: 700 24px/29px calibre, sans-serif;
  margin-top: -3px;
}
.index_simple .entry .lead {
  font: 400 18px/22px calibre, sans-serif;
  color: #222;
  padding: 12px 0;
}
.index_simple .entry .tags {
  padding: 3px 0 0;
}
.index_simple .entry .tags li {
  display: inline-block;
  padding-right: 10px;
}
.index_simple .entry .tags li,
.index_simple .entry .tags li a {
  color: #999;
}
.index_simple .entry .tags li a:hover {
  text-decoration: underline;
}
.index_simple .entry .author,
.index_simple .entry .authors {
  display: inline-block;
  color: #666;
  font: 600 13px/18px calibre, sans-serif;
}
.index_simple .entry .tags,
.index_simple .entry time {
  display: inline-block;
  color: #999;
  font: 400 13px/18px calibre, sans-serif;
}
.index_simple .entry .authinfo {
  line-height: 18px;
}
.index_simple .entry.inner {
  padding-top: 15px;
}
.index_simple .entry.video {
  width: 100%;
}
.index_simple .entry.mod_uzr9 {
  width: 100%;
  margin-bottom: 0;
}
.index_simple .entry.photostory figure:after {
  content: "";
  position: absolute;
  bottom: 7%;
  display: block;
  background: url(../images/"");
  width: 30px;
  height: 30px;
  right: 4%;
}
.index_simple .entry.video.restriction_12 figure:before,
.index_simple .entry.video.restriction_16 figure:before,
.index_simple .entry.video.restriction_18 figure:before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  width: 24px;
  height: 24px;
}
.index_simple .entry.video.restriction_12.restriction_12 figure:before,
.index_simple .entry.video.restriction_16.restriction_12 figure:before,
.index_simple .entry.video.restriction_18.restriction_12 figure:before {
  background: url(../images/"");
}
.index_simple .entry.video.restriction_12.restriction_16 figure:before,
.index_simple .entry.video.restriction_16.restriction_16 figure:before,
.index_simple .entry.video.restriction_18.restriction_16 figure:before {
  background: url(../images/"");
}
.index_simple .entry.video.restriction_12.restriction_18 figure:before,
.index_simple .entry.video.restriction_16.restriction_18 figure:before,
.index_simple .entry.video.restriction_18.restriction_18 figure:before {
  background: url(../images/"");
}
.index_simple .entry.video figure:after {
  content: "";
  position: absolute;
  bottom: 7%;
  display: block;
  background: url(../images/"");
  width: 30px;
  height: 30px;
  right: 4%;
}
.index_simple .footer {
  padding: 12px 0;
}
.index_simple .footer .more a,
.index_simple .footer .pagination a.next,
.index_simple .footer .pagination a.prev {
  display: inline-block;
  padding: 10px 20px;
  height: 40px;
  font: 600 16px/19px calibre, sans-serif;
  color: #fff;
  text-transform: uppercase;
  border-radius: 20px;
  background-color: #444;
}
.index_simple .footer .more a:hover,
.index_simple .footer .pagination a.next:hover,
.index_simple .footer .pagination a.prev:hover {
  color: #fff;
  background-color: #595959;
  box-shadow: 0 4px 7.68px 0.32px rgba(0, 0, 0, 0.2);
  transition: all 0.2s linear;
}
.index_simple .footer .pagination .pages a,
.index_simple .footer .pagination .pages span {
  display: inline-block;
  font: 600 16px/19px calibre, sans-serif;
  color: #444;
  text-align: center;
  width: 40px;
  height: 40px;
  padding-top: 9px;
}
.index_simple .footer .more {
  width: 100%;
  text-align: center;
}
.index_simple .footer .pagination {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  clear: both;
}
.index_simple .footer .pagination .pages span {
  border-radius: 50%;
}
.index_simple .footer .pagination .pages span:not(.dots) {
  border: 1px solid #444;
}
.index_simple .footer .pagination .pages span.dots {
  color: #999;
}
.index_simple.tiles {
  position: relative;
}
.index_simple.tiles .list_tiles {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.index_simple.tiles .main_content {
  padding-right: 50px;
}
.index_simple.tiles .header {
  text-align: left;
}
.index_simple.tiles .entry {
  display: block;
  padding: 0;
  width: calc(50% - 15px);
  margin-bottom: 30px;
  border: 1px solid #efefef;
}
.index_simple.tiles .entry:hover {
  border: 1px solid #ddd;
}
.index_simple.tiles .entry:hover a {
  color: inherit;
}
.index_simple.tiles .entry:hover h2 a {
  color: rgba(34, 34, 34, 0.8);
}
.index_simple.tiles .entry a {
  display: block;
  transition: all 0.2s ease-out;
}
.index_simple.tiles .entry .imgw {
  position: relative;
  max-width: 100%;
  height: 0;
  margin-right: 0;
  background: #fff;
  overflow: hidden;
  margin-bottom: 0;
  padding-top: 56.44769%;
}
.index_simple.tiles .entry .imgw img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-out;
}
.index_simple.tiles .entry header {
  margin: 0;
  padding: 15px 20px;
}
.index_simple.tiles .entry header h2,
.index_simple.tiles .entry header h2 a {
  margin: 0;
  font: 700 22px/26px calibre, sans-serif;
}
.index_simple.tiles .entry.photostory figure:after {
  width: 40px;
  height: 40px;
}
.index_simple.tiles .entry:not(.video) figure {
  background-image: none;
}
.index_simple.tiles .tags {
  display: block;
  height: 36px;
  padding: 0 20px 15px;
  white-space: nowrap;
  overflow: hidden;
}
.index_simple.tiles .tags li {
  display: inline-block;
}
.index_simple.tiles .tags li a {
  display: block;
  margin: 0;
  font: 400 14px/19px calibre, sans-serif;
  color: #999;
}
.index_simple.tiles .tags li a:hover {
  color: #222;
  text-decoration: underline;
}
.index_simple.mill {
  position: relative;
  z-index: 1;
  padding: 20px 0 0;
}
.index_simple.mill:after {
  content: "";
  position: absolute;
  top: 0;
  left: calc((100vw - 100%) / -2);
  width: 100vw;
  height: 100%;
  background: #eee;
  z-index: -1;
}
body.dfp-video-bg .index_simple.mill:after,
body.screeningADFP .index_simple.mill:after {
  display: none;
}
body.dfp-video-bg .index_simple.mill,
body.screeningADFP .index_simple.mill {
  max-width: 1242px;
  margin: 0 auto;
}
.index_simple.mill .main_content {
  width: 100%;
  padding-right: 0;
}
.index_simple.mill .content_wrap {
  position: relative;
  left: -50px;
  background: transparent;
}
body.dfp-video-bg .index_simple.mill .content_wrap,
body.screeningADFP .index_simple.mill .content_wrap {
  left: 0;
  width: auto;
  background: #eee;
}
.index_simple.mill .list_tiles {
  padding-top: 0;
}
.index_simple.mill .entry {
  float: left;
  width: calc(20% - 30px);
  margin: 0 15px 30px;
  padding: 0;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.index_simple.mill .entry:hover {
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
.index_simple.mill .entry figure {
  min-width: 0;
  max-width: 100%;
  height: auto;
  margin-right: 0;
}
.index_simple.mill .entry figure img[alt] {
  max-height: 123px;
}
.index_simple.mill .entry header,
.index_simple.mill .entry header a {
  margin-top: 0;
  font: 600 20px/24px calibre, sans-serif;
}
.index_simple.mill .entry header {
  height: 137px;
  padding: 15px;
  background: #fff;
  overflow: hidden;
}
.index_simple.mill .entry header a,
.index_simple.mill .entry header h2 {
  display: inline-block;
  height: 100%;
  overflow: hidden;
}
.index_simple.mill .entry:last-child {
  border-bottom: 1px solid #e5e5e5;
}
.index_simple .right_aside__flexWrap {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: column;
  flex-direction: column;
  height: 100%;
  padding: 30px 0;
}
.index_simple .right_aside__innerWrap {
  height: 100%;
}
.index_head:after {
  display: block;
  content: " ";
  width: 100%;
  clear: both;
  float: none;
}
.index_head {
  padding: 15px 0;
  display: none;
}
.index_head.visible {
  display: block;
  position: relative;
  z-index: 9;
}
body.dfp-video-bg .index_head.visible .content_wrap,
body.screeningADFP .index_head.visible .content_wrap {
  background: #fff;
  padding-top: 20px;
}
.index_head .content_wrap {
  z-index: 10;
  display: flex;
  padding: 0 20px;
}
.index_head .right_aside__wrap {
  position: sticky;
  position: -webkit-sticky;
  top: 35px;
}
.index_head a.nextWeek {
  display: block;
  font: 600 18px/50px calibre, sans-serif;
  height: 50px;
  text-align: center;
  color: #fff;
  background: #ff5983;
  margin: 40px auto;
  text-transform: uppercase;
  width: 480px;
}
.tag_head.tag_head_v2 .tag_content:after,
.tag_head .tag_head_wrap:after,
.tag_head:not(.tag_head_v2) .tag_content:after {
  display: block;
  content: " ";
  width: 100%;
  clear: both;
  float: none;
}
.tag_head .tag_head_wrap {
  padding: 15px 0;
}
.tag_head .tag_img {
  float: left;
  margin-right: 20px;
}
.tag_head .tag_entry_heading {
  padding-bottom: 3px;
  font: 600 18px/26px calibre, sans-serif;
}
.tag_head .tag_head_wrap h1 {
  font: 600 20px/48px calibre, sans-serif;
}
.tag_head .tag_head_wrap * {
  color: #222;
}
.tag_head .tag_content {
  background-color: #f5f5f5;
  padding: 20px;
}
.tag_head .tag_content p {
  margin: 0 0 30px;
}
.tag_head .tag_content a {
  color: #222;
  word-break: break-word;
  background-repeat: repeat-x;
  background-position: 0 1.1em;
  text-decoration: underline;
}
.tag_head .tag_content a,
.tag_head .tag_content a:hover {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.tag_head .tag_content a:hover {
  color: #fff;
  background-image: none;
  background-color: #506e91;
}
.tag_head .tag_content a:hover:after {
  border-color: transparent;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.tag_head.tag_head_v2 .tag_head_wrap {
  padding: 10px 0 5px;
  margin: 0 0 10px;
}
.tag_head.tag_head_v2 .tag_head_wrap * {
  text-transform: lowercase;
}
.tag_head.tag_head_v2 .tag_head_wrap :first-letter {
  text-transform: capitalize;
}
.tag_head.tag_head_v2 .tag_content {
  line-height: 30px;
  color: #222;
}
.tag_head.tag_head_v2 .tag_content .tag_entry {
  font: 400 19px/26px calibre, sans-serif;
}
.tag_head.tag_head_v2 .tag_content .tag_entry:last-child {
  color: #f5f5f5;
  display: flex;
  flex-direction: column;
}
.tag_head.tag_head_v2 .tag_content .tag_entry:last-child h2 {
  color: #be0e6d;
  font-size: 13px;
  margin-right: 20px;
  text-transform: uppercase;
  font: 600 15px/18px calibre, sans-serif;
}
.tag_head.tag_head_v2 .tag_content .tag_entry:last-child .tag_contents > a {
  background-color: #fff;
  text-decoration: none;
  color: #666;
  padding: 5px;
  font-size: 13px;
}
.tag_head.tag_head_v2 .tag_content .tag_entry:last-child p {
  margin: 0;
}
.tag_head.tag_head_v2 .tag_content .tag_entry table {
  clear: both;
  margin: 0 0 25px -4px;
  font: 400 19px/30px calibre, sans-serif;
}
@supports (display: grid) {
  .tag_head.tag_head_v2 .tag_content .tag_entry table tbody {
    display: grid;
  }
}
.tag_head.tag_head_v2 .tag_content .tag_entry table td {
  vertical-align: top;
}
.tag_head.tag_head_v2 .tag_content .tag_entry table td:nth-child(odd) {
  color: #be0e6d;
}
.tag_head:not(.tag_head_v2) .tag_head_wrap {
  padding: 0 0 5px;
  border-bottom: 1px solid #e2e2e2;
  margin: 0 0 30px;
}
.tag_head:not(.tag_head_v2) .tag_content {
  line-height: 30px;
  color: #222;
  font: 400 19px/26px calibre, sans-serif;
}
.newsBox:after,
.newsBox__newestList .newsBox__item:after {
  display: block;
  content: " ";
  width: 100%;
  clear: both;
  float: none;
}
.newsBox {
  padding: 15px 0;
  overflow: hidden;
  position: relative;
  width: 300px;
}
.newsBox__header {
  display: flex;
  position: relative;
  transition: transform 0.2s ease-out;
  left: 0;
}
@media (-ms-high-contrast: none) {
  .newsBox__header {
    display: block;
    width: 100vw;
  }
}
.newsBox__tab {
  padding: 0 15px;
  flex: 1;
  white-space: nowrap;
  position: relative;
  margin-bottom: 15px;
  font: 600 18px/43px calibre, sans-serif;
  color: #999;
  text-align: center;
  cursor: pointer;
  border-bottom: 2px solid #efefef;
  transition: color 0.2s ease-out;
  text-transform: uppercase;
}
@media (-ms-high-contrast: none) {
  .newsBox__tab {
    float: left;
  }
}
.newsBox__tab:hover {
  color: #506e91;
  cursor: pointer;
}
.newsBox__tab:after {
  content: "";
  position: absolute;
  bottom: -2px;
  height: 3px;
  transform: scale(0);
  left: 0;
  width: 100%;
  transition: transform 0.2s ease-out;
}
.newsBox--activeTab {
  color: #506e91;
  font-weight: 700;
}
.newsBox--activeTab:after {
  transform: scale(1);
  background-image: linear-gradient(90deg, #567396, #91a6c4);
}
.newsBox__content {
  display: flex;
  position: relative;
  left: 0;
  float: left;
  transition: transform 0.2s ease-out, height 0.2s ease-out;
}
@media (-ms-high-contrast: none) {
  .newsBox__content {
    width: 900px;
  }
}
.newsBox__contentElement {
  display: inline-block;
  overflow: hidden;
  width: 300px;
}
.newsBox__item {
  width: 300px;
  font: 600 17px/19px calibre, sans-serif;
}
.newsBox__itemLink .newsBox__itemPhoto,
.newsBox__itemLink .newsBox__itemTitle {
  display: inline-block;
}
.newsBox__itemLink:hover .newsBox__itemTitle {
  color: rgba(34, 34, 34, 0.8);
}
.newsBox__itemLink:hover .newsBox__itemPhoto {
  -webkit-filter: brightness(105%) contrast(105%);
  -moz-filter: brightness(105%) contrast(105%);
  filter: brightness(105%) contrast(105%);
}
.newsBox__popularList .newsBox__item:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 15px;
  margin: 0 0 15px;
}
.newsBox__popularList.newsBox__photoVersion .newsBox__itemLink {
  display: flex;
}
.newsBox__popularList.newsBox__photoVersion .newsBox__itemPhotoBox {
  width: 90px;
  height: 60px;
  margin-right: 15px;
  overflow: hidden;
  flex-shrink: 0;
}
.newsBox__popularList.newsBox__photoVersion
  .newsBox__itemPhotoBox
  .newsBox__itemPhoto {
  width: 100%;
  border-radius: 2px;
}
.newsBox__popularList:not(.newsBox__photoVersion) ul {
  counter-reset: posts_counter;
}
.newsBox__popularList:not(.newsBox__photoVersion) ul .newsBox__item {
  position: relative;
  min-height: 65px;
}
.newsBox__popularList:not(.newsBox__photoVersion) ul .newsBox__itemLink:after {
  content: counter(posts_counter);
  counter-increment: posts_counter;
  position: absolute;
  top: 0;
  right: 0;
  color: rgba(80, 110, 145, 0.3);
  font: 700 86px/60px calibre, sans-serif;
}
.newsBox__popularList:not(.newsBox__photoVersion) .newsBox__itemTitle {
  display: block;
}
.newsBox__popularList .newsBox__itemTitle {
  color: #222;
  text-align: left;
  margin-top: -2px;
}
.newsBox__newestList .newsBox__item {
  display: block;
  padding-bottom: 25px;
  color: #222;
}
.newsBox__newestList .newsBox__item:last-child {
  padding-bottom: 0;
}
.newsBox__newestList .newsBox__item .newsBox__itemTitle {
  display: inline;
}
.newsBox__newestList .newsBox__itemTime {
  font: 600 15px/22px calibre, sans-serif;
  color: #ff0001;
}
.newsBox__recomendationItemLink {
  display: flex;
  flex-direction: column;
  padding: 0 0 25px;
}
.newsBox__recomendationItemImage {
  width: 300px;
  height: 125px;
}
.newsBox__recomendationItemTitle {
  display: block;
  font: 600 20px/24px calibre, sans-serif;
  color: #222;
  padding: 8px 0 0;
  max-height: 110px;
  overflow: hidden;
}
.sponsored_article {
  width: 100%;
  margin-bottom: 20px;
}
.sponsored_article.sponsored_article--gazetapl .title {
  color: red;
}
.sponsored_article.sponsored_article--gazetapl img {
  border-left: 4px solid red;
  padding-left: 10px;
}
.sponsored_article.sponsored_article--gazetapl .lead {
  padding-bottom: 0;
  font-weight: 700;
  border: none;
  border-left: 4px solid red;
}
.sponsored_article .header {
  font: 600 12px/26px calibre, sans-serif;
  color: #999;
  text-transform: uppercase;
  height: 18px;
}
.index_simple .sponsored_article .header {
  margin-bottom: 5px;
}
.sponsored_article .title {
  font: 700 18px/21px calibre, sans-serif;
  color: #222;
  margin-bottom: 12px;
}
.sponsored_article img {
  width: 100%;
  display: block;
}
.sponsored_article .lead {
  font: 600 19px/22px calibre, sans-serif;
  padding: 13px 15px 7px;
  color: #222;
  border: 1px solid #e5e5e5;
}
.recommendations {
  margin: 53px auto 0;
}
.screeningADFP .recommendations:before,
body[class*="dfp-video-bg"] .recommendations:before,
html[class*="adform-wallpaper"] .recommendations:before {
  content: " ";
  padding-top: 53px;
  display: block;
  margin-top: -53px;
  background-color: #fff;
  width: calc(100% + 40px);
  margin-left: -20px;
}
.recommendations .recommendations_box {
  display: none;
  margin-top: -35px;
}
.recommendations .tab {
  font: 700 18px/25px calibre, sans-serif;
  color: #999;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: color 0.2s ease-out;
  -moz-transition: color 0.2s ease-out;
  -o-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
  position: relative;
  top: -37px;
  padding: 0 30px 7px;
}
.recommendations .tab:hover {
  color: #506e91;
}
.recommendations .recommendations_tabs_container[data-checked="1"] + label,
.recommendations input[id="recommendations_tab1"]:checked + label {
  color: #506e91;
  border-bottom: 2px solid #506e91;
}
.recommendations
  .recommendations_tabs_container[data-checked="1"]
  + label.single,
.recommendations input[id="recommendations_tab1"]:checked + label.single {
  color: #222;
  border-bottom: 0;
  text-align: left;
  cursor: default;
  padding: 0;
}
.recommendations
  .recommendations_tabs_container[data-checked="1"]
  [id="recommendations_content1"],
.recommendations
  .recommendations_tabs_container[data-checked="1"]
  ~ [id="recommendations_content1"],
.recommendations
  input[id="recommendations_tab1"]:checked
  [id="recommendations_content1"],
.recommendations
  input[id="recommendations_tab1"]:checked
  ~ [id="recommendations_content1"] {
  display: -webkit-flex;
  display: flex;
}
.recommendations .recommendations_tabs_container[data-checked="2"] + label,
.recommendations input[id="recommendations_tab2"]:checked + label {
  color: #506e91;
  border-bottom: 2px solid #506e91;
}
.recommendations
  .recommendations_tabs_container[data-checked="2"]
  + label.single,
.recommendations input[id="recommendations_tab2"]:checked + label.single {
  color: #222;
  border-bottom: 0;
  text-align: left;
  cursor: default;
  padding: 0;
}
.recommendations
  .recommendations_tabs_container[data-checked="2"]
  [id="recommendations_content2"],
.recommendations
  .recommendations_tabs_container[data-checked="2"]
  ~ [id="recommendations_content2"],
.recommendations
  input[id="recommendations_tab2"]:checked
  [id="recommendations_content2"],
.recommendations
  input[id="recommendations_tab2"]:checked
  ~ [id="recommendations_content2"] {
  display: -webkit-flex;
  display: flex;
}
.recommendations .recommendations_tabs_container[data-checked="3"] + label,
.recommendations input[id="recommendations_tab3"]:checked + label {
  color: #506e91;
  border-bottom: 2px solid #506e91;
}
.recommendations
  .recommendations_tabs_container[data-checked="3"]
  + label.single,
.recommendations input[id="recommendations_tab3"]:checked + label.single {
  color: #222;
  border-bottom: 0;
  text-align: left;
  cursor: default;
  padding: 0;
}
.recommendations
  .recommendations_tabs_container[data-checked="3"]
  [id="recommendations_content3"],
.recommendations
  .recommendations_tabs_container[data-checked="3"]
  ~ [id="recommendations_content3"],
.recommendations
  input[id="recommendations_tab3"]:checked
  [id="recommendations_content3"],
.recommendations
  input[id="recommendations_tab3"]:checked
  ~ [id="recommendations_content3"] {
  display: -webkit-flex;
  display: flex;
}
.recommendations .recommendations_tabs_container[data-checked="4"] + label,
.recommendations input[id="recommendations_tab4"]:checked + label {
  color: #506e91;
  border-bottom: 2px solid #506e91;
}
.recommendations
  .recommendations_tabs_container[data-checked="4"]
  + label.single,
.recommendations input[id="recommendations_tab4"]:checked + label.single {
  color: #222;
  border-bottom: 0;
  text-align: left;
  cursor: default;
  padding: 0;
}
.recommendations
  .recommendations_tabs_container[data-checked="4"]
  [id="recommendations_content4"],
.recommendations
  .recommendations_tabs_container[data-checked="4"]
  ~ [id="recommendations_content4"],
.recommendations
  input[id="recommendations_tab4"]:checked
  [id="recommendations_content4"],
.recommendations
  input[id="recommendations_tab4"]:checked
  ~ [id="recommendations_content4"] {
  display: -webkit-flex;
  display: flex;
}
.recommendations .hidden {
  position: absolute;
  top: 0;
  left: -9999px;
  z-index: 0;
  width: 0;
  height: 0;
  overflow: hidden;
}
.recommendations .plista_widget_belowArticle {
  padding-top: 30px;
}
.recommendations_b .related_quiz {
  margin: 30px 0 30px 28px;
}
.box_seo .content {
  display: -webkit-flex;
  display: flex;
  padding: 23px 0 25px;
}
.box_seo .content li {
  font: 400 16px/40px calibre, sans-serif;
}
.box_seo .content > li {
  width: 218px;
  margin-right: 28px;
}
.box_seo .content > li:last-child {
  margin-right: 0;
}
.box_seo .content > li a {
  color: #222;
  display: inline-block;
  min-width: 40px;
}
.box_seo .content > li a:hover {
  transition: all 0.2s ease-out;
  opacity: 0.7;
}
.box_seo .content > li h3 {
  color: #222;
  text-transform: uppercase;
  font-weight: 700;
}
.box_seo .content > li h3 a {
  font: inherit;
}
.seoHead__content:after {
  display: block;
  content: " ";
  width: 100%;
  clear: both;
  float: none;
}
.seoHead {
  background: #fff;
  color: #222;
  padding: 54px 0 41px;
  font: 400 19px/26px calibre, sans-serif;
}
.seoHead__header {
  margin: 0 0 34px;
}
.seoHead__header-link {
  display: inline-block;
  background-image: linear-gradient(180deg, #506e91 50%, transparent 0);
  background-size: 2px 2px;
  background-repeat: repeat-x;
  background-position: 0 100%;
  transition: all 0.2s linear;
}
.seoHead__heading {
  font: 600 28px/34px calibre, sans-serif;
}
.seoHead__img {
  max-width: 100%;
}
.seoHead__img-container {
  line-height: 0;
  float: left;
  width: 250px;
  margin: 0 20px 0 0;
}
.seoHead__body a {
  background-size: 2px 2px;
  background-repeat: repeat-x;
  background-position: 0 100%;
  transition: all 0.2s linear;
}
.seoHead__body a:hover {
  color: #fff;
  background-image: none;
  background-color: #506e91;
}
.seoHead__footer {
  list-style: disc inside;
}
.seoHead__footer-link {
  background-image: linear-gradient(180deg, #506e91 50%, transparent 0);
  background-size: 2px 2px;
  background-repeat: repeat-x;
  background-position: 0 1.1em;
  transition: all 0.2s linear;
}
.seoHead__footer-link:hover {
  color: #fff;
  background-image: none;
  background-color: #506e91;
}
.page_footer:after {
  display: block;
  content: " ";
  width: 100%;
  clear: both;
  float: none;
}
.page_footer {
  padding: 15px 0;
  padding-top: 2px;
  margin: 0 auto;
  font: 400 15px/30px calibre, sans-serif;
  text-align: center;
  color: #969696;
  background: #fff;
}
.page_footer li {
  display: inline-block;
  padding: 0 8px;
}
.page_footer .page_footer_upper {
  border: 1px solid #ececec;
  border-width: 1px 0;
  padding: 20px;
  margin-bottom: 16px;
  font: 400 15px/30px calibre, sans-serif;
}
.page_footer .page_footer_upper a {
  color: #333;
}
.page_footer .page_footer_upper a:hover {
  color: rgba(34, 34, 34, 0.8);
}
.page_footer a {
  color: #999;
  display: inline-block;
  min-width: 40px;
  -webkit-transition: color 0.2s ease-in;
  -moz-transition: color 0.2s ease-in;
  -o-transition: color 0.2s ease-in;
  transition: color 0.2s ease-in;
}
.page_footer a:hover {
  color: #6b6b6b;
}
.page_footer .footer_lower_links {
  font: 400 14px/23px calibre, sans-serif;
}
.adviewDFPBanner {
  line-height: 0;
}
.adviewDFPBanner.activeBan {
  padding: 20px 0;
  font-size: 21px;
  line-height: 30px;
}
.adviewDFPBanner.activeBan .banLabel {
  padding-bottom: 4px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.right_aside .adviewDFPBanner.activeBan > div {
  margin-bottom: 0;
}
.right_aside .adviewDFPBanner.adblock > div {
  display: block !important;
}
.DFP-091-RELATED.activeBan.adviewDFPBanner {
  margin: 0 !important;
  padding: 0;
  overflow: hidden;
}
.DFP-091-RELATED.activeBan div {
  max-width: 100% !important;
}
.DFP-091-RELATED.activeBan a {
  display: block;
  color: #222;
  font: 600 18px/22px calibre, sans-serif;
}
.DFP-091-RELATED.activeBan a.kd_ns_font,
.DFP-091-RELATED.activeBan a.t {
  padding: 10px 15px;
}
.DFP-091-RELATED.activeBan a img {
  width: 100%;
  border-radius: 1px 1px 0 0;
  background: url(../images/"") repeat 0 0 transparent;
}
.screeningADFP .section_wrapper,
html[class*="adform-wallpaper"] .section_wrapper {
  max-width: 1242px;
  margin: 0 auto;
}
.screeningADFP .aside_wrapper {
  background-color: transparent;
}
body[id^="pageTypeId_1"] #top_wrapper .adviewDFPBanner.activeBan,
body[id^="pageTypeId_7"] #top_wrapper .adviewDFPBanner.activeBan,
body[id^="pageTypeId_56"] #top_wrapper .adviewDFPBanner.activeBan {
  padding: 15px 0 30px;
  margin-bottom: 25px;
  background-color: #f5f5f5;
}
body[id^="pageTypeId_0"] #top_wrapper .adviewDFPBanner.activeBan {
  margin-bottom: 0;
}
body[id^="pageTypeId_1"] .adviewDFPBanner.activeBan.DFP-000-MAINBOX,
body[id^="pageTypeId_7"] .adviewDFPBanner.activeBan.DFP-000-MAINBOX {
  position: sticky;
  top: 80px;
  z-index: 1;
}
body[id^="pageTypeId_1"] .adviewDFPBanner.activeBan.DFP-001-TOPBOARD,
body[id^="pageTypeId_1"] .adviewDFPBanner.activeBan.DFP-011-MIDBOARD,
body[id^="pageTypeId_7"] .adviewDFPBanner.activeBan.DFP-001-TOPBOARD,
body[id^="pageTypeId_7"] .adviewDFPBanner.activeBan.DFP-011-MIDBOARD {
  position: relative;
  margin-bottom: 0;
  padding: 15px 0;
  z-index: 2;
  background-color: #f5f5f5;
}
body[id^="pageTypeId_1"].dfp-video-bg .DFP-001-TOPBOARD,
body[id^="pageTypeId_1"].dfp-video-bg .DFP-011-MIDBOARD,
body[id^="pageTypeId_1"].screeningADFP .DFP-001-TOPBOARD,
body[id^="pageTypeId_1"].screeningADFP .DFP-011-MIDBOARD,
body[id^="pageTypeId_7"].dfp-video-bg .DFP-001-TOPBOARD,
body[id^="pageTypeId_7"].dfp-video-bg .DFP-011-MIDBOARD,
body[id^="pageTypeId_7"].screeningADFP .DFP-001-TOPBOARD,
body[id^="pageTypeId_7"].screeningADFP .DFP-011-MIDBOARD {
  background: none !important;
}
body[id^="pageTypeId_1"] [id^="banC"][class*="activeBan"],
body[id^="pageTypeId_7"] [id^="banC"][class*="activeBan"] {
  margin: 15px 0;
  text-align: center;
}
body[id="pageTypeId_13"] .adviewDFPBanner.activeBan.DFP-001-TOPBOARD,
body[id="pageTypeId_13"] .adviewDFPBanner.activeBan.DFP-011-MIDBOARD {
  position: unset;
  padding-top: 0;
}
body[id^="pageTypeId_14"].screeningADFP .content_wrap {
  background-color: transparent;
}
body[id^="pageTypeId_14"].screeningADFP #main_wrapper {
  background: #fff;
}
#banP007_DFP.activeBan,
#banP0104_DFP.activeBan {
  text-align: center;
}
body[id^="pageTypeId_7"].screeningLabel-001-TOPBOARD .adviewDFPBanner {
  text-align: left;
}
body[id^="pageTypeId_7"].screeningLabel-001-TOPBOARD
  .adviewDFPBanner.activeBan {
  padding: 15px 0 30px !important;
  line-height: unset;
}
body[id^="pageTypeId_0"].adviewDFPBanner.activeBan,
body[id^="pageTypeId_7"].adviewDFPBanner.activeBan,
body[id^="pageTypeId_56"].adviewDFPBanner.activeBan {
  margin-bottom: 30px;
  padding-bottom: 0;
}
@supports (display: grid) {
  body[id^="pageTypeId_1"] .ban000_wrapper,
  body[id^="pageTypeId_7"] .ban000_wrapper {
    grid-column: 3;
  }
  body[id^="pageTypeId_1"] .main_wrapper--video .ban000_wrapper,
  body[id^="pageTypeId_7"] .main_wrapper--video .ban000_wrapper {
    grid-row: 5;
    z-index: 5;
    background: #fff;
    position: relative;
  }
  body[id^="pageTypeId_1"]
    .main_wrapper:not(.main_wrapper--video)
    .ban000_wrapper,
  body[id^="pageTypeId_7"]
    .main_wrapper:not(.main_wrapper--video)
    .ban000_wrapper {
    grid-row: 2 / span 4;
  }
  body[id^="pageTypeId_1"] .ban001_wrapper,
  body[id^="pageTypeId_7"] .ban001_wrapper {
    position: relative;
    grid-column: 1 / span 3;
    z-index: 3;
  }
  body[id^="pageTypeId_1"] .main_wrapper--video .ban001_wrapper,
  body[id^="pageTypeId_7"] .main_wrapper--video .ban001_wrapper {
    grid-row: 7;
  }
  body[id^="pageTypeId_1"]
    .main_wrapper:not(.main_wrapper--video)
    .ban001_wrapper,
  body[id^="pageTypeId_7"]
    .main_wrapper:not(.main_wrapper--video)
    .ban001_wrapper {
    grid-row: 6;
    margin: 25px 0;
  }
  @media screen and (min-width: 1200px) {
    body[id^="pageTypeId_1"]:not(.screeningADFP)
      .main_wrapper--video
      .ban001_wrapper:before,
    body[id^="pageTypeId_7"]:not(.screeningADFP)
      .main_wrapper--video
      .ban001_wrapper:before {
      content: "";
      top: 0;
      position: absolute;
      height: 100%;
      z-index: -13;
      background: #f5f5f5;
      margin-left: calc(-50vw + 592.5px);
      width: 100vw;
    }
  }
}
@supports not (display: grid) {
  body[id^="pageTypeId_1"] .ban000_wrapper,
  body[id^="pageTypeId_7"] .ban000_wrapper {
    float: right;
    width: 300px;
  }
  body[id^="pageTypeId_1"] .ban001_wrapper,
  body[id^="pageTypeId_7"] .ban001_wrapper {
    position: relative;
    float: left;
    width: 100%;
    margin: 30px auto;
  }
  body[id^="pageTypeId_1"] .ban001_wrapper:after,
  body[id^="pageTypeId_7"] .ban001_wrapper:after {
    display: block;
    content: " ";
    width: 100%;
    clear: both;
    float: none;
  }
}
@media (-ms-high-contrast: active), (-ms-high-contrast: none) {
  body[id^="pageTypeId_1"] .ban000_wrapper,
  body[id^="pageTypeId_7"] .ban000_wrapper {
    float: right;
    width: 300px;
  }
  body[id^="pageTypeId_1"] .ban001_wrapper,
  body[id^="pageTypeId_7"] .ban001_wrapper {
    position: relative;
    float: left;
    width: 100%;
    margin: 30px auto;
  }
  body[id^="pageTypeId_1"] .ban001_wrapper:after,
  body[id^="pageTypeId_7"] .ban001_wrapper:after {
    display: block;
    content: " ";
    width: 100%;
    clear: both;
    float: none;
  }
}
body#pageTypeId_0 {
  overflow-x: hidden;
}
body#pageTypeId_0.dfp-video-bg .adviewDFPBanner.activeBan:after,
body#pageTypeId_0.dfp-video-bg .DFP-001-TOPBOARD:after,
body#pageTypeId_0.screeningADFP .adviewDFPBanner.activeBan:after,
body#pageTypeId_0.screeningADFP .DFP-001-TOPBOARD:after {
  display: none;
}
body#pageTypeId_0.dfp-video-bg .DFP-001-TOPBOARD,
body#pageTypeId_0.screeningADFP .DFP-001-TOPBOARD {
  position: static;
}
body#pageTypeId_0.dfp-video-bg .DFP-001-TOPBOARD > div,
body#pageTypeId_0.dfp-video-bg .DFP-001-TOPBOARD > span,
body#pageTypeId_0.screeningADFP .DFP-001-TOPBOARD > div,
body#pageTypeId_0.screeningADFP .DFP-001-TOPBOARD > span {
  z-index: 1;
}
body#pageTypeId_0.dfp-video-bg .index_body,
body#pageTypeId_0.screeningADFP .index_body {
  width: 1242px;
  margin: 0 auto !important;
  background: #fff;
  position: relative;
}
body#pageTypeId_0.dfp-video-bg .index_body.AdScreening,
body#pageTypeId_0.screeningADFP .index_body.AdScreening {
  width: auto;
}
body#pageTypeId_0 .DFP-001-TOPBOARD.adviewDFPBanner.activeBan,
body#pageTypeId_0 [id^="DFP-001-TOPBOARD_"].adviewDFPBanner.activeBan,
body#pageTypeId_0 [id^="DFP-011-MIDBOARD_"].adviewDFPBanner.activeBan {
  position: relative !important;
  padding: 14px 0 30px !important;
}
body#pageTypeId_0 .DFP-001-TOPBOARD.adviewDFPBanner.activeBan > div,
body#pageTypeId_0 .DFP-001-TOPBOARD.adviewDFPBanner.activeBan > span,
body#pageTypeId_0 [id^="DFP-001-TOPBOARD_"].adviewDFPBanner.activeBan > div,
body#pageTypeId_0 [id^="DFP-001-TOPBOARD_"].adviewDFPBanner.activeBan > span,
body#pageTypeId_0 [id^="DFP-011-MIDBOARD_"].adviewDFPBanner.activeBan > div,
body#pageTypeId_0 [id^="DFP-011-MIDBOARD_"].adviewDFPBanner.activeBan > span {
  position: relative;
  z-index: 1;
}
body#pageTypeId_0 .DFP-001-TOPBOARD.adviewDFPBanner.activeBan:after,
body#pageTypeId_0 [id^="DFP-001-TOPBOARD_"].adviewDFPBanner.activeBan:after,
body#pageTypeId_0 [id^="DFP-011-MIDBOARD_"].adviewDFPBanner.activeBan:after {
  content: "";
  top: 0;
  position: absolute;
  height: 100%;
  background: #f5f5f5;
  left: calc((100vw - 100%) / -2);
  width: 100vw;
}
body#pageTypeId_0 [id^="DFP-001-TOPBOARD_"] {
  margin-bottom: 0 !important;
  background: #fff;
}
body#pageTypeId_0 .adviewDFPBanner.sticky,
body#pageTypeId_0 .DFP-003-RECTANGLE {
  position: sticky;
  top: 35px;
}
body#pageTypeId_0.screeningLabel-001-TOPBOARD
  .DFP-001-TOPBOARD.adviewDFPBanner.activeBan:after {
  display: none;
}
body#pageTypeId_0 .banIndexDFP.activeBan {
  display: block;
  padding: 30px 0;
  margin-left: 0;
  margin-right: 0;
}
body#pageTypeId_0 .banIndexDFP.activeBan .banLabel {
  display: none !important;
}
body#pageTypeId_0
  .index_simple.tiles.onn
  .list_tiles:first-of-type
  #banP99_DFP.activeBan
  ~ .entry:nth-child(11) {
  display: block;
}
body#pageTypeId_0 .index_simple.tiles .list_tiles .entry.banIndexDFP.activeBan {
  padding: 0 !important;
  border: 0;
}
body#pageTypeId_0 .index_simple.tiles .list_tiles .entry:nth-child(11) {
  display: none;
}
.hp-notification-top {
  display: block;
  background: #f5f5f5;
  transition: filter 0.2s ease-out, transform 0.6s ease-out;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
  position: sticky;
  position: -webkit-sticky;
  width: 100%;
  transform: translateY(-80px);
  padding: 15px 0;
  top: 34px;
}
.hp-notification-top:hover {
  filter: brightness(0.95);
  text-decoration: none;
}
.hp-notification-top__news-box {
  width: 1202px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  color: #222;
}
.hp-notification-top__prefix {
  z-index: 1;
  min-width: 155px;
  font: 700 19px/20px calibre, sans-serif;
  background: #f5f5f5;
  position: relative;
  word-break: break-all;
  padding: 0;
}
.hp-notification-top__prefix:after {
  content: "";
  position: absolute;
  width: 60%;
  height: 7px;
  background: linear-gradient(45deg, #ff5b1e, #ff0068);
  left: 0;
  bottom: -1px;
  z-index: -1;
}
.hp-notification-top__title {
  font: 400 20px/20px calibre, sans-serif;
  padding: 0 0 0 20px;
  overflow: hidden;
  white-space: nowrap;
  max-width: 790px;
  text-overflow: ellipsis;
}
.hp-notification-top__read-more {
  font: 400 20px/20px calibre, sans-serif;
  width: 90px;
  text-decoration: underline;
  white-space: nowrap;
  padding: 0 0 0 10px;
}
.hp-notification-top--show {
  transform: translateY(0);
}
.hp-notification-top--breaking-news {
  background: #e30000;
}
.hp-notification-top--breaking-news .hp-notification-top__prefix {
  background: #fff;
  color: #e30000;
  text-transform: uppercase;
  border-radius: 1px;
  padding: 0 6px;
  min-width: inherit;
}
.hp-notification-top--breaking-news .hp-notification-top__prefix:after {
  content: none;
}
.hp-notification-top--breaking-news .hp-notification-top__title {
  color: #fff;
  font-weight: 600px;
}
.hp-notification-top--breaking-news .hp-notification-top__read-more {
  color: #fff;
  width: auto;
  position: relative;
}
.hp-notification-top--breaking-news:hover {
  filter: brightness(0.92);
}
.hp-notification-bottom {
  height: 84px;
  margin-left: -2px;
  background: #fff;
  display: flex;
  justify-content: start;
  align-items: center;
  border-radius: 4px;
  box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.4);
  position: fixed;
  bottom: 30px;
  width: 750px;
  transition: all 0.6s ease-in-out;
  transform: translateY(130px);
  z-index: 100000;
  overflow: hidden;
  text-decoration: none !important;
  transition: background 0.3s ease-out, transform 0.6s ease-out;
}
.hp-notification-bottom:hover {
  text-decoration: none;
  background: #e6e6e6;
}
.hp-notification-bottom svg {
  padding: 0 30px;
  height: 84px;
}
.hp-notification-bottom__article-photo {
  padding: 0 15px;
  height: 54px;
  display: inline-block;
}
.hp-notification-bottom__article-photo img {
  width: 72px;
  height: 100%;
}
.hp-notification-bottom__article-content {
  padding: 15px 15px 15px 0;
  font-family: Roboto, sans-serif;
  width: 390px;
  display: inline-block;
}
.hp-notification-bottom__article-title {
  font-size: 16px;
  line-height: 20px;
  color: #222;
  position: relative;
  z-index: 1;
  font-weight: 700;
}
.hp-notification-bottom__article-title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 6px;
  width: 71px;
  background: linear-gradient(90deg, #e42b38, #ca1926);
  z-index: -1;
}
.hp-notification-bottom__article-lead {
  font-size: 14px;
  color: #222;
  line-height: 17px;
  font-weight: 100;
}
.hp-notification-bottom--show {
  transform: translateY(0);
}
#breadcrumbs:after {
  display: block;
  content: " ";
  width: 100%;
  clear: both;
  float: none;
}
#breadcrumbs {
  overflow: hidden;
  width: 750px;
  margin: 20px 350px 6px 0;
  position: relative;
}
#breadcrumbs:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50px;
  background: linear-gradient(90deg, hsla(0, 0%, 100%, 0), #f2f2f2 70%);
  z-index: 1;
}
#breadcrumbs .bc_item {
  color: #9f9f9f;
  display: inline;
}
#breadcrumbs .bc_item:after {
  content: " \203A ";
  font-size: 1.3em;
}
#breadcrumbs .bc_item:last-of-type:after {
  display: none;
}
#breadcrumbs .bc_item .bc_item_link {
  font: inherit;
  color: inherit;
  transition: color 0.2s ease-in;
}
#breadcrumbs .bc_item .bc_item_link:hover {
  color: #8e8e8e;
  background: none;
}
@supports (display: grid) {
  #sitePath {
    grid-row: 1;
  }
  .main_wrapper--video #sitePath {
    grid-column: 1 / span 2;
  }
  .main_wrapper:not(.main_wrapper--video) #sitePath {
    grid-column: 2;
  }
}
@supports not (display: grid) {
  #sitePath {
    width: 852px;
  }
  .main_wrapper:not(.main_wrapper--video) #sitePath {
    padding-left: 102px;
  }
}
@media (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #sitePath {
    width: 852px;
  }
  .main_wrapper:not(.main_wrapper--video) #sitePath {
    padding-left: 102px;
  }
}
.video_wrapper {
  position: relative;
  z-index: 1;
}
.video_wrapper--hide {
  position: static;
}
.super_video {
  position: relative;
  position: sticky;
  position: -webkit-sticky;
  top: 34px;
  padding-top: 25px;
  z-index: 1;
}
@media screen and (min-width: 1200px) {
  .super_video:before {
    content: "";
    top: 0;
    width: 100vw;
    position: absolute;
    height: 100%;
    background: #000;
    margin-left: calc(-50vw + 592.5px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .super_video:before {
    content: "";
    top: 0;
    position: absolute;
    height: 100%;
    background: #000;
    width: calc(1242px + 100vw);
    margin-left: -100vw;
  }
}
.socialBar:after,
.socialBar_b:after {
  display: block;
  content: " ";
  width: 100%;
  clear: both;
  float: none;
}
.socialBar .svg_icon {
  fill: #fff;
  width: 24px;
  height: 45%;
}
.socialBar .svg_icon * {
  cursor: pointer;
}
.socialBar .count {
  display: block;
  margin: 0 auto;
  color: #666;
  font: 600 16px/22px calibre, sans-serif;
  text-align: center;
}
.socialBar .sc_item {
  width: 100%;
  margin-bottom: 14px;
  width: 52px;
}
.socialBar .sc_item a {
  height: 52px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-content: stretch;
  align-content: stretch;
  -webkit-align-items: center;
  align-items: center;
  background-color: #2444a0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.socialBar .sc_item.comments a {
  background-color: #444;
}
.socialBar .sc_item.fbShare.stats a {
  -webkit-border-radius: 2px 0 0 2px;
  -moz-border-radius: 2px 0 0 2px;
  -ms-border-radius: 2px 0 0 2px;
  -o-border-radius: 2px 0 0 2px;
  border-radius: 2px 0 0 2px;
}
.socialBar .sc_item.fbShare.stats span {
  width: 100%;
  color: #fff;
  text-align: center;
  background-color: #31589c;
  vertical-align: middle;
  overflow: hidden;
  -webkit-border-radius: 0 2px 2px 0;
  -moz-border-radius: 0 2px 2px 0;
  -ms-border-radius: 0 2px 2px 0;
  -o-border-radius: 0 2px 2px 0;
  border-radius: 0 2px 2px 0;
}
.socialBar .sc_item.fbShare a {
  background-color: #3b579d;
  background-position: 3px 6px;
}
.socialBar .sc_item.twitter a {
  background-color: #2ba9e1;
}
.socialBar.vertical {
  opacity: 0;
  position: -webkit-sticky;
  position: sticky;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding-top: 10px;
  top: 40px;
}
.hp-notification-top ~ #article_wrapper .socialBar.vertical {
  top: 90px;
}
.video_wrapper .socialBar.vertical .sc_items {
  width: auto;
  display: flex;
  padding: 15px 0 25px;
}
.video_wrapper .socialBar.vertical .sc_items .sc_item {
  width: auto;
  display: flex;
  margin-bottom: 0;
}
.video_wrapper .socialBar.vertical .sc_items a {
  height: 40px;
  width: 40px;
}
.video_wrapper .socialBar.vertical .sc_items .count {
  padding: 10px;
  color: #fff;
}
.video_wrapper .socialBar.vertical .sc_items .related_gallery_closing_button {
  display: none;
}
.socialBar.vertical.visible {
  opacity: 1;
}
.socialBar.vertical .sc_items {
  width: 52px;
}
.socialBar.vertical .sc_items a {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.socialBar.vertical .fbShare a {
  background-color: #3b579d;
}
.socialBar.vertical .fbShare a,
.socialBar.vertical .fbShare a:hover {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.socialBar.vertical .fbShare a:hover {
  background-color: #4667b9;
  -webkit-box-shadow: 0 4px 7.68px 0.32px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 4px 7.68px 0.32px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 7.68px 0.32px rgba(0, 0, 0, 0.2);
}
.socialBar.vertical .fbShare a .svg_icon {
  width: 39%;
  height: 39%;
}
.socialBar.vertical .count {
  height: 0;
  opacity: 0;
}
.socialBar.vertical .count,
.socialBar.vertical .count.active {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.socialBar.vertical .count.active {
  height: 22px;
  opacity: 1;
}
.socialBar.vertical .comments a {
  background-color: #444;
}
.socialBar.vertical .comments a,
.socialBar.vertical .comments a:hover {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.socialBar.vertical .comments a:hover {
  background-color: #595959;
  -webkit-box-shadow: 0 4px 7.68px 0.32px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 4px 7.68px 0.32px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 7.68px 0.32px rgba(0, 0, 0, 0.2);
}
.socialBar.horizontal .sc_items {
  width: auto;
  margin-top: 20px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}
.socialBar.horizontal .sc_items .sc_item {
  margin-right: 15px;
  width: auto;
}
.socialBar.horizontal .sc_items .sc_item a {
  height: 39px;
  padding: 0 20px;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  -webkit-align-content: stretch;
  align-content: stretch;
  border-radius: 52px;
}
.socialBar.horizontal .sc_items .sc_item.comments a {
  margin: 0 auto;
  background: #444;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-shadow: 0 4px 7.68px 0.32px transparent;
  -moz-box-shadow: 0 4px 7.68px 0.32px transparent;
  box-shadow: 0 4px 7.68px 0.32px transparent;
}
.socialBar.horizontal .sc_items .sc_item.comments a:hover {
  background-color: #595959;
  -webkit-box-shadow: 0 4px 7.68px 0.32px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 4px 7.68px 0.32px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 7.68px 0.32px rgba(0, 0, 0, 0.2);
}
.socialBar.horizontal .sc_items .sc_item.comments a .svg_icon {
  max-width: 18px;
  width: 18px;
}
.socialBar.horizontal .sc_items .sc_item.fbShare {
  min-width: 140px;
}
.socialBar.horizontal .sc_items .sc_item.fbShare a {
  background: #3b579d;
}
.socialBar.horizontal .sc_items .sc_item.fbShare a,
.socialBar.horizontal .sc_items .sc_item.fbShare a:hover {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.socialBar.horizontal .sc_items .sc_item.fbShare a:hover {
  background-color: #4667b9;
  -webkit-box-shadow: 0 4px 7.68px 0.32px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 4px 7.68px 0.32px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 7.68px 0.32px rgba(0, 0, 0, 0.2);
}
.socialBar.horizontal .sc_items .sc_item .count {
  display: inline;
  color: #fff;
}
.socialBar.horizontal .sc_items .sc_item .sc_item_label {
  margin-left: 10px;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  font: 600 16px/30px calibre, sans-serif;
}
.socialBar.horizontal .sc_items .sc_item .sc_item_label span {
  margin-left: 5px;
}
.socialBar_b .svg_icon {
  fill: #666;
  width: 24px;
  height: 45%;
}
.socialBar_b .svg_icon * {
  cursor: pointer;
}
.socialBar_b .count {
  display: block;
  margin: 0 auto;
  color: #666;
  font: 600 16px/22px calibre, sans-serif;
  text-align: center;
}
.socialBar_b .sc_item:not(:first-child) {
  padding-left: 0;
}
.socialBar_b .sc_item a {
  height: 52px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-content: stretch;
  align-content: stretch;
  -webkit-align-items: center;
  align-items: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.socialBar_b.horizontal {
  padding: 15px 15px 20px;
}
.socialBar_b.horizontal .sc_items {
  width: auto;
  margin-top: 20px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}
.socialBar_b.horizontal .sc_items .sc_item a {
  height: 39px;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-content: stretch;
  align-content: stretch;
  border-radius: 52px;
}
.socialBar_b.horizontal .sc_items .sc_item.comments {
  width: 100%;
}
.socialBar_b.horizontal .sc_items .sc_item.comments a {
  margin: 0 auto;
  color: #666;
  padding: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-box-shadow: 0 4px 7.68px 0.32px transparent;
  -moz-box-shadow: 0 4px 7.68px 0.32px transparent;
  box-shadow: 0 4px 7.68px 0.32px transparent;
}
.socialBar_b.horizontal .sc_items .sc_item.comments .sc_item_label {
  color: #666;
}
.socialBar_b.horizontal .sc_items .sc_item.comments .sc_item_label .count {
  display: inline-block;
  position: relative;
  margin-left: 10px;
  font: 600 15px/18px calibre, sans-serif;
}
.socialBar_b.horizontal .sc_items .sc_item.fbShare a {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding: 0;
}
.socialBar_b.horizontal .sc_items .sc_item.fbShare a:hover {
  background-color: #4667b9;
  -webkit-box-shadow: 0 4px 7.68px 0.32px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 4px 7.68px 0.32px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 7.68px 0.32px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.socialBar_b.horizontal .sc_items .sc_item .sc_item_label {
  margin-right: 10px;
  color: #3b579d;
  text-transform: uppercase;
  cursor: pointer;
  font: 600 15px/18px calibre, sans-serif;
}
.socialBar_b.horizontal .sc_items .sc_item .sc_item_label span {
  margin-left: 5px;
}
#gazeta_article_body .art_blockquote:after,
#gazeta_article_body .imageUOM:after,
#gazeta_article_body .related-box .photo:after,
#gazeta_article_body h6:after {
  display: block;
  content: " ";
  width: 100%;
  clear: both;
  float: none;
}
#gazeta_article_body .art_blockquote,
#gazeta_article_body h6 {
  padding: 15px 0;
}
#gazeta_article_body {
  color: #222;
  font: 400 21px/29px calibre, sans-serif;
}
#gazeta_article_body b {
  font-weight: 600;
}
#gazeta_article_body .cmsArtykulElem h5,
#gazeta_article_body p {
  word-break: break-word;
  padding: 15px 0;
}
#gazeta_article_body .cmsArtykulElem h5.imgw span,
#gazeta_article_body p.imgw span {
  display: block;
  position: relative;
  padding: 5px 0 3px;
  color: #bbb;
  overflow: hidden;
  word-wrap: break-word;
  font: 400 15px/19px calibre, sans-serif;
}
#gazeta_article_body .cmsArtykulElem h5.imgw span:after,
#gazeta_article_body p.imgw span:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #efefef;
}
#gazeta_article_body #artykul img,
#gazeta_article_body .imgw img,
#gazeta_article_body p img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}
#gazeta_article_body em {
  font-style: italic;
}
#gazeta_article_body #artykul a,
#gazeta_article_body .cmsArtykulElem a,
#gazeta_article_body a {
  font-weight: 400;
  color: #222;
  word-break: break-word;
  transition: all 0.2s linear;
  background-repeat: repeat-x;
  background-position: 0 1.1em;
}
#gazeta_article_body
  #artykul
  a:not(.external_link):not(.cg3-product-link):not(.title-link):not(
    .gallery-open-button__link
  ):not(.ad__link):not(.relatedBox__link),
#gazeta_article_body
  .cmsArtykulElem
  a:not(.external_link):not(.cg3-product-link):not(.title-link):not(
    .gallery-open-button__link
  ):not(.ad__link):not(.relatedBox__link),
#gazeta_article_body
  a:not(.external_link):not(.cg3-product-link):not(.title-link):not(
    .gallery-open-button__link
  ):not(.ad__link):not(.relatedBox__link) {
  background-image: -owg-linear-gradient(
    to bottom,
    #506e91 50%,
    transparent 50%
  );
  background-image: -moz-linear-gradient(
    to bottom,
    #506e91 50%,
    transparent 50%
  );
  background-image: -o-linear-gradient(to bottom, #506e91 50%, transparent 50%);
  background-size: 2px 2px;
}
#gazeta_article_body
  #artykul
  a:not(.external_link):not(.cg3-product-link):not(.title-link):not(
    .gallery-open-button__link
  ):not(.ad__link):not(.relatedBox__link)
  u,
#gazeta_article_body
  .cmsArtykulElem
  a:not(.external_link):not(.cg3-product-link):not(.title-link):not(
    .gallery-open-button__link
  ):not(.ad__link):not(.relatedBox__link)
  u,
#gazeta_article_body
  a:not(.external_link):not(.cg3-product-link):not(.title-link):not(
    .gallery-open-button__link
  ):not(.ad__link):not(.relatedBox__link)
  u {
  text-decoration: none;
}
#gazeta_article_body
  #artykul
  a:not(.external_link):not(.cg3-product-link):not(.title-link):not(
    .gallery-open-button__link
  ):not(.ad__link):not(.relatedBox__link):hover,
#gazeta_article_body
  .cmsArtykulElem
  a:not(.external_link):not(.cg3-product-link):not(.title-link):not(
    .gallery-open-button__link
  ):not(.ad__link):not(.relatedBox__link):hover,
#gazeta_article_body
  a:not(.external_link):not(.cg3-product-link):not(.title-link):not(
    .gallery-open-button__link
  ):not(.ad__link):not(.relatedBox__link):hover {
  color: #fff;
  background-image: none;
  background-color: #506e91;
  transition: all 0.2s linear;
}
#gazeta_article_body
  #artykul
  a:not(.external_link):not(.cg3-product-link):not(.title-link):not(
    .gallery-open-button__link
  ):not(.ad__link):not(.relatedBox__link):hover
  u,
#gazeta_article_body
  .cmsArtykulElem
  a:not(.external_link):not(.cg3-product-link):not(.title-link):not(
    .gallery-open-button__link
  ):not(.ad__link):not(.relatedBox__link):hover
  u,
#gazeta_article_body
  a:not(.external_link):not(.cg3-product-link):not(.title-link):not(
    .gallery-open-button__link
  ):not(.ad__link):not(.relatedBox__link):hover
  u {
  text-decoration: underline;
}
#gazeta_article_body
  #artykul
  a:not(.external_link):not(.cg3-product-link):not(.title-link):not(
    .gallery-open-button__link
  ):not(.ad__link):not(.relatedBox__link):hover:after,
#gazeta_article_body
  .cmsArtykulElem
  a:not(.external_link):not(.cg3-product-link):not(.title-link):not(
    .gallery-open-button__link
  ):not(.ad__link):not(.relatedBox__link):hover:after,
#gazeta_article_body
  a:not(.external_link):not(.cg3-product-link):not(.title-link):not(
    .gallery-open-button__link
  ):not(.ad__link):not(.relatedBox__link):hover:after {
  border-color: transparent;
  transition: all 0.2s linear;
}
#gazeta_article_body #artykul .external_link,
#gazeta_article_body a.external_link {
  background-image: -owg-linear-gradient(to right, #222 50%, transparent 50%);
  background-image: -webkit-linear-gradient(90deg, #222 50%, transparent 0);
  background-image: -moz-linear-gradient(to right, #222 50%, transparent 50%);
  background-image: -o-linear-gradient(to right, #222 50%, transparent 50%);
  background-image: linear-gradient(90deg, #222 50%, transparent 0);
  background-size: 3px 1px;
}
#gazeta_article_body #artykul .external_link:hover,
#gazeta_article_body a.external_link:hover {
  background-image: -owg-linear-gradient(to right, #ccc 50%, transparent 50%);
  background-image: -webkit-linear-gradient(90deg, #ccc 50%, transparent 0);
  background-image: -moz-linear-gradient(to right, #ccc 50%, transparent 50%);
  background-image: -o-linear-gradient(to right, #ccc 50%, transparent 50%);
  background-image: linear-gradient(90deg, #ccc 50%, transparent 0);
  background-size: 3px 1px;
}
#gazeta_article_body .art_sub_title,
#gazeta_article_body .txt_srodtytul,
#gazeta_article_body h4 {
  word-break: break-word;
  padding: 25px 0 3px;
  font: 700 24px/29px calibre, sans-serif;
}
#gazeta_article_body .art_sub_title .external_link,
#gazeta_article_body .txt_srodtytul .external_link,
#gazeta_article_body h4 .external_link {
  font-weight: 600;
}
#gazeta_article_body .art_sub_title .external_link:hover,
#gazeta_article_body .txt_srodtytul .external_link:hover,
#gazeta_article_body h4 .external_link:hover {
  text-decoration: none;
}
#gazeta_article_body .art_sub_title .external_link:hover:after,
#gazeta_article_body .txt_srodtytul .external_link:hover:after,
#gazeta_article_body h4 .external_link:hover:after {
  border-color: #ccc;
}
#gazeta_article_body .art_interview_question {
  padding: 0 0 5px;
  font: 600 21px/29px calibre, sans-serif;
}
#gazeta_article_body iframe,
#gazeta_article_body object {
  max-width: 100%;
}
#gazeta_article_body #artykul .gazetaVideoPlayer a {
  display: block;
  margin-bottom: 16px;
  font-weight: 700;
}
#gazeta_article_body .art_aside {
  margin: 30px 20px;
  border-left: 2px solid #dededc;
  padding: 18px 0 18px 15px;
  font-size: 15px;
}
#gazeta_article_body #artykul i.noApp {
  font: inherit;
  font-style: normal;
}
#gazeta_article_body #artykul i.noApp,
#gazeta_article_body #artykul i.noApp a,
#gazeta_article_body .art_strong {
  font-weight: 700;
}
#gazeta_article_body .art_blockquote,
#gazeta_article_body h6 {
  color: #000;
  position: relative;
  margin: 12px 20px 15px;
  padding: 0 90px;
  font: 700 24px/29px calibre, sans-serif;
}
#gazeta_article_body .art_blockquote:before,
#gazeta_article_body h6:before {
  content: ",,";
  position: absolute;
  color: #506e91;
  font: 700 80px/30px Times, sans-serif;
  top: -23px;
  left: 38px;
}
#gazeta_article_body .art_oList,
#gazeta_article_body .art_uList,
#gazeta_article_body ol,
#gazeta_article_body ul {
  padding: 0 0 15px 20px;
  margin-left: 20px;
}
#gazeta_article_body .art_oList,
#gazeta_article_body ol {
  list-style: decimal outside;
}
#gazeta_article_body .art_oList > li,
#gazeta_article_body ol > li {
  padding: 3px 0 3px 5px;
}
#gazeta_article_body .art_uList,
#gazeta_article_body ul {
  list-style: disc outside;
}
#gazeta_article_body .art_uList > li,
#gazeta_article_body ul > li {
  padding: 3px 0;
}
#gazeta_article_body .imageUOM {
  display: block;
}
#gazeta_article_body .imageUOM img {
  width: 100%;
  display: block;
}
#gazeta_article_body .photoAuthor {
  position: relative;
  display: block;
  padding: 5px 0 3px;
  font: 400 15px/25px calibre, sans-serif;
  color: #bbb;
}
#gazeta_article_body .photoAuthor:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #efefef;
}
#gazeta_article_body .art_embed {
  padding: 15px 0;
}
#gazeta_article_body .art_embed .instagram-media {
  width: 100%;
  max-width: 750px;
}
#gazeta_article_body .art_embed .youtube-container {
  display: block;
  margin: 15px auto;
  width: 100%;
  max-width: 750px;
}
#gazeta_article_body .art_embed .youtube-container .youtube-player {
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: block;
}
#gazeta_article_body .art_embed .youtube-iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#gazeta_article_body .art_embed .youtube-thumb {
  bottom: 0;
  display: block;
  left: 0;
  margin: auto;
  max-width: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  height: auto;
}
#gazeta_article_body .art_embed .play-button {
  height: 54px;
  width: 54px;
  left: 50%;
  top: 50%;
  margin-left: -27px;
  margin-top: -27px;
  position: absolute;
  background: url(../images/"") -378px 0 no-repeat;
}
#gazeta_article_body .art_embed .video-description,
#gazeta_article_body .art_embed .video-head {
  display: block;
}
#gazeta_article_body .art_embed .video-head {
  padding: 0 0 10px;
  font: 700 24px/29px calibre, sans-serif;
  margin: -5px 0 0;
}
#gazeta_article_body .art_embed .video-description {
  font: 600 18px/22px calibre, sans-serif;
  padding: 4px 0 15px;
}
#gazeta_article_body .fb-embed {
  max-width: 100%;
}
#gazeta_article_body .relatedBox {
  padding: 0;
  display: inline-block;
  transition: all 0.2s linear;
  border: 1px solid #e4e4e4;
  margin: 15px 0;
}
#gazeta_article_body .relatedBox:hover {
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
#gazeta_article_body .relatedBox:hover__link {
  color: rgba(34, 34, 34, 0.8);
  background-color: transparent;
}
#gazeta_article_body .relatedBox__link {
  display: flex;
}
#gazeta_article_body .relatedBox__image {
  width: 163px;
  height: 92px;
}
#gazeta_article_body .relatedBox__title {
  text-decoration: none;
  word-wrap: break-word;
  overflow: hidden;
  width: 581px;
  height: 78px;
  margin: 6px 0;
  padding: 0 15px;
  font: 600 20px/24px calibre, sans-serif;
}
#gazeta_article_body .related-box {
  color: #222;
  display: flex;
  justify-content: flex-start;
  height: 92px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px #e4e4e4;
  border-radius: 2px;
  border: 1px solid #e4e4e4;
}
#gazeta_article_body .related-box,
#gazeta_article_body .related-box img {
  box-shadow: 0 1px 1px 0 transparent, 0 1px 5px 0 transparent;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
#gazeta_article_body .related-box:hover {
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
#gazeta_article_body .related-box:hover,
#gazeta_article_body .related-box:hover a {
  color: rgba(34, 34, 34, 0.8);
}
#gazeta_article_body .related-box:hover img {
  -webkit-filter: brightness(107%) contrast(107%);
  -moz-filter: brightness(107%) contrast(107%);
  filter: brightness(107%) contrast(107%);
}
#gazeta_article_body .related-box:hover .title-link {
  color: rgba(34, 34, 34, 0.8);
  background-color: transparent;
}
#gazeta_article_body .related-box .photo .photo-link {
  display: inline-block;
}
#gazeta_article_body .related-box .photo .photo-link,
#gazeta_article_body .related-box .photo img {
  width: 163px;
  min-width: 163px;
  height: 92px;
}
#gazeta_article_body .related-box .title {
  -webkit-flex: 1;
  flex: 1;
}
#gazeta_article_body .related-box .content-type,
#gazeta_article_body .related-box .path {
  display: none;
}
#gazeta_article_body .related-box .title-link {
  display: block;
  color: #222;
  text-decoration: none;
  word-wrap: break-word;
  overflow: hidden;
  width: 581px;
  height: 78px;
  margin: 6px 0;
  padding: 0 15px;
  font: 600 20px/24px calibre, sans-serif;
}
#gazeta_article_body .gallery-open-button {
  margin: 33px 0;
}
#gazeta_article_body .gallery-open-button__title {
  color: #506e91;
  font-size: 21px;
  font-weight: 400;
  margin-right: 15px;
}
#gazeta_article_body .gallery-open-button__link {
  color: #506e91;
  font-size: 21px;
  font-weight: 700;
}
#gazeta_article_body .gallery-open-button__link--version1 {
  display: inline-block;
  margin-top: -18px;
}
#gazeta_article_body .gallery-open-button__link--version1:hover {
  text-decoration: underline;
  color: #506e91;
}
#gazeta_article_body .gallery-open-button__link--version1:before {
  background-image: url("");
  background-repeat: no-repeat;
  background-position: 50%;
  display: inline-block;
  border-radius: 50%;
  background-color: #506e91;
  width: 40px;
  height: 40px;
  content: "";
  position: relative;
  top: 14px;
  margin: 0 15px 0 0;
}
#gazeta_article_body .seo_faq {
  position: relative;
  background-color: #f5f5f5;
  padding: 36px 30px 0;
}
#gazeta_article_body .seo_faq:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border-top: 4px solid #506e91;
  border-left: 4px solid #506e91;
}
#gazeta_article_body .seo_faq h2 {
  padding: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
}
#gazeta_article_body .seo_faq p {
  position: relative;
  font-size: 21px;
  cursor: pointer;
}
#gazeta_article_body .seo_faq p:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #dbdbdb;
  left: 0;
  top: 0;
}
#gazeta_article_body .seo_faq p:not(.art_paragraph):after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 3px solid #000;
  border-left: 3px solid #000;
  right: 0;
  top: 53%;
  transform: translateY(-50%) rotate(45deg);
}
#gazeta_article_body .seo_faq p:first-of-type:before {
  display: none;
}
#gazeta_article_body .seo_faq p.selected:after {
  transition: all 0.5s ease-in-out;
  transform: translateY(-50%) rotate(225deg);
}
#gazeta_article_body .seo_faq p.selected + .art_paragraph {
  overflow: visible;
  height: auto;
  transform: scaleY(1);
  padding-bottom: 20px;
}
#gazeta_article_body .seo_faq .art_paragraph {
  position: relative;
  height: 0;
  overflow: hidden;
  padding: 0;
  color: #666;
  transition: all 0.5s ease-in-out;
  transform-origin: left top;
  transform: scaleY(0);
}
#gazeta_article_body .seo_faq .art_paragraph:before {
  display: none;
}
.related_images .container .desc:after,
.related_images:after,
.related_images img:after {
  display: block;
  content: " ";
  width: 100%;
  clear: both;
  float: none;
}
.related_images {
  padding: 15px 0;
}
.related_images .container,
.related_images .container .author,
.related_images .container .desc,
.related_images .container .more,
.related_images .related_image_wrap ~ .desc,
.temp_desc_temp,
.temp_desc_temp_container {
  font: 400 15px/17px calibre, sans-serif;
}
.temp_desc_temp_container {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -10;
  opacity: 0;
}
.temp_desc_temp {
  padding: 0;
}
.related_images img {
  display: block;
  width: 100%;
}
.related_images .related_image_number_of_photo {
  display: flex;
  background: #fff;
  align-items: center;
  position: absolute;
  top: 0;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  padding: 9px 10px;
}
.related_images .gazetaPL .related-icon {
  display: none;
}
.related_images .gazetaPL .related_gazetaPL {
  display: inline-block;
}
.related_images .gazetaPL .related_open_text {
  padding: 10px 20px 11px;
}
.related_images .related_gazetaPL {
  display: none;
  font: 400 16px/19px calibre, sans-serif;
}
.related_images .related_image_number {
  padding-left: 6px;
  font: 600 19px/23px calibre, sans-serif;
}
.related_images .related_image_wrap.with_gallery {
  position: relative;
  z-index: 2;
}
.related_images .related_image_wrap.with_gallery.hide {
  display: none;
}
.related_images .related_image_wrap ~ .desc {
  padding: 5px 0;
  overflow-wrap: break-word;
  color: #bbb;
}
.related_images .related_image_wrap ~ .desc.hide {
  display: none;
}
.related_images .related_image_open {
  text-align: center;
  padding: 0 0 20px;
}
.related_images .related_image_open .related_open_text {
  background: #506e91;
  color: #fff;
  display: inline-block;
  border-radius: 20px;
  white-space: nowrap;
  font: 400 16px/19px calibre, sans-serif;
  text-transform: uppercase;
  padding: 10px 30px 11px;
}
.related_images .related_image_open .related_open_text,
.related_images .related_image_open .related_open_text * {
  cursor: pointer;
}
.related_images .related_image_open .related_open_text.hide {
  display: none;
}
.related_images .related_image_open .related_open_label {
  font-weight: 600;
}
.related_images .related_image_open .related-icon {
  height: 18px;
  width: 21px;
  margin: -2px 6px 0 0;
  vertical-align: middle;
}
.related_images .related_image_open .gallery_icon {
  fill: #fff;
}
.related_images .container {
  border-bottom: 1px solid #efefef;
  color: #666;
  padding: 5px 0;
}
.related_images .container .hide {
  display: none;
}
.related_images .container .desc {
  display: inline;
  padding: 8px 0;
}
.related_images .container .desc:after {
  display: inline;
}
.related_images .container .desc .desc_more {
  display: none;
  opacity: 0;
  transition: visibility 0s ease-in-out 0s, opacity 0.8s ease-in-out;
}
.related_images .container .desc .show_animation {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.related_images .container .more {
  color: #666;
  position: relative;
  cursor: pointer;
}
.related_images .container .more .more_arrow {
  width: 10px;
  height: 8px;
  overflow: hidden;
  display: inline-block;
  position: relative;
}
.related_images .container .more .more_arrow span {
  width: 10px;
  height: 10px;
  border: 1px solid #666;
  transform: rotate(45deg);
  display: block;
  margin-top: -5px;
  position: absolute;
  bottom: 2px;
}
.related_images .container .author {
  color: #bbb;
}
.related_images .related_images_list {
  display: none;
}
.related_images .related_images_list .related_image_wrap {
  position: relative;
  margin-top: 23px;
}
.related_images .related_images_list .related_image_wrap.related_1 {
  margin-top: 0;
}
.related_images .related_images_list .related_image_wrap:not(.related_1) {
  visibility: hidden;
}
.related_images .related_images_list .related_image_wrap.visible {
  visibility: visible;
}
.related_images .contentboard_wrap {
  width: 100%;
  margin: 3px 0 0;
}
.related_images .contentboard_wrap .adviewDFPBanner.activeBan {
  padding-bottom: 0;
  margin-bottom: 0;
}
.related_images .current_image_count {
  position: absolute;
  top: 0;
  background-color: #fff;
  color: #000;
  padding: 10px 15px;
  font: 600 16px/17px calibre, sans-serif;
}
.related_images .related_images_list_end {
  padding-top: 12px;
}
.related_images .related_images_list_end .end_of_gallery {
  font: 400 19px/17px calibre, sans-serif;
  font-weight: 600;
  text-align: center;
  color: #9a9a9a;
  margin-bottom: 14px;
}
.related_images .related_images_list_end .current_article {
  font: 400 19px/17px calibre, sans-serif;
  color: #9a9a9a;
}
.related_images .related_images_list_end .current_article_title {
  display: block;
  font: 600 20px/28px calibre, sans-serif;
  color: #222;
  padding-top: 2px;
}
.related_gallery_closing_button {
  cursor: pointer;
  position: relative;
  height: 52px;
  border-radius: 50%;
  background-color: #506e91;
  opacity: 0;
}
.related_gallery_closing_button.visible {
  opacity: 1;
  browser-prefixes(browsers())-animation: stretchOut 0.4s;
  animation: stretchOut 0.4s;
}
.related_gallery_closing_button.hidden {
  browser-prefixes(browsers())-animation: stretchIn 0.4s forwards;
  animation: stretchIn 0.4s forwards;
}
.related_gallery_closing_button:after,
.related_gallery_closing_button:before {
  position: absolute;
  top: 13px;
  left: 25px;
  content: " ";
  height: 25px;
  width: 3px;
  background-color: #fff;
}
.related_gallery_closing_button:before {
  transform: rotate(45deg);
}
.related_gallery_closing_button:after {
  transform: rotate(-45deg);
}
.related_gallery_closing_button:hover {
  -webkit-box-shadow: 0 4px 7.68px 0.32px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 4px 7.68px 0.32px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 7.68px 0.32px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.related_gallery_closing_button span {
  font: 600 15px/17px calibre, sans-serif;
  display: block;
  text-align: center;
  color: #666;
  padding-top: 55px;
}
@-moz-keyframes stretchIn {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
  to {
    transform: scale(0);
    opacity: 0;
    display: none;
  }
}
@-webkit-keyframes stretchIn {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
  to {
    transform: scale(0);
    opacity: 0;
    display: none;
  }
}
@-o-keyframes stretchIn {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
  to {
    transform: scale(0);
    opacity: 0;
    display: none;
  }
}
@-ms-keyframes stretchIn {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
  to {
    transform: scale(0);
    opacity: 0;
    display: none;
  }
}
@keyframes stretchIn {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
  to {
    transform: scale(0);
    opacity: 0;
    display: none;
  }
}
@-moz-keyframes stretchOut {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes stretchOut {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@-o-keyframes stretchOut {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@-ms-keyframes stretchOut {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes stretchOut {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.poll_box {
  padding: 16px 18px 18px;
  border: 1px solid #e6e6e6;
  margin-top: 13px;
}
.poll_box .poll_title {
  font: 600 22px/30px calibre, sans-serif;
  color: #1d1d1d;
  flex: auto;
}
.poll_box .poll_entry {
  padding-left: 34px;
  padding-bottom: 14px;
}
.poll_box .poll_entry:last-child {
  padding-bottom: 4px;
}
.poll_box .poll_entry input {
  display: none;
}
.poll_box .poll_entry input:checked + label:before {
  content: "";
  background: url(../images/"") -1px -1px no-repeat transparent;
}
.poll_box .poll_entry input + label {
  display: block;
  position: relative;
  font: 400 22px/26px calibre, sans-serif;
  color: #242424;
}
.poll_box .poll_entry input + label:before {
  content: "";
  display: block;
  position: absolute;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  border: 2px solid #444;
  height: 14px;
  width: 14px;
  left: -34px;
  top: 3px;
}
.poll_box .poll_with_image {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-bottom: 12px;
}
.poll_box .poll_with_image .poll_head {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.poll_box .poll_with_image .poll_image {
  margin-right: 21px;
}
.poll_box .poll_with_image .poll_image img {
  display: block;
  width: 300px;
  height: 169px;
}
.poll_box .poll_with_image .poll_answers {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  width: 100%;
}
.poll_box .poll_answers {
  margin-top: 27px;
}
.poll_box .hasPhotos {
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.poll_box .hasPhotos .poll_entry img,
.poll_box .hasPhotos .poll_entry span {
  vertical-align: middle;
}
.poll_box .hasPhotos .poll_entry span {
  padding-left: 10px;
}
.poll_box .hasPhotos .poll_entry label {
  display: inline-block;
}
.poll_box .hasPhotos .poll_entry label:before {
  top: 24px;
}
.poll_box .poll_submit {
  text-align: right;
}
.poll_box .poll_submit input {
  color: #fff;
  font: 600 15px/27px calibre;
  border: none;
  padding: 2px 20px;
  text-align: center;
  text-transform: uppercase;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  background: #444;
  -webkit-appearance: none;
  cursor: pointer;
}
.poll_box .poll_submit input:disabled {
  background: #b8b8b8;
}
.poll_box .poll_submit input:hover {
  background-color: #595959;
  -webkit-box-shadow: 0 4px 7.68px 0.32px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 4px 7.68px 0.32px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 7.68px 0.32px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.poll_box.poll_box_with_answers .entry {
  padding-left: 0;
  padding-bottom: 25px;
}
.poll_box.poll_box_with_answers .entry:last-child {
  padding-bottom: 0;
}
.poll_box.poll_box_with_answers .entry .ques {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  font: normal 21px/14px calibre;
  color: #242424;
}
.poll_box.poll_box_with_answers .entry .ques .pollQ {
  max-width: 67%;
}
.poll_box.poll_box_with_answers .entry .ques .ans {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.poll_box.poll_box_with_answers .entry .bar0 {
  width: 100%;
  background: #ddd;
  height: 24px;
  margin-top: 10px;
}
.poll_box.poll_box_with_answers .entry .bar0 .bar {
  height: 100%;
  background: #999;
}
.poll_box.poll_box_with_answers .entry .il {
  margin-left: 0.3rem;
  font-size: 16px;
  line-height: 11px;
  color: #999;
}
.poll_box.poll_box_with_answers .entry.hasPhoto {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.poll_box.poll_box_with_answers .entry.hasPhoto .columnLeft {
  margin-right: 15px;
}
.poll_box.poll_box_with_answers .entry.hasPhoto .columnLeft img {
  width: 73px;
  display: block;
}
.poll_box.poll_box_with_answers .entry.hasPhoto .columnRight {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.poll_box .captcha {
  width: 200px;
  margin-left: 100%;
  font: normal 16px/24px calibre;
  color: #1d1d1d;
  margin-top: -15px;
  margin-bottom: 12px;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}
.poll_box .captcha span {
  display: block;
  width: 100%;
}
.poll_box .captcha .captchaGroup {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  height: 32px;
}
.poll_box .captcha .captchaGroup input {
  border: solid #1d1d1d;
  border-width: 0 0 1px;
  margin: 3px 0 3px 5px;
  padding: 0 4px;
  outline: 0;
  line-height: 32px;
  font-size: 14px;
  width: 65px;
  text-align: center;
}
.poll_box .captcha.wrongCaptcha {
  width: 270px;
}
.tags:after {
  display: block;
  content: " ";
  width: 100%;
  clear: both;
  float: none;
}
.tags {
  padding: 15px 0;
  display: inline-block;
}
.tags .tag_link,
.tags .tags_header {
  font: 400 15px/23px calibre, sans-serif;
}
.tags .tags_header {
  float: left;
  text-transform: uppercase;
  color: #999;
  line-height: 34px;
  margin-right: 10px;
}
.tags .tags_list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.tags .tags_item {
  display: inline-block;
  padding: 0 5px 5px 0;
  text-transform: uppercase;
}
.tags .tag_link {
  background-color: #f5f5f5;
  border-radius: 1px;
  color: #666;
  display: inline-block;
  padding: 4px 10px 3px;
  word-break: break-word;
  -webkit-transition: background-color 0.2s ease-in;
  -moz-transition: background-color 0.2s ease-in;
  -o-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
}
.tags .tag_link:hover {
  background-color: #dcdcdc;
}
.tags_b {
  position: relative;
  padding: 10px 0;
}
.tags_b .tags_list {
  display: flex;
  flex-flow: row nowrap;
}
.tags_b .tags_item {
  white-space: nowrap;
  background-color: #f5f5f5;
  margin-right: 10px;
}
.tags_b .tag_link {
  color: #666;
  display: block;
  font: 400 15px/21px calibre, sans-serif;
  line-height: 15px;
  text-transform: capitalize;
  padding: 8px 10px;
}
.tags_b .tags_header {
  display: none;
}
.supervideoIndex {
  background: #fff;
  position: relative;
  grid-row: 6;
  grid-column: 3;
  padding: 15px 20px;
  z-index: 6;
}
.supervideoIndex .head h2 {
  font: 600 18px/25px calibre, sans-serif;
  text-transform: uppercase;
  color: #222;
  height: 32px;
}
.supervideoIndex .body .entry {
  display: flex;
  border-top: 1px solid #efefef;
  padding: 15px 0;
}
.supervideoIndex .body .entry .imgw {
  margin-right: 15px;
}
.supervideoIndex .body .entry .imgw li {
  border-radius: 2px;
  height: 62px;
  overflow: hidden;
}
.supervideoIndex .body .entry .imgw li img {
  width: 93px;
  height: auto;
}
.supervideoIndex .body .entry h3 {
  font: 600 17px/19px calibre, sans-serif;
  color: #222;
}
.mod_comments .buttons .c0:after,
.mod_comments .buttons:after,
.mod_comments .content .inner > footer .c0:after,
.mod_comments .content .inner > footer .c1:after,
.mod_comments .content .inner > footer:after,
.mod_comments .content:after,
.mod_comments .content header:after,
.mod_comments .form .userLogin:after,
.mod_comments .form header:after,
.mod_comments .mark:after,
.mod_comments .msg:after,
.multilog-container .forgot:after,
.multilog-container .forgotLogin:after,
.multilog-container .log_form .cb:after,
.multilog-container .log_form:after,
.multilog-container:after {
  display: block;
  content: " ";
  width: 100%;
  clear: both;
  float: none;
}
#gazeta_article .goback {
  position: relative;
  padding-left: 18px;
}
#gazeta_article .goback:before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 13px;
  height: 14px;
  background-image: url("");
  background-position: -46px -180px;
  background-repeat: no-repeat;
}
.mod_comments {
  padding: 20px 0;
}
.mod_comments a {
  font-size: 16px;
  color: #999;
  -webkit-transition: color 0.2s ease;
  -moz-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.mod_comments a:hover {
  color: hsla(0, 0%, 60%, 0.7);
  background-color: transparent;
}
.mod_comments .imgw {
  position: relative;
  float: left;
  width: 50px;
  height: 50px;
  margin-right: 12px;
  background: url(../images/"") 0 0 no-repeat;
}
.mod_comments .imgw img {
  display: block;
}
.mod_comments .voteNeedLogin {
  display: none;
  position: absolute;
  width: 230px;
  height: 25px;
  overflow: hidden;
  padding-left: 6px;
  font: normal 11px/22px calibre;
  background-position: -46px -264px;
  background-repeat: no-repeat;
  background-image: url("");
  z-index: 100;
}
.mod_comments .voteNeedLogin .btnClose {
  position: relative;
  top: 1px;
  margin-left: 8px;
}
.mod_comments footer .more {
  font-weight: 700;
  line-height: 26px;
  text-align: right;
}
.mod_comments .form {
  margin-bottom: 15px;
}
.mod_comments .form:before {
  display: block;
  color: #fff;
}
.mod_comments .form header .head {
  display: inline-block;
  padding: 9px 0 5px;
}
.mod_comments .form header .head,
.mod_comments .form header .head a {
  font: 600 30px/35px calibre, sans-serif;
  color: #222;
}
.mod_comments .form header .head a:hover {
  color: rgba(34, 34, 34, 0.8);
}
.mod_comments .form header .titleInComments {
  position: relative;
  width: 100%;
  height: 24px;
  font: 400 15px/24px calibre, sans-serif;
  color: #999;
  overflow: hidden;
  margin-bottom: 16px;
  margin-top: 2px;
}
.mod_comments .form header .titleInComments:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 30px;
  background-image: -owg-linear-gradient(left, hsla(0, 0%, 100%, 0), #fff 70%);
  background-image: -webkit-linear-gradient(
    left,
    hsla(0, 0%, 100%, 0),
    #fff 70%
  );
  background-image: -moz-linear-gradient(left, hsla(0, 0%, 100%, 0), #fff 70%);
  background-image: -o-linear-gradient(left, hsla(0, 0%, 100%, 0), #fff 70%);
  background-image: linear-gradient(left, hsla(0, 0%, 100%, 0), #fff 70%);
}
.mod_comments .form .cLeft {
  float: left;
}
.mod_comments .form .userLogin .changeAcc,
.mod_comments .form .userLogin .name {
  font: 400 18px/20px calibre;
}
.mod_comments .form .userLogin .name {
  margin: 0;
  font-weight: 600;
  color: #222;
}
.mod_comments .form .userLogin .changeAcc {
  margin-left: 8px;
  padding-left: 8px;
  border-left: 1px solid #ccc;
  cursor: pointer;
  color: #999;
}
.mod_comments .form .userLogin .changeAcc:hover {
  color: hsla(0, 0%, 60%, 0.7);
}
.mod_comments .form textarea {
  height: 90px;
  width: 100%;
  margin-bottom: 4px;
  font: 400 19px/26px calibre, sans-serif;
  color: #999;
  resize: vertical;
  border-radius: 2px;
  border-color: #e0e0e0 #ccc;
  border-style: solid;
  border-width: 1px;
  box-shadow: 0 1px 1px #ebebeb, inset 0 1px 1px #ebebeb;
  padding: 10px 25px;
}
.mod_comments .form button {
  font: 700 14px calibre;
  color: #fff;
  cursor: pointer;
}
.mod_comments .form .sendUserLogin {
  margin-bottom: 15px;
}
.mod_comments .form .sendUserLogin span {
  float: none;
  display: inline;
}
.mod_comments .form .sendUserLogin span:first-child {
  margin-right: 0;
}
.mod_comments .form .sendUserLogin .inline {
  float: left;
}
.mod_comments .form .sendUserLogin .inline a,
.mod_comments .form .sendUserLogin .inline span {
  display: inline;
  font: 400 19px/28px calibre, sans-serif;
  color: #999;
  vertical-align: middle;
}
.mod_comments .form .sendUserLogin .inline a.guest {
  font-weight: 600;
}
.mod_comments .form .sendUserLogin .inline a:hover {
  color: hsla(0, 0%, 60%, 0.7);
}
.mod_comments .form .sendUserLogin .accounts {
  margin-right: 2px;
}
.mod_comments .form .sendUserLogin .accounts span {
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-left: 5px;
  background: url(../images/"") no-repeat 0 0;
  cursor: pointer;
}
.mod_comments .form .sendUserLogin .accounts .gazeta {
  background-position: -83px -65px;
}
.mod_comments .form .sendUserLogin .accounts .gazeta:hover {
  background-position: -83px -93px;
}
.mod_comments .form .voteButton,
.mod_comments .form button {
  float: right;
}
.mod_comments .form button {
  padding: 2px 19px;
  font: 600 15px/27px calibre, sans-serif;
  border-radius: 52px;
  background: #444;
  border: 0;
  text-transform: uppercase;
  -webkit-appearance: none;
  -webkit-box-shadow: 0 2px 8.68px 0.32px transparent;
  -moz-box-shadow: 0 2px 8.68px 0.32px transparent;
  box-shadow: 0 2px 8.68px 0.32px transparent;
  -webkit-transition: background-color 0.2s linear;
  -moz-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}
.mod_comments .form button:hover {
  background: #595959;
  -webkit-box-shadow: 0 2px 8.68px 0.32px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 8.68px 0.32px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 8.68px 0.32px rgba(0, 0, 0, 0.2);
}
.mod_comments > .form > form:not(.login) {
  padding: 0;
  border-bottom: 1px solid #e6e6e6;
}
.mod_comments[data-logged="1"] .sendUserLogin .inline {
  display: none;
}
.mod_comments .container.content > header {
  margin-bottom: 17px;
  zoom: 1;
}
.mod_comments .container .order {
  float: left;
  clear: both;
}
.mod_comments .container .order li,
.mod_comments .container .order ul {
  display: inline;
}
.mod_comments .container .order li {
  margin: 0;
  padding-left: 6px;
  border: 0;
}
.mod_comments .container .order li a {
  font: 600 15px/24px calibre;
  color: #888;
}
.mod_comments .container .order li a:hover {
  color: hsla(0, 0%, 53.3%, 0.7);
}
.mod_comments .container .order li:first-child {
  padding: 0;
}
.mod_comments .container .order li.active a {
  padding-right: 11px;
  color: #222;
  background-image: url("");
  background-repeat: no-repeat;
}
.mod_comments .container .order li.active a.asc {
  background-position: 100% -6px;
}
.mod_comments .container .order li.active a.desc {
  background-position: 100% -40px;
}
.mod_comments .container .order li.active a:hover {
  color: rgba(34, 34, 34, 0.8);
}
.mod_comments .container .showPrev {
  float: right;
  font-weight: 600;
}
.mod_comments .comment:first-child > section .content,
.mod_comments .comment:first-child > section .inner {
  border: none;
}
.mod_comments .comment .content {
  border-top: 1px solid #f5f5f5;
}
.mod_comments .comment .content .inner {
  padding-top: 8px;
  border-top: 1px solid #f9f9f9;
}
.mod_comments .content a:hover {
  background-color: transparent;
}
.mod_comments .content p {
  word-wrap: break-word;
}
.mod_comments .content header {
  margin: 0 0 2px;
}
.mod_comments .content header .c0,
.mod_comments .content header .c1 {
  margin-top: auto;
}
.mod_comments .content header .c0 {
  float: left;
}
.mod_comments .content header .author {
  margin-right: 6px;
  padding: 0;
}
.mod_comments .content header .author,
.mod_comments .content header .author a {
  display: inline-block;
  color: #222;
}
.mod_comments .content header .author a:hover {
  color: rgba(34, 34, 34, 0.8);
}
.mod_comments .content header .author,
.mod_comments .content header .author a,
.mod_comments .content header .ip,
.mod_comments .content header .when,
.mod_comments .content header time {
  font: 600 18px/30px calibre, sans-serif;
}
.mod_comments .content header time {
  margin-right: 2px;
  padding: 0;
  font-weight: 400;
  color: #999;
}
.mod_comments .content header .ip,
.mod_comments .content header .when {
  font-weight: 500;
  color: #999;
}
.mod_comments .content header .c1 {
  float: right;
  display: -webkit-flex;
  display: flex;
}
.mod_comments .content header .c1 span {
  color: #999;
}
.mod_comments .content header .c1 span,
.mod_comments .content header .c1 strong {
  display: inline;
  font: 400 16px/30px calibre, sans-serif;
}
.mod_comments .content header .c1 strong {
  font-weight: 700;
}
.mod_comments .content header .vote {
  display: -webkit-flex;
  display: flex;
  padding-top: 0;
}
.mod_comments .content header .plus {
  color: #05950f;
}
.mod_comments .content header .minus {
  color: #a00;
}
.mod_comments .content header .c1 strong,
.mod_comments .content header a[data-action] {
  margin-left: 5px;
}
.mod_comments .content header a[data-action] {
  position: relative;
  display: inline-block;
  padding-left: 10px;
  vertical-align: top;
}
.mod_comments .content header a[data-action]:before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  background-image: url("");
  background-repeat: no-repeat;
}
.mod_comments .content header a[data-action="downvote"]:before,
.mod_comments .content header a[data-action="upvote"]:before {
  width: 10px;
  height: 11px;
}
.mod_comments .content header a[data-action="upvote"]:before {
  background-position: -19px -10px;
}
.mod_comments .content header a[data-action="downvote"]:before {
  background-position: -51px -10px;
}
.mod_comments .content header a[data-action="remove"]:before {
  width: 9px;
  height: 10px;
  background-position: -147px -11px;
}
.mod_comments .content .inner > p {
  font: 400 19px/25px calibre, sans-serif;
  padding: 0 0 6px;
}
.mod_comments .content .inner .modInfo {
  font-style: italic;
  color: #777;
  text-decoration: none;
  padding: 0 0 4px;
  font-size: 14px;
  line-height: 19px;
}
.mod_comments .content .inner .hghtlight {
  padding-bottom: 7px;
}
.mod_comments .content .inner > footer {
  padding: 0 0 8px;
}
.mod_comments .content .inner > footer a {
  font: 600 15px/25px calibre, sans-serif;
}
.mod_comments .content .inner > footer .c0 p {
  text-transform: uppercase;
}
.mod_comments .content .inner > footer .c1 p {
  display: inline;
}
.mod_comments .content .inner > footer .exp a {
  padding-right: 14px;
  color: #666;
}
.mod_comments .content .inner > footer .exp a:hover {
  color: hsla(0, 0%, 40%, 0.7);
}
.mod_comments .content .inner > footer .reply a {
  color: #111;
}
.mod_comments .content .inner > footer .reply a:hover {
  color: rgba(17, 17, 17, 0.7);
}
.mod_comments .content .form {
  margin: 0 0 19px 30px;
}
.mod_comments .comment section + .child {
  margin-left: 40px;
}
.mod_comments .replies > .child {
  display: none;
}
.mod_comments .replies.expanded > .child {
  display: block;
}
.mod_comments .hidden {
  display: none;
}
.mod_comments .buttons,
.mod_comments .mark {
  padding: 8px 0;
  border: solid #e0e0e0;
  border-width: 1px 0;
}
.mod_comments .buttons + fieldset,
.mod_comments .mark + fieldset {
  margin-bottom: 12px;
  border-top: 0;
}
.mod_comments .mark {
  font: 600 18px/30px calibre;
  color: #222;
}
.mod_comments .msg {
  margin: 0 0 10px;
  padding: 9px;
  text-align: left;
  font: 600 16px/25px calibre;
}
.mod_comments .msg_ok {
  color: #388e3c;
  background: #e8f5e9;
}
.mod_comments .msg_error {
  color: #d32f2f;
  background: #ffcdd2;
}
.mod_comments .comment.removed .inner > p:not(.modInfo) {
  text-decoration: line-through;
}
.mod_comments .comment[data-em="1"] > .comment-body {
  background: #fffce9;
}
.mod_comments .buttons .c0 {
  float: left;
  margin-bottom: 5px;
}
.mod_comments .buttons .c1 {
  float: right;
}
.mod_comments .buttons button {
  margin: 0 6px 0 0;
  padding: 5px 9px;
  font: 600 13px calibre;
  color: #fff;
  border-color: #e2e2e2 #828282 #828282 #e2e2e2;
  border-style: solid;
  border-width: 1px;
  cursor: pointer;
  background-image: -owg-linear-gradient(top, #cbcbcb, #aeaeae);
  background-image: -webkit-linear-gradient(top, #cbcbcb, #aeaeae);
  background-image: -moz-linear-gradient(top, #cbcbcb, #aeaeae);
  background-image: -o-linear-gradient(top, #cbcbcb, #aeaeae);
  background-image: linear-gradient(top, #cbcbcb, #aeaeae);
}
.mod_comments .buttons button span {
  position: relative;
  padding-left: 14px;
  color: #fff;
}
.mod_comments .buttons button span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 9px;
  height: 9px;
  background-image: url("");
  background-repeat: no-repeat;
}
.mod_comments .buttons button[data-action="delete"] span:before,
.mod_comments .buttons button[data-action="spam"] span:before {
  height: 10px;
  background-position: -147px -11px;
}
.mod_comments .buttons button[data-action="clean"] span:before {
  background: none;
}
.mod_comments .buttons button[data-action="markDelete"] span:before {
  background-position: -19px -44px;
}
.mod_comments .buttons button[data-action="publish"] span:before {
  left: 2px;
  background: none;
}
.mod_comments .buttons button[data-action="emphasise"] span:before {
  background-position: -83px -44px;
}
.mod_comments .buttons button[data-action="unemphasise"] span:before {
  background-position: -147px -44px;
}
.mod_comments .mark input[type="checkbox"] {
  position: relative;
  top: 2px;
}
.mod_comments label.mod {
  float: left;
}
.mod_comments label.mod input {
  position: relative;
  top: 11px;
  margin-right: 3px;
}
.mod_comments.flex .comment .redactor {
  margin-right: 2px;
  padding: 0 2px;
  font: normal 10px Tahoma, sans-serif;
  color: #fff;
  text-transform: uppercase;
  background: #9f9f9f;
}
.mod_comments .nsContext {
  margin: 32px 0;
}
.mod_comments footer .pages {
  padding: 8px 0;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}
.mod_comments footer .pages li,
.mod_comments footer .pages ul {
  display: inline;
}
.mod_comments footer .pages a,
.mod_comments footer .pages span {
  margin: 0 2px;
  padding: 2px 4px;
  border: 1px solid #dbdbdb;
}
.mod_comments footer .pages span {
  background: #dbdbdb;
}
.mod_comments footer .pages .e {
  background: 0;
  border-color: transparent;
}
#overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.8);
}
#overlay #overlay_holder {
  position: relative;
  margin: 0 auto;
  max-width: 410px;
}
#overlay .overlay-body {
  position: relative;
  margin: 0 auto;
  background: #fff;
}
#overlay .overlay-inner {
  background: #fff;
  z-index: 4;
  position: absolute;
  left: 0;
  top: 0;
  box-shadow: 0 1px 15px 5px #000;
}
#overlay .close {
  padding: 0 5px 5px;
  position: absolute;
  right: 5px;
  top: 5px;
  cursor: pointer;
  color: #999;
  font: 400 22px Tahoma, sans-serif;
}
.fix-overlay-for-mobile {
  position: relative;
}
.multilog-container {
  position: relative;
  padding: 26px 28px;
  font-size: 16px;
}
.multilog-container header {
  margin: 0 0 40px 4px;
  color: #222;
}
.multilog-container header h2 {
  font: 600 30px/35px calibre, sans-serif;
}
.multilog-container.unvisible {
  display: none;
}
.multilog-container .msg {
  width: auto;
  margin: 16px 0;
  padding: 4px 0;
  border: 1px solid;
  font-weight: 700;
  text-align: center;
  clear: both;
}
.multilog-container .msg.msg_error {
  color: #ce212d;
  border-color: #ce212d;
  background: #f7f0f0;
}
.multilog-container .multilog-select {
  width: 350px;
  color: #333;
}
.multilog-container .multilog-select h2 {
  font-size: 18px;
  font-weight: 700;
}
.multilog-container .multilog-select li {
  display: block;
  width: auto;
  height: auto;
  margin: 0 0 10px;
  font-weight: 700;
  text-align: center;
}
.multilog-container .multilog-select .accounts {
  display: flex;
  margin-top: 30px;
}
.multilog-container .multilog-select .accounts span {
  position: relative;
  display: block;
  font: 600 16px/19px calibre, sans-serif;
  padding: 10px 0 7px;
  text-transform: uppercase;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  height: 40px;
  width: 160px;
}
.multilog-container .multilog-select .accounts span:before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: 50%;
}
.multilog-container .multilog-select .guest {
  margin-top: 53px;
}
.multilog-container .multilog-select .guest span:before {
  background-position: -11px -261px;
}
.multilog-container .log_form {
  width: 100%;
  max-width: 350px;
}
.multilog-container .log_form header {
  margin-left: 0;
  margin-bottom: 36px;
}
.multilog-container .log_form header p {
  margin: 5px 0 15px;
  font: 400 16px/22px calibre, sans-serif;
}
.multilog-container .log_form header .register {
  font-weight: 700;
}
.multilog-container .log_form .guest {
  width: 100%;
  margin-top: 15px;
  display: inline-block;
  text-align: center;
  padding: 9px 19px;
  font: 600 16px/19px calibre, sans-serif;
  border-radius: 52px;
  background: #fff;
  border: 1px solid #444;
  text-transform: uppercase;
  -webkit-appearance: none;
  color: #444;
  cursor: pointer;
  -webkit-box-shadow: 0 2px 8.68px 0.32px transparent;
  -moz-box-shadow: 0 2px 8.68px 0.32px transparent;
  box-shadow: 0 2px 8.68px 0.32px transparent;
  -webkit-transition: background-color 0.2s linear;
  -moz-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}
.multilog-container .log_form .guest:hover {
  -webkit-box-shadow: 0 2px 8.68px 0.32px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 8.68px 0.32px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 8.68px 0.32px rgba(0, 0, 0, 0.2);
}
.multilog-container .log_form .guest span {
  cursor: pointer;
}
.multilog-container .log_form .below_inputs_wrap {
  display: flex;
}
.multilog-container .log_form .below_inputs_wrap .pseudo_checkbox {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-size: 18px 18px;
  margin: 0 10px -4px 0;
  background-image: url("362a9346ea387210d6af07a8397ced74321bf888.svg");
}
.multilog-container .log_form .below_inputs_wrap .remember .cb {
  display: none;
}
.multilog-container
  .log_form
  .below_inputs_wrap
  .remember
  .cb:checked
  ~ .pseudo_checkbox {
  background-image: url("47ee4ae224639d4ed701c6c5de98c7c140fd552b.svg");
}
.multilog-container .log_form .flex_2_col {
  flex: 50%;
}
.multilog-container .log_form .line {
  margin-bottom: 11px;
}
.multilog-container .log_form label {
  display: block;
  margin-bottom: 2px;
  color: #222;
  font: 400 16px/22px calibre, sans-serif;
}
.multilog-container .log_form .iTxt {
  width: 100%;
  height: 40px;
  padding: 7px 5px 7px 15px;
  border: 1px solid #ccc;
  font: 400 16px/22px calibre, sans-serif;
}
.multilog-container .log_form .iTxt::-webkit-input-placeholder {
  color: #bbb;
}
.multilog-container .log_form .iTxt:-moz-placeholder,
.multilog-container .log_form .iTxt::-moz-placeholder {
  color: #bbb;
}
.multilog-container .log_form .iTxt:-ms-input-placeholder {
  color: #bbb;
}
.multilog-container .log_form .input-error {
  border-bottom: 2px solid #e30000;
}
.multilog-container .log_form .msg_error {
  background-color: transparent;
  border: 0;
  margin: 0 0 0 15px;
  text-align: left;
  color: #e30000;
  font: 400 16px/22px calibre, sans-serif;
}
.multilog-container .log_form .cb {
  float: left;
  margin-right: 4px;
  margin-top: 9px;
}
.multilog-container .log_form .btn {
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 9px 19px;
  font: 600 16px/19px calibre, sans-serif;
  border-radius: 52px;
  background: #444;
  border: 0;
  text-transform: uppercase;
  -webkit-appearance: none;
  color: #fff;
  cursor: pointer;
  -webkit-box-shadow: 0 2px 8.68px 0.32px transparent;
  -moz-box-shadow: 0 2px 8.68px 0.32px transparent;
  box-shadow: 0 2px 8.68px 0.32px transparent;
  -webkit-transition: background-color 0.2s linear;
  -moz-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}
.multilog-container .log_form .btn:hover {
  background: #595959;
  -webkit-box-shadow: 0 2px 8.68px 0.32px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 8.68px 0.32px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 8.68px 0.32px rgba(0, 0, 0, 0.2);
}
.multilog-container .or {
  padding: 6px 5px;
  position: absolute;
  left: 139px;
  top: 176px;
  color: #acacac;
  background: #fff;
}
.multilog-container .remember {
  font: 400 16px/22px calibre, sans-serif;
}
.multilog-container .forgot {
  font: 600 16px/22px calibre, sans-serif;
  text-align: right;
}
.multilog-container-guest {
  padding-bottom: 10px;
}
.multilog-container-guest .line {
  width: 350px;
}
.multilog-container-guest header {
  margin-bottom: 32px;
}
.multilog-container-guest .log_form {
  float: none;
  padding: 0;
  margin: 0;
  border: 0;
}
.multilog-container-guest .logon {
  margin: 40px 0 36px;
}
.mod_comments .regulationCommentsBox {
  position: relative;
  margin: 5px 0 15px;
}
.mod_comments .regulationCommentsBox [name="regulation"] {
  position: absolute;
  top: 3px;
  left: 0;
  width: 18px;
  height: 18px;
  margin-right: 12px;
}
.mod_comments .regulationCommentsBox [name="regulation"]:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border: 2px solid #000;
  border-radius: 3px;
  background: #fff;
  box-sizing: border-box;
}
.mod_comments .regulationCommentsBox [name="regulation"]:checked:after {
  border: none;
  background: url(../images/"");
}
.mod_comments .regulationCommentsBox [for="regulation"] {
  display: block;
  width: 450px;
  margin-left: 30px;
}
.mod_comments .regulationCommentsBox [for="regulation"] a {
  color: #0d3569;
  font-size: 21px;
  line-height: 30px;
}
.mod_comments .regulationCommentsBox [for="regulation"] a:hover {
  color: #0d3569;
  text-decoration: underline;
}
.mod_comments .regulationCommentsBox [for="regulation"]:after {
  content: "";
  display: block;
  height: 1px;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
}
.mod_comments .regulationCommentsBox .msg_error + [name="regulation"] {
  top: 60px;
  left: 0;
}
.mod_comments .regulationCommentsBox .msg_error + [name="regulation"]:after {
  border-color: #b00020;
}
.mod_comments .regulationCommentsBox .msg_error ~ [for="regulation"] {
  display: block;
  margin-left: 30px;
}
.mod_comments
  .regulationCommentsBox
  .msg_error
  ~ [name="regulation"]:not(:checked)
  ~ [for="regulation"]:after {
  border-color: #b00020;
}
.mod_comments[data-logged="1"] .regulationCommentsBox {
  display: none;
}
.mod_comments button {
  margin-top: 1px;
  padding: 6px 10px;
  font-weight: 700;
  text-shadow: none;
  border: none;
  border-radius: 3px;
  background: #3370bc;
  -webkit-transition: background-color 0.2s linear;
  -moz-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}
.mod_comments button.notAccepted,
.mod_comments button.notAccepted:hover {
  background: buttonface;
  cursor: auto;
}
.mod_comments button:hover {
  background: #3c86e0;
}
.commentBox {
  padding: 30px 0;
}
.commentBox__header {
  color: #222;
  padding-bottom: 10px;
  font: 600 30px/35px calibre, sans-serif;
}
.commentBox__articleTitle {
  color: #999;
  padding-bottom: 14px;
  font: 400 17px/20px calibre, sans-serif;
}
.commentBox__subheader {
  color: #222;
  padding-bottom: 18px;
  font: 600 17px/20px calibre, sans-serif;
}
.commentBox__buttonLink {
  height: 40px;
  background: #444;
  border-radius: 20px;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
  box-shadow: 0 4px 7.68px 0.32px transparent;
  justify-content: center;
  width: 295px;
}
.commentBox__buttonLink:hover {
  background: #595959;
  -webkit-box-shadow: 0 2px 8.68px 0.32px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 8.68px 0.32px rgba(0, 0, 0, 0.2);
}
.commentBox__buttonLabel {
  color: #fff;
  font: 600 16px/22px calibre, sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  margin-left: 10px;
}
.seo_faq {
  position: relative;
  background-color: #f5f5f5;
  padding: 36px 30px 10px;
}
.seo_faq:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border-top: 4px solid #506e91;
  border-left: 4px solid #506e91;
}
.seo_faq .seo_faq__title {
  padding: 0;
  font: 700 40px/48px calibre, sans-serif;
}
.seo_faq .seo_faq__question {
  position: relative;
  cursor: pointer;
  padding: 10px 0;
  font: 400 21px/25px calibre, sans-serif;
}
.seo_faq .seo_faq__question:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #dbdbdb;
  left: 0;
  top: 0;
}
.seo_faq .seo_faq__question:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 3px solid #000;
  border-left: 3px solid #000;
  right: 0;
  top: 53%;
  transform: translateY(-50%) rotate(45deg);
}
.seo_faq__question:first-of-type:before {
  display: none;
}
.seo_faq .seo_faq__question--selected:after {
  transition: all 0.5s ease-in-out;
  transform: translateY(-50%) rotate(225deg);
}
.seo_faq .seo_faq__question--selected + .seo_faq__answer {
  overflow: visible;
  height: auto;
  transform: scaleY(1);
  padding-bottom: 10px;
}
.seo_faq .seo_faq__answer {
  position: relative;
  height: 0;
  overflow: hidden;
  padding: 0;
  color: #666;
  transition: all 0.5s ease-in-out;
  transform-origin: left top;
  transform: scaleY(0);
  font: 400 21px/25px calibre, sans-serif;
}
.seo_faq .seo_faq__answer:before {
  display: none;
}
.hp_redirector {
  width: 100%;
  height: 500px;
  margin: auto;
  overflow: hidden;
  position: relative;
  background-color: #fff;
}
.hp_redirector:after {
  content: "";
  height: 100%;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background: linear-gradient(180deg, hsla(0, 0%, 92.2%, 0.7) 50%, #fff);
}
.hp_redirector .hp_redirector-content {
  width: 1200px;
  margin: auto;
  padding: 10px 0 100px;
  position: relative;
}
.hp_redirector .hp_redirector-article_box img {
  width: 100%;
}
.hp_redirector .hp_redirector-article_box p {
  font: 700 16px/26px calibre;
  margin: 7px 0 10px;
  position: relative;
  overflow: hidden;
  height: 75px;
  color: #0a2140;
  text-align: left;
}
.hp_redirector .hp_redirector-circle-progress {
  display: none;
  position: fixed;
  bottom: 100px;
  z-index: 21;
  margin: auto;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.2s linear;
}
.hp_redirector .hp_redirector-circle-progress:after {
  content: "";
  background: url(../images/"") no-repeat;
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: 50%;
}
.hp_redirector .hp_redirector-circle-progress__fill {
  stroke-width: 10px;
  stroke: url("");
  transition: stroke-dashoffset 0.4s linear;
  will-change: auto;
}
.hp_redirector .hp_redirector-circle-progress__fill_back {
  stroke-width: 10px;
  stroke: #000;
  opacity: 0.4;
}
.hp_redirector .hp_redirector-type_2 {
  position: relative;
}
.hp_redirector .o-daily {
  background: #fff;
  color: #222;
  margin: 20px auto 0;
  padding: 0;
  position: relative;
  text-align: left;
  width: 1300px;
}
.hp_redirector .o-daily:after {
  width: 100%;
  height: 20px;
  content: "";
  display: block;
  clear: both;
}
.hp_redirector .o-daily h2 {
  color: #222;
  font: 700 32px/32px calibre;
  display: block;
  float: left;
  height: 35px;
  max-width: 440px;
  padding: 0 20px 0 0;
  position: relative;
  text-align: left;
  z-index: 0;
}
.hp_redirector .o-daily h2:before {
  background: linear-gradient(45deg, #ff5b1e, #ff0068);
  bottom: 0;
  content: "";
  height: 15px;
  left: 0;
  position: absolute;
  transition: width 0.8s cubic-bezier(0.2, 1, 0.3, 1);
  width: 60%;
  z-index: -1;
}
.hp_redirector .o-daily h3 {
  display: block;
  float: left;
  padding: 10px 20px 0 0;
  width: 175px;
  font: 600 20px/18px calibre;
}
.hp_redirector .news-feed-mask {
  background: url(../images/"") repeat-y;
  display: block;
  height: 100%;
  width: 250px;
  position: absolute;
  right: -10px;
  top: 0;
}
.hp_redirector .c-article {
  width: 300px;
  height: 250px;
  border: 1px solid #dbdbdb;
  border-radius: 2px;
  overflow: hidden;
  display: block;
}
.hp_redirector .c-article img {
  height: auto;
  position: relative;
  width: 100%;
}
.hp_redirector .c-article .o-article__header {
  color: #222;
  height: 125px;
  padding: 15px;
  position: relative;
}
.hp_redirector .c-article .o-article__header span {
  display: block;
  display: -webkit-box;
  height: 3.6em;
  margin: -7px 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  font: 600 1.25rem/1.2 calibre;
  text-align: left;
}
.hp_redirector .c-article .o-article__image {
  background-image: url("");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 75px auto;
  height: 125px;
  overflow: hidden;
  position: relative;
}
.hp_redirector .c-article.c-article.is-big-tile {
  width: 620px;
  height: 520px;
  background: #f5f5f5;
  margin-right: 20px;
  float: left;
}
.hp_redirector .c-article.c-article.is-big-tile .o-article__header {
  height: 270px;
  padding: 20px 20px 40px;
  margin: 0;
}
.hp_redirector .c-article.c-article.is-big-tile .o-article__header span {
  font: 700 1.75rem/1.2 calibre;
  display: block;
  height: 7.2em;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
}
.hp_redirector .c-article.c-article.is-big-tile .o-article__image {
  height: 350px;
}
.hp_redirector .c-article:nth-of-type(2) {
  margin-bottom: 20px;
}
body,
div,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
input,
li,
ol,
p,
textarea,
ul {
  margin: 0;
  padding: 0;
}
em,
h1,
h2,
h3,
h4,
h5,
h6,
strong {
  font-size: 100%;

  font-style: normal;
}
ol,
ul {
  list-style: none;
}
fieldset,
img {
  border: 0;
}
article,
aside,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
  margin: 0;
  padding: 0;
}
html {
  display: block;
}
body {
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-family: GPP Text, sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #262626;
  background: #f2f2f2;
  overflow-y: scroll;
  cursor: default;
}
a {
  color: #222;
  text-decoration: none;
}
a:hover {
  color: rgba(34, 34, 34, 0.8);
}
html {
  font-size: 21px;
}
* {
  box-sizing: border-box;
}
.section_wrapper {
  width: 100%;
}
.section_wrapper .content_wrap {
  background-color: #fff;
  position: relative;
}
#bottom_wrapper .columns_container,
#main_wrapper .content_wrap,
#main_wrapper .content_wrap .columns_container,
.aside_wrapper .columns_wrap {
  display: flex;
  flex-flow: row wrap;
}
#main_wrapper .content_wrap .columns_wrap {
  width: 1150px;
  padding-left: 50px;
  z-index: 2;
}
#pageTypeId_0 #main_wrapper .content_wrap .columns_wrap {
  width: 1202px;
  padding: 0;
}
.aside_wrapper,
.aside_wrapper .content_wrap {
  background-color: #f5f5f5;
}
#bottom_wrapper .columns_container {
  width: 1202px;
  padding-left: 102px;
}
.content_wrap {
  background-color: #fff;
  position: relative;
  width: 1242px;
  padding: 0 20px;
  margin: 0 auto;
}
.left_aside {
  width: 52px;
  z-index: 3;
}
.main_content {
  width: 800px;
  padding-right: 50px;
}
#pageTypeId_0 .main_content {
  width: 902px;
}
.right_aside {
  width: 300px;
}
@supports (display: grid) {
  #article_wrapper {
    grid-template-columns: 52px 750px 300px;
  }
  #article_wrapper.main_wrapper--video .top_section_bg {
    grid-row: 1 / span 5;
  }
  #article_wrapper.main_wrapper--video .bottom_section_bg {
    grid-row: 8 / span 3;
  }
  #article_wrapper.main_wrapper:not(.main_wrapper--video) .top_section_bg {
    grid-row: 1 / span 5;
  }
  #article_wrapper.main_wrapper:not(.main_wrapper--video) .bottom_section_bg {
    grid-row: 7;
  }
  #article_wrapper .bottom_section_bg,
  #article_wrapper .top_section_bg {
    position: relative;
    left: -20px;
    width: 1242px;
    height: 100%;
    background: #fff;
    z-index: -1;
    grid-column: 1 / span 3;
  }
  #photostory_wrapper {
    background-color: #fff;
    grid-template-columns: 52px 1100px;
  }
  .main_wrapper {
    display: grid;
    grid-column-gap: 50px;
    width: 1242px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }
  .left_aside {
    grid-column: 1;
  }
  .main_wrapper:not(.main_wrapper--video) .left_aside {
    grid-row: 2 / span 4;
  }
  .main_wrapper_b:not(.main_wrapper--video) .left_aside {
    grid-row: 2 / span 9;
  }
  .main_wrapper--video .left_aside {
    grid-row: 8 / span 4;
  }
  .top_section {
    grid-column: 2;
  }
  .main_wrapper:not(.main_wrapper--video) .top_section {
    grid-row: 5;
  }
  .main_wrapper--video .top_section {
    grid-row: 8;
  }
  .bottom_section {
    grid-column: 2;
  }
  .main_wrapper:not(.main_wrapper--video) .bottom_section {
    grid-row: 7;
  }
  .main_wrapper--video .bottom_section {
    grid-row: 9;
  }
  :not(.index_body) .right_aside {
    grid-column: 3;
  }
  .main_wrapper:not(.main_wrapper--video) .right_aside {
    grid-row: 7;
  }
  .main_wrapper--video .right_aside {
    grid-row: 8 / span 3;
  }
  .index_body .body > .content_wrap,
  .index_body > .content_wrap {
    display: grid;
    grid-template-columns: 902px 300px;
  }
  .index_body .main_content {
    width: 902px;
    grid-column: 1;
  }
  .index_body .right_aside {
    grid-column: 2;
    grid-row-start: 1;
  }
  .video_wrapper {
    grid-column: 1 / span 2;
    grid-row: 2 / span 5;
  }
}
@supports not (display: grid) {
  .main_wrapper {
    background-color: #fff;
    position: relative;
    width: 1242px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .main_wrapper:after {
    display: block;
    content: " ";
    width: 100%;
    clear: both;
    float: none;
  }
  .main_wrapper .bottom_section,
  .main_wrapper .top_section {
    display: inline-block;
    width: 902px;
    padding-right: 50px;
    padding-left: 102px;
  }
  .main_wrapper .left_aside {
    position: absolute;
    top: 0;
    left: 20px;
    width: 52px;
  }
  .main_wrapper .right_aside {
    float: right;
    width: 300px;
    vertical-align: top;
  }
  #photostory_wrapper .author_and_date {
    float: left;
    width: 902px;
    padding-right: 50px;
    padding-left: 102px;
  }
  #photostory_wrapper .author_and_date:after {
    display: block;
    content: " ";
    width: 100%;
    clear: both;
    float: none;
  }
  #photostory_wrapper .photostory_body {
    display: inline-block;
    width: 1202px;
    padding-left: 102px;
  }
  #photostory_wrapper .fs_row {
    display: inline-block;
  }
  #photostory_wrapper .fs_cl {
    display: inline-block;
    float: left;
  }
  #photostory_wrapper .fs_cr {
    display: inline-block;
    float: right;
  }
  .index_body .main_content,
  .index_body .right_aside {
    float: left;
  }
}
@media (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .main_wrapper {
    background-color: #fff;
    position: relative;
    width: 1242px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .main_wrapper:after {
    display: block;
    content: " ";
    width: 100%;
    clear: both;
    float: none;
  }
  .main_wrapper .bottom_section,
  .main_wrapper .top_section {
    display: inline-block;
    width: 902px;
    padding-right: 50px;
    padding-left: 102px;
  }
  .main_wrapper .left_aside {
    position: absolute;
    top: 0;
    left: 20px;
    width: 52px;
  }
  .main_wrapper .right_aside {
    float: right;
    width: 300px;
    vertical-align: top;
  }
  #photostory_wrapper .author_and_date {
    float: left;
    width: 902px;
    padding-right: 50px;
    padding-left: 102px;
  }
  #photostory_wrapper .author_and_date:after {
    display: block;
    content: " ";
    width: 100%;
    clear: both;
    float: none;
  }
  #photostory_wrapper .photostory_body {
    display: inline-block;
    width: 1202px;
    padding-left: 102px;
  }
  #photostory_wrapper .fs_row {
    display: inline-block;
  }
  #photostory_wrapper .fs_cl {
    display: inline-block;
    float: left;
  }
  #photostory_wrapper .fs_cr {
    display: inline-block;
    float: right;
  }
}
#pageTypeId_14 .socialBar,
#pageTypeId_14 .socialBar.fixed {
  z-index: 99;
  -webkit-transform: translateZ(0) !important;
  transform: translateZ(0) !important;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}

[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[hidden],
template {
  display: none;
}

@-moz-document url-prefix() {
  fieldset {
    display: table-cell;
  }
}

a {
  -webkit-user-modify: read-only;
}

* {
  -webkit-tap-highlight-color: rgba(247, 208, 0, 0.25);
}

::selection {
  background: #f7d000;
  color: #000;
}

*,
:after,
:before {
  box-sizing: border-box;
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.js-focus-visible .focus-visible {
  outline: 3px solid #f7d000;
}

body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
}

html {
  font-size: 62.5%;
  position: relative;
  scroll-padding-block: 100px;
}

body {
  font-family: GPP Text, sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #262626;
  background: #f2f2f2;
  overflow-y: scroll;
  cursor: default;
}

@media (max-width: 1153px) {
  .is--menu-open body {
    overflow: hidden;
    background: #005e8c;
  }

  .is--menu-open.is--mourning body {
    background: #404040;
  }
}

a {
  text-decoration: none;
  color: #005e8c;
}

.inside {
  position: relative;
  max-width: 1154px;
  height: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.inside:after {
  content: "";
  display: table;
  clear: both;
}

@media (min-width: 1334px) {
  .inside {
    margin-left: 90px;
    margin-right: 90px;
    max-width: none;
  }
}

@media (min-width: 1480px) {
  .inside {
    margin-left: auto;
    margin-right: auto;
    max-width: 1300px;
  }
}

.pushwoosh-subscribe-widget .pushwoosh-subscribe-widget__bell-button {
  -webkit-transform: none !important;
  transform: none !important;
}

.is--read-more-button-active .pushwoosh-subscribe-widget {
  margin-bottom: 54px;
}

@media (max-width: 639px) {
  .is--read-more-button-active .pushwoosh-subscribe-widget {
    margin-bottom: 44px;
  }
}

@media (max-width: 639px) {
  .is--gallery-button-active .pushwoosh-subscribe-widget {
    margin-bottom: 74px;
  }
}

.pushwoosh-subscribe-widget__popover img:only-child {
  margin-bottom: 0 !important;
}

.lazy-load {
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.lazy-load--loaded {
  opacity: 1;
}

@-webkit-keyframes rotate {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes rotate {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@-webkit-keyframes increase {
  0% {
    -webkit-transform: translate(-50%) scaleX(0.1);
    transform: translate(-50%) scaleX(0.1);
    opacity: 1;
  }

  to {
    -webkit-transform: translate(125%) scaleX(1);
    transform: translate(125%) scaleX(1);
    opacity: 1;
  }
}

@keyframes increase {
  0% {
    -webkit-transform: translate(-50%) scaleX(0.1);
    transform: translate(-50%) scaleX(0.1);
    opacity: 1;
  }

  to {
    -webkit-transform: translate(125%) scaleX(1);
    transform: translate(125%) scaleX(1);
    opacity: 1;
  }
}

@-webkit-keyframes decrease {
  0% {
    -webkit-transform: translate(-125%) scaleX(1);
    transform: translate(-125%) scaleX(1);
    opacity: 1;
  }

  to {
    -webkit-transform: translate(75%) scaleX(0.1);
    transform: translate(75%) scaleX(0.1);
    opacity: 1;
  }
}

@keyframes decrease {
  0% {
    -webkit-transform: translate(-125%) scaleX(1);
    transform: translate(-125%) scaleX(1);
    opacity: 1;
  }

  to {
    -webkit-transform: translate(75%) scaleX(0.1);
    transform: translate(75%) scaleX(0.1);
    opacity: 1;
  }
}

.sticky {
  transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.6, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.6, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.6, 1),
    -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.6, 1);
}

.sticky:after,
.sticky:before {
  content: "";
  display: table;
  clear: both;
}

.sticky.is--sticky-bottom-start,
.sticky.is--sticky-top-start {
  position: fixed;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.6, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.6, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.6, 1),
    -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.6, 1);
}

.sticky.is--sticky-bottom-end,
.sticky.is--sticky-top-end {
  position: absolute;
  bottom: 0;
}

.sticky.is--sticky-top-start {
  transition: -webkit-transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1),
    -webkit-transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1154px) and (max-width: 1479px), (min-width: 1480px) {
  .sticky.is--sticky-top-start {
    top: 60px;
  }
}

@media (min-width: 768px) and (max-width: 1023px),
  (min-width: 1024px) and (max-width: 1153px) {
  .sticky.is--sticky-top-start {
    top: 85px;
  }
}

@media (max-width: 639px), (min-width: 640px) and (max-width: 767px) {
  .sticky.is--sticky-top-start {
    top: 68px;
  }
}

.search-form__state:checked ~ .container .sticky.is--sticky-top-start {
  -webkit-transform: translate3d(0, 58px, 0);
  transform: translate3d(0, 58px, 0);
}

@media (min-width: 1154px) {
  .header:not(.is--fixed):not(.is--sticky)
    ~ .container
    .sticky.is--sticky-top-start {
    -webkit-transform: translate3d(0, 70px, 0);
    transform: translate3d(0, 70px, 0);
  }

  .search-form__state:checked
    ~ .header:not(.is--fixed):not(.is--sticky)
    ~ .container
    .sticky.is--sticky-top-start {
    -webkit-transform: translate3d(0, 128px, 0);
    transform: translate3d(0, 128px, 0);
  }
}

@media (max-width: 639px) {
  .header:not(.is--fixed):not(.is--sticky)
    ~ .container
    .sticky.is--sticky-top-start {
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }

  .search-form__state:checked
    ~ .header:not(.is--fixed):not(.is--sticky)
    ~ .container
    .sticky.is--sticky-top-start {
    -webkit-transform: translate3d(0, 108px, 0);
    transform: translate3d(0, 108px, 0);
  }
}

@media (min-width: 1154px) and (max-width: 1479px), (min-width: 1480px) {
  .body__ad-spons--desktop.body__ad-spons--collapsed:not(
      .body__ad-spons--hidden
    )
    .sticky.is--sticky-top-start {
    top: 210px;
  }
}

@media (min-width: 768px) and (max-width: 1023px),
  (min-width: 1024px) and (max-width: 1153px) {
  .body__ad-spons--desktop.body__ad-spons--collapsed:not(
      .body__ad-spons--hidden
    )
    .sticky.is--sticky-top-start {
    top: 235px;
  }
}

@media (max-width: 639px), (min-width: 640px) and (max-width: 767px) {
  .body__ad-spons--desktop.body__ad-spons--collapsed:not(
      .body__ad-spons--hidden
    )
    .sticky.is--sticky-top-start {
    top: 218px;
  }
}

@media (min-width: 1154px) and (max-width: 1479px), (min-width: 1480px) {
  .body__ad-spons--desktop.body__ad-spons--sticky:not(.body__ad-spons--hidden)
    .sticky.is--sticky-top-start {
    top: 135px;
  }
}

@media (min-width: 768px) and (max-width: 1023px),
  (min-width: 1024px) and (max-width: 1153px) {
  .body__ad-spons--desktop.body__ad-spons--sticky:not(.body__ad-spons--hidden)
    .sticky.is--sticky-top-start {
    top: 160px;
  }
}

@media (max-width: 639px), (min-width: 640px) and (max-width: 767px) {
  .body__ad-spons--desktop.body__ad-spons--sticky:not(.body__ad-spons--hidden)
    .sticky.is--sticky-top-start {
    top: 143px;
  }
}

@media (min-width: 1154px) and (max-width: 1479px), (min-width: 1480px) {
  .body__ad-spons--desktop.body__ad-spons--expanded:not(.body__ad-spons--hidden)
    .sticky.is--sticky-top-start {
    top: 560px;
  }
}

@media (min-width: 768px) and (max-width: 1023px),
  (min-width: 1024px) and (max-width: 1153px) {
  .body__ad-spons--desktop.body__ad-spons--expanded:not(.body__ad-spons--hidden)
    .sticky.is--sticky-top-start {
    top: 585px;
  }
}

@media (max-width: 639px), (min-width: 640px) and (max-width: 767px) {
  .body__ad-spons--desktop.body__ad-spons--expanded:not(.body__ad-spons--hidden)
    .sticky.is--sticky-top-start {
    top: 568px;
  }
}

@media (min-width: 1154px) and (max-width: 1479px), (min-width: 1480px) {
  .body__ad-spons--mobile.body__ad-spons--collapsed:not(.body__ad-spons--hidden)
    .sticky.is--sticky-top-start {
    top: 120px;
  }
}

@media (min-width: 768px) and (max-width: 1023px),
  (min-width: 1024px) and (max-width: 1153px) {
  .body__ad-spons--mobile.body__ad-spons--collapsed:not(.body__ad-spons--hidden)
    .sticky.is--sticky-top-start {
    top: 145px;
  }
}

@media (max-width: 639px), (min-width: 640px) and (max-width: 767px) {
  .body__ad-spons--mobile.body__ad-spons--collapsed:not(.body__ad-spons--hidden)
    .sticky.is--sticky-top-start {
    top: 128px;
  }
}

@media (min-width: 1154px) and (max-width: 1479px), (min-width: 1480px) {
  .body__ad-spons--mobile.body__ad-spons--expanded:not(.body__ad-spons--hidden)
    .sticky.is--sticky-top-start {
    top: 360px;
  }
}

@media (min-width: 768px) and (max-width: 1023px),
  (min-width: 1024px) and (max-width: 1153px) {
  .body__ad-spons--mobile.body__ad-spons--expanded:not(.body__ad-spons--hidden)
    .sticky.is--sticky-top-start {
    top: 385px;
  }
}

@media (max-width: 639px), (min-width: 640px) and (max-width: 767px) {
  .body__ad-spons--mobile.body__ad-spons--expanded:not(.body__ad-spons--hidden)
    .sticky.is--sticky-top-start {
    top: 368px;
  }
}

@media (min-width: 1154px) and (max-width: 1479px), (min-width: 1480px) {
  .urgent-holder ~ .container__inner .sticky.is--sticky-top-start {
    top: 94px;
  }
}

@media (min-width: 768px) and (max-width: 1023px),
  (min-width: 1024px) and (max-width: 1153px) {
  .urgent-holder ~ .container__inner .sticky.is--sticky-top-start {
    top: 119px;
  }
}

@media (max-width: 639px), (min-width: 640px) and (max-width: 767px) {
  .urgent-holder ~ .container__inner .sticky.is--sticky-top-start {
    top: 102px;
  }
}

@media (min-width: 1154px) and (max-width: 1479px), (min-width: 1480px) {
  .body__ad-spons--desktop.body__ad-spons--collapsed:not(
      .body__ad-spons--hidden
    )
    .urgent-holder
    ~ .container__inner
    .sticky.is--sticky-top-start {
    top: 244px;
  }
}

@media (min-width: 768px) and (max-width: 1023px),
  (min-width: 1024px) and (max-width: 1153px) {
  .body__ad-spons--desktop.body__ad-spons--collapsed:not(
      .body__ad-spons--hidden
    )
    .urgent-holder
    ~ .container__inner
    .sticky.is--sticky-top-start {
    top: 269px;
  }
}

@media (max-width: 639px), (min-width: 640px) and (max-width: 767px) {
  .body__ad-spons--desktop.body__ad-spons--collapsed:not(
      .body__ad-spons--hidden
    )
    .urgent-holder
    ~ .container__inner
    .sticky.is--sticky-top-start {
    top: 252px;
  }
}

@media (min-width: 1154px) and (max-width: 1479px), (min-width: 1480px) {
  .body__ad-spons--desktop.body__ad-spons--sticky:not(.body__ad-spons--hidden)
    .urgent-holder
    ~ .container__inner
    .sticky.is--sticky-top-start {
    top: 169px;
  }
}

@media (min-width: 768px) and (max-width: 1023px),
  (min-width: 1024px) and (max-width: 1153px) {
  .body__ad-spons--desktop.body__ad-spons--sticky:not(.body__ad-spons--hidden)
    .urgent-holder
    ~ .container__inner
    .sticky.is--sticky-top-start {
    top: 194px;
  }
}

@media (max-width: 639px), (min-width: 640px) and (max-width: 767px) {
  .body__ad-spons--desktop.body__ad-spons--sticky:not(.body__ad-spons--hidden)
    .urgent-holder
    ~ .container__inner
    .sticky.is--sticky-top-start {
    top: 177px;
  }
}

@media (min-width: 1154px) and (max-width: 1479px), (min-width: 1480px) {
  .body__ad-spons--desktop.body__ad-spons--expanded:not(.body__ad-spons--hidden)
    .urgent-holder
    ~ .container__inner
    .sticky.is--sticky-top-start {
    top: 594px;
  }
}

@media (min-width: 768px) and (max-width: 1023px),
  (min-width: 1024px) and (max-width: 1153px) {
  .body__ad-spons--desktop.body__ad-spons--expanded:not(.body__ad-spons--hidden)
    .urgent-holder
    ~ .container__inner
    .sticky.is--sticky-top-start {
    top: 619px;
  }
}

@media (max-width: 639px), (min-width: 640px) and (max-width: 767px) {
  .body__ad-spons--desktop.body__ad-spons--expanded:not(.body__ad-spons--hidden)
    .urgent-holder
    ~ .container__inner
    .sticky.is--sticky-top-start {
    top: 602px;
  }
}

@media (min-width: 1154px) and (max-width: 1479px), (min-width: 1480px) {
  .body__ad-spons--mobile.body__ad-spons--collapsed:not(.body__ad-spons--hidden)
    .urgent-holder
    ~ .container__inner
    .sticky.is--sticky-top-start {
    top: 154px;
  }
}

@media (min-width: 768px) and (max-width: 1023px),
  (min-width: 1024px) and (max-width: 1153px) {
  .body__ad-spons--mobile.body__ad-spons--collapsed:not(.body__ad-spons--hidden)
    .urgent-holder
    ~ .container__inner
    .sticky.is--sticky-top-start {
    top: 179px;
  }
}

@media (max-width: 639px), (min-width: 640px) and (max-width: 767px) {
  .body__ad-spons--mobile.body__ad-spons--collapsed:not(.body__ad-spons--hidden)
    .urgent-holder
    ~ .container__inner
    .sticky.is--sticky-top-start {
    top: 162px;
  }
}

@media (min-width: 1154px) and (max-width: 1479px), (min-width: 1480px) {
  .body__ad-spons--mobile.body__ad-spons--expanded:not(.body__ad-spons--hidden)
    .urgent-holder
    ~ .container__inner
    .sticky.is--sticky-top-start {
    top: 394px;
  }
}

@media (min-width: 768px) and (max-width: 1023px),
  (min-width: 1024px) and (max-width: 1153px) {
  .body__ad-spons--mobile.body__ad-spons--expanded:not(.body__ad-spons--hidden)
    .urgent-holder
    ~ .container__inner
    .sticky.is--sticky-top-start {
    top: 419px;
  }
}

@media (max-width: 639px), (min-width: 640px) and (max-width: 767px) {
  .body__ad-spons--mobile.body__ad-spons--expanded:not(.body__ad-spons--hidden)
    .urgent-holder
    ~ .container__inner
    .sticky.is--sticky-top-start {
    top: 402px;
  }
}

.sticky.is--sticky-top-end {
  top: auto !important;
  -webkit-transform: translateZ(0) !important;
  transform: translateZ(0) !important;
}

.sticky.is--sticky-bottom-start {
  top: auto;
  bottom: 0;
}

.nav__items {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0;
}

.nav__item {
  display: inline-block;
  font-size: 1.6rem;
}

.nav__link {
  display: block;
  outline-offset: -3px;
}

.nav--main {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  top: -8.75px;
  height: 60px;
  margin: 0 290px 0 211px;
  padding: 0;
  text-align: right;
}

.nav--main .nav__items {
  -webkit-flex: 0 1 100%;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  height: 100%;
  overflow: hidden;
}

.nav--main .nav__items:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.nav--main .nav__item {
  vertical-align: middle;
}

.nav--main .nav__link {
  position: relative;
  padding: 0 1.25rem;
  font-size: 1.6rem;
  line-height: 5rem;
  font-weight: 700;
  color: #262626;
  text-align: center;
}

.nav--main .nav__link.is--active:after,
.nav--main .nav__link:hover:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 1.25rem;
  right: 1.25rem;
  height: 3px;
  margin: 0 1px;
  background: #f7d000;
}

.is--mourning .nav--main .nav__link.is--active:after,
.is--mourning .nav--main .nav__link:hover:after {
  background: #404040;
}

.nav--main .overflow-menu__box {
  margin-right: -25px;
}

.nav--main .overflow-menu__box .nav__item {
  display: block;
}

.nav--main .overflow-menu__box .nav__link:after {
  display: none;
}

.nav--main .overflow-menu__button {
  -webkit-flex: 1 0 30px;
  -ms-flex: 1 0 30px;
  flex: 1 0 30px;
  margin-right: -30px;
}

.nav--sub {
  float: left;
  margin-left: -5px;
}

.nav--sub .nav__item {
  margin: 11px 20px 11px 0;
}

.nav--sub .nav__item.nav__item--with-img {
  margin: 0 20px 0 0;
}

.nav--sub .nav__item.nav__item--with-img img {
  margin-bottom: -4px;
  image-rendering: -webkit-optimize-contrast;
}

.is--mourning .nav--sub .nav__item.nav__item--with-img {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

.nav--sub .nav__link {
  padding: 5px;
  font-size: 1.3rem;
  line-height: 1;
  color: #fff;
  opacity: 0.8;
}

.nav--sub .nav__link:hover {
  text-decoration: underline;
  opacity: 1;
}

@media (min-width: 1154px) {
  .nav--sub {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .nav--sub .nav__items {
    height: 100%;
    overflow: hidden;
  }
}

.nav--sub .overflow-menu__box {
  margin-right: 15px;
}

.header.is--fixed .nav--sub .overflow-menu__box,
.header.is--sticky .nav--sub .overflow-menu__box {
  display: none;
}

.nav--sub .overflow-menu__box .nav__item {
  display: block;
  margin: 0;
}

.nav--sub .overflow-menu__box .nav__link {
  color: #262626;
}

.nav--sub .overflow-menu__button {
  -webkit-flex: 1 0 30px;
  -ms-flex: 1 0 30px;
  flex: 1 0 30px;
  margin: 0 10px 0 -15px;
  opacity: 0.8;
}

.nav--sub .overflow-menu__button:hover,
.nav--sub .overflow-menu__state:checked ~ .overflow-menu__button {
  opacity: 1;
}

.nav--sub .overflow-menu__button:after {

}

.nav--social {
  float: right;
  margin: 7px -7px 7px 0;
}

.nav--social .nav__link {
  float: left;
  width: 31px;
  height: 31px;
  margin: 0 0 0 -1px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  opacity: 0.8;
}

.nav--social .nav__link:hover {
  opacity: 1;
}

.nav--social .nav__link:before {
  content: "";
  float: left;
  width: 15px;
  height: 15px;
  margin: 8px;
  background: none no-repeat 50%;
  background-size: contain;
}

.nav--social .nav__item--facebook .nav__link:before {

}

.nav--social .nav__item--twitter .nav__link:before {

}

.nav--social .nav__item--youtube .nav__link:before {
  background-image: url(../index/youtube.a7021.svg);
}

.nav--social .nav__item--instagram .nav__link:before {
  background-image: url(../index/instagram.09adf.svg);
}

.nav--social .nav__item--googleplus .nav__link:before {
  background-image: url(../index/googleplus.8a97a.svg);
}

.nav--social .nav__item--rss .nav__link:before {

}

.nav--social .nav__item--facebook .nav__link:before {
  background-position: 70% 0;
}

.nav--social .nav__item--googleplus .nav__link {
  width: 37.2px;
}

.nav--social .nav__item--googleplus .nav__link:before {
  width: 21.2px;
}

.nav--social-box .nav__items {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 0.01em;
  line-height: 1;
}

.nav--social-box .nav__item {
  position: relative;
  display: inline-block;
  width: 14.47368%;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.nav--social-box .nav__item:before {
  content: "";
  float: left;
  width: 1px;
  height: 0;
  margin-left: -1px;
  padding-top: 100%;
}

.nav--social-box .nav__item:after {
  content: "";
  display: table;
  clear: both;
}

.nav--social-box .nav__item--facebook {
  background-color: #3a579a;
  background-image: url(../index/facebook-box.fe23d.svg);
}

.nav--social-box .nav__item--twitter {
  background-color: #47c7fa;
  background-image: url(../index/twitter-box.4016d.svg);
}

.nav--social-box .nav__item--youtube {
  background-color: red;
  background-image: url(../index/youtube-box.ab61b.svg);
}

.nav--social-box .nav__item--instagram {
  background-color: #b335a4;
  background-image: url(../index/instagram-box.62969.svg);
}

.nav--social-box .nav__item--googleplus {
  background-color: #df4a32;
  background-image: url(../index/googleplus-box.88099.svg);
}

.nav--social-box .nav__item--rss {
  background-color: #f8991d;
  background-image: url(../index/rss-box.f217f.svg);
}

.nav--social-box .nav__link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .nav--social-box {
    margin: 0 9%;
  }
}

@media (max-width: 639px) {
  .nav--social-box {
    margin: 0 15px;
  }
}

@media (max-width: 1023px) {
  .nav--social-box {
    margin-bottom: 25px;
  }
}

.nav--social-program .nav__item {
  position: relative;
  display: inline-block;
  width: 44px;
  margin: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  border: 1px solid hsla(0, 0%, 100%, 0.3);
  border-radius: 100%;
  background: none no-repeat 50%;
  background-size: contain;
}

.nav--social-program .nav__item:before {
  content: "";
  float: left;
  width: 1px;
  height: 0;
  margin-left: -1px;
  padding-top: 100%;
}

.nav--social-program .nav__item:after {
  content: "";
  display: table;
  clear: both;
}



.nav--social-program .nav__item:not(:last-child) {
  margin-right: 30px;
}

.nav--social-program .nav__link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.nav--social-program .nav__link.focus-visible {
  border: 3px solid #f7d000;
  border-radius: 100%;
}

.nav--share {
  position: absolute;
  top: 0;
  z-index: 10;
}

.nav--share .nav__item {
  position: relative;
  display: block;
  width: 100%;
  margin: 5px 0 32.6087%;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  border: 1px solid #ccc;
  border-radius: 100%;
  background: #fff none no-repeat 50%;
  background-size: contain;
}

.nav--share .nav__item:before {
  content: "";
  float: left;
  width: 1px;
  height: 0;
  margin-left: -1px;
  padding-top: 100%;
}

.nav--share .nav__item:after {
  content: "";
  display: table;
  clear: both;
}


.is--no-comments .nav--share .nav__item--comments {
  display: none !important;
}

.nav--share .nav__link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.nav--share .nav__link.focus-visible {
  border: 3px solid #f7d000;
  border-radius: 100%;
}

.nav--share .nav__state {
  display: none;
}

@media (min-width: 640px) {
  .nav--share .nav__item--more,
  .nav--share .nav__item--share {
    display: none;
  }
}

@media (max-width: 639px) {
  .nav--share {
    left: 0;
    right: 0;
    z-index: 10;
    width: auto !important;
    height: 100.01vh;
    pointer-events: none;
  }

  .series .nav--share.is--sticky-parent-in-view {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0s,
      -webkit-transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0s;
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0s,
      -webkit-transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav--share.is--sticky-parent-in-view-bottom {
    position: absolute;
    top: auto;
    bottom: 0;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.6, 1);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.6, 1);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.6, 1),
      -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.6, 1);
  }

  .nav--share.is--sticky-bottom-end.is--sticky-bottom-end,
  .nav--share.is--sticky-parent-in-view-bottom.is--sticky-parent-in-view-bottom,
  .series .nav--share {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.6, 1), visibility 0s 0.3s,
      -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.6, 1);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.6, 1),
      opacity 0.3s cubic-bezier(0.4, 0, 0.6, 1), visibility 0s 0.3s;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.6, 1),
      opacity 0.3s cubic-bezier(0.4, 0, 0.6, 1), visibility 0s 0.3s,
      -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.6, 1);
  }

  .nav--share:not(.is--sticky-bottom-end):not(
      .is--sticky-parent-in-view-bottom
    ) {
    position: fixed;
    left: 15px;
    right: 15px;
    top: auto !important;
    bottom: 0 !important;
  }

  .nav--share .nav__state--share:checked ~ .nav__items .nav__item {
    display: inline-block;
  }
}

@media (max-width: 639px) and (min-width: 360px) {
  .nav--share
    .nav__state--share:checked
    ~ .nav__items
    .nav__item--more
    ~ .nav__item {
    display: none;
  }

  .nav--share
    .nav__state--share:checked
    ~ .nav__items
    .nav__item--more
    ~ .nav__item--comments,
  .nav--share
    .nav__state--share:checked
    ~ .nav__items
    .nav__item--more
    ~ .nav__item--share {
    display: inline-block;
  }
}

@media (max-width: 639px) and (max-width: 359px) {
  .nav--share .nav__state--share:checked ~ .nav__items .nav__item--more {
    display: none;
  }
}

@media (max-width: 639px) {
  .nav--share
    .nav__state--share:checked
    + .nav__state--more:checked
    ~ .nav__items
    .nav__item {
    display: inline-block;
  }

  .nav--share
    .nav__state--share:checked
    + .nav__state--more:checked
    ~ .nav__items
    .nav__item--more {
    display: none;
  }

  .nav--share .nav__items {
    position: absolute;
    left: 0;
    right: 54px;
    bottom: 0;
    min-height: 69px;
    text-align: right;
  }

  .is--read-more-button-active .nav--share .nav__items {
    bottom: 44px;
  }
}

@media (max-width: 639px) and (max-width: 639px) {
  .is--gallery-button-active .nav--share .nav__items {
    bottom: 74px;
  }
}

@media (max-width: 639px) {
  .nav--share .nav__item {
    display: none;
    width: 54px;
    margin: 0 15px 15px 0;
    border: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    pointer-events: auto;
  }

  .nav--share .nav__item--comments,
  .nav--share .nav__item--share {
    display: inline-block;
    position: absolute;
    left: 100%;
  }

  .nav--share .nav__item--comments {
    bottom: 69px;
  }

  .nav--share .nav__item--share {
    bottom: 0;
  }
}

.nav--footer {
  margin: 22px 0 18px;
}

.nav--footer .nav__items li:first-child {
  margin-left: 0;
}

.nav--footer .nav__item {
  margin: 5px 0 5px 20px;
}

.nav--footer .nav__link {
  font-size: 1.4rem;
  color: #262626;
  outline-offset: 0;
}

.nav--footer .nav__link:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .nav--footer {
    text-align: center;
    margin: 25px 0 20px;
  }

  .nav--footer .nav__item {
    margin: 5px;
  }
}

.nav--section {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: right;
  margin-right: -15px;
}

.nav--section .nav__items {
  -webkit-flex: 0 1 100%;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  width: 100%;
  height: 50px;
  overflow: hidden;
}

.nav--section .nav__item {
  max-width: 100%;
  height: 100%;
}

.nav--section .nav__link {
  display: block;
  position: relative;
  max-width: 200px;
  padding: 18px 15px 19px;
  font-size: 1.3rem;
  line-height: 1;
  color: #262626;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.nav--section .nav__link:hover:after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 0;
  height: 3px;
  background: #f7d000;
}

.nav--section .overflow-menu__box {
  right: 15px;
}

.nav--section .overflow-menu__box .nav__item {
  display: block;
  margin-left: 0;
  margin-right: 0;
}

.nav--section .overflow-menu__box .nav__link {
  white-space: normal;
}

.nav--section .overflow-menu__box .nav__link:after {
  display: none;
}

.nav--section .overflow-menu__button {
  -webkit-flex: 1 0 30px;
  -ms-flex: 1 0 30px;
  flex: 1 0 30px;
  margin: -2px 15px 0 0;
}

.nav--search .nav__items {
  text-align: center;
}

.nav--search .nav__item {
  margin: 5px;
}

.nav--search .nav__link {
  font-size: 1.4rem;
  color: #262626;
  padding: 10px;
}

.nav--search .nav__link.is--active,
.nav--search .nav__link:hover {
  color: #005e8c;
}

@-webkit-keyframes context {
  75% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  to {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}

@keyframes context {
  75% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  to {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}

.overflow-menu {
  pointer-events: none;
}

.overflow-menu__state {
  display: none;
}

.overflow-menu__box {
  visibility: hidden;
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 11;
  margin: 20px 0 0;
  padding: 7.5px 0;
  overflow: hidden;
  text-align: right;
  background: #eaeaea;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: top right;
  transform-origin: top right;
  pointer-events: auto;
}

.overflow-menu__state:checked ~ .overflow-menu__box {
  visibility: visible;
  -webkit-animation: context 0.14s 1 forwards;
  animation: context 0.14s 1 forwards;
}

.overflow-menu__box .nav__item {
  opacity: 0;
  transition: opacity 0.25s;
}

.overflow-menu__box .nav__item:nth-of-type(n + 1) {
  transition-delay: 0.05s;
}

.overflow-menu__box .nav__item:nth-of-type(n + 2) {
  transition-delay: 0.1s;
}

.overflow-menu__box .nav__item:nth-of-type(n + 3) {
  transition-delay: 0.15s;
}

.overflow-menu__box .nav__item:nth-of-type(n + 4) {
  transition-delay: 0.2s;
}

.overflow-menu__box .nav__item:nth-of-type(n + 5) {
  transition-delay: 0.25s;
}

.overflow-menu__box .nav__item:nth-of-type(n + 6) {
  transition-delay: 0.3s;
}

.overflow-menu__box .nav__item:nth-of-type(n + 7) {
  transition-delay: 0.35s;
}

.overflow-menu__box .nav__item:nth-of-type(n + 8) {
  transition-delay: 0.4s;
}

.overflow-menu__box .nav__item:nth-of-type(n + 9) {
  transition-delay: 0.45s;
}

.overflow-menu__state:checked ~ .overflow-menu__box .nav__item {
  opacity: 1;
}

.overflow-menu .nav__item {
  pointer-events: auto;
}

.overflow-menu__box .nav__link {
  padding: 7.5px 15px;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.23;
  text-align: right;
}

.overflow-menu__box .nav__item:first-child .nav__link {
  margin: 0;
}

.overflow-menu__box .nav__link.is--active,
.overflow-menu__box .nav__link:hover {
  text-decoration: underline;
}

.overflow-menu__button {
  position: relative;
  display: none;
  -webkit-flex: 1 0 30px;
  -ms-flex: 1 0 30px;
  flex: 1 0 30px;
  width: 30px;
  height: 30px;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  pointer-events: auto;
}

.overflow-menu__button:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 12px;
  margin: -6px 0 0 -2px;

  background-size: contain;
}

.scroller {
  position: relative;
  width: 100%;
  padding-right: 20px;
  box-sizing: content-box;
  overflow: auto;
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-behavior: smooth;
}

.is--grabbing .scroller {
  scroll-behavior: auto;
}

.scroller__inside {
  margin-right: -17px;
}

.scroller__track {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 4px;
  border-right: 1px solid #e5e5e5;
}

.scroller__bar {
  position: absolute;
  top: 0;
  right: -1px;
  width: 3px;
  height: 50%;
  background: #a7a7a7;
  cursor: grab;
}

.scroller__bar.is--grabbing,
.scroller__track:hover .scroller__bar {
  width: 4px;
}

.scroller__bar.is--grabbing {
  background: #f7d000;
}

.is--grabbing * {
  cursor: grabbing !important;
}

.button {
  display: inline-block;
  padding: 14px 20px;
  font-size: 1.4rem;
  line-height: 1;
  color: #262626;
  background: 0 0;
  border: 1px solid #e5e5e5;
}

.button:not(:disabled):not([aria-disabled="true"]) {
  cursor: pointer;
}

.button:not(:disabled):not([aria-disabled="true"]):hover {
  border-color: #666;
}

.button:disabled,
.button[aria-disabled="true"] {
  background: #eaeaea;
  color: #666;
  cursor: default;
}

.button:disabled:after,
.button:disabled:before,
.button[aria-disabled="true"]:after,
.button[aria-disabled="true"]:before {
  opacity: 0.7;
}

.button[hidden] {
  display: none !important;
}

.button:after,
.button:before {
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  background: url(../index/arrow-down.8f731.svg) no-repeat 50%;
  background-size: contain;
}

.button:before {
  margin: -2px 10px 0 0;
}

.button:after {
  content: "";
  margin: -2px 0 0 10px;
}

.button.button--arrow-right:after {
  background-image: url(../index/arrow-right.d559d.svg);
}

.button.button--arrow-left:before {
  content: "";
  background-image: url(../index/arrow-left.47855.svg);
}

.button.button--arrow-left:after,
.button.button--without-arrow:after,
.button.button--without-arrow:before {
  display: none;
}

.button.button--fill {
  color: #fff;
  background: #005e8c;
  border-color: transparent !important;
}

.button.button--fill:not(.is--loading):after,
.button.button--fill:not(.is--loading):before {
  background-image: url(../index/arrow-down.2c2cc.svg);
}

.button.button--fill:not(.is--loading).button--arrow-right:after {
  background-image: url(../index/arrow-right.605ea.svg);
}

.button.button--fill:not(.is--loading).button--arrow-left:before {
  content: "";
  background-image: url(../index/arrow-left.a6c3b.svg);
}

.button.button--fill:not(.is--loading):hover {
  background: #0086ab;
}

.is--mourning .button.button--fill {
  background: #666;
}

.is--mourning .button.button--fill:hover {
  background: #262626;
}

.button.is--loading {
  border-color: #666;
}

.button.is--loading:after,
.button.is--loading:before {
  width: 10px;
  height: 10px;
  border: 2px solid transparent;
  border-top-color: currentcolor;
  border-radius: 10px;
  background: 0 0;
  -webkit-animation: rotate 0.5s linear infinite;
  animation: rotate 0.5s linear infinite;
}

.button.is--loading:before {
  margin: -1px 9px -1px -1px;
}

.button.is--loading:after {
  margin: -1px -1px -1px 9px;
}

.label {
  padding: 0 10px;
  font-family: GPP Text, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 3.2rem;
  color: #262626;
  text-transform: uppercase;
  background: #f7d000;
}

@media (max-width: 639px) {
  .label {
    padding: 0 5px;
    font-size: 1.1rem;
    line-height: 2.6rem;
  }
}

.label--small {
  padding: 0.3rem;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  line-height: 1;
}

.label--small:after,
.label--small:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
}

.label--small:before {
  margin-bottom: -0.09804em;
}

.label--small:after {
  margin-top: -0.15196em;
}

.label--alert {
  color: #fff;
  background: #f0001a;
}

.videoPlayer .videoPlayer__button--iconPlay:after,
.videoPlayer .videoPlayer__button--iconPlay:before,
.videoPlayer .videoPlayer__button--restore:hover,
.videoPlayer .videoPlayer__controls {
  background: #005e8c;
}

.videoPlayer .videoPlayer__button--iconVolume:after {
  border: 1px solid #005e8c;
}

.videoPlayer.videoPlayer.fullscreen .videoPlayer__button--iconFullscreen {
  color: #005e8c;
}

.videoPlayer.videoPlayer.stopped .videoPlayer__mask ._:after,
.videoPlayer .videoPlayer__button--iconFullscreen {
  border-color: #fff;
}

.videoPlayer.videoPlayer.ended .videoPlayer__button--iconPlay ._3:after,
.videoPlayer.videoPlayer.playing .videoPlayer__mask ._:after {
  border-color: transparent transparent transparent #fff;
}

.videoPlayer.videoPlayer.loading .videoPlayer__mask ._:after {
  border-color: #fff transparent transparent;
}

.videoPlayer.videoPlayer.noAnimationSupported.loading
  .videoPlayer__mask
  ._:after {
  border-color: #fff transparent;
}

.videoPlayer.videoPlayer.ended .videoPlayer__button--iconPlay ._3 {
  border-color: #fff transparent #fff #fff;
}

.videoPlayer .videoPlayer__button--iconVolume ._1:after,
.videoPlayer .videoPlayer__button--iconVolume ._2 {
  border-color: transparent #fff transparent transparent;
}

.videoPlayer .videoPlayer__button--iconFullscreen,
.videoPlayer .videoPlayer__label,
.videoPlayer .videoPlayer__progress--played[value],
.videoPlayer .videoPlayer__progress--volume[value] {
  color: #fff;
}

.videoPlayer.videoPlayer.fullscreen .videoPlayer__button--iconFullscreen,
.videoPlayer.videoPlayer.noRangeSupported .videoPlayer__progress--played,
.videoPlayer.videoPlayer.noRangeSupported .videoPlayer__progress--volume,
.videoPlayer .videoPlayer__button--iconPlay ._,
.videoPlayer .videoPlayer__button--iconVolume ._1,
.videoPlayer .videoPlayer__button--iconVolume ._1:before,
.videoPlayer .videoPlayer__button--iconVolume:after {
  background: #fff;
}

.videoPlayer.videoPlayer.muted .videoPlayer__button--iconVolume,
.videoPlayer.videoPlayer.muted .videoPlayer__progress--volume[value] {
  color: #80afc6;
}

.videoPlayer.videoPlayer.muted .videoPlayer__button--iconVolume ._1,
.videoPlayer.videoPlayer.muted .videoPlayer__button--iconVolume ._1:before,
.videoPlayer.videoPlayer.muted .videoPlayer__button--iconVolume:after,
.videoPlayer.videoPlayer.noRangeSupported.muted .videoPlayer__progress--volume {
  background: #80afc6;
}

.videoPlayer.videoPlayer.muted .videoPlayer__button--iconVolume ._1:after,
.videoPlayer.videoPlayer.muted .videoPlayer__button--iconVolume ._2 {
  border-color: transparent #80afc6 transparent transparent;
}

.videoPlayer.videoPlayer.noRangeSupported .videoPlayer__progress--bufferBg,
.videoPlayer .videoPlayer__progress--bufferBg {
  background: #1f719a;
}

.videoPlayer.videoPlayer.noRangeSupported .videoPlayer__progress--buffer,
.videoPlayer.videoPlayer.noRangeSupported .videoPlayer__volumeWrap,
.videoPlayer .videoPlayer__mask ._,
.videoPlayer .videoPlayer__progress--volume[value] {
  background: #4d8eaf;
}

.videoPlayer .videoPlayer__progress--buffer[value] {
  color: #4d8eaf;
}

.videoPlayer.videoPlayer.playing .videoPlayer__progress--bufferBg {
  background: radial-gradient(
    ellipse at center,
    #4d8eaf 0,
    #4d8eaf 16%,
    transparent 42%
  );
}

.videoPlayer .videoPlayer__button.focus-visible,
.videoPlayer .videoPlayer__progress--seek.focus-visible,
.videoPlayer .videoPlayer__volume--seek.focus-visible,
.videoPlayer
  .videoPlayer__volume
  input.focus-visible
  ~ label.videoPlayer__button {
  outline: 3px solid gold !important;
  outline-offset: -3px;
}

.videoPlayer__form {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
  margin: 0;
}

.videoPlayer .videoPlayer__form *,
.videoPlayer .videoPlayer__form :after,
.videoPlayer .videoPlayer__form :before {
  box-sizing: border-box;
}

.videoPlayer__form-scroll {
  height: 100%;
  overflow: scroll;
  overflow-y: auto;
  overflow-x: hidden;
}

.videoPlayer__form-wrap {
  position: relative;
  min-height: 100%;
  width: 100%;
  padding: 2% 5% 56px;
  box-sizing: border-box;
  font-size: 12px;
  color: #fff;
}

.videoPlayer__form-logs {
  display: none;
}

.videoPlayer__form-info p {
  margin: 1em 0;
  line-height: 1.2;
}

.videoPlayer__form-field {
  display: block;
  margin: 20px 0;
}

.videoPlayer__form-input {
  width: 100%;
  padding: 5px;
  font-family: sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #ffeb3b;
  background: 0 0;
  border: 0;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  outline: none;
  box-shadow: none;
  box-sizing: border-box;
}

.videoPlayer__form-input--textarea {
  height: 55px;
  resize: none;
}

.videoPlayer__form .videoPlayer__button--icm {
  width: 100% !important;
  height: auto;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  padding: 20px;
  top: auto;
  bottom: 0;
  background: #ffeb3b !important;
  box-shadow: 0 0 20px 20px #111 !important;
}

.videoPlayer.videoPlayer.error.error .videoPlayer__mask:after {
  -webkit-animation: none !important;
  animation: none !important;
}

.videoPlayer__placeholder {
  position: relative;
}

.videoPlayer.videoPlayer.is--persistent:not(.ended)
  + .videoPlayer__placeholder {
  display: block;
}

html.is--read-more-button-active .videoPlayer.is--persistent:not(.ended) {
  bottom: 54px;
}

@media (max-width: 639px) {
  html.is--read-more-button-active .videoPlayer.is--persistent:not(.ended) {
    bottom: 44px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 130px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 -3px 0 #fff;
}

.header__hamburger,
.header__state {
  display: none;
}

.header__main {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  height: 85px;
  margin-top: 45px;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.header__main .inside--header {
  z-index: 2;
  height: 42.5px;
  margin-top: 21.25px;
  margin-bottom: 21.25px;
}

.header__sub {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 45px;
  background: #005e8c;
}

.is--mourning .header__sub {
  background: #404040;
}

.header__buttons {
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

@media (max-width: 639px) {
  .header__buttons {
    right: 15px;
  }
}

.logo {
  position: absolute;
  top: 50%;
  left: 30px;
  z-index: 2;
  width: 201px;
  height: 42px;
  margin-top: -21px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform-origin: center left 0;
  transform-origin: center left 0;
  transition: -webkit-transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1),
    -webkit-transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.is--mourning-ribbon .logo:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 22px;
  height: 35px;
  margin: 0 -14px -7px 0;
  background: url(../index/mourning-ribbon.13d3f.svg) no-repeat 50%;
  background-size: contain;
}

.logo__link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.logo__link:after {
  content: "";
  display: table;
  clear: both;
}

.logo__img {
  float: left;
  width: 100%;
  height: 100%;
  font-weight: 400;
  text-align: left;
  font-size: 2.6rem;
  text-transform: lowercase;
  word-spacing: 30px;
  line-height: 1;
  color: #005e8c;
}

.is--mourning .logo__img {
  -webkit-filter: grayscale(1) brightness(85%) contrast(150%);
  filter: grayscale(1) brightness(85%) contrast(150%);
}

.platform {
  position: absolute;
  top: 50%;
  right: 115px;
  margin-top: -25px;
}

.platform__link {
  display: block;
  text-align: right;
  line-height: 1.15;
  position: relative;
  padding: 10px 43px 10px 5px;
}

.platform__link:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 30px;
  height: 30px;
  margin-top: -15px;

  background-size: contain;
}

.is--mourning .platform__link:after {

}

.platform__header {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #f0001a;
  text-transform: uppercase;
}

.is--mourning .platform__header {
  color: #333;
}

.platform__text {
  display: block;
  font-size: 1.2rem;
  color: #848484;
}

.search-form {
  visibility: hidden;
  height: 58px;
  position: relative;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top center;
  transform-origin: top center;
  transition: visibility 0s 0.2s,
    -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.6, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.6, 1), visibility 0s 0.2s;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.6, 1), visibility 0s 0.2s,
    -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.6, 1);
}

.search-form:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  z-index: 1;
  height: 50px;
  background: #fff;
  border-bottom: 2px solid #f2f2f2;
}

.search-form .inside {
  padding: 0 80px 0 0;
  opacity: 0;
}

.search-form__state {
  display: none;
}

.search-form__state:checked ~ .header .search-form {
  visibility: visible;
  -webkit-transform: none;
  transform: none;
  transition: -webkit-transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1),
    -webkit-transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-form__state:checked ~ .header .search-form .inside {
  opacity: 1;
  transition: opacity 0.1s 0.1s;
}

.search-form__button {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 46px;
  height: 46px;
  margin: -23px 18px 0 0;
  padding: 0;
  background: 0 0;
  border: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.search-form__button:before {
  content: url(../index/close.d1c7e.svg);
  position: absolute;
  width: 0;
  height: 0;
  visibility: hidden;
}

.search-form__button:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px;
  background: url(../index/search.65042.svg) no-repeat 50%;
  background-size: contain;
}

.search-form__button:hover:after {
  opacity: 0.9;
}

.search-form__state:checked ~ .header .search-form__button--opener:after {
  background-image: url(../index/close.d1c7e.svg);
  width: 16px;
  height: 16px;
  margin: -8px;
}

.search-form__input {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 1.8rem;
  line-height: 58px;
  text-align: center;
  text-indent: 80px;
  color: #262626;
  border: 0;
  outline: 0 !important;
  -webkit-box-shadow: inset 0 0 0 50px #fff;
}

.search-form__input::-webkit-autofill {
  -webkit-text-fill-color: #262626 !important;
}

.search-form__input::-webkit-search-cancel-button {
  display: none;
}

.search-form__input::-webkit-input-placeholder {
  color: #262626;
  font-style: italic;
  opacity: 0.3;
}

.search-form__input::placeholder {
  color: #262626;
  font-style: italic;
  opacity: 0.3;
}

.search-form__input:placeholder-shown + .search-form__button {
  opacity: 0.3;
}

.weather-box {
  float: left;
  max-width: 500px;
  height: 100%;
  padding-top: 1px;
}

.weather-box__link {
  opacity: 1;
  transition: opacity 0.1s;
}

.weather-box__link--hidden {
  opacity: 0;
}

.weather-box .weather-box__weather-type-color {
  display: none;
}

.weather-box,
.weather-box__air,
.weather-box__air-quality,
.weather-box__container,
.weather-box__weather {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.weather-box__container {
  font-size: 12px;
  color: #fff;
  height: 100%;
}

.weather-box__link {
  color: inherit;
  text-decoration: none;
  font-size: 0;
}

.weather-box__link:hover .weather-box__arrow {
  opacity: 1;
}

.weather-box__arrow,
.weather-box__text,
.weather-box__text-small,
.weather-box__weather {
  opacity: 0.8;
}

.weather-box__city-name {
  margin-right: 5px;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 1em;
  max-height: 2em;
}

.weather-box__temp {
  margin-left: 5px;
  font-size: 18px;
  font-weight: 700;
}

.weather-box__air {
  margin-left: 12px;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.weather-box__air .weather-box__air-quality {
  margin-left: 3px;
  padding: 0 3px;
  font-weight: 700;
  box-sizing: border-box;
  opacity: 1;
}

.weather-box__air .weather-box__air-quality.q1 {
  background-color: #57b108;
  color: #fff;
}

.weather-box__air .weather-box__air-quality.q2 {
  background-color: #b0dd10;
  color: #000;
}

.weather-box__air .weather-box__air-quality.q3 {
  background-color: #ffd911;
  color: #000;
}

.weather-box__air .weather-box__air-quality.q4 {
  background-color: #e58100;
  color: #fff;
}

.weather-box__air .weather-box__air-quality.q5 {
  background-color: #e50000;
  color: #fff;
}

.weather-box__air .weather-box__air-quality.q6,
.weather-box__air .weather-box__air-quality.q7 {
  background-color: #900;
  color: #fff;
}

.is--mourning .weather-box__air .weather-box__air-quality {
  background-color: #ccc;
  color: #000;
}

.weather-box__weather-type {
  font-size: 0;
}

.weather-box__weather-type-img {
  display: block;
  height: 34px;
  width: 34px;
}

.is--mourning .weather-box__weather-type-img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.weather-box__weather-type-img:not([src]) {
  opacity: 0;
}

.weather-box__text-small {
  font-size: 10px;
  margin-left: 6px;
}

.weather-box__arrow {
  padding: 0 0 1px 9px;
  transition: opacity 0.2s;
  opacity: 0.5;
}

.weather-box__arrow:after,
.weather-box__arrow:before {
  width: 8px;
  height: 2px;
  content: "";
  display: block;
  background-color: #fff;
  border-radius: 1px;
}

.weather-box__arrow:before {
  -webkit-transform: rotate(45deg) translateY(-2px);
  transform: rotate(45deg) translateY(-2px);
}

.weather-box__arrow:after {
  -webkit-transform: rotate(-45deg) translateY(2px);
  transform: rotate(-45deg) translateY(2px);
}

@media (max-width: 1153px) {
  .weather-box {
    float: none;
    position: absolute;
    left: 316px;
    max-height: 85px;
    top: 0;
  }

  .weather-box__container {
    color: #000;
  }

  .weather-box__weather {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    min-width: 35px;
    margin-left: 5px;
  }

  .weather-box__city-name {
    max-width: 80px;
    max-height: 3em;
  }

  .weather-box .weather-box__weather-type {
    display: none;
  }

  .weather-box .weather-box__weather-type-color {
    display: block;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    font-size: 0;
  }

  .weather-box .weather-box__weather-type-img {
    height: 45px;
    width: 45px;
  }

  .weather-box__temp {
    margin-left: 0;
  }

  .weather-box__air {
    margin-left: 12px;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    color: #848484;
  }

  .weather-box__arrow,
  .weather-box__text,
  .weather-box__text-small,
  .weather-box__weather {
    opacity: 1;
  }

  .weather-box__text {
    margin-bottom: 2px;
  }

  .weather-box__air .weather-box__air-quality {
    margin-left: 0;
    margin-bottom: 5px;
  }

  .weather-box__text-small {
    margin-left: 0;
  }

  .weather-box__arrow:after,
  .weather-box__arrow:before {
    background-color: #848484;
  }
}

@media (max-width: 1023px) {
  .weather-box {
    left: 160px;
  }
}

@media (max-width: 767px) {
  .weather-box {
    max-height: 68px;
  }

  .weather-box .weather-box__weather-type-img {
    height: 32px;
    width: 32px;
  }

  .weather-box__city-name {
    max-width: 60px;
  }

  .weather-box__air {
    display: none;
  }
}

@media (max-width: 639px) {
  .weather-box__air {
    display: none;
  }
}

@media (max-width: 359px) {
  .weather-box__weather {
    display: none;
  }
}

.body__ad-spons--desktop > .header.header,
.body__ad-spons--mobile > .header.header {
  transition: top 0.6s ease,
    -webkit-transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), top 0.6s ease;
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), top 0.6s ease,
    -webkit-transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 1153px) {
  .body__ad-spons--desktop > .header.header,
  .body__ad-spons--mobile > .header.header {
    box-shadow: none;
    z-index: 2147483647;
  }
}

.body__ad-spons--desktop > .header.header.is--fixed,
.body__ad-spons--desktop > .header.header.is--sticky,
.body__ad-spons--mobile > .header.header.is--fixed,
.body__ad-spons--mobile > .header.header.is--sticky {
  transition: top 0.6s ease, -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.6, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.6, 1), top 0.6s ease;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.6, 1), top 0.6s ease,
    -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.6, 1);
}

.body__ad-spons--desktop.body__ad-spons--collapsed:not(.body__ad-spons--hidden)
  .header {
  top: 150px;
}

.body__ad-spons--desktop.body__ad-spons--sticky:not(.body__ad-spons--hidden)
  .header {
  top: 75px;
}

.body__ad-spons--desktop.body__ad-spons--expanded:not(.body__ad-spons--hidden)
  .header {
  top: 500px;
}

.body__ad-spons--mobile.body__ad-spons--collapsed:not(.body__ad-spons--hidden)
  .header {
  top: 60px;
}

.body__ad-spons--mobile.body__ad-spons--expanded:not(.body__ad-spons--hidden)
  .header {
  top: 300px;
}

@media (min-width: 1154px) {
  .header,
  .header .inside--header,
  .header .nav--main .nav__link:after {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition: -webkit-transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1),
      -webkit-transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .header.is--fixed,
  .header.is--sticky {
    -webkit-transform: translate3d(0, -70px, 0);
    transform: translate3d(0, -70px, 0);
  }

  .header.is--fixed .inside--header,
  .header.is--sticky .inside--header {
    -webkit-transform: translate3d(0, 12.5px, 0);
    transform: translate3d(0, 12.5px, 0);
  }

  .header.is--fixed .nav--main .nav__link:after,
  .header.is--sticky .nav--main .nav__link:after {
    -webkit-transform: translate3d(0, -54px, 0);
    transform: translate3d(0, -54px, 0);
  }

  .header.is--fixed,
  .header.is--fixed .inside--header,
  .header.is--fixed .nav--main .nav__link:after,
  .header.is--sticky,
  .header.is--sticky .inside--header,
  .header.is--sticky .nav--main .nav__link:after {
    transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.6, 1);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.6, 1);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.6, 1),
      -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.6, 1);
  }

  .body__ad-spons--mobile.body__ad-spons--collapsed:not(.body__ad-spons--hidden)
    .header.is--fixed,
  .body__ad-spons--mobile.body__ad-spons--collapsed:not(.body__ad-spons--hidden)
    .header.is--sticky {
    top: 0;
  }

  .header__sub .inside {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .header__sub .weather-box {
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    margin-left: 10px;
    margin-right: 20px;
  }

  .header__sub .nav--social {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-left: auto;
  }
}

@media (max-width: 1153px) {
  .header {
    height: 85px;
  }

  .header__main {
    margin-top: 0;
  }

  .header__hamburger {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
    width: 46px;
    height: 46px;
    margin: -23px 0 0 25px;
    padding: 32px 0 0;
    font-size: 1.3rem;
    text-align: center;
    text-transform: uppercase;
    line-height: 1;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    border: 0;
    background: 0 0;
  }

  .header__hamburger:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: 6px 0 0 -10px;
    background: url(../index/menu.36104.svg) no-repeat 50%;
    background-size: contain;
  }

  .header__state:checked ~ .container,
  .header__state:checked ~ .footer {
    opacity: 0;
  }

  .header__sub {
    display: none;
  }
}

@media (max-width: 1153px) {
  .header__state:checked ~ .header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    height: 100%;
    overflow: hidden;
    overflow-y: scroll;
  }

  .body__ad-spons--desktop:not(.body__ad-spons--hidden)
    .header__state:checked
    ~ .header,
  .body__ad-spons--mobile:not(.body__ad-spons--hidden)
    .header__state:checked
    ~ .header {
    top: 0;
  }

  .header__state:checked ~ .header .header__hamburger {
    text-indent: 100%;
  }

  .header__state:checked ~ .header .header__hamburger:after {
    top: 50%;
    width: 16px;
    height: 16px;
    margin: -8px;
    background-image: url(../index/close.d1c7e.svg);
  }

  .header__state:checked ~ .header .header__main {
    position: relative;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    height: auto;
  }

  .header__state:checked ~ .header .header__main:before {
    content: "";
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    height: 2px;
    margin-top: -2px;
    background: #f2f2f2;
  }

  .header__state:checked ~ .header .header__sub {
    position: relative;
    display: block;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    height: auto;
  }

  .header__state:checked ~ .header .header__sub .inside:after {
    display: none;
  }

  .header__state:checked ~ .header .header__hamburger,
  .header__state:checked ~ .header .logo,
  .header__state:checked ~ .header .search-form__button--opener {
    top: 42.5px;
  }

  .header__state:checked ~ .header .inside--header {
    position: static;
    height: 100%;
    margin: 0;
  }

  .header__state:checked ~ .header .search-form {
    position: absolute;
    top: 85px;
    left: 0;
    right: 0;
    z-index: 3;
    box-shadow: 0 2px 0 #f2f2f2;
  }

  .header__state:checked ~ .header .search-form:before {
    height: 2px;
  }

  .header__state:checked ~ .header .nav--main {
    display: block;
    top: 0;
    height: 100%;
    margin: 0;
    padding: 85px 0 68px;
    text-align: left;
    transition: margin 0.2s cubic-bezier(0.4, 0, 0.6, 1);
  }

  .search-form__state:checked ~ .header__state:checked ~ .header .nav--main {
    margin-top: 58px;
    transition: margin 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .header__state:checked ~ .header .nav--main .nav__items {
    margin: 0 -25px;
    padding: 30px 0;
    -webkit-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 10px;
    column-gap: 10px;
  }

  .header__state:checked ~ .header .nav--main .nav__items:before {
    display: none;
  }

  .header__state:checked ~ .header .nav--main .nav__item {
    display: block;
  }

  .header__state:checked ~ .header .nav--main .nav__link {
    display: inline-block;
    font-size: 2.4rem;
    line-height: 1;
    text-align: left;
    margin: 8px 0;
    padding: 0.625em 25px;
  }

  .header__state:checked ~ .header .nav--main .nav__link:after {
    left: 25px;
    right: 25px;
  }

  .header__state:checked ~ .header .nav--main.overflow-menu .overflow-menu__box,
  .header__state:checked
    ~ .header
    .nav--main.overflow-menu
    .overflow-menu__button {
    display: none !important;
  }

  .header__state:checked ~ .header .nav--sub {
    float: none;
    margin: 0 -20px;
    padding: 33px 0;
  }

  .header__state:checked ~ .header .nav--sub .nav__item {
    display: block;
    margin: 1px 0;
  }

  .header__state:checked ~ .header .nav--sub .nav__link {
    display: inline-block;
    padding: 1.1em 20px;
    font-size: 1.8rem;
    opacity: 1;
  }

  .header__state:checked ~ .header .nav--social {
    float: left;
    margin: 0 -25px 30px;
  }

  .header__state:checked ~ .header .nav--social .nav__link {
    width: 60px;
    height: 60px;
    margin: 0 2px 0 0;
  }

  .header__state:checked ~ .header .nav--social .nav__link:before {
    width: 28px;
    height: 28px;
    margin: 16px;
  }

  .header__state:checked
    ~ .header
    .nav--social
    .nav__item--googleplus
    .nav__link {
    width: 72px;
  }

  .header__state:checked
    ~ .header
    .nav--social
    .nav__item--googleplus
    .nav__link:before {
    width: 40px;
  }

  .header__state:checked ~ .header .platform {
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
    border-top: 2px solid #f2f2f2;
  }

  .header__state:checked ~ .header .platform__link {
    padding: 0 65px 0 30px;
    text-align: left;
    font-size: 0;
    line-height: 1;
  }

  .header__state:checked ~ .header .platform__link:after {
    right: 30px;
  }

  .header__state:checked ~ .header .platform__header,
  .header__state:checked ~ .header .platform__text {
    display: inline-block;
    vertical-align: middle;
  }

  .header__state:checked ~ .header .platform__header {
    margin: 1.4em 10px 1.4em 0;
  }
}

@media (max-width: 767px) {
  .header__state:checked ~ .header .header__hamburger,
  .header__state:checked ~ .header .logo,
  .header__state:checked ~ .header .search-form__button--opener {
    top: 34px;
  }

  .header__state:checked ~ .header .header__main:before,
  .header__state:checked ~ .header .search-form {
    top: 68px;
  }

  .header__state:checked ~ .header .nav--main {
    padding: 68px 0 52px;
  }

  .header__state:checked ~ .header .nav--main .nav__items {
    padding: 18px 0;
  }

  .header__state:checked ~ .header .nav--main .nav__link {
    font-size: 1.6rem;
    margin: 7px 0;
  }

  .header__state:checked ~ .header .nav--sub {
    padding: 25px 0;
  }

  .header__state:checked ~ .header .nav--sub .nav__link {
    font-size: 1.4rem;
  }

  .header__state:checked ~ .header .nav--social {
    margin: -15px -23px 10px;
  }

  .header__state:checked ~ .header .nav--social .nav__link {
    width: 52px;
    height: 52px;
  }

  .header__state:checked ~ .header .nav--social .nav__link:before {
    width: 22px;
    height: 22px;
    margin: 15px;
  }

  .header__state:checked
    ~ .header
    .nav--social
    .nav__item--googleplus
    .nav__link {
    width: 62.4px;
  }

  .header__state:checked
    ~ .header
    .nav--social
    .nav__item--googleplus
    .nav__link:before {
    width: 32.4px;
  }
}

@media (max-width: 639px) {
  .header__state:checked ~ .header .nav--social {
    margin: 0 -20px 10px;
  }

  .header__state:checked ~ .header .nav--social .nav__link {
    width: 46px;
    height: 46px;
  }

  .header__state:checked ~ .header .nav--social .nav__link:before {
    width: 22px;
    height: 22px;
    margin: 12px;
  }

  .header__state:checked
    ~ .header
    .nav--social
    .nav__item--googleplus
    .nav__link {
    width: 55.2px;
  }

  .header__state:checked
    ~ .header
    .nav--social
    .nav__item--googleplus
    .nav__link:before {
    width: 31.2px;
  }
}

@media (max-width: 767px) {
  .header,
  .header__main {
    height: 68px;
  }

  .header__main .inside--header {
    margin: 12.75px auto;
  }
}

@media (max-width: 639px) {
  .header .platform {
    visibility: visible;
    top: 68px;
    left: 0;
    right: 0;
    margin-top: -15px;
    background: #fff;
    -webkit-transform-origin: top center;
    transform-origin: top center;
    transition: -webkit-transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1),
      -webkit-transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .header .platform:before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    height: 15px;
    margin-bottom: 2px;
    background: #fff;
    pointer-events: none;
  }

  .header .platform__link {
    padding: 17px 60px 17px 30px !important;
    font-size: 0;
    line-height: 1;
    text-align: left;
    opacity: 1;
    transition: opacity 0.1s 0.1s;
  }

  .header .platform__link:after {
    right: 30px;
    width: 24px;
    height: 24px;
    margin-top: -12px;
  }

  .header .platform__header,
  .header .platform__text {
    display: inline-block;
    vertical-align: middle;
  }

  .header .platform__header {
    margin: 1px 5px 1px 0 !important;
  }

  .header__state:not(:checked) ~ .header .platform {
    border-top: 2px solid #f2f2f2;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  }

  .header__state:not(:checked) ~ .header.is--fixed .platform,
  .header__state:not(:checked) ~ .header.is--sticky .platform {
    visibility: hidden;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    transition: visibility 0s 0.2s,
      -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.6, 1);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.6, 1), visibility 0s 0.2s;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.6, 1), visibility 0s 0.2s,
      -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.6, 1);
  }

  .header__state:not(:checked) ~ .header.is--fixed .platform__link,
  .header__state:not(:checked) ~ .header.is--sticky .platform__link {
    opacity: 0;
  }

  .header__state:checked ~ .header .platform {
    transition: none;
  }

  .search-form__state:checked
    ~ .header__state:not(:checked)
    ~ .header
    .platform {
    visibility: visible;
    -webkit-transform: translate3d(0, 58px, 0) scaleY(1);
    transform: translate3d(0, 58px, 0) scaleY(1);
  }

  .search-form__state:checked
    ~ .header__state:not(:checked)
    ~ .header
    .platform__link {
    opacity: 1;
  }

  .search-form__state:checked
    ~ .header__state:not(:checked)
    ~ .header.is--fixed
    .platform,
  .search-form__state:checked
    ~ .header__state:not(:checked)
    ~ .header.is--sticky
    .platform {
    visibility: hidden;
    -webkit-transform: translate3d(0, 58px, 0) scaleY(0);
    transform: translate3d(0, 58px, 0) scaleY(0);
  }

  .search-form__state:checked
    ~ .header__state:not(:checked)
    ~ .header.is--fixed
    .platform__link,
  .search-form__state:checked
    ~ .header__state:not(:checked)
    ~ .header.is--sticky
    .platform__link {
    opacity: 0;
  }
}

@media (min-width: 1154px) {
  .header.is--fixed .logo,
  .header.is--sticky .logo {
    -webkit-transform: scale(0.87067);
    transform: scale(0.87067);
    transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.6, 1);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.6, 1);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.6, 1),
      -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.6, 1);
  }
}

@media (max-width: 1153px) {
  .logo {
    margin-left: 60px;
  }
}

@media (max-width: 1023px) {
  .logo {
    -webkit-transform: scale(0.95238);
    transform: scale(0.95238);
    width: 43px;
  }

  .logo__link {
    position: relative;
    overflow: hidden;
  }

  .logo__img {
    position: absolute;
    top: 0;
    right: 0;
    width: 201px;
    height: 42px;
  }
}

@media (max-width: 1153px) and (min-width: 768px) {
  .platform__link {
    padding: 7px 52px 7px 5px;
  }

  .platform__link:after {
    width: 36px;
    height: 36px;
    margin-top: -18px;
  }

  .platform__header {
    font-size: 1.68rem;
  }

  .platform__text {
    font-size: 1.44rem;
  }
}

@media (max-width: 1153px) {
  .header__state:checked ~ .header .search-form {
    box-shadow: none;
  }

  .header__state:checked ~ .header .search-form:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: #f2f2f2;
  }

  .search-form__button:after {
    width: 24px;
    height: 24px;
    margin: -12.6px;
  }
}

@media (max-width: 1153px) {
  .nav--main {
    display: none;
    margin: 0;
  }
}

.header.is--fixed .header__hamburger {
  display: none;
}

.header.is--fixed .logo {
  margin-left: 0;
}

@media (max-width: 639px) {
  .header.is--fixed .logo {
    width: 42px;
  }

  .header.is--fixed .logo__link {
    position: relative;
    overflow: hidden;
  }

  .header.is--fixed .logo__img {
    position: absolute;
    top: 0;
    right: 0;
    width: 201px;
    height: 42px;
  }
}

.mail-link {
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -23px;
  right: 60px;
  background: url(../index/mail.a807b.svg) no-repeat 50%;
  width: 46px;
  height: 46px;
}

.container {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 130px 0 0;
  margin-top: 0;
  transition: margin-top 0.2s cubic-bezier(0.4, 0, 0.6, 1);
}

.container:after {
  content: "";
  display: table;
  clear: both;
}

.container__inner {
  position: relative;
  float: left;
  width: 100%;
  overflow: hidden;
}

@media (min-width: 640px) {
  .container__inner {
    padding: 0 10px;
  }
}

.container__inner > * {
  will-change: opacity;
}

@-webkit-keyframes reveal {
  to {
    opacity: 1;
  }
}

@keyframes reveal {
  to {
    opacity: 1;
  }
}

html:not(.no-js)
  .container:not(.is--loading):not(.is--active)
  .container__inner
  > * {
  opacity: 0;
  -webkit-animation: reveal 0s 0.5s forwards;
  animation: reveal 0s 0.5s forwards;
}

html:not(.no-js) .container.is--loading:not(.is--active) .container__inner > * {
  opacity: 0;
}

.container .inside--container {
  z-index: 1;
  max-width: 1134px;
  margin-top: 10px;
  margin-bottom: 35px;
  padding: 0 20px;
  background: #fff;
}

@media (max-width: 639px) {
  .container .inside--container {
    margin-top: 0;
  }
}

@media (min-width: 1334px) {
  .container .inside--container {
    max-width: none;
  }
}

@media (min-width: 1480px) {
  .container .inside--container {
    max-width: 1280px;
  }
}

.container__box,
.container__holder {
  display: inline;
}

.container__col--main,
.container__col--wide {
  width: 100%;
}

.is--mourning .container__col--main,
.is--mourning .container__col--wide {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.container__col--wide:after,
.container__col--wide:before {
  content: "";
  display: table;
  clear: both;
}

.container__layout--main,
.container__layout--wide {
  float: left;
  clear: left;
  width: 100%;
}

.container__layout--main {
  padding-right: 420px;
  margin-right: -420px;
}

.container__layout--aside {
  position: relative;
  z-index: 1;
  float: right;
  clear: right;
  width: 380px;
  margin-left: 40px;
}

.container__header {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  clear: both;
  margin: 0 0 20px;
}

.container__header:after {
  content: "";
  display: table;
  clear: both;
}

@media (max-width: 639px) {
  .container__header {
    margin-right: 15px;
  }
}

.container__header--tv {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.container__header--tv .container__nav {
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  margin: 8px 0 -8px auto;
  padding-left: 15px;
}

.container__title {
  clear: both;
  margin: 16px 0 0;
  padding-bottom: 8px;
  font-size: 3rem;
  line-height: 1;
  white-space: nowrap;
}

.container__nav {
  -webkit-flex: 0 1 100%;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  height: 50px;
  margin-top: 8px;
  margin-bottom: -8px;
}

.container.is--active .container__row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.container.is--active .container__col--main,
.container.is--active .container__col--wide {
  -webkit-flex: 0 1 100%;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  width: 100%;
  max-width: 100%;
}

.container.is--active .container__col--main {
  max-width: calc(100% - 420px);
}

.container.is--active .container__col--aside {
  -webkit-flex: 1 0 380px;
  -ms-flex: 1 0 380px;
  flex: 1 0 380px;
  max-width: 380px;
  margin-left: 40px;
}

.container.is--active .container__layout {
  float: none;
  width: auto;
  margin: 0;
  padding: 0;
}

@media (min-width: 1024px) {
  .container__aside {
    padding-bottom: 25px;
  }

  .is--read-more-button-active
    .container__aside.is--sticky-bottom-start:not(.is--sticky-bottom-end),
  .is--read-more-button-active
    .container__aside.is--sticky-top-start:not(.is--sticky-top-end) {
    padding-bottom: 79px;
  }
}

.container__aside.is--sticky-bottom-start,
.container__aside.is--sticky-top-start {
  width: 360px;
}

@media (min-width: 1480px) {
  .container__aside.is--sticky-bottom-start,
  .container__aside.is--sticky-top-start {
    width: 380px;
  }
}

.is--mourning .container__aside {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.search-form__state:checked ~ .container {
  margin-top: 58px;
  transition: margin-top 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 1479px) {
  .container__layout--main,
  .container__layout--wide {
    float: left;
    clear: left;
    width: 100%;
    padding-right: 385px;
    margin-right: -385px;
  }

  .container__layout--aside {
    position: relative;
    z-index: 1;
    float: right;
    clear: right;
    width: 360px;
    margin-left: 25px;
  }

  .container.is--active .container__col--main {
    max-width: calc(100% - 385px);
  }

  .container.is--active .container__col--aside {
    -webkit-flex: 1 0 360px;
    -ms-flex: 1 0 360px;
    flex: 1 0 360px;
    max-width: 360px;
    margin-left: 25px;
  }
}

@media (max-width: 1153px) {
  .container {
    padding-top: 85px;
  }
}

@media (max-width: 1023px) {
  .container__row {
    display: block !important;
  }

  .container__layout--main,
  .container__layout--wide {
    padding-right: 0;
    margin-right: 0;
  }

  .container__layout--aside {
    width: 100%;
    margin-left: 0;
  }

  .container.is--active .container__col--main {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .container {
    padding-top: 68px;
  }
}

@media (max-width: 639px) {
  .header:not(.is--fixed) ~ .container {
    padding-top: 118px;
  }

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

  .container .inside--container {
    padding: 0;
  }
}

@media (min-width: 1154px) {
  .header.is--fixed ~ .container {
    padding-top: 60px;
  }
}

.breadcrumb {
  margin: 10px 2px 0;
  padding: 1px 0 2px;
  list-style: none;
  line-height: 1;
  font-size: 0;
  color: #262626;
  white-space: nowrap;
  overflow: hidden;
  overflow-x: auto;
}

.breadcrumb:after {
  content: "";
  display: table;
  clear: both;
}

.breadcrumb__item {
  display: inline-block;
  font-size: 1.2rem;
}

.breadcrumb__item:not(:last-child) {
  color: #999;
}

.breadcrumb__item:not(:last-child):after {
  content: "\203A   ";
  margin: 0 10px;
}

.breadcrumb__item:last-child {
  margin-right: 15px;
}

.breadcrumb__link {
  color: inherit;
}

.breadcrumb__link[href]:hover {
  text-decoration: underline;
}

@media (max-width: 639px) {
  .breadcrumb {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.section {
  margin: 30px 0 0;
}

@media (max-width: 1479px) and (min-width: 1024px) {
  .container__layout--aside:first-of-type .section:first-of-type {
    margin-top: 20px;
  }
}

.section:after {
  content: "";
  display: table;
  clear: both;
}

.section__header {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: -15px 0 20px;
  border-bottom: 1px solid #e5e5e5;
}

.section__header:after {
  content: "";
  display: table;
  clear: both;
}

@media (max-width: 639px) {
  .section__header {
    margin-left: 15px;
    margin-right: 15px;
  }
}

.section__header.is--sent-box-header {
  position: relative;
  margin: 0 30px -58px;
  padding-top: 21px;
  border-color: hsla(0, 0%, 90%, 0.25);
  color: #fff;
}

aside.section .section__header.is--sent-box-header {
  padding-top: 11px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  aside.section .section__header.is--sent-box-header {
    margin-left: 40px;
    margin-right: 40px;
  }
}

aside.section .section__header.is--sent-box-header .section__title {
  font-size: 1.4rem;
}

@media (max-width: 639px) {
  .section__header.is--sent-box-header {
    margin-bottom: -98px;
  }

  section.section .section__header.is--sent-box-header {
    margin-left: 15px;
    margin-right: 15px;
  }
}

@media (max-width: 767px), (min-width: 1024px) and (max-width: 1153px) {
  section.section .section__header.is--sent-box-header .section__title {
    font-size: 1.4rem;
  }
}

.section__header.is--sent-box-region-header {
  margin-top: -25px;
}

@media (max-width: 350px) {
  .section__header.is--sent-box-region-header .section__title {
    margin-top: -5px;
  }
}

.section__title {
  margin: 0 30px -1px 0;
  padding: 15px 1px;
  font-size: 1.8rem;
  line-height: 1;
  border-bottom: 3px solid;
}

@media (min-width: 1480px) {
  aside.section .section__title {
    font-size: 1.4rem;
  }
}

.section__link {
  display: block;
  margin: -15px -1px -18px;
  padding: 15px 1px 18px;
  color: #262626;
}

.section__link:hover {
  padding-bottom: 15px;
  border-bottom: 3px solid #f7d000;
}

.section__nav {
  -webkit-flex: 0 1 100%;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  margin-top: 1px;
  margin-bottom: -1px;
}

.news {
  position: relative;
  float: left;
  width: 100%;
  padding-left: 20px;
  margin-bottom: 20px;
  word-wrap: break-word;
}

.news__link {
  display: block;
}

.news__figure {
  position: relative;
  margin: 0;
  padding: 0;
  background: #eaeaea;
  overflow: hidden;
}

.news__figure:before {
  content: "";
  float: left;
  width: 1px;
  height: 0;
  margin-left: -1px;
  padding-top: 56.25%;
}

.news__figure:after {
  content: "";
  display: table;
  clear: both;
}

.news__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;", sans-serif;
}

.news__header {
  color: #262626;
}

.news__title {
  clear: both;
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.2;
}

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

.news__info {
  float: left;
  font-size: 1.3rem;
  line-height: 1.6;
  color: #666;
  word-wrap: normal;
}

.news__time {
  float: left;
  margin: 0 8px 0 0;
  padding: 0 8px 0 0;
  position: relative;
}

.news__time:not(:last-child):after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 1px;
  height: 60%;
  background: currentColor;
  opacity: 0.2;
}

.news__category {
  color: #005e8c;
  display: flex;
}

.news__category:not(:last-child) {
  float: left;
  margin: 0 8px 0 0;
  padding: 0 8px 0 0;
  position: relative;
}

.news__category:not(:last-child):after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 1px;
  height: 60%;
  background: #666;
  opacity: 0.2;
}

.news__editor {
  float: left;
  color: #999;
}

.news__editor-link {
  color: inherit;
}

.news__editor-link:hover,
.news a.news__category:hover {
  text-decoration: underline;
}

.news__label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.news--over .news__link {
  display: block;
  position: relative;
  overflow: hidden;
}

.news--over .news__header {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  max-height: 100%;
  padding: 0 15px 15px;
  color: #fff;
}

.news--over .news__header:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 140%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(0, 0, 0, 0.42) 32%,
    rgba(0, 0, 0, 0.8)
  );
}

.news--over .news__info {
  font-size: 1.1rem;
  padding-left: 4px;
  padding-right: 4px;
  background: #005e8c;
  color: #fff;
}

.news--over .news__category {
  color: #fff;
}

@supports ((-webkit-filter: invert(1)) or (filter: invert(1))) {
  .news--over .news__category,
  .news--over .news__time,
  .news--over .news__title {
    color: #000;
    -webkit-filter: invert(1);
    filter: invert(1);
  }
}

.news--gallery .news__figure:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  width: 22%;
  max-width: 134px;
  padding-top: MIN(134px, 22%);
  background: url(../index/gallery.aab95.svg) no-repeat 50%;
  background-size: contain;
  pointer-events: none;
  -webkit-filter: drop-shadow(0 0 24px #000);
  filter: drop-shadow(0 0 24px #000);
  opacity: 0.9;
}

.news--gallery.news--over .news__figure:after {
  -webkit-filter: none;
  filter: none;
}

.news--gallery.news--over .news__header {
  padding-right: 21% !important;
}

.news--gallery:hover .news__figure:after {
  opacity: 1;
}

.news--video .news__figure:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  width: 22%;
  max-width: 134px;
  padding-top: MIN(134px, 22%);
  background: url(../index/play.29b85.svg) no-repeat 50%;
  background-size: contain;
  -webkit-filter: none;
  filter: none;
  opacity: 0.9;
}

.news--video.news--over .news__header {
  padding-right: 21% !important;
}

.news--video:hover .news__figure:after {
  opacity: 1;
}

.news--video .news__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;", sans-serif;
  opacity: 0;
  will-change: opacity;
  pointer-events: none;
}

.news--video.is--preview-src .news__video {
  opacity: 1;
  transition: opacity 0.75s;
}

.news--vertical .news__link:after {
  content: "";
  display: table;
  clear: both;
}

.news--vertical .news__link:not(.focus-visible):after {
  clear: right;
}

.news--vertical .news__figure {
  float: left;
  width: 52%;
}

.news--vertical .news__figure:before {
  padding-top: 177.77778%;
}

.news--vertical .news__header {
  float: right;
  width: 48%;
  padding-left: 15px;
}

.news--vertical .news__title {
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

@media (max-width: 639px) {
  .news--vertical .news__figure {
    width: 48%;
  }

  .news--vertical .news__header {
    width: 52%;
    padding: 0 10px;
  }
}

.news--target {
  float: none;
  padding: 0;
  margin: 30px 0 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 639px) {
  .news--target.news {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.news--target video.news__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.news--target > .news__figure {
  clear: both;
  margin: 30px 0 15px;
}

.news--target .news__title {
  margin-top: -10px;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.2;
}

@media (min-width: 1480px) {
  .news--target .news__title {
    font-size: 4.8rem;
    line-height: 1.08333;
  }
}

@media (min-width: 768px) and (max-width: 1023px),
  (min-width: 1154px) and (max-width: 1479px) {
  .news--target .news__title {
    font-size: 3.6rem;
    line-height: 1.16667;
  }
}

.news--target .news__info {
  float: none;
  margin: 16px 0 -1px;
}

.news--target .news__info:after {
  content: "";
  display: table;
  clear: both;
}

@media (min-width: 1480px) {
  .news--target .news__info {
    font-size: 1.4rem;
  }
}

@media (max-width: 639px) {
  .news--target .news__figure {
    margin-left: -15px;
    margin-right: -15px;
  }
}

.news--target .news__figure:hover .news__photos-label,
.news--target .news__figure:hover .news__photos-link:after,
.news--target .news__figure:hover .news__photos-link:before {
  opacity: 1;
}

.news--target .news__figure .news__photos-link {
  outline: none;
}

.news--target .news__figure .news__photos-link:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 0.5s ease-in-out;
}

@media (min-width: 1154px) {
  .news--target .news__figure .news__photos-link:before {
    opacity: 0.4;
  }
}

.news--target .news__figure .news__photos-link.focus-visible:before {
  outline: 3px solid #f7d000;
  outline-offset: -3px;
}

.news--target .news__figure .news__photos-link:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 10.97561%;
  height: 0;
  padding-top: 8.95854%;
  padding-bottom: 35px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url(../index/photos.f5a41.svg) no-repeat top;
  transition: opacity 0.5s ease-in-out;
}

@media (min-width: 1154px) {
  .news--target .news__figure .news__photos-link:after {
    opacity: 0.5;
  }
}

@media (max-width: 639px) {
  .news--target .news__figure .news__photos-link:after {
    width: 18.88889%;
    padding-top: 15.41667%;
    padding-bottom: 30px;
  }
}

.news--target .news__figure .news__photos-link.is--loading:after {
  width: 4.87805%;
  padding: 4.87805% 0 0;
  margin: -4.87805% -2.43902%;
  border: 4px solid transparent;
  border-top-color: #fff;
  border-radius: 100%;
  background: 0 0;
  -webkit-transform: none;
  transform: none;
  -webkit-animation: rotate 0.5s linear infinite;
  animation: rotate 0.5s linear infinite;
}

@media (max-width: 639px) {
  .news--target .news__figure .news__photos-link.is--loading:after {
    width: 6.66667%;
    padding: 6.66667% 0 0;
    margin: -6.66667% -3.33333%;
    border-width: 3px;
  }
}

.news--target .news__figure .news__photos-link.is--loading .news__photos-label,
.news--target .news__figure .news__photos-link.is--loading:after,
.news--target .news__figure .news__photos-link.is--loading:before {
  opacity: 1;
}

.news--target .news__figure .news__photos-label {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
  padding-top: 8.95854%;
  margin-top: 5px;
  transition: opacity 0.5s ease-in-out;
}

@media (min-width: 1154px) {
  .news--target .news__figure .news__photos-label {
    opacity: 0.5;
  }
}

@media (max-width: 639px) {
  .news--target .news__figure .news__photos-label {
    font-size: 1.5rem;
    padding-top: 15.41667%;
  }
}

.news--target .news__figcaption {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 3px 4px;
  font-size: 1rem;
  line-height: 1;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
}

.news--target .news__figure-signature {
  padding: 10px 0;
  margin: -15px 0 10px;
  border-bottom: 1px solid #e5e5e5;
  font-size: 0.8em;
}

.news--target .news__video {
  float: left;
}

.news--target .news__content {
  position: relative;
  font-size: 1.8rem;
  line-height: 1.5;
}

.news--target .news__content:before {
  content: "";
  display: table;
  clear: both;
}

@media (min-width: 1480px) {
  .news--target .news__content {
    padding-left: 80px;
    min-height: 315px;
  }
}

@media (min-width: 768px) and (max-width: 1023px),
  (min-width: 1154px) and (max-width: 1479px) {
  .news--target .news__content {
    padding-left: 70px;
    min-height: 315px;
  }
}

@media (min-width: 640px) and (max-width: 767px),
  (min-width: 1024px) and (max-width: 1153px) {
  .news--target .news__content {
    padding-left: 50px;
    min-height: 250px;
  }
}

@media (max-width: 767px), (min-width: 1024px) and (max-width: 1153px) {
  .news--target .news__content {
    font-size: 1.6rem;
  }
}

.news--target .news__share {
  padding-top: 1em;
  width: 46px;
}

@media (min-width: 1480px) {
  .news--target .news__share {
    margin: 0 0 0 -80px;
  }
}

@media (min-width: 768px) and (max-width: 1023px),
  (min-width: 1154px) and (max-width: 1479px) {
  .news--target .news__share {
    margin: 0 0 0 -70px;
  }
}

@media (min-width: 640px) and (max-width: 767px),
  (min-width: 1024px) and (max-width: 1153px) {
  .news--target .news__share {
    width: 36px;
    margin: 0 0 0 -50px;
  }
}

.news--target .news__embed {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

@media (max-width: 639px) {
  .news--target .news__embed {
    margin: 0 -15px;
  }
}

.news--target .news__embed-box {
  position: relative;
}

@media (max-width: 639px) {
  .news--target .news__embed-box {
    margin: 0 15px;
  }
}

.news--target .news__embed-box iframe {
  max-width: 100%;
}

.news--target .news__embed-box[style^="padding"] {
  margin: 0;
  padding-top: 56.25%;
  background: #eaeaea;
}

.news--target .news__embed-box[style^="padding"] iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.news--target .news__preview {
  font-size: 2rem;
  font-weight: 700;
}

@media (max-width: 767px), (min-width: 1024px) and (max-width: 1153px) {
  .news--target .news__preview {
    font-size: 1.8rem;
  }
}

.news--target .news__bullets {
  margin: 2em 0;
  font-weight: 700;
}

.news--target .news__bullets ol ::marker,
.news--target .news__bullets ul ::marker {
  color: #21caeb;
}

.news--target .news__bullets ul {
  padding-left: 23px;
}

.news--target .news__bullets ul ::marker {
  content: url("data:image/svg+xml;charset=utf8,              %3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='11' viewBox='0 0 100 100'%3E                %3Cline x1='5' x2='5' y1='50' y2='50' stroke-width='8' stroke='%2321caeb' stroke-linecap='round' vector-effect='non-scaling-stroke'/%3E              %3C/svg%3E");
}

@media (max-width: 767px), (min-width: 1024px) and (max-width: 1153px) {
  .news--target .news__bullets ul {
    padding-left: 18px;
  }

  .news--target .news__bullets ul ::marker {
    content: url("data:image/svg+xml;charset=utf8,              %3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='10' viewBox='0 0 100 100'%3E                %3Cline x1='5' x2='5' y1='50' y2='50' stroke-width='6' stroke='%2321caeb' stroke-linecap='round' vector-effect='non-scaling-stroke'/%3E              %3C/svg%3E");
  }
}

@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active) {
  .news--target .news__bullets ul {
    padding-left: 17px;
  }

  .news--target .news__bullets ul li {
    padding-left: 8px;
  }
}

@media (-ms-high-contrast: none) and (max-width: 767px),
  (-ms-high-contrast: none) and (min-width: 1024px) and (max-width: 1153px),
  screen and (-ms-high-contrast: active) and (max-width: 767px),
  screen and (-ms-high-contrast: active) and (min-width: 1024px) and (max-width: 1153px) {
  .news--target .news__bullets ul {
    padding-left: 15px;
  }

  .news--target .news__bullets ul li {
    padding-left: 3px;
  }
}

.news--target .news__bullets ol {
  padding-left: 20px;
}

.news--target .news__bullets ol li {
  padding-left: 3px;
}

@media (max-width: 767px), (min-width: 1024px) and (max-width: 1153px) {
  .news--target .news__bullets ol {
    padding-left: 15px;
  }
}

.news--target .news__bullets li {
  margin-top: 0.4444em;
}

.news--target .news__bullets p {
  margin: 0;
}

.news--target .news__bullets a:not(.related__link):hover,
.news--target .news__description a:not(.related__link):hover {
  text-decoration: underline;
}

.news--target .news__description {
  margin: 1em 0;
  font-weight: 300;
  word-break: break-word;
  word-wrap: break-word;
}

.news--target .news__description p {
  margin: 0;
}

.news--target .news__description strong {
  font-weight: 700;
}

.news--target .news__description video.videoPlayer {
  position: relative;
  border-bottom: 40px solid #fff;
}

.news--target .news__description p iframe {
  max-width: 100%;
}

@media (max-width: 639px) {
  .news--target .news__description p iframe {
    display: block;
    width: 100vw !important;
    max-width: none;
    margin-left: -15px !important;
  }
}

.news--target .news__description .article-image img,
.news--target .news__description .videoPlayer:not(.news__video),
.news--target .news__description > figure img,
.news--target .news__description p > img {
  max-width: 100%;
  width: 100% !important;
  height: auto !important;
  margin: 0;
}

@media (max-width: 639px) {
  .news--target .news__description .article-image img,
  .news--target .news__description .videoPlayer:not(.news__video),
  .news--target .news__description > figure img,
  .news--target .news__description p > img {
    display: block;
    width: 100vw !important;
    max-width: none;
    margin-left: -15px !important;
  }
}

.news--target .news__description figure:not([class]) {
  position: relative;
  display: inline-block;
  margin: 0;
  overflow: hidden;
}

.news--target .news__description figure:not([class]) img {
  float: left;
}

.news--target .news__description .news__figure {
  clear: none;
}

@media (max-width: 639px) {
  .news--target .news__description .news__figure {
    display: block;
    width: auto !important;
    max-width: none;
    margin-left: -15px;
    margin-right: -15px;
  }

  .news--target .news__description .news__figure .news__img {
    margin-left: 0 !important;
  }
}

.news--target .news__description .article-image {
  display: inline-block;
  position: relative;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
}

.news--target .news__description .article-image img {
  float: left;
  width: 100%;
  height: auto;
  margin: 0;
}

.news--target .news__description .article-image-wrap {
  position: relative;
  width: 100%;
  float: left;
}

.news--target .news__description .article-image-wrap:after {
  content: "";
  display: table;
  clear: both;
}

.news--target .news__description .article-image-src {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 3px 4px;
  font-size: 1rem;
  line-height: 1;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
}

.news--target .news__description .article-image-capition {
  clear: both;
  position: relative;
  padding: 10px 0 0;
  font-size: 1.4rem;
}

.news--target .news__description .videoPlayer.is--persistent {
  margin: 0 !important;
}

.news--target .news__description .news--gallery-link {
  float: none;
}

@media (max-width: 639px) {
  .news--target .news__description .news--gallery-link {
    margin: 0 -15px;
    width: auto;
  }
}

.news--target .news--gallery-link {
  margin: 0;
  padding: 0;
}

.news--target .news--gallery-link .news__link:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 1;
  background: #000;
  opacity: 0.8;
}

.news--target .news--gallery-link .news__figure {
  margin: 0;
}

.news--target .news--gallery-link .news__figure:after {
  margin: 0 3% 50px 0;
}

@media (max-width: 767px) {
  .news--target .news--gallery-link .news__figure:after {
    margin: 0 0 40px;
  }
}

.news--target .news--gallery-link .news__header {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-left: 4%;
  padding-bottom: 4%;
}

.news--target .news--gallery-link .news__header:before {
  display: none;
}

.news--target .news--gallery-link .news__title {
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  overflow: hidden;
  width: 100%;
  margin: 3% 0 0;
  font-size: 2.4rem;
  line-height: 1.125;
}

@media (max-width: 767px) {
  .news--target .news--gallery-link .news__title {
    font-size: 1.8rem;
  }
}

@media (max-width: 639px) {
  .news--target .news--gallery-link .news__title {
    -webkit-line-clamp: 5;
  }
}

.news--target .news--gallery-link .news__button {
  margin-top: 3%;
  font-weight: 400;
}

.news--target .news--gallery-link .news__link:hover .news__button {
  background: #0086ab;
  border-color: transparent;
}

.news--target .news__rndvod:before,
.news--target .news__vodevents:before {
  content: "";
  display: table;
  clear: both;
}

.news--target .news__rndvod-header,
.news--target .news__vodevents-header {
  margin: 20px 0;
}

.news--target .news__rndvod-link,
.news--target .news__vodevents-link {
  font-weight: 700;
}

.news--target .news__rndvod .videoPlayer,
.news--target .news__vodevents .videoPlayer {
  margin: 0 !important;
}

.news--target .news__author {
  color: #999;
  margin: 1em 0 0;
}

.news--target .news__author-link {
  color: inherit;
}

.news--target .news__author-link:hover {
  text-decoration: underline;
}

@media (min-width: 640px) {
  .news--target .news__related {
    float: right;
    width: 200px;
    margin-left: 20px;
  }
}

.news--target .news__comments {
  width: 100%;
  margin-top: 30px;
  overflow: hidden;
}

.is--no-comments .news--target .news__comments,
.is--no-comments .news--target .news__comments + .ad {
  display: none;
}

.news--target .news__comments-title {
  margin: 0;
}

.news--target .news__comments-title:before {
  content: "";
  display: block;
  height: 100px;
  margin-top: -100px;
}

.news--target .news__comments .fb-comments {
  position: relative;
  min-height: 230px;
}

.news--target .news__comments .fb-comments:before {
  content: "";
  width: 30px;
  height: 30px;
  border: 4px solid transparent;
  border-top-color: #005e8c;
  border-radius: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -15px;
  -webkit-animation: rotate 0.5s linear infinite;
  animation: rotate 0.5s linear infinite;
}

.news--target .news__comments .fb-comments.fb_iframe_widget:before {
  display: none;
}

.news--target .news__comments .fb-comments,
.news--target .news__comments .fb-comments iframe,
.news--target .news__comments .fb-comments span {
  width: 100% !important;
}

.news--target .news__read-more-button {
  display: none;
}

@media (max-width: 1153px) {
  .news--target .news__read-more-button {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 0;
    overflow: hidden;
    background: #f7d000;
    color: #262626;
    font-size: 1.4rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.6, 1);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.6, 1);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.6, 1),
      -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.6, 1);
  }

  .news--target .news__read-more-button:after {
    content: "";
    display: block;
    width: 23px;
    height: 23px;
    margin: 0 0 0 6px;
    background: url(../index/more.7145e.svg) no-repeat 50%;
    background-size: contain;
  }

  .news--target .news__read-more-button.is--active {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    height: 54px;
    -webkit-transform: translate(0);
    transform: translate(0);
    transition: -webkit-transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1),
      -webkit-transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  }
}

@media (max-width: 1153px) and (max-width: 639px) {
  .news--target .news__read-more-button.is--active {
    height: 44px;
  }
}

.series__item.is--loading .news--target {
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
  opacity: 0;
}

.news-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  clear: both;
  margin-left: -20px;
  text-align: left;
}

.news-list__button {
  width: 100%;
  padding-left: 10px;
  text-align: center;
}

@media (min-width: 640px) {
  .news-list__button {
    padding-left: 20px;
  }
}

.news-list__button .button {
  margin: 30px 0 40px;
}

.news-list--hot-news {
  display: block;
  margin-top: -30px;
}

.news-list--hot-news + .news-list--hot-news {
  margin-top: 10px;
}

.news-list--hot-news:after {
  content: "";
  display: table;
  clear: both;
}

.news-list--hot-news .news-list__title {
  margin: 0;
  padding: 17px 20px 3px;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
}

@media (max-width: 639px) {
  .news-list--hot-news .news-list__title {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 2rem;
  }
}

.news-list--hot-news + .news-list--hot-news-bg {
  margin-top: 20px;
}

.news-list--hot-news-bg {
  color: #fff;
  margin-bottom: -10px;
  padding: 0 0 20px;
}

.news-list--hot-news-bg + .news-list--hot-news-bg {
  margin-top: 30px;
}

.news-list--hot-news-bg-1 {
  background: #005e8c;
}

.news-list--hot-news-bg-2 {
  background: #f0001a;
}

.news-list--hot-news-bg-3 {
  background: #f7d000;
  color: #000;
}

.news-list--hot-news-bg-4 {
  background: #262626;
}

.news-list--hot-news-bg-5 {
  background: #000;
}

.news-list--hot-news-bg .news-list__title {
  padding-top: 22px;
}

.news-list--hot-news-bg .news:not(.news--over) .news__header {
  padding-bottom: 0;
}

@media (min-width: 640px) {
  .news-list--hot-news-bg {
    margin-left: -20px;
    margin-right: -20px;
    padding: 0 20px 20px 0;
  }
}

.is--mourning .news-list--hot-news-bg {
  color: #262626;
  background: #e5e5e5;
}

.news-list--hot-news .news {
  margin-bottom: 0;
  margin-top: 20px;
}

.news-list--hot-news-1 .news--over .news__figure:before {
  content: "";
  float: left;
  width: 1px;
  height: 0;
  margin-left: -1px;
  padding-top: 28.3871%;
}

.news-list--hot-news-1 .news--over .news__figure:after {
  content: "";
  display: table;
  clear: both;
}

.news-list--hot-news-1 .news--over .news__header {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: 100%;
}

.news-list--hot-news-1 .news--over .news__header:before {
  width: 50%;
  height: 100%;
  background: linear-gradient(
    270deg,
    transparent,
    rgba(0, 0, 0, 0.42) 32%,
    rgba(0, 0, 0, 0.8)
  );
}

.news-list--hot-news-1 .news--over .news__title {
  width: 45%;
}

.news-list--hot-news-1 .news:not(.news--over) .news__header,
.news-list--hot-news-1 .news:not(.news--over) .news__info,
.news-list--hot-news-1 .news:not(.news--over) .news__link,
.news-list--hot-news-1 .news:not(.news--over) .news__preview,
.news-list--hot-news-1 .news:not(.news--over) .news__title {
  color: currentColor;
}

.news-list--hot-news-1 .news:not(.news--over) .news__time {
  opacity: 0.7;
}

.news-list--hot-news-1 .news:not(.news--over) .news__preview {
  font-size: 1.6rem;
  line-height: 1.1875;
  opacity: 0.8;
  margin: 0.725em 0 0;
}

@media (min-width: 1480px) {
  .news-list--hot-news-1 .news__header {
    padding: 0 20px 20px;
  }

  .news-list--hot-news-1 .news__info {
    font-size: 1.25rem;
  }

  .news-list--hot-news-1 .news__title {
    font-size: 3rem;
    line-height: 1.2;
    font-size: 3.4rem;
    line-height: 1.05882;
  }

  .news-list--hot-news-1 .news__header {
    padding: 0 40px 40px;
  }

  .news-list--hot-news-1 .news:not(.news--over) .news__figure {
    float: left;
    width: 49.19355%;
  }

  .news-list--hot-news-1 .news:not(.news--over) .news__figure:before {
    content: "";
    float: left;
    width: 1px;
    height: 0;
    margin-left: -1px;
    padding-top: 57.70492%;
  }

  .news-list--hot-news-1 .news:not(.news--over) .news__figure:after {
    content: "";
    display: table;
    clear: both;
  }

  .news-list--hot-news-1 .news:not(.news--over) .news__header {
    float: left;
    width: 48%;
  }

  .news-list--hot-news-1 .news:not(.news--over) .news__info {
    margin-top: 20px;
  }

  .news-list--hot-news-3 .news__header,
  .news-list--hot-news-4 .news__header {
    padding: 0 20px 20px;
  }

  .news-list--hot-news-3 .news__info,
  .news-list--hot-news-4 .news__info {
    font-size: 1.25rem;
  }

  .news-list--hot-news-3 .news__title,
  .news-list--hot-news-4 .news__title {
    font-size: 3rem;
    line-height: 1.2;
  }

  .news-list--hot-news-3 .news,
  .news-list--hot-news-4 .news {
    width: 25%;
  }

  .news-list--hot-news-3 .news__figure:before,
  .news-list--hot-news-4 .news__figure:before {
    content: "";
    float: left;
    width: 1px;
    height: 0;
    margin-left: -1px;
    padding-top: 119.32203%;
  }

  .news-list--hot-news-3 .news__figure:after,
  .news-list--hot-news-4 .news__figure:after {
    content: "";
    display: table;
    clear: both;
  }

  .news-list--hot-news-3 .news__title,
  .news-list--hot-news-4 .news__title {
    font-size: 1.8rem;
    line-height: 1.16667;
  }

  .news-list--hot-news-5 .news {
    width: 25%;
  }

  .news-list--hot-news-2 .news,
  .news-list--hot-news-3 .news:first-of-type,
  .news-list--hot-news-5 .news:first-of-type {
    width: 50%;
  }

  .news-list--hot-news-2 .news .news__header,
  .news-list--hot-news-3 .news:first-of-type .news__header,
  .news-list--hot-news-5 .news:first-of-type .news__header {
    padding: 0 20px 20px;
  }

  .news-list--hot-news-2 .news .news__info,
  .news-list--hot-news-3 .news:first-of-type .news__info,
  .news-list--hot-news-5 .news:first-of-type .news__info {
    font-size: 1.25rem;
  }

  .news-list--hot-news-2 .news .news__title,
  .news-list--hot-news-3 .news:first-of-type .news__title,
  .news-list--hot-news-5 .news:first-of-type .news__title {
    font-size: 3rem;
    line-height: 1.2;
  }

  .news-list--hot-news-2 .news .news__figure:before,
  .news-list--hot-news-3 .news:first-of-type .news__figure:before,
  .news-list--hot-news-5 .news:first-of-type .news__figure:before {
    content: "";
    float: left;
    width: 1px;
    height: 0;
    margin-left: -1px;
    padding-top: 57.70492%;
  }

  .news-list--hot-news-2 .news .news__figure:after,
  .news-list--hot-news-3 .news:first-of-type .news__figure:after,
  .news-list--hot-news-5 .news:first-of-type .news__figure:after {
    content: "";
    display: table;
    clear: both;
  }

  .news-list--hot-news-2 .news .news__info,
  .news-list--hot-news-3 .news:first-of-type .news__info,
  .news-list--hot-news-5 .news:first-of-type .news__info {
    margin-bottom: 2px;
  }

  .news-list--hot-news-5 .news:nth-of-type(6) {
    clear: both;
  }
}

@media (max-width: 1479px) {
  .news-list--hot-news-3 .news,
  .news-list--hot-news-4 .news,
  .news-list--hot-news-5 .news {
    width: 50%;
  }

  .news-list--hot-news-1 .news,
  .news-list--hot-news-2 .news,
  .news-list--hot-news-3 .news:first-of-type,
  .news-list--hot-news-5 .news:first-of-type {
    width: 100%;
  }

  .news-list--hot-news-1 .news .news__figure:before,
  .news-list--hot-news-2 .news .news__figure:before,
  .news-list--hot-news-3 .news:first-of-type .news__figure:before,
  .news-list--hot-news-5 .news:first-of-type .news__figure:before {
    content: "";
    float: left;
    width: 1px;
    height: 0;
    margin-left: -1px;
    padding-top: 56.25%;
  }

  .news-list--hot-news-1 .news .news__figure:after,
  .news-list--hot-news-2 .news .news__figure:after,
  .news-list--hot-news-3 .news:first-of-type .news__figure:after,
  .news-list--hot-news-5 .news:first-of-type .news__figure:after {
    content: "";
    display: table;
    clear: both;
  }

  .news-list--hot-news-1 .news .news__info,
  .news-list--hot-news-2 .news .news__info,
  .news-list--hot-news-3 .news:first-of-type .news__info,
  .news-list--hot-news-5 .news:first-of-type .news__info {
    margin-bottom: 2px;
  }

  .news-list--hot-news-1 .news--over .news__header:before {
    width: 75%;
  }

  .news-list--hot-news-1 .news--over .news__title {
    width: 70%;
  }
}

@media (max-width: 1479px) and (min-width: 768px) {
  .news-list--hot-news .news__title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .news-list--hot-news-1 .news .news__header,
  .news-list--hot-news-2 .news .news__header,
  .news-list--hot-news-3 .news:first-of-type .news__header,
  .news-list--hot-news-5 .news:first-of-type .news__header {
    padding: 0 20px 20px;
  }

  .news-list--hot-news-1 .news .news__info,
  .news-list--hot-news-2 .news .news__info,
  .news-list--hot-news-3 .news:first-of-type .news__info,
  .news-list--hot-news-5 .news:first-of-type .news__info {
    font-size: 1.25rem;
  }

  .news-list--hot-news-1 .news .news__title,
  .news-list--hot-news-2 .news .news__title,
  .news-list--hot-news-3 .news:first-of-type .news__title,
  .news-list--hot-news-5 .news:first-of-type .news__title {
    font-size: 3.6rem;
    line-height: 1.2;
  }

  .news-list--hot-news-1 .news:not(.news--over) .news__header {
    padding: 0;
  }
}

@media (min-width: 1024px) and (max-width: 1153px) {
  .news-list--hot-news-1 .news .news__header,
  .news-list--hot-news-2 .news .news__header,
  .news-list--hot-news-3 .news:first-of-type .news__header,
  .news-list--hot-news-5 .news:first-of-type .news__header {
    padding: 0 20px 20px;
  }

  .news-list--hot-news-1 .news .news__info,
  .news-list--hot-news-2 .news .news__info,
  .news-list--hot-news-3 .news:first-of-type .news__info,
  .news-list--hot-news-5 .news:first-of-type .news__info {
    font-size: 1.25rem;
  }

  .news-list--hot-news-1 .news .news__title,
  .news-list--hot-news-2 .news .news__title,
  .news-list--hot-news-3 .news:first-of-type .news__title,
  .news-list--hot-news-5 .news:first-of-type .news__title {
    font-size: 3rem;
    line-height: 1.2;
  }

  .news-list--hot-news .news__title {
    font-size: 1.6rem;
    line-height: 1.1875;
  }
}

@media (min-width: 640px) and (max-width: 767px) {
  .news-list--hot-news-1 .news .news__header,
  .news-list--hot-news-2 .news .news__header,
  .news-list--hot-news-3 .news:first-of-type .news__header,
  .news-list--hot-news-5 .news:first-of-type .news__header {
    padding: 0 20px 20px;
  }

  .news-list--hot-news-1 .news .news__info,
  .news-list--hot-news-2 .news .news__info,
  .news-list--hot-news-3 .news:first-of-type .news__info,
  .news-list--hot-news-5 .news:first-of-type .news__info {
    font-size: 1.25rem;
  }

  .news-list--hot-news-1 .news .news__title,
  .news-list--hot-news-2 .news .news__title,
  .news-list--hot-news-3 .news:first-of-type .news__title,
  .news-list--hot-news-5 .news:first-of-type .news__title {
    font-size: 3rem;
    line-height: 1.2;
  }

  .news-list--hot-news-1 .news:not(.news--over) .news__header {
    padding: 0;
  }

  .news-list--hot-news-1 .news:not(.news--over) .news__preview {
    font-size: 1.4rem;
    line-height: 1.21429;
  }
}

@media (max-width: 639px) {
  .news-list--hot-news .news {
    width: 100%;
  }

  .news-list--hot-news .news__header {
    padding: 15px;
  }

  .news-list--hot-news .news__info {
    display: none;
  }

  .news-list--hot-news .news__title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .news-list--hot-news-1 .news--over .news__title {
    width: 60%;
  }

  .news-list--hot-news-1 .news:not(.news--over) .news__title {
    font-size: 2.4rem;
    line-height: 1.16667;
  }

  .news-list--hot-news-1 .news:not(.news--over) .news__preview {
    font-size: 1.4rem;
    line-height: 1.21429;
  }
}

.news-list--default {
  margin-bottom: -10px;
}

main.section .news-list--default:first-child {
  margin-top: 30px;
}

.news-list--default .news {
  width: 50%;
  margin-bottom: 35px;
}

.news-list--default .news--vertical {
  margin-bottom: 40px;
}

@media (min-width: 1480px) {
  .news-list--default .news {
    width: 33.333%;
  }

  .news-list--default .news:nth-of-type(5n + 1),
  .news-list--default .news:nth-of-type(5n + 2) {
    width: 50%;
  }

  .news-list--default .news:nth-of-type(5n + 1) .news__title,
  .news-list--default .news:nth-of-type(5n + 2) .news__title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .news-list--default .news:nth-of-type(5n + 1).news--vertical .news__figure,
  .news-list--default .news:nth-of-type(5n + 2).news--vertical .news__figure {
    width: 46.5%;
  }

  .news-list--default .news:nth-of-type(5n + 1).news--vertical .news__header,
  .news-list--default .news:nth-of-type(5n + 2).news--vertical .news__header {
    width: 53.5%;
    padding: 0 20px;
  }
}

@media (max-width: 1479px) {
  .news-list--default .news:nth-of-type(5n + 1) {
    width: 100%;
  }

  .news-list--default .news:nth-of-type(5n + 1).news--vertical .news__figure {
    width: 43%;
  }

  .news-list--default .news:nth-of-type(5n + 1).news--vertical .news__header {
    width: 57%;
    padding: 0 30px;
  }
}

@media (max-width: 639px) {
  .news-list--default .news:nth-of-type(5n + 1).news--vertical .news__figure {
    width: 50%;
  }

  .news-list--default .news:nth-of-type(5n + 1).news--vertical .news__header {
    width: 50%;
    padding: 0 15px;
  }
}

@media (max-width: 1479px) and (min-width: 768px) {
  .news-list--default .news__title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .news-list--default .news:nth-of-type(5n + 1) .news__title {
    font-size: 3rem;
  }
}

@media (min-width: 640px) and (max-width: 767px) {
  .news-list--default .news__title {
    font-size: 1.6rem;
    line-height: 1.1875;
  }

  .news-list--default .news:nth-of-type(5n + 1) .news__title {
    font-size: 2.4rem;
  }
}

@media (max-width: 639px) {
  .news-list--default .news__info {
    display: none;
  }

  .news-list--default .news__title {
    padding: 15px 15px 0;
    font-size: 1.4rem;
    line-height: 1.21429;
  }

  .news-list--default .news.news--vertical .news__title {
    padding: 0;
  }

  .news-list--default .news:nth-of-type(5n + 1) .news__title {
    font-size: 1.8rem;
  }
}

@media (min-width: 640px) and (max-width: 767px),
  (min-width: 768px) and (max-width: 1023px) {
  .news-list--programs {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }
}

.news-list--programs .news {
  margin-bottom: 30px;
}

.news-list--programs .news--video .news__figure:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  width: 22%;
  max-width: 134px;
  padding-top: MIN(134px, 22%);
  background: url(../index/play.29b85.svg) no-repeat 50%;
  background-size: contain;
}

.news-list--programs .news__header {
  margin-top: 12px;
}

.news-list--programs .news__title {
  font-size: 2rem;
}

.news-list--programs .news__info {
  float: none;
  font-size: 1.4rem;
}

.news-list--programs .news__info:last-child {
  margin-bottom: 0;
}

.news-list--programs .news__avatar {
  float: left;
  width: 44px;
  height: 44px;
  border-radius: 44px;
  overflow: hidden;
  background: #eaeaea;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;", sans-serif;
}

.news-list--programs .news__avatar ~ .news__category,
.news-list--programs .news__avatar ~ .news__time {
  display: block;
  float: none;
  margin-left: 54px;
}

.news-list--programs .news__avatar ~ .news__category:after,
.news-list--programs .news__avatar ~ .news__time:after {
  display: none;
}

.news-list--programs .news__avatar ~ .news__time {
  margin-right: 0;
  padding-right: 0;
}

.news-list--programs .news .news__time {
  float: none;
  font-size: 1.3rem;
}

@media (min-width: 640px) and (max-width: 767px),
  (min-width: 768px) and (max-width: 1023px) {
  .news-list--programs .news {
    width: 50%;
    padding-left: 20px;
  }

  .news-list--programs .news__title {
    font-size: 1.6rem;
  }
}

@media (max-width: 639px) {
  .news-list--programs .news {
    margin-bottom: 40px;
  }

  .news-list--programs .news__header {
    padding: 0 15px;
  }

  .news-list--programs .news__title {
    font-size: 1.8rem;
  }

  .news-list--programs.news-list--3-in-row .news__title,
  .news-list--programs.news-list--full-page .news__title {
    padding: 0;
  }

  .news-list--programs.news-list--3-in-row .news__title + .news__info,
  .news-list--programs.news-list--full-page .news__title + .news__info {
    display: block;
    font-size: 1.3rem;
  }

  .news-list--programs.news-list--3-in-row
    .news__title
    + .news__info
    .news__avatar,
  .news-list--programs.news-list--3-in-row
    .news__title
    + .news__info
    .news__category
    + .news__time,
  .news-list--programs.news-list--full-page
    .news__title
    + .news__info
    .news__avatar,
  .news-list--programs.news-list--full-page
    .news__title
    + .news__info
    .news__category
    + .news__time {
    display: none;
  }

  .news-list--programs.news-list--3-in-row
    .news__title
    + .news__info
    .news__category,
  .news-list--programs.news-list--full-page
    .news__title
    + .news__info
    .news__category {
    margin-left: 0;
  }
}

.news-list--full-page {
  margin-top: -10px;
  margin-bottom: -10px;
}

.news-list--full-page .news {
  width: 50%;
  margin-bottom: 35px;
}

.news-list--full-page .news--vertical {
  margin-bottom: 40px;
}

.news-list--full-page .news__title {
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .news-list--full-page .news {
    width: 33.333%;
  }

  .news-list--full-page .news:nth-of-type(5n + 1),
  .news-list--full-page .news:nth-of-type(5n + 2) {
    width: 50%;
  }

  .news-list--full-page .news:nth-of-type(5n + 1).news--vertical .news__figure,
  .news-list--full-page .news:nth-of-type(5n + 2).news--vertical .news__figure {
    width: 46.5%;
  }

  .news-list--full-page .news:nth-of-type(5n + 1).news--vertical .news__header,
  .news-list--full-page .news:nth-of-type(5n + 2).news--vertical .news__header {
    width: 53.5%;
    padding: 0 20px;
  }
}

@media (max-width: 1023px) {
  .news-list--full-page .news:nth-of-type(5n + 1) {
    width: 100%;
  }

  .news-list--full-page .news:nth-of-type(5n + 1).news--vertical .news__figure {
    width: 43%;
  }

  .news-list--full-page .news:nth-of-type(5n + 1).news--vertical .news__header {
    width: 57%;
    padding: 0 30px;
  }
}

@media (max-width: 639px) {
  .news-list--full-page .news:nth-of-type(5n + 1).news--vertical .news__figure {
    width: 50%;
  }

  .news-list--full-page .news:nth-of-type(5n + 1).news--vertical .news__header {
    width: 50%;
    padding: 0 15px;
  }
}

@media (min-width: 1154px) {
  .news-list--full-page .news__title {
    font-size: 2rem;
  }

  .news-list--full-page .news:nth-of-type(5n + 1) .news__title,
  .news-list--full-page .news:nth-of-type(5n + 2) .news__title {
    font-size: 2.4rem;
  }
}

@media (min-width: 1024px) and (max-width: 1153px) {
  .news-list--full-page .news__title {
    font-size: 1.6rem;
  }

  .news-list--full-page .news:nth-of-type(5n + 1) .news__title,
  .news-list--full-page .news:nth-of-type(5n + 2) .news__title {
    font-size: 2.4rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .news-list--full-page .news__title {
    font-size: 2rem;
  }

  .news-list--full-page .news:nth-of-type(5n + 1) .news__title {
    font-size: 3rem;
  }
}

@media (min-width: 640px) and (max-width: 767px) {
  .news-list--full-page .news__title {
    font-size: 1.6rem;
  }

  .news-list--full-page .news:nth-of-type(5n + 1) .news__title {
    font-size: 2.4rem;
  }
}

@media (max-width: 639px) {
  .news-list--full-page .news__info {
    display: none;
  }

  .news-list--full-page .news__title {
    padding: 15px 15px 0;
    font-size: 1.4rem;
  }

  .news-list--full-page .news.news--vertical .news__title {
    padding: 0;
  }

  .news-list--full-page .news:nth-of-type(5n + 1) .news__title {
    font-size: 1.8rem;
  }
}

.news-list--gallery-related {
  margin-bottom: -10px;
}

.news-list--gallery-related .news {
  width: 50%;
}

.news-list--gallery-related .news__title {
  font-size: 2rem;
}

@media (min-width: 640px) and (max-width: 767px),
  (min-width: 1024px) and (max-width: 1153px) {
  .news-list--gallery-related .news__title {
    font-size: 1.6rem;
  }
}

@media (max-width: 639px) {
  .news-list--gallery-related .news__title {
    font-size: 1.4rem;
  }
}

@media (max-width: 639px) {
  .news-list--gallery-related .news {
    width: 100%;
  }

  .news-list--gallery-related .news__figure {
    margin: 0;
  }

  .news-list--gallery-related .news__info {
    display: none;
  }
}

.news-list--3-in-row {
  margin-bottom: -10px;
}

.news-list--3-in-row .news {
  width: 50%;
  margin-bottom: 35px;
}

.news-list--3-in-row .news--vertical {
  margin-bottom: 40px;
}

.news-list--3-in-row .news__title {
  font-size: 2rem;
}

@media (min-width: 640px) and (max-width: 767px),
  (min-width: 1024px) and (max-width: 1153px) {
  .news-list--3-in-row .news__title {
    font-size: 1.6rem;
  }
}

@media (max-width: 639px) {
  .news-list--3-in-row .news__title {
    font-size: 1.4rem;
  }
}

@media (min-width: 1024px) {
  .news-list--3-in-row .news {
    width: 33.333%;
  }
}

@media (max-width: 639px) {
  .news-list--3-in-row .news__info {
    display: none;
  }

  .news-list--3-in-row .news__title {
    padding: 15px 15px 0;
  }

  .news-list--3-in-row .news.news--vertical .news__title {
    padding: 0;
  }
}

.news-list--report .news {
  margin-bottom: 30px;
}

@media (max-width: 1023px) {
  .news-list--report .news {
    width: 50%;
  }

  .news-list--report .news:first-of-type {
    width: 100%;
  }
}

@media (max-width: 639px) {
  .news-list--report .news {
    margin-bottom: 40px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .news-list--report .news:first-of-type .news__title {
    font-size: 3rem;
  }
}

@media (min-width: 640px) and (max-width: 767px) {
  .news-list--report .news:first-of-type .news__title {
    font-size: 2.4rem;
  }
}

@media (max-width: 639px) {
  .news-list--report .news:first-of-type .news__title {
    font-size: 1.8rem;
  }
}

.news-list--report .news-list__button .button {
  margin: 5px 0 40px;
}

.news-list--recent-video {
  margin-bottom: -10px;
}

.news-list--recent-video .news-list__button .button {
  margin: 20px 0;
}

.news-list--recent-video .news {
  width: 50%;
  margin-bottom: 35px;
}

.news-list--recent-video .news:first-child {
  width: 100%;
}

.news-list--recent-video .news:first-child .news__figure:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  width: 22%;
  max-width: 134px;
  padding-top: MIN(134px, 22%);
  background: url(../index/play.29b85.svg) no-repeat 50%;
  background-size: contain;
}

.news-list--recent-video .news:first-child .news__title {
  font-size: 2.4rem;
  line-height: 1.2;
}

@media (min-width: 1480px) {
  .news-list--recent-video {
    margin-bottom: 0;
  }

  .news-list--recent-video .news {
    width: 33.333%;
    margin-bottom: 20px;
  }

  .news-list--recent-video .news:first-child {
    width: 66.666%;
  }

  .news-list--recent-video .news:first-child .news__link {
    display: block;
    position: relative;
    overflow: hidden;
  }

  .news-list--recent-video .news:first-child .news__header {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    max-height: 100%;
    padding: 0 15px 15px;
    color: #fff;
  }

  .news-list--recent-video .news:first-child .news__header:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 140%;
    background: linear-gradient(
      180deg,
      transparent,
      rgba(0, 0, 0, 0.42) 32%,
      rgba(0, 0, 0, 0.8)
    );
  }

  .news-list--recent-video .news:first-child .news__info {
    font-size: 1.1rem;
    padding-left: 4px;
    padding-right: 4px;
    background: #005e8c;
    color: #fff;
  }

  .news-list--recent-video .news:first-child .news__category {
    color: #fff;
  }

  @supports ((-webkit-filter: invert(1)) or (filter: invert(1))) {
    .news-list--recent-video .news:first-child .news__category,
    .news-list--recent-video .news:first-child .news__time,
    .news-list--recent-video .news:first-child .news__title {
      color: #000;
      -webkit-filter: invert(1);
      filter: invert(1);
    }
  }

  .news-list--recent-video .news:first-child .news__header {
    padding: 0 21% 20px 20px;
  }

  .news-list--recent-video .news:first-child .news__info {
    font-size: 1.3rem;
    margin-bottom: 2px;
  }
}

@media (max-width: 1479px) {
  .news-list--recent-video .news:first-child .news__figure:after {
    max-width: none;
  }

  .news-list--recent-video .news:nth-of-type(2n + 2):last-of-type {
    display: none;
  }
}

@media (min-width: 1154px) and (max-width: 1479px) {
  .news-list--recent-video .news__title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .news-list--recent-video .news:first-child .news__title {
    font-size: 3rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .news-list--recent-video .news__title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .news-list--recent-video .news:first-child .news__title {
    font-size: 3rem;
  }
}

@media (max-width: 639px) {
  .news-list--recent-video {
    margin-bottom: -20px;
  }

  .news-list--recent-video .news__header {
    padding: 15px 15px 0;
  }

  .news-list--recent-video .news__info {
    display: none;
  }

  .news-list--recent-video .news__title {
    font-size: 1.4rem;
    line-height: 1.2;
  }

  .news-list--recent-video .news:first-child .news__title {
    font-size: 1.8rem;
  }
}

.news-list--feuilleton {
  margin-top: 40px;
  margin-bottom: -10px;
}

@media (max-width: 1479px) and (min-width: 1024px) {
  .news-list--feuilleton {
    margin-top: 30px;
    margin-bottom: -20px;
  }
}

@media (max-width: 1479px) {
  .news-list--feuilleton .news__title {
    font-size: 1.8rem;
    line-height: 1.222;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .news-list--feuilleton .news__header {
    padding-bottom: 25px;
  }

  .news-list--feuilleton .news__info {
    font-size: 1.3rem;
  }

  .news-list--feuilleton .news__title {
    font-size: 2.4rem;
  }
}

.news-list--weather {
  margin-top: 40px;
  margin-bottom: -15px;
}

.news-list--weather .news__header:before {
  height: 250%;
}

@media (max-width: 1479px) {
  .news-list--weather .news__title {
    font-size: 1.8rem;
    line-height: 1.222;
  }
}

@media (max-width: 1023px) {
  .news-list--weather {
    margin-bottom: 0;
  }

  .news-list--weather .news__figure:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
    width: 22%;
    max-width: 134px;
    padding-top: MIN(134px, 22%);
    background: url(../index/play.29b85.svg) no-repeat 50%;
    background-size: contain;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .news-list--weather .news__title {
    font-size: 2.4rem;
  }
}

@media (max-width: 639px) {
  .news {
    padding-left: 10px;
  }

  .news-list {
    margin-left: -10px;
  }
}

.news__img,
.news__title {
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.6, 1);
}

.news-list.is--loading {
  cursor: wait;
}

.news-list.is--loading .news__header {
  display: inline;
  float: none;
  background: #eaeaea;
}

.news-list.is--loading .news__category,
.news-list.is--loading .news__img,
.news-list.is--loading .news__label,
.news-list.is--loading .news__time,
.news-list.is--loading .news__title {
  opacity: 0;
}

.news-list.is--loading .news__info,
.news-list.is--loading .news__title {
  display: inline;
  float: none;
}

.news-list.is--loading .news__info > *,
.news-list.is--loading .news__title > * {
  display: inline-block;
  float: none;
  height: 17px;
}

.news-list.is--loading .news__info {
  display: block;
  position: relative;
}

.news-list.is--loading .news__info:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: #eaeaea;
}

.news-list.is--loading + .news-list__button {
  display: none;
}

.no-js .news--target > .news__figure:after {
  content: " ";
  display: block;
  height: 40px;
  background: #fff;
}

.report {
  position: relative;
  display: inline-block;
  width: 33.333%;
  padding-left: 10px;
  margin-bottom: 12px;
  word-wrap: break-word;
  white-space: normal;
}

.report__link {
  display: block;
}

.report__figure,
.report__link {
  position: relative;
  overflow: hidden;
}

.report__figure {
  margin: 0;
  padding: 0;
  background: #eaeaea;
}

.report__figure:before {
  content: "";
  float: left;
  width: 1px;
  height: 0;
  margin-left: -1px;
  padding-top: 161.53846%;
}

.report__figure:after {
  content: "";
  display: table;
  clear: both;
}

.report__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;", sans-serif;
}

.report__header {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  max-height: 100%;
  padding: 15px 15px 35px;
  text-align: center;
  color: #fff;
}

.report__header:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  top: auto;
  bottom: 0;
  z-index: -1;
  min-height: 210px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(0, 0, 0, 0.42) 32%,
    rgba(0, 0, 0, 0.8)
  );
}

.report__label {
  display: inline-block;
  margin: 0 0 12px;
  padding: 0 10px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 3.2rem;
  color: #fff;
  text-transform: uppercase;
  background: #005e8c;
}

.report__title {
  clear: both;
  margin: 0;
  font-size: 2rem;
  line-height: 1.2;
}

.report__link:hover .report__title {
  text-decoration: underline;
}

@supports ((-webkit-filter: invert(1)) or (filter: invert(1))) {
  .report__title {
    color: #000;
    -webkit-filter: invert(1);
    filter: invert(1);
  }
}

.report-list {
  margin-bottom: 10px;
  overflow: hidden;
}

.report-list__wrap {
  margin-left: -10px;
  overflow: hidden;
  overflow-x: auto;
  white-space: nowrap;
  font-size: 0;
}

@media (min-width: 1480px) {
  .report {
    padding-left: 20px;
  }

  .report-list {
    margin-bottom: 0;
  }

  .report-list__wrap {
    margin-left: -20px;
  }
}

@media (min-width: 768px) and (max-width: 1023px),
  (min-width: 1154px) and (max-width: 1479px) {
  .report {
    width: 40.96045%;
  }
}

@media (min-width: 640px) and (max-width: 767px),
  (min-width: 1024px) and (max-width: 1153px) {
  .report {
    width: 44.82759%;
  }
}

@media (max-width: 639px) {
  .report {
    width: 63.88889%;
  }
}

.report-row__header {
  margin: 0 15px 32px;
  text-align: center;
}

.report-row__title {
  font-size: 3.6rem;
  line-height: 1.2;
}

@media (min-width: 1154px) and (max-width: 1479px), (min-width: 1480px) {
  .report-row__title {
    font-size: 4.8rem;
  }
}

@media (max-width: 639px) {
  .report-row__title {
    font-size: 3rem;
  }
}

.embed {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  position: relative;
  margin-bottom: -15px;
}

.embed__wrap {
  overflow: hidden;
}

.embed__wrap:after {
  content: "";
  display: table;
  clear: both;
}

.embed--ipla-player {
  background: #eaeaea;
  margin-bottom: 0;
}

.embed--ipla-player:before {
  content: "";
  float: left;
  width: 1px;
  height: 0;
  margin-left: -1px;
  padding-top: 56.25%;
}

.embed--ipla-player:after {
  content: "";
  display: table;
  clear: both;
}

.embed--ipla-player .embed__wrap:before {
  content: "";
  width: 30px;
  height: 30px;
  border: 4px solid transparent;
  border-top-color: #005e8c;
  border-radius: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -15px;
  -webkit-animation: rotate 0.5s linear infinite;
  animation: rotate 0.5s linear infinite;
}

.embed--ipla-player .embed__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed--weather .embed__wrap {
  margin-top: -20px;
}

@media (max-width: 1023px) and (min-width: 768px) {
  .embed--weather .embed__wrap {
    padding-left: 9%;
    padding-right: 9%;
  }
}

@media (max-width: 639px) {
  .embed--weather {
    padding: 0 15px;
  }
}

.tabs {
  overflow: hidden;
  position: relative;
}

@media (min-width: 1024px) {
  .tabs {
    max-width: 360px;
  }
}

@media (min-width: 1480px) {
  .tabs {
    max-width: 380px;
    margin-top: -10px;
  }
}

.section + .section .tabs {
  margin-top: -25px;
}

@media (max-width: 1479px) {
  .section + .section .tabs {
    margin-top: -20px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .section + .section .tabs {
    margin-top: 0;
  }
}

.tabs__state {
  position: absolute;
  bottom: 100%;
  right: 100%;
  margin: 20px;
}

.tabs__nav {
  position: relative;
  font-size: 0;
}

.tabs__nav:after,
.tabs__nav:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
}

.tabs__nav:before {
  width: 100%;
  height: 1px;
  background: #e5e5e5;
}

.tabs__nav:after {
  width: 50%;
  height: 3px;
  background: #f7d000;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.tabs__box {
  position: relative;
}

.tabs__scroll {
  outline: none !important;
}

.tabs .scroller__track {
  top: 20px;
}

.tabs__content {
  display: none;
  margin: 20px 0 0;
  text-align: center;
}

.tabs__name {
  display: inline-block;
  width: 50%;
  padding: 0 2%;
  font-size: 1.4rem;
  line-height: 5rem;
  text-align: center;
  color: #262626;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.tabs__state:first-of-type:checked ~ .tabs__nav .tabs__name:first-of-type,
.tabs__state:nth-of-type(2):checked ~ .tabs__nav .tabs__name:nth-of-type(2),
.tabs__state:nth-of-type(3):checked ~ .tabs__nav .tabs__name:nth-of-type(3) {
  font-weight: 700;
}

.tabs__state:first-of-type:checked ~ .tabs__nav:after {
  -webkit-transform: translate(0);
  transform: translate(0);
}

.tabs__state:nth-of-type(2):checked ~ .tabs__nav:after {
  -webkit-transform: translate(100%);
  transform: translate(100%);
}

.tabs__state:nth-of-type(3):checked ~ .tabs__nav:after {
  -webkit-transform: translate(200%);
  transform: translate(200%);
}

.tabs__state:first-of-type:checked ~ .tabs__box .tabs__content:first-of-type,
.tabs__state:nth-of-type(2):checked ~ .tabs__box .tabs__content:nth-of-type(2),
.tabs__state:nth-of-type(3):checked ~ .tabs__box .tabs__content:nth-of-type(3) {
  display: block;
}

.tabs__state.focus-visible:first-of-type:checked
  ~ .tabs__nav
  .tabs__name:first-of-type,
.tabs__state.focus-visible:nth-of-type(2):checked
  ~ .tabs__nav
  .tabs__name:nth-of-type(2),
.tabs__state.focus-visible:nth-of-type(3):checked
  ~ .tabs__nav
  .tabs__name:nth-of-type(3) {
  outline: 3px solid #f7d000;
  outline-offset: -3px;
}

.tabs__items {
  padding: 0 30px 0 24px;
  text-align: left;
}

.tabs__item {
  clear: both;
  margin: 1em 0;
  line-height: 1.21429;
  color: #ccc;
}

.tabs__item:first-of-type {
  list-style: none;
  margin-left: -24px;
}

.tabs__item:first-of-type .tabs__title {
  display: block;
  margin-left: 174px;
  font-size: 1.6rem;
  font-weight: 700;
}

.tabs__figure {
  float: left;
  width: 164px;
  margin: 0 10px 1em 0;
  position: relative;
  background: #eaeaea;
}

.tabs__figure:before {
  content: "";
  float: left;
  width: 1px;
  height: 0;
  margin-left: -1px;
  padding-top: 56.25%;
}

.tabs__figure:after {
  content: "";
  display: table;
  clear: both;
}

.tabs__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;", sans-serif;
}

.tabs__label {
  display: inline-block;
  vertical-align: middle;
  margin: -0.3rem 0.2rem 0 0;
}

.tabs__title {
  display: inline;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.13333;
  word-wrap: break-word;
}

.tabs__link {
  display: block;
  color: #262626;
}

.tabs__link:hover .tabs__title {
  text-decoration: underline;
}

.tabs__img,
.tabs__title {
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.6, 1);
}

.tabs__button {
  margin-top: 15px;
}

@media (min-width: 1480px) {
  .tabs__box:after {
    content: "";
    position: absolute;
    left: 0;
    right: 30px;
    z-index: 1;
    pointer-events: none;
    bottom: 0;
    height: 30px;
    background: linear-gradient(180deg, hsla(0, 0%, 100%, 0), #fff);
  }

  .tabs__scroll {
    max-height: 610px;
  }

  .tabs__content {
    margin: 20px 0 30px;
  }
}

@media (max-width: 1479px) {
  .tabs__item:nth-of-type(n + 7) {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .tabs__content {
    margin-left: 9%;
    margin-right: 9%;
  }
}

@media (max-width: 1023px) {
  .tabs--target {
    height: 0;
    margin-top: -30px;
    visibility: hidden;
  }
}

.tabs--target .tabs__scroll {
  height: auto !important;
  max-height: none;
}

.tabs--target .tabs__item:nth-of-type(n + 7) {
  display: list-item;
}

.tabs--target .tabs__box:after,
.tabs--target .tabs__button,
.tabs--target .tabs__item:nth-of-type(n + 10) {
  display: none;
}

.tabs--in-article {
  max-width: none;
  margin-bottom: -30px;
}

@media (max-width: 1153px) {
  .tabs--in-article {
    display: none;
  }
}

.tabs--in-article .tabs__scroll {
  height: auto !important;
}

.tabs--in-article .tabs__header-title {
  margin: 35px 0 10px;
  font-size: 1.8rem;
}

.tabs--in-article .tabs__name,
.tabs--in-article .tabs__nav:after {
  width: 120px;
}

.tabs--in-article .tabs__content .news__title {
  font-size: 1.6rem;
}

@media (min-width: 1480px) {
  .tabs.is--loading .tabs__scroll {
    height: 590px;
  }
}

.tabs.is--loading .tabs__content {
  display: block;
}

.tabs.is--loading .tabs__items {
  cursor: wait;
}

.tabs.is--loading .tabs__item:first-of-type .tabs__title {
  display: inline;
  margin-left: 0;
}

.tabs.is--loading .tabs__link {
  display: inline;
  background: #eaeaea;
}

.tabs.is--loading .tabs__img,
.tabs.is--loading .tabs__title {
  opacity: 0;
}

.tabs.is--loading .tabs__title div {
  display: inline-block;
  height: 17px;
}

.tabs.is--loading .scroller__track,
.tabs.is--loading .tabs__box:after,
.tabs.is--loading .tabs__button {
  display: none;
}

.sent {
  clear: both;
  margin: 0 0 20px;
}

.sent:after {
  content: "";
  display: table;
  clear: both;
}

.sent__link {
  display: block;
}

.sent__link:after {
  content: "";
  display: table;
  clear: both;
}

.sent__figure {
  float: left;
  position: relative;
  width: 46.5%;
  margin: 0;
  padding: 0;
  background: #eaeaea;
  overflow: hidden;
}

.sent__figure:before {
  content: "";
  float: left;
  width: 1px;
  height: 0;
  margin-left: -1px;
  padding-top: 56.25%;
}

.sent__figure:after {
  content: "";
  display: table;
  clear: both;
}

.sent__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;", sans-serif;
}

.sent__header {
  float: left;
  width: 53.5%;
  padding-left: 15px;
  color: #fff;
}

.sent__title {
  margin: 2px 0 4px;
  font-size: 1.4rem;
  line-height: 1.21429;
}

.sent__link:hover .sent__title {
  text-decoration: underline;
}

.sent__label {
  font-size: 1.3rem;
  color: #ccc;
  opacity: 0.6;
}

.sent-list--default .sent {
  margin: 0 0 40px;
}

.sent-list--default .sent__link {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.sent-list--default .sent__figure {
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.sent-list--default .sent__header {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-left: 20px;
  color: #262626;
}

@media (min-width: 768px) and (max-width: 1023px), (min-width: 1154px) {
  .sent-list--default .sent__header {
    width: 51.21951%;
    min-width: 420px;
  }
}

@media (min-width: 640px) and (max-width: 767px),
  (min-width: 1024px) and (max-width: 1153px) {
  .sent-list--default .sent__header {
    width: 50%;
    min-width: 290px;
  }
}

@media (max-width: 639px) {
  .sent-list--default .sent__link {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .sent-list--default .sent__figure,
  .sent-list--default .sent__header {
    width: 100%;
  }

  .sent-list--default .sent__header {
    padding: 6px 15px 0;
  }
}

.sent-list--default .sent__title {
  margin: 6px 0 14px;
  font-size: 3rem;
}

@media (min-width: 640px) and (max-width: 767px),
  (min-width: 1024px) and (max-width: 1153px) {
  .sent-list--default .sent__title {
    font-size: 2rem;
  }
}

@media (max-width: 639px) {
  .sent-list--default .sent__title {
    font-size: 1.8rem;
  }
}

.sent-list--default .sent__label {
  font-size: 1.4rem;
  color: #262626;
  opacity: 1;
}

@media (max-width: 639px) {
  .sent-list--default .sent__label {
    font-size: 1.3rem;
  }
}

.sent-box {
  margin-bottom: 10px;
  padding: 20px;
  background: url(../index/bg-sent.a9853.jpg) no-repeat 50% #321720;
  background-size: cover;
}

@media (max-width: 1479px) {
  .sent-box {
    padding: 20px 15px;
    margin-bottom: 5px;
  }
}

@media (max-width: 639px) {
  .sent-box {
    margin-top: 40px;
  }
}

.sent-box__header {
  text-align: center;
}

.sent-box--with-header {
  padding-left: 30px;
  padding-right: 30px;
}

.sent-box--with-header:after {
  content: "";
  display: table;
  clear: both;
}

section.section .sent-box--with-header {
  margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 1023px) {
  aside.section .sent-box--with-header {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.sent-box--with-header .sent-box__header {
  margin-top: 64px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .sent-box--with-header .sent-box__box,
  .sent-box--with-header .sent-box__header {
    float: left;
    width: 50%;
  }

  .sent-box--with-header .sent-box__header {
    margin: 77px 0 0;
  }

  .sent-box--with-header .sent-box__box {
    margin: 50px 0 0;
  }
}

@media (min-width: 768px) and (max-width: 1023px), (min-width: 1154px) {
  section.section .sent-box--with-header .sent-box__box,
  section.section .sent-box--with-header .sent-box__header {
    float: left;
    width: 50%;
  }

  section.section .sent-box--with-header .sent-box__header {
    margin: 77px 0 0;
  }

  section.section .sent-box--with-header .sent-box__box {
    margin: 50px 0 0;
  }
}

@media (max-width: 639px) {
  section.section .sent-box--with-header {
    margin-left: -15px;
    margin-right: -15px;
  }
}

.sent-box__title {
  margin: 7px 0 13px;
  font-size: 2.4rem;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
}

@supports ((-webkit-filter: invert(1)) or (filter: invert(1))) {
  .sent-box .sent__title,
  .sent-box__title {
    color: #000;
    -webkit-filter: invert(1);
    filter: invert(1);
  }
}

.sent-box__button {
  display: inline-block;
  max-width: 100%;
  padding: 0 20px;
  font-size: 1.4rem;
  line-height: 4.4rem;
  white-space: nowrap;
  color: #fff;
  background: #f0001a;
}

.sent-box__button:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  margin-left: 10px;
  background: url(../index/more.cf689.svg) no-repeat 50%;
  background-size: contain;
}

.sent-box__button:hover {
  text-decoration: underline;
}

.sent-box__items {
  margin: 30px 0 15px;
}

.sent-box__footer {
  text-align: right;
  margin: -7px 0 7px;
}

.sent-box__link {
  font-size: 1.3rem;
  color: #fff;
}

.sent-box__link:hover {
  text-decoration: underline;
}

.sent-box__box {
  margin: 10px 0 0;
  text-align: center;
}

.sent-box__info-list {
  display: inline-block;
  max-width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
  color: #fff;
}

.sent-box__info {
  position: relative;
  margin: 20px 0;
  line-height: 1;
  white-space: nowrap;
}

.upload__footer .sent-box__info {
  width: 33.33333%;
  min-width: 300px;
}

.sent-box__info-link {
  display: block;
  color: inherit;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sent-box__info-link:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 36px;
  height: 36px;
  margin-right: 15px;
  background: none no-repeat 50%;
  background-size: contain;
}

.sent-box__info-link--phone:before {
  background-image: url(../index/sent-phone.3cef4.svg);
}

.sent-box__info-link--mail:before {
  background-image: url(../index/sent-mail.6da6a.svg);
}

.sent-box__info-link--facebook:before {
  background-image: url(../index/sent-facebook.74d1e.svg);
}

.sent-box--promo {
  background-image: url(../index/bg-sent-promo.870fd.jpg);
  background-color: #1e0f14;
}

.sent-box--promo .sent-box__title {
  line-height: 1.2;
}

.sent-box--promo .sent-box__items {
  margin-top: 22px;
}

.sent-box--promo .sent-box__label,
.sent-box--promo .sent__label {
  opacity: 1;
}

@media (max-width: 1023px) and (min-width: 768px) {
  .sent-box__items {
    padding-left: 9.5%;
    padding-right: 9.5%;
  }

  .sent-box__header {
    margin: 0 0 40px;
  }

  .sent-box__title {
    margin-top: 17px;
  }
}

@media (max-width: 1023px) and (min-width: 640px) {
  .sent__title {
    font-size: 1.6rem;
  }
}

.on-air {
  margin: 0 0 -5px;
  padding: 0;
  list-style: none;
}

.on-air__item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  margin-bottom: 20px;
}

.on-air__info {
  -webkit-flex: 1 0 100px;
  -ms-flex: 1 0 100px;
  flex: 1 0 100px;
  border-right: 1px solid #e5e5e5;
}

.on-air__time {
  display: block;
  margin: 5px 0 0;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.on-air__live {
  float: left;
  clear: both;
  margin: 7px 0 3px;
}

.on-air__programs {
  float: left;
  clear: both;
  margin-top: 7px;
}

.on-air__program {
  display: block;
  width: 40px;
  margin-top: 10px;
}

.on-air__cast {
  -webkit-flex: 0 1 100%;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  padding: 0 0 0 20px;
  overflow: hidden;
  word-wrap: break-word;
}

.on-air__figure {
  position: relative;
  margin: 0 0 10px;
  padding: 0;
  background: #eaeaea;
  overflow: hidden;
}

.on-air__figure:before {
  content: "";
  float: left;
  width: 1px;
  height: 0;
  margin-left: -1px;
  padding-top: 56.25%;
}

.on-air__figure:after {
  content: "";
  display: table;
  clear: both;
}

.on-air__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;", sans-serif;
}

.on-air__link {
  display: block;
  outline-offset: -3px;
}

.on-air__title {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.1875;
  color: #262626;
}

.on-air__link:hover .on-air__title {
  text-decoration: underline;
}

.on-air__description {
  margin-bottom: -1em;
  font-size: 1.3rem;
  line-height: 1.38462;
  color: #666;
}

@media (max-width: 1479px) {
  .on-air {
    margin-bottom: -15px;
  }

  .on-air__info {
    -webkit-flex: 1 0 90px;
    -ms-flex: 1 0 90px;
    flex: 1 0 90px;
  }
}

@media (max-width: 1023px) {
  .on-air {
    margin-bottom: 35px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .on-air {
    padding: 0 9%;
  }
}

@media (max-width: 639px) {
  .on-air {
    padding: 0 15px;
    margin-bottom: 25px;
  }
}

.app-ad {
  position: relative;
  margin: 40px 0 10px;
  padding: 30px;
  background: url(../index/bg.a7b9a.png) no-repeat 100% #f7d000;
  background-size: cover;
}

.app-ad:after {
  content: "";
  display: block;
  margin: 10px -30px -30px;
  padding-top: 100%;
  background: url(../index/phone.43e20.png) no-repeat;
  background-position: 19% 0;
  background-size: 210%;
}

@media (min-width: 1024px) and (max-width: 1153px),
  (min-width: 1154px) and (max-width: 1479px) {
  .app-ad:after {
    padding-top: 106.25%;
    background-position: 20% 0;
    background-size: 220%;
  }
}

.app-ad__title {
  margin: 0;
  font-size: 2.4rem;
  line-height: 1.25;
}

.app-ad__preview {
  font-size: 1.6rem;
  line-height: 1.5;
}

.app-ad__buttons {
  position: relative;
  z-index: 1;
  max-width: 350px;
  margin: 10px 0 0 -20px;
}

.app-ad__buttons:after {
  content: "";
  display: table;
  clear: both;
}

.app-ad__button {
  float: left;
  width: 33.33333%;
  padding-left: 20px;
}

.app-ad__button--android .app-ad__link {
  background-image: url(../index/btn-android.36f36.png);
}

.app-ad__button--ios .app-ad__link {
  background-image: url(../index/btn-ios.0690d.png);
}

.app-ad__button--huawei .app-ad__link {
  background-image: url(../index/btn-huawei-white-no-border.6ffe0.png);
}

.app-ad__link {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  background: none no-repeat 50% #fff;
  background-size: contain;
  border-radius: 4px;
}

.app-ad__link:before {
  content: "";
  float: left;
  width: 1px;
  height: 0;
  margin-left: -1px;
  padding-top: 30.76923%;
}

.app-ad__link:after {
  content: "";
  display: table;
  clear: both;
}

.app-ad__link.focus-visible {
  outline-color: #000;
}

@media (max-width: 1023px) and (min-width: 640px) {
  .app-ad {
    padding: 40px;
  }

  .app-ad:after {
    position: absolute;
    top: 0;
    right: 0;
    width: 46.26752%;
    max-width: 350px;
    height: 100%;
    margin: 0;
    padding: 0;
    background-position: 2% 10%;
    background-size: 295%;
  }

  .app-ad__buttons,
  .app-ad__preview,
  .app-ad__title {
    width: 55.73248%;
  }

  .app-ad__preview,
  .app-ad__title {
    padding-left: 20px;
    margin-left: -20px;
  }

  .app-ad__buttons {
    margin: 5px 0 5px -20px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .app-ad__title {
    font-size: 3rem;
  }

  .app-ad__preview {
    font-size: 1.8rem;
  }
}

@media (min-width: 640px) and (max-width: 767px) {
  .app-ad:after {
    background-position: 2% 1%;
    background-size: 250%;
  }

  .app-ad__title {
    font-size: 2rem;
  }

  .app-ad__preview {
    font-size: 1.3rem;
  }

  .app-ad__buttons {
    width: 320px;
    margin-top: 25px;
  }
}

@media (max-width: 639px) {
  .app-ad {
    padding-left: 15px;
    padding-right: 15px;
  }

  .app-ad:after {
    padding-top: 98%;
    margin-left: -15px;
    margin-right: -15px;
    background-position: 18.4% 0;
    background-size: 224%;
  }

  .app-ad__buttons {
    margin-top: 25px;
  }
}

.app-ad--target {
  margin: 40px 0;
  padding: 0;
  background: 0 0;
  border-top: 5px solid #f7d000;
}

@media (min-width: 1154px) {
  .app-ad--target {
    display: none;
  }
}

.app-ad--target:after {
  display: none;
}

.app-ad--target .app-ad__title {
  margin: 16px 0 -17px;
  padding: 0;
  width: auto;
  font-size: 2rem;
}

.app-ad--target .app-ad__preview {
  font-size: 1.8rem;
  line-height: 1.2;
}

.app-ad--target .app-ad__link {
  border: 1px solid #e5e5e5;
  box-shadow: inset 0 0 0 1px #f0f0f0;
}

.app-ad--target .app-ad__link.focus-visible {
  outline-color: #f7d000;
}

@media (max-width: 767px), (min-width: 1024px) and (max-width: 1153px) {
  .app-ad--target .app-ad__title {
    font-size: 1.8rem;
    margin-bottom: -14px;
  }

  .app-ad--target .app-ad__preview {
    font-size: 1.6rem;
  }
}

.app-ad--landing {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 620px;
  margin: 0;
  padding: 0;
  background-image: url(../index/bg-landing.d4d1b.png);
  overflow: hidden;
}

.app-ad--landing:after {
  position: absolute;
  left: 50%;
  top: auto;
  right: auto;
  bottom: auto;
  width: 694px;
  height: 456px;
  max-width: none;
  margin: 0 0 0 40px;
  padding: 0;
  background: url(../index/phone-landing.6395a.png) no-repeat 50%;
  background-size: contain;
  border-bottom: 80px solid transparent;
  box-sizing: content-box;
}

.app-ad--landing .app-ad__inside {
  position: relative;
  max-width: 1154px;
  height: 100%;
  padding: 0 30px;
  margin: auto auto 0;
}

.app-ad--landing .app-ad__inside:after {
  content: "";
  display: table;
  clear: both;
}

@media (min-width: 1334px) {
  .app-ad--landing .app-ad__inside {
    margin-left: 90px;
    margin-right: 90px;
    max-width: none;
  }
}

@media (min-width: 1480px) {
  .app-ad--landing .app-ad__inside {
    margin-left: auto;
    margin-right: auto;
    max-width: 1300px;
  }
}

.app-ad--landing .app-ad__title {
  padding: 0;
  margin: 110px 0 22px;
  font-size: 3.6rem;
  line-height: 1.2;
}

.app-ad--landing .app-ad__preview {
  padding: 0;
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.5;
}

.app-ad--landing .app-ad__preview,
.app-ad--landing .app-ad__title {
  max-width: 50%;
}

.app-ad--landing .app-ad__buttons {
  max-width: 615px;
  margin: 30px 0 0 -25px;
}

.app-ad--landing .app-ad__button {
  padding-left: 25px;
}

.app-ad--landing .app-ad__footer {
  margin: 105px 0 50px;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
}

@media (min-width: 1480px) {
  .app-ad--landing:after {
    margin: 0 0 0 30px;
  }

  .app-ad--landing .app-ad__footer,
  .app-ad--landing .app-ad__preview,
  .app-ad--landing .app-ad__title {
    padding-left: 75px;
    padding-right: 75px;
  }

  .app-ad--landing .app-ad__buttons {
    margin-left: 50px;
  }

  .app-ad--landing .app-ad__preview,
  .app-ad--landing .app-ad__title {
    max-width: 55%;
  }
}

@media (min-width: 1024px) and (max-width: 1153px) {
  .app-ad--landing:after {
    margin: 0 0 0 50px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .app-ad--landing {
    min-height: auto;
  }

  .app-ad--landing:after {
    width: 562px;
    height: 370px;
  }

  .app-ad--landing .app-ad__title {
    margin-top: 120px;
    font-size: 2.8rem;
  }

  .app-ad--landing .app-ad__preview {
    font-size: 1.6rem;
  }

  .app-ad--landing .app-ad__buttons {
    max-width: 100%;
  }

  .app-ad--landing .app-ad__button {
    margin-bottom: 20px;
    float: none;
    width: 205px;
  }

  .app-ad--landing .app-ad__footer {
    margin-top: 90px;
  }
}

@media (max-width: 639px), (min-width: 640px) and (max-width: 767px) {
  .app-ad--landing {
    min-height: auto;
  }

  .app-ad--landing:after {
    width: 552px;
    height: 362px;
  }

  .app-ad--landing .app-ad__title {
    margin-top: 75px;
    font-size: 2.35rem;
  }

  .app-ad--landing .app-ad__preview {
    font-size: 1.4rem;
  }

  .app-ad--landing .app-ad__buttons {
    max-width: 100%;
    margin-left: -14px;
  }

  .app-ad--landing .app-ad__button {
    padding-left: 15px;
    margin-bottom: 20px;
    float: none;
    width: 195px;
  }

  .app-ad--landing .app-ad__footer {
    margin-top: 75px;
  }
}

@media (max-width: 639px) {
  .app-ad--landing:after {
    display: none;
  }

  .app-ad--landing .app-ad__inside {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
  }

  .app-ad--landing .app-ad__inside:after {
    content: "";
    display: block;
    height: 362px;
    margin: 40px -30px 0;
    background: url(../index/phone-landing.6395a.png) no-repeat
      52.75% 0;
    background-size: auto 100%;
  }

  .app-ad--landing .app-ad__title {
    margin-top: 50px;
  }

  .app-ad--landing .app-ad__preview,
  .app-ad--landing .app-ad__title {
    max-width: none;
  }

  .app-ad--landing .app-ad__buttons {
    max-width: 615px;
    margin-left: -20px;
  }

  .app-ad--landing .app-ad__button {
    float: none;
    margin: 0 auto 20px;
    width: 195px;
  }

  .app-ad--landing .app-ad__footer {
    margin-top: 35px;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
}

.urgent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 34px;
  overflow: hidden;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  background: #f0001a;
  transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.6, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.6, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.6, 1),
    -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.6, 1);
  -webkit-transform: translate3d(0, 130px, 0);
  transform: translate3d(0, 130px, 0);
}

@media (max-width: 1153px) {
  .urgent {
    -webkit-transform: translate3d(0, 85px, 0);
    transform: translate3d(0, 85px, 0);
  }

  .urgent .inside {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .urgent {
    -webkit-transform: translate3d(0, 68px, 0);
    transform: translate3d(0, 68px, 0);
  }
}

@media (max-width: 639px) {
  .header:not(.is--fixed):not(.is--sticky) .urgent {
    -webkit-transform: translate3d(0, 118px, 0);
    transform: translate3d(0, 118px, 0);
  }
}

.search-form__state:checked ~ .header .urgent {
  transition: -webkit-transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1),
    -webkit-transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: translate3d(0, 188px, 0);
  transform: translate3d(0, 188px, 0);
}

@media (max-width: 1153px) {
  .search-form__state:checked ~ .header .urgent {
    -webkit-transform: translate3d(0, 143px, 0);
    transform: translate3d(0, 143px, 0);
  }
}

@media (max-width: 767px) {
  .search-form__state:checked ~ .header .urgent {
    -webkit-transform: translate3d(0, 126px, 0);
    transform: translate3d(0, 126px, 0);
  }
}

@media (max-width: 639px) {
  .search-form__state:checked
    ~ .header:not(.is--fixed):not(.is--sticky)
    .urgent {
    -webkit-transform: translate3d(0, 176px, 0);
    transform: translate3d(0, 176px, 0);
  }
}

.urgent-holder {
  height: 34px;
  background: #f0001a;
}

.urgent__label {
  position: absolute;
  z-index: 1;
  width: 70px;
  text-align: center;
  line-height: 34px;
  background: #f0001a;
  box-shadow: 0 0 14px -4px #000;
  transition: -webkit-transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1),
    -webkit-transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1154px) {
  .header.is--fixed .urgent__label,
  .header.is--sticky .urgent__label {
    -webkit-transform: translate(-10px);
    transform: translate(-10px);
    transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.6, 1);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.6, 1);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.6, 1),
      -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.6, 1);
  }
}

.urgent__label:before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 33px;
  height: 100%;
  margin-right: -3px;
  background: #f0001a;
}

.urgent__cont {
  margin: 0 0 0 60px;
  padding: 0 0 0 10px;
  overflow: hidden;
}

.no-js .urgent__cont {
  overflow: auto;
}

.urgent__items {
  display: inline-block;
  height: 34px;
  margin: 0;
  padding: 0;
  font-size: 0;
  list-style: none;
  white-space: nowrap;
  -webkit-transform: translate(0);
  transform: translate(0);
}

.urgent__item {
  display: inline-block;
  font-size: 14px;
  line-height: 34px;
  margin: 0 0 0 30px;
  padding: 0 0 0 30px;
  position: relative;
}

.urgent__item:before {
  content: "";
  float: left;
  width: 6px;
  height: 6px;
  margin: 14px 30px 0 0;
  background: currentColor;
  position: absolute;
  left: -3px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.urgent__link {
  color: currentColor;
}

@supports ((-webkit-filter: invert(1)) or (filter: invert(1))) {
  .urgent__link {
    color: #000;
    -webkit-filter: invert(1);
    filter: invert(1);
  }
}

.urgent__link[href]:hover {
  text-decoration: underline;
}

.urgent__link.focus-visible {
  outline-color: #000;
}

.is--mourning .urgent {
  color: #fff;
}

.is--mourning .urgent,
.is--mourning .urgent-holder,
.is--mourning .urgent__label,
.is--mourning .urgent__label:before {
  background: #404040;
}

.ad {
  font-size: 0;
  text-align: center;
}

.is--mourning .ad {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.ad a {
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .ad {
    margin: 10px 0;
  }
}

.ad--optad {
  margin: 30px 0 0;
}

.ad__holder {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.section + .ad .ad__holder {
  margin: 20px 0 40px;
}

@media (max-width: 767px) {
  .section + .ad .ad__holder {
    margin: 30px 0 40px;
  }
}

.ad__holder.is--lazy {
  display: none;
}

.ad__holder--news {
  margin-bottom: 65px;
}

.ad__holder:before {
  content: "REKLAMA";
  display: block;
  font-size: 9px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  text-align: center;
  line-height: 14px;
  color: #888;
}

.ad__holder .ad__space {
  display: block;
  width: 100%;
  margin: 0 auto;
  background: url(../index/placeholder.6b595.png) no-repeat 50% #eaeaea;
  background-size: contain;
}

.ad__holder.is--loaded .ad__space {
  display: none;
}

.ad__holder--gora_srodek {
  margin-top: 10px;
}

@media (max-width: 639px) {
  .ad__holder--gora_srodek {
    margin-bottom: 10px;
  }
}

@media (min-width: 768px) {
  .ad__holder--gora_srodek {
    min-height: 314px;
  }
}

@media (max-width: 767px) {
  .ad__holder--gora_srodek {
    min-height: 164px;
  }
}

@media (min-width: 768px) {
  .ad__holder--gora_srodek .ad__space {
    max-width: 750px;
    min-height: 300px;
  }
}

@media (max-width: 767px) {
  .ad__holder--gora_srodek .ad__space {
    max-width: 320px;
    min-height: 150px;
  }
}

.ad__holder--galeria-end {
  padding: 0 0 20px;
}

@media (min-width: 768px) {
  .ad__holder--galeria-end {
    min-height: 114px;
  }
}

@media (max-width: 767px) {
  .ad__holder--galeria-end {
    min-height: 294px;
  }
}

@media (min-width: 768px) {
  .ad__holder--galeria-end .ad__space {
    max-width: 700px;
    min-height: 100px;
  }
}

@media (max-width: 767px) {
  .ad__holder--galeria-end .ad__space {
    max-width: 336px;
    min-height: 280px;
  }
}

.ad__holder--750x200 {
  min-height: 214px;
}

.ad__holder--750x200 .ad__space {
  max-width: 750px;
  min-height: 200px;
}

.ad__holder--700x100 {
  min-height: 114px;
}

.ad__holder--700x100 .ad__space {
  max-width: 700px;
  min-height: 100px;
}

.ad__holder--360x100 {
  min-height: 114px;
}

.ad__holder--360x100 .ad__space {
  max-width: 360px;
  min-height: 100px;
}

.ad__holder--336x280 {
  min-height: 294px;
}

.ad__holder--336x280 .ad__space {
  max-width: 336px;
  min-height: 280px;
}

.ad__holder--300x600 {
  min-height: 614px;
}

.ad__holder--300x600 .ad__space {
  max-width: 300px;
  min-height: 600px;
}

@media (max-width: 767px) {
  .ad__holder--desktop {
    display: none;
  }
}

@media (min-width: 768px) {
  .ad__holder--mobile {
    display: none;
  }
}

.ad__slot {
  width: 100%;
  overflow: hidden;
}

:not(.ad__holder) > .optad360:before {
  content: "REKLAMA";
  display: block;
  font-size: 9px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  text-align: center;
  line-height: 14px;
  color: #888;
}

.polling.polling--target {
  margin-top: -10px;
}

@media (max-width: 639px) {
  .polling.polling--target {
    margin-top: -20px;
  }
}

.polling,
.polling__content,
.polling__header,
.polling__media {
  float: left;
  width: 100%;
  position: relative;
}

.polling__link.focus-visible {
  outline: none;
}

.polling__link.focus-visible:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  outline: 3px solid #f7d000;
  outline-offset: -3px;
}

.polling__media {
  margin: 0;
  background: #eaeaea;
}

.polling__media:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.polling__media-img {
  float: left;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;", sans-serif;
}

.polling__title {
  margin: 0;
  padding: 0;
  font-size: 34px;
  font-weight: 700;
  color: #000;
  text-align: center;
}

.polling--target .polling__title {
  text-align: left;
}

@media (max-width: 639px) {
  .polling__title {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.polling__media + .polling__title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 4% !important;
  color: #fff;
}

.polling__media + .polling__title:before {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 140%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(0, 0, 0, 0.42) 32%,
    rgba(0, 0, 0, 0.8)
  );
}

.polling__content {
  margin: 5% 0;
  padding: 10px 0 0;
}

.polling__answers {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
  text-align: center;
  margin: 0 0 0 -10px;
  padding: 0;
  transition: opacity 0.5s;
}

.polling__answer {
  display: inline-block;
  width: 50%;
  padding: 0 0 0 10px;
  position: relative;
  text-align: center;
}

.polling__button {
  width: 100%;
  margin: 0;
  padding: 0;
  background: 0 0;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.polling__answer:first-child:nth-last-child(2),
.polling__answer:first-child:nth-last-child(2) ~ .polling__answer {
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.polling__answer:first-child:nth-last-child(3),
.polling__answer:first-child:nth-last-child(3) ~ .polling__answer {
  width: 33.333%;
}

.polling__answer:first-child:nth-last-child(4),
.polling__answer:first-child:nth-last-child(4) ~ .polling__answer {
  width: 50%;
}

.polling__answer:first-child:nth-last-child(5),
.polling__answer:first-child:nth-last-child(5) ~ .polling__answer {
  width: 20%;
}

.polling__answer:first-child:nth-last-child(n + 6),
.polling__answer:first-child:nth-last-child(n + 6) ~ .polling__answer {
  width: 16.666%;
}

.polling__answer:first-child:nth-last-child(n + 5)
  .polling__answer-media:before,
.polling__answer:first-child:nth-last-child(n + 5)
  ~ .polling__answer
  .polling__answer-media:before {
  padding-top: 100%;
}

.polling__answer-media {
  position: relative;
  width: 100%;
  margin: 0;
}

.polling__answer-media:before {
  content: "";
  display: block;
  padding-top: 56.25%;
  background: #eaeaea;
}

.polling__answer-media-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;", sans-serif;
}

.polling__answer-media-label {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 60px;
  margin-top: -30px;
  font-family: Calibri, Candara, Segoe, Segoe UI, Optima, Arial, sans-serif;
  font-size: 54px;
  color: #000;
  line-height: 54px;
  text-align: center;
}

.polling__answer-name {
  display: block;
  font-size: 13px;
  margin: 6px 0 12px;
}

.polling__answer:first-child:nth-last-child(2) .polling__answer-media:after {
  content: "VS";
  font-size: 22px;
  font-weight: 700;
  color: #000;
  line-height: 50px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 100%;
  z-index: 1;
  width: 50px;
  height: 50px;
  margin: -27px 0 0 -20px;
  background: #f7d000;
  border: 2px solid #fff;
  border-radius: 50px;
  pointer-events: none;
}

.polling__answer--no-img {
  margin-bottom: 10px;
}

.polling__answer--no-img .polling__answer-media,
.polling__answer--no-img .polling__answer-media-element {
  background: #f7d000;
}

.polling__answer--no-img:first-child:nth-last-child(2)
  .polling__answer-media:after {
  background: #005e8c;
  color: #fff;
}

.polling__results {
  list-style: none;
  margin: 0;
  padding: 0;
}

.polling__result-name {
  display: block;
  font-size: 16px;
  margin: 0 0 10px;
  padding: 0 40px 0 0;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.polling__result-percent {
  position: absolute;
  top: 0;
  right: 0;
}

.polling__result-progress {
  position: relative;
  background: #eaeaea;
  height: 5px;
  margin: 0 0 25px;
}

.polling__result-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #f7d000;
  transition: -webkit-transform 2s;
  transition: transform 2s;
  transition: transform 2s, -webkit-transform 2s;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left top 0;
  transform-origin: left top 0;
}

.polling__msg {
  font-size: 12px;
  color: #666;
}

.polling__msg--error {
  font-weight: 700;
  text-align: center;
  color: red;
}

.polling--loading {
  position: relative;
}

.polling--loading .polling__answers {
  opacity: 0;
  visibility: hidden;
}

.polling__header {
  overflow: hidden;
  padding-bottom: 3px;
  margin-bottom: -3px;
}

.polling__header:after,
.polling__header:before {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: #f7d000;
  opacity: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: transform 0.35s, opacity 0.35s;
  transition: transform 0.35s, opacity 0.35s, -webkit-transform 0.35s;
}

.polling--loading .polling__header:before {
  -webkit-animation: increase 2s infinite;
  animation: increase 2s infinite;
}

.polling--loading .polling__header:after {
  -webkit-animation: decrease 2s 0.5s infinite;
  animation: decrease 2s 0.5s infinite;
}

@media screen and (max-width: 770px) {
  .polling__title {
    font-size: 22px;
    font-size: 4.5vw;
  }

  .polling__answer-media-label {
    font-size: 35px;
    font-size: 7vw;
  }
}

@media screen and (max-width: 500px) {
  .polling__answer {
    width: 33.333% !important;
  }

  .polling__answer:first-child:nth-last-child(2),
  .polling__answer:first-child:nth-last-child(2) ~ .polling__answer,
  .polling__answer:first-child:nth-last-child(4),
  .polling__answer:first-child:nth-last-child(4) ~ .polling__answer {
    width: 50% !important;
  }
}

.polling--aside .polling__title {
  font-size: 18px;
  text-align: left;
  padding-bottom: 3px;
}

.polling--aside .polling__content {
  margin: 10px 0 0;
}

.polling--aside .polling__answer-media-label {
  font-size: 40px;
}

.polling--aside .polling__answer {
  width: 33.333% !important;
}

.polling--aside .polling__answer:first-child:nth-last-child(2),
.polling--aside
  .polling__answer:first-child:nth-last-child(2)
  ~ .polling__answer,
.polling--aside .polling__answer:first-child:nth-last-child(4),
.polling--aside
  .polling__answer:first-child:nth-last-child(4)
  ~ .polling__answer {
  width: 50% !important;
}

.polling--aside
  .polling__answer:first-child:nth-last-child(2)
  .polling__answer-media:after {
  font-size: 15px;
  width: 34px;
  height: 34px;
  line-height: 30px;
  margin: -19px 0 0 -12px;
}

.polling--aside .polling__result-name {
  font-size: 14px;
  margin-bottom: 6px;
}

.polling--aside .polling__result-progress {
  height: 3px;
}

.polling--inline {
  float: none;
  margin: 20px 0;
}

.polling--inline:after {
  content: "";
  display: table;
  clear: both;
}

@media (max-width: 639px) {
  .polling--inline {
    float: none;
    width: auto;
    margin-left: -15px;
    margin-right: -15px;
  }

  .polling--inline:after {
    content: "";
    display: table;
    clear: both;
  }
}

.polling--inline .polling__content {
  margin: 10px 0 0;
}

@media (max-width: 639px) {
  .polling__content {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.related {
  position: relative;
  float: left;
  width: 100%;
  padding-left: 20px;
  margin-bottom: 20px;
  word-wrap: break-word;
  border-left: 5px solid #e5e5e5;
}

.related__link {
  display: block;
}

.related__figure {
  position: relative;
  margin: 0;
  padding: 0;
  background: #eaeaea;
  overflow: hidden;
}

.related__figure:before {
  content: "";
  float: left;
  width: 1px;
  height: 0;
  margin-left: -1px;
  padding-top: 56.25%;
}

.related__figure:after {
  content: "";
  display: table;
  clear: both;
}

.related__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;", sans-serif;
}

.related__header {
  color: #262626;
}

.related__title {
  clear: both;
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.2;
}

a.news__link:hover .related__title {
  text-decoration: underline;
}

.related__header {
  margin: 14px 0 10px;
}

.related__title {
  font-size: 1.4rem;
  line-height: 1.21429;
}

.related__link:hover .related__title {
  text-decoration: underline;
}

@media (max-width: 639px) {
  .related {
    border-top: 5px solid #e5e5e5;
    border-left: 0;
    padding: 20px 0 0;
  }

  .related .related__figure {
    float: left;
    width: 165px;
  }

  .related .related__header {
    margin: 0 0 0 180px;
  }

  .related .related__title {
    clear: none;
  }
}

.related-links {
  margin-top: 14px;
}

@media (max-width: 639px) {
  .related-links {
    margin-top: 20px;
  }
}

.related-links__label {
  float: left;
  color: #fff;
  background: #005e8c;
}

.related-links__items {
  clear: both;
  margin: 0;
  padding: 5px 30px 0 24px;
  text-align: left;
}

.related-links__item {
  clear: both;
  margin: 5px 0;
  color: #ccc;
  line-height: 1.35;
}

.related-links__title {
  display: inline;
  font-size: 1.6rem;
  font-weight: 700;
  word-wrap: break-word;
}

.related-links__link {
  display: block;
  color: #000;
}

.related-links__link:hover .related-links__title {
  text-decoration: underline;
}

.tags {
  margin: 20px 0;
}

.tags:after {
  content: "";
  display: table;
  clear: both;
}

.tag {
  float: left;
  margin: 5px 5px 0 0;
  padding: 5px 10px;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1;
  background: #b3b3b3;
}

.tag:hover {
  color: #262626;
  text-decoration: none;
  background: #f7d000;
}

.series__item {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  padding: 25px 0 20px;
  border: 0;
  box-shadow: inset 0 5px 0 #e5e5e5;
}

.series__item:not(.is--active) + .series__item {
  display: none;
}

.series__item:after,
.series__item:before {
  content: "";
  width: 100%;
  height: 5px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: #f7d000;
  opacity: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: transform 0.35s, opacity 0.35s;
  transition: transform 0.35s, opacity 0.35s, -webkit-transform 0.35s;
}

.series__item.is--loading:before {
  -webkit-animation: increase 2s infinite;
  animation: increase 2s infinite;
}

.series__item.is--loading:after {
  -webkit-animation: decrease 2s 0.5s infinite;
  animation: decrease 2s 0.5s infinite;
}

.series__link {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

@media (max-width: 639px) {
  .series__link {
    padding: 0 15px;
  }
}

.photos {
  margin: 1em 0;
}

.photos:before {
  content: "";
  display: block;
  height: 100px;
  margin-top: -100px;
}

.photos__item {
  position: relative;
  margin: 6px 0 40px;
}

.photos__label {
  position: absolute;
  top: 0;
  left: 0;
  text-transform: none;
  color: #fff;
  background: #262626;
}

.photos .news__img {
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: contain;", sans-serif;
}

.photos .news__figure-signature {
  margin: 0 0 -16px;
  border: 0;
}

.liveblog {
  clear: both;
  position: relative;
  margin: 30px 0;
}

.liveblog.is--loading .liveblog__header {
  opacity: 1;
}

.liveblog__header {
  margin-bottom: 30px;
}

.liveblog__header-live {
  font-size: 1.8rem;
  font-weight: 700;
}

.liveblog__header-label {
  display: inline-block;
  vertical-align: middle;
}

.liveblog__header-info {
  font-size: 1.4rem;
  color: #666;
}

.liveblog__items {
  transition: opacity 0.3s;
}

.liveblog__item {
  position: relative;
  border-bottom: 1px solid #e5e5e5;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

.liveblog__item:before {
  content: "";
  display: table;
  clear: both;
}

.liveblog__item:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(247, 208, 0, 0.15);
  opacity: 0;
  transition: opacity 5s 5s;
}

.liveblog__item-time {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 86px;
  margin-top: 30px;
  font-weight: 400;
  text-align: center;
}

.liveblog__item-text {
  position: relative;
  z-index: 1;
  margin: 30px 20px 30px 86px;
}

.liveblog__item-text p {
  margin: 1em 0;
}

.liveblog__item-text img + p em {
  display: block;
  margin: -10px 0 0;
  font-size: 0.8em;
  font-weight: 400;
}

.liveblog__item-text iframe,
.liveblog__item-text img,
.liveblog__item-text video {
  max-width: 100%;
}

.liveblog__item--type-1 {
  font-weight: 700;
}

.liveblog__item--type-2 {
  border-top: 5px solid #f7d000;
}

.liveblog__item--type-2,
.liveblog__item--type-3 {
  margin-bottom: -1px;
  font-weight: 700;
  background: #f5f5f5;
}

.liveblog__item--type-3 {
  border-top: 5px solid #f0001a;
}

.liveblog__item--new {
  opacity: 0;
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
}

.liveblog__item--new:after,
.liveblog__item--update:after {
  opacity: 1;
}

@media (max-width: 639px) {
  .liveblog__items {
    margin: 0 -15px;
  }

  .liveblog__item-time {
    position: relative;
    margin: 35px 0 0 15px;
    text-align: left;
    line-height: 1;
  }

  .liveblog__item-text {
    margin: 25px 15px 35px;
  }

  .liveblog__item-text .videoPlayer,
  .liveblog__item-text img {
    display: block;
    width: 100vw !important;
    max-width: none;
    margin-left: -15px !important;
  }
}

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

@media (min-width: 640px) {
  .host:not(.host--single):not(:last-child) {
    margin-right: 30px;
  }
}

@media (max-width: 639px) {
  .host {
    margin: 0 0 20px;
  }

  .host:not(.host--single) {
    width: 194px;
  }
}

.host[href],
.host__link {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: inherit;
}

.host[href][href]:hover .host__name,
.host__link[href]:hover .host__name {
  text-decoration: underline;
}

.host__img {
  float: left;
  width: 44px;
  height: 44px;
  margin-right: 10px;
  border-radius: 100%;
  overflow: hidden;
  background: #eaeaea;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;", sans-serif;
}

.host__name {
  display: inline-block;
  max-width: 140px;
  font-size: 1.4rem;
  text-align: left;
}

.host__title {
  font-size: 4.8rem;
  font-weight: 900;
  margin: 0 20px;
  text-align: center;
}

@media (max-width: 1153px) {
  .host__title {
    font-size: 3.6rem;
  }
}

@media (max-width: 767px) {
  .host__title {
    font-size: 3rem;
  }
}

.host__bio {
  max-width: 860px;
  margin: 10px auto;
  padding: 0 30px;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 1153px) {
  .host__bio {
    font-size: 1.4rem;
  }
}

@media (max-width: 767px) {
  .host__bio {
    padding: 0 15px;
    margin-bottom: 5px;
    font-size: 1.2rem;
  }
}

.host--single {
  clear: both;
  margin: -10px 0 40px;
  padding: 40px 0 50px;
  overflow: hidden;
  color: #262626;
  background: #f2f2f2;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 1153px) {
  .host--single {
    padding: 45px 0 50px;
  }
}

.host--single .host__img {
  float: none;
  width: 106px;
  height: 106px;
  margin: 5px 0 10px;
}

@media (max-width: 1153px) {
  .host--single .host__img {
    width: 88px;
    height: 88px;
  }
}

.host-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0;
}

@media (max-width: 639px) {
  .host-list {
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.program {
  clear: both;
  position: relative;
  margin: -10px 0 38px;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.program__figure {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  z-index: -1;
  overflow: hidden;
  margin: 0;
  background: #005e8c;
}

.program__figure:after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
}

.program__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.program__inner {
  margin: 80px 20px 60px;
}

.program__title {
  margin: 14px 0 5px;
  padding: 0;
  font-size: 4.8rem;
  line-height: 1;
}

.program__time {
  font-size: 3rem;
  line-height: 1;
}

.program__nav {
  margin: 25px 0 -30px;
}

@media (max-width: 1153px) {
  .program__inner {
    margin-top: 64px;
  }

  .program__title {
    font-size: 3.6rem;
  }

  .program__time {
    font-size: 2.4rem;
  }
}

@media (max-width: 767px) {
  .program__inner {
    margin-top: 74px;
  }

  .program__title {
    font-size: 3rem;
  }

  .program__time {
    font-size: 1.8rem;
  }
}

@media (max-width: 639px) {
  .program {
    margin-top: -20px;
  }

  .program__inner {
    margin-top: 110px;
  }
}

.pagination {
  width: 100%;
  margin: 30px 0 20px;
  font-size: 0;
  text-align: center;
}

.pagination__button {
  position: relative;
  overflow: hidden;
  margin: 0 !important;
  padding: 0;
  width: 44px;
  height: 44px;
  text-indent: 100px;
  white-space: nowrap;
}

.pagination__button--hidden {
  visibility: hidden;
}

.pagination__button:after,
.pagination__button:before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -4px;
}

.pagination__button,
.pagination__link {
  vertical-align: middle;
}

.pagination__link,
.pagination__links {
  display: inline-block;
}

.pagination__link {
  position: relative;
  min-width: 30px;
  font-size: 1.4rem;
  line-height: 36px;
  text-align: center;
  color: inherit;
}

.pagination__link:first-child {
  margin-left: 8px;
}

.pagination__link:last-child {
  margin-right: 8px;
}

.pagination__link.is--active:after,
.pagination__link:hover:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 10px;
  height: 3px;
  margin-left: -5px;
  background: #f7d000;
}

@-webkit-keyframes dotty {
  0% {
    content: "";
  }

  25% {
    content: ".";
  }

  50% {
    content: "..";
  }

  75% {
    content: "...";
  }

  to {
    content: "";
  }
}

@keyframes dotty {
  0% {
    content: "";
  }

  25% {
    content: ".";
  }

  50% {
    content: "..";
  }

  75% {
    content: "...";
  }

  to {
    content: "";
  }
}

@media (max-width: 639px) {
  .search__header {
    margin: 0 15px;
  }
}

.search__form {
  width: 100%;
  max-width: 700px;
  height: 60px;
  margin: 0 auto;
  padding-right: 60px;
  border: 1px solid #e5e5e5;
  box-shadow: none;
  visibility: visible;
  -webkit-transform: none;
  transform: none;
}

.search__form:before {
  display: none;
}

.search__form .search-form__input {
  height: 92%;
  padding: 0 0 0 20px;
  font-size: 2.4rem;
  text-align: left;
  text-indent: 0;
}

.search:not(.is--active)
  .search__form
  .search-form__input::-webkit-input-placeholder {
  opacity: 0;
}

.search:not(.is--active) .search__form .search-form__input::placeholder {
  opacity: 0;
}

.search__form .search-form__button {
  width: 60px;
  height: 60px;
  margin: -30px 0 0;
}

.search:not(.is--active) .search__form:after {
  content: "";
  position: absolute;
  top: 25px;
  left: 20px;
  -webkit-animation: dotty 0.8s 1s infinite;
  animation: dotty 0.8s 1s infinite;
}

.search__info {
  margin: 15px 15px 0;
  font-size: 1.3rem;
  color: #666;
  text-align: center;
  word-wrap: break-word;
}

.search__info-string {
  margin-top: 40px;
  font-size: 3rem;
  color: #005e8c;
}

.search__info-no-results {
  margin: 15px 0;
  font-size: 1.8rem;
  color: #262626;
}

.search__info-text {
  max-width: 360px;
  margin: 0 auto 40px;
  font-size: 1.4rem;
  color: #666;
}

.search__nav {
  margin: 15px 0 20px;
}

.search__results-wrap {
  position: relative;
  min-height: 200px;
  overflow: hidden;
}

.search__loader {
  top: 0;
  margin: 110px 0 0 -15px;
  visibility: hidden;
}

.search__loader,
.search__loader:before {
  position: absolute;
  left: 50%;
  width: 30px;
  height: 30px;
}

.search__loader:before {
  content: "";
  border: 4px solid transparent;
  border-top-color: #005e8c;
  border-radius: 30px;
  top: 50%;
  margin: -15px;
  -webkit-animation: rotate 0.5s linear infinite;
  animation: rotate 0.5s linear infinite;
  top: 0;
}

.search.is--loading .search__loader {
  visibility: visible;
}

.search.is--loading .search__results-wrap {
  cursor: wait;
}

.search.is--loading .search__results {
  pointer-events: none;
  transition: opacity 0.5s;
  opacity: 0.25;
}

.text-content__section {
  font-size: 1.4rem;
  line-height: 1.5;
}

.text-content__section + .text-content__section {
  margin-top: 3em;
}

.text-content__title {
  margin: 0 0 2em;
  font-size: 1em;
  font-weight: 700;
  text-transform: uppercase;
}

.text-content p {
  margin: 0;
}

@media (min-width: 1024px) {
  .text-content--2-col {
    -webkit-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 40px;
    column-gap: 40px;
  }
}

.text-content + .text-content {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #e5e5e5;
}

@media (max-width: 639px) {
  .text-content {
    margin-left: 15px;
    margin-right: 15px;
  }
}

.rss__title {
  margin: 0;
  line-height: 1.5;
}

.rss__items {
  margin: 25px 0;
  padding: 0;
  list-style: none;
}

.rss__item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 69px;
  font-size: 1.4rem;
  font-weight: 700;
}

.rss__item:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
}

.rss__name {
  max-width: 200px;
}

.rss__link {
  font-weight: 400;
  line-height: 1.22;
  color: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-left: auto;
  width: 63%;
}

.rss__ico {
  width: 80px;
  line-height: 68px;
  text-align: center;
  color: #005e8c;
}

@media (max-width: 639px) {
  .rss {
    margin: 0 15px;
  }

  .rss__items {
    margin: 5px 0;
  }

  .rss__item {
    position: relative;
    display: block;
    height: auto;
    padding: 25px 0;
  }

  .rss__link {
    display: block;
    margin-top: 20px;
    width: auto;
  }

  .rss__ico {
    position: absolute;
    top: 0;
    right: 0;
  }
}

.rss-box {
  padding: 35px 30px;
  line-height: 1.5;
  background: #f7d000;
}

@media (min-width: 640px) and (max-width: 767px) {
  .rss-box {
    margin: 0 -30px;
  }
}

.rss-box__title {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
}

.rss-box__text {
  margin: 20px 0 25px;
  font-size: 1.4rem;
}

.rss-box__link {
  font-size: 1.4rem;
  color: inherit;
}

.rss-box__link:hover {
  text-decoration: underline;
}

.error-page {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 50px 0;
}

.error-page__code {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  image-rendering: optimizeQuality;
}

@media (min-width: 1154px) {
  .error-page__code {
    max-width: 410px;
    margin: 0;
  }
}

.error-page__box {
  margin: 5px 0 0 70px;
}

.error-page__title {
  margin: 0;
  font-size: 4.8rem;
  line-height: 1;
}

.error-page__subtitle {
  margin-bottom: -4px;
  font-size: 1.6rem;
  line-height: 1.5;
}

.error-page__text {
  padding-right: 30px;
  font-size: 1.4rem;
  line-height: 1.5;
}

.error-page__link-box {
  margin: 30px 0 0;
  padding: 45px 0 0;
  border-top: 1px solid #e5e5e5;
  font-weight: 700;
}

.error-page__items {
  padding: 0;
  list-style-position: inside;
  font-size: 1.4rem;
  font-weight: 400;
}

.error-page__item {
  color: #ccc;
}

.error-page__link {
  margin-left: 8px;
}

@media (max-width: 1153px) {
  .error-page {
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 55px 0 20px;
  }

  .error-page__box {
    margin: 60px 0 0;
  }
}

@media (max-width: 1023px) {
  .error-page {
    margin: 50px 0 20px;
  }
}

@media (min-width: 640px) and (max-width: 767px) {
  .error-page {
    margin: 40px 0 20px;
  }
}

@media (max-width: 639px) {
  .error-page {
    margin-left: 30px;
    margin-right: 30px;
  }

  .error-page__text {
    padding-right: 0;
  }
}

.covid {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 50px;
  margin: -10px 0 0;
  color: #fff;
  background: #f0001a;
}

.covid__title {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 30px 2px;
  font-size: 1.8rem;
  text-align: center;
  background: hsla(0, 0%, 6%, 0.2);
}

.covid__counters,
.covid__title {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}

.covid__counters {
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  padding: 0;
  list-style: none;
}

.covid__counter {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  text-align: center;
}

.covid__label {
  margin: 0 5px;
  font-size: 1.6rem;
  color: #f6cf00;
  text-transform: uppercase;
}

.covid__count {
  margin: -4px 2px 0;
  font-size: 2.4rem;
}

.covid__count-small {
  position: relative;
  top: -2px;
  font-size: 1.6rem;
  font-weight: 400;
  opacity: 0.7;
}

.covid__share {
  position: relative;
  margin: 0 5px 0 15px;
}

.covid__share,
.covid__share:before {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.covid__share:before {
  content: "Udost" "\119""pnij";
  font-size: 1.4rem;
  padding: 0 10px 2px;
  height: 100%;
  cursor: wait;
  pointer-events: auto;
}

.covid__share:hover:before {
  text-decoration: underline;
}

.covid__share > .nav__items {
  width: 0;
  height: 100%;
  overflow: hidden;
}

.covid__share > .nav__items .nav__item {
  position: relative;
  top: 101%;
}

.covid__share .overflow-menu__button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.covid__share .overflow-menu__button:after {
  display: none;
}

.covid__share .overflow-menu__box {
  right: 10px;
  text-align: left;
}

.covid__share .overflow-menu__box .nav__link {
  color: #000;
}

.covid__more {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 20px 0 5px;
  padding: 0 10px 2px;
  font-size: 1.4rem;
  color: #fff;
  white-space: nowrap;
}

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

.covid__more:after {
  content: "";
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: block;
  width: 24px;
  height: 24px;
  margin: 0 0 0 10px;
  background: url(../index/more.573c1.svg) no-repeat 50%;
  background-size: contain;
}

@media (max-width: 1479px) {
  .covid:not(.covid--widget) .covid__title {
    width: 125px;
    padding: 11px 15px 13px;
    font-size: 1.5rem;
  }

  .covid:not(.covid--widget) .covid__counter {
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
  }

  .covid:not(.covid--widget) .covid__label {
    font-size: 1.2rem;
  }

  .covid:not(.covid--widget) .covid__count {
    margin-top: 0;
    font-size: 1.4rem;
  }

  .covid:not(.covid--widget) .covid__count-small {
    top: 0;
    font-size: inherit;
  }

  .covid:not(.covid--widget) .covid__share {
    margin: 0 0 0 5px;
  }

  .covid:not(.covid--widget) .covid__more {
    margin: 0 5px 0 0;
  }

  .covid:not(.covid--widget) .covid__more:after {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 1153px) {
  .covid:not(.covid--widget) .covid__more {
    font-size: 0;
    margin-left: -5px;
  }

  .covid:not(.covid--widget) .covid__more:after {
    margin-left: 0;
  }
}

@media (max-width: 639px) {
  .covid:not(.covid--widget) {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    margin-top: -20px;
  }

  .covid:not(.covid--widget) .covid__title {
    width: 100%;
    height: 30px;
    font-size: 1.4rem;
  }

  .covid:not(.covid--widget) .covid__counters {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 8px 4% 8px 10px;
  }

  .covid:not(.covid--widget) .covid__count {
    margin-left: 5px;
    margin-right: 5px;
  }

  .covid:not(.covid--widget) .covid__share {
    position: absolute;
    top: 0;
    right: 75px;
    height: 30px;
  }

  .covid:not(.covid--widget) .covid__share:before {
    font-size: 1.2rem;
  }

  .covid:not(.covid--widget) .covid__share .overflow-menu__box {
    right: 5px;
  }

  .covid:not(.covid--widget) .covid__more {
    position: absolute;
    right: 0;
    top: 0;
    height: 30px;
    font-size: 1.2rem;
  }

  .covid:not(.covid--widget) .covid__more:after {
    width: 12px;
    height: 12px;
    margin-left: 5px;
  }
}

.covid--widget {
  position: relative;
  max-width: 300px;
  margin: 60px auto 20px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.covid--widget .covid__title {
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 50px;
}

.covid--widget .covid__counters {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 30px 0;
  border-bottom: 50px solid rgba(0, 0, 0, 0.17);
  overflow: hidden;
}

.covid--widget .covid__counter {
  -webkit-flex-flow: row;
  -ms-flex-flow: row;
  flex-flow: row;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding: 10px 25px;
}

.covid--widget .covid__label {
  -webkit-flex: 1 1 100%;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
}

.covid--widget .covid__count {
  margin-left: auto;
}

.covid--widget .covid__more,
.covid--widget .covid__share {
  position: absolute;
  bottom: 0;
  height: 50px;
}

.covid--widget .covid__share {
  left: 0;
}

.covid--widget .covid__more {
  right: 0;
}

.covid + .news-list--hot-news {
  margin-top: 0;
}

.covid + .news-list--hot-news-bg {
  margin-top: 20px;
}

.footer {
  background: #f2f2f2;
}

.footer__links {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.3rem;
  padding: 2px 0;
}

.footer__links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  float: left;
}

.footer__links span {
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  color: #262626;
  margin: 6px 8px 6px 0;
}

.footer__links a {
  color: #989898;
  display: block;
  margin: 6px 8px;
}

.footer__links a:hover {
  color: #666;
  text-decoration: underline;
}

.footer__links--top {
  border-top: 1px solid #e5e5e5;
  padding: 22px 0;
}

.footer__links--bottom {
  padding-bottom: 22px;
}

@media (max-width: 767px) {
  .footer__links {
    display: block;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .footer__links ul {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 12px;
  }

  .footer__links span {
    margin-right: 0;
  }

  .footer__links--bottom {
    padding: 25px 0;
  }
}

.footer__info {
  clear: both;
  padding: 20px 0;
  border-top: 1px solid #e5e5e5;
  font-size: 1.1rem;
  color: #989898;
}

@media (max-width: 767px) {
  .footer__info {
    text-align: center;
  }
}

@media (max-width: 639px) {
  .footer .inside {
    padding: 0 15px;
  }
}

.is--mourning .footer a {
  color: #262626;
}
