/*
 * Pie Chart / Bar Chart
 */
.chartselementor-chart-item-container.hidden {
	display:none;
}
.chartselementor-chart-container {
	text-align:center;
}
.chartselementor-chart {
	position: relative;
	display: block;
	margin-top: 50px;
	margin-bottom: 20px;
	text-align: center;
	opacity:1;
	margin-left: auto;
	margin-right: auto;  
}
.chartselementor-chart canvas {
	position: absolute;
	top: 0;
	left: 0;
}
.chartselementor-percent {
	display: inline-block;
	z-index: 2;
	font-size:30px;
}
.chartselementor-percent:after {
	content: '%';
	margin-left: 0.1em;
	font-size: .8em;
}
/* BAR CHARTS */
.chartselementor-bar-main-container {
	margin: 10px auto;
	height: 50px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	font-family: sans-serif;
	font-weight: normal;
	font-size: 0.8em;
	color: #FFF;
}
.chartselementor-bar-chart-style1 .chartselementor-bar-percentage {
    background: none repeat scroll 0 0 #2E5C89;
    border-radius: 5px 0 0 5px;
    float: left;
    font-size: 16px;
    height: 30px;
    padding: 8px 0;
    width: 18%;
	text-align:center;
	line-height:1;
}
.chartselementor-bar-chart-style1 .chartselementor-bar {
    border-radius: 0 5px 5px 0;
    float: left;
    height: 100%;
    opacity: 1;
}
.chartselementor-bar-chart-style1 .chartselementor-bar-container {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.13);
    border-radius: 0 5px 5px 0;
    float: right;
    height: 30px;
    overflow: hidden;
    width: 82%;
}
.chartselementor-bar-chart-style2 .chartselementor-bar-percentage {
    float: left;
    font-size: 20px;
    width: 18%;
	text-align:center;
}
.chartselementor-bar-main-container.chartselementor-bar-chart-style2 .chartselementor-bar-chart-wrap {
	display: flex;
    justify-items: center;
    align-items: center;
}
.chartselementor-bar-chart-style2 .chartselementor-bar-container {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.13);
    border-radius: 10px;
    box-shadow: 0 0 2px #555555 inset;
    float: right;
    height: 10px;
    overflow: hidden;
    width: 82%;
}
.chartselementor-bar-chart-style2 .chartselementor-bar {
    border-radius: 10px;
    float: left;
    height: 100%;
    opacity: 1;
}
@media only screen and (max-width: 480px) {
	.chartselementor_pie_chart_responsive .chartselementor-chart {
		width:300px!important;
		height:300px!important;
	}
	.chartselementor_pie_chart_responsive .chartselementor-percent {
		line-height:300px!important;
	}
	.chartselementor_pie_chart_responsive .chartselementor-chart canvas {
		max-width:100%;
	}
} 