There is a bug with displaying SVG on Safari.
The fix is to wrap SVG in object.
CSS
object {
width: 100%;
display: block;
height: auto;
position: relative;
padding-top: 100%;
}
svg {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
}