body {
  margin: 0;
  padding: 0;
}

#splash-screen {
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

#splash-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.toast-message-wrapper {
  bottom: 1rem;
}

.mb-bottom-bar .toast-message-wrapper {
  bottom: 6rem;
}

.splash-spinner {
  width: 80px;
  height: 80px;
}

.splash-spinner .path {
  width: 100%;
  height: 100%;
  stroke: rgb(18, 28, 78);
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

.d-none {
  display: none;
}

.fiserv-form-wrapper iframe {
  height: 60px !important;
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }

  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
