.chart-bar-radious {
    height: 300px;
    border-bottom: 1px solid #555;
    border-left: 1px solid #555;
    margin: 10px 5px 80px 5px;
    position: relative;
    display: flex;
    justify-content: space-evenly;
    flex-direction: row-reverse;
}
.chart-bar-radious .chart-box {
    width: calc(100% / 13);
    height: 100%;
    bottom: 0;
    padding: 0 10px;
    position: relative;
    background: #f1f1f1;
}
.chart-bar-radious .chart-box > .progress {
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);

    height: 100%;
    width:calc( 100% - 16px);
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    margin: 0;
    border-bottom-right-radius: 0;
}
.chart-bar-radious .chart-box > .progress::before {
    content: '';
    width: 25px;
    height: 25px;
    position: absolute;
    right: 50%;
    background: white;
    top: 8px;
    transform: translateX(50%);
    border-radius: 50px;
    box-shadow: 0px 5px 7px #333;
}
.chart-bar-radious .order-leftborder {
     position: absolute;
     left: -20px;
     width: 20px;
     height: calc(100% + 8px);
     bottom: -6px;
     display: flex;
     flex-direction: column-reverse;
     justify-content: space-between;
 }
.order-leftborder span {
    position: relative;
    font-size: 11px;
    width: 100%;
    display: block;
    text-align: center;
    color : #666;
}
.order-leftborder span::after {
    position: absolute;
    content: '';
    width: 8px;
    height: 1px;
    background: #888;
    right: -8px;
    top: calc(50% + 1px);
    transform: translateY(50%);
}
.chart-bar-radious .chart-box::after {
    content: attr(data-title);
    position: absolute;
    top: calc(100% + 35px);
    font-family: iranyekan;
    font-size: 12px;
    right: calc(50% + 10px);
    transform: translateX(50%) rotate(-70deg);
    z-index: 9;
    width: 75px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: #666;
}

/* Color */
.chart-bar-radious .chart-box > .progress.orange {
    background: #fc9e26;
}
.chart-bar-radious .chart-box > .progress.orange-dark {
    background: #fc6326;
}
.chart-bar-radious .chart-box > .progress.online {
    background: #2997d7;
}
.chart-bar-radious .chart-box > .progress.green {
    background: #43c180;
}
.chart-bar-radious .chart-box > .progress.purple {
    background: #8d43c1;
}
.chart-bar-radious .chart-box > .progress.blue-dark {
    background: #164d6d;
}
.chart-bar-radious .chart-box > .progress.pink {
    background: #ff4aa7;
}
.chart-bar-radious .chart-box > .progress.blue-light {
    background: #4fc7e5;
}
.chart-bar-radious .chart-box > .progress::after {
    content: attr(data-value);
    z-index: 9;
    position: absolute;
    right: 18px;
    top: 19px;
    transform: translate(50% , -50%);
    font-family: iranyekan;
    color: #666;
    width: 20px;
    text-align: center;
}






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

    .chart-bar-radious .chart-box {
        padding: 0 2px;
    }
    .chart-bar-radious .chart-box > .progress {
        width: calc( 100% - 6px);
    }
    .chart-bar-radious .chart-box > .progress::before {
        width: 12px;
        height: 12px;
        top: 2px;
    }
    .chart-bar-radious .chart-box > .progress::after {
        content: attr(data-value);
        z-index: 9;
        position: absolute;
        right: 7px;
        top: 7px;
        transform: translate(50% , -50%);
        font-family: iranyekan;
        color: #666;
        width: 14px;
        text-align: center;
        font-size: 10px;
    }
}

@media only screen and (max-width: 580px) {
    .chart-bar-radious .chart-box > .progress::after {
        content: attr(data-value);
        z-index: 9;
        position: absolute;
        right: 7px;
        top: 8px;
        transform: translate(50% , -50%);
        font-family: iranyekan;
        color: #666;
        width: 14px;
        text-align: center;
        font-size: 7px;
    }

}