﻿.tree-container {
    overflow-y: auto !important;
    overflow-x: auto !important;
    height: calc(100vh - 235px);
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    margin-left: -6px !important;
    padding-right: 12px !important;
}

.tree-btn-width {
    width: 94.5% !important;
    display: inline-block;
}

.tree-toggler > span {
    font-size: 0.5em;
    color: gray;
}

.tree-row {
    padding-top: 4px;
    padding-bottom: 4px;
    vertical-align: middle;
    line-height: normal;
}

.tree-btn {
    background-color: inherit;
}

.tree-selected {
    background-color: #C0CBCC;
    font-weight: bold;
}

.tree-item {
    padding-left: 6px;
    white-space: nowrap;
}

ul.tree {
    display: block;
}

li[aria-expanded=true] > .tree-row > .tree-toggler > .fa-caret-right {
    display: none;
}


li[aria-expanded=false] > .tree-row > .tree-toggler > .fa-caret-down {
    display: none;
}

/*sidebar*/

.treeSidePanel {
    height: 100%;
    max-height: 100%;
    position: fixed;
    top: 0;
    z-index: 9;
    -webkit-transition: left .3s ease;
    transition: left .3s ease;
}

    .treeSidePanel.toggleSidbar {
        left: 0px !important;
    }

.tree-lg {
    width: 480px;
    left: -480px;
}
.tree-sm {
    width: 380px;
    left: -380px;
}

.rightCanvasTree-lg {
    -webkit-transition: padding-left .3s ease;
    transition: padding-left .3s ease;
    padding-left: 30px;
}
    .rightCanvasTree-lg.toggleSidbar {
        padding-left: 480px;
    }

.rightCanvasTree-sm {
    -webkit-transition: padding-left .3s ease;
    transition: padding-left .3s ease;
    padding-left: 30px;
}
    .rightCanvasTree-sm.toggleSidbar {
        padding-left: 380px;
    }
#showTreeBtn {
    position: fixed;
    left: -8px;
    top: 68px;
    z-index: 8;
    padding-left: 16px;
    padding-right: 13px;
    -webkit-transition: left .3s ease;
    transition: left .3s ease;
    transition-delay: .4s;
}

    #showTreeBtn.toggleSidbar {
        left: -50px !important;
    }