.LoadingContainer {
  font-size: 20px;
  padding: 33px;
  font-weight: bold;
  text-align: center;
}

.LoadingContainer span {
  animation: pulse 2s infinite ease-in-out;
}

.IntersectionElement {
  margin: 24px 0;
  border-top: 1px solid red;
  border-bottom: 1px solid red;
  background: transparent;
  clear: both;
  padding: 32px;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.3;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.3;
  }
}
