
/*------------------------------------------------------------*/
/*------------ Customization of Rectangle Nodes --------------*/
/*------------------------------------------------------------*/
.node-rect {
  cursor			: move !important; 		/* Cursor changes its form */
  fill-opacity	: 0.6 !important; 			/* Opacity of rectangle node color. Recall colors are defined in json-like graph */
  shape-rendering	: crispEdges !important;
}
.node-text {
  pointer-events	: none !important;
  text-shadow		: none !important;
}

/*------------------------------------------------------------*/
/*----Changing style of node while hovering over it ----------*/
/*------------------------------------------------------------*/
/* define if when hovering the color is lighter or stronger */
.node-rect{
  fill-opacity	: 0.8;
}

/*------------------------------------------------------------*/
/*------------------ Customization of sankey-links ------------------*/
/*------------------------------------------------------------*/
.sankey-link {
    opacity:0.7 !important;
}

/*------------------------------------------------------------*/
/*------ Changing style of sankey-link while hovering over it -------*/
/*------------------------------------------------------------*/
/* define if when hovering the color is lighter or stronger */
.sankey-link:hover {
  stroke-opacity	: 0.8 !important;
}
/*------------------------------------------------------------*/
/*------------------------------------------------------------*/
