.kj-note {
    background: #FFEAA7;
    border: 1px solid #f3c94b;
    border-radius: 4px;
    font-size: 0.9rem;
    padding: 0.5rem !important;
}

.kj-note .kj-note-title,
.kj-note .kj-note-user {
    font-weight: bold;
}

.kj-note .kj-note-title,
.kj-note .kj-note-user,
.kj-note .kj-note-parsedDescription {
    word-break: break-word;
}

.kj-note .kj-note-important {
    color: #CF3338;
}

.kj-note .kj-note-creator {
    font-size: 0.8rem;
}

.kj-note .kj-note-creator span {
    display: block;
}

.kj-note .kj-note-user-short {
    background: #ffd966;
    border: 1px solid #333333;
    border-radius: 4px;
    min-width: 28px;
    height: 28px;
    text-align: center;
    line-height: 26px;
    margin-right: 0.5rem !important;
}

.kj-note .kj-note-user-short-sm {
    min-width: 28px;
    height: 10%;
    line-height: 15px;
}

.kj-note-archived > .kj-note {
    background: #fab1a0 !important;
    border: 1px solid #f37950 !important;
}

.kj-note-archived > .kj-note .kj-note-user-short {
    background: #e17055 !important;
}

.kj-note-archived > .kj-note button.btn-icon:hover,
.kj-note-archived > .kj-note button.btn-icon.btn-active {
    background: #e17055 !important;
}

.kj-note div > i[data-action] {
    cursor: pointer;
}

.kj-note div > i[data-action="move"] {
    cursor: move;
}

.kj-note div > i.fa:not([data-action="move"]),
.kj-note div > i.far,
.kj-note div > i.fas {
    margin-left: 0.5rem !important;
}

.kj-note div > svg {
    height: 18px;
    width: 18px;
    cursor: pointer;
}

.kj-note button.btn-icon {
    height: 2rem !important;
    width: 2rem !important;
    color: #646c9a;
}

.kj-note button.btn-icon-border {
    border: 1px solid #646c9a;
}

.kj-note button.btn-icon:hover,
.kj-note button.btn-icon.btn-active {
    background: #f3c94b;
}

.kj-note-parsedDescription.ql-editor {
    padding: unset;
    white-space: unset;
    overflow-y: unset;
    line-height: unset;
}

.kj-note .editor-container .ql-snow {
    background: #ffffff;
}

.kj-note .editor-container .ql-snow.ql-toolbar button, .ql-snow .ql-toolbar button {
    height: 20px;
    padding: 3px;
    width: 20px;
}

.kj-note .editor-container .ql-toolbar.ql-snow {
    padding: 3px;
}

.kj-note .editor-container .ql-toolbar.ql-snow .ql-formats {
    margin-right: unset;
}

.kj-note .editor-container svg[data-action="save"] {
    position: absolute;
    bottom: 2px;
    right: 12px;
}

.kj-note .editor-container .ql-mention-list-item {
    line-height: unset;
    font-size: unset;
    padding: 7px;
}

.kj-note .kj-note-attachment {
    text-align: center;
    min-height: 46.25px;
    word-break: break-all;
}

.kj-note .kj-note-attachment-img img {
    width: 2.5em;
}

.kj-note .kj-note-attachment-overlay {
    position: absolute;
    display: none;
    width: 100%;
    /*height: 100%;*/
    top: 0;
    left: 10px;
    right: 10px;
    bottom: 17px;
    /*background-color: rgba(0,0,0,0.5); !* Black background with opacity *!*/
    z-index: 2;
}

.kj-note .kj-note-attachment:hover .kj-note-attachment-overlay {
    display: block;
}

.kj-note.highlight {
    animation: blink 1.5s linear alternate 1.5s;
}

@keyframes blink {
    0% {
        background-color: #FFEAA7;
    }
    50% {
        background-color: unset;
    }
    100% {
        background-color: #FFEAA7;
    }
}