.page {
  margin-bottom: 1rem;
}

.post_title {
  font-weight: bold;
}

.comments_container {
  padding-left: 3rem;
}

.comment_msg {
  font-style: italic;
}

.comment_action {
  text-align: right;
}

.comment_action a {
  margin: 0 1rem;
}

/*** SPINNER ***/
.lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
}

.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #cef;
  border-color: #cef transparent #cef transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*** END SPINNER ***/