.chat {
  display: flex;
  flex-direction: column;
}
.chat .chat-box {
  display: flex;
  flex-direction: column-reverse;
  max-height: 55vh;
  overflow-y: auto;
}
.chat .chat-box .message {
  align-self: flex-end;
  display: flex;
  padding: 20px;
  background-color: lightblue;
  border-radius: 20px;
  margin-bottom: 20px;
}
.chat .chat-box .message .date {
  font-weight: 600;
  font-size: 14px;
}
.chat .chat-box .message.is-bot {
  align-self: flex-start;
}
.chat .chat-box .message.is-bot:before {
  content: "";
  background-image: url("/css/img/bot.jpg");
  background-position: center;
  background-size: cover;
  display: block;
  min-width: 80px;
  height: 80px;
  border-radius: 20px;
  margin-right: 20px;
}

/*# sourceMappingURL=styles.css.map */
