 

.easy-tree {
    margin-left: 0;
    text-align: left;
}

.easy-tree ul li {
    text-align: left;
    position: relative;
    margin-top: 11px;
}
.easy-tree ul li:before {
    content: '';
    left: 9px;
    position: absolute;
    right: auto;
    border-left: 1px solid #0c0c0c;
    bottom: 36px;
    height: 99%;
    height: calc(100% - 11px);
    top: 0px;
    width: 11px;
    }
.easy-tree ul li:after {
        border-top: 1px solid #0c0c0c;
        height: 74px;
        top: 30px;
        width: 61px;
        content: '';
        left: -73px;
        position: absolute;
        right: auto;
    }


.easy-tree a {
    display: block;
    position: relative;
    padding: 4px 10px;
    border: solid 1px #313030;
    border-radius: 2px;
    color: #000;
    text-decoration: none;
    line-height: 1;
    z-index: 2;
    margin-left: -19px;
    background: #fff;
    width: 200px;
    font-family: "Roboto Condensed",sans-serif;
}

.easy-tree a > img {
    display: block;
    position: absolute;
    right: -51px;
    /* display: none; */
    top: -13px;
    width: 60px;
    opacity: 0;
    z-index: 6;
    border: solid 1px #444;
    box-shadow: 0 2px 5px #00000047;
}

.easy-tree a:hover img {
    display: block;
    transition: all .3s;
    opacity: 1;
}
