#comments {}
#comments.comments-area {}
#comments h2#comments-title

/** SINGLE **/

#comments ol,
#comments ol li {
	list-style: none;
}

#comments > .commentlist {
	padding-left: 0px;
}

#comments .comment {
	padding-left: 65px;
	margin-bottom: 20px;
}

#comments .comment-meta {
	margin-bottom: 10px;
}

#comments .comment .comment-meta .comment-author {
    position: relative;
}

#comments .comment .comment-meta .avatar {
	left: -65px;
	width: 50px;
	height: 50px;
	position: absolute;
}

#comments ol ol .comment .comment-meta .avatar {
	left: -45px;
	width: 30px;
	height: 30px;
	position: absolute;
}

#comments .comment .comment-meta .fn {
	display: inline-block;
	font-size: 120%;
}

#comments .comment .comment-meta time {
	text-transform: uppercase;
	font-size: 80%;
}

#comments .comment .comment-meta .edit-link {
	text-transform: uppercase;
	margin-left: 10px;
	font-size: 80%;
}

#comments .comment .comment-content {
	margin-bottom: 10px;
}

#comments .comment .reply {}


/** FORM **/

#comments .comment-form {
	margin: 20px 0;
}

#comments .comment-form:after {
	clear: both;
}

#comments .comment-form .logged-in-as {}
#comments .comment-form span.required { 
	color: red; 
}

#comments .comment-form label {
	display: block;
}

#comments .comment-form input[type="text"],
#comments .comment-form textarea,
#comments .comment-form select {
	border: 1px solid #ddd;
	display: block;
	max-width: 100%;
	width: 100%;
	color: #999;
	padding: 10px;
	border-radius: 3px;
}

#comments .comment-form input[type="text"]:focus,
#comments .comment-form textarea:focus,
#comments .comment-form select:focus {
	border: 1px solid #333;
	outline: none;
	color: #333;
}

#comments .comment-form .submit {
	background: #333;
	color: #fff;
	padding: 7.5px 20px;
	border-radius: 3px;
	text-align: center;
	border: 1px solid #333;
	font-weight: 700;
	min-width: 150px;
	float: right;
	margin: 10px 0 0;
	transition: all .1s linear;
	outline: none;
}

@media all and (max-width: 992px) {
	
	#comments .comment-form .submit {
		display: block;
		margin: 20px auto;
		max-width: 100%;
		width: 50%;
	}
	
}

@media all and (max-width: 768px) {
	
	#comments .comment-form .submit {
		display: block;
		max-width: 100%;
		width: 100%;
	}
	
}

#comments .comment-form .submit:hover {
	color: #fff;
	background: #999;
	border: 1px solid #999;
	transition: all .1s linear;
}

#comments .comment-form .submit:focus,
#comments .comment-form .submit:active {
	color: #fff;
	background: #999;
	border: 1px solid #999;
	transition: all .1s linear;
	box-shadow: 0px 0px 10px 1px rgba(0,0,0,.25);
}