  /* From Uiverse.io by Praashoo7 */ 
  .loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  }

  .zay{
  width: 200px;
  }

  .loading {
  display: flex;
  width: 5em;
  align-items: center;
  justify-content: center;
  }

  .load {
  width: 23px;
  height: 3px;
  background-color: limegreen;
  animation: 1s move_5011 infinite;
  border-radius: 5px;
  margin: 0.1em;
  }

  .load:nth-child(1) {
  animation-delay: 0.2s;
  }

  .load:nth-child(2) {
  animation-delay: 0.4s;
  }

  .load:nth-child(3) {
  animation-delay: 0.6s;
  }

  @keyframes move_5011 {
  0% {
  width: 0.2em;
  }

  25% {
  width: 0.7em;
  }

  50% {
  width: 1.5em;
  }

  100% {
  width: 0.2em;
  }
  }