div.comment {
  margin: 1em;
}
div.comment-results div.sk-wave div.sk-rect {
  background: #666;
  background: var(--color-comment-sk-wave-background);
}
div.comment-fail {
  text-align: center;
  color: #666;
  color: var(--color-comment-font);
}
header.comments-header {
  padding: 0.5em;
  text-align: center;
  color: #666;
  color: var(--color-comment-font);
}
div.comment-result {
  display: flex;
  justify-content: stretch;
  align-items: flex-start;
  margin: 0.5em 0;
}
div.comment-avatar-container {
  flex: 1 1 auto;
  width: 10%;
}
img.comment-avatar {
  width: 70%;
  border: 0.1em solid #fff;
  border-radius: 50%;
  transition: box-shadow 0.3s ease-in-out, transform 1s ease-in-out;
}
img.comment-avatar:hover {
  box-shadow: 0 0 1em 0.5em rgba(0,0,0,0.19);
  transform: rotateY(720deg);
}
div.comment-body-container {
  flex: 9 9 auto;
  width: 90%;
  overflow: hidden;
  border-radius: 0.3em;
  transition: box-shadow 0.3s ease-in-out;
}
div.comment-body-container:hover {
  box-shadow: 0 0 1em 0.5em rgba(0,0,0,0.19);
}
div.comment-info {
  padding: 0.5em;
  color: #eee;
  background: #33363b;
  scrollbar-width: thin;
  scrollbar-color: #999 transparent;
  scrollbar-color: var(--color-scrollbar) var(--color-scrollbar-background);
}
div.comment-info a {
  position: relative;
  color: #ddd;
  text-decoration: none;
  border-bottom: 0.05em dotted #ddd;
  transition: color 0.3s ease-in-out, border-bottom 0.3s ease-in-out;
}
div.comment-info a:hover {
  color: #fff;
  border-bottom: 0.05em solid #fff;
}
div.comment-info a:active {
  top: 0.1em;
}
div.comment-info a.comment-info-author,
div.comment-info span.comment-info-date {
  margin: 0 0.5em;
}
div.comment-info span.comment-info-association {
  margin: 0 0.5em;
  padding: 0 0.5em;
  border: 0.05em solid #eee;
  border-radius: 0.3em;
  color: #eee;
}
div.comment-info a.comment-info-link {
  margin: 0 0.5em;
}
div.comment-info a.comment-info-link::before {
  content: "#";
}
div.comment-content {
  padding: 0.5em 1em;
  background: #fff;
  background: var(--color-comment-content-background);
}
div.comment-content pre {
  overflow: auto;
  padding: 0.5em;
  border-radius: 0.3em;
  color: #ccc;
  background: #26272b;
}
div.comment-content pre code {
  margin: 0;
  padding: 0;
  color: #ccc;
  background: #26272b;
  word-wrap: normal;
  border-radius: 0;
}
footer.comments-footer {
  padding: 0.5em;
  text-align: center;
  color: #666;
  color: var(--color-comment-font);
}
a.comment-send {
  padding: 0.3em 1em;
  background: #9f1313;
  border: 0.1em solid #f5c6cb;
}
div.page-title {
  text-align: center;
  font-size: 2rem;
  margin: 0.67em 0;
  font-weight: bold;
}
div.page-counter {
  text-align: center;
  font-size: 1.5rem;
  margin: 0.83em 0;
  font-weight: bold;
}
nav.pagination {
  margin: 0.5em 0;
  padding: 0.5em;
  display: block;
  text-align: center;
}
a.page-number {
  display: inline-block;
  font-size: 1.25rem;
  padding: 0.3em 0.5em;
  margin: 0 0.25em;
  text-decoration: none;
  color: #666;
  color: var(--color-link-font);
  border-bottom: 0.15em solid #666;
  border-bottom: 0.15em solid var(--color-link-font);
}
a.page-number:hover {
  color: #36e;
  color: var(--color-link-hover-font);
  border-bottom: 0.15em solid #36e;
  border-bottom: 0.15em solid var(--color-link-hover-font);
}
a.page-number.current {
  color: #36e;
  color: var(--color-link-hover-font);
  border-bottom: 0.15em solid #36e;
  border-bottom: 0.15em solid var(--color-link-hover-font);
  border-top: 0.1em solid #36e;
  border-top: 0.1em solid var(--color-link-hover-font);
}
nav.page-nav {
  margin: 0 1em;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
div.page-nav-item {
  flex: 1 1 auto;
  font-size: 1.2rem;
}
div.page-nav-item a {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-bottom: none;
}
div.page-nav-item a span {
  margin: 0.3em;
}
div.page-nav-item a:active {
  top: 0.1em;
}
div.page-nav-next {
  text-align: left;
}
div.page-nav-next a {
  justify-content: flex-start;
}
div.page-nav-prev {
  text-align: right;
}
div.page-nav-prev a {
  justify-content: flex-end;
}
@media (max-width: 40em) {
  nav.page-nav {
    flex-direction: column;
    align-items: stretch;
  }
}
