.evolutivo-comment-editor__toolbar {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.evolutivo-comment-editor__list-button {
    width: 28px;
    height: 27px;
    display: inline-grid;
    place-items: center;
    margin: 0 2px 0 0;
    padding: 0;
    border: 0;
    border-radius: 4px;
    background: transparent;
    color: #0d3b66;
    font-family: Commissioner, sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.evolutivo-comment-editor__list-button:hover,
.evolutivo-comment-editor__list-button:focus-visible {
    background: #e8eef5;
    outline: none;
}

.evolutivo-comment-editor__list-icon {
    position: relative;
    width: 15px;
    height: 12px;
    display: block;
    color: currentColor;
}

.evolutivo-comment-editor__list-icon::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 9px;
    height: 1px;
    border-radius: 1px;
    background: currentColor;
    box-shadow: 0 4px 0 currentColor, 0 8px 0 currentColor;
}

.evolutivo-comment-editor__list-icon--bullet::before {
    content: "";
    position: absolute;
    left: 1px;
    top: 2px;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 4px 0 currentColor, 0 8px 0 currentColor;
}

.evolutivo-comment-editor__list-icon--numbered::before {
    content: "1\A 2\A 3";
    position: absolute;
    left: 0;
    top: -1px;
    white-space: pre;
    color: currentColor;
    font-family: Arial, sans-serif;
    font-size: 5px;
    font-weight: 700;
    line-height: 4px;
    text-align: right;
}
