#commentForm {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    margin-left: -100px;
    margin-top: -80px;

    background-color: rgb(50,50,50);
    background-color: rgba(50,50,50,0.75);

    padding: 10px;
    line-height: 25px;
}

#commentTextarea {
    width: 100%;
    height: 50px;
    resize: none;
    border: none;

    font-size: 14px;
    font-family: Helvetica, Arial, sans-serif;

    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
}

#commentForm h2 {
    margin-bottom: 0.5em;
}

#commentForm button {
    font-size: 14px;
}

.square20 {
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
}
.disc20 {
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
}
.triangleUp20 {
    width: 0;
    height: 0;
    margin-left: -10px;
    border-left: 10px solid transparent!important;
    border-right: 10px solid transparent!important;
    border-bottom: 20px solid;
    background-color: transparent!important;
}
.triangleDown20 {
    width: 0;
    height: 0;
    margin-top: -20px;
    margin-left: -10px;
    border-left: 10px solid transparent!important;
    border-right: 10px solid transparent!important;
    border-top: 20px solid;
    background-color: transparent!important;
}
.triangleDown20 div {
    top: -23px;
}
.task20 {
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
}

.bg-red { background-color: #f25f5c; border-color: #f25f5c; }
.bg-orange { background-color: #ff5722; border-color: #ff5722; }
.bg-yellow { background-color: #ffe066; border-color: #ffe066; }
.bg-blue { background-color: #247ba0; border-color: #247ba0; }
.bg-green { background-color: #70c1b3; border-color: #70c1b3; }

.comment {
    position: absolute;
    left: 30px;
    top: -3px;
    width: 220px;
    background-color: rgb(50,50,50);
    background-color: rgba(50,50,50,0.75);
    padding: 0.5em;
}
.comment-text a {
  text-decoration: underline;
}
textarea {
    -moz-user-select: text;
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.delete-comment-button {
    display: none;
    cursor: pointer;
    margin-top: 10px;
}