.chatbotBox {
    position: fixed;
    right: 15px;
    bottom: 0;
    box-shadow: 0 0 0.1em #000;
    z-index: 23;
}

#chatbotFlyer {
    width: 250px;
    height: 35px;
    background: #8bc34a;
    line-height: 35px;
    font-size: 18px;
    text-align: center;
    border: 1px solid #777;
    color: #000;
}

#chatbotHeader {
    display: none;
    width: 250px;
    height: 35px;
    background: #8bc34a;
    line-height: 33px;
    text-indent: 20px;
    border: 1px solid #777;
    border-bottom: none;
}

#chatbotContent {
    display: none;
    width: 250px;
    height: 300px;
    background: #ffffff;
    border: 1px solid #777;
    overflow-y: auto;
    word-wrap: break-word;
}

.box {
    width: 10px;
    height: 10px;
    background: green;
    float: left;
    position: relative;
    top: 11px;
    left: 10px;
    border: 1px solid #ededed;
}

/* chat style */
.chatContainer {
    border: 2px solid #dedede;
    background-color: #f1f1f1;
    border-radius: 5px;
    padding: 10px;
    margin: 10px 0;
}

.darker {
    border-color: #ccc;
    background-color: #ddd;
}

.chatContainer::after {
    content: "";
    clear: both;
    display: table;
}
