SVG does not load on firefox - css

The svg image loads on all other browsers
Its not loading on Firefox
I cannot find the code on the DOM.
I am serving page from Tomcat 9.0.34
<kendo-grid grid-options="gridOptions">
<img
src="common/svg/Plain-HedvigLogo.svg"
height="150"
width="100"/>
</kendo-grid>
Plain-Logo.svg
This is the logo svg file that is supposed to appear on the browser.
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.0.6, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 459.2 602.7" style="enable-background:new 0 0 459.2 602.7;" class="add-new-placeholder" xml:space="preserve">
<style type="text/css">
.st0{fill:#8496A1;}
.st1{fill:#476273;}
.st2{fill:#061A28;}
.st3{fill:#082335;}
.st4{fill:#FFA4B4;}
.st5{fill:#FF778F;}
.st6{fill:#FF4A6A;}
.st7{fill:#C53953;}
.st8{fill:#841F37;}
.st9{fill:#922A3E;}
.st10{fill:#0B2E44;}
</style>
<g>
<path class="st0" d="M177.9,125.8h-51.7V74.1h48.1c2,0,3.6,1.6,3.6,3.6V125.8z"/>
</g>
<g>
<path class="st1" d="125.8z"/>
<rect x="126.2" y="125.8" class="st1" width="51.7" height="51.7"/>
</g>
<g>
<rect x="126.2" y="280.9" class="st2" width="51.7" height="51.7"/>
<path class="st2" d="1.7V384.3z"/>
</g>
<g>
<rect x="74.5" y="177.5" class="st3" width="51.7" height="51.7"/>
<rect x="126.2" y="229.2" class="st3" width="51.7" height="51.7"/>
<rect x="74.5" y="280.9" class="st3" width="51.7" height="51.7"/>
<path class="st3" d=",176.3,384.3,174.3,384.3z"/>
</g>
<g>
<path class="st4" d="6,3.6,3.6V74.1z"/>
</g>
<g>
<path class="st5" d="3.6-3.6H333V74.1z"/>
<rect x="281.3" y="125.8" class="st5" width="51.7" height="51.7"/>
<rect x="333" y="74.1" class="st5" width="51.7" height="51.7"/>
</g>
<g>
<rect x="281.3" y="177.5" class="st6" width="51.7" height="51.7"/>
<rect x="333" y="229.2" class="st6" width="51.7" height="51.7"/>
</g>
<g>
<rect x="229.6" y="177.5" class="st7" width="51.7" height="51.7"/>
<rect x="333" y="177.5" class="st7" width="51.7" height="51.7"/>
<rect x="281.3" y="229.2" class="st7" width="51.7" height="51.7"/>
<rect x="333" y="280.9" class="st7" width="51.7" height="51.7"/>
</g>
<g>
<path class="st8" d="3.6-3.6v-48.1H333V384.3z"/>
</g>
<g>
<rect x="177.9" y="177.5" class="st9" width="51.7" height="51.7"/>
<rect x="229.6" y="229.2" class="st9" width="51.7" height="51.7"/>
<rect x="281.3" y="280.9" class="st9" width="51.7" height="51.7"/>
<path class="st9" d="M381.1,384.3H333v-51.7h51.784.3,381.1,384.3z"/>
</g>
</svg>
The svg image loads on all other browsers
Its not loading on Firefox
I cannot even find the code on the DOM.

You can't find svg code in DOM if you are using its as IMG
<img
src="common/svg/Plain-Logo.svg"
style="width:150px; height:100px;" />
Please check your SVG file directly open with Firefox and check below,
check SVG file view-box
Image location floating issue
Open SVG file direct in Firefox

Related

CSS to increase svg font size custom

I am working with a svg element as follows and I am using css to control the font-size of the svg text.
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1280 720">
<rect class="vBoxRect" width="1280" height="720" fill="none" stroke="red"></rect>
<rect class="boundRect" x="70" y="70" width="1160" height="600" fill="none" stroke="green"></rect>
<g class="bound" style="transform: translate(70px, 70px);">
<g class="yAxis">
<g class="yAxisLeft" fill="none" font-size="10" font-family="sans-serif" text-anchor="end">
<g class="tick" opacity="1" transform="translate(0,411.7647058823529)">
<line stroke="currentColor" x2="1160"></line>
<text fill="currentColor" x="-3" dy="0.32em" transform="matrix(1 0 0 1 13.1462 0)" text-anchor="middle">20%</text>
</g>
<g class="tick" opacity="1" transform="translate(0,223.52941176470583)">
<line stroke="currentColor" x2="1160"></line>
<text fill="currentColor" x="-3" dy="0.32em" transform="matrix(1 0 0 1 13.1462 0)" text-anchor="middle">40%</text>
</g>
<g class="tick" opacity="1" transform="translate(0,35.29411764705883)">
<line stroke="currentColor" x2="1160"></line>
<text fill="currentColor" x="-3" dy="0.32em" text-anchor="middle" transform="matrix(1 0 0 1 12.3462 0)">60%</text>
</g>
</g>
</g>
</g>
</svg>
However, when I increase the font-size, e.g.
.tick>text{
font-size: xx-large;
}
it changes to this
Is there anyway I can have the font-size increased, yet the text would be aligned to the green line? like below
As an alternative, I tried following
.tick>text{
transform-origin: left;
transform-box: fill-box;
transform: scaleY(2.5);
}
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1280 720">
<rect class="vBoxRect" width="1280" height="720" fill="none" stroke="red"></rect>
<rect class="boundRect" x="70" y="70" width="1160" height="600" fill="none" stroke="green"></rect>
<g class="bound" style="transform: translate(70px, 70px);">
<g class="yAxis">
<g class="yAxisLeft" fill="none" font-size="10" font-family="sans-serif" text-anchor="end">
<g class="tick" opacity="1" transform="translate(0,411.7647058823529)">
<line stroke="currentColor" x2="1160"></line>
<text fill="currentColor" x="-3" dy="0.32em" transform="matrix(1 0 0 1 13.1462 0)" text-anchor="middle">20%</text>
</g>
<g class="tick" opacity="1" transform="translate(0,223.52941176470583)">
<line stroke="currentColor" x2="1160"></line>
<text fill="currentColor" x="-3" dy="0.32em" transform="matrix(1 0 0 1 13.1462 0)" text-anchor="middle">40%</text>
</g>
<g class="tick" opacity="1" transform="translate(0,35.29411764705883)">
<line stroke="currentColor" x2="1160"></line>
<text fill="currentColor" x="-3" dy="0.32em" text-anchor="middle" transform="matrix(1 0 0 1 12.3462 0)">60%</text>
</g>
</g>
</g>
</g>
</svg>
.tick>text{
transform-origin: left;
transform-box: fill-box;
transform: scaleY(2.5);
}
but it is not applying the scaling from the desired origin.
Try positioning your test at x="0" instead of x="-3".
Also remove the transform and test-anchor="middle/end" attributes.
.tick>text{
transform-origin: left;
transform-box: fill-box;
transform: scaleY(2.5);
}
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1280 720">
<rect class="vBoxRect" width="1280" height="720" fill="none" stroke="red"></rect>
<rect class="boundRect" x="70" y="70" width="1160" height="600" fill="none" stroke="green"></rect>
<g class="bound" style="transform: translate(70px, 70px);">
<g class="yAxis">
<g class="yAxisLeft" fill="none" font-size="10" font-family="sans-serif">
<g class="tick" opacity="1" transform="translate(0,411.7647058823529)">
<line stroke="currentColor" x2="1160"></line>
<text fill="currentColor" x="0" dy="0.32em">20%</text>
</g>
<g class="tick" opacity="1" transform="translate(0,223.52941176470583)">
<line stroke="currentColor" x2="1160"></line>
<text fill="currentColor" x="0" dy="0.32em">40%</text>
</g>
<g class="tick" opacity="1" transform="translate(0,35.29411764705883)">
<line stroke="currentColor" x2="1160"></line>
<text fill="currentColor" x="0" dy="0.32em">60%</text>
</g>
</g>
</g>
</g>
</svg>

SVG fill up path element

How can i animated fill up a path element with color in a SVG ? In the lower area I added a rect element, that worked fine. But how can i fill up the rest (the head) ?
The SVG looks like this
And here is my SVG code
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 110.6 225.5" style="enable-background:new 0 0 110.6 225.5" xml:space="preserve">
<style type="text/css">
.st2{
fill:#FEC400;
}
}
</style>
<g>
<g>
<g>
<!-- mouth -->
<path d="M56.9,94c-4.7,0-9.3-1.3-13.4-3.7c-3.8-2.2-6.9-5.4-9.2-9.1c-0.9-1.5-0.4-3.5,1.1-4.4s3.5-0.4,4.4,1.1
c1.7,2.8,4.1,5.2,7,6.9c4.6,2.7,10,3.5,15.2,2.2s9.6-4.6,12.3-9.2c0.9-1.5,2.9-2,4.4-1.1s2,2.9,1.1,4.4
c-3.6,6.1-9.4,10.4-16.2,12.2C61.3,93.7,59.1,94,56.9,94z"/>
</g>
<g>
<!-- eye -->
<circle cx="78.3" cy="60.5" r="6.5"/>
</g>
<g>
<!-- eye -->
<circle cx="38.2" cy="60.5" r="6.5"/>
</g>
<g>
<!-- lower -->
<rect class="st2" x="5" y="220" width="24" height="90">
<animate attributeName="y" values="220 ; 100" dur="2.5s"/>
<animate attributeName="height" values="90 ; 120" dur="2.5s"/>
</rect>
</g>
<g>
<!-- figure, needs to fill up with color -->
<path d="M26.9,225.5H3.2c-1.8,0-3.2-1.4-3.2-3.2v-146c-0.1-19.2,21.4-36.8,50-40.9c14.4-2.1,28.6-0.4,39.8,4.7
c11.7,5.4,19,13.8,20.4,23.8l0,0c3,21.2-11.1,37.6-37.9,43.9c-13.6,3.2-30.9,1.1-42.3-3v117.3C30.1,224.1,28.6,225.5,26.9,225.5z
M6.4,219.1h17.3V100.2c0-1.1,0.6-2.1,1.5-2.7s2.1-0.6,3.1-0.2c9.6,4.7,28.6,7.7,42.6,4.4c23.2-5.5,35.6-19.3,33-36.8
c-1.1-7.8-7.1-14.5-16.7-18.9c-10.1-4.6-23-6.1-36.3-4.2c-25,3.6-44.6,18.8-44.5,34.5C6.4,76.3,6.4,219.1,6.4,219.1z"/>
</g>
</g>
</g>
</svg>
It works with a mask:
<svg width="200" height="190">
<g transform="translate(0,-35)">
<mask id="shape-mask">
<rect x="0" y="0" width="200" height="230" fill="black" />
<path d="M26.9,225.5H3.2c-1.8,0-3.2-1.4-3.2-3.2v-146c-0.1-19.2,21.4-36.8,50-40.9c14.4-2.1,28.6-0.4,39.8,4.7
c11.7,5.4,19,13.8,20.4,23.8l0,0c3,21.2-11.1,37.6-37.9,43.9c-13.6,3.2-30.9,1.1-42.3-3v117.3C30.1,224.1,28.6,225.5,26.9,225.5z" fill="white" />
</mask>
<rect y="230" width="200" height="0" fill="orange" mask="url(#shape-mask)">
<animate attributeName="y" values="230 ; 0" dur="2.5s"/>
<animate attributeName="height" values="0 ; 230" dur="2.5s"/>
</rect>
<path d="M56.9,94c-4.7,0-9.3-1.3-13.4-3.7c-3.8-2.2-6.9-5.4-9.2-9.1c-0.9-1.5-0.4-3.5,1.1-4.4s3.5-0.4,4.4,1.1
c1.7,2.8,4.1,5.2,7,6.9c4.6,2.7,10,3.5,15.2,2.2s9.6-4.6,12.3-9.2c0.9-1.5,2.9-2,4.4-1.1s2,2.9,1.1,4.4
c-3.6,6.1-9.4,10.4-16.2,12.2C61.3,93.7,59.1,94,56.9,94z"/>
<circle cx="78.3" cy="60.5" r="6.5"/>
<circle cx="38.2" cy="60.5" r="6.5"/>
<path d="M26.9,225.5H3.2c-1.8,0-3.2-1.4-3.2-3.2v-146c-0.1-19.2,21.4-36.8,50-40.9c14.4-2.1,28.6-0.4,39.8,4.7
c11.7,5.4,19,13.8,20.4,23.8l0,0c3,21.2-11.1,37.6-37.9,43.9c-13.6,3.2-30.9,1.1-42.3-3v117.3C30.1,224.1,28.6,225.5,26.9,225.5z
M6.4,219.1h17.3V100.2c0-1.1,0.6-2.1,1.5-2.7s2.1-0.6,3.1-0.2c9.6,4.7,28.6,7.7,42.6,4.4c23.2-5.5,35.6-19.3,33-36.8
c-1.1-7.8-7.1-14.5-16.7-18.9c-10.1-4.6-23-6.1-36.3-4.2c-25,3.6-44.6,18.8-44.5,34.5C6.4,76.3,6.4,219.1,6.4,219.1z"/>
</g>
</svg>

Animating SVG with CSS ideas?

I'm working on some animation where I first create the svg files in Illustrator then i'm trying to animate them with css or some library ( anime.js) .
I run in to a problem where I don't know how to hide the code and make it visible only in the screen.
#keyframes scrolling {
0% {
transform: translateY(0);
}
100% {
transform: translateY(-400px);
}
}
.code {
animation: scrolling 5s linear infinite;
}
/* colors */
body{
display: flex;
justify-content: center;
background-color: #111116;
}
.st0 {
opacity: 0.17;
}
.st1 {
fill: #56aeec;
}
.st2 {
fill: #2c65cc;
}
.st3 {
fill: #2984d6;
}
.st4 {
fill: #ccccff;
}
.st5 {
fill: #8dfcff;
}
.st6 {
fill: #38e0eb;
}
.st7 {
fill: #e0fa09;
}
.st8 {
fill: #ff49a5;
}
.st9 {
fill: #ff3333;
}
.st10 {
fill: #00ff66;
}
.st11 {
fill: #ff6666;
}
.st12 {
fill: #ff66cc;
}
<svg width="180" height="375" viewBox="0 0 180 375">
<g class="code">
<path class="st4" d="M107.7,313.6h-6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h6c0.6,0,1.2,0.5,1.2,1.2l0,0C108.8,313.1,108.3,313.6,107.7,313.6z"/>
<path class="st5" d="M161,319.6h-94c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h94c0.6,0,1.2,0.5,1.2,1.2l0,0C162.1,319.1,161.6,319.6,161,319.6z"/>
<path class="st4" d="M51.7,319.6H36.9c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h14.8c0.6,0,1.2,0.5,1.2,1.2l0,0C52.8,319.1,52.3,319.6,51.7,319.6z"/>
<path class="st4" d="M134.7,313.6h-6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h6c0.6,0,1.2,0.5,1.2,1.2l0,0C135.8,313.1,135.3,313.6,134.7,313.6z"/>
<path class="st5" d="M120.7,313.6h-6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h6c0.6,0,1.2,0.5,1.2,1.2l0,0C121.8,313.1,121.3,313.6,120.7,313.6z"/>
<path class="st5" d="M147.7,313.6h-6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h6c0.6,0,1.2,0.5,1.2,1.2l0,0C148.8,313.1,148.3,313.6,147.7,313.6z"/>
<path class="st4" d="M160.7,313.6h-6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h6c0.6,0,1.2,0.5,1.2,1.2l0,0C161.8,313.1,161.3,313.6,160.7,313.6z"/>
<path class="st6" d="M51.7,313.6H16.7c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h34.9c0.6,0,1.2,0.5,1.2,1.2l0,0C52.8,313.1,52.3,313.6,51.7,313.6z"/>
<path class="st5" d="M95.6,313.6H60.6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h34.9c0.6,0,1.2,0.5,1.2,1.2l0,0C96.7,313.1,96.2,313.6,95.6,313.6z"/>
<path class="st4" d="M28.6,319.6H16.6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h11.9c0.6,0,1.2,0.5,1.2,1.2l0,0C29.7,319.1,29.2,319.6,28.6,319.6z"/>
<path class="st6" d="M25.2,330.5H17c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h8.3c0.8,0,1.5,0.7,1.5,1.5l0,0C26.7,329.8,26,330.5,25.2,330.5z"/>
<path class="st6" d="M25.2,337.5H17c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h8.3c0.8,0,1.5,0.7,1.5,1.5l0,0C26.7,336.8,26,337.5,25.2,337.5z"/>
<path class="st6" d="M25.2,344.5H17c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h8.3c0.8,0,1.5,0.7,1.5,1.5l0,0C26.7,343.8,26,344.5,25.2,344.5z"/>
<path class="st7" d="M35.2,351.5H17c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h18.3c0.8,0,1.5,0.7,1.5,1.5l0,0C36.7,350.8,36,351.5,35.2,351.5z"/>
<path class="st8" d="M35.2,358.5H17c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h18.3c0.8,0,1.5,0.7,1.5,1.5l0,0C36.7,357.8,36,358.5,35.2,358.5z"/>
<path class="st9" d="M35.2,365.5H17c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h18.3c0.8,0,1.5,0.7,1.5,1.5l0,0C36.7,364.8,36,365.5,35.2,365.5z"/>
<path class="st9" d="M60.2,330.5H42c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h18.3c0.8,0,1.5,0.7,1.5,1.5l0,0C61.7,329.8,61,330.5,60.2,330.5z"/>
<path class="st8" d="M60.2,337.5H42c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h18.3c0.8,0,1.5,0.7,1.5,1.5l0,0C61.7,336.8,61,337.5,60.2,337.5z"/>
<path class="st7" d="M60.2,344.5H42c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h18.3c0.8,0,1.5,0.7,1.5,1.5l0,0C61.7,343.8,61,344.5,60.2,344.5z"/>
<path class="st6" d="M60.2,351.5h-8c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h8c0.8,0,1.5,0.7,1.5,1.5l0,0C61.7,350.8,61,351.5,60.2,351.5z"/>
<path class="st6" d="M60.2,358.5h-8c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h8c0.8,0,1.5,0.7,1.5,1.5l0,0C61.7,357.8,61,358.5,60.2,358.5z"/>
<path class="st6" d="M60.2,365.5h-8c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h8c0.8,0,1.5,0.7,1.5,1.5l0,0C61.7,364.8,61,365.5,60.2,365.5z"/>
<path class="st6" d="M92.2,330.5H74c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h18.3c0.8,0,1.5,0.7,1.5,1.5l0,0C93.7,329.8,93,330.5,92.2,330.5z"/>
<path class="st6" d="M92.2,337.5H74c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h18.3c0.8,0,1.5,0.7,1.5,1.5l0,0C93.7,336.8,93,337.5,92.2,337.5z"/>
<path class="st6" d="M92.2,344.5H74c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h18.3c0.8,0,1.5,0.7,1.5,1.5l0,0C93.7,343.8,93,344.5,92.2,344.5z"/>
<path class="st7" d="M82.2,351.5H74c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h8.3c0.8,0,1.5,0.7,1.5,1.5l0,0C83.7,350.8,83,351.5,82.2,351.5z"/>
<path class="st8" d="M82.2,358.5H74c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h8.3c0.8,0,1.5,0.7,1.5,1.5l0,0C83.7,357.8,83,358.5,82.2,358.5z"/>
<path class="st9" d="M82.2,365.5H74c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h8.3c0.8,0,1.5,0.7,1.5,1.5l0,0C83.7,364.8,83,365.5,82.2,365.5z"/>
<path class="st9" d="M117.2,330.5h-8c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h8c0.8,0,1.5,0.7,1.5,1.5l0,0C118.7,329.8,118,330.5,117.2,330.5z"/>
<path class="st8" d="M117.2,337.5h-8c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h8c0.8,0,1.5,0.7,1.5,1.5l0,0C118.7,336.8,118,337.5,117.2,337.5z"/>
<path class="st7" d="M117.2,344.5h-8c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h8c0.8,0,1.5,0.7,1.5,1.5l0,0C118.7,343.8,118,344.5,117.2,344.5z"/>
<path class="st6" d="M117.2,351.5h-18c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h18c0.8,0,1.5,0.7,1.5,1.5l0,0C118.7,350.8,118,351.5,117.2,351.5z"/>
<path class="st6" d="M117.2,358.5h-18c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h18c0.8,0,1.5,0.7,1.5,1.5l0,0C118.7,357.8,118,358.5,117.2,358.5z"/>
<path class="st6" d="M117.2,365.5h-18c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h18c0.8,0,1.5,0.7,1.5,1.5l0,0C118.7,364.8,118,365.5,117.2,365.5z"/>
<path class="st10" d="M156,329h-23.6c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7H156c0.4,0,0.7,0.3,0.7,0.7l0,0C156.7,328.7,156.4,329,156,329z"/>
<path class="st8" d="M156,334.9h-23.6c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7H156c0.4,0,0.7,0.3,0.7,0.7l0,0C156.7,334.6,156.4,334.9,156,334.9z"/>
<path class="st10" d="M156,340.9h-23.6c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7H156c0.4,0,0.7,0.3,0.7,0.7l0,0C156.7,340.6,156.4,340.9,156,340.9z"/>
<path class="st7" d="M156,346.8h-23.6c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7H156c0.4,0,0.7,0.3,0.7,0.7l0,0C156.7,346.5,156.4,346.8,156,346.8z"/>
<path class="st10" d="M156,352.8h-23.6c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7H156c0.4,0,0.7,0.3,0.7,0.7l0,0C156.7,352.5,156.4,352.8,156,352.8z"/>
<path class="st9" d="M156,358.7h-23.6c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7H156c0.4,0,0.7,0.3,0.7,0.7l0,0C156.7,358.4,156.4,358.7,156,358.7z"/>
<path class="st10" d="M156,364.7h-23.6c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7H156c0.4,0,0.7,0.3,0.7,0.7l0,0C156.7,364.4,156.4,364.7,156,364.7z"/>
<path class="st9" d="M35.2,371.5H17c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h18.3c0.8,0,1.5,0.7,1.5,1.5l0,0C36.7,370.8,36,371.5,35.2,371.5z"/>
<path class="st6" d="M60.2,371.5h-8c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h8c0.8,0,1.5,0.7,1.5,1.5l0,0C61.7,370.8,61,371.5,60.2,371.5z"/>
<path class="st9" d="M82.2,371.5H74c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h8.3c0.8,0,1.5,0.7,1.5,1.5l0,0C83.7,370.8,83,371.5,82.2,371.5z"/>
<path class="st6" d="M117.2,371.5h-18c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h18c0.8,0,1.5,0.7,1.5,1.5l0,0C118.7,370.8,118,371.5,117.2,371.5z"/>
<path class="st10" d="M156,370.7h-23.6c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7H156c0.4,0,0.7,0.3,0.7,0.7l0,0C156.7,370.4,156.4,370.7,156,370.7z"/>
<path class="st5" d="M126,224.6h-94c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h94c0.6,0,1.2,0.5,1.2,1.2l0,0C127.1,224.1,126.6,224.6,126,224.6z"/>
<path class="st6" d="M75.8,217.5H16c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h59.9c0.8,0,1.5,0.7,1.5,1.5l0,0C77.3,216.8,76.7,217.5,75.8,217.5z"/>
<path class="st6" d="M21.7,224.6h-6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h6c0.6,0,1.2,0.5,1.2,1.2l0,0C22.8,224.1,22.3,224.6,21.7,224.6z"/>
<path class="st7" d="M64.6,231H16.2c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7h48.4c0.4,0,0.7,0.3,0.7,0.7l0,0C65.3,230.7,65,231,64.6,231z"/>
<path class="st7" d="M64.6,236.9H16.2c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7h48.4c0.4,0,0.7,0.3,0.7,0.7l0,0C65.3,236.6,65,236.9,64.6,236.9z"/>
<path class="st7" d="M64.6,242.8H16.2c-0.4,0-0.7-0.3-0.7-0.7v0c0-0.4,0.3-0.7,0.7-0.7h48.4c0.4,0,0.7,0.3,0.7,0.7v0C65.3,242.4,65,242.8,64.6,242.8z"/>
<path class="st10" d="M64.6,248.6H16.2c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7h48.4c0.4,0,0.7,0.3,0.7,0.7l0,0C65.3,248.3,65,248.6,64.6,248.6z"/>
<path class="st7" d="M23.6,254.5h-7.4c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7h7.4c0.4,0,0.7,0.3,0.7,0.7l0,0C24.3,254.2,23.9,254.5,23.6,254.5z"/>
<path class="st7" d="M36.4,254.5h-7.4c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7h7.4c0.4,0,0.7,0.3,0.7,0.7l0,0C37.2,254.2,36.8,254.5,36.4,254.5z"/>
<path class="st7" d="M49.3,254.5h-7.4c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7h7.4c0.4,0,0.7,0.3,0.7,0.7l0,0C50.1,254.2,49.7,254.5,49.3,254.5z"/>
<path class="st7" d="M62.2,254.5h-7.4c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7h7.4c0.4,0,0.7,0.3,0.7,0.7l0,0C62.9,254.2,62.6,254.5,62.2,254.5z"/>
<path class="st7" d="M75.1,254.5h-7.4c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7h7.4c0.4,0,0.7,0.3,0.7,0.7l0,0C75.8,254.2,75.5,254.5,75.1,254.5z"/>
<path class="st7" d="M88,254.5h-7.4c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7H88c0.4,0,0.7,0.3,0.7,0.7l0,0C88.7,254.2,88.4,254.5,88,254.5z"/>
<path class="st7" d="M64.6,260.4H16.2c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7h48.4c0.4,0,0.7,0.3,0.7,0.7l0,0C65.3,260.1,65,260.4,64.6,260.4z"/>
<path class="st11" d="M164.1,235.8h-59.4c-0.6,0-1-0.5-1-1l0,0c0-0.6,0.5-1,1-1h59.4c0.6,0,1,0.5,1,1l0,0C165.1,235.4,164.7,235.8,164.1,235.8z"/>
<path class="st11" d="M130.7,242.7h-26c-0.6,0-1-0.5-1-1v0c0-0.6,0.5-1,1-1h26c0.6,0,1,0.5,1,1v0C131.7,242.2,131.3,242.7,130.7,242.7z"/>
<path class="st11" d="M164.1,242.7h-27.4c-0.6,0-1-0.5-1-1l0,0c0-0.6,0.5-1,1-1h27.4c0.6,0,1,0.5,1,1l0,0C165.1,242.2,164.7,242.7,164.1,242.7z"/>
<path class="st7" d="M164.1,260.9h-59.4c-0.6,0-1-0.5-1-1l0,0c0-0.6,0.5-1,1-1h59.4c0.6,0,1,0.5,1,1l0,0C165.1,260.5,164.7,260.9,164.1,260.9z"/>
<path class="st10" d="M164.1,266.2h-59.4c-0.6,0-1-0.5-1-1l0,0c0-0.6,0.5-1,1-1h59.4c0.6,0,1,0.5,1,1l0,0C165.1,265.7,164.7,266.2,164.1,266.2z"/>
<path class="st5" d="M30.9,289.1H16.7c-0.6,0-1-0.5-1-1l0,0c0-0.6,0.5-1,1-1h14.2c0.6,0,1,0.5,1,1l0,0C31.9,288.6,31.4,289.1,30.9,289.1z"/>
<path class="st5" d="M30.9,285H16.7c-0.6,0-1-0.5-1-1l0,0c0-0.6,0.5-1,1-1h14.2c0.6,0,1,0.5,1,1l0,0C31.9,284.5,31.4,285,30.9,285z"/>
<path class="st5" d="M30.9,280.8H16.7c-0.6,0-1-0.5-1-1l0,0c0-0.6,0.5-1,1-1h14.2c0.6,0,1,0.5,1,1l0,0C31.9,280.4,31.4,280.8,30.9,280.8z"/>
<path class="st5" d="M30.9,276.7H16.7c-0.6,0-1-0.5-1-1l0,0c0-0.6,0.5-1,1-1h14.2c0.6,0,1,0.5,1,1l0,0C31.9,276.3,31.4,276.7,30.9,276.7z"/>
<path class="st10" d="M53.3,276.7H49c-0.6,0-1-0.5-1-1l0,0c0-0.6,0.5-1,1-1h4.3c0.6,0,1,0.5,1,1l0,0C54.3,276.3,53.9,276.7,53.3,276.7z"/>
<path class="st10" d="M43.3,285H39c-0.6,0-1-0.5-1-1l0,0c0-0.6,0.5-1,1-1h4.3c0.6,0,1,0.5,1,1l0,0C44.3,284.5,43.9,285,43.3,285z"/>
<path class="st10" d="M53.3,280.8H49c-0.6,0-1-0.5-1-1l0,0c0-0.6,0.5-1,1-1h4.3c0.6,0,1,0.5,1,1l0,0C54.3,280.4,53.9,280.8,53.3,280.8z"/>
<path class="st10" d="M43.3,289.1H39c-0.6,0-1-0.5-1-1l0,0c0-0.6,0.5-1,1-1h4.3c0.6,0,1,0.5,1,1l0,0C44.3,288.6,43.9,289.1,43.3,289.1z"/>
<path class="st10" d="M62.3,285H58c-0.6,0-1-0.5-1-1l0,0c0-0.6,0.5-1,1-1h4.3c0.6,0,1,0.5,1,1l0,0C63.3,284.5,62.9,285,62.3,285z"/>
<path class="st10" d="M62.3,289.1H58c-0.6,0-1-0.5-1-1l0,0c0-0.6,0.5-1,1-1h4.3c0.6,0,1,0.5,1,1l0,0C63.3,288.6,62.9,289.1,62.3,289.1z"/>
<path class="st10" d="M71.3,276.7H67c-0.6,0-1-0.5-1-1l0,0c0-0.6,0.5-1,1-1h4.3c0.6,0,1,0.5,1,1l0,0C72.3,276.3,71.9,276.7,71.3,276.7z"/>
<path class="st10" d="M71.3,280.8H67c-0.6,0-1-0.5-1-1l0,0c0-0.6,0.5-1,1-1h4.3c0.6,0,1,0.5,1,1l0,0C72.3,280.4,71.9,280.8,71.3,280.8z"/>
<path class="st11" d="M130.7,247.7h-26c-0.6,0-1-0.5-1-1v0c0-0.6,0.5-1,1-1h26c0.6,0,1,0.5,1,1v0C131.7,247.2,131.3,247.7,130.7,247.7z"/>
<path class="st11" d="M164.1,247.7h-27.4c-0.6,0-1-0.5-1-1l0,0c0-0.6,0.5-1,1-1h27.4c0.6,0,1,0.5,1,1l0,0C165.1,247.2,164.7,247.7,164.1,247.7z"/>
<path class="st8" d="M134,276h-30c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7h30c0.4,0,0.7,0.3,0.7,0.7l0,0C134.7,275.7,134.4,276,134,276z"/>
<path class="st7" d="M163.6,280.9h-43.2c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7h43.2c0.4,0,0.7,0.3,0.7,0.7l0,0C164.3,280.6,164,280.9,163.6,280.9z"/>
<path class="st8" d="M143.2,284.8h-39c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7h39c0.4,0,0.7,0.3,0.7,0.7l0,0C143.9,284.4,143.6,284.8,143.2,284.8z"/>
<path class="st8" d="M162.7,288.6h-35.2c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7h35.2c0.4,0,0.7,0.3,0.7,0.7l0,0C163.4,288.3,163.1,288.6,162.7,288.6z"/>
<path class="st8" d="M164,271.4h-59.8c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7H164c0.4,0,0.7,0.3,0.7,0.7l0,0C164.7,271.1,164.4,271.4,164,271.4z"/>
<path class="st4" d="M21.7,137.6h-6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h6c0.6,0,1.2,0.5,1.2,1.2l0,0C22.8,137.1,22.3,137.6,21.7,137.6z"/>
<path class="st5" d="M160,144.6h-94c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h94c0.6,0,1.2,0.5,1.2,1.2l0,0C161.1,144.1,160.6,144.6,160,144.6z"/>
<path class="st6" d="M75.8,151.5H16c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h59.9c0.8,0,1.5,0.7,1.5,1.5l0,0C77.3,150.8,76.7,151.5,75.8,151.5z"/>
<path class="st6" d="M48.7,144.6h-6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h6c0.6,0,1.2,0.5,1.2,1.2l0,0C49.8,144.1,49.3,144.6,48.7,144.6z"/>
<path class="st4" d="M48.7,137.6h-6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h6c0.6,0,1.2,0.5,1.2,1.2l0,0C49.8,137.1,49.3,137.6,48.7,137.6z"/>
<path class="st5" d="M34.7,137.6h-6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h6c0.6,0,1.2,0.5,1.2,1.2l0,0C35.8,137.1,35.3,137.6,34.7,137.6z"/>
<path class="st5" d="M61.7,137.6h-6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h6c0.6,0,1.2,0.5,1.2,1.2l0,0C62.8,137.1,62.3,137.6,61.7,137.6z"/>
<path class="st4" d="M74.7,137.6h-6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h6c0.6,0,1.2,0.5,1.2,1.2l0,0C75.8,137.1,75.3,137.6,74.7,137.6z"/>
<path class="st6" d="M111.6,137.6H80.6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h30.9c0.6,0,1.2,0.5,1.2,1.2l0,0C112.7,137.1,112.2,137.6,111.6,137.6z"/>
<path class="st5" d="M159.6,137.6h-34.9c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h34.9c0.6,0,1.2,0.5,1.2,1.2l0,0C160.7,137.1,160.2,137.6,159.6,137.6z"/>
<path class="st6" d="M34.7,144.6h-6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h6c0.6,0,1.2,0.5,1.2,1.2l0,0C35.8,144.1,35.3,144.6,34.7,144.6z"/>
<path class="st8" d="M75.8,157.5H16c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h59.9c0.8,0,1.5,0.7,1.5,1.5l0,0C77.3,156.8,76.7,157.5,75.8,157.5z"/>
<path class="st6" d="M34.2,164.5H16c-0.8,0-1.5-0.7-1.5-1.5v0c0-0.8,0.7-1.5,1.5-1.5h18.3c0.8,0,1.5,0.7,1.5,1.5v0C35.7,163.8,35,164.5,34.2,164.5z"/>
<path class="st6" d="M34.2,171.5H16c-0.8,0-1.5-0.7-1.5-1.5v0c0-0.8,0.7-1.5,1.5-1.5h18.3c0.8,0,1.5,0.7,1.5,1.5v0C35.7,170.8,35,171.5,34.2,171.5z"/>
<path class="st6" d="M34.2,178.5H16c-0.8,0-1.5-0.7-1.5-1.5v0c0-0.8,0.7-1.5,1.5-1.5h18.3c0.8,0,1.5,0.7,1.5,1.5v0C35.7,177.8,35,178.5,34.2,178.5z"/>
<path class="st6" d="M34.2,185.5H16c-0.8,0-1.5-0.7-1.5-1.5v0c0-0.8,0.7-1.5,1.5-1.5h18.3c0.8,0,1.5,0.7,1.5,1.5v0C35.7,184.8,35,185.5,34.2,185.5z"/>
<path class="st6" d="M34.2,192.5H16c-0.8,0-1.5-0.7-1.5-1.5v0c0-0.8,0.7-1.5,1.5-1.5h18.3c0.8,0,1.5,0.7,1.5,1.5v0C35.7,191.8,35,192.5,34.2,192.5z"/>
<path class="st5" d="M159.6,163.9H50.9c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h108.6c0.6,0,1.2,0.5,1.2,1.2l0,0C160.7,163.3,160.2,163.9,159.6,163.9z"/>
<path class="st12" d="M59.6,170.9h-8.6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h8.6c0.6,0,1.2,0.5,1.2,1.2l0,0C60.7,170.3,60.2,170.9,59.6,170.9z"/>
<path class="st12" d="M73.6,170.9h-8.6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h8.6c0.6,0,1.2,0.5,1.2,1.2l0,0C74.7,170.3,74.2,170.9,73.6,170.9z"/>
<path class="st5" d="M159.6,177.9H50.9c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h108.6c0.6,0,1.2,0.5,1.2,1.2l0,0C160.7,177.3,160.2,177.9,159.6,177.9z"/>
<path class="st11" d="M59.6,184.9h-8.6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h8.6c0.6,0,1.2,0.5,1.2,1.2l0,0C60.7,184.3,60.2,184.9,59.6,184.9z"/>
<path class="st11" d="M73.6,184.9h-8.6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h8.6c0.6,0,1.2,0.5,1.2,1.2l0,0C74.7,184.3,74.2,184.9,73.6,184.9z"/>
<path class="st5" d="M159.6,191.9H50.9c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h108.6c0.6,0,1.2,0.5,1.2,1.2l0,0C160.7,191.3,160.2,191.9,159.6,191.9z"/>
<path class="st7" d="M59.6,198.9h-8.6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h8.6c0.6,0,1.2,0.5,1.2,1.2l0,0C60.7,198.3,60.2,198.9,59.6,198.9z"/>
<path class="st7" d="M73.6,198.9h-8.6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h8.6c0.6,0,1.2,0.5,1.2,1.2l0,0C74.7,198.3,74.2,198.9,73.6,198.9z"/>
<path class="st9" d="M34.2,199.5H16c-0.8,0-1.5-0.7-1.5-1.5v0c0-0.8,0.7-1.5,1.5-1.5h18.3c0.8,0,1.5,0.7,1.5,1.5v0C35.7,198.8,35,199.5,34.2,199.5z"/>
<path class="st11" d="M110.6,184.9H79.9c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h30.6c0.6,0,1.2,0.5,1.2,1.2l0,0C111.7,184.3,111.2,184.9,110.6,184.9z"/>
<path class="st7" d="M87.6,198.9h-8.6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h8.6c0.6,0,1.2,0.5,1.2,1.2l0,0C88.7,198.3,88.2,198.9,87.6,198.9z"/>
<path class="st7" d="M101.6,198.9h-8.6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h8.6c0.6,0,1.2,0.5,1.2,1.2l0,0C102.7,198.3,102.2,198.9,101.6,198.9z"/>
<path class="st12" d="M117.6,170.9H79.9c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h37.6c0.6,0,1.2,0.5,1.2,1.2l0,0C118.7,170.3,118.2,170.9,117.6,170.9z"/>
<path class="st10" d="M159.1,170.9h-4.6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h4.6c0.6,0,1.2,0.5,1.2,1.2l0,0C160.2,170.3,159.7,170.9,159.1,170.9z"/>
<circle class="st9" cx="17.6" cy="128.7" r="1.9"/>
<circle class="st7" cx="25.2" cy="128.7" r="1.9"/>
<circle class="st10" cx="32.8" cy="128.7" r="1.9"/>
<path class="st10" d="M159.1,184.9h-4.6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h4.6c0.6,0,1.2,0.5,1.2,1.2l0,0C160.2,184.3,159.7,184.9,159.1,184.9z"/>
<path class="st10" d="M159.1,198.9h-4.6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h4.6c0.6,0,1.2,0.5,1.2,1.2l0,0C160.2,198.3,159.7,198.9,159.1,198.9z"/>
<path class="st7" d="M75,130H43.2c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7H75c0.4,0,0.7,0.3,0.7,0.7l0,0C75.7,129.7,75.4,130,75,130z"/>
<path class="st7" d="M112,130H80.2c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7H112c0.4,0,0.7,0.3,0.7,0.7l0,0C112.7,129.7,112.4,130,112,130z"/>
</g>
<g class="screen">
<g class="st0">
<polygon class="st1" points="172.2,71.1 172.2,53.5 118.6,107.1 136.2,107.1"/>
<polygon class="st1" points="79.9,107.1 172.2,14.8 172.2,8.7 131.2,8.7 32.8,107.1"/>
<polygon class="st1" points="6,51.5 6,91.3 88.6,8.7 48.8,8.7"/>
</g>
<path class="st2" d="M175.2,123.9H5c-2.8,0-5-2.3-5-5v-6.2c0-2.8,2.3-5,5-5h170.1c2.8,0,5,2.3,5,5v6.2C180.2,121.6,178,123.9,175.2,123.9z"/>
<path class="st3" d="M175.2,0H5C2.3,0,0,2.3,0,5v105.2h180.2V5C180.2,2.3,178,0,175.2,0z M172.2,107.1H6V8.7h166.2V107.1z"/>
</g>
</svg>
I'm able to modify the SVG and I'm open for any ideas.
Link to my jsfiddle
Add svg into a div and set the height and overflow:hidden.
#keyframes scrolling {
0% {
transform: translateY(0);
}
100% {
transform: translateY(-400px);
}
}
.code {
animation: scrolling 5s linear infinite;
}
.svg-container {
height:124px;
width:180px;
overflow:hidden;
}
/* colors */
body{
display: flex;
justify-content: center;
background-color: #111116;
}
.st0 {
opacity: 0.17;
}
.st1 {
fill: #56aeec;
}
.st2 {
fill: #2c65cc;
}
.st3 {
fill: #2984d6;
}
.st4 {
fill: #ccccff;
}
.st5 {
fill: #8dfcff;
}
.st6 {
fill: #38e0eb;
}
.st7 {
fill: #e0fa09;
}
.st8 {
fill: #ff49a5;
}
.st9 {
fill: #ff3333;
}
.st10 {
fill: #00ff66;
}
.st11 {
fill: #ff6666;
}
.st12 {
fill: #ff66cc;
}
<div class="svg-container">
<svg width="180" height="375" viewBox="0 0 180 375">
<g class="code">
<path class="st4" d="M107.7,313.6h-6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h6c0.6,0,1.2,0.5,1.2,1.2l0,0C108.8,313.1,108.3,313.6,107.7,313.6z"/>
<path class="st5" d="M161,319.6h-94c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h94c0.6,0,1.2,0.5,1.2,1.2l0,0C162.1,319.1,161.6,319.6,161,319.6z"/>
<path class="st4" d="M51.7,319.6H36.9c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h14.8c0.6,0,1.2,0.5,1.2,1.2l0,0C52.8,319.1,52.3,319.6,51.7,319.6z"/>
<path class="st4" d="M134.7,313.6h-6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h6c0.6,0,1.2,0.5,1.2,1.2l0,0C135.8,313.1,135.3,313.6,134.7,313.6z"/>
<path class="st5" d="M120.7,313.6h-6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h6c0.6,0,1.2,0.5,1.2,1.2l0,0C121.8,313.1,121.3,313.6,120.7,313.6z"/>
<path class="st5" d="M147.7,313.6h-6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h6c0.6,0,1.2,0.5,1.2,1.2l0,0C148.8,313.1,148.3,313.6,147.7,313.6z"/>
<path class="st4" d="M160.7,313.6h-6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h6c0.6,0,1.2,0.5,1.2,1.2l0,0C161.8,313.1,161.3,313.6,160.7,313.6z"/>
<path class="st6" d="M51.7,313.6H16.7c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h34.9c0.6,0,1.2,0.5,1.2,1.2l0,0C52.8,313.1,52.3,313.6,51.7,313.6z"/>
<path class="st5" d="M95.6,313.6H60.6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h34.9c0.6,0,1.2,0.5,1.2,1.2l0,0C96.7,313.1,96.2,313.6,95.6,313.6z"/>
<path class="st4" d="M28.6,319.6H16.6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h11.9c0.6,0,1.2,0.5,1.2,1.2l0,0C29.7,319.1,29.2,319.6,28.6,319.6z"/>
<path class="st6" d="M25.2,330.5H17c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h8.3c0.8,0,1.5,0.7,1.5,1.5l0,0C26.7,329.8,26,330.5,25.2,330.5z"/>
<path class="st6" d="M25.2,337.5H17c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h8.3c0.8,0,1.5,0.7,1.5,1.5l0,0C26.7,336.8,26,337.5,25.2,337.5z"/>
<path class="st6" d="M25.2,344.5H17c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h8.3c0.8,0,1.5,0.7,1.5,1.5l0,0C26.7,343.8,26,344.5,25.2,344.5z"/>
<path class="st7" d="M35.2,351.5H17c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h18.3c0.8,0,1.5,0.7,1.5,1.5l0,0C36.7,350.8,36,351.5,35.2,351.5z"/>
<path class="st8" d="M35.2,358.5H17c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h18.3c0.8,0,1.5,0.7,1.5,1.5l0,0C36.7,357.8,36,358.5,35.2,358.5z"/>
<path class="st9" d="M35.2,365.5H17c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h18.3c0.8,0,1.5,0.7,1.5,1.5l0,0C36.7,364.8,36,365.5,35.2,365.5z"/>
<path class="st9" d="M60.2,330.5H42c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h18.3c0.8,0,1.5,0.7,1.5,1.5l0,0C61.7,329.8,61,330.5,60.2,330.5z"/>
<path class="st8" d="M60.2,337.5H42c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h18.3c0.8,0,1.5,0.7,1.5,1.5l0,0C61.7,336.8,61,337.5,60.2,337.5z"/>
<path class="st7" d="M60.2,344.5H42c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h18.3c0.8,0,1.5,0.7,1.5,1.5l0,0C61.7,343.8,61,344.5,60.2,344.5z"/>
<path class="st6" d="M60.2,351.5h-8c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h8c0.8,0,1.5,0.7,1.5,1.5l0,0C61.7,350.8,61,351.5,60.2,351.5z"/>
<path class="st6" d="M60.2,358.5h-8c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h8c0.8,0,1.5,0.7,1.5,1.5l0,0C61.7,357.8,61,358.5,60.2,358.5z"/>
<path class="st6" d="M60.2,365.5h-8c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h8c0.8,0,1.5,0.7,1.5,1.5l0,0C61.7,364.8,61,365.5,60.2,365.5z"/>
<path class="st6" d="M92.2,330.5H74c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h18.3c0.8,0,1.5,0.7,1.5,1.5l0,0C93.7,329.8,93,330.5,92.2,330.5z"/>
<path class="st6" d="M92.2,337.5H74c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h18.3c0.8,0,1.5,0.7,1.5,1.5l0,0C93.7,336.8,93,337.5,92.2,337.5z"/>
<path class="st6" d="M92.2,344.5H74c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h18.3c0.8,0,1.5,0.7,1.5,1.5l0,0C93.7,343.8,93,344.5,92.2,344.5z"/>
<path class="st7" d="M82.2,351.5H74c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h8.3c0.8,0,1.5,0.7,1.5,1.5l0,0C83.7,350.8,83,351.5,82.2,351.5z"/>
<path class="st8" d="M82.2,358.5H74c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h8.3c0.8,0,1.5,0.7,1.5,1.5l0,0C83.7,357.8,83,358.5,82.2,358.5z"/>
<path class="st9" d="M82.2,365.5H74c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h8.3c0.8,0,1.5,0.7,1.5,1.5l0,0C83.7,364.8,83,365.5,82.2,365.5z"/>
<path class="st9" d="M117.2,330.5h-8c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h8c0.8,0,1.5,0.7,1.5,1.5l0,0C118.7,329.8,118,330.5,117.2,330.5z"/>
<path class="st8" d="M117.2,337.5h-8c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h8c0.8,0,1.5,0.7,1.5,1.5l0,0C118.7,336.8,118,337.5,117.2,337.5z"/>
<path class="st7" d="M117.2,344.5h-8c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h8c0.8,0,1.5,0.7,1.5,1.5l0,0C118.7,343.8,118,344.5,117.2,344.5z"/>
<path class="st6" d="M117.2,351.5h-18c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h18c0.8,0,1.5,0.7,1.5,1.5l0,0C118.7,350.8,118,351.5,117.2,351.5z"/>
<path class="st6" d="M117.2,358.5h-18c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h18c0.8,0,1.5,0.7,1.5,1.5l0,0C118.7,357.8,118,358.5,117.2,358.5z"/>
<path class="st6" d="M117.2,365.5h-18c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h18c0.8,0,1.5,0.7,1.5,1.5l0,0C118.7,364.8,118,365.5,117.2,365.5z"/>
<path class="st10" d="M156,329h-23.6c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7H156c0.4,0,0.7,0.3,0.7,0.7l0,0C156.7,328.7,156.4,329,156,329z"/>
<path class="st8" d="M156,334.9h-23.6c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7H156c0.4,0,0.7,0.3,0.7,0.7l0,0C156.7,334.6,156.4,334.9,156,334.9z"/>
<path class="st10" d="M156,340.9h-23.6c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7H156c0.4,0,0.7,0.3,0.7,0.7l0,0C156.7,340.6,156.4,340.9,156,340.9z"/>
<path class="st7" d="M156,346.8h-23.6c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7H156c0.4,0,0.7,0.3,0.7,0.7l0,0C156.7,346.5,156.4,346.8,156,346.8z"/>
<path class="st10" d="M156,352.8h-23.6c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7H156c0.4,0,0.7,0.3,0.7,0.7l0,0C156.7,352.5,156.4,352.8,156,352.8z"/>
<path class="st9" d="M156,358.7h-23.6c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7H156c0.4,0,0.7,0.3,0.7,0.7l0,0C156.7,358.4,156.4,358.7,156,358.7z"/>
<path class="st10" d="M156,364.7h-23.6c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7H156c0.4,0,0.7,0.3,0.7,0.7l0,0C156.7,364.4,156.4,364.7,156,364.7z"/>
<path class="st9" d="M35.2,371.5H17c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h18.3c0.8,0,1.5,0.7,1.5,1.5l0,0C36.7,370.8,36,371.5,35.2,371.5z"/>
<path class="st6" d="M60.2,371.5h-8c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h8c0.8,0,1.5,0.7,1.5,1.5l0,0C61.7,370.8,61,371.5,60.2,371.5z"/>
<path class="st9" d="M82.2,371.5H74c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h8.3c0.8,0,1.5,0.7,1.5,1.5l0,0C83.7,370.8,83,371.5,82.2,371.5z"/>
<path class="st6" d="M117.2,371.5h-18c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h18c0.8,0,1.5,0.7,1.5,1.5l0,0C118.7,370.8,118,371.5,117.2,371.5z"/>
<path class="st10" d="M156,370.7h-23.6c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7H156c0.4,0,0.7,0.3,0.7,0.7l0,0C156.7,370.4,156.4,370.7,156,370.7z"/>
<path class="st5" d="M126,224.6h-94c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h94c0.6,0,1.2,0.5,1.2,1.2l0,0C127.1,224.1,126.6,224.6,126,224.6z"/>
<path class="st6" d="M75.8,217.5H16c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h59.9c0.8,0,1.5,0.7,1.5,1.5l0,0C77.3,216.8,76.7,217.5,75.8,217.5z"/>
<path class="st6" d="M21.7,224.6h-6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h6c0.6,0,1.2,0.5,1.2,1.2l0,0C22.8,224.1,22.3,224.6,21.7,224.6z"/>
<path class="st7" d="M64.6,231H16.2c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7h48.4c0.4,0,0.7,0.3,0.7,0.7l0,0C65.3,230.7,65,231,64.6,231z"/>
<path class="st7" d="M64.6,236.9H16.2c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7h48.4c0.4,0,0.7,0.3,0.7,0.7l0,0C65.3,236.6,65,236.9,64.6,236.9z"/>
<path class="st7" d="M64.6,242.8H16.2c-0.4,0-0.7-0.3-0.7-0.7v0c0-0.4,0.3-0.7,0.7-0.7h48.4c0.4,0,0.7,0.3,0.7,0.7v0C65.3,242.4,65,242.8,64.6,242.8z"/>
<path class="st10" d="M64.6,248.6H16.2c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7h48.4c0.4,0,0.7,0.3,0.7,0.7l0,0C65.3,248.3,65,248.6,64.6,248.6z"/>
<path class="st7" d="M23.6,254.5h-7.4c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7h7.4c0.4,0,0.7,0.3,0.7,0.7l0,0C24.3,254.2,23.9,254.5,23.6,254.5z"/>
<path class="st7" d="M36.4,254.5h-7.4c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7h7.4c0.4,0,0.7,0.3,0.7,0.7l0,0C37.2,254.2,36.8,254.5,36.4,254.5z"/>
<path class="st7" d="M49.3,254.5h-7.4c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7h7.4c0.4,0,0.7,0.3,0.7,0.7l0,0C50.1,254.2,49.7,254.5,49.3,254.5z"/>
<path class="st7" d="M62.2,254.5h-7.4c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7h7.4c0.4,0,0.7,0.3,0.7,0.7l0,0C62.9,254.2,62.6,254.5,62.2,254.5z"/>
<path class="st7" d="M75.1,254.5h-7.4c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7h7.4c0.4,0,0.7,0.3,0.7,0.7l0,0C75.8,254.2,75.5,254.5,75.1,254.5z"/>
<path class="st7" d="M88,254.5h-7.4c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7H88c0.4,0,0.7,0.3,0.7,0.7l0,0C88.7,254.2,88.4,254.5,88,254.5z"/>
<path class="st7" d="M64.6,260.4H16.2c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7h48.4c0.4,0,0.7,0.3,0.7,0.7l0,0C65.3,260.1,65,260.4,64.6,260.4z"/>
<path class="st11" d="M164.1,235.8h-59.4c-0.6,0-1-0.5-1-1l0,0c0-0.6,0.5-1,1-1h59.4c0.6,0,1,0.5,1,1l0,0C165.1,235.4,164.7,235.8,164.1,235.8z"/>
<path class="st11" d="M130.7,242.7h-26c-0.6,0-1-0.5-1-1v0c0-0.6,0.5-1,1-1h26c0.6,0,1,0.5,1,1v0C131.7,242.2,131.3,242.7,130.7,242.7z"/>
<path class="st11" d="M164.1,242.7h-27.4c-0.6,0-1-0.5-1-1l0,0c0-0.6,0.5-1,1-1h27.4c0.6,0,1,0.5,1,1l0,0C165.1,242.2,164.7,242.7,164.1,242.7z"/>
<path class="st7" d="M164.1,260.9h-59.4c-0.6,0-1-0.5-1-1l0,0c0-0.6,0.5-1,1-1h59.4c0.6,0,1,0.5,1,1l0,0C165.1,260.5,164.7,260.9,164.1,260.9z"/>
<path class="st10" d="M164.1,266.2h-59.4c-0.6,0-1-0.5-1-1l0,0c0-0.6,0.5-1,1-1h59.4c0.6,0,1,0.5,1,1l0,0C165.1,265.7,164.7,266.2,164.1,266.2z"/>
<path class="st5" d="M30.9,289.1H16.7c-0.6,0-1-0.5-1-1l0,0c0-0.6,0.5-1,1-1h14.2c0.6,0,1,0.5,1,1l0,0C31.9,288.6,31.4,289.1,30.9,289.1z"/>
<path class="st5" d="M30.9,285H16.7c-0.6,0-1-0.5-1-1l0,0c0-0.6,0.5-1,1-1h14.2c0.6,0,1,0.5,1,1l0,0C31.9,284.5,31.4,285,30.9,285z"/>
<path class="st5" d="M30.9,280.8H16.7c-0.6,0-1-0.5-1-1l0,0c0-0.6,0.5-1,1-1h14.2c0.6,0,1,0.5,1,1l0,0C31.9,280.4,31.4,280.8,30.9,280.8z"/>
<path class="st5" d="M30.9,276.7H16.7c-0.6,0-1-0.5-1-1l0,0c0-0.6,0.5-1,1-1h14.2c0.6,0,1,0.5,1,1l0,0C31.9,276.3,31.4,276.7,30.9,276.7z"/>
<path class="st10" d="M53.3,276.7H49c-0.6,0-1-0.5-1-1l0,0c0-0.6,0.5-1,1-1h4.3c0.6,0,1,0.5,1,1l0,0C54.3,276.3,53.9,276.7,53.3,276.7z"/>
<path class="st10" d="M43.3,285H39c-0.6,0-1-0.5-1-1l0,0c0-0.6,0.5-1,1-1h4.3c0.6,0,1,0.5,1,1l0,0C44.3,284.5,43.9,285,43.3,285z"/>
<path class="st10" d="M53.3,280.8H49c-0.6,0-1-0.5-1-1l0,0c0-0.6,0.5-1,1-1h4.3c0.6,0,1,0.5,1,1l0,0C54.3,280.4,53.9,280.8,53.3,280.8z"/>
<path class="st10" d="M43.3,289.1H39c-0.6,0-1-0.5-1-1l0,0c0-0.6,0.5-1,1-1h4.3c0.6,0,1,0.5,1,1l0,0C44.3,288.6,43.9,289.1,43.3,289.1z"/>
<path class="st10" d="M62.3,285H58c-0.6,0-1-0.5-1-1l0,0c0-0.6,0.5-1,1-1h4.3c0.6,0,1,0.5,1,1l0,0C63.3,284.5,62.9,285,62.3,285z"/>
<path class="st10" d="M62.3,289.1H58c-0.6,0-1-0.5-1-1l0,0c0-0.6,0.5-1,1-1h4.3c0.6,0,1,0.5,1,1l0,0C63.3,288.6,62.9,289.1,62.3,289.1z"/>
<path class="st10" d="M71.3,276.7H67c-0.6,0-1-0.5-1-1l0,0c0-0.6,0.5-1,1-1h4.3c0.6,0,1,0.5,1,1l0,0C72.3,276.3,71.9,276.7,71.3,276.7z"/>
<path class="st10" d="M71.3,280.8H67c-0.6,0-1-0.5-1-1l0,0c0-0.6,0.5-1,1-1h4.3c0.6,0,1,0.5,1,1l0,0C72.3,280.4,71.9,280.8,71.3,280.8z"/>
<path class="st11" d="M130.7,247.7h-26c-0.6,0-1-0.5-1-1v0c0-0.6,0.5-1,1-1h26c0.6,0,1,0.5,1,1v0C131.7,247.2,131.3,247.7,130.7,247.7z"/>
<path class="st11" d="M164.1,247.7h-27.4c-0.6,0-1-0.5-1-1l0,0c0-0.6,0.5-1,1-1h27.4c0.6,0,1,0.5,1,1l0,0C165.1,247.2,164.7,247.7,164.1,247.7z"/>
<path class="st8" d="M134,276h-30c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7h30c0.4,0,0.7,0.3,0.7,0.7l0,0C134.7,275.7,134.4,276,134,276z"/>
<path class="st7" d="M163.6,280.9h-43.2c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7h43.2c0.4,0,0.7,0.3,0.7,0.7l0,0C164.3,280.6,164,280.9,163.6,280.9z"/>
<path class="st8" d="M143.2,284.8h-39c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7h39c0.4,0,0.7,0.3,0.7,0.7l0,0C143.9,284.4,143.6,284.8,143.2,284.8z"/>
<path class="st8" d="M162.7,288.6h-35.2c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7h35.2c0.4,0,0.7,0.3,0.7,0.7l0,0C163.4,288.3,163.1,288.6,162.7,288.6z"/>
<path class="st8" d="M164,271.4h-59.8c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7H164c0.4,0,0.7,0.3,0.7,0.7l0,0C164.7,271.1,164.4,271.4,164,271.4z"/>
<path class="st4" d="M21.7,137.6h-6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h6c0.6,0,1.2,0.5,1.2,1.2l0,0C22.8,137.1,22.3,137.6,21.7,137.6z"/>
<path class="st5" d="M160,144.6h-94c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h94c0.6,0,1.2,0.5,1.2,1.2l0,0C161.1,144.1,160.6,144.6,160,144.6z"/>
<path class="st6" d="M75.8,151.5H16c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h59.9c0.8,0,1.5,0.7,1.5,1.5l0,0C77.3,150.8,76.7,151.5,75.8,151.5z"/>
<path class="st6" d="M48.7,144.6h-6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h6c0.6,0,1.2,0.5,1.2,1.2l0,0C49.8,144.1,49.3,144.6,48.7,144.6z"/>
<path class="st4" d="M48.7,137.6h-6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h6c0.6,0,1.2,0.5,1.2,1.2l0,0C49.8,137.1,49.3,137.6,48.7,137.6z"/>
<path class="st5" d="M34.7,137.6h-6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h6c0.6,0,1.2,0.5,1.2,1.2l0,0C35.8,137.1,35.3,137.6,34.7,137.6z"/>
<path class="st5" d="M61.7,137.6h-6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h6c0.6,0,1.2,0.5,1.2,1.2l0,0C62.8,137.1,62.3,137.6,61.7,137.6z"/>
<path class="st4" d="M74.7,137.6h-6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h6c0.6,0,1.2,0.5,1.2,1.2l0,0C75.8,137.1,75.3,137.6,74.7,137.6z"/>
<path class="st6" d="M111.6,137.6H80.6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h30.9c0.6,0,1.2,0.5,1.2,1.2l0,0C112.7,137.1,112.2,137.6,111.6,137.6z"/>
<path class="st5" d="M159.6,137.6h-34.9c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h34.9c0.6,0,1.2,0.5,1.2,1.2l0,0C160.7,137.1,160.2,137.6,159.6,137.6z"/>
<path class="st6" d="M34.7,144.6h-6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h6c0.6,0,1.2,0.5,1.2,1.2l0,0C35.8,144.1,35.3,144.6,34.7,144.6z"/>
<path class="st8" d="M75.8,157.5H16c-0.8,0-1.5-0.7-1.5-1.5l0,0c0-0.8,0.7-1.5,1.5-1.5h59.9c0.8,0,1.5,0.7,1.5,1.5l0,0C77.3,156.8,76.7,157.5,75.8,157.5z"/>
<path class="st6" d="M34.2,164.5H16c-0.8,0-1.5-0.7-1.5-1.5v0c0-0.8,0.7-1.5,1.5-1.5h18.3c0.8,0,1.5,0.7,1.5,1.5v0C35.7,163.8,35,164.5,34.2,164.5z"/>
<path class="st6" d="M34.2,171.5H16c-0.8,0-1.5-0.7-1.5-1.5v0c0-0.8,0.7-1.5,1.5-1.5h18.3c0.8,0,1.5,0.7,1.5,1.5v0C35.7,170.8,35,171.5,34.2,171.5z"/>
<path class="st6" d="M34.2,178.5H16c-0.8,0-1.5-0.7-1.5-1.5v0c0-0.8,0.7-1.5,1.5-1.5h18.3c0.8,0,1.5,0.7,1.5,1.5v0C35.7,177.8,35,178.5,34.2,178.5z"/>
<path class="st6" d="M34.2,185.5H16c-0.8,0-1.5-0.7-1.5-1.5v0c0-0.8,0.7-1.5,1.5-1.5h18.3c0.8,0,1.5,0.7,1.5,1.5v0C35.7,184.8,35,185.5,34.2,185.5z"/>
<path class="st6" d="M34.2,192.5H16c-0.8,0-1.5-0.7-1.5-1.5v0c0-0.8,0.7-1.5,1.5-1.5h18.3c0.8,0,1.5,0.7,1.5,1.5v0C35.7,191.8,35,192.5,34.2,192.5z"/>
<path class="st5" d="M159.6,163.9H50.9c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h108.6c0.6,0,1.2,0.5,1.2,1.2l0,0C160.7,163.3,160.2,163.9,159.6,163.9z"/>
<path class="st12" d="M59.6,170.9h-8.6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h8.6c0.6,0,1.2,0.5,1.2,1.2l0,0C60.7,170.3,60.2,170.9,59.6,170.9z"/>
<path class="st12" d="M73.6,170.9h-8.6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h8.6c0.6,0,1.2,0.5,1.2,1.2l0,0C74.7,170.3,74.2,170.9,73.6,170.9z"/>
<path class="st5" d="M159.6,177.9H50.9c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h108.6c0.6,0,1.2,0.5,1.2,1.2l0,0C160.7,177.3,160.2,177.9,159.6,177.9z"/>
<path class="st11" d="M59.6,184.9h-8.6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h8.6c0.6,0,1.2,0.5,1.2,1.2l0,0C60.7,184.3,60.2,184.9,59.6,184.9z"/>
<path class="st11" d="M73.6,184.9h-8.6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h8.6c0.6,0,1.2,0.5,1.2,1.2l0,0C74.7,184.3,74.2,184.9,73.6,184.9z"/>
<path class="st5" d="M159.6,191.9H50.9c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h108.6c0.6,0,1.2,0.5,1.2,1.2l0,0C160.7,191.3,160.2,191.9,159.6,191.9z"/>
<path class="st7" d="M59.6,198.9h-8.6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h8.6c0.6,0,1.2,0.5,1.2,1.2l0,0C60.7,198.3,60.2,198.9,59.6,198.9z"/>
<path class="st7" d="M73.6,198.9h-8.6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h8.6c0.6,0,1.2,0.5,1.2,1.2l0,0C74.7,198.3,74.2,198.9,73.6,198.9z"/>
<path class="st9" d="M34.2,199.5H16c-0.8,0-1.5-0.7-1.5-1.5v0c0-0.8,0.7-1.5,1.5-1.5h18.3c0.8,0,1.5,0.7,1.5,1.5v0C35.7,198.8,35,199.5,34.2,199.5z"/>
<path class="st11" d="M110.6,184.9H79.9c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h30.6c0.6,0,1.2,0.5,1.2,1.2l0,0C111.7,184.3,111.2,184.9,110.6,184.9z"/>
<path class="st7" d="M87.6,198.9h-8.6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h8.6c0.6,0,1.2,0.5,1.2,1.2l0,0C88.7,198.3,88.2,198.9,87.6,198.9z"/>
<path class="st7" d="M101.6,198.9h-8.6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h8.6c0.6,0,1.2,0.5,1.2,1.2l0,0C102.7,198.3,102.2,198.9,101.6,198.9z"/>
<path class="st12" d="M117.6,170.9H79.9c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h37.6c0.6,0,1.2,0.5,1.2,1.2l0,0C118.7,170.3,118.2,170.9,117.6,170.9z"/>
<path class="st10" d="M159.1,170.9h-4.6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h4.6c0.6,0,1.2,0.5,1.2,1.2l0,0C160.2,170.3,159.7,170.9,159.1,170.9z"/>
<circle class="st9" cx="17.6" cy="128.7" r="1.9"/>
<circle class="st7" cx="25.2" cy="128.7" r="1.9"/>
<circle class="st10" cx="32.8" cy="128.7" r="1.9"/>
<path class="st10" d="M159.1,184.9h-4.6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h4.6c0.6,0,1.2,0.5,1.2,1.2l0,0C160.2,184.3,159.7,184.9,159.1,184.9z"/>
<path class="st10" d="M159.1,198.9h-4.6c-0.6,0-1.2-0.5-1.2-1.2l0,0c0-0.6,0.5-1.2,1.2-1.2h4.6c0.6,0,1.2,0.5,1.2,1.2l0,0C160.2,198.3,159.7,198.9,159.1,198.9z"/>
<path class="st7" d="M75,130H43.2c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7H75c0.4,0,0.7,0.3,0.7,0.7l0,0C75.7,129.7,75.4,130,75,130z"/>
<path class="st7" d="M112,130H80.2c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7H112c0.4,0,0.7,0.3,0.7,0.7l0,0C112.7,129.7,112.4,130,112,130z"/>
</g>
<g class="screen">
<g class="st0">
<polygon class="st1" points="172.2,71.1 172.2,53.5 118.6,107.1 136.2,107.1"/>
<polygon class="st1" points="79.9,107.1 172.2,14.8 172.2,8.7 131.2,8.7 32.8,107.1"/>
<polygon class="st1" points="6,51.5 6,91.3 88.6,8.7 48.8,8.7"/>
</g>
<path class="st2" d="M175.2,123.9H5c-2.8,0-5-2.3-5-5v-6.2c0-2.8,2.3-5,5-5h170.1c2.8,0,5,2.3,5,5v6.2C180.2,121.6,178,123.9,175.2,123.9z"/>
<path class="st3" d="M175.2,0H5C2.3,0,0,2.3,0,5v105.2h180.2V5C180.2,2.3,178,0,175.2,0z M172.2,107.1H6V8.7h166.2V107.1z"/>
</g>
</svg>
</div>

SVG hover won't work in Firefox

I have a fairly large SVG and there are specific paths that change when hovered on. This works in Chrome but not Firefox.
Each section that is to be animated is nested in a link tag, the hover effect is to make it look like the section is expanding. Any assistance as to why this does not work in Firefox is appreciated. Also not that looking through the debugger it appears Firefox recognize the hover event but is ignore the new path.
#matrice1:hover #sec1 {
d: path("M480.03,200.899l68.21-175.566C509.431,10.447,450.037,0,405.989,0 l-0.106,187.383C431.991,187.383,456.979,192.173,480.03,200.899");
}
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 808 798" enable-background="new 0 0 800 798">
<a href="#" class="matrixSection matrixNav" onclick="animateMatrix(1)" id="matrice1">
<path clip-path="url(#SVGID_4_)" id="sec1" fill="#E7223B" d="M480.03,200.899l50.842-130.106c-38.81-14.886-80.941-23.066-124.989-23.066
v139.656C431.991,187.383,456.979,192.173,480.03,200.899"/>
<path clip-path="url(#SVGID_4_)" fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" d="M480.03,200.899
l50.842-130.106c-38.81-14.886-80.941-23.066-124.989-23.066v139.656C431.991,187.383,456.979,192.173,480.03,200.899z"/>
<path clip-path="url(#SVGID_4_)" fill="#932826" d="M475.407,212.728l4.623-11.829c-23.051-8.727-48.039-13.517-74.147-13.517
v12.695C430.36,200.078,453.789,204.56,475.407,212.728"/>
<path clip-path="url(#SVGID_4_)" fill="none" stroke="#FFFFFF" stroke-miterlimit="10" d="M475.407,212.728l4.623-11.829
c-23.051-8.727-48.039-13.517-74.147-13.517v12.695C430.36,200.078,453.789,204.56,475.407,212.728z"/>
<path clip-path="url(#SVGID_4_)" fill="#932826" d="M450.935,275.354l24.473-62.626c-21.618-8.166-45.047-12.649-69.524-12.649
v67.277C421.72,267.354,436.894,270.184,450.935,275.354"/>
<path clip-path="url(#SVGID_4_)" fill="none" stroke="#FFFFFF" stroke-miterlimit="10" d="M450.935,275.354l24.473-62.626
c-21.618-8.166-45.047-12.649-69.524-12.649v67.277C421.72,267.354,436.894,270.184,450.935,275.354z"/>
<path clip-path="url(#SVGID_4_)" fill="#E7223B" d="M447.761,283.476l3.174-8.122c-14.041-5.17-29.215-7.999-45.052-7.999v8.723
C420.599,276.078,434.704,278.69,447.761,283.476"/>
<path clip-path="url(#SVGID_4_)" fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" d="M447.761,283.476
l3.174-8.122c-14.041-5.17-29.215-7.999-45.052-7.999v8.723C420.599,276.078,434.704,278.69,447.761,283.476z"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M455.612,229.054c0.185-0.848,1.027-1.384,1.874-1.198
c0.85,0.186,1.386,1.024,1.198,1.875c-0.187,0.849-1.024,1.386-1.873,1.199C455.963,230.743,455.424,229.904,455.612,229.054"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M458.478,231.918c1.02,0.324,1.645,1.38,1.41,2.45l-0.113,0.51l-0.049,0.224
l-0.777,3.525c-0.07,0.327-0.397,0.536-0.727,0.463c-0.328-0.072-0.535-0.397-0.464-0.725l0.806-3.658
c0.03-0.138,0.031-0.332-0.22-0.389c-0.175-0.039-0.251,0.137-0.282,0.255l-2.412,10.964c-0.104,0.473-0.568,0.771-1.044,0.668
c-0.474-0.105-0.772-0.572-0.669-1.044l1.39-6.319c0.012-0.07,0.027-0.257-0.188-0.305h-0.003
c-0.218-0.048-0.282,0.127-0.301,0.198l-1.389,6.319c-0.104,0.471-0.57,0.772-1.045,0.667c-0.474-0.104-0.771-0.573-0.666-1.043
l2.411-10.967c0.021-0.118,0.021-0.311-0.149-0.35c-0.252-0.054-0.331,0.124-0.362,0.261l-0.803,3.659
c-0.073,0.326-0.4,0.537-0.729,0.464c-0.328-0.072-0.534-0.399-0.463-0.726l0.775-3.527l0.05-0.222l0.112-0.512
c0.234-1.07,1.245-1.767,2.312-1.632c0.033,0.004,0.073,0.007,0.111,0.016l1.686,0.371l1.676,0.368
C458.404,231.891,458.438,231.905,458.478,231.918"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M446.297,227.854c0.176-0.805-0.327-1.601-1.134-1.777
c-0.805-0.177-1.602,0.333-1.776,1.137c-0.177,0.802,0.33,1.597,1.136,1.775C445.326,229.166,446.12,228.657,446.297,227.854"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M441.185,230.184l-2.075,3.672c0,0-0.374,0.674,0.198,0.989
c0.568,0.315,0.909-0.351,0.909-0.351l1.699-3.072c0,0,0.106-0.241,0.287-0.144c0.178,0.097,0.047,0.351,0.047,0.351l-3.053,5.788
l1.577,0.347l-0.969,4.41c-0.092,0.419,0.174,0.832,0.592,0.924c0.42,0.092,0.833-0.173,0.924-0.591l0.971-4.41l0.217,0.046
l0.214,0.045l-0.972,4.413c-0.091,0.419,0.173,0.832,0.593,0.923c0.422,0.095,0.835-0.173,0.926-0.59l0.971-4.411l1.578,0.348
l-0.341-6.533c0,0-0.014-0.285,0.188-0.3c0.202-0.012,0.2,0.252,0.2,0.252l0.252,3.502c0,0,0.031,0.745,0.678,0.699
c0.655-0.045,0.596-0.815,0.596-0.815l-0.342-4.206c0,0-0.181-1.23-1.139-1.442l-1.543-0.339l-1.542-0.34
C441.868,229.142,441.185,230.184,441.185,230.184"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M437.58,225.936c0.176-0.804-0.328-1.601-1.133-1.777
c-0.805-0.177-1.601,0.333-1.778,1.137c-0.177,0.803,0.332,1.599,1.136,1.775C436.608,227.249,437.402,226.741,437.58,225.936"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M432.469,228.268l-2.075,3.671c0,0-0.376,0.675,0.198,0.99
c0.568,0.316,0.908-0.348,0.908-0.348l1.699-3.072c0,0,0.107-0.243,0.286-0.146c0.18,0.097,0.047,0.351,0.047,0.351l-3.052,5.787
l1.578,0.347l-0.971,4.412c-0.091,0.417,0.178,0.831,0.595,0.923c0.417,0.092,0.831-0.174,0.924-0.592l0.969-4.41l0.219,0.047
l0.214,0.048l-0.973,4.411c-0.09,0.417,0.173,0.832,0.594,0.924c0.418,0.093,0.833-0.173,0.924-0.59l0.972-4.412l1.577,0.348
l-0.34-6.533c0,0-0.016-0.286,0.187-0.3c0.203-0.014,0.201,0.253,0.201,0.253l0.252,3.5c0,0,0.03,0.746,0.677,0.7
c0.654-0.046,0.595-0.816,0.595-0.816l-0.341-4.205c0,0-0.179-1.231-1.14-1.442l-1.54-0.339l-1.544-0.339
C433.151,227.225,432.469,228.268,432.469,228.268"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M449.394,237.072c0.669,0.146,1.327-0.277,1.476-0.947
c0.148-0.669-0.274-1.329-0.944-1.477c-0.669-0.146-1.331,0.274-1.477,0.945C448.299,236.263,448.722,236.926,449.394,237.072"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M445.659,240.196c-0.088,0.129-0.204,0.417,0.053,0.612
c0.298,0.228,0.556-0.054,0.556-0.054l1.118-1.954c0,0,0.144-0.117,0.116,0.029l-1.088,4.944h0.004
c-0.077,0.343,0.139,0.681,0.483,0.758c0.342,0.074,0.682-0.142,0.757-0.485l0.43-1.951c0,0,0.023-0.284,0.249-0.235
c0.221,0.049,0.126,0.318,0.126,0.318l-0.429,1.949c-0.076,0.345,0.143,0.684,0.486,0.758c0.343,0.076,0.684-0.14,0.759-0.483
l1.088-4.945c0.028-0.144,0.085-0.024,0.085-0.024l0.2,1.55c0,0,0.082,0.693,0.145,0.737c0.212,0.149,0.505,0.098,0.657-0.117
c0.097-0.137,0.108-0.308,0.044-0.454l0.008-0.002c-0.008-0.049-0.354-2.074-0.385-2.351c-0.099-0.857-0.595-0.96-1.072-1.079
c-0.478-0.118-0.766-0.169-0.766-0.169s-0.303-0.079-0.942-0.201c-0.635-0.118-0.903,0.163-1.992,1.799
c-0.158,0.236-0.677,0.997-0.692,1.047L445.659,240.196z"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M424.761,222.271c0.188-0.849-0.35-1.688-1.2-1.876
c-0.847-0.187-1.686,0.351-1.871,1.201c-0.188,0.847,0.346,1.689,1.195,1.874C423.732,223.656,424.574,223.119,424.761,222.271"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M420.961,223.667c-1.065-0.135-2.075,0.563-2.311,1.632l-0.112,0.509
l-0.048,0.224l-0.777,3.526c-0.07,0.33,0.137,0.654,0.467,0.728c0.329,0.071,0.655-0.135,0.727-0.464l0.805-3.658
c0.029-0.139,0.11-0.315,0.361-0.258c0.174,0.038,0.167,0.229,0.15,0.347l-2.411,10.966c-0.104,0.473,0.191,0.941,0.667,1.045
c0.474,0.104,0.939-0.197,1.044-0.668l1.391-6.32c0.018-0.069,0.08-0.243,0.299-0.196c0.218,0.048,0.204,0.234,0.193,0.305
l-1.392,6.318c-0.103,0.472,0.195,0.942,0.667,1.047c0.473,0.103,0.939-0.199,1.046-0.669l2.411-10.967
c0.031-0.116,0.109-0.29,0.282-0.254c0.25,0.056,0.248,0.25,0.219,0.389l-0.805,3.658c-0.072,0.326,0.137,0.653,0.465,0.726
c0.329,0.073,0.654-0.137,0.727-0.465l0.775-3.524l0.049-0.225l0.111-0.51c0.236-1.07-0.388-2.127-1.412-2.45
c-0.033-0.012-0.068-0.023-0.11-0.035l-1.682-0.371l-1.679-0.368C421.037,223.673,420.996,223.671,420.961,223.667"/>
<line clip-path="url(#SVGID_4_)" fill="none" stroke="#FFFFFF" stroke-width="1.307" stroke-linecap="round" stroke-miterlimit="10" x1="418.099" y1="230.292" x2="415.143" y2="237.227"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M425.78,231.214c-0.054-0.143-0.172-0.256-0.328-0.289
c-0.244-0.053-0.484,0.101-0.538,0.344c-0.016,0.071,0,0.202,0,0.202l0.735,2.477c0,0,0.04,0.17,0.01,0.309l-1.044,4.745h0.005
c-0.074,0.333,0.133,0.656,0.465,0.728c0.33,0.074,0.652-0.134,0.726-0.464l0.412-1.875c0,0,0.025-0.27,0.238-0.225
c0.213,0.048,0.121,0.305,0.121,0.305l-0.411,1.875c-0.074,0.33,0.137,0.654,0.467,0.727c0.329,0.071,0.656-0.135,0.729-0.465
l1.045-4.747c0.029-0.14,0.137-0.275,0.137-0.275l1.578-1.792c0,0,0.202-0.262,0.218-0.332c0.054-0.242-0.101-0.484-0.344-0.538
c-0.162-0.036-0.315,0.02-0.42,0.125l-0.005-0.003c-0.042,0.022-0.829,0.906-1.055,1.049c-0.243,0.158-0.413,0.096-0.413,0.096
l-0.737-0.163l-0.732-0.161c0,0-0.183-0.016-0.335-0.259c-0.148-0.229-0.488-1.358-0.518-1.397L425.78,231.214z"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M427.538,232.267c0.671,0.146,1.33-0.276,1.479-0.947
c0.147-0.669-0.274-1.329-0.944-1.477c-0.67-0.146-1.329,0.274-1.477,0.945C426.445,231.457,426.87,232.12,427.538,232.267"/>
<polygon clip-path="url(#SVGID_4_)" fill="#FFFFFF" points="427.168,233.967 428.316,235.267 428.438,237.805 426.421,237.361
424.399,236.917 425.577,234.664 "/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M455.612,229.054c0.185-0.848,1.027-1.384,1.874-1.198
c0.85,0.186,1.386,1.024,1.198,1.875c-0.187,0.849-1.024,1.386-1.873,1.199C455.963,230.743,455.424,229.904,455.612,229.054"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M458.478,231.918c1.02,0.324,1.645,1.38,1.41,2.45l-0.113,0.51l-0.049,0.224
l-0.777,3.525c-0.07,0.327-0.397,0.536-0.727,0.463c-0.328-0.072-0.535-0.397-0.464-0.725l0.806-3.658
c0.03-0.138,0.031-0.332-0.22-0.389c-0.175-0.039-0.251,0.137-0.282,0.255l-2.412,10.964c-0.104,0.473-0.568,0.771-1.044,0.668
c-0.474-0.105-0.772-0.572-0.669-1.044l1.39-6.319c0.012-0.07,0.027-0.257-0.188-0.305h-0.003
c-0.218-0.048-0.282,0.127-0.301,0.198l-1.389,6.319c-0.104,0.471-0.57,0.772-1.045,0.667c-0.474-0.104-0.771-0.573-0.666-1.043
l2.411-10.967c0.021-0.118,0.021-0.311-0.149-0.35c-0.252-0.054-0.331,0.124-0.362,0.261l-0.803,3.659
c-0.073,0.326-0.4,0.537-0.729,0.464c-0.328-0.072-0.534-0.399-0.463-0.726l0.775-3.527l0.05-0.222l0.112-0.512
c0.234-1.07,1.245-1.767,2.312-1.632c0.033,0.004,0.073,0.007,0.111,0.016l1.686,0.371l1.676,0.368
C458.404,231.891,458.438,231.905,458.478,231.918"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M446.297,227.854c0.176-0.805-0.327-1.601-1.134-1.777
c-0.805-0.177-1.602,0.333-1.776,1.137c-0.177,0.802,0.33,1.597,1.136,1.775C445.326,229.166,446.12,228.657,446.297,227.854"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M441.185,230.184l-2.075,3.672c0,0-0.374,0.674,0.198,0.989
c0.568,0.315,0.909-0.351,0.909-0.351l1.699-3.072c0,0,0.106-0.241,0.287-0.144c0.178,0.097,0.047,0.351,0.047,0.351l-3.053,5.788
l1.577,0.347l-0.969,4.41c-0.092,0.419,0.174,0.832,0.592,0.924c0.42,0.092,0.833-0.173,0.924-0.591l0.971-4.41l0.217,0.046
l0.214,0.045l-0.972,4.413c-0.091,0.419,0.173,0.832,0.593,0.923c0.422,0.095,0.835-0.173,0.926-0.59l0.971-4.411l1.578,0.348
l-0.341-6.533c0,0-0.014-0.285,0.188-0.3c0.202-0.012,0.2,0.252,0.2,0.252l0.252,3.502c0,0,0.031,0.745,0.678,0.699
c0.655-0.045,0.596-0.815,0.596-0.815l-0.342-4.206c0,0-0.181-1.23-1.139-1.442l-1.543-0.339l-1.542-0.34
C441.868,229.142,441.185,230.184,441.185,230.184"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M437.58,225.936c0.176-0.804-0.328-1.601-1.133-1.777
c-0.805-0.177-1.601,0.333-1.778,1.137c-0.177,0.803,0.332,1.599,1.136,1.775C436.608,227.249,437.402,226.741,437.58,225.936"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M432.469,228.268l-2.075,3.671c0,0-0.376,0.675,0.198,0.99
c0.568,0.316,0.908-0.348,0.908-0.348l1.699-3.072c0,0,0.107-0.243,0.286-0.146c0.18,0.097,0.047,0.351,0.047,0.351l-3.052,5.787
l1.578,0.347l-0.971,4.412c-0.091,0.417,0.178,0.831,0.595,0.923c0.417,0.092,0.831-0.174,0.924-0.592l0.969-4.41l0.219,0.047
l0.214,0.048l-0.973,4.411c-0.09,0.417,0.173,0.832,0.594,0.924c0.418,0.093,0.833-0.173,0.924-0.59l0.972-4.412l1.577,0.348
l-0.34-6.533c0,0-0.016-0.286,0.187-0.3c0.203-0.014,0.201,0.253,0.201,0.253l0.252,3.5c0,0,0.03,0.746,0.677,0.7
c0.654-0.046,0.595-0.816,0.595-0.816l-0.341-4.205c0,0-0.179-1.231-1.14-1.442l-1.54-0.339l-1.544-0.339
C433.151,227.225,432.469,228.268,432.469,228.268"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M449.394,237.072c0.669,0.146,1.327-0.277,1.476-0.947
c0.148-0.669-0.274-1.329-0.944-1.477c-0.669-0.146-1.331,0.274-1.477,0.945C448.299,236.263,448.722,236.926,449.394,237.072"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M445.659,240.196c-0.088,0.129-0.204,0.417,0.053,0.612
c0.298,0.228,0.556-0.054,0.556-0.054l1.118-1.954c0,0,0.144-0.117,0.116,0.029l-1.088,4.944h0.004
c-0.077,0.343,0.139,0.681,0.483,0.758c0.342,0.074,0.682-0.142,0.757-0.485l0.43-1.951c0,0,0.023-0.284,0.249-0.235
c0.221,0.049,0.126,0.318,0.126,0.318l-0.429,1.949c-0.076,0.345,0.143,0.684,0.486,0.758c0.343,0.076,0.684-0.14,0.759-0.483
l1.088-4.945c0.028-0.144,0.085-0.024,0.085-0.024l0.2,1.55c0,0,0.082,0.693,0.145,0.737c0.212,0.149,0.505,0.098,0.657-0.117
c0.097-0.137,0.108-0.308,0.044-0.454l0.008-0.002c-0.008-0.049-0.354-2.074-0.385-2.351c-0.099-0.857-0.595-0.96-1.072-1.079
c-0.478-0.118-0.766-0.169-0.766-0.169s-0.303-0.079-0.942-0.201c-0.635-0.118-0.903,0.163-1.992,1.799
c-0.158,0.236-0.677,0.997-0.692,1.047L445.659,240.196z"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M424.761,222.271c0.188-0.849-0.35-1.688-1.2-1.876
c-0.847-0.187-1.686,0.351-1.871,1.201c-0.188,0.847,0.346,1.689,1.195,1.874C423.732,223.656,424.574,223.119,424.761,222.271"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M420.961,223.667c-1.065-0.135-2.075,0.563-2.311,1.632l-0.112,0.509
l-0.048,0.224l-0.777,3.526c-0.07,0.33,0.137,0.654,0.467,0.728c0.329,0.071,0.655-0.135,0.727-0.464l0.805-3.658
c0.029-0.139,0.11-0.315,0.361-0.258c0.174,0.038,0.167,0.229,0.15,0.347l-2.411,10.966c-0.104,0.473,0.191,0.941,0.667,1.045
c0.474,0.104,0.939-0.197,1.044-0.668l1.391-6.32c0.018-0.069,0.08-0.243,0.299-0.196c0.218,0.048,0.204,0.234,0.193,0.305
l-1.392,6.318c-0.103,0.472,0.195,0.942,0.667,1.047c0.473,0.103,0.939-0.199,1.046-0.669l2.411-10.967
c0.031-0.116,0.109-0.29,0.282-0.254c0.25,0.056,0.248,0.25,0.219,0.389l-0.805,3.658c-0.072,0.326,0.137,0.653,0.465,0.726
c0.329,0.073,0.654-0.137,0.727-0.465l0.775-3.524l0.049-0.225l0.111-0.51c0.236-1.07-0.388-2.127-1.412-2.45
c-0.033-0.012-0.068-0.023-0.11-0.035l-1.682-0.371l-1.679-0.368C421.037,223.673,420.996,223.671,420.961,223.667"/>
<line clip-path="url(#SVGID_4_)" fill="none" stroke="#FFFFFF" stroke-width="1.307" stroke-linecap="round" stroke-miterlimit="10" x1="418.099" y1="230.292" x2="415.143" y2="237.227"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M425.78,231.214c-0.054-0.143-0.172-0.256-0.328-0.289
c-0.244-0.053-0.484,0.101-0.538,0.344c-0.016,0.071,0,0.202,0,0.202l0.735,2.477c0,0,0.04,0.17,0.01,0.309l-1.044,4.745h0.005
c-0.074,0.333,0.133,0.656,0.465,0.728c0.33,0.074,0.652-0.134,0.726-0.464l0.412-1.875c0,0,0.025-0.27,0.238-0.225
c0.213,0.048,0.121,0.305,0.121,0.305l-0.411,1.875c-0.074,0.33,0.137,0.654,0.467,0.727c0.329,0.071,0.656-0.135,0.729-0.465
l1.045-4.747c0.029-0.14,0.137-0.275,0.137-0.275l1.578-1.792c0,0,0.202-0.262,0.218-0.332c0.054-0.242-0.101-0.484-0.344-0.538
c-0.162-0.036-0.315,0.02-0.42,0.125l-0.005-0.003c-0.042,0.022-0.829,0.906-1.055,1.049c-0.243,0.158-0.413,0.096-0.413,0.096
l-0.737-0.163l-0.732-0.161c0,0-0.183-0.016-0.335-0.259c-0.148-0.229-0.488-1.358-0.518-1.397L425.78,231.214z"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M427.538,232.267c0.671,0.146,1.33-0.276,1.479-0.947
c0.147-0.669-0.274-1.329-0.944-1.477c-0.67-0.146-1.329,0.274-1.477,0.945C426.445,231.457,426.87,232.12,427.538,232.267"/>
<polygon clip-path="url(#SVGID_4_)" fill="#FFFFFF" points="427.168,233.967 428.316,235.267 428.438,237.805 426.421,237.361
424.399,236.917 425.577,234.664 "/>
<polygon clip-path="url(#SVGID_4_)" fill="#FFFFFF" points="456.941,77.504 456.98,77.504 456.98,99.654 461.847,99.654
461.847,70.718 457.963,70.718 453.481,75.967 453.481,81.045 453.524,81.045 "/>
<polygon clip-path="url(#SVGID_4_)" fill="#FFFFFF" points="436.893,124.923 436.893,130.997 435.522,130.997 435.522,121.33
437.118,121.33 438.872,126.875 438.872,121.33 440.227,121.33 440.227,130.997 438.801,130.997 "/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M441.151,128.501v-4.675c0-1.512,0.741-2.61,2.45-2.61
c1.728,0,2.468,1.098,2.468,2.61v4.675c0,1.498-0.74,2.611-2.468,2.611C441.893,131.112,441.151,130,441.151,128.501
M444.445,128.759v-5.189c0-0.583-0.259-0.998-0.844-0.998c-0.568,0-0.824,0.415-0.824,0.998v5.189
c0,0.585,0.256,0.997,0.824,0.997C444.187,129.756,444.445,129.344,444.445,128.759"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M435.522,134.873h2.409c1.64,0,2.238,0.813,2.238,2.167v2.038
c0,1.354-0.599,2.181-2.238,2.181h-0.785v3.28h-1.624V134.873z M437.146,136.198v3.807h0.602c0.555,0,0.795-0.271,0.795-0.799
v-2.224c0-0.527-0.24-0.784-0.795-0.784H437.146z"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M441.01,142.043v-4.675c0-1.512,0.741-2.609,2.451-2.609
c1.726,0,2.467,1.098,2.467,2.609v4.675c0,1.499-0.741,2.608-2.467,2.608C441.751,144.651,441.01,143.542,441.01,142.043
M444.304,142.301v-5.19c0-0.585-0.259-0.998-0.843-0.998c-0.569,0-0.826,0.413-0.826,0.998v5.19c0,0.585,0.257,0.997,0.826,0.997
C444.045,143.298,444.304,142.886,444.304,142.301"/>
<polygon clip-path="url(#SVGID_4_)" fill="#FFFFFF" points="451.772,134.872 449.933,144.538 448.165,144.538 446.324,134.872
447.98,134.872 449.091,141.617 449.104,141.617 450.246,134.872 "/>
<polygon clip-path="url(#SVGID_4_)" fill="#FFFFFF" points="452.44,134.872 456.319,134.872 456.319,136.197 454.067,136.197
454.067,138.964 455.678,138.964 455.678,140.274 454.067,140.274 454.067,143.213 456.319,143.213 456.319,144.538
452.44,144.538 "/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M458.813,140.105v4.434h-1.627v-9.667h2.369c1.638,0,2.237,0.813,2.237,2.167
v1.239c0,1.042-0.372,1.655-1.299,1.869l1.555,4.392h-1.711L458.813,140.105z M458.813,136.198v3.008h0.542
c0.555,0,0.798-0.285,0.798-0.798v-1.426c0-0.527-0.243-0.784-0.798-0.784H458.813z"/>
<polygon clip-path="url(#SVGID_4_)" fill="#FFFFFF" points="462.347,134.872 466.669,134.872 466.669,136.197 465.327,136.197
465.327,144.538 463.688,144.538 463.688,136.197 462.347,136.197 "/>
<polygon clip-path="url(#SVGID_4_)" fill="#FFFFFF" points="470.586,140.86 470.586,144.538 468.963,144.538 468.963,140.86
467.151,134.872 468.85,134.872 469.832,138.535 469.844,138.535 470.83,134.872 472.383,134.872 "/>
</a>
</svg>
Styling the d attribute with CSS is a new SVG2 thing that Chrome has implemented, but Firefox has not, yet.
Update
You can achieve the same effect using SVGs built-in SMIL animation features. This will work on most browsers - except IE and Edge. If you need to support those browsers also, you will need to switch the path using Javascript (in a mouse event handler).
<path clip-path="url(#SVGID_4_)" id="sec1" fill="#E7223B" d="...initial path...">
<set attributeName="d" to="...new path..."
begin="matrice1.mouseover" end="matrice1.mouseout"/>
</path>
Demo:
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 808 798" enable-background="new 0 0 800 798">
<a href="#" class="matrixSection matrixNav" onclick="animateMatrix(1)" id="matrice1">
<path clip-path="url(#SVGID_4_)" id="sec1" fill="#E7223B" d="M480.03,200.899l50.842-130.106c-38.81-14.886-80.941-23.066-124.989-23.066
v139.656C431.991,187.383,456.979,192.173,480.03,200.899">
<set attributeName="d" to="M480.03,200.899l68.21-175.566C509.431,10.447,450.037,0,405.989,0 l-0.106,187.383C431.991,187.383,456.979,192.173,480.03,200.899"
begin="matrice1.mouseover" end="matrice1.mouseout"/>
</path>
<path clip-path="url(#SVGID_4_)" fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" d="M480.03,200.899
l50.842-130.106c-38.81-14.886-80.941-23.066-124.989-23.066v139.656C431.991,187.383,456.979,192.173,480.03,200.899z"/>
<path clip-path="url(#SVGID_4_)" fill="#932826" d="M475.407,212.728l4.623-11.829c-23.051-8.727-48.039-13.517-74.147-13.517
v12.695C430.36,200.078,453.789,204.56,475.407,212.728"/>
<path clip-path="url(#SVGID_4_)" fill="none" stroke="#FFFFFF" stroke-miterlimit="10" d="M475.407,212.728l4.623-11.829
c-23.051-8.727-48.039-13.517-74.147-13.517v12.695C430.36,200.078,453.789,204.56,475.407,212.728z"/>
<path clip-path="url(#SVGID_4_)" fill="#932826" d="M450.935,275.354l24.473-62.626c-21.618-8.166-45.047-12.649-69.524-12.649
v67.277C421.72,267.354,436.894,270.184,450.935,275.354"/>
<path clip-path="url(#SVGID_4_)" fill="none" stroke="#FFFFFF" stroke-miterlimit="10" d="M450.935,275.354l24.473-62.626
c-21.618-8.166-45.047-12.649-69.524-12.649v67.277C421.72,267.354,436.894,270.184,450.935,275.354z"/>
<path clip-path="url(#SVGID_4_)" fill="#E7223B" d="M447.761,283.476l3.174-8.122c-14.041-5.17-29.215-7.999-45.052-7.999v8.723
C420.599,276.078,434.704,278.69,447.761,283.476"/>
<path clip-path="url(#SVGID_4_)" fill="none" stroke="#FFFFFF" stroke-width="0.5" stroke-miterlimit="10" d="M447.761,283.476
l3.174-8.122c-14.041-5.17-29.215-7.999-45.052-7.999v8.723C420.599,276.078,434.704,278.69,447.761,283.476z"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M455.612,229.054c0.185-0.848,1.027-1.384,1.874-1.198
c0.85,0.186,1.386,1.024,1.198,1.875c-0.187,0.849-1.024,1.386-1.873,1.199C455.963,230.743,455.424,229.904,455.612,229.054"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M458.478,231.918c1.02,0.324,1.645,1.38,1.41,2.45l-0.113,0.51l-0.049,0.224
l-0.777,3.525c-0.07,0.327-0.397,0.536-0.727,0.463c-0.328-0.072-0.535-0.397-0.464-0.725l0.806-3.658
c0.03-0.138,0.031-0.332-0.22-0.389c-0.175-0.039-0.251,0.137-0.282,0.255l-2.412,10.964c-0.104,0.473-0.568,0.771-1.044,0.668
c-0.474-0.105-0.772-0.572-0.669-1.044l1.39-6.319c0.012-0.07,0.027-0.257-0.188-0.305h-0.003
c-0.218-0.048-0.282,0.127-0.301,0.198l-1.389,6.319c-0.104,0.471-0.57,0.772-1.045,0.667c-0.474-0.104-0.771-0.573-0.666-1.043
l2.411-10.967c0.021-0.118,0.021-0.311-0.149-0.35c-0.252-0.054-0.331,0.124-0.362,0.261l-0.803,3.659
c-0.073,0.326-0.4,0.537-0.729,0.464c-0.328-0.072-0.534-0.399-0.463-0.726l0.775-3.527l0.05-0.222l0.112-0.512
c0.234-1.07,1.245-1.767,2.312-1.632c0.033,0.004,0.073,0.007,0.111,0.016l1.686,0.371l1.676,0.368
C458.404,231.891,458.438,231.905,458.478,231.918"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M446.297,227.854c0.176-0.805-0.327-1.601-1.134-1.777
c-0.805-0.177-1.602,0.333-1.776,1.137c-0.177,0.802,0.33,1.597,1.136,1.775C445.326,229.166,446.12,228.657,446.297,227.854"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M441.185,230.184l-2.075,3.672c0,0-0.374,0.674,0.198,0.989
c0.568,0.315,0.909-0.351,0.909-0.351l1.699-3.072c0,0,0.106-0.241,0.287-0.144c0.178,0.097,0.047,0.351,0.047,0.351l-3.053,5.788
l1.577,0.347l-0.969,4.41c-0.092,0.419,0.174,0.832,0.592,0.924c0.42,0.092,0.833-0.173,0.924-0.591l0.971-4.41l0.217,0.046
l0.214,0.045l-0.972,4.413c-0.091,0.419,0.173,0.832,0.593,0.923c0.422,0.095,0.835-0.173,0.926-0.59l0.971-4.411l1.578,0.348
l-0.341-6.533c0,0-0.014-0.285,0.188-0.3c0.202-0.012,0.2,0.252,0.2,0.252l0.252,3.502c0,0,0.031,0.745,0.678,0.699
c0.655-0.045,0.596-0.815,0.596-0.815l-0.342-4.206c0,0-0.181-1.23-1.139-1.442l-1.543-0.339l-1.542-0.34
C441.868,229.142,441.185,230.184,441.185,230.184"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M437.58,225.936c0.176-0.804-0.328-1.601-1.133-1.777
c-0.805-0.177-1.601,0.333-1.778,1.137c-0.177,0.803,0.332,1.599,1.136,1.775C436.608,227.249,437.402,226.741,437.58,225.936"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M432.469,228.268l-2.075,3.671c0,0-0.376,0.675,0.198,0.99
c0.568,0.316,0.908-0.348,0.908-0.348l1.699-3.072c0,0,0.107-0.243,0.286-0.146c0.18,0.097,0.047,0.351,0.047,0.351l-3.052,5.787
l1.578,0.347l-0.971,4.412c-0.091,0.417,0.178,0.831,0.595,0.923c0.417,0.092,0.831-0.174,0.924-0.592l0.969-4.41l0.219,0.047
l0.214,0.048l-0.973,4.411c-0.09,0.417,0.173,0.832,0.594,0.924c0.418,0.093,0.833-0.173,0.924-0.59l0.972-4.412l1.577,0.348
l-0.34-6.533c0,0-0.016-0.286,0.187-0.3c0.203-0.014,0.201,0.253,0.201,0.253l0.252,3.5c0,0,0.03,0.746,0.677,0.7
c0.654-0.046,0.595-0.816,0.595-0.816l-0.341-4.205c0,0-0.179-1.231-1.14-1.442l-1.54-0.339l-1.544-0.339
C433.151,227.225,432.469,228.268,432.469,228.268"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M449.394,237.072c0.669,0.146,1.327-0.277,1.476-0.947
c0.148-0.669-0.274-1.329-0.944-1.477c-0.669-0.146-1.331,0.274-1.477,0.945C448.299,236.263,448.722,236.926,449.394,237.072"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M445.659,240.196c-0.088,0.129-0.204,0.417,0.053,0.612
c0.298,0.228,0.556-0.054,0.556-0.054l1.118-1.954c0,0,0.144-0.117,0.116,0.029l-1.088,4.944h0.004
c-0.077,0.343,0.139,0.681,0.483,0.758c0.342,0.074,0.682-0.142,0.757-0.485l0.43-1.951c0,0,0.023-0.284,0.249-0.235
c0.221,0.049,0.126,0.318,0.126,0.318l-0.429,1.949c-0.076,0.345,0.143,0.684,0.486,0.758c0.343,0.076,0.684-0.14,0.759-0.483
l1.088-4.945c0.028-0.144,0.085-0.024,0.085-0.024l0.2,1.55c0,0,0.082,0.693,0.145,0.737c0.212,0.149,0.505,0.098,0.657-0.117
c0.097-0.137,0.108-0.308,0.044-0.454l0.008-0.002c-0.008-0.049-0.354-2.074-0.385-2.351c-0.099-0.857-0.595-0.96-1.072-1.079
c-0.478-0.118-0.766-0.169-0.766-0.169s-0.303-0.079-0.942-0.201c-0.635-0.118-0.903,0.163-1.992,1.799
c-0.158,0.236-0.677,0.997-0.692,1.047L445.659,240.196z"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M424.761,222.271c0.188-0.849-0.35-1.688-1.2-1.876
c-0.847-0.187-1.686,0.351-1.871,1.201c-0.188,0.847,0.346,1.689,1.195,1.874C423.732,223.656,424.574,223.119,424.761,222.271"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M420.961,223.667c-1.065-0.135-2.075,0.563-2.311,1.632l-0.112,0.509
l-0.048,0.224l-0.777,3.526c-0.07,0.33,0.137,0.654,0.467,0.728c0.329,0.071,0.655-0.135,0.727-0.464l0.805-3.658
c0.029-0.139,0.11-0.315,0.361-0.258c0.174,0.038,0.167,0.229,0.15,0.347l-2.411,10.966c-0.104,0.473,0.191,0.941,0.667,1.045
c0.474,0.104,0.939-0.197,1.044-0.668l1.391-6.32c0.018-0.069,0.08-0.243,0.299-0.196c0.218,0.048,0.204,0.234,0.193,0.305
l-1.392,6.318c-0.103,0.472,0.195,0.942,0.667,1.047c0.473,0.103,0.939-0.199,1.046-0.669l2.411-10.967
c0.031-0.116,0.109-0.29,0.282-0.254c0.25,0.056,0.248,0.25,0.219,0.389l-0.805,3.658c-0.072,0.326,0.137,0.653,0.465,0.726
c0.329,0.073,0.654-0.137,0.727-0.465l0.775-3.524l0.049-0.225l0.111-0.51c0.236-1.07-0.388-2.127-1.412-2.45
c-0.033-0.012-0.068-0.023-0.11-0.035l-1.682-0.371l-1.679-0.368C421.037,223.673,420.996,223.671,420.961,223.667"/>
<line clip-path="url(#SVGID_4_)" fill="none" stroke="#FFFFFF" stroke-width="1.307" stroke-linecap="round" stroke-miterlimit="10" x1="418.099" y1="230.292" x2="415.143" y2="237.227"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M425.78,231.214c-0.054-0.143-0.172-0.256-0.328-0.289
c-0.244-0.053-0.484,0.101-0.538,0.344c-0.016,0.071,0,0.202,0,0.202l0.735,2.477c0,0,0.04,0.17,0.01,0.309l-1.044,4.745h0.005
c-0.074,0.333,0.133,0.656,0.465,0.728c0.33,0.074,0.652-0.134,0.726-0.464l0.412-1.875c0,0,0.025-0.27,0.238-0.225
c0.213,0.048,0.121,0.305,0.121,0.305l-0.411,1.875c-0.074,0.33,0.137,0.654,0.467,0.727c0.329,0.071,0.656-0.135,0.729-0.465
l1.045-4.747c0.029-0.14,0.137-0.275,0.137-0.275l1.578-1.792c0,0,0.202-0.262,0.218-0.332c0.054-0.242-0.101-0.484-0.344-0.538
c-0.162-0.036-0.315,0.02-0.42,0.125l-0.005-0.003c-0.042,0.022-0.829,0.906-1.055,1.049c-0.243,0.158-0.413,0.096-0.413,0.096
l-0.737-0.163l-0.732-0.161c0,0-0.183-0.016-0.335-0.259c-0.148-0.229-0.488-1.358-0.518-1.397L425.78,231.214z"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M427.538,232.267c0.671,0.146,1.33-0.276,1.479-0.947
c0.147-0.669-0.274-1.329-0.944-1.477c-0.67-0.146-1.329,0.274-1.477,0.945C426.445,231.457,426.87,232.12,427.538,232.267"/>
<polygon clip-path="url(#SVGID_4_)" fill="#FFFFFF" points="427.168,233.967 428.316,235.267 428.438,237.805 426.421,237.361
424.399,236.917 425.577,234.664 "/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M455.612,229.054c0.185-0.848,1.027-1.384,1.874-1.198
c0.85,0.186,1.386,1.024,1.198,1.875c-0.187,0.849-1.024,1.386-1.873,1.199C455.963,230.743,455.424,229.904,455.612,229.054"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M458.478,231.918c1.02,0.324,1.645,1.38,1.41,2.45l-0.113,0.51l-0.049,0.224
l-0.777,3.525c-0.07,0.327-0.397,0.536-0.727,0.463c-0.328-0.072-0.535-0.397-0.464-0.725l0.806-3.658
c0.03-0.138,0.031-0.332-0.22-0.389c-0.175-0.039-0.251,0.137-0.282,0.255l-2.412,10.964c-0.104,0.473-0.568,0.771-1.044,0.668
c-0.474-0.105-0.772-0.572-0.669-1.044l1.39-6.319c0.012-0.07,0.027-0.257-0.188-0.305h-0.003
c-0.218-0.048-0.282,0.127-0.301,0.198l-1.389,6.319c-0.104,0.471-0.57,0.772-1.045,0.667c-0.474-0.104-0.771-0.573-0.666-1.043
l2.411-10.967c0.021-0.118,0.021-0.311-0.149-0.35c-0.252-0.054-0.331,0.124-0.362,0.261l-0.803,3.659
c-0.073,0.326-0.4,0.537-0.729,0.464c-0.328-0.072-0.534-0.399-0.463-0.726l0.775-3.527l0.05-0.222l0.112-0.512
c0.234-1.07,1.245-1.767,2.312-1.632c0.033,0.004,0.073,0.007,0.111,0.016l1.686,0.371l1.676,0.368
C458.404,231.891,458.438,231.905,458.478,231.918"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M446.297,227.854c0.176-0.805-0.327-1.601-1.134-1.777
c-0.805-0.177-1.602,0.333-1.776,1.137c-0.177,0.802,0.33,1.597,1.136,1.775C445.326,229.166,446.12,228.657,446.297,227.854"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M441.185,230.184l-2.075,3.672c0,0-0.374,0.674,0.198,0.989
c0.568,0.315,0.909-0.351,0.909-0.351l1.699-3.072c0,0,0.106-0.241,0.287-0.144c0.178,0.097,0.047,0.351,0.047,0.351l-3.053,5.788
l1.577,0.347l-0.969,4.41c-0.092,0.419,0.174,0.832,0.592,0.924c0.42,0.092,0.833-0.173,0.924-0.591l0.971-4.41l0.217,0.046
l0.214,0.045l-0.972,4.413c-0.091,0.419,0.173,0.832,0.593,0.923c0.422,0.095,0.835-0.173,0.926-0.59l0.971-4.411l1.578,0.348
l-0.341-6.533c0,0-0.014-0.285,0.188-0.3c0.202-0.012,0.2,0.252,0.2,0.252l0.252,3.502c0,0,0.031,0.745,0.678,0.699
c0.655-0.045,0.596-0.815,0.596-0.815l-0.342-4.206c0,0-0.181-1.23-1.139-1.442l-1.543-0.339l-1.542-0.34
C441.868,229.142,441.185,230.184,441.185,230.184"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M437.58,225.936c0.176-0.804-0.328-1.601-1.133-1.777
c-0.805-0.177-1.601,0.333-1.778,1.137c-0.177,0.803,0.332,1.599,1.136,1.775C436.608,227.249,437.402,226.741,437.58,225.936"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M432.469,228.268l-2.075,3.671c0,0-0.376,0.675,0.198,0.99
c0.568,0.316,0.908-0.348,0.908-0.348l1.699-3.072c0,0,0.107-0.243,0.286-0.146c0.18,0.097,0.047,0.351,0.047,0.351l-3.052,5.787
l1.578,0.347l-0.971,4.412c-0.091,0.417,0.178,0.831,0.595,0.923c0.417,0.092,0.831-0.174,0.924-0.592l0.969-4.41l0.219,0.047
l0.214,0.048l-0.973,4.411c-0.09,0.417,0.173,0.832,0.594,0.924c0.418,0.093,0.833-0.173,0.924-0.59l0.972-4.412l1.577,0.348
l-0.34-6.533c0,0-0.016-0.286,0.187-0.3c0.203-0.014,0.201,0.253,0.201,0.253l0.252,3.5c0,0,0.03,0.746,0.677,0.7
c0.654-0.046,0.595-0.816,0.595-0.816l-0.341-4.205c0,0-0.179-1.231-1.14-1.442l-1.54-0.339l-1.544-0.339
C433.151,227.225,432.469,228.268,432.469,228.268"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M449.394,237.072c0.669,0.146,1.327-0.277,1.476-0.947
c0.148-0.669-0.274-1.329-0.944-1.477c-0.669-0.146-1.331,0.274-1.477,0.945C448.299,236.263,448.722,236.926,449.394,237.072"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M445.659,240.196c-0.088,0.129-0.204,0.417,0.053,0.612
c0.298,0.228,0.556-0.054,0.556-0.054l1.118-1.954c0,0,0.144-0.117,0.116,0.029l-1.088,4.944h0.004
c-0.077,0.343,0.139,0.681,0.483,0.758c0.342,0.074,0.682-0.142,0.757-0.485l0.43-1.951c0,0,0.023-0.284,0.249-0.235
c0.221,0.049,0.126,0.318,0.126,0.318l-0.429,1.949c-0.076,0.345,0.143,0.684,0.486,0.758c0.343,0.076,0.684-0.14,0.759-0.483
l1.088-4.945c0.028-0.144,0.085-0.024,0.085-0.024l0.2,1.55c0,0,0.082,0.693,0.145,0.737c0.212,0.149,0.505,0.098,0.657-0.117
c0.097-0.137,0.108-0.308,0.044-0.454l0.008-0.002c-0.008-0.049-0.354-2.074-0.385-2.351c-0.099-0.857-0.595-0.96-1.072-1.079
c-0.478-0.118-0.766-0.169-0.766-0.169s-0.303-0.079-0.942-0.201c-0.635-0.118-0.903,0.163-1.992,1.799
c-0.158,0.236-0.677,0.997-0.692,1.047L445.659,240.196z"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M424.761,222.271c0.188-0.849-0.35-1.688-1.2-1.876
c-0.847-0.187-1.686,0.351-1.871,1.201c-0.188,0.847,0.346,1.689,1.195,1.874C423.732,223.656,424.574,223.119,424.761,222.271"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M420.961,223.667c-1.065-0.135-2.075,0.563-2.311,1.632l-0.112,0.509
l-0.048,0.224l-0.777,3.526c-0.07,0.33,0.137,0.654,0.467,0.728c0.329,0.071,0.655-0.135,0.727-0.464l0.805-3.658
c0.029-0.139,0.11-0.315,0.361-0.258c0.174,0.038,0.167,0.229,0.15,0.347l-2.411,10.966c-0.104,0.473,0.191,0.941,0.667,1.045
c0.474,0.104,0.939-0.197,1.044-0.668l1.391-6.32c0.018-0.069,0.08-0.243,0.299-0.196c0.218,0.048,0.204,0.234,0.193,0.305
l-1.392,6.318c-0.103,0.472,0.195,0.942,0.667,1.047c0.473,0.103,0.939-0.199,1.046-0.669l2.411-10.967
c0.031-0.116,0.109-0.29,0.282-0.254c0.25,0.056,0.248,0.25,0.219,0.389l-0.805,3.658c-0.072,0.326,0.137,0.653,0.465,0.726
c0.329,0.073,0.654-0.137,0.727-0.465l0.775-3.524l0.049-0.225l0.111-0.51c0.236-1.07-0.388-2.127-1.412-2.45
c-0.033-0.012-0.068-0.023-0.11-0.035l-1.682-0.371l-1.679-0.368C421.037,223.673,420.996,223.671,420.961,223.667"/>
<line clip-path="url(#SVGID_4_)" fill="none" stroke="#FFFFFF" stroke-width="1.307" stroke-linecap="round" stroke-miterlimit="10" x1="418.099" y1="230.292" x2="415.143" y2="237.227"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M425.78,231.214c-0.054-0.143-0.172-0.256-0.328-0.289
c-0.244-0.053-0.484,0.101-0.538,0.344c-0.016,0.071,0,0.202,0,0.202l0.735,2.477c0,0,0.04,0.17,0.01,0.309l-1.044,4.745h0.005
c-0.074,0.333,0.133,0.656,0.465,0.728c0.33,0.074,0.652-0.134,0.726-0.464l0.412-1.875c0,0,0.025-0.27,0.238-0.225
c0.213,0.048,0.121,0.305,0.121,0.305l-0.411,1.875c-0.074,0.33,0.137,0.654,0.467,0.727c0.329,0.071,0.656-0.135,0.729-0.465
l1.045-4.747c0.029-0.14,0.137-0.275,0.137-0.275l1.578-1.792c0,0,0.202-0.262,0.218-0.332c0.054-0.242-0.101-0.484-0.344-0.538
c-0.162-0.036-0.315,0.02-0.42,0.125l-0.005-0.003c-0.042,0.022-0.829,0.906-1.055,1.049c-0.243,0.158-0.413,0.096-0.413,0.096
l-0.737-0.163l-0.732-0.161c0,0-0.183-0.016-0.335-0.259c-0.148-0.229-0.488-1.358-0.518-1.397L425.78,231.214z"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M427.538,232.267c0.671,0.146,1.33-0.276,1.479-0.947
c0.147-0.669-0.274-1.329-0.944-1.477c-0.67-0.146-1.329,0.274-1.477,0.945C426.445,231.457,426.87,232.12,427.538,232.267"/>
<polygon clip-path="url(#SVGID_4_)" fill="#FFFFFF" points="427.168,233.967 428.316,235.267 428.438,237.805 426.421,237.361
424.399,236.917 425.577,234.664 "/>
<polygon clip-path="url(#SVGID_4_)" fill="#FFFFFF" points="456.941,77.504 456.98,77.504 456.98,99.654 461.847,99.654
461.847,70.718 457.963,70.718 453.481,75.967 453.481,81.045 453.524,81.045 "/>
<polygon clip-path="url(#SVGID_4_)" fill="#FFFFFF" points="436.893,124.923 436.893,130.997 435.522,130.997 435.522,121.33
437.118,121.33 438.872,126.875 438.872,121.33 440.227,121.33 440.227,130.997 438.801,130.997 "/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M441.151,128.501v-4.675c0-1.512,0.741-2.61,2.45-2.61
c1.728,0,2.468,1.098,2.468,2.61v4.675c0,1.498-0.74,2.611-2.468,2.611C441.893,131.112,441.151,130,441.151,128.501
M444.445,128.759v-5.189c0-0.583-0.259-0.998-0.844-0.998c-0.568,0-0.824,0.415-0.824,0.998v5.189
c0,0.585,0.256,0.997,0.824,0.997C444.187,129.756,444.445,129.344,444.445,128.759"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M435.522,134.873h2.409c1.64,0,2.238,0.813,2.238,2.167v2.038
c0,1.354-0.599,2.181-2.238,2.181h-0.785v3.28h-1.624V134.873z M437.146,136.198v3.807h0.602c0.555,0,0.795-0.271,0.795-0.799
v-2.224c0-0.527-0.24-0.784-0.795-0.784H437.146z"/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M441.01,142.043v-4.675c0-1.512,0.741-2.609,2.451-2.609
c1.726,0,2.467,1.098,2.467,2.609v4.675c0,1.499-0.741,2.608-2.467,2.608C441.751,144.651,441.01,143.542,441.01,142.043
M444.304,142.301v-5.19c0-0.585-0.259-0.998-0.843-0.998c-0.569,0-0.826,0.413-0.826,0.998v5.19c0,0.585,0.257,0.997,0.826,0.997
C444.045,143.298,444.304,142.886,444.304,142.301"/>
<polygon clip-path="url(#SVGID_4_)" fill="#FFFFFF" points="451.772,134.872 449.933,144.538 448.165,144.538 446.324,134.872
447.98,134.872 449.091,141.617 449.104,141.617 450.246,134.872 "/>
<polygon clip-path="url(#SVGID_4_)" fill="#FFFFFF" points="452.44,134.872 456.319,134.872 456.319,136.197 454.067,136.197
454.067,138.964 455.678,138.964 455.678,140.274 454.067,140.274 454.067,143.213 456.319,143.213 456.319,144.538
452.44,144.538 "/>
<path clip-path="url(#SVGID_4_)" fill="#FFFFFF" d="M458.813,140.105v4.434h-1.627v-9.667h2.369c1.638,0,2.237,0.813,2.237,2.167
v1.239c0,1.042-0.372,1.655-1.299,1.869l1.555,4.392h-1.711L458.813,140.105z M458.813,136.198v3.008h0.542
c0.555,0,0.798-0.285,0.798-0.798v-1.426c0-0.527-0.243-0.784-0.798-0.784H458.813z"/>
<polygon clip-path="url(#SVGID_4_)" fill="#FFFFFF" points="462.347,134.872 466.669,134.872 466.669,136.197 465.327,136.197
465.327,144.538 463.688,144.538 463.688,136.197 462.347,136.197 "/>
<polygon clip-path="url(#SVGID_4_)" fill="#FFFFFF" points="470.586,140.86 470.586,144.538 468.963,144.538 468.963,140.86
467.151,134.872 468.85,134.872 469.832,138.535 469.844,138.535 470.83,134.872 472.383,134.872 "/>
</a>
</svg>

SVG stroke-linecap at one end only

Is it possible to add a linecap to only one end of a stroke? Not both ends as is the default shown in the sample below.
<?xml version="1.0"?>
<svg width="120" height="120" viewBox="0 0 120 120" version="1.1" xmlns="http://www.w3.org/2000/svg">
<line stroke-linecap="butt"
x1="30" y1="30" x2="30" y2="90"
stroke="teal" stroke-width="20"/>
<line stroke-linecap="round"
x1="60" y1="30" x2="60" y2="90"
stroke="teal" stroke-width="20"/>
<path d="M30,30 L30,90 M60,30 L60,90 M90,30 L90,90"
stroke="white" />
</svg>
You could do this with two lines, one on top of the other.
<?xml version="1.0"?>
<svg width="120" height="120" viewBox="0 0 120 120" version="1.1" xmlns="http://www.w3.org/2000/svg">
<line stroke-linecap="butt"
x1="30" y1="30" x2="30" y2="90"
stroke="teal" stroke-width="20"/>
<line stroke-linecap="round"
x1="60" y1="30" x2="60" y2="70"
stroke="teal" stroke-width="20"/>
<line stroke-linecap="butt"
x1="60" y1="40" x2="60" y2="90"
stroke="teal" stroke-width="20"/>
<path d="M30,30 L30,90 M60,30 L60,90 M90,30 L90,90"
stroke="white" />
</svg>
Another flexible solution using a single line and markers/marker-ends as suggested by Paulie_D:
<svg width="120" height="120" viewBox="0 0 120 120" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<marker id="round" viewBox="-1 -1 2 2" markerWidth="1" orient="auto">
<circle r="1" fill="teal"/>
</marker>
</defs>
<line x1="30" y1="90" x2="30" y2="30"
stroke="teal" stroke-width="20" marker-end="url(#round)"/>
<line stroke-linecap="round"
x1="60" y1="30" x2="60" y2="90"
stroke="teal" stroke-width="20"/>
<line x1="90" y1="30" x2="90" y2="90"
stroke="teal" stroke-width="20" marker-end="url(#round)"/>
<path d="M30,30 L30,90 M60,30 L60,90 M90,30 L90,90"
stroke="white"/>
</svg>

Resources