.chart-two-way {
    text-align: center;
}
.chart-two-way h3{
    margin-bottom: 0px !important;
    border: none !important;
}
.chart-two-way .titles, .chart-two-way .chart {
    display: flex;
    justify-content: space-between;
}
.chart-two-way .chart{
    margin-top: 20px;
    display: flex;
    flex-direction: row-reverse;
}
.chart-two-way .chart .center{
    width: 100%;
}

.chart-two-way .chart .center .progress-box {
    background: #f5f5f5;
    width: calc(100% - 30px);
    position: relative;
    display: block;
    border-radius: 50px;
    height: 15px;
    margin-right: 15px;
    margin-top: 5px;
    overflow: hidden;
}
.chart-two-way .chart .center .progress-box .progress-chart {
    position: absolute;
    height: 15px;
}

.chart-two-way.green .chart .center .progress-box .progress-chart {
    background: #63E2C7;
}
.chart-two-way.yellow .chart .center .progress-box .progress-chart {
    background: #FFCC73;
}
.chart-two-way.red .chart .center .progress-box .progress-chart {
    background: #FE6C6C;
}
.chart-two-way.blue .chart .center .progress-box .progress-chart {
    background: #7CC8FF;
}


.chart-two-way.l .chart .center .progress-box .progress-chart{
    left: 0;
}
.chart-two-way.r .chart .center .progress-box .progress-chart{
    right: 0;
}

.chart-two-way .chart .left , .chart-two-way .chart .right {
    font-size: 26px !important;
    font-weight: 600;
}



.chart-two-way.green.l .chart .left {
    color: #63E2C7;
}
.chart-two-way.green.r .chart .right {
    color: #63E2C7;
}
.chart-two-way.yellow.l .chart .left {
    color: #FFCC73;
}
.chart-two-way.yellow.r .chart .right {
    color: #FFCC73;
}
.chart-two-way.red.l .chart .left {
    color: #FE6C6C;
}
.chart-two-way.red.r .chart .right {
    color: #FE6C6C;
}
.chart-two-way.blue.l .chart .left {
    color: #7CC8FF;
}
.chart-two-way.blue.r .chart .right {
    color: #7CC8FF;
}
