/* disable text selection */
svg *::selection {
   background : transparent;
}

svg *::-moz-selection {
   background:transparent;
} 

svg *::-webkit-selection {
   background:transparent;
}
rect.selection {
  stroke          : #333;
  stroke-dasharray: 4px;
  stroke-opacity  : 0.5;
  fill            : transparent;
}

rect.cell-border {
  stroke: #000;
  stroke-width:0.3px;
}

rect.cell-hover {
  stroke: #F00;
  stroke-width:2px;
  cursor: pointer;
}

text.mono {
  font-family: 'Open Sans', Tahoma, Arial, sans-serif;
  font-size: 12px;
  fill: #333;
}

text.colLabelDesc {
  cursor: n-resize;
}
text.colLabelAsc {
  cursor: s-resize;
}
text.rowLabelDesc {
  cursor: w-resize;
}
text.rowLabelAsc {
  cursor: e-resize;
}


text.text-selected {
  fill: #000;
}

text.text-highlight {
  fill: #c00;
  font-size: 13px;
  font-weight: bold;
  background-color: #ccc;
}
text.text-hover {
  fill: #00C;
}
#tooltip {
  position: absolute;
  width: 200px;
  height: auto;
  padding: 10px;
  background-color: white;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

#tooltip.hidden {
  display: none;
}

#tooltip p {
  margin: 0;
  font-family: sans-serif;
  font-size: 12px;
  line-height: 20px;
}