Be the first to know about new formulas, limited drops, and what we're developing next at EC Studios. Plus, free shipping on your first order.
```
Or — the cleaner approach — remove the inline `!important` from the SVG styles in sidebar.liquid and use just `style="stroke:#000"` (without `!important`). Then the CSS hover rule can override it. Change every instance of:
```
style="stroke:#000!important"
```
to:
```
style="stroke:#000"
```
And for the search circle and account paths, change:
```
style="stroke:#000!important;fill:none!important"
```
to:
```
style="stroke:#000;fill:none"