#loading-section {
  position: fixed;
  top: 25%;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
}

.loader {
  width: 48px;
  height: 48px;
  display: inline-block;
  position: relative;
}

.loader::after,
.loader::before {
  content: "";
  box-sizing: border-box;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0067AB;
  position: absolute;
  left: 0;
  top: 0;
  animation: animloader 2s linear infinite;
}

@keyframes animloader {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}