body,
html {
    background-color: #ededed;
    @import url('https://fonts.googleapis.com/css?family=Ubuntu');
    font-family: Ubuntu, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    margin: 0;
    padding: 0
}

#messageArea {
    overflow-y: scroll
}

.chat {
    list-style: none;
    background: 0 0;
    padding: 0;
    margin: 0
}

.chat li {
    padding: 8px;
    padding: .5rem;
    font-size: 1rem;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    color: #000
}

.visitor {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    -ms-grid-row-align: flex-end;
    align-items: flex-end;
}

.visitor .msg {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    border-top-right-radius: 2px;
    background-color: #009EFF;
    color: #fff;
}

.chatbot .msg {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    border-top-left-radius: 2px
}

.msg {
    word-wrap: break-word;
    min-width: 50px;
    max-width: 80%;
    padding: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    display: inline-block;
    max-width: 280px;
    margin-bottom: 0.1em;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0.6px 0.54px -1.33px, rgba(0, 0, 0, 0.13) 0px 2.29px 2.06px -2.67px, rgba(0, 0, 0, 0.04) 0px 10px 9px -4px;
    border: 0px;
    background: rgb(255, 255, 255);
    color: rgb(66, 77, 87);
}

.msg p {
    margin: 0 0 .2rem 0;
    white-space: pre-line;
    max-width: 100%;
    padding: 12px 18px 14px;
    font-size: 14px;
    font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.msg .time {
    font-size: .7rem;
    color: #7d7b7b;
    margin-top: 3px;
    float: right;
    cursor: default;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none
}

.visitor .msg .time {
    font-size: .7rem;
    color: #e8e8e8;
    margin-top: 3px;
    float: right;
    cursor: default;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none
}

.textarea {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    width: 95%;
    height: 55px;
    z-index: 99;
    background-color: #fff;
    border: none;
    outline: 0;
    padding-left: 15px;
    padding-right: 15px;
    color: #000;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.5;
    background: rgba(250, 250, 250, .8);
    box-shadow: 0 -6px 12px 0 rgba(235, 235, 235, .95);
    transition: .4s
}

.textarea:focus {
    background: #fff;
    box-shadow: 0 -6px 12px 0 rgba(235, 235, 235, .95);
    transition: .4s
}

a.banner {
    position: fixed;
    bottom: 5px;
    right: 10px;
    height: 12px;
    z-index: 99;
    outline: 0;
    color: #777;
    font-size: 10px;
    text-align: right;
    font-weight: 200;
    text-decoration: none
}

div.loading-dots {
    position: relative
}

div.loading-dots .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 2px;
    border-radius: 50%;
    background: #009EFF;
    animation: blink 1.4s ease-out infinite;
    animation-fill-mode: both
}

div.loading-dots .dot:nth-child(2) {
    animation-delay: -1.1s
}

div.loading-dots .dot:nth-child(3) {
    animation-delay: -.9s
}

div.loading-dots .dot-grey {
    background: #009EFF
}

div.loading-dots .dot-sm {
    width: 6px;
    height: 6px;
    margin-right: 2px
}

div.loading-dots .dot-md {
    width: 12px;
    height: 12px;
    margin-right: 2px
}

div.loading-dots .dot-lg {
    width: 16px;
    height: 16px;
    margin-right: 3px
}

@keyframes blink {

    0%,
    100% {
        opacity: .2
    }

    20% {
        opacity: 1
    }
}

.btn {
    /* display: block;
    padding: 5px;
    border-radius: 5px;
    margin: 5px;
    min-width: 100px;
    background-color: #009EFF;
    cursor: pointer;
    color: #fff;
    text-align: center */

    display: block;
    border-radius: 16px;
    margin: 5px;
    min-width: 100px;
    /* background-color: #009eff42; */
    cursor: pointer;
    border: 1px solid #009EFF;
    text-align: center;
    line-height: 1.4em;
    text-decoration: none;
    font-size: 0.975rem;
    padding: 8px 8px calc(9px);
    font-weight: 400;
}