﻿/*Navigation Menu*/
#search_container {
    height: 250px;
    overflow: auto;
}

.leftBar {
    height: 100vh;
}

#navigationMenuContainer {
    height: 100%;
}

.scrollable-nav-list {
    display: block;
    overflow-y: auto;
    overflow-x: hidden;
    height: auto;
    max-height: 100%;
}

#navAccordion {
    background: none;
}

#navAccordion .e-acrdn-item.e-select.e-selected.e-expand-state > .e-acrdn-header {
    background: none !important; /*To Remove selected item(expanded) background color*/
}

#navAccordion .e-acrdn-item.e-select.e-expand-state > .e-acrdn-header {
    background: none !important; /*To Remove selected item(collapsed) background color*/
}

#navAccordion .e-acrdn-item.e-select > .e-acrdn-header > .e-toggle-icon {
    color: white !important;
}

#navAccordion .e-acrdn-item.e-select.e-selected.e-expand-state > .e-acrdn-header > .e-toggle-icon {
    color: var(--se-gray-4) !important;
}

#navAccordion .e-acrdn-item.e-select.e-selected.e-expand-state > .e-acrdn-header > .e-acrdn-header-content {
    color: var(--se-gray-4) !important; /* To Apply the font color to selected accordion header*/
}

#navAccordion .e-acrdn-item > .e-acrdn-header > .e-acrdn-header-content {
    color: white !important;
}

/*to remove the white line*/
.e-accordion .e-acrdn-item.e-select {
    border-bottom: 0px solid white !important;
    border-top: 0px solid white !important;
}

/*styles of elements in NavigationMenu*/
#searchResultItem {
    cursor: pointer;
}

.childListItem {
    margin-left: 10px;
    cursor: pointer;
}

.childImage {
    object-fit: contain;
    margin-right: 5px;
}

.childDisplayString {
    text-overflow: ellipsis;
    white-space: nowrap;
}

.deleteListItem, .discardListItem, .revertLocalChangesListItem, .saveListItem, .captureMediaListItem {
    margin-left: 10px;
    cursor: pointer;
}

.td-nav-menu-icon * {
    margin-top: 2px;
    margin-left: 3px;
}

.nav-item *, #homeLink {
    color: var(--se-gray-2);
}

.nav-item div table tr td:last-child {
    padding-left: 6px;
}

.nav-item div:hover, #homeLink:hover {
    background-color: var(--se-bright-purple);
    border-radius: 5px;
    cursor: pointer;
}

    .nav-item div:hover *, #homeLink:hover * {
        color: white !important;
    }


