#popupCharacterNotes .popupInner {
    width: 900px;
    height: 746px;
    flex-direction: column;
}

#popupCharacterNotes .labelTitle {
    margin: 0 auto 20px;
}

#popupCharacterNotes #notesData {
    position: relative;
    margin: 20px;
}

#notesTitle {

}

#notesFullName {
    line-height: 39px;
    font-size: 22px;
    font-family: 'Georgia', serif;
    font-style: italic;

    position: relative;
    padding: 0 10px 0 25px;

    background: #a9d0c980;

    margin-left: 120px;
    padding-right: 120px;
}

#notesPicture {
    position: absolute;
    left: 20px;
    top: -20px;
    z-index: 1;

    width: 80px;
    height: 80px;
}

#notesPicture:before {
    content: "";
    display: block;
    position: absolute;
    top: -23px;
    left: -30px;
    z-index: -1;
    width: 61px;
    height: 126px;

    background: transparent url('../images/picture_bg.png') 0% 0% no-repeat padding-box;
    background-size: 100% 100%;
}

#notesList {
    height: 100%;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow-y: auto;
}

#notesList.noNotes {
    justify-content: center;
}

#notesList .question, #notesList .answer {
    background: white;
    margin: 20px;
    text-align: left;
    padding: 10px;

    user-select: text;
}

#notesList .question {
    margin-left: 70px;
    text-align: right;
    align-self: end;
}
#notesList .answer {
    margin-right: 70px;
    align-self: start;
}