:root {
  --chatbot_vp-bot-img: url("../../../images/chatbot.gif");
  --chatbot_vp-bot-bg-color: #7f7f7f;
  --chatbot_vp-bot-name_color: #1d2327;
  --chatbot_vp-messages-bg-color: #444444;
}

.chatbot_vp-messages-isTyping {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 10px auto 5px 10px;
  border-radius: 10px 10px 10px 0;
}
.chatbot_vp-messages-isTyping span {
  display: inline-block;
  vertical-align: middle;
  width: 7px;
  height: 7px;
  background: white;
  border-radius: 7px;
  animation: isTyping 0.8s infinite alternate;
}
.chatbot_vp-messages-isTyping span:nth-of-type(2) {
  animation-delay: 0.2s;
}
.chatbot_vp-messages-isTyping span:nth-of-type(3) {
  animation-delay: 0.6s;
}

@keyframes isTyping {
  0% {
    opacity: 0.9;
    transform: scale(0.5);
  }
  100% {
    opacity: 0.1;
    transform: scale(1);
  }
}/*# sourceMappingURL=isTyping.css.map */