/* Use this selector to override bar styles on bar charts. Bars are also strokes so you have maximum freedom in styling them. */
.ct-series-a .ct-bar {
  /* Colour of your bars */
  stroke: #00305A;
  /* The width of your bars */
  stroke-width: 50px;
}

.ct-series-a .ct-slice-pie {
  /* fill of the pie slieces */
  fill: #00305A;
  /* give your pie slices some outline or separate them visually by using the background color here */
  stroke: white;
  /* outline width */
  stroke-width: 4px;
}

.ct-series-b .ct-bar {
  /* Colour of your bars */
  stroke: #2172ba;
  /* The width of your bars */
  stroke-width: 50px;
}

.ct-series-b .ct-slice-pie {
  /* fill of the pie slieces */
  fill: #2172ba;
  /* give your pie slices some outline or separate them visually by using the background color here */
  stroke: white;
  /* outline width */
  stroke-width: 4px;
}

.ct-series-c .ct-bar {
  /* Colour of your bars */
  stroke: #04BFBF;
  /* The width of your bars */
  stroke-width: 50px;
}

.ct-series-c .ct-slice-pie {
  /* fill of the pie slieces */
  fill: #04BFBF;
  /* give your pie slices some outline or separate them visually by using the background color here */
  stroke: white;
  /* outline width */
  stroke-width: 4px;
}

/* CSS for legend plugin */
.ct-legend {
  position: relative;
  z-index: 10;
  list-style: none;
  text-align: center;
}
.ct-legend li {
  position: relative;
  padding-left: 23px;
  margin-right: 10px;
  margin-bottom: 3px;
  cursor: pointer;
  display: inline-block;
}
.ct-legend li:before {
  width: 12px;
  height: 12px;
  position: absolute;
  left: 0;
  content: '';
  border: 3px solid transparent;
  border-radius: 2px;
}
.ct-legend li.inactive:before {
  background: transparent;
}
.ct-legend.ct-legend-inside {
  /* position: absolute; */
  top: 0;
  right: 0;
}
/*
.ct-legend.ct-legend-inside li{
  display: block;
  margin: 0;
}
*/
.ct-legend .ct-series-0:before {
  background-color: #00305A;
  border-color: #00305A;
}
.ct-legend .ct-series-1:before {
  background-color: #2172ba;
  border-color: #2172ba;
}
.ct-legend .ct-series-2:before {
  background-color: #04BFBF;
  border-color: #04BFBF;
}
.ct-legend .ct-series-3:before {
  background-color: #d17905;
  border-color: #d17905;
}
.ct-legend .ct-series-4:before {
  background-color: #453d3f;
  border-color: #453d3f;
}
