/* == Comments == */
.case.comments {
  margin: 1.5em 0;
  max-width: 800px
}
.case.comments .comment {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  position: relative;
  background-image: none;
  margin: 2rem 0 0;
  padding: 1rem;
  border: none;
  border-top: none;
  border-radius: .250rem;
  box-shadow: 0 23px 49px 0 var(--shadow-color);
}
.case.comments .comment:first-child {
  margin-top: 0;
}
.case.comments .comment .comments {
  margin: 0 0 0.5rem 0.5rem;
  padding: 1rem 0 1rem 1rem;
}
.case.comments .comment .comments:before {
  position: absolute;
  top: 0px;
  left: 0px;
}
.case.comments .comment .comments .comment {
  border: none;
  border-top: none;
  background: none;
}
/* == Avatar == */
.case.comments .comment .avatar {
  flex: 0 0 auto;
  max-width: none;
  white-space: nowrap;
  width: 2.5rem;
}
.case.comments .comment img.avatar,
.case.comments .comment .avatar img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
/* == Content == */
.case.comments .comment > .content {
  flex: 1 1 0px;
  min-width: 0;
}
.case.comments .comment > .avatar ~ .content {
  margin-left: 2rem;
}
.case.comments .comment .author {
  font-size: 1em;
  font-weight: 500;
}
.case.comments .comment a.author {
  cursor: pointer;
}
.case.comments .comment a.author:hover {
  color: var(--primary-color-hover);
}
.case.comments .comment .metadata {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: .875rem;
  vertical-align: middle
}
.case.comments .comment .metadata a.delete {
  margin-left: 1rem;
  vertical-align: middle
}
.case.comments .comment .metadata > * {
  display: inline-block;
  margin: 0 .5rem 0 0;
}
.case.comments .comment .metadata > :last-child {
  margin-right: 0;
}
.case.comments .comment .text:not(.case) {
  margin: .25rem 0 .5rem;
  font-size: 1rem;
  word-wrap: break-word;
  line-height: 1.3;
  font-weight: 300;
}
.case.comments .comment .actions {
  font-size: .750rem;
  margin-top: 0
}
.case.comments .comment .actions a {
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  font-size: .875rem;
}
.case.comments .comment .actions a:last-child {
  margin-right: 0;
}
.case.comments .comment .actions a.active,
.case.comments .comment .actions a:hover {
  color: var(--dark-color);
}
.case.collapsed.comments,
.case.comments .collapsed.comments,
.case.comments .collapsed.comment {
  display: none;
}
/* == Variations == */
.case.threaded.comments .comment .comments {
  margin: -1.5rem 0 -1em 1.25rem;
  padding: 3rem 0 2rem 2.25rem;
  box-shadow: -1px 0px 0px rgba(34, 36, 38, 0.15);
}
.case.minimal.comments .comment .actions {
  opacity: 0;
  position: absolute;
  top: 0px;
  right: 0px;
  left: auto;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.case.minimal.comments .comment > .content:hover > .actions {
  opacity: 1;
}
/* == Sizes == */
.case.mini.comments {
  font-size: 0.750rem;
}
.case.tiny.comments {
  font-size: 0.875rem;
}
.case.small.comments {
  font-size: 0.913rem;
}
.case.comments {
  font-size: 1rem;
}
.case.large.comments {
  font-size: 1.25rem;
}
.case.big.comments {
  font-size: 1.5rem;
}