.app-loading {
  height: 100vh;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-loading {
  flex-direction: column;
  text-align: center;
  background: #ffffff;
}

.loader {
  border: 4px solid #e8e8e8;
  border-top: 4px solid #e20303;
  border-radius: 50%;
  width: 128px;
  height: 128px;
  animation: spin 5s linear infinite;
}

.dot-container {
  animation: inherit;
  animation-direction: reverse;
  width: 100%;
  height: 100%;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #e20303;
  margin: 0.5rem;
}

.dot1 {
  background-color: rgba(226, 3, 3, 0.3);
}

.dot2 {
  background-color: rgba(226, 3, 3, 0.6);
}

.dot3 {
  background-color: rgba(226, 3, 3, 1);
}

p {
  font-family: sans-serif;
}

.app-loading .bold {
  font-weight: bold;
  margin-top: 3rem;
  margin-bottom: 0;
  color: #4d4d4d;
  font-size: 20px;
}

.app-loading .hint {
  font-style: italic;
  margin-top: 1.25rem;
  color: #9f9f9f;
}

img#logo-loading-grey {
  position: absolute;
  top: 18px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
