/*.app-loading {*/
/*  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;*/
/*  position: relative;*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  top: 10em;*/
/*}*/
.app-loading p {
  display: block;
  font-size: 1.17em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: normal;
}

.app-loading {
  /*font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;*/
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 10em;
  left: calc(50vw - 110px);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(#5d76fa, #5d76fa, #5d76fa);
  animation: animate 1.8s linear infinite;
}

/*.loader {*/
/*  position: relative;*/
/*  width: 220px;*/
/*  height: 220px;*/
/*  border-radius: 50%;*/
/*  background: linear-gradient(#5D76FA, #5D76FA, #5D76FA);*/
/*  animation: animate 1.8s linear infinite;*/
/*}*/

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

.app-loading span {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  align-self: center;
  background: linear-gradient(#5d76fa, #5d76fa, #040f23);
}

.app-loading span:nth-child(1) {
  filter: blur(5px);
}

.app-loading span:nth-child(2) {
  filter: blur(10px);
}

.app-loading span:nth-child(3) {
  filter: blur(35px);
}

.app-loading span:nth-child(4) {
  filter: blur(50px);
}

.app-loading:after {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: #0e1a32;
  border: #5d76fa 1px;
  border-radius: 50%;
}
