.progress-bar-radious {
    height: 50px;
    background: #f6f6f6;
    margin-bottom: 15px;
    position: relative;
    padding: 10px 35px;

}
.progress-bar-radious > .section-bar {
    height: 30px;
    position: relative;
    border-left: 1px solid #bbb;
    border-right: 1px solid #bbb;
}
.progress-bar-radious::after {
    content: attr(data-min);
    position: absolute;
    left: 15px;
    top: 12px;
    font-family: iranyekan;
    font-size: 20px;
    color: #777;
}
.progress-bar-radious::before {
    content: attr(data-max);
    position: absolute;
    right: 10px;
    top: 12px;
    font-family: iranyekan;
    font-size: 20px;
    color: #777;
}
.progress-bar-radious > .section-bar .progress {
    height: 30px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    position: relative;
    box-shadow: none !important;
    position: absolute;
    box-shadow: none !important;
    left: 0px;
}
.progress::before {
    content: '';
    width: 24px;
    height: 24px;
    position: absolute;
    right: 4px;
    background: white;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50px;
    box-shadow: 0px 2px 3px #333;
}
.progress::after {
    content: attr(data-value);
    z-index: 9;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translate(50% , -50%);
    font-family: iranyekan;
    color: #666;
    width: 20px;
    text-align: center;
}

/* Color Progress */
.progress-bar-radious.orange > .section-bar .progress {
    background: #fc9e26;
}
.progress-bar-radious.orange-dark > .section-bar .progress {
    background: #fc6326;
}
.progress-bar-radious.green-blue> .section-bar .progress {
    background: #24a4a4;
}
.progress-bar-radious.blue-light> .section-bar .progress {
    background: #4fc7e5;
}
.progress-bar-radious.blue> .section-bar .progress {
    background: #2997d7;
}
.progress-bar-radious.blue-dark> .section-bar .progress {
    background: #164d6d;
}
.progress-bar-radious.brown > .section-bar .progress {
    background: #a0533d;
}
.progress-bar-radious.brown-dark > .section-bar .progress {
    background: #543f2f;
}
.progress-bar-radious.crismon > .section-bar .progress {
    background: crimson;
}
.progress-bar-radious.crismon-light > .section-bar .progress {
    background: #ba3d56;
}
.progress-bar-radious.green > .section-bar .progress {
    background: #43c180;
}
.progress-bar-radious.purple > .section-bar .progress {
    background: #8d43c1;
}
.progress-bar-radious.yellow > .section-bar .progress {
    background: gold;
}
.progress-bar-radious.green-light > .section-bar .progress {
    background: #64bf9a;
}
.progress-bar-radious.pink > .section-bar .progress {
    background: #ff4aa7;
}