How to change color from a Text

Hello guys, as you can see here I have added a custom liquid in my product page. I want the text to be bold and same color as the circle. How can I change that? Here is the URL of the product page.

https://www.nistore.de/products/body-blue-light-epilator-induction-ladies-shaver-hair-remover-tool-rotary-electric-automatic-face-leg-bikini-lip-depilator

Place this into the custom liquid portion:


Hey! @NikosBat ,

Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css/main.css/custom.css file Add the provided code at the end of the file.

.instock-pulse span:last-child {
    font-weight: bold;
    color: #54c63a !important;
}

Thank you very much, that solved my problem. I have 1 more question, can I somehow adjust the padding like in the image?

.instock-pulse span:last-child {
  font-weight: bold;
  color: #54c63a !important;
  padding-bottom: 2px !important; /* optional fine adjustment */
}

I’m glad I could help! :heart_eyes: