body {
  margin: 0;
}

#loadingDiv {
  position: fixed;
  inset: 0 0 0 0;
  font-size: 1.8rem;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  font-family: 'Noto IKEA';
  display: flex;
}

#loadingDiv span {
  text-align: center;
}

.loading {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.loading__ball {
  display: block;
  transform-origin: bottom;
  border-radius: 64px;
  background: #0058a3;
  height: 1rem;
  width: 1rem;
  transition: opacity 200ms cubic-bezier(0.4, 0, 0.4, 1);
  animation: loading-bounce 0.7s infinite;
}

.loading__text--fade-in {
  transition:
    transform 100ms cubic-bezier(0.4, 0, 0.4, 1),
    opacity 100ms cubic-bezier(0.4, 0, 0.4, 1);
  transform: translateY(0);
  opacity: 1;
  margin-top: 80px;
}

@keyframes loading-bounce {
  0% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
  }
  40% {
    transform: translateY(2rem) scaleY(1);
    animation-timing-function: ease-in;
  }
  50% {
    transform: translateY(2rem) scaleY(0.75);
    animation-timing-function: ease-out;
  }
  60% {
    transform: translateY(2rem) scaleY(1);
    animation-timing-function: cubic-bezier(0, 0, 0, 1);
  }
  100% {
    transform: translateY(0);
  }
}

.spa-error-body {
  z-index: 1;
  position: fixed;
  inset: 0 0 0 0;
  height: 100vh;
  width: '1vw%';
  background-color: rgb(17, 17, 17);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding-left: 4rem;
  color: white;
  font-size: 1.25rem;
}

.spa-error-header {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  padding-top: 10rem;
}

.spa-error-header h3 {
  padding-left: 1rem;
  margin-top: 0;
  margin-bottom: 0;
  color: white;
  font-size: 2.25rem;
}

.spa-error-body p {
  color: white;
}

#version-paragraph {
  padding-top: 1rem;
}

#single-spa-application\:\@sidp\/kiosk {
  width: 100%;
  height: 100%;
}
