#enoblues-loader{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color:rgba(0, 0, 0, 0.3);
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.loading span {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #007bff;
  border-radius: 50%;
  margin: 3px;
  animation: bounce 1.4s infinite ease-in-out both;
}

.loading span:nth-child(1){animation-delay:-0.32s;}
.loading span:nth-child(2){animation-delay:-0.16s;}

@keyframes bounce {
  0%,80%,100% {transform: scale(0);}
  40% {transform: scale(1);}
}
