#c-border{
	border: 0.0625rem solid #ddd;
	border-radius: 0.0625rem;
	box-shadow: 0 0.1rem 0.1rem rgba(0, 0, 0, 0.03);
	border-radius:0.125rem;
}
.comment,
#addCommentContainer{
padding: 1rem;
position: relative;
color: #888;
}

.comment .name{
font-size:0.9rem;
color:#1897b1;
max-width:580px;
font-weight:600;
}

.comment .date{
font-size: 0.7rem;
padding: 1rem;
position: absolute;
right: 1rem;
top: 0.5rem;
color: #aaa;
}

.msg-delete{
position: relative;
right: 15px;
bottom: 5px;
text-align: right;
}

.btn_del {
background-color: #e55b5b;
color: #fff;
border: 1px solid #e55b5b;
cursor: pointer;
padding: 3px 5px;
text-align: center;
font-size: 10px;
border-radius: 45px;
}

.btn_del:hover {
background-color: #ce3d3d;
color: #fff;
border: 1px solid #ce3d3d;
}

.msg-body{
    font-size: 0.9rem;
    color: #777;
    line-height: 1.5;
    position: relative;
    background: #f8f8f8;
    height: auto;
    margin: 0.5rem 0.5rem 0.5rem 0.25rem;
    padding: 0.5rem 0.5rem 0.5rem 1rem;
    border-radius: 0.125rem;
    word-break:break-word;
}

.msg-body:before {
  content:'';
  position:absolute;
  border:10px solid transparent;
  border-left:10px solid #f8f8f8;
  top:-10px;
  left:0px;
}


#addCommentContainer p{
    font-size:1rem;
margin: 0;
padding-bottom: 1rem;
}

#addCommentContainer input[type=text],
#addCommentContainer textarea{

	/* Styling the inputs */
display: block;
border: 0.0625rem solid #ccc;
width: 100%;
padding: 0.375rem;
font-size: 0.75rem;
color: #555;
margin:0.25rem 0;
}

#addCommentContainer textarea{
width:100%;
	height:100px;
}

#addCommentContainer label{
	font-size:0.6rem;
	padding:0;
}

#addCommentContainer label span.error{
font-size:0.6rem;
color:red;
padding:0px;
}


#submit {
	border-radius: 0.0625rem;
	text-decoration: none;
	cursor: pointer;
	background-color: #E1E1E1;
	color: #333;
	font-size: 0.75rem;
	padding-top: 0.5rem;
	margin:0.25rem 0 0 0;
}

#submit:hover{
background-color: #F1F1F1;
color: #444;
}