.orkestapay-initializer-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

.orkestapay-initializer-spinner {
  animation: beat 500ms ease-in-out infinite alternate;
  width: 16rem;
}

@keyframes beat {
  0% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}
