/* Basic styling */
/* Draw the lines */

table{
  border-collapse: inherit;
}

.jOrgChart .line {
  height                : 20px;
  width                 : 3px;
}

.jOrgChart .down {
  background-color 		: var(--blue);	
  margin 				: 0px auto;
}

.jOrgChart .top {
  border-top          : 2px solid var(--blue);
}

.jOrgChart .left {
  border-right          : 1.5px solid var(--blue);
}

.jOrgChart .right {
  border-left           : 1.5px solid var(--blue);
}

/* node cell */
.jOrgChart td {
  text-align            : center;
  vertical-align        : top;
  padding               : 0;
}

/* The node */
.jOrgChart .node {
  background-color 		: #35363B;
  display               : inline-block;
  width                 : 65px;
  /* height                : 78px; */
  z-index 				     : 10;
  margin               : 0 2px;
  word-break:break-all;
}

/* jQuery drag 'n drop */

.drag-active {
  border-style			: dotted !important;
}

.drop-hover {
  border-style			: solid !important;
  border-color 			: #E05E00 !important;
}

