.scrollbar-thin {
  scrollbar-width: thin;
}
.max-w-4\/5 {
  max-width: 90%;
}
@keyframes bounce-dot {
  0%,
  100% {
    opacity: 0.5;
    transform: translateY(-50%);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-bounce-dot {
  animation: bounce-dot 0.7s infinite ease-in-out alternate;
}
.animation-delay-0 {
  animation-delay: 0s;
}
.animation-delay-100 {
  animation-delay: 0.1s;
}
.animation-delay-200 {
  animation-delay: 0.2s;
}
.animation-delay-300 {
  animation-delay: 0.3s;
}
.animation-delay-400 {
  animation-delay: 0.4s;
}
.animation-delay-500 {
  animation-delay: 0.5s;
}
