.feed-infinite-status {
  min-height: 28px;
  margin: -8px 0 28px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 28px;
  text-align: center;
}

.feed-infinite-status.is-loading::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-top-color: rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  vertical-align: -2px;
  animation: feed-infinite-spin 0.8s linear infinite;
}

@keyframes feed-infinite-spin {
  to {
    transform: rotate(360deg);
  }
}
