p {
	margin: 0px !important;
}
.shoutbox {
	width: 100%;
	margin: 0px auto;
	overflow: auto;
}
.commentList {
	float: left;
	width: 100%;
	height: 250px;
	overflow-y: auto;
	box-shadow: inset 0px -5px 20px #000, inset 0px -5px 20px #000;
}
.comment {
	float: left;
	width: 100%;
	background: rgba(255, 255, 255, .05);
	padding: 3.5px 15px;
	margin-bottom: 2px;
	backface-visibility: hidden;
}
.commentAuthorPhoto {
    width: 24px;
    height: 24px;
    border-radius: 24px;
    background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
    float: left;
    margin-right: 10px;
    cursor: pointer;
}
.commentAuthor {
	float: left;
	width: 100px;
	font-size: 13px;
	color: #ACFFF8;
	padding-top: 2px;
	overflow: hidden;
	text-overflow: ellipsis;
    cursor: pointer;
    white-space: pre;
    margin-right: 10px;
}
.commentMessage {
	width: calc(100% - 274px);
	max-width: 966px;
	float: left;
	font-size: 13px;
	color: #ECECEC;
	padding-top: 2px;
	line-height: 1.5;
	word-wrap: break-word;
	transform: translateZ(0);
}
.commentMessage .ipsEmbeddedVideo {
    width: 100%;
    max-width: 300px;
    height: 150px;
    padding: 0;
}
.commentTimestamp {
    position: relative;
    z-index: 1;
    padding-top: 3px;
    right: 0;
    font-size: 11px;
	float: right;
    color: #808080;
}
.commentInput {
	float: left;
	width: calc(100% - 100px);
	margin-top: 10px;
}
.commentInput input {
	float: left;
	max-width: 100% !important;
	width: calc(100% - 156px) !important;
	height: 36px;
	outline: none !important;
}
.emojiButton, .submitButton {
	height: 36px;
	background: rgba(255, 255, 255, .1);
	border: none;
	margin: 0px 5px;
	transition: all .2s;
	outline: none;
}
.emojiButton {
	font-family: 'FontAwesome' !important;
    font-size: 24px !important;
    color: #ececec;
}
.emojiButton:hover, .submitButton:hover {
	background: rgba(255, 255, 255, .15);
}
.submitButton {
	float: left;
	width: 100px;
	background: #004567;
	box-decoration: none;
}
.submitButton:hover {
	background: #0e5e86;
}
.submitButton:active {
	background: #004567;
}
.commentRemove {
	float: right;
	color: red;
	background: none;
	border: none;
}
.commentRemove::before {
	content: "\f00d";
	font-family: 'FontAwesome';
	font-size: 18px;
	color: #f70000;
	opacity: 0;
	transition: .2s;
}
.comment:hover .commentRemove::before {
	opacity: 1;
}
.promptContainer {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 9999;
}
.promptCurtain {
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	position: absolute;
	z-index: 9998;
	top:0px;
	left:0px;
}
.prompt {
	background: white;
	height: auto;
	width: 350px;
	border: 5px solid #EDEDED;
	margin: auto;
	position: relative;
	top: 45%;
}
.promptMessage {
	width: 350px;
	text-align: center;
}
.promptButtons {
	display: inline-block;
	width: 100%;
}
.promptButtons button {
	width: 50%;
}
.promptAccept {
	background: rgba(0,128,0,0.5);
}
.promptDecline {
	background: rgba(255, 0, 0, 0.5);
}
.comment img {
  max-height: 100px;
}
.comment video {
  max-height: 130px;
}
.userList {
	float: right;
	width: 100px;
	text-align: center;
	color: orange;
	background: rgba(0,0,0,0.2);
}
.emojiButton {
	float: left;
	width: 36px;
	text-align: center;
}
.emojiPopup {
    position: absolute;
    top: calc(100% - 10px);
    right: calc(0% + 214px);
    height: auto;
    width: 220px;
    z-index: 1;
    background: rgba(0, 0, 0, .8);
    padding: 5px;
}
.emoji {
	height: 25px;
	width: 25px;
	margin: 5px;
	float: left;
	text-align: center;
	cursor: pointer;
}
.userListHeader {
	text-align: center;
	font-weight: bold;
	text-decoration: underline;
	font-size: 13px;
	color: white;
}

@media only screen and (max-width: 767px)  {
	.commentMessage {
		width: 100% !important;
		margin-top: 5px;
		clear: both;
	}
	.commentTimestamp {
		float: left !important;
	}
	.commentInput {
		width: 100% !important;
	}
	.commentInput input {
		width: calc(100% - 46px) !important;
		margin-bottom: 10px;
	}
}

/* PROMPT OVERRIDES */
.prompt {
	width: 42% !important;
	background: rgba(0, 0, 0, .7);
	border: 1px solid #666 !important;
	left: 0 !important;
}
.promptMessage {
	width: 100% !important;
}
.promptButtons {
	display: flex !important;
	width: 75% !important;
}
