.tip {
  width: 0px;
  height: 0px;
  position: absolute;
  background: transparent;
  border: 10px solid #ffffff;
}

.tip-up {
  top: -25px; /* Same as body margin top + bordere */
  left: 10px;
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
}

.tip-down {
  bottom: -25px;
  left: 10px;
  border-right-color: transparent;
  border-left-color: transparent;
  border-bottom-color: transparent;  
}

.tip-left {
  top: 10px;
  left: -25px;
  border-top-color: transparent;
  border-left-color: transparent;
  border-bottom-color: transparent;  
}

.tip-right {
  top: 10px;
  right: -25px;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;  
}
 .comment_wrapper{
        margin: 10px;
    }

.comment_wrapper .comment_body {
    position: relative;
    width: 95%;
    max-width: 95%;
    height: auto;
    margin: 0px;
    padding: 1%;
    background-color: #ffffff;
    border-radius: 3px;
    border: 5px solid #ffffff;
    box-shadow: 1px 1px 1px 1px #D0D0D0;
}

.comment_body .comment_text {
    min-height: 30px;
    border-radius: 3px;
    font-size: 1em;
    display: block;
    text-align: left;
    margin-top: 1%;
    line-height: 1.2;
    color: #606060;
    text-align: justify;
    padding: 2%;
}
.comment_textarea {
    text-align: left;
}
.comment_author {
    font-size: 0.8em;
    font-weight: bold;
    color: #797979;
}
.comment_time {
    font-size: 0.7em;
    color: #797979;
}
.comment_avatar img {
 	border-radius: 50%;
    width: 80%;
    height: auto;
    max-width: 60px;
    max-height: 60px;
    text-align: center;
    display: block;
    border: 1px solid white;
    margin: 0;
    padding: 0;
    float: right;
    margin-top: 15px;
    margin-left: auto;
    margin-right: 5%;
}
.comment_avatar {
    display: block;
    display: block;
    border-radius: 0%;
    height: 100%;
    width: 100%;
    display: block;
    text-align: center;
    margin-top:1%;
    margin-right: 2%;
    margin-left: auto;
    max-width: 90px;
    max-height: 90px;
}
span.comment_delete {
    float: right;
}
span.comment_delete img {
    width: 80%;
    height: 80%;
    opacity: 0.5;
}


body.darkmode .comment_wrapper .comment_body {
    background-color: #262728;
    border: 5px solid #262728;
    box-shadow: 1px 1px 1px 1px #1e1e1e;
}
body.darkmode .tip {border: 10px solid #262728;}
body.darkmode .comment_avatar img { border: 1px solid #191a1a;}
body.darkmode .tip-left { 
    border-top-color: transparent;
    border-left-color: transparent;
    border-bottom-color: transparent;
}
body.darkmode .comment_body .comment_text {color: #a1a1a1;}