.ts-skill-item{
    margin-bottom:25px;
}
.ts-skill-counter-wrap {display:flex;}
.ts-skill-head{
    display:flex;
    justify-content:space-between;
    margin-bottom:10px;
    font-weight:600;
}

.ts-skill-bar{
    width:100%;
    height:10px;
    background:#eee;
    border-radius:30px;
}

.ts-skill-fill{
    height:100%;
    width:0;
    background:#ff5a70;
    border-radius:30px;
    transition:1.2s ease;
}
.ts-skill-title {margin-bottom:0; font-size:14px;}
.ts-circle-wrapper{
    display:flex;
    flex-wrap:wrap;
    gap:30px;
}

.ts-circle-item{
    position:relative;
    text-align:center;
}
.ts-circle-item svg{
    width:100%;
    height:auto;
}
.ts-circle-item svg{
    transform:rotate(-90deg);
}

.ts-circle-progress{
    stroke:#ff5a70;
    stroke-linecap:round;
    transition:1.5s ease;
}

.ts-circle-bg{
    stroke:#e5e5e5;
}

.ts-circle-content{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
}

.ts-circle-content h4{
    margin:0;
    font-size:28px;
}
.ts-skill-fill{
    transition:1.5s ease;
}

.ts-circle-progress{
    transition:stroke-dashoffset 1.8s ease;
}
.ts-skill-fill{
    position:relative;
}

.ts-tooltip{
    position:absolute;
    right:0;
    top:-35px;
    background:#111;
    color:#fff;
    padding:4px 10px;
    border-radius:6px;
    font-size:12px;
}
.ts-glass{
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,.2);
    box-shadow:0 8px 30px rgba(0,0,0,.1);
    border-radius:25px;
}
.ts-circle-progress{
    stroke:url(#tsGradient);
    stroke-linecap:round;
    filter:drop-shadow(0 0 10px rgba(255,90,112,.4));
}
/*=====================================
=            LINE BAR                =
=====================================*/

.ts-skill-bar{
    width:100%;
    overflow:hidden;
}

.ts-skill-fill{
    width:0;
    height:100%;
    transition:width 1.5s cubic-bezier(.17,.67,.83,.67);
    position:relative;
    will-change:width;
}

/* striped */
/* stripes */
.ts-stripes .ts-skill-fill{

    background-color:#ff5a70;

    background-image:
    repeating-linear-gradient(
        45deg,
        rgba(255,255,255,.2) 0,
        rgba(255,255,255,.2) 10px,
        transparent 10px,
        transparent 20px
    );

    background-size:40px 40px;

    animation:tsStripesMove 1s linear infinite;
}

@keyframes tsStripesMove{
    from{
        background-position:0 0;
    }
    to{
        background-position:40px 0;
    }
}


/* glow */
.ts-glow .ts-skill-fill{
    box-shadow:
    0 0 10px rgba(255,90,112,.5),
    0 0 20px rgba(255,90,112,.4),
    0 0 30px rgba(255,90,112,.3);
}

/*=====================================
=             CIRCLE                 =
=====================================*/

.ts-circle-item{
    position:relative;
    text-align:center;
}

.ts-circle-item svg{
    width:100%;
    height:auto;
    transform:rotate(-90deg);
    overflow:visible;
}

.ts-circle-bg{
    fill:none;
    stroke:#e5e5e5;
}

.ts-circle-progress{
    fill:none;
    stroke:#ff5a70;
    stroke-linecap:round;
    transition:stroke-dashoffset 1.8s ease;
    transform-origin:center;
}

.ts-circle-content{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
}

.ts-circle-content h4{
    margin:0;
	display:flex;
    font-size:20px;
}