#suc-chat-box {
    width: 100%;
    height: 300px;
    border: 1px solid #ccc;
    padding: 10px;
    overflow-y: auto;
    background: #f9f9f9;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
}
.msg_outer {
	width: 100%;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    clear: both;
}
#suc-chat-box .msg {
    padding: 10px 15px;
    border-radius: 12px;
    word-wrap: break-word;
    position: relative;
    font-size: 14px;
    max-width: 100%;
}

#suc-chat-box .msg.left {
    background-color: #e0e0e0;
    color: #000;
    align-self: flex-start;
}

#suc-chat-box .msg.right {
    background-color: #d1e7dd;
    color: #000;
    align-self: flex-end;
}
#suc-chat-box .msg_time {
    font-size: 11px;
    color: #888;
    margin-top: 3px;
}
#suc-chat-box .msg_time.right {
    text-align: right;
    align-self: flex-end;
}
#suc-chat-box .msg_time.left {
    text-align: left;
    align-self: flex-start;
}

#suc-chat-input {
    width: 100%;
}

#suc-chat-send {
    margin: 5px 10px 0 0;
}
#suc-typing-indicator {
    font-style: italic;
    color: #999;
    margin-top: -10px;
    margin-bottom: 10px;
}
a.join-chat-btn {
    border-style: solid;
    border-right-width: 0;
    border-left-width: 0;
    border-bottom-width: 0;
    color: #ffffff;
    border-color: #0170B9;
    background-color: #0170B9;
    border-radius: 2px;
    padding-top: 10px;
    padding-right: 30px;
    padding-bottom: 10px;
    padding-left: 30px;
    font-family: inherit;
    font-weight: inherit;
    line-height: 1;
}
a.join-chat-btn:hover{
	color: #ffffff;
    background-color: #3a3a3a;
    border-color: #3a3a3a;
}
.suc-user-list ul li {
    margin-top: 10px;
	list-style:none;
}