.initial-loader-spinner {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 10px;
  border-top: 0.5em solid rgba(100, 100, 100, 0.2);
  border-right: 0.5em solid rgba(100, 100, 100, 0.2);
  border-bottom: 0.5em solid rgba(100, 100, 100, 0.2);
  border-left: 0.5em solid rgba(100, 100, 100, 1);
  transform: translateZ(0);
  animation: initial-loader-spin 1.1s infinite linear;
  margin-right: 10px;
}

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

.initial-loader-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: row;
  font-family: sans-serif;
  font-size: 14px;
  color: rgb(100, 100, 100);
}
