*, *:before, *:after {
    box-sizing: border-box;
    outline: none;
}

.chartCircleWave {

    height: 200px;
    padding: 15px;

}
.water-jar {
    height: 170px;
    width: calc(100% - 10px);
    position: absolute;
    top: unset;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, 0%);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e7e7e7;
    background: white;
}

.water-jar .water-filling {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #ff07cc;
    font-size: 20px;
}

.water-jar .water {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(0, 100%);
    transform: translate(0, 100%);
}

.water-jar .water_wave {
    width: 200%;
    position: absolute;
    bottom: 100%;
}

.water-jar > svg {
    height: 100px;
    top: 50%;
    position: absolute;
    left: 50%;
    transform: translate(-50% , -50%);
}
.water-jar .water_wave_back {
    right: 0;
    -webkit-animation: wave-back 1.5s infinite linear;
    animation: wave-back 1.5s infinite linear;
}
.water-jar > svg path , .water-jar > svg rect, .water-jar > svg polygon{
    fill: #999 !important;
}
.water-jar .water_wave_front {
    left: 0;
    margin-bottom: 0px;
    -webkit-animation: wave-front .8s infinite linear;
    animation: wave-front .8s infinite linear;
}

@-webkit-keyframes wave-front {
    100% {
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }
}

@keyframes wave-front {
    100% {
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }
}

@-webkit-keyframes wave-back {
    100% {
        -webkit-transform: translate(50%, 0);
        transform: translate(50%, 0);
    }
}

@keyframes wave-back {
    100% {
        -webkit-transform: translate(50%, 0);
        transform: translate(50%, 0);
    }
}

.water-filling > div {

    display: inline-block;

}
.water-filling * {
    font-size: 16px;
}
.water-filling {
    text-align: center;
    bottom: -30px;
    position: absolute;
    width: 100%;
    right: 0;
    font-size: 12px;
}

.water-filling + h6 {
    text-align: center;
    bottom: -15px;
    position: absolute;
    width: 100%;
    font-size: 12px;
    color: #444;
    right: 0;
}
.chartCircleWave .count {
    margin-left: 0px;
}
.chartCircleWave.greenBox .water-filling , .chartCircleWave.greenBox .water-filling * {
    color: #10b503;
}

.chartCircleWave.cyanBox .water-filling , .chartCircleWave.cyanBox .water-filling * {
    color: #76c3a9;
}

.chartCircleWave.blueBox .water-filling , .chartCircleWave.blueBox .water-filling * {
    color: #12a8f5;
}

.chartCircleWave.orangeBox .water-filling , .chartCircleWave.orangeBox .water-filling * {
    color: #fdc57d !important;
}


.chartCircleWave.redBox .water-filling ,  .chartCircleWave.redBox .water-filling *{
    color: #d4627c;
}


.chartCircleWave.PurpleBox .water-filling , .chartCircleWave.PurpleBox .water-filling * {
    color: #bb3dd6;
}


.chartCircleWave.greenBox .water-jar .water {
    background: rgba(149, 239, 125, 0.5);
}

.chartCircleWave.greenBox .water-jar .water_wave_back {
    fill: rgba(149, 239, 125, 0.5);
}

.chartCircleWave.greenBox .water-jar .water_wave_front {
    fill: rgba(149, 239, 125, 0.5);
}

.chartCircleWave.orangeBox .water-jar .water {
    background: rgba(253, 197, 125, 0.5);
}

.chartCircleWave.orangeBox .water-jar .water_wave_back {
    fill: rgba(253, 197, 125, 0.5);
}

.chartCircleWave.orangeBox .water-jar .water_wave_front {
    fill: rgba(253, 197, 125, 0.5);
}

.chartCircleWave.blueBox .water-jar .water {
    background: rgba(125, 210, 253, 0.5);
}
.chartCircleWave.blueBox .water-jar .water_wave_back {
    fill: rgba(125, 210, 253, 0.51);
}
.chartCircleWave.blueBox .water-jar .water_wave_front {
    fill: rgba(125, 210, 253, 0.51);
}


.chartCircleWave.PurpleBox .water-jar .water {
    background: rgba(187, 61, 214, 0.5);
}
.chartCircleWave.PurpleBox .water-jar .water_wave_back {
    fill: rgb(187, 61, 214);
}
.chartCircleWave.PurpleBox .water-jar .water_wave_front {
    fill: rgba(187, 61, 214, 0.51);
}





.chartCircleWave.redBox .water-jar .water {
    background: rgba(253, 143, 149, 0.5);
}

.chartCircleWave.redBox .water-jar .water_wave_back {
    fill: rgba(253, 143, 149, 0.5);
}

.chartCircleWave.redBox .water-jar .water_wave_front {
    fill: rgba(253, 143, 149, 0.5);
}


.chartCircleWave.cyanBox .water-jar .water {
    background: rgba(153, 253, 216, 0.5);
}

.chartCircleWave.cyanBox .water-jar .water_wave_back {
    fill: rgba(153, 253, 216, 0.5);
}

.chartCircleWave.cyanBox .water-jar .water_wave_front {
    fill: rgba(153, 253, 216, 0.5);
}