body {
	margin: 0;
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
	font-weight: 300;
}
body, html {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.views {
	width: 320px;
	text-align: center;
	margin-top: -30px;
}
.views:first-child {
	float: left;
}
.views:last-child {
	float: right;
}
.chat {
	width: 320px;
	height: 480px;

	background-color: #FFF;
	box-shadow: 0px 0px 40px 10px #f2f2f2;
	margin-top: 60px;
/* 	overflow: hidden; */
}
.chat.user {
	float: left;
	margin-left: 80px;
}

.chat.agent {
	float: right;
	margin-right: 80px;
}
.chat .info {
	padding-left: 10px;
	padding-top: 10px;
	height: 54px;
	border-bottom: 1px solid #dadada;
}
.chat .info .speakingWith {
	color: #858;
	margin-bottom: 2px;
	font-size: 10px;
	font-weight: 400;
}
.chat .info .user,
.chat .info .agent {
	float: left;
	width: 100%;
	width: calc(100% - 20px);
	height: 50px;
	height: calc(50px - 10px);

	font-size: 12px;
}
.chat .info .name {
	float: left;
	font-size: 20px;
}

.chat .info .status {
	float: left;
	margin-left: 10px;
}
.chat .info .status .dot {
	float: left;
	width: 8px;
	height: 8px;
	margin-top: 9px;
	background-color: green;
	border-radius: 50%;
}
.chat .info .status .doing,
.chat .info .agent .status .doing {
	float: left;
	font-size: 12px;
	margin-top: 4px;
	margin-left: 5px;
}

.chat .info .agent .avatar {
	float: right;
	width: 40px;
	height: 40px;
	margin-top: -15px;
	margin-right: -10px;
	border-radius: 50%;
	border: 1px solid #FFF;
}

.chat .msgs {
	float: left;
	width: 100%;
	height: 50%;
	height: calc(100% - 106px);
	max-height: calc(100% - 106px);
	overflow-x: hidden;
	overflow-y: scroll;

	background-color: #f0f0f0;
}
.chat .msgs .msg {
	float: left;
	margin-top: 12px;
	width: 100%;
}
.chat .msgs .msg:last-child {
	margin-bottom: 10px;
}
.chat .msgs .msg .user,
.chat .msgs .msg .agent {
	max-width: calc(100% - 60px);
	font-size: 14px;
	padding: 10px;
	border-radius: 5px;

	box-shadow: 0px 0px 10px 0px #c8c8c8;
}
.chat .msgs .msg .user {
	float: left;
	background-color: #FFF;
	margin-left: 10px;
}
.chat .msgs .msg .agent {
	float: right;
	background-color: #369eff;
	color: #FFF;
	margin-right: 10px;
}
.chat .msgs .msg .user a {
	font-weight: bold;
}
.chat .msgs .msg .agent a {
	color: #FFF;
	font-weight: bold;
}

.chat.user .msgs .msg .agent {
	float: left;
	margin-left: 10px;
	margin-right: 0;
}
.chat.user .msgs .msg .user {
	float: right;
	margin-right: 10px;
	margin-left: 0;
}

.chat .input {
	float: left;
	width: 100%;
	height: 40px;

	background-color: #FFF;
	border-top: 1px solid #ebebeb;
	box-shadow: 0px 0px 1px 0px #c8c8c8;
}
.chat .input input[type="text"] {
	float: left;
	height: 100%;
	width: 80%;
	width: calc(100% - 45px);

	font-size: 16px;
	padding-left: 10px;
	padding-right: 10px;
	border: none;
}
.chat .input .btn {
	float: left;
	width: 45px;
	height: 40px;
	background-color: #369eff;
	text-align: center;
	line-height: 40px;
	vertical-align: 50%;
	color: #FFF;

	cursor: pointer;
}
.chat .input .btn img {
	margin-top: 9px;
	width: 20px;
}

.chat .msgs .status {
	float: left;
	width: 100%;
	width: calc(100% - 20px);
	padding: 10px;
}
.chat .msgs .status div {
	float: left;
	width: 50px;
	height: 24px;
	border-radius: 5px;
	text-align: center;
	color: #FFF;

	line-height: 24px;
	vertical-align: 50%;
}
.chat .msgs .status .user {
	background-color: #FFF;
	color: #000;
}
.chat .msgs .status .agent {
	float: left;
	background-color: #369eff;
}

.chat.user .msgs .msg .agent {
	float: left;
}
.chat.user .msgs .msg .user {
	float: right;
}


.chat.agent .info .user .contact {
	width: 100%;
	float: left;
	font-size: 12px;
	padding-top: 4px;
}
.chat.agent .info .user .contact div {
	float: left;
	margin-right: 10px;
}
.chat.agent .info {
	height: 70px;
}
.chat.agent .msgs {
	height: calc(100% - 70px - 52px);
}
.user .name .company {
	float: left;
	font-size: 12px;
	margin-top: 10px;
}



.form {
	width: 100%;
	height: 100%;
}
.form dl {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	margin: auto;

	width: 320px;
	height: 280px;
}
.form dl dd {
	margin-left: 0;
}
.form a {
	font-size: 12px;
	color: #000;
	text-decoration: none;
}
.form a:HOVER {
	color: #369eff;
}
.form input[type="text"],
.form input[type="tel"],
.form input[type="email"]{
	font-size: 24px;
	margin-bottom: 12px;
	padding: 4px;
	border: none;
	border-appearance: none;
	border-bottom: 2px solid #b1b1b1;
	height: 50px;
	font-size: 16px;
	padding-left: 40px;
	width: 100%;
}
.form input[type="button"] {
	margin-left: 10px;
	border: none;
	background-color: #369eff;
	padding: 6px;
	padding-left: 10px;
	padding-right: 10px;

	color: #FFF;
	font-size: 16px;
	cursor: pointer;
	text-transform: uppercase;
}
.form input[type="button"]:HOVER {
	background-color: #000;
}

.form input[type="button"] {
	background-color: #009dd7;
	border-color: #009dd7;
	width: 140px;
	color: #FFF;
	border: 1px solid #FFF;
	text-align: center;
	font-size: 14px;
	text-transform: uppercase;
	padding: 40px;
	padding-top: 16px;
	padding-bottom: 16px;
	cursor: pointer;
    -webkit-transition: background-color 0.5s, border-color 0.1s, color 0.1s; /* Safari */
    transition: background-color 0.5s, border-color 0.1s, color 0.1s;
}
.form input[type="button"]:VISITED,
.form input[type="button"]:ACTIVE,
.form input[type="button"]:HOVER,
.form input[type="button"]:LINK {
	text-decoration: none;
	color: #000;
}
.form input[type="button"]:HOVER {
	background: #000;
	color: #FFF;
}

.form .logo {
	width: 220px;
	margin-top: -100px;
}


.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;

	height: 60px;
	border-bottom: 1px solid #369eff;
	background-color: #FFF;
}
.header .logo {
	float: left;
	height: 30px;
	margin-left: 20px;
	margin-top: 15px;
	cursor: pointer;
}
.header .nav {
	float: left;
	padding-left: 15px;
	margin-left: 20px;
}
.header .nav .item {
	float: left;
	padding-left: 10px;
	padding-right: 10px;
	
	line-height: 60px;
	vertical-align: 50%;
	color: #000;
	cursor: pointer;

	transition-timing-function: linear;
	-webkit-transition: 0.2s;
	transition: 0.2s;

	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.header .nav .item:HOVER,
.header .nav .item.active {
	font-size: 24px;
	color: #369eff;
}

.header .nav2 {
	float: right;
	margin-right: 20px;
}
.header .nav2 .item {
	padding-right: 10px;

	line-height: 60px;
	vertical-align: 50%;
	color: #000;
	cursor: pointer;
	font-weight: 500;
}
.content {
	margin-top: 60px;
	float: left;
	width: 100%;
	min-height: 100px;
	position: relative;

	padding-top: 20px;
}
.content .loader {
	width: 60px;
	height: 60px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	margin: auto;
}
.content .loader img {
	width: 100%;
	height: 100%;
}

.content .section {
	width: 100%;
	max-width: 960px;
	margin-left: auto;
	margin-right: auto;
	
	margin-top: 20px;
	margin-bottom: 40px;
}
.content .section .sectionTitle {
	font-size: 32px;
	font-weight: 100;
	padding-bottom: 10px;
}

.vsTable {
	width: 100%;
}
.vsTable thead td {
	text-transform: uppercase;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	padding-bottom: 4px;
}
.vsTable thead .user {
	width: 60px;
	text-align: center;
}
.vsTable thead .dur {
	width: 62px;
}
.vsTable thead .datetime {
	width: 100px;
	text-align: center;
}
.vsTable thead .actions {
	width: 50px;
	text-align: center;
}

.vsTable tbody tr td {
	font-size: 14px;
	padding-left: 4px;
	padding-top: 4px;
	padding-bottom: 4px;
	background-color: #FFF;
}

.vsTable tbody tr:not(:last-child) td {
	border-bottom: 1px solid #ededed;
}
.vsTable tbody tr:HOVER td {
	color: #FFF;
	background-color: #369eff;
}
.vsTable tbody .user {
	text-align: center;
}
.vsTable tbody .datetime {
	text-align: center;
}
.vsTable tbody .actions {
	text-align: center;
}
.vsTable tbody .name {
	font-weight: bold;
}
.vsTable tbody .link {
	font-size: 12px;
}
.vsTable tbody .avatar {
	width: 40px;
	height: 40px;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.vsTable tbody .btn {
	cursor: pointer;
}
.vsTable tbody .btn img {
	width: 32px;
	height: 32px;
}
.notificationEnableBar {
	position: absolute;
	right: 0;
	left: 0;
	top: 70px;
	margin: auto;

	width: 800px;
	height: 60px;
	background-color: blue;
	color: #FFF;
	font-size: 24px;
	text-align: center;
	-moz-border-radius: 5px;
	border-radius: 5px;
	line-height: 60px;
	vertical-align: 50%;

	z-index: 999;
	cursor: pointer;
}