:root {
    --TopPinnedNoteList_topMargin: 10px;
    --TopPinnedNoteList_collapsedHeight: 28px;
}

.TopPinnedNoteList {
    display: flex;
    flex-direction: row;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: var(--TopPinnedNoteList_topMargin);
    text-align: justify;
}

.TopPinnedNoteList_container {
    flex: 1;
}

.TopPinnedNoteList_listContainer {
    max-height: var(--TopPinnedNoteList_collapsedHeight);
    overflow-y: hidden;
}

.TopPinnedNoteList_listContainer::-webkit-scrollbar {
    width: 0;
}


.TopPinnedNoteList_expanded .TopPinnedNoteList_listContainer {
    max-height: unset;
}

.TopPinnedNoteList_showAllTextWrapper {
    text-align: center;
    display: none;
}

.TopPinnedNoteList_expanded .TopPinnedNoteList_showAllTextWrapper {
    display: block;
}

.TopPinnedNoteList_showAllText {
    background-color: var(--instanote-info-bg);
    border-radius: 1000px;
    display: inline-block;
    margin: 10px;
    padding: 5px 15px;
    font-size: 24px;
}

.TopPinnedNoteList_showAllText a {
    text-decoration: none;
}

.TopPinnedNoteList_closeButtonContainer {
    padding: 5px;
}

.TopPinnedNoteList_toggleButtonContainer {
}

.TopPinnedNoteList_toggleButton {
    background: var(--semitransparent-background);
    border-radius: 1000px;
    border: none;
    box-shadow: none !important;
    /*height: 32px;*/
    /*line-height: 32px;*/
    padding-top: 5px;
    text-align: center;
    vertical-align: center;
    /*width: 32px;*/
}

.TopPinnedNoteList_toggleButtonExpand {
    display: inline;
}

.TopPinnedNoteList_toggleButtonCollapse {
    display: none;
}

.TopPinnedNoteList_expanded .TopPinnedNoteList_toggleButtonExpand {
    display: none;
}

.TopPinnedNoteList_expanded .TopPinnedNoteList_toggleButtonCollapse {
    display: inline;
}

.TopPinnedNoteList_loadingAnimation {
    max-height: var(--TopPinnedNoteList_collapsedHeight);
    overflow-y: hidden;
}

.TopPinnedNoteList_loadingAnimation .placeholder {
    width: 200px;
    border-radius: 5px;
    border: none !important;
    display: inline-block !important;
    margin: 3px;
}

