SVG circles not exported as such
Hello everybody,
I'm using Adobe Illustrator CC 2017.1.0 and I would like to export an svg that basically contains 3 circles and 3 texts.
The problem is that when I export the code, Illustrator is tranforming every circle into two paths, one with the fill and one with the stroke. This is annoying because it makes it harder to animate the circles later with CSS.

Example code exported:
<path style="fill:#F45D4C;" d="M159.6,etc…"/>
<path style="fill:#FFFFFF;" d="M159.6, etc…"/>
What I would like for Illustrator to export (as it did in previous versions):
<circle style="fill:#F45D4C; stoke:#FFFFFF;" cx="" cy="" r=""></circle>
