/*** COMMENTS ***/
.hop-comments {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.hop-comment__pending-notice,
.hop-comments--empty {
	margin: 0 0 16px 0 !important;
	font-weight: bold;
}

.hop-comment {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.hop-comment__text {
	padding: 16px;
	border-radius: 8px;
	background: var(--e-global-color-3bd2cc8);
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .1);
}

.hop-comment__footer {
	padding: 0 16px;
	display: flex;
	font-size: 1rem;
}

.hop-comment__author {
	margin-right: 8px;
	font-weight: bold;
}

.hop-comment__replies {
	margin: 16px 0 0 40px;
}

.hop-comment__reply-link {
	margin-left: auto;
}

/* Form */
.hop-comment-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hop-comment-form__replying-to {
	margin: 0 !important;
	display: flex
}

.hop-comment-form__replying-to strong {
	padding-left: 4px;
}

.hop-comment-form__cancel-reply {
	margin-left: auto;
}

.hop-comment-form__field input,
.hop-comment-form__field textarea {
	width: 100%;
}

.hop-comment-form__field textarea {
	resize: vertical;
	min-height: 125px;
}

.hop-comment-form__button {
	width: 100%;
	border: none;
	cursor: pointer;
	transition: background-color .3s ease;
	display: inline-flex;
	justify-content: center;
	align-items: center; 
	gap: 8px;
}

.hop-comment-form__button:after {
	content: '';
	width: 18px;
	height: 18px;
	background-color: currentColor;
	-webkit-mask: url('/wp-content/themes/hello-child/img/icons/send.svg') no-repeat center / contain;
	mask: url('/wp-content/themes/hello-child/img/icons/send.svg') no-repeat center / contain;
	opacity: 1;
	display: inline-flex;
}