@charset "utf-8";
/* CSS Document */
/* AIMee 'Chat' endpoint */

    .typing-indicator {
            position: absolute;
            right: 0;
            bottom: 0;
            height: 100%;
            display: flex;
            align-items: center;
            animation: typing 1.5s infinite;
        }

        .typing-indicator span {
            background-color: #999;
            border-radius: 50%;
            width: 8px;
            height: 8px;
            margin-right: 5px;
        }

        .typing-indicator span:nth-child(1) {
            animation: typing-dot 0.6s infinite;
        }

        .typing-indicator span:nth-child(2) {
            animation: typing-dot 0.6s infinite 0.3s;
        }

        .typing-indicator span:nth-child(3) {
            animation: typing-dot 0.6s infinite 0.6s;
        }
  #responses {
    visibility: visible;
  }

#chatMessage_0, #chatMessage_1, #chatMessage_2, #chatMessage_3, #chatMessage_4, #chatMessage_5, #chatMessage_6, #chatMessage_7, #chatMessage_8, #chatMessage_9, #chatMessage_10, #chatMessage_11, #chatMessage_12, #chatMessage_13, #chatMessage_14 {
    white-space: pre-wrap;
}
