input {
  font-family: 'Lato', sans-serif;
  font-size: 1em;
  padding: 0.5em;
}
.chatline span {
  display: none;
  font-weight: bold;
}
.chatline {
	margin: 1em 0.5em;
}
.chatline.user span {
    color: #E15A5A;
	padding: 0.5em 0;
}
.input {
  background-color: #eee;
  border: 1px solid #ccc;
  bottom: 0;
  left: 0;
  position: absolute;
  width: 99%;
}
.text {
  display: none;
  font-weight: normal;
}
span.text {
	font-weight: normal;
}
.chatline.user span.text {
	color: #000;
}
#chatend {
	display: none;
	font-size: 1.2em;
	font-style: italic;
	text-align: center;
}
#chatheader {
	background-color: #E15A5A;
	color: #fff;
	font-weight: bold;
	padding: 0.5em;
}
#chatinput {
	margin:auto;
	width: 95%;
}
#chatwindow {
  background-color: #fff;
	border: 1px solid #ccc;
	display: none;
	height: 100%;
	overflow: auto;
	position: fixed;
	width: 100%;
	z-index: 1;
}
#exit {
	float: right;
	font-size: 1.1em;
}
a#exit, a:visited#exit, a:hover#exit {
	color: #fff;
	text-decoration: none;
}
#greeting {
  display: none;
}
@media only screen and (min-width: 481px) {
	#chatwindow {
	    bottom: 0;
		height: 450px;
		left: 0;
		position: fixed;
		width: 400px;
	}
}
