.loader-bar {
  width: 196px;
  height: 18px;
  display: inline-block;
  background-color: #cfc8d9;
  border: 1px solid #cfc8d9;
  border-radius: 4px;
  background: linear-gradient(
      45deg,
      transparent 49%,
      #cfc8d9 50%,
      #cfc8d9 50%,
      transparent 51%,
      transparent
    ),
    linear-gradient(
      -45deg,
      transparent 49%,
      #cfc8d9 50%,
      #cfc8d9 50%,
      transparent 51%,
      transparent
    );
  font-size: 10px;
  background-size: 1em 1em;
  box-sizing: border-box;
  animation: barStripe 0.6s linear infinite;
}

@keyframes barStripe {
  0% {
    background-position: 1em 0;
  }
  100% {
    background-position: 0 0;
  }
}

@keyframes pulseColors {
  0% {
    background-color: #be8cff;
  }
  /* 33% {
    background-color: #ff74b0;
  } */
  50% {
    background-color: #01ff80;
  }
  /* 100% {
    background-color: #5da3ff;
  } */
  100% {
    background-color: #be8cff;
  }
}

.pulsing-background {
  animation: pulseColors 2s infinite;
}

.spinner {
  border-radius: 50%;
  display: inline-block;
  border-top: 3px solid #dfdfdf;
  border-right: 3px solid transparent;
  box-sizing: border-box;
  animation: spinner-rotation 1s linear infinite;
}

@keyframes spinner-rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

