
.rt_chat-container {
	height: 300px;
	overflow: hidden;
	z-index: 2;
	position: relative;
}

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


}

.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;
	height: calc(100% - 38px);
}

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

.rt_chat-message-avatar {
	-webkit-mask-image: url(../../../images/iny/avmask.png);
	mask-image: url(../../../images/iny/avmask.png);
	mask-size: contain;
}

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

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

.rt_chat-message-meta {
}

.rt_chat-message-author {
}

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

.rt_chat-message-text {
	margin: 0;
}

.rt_chat-message-action a {
    font-size: 11px;
    color: #999 !important;
    margin-left: 10px;
}

.rt_chat-input {
	display: flex;
	align-items: center;
	padding: 2px 0px 0px 0px;
}

.rt_chat-input input {
	color: #fff;
	flex: 1;
	margin-right: 10px;
	padding: 0px 4px;
	border: none;
	outline: none;
	background-color: #0000;
	
	font-size: 14px;
}

.rt_chat-input button {
}

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

