#oaw-comments-wrap {
    max-width: 600px;
}

#comments {
    margin: 20px 0;
}

.comments-area {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

#comments-header {
    border-bottom: 2px solid #eee;
}

.comments-title {
    font-family: 'Source Sans 3', sans-serif;
}

span#comment-count {
    margin-left: 5px;
    font-size: 16px;
    font-weight: 600;
    color: #909090;
}

ol.comment-list {
    padding: 0;

}

ol.comment-list li {
    list-style: none;
}

.oaw-single-comment {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.no-parent {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

ol.children {
    padding-left: 12px;
}

@media only screen and (min-width: 576px) {
    ol.children {
        padding-left: 24px;
    }
}

.child {
    padding-left: 10px;
    margin-top: 20px;
    border-left: solid #eee 2px;
}

.oaw-comment p {
    font-family: 'Source Sans 3', sans-serif;
}

/* COMMENT METADATA */

.oaw-comment-meta {
    display: flex;
    gap: 5px;
    font-size: 13px;
    font-family: 'Source Sans 3', sans-serif;
    overflow: hidden;
}

.oaw-comment-authorname {
    font-weight: bold;
    font-size: 13px;
    font-family: 'Source Sans 3', sans-serif;
}

.oaw-comment-replying-to-text {
    display: none;
    color: #444;
}

@media only screen and (min-width: 576px) {
    .oaw-comment-replying-to-text {
        display: block;
    }
}

.oaw-comment-meta-separator:before {
    content: '\2022';
}

.oaw-comment-time-desktop {
    display: none;
}

@media only screen and (min-width: 576px) {
    .oaw-comment-time-mobile {
        display: none;
    }

    .oaw-comment-time-desktop {
        display: block;
    }
}

.oaw-comment-meta .edit-link a:hover {
    text-decoration: none;
}

.oaw-comment-content p {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 18px;
}

.comment-reply-link {
    font-size: 13px;
    font-family: 'Source Sans 3', sans-serif;
}

.comment-reply-link a:hover {
    text-decoration: none;
}

#respond {
    width: 100%;
    margin-top: 20px;
}

#reply-title small {
    float: right;
    font-weight: 500;
}

/* COMMENT FORM */

#commentform p {
    margin-top: 12px;
}

#comment,
#author,
#email,
#url {
    width: 100%;
    box-sizing: border-box;
    line-height: 20px;
    border: none;
    vertical-align: top;
    resize: none;
    outline: 1px solid lightgray;
    background-color: #eee;
    padding: 10px;
    border-radius: 6px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 18px;
}

.oaw-comment-field.oaw-comment-field-expanded {
    height: 90px;
}

.form-submit {
    display: flex;
    justify-content: flex-end;
}

.form-submit input {
    font-size: 16px;
}