/** Easy Tree style */


@media (min-width: 767px) {
  .easy-tree  ul {
    padding-inline-start: 71px;
  }
  .easy-tree li::after {
    width: 35px;
  }
  .easy-tree li::before, .easy-tree li::after {
    left: -30px;
  }
}

@media (max-width: 767px) {
  .easy-tree  ul {
    padding-inline-start: 20px;
  }
  .easy-tree li::after {
    width: 15px;
  }
  .easy-tree li::before, .easy-tree li::after {
    left: -10px;
  }
}




.node_ok {
    border: 1px solid green;
    background-color: #55FF55;
}

.node_fail {
    border: 1px solid gray;
    background-color: #FF8811;
}

.node_disable {
    border: 1px solid gray;
    background-color: #C0C0C0;
}

.node_nedef {
    border: 1px solid gray;
    background-color: rgb(255,255,102);
}

.node_bypass {
    border: 1px solid green;
    background-color: #55AA55;
}






.easy-tree {
    min-height: 20px;
    margin-bottom: 20px;
    //background-color: #EEEEEE;
    color: #000;
    border: none;
    border-top: none;
    padding-bottom: 15px;    
}


.easy-tree > ul {
    padding-left: 0px;
}

.easy-tree li {
    list-style-type: none;
    margin: 0;
    padding: 6px 5px 0 5px;
    position: relative;
}

.easy-tree li::before, .easy-tree li::after {
    content: '';
    //left: -30px;
    position: absolute;
    right: auto
}

.easy-tree li::before {
    border-left: 1px solid #000;
    bottom: 50px;
    height: 100%;
    top: 0;
    width: 1px
}

.easy-tree li::after {
    border-top: 1px solid #000;
    height: 20px;
    top: 17px;
    //width: 35px;
}

.easy-tree li > span {
    display: inline-block;
    padding: 0px 4px 2px 4px;
    text-decoration: none;
    width: 120px;
    font-size: 0.9em;
    font-family: calibri;
}




.easy-tree li.parent_li > span {
    cursor: pointer
}


.easy-tree > ul > li::before, .easy-tree > ul > li::after {
    border: 0
}

.easy-tree li:last-child::before {
    height: 17px
}

.easy-tree li.parent_li > span:hover, .easy-tree li.parent_li > span:hover + ul li span {
    background: rgb(102,204,255);
    color: #000;
}

.easy-tree li.parent_li > span:hover + ul li.li_selected span {
    background: #e5e2e1;
    color: #e56155;
}

.easy-tree li > span > a {
    color: #000;
    text-decoration: none;
    font-size: 0.95em;
}

.easy-tree li > span > span.glyphicon-folder-close, .easy-tree li > span > span.glyphicon-folder-open {
    margin-right: 5px;
}

.easy-tree li.li_selected > span, .easy-tree li.li_selected > span > a {
    background: #e5e2e1;
    color: #e56155;
}

.easy-tree li.li_selected > span:hover, .easy-tree li.li_selected > span:hover > a {
    background: #fafafa;
    color: #ff6c60;
}

.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;
}
