.nav-plus-page {
    height: 100%;
}

.navbar-left {
    width: 56px;
    height: 100%;
    background-color: #000;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 101;
}

.app-frame {
    width: calc(100vw - 56px);
    margin-left: 56px;
    z-index: 1;
    position: relative;
}

.minimized #navbar-top {
    width: calc(100vw - 106px);
    height: 50px;
}

#navbar-top {
    width: calc(100vw - 160px);
    height: 50px;
}

.logo-container {
     width: 50px;
     justify-content: center;
     align-items: center;
     display: flex;
}
.nav-plus-page.minimized .logo-container {
    width: 50px;
    padding-left: 0px;
}


.left-nav-logo {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.left-nav-items > .item {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all .2s ease;
    position: relative;
    width: 100%;
    justify-content: flex-start;
    height: 46px;
    flex: 0 0 46px;
}

.minimized .left-nav-items > .item {
    transition: none;
}

.left-nav-items > .item.subhead {
    text-transform: uppercase;
    color: #ccc;
    margin-bottom: 5px;
    height: 30px;
}


.left-nav-items > .item.subhead:hover {
    background-color: transparent;
    margin-bottom: 5px;
}


.left-nav-items > .item.hover {
    background-color: rgba(255,255,255,.2);
}

.left-nav-items > .item.highlight, .left-nav-items > .item.highlight:hover {
    background-color: rgba(182, 148, 246,.3);
    color: #fff;
}

.left-nav-items > .item.highlight .nav-label {
    color: #fff;
}



.left-nav-items > .item.selected svg {
    fill: rgba(150,101,244,1);
}

.left-nav-items > .item:hover .material-icons, .left-nav-items > .item:hover .material-icons-outlined {
    opacity: .9;
}

.left-nav-items > .item svg {
    stroke: transparent;
}

.s1 .left-nav-items > .item svg {
    fill: #888;
    width: 22px;
}


.left-nav-items > .item.hover svg {
    fill: #fff;
    fill: rgba(150,101,244,1);
}



.s1 .left-nav-items > .item.selected:before {
    content: "";
    position: absolute;
    left: 0px;
    width: 2px;
    height: 100%;
    background-color: rgba(150, 101, 244,1);
}

.nav-utility {
    display: flex;
    align-items: center;
    padding: 0px 15px;
    border-left: 1px solid #ccc;
    cursor: pointer;
}



.account-context {
    display: flex;
    flex-direction: row;
}

.account-context .separator {
    margin-left: 10px;
    margin-right: 10px;
}

.account-context .acccount {
    font-weight: bold;
    letter-spacing: .5;
    
}

.account-context .team {
    font-weight: bold;
    letter-spacing: .5;

}

.top-icons {
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid #c4c4c4;
    display: flex;
    align-items: center;
}

.top-icons .material-icons, .top-icons .material-icons-outlined {
    font-size: 20px;
    margin-left: 16px;
    opacity: .7;
    cursor: pointer;
}

.user-menu-area {
    margin-left: 0px;
}

.navbar-panel {
    position: fixed;
    width: 350px;
    background-color: #fcfafe;
    background-color: #fff;
    left: -350px;
    top: 0px;
    z-index: 100;
    height: 100%;
    box-shadow: 6px 0px 6px rgba(0,0,0,.2);
    transition: left .1s ease;
}

.navbar-panel.show {
    left: 56px;
}

.panel-header {
    padding: 20px 20px 0 20px;
}

.panel-title {
    font-size: 20px;
    text-transform: none;
    color: #575757;
    letter-spacing: 0;
}

.panel-body {
    padding: 20px;
}

.panel-body .blah {
    background-color: rgba(0,0,0,.2);
}

.list-of-blahs .blah {
    margin-bottom: 10px;
}

.list-of-items .item {
    display: flex;
    align-items: center;
    padding: 0px 10px;
    height: 35px;
}

.list-of-items.compact .item {
    padding: 0px 10px;
    height: 35px;
}

.list-of-items .icon-col {
    flex: 0 0 26px;
    text-align: center;
    margin-right: 6px;
}

.list-of-items .icon-col .material-icons {
    font-size: 20px;
}

.panel-tab {
    margin-right: 10px;
    font-size: 13px;
    border-bottom: 3px solid transparent;
    padding: 7px 1px;
    cursor: pointer;
    margin-right: 20px;
}

.panel-tab.selected {
    font-weight: bold;
    border-bottom: 3px solid #7B3FF2;
}

.key-hint {
    height: 20px;
    width: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(150, 101, 244,.2);
}

.note {
    line-height: 1.4;
    position: fixed;
    bottom: 30px;
    left: 240px;
    padding: 20px;
    background-color: #fdedc7;
    border: 1px solid #c2b9a4;
    box-shadow: 0 0 10px rgba(0,0,0,.2);
    z-index: 1000000;
    display: none;
    max-width: 500px;
}

.page {
    height: 100%;
    background-color: #f5f5f5;
    font-size: 15px;
    padding: 15px;
    margin-right: 56px;
}

#page-search {
    background-color: #fff;
}

.page-header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    height: 50px;
}

.page-header h1 {
    font-size: 16px;
    color: #434343;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .5px;
    margin: 0px;
}

.page-header.dataset-page-header {
    padding: 20px 12px;
}

.page-header.dataset-page-header h1 {
    text-transform: none;
    font-size: 27px;
    font-weight: normal;
    letter-spacing: 0;
}

.page-header .nav-tabs {
    border-bottom: 0px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0px;
    font-size: 11px;
    margin-left: 30px;
    font-weight: 500;

}

.page-header .nav-tabs .tab.active {
    color: #7b3ff2;
    border-color: #7b3ff2;
    border-bottom: 3px solid #7b3ff2;
    font-weight: 700;
}

.page-header .nav-tabs .tab {
    padding: 5px 0;
    margin-right: 22px;
}

.s1-page-body, .dataset-page-body {
    padding: 0 12px;
}

.placeholder-panel {
    background-color: #fff;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1), 0 3px 1px -2px rgba(0, 0, 0, 0.25), 0 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.placeholder-panel-row {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.placeholder-panel-row .placeholder-panel {
    flex: 1 1 auto;
    margin: 0 10px;
}

.placeholder-panel-row .placeholder-panel:first-child {
    margin-left: 0px;
}

.placeholder-panel-row .placeholder-panel:last-child {
    margin-right: 0px;
}

.dataset-page-body .placeholder-panel {
    box-shadow: 0 0 10px rgb(0 0 0 / 5%);
    border: 1px solid #d9d9d9;
}

.bullet-list > li {
    margin-bottom: 6px;
}

.mega-menu {
    position: fixed;
    width: 900px;
    height: 700px;
    top: 60px;
    left: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,.2);
    z-index: 10000;
    background-color: #fff;
    color: #333;
    display: none;
    padding: 20px 40px 20px 20px;
    overflow-y: auto;
    
}

.mega-menu .nav-label {
    color: #333;
}

.mega-menu .item:hover .nav-label {
    color: #333;
}

.navbar-left .sub-menu {
    position: absolute;
    left: 220px;
    top: 0px;
    background-color: #000;
    background-color: #262626;
    margin-left: 0px;
    padding: 6px 0;
    display: none;
    margin-top: 0px;
}

.sub-menu .item {
    padding: 0px 20px;
    white-space: nowrap;
}

.left-nav-items > .item.sub-menu-note {
    margin-top: 10px;
    white-space: normal;
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
    font-style: italic;
    color: rgba(255,255,255,.7);
    border-top: 1px solid rgba(255,255,255,.4);
}

.sub-menu .divider {
    background-color: rgba(255,255,255,.4);
    height: 1px;
    margin-top: 5px;
    margin-bottom: 5px;
    border: 0px;
}

.sub-menu-note:hover {
    background-color: transparent;
}

.persona-panel {
}

.persona-panel .item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    cursor: pointer;
}

.persona-panel .icon-col {
    flex: 0 0 70px;
    margin-right: 20px;
}

.persona-panel .icon-frame {
    width: 70px;
    height: 70px;
    border-radius: 50px;
    display: inline-flex; 
    align-items: center;
    justify-content: center;

    background-color: #eaeaea;
    transition: all .2s ease;
}

.persona-panel .icon-frame img {
    width: 32px;
}

.persona-panel .item.selected .icon-frame, .persona-panel .item.selected:hover .icon-frame {
    box-shadow: 0 0 0 4px #385dbc;
}

.persona-panel .name-col {

    flex: 1 1 100%;
}

.persona-panel .name {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 4px;
}

.persona-panel .item.selected .name {
    
    
}

.persona-panel .item:hover .icon-frame {
    box-shadow: 0 0 0 4px rgba(56,93,188,.5);
}

.tm {
    font-size: 8px;
    position: relative;
    line-height: 1;
    margin-bottom: 7px;
    margin-left: 3px;
}

.switch {
    height: 16px;
    width: 28px;
    background-color: #c2c3c7;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    transition: all .2s ease;
    padding: 2px;
    cursor: pointer;
}

.switch.on {
    background-color: #7B3FF2;
}

.switch div {
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 20px;
    transition: all .2s ease;
}

.switch.on div {
    left: auto;
    right: 2px;
    margin-left: 12px;
}

.breadcrumbs {
    font-size: 13px;
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #ccc;
}

.breadcrumbs .separator {
    margin: 0 20px;
}

.breadcrumbs .current-page {
    font-weight: bold;
}

.product-settings-panel {
    display: flex;
}

.product-settings-panel.menu-panel > .icon-col {
    flex: 0 0 50px;
}

.product-settings-panel > .icon-col .icon {
    width: 30px;
    height: 30px;
    background-color: #ccc;
    border-radius: 4px;
    margin-top: -2px;
}

.product-settings-panel > .content-col {
    flex: 1 1 auto;
}

.menu-panel.product-settings-panel .header {
    text-transform: none;
}

.menu-panel.product-settings-panel .header .description {
    font-weight: normal;
    letter-spacing: 0;
}


.product-settings-panel.menu-panel .header h1 {
    margin-bottom: 4px;
}

.link-menu .link {
    margin-bottom: 8px;
}

.icon {
    width: 20px;
    height: 20px;
    background-color: #ccc;
    border-radius: 4px;
}

.settings-menu2 {
}

.settings-menu2 .section {
    display: flex;
    margin-bottom: 40px;
}

.settings-menu2 .section > .icon-col {
    flex: 0 0 44px;
}

.settings-menu2 .section > .icon-col .icon {
    width: 24px;
    height: 24px;
    margin-top: 2px;
}

.settings-menu2 .section .header {
    font-size: 20px;
    margin-bottom: 15px;
    position: relative;
}

.settings-menu2 .list {
}

.settings-menu2 .list > .item {
    margin-bottom: 6px;
    flex-direction: column;
    align-items: flex-start;
}

.settings-menu2 .list > .item:hover {
    background-color: transparent;
}

.settings-menu2 .list .item-name {
    font-weight: bold;
    margin-bottom: 4px;
    color: #7b3ff2;
    cursor: pointer;
}

.settings-menu2 h2 {
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: .5px;
    font-weight: bold;
}

.scopes {
    display: flex;
}

.scopes a {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    color: #7b3ff2;
    padding: 2px 0;

}

.scopes a:hover {
    color: #5B05EE;
}

.scopes .divider {
    width: 1px;
    height: 10px;
    background-color: #ccc;
    margin: 0 10px;
}

.scopes-icon {
    cursor: pointer;
    margin-right: 8px;

}

.scopes .title {
    border-bottom: 1px solid #5B05EE;
    color: #434343;

}

.scopes .item {
    display: flex;
    align-items: center;
    position: relative;
}

.scopes .menu {
    margin-top: 10px;
    padding: 0px;
}

.scopes .menu-item {
    height: 36px;
}

.scopes .menu-item.search {
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    height: 45px;
}

.scopes .menu-item.search i {
    margin-right: 8px;
    
}

.scopes .menu-body {
    padding: 8px;
}

.scopes .menu-item:hover {
    background-color: #f6f2fe;
}

.show-scopes-menu {
    display: flex;
    align-items: center;
}

.navbar-left .tag {
    background-color: rgba(255,255,255,.2);
    margin-left: auto;
    margin-right: -5px;
    font-size: 13px;
    padding: 5px 15px;
    border-radius: 20px;
    color: #ddd;
}

.where-is-panel {
    position: absolute;
    z-index: 1000;
    background-color: #fff;
    padding: 20px;
    left: 200px;
    width: 400px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0,0,0,.2);
}

.where-is-panel h2 {
    margin-top: 0px;
    font-weight: normal
}

.minimized .where-is-panel {
    display: none;
}

.minimized #where-is-callout {
    display: none;
}

.right-dock {
    background-color: #000;
    flex: 0 0 56px;
    width: 56px;
    z-index: 10;
    padding-top: 15px;
    position: fixed;
    z-index: 1001;
}

.right-dock .item {
    color: #c4c4c4;
    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease;
}

.right-dock .item:hover {
    color: #8e6bec;
}

#slider {
    box-shadow:rgba(0, 0, 0, 0.12) 0px 8px 10px -5px, rgba(0, 0, 0, 0.1) 0px 16px 24px 2px, rgba(0, 0, 0, 0.12) 0px 6px 30px 5px;
    border-left: 0px;
    z-index: 1000;
}

.shell-page-container {
    height: calc(100vh - 100px);
    overflow: hidden;
    position: relative;
}

.white-bg {
    background-color: #fff;
}

hr {
    border-bottom-color: #dadada;
    border-top-color: transparent;
}

.icon-minimize2 {
    position: absolute;
    background-color: #fff;
    border: 1px solid #5B05EE;
    color: #5B05EE;
    background-color: #9d9d9d;
    color: #fff;
    border: 0px;
    top: 14px;
    right: -11px;
    width: 22px;
    height: 22px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 5px rgba(0,0,0,.2);
    cursor: pointer;
    opacity: 0;
    transition: all .15s ease;
    scale: .2;
}

.icon-minimize2:hover {
    background-color: #9665f4;
    
}

.navbar-left:hover .icon-minimize2 {
    opacity: 1;
    scale: 1;
}