.boxChartList .percent {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #fff;
    z-index: 1000;
    margin-bottom: 20px;
}

.boxChartList .percent .number {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.boxChartList .percent .number h2 {
    color: #777;
    font-weight: 700;
    font-size: 24px;
    transition: 0.5s;
    margin-bottom: 0px;
}

.boxChartList  svg {
    position: relative;
    width: 150px;
    height: 150px;
    z-index: 1000;
}

.boxChartList  svg circle {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #efefef;
    stroke-width: 8;
    stroke-linecap: round;
    transform: translate(5px, 5px);
}

.boxChartList  svg circle:nth-child(2) {
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
}

.boxChartList:nth-child(1) svg circle:nth-child(2) {
    stroke-dashoffset: calc(440 - (440 * 90) / 100);
    stroke: #06d79c;
}

.boxChartList:nth-child(2) svg circle:nth-child(2) {
    stroke-dashoffset: calc(440 - (440 * 85) / 100);
    stroke: #398bf7;
}

.boxChartList:nth-child(3) svg circle:nth-child(2) {
    stroke-dashoffset: calc(440 - (440 * 60) / 100);
    stroke: #ef5350;
}
.boxChartList:nth-child(4) svg circle:nth-child(2) {
    stroke-dashoffset: calc(440 - (440 * 60) / 100);
    stroke: #ffb22b;
}
.boxChartList:nth-child(5) svg circle:nth-child(2) {
    stroke-dashoffset: calc(440 - (440 * 60) / 100);
    stroke: #4dc6eb;
}