how to overwrite im css

CSS
/* this is not a standard but if you need to then do this */
.example {
  color: blue;
  color: red !important;
 /* the red color will show as it has the important thing afterwards*/
}
Source

Also in CSS: