#comment_wrapper{
	max-width: 1000px;
	width: 100%;
	margin: auto;
	font-family: arial;
	display: inline-block;
	box-sizing: border-box;
}
#comment_message{
	width: 100%;
	min-height: 100px;
	height: 100px;
	overflow: auto;
	resize: none;
	font-size: 16px;
	font-family: Verdana;
	box-sizing: border-box;
}

#comment_interface_wrapper{
	position: relative;
}
#comment_interface.onError{
	-webkit-filter: blur(2px);
    filter: blur(2px);
}
#comment_error-overlay{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index:10;
	background-color: #ff000047;
	cursor: not-allowed;
	display: none;
	/*display: flex;  REQUIRED FOR DISPLAY*/
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 18px;
}

#comment_comments{
	margin-top: 30px;
	width: 100%;
}
.comment_comment{
	float: left;
	width: 100%;
	margin-top: 5px;
	margin-bottom: 20px;
}
.comment_comment_info{
	float: left;
	width: 200px;
	padding-right: 15px;
	box-sizing: border-box;
}
.comment_comment_text{
	float: left;
	box-sizing: border-box;
	border-left: 2px solid #e6e6e6;
	padding-left: 10px;
	max-width: calc(100% - 200px);
	min-height: 70px;
	font-family: Verdana;
	font-size: 16px;
}
.comment_comment_details{
	float: left;
	max-width: calc(100% - 75px);
}
.comment_comment_name{
	font-weight: bold;
	word-wrap: break-word;
}
.comment_comment_date{
	font-size: 13px;
	font-style: italic;
}
.comment_comment_image{
	float: left;
}

#comment_comments_nocomments{
	text-align: center;
	font-size: 18px;
	border-top: 1px dashed #E6E6E6;
	border-bottom: 1px dashed #E6E6E6;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #3883BC;
}

@media (max-width:720px){
	#comment_form .textbox{
		width: 100%;
		margin-bottom: 5px;
		box-sizing: border-box;
	}
}
@media (max-width:500px){
	#comment_wrapper .comment_comment_text{
		max-width: 100%;
		width: 100%;
		border-left: 0;
		border-bottom: 2px solid #e6e6e6;
	}
}