@charset "UTF-8";
.num-percent {
		text-transform: capitalize;
		position: relative;
		font-size: 18.96px;
		height: 8.958em;
		background: var(--white);
		width: 100%;
		flex: 0 0 auto;
		color: var(--black);
		line-height: 1.2;
		padding: 5.458333em 0 0.833333em 1.25em;
		border-radius: 10px;
}
.num-percent.dark {
		background-color: var(--dark);
		color: var(--white);
}
.num-percent:after {
		content: '';
		position: absolute;
		top: 0.833333em;
		left: 0.833333em;
		width: 1.666666em;
		height: 1.666666em;
		border-radius: 50%;
		background: var(--green) url("../img/arrows-up.svg") no-repeat 50% 50%;
		background-size: 35% auto;
}
.num-percent strong {
		font-weight: normal;
		font-size: 1.833333em;
		line-height: 1.2;
		white-space: nowrap;
		position: absolute;
		top: 50%;
		right: 1.6363em;
		transform: translate3d(0, -50%, 0);
		z-index: 2;
}
.num-percent .circle {
		position: absolute;
		width: 6.666666em;
		height: 6.666666em;
		top: 50%;
		right: 1.25em;
		border-radius: 50%;
		transform: translate3d(0, -50%, 0);
}
.num-percent .circle .numbers {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		text-align: right;
		padding-right: 6.75em;
		font-weight: normal;
		font-size: 0.583em;
		line-height: 1.4;
		color: var(--blackgrey);
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		margin: -0.285em 0;
}
.num-percent.dark .circle .numbers {
		color: var(--lightgrey);
}
.num-percent .circle .numbers:before {
		content: attr(data-top);
}
.num-percent .circle .numbers:after {
		content: attr(data-bottom);
}
.num-percent .circle-inner {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		border-radius: 50%;
		box-shadow: inset 0 0 0 0.458333em var(--body);
		clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
		backface-visibility: hidden;
}
.num-percent.dark .circle-inner {
		box-shadow: inset 0 0 0 0.458333em rgba(239, 239, 239, 0.2);
}
.num-percent .circle .line, .num-percent .circle .point {
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		border-radius: 50%;
}
.num-percent .circle .line {
		background: linear-gradient(to bottom, #FF487F 5.94%, #FFEC40 48.9%, #31D974 100%);
		clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
		backface-visibility: hidden;
		will-change: transform;
}
.num-percent .circle .line:before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		margin: 0.458333em;
		background: var(--white);
		border-radius: 50%;
}
.num-percent.dark .circle .line:before {
		background: var(--dark);
}
.num-percent .circle .point:before, .num-percent .circle .point:after {
		content: '';
		width: 0.166666em;
		height: 0.66666em;
		position: absolute;
		top: -0.0833333em;
		background: var(--black);
}
.num-percent.dark .circle .point:before, .num-percent.dark .circle .point:after {
		background-color: var(--white);
}
.num-percent .circle .point:before {
		right: 50%;
		clip-path: polygon(0 0, 100% 0, 100% 100%, 60% 100%);
}
.num-percent .circle .point:after {
		left: 50%;
		clip-path: polygon(0 0, 100% 0, 30% 100%, 0 100%);
}
.num-percent .circle .line, .num-percent .circle .point {
		transition: transform 1.5s var(--move-timing);
		transform: rotate(180deg);
}
.num-percent.visible .circle .line, .num-percent.visible .circle .point {
		transform: rotate(21deg);
}
@media only screen and (min-width: 1024px) {
		.num-percent {
				font-size: 24px;
		}
}
.num-percent-lines {
		padding-top: 1.291em;
		padding-left: 2.916em;
}
.num-percent-lines .txt {
		font-size: 0.75em;
		line-height: 1.2;
		font-weight: normal;
		vertical-align: top;
}
.num-percent .lines {
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		margin: 0.833333em;
		display: flex;
		gap: 0.416666em;
		align-items: flex-end;
}
.num-percent .lines > * {
		flex: 1;
		position: relative;
		border-radius: 0.375em;
		min-height: 0.75em;
		height: 0.75em;
		backface-visibility: hidden;
		transition: height 1.5s var(--move-timing);
}
.num-percent .lines .grey {
		background: repeating-linear-gradient(-45deg, #D9D9D9, #D9D9D9 10px, var(--body) 10px, var(--body) 20px);
}
.num-percent .lines .green {
		background: var(--green);
}
.num-percent.visible .lines > *:nth-child(1) {
		height: 17.142%;
}
.num-percent.visible .lines > *:nth-child(2) {
		height: 31.43%;
}
.num-percent.visible .lines > *:nth-child(3) {
		height: 43.43%;
}
.num-percent.visible .lines > *:nth-child(4) {
		height: 72%;
}
.num-percent .lines > *:before {
		content: attr(data-text);
		position: absolute;
		bottom: 100%;
		left: 50%;
		transform: translate3d(-50%, 0, 0);
		white-space: nowrap;
		font-weight: normal;
		line-height: 1.4;
		font-size: 0.583em;
}