@media (max-width: 480px) {
  #writecontainer {
    padding: 1rem;
  }
}
.comments {
  padding-bottom: 1rem;
}
@media (min-width: 1112px) {
  .comments {
    margin-left: 80px;
  }
}
.comments .comments-list {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.comments .comments-list.working {
  position: relative;
  padding-bottom: 50px;
}
.comments .comments-list.working:after {
  content: " ";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("../index/loading-red.svg") center center no-repeat;
  background-size: 55px;
  height: 50px;
  width: 100%;
}
.comments .name,
.comments .title,
.comments label {
  color: var(--color-text);
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: -0.3px;
}
.comments .name {
  color: var(--color-text);
  line-height: 1.8em;
}
.comments .name .desc,
.comments .name small {
  display: block;
  color: var(--color-text-secondary);
  font-weight: 400;
}
.comments .name .desc {
  font-size: 13px;
  font-size: 0.8125rem;
}
.comments .title {
  margin-top: 20px;
}
.comments .title .dropdown {
  position: relative;
  display: inline-block;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  padding: 5px 23px 5px 10px;
  border: 1px solid rgba(0, 0, 0, 0);
  border-bottom: 0 none;
  text-align: left;
}
.comments .title .dropdown.active {
  background: var(--color-surface);
  border-color: var(--color-border);
  box-shadow: 3px 6px 3px 0 var(--color-border);
}
.comments .title .dropdown.active:after {
  display: block;
  content: " ";
  background: var(--color-surface);
  width: 100%;
  height: 10px;
  z-index: 99;
  position: absolute;
  bottom: -3px;
  left: 0;
}
.comments .title .dropdown.active ul {
  display: block;
}
.comments .title .dropdown.active .arrow {
  transform: rotate(-180deg);
  margin-bottom: 5px;
}
.comments .title .dropdown .arrow {
  position: absolute;
  right: 0;
  top: 4px;
  background: url("../index/chevron-down.svg") right center no-repeat;
  background-size: 100%;
  width: 25px;
  height: 22px;
  display: inline-block;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.comments .title .dropdown svg,
.comments .title .dropdown path {
  fill: var(--color-fill);
}
.comments .title .dropdown ul {
  display: none;
  position: absolute;
  top: 90%;
  right: -1px;
  background: var(--color-surface);
  margin: 0;
  padding: 5px 0;
  list-style-type: none;
  width: 150px;
  border: 1px solid var(--color-border);
  box-shadow: 3px 6px 3px 0 var(--color-border);
  z-index: 9;
}
.comments .title .dropdown ul li {
  margin: 0;
}
.comments .title .dropdown ul li a {
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--color-text);
  display: block;
  padding: 4px 10px;
  font-weight: 400;
}
.comments .title .dropdown ul li a:hover {
  background-color: var(--color-border);
}
@media (min-width: 568px) {
  .comments .title {
    margin-top: 0;
    text-align: right;
  }
}
.comments .error,
.comments .nocomment {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  text-align: center;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6em;
  color: var(--color-text-secondary);
}
.comments .error a,
.comments .nocomment a {
  display: block;
}
.comments input[type="text"] {
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-text);
  height: auto;
  line-height: 1.4em;
  padding: 10px 20px;
  margin-bottom: 15px;
  font-weight: 400;
  border-radius: 0;
  border: 0 none;
  background: var(--color-border);
}
.comments input[type="text"]:hover,
.comments input[type="text"]:focus,
.comments input[type="text"]:active {
  background: var(--color-border-t);
}
.comments textarea {
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.4em;
  padding: 20px;
  margin-bottom: 0;
  font-weight: 400;
  border-radius: 0;
  border: 0 none;
  background: var(--color-border);
  resize: none;
  height: 120px;
  min-height: 120px;
  max-height: 300px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.comments textarea:hover,
.comments textarea:focus,
.comments textarea:active {
  background: var(--color-border-t);
}
.comments .icons a {
  display: inline-block;
  margin-right: 5px;
}
.comments .icons a img,
.comments .icons a svg {
  max-width: 20px;
}
.comments .btn {
  padding: 3px 15px;
}
.comments .comment {
  position: relative;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  padding-left: 55px;
  color: var(--color-text);
  border-top: 1px solid var(--color-border);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 480px) {
  .comments .comment > .row {
    flex-direction: row;
  }
}
.comments .comment .row-write {
  margin-top: 2rem;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  padding: 2rem 1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}
@media (max-width: 480px) {
  .comments .comment .row-write {
    padding: 1rem;
  }
}
.comments .comment > .row:first-child .column:nth-child(2) {
  padding-left: 0;
}
.comments .comment .avatar {
  position: absolute;
  left: 4px;
  top: 20px;
  width: 40px;
  height: 40px;
  font-weight: 700;
  font-size: 15px;
  font-size: 0.9375rem;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  color: var(--color-text-secondary);
  background: var(--color-border);
  border: 1px solid var(--color-border);
  cursor: default;
  text-align: center;
  line-height: 1.3;
  overflow: hidden;
}
.comments .comment .avatar img {
  width: 100%;
}
.comments .comment .avatar .firstchar {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  color: var(--color-white);
  background: var(--color-fill);
}
@media (max-width: 480px) {
  .comments .comment .avatar {
    width: 40px;
    height: 40px;
  }
  .comments .comment .avatar .firstchar {
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 2em;
  }
}
.comments .comment .info {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.3px;
}
.comments .comment .info .verified {
  display: inline-block;
  width: 18px;
  height: 18px;
  position: relative;
  top: 4px;
  margin-left: 1px;
  background: url("../index/verified.svg") center center no-repeat;
  background-size: 90%;
}
.comments .comment .info .diamond {
  display: inline-block;
  width: 18px;
  height: 18px;
  position: relative;
  top: 4px;
  margin-left: 1px;
  background: url("../index/gem.svg") center center no-repeat;
  background-size: 90%;
}
.comments .comment .info .date {
  display: inline-block;
  margin-left: 5px;
  line-height: 1.3em;
  letter-spacing: -0.3px;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-tertiary);
}
.comments .comment p {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6em;
  margin-bottom: 0.5rem;
  letter-spacing: -0.2px;
}
.comments .comment .actions {
  white-space: nowrap;
}
.comments .comment .actions a {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  padding: 3px 0 3px 18px;
  margin-right: 6px;
  line-height: 1em;
  letter-spacing: -0.3px;
  background-size: 16px 16px;
}
.comments .comment .actions a .count {
  display: inline-block;
  padding: 2px 4px;
  min-width: 16px;
  text-align: center;
  color: var(--color-text);
  background: var(--color-border);
  font-size: 11px;
  font-size: 0.6875rem;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.comments .comment .actions a .count.hidden {
  display: none;
}
@media (max-width: 480px) {
  .comments .comment .actions a .count {
    padding: 2px;
  }
}
.comments .comment .actions a:hover,
.comments .comment .actions a.checked {
  color: var(--text-secondary);
}
.comments .comment .actions a.like {
  background: url("../index/like.svg") 0 4px no-repeat;
}
.comments .comment .actions a.like:hover,
.comments .comment .actions a.like.checked {
  background-image: url("../index/like.svg");
}
.comments .comment .actions a.like .count {
  color: var(--color-white);
  background: #4caf50;
}
.comments .comment .actions a.dislike {
  background: url("../index/dislike.svg") 0 3px no-repeat;
}
.comments .comment .actions a.dislike:hover,
.comments .comment .actions a.dislike.checked {
  background-image: url("../index/dislike.svg");
}
.comments .comment .actions a.reply {
  background: url("../index/reply.svg") 0 2px no-repeat;
}
.comments .comment .actions a.reply:hover {
  background: url("../index/reply.svg") 0 0 no-repeat;
}
.comments .comment .actions a.reply .cancel {
  display: none;
}
@media (max-width: 480px) {
  .comments .comment .actions a {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.comments .comment.answer {
  display: none;
  padding-left: 70px;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  margin-left: 1.5rem;
  margin-top: 0;
  margin-bottom: 0;
  border-top: 0;
  border-left: 1px solid var(--color-dark-grey);
}
.comments .comment.answer:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 40px;
  height: 1px;
  width: 18px;
  border-top: 1px solid var(--color-dark-grey);
}
.comments .comment.answer:after {
  content: "";
  display: block;
  background: var(--color-dark-grey);
  position: absolute;
  left: -8px;
  top: 33px;
  width: 15px;
  height: 15px;
  border: 4px solid var(--color-background);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}
.comments .comment.answer .actions .reply {
  display: none;
}
.comments .comment.answer .avatar {
  left: 20px;
}
@media (max-width: 667px) {
  .comments .comment.answer {
    margin-left: 1.5rem;
  }
}
.comments .comment:not(.answer):last-child:before {
  display: none;
}
.comments .comment.active .actions a.reply .cancel {
  display: block;
}
.comments .comment.active .actions a.reply .submit {
  display: none;
}
.comments .comment .report {
  float: right;
  color: var(--color-text-tertiary);
  display: none;
}
.comments .comment:hover .report {
  display: block;
}
.comments .item.hidemax {
  display: none;
}
.comments .item .show-more-answers .more {
  display: block;
}
.comments .item .show-more-answers .less {
  display: none;
}
.comments .item.expanded .comment:not(.answer):before {
  content: "";
  display: block;
  position: absolute;
  left: 24px;
  top: 60px;
  height: 100%;
  width: 1px;
  border-left: 1px solid var(--color-dark-grey);
}
.comments .item.expanded .comment.answer {
  display: block;
}
.comments .item.expanded .show-more-answers {
  margin-top: 10px;
  margin-left: 15px;
}
.comments .item.expanded .show-more-answers .less {
  display: block;
}
.comments .item.expanded .show-more-answers .more {
  display: none;
}
@media (max-width: 480px) {
  .comments > .row > .column > .row {
    flex-direction: row;
  }
}
.comments .show-more-answers,
.comments .show-more-comments {
  display: block;
  margin-top: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  font-weight: 500;
  line-height: 1.2em;
  letter-spacing: -0.5px;
  background: url("../index/chevron-down-thin.svg") center 70px no-repeat;
  background-size: 50px;
  border-top: 1px solid var(--color-border);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.comments .show-more-answers:hover,
.comments .show-more-comments:hover {
  color: var(--color-fill);
  background-position: center 74px;
}
.comments .show-more-answers.nomore,
.comments .show-more-comments.nomore {
  background: none;
  padding-bottom: 25px;
}
.comments .show-more-answers .counter,
.comments .show-more-comments .counter {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.3em;
  color: var(--color-text-secondary);
}
.comments .show-more-answers img,
.comments .show-more-answers svg,
.comments .show-more-comments img,
.comments .show-more-comments svg {
  width: 16px;
  height: 21px;
  vertical-align: top;
}
.comments .show-more-answers i,
.comments .show-more-comments i {
  font-size: 24px;
  font-size: 1.5rem;
}
@media (max-width: 480px) {
  .comments .show-more-answers,
  .comments .show-more-comments {
    margin-bottom: 0;
    border-bottom: 0;
  }
}
.comments .show-more-answers {
  font-size: 13px;
  font-size: 0.8125rem;
  text-align: left;
  margin-top: 0;
  margin-left: 53px;
  padding: 3px 10px 3px 4px;
  line-height: 1em;
  border-top: 0 none;
  background: none;
  background: var(--color-border);
  display: inline-block;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  border-top: 0 none;
}
.comments .show-more-answers i {
  vertical-align: middle;
  font-size: 20px;
  font-size: 1.25rem;
}
@media (min-width: 1112px) {
  .related {
    margin-left: 80px;
  }
}
.avatars {
  height: 485px;
  overflow-x: hidden;
}
@media (max-width: 667px) {
  .avatars {
    height: calc(100vh - 80px);
  }
}
.avatars ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  max-width: 600px;
}
.avatars ul li {
  float: left;
  width: 50%;
  margin: 0;
}
.avatars ul li a {
  display: flex;
  padding: 0;
  margin: 5px;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.avatars ul li a img {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  width: 100%;
  height: auto;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.avatars ul li a img:hover {
  transform: scale(1.1);
}
@media (max-width: 375px) {
  .avatars ul li {
    width: 33%;
  }
}
@media (min-width: 425px) {
  .avatars ul li {
    width: 33%;
  }
}
@media (min-width: 568px) {
  .avatars ul li {
    width: 25%;
  }
}
@media (min-width: 667px) {
  .avatars ul li {
    width: 20%;
  }
}
@media (min-width: 768px) {
  .avatars ul li {
    width: 25%;
  }
}
@media (min-width: 992px) {
  .avatars ul li {
    width: 25%;
  }
}
@media (min-width: 1112px) {
  .avatars ul li {
    width: 20%;
  }
}
.avatars ul:after {
  display: block;
  content: " ";
  clear: both;
}
.comment-row {
  position: relative;
}
.comment-row .avatar {
  width: 48px;
  height: 48px;
  font-weight: 700;
  font-size: 15px;
  font-size: 0.9375rem;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  color: var(--color-text-secondary);
  background: var(--color-border);
  border: 1px solid var(--color-border);
  cursor: default;
  text-align: center;
  line-height: 3.2em;
  overflow: hidden;
}
.comment-row .selectedavatar {
  position: relative;
  width: 120px;
  float: left;
}
@media (max-width: 667px) {
  .comment-row .selectedavatar {
    width: 80px;
  }
}
.comment-row .selectedavatar img,
.comment-row .selectedavatar svg {
  width: 100%;
  border: 1px solid #c1c4ca;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.comment-row .selectedavatar .remove {
  display: block;
  width: 20px;
  height: 20px;
  text-align: center;
  position: absolute;
  right: -7px;
  top: 20px;
  background: var(--color-fill) url("../index/close-white.svg") center center
    no-repeat;
  background-size: 12px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.comment-row .selectedavatar .remove:hover {
  transform: scale(0.9);
}
.comment-row .selectedavatar .remove span {
  display: none;
}
.comment-row .icon-selector {
  position: absolute;
  right: 0;
  top: 0;
}
.comment-row .icon-selector a {
  display: inline-block;
}
.comment-row .icon-selector a i {
  font-size: 24px;
  font-size: 1.5rem;
}
.comment-row.active .richtext {
  margin-left: 140px;
}
@media (max-width: 667px) {
  .comment-row.active .richtext {
    margin-left: 90px;
  }
}
.emojilist {
  margin-top: 0;
}
@media (min-width: 768px) {
  .emojilist {
    max-width: 360px;
  }
}
.emojilist .row {
  width: 100%;
  margin: 0;
}
.emojilist .row .column {
  padding: 0;
}
.emojilist .titles {
  display: flex;
  flex-direction: row;
}
.emojilist .titles .title {
  flex: 1 1 auto;
  padding-bottom: 6px;
  border-bottom: 4px solid var(--color-border);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.emojilist .titles .title.active {
  border-color: var(--color-fill);
}
.emojilist .titles .title.active span.emoji {
  background: var(--color-border);
}
.emojilist .titles .title a {
  display: block;
  text-align: center;
  line-height: 1.4em;
  margin: 0 2px 0 2px;
  font-size: 12px;
  font-size: 0.75rem;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.emojilist .titles .title a span.emoji {
  display: block;
  font-size: 20px;
  margin-bottom: 5px;
  padding: 15px 0;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.emojilist .titles .title a:hover span.emoji {
  background: var(--color-border);
}
.emojilist .emojis {
  display: none;
  padding: 0;
  height: 335px;
}
@media (max-width: 667px) {
  .emojilist .emojis {
    height: calc(100vh - 150px);
  }
}
.emojilist .emojis.active {
  display: block;
}
.emojilist .emojis .name {
  font-weight: 600;
  padding: 15px 12px;
  margin: 0 0 5px 0;
  border-bottom: 2px solid var(--color-border);
}
.emojilist .emojis a {
  display: inline-block;
  width: 50px;
  height: 45px;
  text-align: center;
  font-size: 20px;
  line-height: 2em;
  border: 2px solid rgba(0, 0, 0, 0);
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.emojilist .emojis a:hover,
.emojilist .emojis a:active {
  transform: scale(1.05);
  border-color: var(--color-slide);
}
.commentbtn {
  float: right;
  margin-left: 10px;
}
.writecomment .comment-row {
  margin-top: 1rem;
}
.writecomment .comment-row textarea {
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.4em;
  padding: 20px;
  margin-bottom: 0;
  font-weight: 400;
  border-radius: 0;
  border: 0 none;
  background: var(--color-border);
  resize: none;
  height: 120px;
  min-height: 120px;
  max-height: 300px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 480px) {
  .writecomment .column-33 {
    flex: 1 1 auto !important;
    max-width: 100% !important;
  }
}
.hotnews .error,
.hotnews .loading {
  text-align: center;
  padding: 40px;
  margin-top: 20px;
  min-height: 100px;
  background: var(--color-background);
}
.hotnews .error img,
.hotnews .error svg,
.hotnews .loading img,
.hotnews .loading svg {
  width: 60px;
}
.hotnews .error {
  color: var(--color-red);
}
.hotnews .loaded .loading {
  display: none;
}
.hotnews .item {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3em;
  letter-spacing: -0.3px;
  display: flex;
  color: var(--color-black-white);
  align-items: center;
}
.hotnews .item img {
  width: 100%;
  max-width: 114px;
  min-width: 114px;
  height: 65px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hotnews .item:hover .number {
  color: var(--color-text);
}
.hotnews .item:hover img {
  -webkit-filter: brightness(0.6);
  filter: brightness(0.6);
}
.hotnews .item .text {
  display: block;
  width: 100%;
  overflow: hidden;
  padding-left: 10px;
  padding-right: 10px;
}
.hotnews .item .text .title {
  display: block;
  max-height: 42px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hotnews .item .time-ago,
.hotnews .item .watchcount,
.hotnews .item .info {
  background: url("../index/comments-default.svg") 0 2px no-repeat;
  background-size: 17px;
  display: inline-block;
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  padding: 0 0 0 19px;
  letter-spacing: -0.5px;
  margin-top: 3px;
}
.hotnews .item .time-ago {
  background: url("../index/clock.svg") 0 3px no-repeat;
  background-size: 13px;
  padding: 0 0 0 17px;
  margin-top: 0;
  display: block;
}
.hotnews .item .watchcount {
  background: url("../index/watch.svg") 0 2px no-repeat;
  background-size: 16px;
}
.hotnews .item .published {
  display: inline-block;
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  padding: 0;
  letter-spacing: -0.5px;
  margin-top: 3px;
}
.hotnews .item .new {
  display: inline-block;
  color: var(--color-text-secondary);
  background: var(--color-border);
  font-size: 12px;
  font-size: 0.75rem;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  line-height: 1em;
  padding: 4px;
  letter-spacing: -0.5px;
}
.hotnews .item .number {
  position: absolute;
  display: none;
  width: 17px;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  text-align: right;
  letter-spacing: -3px;
  font-size: 24px;
  font-size: 1.5rem;
  color: var(--color-text-tertiary);
  font-weight: 500;
}
.hotnews .item .time {
  position: absolute;
  left: 125px;
  bottom: 7px;
  padding: 0 5px;
  letter-spacing: -0.5px;
  line-height: 1.5em;
  font-size: 12px;
  font-size: 0.75rem;
  color: var(--color-white);
  background: rgba(0, 0, 0, 0.7);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.hotnews .item:last-child {
  border-bottom: 0 none;
}
.hotnews .sidebar-hotnews .loading {
  background: url("../index/loading-red.svg") center center no-repeat;
  background-size: 60px;
}
@media (max-width: 667px) {
  .hotnews {
    display: none;
  }
}
html[data-theme="dark"] .hotnews a.item .info,
body[data-theme="dark"] .hotnews a.item .info {
  background: url(../index/comments-dark.svg) 0 2px no-repeat;
  background-size: 17px;
}
#video-frame iframe {
  position: relative;
  z-index: 1;
}
@media (min-width: 320px) {
  #video-frame iframe {
    max-height: 163px;
  }
}
@media (min-width: 375px) {
  #video-frame iframe {
    max-height: 194px;
  }
}
@media (min-width: 425px) {
  #video-frame iframe {
    max-height: 222px;
  }
}
@media (min-width: 480px) {
  #video-frame iframe {
    max-height: 253px;
  }
}
@media (min-width: 568px) {
  #video-frame iframe {
    max-height: 307px;
  }
}
@media (min-width: 576px) {
  #video-frame iframe {
    max-height: 307px;
  }
}
@media (min-width: 667px) {
  #video-frame iframe {
    max-height: 340px;
  }
}
@media (min-width: 768px) {
  #video-frame iframe {
    max-height: 395px;
  }
}
@media (min-width: 820px) {
  #video-frame iframe {
    max-height: 425px;
  }
}
@media (min-width: 992px) {
  #video-frame iframe {
    max-height: 342px;
  }
}
@media (min-width: 1024px) {
  #video-frame iframe {
    max-height: 353px;
  }
}
@media (min-width: 1112px) {
  #video-frame iframe {
    max-height: 387px;
  }
}
@media (min-width: 1194px) {
  #video-frame iframe {
    max-height: 441px;
  }
}
@media (min-width: 320px) {
  #video-frame {
    max-height: 163px;
  }
}
@media (min-width: 375px) {
  #video-frame {
    max-height: 194px;
  }
}
@media (min-width: 425px) {
  #video-frame {
    max-height: 222px;
  }
}
@media (min-width: 480px) {
  #video-frame {
    max-height: 253px;
  }
}
@media (min-width: 568px) {
  #video-frame {
    max-height: 307px;
  }
}
@media (min-width: 576px) {
  #video-frame {
    max-height: 307px;
  }
}
@media (min-width: 667px) {
  #video-frame {
    max-height: 340px;
  }
}
@media (min-width: 768px) {
  #video-frame {
    max-height: 395px;
  }
}
@media (min-width: 820px) {
  #video-frame {
    max-height: 425px;
  }
}
@media (min-width: 992px) {
  #video-frame {
    max-height: 342px;
  }
}
@media (min-width: 1024px) {
  #video-frame {
    max-height: 353px;
  }
}
@media (min-width: 1112px) {
  #video-frame {
    max-height: 387px;
  }
}
@media (min-width: 1194px) {
  #video-frame {
    max-height: 441px;
  }
}
#article-slider {
  max-width: 785px;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: var(--color-black);
}
#article-slider * {
  box-sizing: border-box;
}
#article-slider .swiper {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
#article-slider .swiper .swiper-slide a {
  display: flex;
  position: relative;
}
#article-slider .swiper .swiper-slide a img {
  width: 100%;
  height: auto;
}
#article-slider .swiper .swiper-slide a .content {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 9;
  padding: 3rem 3rem 5rem 3rem;
  background: rgba(0, 0, 0, 0.5);
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.7) 55%,
    rgba(0, 0, 0, 0) 100%
  );
}
#article-slider .swiper .swiper-slide a .content .title {
  display: inline-block;
  color: var(--color-white);
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.3em;
  font-weight: 800;
  padding: 0.3rem 0.5rem;
}
@media (max-width: 568px) {
  #article-slider .swiper .swiper-slide a .content .title {
    display: inline;
  }
}
@media (max-width: 375px) {
  #article-slider .swiper .swiper-slide a .content .title {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
#article-slider .swiper .swiper-slide a .content .desc {
  display: block;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.3em;
  margin-top: 0.5rem;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 480px) {
  #article-slider .swiper .swiper-slide a .content .desc {
    font-size: 17px;
    font-size: 1.0625rem;
    -webkit-line-clamp: 2;
  }
}
@media (max-width: 568px) {
  #article-slider .swiper .swiper-slide a .content {
    padding: 1.5rem 1.5rem 2.7rem 1.5rem;
  }
}
#article-slider .swiper .swiper-button-prev,
#article-slider .swiper .swiper-button-next {
  background-size: 10px;
  background-color: var(--color-esh-red);
  left: 10px;
  height: 40px;
  width: 25px;
}
#article-slider .swiper .swiper-button-prev:after,
#article-slider .swiper .swiper-button-next:after {
  font-size: 16px;
  font-size: 1rem;
}
#article-slider .swiper .swiper-button-next {
  left: auto;
  right: 10px;
}
#article-slider .swiper .swiper-pagination {
  position: absolute;
  display: flex;
  width: 100.1%;
  bottom: 15px;
  justify-content: center;
  gap: 2px;
  z-index: 99;
}
@media (min-width: 668px) {
  #article-slider .swiper .swiper-pagination {
    gap: 0;
    bottom: 0;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
}
#article-slider .swiper .swiper-pagination .swiper-pagination-bullet {
  cursor: pointer;
  position: relative;
  height: 100%;
  min-width: 10px;
  min-height: 10px;
  line-height: 2.4em;
  margin: 0;
  color: var(--color-white);
  border-radius: 0;
  background: rgba(0, 0, 0, 0);
  opacity: 1;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}
@media (min-width: 668px) {
  #article-slider .swiper .swiper-pagination .swiper-pagination-bullet {
    flex-basis: 100%;
  }
}
@media (max-width: 767px) {
  #article-slider .swiper .swiper-pagination .swiper-pagination-bullet {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media (max-width: 667px) {
  #article-slider .swiper .swiper-pagination .swiper-pagination-bullet {
    border: 1px solid rgba(255, 255, 255, 0.15);
  }
}
@media (max-width: 667px) {
  #article-slider .swiper .swiper-pagination .swiper-pagination-bullet span {
    display: none;
  }
}
#article-slider
  .swiper
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color-esh-red);
}
#article-slider
  .swiper
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  bottom: 100%;
  left: 50%;
  border: solid rgba(0, 0, 0, 0);
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(213, 0, 0, 0);
  border-bottom-color: var(--color-esh-red);
  border-width: 6px;
  margin-left: -6px;
  z-index: 9;
}
@media (max-width: 667px) {
  #article-slider
    .swiper
    .swiper-pagination
    .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
    display: none;
  }
}
#article-slider .swiper:hover .swiper-button-prev,
#article-slider .swiper:hover .swiper-button-next {
  opacity: 1;
}
.fslightbox-slide-btn-container {
  display: none !important;
}

.banner img {
  width: 100%;
  height: auto;
}
#articles {
  margin-top: 1.5rem;
}
@media (max-width: 1024px) {
  #articles .post > .row > .column > .row {
    width: 100%;
  }
}
@media (min-width: 1112px) {
  #articles .post > .row > .column > .row .column-article {
    max-width: 788px;
  }
}
#articles .post > .row > .column > .row .column-social {
  max-width: 82px;
}
#articles .post .social {
  position: -webkit-sticky;
  position: sticky;
  top: 70px;
  z-index: 9;
  -webkit-transition: 0.6s ease-in-out;
  -moz-transition: 0.6s ease-in-out;
  -o-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}
#articles .post .social ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
#articles .post .social ul li {
  text-align: center;
  cursor: default;
  margin-bottom: 10px;
}
#articles .post .social ul li a:active {
  position: relative;
  top: 1px;
}
#articles .post .social ul li a.fontsize {
  display: inline-block;
  width: 25px;
  margin: 0 auto;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-secondary);
}
#articles .post .social ul li a.fontsize:hover {
  color: var(--color-text);
}
@media (max-width: 667px) {
  #articles .post .social ul li a.fontsize {
    font-size: 16px;
    font-size: 1rem;
  }
}
#articles .post .social ul li .title {
  font-size: 12px;
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  line-height: 1em;
  margin-top: 35px;
  margin-bottom: 12px;
}
@media (max-width: 667px) {
  #articles .post .social ul li .title {
    display: none;
  }
}
#articles .post .social ul li .comment-count {
  display: block;
  min-width: 30px;
  max-width: 40px;
  color: var(--color-white);
  background: var(--color-fill);
  font-weight: 400;
  margin: 0 auto;
  font-size: 11px;
  font-size: 0.6875rem;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  line-height: 1.6em;
  overflow: hidden;
}
#articles .post .social ul li .comment-count .text {
  display: none;
}
#articles .post .social ul li a.icon {
  display: block;
  width: 24px;
  height: 24px;
  margin: 0 auto;
  margin-bottom: 15px;
}
#articles .post .social ul li a.icon > span {
  display: none;
}
#articles .post .social ul li a.icon.whatsapp {
  background: url("../index/whatsapp.svg") center center no-repeat;
  background-size: 100%;
}
@media (max-width: 667px) {
  #articles .post .social ul li a.icon.whatsapp {
    background-color: #2cb742;
    background-size: 78%;
  }
}
#articles .post .social ul li a.icon.facebook {
  background: url("../index/facebook.svg") center center no-repeat;
  background-size: 100%;
}
@media (max-width: 667px) {
  #articles .post .social ul li a.icon.facebook {
    background-color: #1093f4;
    background-size: 78%;
  }
}
#articles .post .social ul li a.icon.twitter {
  background: url("../index/twitter-new.svg") center center no-repeat;
  background-size: 100%;
}
@media (max-width: 667px) {
  #articles .post .social ul li a.icon.twitter {
    background-color: #55acee;
    background-size: 78%;
  }
}
#articles .post .social ul li a.icon.copy {
  background: url("../index/link.svg") center center no-repeat;
  background-size: 100%;
}
@media (max-width: 667px) {
  #articles .post .social ul li a.icon.copy {
    background-color: #eee;
    background-size: 45%;
  }
}
@media (max-width: 667px) {
  #articles .post .social ul li a.icon {
    display: inline-block;
    overflow: hidden;
    position: relative;
    top: 4px;
    margin: 0;
    margin-bottom: 0;
    margin-left: 1px;
    width: 35px;
    height: 27px;
    border-radius: 2px;
    box-shadow: 0 1px 3px 0 rgba(50, 50, 50, 0.3);
  }
  #articles .post .social ul li a.icon:before,
  #articles .post .social ul li a.icon:after {
    display: none;
  }
}
#articles .post .social .comment-shortcut {
  cursor: pointer;
}
@media (max-width: 668px) {
  #articles .post .social .comment-shortcut .comment-count {
    display: none;
  }
}
@media (max-width: 667px) {
  #articles .post .social .comment-shortcut {
    display: none;
  }
}
@media (max-width: 667px) {
  #articles .post .social {
    position: static;
  }
  #articles .post .social.sticky-hide {
    top: 0 !important;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  #articles .post .social ul {
    display: flex;
    align-items: center;
    margin: 0 1rem;
  }
  #articles .post .social ul li {
    margin-bottom: 0;
    text-align: right;
  }
  #articles .post .social ul li:first-child {
    margin-right: 10px;
  }
}
@media (max-width: 667px) and (max-width: 667px) {
  #articles .post .social ul {
    margin: 0 0.5rem;
  }
}
#articles .post .social .copier {
  float: right;
  display: block;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}
#articles .post .social .copier input {
  height: 1px;
  opacity: 0;
  overflow: hidden;
  margin: 0;
}
@media (min-width: 1112px) {
  #articles .sidebar {
    display: block;
    max-width: 410px;
  }
}
@media (max-width: 667px) {
  #articles {
    margin-top: 0;
  }
}
.article-info {
  color: var(--color-text-secondary);
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  max-width: 700px;
}
.article-info ul {
  margin: 0 !important;
  padding: 0;
  height: 29px;
  list-style-type: none;
  display: flex;
}
.article-info ul li {
  letter-spacing: -0.2px;
  padding: 3px 5px !important;
  margin: 0 !important;
  cursor: default;
  white-space: nowrap;
}
.article-info ul li.sep {
  display: block;
  width: 13px;
  min-width: 13px;
  background: url("../index/chevron-right.svg") center center no-repeat;
  background-size: 25px;
}
.article-info ul li:first-child {
  padding-left: 0;
}
.article-info ul li:last-child {
  border-right: 0 none;
  border-left: 0 none;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.article-info ul li a {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.article-info ul li a span {
  font-size: 80%;
}
.article-info .google-news {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.article-info .google-news .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 5px;
  width: 120px;
  height: 30px;
  margin-top: 0;
  padding: 0 15px;
  background: var(--color-surface);
  background-size: 70%;
  border: 1px solid var(--color-border);
}
@media (max-width: 375px) {
  .article-info .google-news .icon {
    width: 100px;
    background-position: center 8px;
  }
}
@media (max-width: 667px) {
  .article-info {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
.article-title h1 {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.2em;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin-bottom: 1.5rem;
  color: var(--color-black-white);
}
@media (max-width: 768px) {
  .article-title h1 {
    font-size: 28px;
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
}
.article-title .desc {
  position: relative;
  margin-bottom: 2rem;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.3em;
  font-weight: 600;
  color: var(--color-black-white);
  letter-spacing: -0.2px;
}
@media (max-width: 768px) {
  .article-title .desc {
    font-size: 21px;
    font-size: 1.3125rem;
  }
}
.article-date {
  color: var(--color-text-secondary);
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.article-date > span {
  display: inline-block;
}
.article-date > span:nth-child(2) {
  border-left: 1px solid var(--color-border);
  padding-left: 10px;
  margin-left: 8px;
}
@media (max-width: 568px) {
  .article-date > span {
    display: block;
  }
  .article-date > span:nth-child(2) {
    border-left: 0 none;
    padding-left: 0;
    margin-left: 0;
  }
}
.article-share {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  background: var(--color-background);
}
@media (max-width: 568px) {
  .article-share {
    padding: 0 1rem;
  }
}
.article-share .google-news {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.article-share .google-news .text {
  margin-right: 5px;
}
@media (max-width: 480px) {
  .article-share .google-news .text {
    display: none;
  }
}
.article-share .google-news .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 30px;
  margin-top: 0;
  padding: 0 15px;
  background: var(--color-surface);
  background-size: 70%;
  border: 1px solid var(--color-border);
}
@media (max-width: 375px) {
  .article-share .google-news .icon {
    width: 90px;
    padding: 0 5px;
  }
}
.article-share .social-links {
  display: flex;
  gap: 5px;
  align-items: center;
}
.article-share .social-links a {
  min-width: 60px;
  min-height: 26px;
  border-radius: 3px;
  filter: none;
  opacity: 1;
  background-position: center center;
}
@media (max-width: 480px) {
  .article-share .social-links a {
    min-width: 50px;
  }
}
@media (max-width: 375px) {
  .article-share .social-links a {
    min-width: 35px;
  }
}
.article-share .social-links a.whatsapp {
  background-color: #2cb742;
}
.article-share .social-links a.facebook {
  background-color: #1093f4;
}
.article-share .social-links a.twitter {
  background-color: #000;
}
.article-share .social-links a.copy {
  background: #394f99 url("../index/copy.svg") center center no-repeat;
  background-size: 16px;
}
.article-tags .title {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  letter-spacing: -0.2px;
  margin-right: 5px;
}
.article-tags a {
  display: inline-block;
  padding: 8px 15px;
  margin-right: 2px;
  margin-bottom: 5px;
  line-height: 1.3em;
  letter-spacing: -0.5px;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  background: var(--color-border-t);
  border-radius: 20px;
}
.article-gnews {
  margin-top: 30px;
  display: flex;
}
@media (max-width: 667px) {
  .article-gnews {
    margin: 25px 15px;
  }
}
.article-tags {
  white-space: nowrap;
  overflow-y: hidden;
  margin-bottom: 6px;
}
.news-source {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.5px;
}
.article-author {
  position: relative;
  border-top: 1px solid var(--color-border);
  margin-top: 20px;
  padding-top: 20px;
  padding-bottom: 10px;
  padding-left: 70px;
  cursor: default;
}
.article-author .avatar {
  display: block;
  position: absolute;
  left: 8px;
  top: 15px;
  width: 48px;
  height: 48px;
  background: var(--color-border-t);
  box-shadow: rgba(0, 0, 0, 0.1) 0 10px 50px;
  overflow: hidden;
  border-radius: 50%;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.article-author .avatar img {
  width: 100%;
  height: auto;
  object-fit: contain;
  padding: 0;
}
.article-author .name {
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: -0.3px;
  line-height: 1.4em;
}
.article-author .social-links {
  margin-top: 7px;
}
.article-author:hover .avatar {
  box-shadow: rgba(60, 64, 67, 0.3) 0 1px 2px 0,
    rgba(60, 64, 67, 0.15) 0 1px 3px 1px;
}
@media (min-width: 568px) {
  .article-author {
    display: flex;
    align-items: center;
  }
  .article-author .social-links {
    border-top: 0 none;
    border-left: 1px solid var(--color-border);
    padding: 10px 0 10px 15px;
    margin-left: 20px;
  }
}
.article-body {
  position: relative;
  color: var(--color-text);
}
.article-body img {
  width: 100% !important;
}
@media (max-width: 667px) {
  .article-body img {
    width: 100% !important;
    /* padding: 0.8rem; */
    background: var(--color-background);
  }
  .article-body figure.image img {
    width: 100% !important;
    padding: 0;
  }
}
.article-body.img-full-width img,
.article-body.bio img {
  width: 100% !important;
}
.article-body.img-full-width p img,
.article-body.bio p img {
  width: 100% !important;
}
@media (max-width: 667px) {
  .article-body.img-full-width p img,
  .article-body.bio p img {
    width: calc(100% + 2rem) !important;
  }
}
.article-body h1 {
  font-size: 22px;
  font-size: 1.375rem;
}
.article-body #articledesc {
  position: relative;
  margin-bottom: 2rem;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.3em;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: -0.2px;
}
@media (max-width: 768px) {
  .article-body #articledesc {
    font-size: 21px;
    font-size: 1.3125rem;
  }
}
.article-body h2,
.article-body h3,
.article-body h4,
.article-body h5,
.article-body h6 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.4em;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .article-body h2,
  .article-body h3,
  .article-body h4,
  .article-body h5,
  .article-body h6 {
    font-size: 22px;
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
  }
}
.article-body h6 {
  font-size: 22px;
  font-size: 1.375rem;
}

.article-body a:hover {
  text-decoration: none;
}
.article-body a.foto-galeri,
.article-body a.video-galeri {
  display: block;
  padding: 10px 15px 10px 30px;
  font-weight: 600;
  line-height: 1.2em;
  letter-spacing: -0.5px;
  color: var(--color-white);
  text-decoration: none;
}
.article-body a.foto-galeri {
  background: var(--color-background-dark) url(../index/camera-red.svg) 10px
    15px no-repeat;
  background-size: 15px;
}
.article-body a.video-galeri {
  background: var(--color-background-dark) url(../index/play-red.svg) 10px 15px
    no-repeat;
  background-size: 15px;
}
.article-body .caption {
  font-size: 12px;
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  margin-top: -20px;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.article-body .ad {
  margin-bottom: 1.5rem;
}
.article-body .ad img {
  display: flex;
  width: 100%;
  height: auto;
}
.article-body figure.image {
  position: relative;
  padding: 0;
  margin: 0;
  display: flex;
  margin-bottom: 0.3rem;
}
.article-body figure.image .caption {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
  padding: 5px 10px;
  margin-bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  color: var(--color-white);
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: -0.5px;
}
.article-body figure.image .number {
  display: block;
  position: absolute;
  left: 20px;
  top: 20px;
  padding: 2px 10px;
  text-align: center;
  line-height: 2.1em;
  font-weight: 300;
  font-size: 12px;
  font-size: 0.75rem;
  color: var(--color-white);
  background: var(--color-background-dark);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  opacity: 0.8;
}
.article-body figure.image .number span {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}
.article-body figure.image img {
  width: 100%;
  height: auto;
}
.article-body figure.image svg,
.article-body figure.image img {
  min-width: 100%;
}
.article-body figure.image:hover:after {
  display: block;
}
.article-body .article-source {
  position: relative;
  text-align: center;
  min-height: 40px;
}
.article-body .article-source:before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background: var(--color-border);
}
.article-body .article-source span {
  position: absolute;
  display: block;
  background: var(--color-background);
  padding: 0 20px;
  left: 50%;
  top: 50%;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  transform: translate(-50%, -50%);
}
.article-body p {
  font-family: system-ui, -apple-system, "Inter", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  color: var(--color-text);
  line-height: 1.6em;
  font-weight: 400;
  margin-bottom: 1.5rem;
  word-break: break-word;
}
@media (max-width: 667px) {
  .article-body p img {
    width: calc(100% + 2rem);
    /* margin-left: -1rem; */
    /* margin-right: -1rem; */
    max-width: none;
  }
}
.article-body .news-recommendation {
  display: flex;
  align-items: center;
  height: 180px;
  margin: 30px 0;
  background-size: cover;
  background-position: 50%;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  border-radius: 3px;
  overflow: hidden;
  background-color: #d1d5db;
  position: relative;
}
.article-body .news-recommendation img {
  height: 100%;
  width: auto;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.article-body .news-recommendation .news-details {
  flex: 1;
  height: 100%;
  padding: 16px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.article-body .news-recommendation .news-details span {
  font-size: 12px;
  font-weight: bold;
  opacity: 0.7;
  letter-spacing: 1px;
}
.article-body .news-recommendation .news-details a {
  font-size: 25px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  line-height: 1.35;
  letter-spacing: 0.3px;
  transition: background-color 0.15s ease;
  font-family: system-ui, -apple-system, "Inter", sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.article-body .news-recommendation .news-details a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .article-body .news-recommendation {
    height: 110px !important;
    font-size: 16px !important;
    margin: 10px 0;
  }
  .article-body .news-details {
    padding: 10px !important;
  }
  .article-body .news-details span {
    font-size: 11px !important;
  }
  .article-body .news-details a {
    font-size: 16px !important;
  }
  .article-body .mobile-hidden {
    display: none;
  }
}
.article-body .attention {
  margin: 2.5rem 0;
}
.article-body .attention .title {
  display: block;
  margin-bottom: 15px;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.article-body .attention .title i {
  display: inline-block;
  font-size: 24px;
  font-size: 1.5rem;
  margin: 0 3px 0 0;
  color: var(--color-fill);
}
@media (max-width: 667px) {
  .article-body .attention .title {
    margin-left: 1rem;
  }
}
.article-body .attention a {
  min-height: 120px;
  display: flex;
  color: var(--color-white);
  background: var(--color-red);
  margin-bottom: 20px;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  text-decoration: none;
}
.article-body .attention a:hover {
  box-shadow: none;
}
.article-body .attention a .img {
  display: flex;
  min-width: 200px;
  max-width: 200px;
  flex-basis: 200px;
}
.article-body .attention a .img img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 568px) {
  .article-body .attention a .img {
    min-width: 100%;
    max-width: 100%;
    flex-basis: 100%;
    width: 100%;
    padding: 1rem 1rem 0 1rem;
  }
}
.article-body .attention a .desc {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  padding: 20px 30px;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
  font-weight: 700;
  line-height: 1.2em;
}
.article-body .attention a .desc .desc-title {
  content: "İlginizi Çekebilir";
  display: block;
  width: 100%;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.85;
  margin-bottom: 5px;
  letter-spacing: -0.2px;
}
.article-body .attention a .desc .title {
  display: block;
  font-weight: 600;
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 10px;
}
.article-body .attention a .desc .btn {
  margin-top: 15px;
  margin-left: auto;
  background: rgba(0, 0, 0, 0.2) url("../index/right-arrow-white.svg") 94%
    center no-repeat;
  padding-right: 30px;
  background-size: 15px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}
@media (max-width: 568px) {
  .article-body .attention a .desc .btn {
    text-align: center;
  }
}
@media (max-width: 568px) {
  .article-body .attention a .desc {
    padding: 20px;
  }
  .article-body .attention a .desc .btn {
    width: 100%;
  }
}
@media (max-width: 568px) {
  .article-body .attention a {
    flex-direction: column;
  }
}
.article-body .attention.red a {
  color: var(--color-white);
  background: var(--color-red);
}
.article-body .attention.yellow a {
  color: var(--color-text-dark);
  background: var(--color-yellow);
}
.article-body .attention.green a {
  color: var(--color-white);
  background: var(--color-green-2);
}
.article-body .attention.blue a {
  color: var(--color-white);
  background: var(--color-blue);
}
.article-body ul,
.article-body ol {
  margin-bottom: 20px;
  margin-left: 20px;
  list-style-type: square;
}
.article-body ul li,
.article-body ol li {
  margin-bottom: 5px;
}
.article-body ul li:last-child,
.article-body ol li:last-child {
  margin-bottom: 0;
}
.article-body ol {
  list-style-type: decimal;
}
.article-body .video-frame,
.article-body #video-frame {
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .article-body {
    padding-left: 0;
  }
}
@media (max-width: 667px) {
  .article-body
    > *:not(img):not(.image):not(iframe):not(.attention):not(#esh_player) {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
.article-ad {
  margin: 20px 0 40px 0;
  text-align: center;
}
@media (max-width: 667px) {
  .article-ad {
    margin: 0 0 30px 0;
  }
}
.post[data-font-size="0"] .article-title h1 {
  font-size: 25px;
  font-size: 1.5625rem;
}
.post[data-font-size="0"] .article-title .desc {
  font-size: 10px;
  font-size: 0.625rem;
}
.post[data-font-size="0"] .article-body {
  font-size: 13px;
  font-size: 0.8125rem;
}
.post[data-font-size="0"] .article-body h2,
.post[data-font-size="0"] .article-body h3,
.post[data-font-size="0"] .article-body h4,
.post[data-font-size="0"] .article-body h5,
.post[data-font-size="0"] .article-body h6 {
  font-size: 15px;
  font-size: 0.9375rem;
}
.post[data-font-size="0"] .article-body p {
  font-size: 13px;
  font-size: 0.8125rem;
}
.post[data-font-size="1"] .article-title h1 {
  font-size: 30px;
  font-size: 1.875rem;
}
.post[data-font-size="1"] .article-title .desc {
  font-size: 14px;
  font-size: 0.875rem;
}
.post[data-font-size="1"] .article-body {
  font-size: 14px;
  font-size: 0.875rem;
}
.post[data-font-size="1"] .article-body h2,
.post[data-font-size="1"] .article-body h3,
.post[data-font-size="1"] .article-body h4,
.post[data-font-size="1"] .article-body h5,
.post[data-font-size="1"] .article-body h6 {
  font-size: 18px;
  font-size: 1.125rem;
}
.post[data-font-size="1"] .article-body p {
  font-size: 14px;
  font-size: 0.875rem;
}
.post[data-font-size="2"] .article-title h1 {
  font-size: 35px;
  font-size: 2.1875rem;
}
.post[data-font-size="2"] .article-title .desc {
  font-size: 19px;
  font-size: 1.1875rem;
}
.post[data-font-size="2"] .article-body {
  font-size: 17px;
  font-size: 1.0625rem;
}
.post[data-font-size="2"] .article-body h2,
.post[data-font-size="2"] .article-body h3,
.post[data-font-size="2"] .article-body h4,
.post[data-font-size="2"] .article-body h5,
.post[data-font-size="2"] .article-body h6 {
  font-size: 21px;
  font-size: 1.3125rem;
}
.post[data-font-size="2"] .article-body p {
  font-size: 17px;
  font-size: 1.0625rem;
}
.post[data-font-size="3"] .article-title h1 {
  font-size: 40px;
  font-size: 2.5rem;
}
.post[data-font-size="3"] .article-title .desc {
  font-size: 24px;
  font-size: 1.5rem;
}
.post[data-font-size="3"] .article-body {
  font-size: 20px;
  font-size: 1.25rem;
}
.post[data-font-size="3"] .article-body h2,
.post[data-font-size="3"] .article-body h3,
.post[data-font-size="3"] .article-body h4,
.post[data-font-size="3"] .article-body h5,
.post[data-font-size="3"] .article-body h6 {
  font-size: 24px;
  font-size: 1.5rem;
}
.post[data-font-size="3"] .article-body p {
  font-size: 20px;
  font-size: 1.25rem;
}
.post[data-font-size="4"] .article-title h1 {
  font-size: 45px;
  font-size: 2.8125rem;
}
.post[data-font-size="4"] .article-title .desc {
  font-size: 29px;
  font-size: 1.8125rem;
}
.post[data-font-size="4"] .article-body {
  font-size: 23px;
  font-size: 1.4375rem;
}
.post[data-font-size="4"] .article-body h2,
.post[data-font-size="4"] .article-body h3,
.post[data-font-size="4"] .article-body h4,
.post[data-font-size="4"] .article-body h5,
.post[data-font-size="4"] .article-body h6 {
  font-size: 27px;
  font-size: 1.6875rem;
}
.post[data-font-size="4"] .article-body p {
  font-size: 23px;
  font-size: 1.4375rem;
}
.post[data-font-size="5"] .article-title h1 {
  font-size: 50px;
  font-size: 3.125rem;
}
.post[data-font-size="5"] .article-title .desc {
  font-size: 34px;
  font-size: 2.125rem;
}
.post[data-font-size="5"] .article-body {
  font-size: 26px;
  font-size: 1.625rem;
}
.post[data-font-size="5"] .article-body h2,
.post[data-font-size="5"] .article-body h3,
.post[data-font-size="5"] .article-body h4,
.post[data-font-size="5"] .article-body h5,
.post[data-font-size="5"] .article-body h6 {
  font-size: 30px;
  font-size: 1.875rem;
}
.post[data-font-size="5"] .article-body p {
  font-size: 26px;
  font-size: 1.625rem;
}
.post[data-font-size="6"] .article-title h1 {
  font-size: 55px;
  font-size: 3.4375rem;
}
.post[data-font-size="6"] .article-title .desc {
  font-size: 39px;
  font-size: 2.4375rem;
}
.post[data-font-size="6"] .article-body {
  font-size: 33px;
  font-size: 2.0625rem;
}
.post[data-font-size="6"] .article-body h2,
.post[data-font-size="6"] .article-body h3,
.post[data-font-size="6"] .article-body h4,
.post[data-font-size="6"] .article-body h5,
.post[data-font-size="6"] .article-body h6 {
  font-size: 34px;
  font-size: 2.125rem;
}
.post[data-font-size="6"] .article-body p {
  font-size: 33px;
  font-size: 2.0625rem;
}
.post[data-font-size="7"] .article-title h1 {
  font-size: 60px;
  font-size: 3.75rem;
}
.post[data-font-size="7"] .article-title .desc {
  font-size: 44px;
  font-size: 2.75rem;
}
.post[data-font-size="7"] .article-body {
  font-size: 36px;
  font-size: 2.25rem;
}
.post[data-font-size="7"] .article-body h2,
.post[data-font-size="7"] .article-body h3,
.post[data-font-size="7"] .article-body h4,
.post[data-font-size="7"] .article-body h5,
.post[data-font-size="7"] .article-body h6 {
  font-size: 39px;
  font-size: 2.4375rem;
}
.post[data-font-size="7"] .article-body p {
  font-size: 36px;
  font-size: 2.25rem;
}
.post[data-font-size="8"] .article-title h1 {
  font-size: 65px;
  font-size: 4.0625rem;
}
.post[data-font-size="8"] .article-title .desc {
  font-size: 49px;
  font-size: 3.0625rem;
}
.post[data-font-size="8"] .article-body {
  font-size: 39px;
  font-size: 2.4375rem;
}
.post[data-font-size="8"] .article-body h2,
.post[data-font-size="8"] .article-body h3,
.post[data-font-size="8"] .article-body h4,
.post[data-font-size="8"] .article-body h5,
.post[data-font-size="8"] .article-body h6 {
  font-size: 44px;
  font-size: 2.75rem;
}
.post[data-font-size="8"] .article-body p {
  font-size: 39px;
  font-size: 2.4375rem;
}
.shotnews-article {
  margin-top: 1.5rem;
  display: grid;
  grid-gap: 0.5rem;
  grid-template-columns: repeat(2, 1fr);
}
.shotnews-article a {
  display: block;
  padding: 1rem;
  color: var(--color-black-white);
  background: var(--color-surface-c);
}
.shotnews-article a img {
  width: 100%;
}
.shotnews-article a .text {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 1.3em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  height: 92px;
}
.endnews {
  max-width: 1194px;
  margin: 0 auto;
  display: grid;
  grid-gap: 1rem;
}
@media (min-width: 834px) {
  .endnews {
    grid-template-columns: repeat(2, 1fr);
  }
}
.endnews .item {
  padding: 9px;
  background: var(--color-surface-c);
}
.endnews .item a {
  display: block;
  position: relative;
  color: var(--color-black-white);
  line-height: 1.3em;
}
.endnews .item a .text {
  height: auto;
  margin-top: 0.5rem;
  align-items: normal;
  display: flex;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--color-black-white);
  overflow: hidden;
  line-height: 1.3em;
}
.bio-details {
  background: var(--color-surface);
  padding: 20px;
  margin-bottom: 30px;
}
.bio-details > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.bio-details > ul > li {
  padding: 7px 10px;
  margin: 0;
  border-bottom: 1px dotted var(--color-border);
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
}
.bio-details > ul > li .title {
  font-weight: 700;
  font-size: 15px;
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
}
.bio-details > ul > li:last-child {
  border-bottom: 0 none;
}
.bio-details > ul > li ul {
  padding: 0;
  margin: 5px 0 0 17px;
  list-style: disc;
}
.bio-details > ul > li ul li {
  padding: 0;
  margin-bottom: 5px;
}
.bio-details > ul > li ul li:last-child {
  margin-bottom: 0;
}
.bio-links {
  margin-bottom: 30px;
}
.bio-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.bio-links ul li {
  padding: 0;
  margin: 0;
  border-bottom: 1px dotted var(--color-border);
}
.bio-links ul li:last-child {
  border-bottom: 0 none;
}
.bio-links ul li a {
  display: block;
  padding: 8px 5px 8px 25px;
  font-weight: 500;
  background: url("../index/chevron-right.svg") left 9px no-repeat;
}
@media (max-width: 768px) {
  .bio-links ul li a {
    padding: 8px 5px 8px 50px;
    background-position: 28px 9px;
  }
}
.next-loading {
  background: #fff;
  margin: 0 auto;
  max-width: 100%;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader {
  border: 8px solid #f3f3f3;
  border-radius: 50%;
  border-top: 8px solid #ee0a0a;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 991px) {
  .article-res {
    max-width: 810px !important;
    margin: 0 auto !important;
  }
}
.taboola-end {
  margin-top: 10px;
}
@media (max-width: 667px) {
  .taboola-end {
    margin-top: 5px;
    padding: 0.8rem;
  }
}
.news-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 15px;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 660px) {
  .news-card-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-left: 80px;
    padding-left: 0;
    padding-right: 0;
  }
}
.news-card {
  display: block;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 0.5rem;
  background: none !important;
}
.news-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.news-card a .news-card-img {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
.news-card a .news-card-text {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: -0.2px;
  display: block;
  color: inherit;
}
@media (max-width: 1025px) {
  #footernew {
    display: none;
  }
}
.input {
  height: 45px !important;
  border-radius: 5px !important;
  border: 1px solid #ddd !important;
}

@font-face {
  font-family: "eshicons";
  src: url("../index/eshicons.eot?ncw6hm");
  src: url("../index/eshicons.eot?ncw6hm#iefix") format("embedded-opentype"),
    url("../index/eshicons.ttf?ncw6hm") format("truetype"),
    url("../index/eshicons.woff?ncw6hm") format("woff"),
    url("../index/eshicons.svg?ncw6hm#eshicons") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
i {
  font-family: "eshicons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-question-answer:before {
  content: "";
  color: #ee0a0a;
}

.hotnews .head i,
.hotnews h2 i,
.related .head i,
.related h2 i,
.comments .head i,
.comments h2 i,
.livetv .head i,
.livetv h2 i,
.sidebar-slider .head i,
.sidebar-slider h2 i,
.tag-info .head i,
.tag-info h2 i,
.column .head i,
.column h2 i,
.summary .head i,
.summary h2 i,
.widget .head i,
.widget h2 i,
section .head i,
section h2 i {
  font-size: 26px;
  font-size: 1.625rem;
  position: relative;
  top: 3px;
  color: var(--color-fill);
}
