/* 
 * treeGrid.css
 *
 * Styles for the tree-grid
 * for both Bootstrap 2 and Bootstrap 3
 *
 */
.tree-grid-animate-enter,
.tree-grid-row.ng-enter {
  transition: 200ms linear all;
  position: relative;
  display: block;
  opacity: 0;
  max-height: 0;
}
.tree-grid.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 6px ;
  line-height: 1.42857143;
  vertical-align: center;
  border-top: 1px solid #EAEAEA;
  border-left: 1px solid #EAEAEA;
}
.possivel {
  border-bottom: 5px #3F7725 solid;
}
.nao-possivel {
  border-bottom: 5px #B52F3F solid;
}
.tree-grid-animate-enter.tree-grid-animate-enter-active,
.tree-grid-row.ng-enter-active {
  opacity: 1;
  max-height: 30px;
}
.tree-grid-animate-leave,
.tree-grid-row.ng-leave {
  transition: 200ms linear all;
  position: relative;
  display: block;
  height: 30px;
  max-height: 30px;
  opacity: 1;
}
.tree-grid-animate-leave.tree-grid-animate-leave-active,
.tree-grid-row.ng-leave-active {
  height: 0;
  max-height: 0;
  opacity: 0;
}
/*
 * Angular 1.2.0 Animation placeholders.
 */
/*
 * Normal CSS styles.
 */
.tree-grid i.indented {
  padding: 6px;
}
.tree-grid .tree-level-1 .indented {
  position: relative;
  left: 0;
  /*background-color: #fff;*/
}
.tree-grid .tree-level-2 .indented {
  position: relative;
  left: 30px;
  /*background-color: #EAEAEA;*/
}
.tree-grid .tree-level-3 .indented {
  position: relative;
  left: 60px;
}
.tree-grid .tree-level-4 .indented {
  position: relative;
  left: 90px;
}
.tree-grid .tree-level-5 .indented {
  position: relative;
  left: 120px;
}
.tree-grid .tree-icon,
.tree-label {
  cursor: pointer;
}
table.tree-grid {
  max-height: 500px;
  overflow-y: scroll;
}
.tree-level-1 {
  background-color: #fff !important;
}
.tree-level-2 {
  background-color: #f2f2f2 !important;
}
.tree-level-3 {
  background-color: #ffffe5 !important;
}
.tree-level-4 {
  background-color: #ffe5e5 !important;
}
