.ct-slice-pie {
	stroke: white;
	stroke-width: 2px;
}
.chartist {
	position: relative;
}
.ct-label {
	font-size: 12px; 
}
.ct-grid {
	stroke: #dce4ee;
	stroke-width: 1px;
	stroke-dasharray: 2px;
}
.ct-point {
	stroke-width: 8px;
	stroke-linecap: round;
}
.ct-line {
	fill: none;
	stroke-width: 2px;
}
.ct-area {
	stroke: none;
	fill-opacity: 1;
}
.ct-bar {
	fill: none;
	stroke-width: 8px;
}
.ct-slice-donut {
	fill: none;
	stroke-width: 60px;
}


/* Tooltip */
.chartist-tooltip {
	position: absolute;
	display: block;
	min-width: 90px;
	padding: 15px;
	opacity: 0;
	background: #0079e1;
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	pointer-events: none;
	z-index: 1000;
	-webkit-transition: opacity .2s linear;
	-moz-transition: opacity .2s linear;
	-o-transition: opacity .2s linear;
	transition: opacity .2s linear
}
.chartist-tooltip:before {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	width: 0;
	height: 0;
	margin-left: -15px;
	border: 15px solid transparent;
	border-top-color: #0079e1
}
.chartist-tooltip.tooltip-show {
	opacity: 1
}

/* Custom graph colors */
.custom-one .chartist-tooltip {
	background: #ff3e61;
}
.custom-one .chartist-tooltip:before {
	border-top-color: #ff3e61
}

/* Custom Bar/LIne/Point/Slice Donut Chart */

/****** Custom One ******/
.custom-one .ct-series-a .ct-bar,
.custom-one .ct-series-a .ct-line,
.custom-one .ct-series-a .ct-point,
.custom-one .ct-series-a .ct-slice-donut {
	stroke: #ff3e61;
}
.custom-one .ct-series-b .ct-bar,
.custom-one .ct-series-b .ct-line,
.custom-one .ct-series-b .ct-point,
.custom-one .ct-series-b .ct-slice-donut {
	stroke: #0079e1;
}
.custom-one .ct-series-c .ct-bar,
.custom-one .ct-series-c .ct-line,
.custom-one .ct-series-c .ct-point,
.custom-one .ct-series-c .ct-slice-donut {
	stroke: #ffbf05;
}
/****** Custom Two ******/
.custom-two .ct-series-a .ct-bar,
.custom-two .ct-series-a .ct-line,
.custom-two .ct-series-a .ct-point,
.custom-two .ct-series-a .ct-slice-donut {
	stroke: #0079e1;
}
.custom-two .ct-series-b .ct-bar,
.custom-two .ct-series-b .ct-line,
.custom-two .ct-series-b .ct-point,
.custom-two .ct-series-b .ct-slice-donut {
	stroke: #ec393b;
}
.custom-two .ct-series-c .ct-bar,
.custom-two .ct-series-c .ct-line,
.custom-two .ct-series-c .ct-point,
.custom-two .ct-series-c .ct-slice-donut {
	stroke: #fec012;
}
.custom-two .ct-series-d .ct-bar,
.custom-two .ct-series-d .ct-line,
.custom-two .ct-series-d .ct-point,
.custom-two .ct-series-d .ct-slice-donut {
	stroke: #ff5661;
}
/****** Custom Three ******/
.custom-three .ct-series-a .ct-bar,
.custom-three .ct-series-a .ct-line,
.custom-three .ct-series-a .ct-point,
.custom-three .ct-series-a .ct-slice-donut {
	stroke: #ffffff;
}
/****** Custom Three ******/
.custom-four .ct-series-a .ct-bar,
.custom-four .ct-series-a .ct-line,
.custom-four .ct-series-a .ct-point,
.custom-four .ct-series-a .ct-slice-donut {
	stroke: #0079e1;
}


/* Custom Area/Slice Pie Chart */
.custom-one .ct-series-a .ct-area,
.custom-one .ct-series-a .ct-slice-pie {
	fill: #ff3e61;
}

.custom-two .ct-series-a .ct-area,
.custom-two .ct-series-a .ct-slice-pie {
	fill: #f5f6fa;
}
.custom-two .ct-series-b .ct-area,
.custom-two .ct-series-b .ct-slice-pie {
	fill: #0079e1;
}

/* Custom Bar Color Theme */
.chartist-custom-bar .ct-series-a .ct-bar {
	stroke: #0079e1;
}
.chartist-custom-bar .ct-series-b .ct-bar {
	stroke: #2798f7;
}
.chartist-custom-bar .ct-series-c .ct-bar {
	stroke: #6bbbff;
}