@charset "utf-8";
/* 트리전체 */
#tree {
    font-size: 0.77rem;
    position: fixed;
    z-index: 99999;
    height: 100vh;
    white-space: nowrap;
    display: flex;
    flex-flow: column;
    vertical-align: top;
    transition: 0.2s;
    overflow-y:scroll;
    background-color: #003876;
    width:15%;
    min-width:250px;
}
/* 트리머리 */ 
#tree-handle {
    width: 100%;
    line-height: 65px;
    font-size: 1.5em;
    display: inline-block;
    color: white;
    text-align:center;
    font-weight: bold;
    margin: 5% auto
}
#tree-handle .hnadle1, #tree-handle .handle3{
    opacity:60%;
    margin: -3% auto;
}
.hnadle1{
    font-size:1.5rem;
    font-family: cursive;
}
.hnadle1 span {
    font-size:0.9rem;
    font-family: math;
}
.handle-logo{
    width: 50%;
    margin: -5% auto;
}
.handle3 a{
    color:white;
    font-size:0.9rem;
}
/* 트리바디 */ 
#tree-body {
    top: 0;
    display: inline-block;
    xheight: 100%;
    width: 100%;
    overflow-y: scroll;
    font-family: unset;
}
/* 바디 리스트 아이콘 */ 
.icon.expand-icon.glyphicon.glyphicon-minus{
    margin-right: 0;
       vertical-align: text-bottom;
}
.icon.expand-icon.glyphicon.glyphicon-minus img{
    width:8%;
    opacity: 80%;
}
/* 바디 리스트 */
.list-group-item,.list-group-item{
    font-weight: bold;
    font-size:0.8rem
}
.list-group-item a{
    font-weight: 500;
    font-size:0.8rem;
    text-decoration: none !important;
}
.list-group-item a:after{
    content:none !important;
}
#tree::-webkit-scrollbar{
    display: none;
}
/* 트리 스크롤바 이벤트 */
#tree-body::-webkit-scrollbar{
    width: 10px;
}
#tree-body::-webkit-scrollbar-thumb{
    background-color: #777;
    background-clip: padding-box;
    border: 2px solid transparent;
}
#tree-body::-webkit-scrollbar-track{
    background-color: #ddd;
    box-shadow: inset 0px 0px 5px white;
}

@media(max-width:1300px){
    #tree{
        min-width:210px;
    }
}