


.comments-addform-textarea{
    display: block;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 16px 16px 60px;
    font-size: 16px;
    line-height: 20px;
    resize: none;
    white-space: pre-wrap;
    border: 0;
    outline: none;
    background: none !important;
    word-wrap: break-word;
    box-sizing: border-box;
    position: relative;
    top:0;
}
.comments-addform-textarea::placeholder{
    font-weight: 500;
}
.comments-addform-textarea-wrap{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
    height: 54px;
    overflow: hidden;
    border-radius: 82px;
    transition: height 0.3s ease-in-out;
    border: 1px solid transparent;
    position: relative;
    background: #ECEFF1;
}
.comments-addform-textarea-wrap.fullsize{
  height: auto;
  border-radius: 25px;
}
.comments-addform-textarea-wrap.focused{
   border:1px solid #777;
   background: #fff;
}
.comments-addform-author{
    border:0;
    position: absolute;
    z-index: 2;
    padding: 0;
    top:auto;
    left:0;
    bottom:8px;
    background: none;
    height: 36px;
    outline: none;
    padding-left: 16px;
    padding-right: 10px;
    border-radius: 25px;
    font-weight: 500;
    letter-spacing: -0.5px;
}
#comments_add_form input[name="author_name"]:focus{
    background: #fff;
    left:8px;
  }

.comments-addform-textarea-wrap:not(.fullsize) .comments-addform-author{
    display: none;
}
.comments-addform-buttons{
    position: absolute;
    z-index: 2;
    top:auto;
    right:8px;
    bottom:8px;
    display: flex;
    align-items: center;
}
.comments-addform-buttons button{
    border:0;
    padding:0;
    outline: none;
    box-shadow: none;
    background: none;
    width:36px;
    height: 36px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color:#777;
    cursor: pointer;
}
button.comments-addform-buttons button:not(.comments-addform-submit-btn):hover{
    background: #ECEFF1;
}
button.comments-addform-submit-btn{
    border-radius: 100%;
    background: #1E1E21;
    color:#fff;
    margin-left: 8px;
}
.comments-addform-buttons button svg{
    margin: 0;
}
.comments-addform-buttons button:not(.comments-addform-submit-btn) svg{
    width:20px;
    height: 20px;
}


.post-comments-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}
.post-comments-head select{
    border:0;
    box-shadow: none;
    cursor: pointer;
    outline: none;
    font-size: 14px;
    opacity: 0;
}
.post-comments-head select option{
    cursor: pointer;
}
#comments_widget h3{
  font-weight: 600;
  margin: 0;
}
.comments_counts{
    margin-left: 10px;
    color: #777;
    font-weight: 500;
    opacity: 0;
}
#comments_list{
    padding-top: 10px;
}
.comment{
    margin-top: 25px;
}
.comment-head{
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}
.comment-head-l{
    display: flex;
    gap: 10px;
    align-items: center; 
}
.comment-author{
    display: flex;
    align-items: center;
}
.comment-username{
  font-weight: 500;
  letter-spacing: -0.3px;
}
.comment-ava{
    margin-right: 7px;   
    width:32px;
    min-width:32px;
    height: 32px;
}
.comment-ava-img{
    width:32px;
    height: 32px;
    border-radius: 100%;
    display: block;
    object-fit: cover;
}
.comment-date{
    font-size: 13px;
    color: #777;
}
.comment-content{
    margin-top: 3px;
}
.comment-content p{
    margin: 0;
    padding: 0;
}
a.comment-index{
    color: #777 !important;
    font-size: 0.8rem;
}