.chart-block{

	position: relative;

}

.chart-block .item_bar {

	position: relative;

	height: 10px;

	width: 100%;

	background-color: #363c43;

	border-radius: 4px;

}

/*

.chart-block .progress{

	background-color: #363c43;

	height:0.3em;

}

*/

.chart-block .item_bar .progress {

	position: absolute;

	left: 0;

	top: 0;

	bottom: 0;

	width: 0;

	height: 10px;

	margin: 0;

	background-color: var(--main-color);

	border-radius: 4px;

	transition: width 100ms ease;

}

.chart-block .progress-bar{

	background-color: #c4ff68;

}

.chart-block .left{

	border-right: 1px solid #6d6e711c;

}

.chart-block .bar-group{

	width: 100%;

	height: 90px;

	display: flex;

	flex-direction: column;

	justify-content: center;

	padding-top: 20px;

	padding-bottom: 10px;

	padding-right: 20%;

}

.chart-block .bar-group:last-child{

	border: none;

}

.chart-block .bar-group .bar{

	margin-bottom: 10px;

}

.chart-block .bar-group .bar-text{

	display: flex;

	justify-content: space-between;

	color: var(--bark-color);

}

.chart-block .bar-group .bar-text p{

	margin: 0;

}

.chart-block .bar-group .bar-text .b-number{

	font-weight: 700;

}

.chart-block .right{

	display: flex;

	justify-content: center;

	flex-direction: column;

}

.chart-block .right img{

	margin-top: 80px;

	position: relative;

	width: 60%;

}

.chart-block .right ul{

	width: 40%;

	margin: 60px auto;

	list-style: disc;

}

.chart-block .right ul li::marker {

	color: var(--main-color);

	font-size: 2em;

}

.chart-block .right ul li{

	line-height:1;

	color: var(--dark-color);

	font-size: 18px;

}

.chart-block .right ul li:nth-child(2)::marker {

	color: var(--main-light-color);

}

.chart-block .right ul li:nth-child(3)::marker {

	color: var(--primary-color);

}

.chart-block.animated .img-wrap img{

	animation-name: rotate;

	animation-duration: 1.5s;

	animation-direction: normal;

}

@keyframes rotate {

	0% {

		transform: rotate(0);

	}

	100% {

		transform: rotate(360deg);

	}

}

body.home .chart-block .cs-section_heading.cs-style1 .cs-section_title{

	font-size: 28px;

}