.app-loadingscreen {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  color: white;
  text-align: center;
  background: radial-gradient(circle farthest-corner at center, #ddd 0%,  #84969f 100%);
  transition: opacity 500ms ease-in;
  z-index:5000;
}
.app-loadingscreen.dark{
  background: radial-gradient(circle farthest-corner at center, #181818 0%, #424242 100%);
}
.app-loadingscreen.finished {
  opacity: 0;
}
.loader {
  position: absolute;
  top: calc(50% - 32px);
  left: calc(50% - 32px);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  perspective: 800px;
}

.inner {
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.inner.one {
  left: 0%;
  top: 0%;
  animation: rotate-one 2s linear infinite;
  border-bottom: 3px solid #1c9adc;
}

.inner.two {
  right: 0%;
  top: 0%;
  animation: rotate-two 2s linear infinite;
  border-right: 3px solid #aaa;
}

.inner.three {
  right: 0%;
  bottom: 0%;
  animation: rotate-three 2s linear infinite;
  border-top: 3px solid #ea9931;
}

.loader:after {
  content: 'LOADING';
  font-size: x-small;
  letter-spacing: 3px;
  font-weight: 100;
  color: #999;
  position: absolute;
  top: 90px;
  text-align: center;
  width: 100%;
  left: 0;
  animation: load-txtpulse 5s ease-in-out alternate infinite;
}

@keyframes load-txtpulse{
  0%{text-shadow:-10px 0px 2px rgba(0,0,0,0);}
  30%{text-shadow:-5px 2px 5px rgba(0,0,0,0.2);}
  50%{text-shadow:0px 5px 8px rgba(0,0,0,0.5);}
  70%{text-shadow:5px 2px 5px rgba(0,0,0,0.2);}
  100%{text-shadow:10px 0px 2px rgba(0,0,0,0);}
}

@keyframes rotate-one {
  0%    {transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);}
  100%  {transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);}
}

@keyframes rotate-two {
  0%    {transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);}
  100%  {transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);}
}

@keyframes rotate-three {
  0%    {transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);}
  100%  {transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);}
}
