/* live-comments-section start */
.live-comments-section{
    border-radius: 12px;
    border: 0.5px solid rgba(17, 25, 40, 0.50);
    background: var(--White, #FFF);
    box-shadow: 0px 0px 0px 0.5px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    position: relative;
}
.live-comments-section .comments-header{
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    background: var(--Main-800, #3E5B92);
    padding: 10px;
}
.live-comments-section .comments-header img{}
.live-comments-section .comments-header h2{
    color: var(--White, #FFF);
    font-family: "Mukta", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 16px */
}
.live-comments-section .comments-content{
    height: 400px;
    overflow-y: scroll;
    margin-bottom: 70px;
    padding: 5px;
}
.live-comments-section .comments-content .parent-comments,
.live-comments-section .comments-content .parent-comments .reply-comments{
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.live-comments-section .comments-content .parent-comments .user-icon,
.live-comments-section .comments-content .parent-comments .reply-comments .user-icon{
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.live-comments-section .comments-content .parent-comments .total-comments{

}

.live-comments-section .comments-content .parent-comments .total-comments span{
    color: var(--main, #111928);
    font-family: "Mukta", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 9.372px;
    cursor: pointer;
}

.live-comments-section .comments-content .parent-comments .message{

}
.parent-comments .message .user-name{
    display: flex;
    gap: 7px;
    align-items: center;
}
.parent-comments .message .user-name h2{
    color: #000;
    font-family: "Mukta", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.parent-comments .message .user-name span{
    color: #B4BBC6;
    font-family: "Mukta", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 17.964px; /* 149.696% */
}
.parent-comments .message .user-message{}
.parent-comments .message .user-message h2{
    color: rgba(39, 39, 39, 0.80);
    font-family: "Mukta", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 16.8px */
}
.parent-comments .message .reply-icon{
    cursor: pointer;
}
.parent-comments .message .reply-icon span{
    color: #8991A0;
    font-family: "Mukta", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 9.372px; /* 78.102% */
}

.live-comments-section .comments-input{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-top: 0.5px solid rgba(17, 25, 40, 0.50);
    background: #fff;
    padding: 7px;
}
.live-comments-section .comments-input textarea.form-control{
    border: none;
    padding: 0;
    resize: none;
}
.live-comments-section .comments-input textarea.form-control:focus{
    border: none;
    box-shadow: none;
}
.live-comments-section .comments-input .input-footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}
/* live-comments-section end */