@media only screen and (max-width: 1024px) {
  .desktop-only {
    display: none !important;
    position: absolute !important;
    left: -99999 !important;
    top: -99999 !important;
    visibility: hidden;
  }
}

@media only screen and (min-width: 1025px) {
  .mobile-only {
    display: none !important;
    position: absolute !important;
    left: -99999 !important;
    top: -99999 !important;
    visibility: hidden;
  }
}

/*
transition
logo
menu
login-modal
login
modal
content
*/

.breadcrumbs__text {
  font-size: 20px;
  text-transform: uppercase;
}

@media only screen and (max-width: 1024px) {
  .breadcrumbs__text {
    font-size: 12px;
  }
}

.breadcrumbs__text span {
  display: inline-block;
}

.breadcrumbs__text span:nth-child(1) {
  color: #00ffa7;
}

.breadcrumbs__text span:nth-child(1)::after {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: #ffffff;
  vertical-align: middle;
  border-radius: 50%;
  margin: 0 10px 0 12px;
  position: relative;
  top: -2px;
}

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

.prediction__title {
  font-size: 48px;
  text-transform: uppercase;
  padding: 0;
  margin: 8px 0 16px;
  line-height: normal;
}

@media only screen and (max-width: 1024px) {
  .prediction__title {
    font-size: 24px;
    margin: 4px 0 16px;
  }
}

.prediction__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.prediction__blur {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.2;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.prediction__left-column {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-right: 68px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 100%;
  max-width: 77%;
}

@media only screen and (max-width: 1024px) {
  .prediction__left-column {
    max-width: 100%;
    padding-right: 0;
    border: none;
  }
}

.prediction__left-column::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 0;
  width: 1px;
  height: 105%;
  background-color: rgba(255, 255, 255, 0.14);
}

@media only screen and (max-width: 1024px) {
  .prediction__left-column::after {
    display: none;
  }
}

.prediction__right-column {
  width: 302px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media only screen and (max-width: 1024px) {
  .prediction__right-column {
    display: none;
  }
}

.prediction__icon-up {
  position: relative;
  top: 3px;
}

.prediction__box {
  max-width: 100%;
  padding: 55px 80px 49px;
  background-color: #ffffff;
  border-radius: 10px;
  margin-top: 20px;
}

@media only screen and (max-width: 1024px) {
  .prediction__box {
    padding: 16px 16px 24px;
    margin: 0 -15px;
  }
}

.prediction__box-text {
  color: #000000;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
}

@media only screen and (max-width: 1024px) {
  .prediction__box-text {
    font-size: 18px;
    margin: 0px 0px 16px;
  }
}

.prediction__box-text p {
  margin: 0;
  margin-bottom: 20px;
}

.prediction__box-text b,
.prediction__box-text h2,
.prediction__box-text h1 {
  margin: 40px 0 20px;
  color: #000;
  font-size: 20px;
}

.prediction__box-text a {
  color: #00f;
  border-bottom: 1px solid #00f;
}

.prediction__box-text a:hover {
  color: #55f;
  border-bottom-color: #55f;
}

.prediction__box-title {
  margin: 40px 0 20px;
  color: #000;
  font-size: 20px;
}

.prediction__box-pic {
  width: auto;
  height: 262px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: -39px -64px 35px;
  position: relative;
  border-radius: 10px;
}

@media only screen and (max-width: 1024px) {
  .prediction__box-pic {
    margin: 0px 0px 16px;
  }
}

.prediction__box-pic:before {
  content: '';
  position: absolute;
  display: block;
  bottom: 0px;
  top: 50%;
  width: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(33, 28, 59, 0)), to(#0c0d1a));
  background-image: linear-gradient(to bottom, rgba(33, 28, 59, 0), #0c0d1a);
}

.prediction__box-pic:after {
  content: '';
  position: relative;
  background: transparent;
  display: block;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.prediction__box-author {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-right: 8px;
}

.prediction__box-author-text {
  font-size: 11px;
  text-transform: uppercase;
  display: block;
}

.prediction__box-wrap {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.prediction__box-views {
  position: absolute;
  right: 24px;
  bottom: 16px;
  font-size: 14px;
  font-weight: normal;
  cursor: pointer;
}

@media only screen and (max-width: 1024px) {
  .prediction__box-views {
    right: 16px;
  }
}

@media only screen and (max-width: 1024px) {
  .prediction__box-views span {
    display: none;
    margin-left: -6px;
  }
}

.prediction__box-name {
  font-size: 11px;
  line-height: 12px;
  display: block;
  opacity: 0.6;
  text-transform: uppercase;
}

.prediction__box-arrow {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: 1px;
  margin-left: 3px;
  cursor: pointer;
}

@media only screen and (max-width: 1024px) {
  .prediction__box-arrow {
    display: none;
  }
}

.prediction__box-arrow_mobile {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .prediction__box-arrow_mobile {
    display: block;
  }
}

.prediction__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 42px;
  padding-bottom: 29px;
  margin-bottom: 42px;
  position: relative;
}

@media only screen and (max-width: 1024px) {
  .prediction__bottom {
    display: block;
    margin-top: 16px;
    padding-bottom: 40px;
  }
}

.prediction__bottom::after {
  content: "";
  position: absolute;
  right: -68px;
  bottom: 0;
  width: 100vw;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.14);
}

@media only screen and (max-width: 1024px) {
  .prediction__bottom::after {
    right: -13px;
  }
}

.prediction__bottom-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media only screen and (max-width: 1024px) {
  .prediction__bottom-wrap {
    margin-bottom: 32px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.prediction__button {
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  margin-right: 24px;
  text-align: left;
}

.prediction__button .agreeIcon {
  position: relative;
  top: 3px;
}

@media only screen and (max-width: 1024px) {
  .prediction__button {
    margin-right: 8px;
  }
}

.prediction__button.disable {
  opacity: 0.3;
  cursor: default;
}

.prediction__button.disable:hover,
.prediction__button.disable:active {
  background-color: #00ffa7;
}

.prediction__button.active {
  cursor: default;
}

.prediction__button.active:hover,
.prediction__button.active:active {
  background-color: #00ffa7;
}

.prediction__button_red {
  background-color: #f94343;
  fill: #fff;
}

@media only screen and (max-width: 1024px) {
  .prediction__button_red {
    margin-right: 0;
  }
}

.prediction__button_red:hover {
  background-color: #fb6969;
}

.prediction__button_red:active {
  background-color: #c73535;
}

.prediction__button_red .prediction__button-text {
  color: #fff;
}

.prediction__button_red .prediction__button-icon {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.prediction__button_red .prediction__button-counter {
  background-color: #d62c2c;
  color: #fff;
}

.prediction__button_red.disable:hover,
.prediction__button_red.disable:active {
  background-color: #f94343;
}

.prediction__button_red.active:hover,
.prediction__button_red.active:active {
  background-color: #f94343;
}

.prediction__button-icon {
  display: inline-block;
}

.prediction__button-text {
  display: inline-block;
  margin-left: 10px;
  color: #000;
  text-transform: uppercase;
  font-size: 14px;
}

@media only screen and (max-width: 1024px) {
  .prediction__button-text {
    margin-left: 2px;
  }
}

@media (max-width: 360px) {
  .prediction__button-text {
    font-size: 12px;
  }
}

.prediction__button-counter {
  font-size: 14px;
  padding: 0 10px;
  min-width: 48px;
  line-height: 44px;
  display: inline-block;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #00cb71;
  min-width: 48px;
}

@media only screen and (max-width: 1024px) {
  .prediction__button-counter {
    min-width: 40px;
    line-height: 40px;
    padding: 0;
  }
}

@media (max-width: 360px) {
  .prediction__button-counter {
    min-width: 32px;
    line-height: 32px;
    font-size: 12px;
  }
}

.prediction__wr {
  display: inline-block;
  padding: 0 0 0 16px;
  min-width: 152px;
  text-align: left;
}

@media only screen and (max-width: 1024px) {
  .prediction__wr {
    padding: 0 0 0 12px;
    min-width: 85px;
  }
}

@media (max-width: 360px) {
  .prediction__wr {
    min-width: 70px;
  }
}

.prediction__share-button {
  text-transform: uppercase;
  cursor: pointer;
  font-size: 14px !important;
  display: inline-block;
  margin: 0 auto;
}

.info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 1024px) {
  .info {
    margin-bottom: 12px;
  }
}

.info__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.info__author-icon {
  width: 32px;
  height: 32px;
  background-size: cover;
  background-position: center center;
  border-radius: 50%;
  background-repeat: no-repeat;
}

.info__text {
  margin-left: 12px;
}

.info__text-name {
  display: block;
  font-size: 12px;
  margin-bottom: 2px;
}

.info__text-date {
  display: block;
  font-size: 12px;
  color: #ffffff;
  opacity: 0.6;
  font-weight: 500;
}

.info__wrap {
  margin-right: -5px;
}

.info__tags {
  margin-right: 5px;
  margin-bottom: 8px;
}

@media only screen and (max-width: 1024px) {
  .info__tags {
    padding: 5px 9px;
    font-size: 12px;
  }
}

.related {
  padding-left: 24px;
}

.related__title {
  margin: 0;
  margin-bottom: 32px;
  padding: 0;
}

.related__row {
  margin: 32px 0;
  cursor: pointer;
}

.related__row:hover .related__text {
  color: #00ffa7;
  -webkit-transition: .2s;
  transition: .2s;
}

.related__row_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.related__breadcrumbs .breadcrumbs__text {
  font-size: 12px;
}

.related__wrap {
  width: 174px;
}

.related__pic {
  width: 64px;
  height: 64px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 10px;
  margin-top: 7px;
}

.related__text {
  display: block;
  font-size: 20px;
  margin: 4px 0 8px;
}

.related__author {
  display: block;
  color: #fff;
  opacity: 0.3;
  font-size: 11px;
}

.share {
  font-size: 14px;
  text-transform: uppercase;
  margin-left: auto;
}

@media only screen and (max-width: 1024px) {
  .share {
    text-align: center;
    margin-right: 22px;
  }
}

.share__text {
  margin-right: 24px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
  vertical-align: middle;
}

@media only screen and (max-width: 1024px) {
  .share__text {
    margin: 0 4px;
    display: inline-block;
  }
}

.share_hide {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .share_hide {
    display: none;
    max-width: 100%;
    text-align: center;
  }
}

.share__icon {
  display: inline-block;
  width: 16px;
  margin-right: 24px;
  position: relative;
  cursor: pointer;
  fill: #fff;
}

.share__icon svg {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.share__icon_vk:hover svg {
  fill: #4f78a3;
}

.share__icon_fb:hover svg {
  fill: #3a5a98;
}

.share__icon_tw:hover svg {
  fill: #00aeed;
}

@media only screen and (max-width: 1024px) {
  .share__icon {
    margin: 0 5px;
  }
}

.share__icon svg {
  vertical-align: middle;
}

.share-menu__hide-menu {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 8px;
  padding: 5px 0;
  display: block;
}

.share-menu__icon {
  fill: #fff;
  position: relative;
  top: 3px;
}

.share__wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: -24px;
}

.comment__author {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media only screen and (max-width: 1024px) {
  .comment__replies-form .comment__author {
    display: none;
  }
}

@media only screen and (max-width: 1024px) {
  .comment__form-wrap .comment__author {
    display: none;
  }
}

.comment__form {
  width: 100%;
  margin-left: 12px;
}

@media only screen and (max-width: 1024px) {
  .comment__form {
    margin-left: 0;
  }
}

.comment__form::after {
  content: '';
  position: absolute;
}

.comment__form textarea {
  background-color: transparent;
  border: solid 1px rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  outline: none;
  resize: none;
  color: #fff;
  width: 100%;
  padding: 12px 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  max-height: 88px;
}

@media only screen and (max-width: 1024px) {
  .comment__form textarea {
    max-height: 171px;
  }
}

.comment__form textarea:focus {
  background-color: #ffffff;
  color: #000;
  cursor: text;
}

@media only screen and (max-width: 1024px) {
  .comment__form textarea {
    height: 171px;
  }
}

.comment__form textarea:hover {
  border: solid 1px rgba(255, 255, 255, 0.2);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.comment__form textarea:focus {
  background-color: #ffffff;
  color: #000;
  border-bottom: 35px solid transparent;
}

.comment__form textarea:focus:hover {
  border-bottom: 35px solid transparent;
}

.comment__form textarea:-ms-input-placeholder {
  font-family: MuseoSans, Arial, sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
}

.comment__form textarea::-webkit-input-placeholder {
  font-family: MuseoSans, Arial, sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.3);
}

.comment__form textarea::-moz-placeholder {
  font-family: MuseoSans, Arial, sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.3);
}

.comment__form.js-go-registrate textarea:hover {
  cursor: default;
  border: solid 1px rgba(255, 255, 255, 0.13);
}

.comment__send {
  display: none;
}

.comment__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 42px;
}

.comment__replies-container .comment__wrap:last-child {
  margin-bottom: 0;
}

.comment__wrapper {
  margin-left: 12px;
  overflow: hidden;
  width: 100%;
}

@media only screen and (max-width: 1024px) {
  .comment__wrapper {
    width: calc(100vw - 106px);
    overflow: visible;
  }
}

.comment__name {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  cursor: default;
}

.comment__text {
  display: inline-block;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  margin: 8px 0;
  width: 95%;
  overflow: hidden;
}

.comment__date {
  display: block;
  font-size: 11px;
  opacity: 0.6;
  font-weight: 500;
}

.form__btn-wrap {
  display: none;
  margin-top: 16px;
}

@media only screen and (max-width: 1024px) {
  .form__btn-wrap {
    text-align: center;
  }
}

.form__btn {
  font-family: inherit;
  padding: 12px 24px;
}

.see-the-graphic:hover {
  text-decoration: underline;
}

.comment__replies-form .comment__wrap {
  margin-bottom: 0;
}

.comment__form {
  position: relative;
}

.comment__replies-form {
  margin-top: 40px;
}

@media only screen and (max-width: 1024px) {
  .comment__replies-form {
    margin-left: -40px;
  }
}

.comment__form-icons {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

textarea:focus + .comment__form-icons .comment__form-icon {
  fill: rgba(0, 0, 0, 0.4);
}

textarea:focus + .comment__form-icons .comment__form-icon--send {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

textarea:focus + .comment__form-icons .comment__form-icon--send:hover,
textarea:focus + .comment__form-icons .comment__form-icon--send:active {
  fill: #00ffa7;
}

textarea:focus + .comment__form-icons .comment__form-icon--reset:hover,
textarea:focus + .comment__form-icons .comment__form-icon--reset:active {
  fill: #F94343;
}

.comment__form-icon {
  display: inline-block;
  cursor: pointer;
  fill: rgba(255, 255, 255, 0.4);
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}

.comment__form-icon:first-child {
  margin-right: 18px;
}

.comment__form-icon--send {
  width: 16px;
  height: 14px;
}

@media only screen and (max-width: 1024px) {
  .comment__form-icon--send {
    width: 24px;
    height: 21px;
  }
}

.comment__form-icon--send:hover,
.comment__form-icon--send:active {
  fill: #00ffa7;
}

.comment__form-icon--reset {
  width: 14px;
  height: 14px;
}

@media only screen and (max-width: 1024px) {
  .comment__form-icon--reset {
    width: 21px;
    height: 21px;
  }
}

.comment__form-icon--reset:hover,
.comment__form-icon--reset:active {
  fill: #F94343;
}

.comment__wrapper {
  position: relative;
}

.comment__delete {
  display: none;
  fill: rgba(255, 255, 255, 0.4);
  position: absolute;
  top: 0;
  right: -1px;
  cursor: pointer;
}

.comment-owner .comment__delete {
  display: block;
}

.comment__reply-link {
  font-size: 13px;
  color: #00ffa7;
  margin-top: 8px;
  display: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.comment__reply-link.is-active {
  display: block;
}

.comment__reply-link-arrow {
  display: inline-block;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
  position: relative;
  top: 2px;
}

.is-open .comment__reply-link-arrow {
  -webkit-transform: rotateZ(0);
          transform: rotateZ(0);
  top: 4px;
}

.comment__tools {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 13px;
}

.comment__like {
  color: #00ffa7;
  margin: 0 25px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.comment__like-icon {
  width: 13px;
  height: 11px;
  display: inline-block;
  vertical-align: text-top;
  margin-right: 5px;
}

.is-active .comment__like-icon {
  fill: #00ffa7;
}

.comment__like-qty {
  display: inline-block;
}

.comment__reply {
  text-transform: uppercase;
  color: #00ffa7;
  cursor: pointer;
}

.comment__replies {
  margin-top: 39px;
  display: none;
}

.is-open + .comment__replies {
  display: block;
}

.is-open .comment__replies-count {
  display: none;
}

.comment__replies-container.is-active {
  display: block;
}

.comment__reset {
  display: none;
}

.template-area {
  overflow: hidden;
  width: 0;
  height: 0;
  position: relative;
  visibility: hidden;
}

.template-area div {
  position: absolute;
  left: -99999px;
}

.notifications-tooltip {
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  display: inline-block;
  padding: 3px 5.5px;
  position: absolute;
  width: 13px;
  text-align: center;
}

.user-profile-icon .notifications-tooltip {
  background-color: rgba(0, 255, 167, 0.3);
  color: #00ffa7;
  top: -13px;
  right: -5px;
  margin-left: 0;
}

.user-profile-icon__link .notifications-tooltip {
  position: static;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  margin-left: 5px;
}

.mobile-menu__link .notifications-tooltip {
  position: static;
  background-color: rgba(0, 255, 167, 0.3);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.notifications-dot-tooltip {
  width: 10px;
  height: 10px;
  background-color: #00ffa7;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 70%;
  display: none;
}

.notifications-dot-tooltip.is-active {
  display: block;
}

