@keyframes pspinner {
  to {
    transform: rotate(360deg);
  }
}
.paypal-spinner {
  box-sizing: border-box;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 8px solid transparent;
  border-top-color: #07d;
  border-bottom-color: #07d;
  animation: pspinner 1.2s ease infinite;
}
.waiting-box {
  margin-top: 20vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.waiting-title {
  font-size: 3em;
  margin: 6px 0 40px;
  font-weight: bold;
}
.waiting-subtitle {
  font-size: 1.4em;
}
