/*
 @preserve
 bstreeview.css
 Version: 1.2.0
 Authors: Sami CHNITER <sami.chniter@gmail.com>
 Copyright 2020
 License: Apache License 2.0
 Project: https://github.com/chniter/bstreeview
*/
.bstreeview {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
    padding: 0;
    overflow: hidden;
}

    .bstreeview .list-group {
        margin-bottom: 0;
    }

    .bstreeview .list-group-item {
        border-radius: 0;
        border-width: 1px 0 0 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        cursor: pointer;
    }

        .bstreeview .list-group-item:hover {
            background-color: #dee2e6;
        }

    .bstreeview > .list-group-item:first-child {
        border-top-width: 0;
    }

    .bstreeview .list-group-item.active
    {
        background-color: #dee2e6;
        font-weight: bold;
    }

    .bstreeview .state-icon {
        margin-left: 8px;
        width: 12px;
        text-align: center;
    }

    .bstreeview .item-icon {
        margin-right: 5px;
    }
