$A400: #0e7cc5;

.loader {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 999;

  .dot {
    animation: slide 1s infinite;
    background: $A400;
    border-radius: 100%;
    display: inline-block;
    height: 24px;
    width: 24px;

    &:nth-child(1) {
      animation-delay: 0.1s;
      background: #00ef90;
    }
    &:nth-child(2) {
      animation-delay: 0.2s;
      background: #02c580;
    }
    &:nth-child(3) {
      animation-delay: 0.3s;
      background: #56c3c0;
    }
    &:nth-child(4) {
      animation-delay: 0.4s;
      background: #00b5a6;
    }
    &:nth-child(5) {
      animation-delay: 0.5s;
      background: #009494;
    }
  }
}
@keyframes slide {
  0% {
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(2);
  }
  100% {
    transform: scale(1);
  }
}
