/* Стили отвечающие за комментарии пользователей */

#moduleNewsComments #errorAuth{
    background-color: #EF9A9A;
    border-radius: 3px;
    text-align: center;
    color: #333;
    padding: 15px 20px;
}

#moduleNewsComments #commentForm{
    background-color: #eee;
    border-radius: 3px;
    padding: 15px 20px;
    margin-bottom: 10px;
}
#moduleNewsComments #commentForm p{
    margin-bottom: 10px;
}


#moduleNewsComments #comments{
    font-size: 14px;
    margin-top: 10px;
}

#comments .comment{
    position: relative;
    padding: 0 20px 0 70px;
    margin-bottom: 20px;
}

.comment .avatar{
    position: absolute;
    left: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border: 1px solid #ccc;
    background-color: #fff;
    padding: 2px;
    
}
.comment .avatar img{
    width: 100%;
    height: 100%;
}


.comment .commentHead{
    margin-bottom: 8px;
}
.commentHead .author, .commentHead .gost, .commentHead .time, .commentHead .re{
    white-space: nowrap;
    margin-right: 5px;
}
.commentHead .author{
    font-size: 16px;
}
.commentHead .gost{
    color: #E53935;
}
.commentHead .time{
    color: #888;
}

.comment .commentContent p{
    margin-bottom: 5px;
}
.comment .commentContent p:last-child{
    margin-bottom: 0px;
}


