.comments_section {
    max-width: 648px;
    margin: auto;
    margin-top: 48px;
}

#commentform {
    margin-bottom: 24px;
}

.comment-body {
    display: flex;
    margin-bottom: 34px;
}

.comment-form-comment div:nth-child(2) {
    flex-grow: 1;
}

.form-submit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 0 58px;
    padding: 9px 16px;
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
    border-bottom: 4px solid var(--lightgray);
    border-left: 2px solid var(--lightgray);
    border-right: 2px solid var(--lightgray);
}

.comment_wrap {
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
    overflow: hidden;
    background-color: var(--white);
    border: 2px solid var(--lightgray);
}

#comment {
    border: none;
    width: 100%;
    min-height: 140px;
    resize: vertical;
    background-color: transparent;
}

.comments ul {
    list-style: none;
    padding: 0;
}

.comment-reply-title {
    display: none;
}

.comments .avatar {
    min-width: 48px;
    max-width: 48px;
    min-height: 48px;
    max-height: 48px;
    margin-right: 10px;
}

#author .avatar {
    min-width: 74px;
    max-width: 74px;
    min-height: 74px;
    max-height: 74px;
    margin-right: 22px;
}

#author img {
    object-fit: cover;
}

#author .bold {
    font-size: 20px;
}

#author .sec {
    font-size: 18px;
}

.comment-author a {
    font-size: 16px;
    color: var(--main);
    font-weight: var(--main_bold_weight);
    font-style: normal;
}

.no-focus .ask_question .form-submit {
    display: none;
}

.no-focus .ask_question #comment {
    min-height: 50px;
}

.no-focus .ask_question .comment_wrap {
    border-radius: var(--radius);;
}

.comment .date {
    margin-left: 10px;
    font-size: 16px;
    font-weight: 300;
}

.comment-reply-link {
    font-size: 16px;
    font-weight: var(--main_bold_weight);
    color: var(--secondary);
    margin-right: 24px;
}

.comment-body p {
    margin: 8px 0;
    word-break: break-word;
    max-width: 100%;
}

.depth-2,
.depth-3,
.comment #respond {
    padding-left: 58px;
}

.delete_comment {
    font-size: 16px;
    color: var(--red);
    cursor: pointer;
}

.comment-list {
    margin: 0 !important;
    padding: 24px 0 !important;
    border-top: 1px solid var(--lightgray);
}

.need_login {
    margin: 48px 0;
}

.need_login .btn {
    padding-left: 34px;
    padding-right: 34px;
}

.need_login h3 {
    margin-top: 0;
    margin-bottom: 24px;
}

.question-moderation,
.answer-moderation {
    font-size: 15px;
    font-style: italic;
    margin: 16px 0;
}

.answer-moderation,
.children .question-moderation {
    display: none;
}

.children .answer-moderation {
    display: block;
}

@media (min-width: 768px) {
    .comments_section {
        margin-top: 70px !important;
    }
}