
.rt_chat-container {
	display: flex;
	flex-direction: column;
	height: 300px;
	border: 1px solid #ccc;
	border-radius: 7px;
	overflow: hidden;
	background-color: #ddd;
}

@media screen and (min-width:992px) {
  .rt_chat-container {
    height: 600px;
}


}

.rt_chat-header {
	color: #eee;
	display: flex;
	justify-content: space-between;
	padding: 10px;
	background-color: #b20800;
	border-bottom: 1px solid #ccc;
}

.rt_chat-messages {
    overflow-y: scroll;
    padding: 10px;
    height: 100%;
}

.rt_chat-message {
	display: flex;
	align-items: flex-start;
	margin-bottom: 6px;
}

.rt_chat-message-avatar {
    margin-right: 10px;
}

.rt_chat-message-avatar img {
	background: #f5f5f5;
	width: 50px;
	display: block;
	height: 50px;
	border-radius: 10%;
}

.rt_chat-message-content {
    display: flex;
    flex-direction: column;
}

.rt_chat-message-meta {
	margin-bottom: 6px;
}

.rt_chat-message-author {
    font-weight: bold;
}

.rt_chat-message-timestamp {
    font-size: 12px;
    color: #999;
    margin-left: 10px;
}

.rt_chat-message-text {
	margin: 0;
	padding: 8px 6px 0px 9px;
	border-radius: 2px 5px 2px 5px;
	background-color: #f5f5f5;
}

.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: #f5f5f5;
}

.rt_chat-input input {
	flex: 1;
	margin-right: 10px;
	padding: 4px;
	border: 1px solid;
	border-color: #DDD;
	border-radius: 7px;
	
	font-size: 14px;
}

.rt_chat-input button {
	background: #b20800;
	color: #fff;
	display: inline-block;
	border: none;
	padding: 5px 10px;
	cursor: pointer;
	
	font-size: 16px;
}

.rt_chat-input button:disabled {
    background: #ccc !important;
}

.rt_chat-input button:hover {
	background: #f21b10;
}

