#rtchat_online_personal {
	text-align: center;
	padding: 10px;
}
.rt_chat-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
	margin-top: 25px;
}
.rt_chat-header {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: #131f39;
    border-bottom: 1px solid #ccc;
	padding-top: 25px;
}
.rt_chat-messages {
    overflow-y: scroll;
    padding: 10px;
    height: 100%;
}
.rt_chat-message {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}
.rt_chat-message-avatar {
    margin-right: 10px;
}
.rt_chat-message-avatar img {
	max-width: initial;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f5f5f5;
}
.rt_chat-message-content {
    display: flex;
    flex-direction: column;
}
.rt_chat-message-meta {
    margin-bottom: 5px;
}
.rt_chat-message-author {
	
    font-weight: bold;
	word-wrap: anywhere;
}
.rt_chat-message-timestamp {
    font-size: 12px;
    color: #999;
    margin-left: 10px;
}
.rt_chat-message-text {
    margin: 0;
    padding: 10px;
    border-radius: 4px;
    word-wrap: anywhere;
	background: rgba(217, 240, 255, 0.1);
  box-shadow: 0 4px 20px rgba(2, 2, 2, 0.5);
}
.rt_chat-message-action a {
    font-size: 11px;
    color: #999 !important;
    margin-left: 10px;
}
.rt_chat-input {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #393939;
}
.rt_chat-input input {
    flex: 1;
    margin-right: 10px;
    padding: 8px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
}
.rt_chat-input button {
    display: inline-block;
    background: #162340 !important;
  	color: #eee !important;
  	border: 1px solid #009dff !important;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}
.rt_chat-input button:disabled {
    background: #ccc !important;
}
.rt_chat-input button:hover {
  	background: #000 !important;
  	color: #009dff !important;
  	border: 1px solid #009dff !important;
}

.rt_chat-statistics {
	display: none;
}

.rt_chat-user_list {
	padding-left: 16px;
	padding-right: 16px;
overflow: auto;
	overflow-x: hidden;
}
.rt_chat-insert-meta {
	background: rgba(0.25,0.25,0.25,0.5);
	padding: 5px;
	display: none;
}

.cancel-whisper {
    cursor: pointer;
}