p{
    margin: 0 !important;
}
.commentsContainer{
    border: 1px solid #e0e0e0;
    margin-top:  2%;
    padding : 2%;
    border-radius: 10px ;
}
.titleCommentsContainer{
    margin-bottom: 2%;
}
.titleCommentsContainer h4{
    font-size: var(--FONT_SIZE_TITLE);
}
.commentsList p, .commentInputText input {
    font-size: var(--FONT_SIZE_PRIMARY);
}
.titleCommentsContainer h4, .comment p{
    font-weight: 800;
}
.comment{
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 2%;
    box-shadow: 0px 4px 11px -8px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 4px 11px -8px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 4px 11px -8px rgba(0,0,0,0.75);
    margin-bottom: 2%;
}
.commentContent p{
    font-weight: 100;
}
.commentAvatar{
    width: 5%;
    margin-right: 1%;
}
.commentTitle{
    display: flex;
    align-items: center;
}
.commentInput{
    display: flex;
    align-items: center;
    margin-top: 2%;
    margin-left: 3%;
}
.commentInputText{
    width: 93%;
}
.commentInput input{
    min-width: 100%;
    max-width: 100%;
    padding-left: 2%;
    padding-right: 2%;
    padding-top: 1%;
    padding-bottom: 1%;
    max-height: 300px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    outline: none;
    transition: ease-in-out 200ms;
}
.commentInput input:focus{
    border: 1px solid #00AAAB;
    box-shadow: 0px 4px 11px -8px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 4px 11px -8px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 4px 11px -8px rgba(0,0,0,0.75);
}
.commentSentInput{
    padding: 1%;
    margin-left: 1%;
    background: #e0e0e0;
    border-radius: 10px;
    transition: ease 200ms;
}
.commentSentInput:hover{
    background: rgb(211, 210, 131);
    cursor: pointer;
}