/*****************************
comment CSS
*****************************/

.blog-comments {
    margin-top: 2rem;
  }
  
  .blog-comments h4 {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 3.5rem;
    font-weight: normal;
  }
  
  .blog-comments .comment-list li .children {
    padding-left: 5rem;
  }
  
  .blog-comments .comment-list .single-comment {
    margin-bottom: 4rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
  }
  
  .blog-comments .comment-list .comment-img {
    -webkit-flex: 0 0 7rem;
    -moz-flex: 0 0 7rem;
    -ms-flex: 0 0 7rem;
    flex: 0 0 7rem;
    height: 7rem;
    margin-right: 3rem;
  }
  
  .blog-comments .comment-list .comment-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
  }
  
  .blog-comments .comment-list .comment-content h5 {
    margin-bottom: 1rem;
  }
  
  .blog-comments .comment-list .comment-content h5 a {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: .6rem;
    line-height: 1.6;
    color: #000000;
  }
  
  .blog-comments .comment-list .comment-content h5 span {
    font-size: 1.4rem;
    font-weight: 300;
    color: #606060;
  }
  
  .blog-comments .comment-list .comment-content p {
    color: #2c2e3d;
    font-size: 1.4rem;
    line-height: 1.6;
  }
  
  .blog-comments .comment-list .single-comment .reply {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 600;
    color: #606060;
    text-transform: capitalize;
  }
  
  .blog-comments .comment-list .single-comment .reply:hover {
    color: #333333;
  }