Hello,
As in your screenshot you want to display the current stock status in the left side at the place of total stock. You can simply hide the total stock div so the next div which contain the current stock will move toward the left side.
You can use the below CSS code in in global custom CSS are under theme settings >> custom CSS:
.stock-info .total-sold{
display:none;
}
To change the color of progress bar you can use the below CSS code:
.woodmart-stock-progress-bar .progress-area {
background-color: black;
}
Screenshot for clarification: https://jmp.sh/KjiygOa
Best Regards.