﻿#chat-client {
    width: 300px;
    position: fixed;
    bottom: 0px;
    right: 0px;
    background-color: #fff9f9;
    border-radius: 20px 20px 0 0;
}
#chat-header{
    position: relative;
    width: 100%;
    background-color: #05c322;
    border-radius: 20px 20px 0 0;
    height: 40px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
}
#chat-main-area{
    height: 500px;
}
#chat-message-list {
    height: 450px;
    overflow-y: scroll;
}
#chat-message-list .message{
    margin: 5px;
    padding: 5px;
    background-color:azure;
}
#chat-message-input {
    height: 50px;
}
#chat-text-input{

}
#chat-button-input {
}
.msg {
    position: relative;
    margin-bottom: 2em;
}

.msg {
    position: relative;
    margin-bottom: 2em;
    display: flex;
}

blockquote {
    border-radius: .35em;
    position: relative;
    display: inline-block;
    margin: 0;
    max-width: 60%;
    padding: .5em;
}

.msg-them blockquote::after, .msg-me blockquote::before {
    position: absolute;
    display: block;
    content: '';
    width: 0;
    height: 0;
}

.msg-them blockquote {
    background-color: #FFBB73;
}

    .msg-them blockquote::after {
        border: .5em solid #FFBB73;
        border-color: #FFBB73 transparent transparent #FFBB73;
        top: .5em;
        right: -1em;
    }

.msg-me blockquote {
    background-color: #0099cc;
    margin-left: 1em;
}

    .msg-me blockquote::before {
        border: .5em solid #0099cc;
        border-color: #0099cc #0099cc transparent transparent;
        top: .5em;
        left: -1em;
    }

.chat-message-list {
    flex: 1;
    overflow: auto;
}

.msg-them {
    justify-content: flex-end;
}

    .msg-them blockquote {
        order: -1;
        margin-right: 1em;
    }

.msg-send {
    padding: 5px;
}
