.chartsLine {
    display: flex;
    justify-content: space-around;
    margin-top: 25px;
}

.chartLineCustom {
    min-height: 300px;
    position: relative;
    margin-bottom: 40px;
    width: 100%;
    max-width: 70px;
}
.chartLineCustom .line {
    position: absolute;
    height: calc(100% - 59px);
    width: 80%;
    margin-right: 10%;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border: 1px solid #ccc !important;
    overflow: hidden;
    background: #f6f6f6;
    top: 0px;
}
.chartLineCustom .line .progress {
    position: absolute;
    bottom: 0;
    width: 100%;
    margin: 0;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.chartLineCustom .iconBox {
    position: absolute;
    bottom: 0;
    width: 94%;
    right: 3%;
    z-index: 0;
    background: white;
    text-align: center;
    height: 60px;
    font-size: 40px;
    border-radius: 10px;
}
.chartLineCustom .titlebox {
    position: absolute;
    top: calc(100%);
    text-align: center;
    width: 160%;
    font-weight: 600;
    font-size: 16px;
    right: -30%;
    font-family: iranyekan;
    padding-top: 8px;
}
.chartLineCustom .titlebox .title{
    color:#888;
    font-size: 13px;
    font-weight: 500;
}




.chartLineCustom.purple .titlebox .percent{
    color: #b859ff;
}
.chartLineCustom.purple .line .progress {
    background:  #b859ff;
}
.chartLineCustom.purple .iconBox {
    border: 1px solid  #b859ff;
}

.chartLineCustom.red .titlebox .percent{
    color: #ff6796;
}
.chartLineCustom.red .line .progress {
    background:  #ff6796;
}
.chartLineCustom.red .iconBox {
    border: 1px solid  #ff6796;
}


.chartLineCustom.blue .titlebox .percent{
    color: #36b1ff;
}
.chartLineCustom.blue .line .progress {
    background:  #36b1ff;
}
.chartLineCustom.blue .iconBox {
    border: 1px solid  #36b1ff;
}


.chartLineCustom.green .titlebox .percent{
    color: #35dd88;
}
.chartLineCustom.green .line .progress {
    background:  #35dd88;
}
.chartLineCustom.green .iconBox {
    border: 1px solid  #35dd88;
}


.chartLineCustom.orange .titlebox .percent{
    color: #ffb250;
}
.chartLineCustom.orange .line .progress {
    background:  #ffb250;
}
.chartLineCustom.orange .iconBox {
    border: 1px solid  #ffb250;
}
