html, body {
  padding: 0;
  margin: 0;
}

#blazor-error-ui {
  background: lightyellow;
  bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  color: var(--bs-primary);
  display: none;
  left: 0;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.splash-screen {
  align-items: center;
  display: flex;
  flex-flow: column nowrap;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", "-apple-system", BlinkMacSystemFont, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: .88rem;
  font-weight: 400;
  justify-content: center;
  line-height: 1.5;
  text-align: center;
  width: 100%;
}

.splash-screen .spinner-img {
  width: 70px;
  height: 70px;
  background-image: url("../data/customerPortal.svg");
  background-size: cover;
  position: relative;
}

.splash-screen .caption {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1.5rem;
}

.splash-screen .text {
  margin-top: .5rem;
}

.splash-screen .spinner-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.splash-screen .spinner {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: inline-block;
  border: 3px solid;
  border-color: #C4006B #C4006B transparent transparent;
  box-sizing: border-box;
  animation: rotation 1.25s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.preloadDark {
  color: #dee2e6;
  background-color: #343a40;
}

.preloadLight {
  color: #343a40;
  background-color: #fff;
}