body {
  margin: 0;
  background: white;
}

#chart_div svg {
  /* Background Color */
  /* Chart Settings */
  /* Arrows */
  /* Shadow */
  /* Bars */
  /* Percent Complete */
  /* Side Labels */
  /* Tooltips */
}
#chart_div svg g:nth-child(2) rect {
  fill: transparent;
}
#chart_div svg g:nth-child(3) {
  /* Rows Odd */
  /* Rows Even */
}
#chart_div svg g:nth-child(3) rect:nth-child(odd) {
  fill: rgba(0, 0, 0, 0.1);
}
#chart_div svg g:nth-child(3) rect:nth-child(even) {
  fill: transparent;
}
#chart_div svg g:nth-child(3) text {
  /* Hotizontal Labels */
  fill: black;
  font-family: 'Open Sans' !important;
  font-weight: normal !important;
}
#chart_div svg g:nth-child(3) line {
  /* Row Lines */
  stroke: transparent;
  stroke-width: 0;
}
#chart_div svg g:nth-child(4) path {
  stroke-width: 1;
  stroke: black;
}
#chart_div svg g:nth-child(6) rect {
  fill: black;
}
#chart_div svg g:nth-child(8) path {
  fill: rgba(0, 0, 0, 0.2);
}
#chart_div svg g:nth-child(9) text {
  fill: black;
}
#chart_div svg g:nth-child(10) text {
  fill: rgba(0, 0, 0, 0.6);
  font-family: 'Open Sans' !important;
}
#chart_div svg g:nth-child(10) text:nth-child(2) {
  /* Date */
  fill: black;
}
