.chat-outer-div {
	top: 0;
	font-size: 13px;
	font-family: "Open Sans";
	box-shadow: 2px 2px 10px darkslategrey;
	background-color: #6c757d;
}

.chat-div {
	position: absolute;
	height: 20px;
	width: 100%;
	top: 0;
	background-color: rgb(108, 117, 125);
	border-left: solid 1px darkgrey;
	border-bottom: solid 1px darkgrey;
	border-right: solid 1px darkgrey;
	padding-left: 5px;
	color: white;
	cursor: pointer;
}

.chat-presence {
	width: 10px;
	margin-left: 6px;
	height: 10px;
	bottom: 4px;
	background-color: darkorange;
	position: absolute;
	border-radius: 50%;
	box-shadow: 0px 0px 3px darkgrey;
}

.chat-members {
	position: relative;
	height: 20px;
	margin-top: 20px;
	width: 100%;
	background-color: whitesmoke;
	border-left: solid 1px darkgrey;
	border-bottom: solid 1px darkgrey;
	border-right: solid 1px darkgrey;
	padding-left: 5px;
	overflow: hidden;
}

.chat-body {
	overflow-y: scroll;
	padding-left: 3px;
	padding-right: 3px;
	padding-top: 3px;
}

.chat-body-outer {
	background-color: white;
	top: 32px;
	border-left: solid 1px darkgrey;
	border-bottom: solid 1px darkgrey;
	border-right: solid 1px darkgrey;
}

.chat-picture {
	width: 32px;
	height: 32px;
	border-radius: 3px;
}

.chat-message {
	white-space: pre-wrap;
	font-family: "Open Sans";
	font-size: 1.1em;
	display: flex;
}

.chat-message-right {
	flex: 1 1 0;
	padding-left: 8px;
}

.chat-message-right img {
	width: 50%;
	height: auto;
}

.chat-message-content {
	word-wrap: break-word;
}

.unread {
	background: linen;
}

.chat-user {
	color: steelblue;
	font-weight: 600;
}

.chat-header-button {
	float: right;
	height: 20px;
	background: darkgrey;
	text-align: center;
	border: none;
	cursor: pointer;
}

.chat-time {
	font-size: 0.8em;
	color: dimgray;
}

.chat-textarea {
	font-size: 13px;
	line-height: 16px;
	max-height: 150px;
	overflow-y: auto;
	background: white;
}

.chat-textarea:focus {
	background-color: ghostwhite;
}

.chat-textarea:hover:not(:focus) {
	background-color: gainsboro;
	cursor: text;
}

.chatexit:hover {
	background: lightcoral;
}
