ul li::marker {
    content: none;
}

.skills {
    width: 80%;
    max-width: 960px;
    height: 100%;
    margin: auto;
    position: relative;
}

.lines {
    height: 100%;
    position: relative;
}

.line {
    height: inherit;
    width: 2px;
    position: absolute;
    background: rgba(238, 238, 238, 0.6);
}

.line.l--0 {
    left: 0;
}

.line.l--25 {
    left: 25%;
}

.line.l--50 {
    left: 50%;
}

.line.l--75 {
    left: 75%;
}

.line.l--100 {
    left: calc(100% - 1px);
}

.line__label {
    display: block;
    width: 100px;
    text-align: center;
    position: absolute;
    bottom: -20px;
    right: -50px;
}

.line__label.title {
    text-transform: uppercase;
    font-weight: bold;
}

.charts {
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 10;
}

.chart:not(:first-child) {
	margin-top: 0;
	margin-bottom: 1.5rem;
}

.chart__title {
    display: block;
    margin: 0 0 10px;
    font-weight: bold;
    opacity: 0;
    /*animation: 1s anim-lightspeed-in ease forwards;*/
}

/*.chart--prod .chart__title {*/
/*    animation-delay: 3.3s;*/
/*}*/

/*.chart--design .chart__title {*/
/*    animation-delay: 4.5s;*/
/*}*/

.chart--horiz {
	overflow: hidden;
	margin: 0;
	padding: 0;
	list-style: none;
}

.skill-item {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	list-style: none;
}

.skill-icon {
	font-size: 1.8rem;
	color: #4cb8c4;
	width: 35px;
	height: 35px;
	min-width: 35px;
	text-align: center;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	line-height: 1;
	position: relative;
}

/* For Font Awesome icons, ensure they scale to fit - use slightly smaller font-size for wide icons */
.skill-icon[class*="fa-"] {
	font-size: 1.6rem;
	/* Scale down proportionally if icon is wider than container */
	max-width: 35px;
	max-height: 35px;
}

.skill-icon-img {
	width: 35px;
	height: 35px;
	object-fit: contain;
	font-size: 0;
	overflow: hidden;
}

.chart__bar {
	height: 35px;
	min-height: 35px;
	background: linear-gradient(to left, #4cb8c4, #3cd3ad);
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	opacity: 0;
	position: relative;
	display: flex;
	align-items: center;
	padding-right: 60px;
	box-sizing: border-box;
	/*animation: 1s anim-lightspeed-in ease forwards;*/
}

/*.chart--dev .chart__bar:nth-of-type(11) {*/
/*    animation-delay: 2.7s;*/
/*}*/

/*.chart--dev .chart__bar:nth-of-type(10) {*/
/*    animation-delay: 2.5s;*/
/*}*/

/*.chart--dev .chart__bar:nth-of-type(9) {*/
/*    animation-delay: 2.3s;*/
/*}*/

/*.chart--dev .chart__bar:nth-of-type(8) {*/
/*    animation-delay: 2.1s;*/
/*}*/

/*.chart--dev .chart__bar:nth-of-type(7) {*/
/*    animation-delay: 1.9s;*/
/*}*/

/*.chart--dev .chart__bar:nth-of-type(6) {*/
/*    animation-delay: 1.7s;*/
/*}*/

/*.chart--dev .chart__bar:nth-of-type(5) {*/
/*    animation-delay: 1.5s;*/
/*}*/

/*.chart--dev .chart__bar:nth-of-type(4) {*/
/*    animation-delay: 1.3s;*/
/*}*/

/*.chart--dev .chart__bar:nth-of-type(3) {*/
/*    animation-delay: 1.1s;*/
/*}*/

/*.chart--dev .chart__bar:nth-of-type(2) {*/
/*    animation-delay: 0.9s;*/
/*}*/

/*.chart--dev .chart__bar:nth-of-type(1) {*/
/*    animation-delay: 0.7s;*/
/*}*/

/*.chart--prod .chart__bar:nth-of-type(2) {*/
/*    animation-delay: 4.2s;*/
/*}*/

/*.chart--prod .chart__bar:nth-of-type(1) {*/
/*    animation-delay: 4s;*/
/*}*/

/*.chart--design .chart__bar:nth-of-type(4) {*/
/*    animation-delay: 5.8s;*/
/*}*/

/*.chart--design .chart__bar:nth-of-type(3) {*/
/*    animation-delay: 5.6s;*/
/*}*/

/*.chart--design .chart__bar:nth-of-type(2) {*/
/*    animation-delay: 5.4s;*/
/*}*/

/*.chart--design .chart__bar:nth-of-type(1) {*/
/*    animation-delay: 5.2s;*/
/*}*/

.chart__label {
	padding-left: 5px;
	line-height: 35px;
	color: white;
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 0.9rem;
}
.skill-bar-percent2 {
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	font-weight: bold;
	font-size: 0.85rem;
	height: auto;
	line-height: 1;
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
	pointer-events: none;
	min-width: 35px;
	text-align: right;
}
@keyframes anim-lightspeed-in {
    0% {
        transform: translateX(-40%);
        opacity: 1;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .animated {
        animation: 1s anim-lightspeed-in ease forwards;
    }
}

/* Mobile responsive styles */
@media only screen and (max-width: 736px) {
	.skill-icon {
		font-size: 1.5rem;
		max-width: 30px;
		max-height: 30px;
	}
	
	.skill-icon-img {
		width: 30px;
		height: 30px;
	}
	
	.skill-item {
		gap: 8px;
	}
	
	.chart__bar {
		height: 32px;
		min-height: 32px;
		padding-right: 55px;
	}
	
	.chart__label {
		line-height: 32px;
		font-size: 0.85rem;
	}
	
	.skill-bar-percent2 {
		font-size: 0.8rem;
		min-width: 30px;
	}
	
	.chart {
		margin-bottom: 1rem;
	}
}
