#processing{
  display: block;
  position: absolute;
  top: 130px;
  height: 100px;
  background-color: transparent;
  width: 200px;
}
.elementLoader{
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transform: rotate(calc(18deg*var(--i))) scale(0.3);
}
@keyframes animate{
  0%{transform: scale(1);}
  80%,100%{transform: scale(0);}
}
.elementLoader::before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: blue;
  box-shadow: 0 0 10px blue,
  0 0 20px blue,
  0 0 40px blue,
  0 0 60px blue,
  0 0 80px blue,
  0 0 100px blue;
  animation: animate .5s linear infinite;
  animation-delay: calc(.05s * var(--i))
}
