.comments{
  position:relative;
  row-gap:14px;
}

.comment_more,
.comment_less{
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:74px;
  background:linear-gradient(to top,var(--surface) 22%,rgba(255,255,255,0));
  text-align:center;
  padding:28px 12px 0;
  z-index:100;
}

.comment_more a,
.comment_less a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--primary) 0%, var(--primary-2) 100%);
  color:#ffffff;
  font-weight:600;
  padding:10px 16px;
  border-radius:999px;
  box-shadow:0 10px 24px rgba(17,24,39,.14);
}

.comment_more a:hover,
.comment_less a:hover{
  color:#ffffff;
  transform:translateY(-1px);
}

h3.comment_titles{
  color:var(--text);
  border-bottom:1px solid var(--border);
  margin-bottom:18px;
  padding-bottom:12px;
  font-weight:800;
}

.comment{
  margin-bottom:10px;
  color:var(--text-soft);
  font-size:15px;
}

.comments .comment{
  width:100%;
  background:rgba(255,255,255,.94);
  padding:18px;
  border-radius:var(--radius-md);
  border:1px solid var(--border);
  box-shadow:var(--shadow-xs);
}

.comments .comment .ctitle{
  width:100%;
  clear:both;
  display:block;
  position:relative;
}

@media only screen and (min-width:768px) and (max-width:991px){
  .comments .comment{
    -webkit-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
  }
}

@media only screen and (min-width:576px) and (max-width:767px){
  .comments .comment{
    -webkit-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
  }
}

@media (max-width:575px){
  .comments .comment{
    -webkit-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
  }
}

.comments .cimg img{
  margin-right:32px;
  border-radius:50%;
}

@media only screen and (min-width:768px) and (max-width:991px){
  .comments .cimg img{
    margin-bottom:20px;
  }
}

@media only screen and (min-width:576px) and (max-width:767px){
  .comments .cimg img{
    margin-bottom:20px;
  }
}

@media (max-width:575px){
  .comments .cimg img{
    margin-bottom:20px;
  }
}

@media (max-width:575px){
  .comments .ctitle{
    padding:14px 0 0;
  }
}

@media only screen and (min-width:576px) and (max-width:767px){
  .comments .ctitle{
    padding:14px 0 0;
  }
}

.comments .ctitle span{
  font-size:12px;
  color:#6b7280;
  margin-bottom:10px;
  display:inline-block;
}

.comments .ctitle h4{
  color:var(--text);
  font-size:17px;
  font-weight:800;
  transition:all .4s ease-out 0s;
  margin-bottom:10px;
  display:inline-block;
  width:auto;
}

@media only screen and (min-width:992px) and (max-width:1199px){
  .comments .ctitle h4{
    font-size:20px;
    font-weight:800;
  }
}

.comments .ctitle a .author{
  display:inline-block !important;
  padding:6px 18px;
  border:1px solid var(--border);
  margin-left:18px;
  border-radius:999px;
  background:var(--surface-soft);
}

.comments .ctitle p{
  font-size:15px;
  color:var(--text-soft);
  margin-bottom:0;
  border-top:1px solid var(--border);
  padding:12px 0 4px 0;
  clear:both;
  line-height:1.7em;
}

.comments .ctitle span a{
  color:#6b7280;
}

.comments .ctitle p.bb{
  font-size:12px;
  color:#6b7280;
  margin-bottom:0;
  border-top:none;
  padding:10px 0 0;
  clear:both;
}

.comments .ctitle p.bb a{
  font-size:inherit;
  color:#6b7280;
}

.comments .ctitle p.bb a .count{
  display:inline-block;
  padding:1px 6px;
  text-align:center;
  font-size:10px;
  border-radius:999px;
  color:#ffffff;
  float:none;
}

.comments .ctitle p.bb a.like:hover,
.comments .ctitle p.bb a.like i{
  font-size:inherit;
  color:#0f4c81;
}

.comments .ctitle p.bb a.like .count{
  font-size:10px;
  background-color:#0f4c81;
}

.comments .ctitle p.bb a.unlike:hover,
.comments .ctitle p.bb a.unlike i{
  font-size:inherit;
  color:var(--danger);
}

.comments .ctitle p.bb a.unlike .count{
  font-size:10px;
  background-color:var(--danger);
}

.comments .ctitle p.bb a.replay{
  font-size:inherit;
  color:#6b7280;
}

.comments .ctitle p.bb u{
  text-decoration:none;
}

.comments .ctitle i.fa-level-up-alt{
  font-size:34px;
  position:absolute;
  top:4px;
  color:#d9d2c6;
}

@media only screen and (min-width:768px) and (max-width:991px){
  .comments .ctitle2{
    padding-top:25px;
  }
}

.pl-40{
  padding-left:28px;
}

.pl-80{
  padding-left:56px;
}

@media (max-width:767px){
  .comment_more,
  .comment_less{
    height:82px;
  }

  .comments .comment{
    padding:16px;
  }

  .comments .ctitle h4{
    font-size:16px;
  }

  .pl-40{
    padding-left:18px;
  }

  .pl-80{
    padding-left:36px;
  }
}