/* ===== Google Font Import - Poppins ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');

.percentage{
    margin-left: auto;

}

.skill-box .title{
    display: flex;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    align-items: center;
}
.skill-box .skill-bar{
    height: 8px;
    width: 100%;
    border-radius: 6px;
    margin-top: 6px;
    background: rgba(0,0,0,0.1);
}
.skill-bar .skill-per{
    position: relative;
    display: block;
    height: 100%;
    width: 95%;
    border-radius: 6px;
    background: #44cbe1;
    animation: progress 0.4s ease-in-out forwards;
    opacity: 0;
}
.skill-per.frameworks{
    width: 85%;
    animation-delay: 0.1s;
}
.skill-per.problem-solving{
    width: 90%;
    animation-delay: 0.2s;
}

@keyframes progress {
    0%{
        width: 0;
        opacity: 10;
    }
    100%{
        opacity: 10;
    }
}
.skill-per .tooltip{
    position: absolute;
    right: -14px;
    top: -28px;
    font-size: 9px;
    font-weight: 500;
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    background: #44cbe1;
    z-index: 1;
}
.tooltip::before{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -2px;
    height: 10px;
    width: 10px;
    z-index: -1;
    background-color: #44cbe1;
    transform: translateX(-50%) rotate(45deg);

}