.comments {
    box-sizing: border-box;
    background: #fff;
    color: #1c1e21;
    margin: 40px;
    font-size: 13px;
}
.comments, .comments * {
    font-family: inherit;

}

.comments-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 4px;
}

.top-bar-comment {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #000;
    border-bottom: 1px solid #ccd0d5;
    padding: 15px 0 5px 0;
    font-size: 14px;
    font-weight: 700;
}
.text-before-button{
    font-weight: 400;
}
.comment-button{
    background-color: #f6f7f9;
    color: #272829;
    border: 1px solid #ced0d4;
    border-radius: 2px;
    box-sizing: content-box;
    font-size: 12px;
    -webkit-font-smoothing: antialiased;
    font-weight: 700;
    padding: 4px 12px 4px 8px;
    position: relative;
    text-align: center;
    text-shadow: none;
    vertical-align: middle;
}

.login-box {
    display: flex;
    margin: 15px 0;
}

.login-avatar {
    padding: 10px;
}

.login-avatar img {
    width: 40px;
    height: 40px;
}

.login-input-container {
    flex: 1;
    border: 1px solid #ccd0d5;
    background: #f6f7f9;
    display: flex;
    flex-direction: column;
    box-sizing: border-box; /* ВАЖНО */
}

.login-input-container input {
    width: 100%;
    box-sizing: border-box; /* ВАЖНО */
    border: none;
    border-bottom: 1px solid #dddfe2;
    padding: 18px 10px;
    font-size: 14px;
    background: #fff;
}

.login-button {
    text-align: right;
    padding: 10px;
    background: #f6f7f9;
}
.login-button button {

    color: white;
    font-weight: bold;
    padding: 5px 10px;
    font-size: 13px;
    cursor: pointer;
    background-color: #365899;
    border: 1px solid #365899;

}

.comment {
    display: flex;
    margin-top: 15px;
}

.comment a.avatar-link img {
    width: 48px;
    height: 48px;
    border-radius: 2px;
}

.comment-content {
    margin-left: 10px;
    flex: 1;
    margin-bottom: 15px;
}

.comment-name {
    font-weight: bold;
    color: #365899;
    font-size: 14px;
    margin-bottom: 5px;
}

.comment-body {
    font-size: 14px;
    margin: 2px 0 10px 0;
    line-height: 1.4;
}
.comment-body img{
    width: 100%;
}

.comment-meta {
    font-size: 12px;
    color: #90949c;
    margin-top: 2px;
}

.comment-meta a {
    margin-right: 10px;
    color: #4267b2;
    font-weight: 700;
    text-decoration: none;
}
.comment-link-reply{
    display: inline-block;
    margin-right: 25px !important;
}

.comment-meta .time{
    font-weight: 700;

}

.reply {
    margin-left: 58px;
    margin-top: 0 !important;
}

.see-more {
    color: #365899;
    font-weight: bold;
    text-decoration: none;
    margin-left: 5px;
}
.comment.reply{
    border-left: 1px dotted #d3d6db;
    padding-left: 10px;
}

.reply-count {
    font-size: 12px;

    color: #365899;
    font-weight: bold;
    margin-left: 58px;
    margin-top: 0;
    cursor: pointer;

    border-left: 1px dotted #d3d6db;
}
.reply-count .text{

    margin-left: 15px;
    background-color: #f6f7f9;
    padding: 10px 10px;
    height: auto;
}


.fb-footer {
    font-size: 11px;
    display: block;
    padding-top: 10px;
    border-top: 1px solid #e9ebee;
    color: #365899;
    cursor: pointer;
    font-weight: 700;
}

@media(max-width: 768px){
    .comments {
        margin: 10px;
    }

    .comments-title {
        font-size: 24px;
    }
    .top-bar-comment {
        padding-top: 25px;
        padding-bottom: 15px;
    }
    .login-avatar {
        padding: 0 10px;
    }
}
.amount{
    position: relative;
}
.amount::before{
    content: url("like.svg");
    width: 12px;
    height: 12px;
    display: block;
    position: absolute;
    left: -14px;
    top: 3px;
}