﻿*, *:before, *:after {
	box-sizing: border-box;
}

.chat .chat-history {
	padding: 30px 30px 20px;
	border-bottom: 2px solid white;
}

.chat .chat-history .message-data {
	margin-bottom: 15px;
}

.chat .chat-history .message-data-time {
	color: #a8aab1;
	padding-left: 6px;
}

.chat .chat-history .message {
	color: white;
	padding: 18px 20px;
	line-height: 26px;
	font-size: 16px;
	border-radius: 5px;
	margin-bottom: 30px;
	width: 90%;
	position: relative;
}

.chat .chat-history .message:after {
	content: "";
	position: absolute;
	top: -15px;
	left: 20px;
	border-width: 0 15px 15px;
	border-style: solid;
	border-color: #CCDBDC transparent;
	display: block;
	width: 0;
}

.chat .chat-history .you-message {
	background: #CCDBDC;
	color: #003366;
	padding: 25px 25px;
}

.chat .chat-history .me-message {
	background: #E9724C;
}

.chat .chat-history .me-message:after {
	border-color: #E9724C transparent;
	right: 20px;
	top: -15px;
	left: auto;
	bottom: auto;
}

.chat .chat-message {
	padding: 30px;
}

.chat .chat-message .fa-file-o, .chat .chat-message .fa-file-image-o {
	font-size: 16px;
	color: gray;
	cursor: pointer;
}

.chat-ul li {
	list-style-type: none;
}

.align-left {
	text-align: left;
}

.align-right {
	text-align: right;
}

.float-right {
	float: right;
}

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

.you {
	color: #CCDBDC;
}

.me {
	color: #E9724C;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Raleway",sans-serif;
	color: #003366;
}
.error {
	color: #c30010;
	font-size: 12px;
}
