@keyframes chatbotTogglePulse {
  0%,
  100% {
    box-shadow: var(--chatbot-shadow);
  }
  50% {
    box-shadow: 0 30px 85px rgba(15, 23, 42, 0.22);
  }
}

.chatbot-toggle {
  animation: chatbotTogglePulse 3.2s ease-in-out infinite;
}

.chatbot-toggle:active {
  transform: translateY(0);
}

.chatbot-toggle-image {
  border-radius: 999px;
}
