.ct-series-a .ct-line {
  /* Set the colour of this series line */
  stroke: red;
  /* Control the thikness of your lines */
  stroke-width: 5px;
  /* Create a dashed line with a pattern */
  /*stroke-dasharray: 10px 20px;*/
}

/* This selector overrides the points style on line charts. Points on line charts are actually just very short strokes. This allows you to customize even the point size in CSS */
.ct-series-a .ct-point {
  /* Colour of your points */
  stroke: black;
  /* Size of your points */
  stroke-width: 7px;
  /* Make your points appear as squares */
  /*stroke-linecap: square;*/
}

.ct-grids, .ct-line, .ct-point, .ct-label {
  transform: translate(-30px,0px);
}

.ct-chart-bets .ct-line {
	stroke: green;
}
.ct-chart-wins .ct-line {
	stroke: red;
}
.ct-chart-payins .ct-line {
	stroke: Blue;
}
.ct-chart-payouts .ct-line {
	stroke: Purple;
}
.ct-chart-profits .ct-line {
	stroke: Gold;
}
