@keyframes theguestlist-loader-pulse {
  0% {
    opacity: 0.55;
    transform: scale(0.98);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0.55;
    transform: scale(0.98);
  }
}

.app-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.app-loading p {
  display: block;
  font-size: 1.17em;
  margin-inline-start: 0;
  margin-inline-end: 0;
  font-weight: normal;
}

.theguestlist-loader {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.theguestlist-loader__logo {
  width: min(14rem, 44vw);
  height: auto;
  animation: theguestlist-loader-pulse 1.5s ease-in-out infinite;
}
