a.btn-answer {
    color: rgb(23, 23, 255);
}

#comment .btn-del {
    color: #ff2000;
}

#comment form .required,
#comment form .r-validate {
    color: #ff2000;
    display: none;
}

#comment .pagination-box {
    text-align: center;
}

#comment .pagination-box .add-more {
    display: inline-block;
    color: #000;
    font-weight: bold;
    background: var(--main-color);
    padding: 10px 30px;
    transition: all .3s;
    border-radius: 5px;
    border: 2px solid var(--main-color);
    text-transform: uppercase;
    cursor: pointer;
}

#box-comment .item-comment {
    margin-bottom: 15px;
}

.box-comment-reply {
    margin-bottom: 15px;
}

.row-comment {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
}

.row-comment .name.name-admin {
    color: #cd8500;
}

.box-reply {
    margin-left: 50px;
    margin-top: 15px;
    margin-bottom: 20px;
}

.row-comment .avatar {
    flex: 0 0 50px;
    font-weight: bold;
}

.row-comment .avatar .img-text {
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #CBD1D6;
    padding: 0px;
    border-radius: 50%;
    text-transform: uppercase;
    overflow: hidden;
    color: #FFF;
}

.row-comment .avatar .img-text img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.row-comment .comment-content {
    flex: 1 1 93%
}

.row-comment .comment-content h4 {
    margin-top: 0px !important;
    margin-bottom: 2px !important;
}

.row-comment.row-comment-reply {
    margin-bottom: 15px;
}

.row-comment.row-comment-reply .comment-content {
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #e1e4e6;
    background: #F8F9FA;
}

.row-comment .comment-content .comment {
    margin-top: 0px !important;
    margin-bottom: 4px !important;
    word-break: break-word;
}

.row-comment .comment-content>div {
    font-size: 14px;
}

.form-comment {
    position: relative;
}

.form-comment[action="comment-reply-admin"] {
    background: #f2f2f2;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.form-comment[action="comment"] {
    margin-bottom: 15px;
}

.form-comment .content-input textarea {
    padding-right: 140px !important;
}

.form-comment button[type="submit"],
.form-comment-reply button[type="submit"] {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

#comment .pagination-box {
    background-image: linear-gradient(transparent 1%, #FFF 99%);
    position: relative;
    z-index: 0;
}

/* .form-comment[action="comment-reply-admin"] button[type="submit"] {
    right: 15px;
} */