.comments {
	width: 100%;
	clear: both;
}
.comments-add {
	width: 100%;
	clear: both;
	margin-bottom: 10px;
}
.comments-add__form {
	width: 100%;
}
.title_comment {
    color: #064c79;
    font-size: 20px;
    font-weight: 700;
    padding: 20px 0 10px;
}

.top .form-group{
    width: calc((100% - 30px)/3);
}
.top .form-group:last-child{
    margin-right: 0px;
}
.top .form-group input{
    width: 100%;
    border: 1px solid #dedede;
    height: 35px;
    padding-left: 10px;
}
.form-group button {
    background: linear-gradient(90deg, #015aad, #00b74f);
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 5px 50px;
}
.center .form-group textarea{
    border: 1px solid #dedede;
    color: #18283f;
    line-height: 18px;
    padding: 5px;
    width: 100%;
    height: 100px;
}
.comments-add__action {
	width: 100%;
	border: 1px solid #cacaca;
	border-top: none;
	border-radius: 0 0 5px 5px;
	padding: 5px;
	background: #ffffff;
}
.acition_hidden {
    background: #fff;
    border: 1px solid #dedede;
    padding: 2px 50px;
}
.acition_hidden,
.comments-list .item .action_like {
    cursor: pointer;
}



.comments-content {
	width: 100%;
	clear: both;
    margin-bottom: 20px;
}
.comments-list {
	width: 100%;
	clear: both;
    margin-bottom: 20px;
}
.comments-list .item + .item {
    margin-top: 10px;
}
.comments-list .item_box {
    border: 1px solid #dedede;
    border-radius: 15px;
    box-sizing: border-box;
    padding: 15px 20px 5px 20px;
    width: 100%;
    margin-top: 15px;
}

.comments-list .item-author {
	width: 100%;
}
.comments-list .item-author .item-author__avatar {
    line-height: 26px;
    color: #c12a37;
    font-size: 16px;
    font-weight: 700;
}
.comments-list .item-author .item-action__time span{
    color: #909090;
    font-size: 12px;
    font-style: italic;

}
.comments-list .item-author__name {
    overflow: hidden;
    height: 26px;
    line-height: 26px;
    color: #c12a37;
    font-size: 16px;
    font-weight: 700;
}
.comments-list .item-author__role {
	font-size: 16px;
    font-weight: 700;
    color: #65CEA7;
    text-transform: uppercase;
}

.comments-list .item-content {
	width: 100%;
	padding: 10px 0;
	line-height: 22px;
	overflow: hidden;
	white-space: pre-line;
}
.comments-list .item-action__reply {
	margin-right: 10px;
	color: #4a90e2;
	cursor: pointer;
    margin-left: 20px;
}
.comments-list .item-reply .comments-add {
	margin-bottom: 0;
}
.comments-list .item-child, .comments-list .item-reply {
    margin-top: 10px;
    margin-left: 10%;
    width: 90%;
}
.comments-list .item-child .item {
    border: 1px solid #dedede;
    border-radius: 15px;
    box-sizing: border-box;
    padding: 15px 20px 5px 20px;
    width: 100%;
}
.comments-list .item-child:before,
.comments-list .item-child:after {
    content: "";
	top: -20px;
    left: 18px;
    border: solid transparent;
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}
.comments-list .item-child:before {
	border-color: rgba(238,238,238,0);
    border-bottom-color: #f8f8f8;
    border-width: 11px;
    margin-left: -11px;
    z-index: 1;
}
.comments-list .item-child:after {
	border-color: rgba(255,255,255,0);
    border-bottom-color: #dfdfdf;
    border-width: 10px;
    margin-left: -10px;
}
.no-comments {
	width: 100%;
	font-size: 20px;
	font-weight: bold;
	padding: 20px 0;
}

/* Module Loading */
.comments-loading {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
}
.comments-loading__box {
    width: 100%;
    height: 100%;
    background: url('../img/loading_image.gif') no-repeat center center;
    background-size: 50px 50px;
}

.paginations {
    clear: both;
    margin-top: 10px;
}
.mobile .comments-add__form .top {
    flex-wrap: wrap!important;
    gap: 10px;
}
.mobile .top .form-group{
    margin-right: 0px;
    width: 100%;
}
