.panel-right {
    position: absolute;
    right:0;top:60px;
    z-index: 1000;
    width: 320px;
    height: calc(100vh - 60px);
    background-color: rgba(255,255,255,0.8);
    backdrop-filter: blur(5px);
    border-left: 1px solid #CCC;
    overflow-y: scroll;
    overflow-x: visible;
    padding: 10px;
}
.panel-left {
    position: absolute;
    left:0;top:60px;
    z-index: 1000;
    width: 320px;
    height: calc(100vh - 60px);
    background-color: rgba(255,255,255,0.8);
    backdrop-filter: blur(5px);
    border-right: 1px solid #CCC;
    padding: 10px;
}
.panel-top {
    position: absolute;
    left:0; top:0;
    z-index: 1001;
    width: 100vw;
    height: 60px;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    border-radius: 0;
}

nav.navbar {
    height: 20px;
    min-height: auto;
    margin-bottom: 0;
    -webkit-transform: translate3d(0,0,1px);
    z-index: 1;
    background-color: #000000;
}
.nav.navbar-nav {
    height: 20px;
    background-color: transparent;
    border:0;
    color:#FFF;
    float: none !important;
    clear-after: both;
}
.navbar-nav>li {
    float: none !important;
    display: inline-block;
}
.navbar-nav>li>a {
    color:#FFF;
    height: 20px;
    padding:0;
}
/* NEW 2nd-Level Dropdown CSS START */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}
/* NEW 2nd-Level Dropdown CSS END */



.document-modes {
    position: relative;
    height: 40px;
}
.document-modes > * {
    vertical-align: top;
}
.document-modes button {
    border:0;
    background-color: transparent;
    color:#FFF;
    text-align: center;
    font-size: 10px; text-transform: uppercase;
    width: 40px; height: 40px;
    cursor: default;
    opacity: 0.5;
}
.document-modes button i {
    font-size: 14px;
}
.document-modes button.active {
    opacity: 1;
    cursor: pointer;
}
.document-modes .vertical-divider {
    position: relative;
    display: inline-block;
    border-left: 1px solid rgba(255,255,255,0.2);
    width: 1px;
    height: 100%;
}

#partsList {
    margin:0 -10px;
}
#partsList .part, body > .ui-draggable-handle {
    display: inline-block;
    width:50px; height: 50px;
    margin:10px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    border:1px solid #efefef;
    border-radius: 4px;
    padding: 5px;
    padding-top: 50px;
    cursor: pointer;
}
#partsList .part .title, body > .ui-draggable-handle .title {
    text-align: center;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ui-draggable-handle {
    z-index: 10000;
}




.breadcrumbs {
    white-space: nowrap;
    font-weight: 400;
    color: #FFF;
}
.breadcrumbs > div {
    display: inline-block;
    padding:9px 5px;
}
.breadcrumbs .document-title {
    color: #efefef;
    cursor: pointer;
}