/*comments template css starts here*/
.comments-title-parent {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	border-bottom: 2px solid #d2d2d2;
}

h2.comments-title {
	margin-bottom: 30px;
}

.comment-list {
	list-style: none;
	padding: 30px 0 0 0;
}

.comment-list .comment {
	padding-left: 0;
	position: relative;
}

.comment-form input[type="submit"] {
	border: 2px solid transparent;
	background-color: var(--brand-color-bright-blue);
	color: #fff;
}

.question-label,
.answer-label {
	font-size: 30px;
	font-weight: 600;
	color: #333;
	margin-bottom: 10px;
	padding: 15px;
}

.comment-text {
	background-color: var(--brand-color-light-skyblue);
	padding: 15px;
	margin-bottom: 6px;
}

.comment.bypostauthor .comment-text {
	background-color: #ebf5e0;
	padding: 15px;
	margin-bottom: 6px;
}

.comment-form-wrapper {
	margin-top: 20px;
	padding: 0 15px;
}

.comment-reply-title,
.logged-in-as {
	margin-bottom: 6px;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: unset;
}

.comment-reply-title #cancel-comment-reply-link {
	padding: 0 20px;
	font-size: 14px;
	color: var(--brand-color-bright-blue);
}

p.comment-notes {
	display: flex;
	flex-direction: column;
	margin-bottom: 10px;
}

.comment-notes #email-notes,
.comment-notes .required-field-message {
	font-size: 14px;
}

.comment-meta {
	font-size: 12px;
	color: #888;
	margin-bottom: 5px;
	padding: 0 15px;
}

.reply a {
	font-size: 12px;
	color: #0073aa;
	text-decoration: none;
	padding: 0 15px;
}

.reply a:hover {
	text-decoration: underline;
}
