:root{
    --color-red:#d75959;
    --color-yellow:#f5c463;
    --color-green:#9ccd7e;
    --color-blue: #5ca7db;
    --rgb-black:0,0,0;
}

.counter_wrapper{
    margin-top: 150px;
}

.counter_progressbar:not(.circle) svg,
.counter_progressbar:not(.circle) svg path{
    border-radius: 20px;
}

.counter_progressbar svg path:first-child{
    stroke: rgba(var(--rgb-black), 0.09);
}



.counter_progressbar.border{
   border: 1px solid transparent;
    box-sizing: border-box;
}


.counter_progressbar.border svg path:first-child{
    stroke: transparent;
}


.counter_progressbar.line svg{
    height: 10px;
}


.counter_progressbar.line.border svg{
    height: 8px;
}




.counter_progressbar.circle{
    position: relative;
    margin: 0 auto 30px;
    width: 170px;
    height: 85px;
}


.counter_progressbar.circle .progressbar-text{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: 0;
    font-size: 40px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: #252930 !important;
    font-weight: bold;
}

.counter_progressbar.circle .progressbar-text:after{
    content: "%";
    display: block;
    font-size: 20px;
    padding-left: 2px;
}


.counter_progressbar.red svg path:last-child{
    stroke: var(--color-red)
    
}

 

.counter_progressbar.blue svg path:last-child{
    stroke: var(--color-blue)
    
}

  

.counter_progressbar.green svg path:last-child{
    stroke: var(--color-green)
    
}

 
.counter_progressbar.yellow svg path:last-child{
    stroke: var(--color-yellow)
    
}

h5{
    background: transparent;
    padding: 10px;
    width: 75%;
    margin: 0 auto;
    border-radius: 50px;
    font-size: 17px;
    color: #252930;
}
 
