.status {
  text-align: center;
}

.status.loading {
  width: 32px;
  height: 32px;
  border: 3px solid #ddd;
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin: 1rem auto;
}

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

.status span {
  height: 64px;
  margin: auto;
  width: 64px;
}