@keyframes bounce-right {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(0);
    opacity: 1;
  }

  40% {
    transform: translateX(3px);
    opacity: 0.8;
  }

  60% {
    transform: translateX(2px);
    opacity: 0.8;
  }
}

@keyframes bounce-left {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(0);
    opacity: 1;
  }

  40% {
    transform: translateX(-3px);
    opacity: 0.8;
  }

  60% {
    transform: translateX(-2px);
    opacity: 0.8;
  }
}


@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0);
  }
}

@keyframes shimmer-background {
  0% {
    opacity: 0.1;
  }

  50% {
    opacity: 0.25;
  }

  100% {
    opacity: 0.1;
  }
}
