.chat-wrapper {
	position: relative;
	width: 100%;
}
.chat {
	font-family: 'GT Pressura', sans-serif;
	position: relative;
	background-color: #FFF;
	margin: 0;
	width: 100%;
	z-index: 0;
	padding: 10px;
	box-sizing: border-box;
}
.chat__title {
	display: block;
	text-transform: uppercase;
	font-size: 2vw;
	letter-spacing: 0.1vw;
	font-weight: bold;
}
.chat-editor {
    display: flex;
    align-items: center;
	border-bottom: 6px solid #000;
}
.chat-editor input {
    display: inline;
    flex: 1;
	font-size: 21px;
	border: 0; 
	min-width: 100px;
}
.chat-editor button {
	font-family: 'GT Pressura', sans-serif;
	border: 0;
	display: block;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 21px;
	color: #000;
	background-color: #fff;
	padding: 0;
}

.chat-timestamp {
    font-weight: bold;
}
