#SkillBar {
	font-family: "Poppins", sans-serif;
	position: relative;
	width: 380px;
}
#SkillBar .skills {
	position: relative;
	display: flex;
	margin: 12px 0;
	padding: 24px 10px 18px;
	background: linear-gradient(#616161 0%, #333 10%, #222);
	border-radius: 8px;
	overflow: hidden;
	border: 2px solid #000;
	transition: 0.5s;
}
#SkillBar:hover .skills {
	opacity: 0.05;
}
#SkillBar .skills:hover {
	opacity: 1;
	transform: scale(1.1);
}
#SkillBar .skills::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: rgb(255 255 255 / 10%);
	z-index: 10;
}
#SkillBar .skills .name {
	position: relative;
	width: 100px;
	text-align: right;
	color: #fff;
	margin-top: -2px;
}
#SkillBar .skills .value {
	position: relative;
	width: 40px;
	text-align: left;
	color: #fff;
	margin-top: -2px;
}
#SkillBar .skills .percent {
	position: relative;
	width: calc(100% - 140px);
	height: 20px;
	margin: 0 10px;
	border-radius: 10px;
	background: #151515;
	box-shadow: inset 0 0 10px #000;
	overflow: hidden;
}
#SkillBar .skills .percent .progress {
	position: absolute;
	top: 0;
	left: 0;
	width: var(--i);
	height: 100%;
	border-radius: 10px;
	background: #fff;
	box-shadow: inset 0 0 2px #000;
	animation: animate 4s ease-in-out forwards;
}
@keyframes animate {
	from {
		width: 0;
	}
}
#SkillBar .skills:nth-of-type(1) .percent .progress {
	background: linear-gradient(45deg, #1fe6ff, #673ab7);
}
#SkillBar .skills:nth-of-type(2) .percent .progress {
	background: linear-gradient(45deg, #3bc0ff, #33ff00);
}
#SkillBar .skills:nth-of-type(3) .percent .progress {
	background: linear-gradient(45deg, #ffee54, #ff00ca);
}
#SkillBar .skills:nth-of-type(4) .percent .progress {
	background: linear-gradient(45deg, #22ffde, #2196f3);
}
