Buttons Css

hello i have a problem i am using custom css in cs-cart 4.2.4 i have made changes in colours and some other stuff, but in the buttons i am changing the colours but the hover colour stays the way it was and it is not changing and the font colur does the same.



I changed both of them whenever i founf them

.ty-btn__tertiary {

background: #db5342;

color: #fff;

}

.ty-btn__tertiary:hover {

background: #94aacd;

color: #fff;



Is there anyone who can help?

Try



.ty-btn__tertiary {
background: #db5342 !important;
color: #fff !important;
}
.ty-btn__tertiary:hover {
background: #94aacd !important;
color: #fff !important;
}