/**
 * Davacharts version 0.0.1
 *     by Arzidava AS
 *
 * License and info : www.arzidava.com
 **/
/**
 *	CHART
 *		Global Styles for the chart
 **/
.dvc-chart, .dvc-chart * {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

.dvc-chart {
  width: 100%;
  height: 100%;
}

/**
 *	PLOT
 *		Styles for the plot
 **/
.dvc-grid path {
  stroke: #C0C0C0;
  stroke-width: 0.5px;
}

/**
 *	SERIES
 *		
 **/
.dvc-series--line path[dvc-graph] {
  stroke-width: 1.5px;
  fill: transparent !important;
}

.dvc-series--area path[dvc-graph] {
  stroke-width: 1.5px;
  fill: transparent !important;
}
.dvc-series--area path[dvc-area] {
  stroke-width: 0px;
}

.dvc-series--column path[dvc-graph] {
  stroke-width: 1.5px;
  fill: transparent !important;
}
.dvc-series--column [dvc-area] {
  stroke-width: 0px;
}

[class*='dvc-series']:nth-of-type(6n + 0) {
  stroke: #389090;
  fill: #7ccccc;
}

[class*='dvc-series']:nth-of-type(6n + 1) {
  stroke: #F47E7D;
  fill: #fef3f3;
}

[class*='dvc-series']:nth-of-type(6n + 2) {
  stroke: #B5D045;
  fill: #ddeaab;
}

[class*='dvc-series']:nth-of-type(6n + 3) {
  stroke: #FB8335;
  fill: #fdd0b2;
}

[class*='dvc-series']:nth-of-type(6n + 4) {
  stroke: #81C0C5;
  fill: #d8eced;
}

[class*='dvc-series']:nth-of-type(6n + 5) {
  stroke: #E0C7A8;
  fill: white;
}
