.comments-container {
	/* margin: 60px auto 15px; */
	width: 100%;
}
.comments-container .paginations .pagination .disabled{
	display: none;
}
.comments-container .paginations .pagination>li>a,.comments-container .paginations .pagination>li>span{
	width: 40px;
	height: 40px;
	display: flex;
    align-items: center;
	justify-content: center;
	color: #C7C9D5;
	margin-right: 5px;
	border-radius:4px; 
}
.comments-container .paginations .pagination>.active>span{
	background-color: #FFC646;
    border-color: #FFC646;
}
.comments-container h1 {
	font-size: 36px;
	color: #283035;
	font-weight: 400;
}

.comments-container h1 a {
	font-size: 18px;
	font-weight: 700;
}
.comments-container .box_add_comment{
	width: 100%;
}
.comments-container .box_add_comment .box_input{
	display: flex;
}
.comments-container .box_add_comment .box_input img{
	width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}
.comments-container .box_add_comment .box_input input{
	border: none;
    box-shadow: none;
    border-bottom: 1px solid#ccc;
    border-radius: 0px;
    padding-left: 0px;
}
.comments-container .box_add_comment .box_submit{
	display: flex;
    align-items: center;
    justify-content: flex-end;
}
.comments-container .box_add_comment .box_submit .delete_content{
	cursor: pointer;
	margin-right: 35px;
}
.comments-container .box_add_comment .box_submit .send-comment{
	width: 95px;
    height: 35px;
    border: 1px solid#FFC646;
    background: #FFC646;
    border-radius: 4px;
    margin: 5px 0px;
    display: flex;
    align-items: center;
	justify-content: center;
	cursor: pointer;
}
.comments-container .box_add_comment .box_submit .send-comment a{
	color: #fff;
    font-size: 14px;
    line-height: 16px;
    font-family: "Roboto-Bold";
}
.comments-list {
	/* margin-top: 30px; */
	position: relative;
	display: inline-block;
}

/**
 * Lineas / Detalles
 -----------------------*/
.comments-list:before {
	
}

.comments-list:after {
	/* content: '';
	position: absolute;
	background: #c7cacb;
	bottom: 0;
	left: 27px;
	width: 7px;
	height: 7px;
	border: 3px solid #dee1e3;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%; */
}

.reply-list:before, .reply-list:after {display: none;}
.reply-list li:before {
	
}
.comments-list.reply-list li{
	display: flex;
}


.comments-list li {
	margin-bottom: 15px;
	display: block;
	position: relative;
}

.comments-list li:after {
	content: '';
	display: block;
	clear: both;
	height: 0;
	width: 0;
}

.reply-list {
	padding-left: 50px;
	clear: both;
	margin-top: 15px;
}
/**
 * Avatar
 ---------------------------*/
.comments-list .comment-avatar {
	width: 40px;
	height: 40px;
	position: relative;
	z-index: 99;
	/* float: left; */
	/* border: 3px solid #FFF; */
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.2);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.2);
	box-shadow: 0 1px 2px rgba(0,0,0,0.2);
	overflow: hidden;
}

.comments-list .comment-avatar img {
	width: 100%;
	height: 100%;
}

.reply-list .comment-avatar {
	width: 40px;
	height: 40px;
}

.comment-main-level:after {
	content: '';
	width: 0;
	height: 0;
	display: block;
	clear: both;
}
.comment-main-level{
	display: flex;
}
/**
 * Caja del Comentario
 ---------------------------*/
.comments-list .comment-box {
	width: 680px;
	/* float: right; */
	position: relative;
	/* -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.15);
	-moz-box-shadow: 0 1px 1px rgba(0,0,0,0.15);
	box-shadow: 0 1px 1px rgba(0,0,0,0.15); */
}
.comments-list .comment-box .box-reply .box-action{
	display: flex;
}
.comments-list .comment-box .box-reply .box-action .btn-delete{
	color: #FF3F3F;
	font-size: 14px;
	line-height: 24px;
	padding: 0px 10px;
	border-left: 1px solid#ccc;
	cursor: pointer;
}
.comments-list .comment-box .box-reply .btn-reply{
	color: #C4C4C4;
	font-size: 14px;
	line-height: 24px;
	padding: 0px 10px;
	border-left: 1px solid#ccc;
	cursor: pointer;
}
.comments-list .comment-box .box-reply .box_add_comment{
	display: none;
}
.comments-list .comment-box:before, .comments-list .comment-box:after {
	/* content: '';
	height: 0;
	width: 0;
	position: absolute;
	display: block;
	border-width: 10px 12px 10px 0;
	border-style: solid;
	border-color: transparent #FCFCFC;
	top: 8px;
	left: -11px; */
}

.comments-list .comment-box:before {
	/* border-width: 11px 13px 11px 0;
	border-color: transparent rgba(0,0,0,0.05);
	left: -12px; */
}

.reply-list .comment-box {
	width: 610px;
}
.comment-box .comment-head {
	/* background: #FCFCFC; */
	padding: 0px 10px;
	/* border-bottom: 1px solid #E5E5E5; */
	overflow: hidden;
	display: flex;
    align-items: center;
}

.comment-box .comment-head i {
	float: right;
	margin-left: 14px;
	position: relative;
	top: 2px;
	color: #A6A6A6;
	cursor: pointer;
	-webkit-transition: color 0.3s ease;
	-o-transition: color 0.3s ease;
	transition: color 0.3s ease;
}

.comment-box .comment-head i:hover {
	color: #03658c;
}

.comment-box .comment-name {
	color: #283035;
	font-size: 14px;
	font-weight: 700;
	float: left;
	margin-right: 10px;
}

.comment-box .comment-name a {
	color: #283035;
}

.comment-box .comment-head span {
	float: left;
	color: #C4C4C4;
	font-size: 12px;
	line-height: 14px;
	position: relative;
	top: 1px;
}

.comment-box .comment-content {	
	padding: 0px 12px;
	font-size: 14px;
	line-height: 24px;
	color: #707070;
}

.comment-box .comment-name.by-author, .comment-box .comment-name.by-author a {
	color: #050709;
	font-size: 14px;
	line-height: 16px;
	font-family: 'Roboto-Bold';
}
.comment-box .comment-name.by-author:after {
	
}

/** =====================
 * Responsive
 ========================*/
@media only screen and (max-width: 766px) {
	.comments-container {
		width: 480px;
	}

	.comments-list .comment-box {
		width: 390px;
	}

	.reply-list .comment-box {
		width: 320px;
	}
}