#shoutbox {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	display: flex;
	width: 100%;
	font-size: 10pt;
	max-height: 600px;
}
#sbParent {
	background: #130A00;
	border: 3px solid #100;
	width: 90%;
	margin: 0 auto;
	align-self: stretch;
}
#sbChild {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
}
#sbChild ul {
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	min-height: 145px;
	max-height: 245px;
	list-style: none;
	-webkit-flex: 1 1 auto;
	overflow-y: scroll;
	display: flex;
	flex-direction: column;
}
#sbChild ul li {
	padding: 5px 0;
	white-space: normal;
	word-wrap: break-word;
	font-size: 8pt;
}
#sbChild ul li span {
	font-weight: bold;
	padding: 0 5px 0 10px;
}
#inputs {
	position: relative;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 50px;
	display: flex;
	flex-flow: row nowrap;
	border: 3px solid #000;
	background: #000;
}
#sbheader {
	position: relative;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 25px;
	display: flex;
	flex-flow: row nowrap;
	border: 3px solid #000;
	background: #000;
}

#shoutOpt {
	display: flex;
}

#inputs input {
	flex: 4;
	border: none;
	font-size: 10pt;
	text-indent: 10px;
}

#inputs input:focus {
	outline: none;
}

#inputs button {
	flex: 1;
	border-radius: none;
	border: none;
	background: #CB6515;
	text-transform: uppercase;
	color: #fff;
	border-radius: 50vh;
}

#messageBox {
	background-color: #000;
	color: white;
	max-width: 70%;
}

#captchaBox {
	background-color: #222;
	color: orange;
	margin-right: 5px;
	border: 2px solid white;
	border-radius: 25px;
	max-width: 15%;
	text-align: center;
}
#captchaBox:placeholder-shown {
	font-size: 10pt;
}

#submit {
	max-width: 15%;
	font-size: 10pt;
}

#colorBox {
	background-color: #222;
	color: orange;
	display: block !important;
}

#usernameBox {
	background-color: black;
	color: white;
}


/* Mobile */
@media (max-width: 767px) {
	#shoutbox {
		font-size: 9pt;
	}
	#sbChild ul li {
		font-size: 8pt;
	}
	#inputs input {
		font-size: 9pt;
	}
	#captchaBox:placeholder-shown {
		font-size: 7pt;
	}
	#submit {
		font-size: 7pt;
	}
}
@media (min-width: 767px) {
	#shoutbox {
		font-size: 10pt;
	}
	#sbChild ul li {
		font-size: 9pt;
	}
	#inputs input {
		font-size: 10pt;
	}
	#captchaBox:placeholder-shown {
		font-size: 10pt;
	}
	#submit {
		font-size: 10pt;
	}
}
