/** Easy Tree style */
.easy-tree {
    min-height: 40px;
    margin-bottom: 40px;
    background-color: #ffffff;
    color: #828282;
    border: none;
    border-top: none;
    padding-bottom: 15px;
}

    .easy-tree > ul {
        padding-left: 15px;
    }

    .easy-tree li {
        list-style-type: none;
        margin: 0;
        padding: 10px 10px 0 5px;
        position: relative
    }

        .easy-tree li::before, .easy-tree li::after {
            content: '';
            left: 27px;
            position: absolute;
            right: auto
        }

        .easy-tree li::before {
            border-left: 2px dashed #828282;
            bottom: 50px;
            height: 100%;
            top: 0;
            width: 1px
        }

        .easy-tree li::after {
            border-bottom: 2px dashed #828282;
            height: 9px;
            top: 22px;
            width: 35px;
            border-bottom-left-radius: 29px;
        }

        .easy-tree li > span {
            /* border: 1px solid #828282; */
            border-radius: 10px;
            display: inline-block;
            width: 210px;
            padding: 1px 3px;
            background: #ebebeb;
            text-decoration: none
        }

        .easy-tree li.parent_li > span {
            cursor: pointer
        }
        .easy-tree li.parent_li > ul>li>span {
            position: relative;
            left: 57px;
        }


    .easy-tree > ul > li::before, .easy-tree > ul > li::after {
        border: 0
    }

    .easy-tree li:last-child::before {
        height: 25px;
    }

    .easy-tree li > span:hover {
        background: #cbc8c8;
    }

 
.easy-tree li.parent_li > span:hover + ul li.li_selected span {
    background: blue;
    /*        background: #e5e2e1;*/
}

    .easy-tree li > span > a {
        color: #828282;
        text-decoration: none;
    }

    .easy-tree li > span > span.glyphicon-folder-close, .easy-tree li > span > span.glyphicon-folder-open {
        margin: 0px 5px;
    }

    .easy-tree li.li_selected > span, .easy-tree li.li_selected > span > a {
        background: #e5e2e1;
        ;
    }

.main-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 15px;
}
    }

    .easy-tree .easy-tree-toolbar {
        background-color: #fff;
    }

        .easy-tree .easy-tree-toolbar > div {
            display: inline-block;
        }

            .easy-tree .easy-tree-toolbar > div > button {
                border-radius: 0;
                margin: 20px 5px;
            }

        .easy-tree .easy-tree-toolbar .create .input-group {
            top: -15px;
            margin-left: 5px;
            margin-right: 5px;
        }

            .easy-tree .easy-tree-toolbar .create .input-group input {
                border-radius: 0;
            }

            .easy-tree .easy-tree-toolbar .create .input-group button {
                border-radius: 0;
            }

    .easy-tree li > span > span {
        margin: 0px 5px;
    }

/*    .easy-tree li > span > div {
        display: inline-block;
        font-size: small;
    }*/

    .easy-tree li > span {
        cursor: pointer;
    }
