.comments__number {
	font-size: .5em;
    position: relative;
    top: -1em;
    font-weight: 400;
}

.comment-body {
	padding: 1.15rem 0 0;
	border-top: 1px solid var(--borders-color);
}

.comments__list .children {
	list-style: none;
	margin: 0;
	float: left;
	width: 100%;
	padding: 0;
}
.comment {
	float: left;
	width: 100%;
}
.comment-meta {
	float: left;
}
.comment-content {
	margin: 0 0 0 84px;
	padding: 0 0 1.15rem;
}
.comments__list .children .comment .comment-meta {
	margin-left: 84px;
}
.comments__list .children .comment .comment-content {
	margin: 0 0 0 168px;
}

.comment-reply-link {
	margin-right: 1.15rem;
	font-style: normal;
	font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: inherit;
    text-decoration: none;
    color: var(--primary-color);
}
.comment-reply-link:hover {
	color: var(--secondary-color);
	box-shadow: none;
}

.comment-awaiting-moderation {
	margin-left: 14px;
}

/* Author */
.comment-avatar {
	float: left;
}
.avatar--comment {
	max-width: 60px;
	max-height: 60px;
	float: left;
}

.comment-author {
	margin: 0 0 1.15rem;
}

.comment-metadata {
	display: flex;
    gap: 1.5rem;
}
.comment-link {
	color: var(--secondary-color);
	text-decoration-color: var(--secondary-color);
}
.comment-link:hover {
	color: var(--primary-color);
	text-decoration-color: var(--primary-color);
}

.comment-link-author {
	color: var(--primary-color);
	text-decoration-color: var(--primary-color);
}
.comment-link-author:hover {
	color: var(--secondary-color);
	text-decoration-color: var(--secondary-color);
}

/* Comment reply */
.comment-respond {
    float: left;
    width: 100%;
    margin-top: 1.15rem;
}
.comment-form {
	position: relative;
}
.comment-form-comment {
	width: 100%;
	display: inline-block;
	float: left;
}
.comment-form-author,
.comment-form-email {
	width: 47.66%;
	margin-left: 1.5rem;
	display: inline-block;
}
.comment-form-author {
	margin-left: 0;
}
.comment-form-label {
	display: none;
}
.comment-required {
	display: none;
}
.form-submit--comment {
	margin: 0 0 1.15rem;
	display: inline-block;
}
input.submit--comment {
	cursor: pointer;
	color: var(--buttons-text-color);
	font-size: 10px;
	text-align: center;
	background: var(--buttons-background-color);
	overflow: hidden;
	position: relative;
	padding: 17px 24px;
	min-width: 166px;
	letter-spacing: 2px;
	line-height: 0;
    height: 45px;
	font-weight: inherit;
	text-transform: uppercase;
	transition: background .1s ease, border-color .1s ease, color .1s ease, opacity .1s ease, box-shadow .1s ease;
	display: inline-flex;
    align-items: center;
    justify-content: center;
}
input.submit--comment:hover {
    background: var(--buttons-background-color-hover);
    color: var(--buttons-text-color-hover);
}

.buttons-style-outline input.submit--comment {
    border: 1px solid var(--buttons-background-color);
    background: transparent;
}
.buttons-style-outline input.submit--comment:hover {
	background: var(--buttons-background-color-hover);
	border-color: var(--buttons-background-color-hover);
}

.buttons-shape-round .submit--comment {
    border-radius: 30px;
}
.buttons-shape-superround .submit--comment {
    border-radius: 50%;
}
.buttons-shape-superround #content .submit--comment {
    background: 0 0;
    color: inherit;
    border: none;
    overflow: visible;
}
.buttons-shape-superround #content .submit--comment .border-helper {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    box-sizing: border-box;
    transition: all ease 0.2s;
}
.buttons-shape-superround #content .submit--comment:hover .border-helper {
    transform: scale(0.97);
}
.buttons-shape-superround #content .submit--comment span {
    display: inline-block;
    position: relative;
    transition: 0.2s;
    transform: translateY(0);
    line-height: 1;
}
.buttons-shape-superround #content .submit--comment:hover .char:nth-child(odd) {
    transform: translateY(-14%);
}
.buttons-shape-superround #content .submit--comment:hover .char:nth-child(even) {
    transform: translateY(14%);
}
.buttons-shape-rounded .submit--comment {
    border-radius: 3px;
}

#cancel-comment-reply-link {
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-style: normal;
    display: inline-block;
    color: var(--primary-color);;
	text-decoration-color: var(--primary-color);
}
#cancel-comment-reply-link:hover {
	color: var(--secondary-color);
	text-decoration-color: var(--secondary-color);
}

.comment-reply-title {
    margin: 0 0 1.15rem;
    display: inline-block;
    font-size: 1.46475em;
    position: relative;
}
.cancel-comment-reply-link-wrapper {
    display: inline-flex;
    position: absolute;
    right: 0;
    top: 0.5rem;
}

/* Comment navigation */
.comments-nav {
	float: left;
    width: 100%;
    padding: 0;
    border-top: none;
    margin: 35px auto 1em;
}
.comment-navigation {
	float: left;
    width: 100%;
}
.comments-nav .nav-previous {
	float: right;
}
.comments-nav .nav-next {
	float: left;
}
.comments-nav a {
	font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.comments-nav a:hover {
	color: var(--secondary-color);
	fill: var(--secondary-color);
}
.comments-nav svg {
	width: 12px;
    transition: fill ease .1s;
}
.comments-nav .nav-previous svg {
	margin-left: 4px;
}
.comments-nav .nav-next svg {
	margin-right: 4px;
}

/* Comment small screens */
@media (max-width: 768px) {
	.comment-form {
		width: 100%;
		margin-left: 0;
	}
}

@media (max-width: 680px) {
	.comments__list .children .comment .comment-meta {
	    margin-left: 0;
	}
	.comments__list .children .comment .comment-content {
	    margin: 0 0 0 84px;
	}
}