.comments{
    margin-top: 1.5rem;
    padding: 1rem 1rem 0 1rem;
    background-color: white;
}
.comments .login a{
    color: #333;
}
.comments .list-comments .item{
    display: flex;
    flex-direction: row;
    gap: 1rem;
}
.comments .list-comments .item .avatar{
    width: 40px;
    height: 40px;
    /* border: 1px solid #ccc;
    background-color: #f5f5f5;
    border-radius: 50%; */
}
.comments .list-comments .item .avatar img{
    width: 40px;
    height: 40px;
    object-fit: scale-down;
    border-radius: 50%;
}
.comments .list-comments .item .name .is-admin{
    color: #009981;
}
.comments .list-comments .item .info .date{    
    color: #d4d4d4;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}
.comments .list-comments .item .info .recomment{
    border-left: 1px solid gray;
    padding-left: 1rem;
}
.comments .list-comments .item .info .recomment .reply-holder{
    display: none;
}
.comments .list-comments .comment-item:hover .info .recomment .reply-holder{
    display: flex;
}
.del-cmt{
    display: block;
    color: #ccc;
    font-size: 0.75rem;
    text-decoration: unset;
    margin-top: 0.5rem;
}