.orgenesischart .chart-center {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 200px;
	height: 200px;
	transform: translate(-50%, -50%);
	border-radius: 100%;
	overflow: hidden;
	background: rgb(255,255,255);
	background: linear-gradient(121deg, rgba(255,255,255,1) 0%, rgba(219,225,228,1) 100%);
	opacity: 0;
	box-shadow: 0 0 30px rgba(0,0,0,0.5);
	transition: all 0.25s ease-out;
}
.orgenesischart .chart-center .chart-center__inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 200px;
	text-align: center;
	line-height: 200px;
	font-size: 50px;
	transition: all 0.25s ease-out;
}
.orgenesischart .chart-circle {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	will-change: transform;
	top: 0;
	left: 0;
}

.orgenesischart .chart-circle .chart-circle__inner {
	position: absolute;
	width: 100px;
	height: 100px;
	margin-left: -50px;
	margin-top: -50px;
	border-radius: 100%;
	overflow: hidden;
	background: rgb(255,255,255);
	background: linear-gradient(121deg, rgba(255,255,255,1) 0%, rgba(219,225,228,1) 100%);
	box-shadow: 0 0 30px rgba(0,0,0,0.25);
	text-align: center;
	line-height: 100px;
	font-size: 16px;
	will-change: transform;
	transition: all 0.25s ease-out;
}

.orgenesischart .chart-circle .chart-circle__inner:hover {
	transform: scale(1.2);
}

@media screen and (max-width: 1200px) {
	.orgenesischart .chart-center {
		width: 160px;
		height: 160px;
	}
	.orgenesischart .chart-center .chart-center__inner {
		height: 160px;
		line-height: 160px;
		font-size: 20px;
	}
}
@media screen and (max-width: 430px) {
	.orgenesischart .chart-center {
		width: 100px;
		height: 100px;
	}
	.orgenesischart .chart-center .chart-center__inner {
		height: 100px;
		line-height: 100px;
		font-size: 16px;
	}
	.orgenesischart .chart-circle .chart-circle__inner {
		width: 60px;
		height: 60px;
		margin-left: -30px;
		margin-top: -30px;
		line-height: 60px;
		font-size: 12px;
	}
}