.chart-progress {
    width: 100px;
    display: inline-block;
    min-width: 100px;
    text-align: center;
    margin-right: 10px;
    height: 250px;
    float: left;
}
.chart-progress .number-vertical {
    position: absolute;
    left: -19px;
    height: calc(100% + 12px);
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    font-family: iranyekan;
    bottom: -9px;
    width: 10px;
}
.chart-progress .progressBox {
    height: 200px;
    background: #f1f1f1;
    width: 50px;
    margin: 0 auto;
    position: relative;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border: 1px solid #ccc;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.chart-progress .progressBox .progress {
    position: absolute;
    bottom: -20px;
    right: 0;
    display: block;
    width: 100%;
    z-index: 1;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.chart-progress .valueBox {
    font-family: iranyekan;
    background: white;
    width: 65px;
    margin: 0 auto;
    bottom: 1px;
    position: relative;
    border-radius: 6px;
    font-size: 20px;
    padding: 10px 0;
}


.chart-progress.orange .progressBox .progress {
    background: orange;
}
.chart-progress.orange .valueBox {
    border: 1px solid orange;
}

.chart-progress.orange-dark .progressBox .progress {
    background: #ff7350;
}
.chart-progress.orange-dark .valueBox {
    border: 1px solid #ff7350;
}

.chart-progress.yellow .progressBox .progress {
    background: #ffcf27;
}
.chart-progress.yellow .valueBox {
    border: 1px solid #ffcf27;
}

.chart-progress.blue .progressBox .progress {
    background: #3ea6e3;
}
.chart-progress.blue .valueBox {
    border: 1px solid #3ea6e3;
}

.chart-progress.brown .progressBox .progress {
    background: #c27a79;
}
.chart-progress.brown .valueBox {
    border: 1px solid #c27a79;
}

.chart-progress.crimson .progressBox .progress {
    background: crimson;
}
.chart-progress.crimson .valueBox {
    border: 1px solid crimson;
}

.chart-progress.green .progressBox .progress {
    background: #4fc465;
}
.chart-progress.green .valueBox {
    border: 1px solid #4fc465;
}

.chart-progress.purple .progressBox .progress {
    background: #a750af;
}
.chart-progress.purple .valueBox {
    border: 1px solid #a750af;
}

.chart-progress.blue-light .progressBox .progress {
    background: #72e2f0;
}
.chart-progress.blue-light .valueBox {
    border: 1px solid #72e2f0;
}
