.comment-list {
    padding: 0;
}

.induris-comments {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin: 30px 0;
}

.induris-comments .profile-picture img {
    height: auto;
    min-width: 64px;
    max-width: 64px;
    object-fit: cover;
    border-radius: 15px;
}

.comment-details {
    width: 100%;
}

.comment-author {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--e-global-color-secondary);
}

.comment-reply,
.comment-date {
    width: fit-content;
    font-family: 'estedad';
}

.comment-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.comment-reply {
    background: var(--e-global-color-primary);
    padding: 7px 15px 10px 13px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.4s;
}

.comment-reply svg {
    width: 15px;
    height: auto;
}

.comment-reply a {
    color: #fff;
}

.comment-reply:hover {
    box-shadow: inset 8em 0 0 0 var(--e-global-color-secondary), inset -8em 0 0 0 var(--e-global-color-secondary);
}

.comments-text {
    margin-top: 20px;
}

.comment-date {
    color: var(--e-global-color-primary);
}

ol.children {
    padding: 0 20px 0 0;
}

.comments-separator {
    height: 1px;
    width: 100%;
    background: #c4c4c440;
    margin: 10px 0;
}


.comment-form-author-email {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 15px;
}

.comment-form-email,
.comment-form-author {
    width: 50%;
}

@media screen and (max-width: 768px) {
    .comment-form-author-email {
        flex-direction: column;
        gap: 15px;
    }

    .comment-form-email,
    .comment-form-author {
        width: 100%;
    }

    p.comment-notes {
        margin: 10px 0;
    }
}




input#author,
input#email,
textarea#comment {
    width: 100%;
    border-radius: 15px;
    padding: 10px;
    outline: none;
    border: 1px solid #666666;
}

input#author:focus-visible,
input#email:focus-visible,
textarea#comment:focus-visible {
    border: 1px solid var(--e-global-color-primary);
}



input#author,
input#email {
    height: 50px;

}

p.comment-form-comment {
    margin-top: 15px;
}

.form-submit button {
    border: none;
    background: var(--e-global-color-primary);
    color: #fff;
    padding: 8px 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.4s;
    height: 45px;
	margin-top : 10px;
}

.form-submit button:hover {
    box-shadow: inset 8em 0 0 0 var(--e-global-color-secondary), inset -8em 0 0 0 var(--e-global-color-secondary);
}

.form-submit svg,
.form-submit svg path {
    width: 15px;
    height: auto;
    transition: all 0.4s;
}

.comment-reply svg path,
.comment-reply svg {
    transition: all 0.4s;
}

.comment-reply svg {
    height: auto;
}