.loading-container {
  z-index: 500;
  pointer-events: none;
  position: fixed;
  inset: 0;
  overflow: hidden;
}

.loading-screen {
  pointer-events: auto;
  color: #fff;
  background-color: #F29400;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.loading-words {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  align-items: center;
  display: flex;
  font-family: 'SUSE-Light', Arial, sans-serif;
}

.loading-words__dot {
  background-color: #fff;
  border-radius: 50%;
  width: .75em;
  height: .75em;
  font-family: 'SUSE-Light', Arial, sans-serif;
}

.loading-words__word {
  font-size: 4.5em;
  font-weight: 500;
  line-height: 1;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .loading-words {
    font-size: 2.75vw;
  }
}