html, body {
	position: relative;
	width: 100%;
	height: 100%;
	background-color: #2D2D2D;
}

body {
	color: #333;
	margin: 0;
	/* padding: 8px; */
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

a {
	color: rgb(0,100,200);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a:visited {
	color: rgb(0,80,160);
}

label {
	display: block;
}

input, button, select, textarea {
	font-family: inherit;
	font-size: inherit;
	-webkit-padding: 0.4em 0;
	padding: 0.4em;
	/* margin: 0 0 0.5em 0; */
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 2px;
}

input:disabled {
	color: #ccc;
}

button {
	color: #333;
	background-color: #f4f4f4;
	outline: none;
}

button:disabled {
	color: #999;
}

button:not(:disabled):active {
	background-color: #ddd;
}

button:focus {
	border-color: #666;
}

.section {
	display:flex;
	flex-flow: column;
	height: 100vh;
	background-color: #2D2D2D;
}

.chat-box {
	flex: 1;
	overflow: auto;
}

.chat-box::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

.chat-box::-webkit-scrollbar-thumb {
	border-radius: 5px;
	background: gray;
}

.chat-box::-webkit-scrollbar-track {
	background-color: disabled;
}

.chat-bubble {
	margin: 0 6px;
	overflow-wrap: anywhere;
}

.chat-bubble > img {
	width: 100%;
	border-radius: 30px;
}

.chat-bubble > video {
	width: 100%;
	border-radius: 30px;
}

.chat-bubble > iframe {
	max-width: 100%;
	border-radius: 30px;
}

.gif-box {
	height: 30px;
	overflow-y: hidden;
	overflow-x: auto;
	display:flex;
	flex-flow: row;
	overflow: auto;
	color: white;
}
.gif-box > div {
	margin-right: 10px;
}

.gif-box > video {
	height: 100%;
	width: auto;
}

.gif-box > img {
	height: 100%;
	width: auto;
}

.gif-box::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

.gif-box::-webkit-scrollbar-thumb {
	border-radius: 5px;
	background: gray;
}

.gif-box::-webkit-scrollbar-track {
	background-color: disabled;
}

.input-box {
	background-color: #2D2D2D;
	border-color: #201f1f;
	color: white;
}

input:focus {
	border: 0px;
}
.input-box input:focus {
	border: 0px;
}
