
.gcj-tree {
    color: rgba(0, 0, 0, 0.8);
    font-size: 14px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding: 5px 5px;
    overflow-y: auto;
    overflow-x: auto;
    border-right: 1px solid #F5F5F5;
    height: calc(100% - 40px);
    width: 100%;
    box-sizing: border-box;
    background-color: white;
}
/*    .gcj-tree::-webkit-scrollbar {
        width: 8px;
        height: 4px;
    }

    .gcj-tree::-webkit-scrollbar-thumb {
        border-radius: 10px;
        -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
        background: rgba(0,0,0,0.2);
    }

    .gcj-tree::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
        border-radius: 0;
        background: rgba(0,0,0,0.1);
    }*/
.gcj-tree > ul {
    margin: 0;
    padding: 0;
}
    .gcj-tree li:hover {
        background-color: white;
    }

.gcj-tree-node-parent {
    padding-left: 15px;
    list-style-type: none;
}

.gcj-tree-last-child > .gcj-tree-node-parent {
    background: none;
}

.gcj-tree-node {
    padding-left: 0px;
    user-select: none;
    list-style-type: none;
    position: relative;
    background-color: white;
}

    .gcj-tree-toggle-off {
        display: inline-block;
        width: 0;
        height: 0;
        border-left: 6px solid black;
        border-top: 4px solid black;
        border-bottom: 4px solid black;
        border-top-color: transparent;
        border-bottom-color: transparent;
        cursor: pointer;
    }

.gcj-tree-toggle-on {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 6px solid black;
    border-top: 4px solid black;
    border-bottom: 4px solid black;
    border-top-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(90deg);
    transform-origin: 25% 50%;
    cursor: pointer;

}

.gcj-tree-content {
    min-height: 23px;
    width: calc(100% - 25px);
    box-sizing: border-box;
    display: inline-block;
    border: 1px transparent solid;
    border-radius: 2px;

    cursor: pointer;
}
.gcj-tree-content-pad10 {
    margin-left: 10px;
}
.gcj-tree-content-selected {
    background: lightblue;
    border: 1px lightskyblue solid;
}
.gcj-tree-tri-container {
    width: 23px;
    height: 23px;
    display: inline-block;
    text-align: center;
}
.gcj-tree-content:hover {
    background: lightblue;
    border: 1px lightskyblue solid;
}
.gcj-tree-icon {
    position: relative;
    top: 1px;
}

.gcj-tree-text {
    padding-left: 0px;
    position: relative;
}

.gcj-tree-menu-container {
    position: absolute;
    display: block;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.7);
    z-index: 1999;
}

.gcj-tree-menu-parent {
    background: white;
    border-radius: 2px;
    padding: 5px 0px 5px 0px;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.3);
    list-style: none;
}

.gcj-tree-menu {
    height: 25px;
    padding-left: 5px;
    padding-right: 5px;
    user-select: none;
    display: grid;
    position: relative;
    grid-template-columns: 16px 60px 16px;
    grid-column-gap: 6px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.gcj-tree-menu:hover {
    background: lightskyblue;
}

.gcj-tree-menu > .gcj-tree-menu-parent {
    display: none;
    position: absolute;
    left: 204px;
    top: -5px;
}

.gcj-tree-menu:hover > .gcj-tree-menu-parent {
    display: block;
}

.gcj-tree-node-search {
    background-color: #20B2AA;
}