.chat {
	min-width: 340px;
	max-width: 100%;
	padding: 10px;
	overflow-x: hidden;
}

.chat-messages {
	overflow-y: auto;
	background-color: rgba(255, 255, 255, 0.5);
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}

.chat-messages, .chat-online {
	min-height: 300px;
	max-height: 500px;
}

@media all and (max-width: 770px) {
	.chat-online {
		min-height: 0;
		max-height: 350px;
	}
}

.chat-message {
	padding: 5px 10px;
}

.chat-actions textarea {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}

.chat-actions .btn {
	margin-top: 5px;
}

.chat-message-user {
	display: inline-block;
	padding-right: 8px;
	font-weight: bold;
	font-family: Roboto;
}

.chat-message-content {
	display: inline;
}

.chat-message-info {
	font-size: 12px;
	font-style: italic;
}

.chat-online-user {
	background-color: rgba(255, 255, 255, 0.5);
	padding: 10px;
}

@media all and (min-width: 500px) {

	.chat {
		min-width: 500px;
	}

}

.chat-users-online-heading {
	font-family: Roboto;
}