p + .commentBubble{
    margin-top: 40px;
}
.commentBubble{
    display: flex;
    margin-bottom: 40px;
}
.commentBubble .commentBubbleImgWrap{
    width: 72px;
    height: 72px;
    margin-right: 25px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.commentBubble .commentBubbleImgWrap figure{
    position: relative;
    width: 100%;
    height: 100%;
}
.commentBubble .commentBubbleImgWrap figure img{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-height: 100%;
    width: auto;
}
.commentBubble .commentBubbleImgWrap + .commentBubbleText{
    position: relative;
    width: calc(100% - 143px);
    position: relative;
    border: 2px solid #555;
    padding: 17px 21px 13px;
    border-radius: 8px;
}
.commentBubble .commentBubbleImgWrap + .commentBubbleText:before{
    content: '';
    position: absolute;
    top: 26px;
    height: 0;
    width: 0;
    border: 8px solid transparent;
    border-right-width: 15px;
    left: -24px;
    border-right-color: #555;
}
.commentBubble .commentBubbleImgWrap + .commentBubbleText:after{
    content: '';
    position: absolute;
    top: 26px;
    height: 0;
    width: 0;
    border: 8px solid transparent;
    border-right-width: 15px;
    left: -20px;
    border-right-color: #fff;
}

.commentBubble.noBubble .commentBubbleImgWrap + .commentBubbleText{
    width: calc(100% - 97px);
    padding: 0;
    border: none;
}
.commentBubble.noBubble .commentBubbleImgWrap + .commentBubbleText:before,
.commentBubble.noBubble .commentBubbleImgWrap + .commentBubbleText:after{
    display: none;
}
.commentBubble .commentBubbleText .commentBubbleBody{
    margin: 0;
    line-height: 1.6;
}