
.loader {
  position: fixed;
  background: linear-gradient(90deg, #c5daf9 0%, #c5daf9 25%, #4384f2 25%, #4384f2 50%, #c5daf9 50%, #c5daf9 75%, #4384f2 75%, #4384f2 100%);
  background-size: 200% 100%;
  height: 0.2em;
  top: 0;
  width: 100%;
  z-index: 10000;
  background-position: 0;
  animation: AnimationName 0.5s linear infinite;
}

@keyframes AnimationName {
  0% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}
