* {
	margin: 0;
	padding: 0;
	border: none;
	underline: none;
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	}

html, body {
	width: 100%;
	height: 100%;
	background: #fff;
	font-family: "Cabin", Campton, Nunito, Helvetica Neue, Helvetica, Arial, sans-serif;
	}

#chatbox {
	width: 80%;
	height: 100%;
	position: relative;
	overflow-y: auto;
	float: left;
	}

#chat-messages {
	width: 90%;
	position: relative;
//	background: #f4f4f4;
	padding-bottom: 20px;
	margin: 50px auto 0 auto;
	}

.chat-foto {
	width: 50px;
	height: 50px;
	background: #89ccca;
	border-radius: 99px;
	display: inline-block;
	float: left;
	margin-right: 20px;
	}

.message.user, .chat-bubbles {
	width: 260px;
	}

.message.user {
	position: relative;
	margin-left: auto;
	right: 0;
	}

.chat-bubbles {
	display: inline-block;
	}

.chat-bubble {
	background: #e5e5e5;
	line-height: 200%;
	border-radius: 22px;
	display: table;
	padding: 6px 16px;
	margin-top: 2px;
	}

.message.user {
//	float: right;
	}

.message.user .chat-bubble {
	background: #3abfc5;
	color: #fff;
	float: right;
	}

#footer {
	width: 100%;
	height: 75px;
	position: absolute;
	background: #eee;
	box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.15);
	bottom: 0; left: 0;
	}

#chat-input-field {
	width: 90%;
	height: 45px;
	position: relative;
	background: none;
	font-family: "Muli";
	font-size: 18px;
	color: #222;
	display: block;
	outline: none;
	padding: 5px 0;
	margin: 10px auto 0 auto;
	}

#sidebar {
	width: 380px;
	height: 100%;
	background: #434343;
	position: fixed;
	right: 0;
	}

#sidebar-holder {
	width: 350px;
	margin-left: 15px;
	}

#panel {
	width: 350px;
	height: 300px;
	background: #f4f4f4;
	border-radius: 4px;
	margin-top: 20px;
	}