.chart-progress-percent {
    width: 200px;
    float: left;
    margin: 10px 10px 10px 0;
    height: 200px;
    display: flex;
    justify-content: center;
}

.chart-progress-percent .chart {
    height: 200px;
    background: #f6f6f6;
    border: 1px solid #aaa;
    border-radius: 50px;
    width: 70px;
    position: relative;
    overflow: hidden;

}
.chart-progress-percent .progress {
    bottom: 35px;
    right: 0;
    width: 100%;
    height: calc(0% - 30px);
    position: absolute;
    margin: 0;
    border-radius: 0;
}
.chart-progress-percent .percent {
    background: white;
    width: 100%;
    height: 70px;
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    direction: ltr;
    font-family: iranyekan;
    border-radius: 60px;
    font-size: 17px;
    font-weight: bold;
}

.chart-progress-percent.blue .progress{
    background: #4FA1F5;
}
.chart-progress-percent.blue .percent {
    color: #4FA1F5;
}
.chart-progress-percent.orange .progress{
    background: #FFB344;
}
.chart-progress-percent.orange .percent {
    color: #FFB344;
}
.chart-progress-percent.red .progress{
    background: #FF6B6B;
}
.chart-progress-percent.red .percent {
    color: #FF6B6B;
}
.chart-progress-percent.olive .progress{
    background: #c2ca99;
}
.chart-progress-percent.olive .percent {
    color: #c2ca99;
}
.chart-progress-percent.gray .progress{
    background: #6b6b6b;
}
.chart-progress-percent.gray .percent {
    color: #6b6b6b;
}
.chart-progress-percent.dark-pink .progress{
    background: #E12093;
}
.chart-progress-percent.dark-pink .percent {
    color: #E12093;
}
.chart-progress-percent.green .progress{
    background: #1BC862;
}
.chart-progress-percent.green .percent {
    color: #1BC862;
}
.chart-progress-percent.dark-blur .progress{
    background: #2559B2;
}
.chart-progress-percent.dark-blur .percent {
    color: #2559B2;
}


@media only screen and (max-width: 500px) {

    .chart-progress-percent {
        width: 150px;
    }
}
@media only screen and (max-width: 400px) {

    .chart-progress-percent {
        width: 120px;
    }
}