.co-tree {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #262c33;
  border: 1px solid transparent;
}

.co-tree-treenode {
  position: relative;
  padding: 0;
  line-height: 29px;
  height: 29px;
  white-space: nowrap;
  list-style: none;
  outline: 0;
  border-top: 2px transparent solid;
  border-bottom: 2px transparent solid;
  user-select: none;
  cursor: pointer;
}

.co-tree-treenode:hover {
  background: #eee;
}

.drag-over {
  color: white;
  background-color: #99bcf5;
  opacity: 0.7;
}

.drag-over-gap-top {
  border-top-color: skyblue;
}

.drag-over-gap-bottom {
  border-bottom-color: skyblue;
}

.draggable {
  user-select: none;
}

/*Its for searchable tree table*/
.filter-node > .co-tree-node-content-wrapper {
  color: #a60000 !important;
  font-weight: bold !important;
}

.co-tree-node-content-wrapper {
  display: inline-flex;
  height: 25px;
  width: 180px;
  margin: 1px 2px;
  padding: 1px 0px;
  text-decoration: none;
  vertical-align: top;
  position: relative;
  left: 20px;
  top: -3px;
  cursor: pointer;
}

.co-tree-switcher,
.co-tree-iconEle {
  display: inline-flex;
  line-height: 16px;
  vertical-align: middle;
  border: 0 none;
  outline: none;
}

.co-tree-switcher {
  height: 21px;
  width: 18px;
  position: relative;
  left: 20px;
  top: -1px;
  margin: 3px 1px;
}

.co-tree-switcher-noop > svg {
  display: none;
}

/*open icon  => arrowdropdown*/
.co-tree-switcher_open {
  transform: rotate(90deg);
  transition: 0.2s linear;
}
/*close icon => arrowdropdown rotate*/
.co-tree-switcher_close {
  transition: 0.2s linear;
}

.co-tree-child-tree {
  display: none;
}
.co-tree-child-tree-open {
  display: block;
}

.co-tree-treenode-disabled > span:not(.co-tree-switcher),
.co-tree-treenode-disabled > a,
.co-tree-treenode-disabled > a span {
  color: #767676;
  cursor: not-allowed;
}
.co-tree-treenode-active {
  background: rgba(19, 18, 18, 0.1);
}
.co-tree-treenode-selected {
  background-color: #e6ecf1;
}

.co-tree-node-selected > .co-tree-title {
  font-weight: bold;
}

/*folder*/
.co-tree-icon,
.co-tree-icon_docu {
  font-size: 1.3rem;
  margin-bottom: 4px;
  padding: 2px 0;
  vertical-align: middle;
}

.co-tree-title {
  margin: 2px 4px;
  position: relative;
  top: -1px;
}

.co-tree-icon__customize {
  font-size: 1.3rem;
  padding: 2px 0;
  line-height: 29px;
}
.co-tree-indent-unit {
  display: inline-block;
  padding-left: 10px;
}
