.commentSection {
    float: left;
    height: auto;
    margin-bottom: 20px;
    width: 100%;
}
    
.comments {
    padding:10px;
    display: flex;
    flex-direction: column;
}

.commentContainer {
    min-height: 35px;
    float: left;
    margin: 5px;
    padding: 20px;
    width: calc(100% - 10px)
}

.commentListing {
    width: 75%;

}

.firstCommentContainer {
    width: 100%;
    float: left;
}

.commentFormContainer {
    width: 50%;

}

.commentTextArea {
    height:100px;
    width:calc(100% - 20px);
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    resize:vertical;
    font-size: 15px;
}

.ratingAndSubmitContainer {
    display: flex;
    float: left;
    width: calc(100% - 20px);
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
    align-content: center;
}

.commentPostedByName {
    font-size: 12px !important;
}

.commentPostedByTime {
    font-size: 10px !important;
    float:right !important;
}

.commentDeleteForm {
    margin-bottom: 0px;
    float: left;
    width: 100%;
}

.deleteComment {
    width: 18px;
    height: 14px;
    padding: 2px;
    font-size: 8px;
    line-height: 12px;
    float: right;
    border: none;
    background: #ddd;
    cursor: pointer;
    margin-left: 5px;
}

.deleteComment:hover {
    color: white;
    background: #440f0f;
}

.commentReplyFormContainer {
    float: left;
    width: calc(100% - 15px);
    margin-left: 10px;
    margin-top: 10px;
}

.commentTextAreaContainer {
    margin-left: 0px;
    float: left;
    width: calc(100%);
    margin-bottom: 10px;
}


br {
    content: "A" !important;
    display: block !important;
    margin-bottom: 1em !important;
}

.ratingStars {
    width: 50%;
    max-width: 160px;
    float: right;
    display: flex;
    align-items: center;
    height: 40px;
    margin-top: 10px;
    justify-content: flex-end;
    margin-right: 10px;
}

.ratingStarButton {
    width: 18%;
    height: 30px;
    border: none;
    outline: none;
    appearance: none;
    padding: 0px;
    margin: 0;
}

.ratingStar {
    float:left;
    width: 18%;
}

#rating_bar {
  display: inline-block;
  display: inline;
  unicode-bidi: bidi-override;
  direction: rtl;
}

#rating_bar>input:before {
  content: url(/images/nostar30.png);
  height: 100px;
  width: 100px;
  cursor: pointer;
  font-size: 2em;
}

#rating_bar>input:hover:before,
#rating_bar input:hover~input:before {
    content: url(/images/fullstar30.png);
}

#rating_bar>input:checked:before,
#rating_bar input:checked~input:before {
    content: url(/images/fullstar30.png);
}

.commentReplyDeleteForm {
    margin-left: 20px;
    width: calc(100% - 50px);
    float: left;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}


@media screen and (max-width: 425px) {
.commentSection {
    padding: 20px;
    margin-bottom: 10px;
    width: auto;
}

.comments {
    width: 100%;
    padding: 0px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.commentContainer {
    width: auto;
}

.commentListing {
    width: 100%;
}

.commentFormContainer {
    width: 100%;
}

.ratingStarButton {
    width: 18%;
} 

.commentReplyDeleteForm {
    margin-left: 5px;
    width: calc(100% - 15px);
}

.commentReplyFormContainer {
    width: calc(100% - 0px);
    margin-left: 0px;
}
    
    
}