/** Easy Tree style */
.tree {
    min-height: 20px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    color: #ebe9e9;
    border: none;
    border-top: none;
    padding-bottom: 15px;
}
.tree, .tree ul {
    margin:2.5;
    padding:3;
    list-style:none
}
.tree ul {
    margin-left:1.2em;
    position:relative
}
.tree ul ul {
    margin-left:2.2em
}
.tree > ul {
  margin-left:5 em;
  position:relative
}

.tree li {
  margin:1;
  padding:0 1em;
  line-height:2em;
  color:#369;
  font-weight:700;
  position:relative
}

.tree li::before, .tree li::after {
    content: '';
    left: -30px;
    position: absolute;
    right: auto
}

.tree li::before {
    border-left: 1px solid #000000;
    bottom: 50px;
    height: 100%;
    top: 0;
    width: 1px
}

.tree li::after {
    border-top: 1px solid #000000;
    height: 20px;
    top: 30px;
    width: 44px
}

.tree li > span {
    border: 1px solid #000000;
    border-radius: 5px !important;
    display: inline-block !important;
    padding: 2px !important;
    margin-top: 10px;
   margin-bottom: auto;
   /* margin-right: 150px; */
   /* margin-left: 80px; */
    text-decoration: none !important
}

.tree li.parent_li > span {
    cursor: pointer
}


.tree > ul > li::before, .tree > ul > li::after {
    border: 0
}

.tree li:last-child::before {
    height: 30px
}

.tree li.parent_li > span:hover, .tree li.parent_li > span:hover + ul li span {
    background: #ff6c60;
    color: #fff;
}

.tree li.parent_li > span:hover + ul li.li_selected span {
    background: #e5e2e1;
    color: #e56155;
}

.tree li > span > a {
    color: #fff;
    text-decoration: none;
}

.tree li > span > span.glyphicon-folder-close, .tree li > span > span.glyphicon-folder-open {
    margin-right: 5px;
}

.tree li.li_selected > span, .tree li.li_selected > span > a {
    background: #e5e2e1;
    color: #e56155;
}

.tree li.li_selected > span:hover, .tree li.li_selected > span:hover > a {
    background: #fafafa;
    color: #ff6c60;
}

.tree .tree-toolbar {
    background-color: #fff;
}

.tree .tree-toolbar > div {
    display: inline-block;
}

.tree .tree-toolbar > div > button {
    border-radius: 0;
    margin: 20px 5px;
}

.tree .tree-toolbar .create .input-group {
    top: -15px;
    margin-left: 5px;
    margin-right: 5px;
}

.tree .tree-toolbar .create .input-group input {
    border-radius: 0;
}

.tree .tree-toolbar .create .input-group button {
    border-radius: 0;
}
.tree ul:before {
    content:"";
    display:block;
    width:0;
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    border-left:1px
}
.tree li button, .tree li button:active, .tree li button:focus {
  text-decoration: none;
  color:#369;
  border:none;
  background:transparent;
  margin:0px 0px 0px 0px;
  padding:0px 0px 0px 0px;
  outline: 0;
}
.tree li {
  margin:0;
  top:0;
  bottom:0;
  left:0;
  padding:0 1em;
  line-height:2em;
  color:#369;
  font-weight:700;
  position:relative
}
