html {
	font-family: Tahoma, Verdana;
	box-sizing: border-box;
	background: #000 url('../images/background.jpg') no-repeat fixed;
	background-position: center center;
    background-size: cover;
}

body {
	padding: 0;
	margin: 0;
}

*, *:before, *:after {
	box-sizing: inherit;
}

.start-wrapper {
	width: 300px;
	color: #FFF;
	margin: 220px auto 0;
}

.startBtn {
	box-sizing: content-box;
	width: 294px;
	height: 55px;
	border: 3px solid #FFF;
	text-align: center;
	line-height: 55px;
	text-transform: uppercase;
	font-size: 20px;
	margin-bottom: 10px;
	transition: 0.4s;
}

.startBtn:hover {
	cursor: pointer;
	background: rgba(255, 255, 255, 0.2);
	text-shadow: 0 1px 1px #000;
}

.startForm {
	width: 294px;
	overflow: hidden;
}

.startForm label {
	display: block;
	font-size: 20px;
	text-shadow: 0 1px 1px #000;
	text-transform: uppercase;
}

.startForm input {
	margin-bottom: 10px;
	width: 294px;
	height: 55px;
	font-size: 20px;
	padding: 0 10px 0 10px;
	color: #FFF;
	background: none;
	border: 3px solid #FFF;
}

.startForm input[type="submit"]
{
	text-transform: uppercase;
	transition: 0.4s;
}

.startForm input[type="submit"]:hover {
	cursor: pointer;
	background: rgba(255, 255, 255, 0.2);
	text-shadow: 0 1px 1px #000;
}

.error {
	width: 100%;
	padding: 10px;
	color: #FFF;
	border: 1px solid #FF2222;
	background: #FF4444;
	margin-bottom: 10px;
	text-transform: uppercase;
}

/* Home Page */
.header {
	box-sizing: content-box;
	width: 100%;
	height: 60px;
	background: rgba(0, 0, 0, 0.3);
	transition: 0.4s;
	border-bottom: 2px solid #FFF;
}

.header:hover {
	background: rgba(0, 0, 0, 0.6);
}

.logo {
	float: left;
	height: 60px;
	padding: 0 20px 0 20px;
	font-weight: bold;
	font-size: 30px;
	color: #FFF;
	line-height: 60px;
	overflow: hidden;
}

.profile-holder {
	box-sizing: border-box;
	float: right;
	height: 60px;
	padding: 10px 20px 10px 20px;
	color: #FFF;
	line-height: 50px;
	background: #141414;
	transition: 0.4s;
	border-left: 1px solid #FFF;
}

.profile-holder:hover {
	background: #000;
	cursor: pointer;
}

.profile-pic {
	float: left;
	width: 40px;
	height: 40px;
	border-radius: 40px;
	background: url('../images/no-image.jpg') no-repeat;
	background-position: center center;
    background-size: cover;
	border: 2px solid #FFF;
	margin-right: 10px;
	overflow: hidden;
}

.menu {
	position: absolute;
	top: 60px;
	right: 0;
	padding: 10px;
	background: #161616;
	border-top: 2px solid #FFF;
	text-align: right;
	display: hidden;
}

.menu i {
	float: left;
	margin-right: 10px;
	line-height: 22px;
}

.menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.menu ul li {
	padding: 5px 10px 5px 10px;
}

.menu ul li a {
	text-decoration: none;
	color: #FFF;
}

.menu ul li a:hover {
	text-decoration: underline;
}

.chat-wrapper {
	width: 700px;
	background: rgba(0, 0, 0, 0.8);
	margin: 100px auto 0;
	color: #FFF;
	overflow: hidden;
}

.chat-title {
	width: 700px;
	height: 40px;
	line-height: 38px;
	padding: 0 10px 0 10px;
	border-bottom: 2px solid #FFF;
	text-transform: uppercase;
}

.chat-content {
	width: 700px;
	height: 350px;
	border-bottom: 2px solid #FFF;
	font-size: 13px;
	overflow-x: hidden;
	overflow-y: auto;
}

#chat-input {
	width: 700px;
	height: 42px;
	max-height: 98px;
	padding: 10px;
	background: none;
	border: none;
	resize: none;
	color: #FFF;
	font-family: Tahoma, Verdana;
	outline: none;
	overflow-x: hidden;
	overflow-y: auto;
}

#chat-input:disabled {
	color: #B2B2B2;
}

.chat-msg-holder {
	float: left;
	width: 700px;
	padding: 10px;
}

.chat-info-holder {
	float: left;
	width: 615px;
	overflow: hidden;
}

.chat-msg-pic {
	float: left;
	width: 40px;
	height: 40px;
	border-radius: 40px;
	background: url('../images/no-image.jpg') no-repeat;
	background-position: center center;
    background-size: cover;
	border: 2px solid #FFF;
	margin-right: 10px;
	overflow: hidden;
}

.chat-msg-name {
	float: left;
	font-size: 15px;
	color: orange;
}

.chat-msg-timesent {
	float: right;
	font-size: 12px;
	color: orange;
}

.chat-msg-text {
	clear: left;
}

.chat-msg-text a {
	color: yellow;
}

.scroll-info {
	float: right;
}

.scroll-info:hover {
	text-decoration: underline;
	cursor: pointer;
}