/* Styles unique to this application */

.transition {
   -webkit-transition: all 1s ease-in-out;
   -moz-transition: all 1s ease-in-out;
   -o-transition: all 1s ease-in-out;
   transition: all 1s ease-in-out;
 }

 .history_chart {
 }
 
 .history_chart .ct-series-a .ct-line,
 .history_chart .ct-series-a .ct-point {
    /* Set the colour of this series line */
    stroke: #6d5bca !important;
    /* Control the thickness of your lines */
    stroke-width: 5px !important;
}
 
.history_chart .ct-series-b .ct-line,
.history_chart .ct-series-b .ct-point {
    /* Set the colour of this series line */
    stroke: #7998B6 !important;
    /* Control the thickness of your lines */
    stroke-width: 3px !important;
    opacity: 100%;
 }
 
 .history_chart .ct-series-c .ct-line,
 .history_chart .ct-series-c .ct-point {
     /* Set the colour of this series line */
     stroke: #E3E1E7 !important;
     /* Control the thickness of your lines */
     stroke-width: 2px !important;
     opacity: 80%;
  }