#chat {
	color: white;
	font-size: 16px;
	line-height: 22px;
}

.chat__close {
	border: none;
	background: none;
	padding: 0;
	position: absolute;
	right: 22px;
	top: 22px;
	cursor: pointer;
}

.storytile-sites-public-chat-message {
	padding: 12px 0;
	border-bottom: 1px solid black;
	
}

.storytile-sites-public-chat-message:last-child {
	border-bottom: none;
}

.storytile-sites-public-chat-message-time {
	display: none;
}

.storytile-sites-public-chat-message-user {
	color: var(--yellow);
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 5px;
}

.storytile-sites-public-chat-messages {
	overflow-y: scroll;
	height: 361px;
	height: 389px;
	height: 334px;
	padding: 15px 35px 15px 15px;
	margin-bottom: 20px;
}

.storytile-sites-public-chat-message-text {
  display: block;
  overflow-wrap: break-word;
  word-break: break-all;
}

.storytile-sites-public-chat-inputs form {
	display: flex;
	position: relative;
	background-color: #012E19;
	border-radius: 0 0 30px 0;
}

.storytile-sites-public-chat-input-text {
	flex: 1;
	margin-right: 40px;
	border: none;
	height: 60px;
	background-color: #012E19;
	color: white;
	resize: none;
	white-space: pre;
	overflow-x: scroll;
	overflow: auto;
	padding: 0 15px;
	font-family: 'Glober', Arial, sans-serif;
	font-size: 20px;
	line-height: 60px;
}

.storytile-sites-public-chat-input-button {
	background-color: var(--yellow);
	border: none;
	font-size: 24px;
	font-weight: 600;
	font-family: 'Glober', Arial, sans-serif;
	padding: 0 10px;
	border-radius: 0 0 30px 0;
}

@media screen and (max-width: 1000px) {
	.storytile-sites-public-chat-input-button {
		border-radius: 0;
	}
}

.storytile-sites-emoji-menu {
	position: absolute;
	top: 17px;
	right: 105px;
	width: 25px;
	height: 25px;
	text-align: center;
	line-height: 25px;
	overflow: hidden;
	background: transparent;
}
	
.storytile-sites-emoji-menu[data-open] {
	overflow: visible;
}
	
	
.storytile-sites-emoji-menu-list {
	position: absolute;
	bottom: 25px;
	right: 0;
	background: #fff;
	width: 200px;
	max-height: 200px;
	overflow-x: hidden;
	overflow-y: auto;
}
	
.storytile-sites-emoji-menu-list > span {
	position: relative;
	padding: 0.25em;
	background: transparent;
}
	
.storytile-sites-emoji-proposal {
	position: absolute;
	bottom: 25px;
	left: 0;
	box-sizing: border-box;
	background-color: #e0e0e0;
	border: 1px solid #ddd;
	padding: 0.5em;
}
	
	.storytile-sites-emoji-proposal > span {
		position: relative;
		padding: 0.25em;
		background: transparent;
	}
	
	.storytile-sites-emoji-proposal > span.storytile-sites-emoji-proposal-selected {
	  background: #0F9FDF;
	}

	.storytile-sites-public-chat-login-required-text {
		display: none;
	}