body {
  padding: 0;
  margin: 0;
  overscroll-behavior-y: none;
}

@keyframes tick {
  from {
    width: 0em;
    margin-right: 1em;
  }
  to {
    width: 1em;
    margin-right: 0;
  }
}

.loading-dots {
  display: inline-block;
  width: 0.2em;
  overflow: hidden;
  height: 1em;
  animation: tick 1s steps(4, end) infinite;
  animation-duration: 3s;
}

#splashscreen {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  z-index: 10;
  background-color: var(--volvo-color-white);
}

#splashscreen volvo-spinner {
  margin-bottom: 24px;
}
