#app-loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
}

#app-loader .dot {
  bottom: 0;
  height: 100%;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: calc(100% / 4);
}

#app-loader .dot::before {
  border-radius: 100%;
  content: '';
  height: 87.5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scale(0);
  width: calc(100% / 2);
}

#app-loader .dot:nth-child(7n + 1) {
  transform: rotate(45deg);
}

#app-loader .dot:nth-child(7n + 1)::before {
  animation: 0.8s linear 0.1s normal none infinite running load;
  background: var(--eosc-green-dark) none repeat scroll 0 0;
}

#app-loader .dot:nth-child(7n + 2) {
  transform: rotate(90deg);
}

#app-loader .dot:nth-child(7n + 2)::before {
  animation: 0.8s linear 0.2s normal none infinite running load;
  background: var(--eosc-green) none repeat scroll 0 0;
}

#app-loader .dot:nth-child(7n + 3) {
  transform: rotate(135deg);
}

#app-loader .dot:nth-child(7n + 3)::before {
  animation: 0.8s linear 0.3s normal none infinite running load;
  background: var(--eosc-green) none repeat scroll 0 0;
}

#app-loader .dot:nth-child(7n + 4) {
  transform: rotate(180deg);
}

#app-loader .dot:nth-child(7n + 4)::before {
  animation: 0.8s linear 0.4s normal none infinite running load;
  background: var(--eosc-yellow) none repeat scroll 0 0;
}

#app-loader .dot:nth-child(7n + 5) {
  transform: rotate(225deg);
}

#app-loader .dot:nth-child(7n + 5)::before {
  animation: 0.8s linear 0.5s normal none infinite running load;
  background: var(--eosc-yellow) none repeat scroll 0 0;
}

#app-loader .dot:nth-child(7n + 6) {
  transform: rotate(270deg);
}

#app-loader .dot:nth-child(7n + 6)::before {
  animation: 0.8s linear 0.6s normal none infinite running load;
  background: var(--eosc-yellow) none repeat scroll 0 0;
}

#app-loader .dot:nth-child(7n + 7) {
  transform: rotate(315deg);
}

#app-loader .dot:nth-child(7n + 7)::before {
  animation: 0.8s linear 0.7s normal none infinite running load;
  background: var(--eosc-brown) none repeat scroll 0 0;
}

#app-loader .dot:nth-child(7n + 8) {
  transform: rotate(360deg);
}

#app-loader .dot:nth-child(7n + 8)::before {
  animation: 0.8s linear 0.8s normal none infinite running load;
  background: var(var(--eosc-brown)) none repeat scroll 0 0;
}

#app-loader .loading {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: absolute;
  width: 100%;
  top: 100%;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes load {
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@keyframes load {
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

.spinner-message {
  text-align: center;
  font-size: larger;
  /* font-weight: bold; */
}
