/* pixl-chart source stylesheet */
/* NOT FOR DISTRIBUTION: You do NOT need this file if you use chart.min.js */

.pxc_tt_overlay {
	position: absolute;
	z-index: 2;
}

.pxc_tooltip, .pxc_line, .pxc_tt_point {
	position: absolute;
	z-index: 1;
}

.pxc_smooth {
	transition: all 0.1s ease-in-out;
}

.pxc_line {
	width: 0px;
	border-left: 2px dashed rgb(255, 255, 255);
}

.pxc_tt_content {
	display: inline-block;
	border-radius: 5px;
	background-color: rgba(0, 0, 0, 1.0);
	border: 1px solid rgb(110, 110, 110);
	box-shadow: none;
}

.pxc_tt_timestamp {
	padding: 5px 8px 4px 8px;
	background-color: #222;
	border-bottom: 1px solid #333;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}

.pxc_tt_table {
	margin: 5px 6px 5px 6px;
}

.pxc_tt_dot {
	width: 10px;
	height: 10px;
	border-radius: 5px;
	margin-top: 0px;
}

.pxc_tt_title {
	font-weight: bold;
}

.pxc_tt_value {
	margin-left: 10px;
	text-align: right;
}

.pxc_tt_point {
	border-color: rgb(255, 255, 255);
	border-style: solid;
}
.container-graph {
	position: relative;
	height: 400px;
	margin: 0 auto;
	border-radius: 6px;
	padding: 10px;
	margin-top: 10px;
}
.chart {
	width: 100%;
	height: 100%;
	transition: all 2s ease-in-out;
}