html,
body {
  margin: 0;
  padding: 0;
  background: #eff1f5;
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}
body * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, "Segoe UI", "Roboto", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
main {
  margin: 30px auto;
  width: 1280px;
  background: #fff;
  border-radius: 8px;
  padding: 12px;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
h1 {
  font-size: 2.625rem;
  font-weight: 600;
  line-height: 1.286em;
}
ul {
  list-style: none;
}
header {
  height: 66px;
  background: #fff;
  border-bottom: 2px solid #cc0000;
  padding: 0 16px;
  /*position: fixed;*/
}
.headerInner {
  margin: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
header img {
  color: #cc0000;
  width: 144px;
  height: 32px;
  margin-right: 32px;
}
.headerLeft {
  display: flex;
  align-items: center;
}
.headerLeft ul {
  display: flex;
  color: #333333;
  font-weight: 600;
  gap: 32px;
  align-items: center;
  /*transform: translateY(50%);*/
}
.headerLeft ul li,
.headerLeft ul {
  height: min-content;
}
.headerLeft ul li a {
  opacity: 0.95;
  transition: opacity 0.2s ease;
  line-height: 0;
  font-size: 14px;
}
.headerLeft ul li a:hover {
  text-decoration: underline;
  opacity: 1;
  transition: opacity 0.2s ease;
}
.themeSwitcher {
  border: 1px solid #737373;
  border-radius: 16px;
  height: 24px;
  padding: 4px;
  width: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.round {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #737373;
}
.themeSwitcher img {
  width: 14px;
  margin: 0;
}
.headerRight {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.headerRight img {
  width: min-content;
  margin: 0;
}
.loginButton span {
  padding: 4px 10px;
  line-height: 20px;
}
.loginButton {
  display: flex;
  align-items: center;
  padding: 2px;
  font-size: 14px;
  border-radius: 8px;
  background: linear-gradient(#fff 0 0) content-box,
    linear-gradient(132.51deg, #9b0238 15.35%, #4404ae 91.27%) border-box;
}
.articleHead {
  width: 75%;
}
.content1 {
  margin-top: 16px;
  width: 100%;
}
.imgDesc {
  font-size: 10px;
  caret-color: #595959;
  font-weight: 600;
  line-height: 1.6em;
  opacity: 0.7;
}
.authorInfo img {
  border-radius: 50%;
}
.authorInfo a {
  font-weight: 600;
  font-size: 16px;
}
.authorInfo span {
  font-size: 14px;
  color: #595959;
}
.authorInfo {
  display: flex;
  gap: 8px;
}
.author {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid #f2f2f2;
}
.pins {
  display: flex;
  gap: 8px;
}
.pin {
  display: flex;
  align-items: center;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  gap: 6px;
  height: 32px;
  width: max-content;
  background: #f7f8fa;
  padding: 0 8px;
}
.pin span {
  font-size: 10px;
  color: #0d0d0d;
}
.pin img {
  width: 14px;
  height: 14px;
}
article {
  /*margin: 0 auto;*/
  width: 75%;
  padding-left: 212px;
}
article p a,
article h2 a,
article li a,
h1 a {
  color: #cc0000;
  text-decoration: underline;
}
article h2:first-child {
  margin-top: 24px;
}
article h2 {
  color: #0d0d0d;
  margin-top: 16px;
}
article img,
article video {
  width: 100%;
  margin-top: 14px;
}
article p {
  color: #0d0d0d;
  font-size: 17.6px;
  line-height: 1.6em;
  margin-top: 16px;
}
.origComments {
  padding-bottom: 24px;
}
.origComments h3 {
  text-align: center;
  margin: 24px 0;
  font-size: 21px;
}
.origCommentInput {
  border: 1px solid #e6e6e6;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 16px;
  height: 40px;
  color: #595959;
}
.commentsPins {
  display: flex;
  gap: 8px;
  margin: 32px 0 24px;
}
.commentPin:first-child {
  color: #fff;
  background: #333;
}
.commentPin {
  border: 1px solid #0000;
  border-radius: 8px;
  color: #333;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #f7f8fa;
  font-size: 12px;
  height: 30px;
  display: flex;
  align-items: center;
  padding: 8px;
}
.comment {
  display: flex;
  margin-top: 24px;
}
.commentAv {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #eff1f5;
  width: 40px;
  height: 40px;
  margin-right: 8px;
}
.commentAv img {
  margin: 0;
}
.commentContent {
  width: 100%;
}
.commentHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.commentHeader img {
  width: 16px;
  height: 16px;
}
.commentAuthor {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}
.commentName {
  font-weight: 600;
  font-size: 14px;
  color: #0d0d0d;
}
.commentDate {
  font-size: 12px;
  color: #595959;
}
.commentContent p {
  font-size: 16px;
  margin-top: 8px;
}
.commentFooter {
  margin-top: 4px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.commentReply {
  color: #0d0d0d;
  text-decoration: underline;
  font-size: 14px;
  font-weight: 700;
  margin-top: 10px;
  text-decoration-color: initial;
  text-decoration-thickness: 8%;
  text-underline-offset: 24%;
}
.rateComment {
  display: flex;
  gap: 8px;
  align-items: center;
}
.like {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 4px;
  font-size: 14px;
  color: #595959;
}
.like:hover {
  background-color: #f8f8f8;
}
.like img {
  width: 16px;
  height: 16px;
  margin: 0;
}
footer {
  border-top: 2px solid #cc0000;
  background-color: #fff;
  padding-top: 70px;
  color: #0d0d0d;
}
.topFooter {
  width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, auto);
  column-gap: 8px;
}
.topFooter ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.topFooter ul li:first-child a {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
}
.topFooter ul li:not(:first-child):hover a {
  color: #cc0000;
  transition: color 0.2s ease;
}
.footerTopics li:last-child {
  display: none;
}
.footerTopics li img {
  width: 10px;
  height: 6px;
}
.topFooter ul li a {
  font-size: 12px;
  transition: color 0.2s ease;
}
.botFooterWrapper {
  background: #eff1f5;
  width: 100%;
  margin-top: 48px;
}
.botFooter {
  width: 1280px;
  margin: 0 auto;
}
.footerLinks {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 24px;
}
.footerCopy {
  border-top: 1px solid #d9d9d9;

  font-size: 12px;
  padding: 8px 8px 32px 8px;
}
@media screen and (max-width: 1180px) {
  .headerLeft ul {
    display: none;
  }
}
@media screen and (max-width: 1140px) {
  main,
  .headerInner {
    width: 640px;
  }
  .headerInner {
    margin: 0 auto;
  }
  .articleHead {
    width: 100%;
  }
  article {
    padding: 0;
    width: 100%;
  }
  .topFooter {
    width: 100%;
  }
  .topFooter {
    padding-left: 64px;
    padding-right: 64px;
  }
  .botFooter {
    width: 640px;
  }
  .footerLinks {
    flex-wrap: wrap;
    width: 80%;
    margin: 0 auto;
  }
  .footerLinks a span {
    white-space: nowrap;
  }
}
@media screen and (min-width: 1140px) {
  header {
    padding: 0 32px;
  }
}
@media screen and (max-width: 920px) {
  .topFooter {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 640px) {
  .author {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .topFooter {
    display: block;
  }
  .footerTopics {
    display: flex;
    justify-content: space-between;
    flex-direction: row !important;
    padding: 8px 0;
    border-bottom: 1px solid #d9d9d9;
  }
  .footerTopics li:not(:first-child) {
    display: none;
  }
  .footerTopics li:last-child {
    display: block;
  }
  footer {
    padding-top: 14px;
  }
  .footerCopy {
    padding: 8px 16px 32px 16px;
  }
  .headerInner,
  main,
  .botFooter {
    width: 100%;
  }
  h1 {
    font-size: 22px;
  }
  h2 {
    font-size: 20px;
  }
  .themeSwitcher {
    display: none;
  }
  .headerRight {
    gap: 8px;
  }
  .headerRight a {
    margin: 0 !important;
  }
}

#topList,
#topList * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: inherit;
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
#topList {
  width: 100%;
}
#topList {
  width: 100%;
}
#topList li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.topList__person {
  width: 40%;
  display: grid;
  grid-template-columns: 25px min-content 1fr;
  align-items: center;
}
.topList__person--name {
  line-height: 1;
}

.topList__person--ava img {
  width: 30px;
  height: 30px;
  margin-left: 14px !important;
  margin-right: 8px !important;
}
.topList__progress {
  display: flex;
  align-items: center;
  width: 50%;
}
.random-value {
  white-space: nowrap;
}

.progressBar {
  display: block;
  height: 25px;
  margin: 0 20px !important;
  background-color: #d90002;
  background-image: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.1) 25%,
    transparent 25%,
    transparent 50%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.1) 75%,
    transparent 75%,
    transparent
  );
  background-size: 40px 40px;
  border-radius: 3px;
  animation: progress-bar-stripes 2s linear infinite;
  transition: 800ms ease-out;
  width: 40%;
}
@media screen and (max-width: 800px) {
  #topList li {
    flex-direction: column;
    margin-bottom: 12px !important;
  }
  .topList__progress {
    margin-top: 2px !important;
  }
  .topList__person,
  .topList__progress {
    width: 100%;
  }
}
#formSimple {
  border: 2px solid #13203d;
  border-radius: 16px;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: 3px 3px 6px #00000030;
}
.formTitle {
  text-align: center;
  padding: 30px 15px;
  font-size: 30px;
  background: #d90002;
  color: #fff;
  text-transform: uppercase;
  margin: 30px 0;
  line-height: 1.2;
  letter-spacing: 2px;
}
@media (max-width: 767px) {
  .formTitle {
    font-size: 24px;
  }
}
