

/* Loader style */
.loaderouter { width: 100%; height: 100vh; z-index: 1000000000; position: fixed;
    background: #ffffffb8; display: none; align-items: center; justify-content: center;
    top: 0;
 }
.loader {

    display: block;
    margin: 15px auto;

    color: #ccc;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;

}
.loader::after,
.loader::before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 50%;
  transform: scale(0.5) translate(0, 0);
  background-color: #ccc;
  border-radius: 50%;
  animation: animloader 1s infinite ease-in-out;
}
.loader::before {
  background-color: #000;
  transform: scale(0.5) translate(-48px, -48px);
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animloader {
  50% {
    transform: scale(1) translate(-50%, -50%);
  }
}

/* END Loader style */
