How can I alter the color of specific elements on my website?

Hi,

How can I change the colour of the free shipping below to my brand colour which is: #B4DAD6

I would also like to change the bar in the cart and checkout page. my website is www.feyrebaby.com.au

hello @shells

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

.progress-bar {
    background-color: #B4DAD6 !important;
}

Thank you.

How can I change the other colour to #666666 to match with all the other grey on my website?

hello @shells

.js-free-shipping {
    background: #666666 !important;
}