Browse Source

add clouds animation

add video
develop
Carmine De Rosa 7 years ago
parent
commit
38faff497c
  1. BIN
      TMP/COZe-Layout-PDF/path2173.png
  2. BIN
      TMP/loader_anim.zip
  3. BIN
      TMP/loader_anim/loader_anim/.DS_Store
  4. 39
      TMP/loader_anim/loader_anim/countUp-jquery.js
  5. 246
      TMP/loader_anim/loader_anim/countUp.js
  6. 321
      TMP/loader_anim/loader_anim/loader.svg
  7. 61
      TMP/loader_anim/loader_anim/test.html
  8. 134
      css/styles.css
  9. 257
      images/loader.svg
  10. 257
      images/loader2.svg
  11. BIN
      images/video.png
  12. 12
      index.php
  13. 6
      js/compatibility.js
  14. 1060
      js/loading.js
  15. 28
      js/modules.js
  16. 71
      js/plans.js
  17. 16
      js/scripts.js
  18. 22
      plans.php
  19. 3
      scripts/compatibility.php
  20. 3
      scripts/modules.php
  21. BIN
      scss/.sass-cache/132087705a52dd1d0e0e4a761ce2b1b521d0d802/global.scssc
  22. 65
      scss/global.scss
  23. 48
      scss/sections/plans.scss

BIN
TMP/COZe-Layout-PDF/path2173.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 251 KiB

BIN
TMP/loader_anim.zip

Binary file not shown.

BIN
TMP/loader_anim/loader_anim/.DS_Store

Binary file not shown.

39
TMP/loader_anim/loader_anim/countUp-jquery.js

@ -0,0 +1,39 @@
(function($) {
$.fn.countup = function(params) {
// make sure dependency is present
if (typeof CountUp !== 'function') {
console.error('countUp.js is a required dependency of countUp-jquery.js.');
return;
}
var defaults = {
startVal: 0,
decimals: 0,
duration: 2,
};
if (typeof params === 'number') {
defaults.endVal = params;
}
else if (typeof params === 'object') {
$.extend(defaults, params);
}
else {
console.error('countUp-jquery requires its argument to be either an object or number');
return;
}
this.each(function(i, elem) {
var countUp = new CountUp(elem, defaults.startVal, defaults.endVal, defaults.decimals, defaults.duration, defaults.options);
countUp.start();
});
return this;
};
}(jQuery));

246
TMP/loader_anim/loader_anim/countUp.js

@ -0,0 +1,246 @@
/*
countUp.js
by @inorganik
*/
// target = id of html element or var of previously selected html element where counting occurs
// startVal = the value you want to begin at
// endVal = the value you want to arrive at
// decimals = number of decimal places, default 0
// duration = duration of animation in seconds, default 2
// options = optional object of options (see below)
var CountUp = function(target, startVal, endVal, decimals, duration, options) {
var self = this;
self.version = function () { return '1.9.3'; };
// default options
self.options = {
useEasing: true, // toggle easing
useGrouping: true, // 1,000,000 vs 1000000
separator: ',', // character to use as a separator
decimal: '.', // character to use as a decimal
easingFn: easeOutExpo, // optional custom easing function, default is Robert Penner's easeOutExpo
formattingFn: formatNumber, // optional custom formatting function, default is formatNumber above
prefix: '', // optional text before the result
suffix: '', // optional text after the result
numerals: [] // optionally pass an array of custom numerals for 0-9
};
// extend default options with passed options object
if (options && typeof options === 'object') {
for (var key in self.options) {
if (options.hasOwnProperty(key) && options[key] !== null) {
self.options[key] = options[key];
}
}
}
if (self.options.separator === '') {
self.options.useGrouping = false;
}
else {
// ensure the separator is a string (formatNumber assumes this)
self.options.separator = '' + self.options.separator;
}
// make sure requestAnimationFrame and cancelAnimationFrame are defined
// polyfill for browsers without native support
// by Opera engineer Erik Möller
var lastTime = 0;
var vendors = ['webkit', 'moz', 'ms', 'o'];
for(var x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) {
window.requestAnimationFrame = window[vendors[x]+'RequestAnimationFrame'];
window.cancelAnimationFrame = window[vendors[x]+'CancelAnimationFrame'] || window[vendors[x]+'CancelRequestAnimationFrame'];
}
if (!window.requestAnimationFrame) {
window.requestAnimationFrame = function(callback, element) {
var currTime = new Date().getTime();
var timeToCall = Math.max(0, 16 - (currTime - lastTime));
var id = window.setTimeout(function() { callback(currTime + timeToCall); }, timeToCall);
lastTime = currTime + timeToCall;
return id;
};
}
if (!window.cancelAnimationFrame) {
window.cancelAnimationFrame = function(id) {
clearTimeout(id);
};
}
function formatNumber(num) {
var neg = (num < 0),
x, x1, x2, x3, i, len;
num = Math.abs(num).toFixed(self.decimals);
num += '';
x = num.split('.');
x1 = x[0];
x2 = x.length > 1 ? self.options.decimal + x[1] : '';
if (self.options.useGrouping) {
x3 = '';
for (i = 0, len = x1.length; i < len; ++i) {
if (i !== 0 && ((i % 3) === 0)) {
x3 = self.options.separator + x3;
}
x3 = x1[len - i - 1] + x3;
}
x1 = x3;
}
// optional numeral substitution
if (self.options.numerals.length) {
x1 = x1.replace(/[0-9]/g, function(w) {
return self.options.numerals[+w];
})
x2 = x2.replace(/[0-9]/g, function(w) {
return self.options.numerals[+w];
})
}
return (neg ? '-' : '') + self.options.prefix + x1 + x2 + self.options.suffix;
}
// Robert Penner's easeOutExpo
function easeOutExpo(t, b, c, d) {
return c * (-Math.pow(2, -10 * t / d) + 1) * 1024 / 1023 + b;
}
function ensureNumber(n) {
return (typeof n === 'number' && !isNaN(n));
}
self.initialize = function() {
if (self.initialized) return true;
self.error = '';
self.d = (typeof target === 'string') ? document.getElementById(target) : target;
if (!self.d) {
self.error = '[CountUp] target is null or undefined'
return false;
}
self.startVal = Number(startVal);
self.endVal = Number(endVal);
// error checks
if (ensureNumber(self.startVal) && ensureNumber(self.endVal)) {
self.decimals = Math.max(0, decimals || 0);
self.dec = Math.pow(10, self.decimals);
self.duration = Number(duration) * 1000 || 2000;
self.countDown = (self.startVal > self.endVal);
self.frameVal = self.startVal;
self.initialized = true;
return true;
}
else {
self.error = '[CountUp] startVal ('+startVal+') or endVal ('+endVal+') is not a number';
return false;
}
};
// Print value to target
self.printValue = function(value) {
var result = self.options.formattingFn(value);
if (self.d.tagName === 'INPUT') {
this.d.value = result;
}
else if (self.d.tagName === 'text' || self.d.tagName === 'tspan') {
this.d.textContent = result;
}
else {
this.d.innerHTML = result;
}
};
self.count = function(timestamp) {
if (!self.startTime) { self.startTime = timestamp; }
self.timestamp = timestamp;
var progress = timestamp - self.startTime;
self.remaining = self.duration - progress;
// to ease or not to ease
if (self.options.useEasing) {
if (self.countDown) {
self.frameVal = self.startVal - self.options.easingFn(progress, 0, self.startVal - self.endVal, self.duration);
} else {
self.frameVal = self.options.easingFn(progress, self.startVal, self.endVal - self.startVal, self.duration);
}
} else {
if (self.countDown) {
self.frameVal = self.startVal - ((self.startVal - self.endVal) * (progress / self.duration));
} else {
self.frameVal = self.startVal + (self.endVal - self.startVal) * (progress / self.duration);
}
}
// don't go past endVal since progress can exceed duration in the last frame
if (self.countDown) {
self.frameVal = (self.frameVal < self.endVal) ? self.endVal : self.frameVal;
} else {
self.frameVal = (self.frameVal > self.endVal) ? self.endVal : self.frameVal;
}
// decimal
self.frameVal = Math.round(self.frameVal*self.dec)/self.dec;
// format and print value
self.printValue(self.frameVal);
// whether to continue
if (progress < self.duration) {
self.rAF = requestAnimationFrame(self.count);
} else {
if (self.callback) self.callback();
}
};
// start your animation
self.start = function(callback) {
if (!self.initialize()) return;
self.callback = callback;
self.rAF = requestAnimationFrame(self.count);
};
// toggles pause/resume animation
self.pauseResume = function() {
if (!self.paused) {
self.paused = true;
cancelAnimationFrame(self.rAF);
} else {
self.paused = false;
delete self.startTime;
self.duration = self.remaining;
self.startVal = self.frameVal;
requestAnimationFrame(self.count);
}
};
// reset to startVal so animation can be run again
self.reset = function() {
self.paused = false;
delete self.startTime;
self.initialized = false;
if (self.initialize()) {
cancelAnimationFrame(self.rAF);
self.printValue(self.startVal);
}
};
// pass a new endVal and start animation
self.update = function (newEndVal) {
if (!self.initialize()) return;
newEndVal = Number(newEndVal);
if (!ensureNumber(newEndVal)) {
self.error = '[CountUp] update() - new endVal is not a number: '+newEndVal;
return;
}
self.error = '';
if (newEndVal === self.frameVal) return;
cancelAnimationFrame(self.rAF);
self.paused = false;
delete self.startTime;
self.startVal = self.frameVal;
self.endVal = newEndVal;
self.countDown = (self.startVal > self.endVal);
self.rAF = requestAnimationFrame(self.count);
};
// format startVal on initialization
if (self.initialize()) self.printValue(self.startVal);
};

321
TMP/loader_anim/loader_anim/loader.svg

@ -0,0 +1,321 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="220px"
height="220px" viewBox="0 0 220 220" style="enable-background:new 0 0 220 220;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;}
.st1{fill:#A41620;}
.st2{fill:#8DF3E5;}
</style>
<g id="Ruota_x5F_04">
<animateTransform attributeName="transform"
begin="0"
attributeType="XML"
type="rotate"
from="0 110 110"
to="360 110 110"
dur="3s"
repeatCount="2" />
<circle class="st0" cx="110" cy="110" r="90"/>
<path class="st1" d="M152.8,188.9c21.6-11.8,36.4-30,43.3-53.6c6.4-21.8,4.6-46-6.9-67.5v0l-0.5-0.9
c-11.9-21.8-31.5-36.7-53.6-43.2c-21.8-6.4-46-4.6-67.5,6.9h0L66.8,31C45,42.9,30.1,62.5,23.6,84.6c-6.5,22.1-4.6,46.6,7.3,68.4
l3.4-1.8l3.4-1.8c-10.9-19.9-12.6-42.4-6.7-62.6c5.9-20.2,19.6-38.1,39.5-49l0,0c19.9-10.9,42.4-12.6,62.6-6.7
c20.2,5.9,38.1,19.6,49,39.5l0,0.1c10.9,19.9,12.6,42.4,6.7,62.6c-5.9,20.2-19.6,38.1-39.5,49l1.8,3.4L152.8,188.9L152.8,188.9z"/>
</g>
<g id="Ruota_x5F_03">
<animateTransform attributeName="transform"
begin="0"
attributeType="XML"
type="rotate"
from="0 110 110"
to="-360 110 110"
dur="2s"
repeatCount="3" />
<path class="st2" d="M11.7,109.9c0,27.1,11,51.6,28.7,69.4C58.2,197,82.8,208,109.9,208c27.1,0,51.6-11,69.4-28.7
C197,161.5,208,137,208,109.9c0-27.1-11-51.6-28.7-69.4c-17.8-17.8-42.3-28.7-69.4-28.7v5c25.7,0,49,10.4,65.8,27.3
c16.9,16.9,27.3,40.1,27.3,65.8c0,25.7-10.4,49-27.3,65.8c-16.9,16.9-40.1,27.3-65.8,27.3c-25.7,0-49-10.4-65.8-27.3
c-16.9-16.9-27.3-40.1-27.3-65.8H11.7L11.7,109.9z"/>
<circle class="st0" cx="110" cy="110" r="93"/>
</g>
<g id="Ruota_x5F_02">
<animateTransform attributeName="transform"
begin="0"
attributeType="XML"
type="rotate"
from="0 110 110"
to="360 110 110"
dur="6s"
repeatCount="1" />
<g>
<path class="st1" d="M181.4,38.4L181.4,38.4c0.3,0.3,0.7,0.7,1,1l0.9,0.9l0.9-0.9l0.6-0.6l0.9-0.9l-0.9-0.9l-2-2l-0.9-0.9
l-0.9,0.9l-0.6,0.6l-0.9,0.9l0.9,0.9C180.7,37.8,181.1,38.1,181.4,38.4z"/>
<path class="st1" d="M187.7,45.3L187.7,45.3c0.4,0.4,0.7,0.8,0.9,1.1l0.8,1l1-0.8l0.6-0.5l1-0.8l-0.8-1l-1.9-2.2l-0.8-1l-1,0.8
l-0.6,0.5l-1,0.8l0.8,1C187.1,44.7,187.4,45,187.7,45.3z"/>
<path class="st1" d="M193.7,53.4c0.3,0.4,0.5,0.8,0.8,1.2l0.7,1.1l1.1-0.7l0.7-0.4l1-0.7l-0.7-1l-1.6-2.4l-0.7-1l-1,0.7l-0.7,0.4
l-1.1,0.7l0.7,1C193.2,52.6,193.4,53,193.7,53.4z"/>
<path class="st1" d="M173.9,31.7c0.3,0.2,0.7,0.5,1.1,0.9l1,0.8l0.8-1l0.5-0.6l0.8-1l-1-0.8l-2.2-1.8l-1-0.8l-0.8,1l-0.5,0.6
l-0.8,1l1,0.8C173.3,31.2,173.6,31.5,173.9,31.7z"/>
<path class="st1" d="M202.7,69.9c0.2,0.5,0.4,0.9,0.6,1.3c0.2,0.5,0.4,1,0.5,1.3l0.5,1.2l1.2-0.5l0.7-0.3l1.2-0.5l-0.5-1.2
l-1.1-2.7l-0.5-1.2l-1.2,0.5l-0.7,0.3l-1.2,0.5L202.7,69.9z"/>
<path class="st1" d="M198.3,60.9c0.2,0.3,0.4,0.8,0.7,1.3c0.2,0.4,0.5,0.9,0.7,1.3l0.6,1.1l1.1-0.6l0.7-0.4l1.1-0.6l-0.6-1.1
l-1.4-2.6l-0.6-1.1l-1.1,0.6l-0.7,0.4l-1.1,0.6L198.3,60.9z"/>
<path class="st1" d="M211.4,97l-1.3,0.1l0.1,1.3c0.1,0.5,0.1,1,0.2,1.4c0,0.3,0.1,0.8,0.1,1.4l0.1,1.3l1.3-0.1l0.8-0.1l1.3-0.1
l-0.1-1.3l-0.3-2.9l-0.1-1.3l-1.3,0.1L211.4,97z"/>
<path class="st1" d="M205.6,77.4l0.4,1.2c0.2,0.5,0.3,1,0.4,1.4c0.1,0.4,0.3,0.9,0.4,1.4l0.4,1.2l1.2-0.4l0.8-0.2l1.2-0.4
l-0.4-1.2l-0.9-2.8l-0.4-1.2l-1.2,0.4l-0.8,0.2L205.6,77.4z"/>
<path class="st1" d="M165.7,25.6c0.4,0.3,0.8,0.5,1.2,0.8l1.1,0.7l0.7-1.1l0.4-0.7l0.7-1.1l-1.1-0.7l-2.4-1.6l-1.1-0.7l-0.7,1.1
l-0.4,0.7l-0.7,1.1l1.1,0.7C164.9,25.1,165.3,25.4,165.7,25.6z"/>
<path class="st1" d="M209.6,86.8l-1.3,0.3l0.3,1.2c0.1,0.6,0.2,1.1,0.3,1.4c0.1,0.4,0.2,0.9,0.3,1.4l0.2,1.3l1.3-0.3l0.8-0.2
l1.2-0.3l-0.3-1.2l-0.6-2.8l-0.3-1.2l-1.2,0.3L209.6,86.8z"/>
<path class="st1" d="M71.4,203.1c-0.4-0.2-0.8-0.3-1.3-0.6l-1.2-0.5l-0.5,1.2l-0.3,0.7l-0.5,1.2l1.2,0.5l2.7,1.1l1.2,0.5l0.5-1.2
l0.3-0.7l0.5-1.2l-1.2-0.5C72.3,203.5,71.9,203.4,71.4,203.1z"/>
<path class="st1" d="M212,116.6l-1.3-0.1l-0.1,1.3c0,0.6-0.1,1.1-0.1,1.4c0,0.4-0.1,0.9-0.1,1.4l-0.1,1.3l1.3,0.1l0.8,0.1l1.3,0.1
l0.1-1.3l0.3-2.9l0.1-1.3l-1.3-0.1L212,116.6z"/>
<path class="st1" d="M213,107.1h-0.8h-1.3l0,1.3l0,0.4v0c0,0.2,0,0.4,0,1c0,0.6,0,0.8,0,1v0l0,0.4l0,1.3h1.3h0.8h1.3v-1.3v-2.9
v-1.3H213z"/>
<path class="st1" d="M62.9,199.2c-0.5-0.3-0.9-0.5-1.3-0.7l-1.1-0.6l-0.6,1.1l-0.4,0.7l-0.6,1.1l1.1,0.6l2.6,1.4l1.1,0.6l0.6-1.1
l0.4-0.7l0.6-1.1l-1.1-0.6C63.7,199.6,63.2,199.3,62.9,199.2z"/>
<path class="st1" d="M157.1,20.5c0.5,0.3,0.9,0.5,1.3,0.7l1.1,0.6l0.6-1.1l0.4-0.7l0.6-1.1l-1.1-0.6l-2.6-1.4l-1.1-0.6l-0.6,1.1
l-0.4,0.7l-0.6,1.1l1.1,0.6C156.3,20.1,156.8,20.3,157.1,20.5z"/>
<path class="st1" d="M54.3,194c-0.4-0.3-0.8-0.5-1.2-0.8l-1.1-0.7l-0.7,1.1l-0.4,0.7l-0.7,1.1l1.1,0.7l2.4,1.6l1.1,0.7l0.7-1.1
l0.4-0.7l0.7-1.1l-1.1-0.7C55.1,194.6,54.7,194.3,54.3,194z"/>
<path class="st1" d="M148.6,16.5c0.4,0.2,0.8,0.3,1.3,0.6l1.2,0.5l0.5-1.2l0.3-0.7l0.5-1.2l-1.2-0.5l-2.7-1.1l-1.2-0.5l-0.5,1.2
l-0.3,0.7l-0.5,1.2l1.2,0.5C147.7,16.1,148.1,16.3,148.6,16.5z"/>
<path class="st1" d="M181.4,181.5c-18.3,18.3-43.6,29.6-71.5,29.6c-11,0-21.6-1.8-31.5-5l-1.4,2.8c10.4,3.5,21.4,5.3,33,5.3
c28.8,0,54.8-11.7,73.7-30.5c15-15,25.4-34.5,29.1-56.3l-3.1-0.2C205.9,148.2,195.8,167,181.4,181.5z"/>
<path class="st1" d="M8.8,110c0-27.9,11.3-53.2,29.6-71.5C56.7,20.2,82,8.9,109.9,8.9c11,0,21.6,1.8,31.5,5l1.4-2.8
c-10.4-3.5-21.4-5.3-33-5.3c-28.8,0-54.8,11.7-73.7,30.5C17.4,55.2,5.7,81.2,5.7,110c0,28.8,11.7,54.8,30.5,73.7
c3.6,3.6,7.5,6.9,11.6,10l1.4-2.8c-3.8-2.9-7.4-6-10.8-9.4C20.1,163.2,8.8,137.9,8.8,110z"/>
</g>
</g>
<g id="Ruota_x5F_01">
<animateTransform attributeName="transform"
begin="0"
attributeType="XML"
type="rotate"
from="0 110 110"
to="-360 110 110"
dur="6s"
repeatCount="1" />
<g>
<path class="st2" d="M14.7,159l-0.8,0.4c0.4,0.8,0.9,1.7,1.3,2.5l0.8-0.4C15.6,160.6,15.1,159.8,14.7,159z"/>
<path class="st2" d="M8.2,143.5l-0.9,0.3c0.3,0.9,0.6,1.8,0.9,2.7l0.9-0.3C8.8,145.3,8.5,144.4,8.2,143.5z"/>
<path class="st2" d="M6.3,137l-0.9,0.2c0.2,0.9,0.5,1.8,0.8,2.7l0.9-0.3C6.8,138.8,6.5,137.9,6.3,137z"/>
<path class="st2" d="M9.3,146.6L8.4,147c0.3,0.9,0.7,1.8,1,2.7l0.9-0.3C10,148.4,9.6,147.5,9.3,146.6z"/>
<path class="st2" d="M10.5,149.8l-0.9,0.3c0.4,0.9,0.7,1.8,1.1,2.6l0.9-0.4C11.2,151.5,10.9,150.7,10.5,149.8z"/>
<path class="st2" d="M13.2,156l-0.8,0.4c0.4,0.9,0.8,1.7,1.3,2.6l0.8-0.4C14,157.7,13.6,156.8,13.2,156z"/>
<path class="st2" d="M5.5,133.7l-0.9,0.2c0.2,0.9,0.4,1.9,0.7,2.8l0.9-0.2C5.9,135.6,5.7,134.7,5.5,133.7z"/>
<path class="st2" d="M12.3,154.1c-0.2-0.4-0.3-0.8-0.5-1.2l-0.9,0.4c0.2,0.4,0.3,0.8,0.5,1.2c0.2,0.5,0.4,0.9,0.6,1.4l0.8-0.4
C12.8,155,12.5,154.5,12.3,154.1z"/>
<path class="st2" d="M7.2,140.3l-0.9,0.3c0.3,0.9,0.6,1.8,0.8,2.7L8,143C7.7,142.1,7.5,141.2,7.2,140.3z"/>
<path class="st2" d="M217,103.1l0.9-0.1c-0.1-0.9-0.1-1.9-0.2-2.8l-0.9,0.1C216.8,101.2,216.9,102.2,217,103.1z"/>
<path class="st2" d="M4.8,130.5l-0.9,0.2c0.2,0.9,0.4,1.9,0.6,2.8l0.9-0.2C5.2,132.3,5,131.4,4.8,130.5z"/>
<path class="st2" d="M217.1,106.5l0.9,0c0-1-0.1-1.9-0.1-2.8l-0.9,0.1C217,104.6,217.1,105.5,217.1,106.5z"/>
<path class="st2" d="M217.2,109.8h0.9c0-1,0-1.9,0-2.9l-0.9,0C217.2,108,217.2,108.9,217.2,109.8z"/>
<path class="st2" d="M4.2,127.1l-0.9,0.1c0.2,0.9,0.3,1.9,0.5,2.8l0.9-0.2C4.5,129,4.4,128.1,4.2,127.1z"/>
<path class="st2" d="M3.7,123.8l-0.9,0.1c0.1,0.9,0.3,1.9,0.4,2.8l0.9-0.1C4,125.7,3.8,124.7,3.7,123.8z"/>
<path class="st2" d="M3.3,120.5l-0.9,0.1c0.1,0.9,0.2,1.9,0.3,2.8l0.9-0.1C3.5,122.3,3.4,121.4,3.3,120.5z"/>
<path class="st2" d="M3.1,117.1l-0.9,0.1c0.1,0.9,0.1,1.9,0.2,2.8l0.9-0.1C3.2,119,3.1,118,3.1,117.1z"/>
<path class="st2" d="M39.4,190.6l-0.6,0.7c0.7,0.6,1.4,1.2,2.2,1.8l0.6-0.7C40.8,191.9,40.1,191.2,39.4,190.6z"/>
<path class="st2" d="M36.9,188.4l-0.6,0.7c0.7,0.6,1.4,1.3,2.1,1.9l0.6-0.7C38.3,189.6,37.6,189,36.9,188.4z"/>
<path class="st2" d="M34.5,186l-0.7,0.7c0.7,0.7,1.4,1.3,2,2l0.6-0.7C35.8,187.3,35.1,186.7,34.5,186z"/>
<path class="st2" d="M44.6,194.9l-0.6,0.7c0.8,0.6,1.5,1.1,2.3,1.7l0.5-0.8C46.1,196,45.3,195.5,44.6,194.9z"/>
<path class="st2" d="M52.9,200.7l-0.5,0.8c0.8,0.5,1.6,1,2.4,1.5l0.5-0.8C54.4,201.7,53.6,201.2,52.9,200.7z"/>
<path class="st2" d="M32.1,183.6l-0.7,0.6c0.7,0.7,1.3,1.4,2,2l0.7-0.7C33.4,185,32.8,184.3,32.1,183.6z"/>
<path class="st2" d="M47.3,196.9l-0.5,0.8c0.8,0.6,1.5,1.1,2.3,1.6l0.5-0.8C48.8,198,48,197.5,47.3,196.9z"/>
<path class="st2" d="M50,198.8l-0.5,0.8c0.8,0.5,1.6,1.1,2.4,1.6l0.5-0.8C51.6,199.9,50.8,199.4,50,198.8z"/>
<path class="st2" d="M25.5,176l-0.7,0.6c0.6,0.7,1.2,1.5,1.8,2.2l0.7-0.6C26.7,177.4,26.1,176.7,25.5,176z"/>
<path class="st2" d="M19.7,167.7l-0.8,0.5c0.5,0.8,1,1.6,1.6,2.4l0.8-0.5C20.7,169.3,20.2,168.5,19.7,167.7z"/>
<path class="st2" d="M18,164.9l-0.8,0.5c0.5,0.8,1,1.6,1.5,2.4l0.8-0.5C18.9,166.5,18.4,165.7,18,164.9z"/>
<path class="st2" d="M21.6,170.5l-0.8,0.5c0.5,0.8,1.1,1.6,1.6,2.3l0.8-0.5C22.6,172.1,22.1,171.3,21.6,170.5z"/>
<path class="st2" d="M23.5,173.3l-0.8,0.5c0.6,0.8,1.1,1.5,1.7,2.3l0.7-0.6C24.6,174.8,24.1,174,23.5,173.3z"/>
<path class="st2" d="M27.7,178.6l-0.7,0.6c0.6,0.7,1.2,1.5,1.9,2.2l0.7-0.6C28.9,180,28.3,179.3,27.7,178.6z"/>
<path class="st2" d="M16.3,161.9l-0.8,0.4c0.5,0.8,0.9,1.7,1.4,2.5l0.8-0.5C17.2,163.6,16.7,162.8,16.3,161.9z"/>
<path class="st2" d="M29.8,181.1l-0.7,0.6c0.6,0.7,1.3,1.4,1.9,2.1l0.7-0.6C31.1,182.5,30.5,181.8,29.8,181.1z"/>
<path class="st2" d="M188,36.5l0.7-0.6c-0.7-0.7-1.3-1.4-2-2.1l-0.7,0.7C186.7,35.1,187.4,35.8,188,36.5z"/>
<path class="st2" d="M185.6,34.1l0.7-0.7c-0.7-0.7-1.4-1.3-2-2l-0.6,0.7C184.3,32.8,185,33.4,185.6,34.1z"/>
<path class="st2" d="M190.3,39l0.7-0.6c-0.6-0.7-1.3-1.4-1.9-2.1l-0.7,0.6C189,37.6,189.6,38.3,190.3,39z"/>
<path class="st2" d="M55.3,203.2c0.8,0.5,1.6,0.9,2.5,1.4l0.4-0.8c-0.8-0.5-1.6-0.9-2.5-1.4L55.3,203.2z"/>
<path class="st2" d="M183.2,31.7l0.6-0.7c-0.7-0.6-1.4-1.3-2.1-1.9l-0.6,0.7C181.8,30.5,182.5,31.1,183.2,31.7z"/>
<path class="st2" d="M194.6,44.2l0.7-0.6c-0.6-0.8-1.2-1.5-1.8-2.2l-0.7,0.6C193.4,42.7,194,43.4,194.6,44.2z"/>
<path class="st2" d="M196.6,46.9l0.8-0.5c-0.6-0.8-1.1-1.5-1.7-2.3l-0.7,0.6C195.5,45.3,196,46.1,196.6,46.9z"/>
<path class="st2" d="M180.7,29.5l0.6-0.7c-0.7-0.6-1.4-1.2-2.2-1.9l-0.6,0.7C179.3,28.2,180,28.8,180.7,29.5z"/>
<path class="st2" d="M192.5,41.5l0.7-0.6c-0.6-0.7-1.2-1.5-1.9-2.2l-0.7,0.6C191.2,40.1,191.9,40.8,192.5,41.5z"/>
<path class="st2" d="M170.1,21.2l0.5-0.8c-0.8-0.5-1.6-1.1-2.4-1.6l-0.5,0.8C168.5,20.2,169.3,20.7,170.1,21.2z"/>
<path class="st2" d="M164.8,16.8c-0.8-0.5-1.6-1-2.5-1.4l-0.4,0.8c0.8,0.5,1.6,0.9,2.5,1.4L164.8,16.8z"/>
<path class="st2" d="M161.9,15.2c-0.8-0.5-1.7-0.9-2.5-1.3l-0.4,0.8c0.8,0.4,1.7,0.9,2.5,1.3L161.9,15.2z"/>
<path class="st2" d="M167.2,19.4l0.5-0.8c-0.8-0.5-1.6-1-2.4-1.5l-0.5,0.8C165.6,18.4,166.5,18.9,167.2,19.4z"/>
<path class="st2" d="M198.5,49.6l0.8-0.5c-0.5-0.8-1.1-1.6-1.6-2.3l-0.8,0.5C197.5,48.1,198,48.8,198.5,49.6z"/>
<path class="st2" d="M175.5,25.2l0.6-0.7c-0.8-0.6-1.5-1.2-2.3-1.7l-0.5,0.8C174,24,174.8,24.6,175.5,25.2z"/>
<path class="st2" d="M172.8,23.2l0.5-0.8c-0.8-0.6-1.5-1.1-2.3-1.6l-0.5,0.8C171.3,22.1,172.1,22.6,172.8,23.2z"/>
<path class="st2" d="M178.2,27.3l0.6-0.7c-0.7-0.6-1.5-1.2-2.2-1.8l-0.6,0.7C176.7,26.1,177.4,26.7,178.2,27.3z"/>
<path class="st2" d="M209.6,70.4l0.9-0.3c-0.4-0.9-0.7-1.8-1.1-2.6l-0.9,0.4C208.9,68.7,209.2,69.5,209.6,70.4z"/>
<path class="st2" d="M214.5,86.5l0.9-0.2c-0.2-0.9-0.4-1.9-0.7-2.8l-0.9,0.2C214.1,84.6,214.3,85.5,214.5,86.5z"/>
<path class="st2" d="M213.8,83.2l0.9-0.2c-0.2-0.9-0.5-1.8-0.7-2.8l-0.9,0.3C213.3,81.4,213.5,82.3,213.8,83.2z"/>
<path class="st2" d="M212.9,79.9l0.9-0.3c-0.3-0.9-0.5-1.8-0.8-2.7l-0.9,0.3C212.3,78.1,212.6,79,212.9,79.9z"/>
<path class="st2" d="M215.2,89.8l0.9-0.2c-0.2-0.9-0.4-1.9-0.6-2.8l-0.9,0.2C214.9,87.9,215.1,88.8,215.2,89.8z"/>
<path class="st2" d="M211.9,76.7l0.9-0.3c-0.3-0.9-0.6-1.8-0.9-2.7l-0.9,0.3C211.3,74.9,211.6,75.8,211.9,76.7z"/>
<path class="st2" d="M216.3,96.4l0.9-0.1c-0.1-0.9-0.3-1.9-0.4-2.8l-0.9,0.1C216.1,94.5,216.2,95.5,216.3,96.4z"/>
<path class="st2" d="M215.8,93.1l0.9-0.1c-0.2-0.9-0.3-1.9-0.5-2.8l-0.9,0.2C215.5,91.2,215.7,92.1,215.8,93.1z"/>
<path class="st2" d="M202.1,55.3l0.8-0.5c-0.5-0.8-1-1.6-1.5-2.4l-0.8,0.5C201.2,53.7,201.7,54.5,202.1,55.3z"/>
<path class="st2" d="M203.8,58.2l0.8-0.4c-0.5-0.8-0.9-1.7-1.4-2.5l-0.8,0.5C202.9,56.6,203.4,57.4,203.8,58.2z"/>
<path class="st2" d="M200.4,52.4l0.8-0.5c-0.5-0.8-1-1.6-1.6-2.4l-0.8,0.5C199.4,50.8,199.9,51.6,200.4,52.4z"/>
<path class="st2" d="M205.4,61.2l0.8-0.4c-0.4-0.8-0.9-1.7-1.3-2.5l-0.8,0.4C204.5,59.5,205,60.4,205.4,61.2z"/>
<path class="st2" d="M206.9,64.2l0.8-0.4c-0.4-0.9-0.8-1.7-1.3-2.6l-0.8,0.4C206.1,62.5,206.5,63.4,206.9,64.2z"/>
<path class="st2" d="M216.7,99.7l0.9-0.1c-0.1-0.9-0.2-1.9-0.3-2.8l-0.9,0.1C216.5,97.9,216.6,98.8,216.7,99.7z"/>
<path class="st2" d="M207.7,65.9c0.2,0.5,0.4,0.9,0.6,1.4l0.9-0.4c-0.2-0.5-0.4-0.9-0.6-1.4c-0.2-0.4-0.4-0.8-0.6-1.2l-0.8,0.4
C207.3,65.1,207.5,65.5,207.7,65.9z"/>
<path class="st2" d="M210.8,73.5l0.9-0.3c-0.3-0.9-0.7-1.8-1-2.7l-0.9,0.3C210.1,71.8,210.4,72.7,210.8,73.5z"/>
<path class="st2" d="M194.8,175.5l0.7,0.6c0.6-0.8,1.1-1.5,1.7-2.3l-0.8-0.5C195.9,174,195.4,174.8,194.8,175.5z"/>
<path class="st2" d="M190.5,180.7l0.7,0.6c0.6-0.7,1.2-1.4,1.9-2.2l-0.7-0.6C191.8,179.3,191.1,180,190.5,180.7z"/>
<path class="st2" d="M192.7,178.2l0.7,0.6c0.6-0.7,1.2-1.5,1.8-2.2l-0.7-0.6C193.9,176.7,193.3,177.5,192.7,178.2z"/>
<path class="st2" d="M185.9,185.6l0.7,0.7c0.7-0.7,1.3-1.4,2-2l-0.7-0.6C187.2,184.3,186.6,185,185.9,185.6z"/>
<path class="st2" d="M202.3,164.4l0.8,0.5c0.5-0.8,0.9-1.6,1.4-2.5l-0.8-0.4C203.3,162.8,202.8,163.6,202.3,164.4z"/>
<path class="st2" d="M188.3,183.2l0.7,0.6c0.6-0.7,1.3-1.4,1.9-2.1l-0.7-0.6C189.5,181.8,188.9,182.5,188.3,183.2z"/>
<path class="st2" d="M200.6,167.3l0.8,0.5c0.5-0.8,1-1.6,1.5-2.4l-0.8-0.5C201.6,165.7,201.1,166.5,200.6,167.3z"/>
<path class="st2" d="M196.8,172.8l0.8,0.5c0.6-0.8,1.1-1.5,1.6-2.3l-0.8-0.5C197.9,171.3,197.4,172.1,196.8,172.8z"/>
<path class="st2" d="M198.7,170.1l0.8,0.5c0.5-0.8,1.1-1.6,1.6-2.4l-0.8-0.5C199.8,168.5,199.3,169.3,198.7,170.1z"/>
<path class="st2" d="M158.9,13.6c-0.8-0.4-1.7-0.8-2.6-1.3l-0.4,0.8c0.9,0.4,1.7,0.8,2.5,1.2L158.9,13.6z"/>
<path class="st2" d="M170.4,198.5l0.5,0.8c0.8-0.5,1.6-1.1,2.3-1.6l-0.5-0.8C172,197.4,171.2,198,170.4,198.5z"/>
<path class="st2" d="M173.2,196.6l0.5,0.8c0.8-0.6,1.5-1.1,2.3-1.7l-0.6-0.7C174.7,195.5,173.9,196,173.2,196.6z"/>
<path class="st2" d="M167.6,200.4l0.5,0.8c0.8-0.5,1.6-1,2.4-1.6l-0.5-0.8C169.2,199.3,168.4,199.9,167.6,200.4z"/>
<path class="st2" d="M175.8,194.6l0.6,0.7c0.7-0.6,1.5-1.2,2.2-1.8l-0.6-0.7C177.3,193.4,176.6,194,175.8,194.6z"/>
<path class="st2" d="M181,190.3l0.6,0.7c0.7-0.6,1.4-1.3,2.1-1.9l-0.6-0.7C182.4,189,181.7,189.6,181,190.3z"/>
<path class="st2" d="M183.5,188l0.6,0.7c0.7-0.7,1.4-1.3,2-2l-0.7-0.7C184.9,186.7,184.2,187.3,183.5,188z"/>
<path class="st2" d="M178.5,192.4l0.6,0.7c0.7-0.6,1.5-1.2,2.2-1.8l-0.6-0.7C179.9,191.2,179.2,191.8,178.5,192.4z"/>
<path class="st2" d="M205.6,158.5l0.8,0.4c0.4-0.8,0.8-1.7,1.3-2.6l-0.8-0.4C206.4,156.8,206,157.7,205.6,158.5z"/>
<path class="st2" d="M215.9,126.6l0.9,0.1c0.1-0.9,0.3-1.9,0.4-2.8l-0.9-0.1C216.2,124.7,216,125.7,215.9,126.6z"/>
<path class="st2" d="M215.3,129.9l0.9,0.2c0.2-0.9,0.3-1.9,0.5-2.8l-0.9-0.1C215.6,128.1,215.5,129,215.3,129.9z"/>
<path class="st2" d="M214.6,133.2l0.9,0.2c0.2-0.9,0.4-1.9,0.6-2.8l-0.9-0.2C215,131.4,214.8,132.3,214.6,133.2z"/>
<path class="st2" d="M213.8,136.5l0.9,0.2c0.2-0.9,0.5-1.8,0.7-2.8l-0.9-0.2C214.3,134.7,214.1,135.6,213.8,136.5z"/>
<path class="st2" d="M216.3,123.3l0.9,0.1c0.1-0.9,0.2-1.9,0.3-2.8l-0.9-0.1C216.6,121.4,216.5,122.3,216.3,123.3z"/>
<path class="st2" d="M217.2,110.4c0,0.9,0,1.9,0,2.8l0.9,0c0-1,0-1.9,0-2.9H217.2z"/>
<path class="st2" d="M204,161.5l0.8,0.4c0.5-0.8,0.9-1.7,1.3-2.5l-0.8-0.4C204.9,159.8,204.4,160.6,204,161.5z"/>
<path class="st2" d="M217,116.6l0.9,0.1c0.1-0.9,0.1-1.9,0.1-2.8l-0.9,0C217.1,114.7,217,115.6,217,116.6z"/>
<path class="st2" d="M216.7,119.9l0.9,0.1c0.1-0.9,0.2-1.9,0.2-2.8l-0.9-0.1C216.9,118,216.8,119,216.7,119.9z"/>
<path class="st2" d="M207,155.5l0.8,0.4c0.4-0.9,0.8-1.7,1.2-2.6l-0.9-0.4C207.8,153.8,207.4,154.6,207,155.5z"/>
<path class="st2" d="M164.7,202.1l0.5,0.8c0.8-0.5,1.6-1,2.4-1.5l-0.5-0.8C166.3,201.2,165.5,201.6,164.7,202.1z"/>
<path class="st2" d="M208.4,152.4l0.9,0.4c0.4-0.9,0.7-1.7,1.1-2.6l-0.9-0.3C209.1,150.7,208.8,151.5,208.4,152.4z"/>
<path class="st2" d="M210.9,146.1l0.9,0.3c0.3-0.9,0.6-1.8,0.9-2.7l-0.9-0.3C211.5,144.4,211.2,145.2,210.9,146.1z"/>
<path class="st2" d="M212,143l0.9,0.3c0.3-0.9,0.6-1.8,0.8-2.7l-0.9-0.3C212.5,141.2,212.3,142.1,212,143z"/>
<path class="st2" d="M213,139.7l0.9,0.3c0.3-0.9,0.5-1.8,0.8-2.7l-0.9-0.2C213.5,137.9,213.2,138.8,213,139.7z"/>
<path class="st2" d="M210.2,147.9c-0.2,0.5-0.4,0.9-0.5,1.4l0.9,0.3c0.2-0.5,0.4-0.9,0.6-1.4c0.2-0.4,0.3-0.8,0.5-1.3l-0.9-0.3
C210.5,147.1,210.4,147.5,210.2,147.9z"/>
<path class="st2" d="M103.5,217.9c0.9,0.1,1.9,0.1,2.8,0.1l0-0.9c-0.9,0-1.9-0.1-2.8-0.1L103.5,217.9z"/>
<path class="st2" d="M90,216.2c0.9,0.2,1.9,0.3,2.8,0.5l0.1-0.9c-0.9-0.1-1.9-0.3-2.8-0.5L90,216.2z"/>
<path class="st2" d="M110.3,217.2v0.9c1,0,1.9,0,2.8,0l0-0.9C112.2,217.2,111.2,217.2,110.3,217.2z"/>
<path class="st2" d="M96.7,217.3c0.9,0.1,1.9,0.2,2.8,0.3l0.1-0.9c-0.9-0.1-1.9-0.2-2.8-0.3L96.7,217.3z"/>
<path class="st2" d="M86.7,215.6c0.9,0.2,1.9,0.4,2.8,0.6l0.2-0.9c-0.9-0.2-1.8-0.4-2.8-0.6L86.7,215.6z"/>
<path class="st2" d="M93.4,216.8c0.9,0.1,1.9,0.3,2.8,0.4l0.1-0.9c-0.9-0.1-1.9-0.3-2.8-0.4L93.4,216.8z"/>
<path class="st2" d="M106.9,218.1c1,0,1.9,0,2.8,0v-0.9c-0.9,0-1.9,0-2.8,0L106.9,218.1z"/>
<path class="st2" d="M58.2,204.9c0.8,0.5,1.7,0.9,2.5,1.3l0.4-0.8c-0.8-0.4-1.7-0.9-2.5-1.3L58.2,204.9z"/>
<path class="st2" d="M161.8,203.8l0.4,0.8c0.8-0.5,1.7-0.9,2.5-1.4l-0.5-0.8C163.5,202.9,162.6,203.3,161.8,203.8z"/>
<path class="st2" d="M83.4,214.8c0.9,0.2,1.8,0.5,2.8,0.7l0.2-0.9c-0.9-0.2-1.8-0.4-2.7-0.7L83.4,214.8z"/>
<path class="st2" d="M64.3,207.9c0.9,0.4,1.7,0.8,2.6,1.2l0.4-0.9c-0.9-0.4-1.7-0.8-2.6-1.2L64.3,207.9z"/>
<path class="st2" d="M61.2,206.5c0.8,0.4,1.7,0.8,2.6,1.2l0.4-0.8c-0.9-0.4-1.7-0.8-2.5-1.2L61.2,206.5z"/>
<path class="st2" d="M67.4,209.3c0.9,0.4,1.7,0.7,2.6,1.1l0.3-0.9c-0.9-0.3-1.7-0.7-2.6-1.1L67.4,209.3z"/>
<path class="st2" d="M70.8,209.7l-0.3,0.9c0.4,0.2,0.8,0.3,1.3,0.5c0.5,0.2,0.9,0.3,1.4,0.5l0.3-0.9c-0.5-0.2-0.9-0.3-1.4-0.5
C71.7,210.1,71.3,209.9,70.8,209.7z"/>
<path class="st2" d="M76.9,212.9c0.9,0.3,1.8,0.6,2.7,0.8l0.3-0.9c-0.9-0.3-1.8-0.5-2.7-0.8L76.9,212.9z"/>
<path class="st2" d="M73.7,211.8c0.9,0.3,1.8,0.6,2.7,0.9l0.3-0.9c-0.9-0.3-1.8-0.6-2.7-0.9L73.7,211.8z"/>
<path class="st2" d="M80.1,213.9c0.9,0.3,1.8,0.5,2.7,0.8l0.2-0.9c-0.9-0.2-1.8-0.5-2.7-0.7L80.1,213.9z"/>
<path class="st2" d="M100.1,217.7c0.9,0.1,1.9,0.2,2.8,0.2l0.1-0.9c-0.9-0.1-1.9-0.1-2.8-0.2L100.1,217.7z"/>
<path class="st2" d="M149.7,209.5l0.3,0.9c0.9-0.4,1.8-0.7,2.6-1.1l-0.4-0.9C151.4,208.8,150.5,209.2,149.7,209.5z"/>
<path class="st2" d="M113.6,217.1l0,0.9c0.9,0,1.9-0.1,2.8-0.1l-0.1-0.9C115.5,217,114.6,217.1,113.6,217.1z"/>
<path class="st2" d="M143.3,211.8l0.3,0.9c0.9-0.3,1.8-0.6,2.7-0.9l-0.3-0.9C145.1,211.2,144.2,211.5,143.3,211.8z"/>
<path class="st2" d="M140.1,212.8l0.3,0.9c0.9-0.3,1.8-0.5,2.7-0.8l-0.3-0.9C141.9,212.3,141,212.6,140.1,212.8z"/>
<path class="st2" d="M158.8,205.4l0.4,0.8c0.8-0.4,1.7-0.9,2.5-1.3l-0.4-0.8C160.5,204.5,159.7,204.9,158.8,205.4z"/>
<path class="st2" d="M154.1,207.7c-0.4,0.2-0.9,0.4-1.3,0.6l0.4,0.9c0.4-0.2,0.9-0.4,1.3-0.6c0.4-0.2,0.8-0.4,1.3-0.6l-0.4-0.8
C154.9,207.3,154.5,207.5,154.1,207.7z"/>
<path class="st2" d="M155.8,206.9l0.4,0.8c0.9-0.4,1.7-0.8,2.6-1.2l-0.4-0.8C157.5,206,156.7,206.5,155.8,206.9z"/>
<path class="st2" d="M146.5,210.7l0.3,0.9c0.9-0.3,1.8-0.7,2.7-1l-0.3-0.9C148.3,210.1,147.4,210.4,146.5,210.7z"/>
<path class="st2" d="M123.7,216.3l0.1,0.9c0.9-0.1,1.9-0.3,2.8-0.4l-0.1-0.9C125.6,216,124.6,216.2,123.7,216.3z"/>
<path class="st2" d="M120.3,216.7l0.1,0.9c0.9-0.1,1.9-0.2,2.8-0.3l-0.1-0.9C122.2,216.5,121.3,216.6,120.3,216.7z"/>
<path class="st2" d="M117,217l0.1,0.9c0.9-0.1,1.9-0.1,2.8-0.2l-0.1-0.9C118.9,216.8,117.9,216.9,117,217z"/>
<path class="st2" d="M133.6,214.5l0.2,0.9c0.9-0.2,1.8-0.4,2.8-0.7l-0.2-0.9C135.4,214.1,134.5,214.3,133.6,214.5z"/>
<path class="st2" d="M136.9,213.7l0.2,0.9c0.9-0.2,1.8-0.5,2.7-0.8l-0.3-0.9C138.7,213.3,137.8,213.5,136.9,213.7z"/>
<path class="st2" d="M130.3,215.2l0.2,0.9c0.9-0.2,1.9-0.4,2.8-0.6l-0.2-0.9C132.2,214.8,131.3,215,130.3,215.2z"/>
<path class="st2" d="M127,215.8l0.1,0.9c0.9-0.2,1.9-0.3,2.8-0.5l-0.2-0.9C128.9,215.5,127.9,215.7,127,215.8z"/>
<path class="st2" d="M41.9,192.8l-0.6,0.7c0.7,0.6,1.5,1.2,2.2,1.8l0.6-0.7C43.4,194,42.7,193.4,41.9,192.8z"/>
<path class="st2" d="M110.3,2.8c0.9,0,1.9,0,2.8,0l0-0.9c-1,0-1.9,0-2.9,0V2.8z"/>
<path class="st2" d="M55.2,17.9l-0.5-0.8c-0.8,0.5-1.6,1-2.4,1.5l0.5,0.8C53.6,18.9,54.4,18.4,55.2,17.9z"/>
<path class="st2" d="M49.5,21.6L49,20.8c-0.8,0.5-1.6,1.1-2.3,1.6l0.5,0.8C47.9,22.6,48.7,22.1,49.5,21.6z"/>
<path class="st2" d="M52.3,19.7l-0.5-0.8c-0.8,0.5-1.6,1-2.4,1.6l0.5,0.8C50.7,20.7,51.5,20.2,52.3,19.7z"/>
<path class="st2" d="M65.9,12.3c0.4-0.2,0.8-0.4,1.2-0.5l-0.4-0.9c-0.4,0.2-0.8,0.4-1.3,0.5c-0.5,0.2-0.9,0.4-1.3,0.6l0.4,0.8
C65,12.7,65.5,12.5,65.9,12.3z"/>
<path class="st2" d="M61.1,14.7l-0.4-0.8c-0.8,0.4-1.7,0.9-2.5,1.3l0.4,0.8C59.4,15.5,60.2,15.1,61.1,14.7z"/>
<path class="st2" d="M64.1,13.2l-0.4-0.8c-0.9,0.4-1.7,0.8-2.6,1.3l0.4,0.8C62.4,14,63.2,13.6,64.1,13.2z"/>
<path class="st2" d="M38.9,29.8l-0.6-0.7c-0.7,0.6-1.4,1.3-2.1,1.9l0.6,0.7C37.5,31.1,38.2,30.5,38.9,29.8z"/>
<path class="st2" d="M46.7,23.5l-0.5-0.8c-0.8,0.6-1.5,1.1-2.3,1.7l0.6,0.7C45.2,24.6,46,24.1,46.7,23.5z"/>
<path class="st2" d="M34,34.5l-0.7-0.7c-0.7,0.7-1.3,1.4-2,2.1l0.7,0.6C32.6,35.8,33.3,35.1,34,34.5z"/>
<path class="st2" d="M36.4,32.1l-0.6-0.7c-0.7,0.7-1.4,1.3-2.1,2l0.7,0.7C35,33.4,35.7,32.8,36.4,32.1z"/>
<path class="st2" d="M41.4,27.6l-0.6-0.7c-0.7,0.6-1.5,1.2-2.2,1.9l0.6,0.7C40,28.9,40.7,28.2,41.4,27.6z"/>
<path class="st2" d="M44,25.5l-0.6-0.7c-0.7,0.6-1.5,1.2-2.2,1.8l0.6,0.7C42.6,26.7,43.3,26.1,44,25.5z"/>
<path class="st2" d="M106.9,2.9c0.9,0,1.9,0,2.8,0V1.9c-1,0-1.9,0-2.9,0L106.9,2.9z"/>
<path class="st2" d="M103,3l-0.1-0.9c-1,0.1-1.9,0.1-2.8,0.2l0.1,0.9C101.1,3.2,102.1,3.1,103,3z"/>
<path class="st2" d="M99.6,3.3l-0.1-0.9c-0.9,0.1-1.9,0.2-2.8,0.3l0.1,0.9C97.8,3.5,98.7,3.4,99.6,3.3z"/>
<path class="st2" d="M96.3,3.7l-0.1-0.9c-0.9,0.1-1.9,0.3-2.8,0.4l0.1,0.9C94.4,4,95.3,3.8,96.3,3.7z"/>
<path class="st2" d="M106.4,2.9l0-0.9c-1,0-1.9,0.1-2.9,0.1l0.1,0.9C104.5,3,105.4,2.9,106.4,2.9z"/>
<path class="st2" d="M31.6,36.9L31,36.2c-0.6,0.7-1.3,1.4-1.9,2.1l0.7,0.6C30.4,38.3,31,37.6,31.6,36.9z"/>
<path class="st2" d="M92.9,4.2l-0.1-0.9c-0.9,0.2-1.9,0.3-2.8,0.5l0.2,0.9C91.1,4.5,92,4.3,92.9,4.2z"/>
<path class="st2" d="M83.1,6.3l-0.2-0.9c-0.9,0.2-1.8,0.5-2.8,0.8L80.3,7C81.2,6.8,82.1,6.5,83.1,6.3z"/>
<path class="st2" d="M73.4,9.3l-0.3-0.9c-0.9,0.3-1.8,0.7-2.7,1l0.3,0.9C71.6,9.9,72.5,9.6,73.4,9.3z"/>
<path class="st2" d="M76.6,8.2l-0.3-0.9c-0.9,0.3-1.8,0.6-2.7,0.9l0.3,0.9C74.8,8.8,75.7,8.5,76.6,8.2z"/>
<path class="st2" d="M79.8,7.2l-0.3-0.9c-0.9,0.3-1.8,0.6-2.7,0.8L77.1,8C78,7.7,78.9,7.4,79.8,7.2z"/>
<path class="st2" d="M70.3,10.5l-0.3-0.9c-0.9,0.4-1.8,0.7-2.6,1.1l0.4,0.9C68.5,11.2,69.4,10.8,70.3,10.5z"/>
<path class="st2" d="M89.6,4.8l-0.2-0.9c-0.9,0.2-1.9,0.4-2.8,0.6l0.2,0.9C87.8,5.2,88.7,5,89.6,4.8z"/>
<path class="st2" d="M58.1,16.3l-0.4-0.8c-0.8,0.5-1.7,0.9-2.5,1.4l0.5,0.8C56.5,17.2,57.3,16.7,58.1,16.3z"/>
<path class="st2" d="M29.4,39.4l-0.7-0.6c-0.6,0.7-1.2,1.4-1.9,2.2l0.7,0.6C28.1,40.8,28.8,40.1,29.4,39.4z"/>
<path class="st2" d="M4.1,93.6l-0.9-0.1c-0.1,0.9-0.3,1.9-0.4,2.8l0.9,0.1C3.8,95.5,3.9,94.5,4.1,93.6z"/>
<path class="st2" d="M5.3,87l-0.9-0.2c-0.2,0.9-0.4,1.9-0.6,2.8l0.9,0.2C4.9,88.8,5.1,87.9,5.3,87z"/>
<path class="st2" d="M4.7,90.3l-0.9-0.2c-0.2,0.9-0.3,1.9-0.5,2.8l0.9,0.1C4.3,92.1,4.5,91.2,4.7,90.3z"/>
<path class="st2" d="M6.1,83.7l-0.9-0.2c-0.2,0.9-0.5,1.8-0.7,2.8l0.9,0.2C5.7,85.5,5.9,84.6,6.1,83.7z"/>
<path class="st2" d="M8,77.2L7.1,77c-0.3,0.9-0.6,1.8-0.8,2.7l0.9,0.3C7.4,79,7.7,78.1,8,77.2z"/>
<path class="st2" d="M7,80.5l-0.9-0.3C5.8,81.1,5.6,82,5.3,83l0.9,0.2C6.5,82.3,6.7,81.4,7,80.5z"/>
<path class="st2" d="M2.9,113.7l-0.9,0c0,1,0.1,1.9,0.1,2.8l0.9-0.1C3,115.6,2.9,114.7,2.9,113.7z"/>
<path class="st2" d="M3.3,100.3l-0.9-0.1c-0.1,0.9-0.2,1.9-0.2,2.8l0.9,0.1C3.1,102.2,3.2,101.2,3.3,100.3z"/>
<path class="st2" d="M2.8,110.4H1.9c0,1,0,1.9,0,2.9l0.9,0C2.8,112.3,2.8,111.3,2.8,110.4z"/>
<path class="st2" d="M2.9,107l-0.9,0c0,1,0,1.9,0,2.9h0.9C2.8,108.9,2.8,108,2.9,107z"/>
<path class="st2" d="M3,103.6l-0.9-0.1c-0.1,1-0.1,1.9-0.1,2.8l0.9,0C2.9,105.5,2.9,104.6,3,103.6z"/>
<path class="st2" d="M3.6,96.9l-0.9-0.1c-0.1,0.9-0.2,1.9-0.3,2.8l0.9,0.1C3.4,98.8,3.5,97.9,3.6,96.9z"/>
<path class="st2" d="M21.2,50.1l-0.8-0.5c-0.5,0.8-1.1,1.6-1.6,2.4l0.8,0.5C20.1,51.6,20.6,50.8,21.2,50.1z"/>
<path class="st2" d="M23.1,47.3l-0.8-0.5c-0.6,0.8-1.1,1.5-1.6,2.3l0.8,0.5C22,48.8,22.5,48.1,23.1,47.3z"/>
<path class="st2" d="M19.3,52.9l-0.8-0.5c-0.5,0.8-1,1.6-1.5,2.4l0.8,0.5C18.3,54.5,18.8,53.7,19.3,52.9z"/>
<path class="st2" d="M27.2,42l-0.7-0.6c-0.6,0.7-1.2,1.5-1.8,2.2l0.7,0.6C26,43.4,26.6,42.7,27.2,42z"/>
<path class="st2" d="M25.1,44.6L24.4,44c-0.6,0.8-1.1,1.5-1.7,2.3l0.8,0.5C24,46.1,24.5,45.3,25.1,44.6z"/>
<path class="st2" d="M17.6,55.8l-0.8-0.5c-0.5,0.8-0.9,1.6-1.4,2.5l0.8,0.4C16.6,57.4,17.1,56.6,17.6,55.8z"/>
<path class="st2" d="M9.1,74.1l-0.9-0.3c-0.3,0.9-0.6,1.8-0.9,2.7l0.9,0.3C8.4,75.8,8.7,74.9,9.1,74.1z"/>
<path class="st2" d="M9.8,72.1c0.2-0.4,0.3-0.8,0.5-1.2l-0.9-0.3C9.2,71,9,71.4,8.9,71.8c-0.2,0.5-0.4,1-0.5,1.5l0.9,0.3
C9.4,73.1,9.6,72.6,9.8,72.1z"/>
<path class="st2" d="M11.5,67.8l-0.9-0.4c-0.4,0.9-0.7,1.8-1.1,2.6l0.9,0.3C10.8,69.5,11.1,68.6,11.5,67.8z"/>
<path class="st2" d="M12.9,64.7L12,64.3c-0.4,0.9-0.8,1.7-1.2,2.6l0.9,0.4C12.1,66.4,12.5,65.6,12.9,64.7z"/>
<path class="st2" d="M14.4,61.7l-0.8-0.4c-0.4,0.8-0.8,1.7-1.3,2.6l0.8,0.4C13.5,63.4,13.9,62.5,14.4,61.7z"/>
<path class="st2" d="M15.9,58.7l-0.8-0.4c-0.5,0.8-0.9,1.7-1.3,2.5l0.8,0.4C15,60.4,15.5,59.5,15.9,58.7z"/>
<path class="st2" d="M86.3,5.5l-0.2-0.9c-0.9,0.2-1.9,0.4-2.8,0.7l0.2,0.9C84.5,5.9,85.4,5.7,86.3,5.5z"/>
<path class="st2" d="M120.4,3.3c0.9,0.1,1.9,0.2,2.8,0.3l0.1-0.9c-0.9-0.1-1.9-0.2-2.8-0.3L120.4,3.3z"/>
<path class="st2" d="M140.2,7.2c0.9,0.3,1.8,0.5,2.7,0.8l0.3-0.9c-0.9-0.3-1.8-0.6-2.7-0.8L140.2,7.2z"/>
<path class="st2" d="M117,3c0.9,0.1,1.9,0.1,2.8,0.2l0.1-0.9c-0.9-0.1-1.9-0.2-2.8-0.2L117,3z"/>
<path class="st2" d="M146.9,8.4l-0.3,0.9c0.4,0.2,0.9,0.3,1.3,0.5c0.4,0.2,0.9,0.3,1.3,0.5l0.3-0.9c-0.4-0.2-0.9-0.4-1.3-0.5
C147.8,8.7,147.3,8.6,146.9,8.4z"/>
<path class="st2" d="M149.7,10.5c0.9,0.3,1.7,0.7,2.6,1.1l0.4-0.9c-0.9-0.4-1.8-0.7-2.6-1.1L149.7,10.5z"/>
<path class="st2" d="M143.4,8.2c0.9,0.3,1.8,0.6,2.7,0.9l0.3-0.9c-0.9-0.3-1.8-0.6-2.7-0.9L143.4,8.2z"/>
<path class="st2" d="M130.4,4.8c0.9,0.2,1.8,0.4,2.8,0.6l0.2-0.9c-0.9-0.2-1.9-0.4-2.8-0.6L130.4,4.8z"/>
<path class="st2" d="M136.9,6.3c0.9,0.2,1.8,0.5,2.7,0.7l0.3-0.9c-0.9-0.3-1.8-0.5-2.8-0.8L136.9,6.3z"/>
<path class="st2" d="M133.7,5.5c0.9,0.2,1.8,0.4,2.7,0.7l0.2-0.9c-0.9-0.2-1.8-0.5-2.8-0.7L133.7,5.5z"/>
<path class="st2" d="M123.7,3.7c0.9,0.1,1.9,0.3,2.8,0.4l0.1-0.9c-0.9-0.1-1.9-0.3-2.8-0.4L123.7,3.7z"/>
<path class="st2" d="M127.1,4.2c0.9,0.2,1.9,0.3,2.8,0.5l0.2-0.9c-0.9-0.2-1.9-0.3-2.8-0.5L127.1,4.2z"/>
<path class="st2" d="M152.8,11.8c0.9,0.4,1.7,0.8,2.6,1.2l0.4-0.8c-0.9-0.4-1.7-0.8-2.6-1.2L152.8,11.8z"/>
<path class="st2" d="M113.6,2.9c0.9,0,1.9,0.1,2.8,0.1l0.1-0.9c-1-0.1-1.9-0.1-2.9-0.1L113.6,2.9z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 28 KiB

61
TMP/loader_anim/loader_anim/test.html

@ -0,0 +1,61 @@
<!DOCTYPE html>
<html>
<head>
<style>
@keyframes pop-up{
0% {transform: scale(0);}
10% {transform: scale(1);}
95% {transform: scale(1);}
100% {transform: scale(0);}
}
@keyframes fade{
0% {opacity: 0;}
10% {opacity: 1;}
95% {opacity: 1;}
100% {opacity: 0;}
}
.anim {
animation: pop-up 6s ease-in 0s 1 normal;
transform: scale(0);
}
.box{
width: 220px;
height: 220px;
}
.box div{
position: absolute;
top: 110px;
left: 108px;
animation: fade 6s linear 0s 1 normal;
opacity: 0;
}
html, body{
font-family: 'Open Sans', sans-serif;
font-size: 0.9em;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="countUp-jquery.js"></script>
<script src="countUp.js"></script>
</head>
<body>
<main>
<div class="box">
<div id="count">0</div>
<img class="anim" src="loader.svg" />
</div>
</main>
<script>
var numAnim = new CountUp("count", 0, 100, 0, 6);
if (!numAnim.error) {
numAnim.start();
} else {
console.error(numAnim.error);
}
</script>
</body>
</html>

134
css/styles.css

@ -14569,7 +14569,7 @@ a:hover {
padding: 10px;
}
/* line 97, global.scss */
/* line 96, global.scss */
#dropLoading {
display: none;
position: fixed;
@ -14580,30 +14580,68 @@ a:hover {
background: rgba(0, 0, 0, 0.8);
overflow: hidden;
}
/* line 106, global.scss */
#dropLoading #animation_container {
position: absolute;
height: 300px;
width: 300px;
/* line 107, global.scss */
#dropLoading .box {
position: fixed;
height: 220px;
width: 220px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
/* line 115, global.scss */
#dropLoading #countdown {
#dropLoading .box div {
position: fixed;
height: 30px;
line-height: 30px;
width: 50px;
z-index: 9999;
top: calc(50% + 30px);
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
font-size: 1.125rem;
animation: fade 7s linear 0s 1 normal;
}
/* line 123, global.scss */
#dropLoading .box .anim {
animation: pop-up 7s ease-in 0s 1 normal;
}
/* line 127, global.scss */
#dropLoading .box .count {
color: white;
}
/* line 130, global.scss */
#dropLoading .box .text {
width: 100vw;
color: white;
text-align: center;
font-size: 0.625rem;
top: calc(50% + 140px);
}
@keyframes pop-up {
0% {
transform: scale(0);
}
10% {
transform: scale(1);
}
95% {
transform: scale(1);
}
100% {
transform: scale(0);
}
}
@keyframes fade {
0% {
opacity: 0;
}
10% {
opacity: 1;
}
95% {
opacity: 1;
}
100% {
opacity: 0;
}
}
/* line 3, forms.scss */
input, button {
border: none;
@ -15074,9 +15112,10 @@ header .container .row .menu ul li.active a:hover, header .container .row .menu
top: 145px;
left: 12px;
height: 371px;
width: 222px;
width: 223px;
overflow: hidden;
}
/* line 47, sections/plans.scss */
/* line 48, sections/plans.scss */
.plans .phone .content .cloud {
display: none;
position: relative;
@ -15087,71 +15126,108 @@ header .container .row .menu ul li.active a:hover, header .container .row .menu
margin: 10px 0;
border-radius: 8px;
}
/* line 57, sections/plans.scss */
/* line 58, sections/plans.scss */
.plans .phone .content .cloud img {
width: 100%;
padding: 5px;
cursor: pointer;
}
/* line 64, sections/plans.scss */
.plans .phone .content .cloud.left {
left: 15px;
background: #f6e7ea;
border: 1px solid #c8bcbe;
}
/* line 61, sections/plans.scss */
/* line 68, sections/plans.scss */
.plans .phone .content .cloud.left:before {
content: '';
border: solid 11px transparent;
border: solid 8px transparent;
border-right-color: #c8bcbe;
position: absolute;
left: 0;
top: 50%;
transform: translate(-100%, -50%);
}
/* line 70, sections/plans.scss */
/* line 77, sections/plans.scss */
.plans .phone .content .cloud.left:after {
content: '';
border: solid 10px transparent;
border: solid 7px transparent;
border-right-color: #f6e7ea;
position: absolute;
left: 0;
top: 50%;
transform: translate(-100%, -50%);
}
/* line 81, sections/plans.scss */
/* line 88, sections/plans.scss */
.plans .phone .content .cloud.right {
left: calc(20% - 13px);
background: #d4eeed;
border: 1px solid #b0c8c6;
}
/* line 85, sections/plans.scss */
/* line 92, sections/plans.scss */
.plans .phone .content .cloud.right:before {
content: '';
border: solid 11px transparent;
border: solid 8px transparent;
border-left-color: #b0c8c6;
position: absolute;
right: 0;
top: 50%;
transform: translate(100%, -50%);
}
/* line 94, sections/plans.scss */
/* line 101, sections/plans.scss */
.plans .phone .content .cloud.right:after {
content: '';
border: solid 10px transparent;
border: solid 7px transparent;
border-left-color: #d4eeed;
position: absolute;
right: 0;
top: 50%;
transform: translate(100%, -50%);
}
/* line 105, sections/plans.scss */
/* line 112, sections/plans.scss */
.plans .phone .content .cloud.empty {
width: 100%;
text-align: center;
padding: 0;
}
/* line 114, sections/plans.scss */
/* line 120, sections/plans.scss */
.plans .phone .content .video {
display: none;
position: absolute;
top: 0;
left: 0;
height: 371px;
width: 223px;
background: black;
}
/* line 128, sections/plans.scss */
.plans .phone .content .video .video-close {
position: absolute;
top: 0;
right: 3px;
height: 20px;
width: 20px;
cursor: pointer;
}
/* line 136, sections/plans.scss */
.plans .phone .content .video .video-close:after {
content: '\f00d';
font-family: "FontAwesome";
font-size: 1.25rem;
color: white;
}
/* line 143, sections/plans.scss */
.plans .phone .content .video video {
height: 371px;
width: 223px;
}
/* line 150, sections/plans.scss */
.plans .phone .input {
position: absolute;
top: 516px;
left: 12px;
height: 42px;
width: 222px;
width: 223px;
border-radius: 0 0 26px 26px;
overflow: hidden;
}

257
images/loader.svg

@ -0,0 +1,257 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="220px" height="220px" viewBox="0 0 220 220" style="enable-background:new 0 0 220 220;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;}
.st1{fill:#A41620;}
.st2{fill:#8DF3E5;}
</style>
<g id="Ruota_x5F_04">
<animateTransform attributeName="transform" begin="0" attributeType="XML" type="rotate" from="0 110 110" to="360 110 110" dur="3s" repeatCount="indefinite"/>
<circle class="st0" cx="110" cy="110" r="90"/>
<path class="st1" d="M152.8,188.9c21.6-11.8,36.4-30,43.3-53.6c6.4-21.8,4.6-46-6.9-67.5v0l-0.5-0.9 c-11.9-21.8-31.5-36.7-53.6-43.2c-21.8-6.4-46-4.6-67.5,6.9h0L66.8,31C45,42.9,30.1,62.5,23.6,84.6c-6.5,22.1-4.6,46.6,7.3,68.4 l3.4-1.8l3.4-1.8c-10.9-19.9-12.6-42.4-6.7-62.6c5.9-20.2,19.6-38.1,39.5-49l0,0c19.9-10.9,42.4-12.6,62.6-6.7 c20.2,5.9,38.1,19.6,49,39.5l0,0.1c10.9,19.9,12.6,42.4,6.7,62.6c-5.9,20.2-19.6,38.1-39.5,49l1.8,3.4L152.8,188.9L152.8,188.9z"/>
</g>
<g id="Ruota_x5F_03">
<animateTransform attributeName="transform" begin="0" attributeType="XML" type="rotate" from="0 110 110" to="-360 110 110" dur="2s" repeatCount="indefinite"/>
<path class="st2" d="M11.7,109.9c0,27.1,11,51.6,28.7,69.4C58.2,197,82.8,208,109.9,208c27.1,0,51.6-11,69.4-28.7 C197,161.5,208,137,208,109.9c0-27.1-11-51.6-28.7-69.4c-17.8-17.8-42.3-28.7-69.4-28.7v5c25.7,0,49,10.4,65.8,27.3 c16.9,16.9,27.3,40.1,27.3,65.8c0,25.7-10.4,49-27.3,65.8c-16.9,16.9-40.1,27.3-65.8,27.3c-25.7,0-49-10.4-65.8-27.3 c-16.9-16.9-27.3-40.1-27.3-65.8H11.7L11.7,109.9z"/>
<circle class="st0" cx="110" cy="110" r="93"/>
</g>
<g id="Ruota_x5F_02">
<animateTransform attributeName="transform" begin="0" attributeType="XML" type="rotate" from="0 110 110" to="360 110 110" dur="6s" repeatCount="indefinite"/>
<g>
<path class="st1" d="M181.4,38.4L181.4,38.4c0.3,0.3,0.7,0.7,1,1l0.9,0.9l0.9-0.9l0.6-0.6l0.9-0.9l-0.9-0.9l-2-2l-0.9-0.9 l-0.9,0.9l-0.6,0.6l-0.9,0.9l0.9,0.9C180.7,37.8,181.1,38.1,181.4,38.4z"/>
<path class="st1" d="M187.7,45.3L187.7,45.3c0.4,0.4,0.7,0.8,0.9,1.1l0.8,1l1-0.8l0.6-0.5l1-0.8l-0.8-1l-1.9-2.2l-0.8-1l-1,0.8 l-0.6,0.5l-1,0.8l0.8,1C187.1,44.7,187.4,45,187.7,45.3z"/>
<path class="st1" d="M193.7,53.4c0.3,0.4,0.5,0.8,0.8,1.2l0.7,1.1l1.1-0.7l0.7-0.4l1-0.7l-0.7-1l-1.6-2.4l-0.7-1l-1,0.7l-0.7,0.4 l-1.1,0.7l0.7,1C193.2,52.6,193.4,53,193.7,53.4z"/>
<path class="st1" d="M173.9,31.7c0.3,0.2,0.7,0.5,1.1,0.9l1,0.8l0.8-1l0.5-0.6l0.8-1l-1-0.8l-2.2-1.8l-1-0.8l-0.8,1l-0.5,0.6 l-0.8,1l1,0.8C173.3,31.2,173.6,31.5,173.9,31.7z"/>
<path class="st1" d="M202.7,69.9c0.2,0.5,0.4,0.9,0.6,1.3c0.2,0.5,0.4,1,0.5,1.3l0.5,1.2l1.2-0.5l0.7-0.3l1.2-0.5l-0.5-1.2 l-1.1-2.7l-0.5-1.2l-1.2,0.5l-0.7,0.3l-1.2,0.5L202.7,69.9z"/>
<path class="st1" d="M198.3,60.9c0.2,0.3,0.4,0.8,0.7,1.3c0.2,0.4,0.5,0.9,0.7,1.3l0.6,1.1l1.1-0.6l0.7-0.4l1.1-0.6l-0.6-1.1 l-1.4-2.6l-0.6-1.1l-1.1,0.6l-0.7,0.4l-1.1,0.6L198.3,60.9z"/>
<path class="st1" d="M211.4,97l-1.3,0.1l0.1,1.3c0.1,0.5,0.1,1,0.2,1.4c0,0.3,0.1,0.8,0.1,1.4l0.1,1.3l1.3-0.1l0.8-0.1l1.3-0.1 l-0.1-1.3l-0.3-2.9l-0.1-1.3l-1.3,0.1L211.4,97z"/>
<path class="st1" d="M205.6,77.4l0.4,1.2c0.2,0.5,0.3,1,0.4,1.4c0.1,0.4,0.3,0.9,0.4,1.4l0.4,1.2l1.2-0.4l0.8-0.2l1.2-0.4 l-0.4-1.2l-0.9-2.8l-0.4-1.2l-1.2,0.4l-0.8,0.2L205.6,77.4z"/>
<path class="st1" d="M165.7,25.6c0.4,0.3,0.8,0.5,1.2,0.8l1.1,0.7l0.7-1.1l0.4-0.7l0.7-1.1l-1.1-0.7l-2.4-1.6l-1.1-0.7l-0.7,1.1 l-0.4,0.7l-0.7,1.1l1.1,0.7C164.9,25.1,165.3,25.4,165.7,25.6z"/>
<path class="st1" d="M209.6,86.8l-1.3,0.3l0.3,1.2c0.1,0.6,0.2,1.1,0.3,1.4c0.1,0.4,0.2,0.9,0.3,1.4l0.2,1.3l1.3-0.3l0.8-0.2 l1.2-0.3l-0.3-1.2l-0.6-2.8l-0.3-1.2l-1.2,0.3L209.6,86.8z"/>
<path class="st1" d="M71.4,203.1c-0.4-0.2-0.8-0.3-1.3-0.6l-1.2-0.5l-0.5,1.2l-0.3,0.7l-0.5,1.2l1.2,0.5l2.7,1.1l1.2,0.5l0.5-1.2 l0.3-0.7l0.5-1.2l-1.2-0.5C72.3,203.5,71.9,203.4,71.4,203.1z"/>
<path class="st1" d="M212,116.6l-1.3-0.1l-0.1,1.3c0,0.6-0.1,1.1-0.1,1.4c0,0.4-0.1,0.9-0.1,1.4l-0.1,1.3l1.3,0.1l0.8,0.1l1.3,0.1 l0.1-1.3l0.3-2.9l0.1-1.3l-1.3-0.1L212,116.6z"/>
<path class="st1" d="M213,107.1h-0.8h-1.3l0,1.3l0,0.4v0c0,0.2,0,0.4,0,1c0,0.6,0,0.8,0,1v0l0,0.4l0,1.3h1.3h0.8h1.3v-1.3v-2.9 v-1.3H213z"/>
<path class="st1" d="M62.9,199.2c-0.5-0.3-0.9-0.5-1.3-0.7l-1.1-0.6l-0.6,1.1l-0.4,0.7l-0.6,1.1l1.1,0.6l2.6,1.4l1.1,0.6l0.6-1.1 l0.4-0.7l0.6-1.1l-1.1-0.6C63.7,199.6,63.2,199.3,62.9,199.2z"/>
<path class="st1" d="M157.1,20.5c0.5,0.3,0.9,0.5,1.3,0.7l1.1,0.6l0.6-1.1l0.4-0.7l0.6-1.1l-1.1-0.6l-2.6-1.4l-1.1-0.6l-0.6,1.1 l-0.4,0.7l-0.6,1.1l1.1,0.6C156.3,20.1,156.8,20.3,157.1,20.5z"/>
<path class="st1" d="M54.3,194c-0.4-0.3-0.8-0.5-1.2-0.8l-1.1-0.7l-0.7,1.1l-0.4,0.7l-0.7,1.1l1.1,0.7l2.4,1.6l1.1,0.7l0.7-1.1 l0.4-0.7l0.7-1.1l-1.1-0.7C55.1,194.6,54.7,194.3,54.3,194z"/>
<path class="st1" d="M148.6,16.5c0.4,0.2,0.8,0.3,1.3,0.6l1.2,0.5l0.5-1.2l0.3-0.7l0.5-1.2l-1.2-0.5l-2.7-1.1l-1.2-0.5l-0.5,1.2 l-0.3,0.7l-0.5,1.2l1.2,0.5C147.7,16.1,148.1,16.3,148.6,16.5z"/>
<path class="st1" d="M181.4,181.5c-18.3,18.3-43.6,29.6-71.5,29.6c-11,0-21.6-1.8-31.5-5l-1.4,2.8c10.4,3.5,21.4,5.3,33,5.3 c28.8,0,54.8-11.7,73.7-30.5c15-15,25.4-34.5,29.1-56.3l-3.1-0.2C205.9,148.2,195.8,167,181.4,181.5z"/>
<path class="st1" d="M8.8,110c0-27.9,11.3-53.2,29.6-71.5C56.7,20.2,82,8.9,109.9,8.9c11,0,21.6,1.8,31.5,5l1.4-2.8 c-10.4-3.5-21.4-5.3-33-5.3c-28.8,0-54.8,11.7-73.7,30.5C17.4,55.2,5.7,81.2,5.7,110c0,28.8,11.7,54.8,30.5,73.7 c3.6,3.6,7.5,6.9,11.6,10l1.4-2.8c-3.8-2.9-7.4-6-10.8-9.4C20.1,163.2,8.8,137.9,8.8,110z"/>
</g>
</g>
<g id="Ruota_x5F_01">
<animateTransform attributeName="transform" begin="0" attributeType="XML" type="rotate" from="0 110 110" to="-360 110 110" dur="6s"/>
<g>
<path class="st2" d="M14.7,159l-0.8,0.4c0.4,0.8,0.9,1.7,1.3,2.5l0.8-0.4C15.6,160.6,15.1,159.8,14.7,159z"/>
<path class="st2" d="M8.2,143.5l-0.9,0.3c0.3,0.9,0.6,1.8,0.9,2.7l0.9-0.3C8.8,145.3,8.5,144.4,8.2,143.5z"/>
<path class="st2" d="M6.3,137l-0.9,0.2c0.2,0.9,0.5,1.8,0.8,2.7l0.9-0.3C6.8,138.8,6.5,137.9,6.3,137z"/>
<path class="st2" d="M9.3,146.6L8.4,147c0.3,0.9,0.7,1.8,1,2.7l0.9-0.3C10,148.4,9.6,147.5,9.3,146.6z"/>
<path class="st2" d="M10.5,149.8l-0.9,0.3c0.4,0.9,0.7,1.8,1.1,2.6l0.9-0.4C11.2,151.5,10.9,150.7,10.5,149.8z"/>
<path class="st2" d="M13.2,156l-0.8,0.4c0.4,0.9,0.8,1.7,1.3,2.6l0.8-0.4C14,157.7,13.6,156.8,13.2,156z"/>
<path class="st2" d="M5.5,133.7l-0.9,0.2c0.2,0.9,0.4,1.9,0.7,2.8l0.9-0.2C5.9,135.6,5.7,134.7,5.5,133.7z"/>
<path class="st2" d="M12.3,154.1c-0.2-0.4-0.3-0.8-0.5-1.2l-0.9,0.4c0.2,0.4,0.3,0.8,0.5,1.2c0.2,0.5,0.4,0.9,0.6,1.4l0.8-0.4 C12.8,155,12.5,154.5,12.3,154.1z"/>
<path class="st2" d="M7.2,140.3l-0.9,0.3c0.3,0.9,0.6,1.8,0.8,2.7L8,143C7.7,142.1,7.5,141.2,7.2,140.3z"/>
<path class="st2" d="M217,103.1l0.9-0.1c-0.1-0.9-0.1-1.9-0.2-2.8l-0.9,0.1C216.8,101.2,216.9,102.2,217,103.1z"/>
<path class="st2" d="M4.8,130.5l-0.9,0.2c0.2,0.9,0.4,1.9,0.6,2.8l0.9-0.2C5.2,132.3,5,131.4,4.8,130.5z"/>
<path class="st2" d="M217.1,106.5l0.9,0c0-1-0.1-1.9-0.1-2.8l-0.9,0.1C217,104.6,217.1,105.5,217.1,106.5z"/>
<path class="st2" d="M217.2,109.8h0.9c0-1,0-1.9,0-2.9l-0.9,0C217.2,108,217.2,108.9,217.2,109.8z"/>
<path class="st2" d="M4.2,127.1l-0.9,0.1c0.2,0.9,0.3,1.9,0.5,2.8l0.9-0.2C4.5,129,4.4,128.1,4.2,127.1z"/>
<path class="st2" d="M3.7,123.8l-0.9,0.1c0.1,0.9,0.3,1.9,0.4,2.8l0.9-0.1C4,125.7,3.8,124.7,3.7,123.8z"/>
<path class="st2" d="M3.3,120.5l-0.9,0.1c0.1,0.9,0.2,1.9,0.3,2.8l0.9-0.1C3.5,122.3,3.4,121.4,3.3,120.5z"/>
<path class="st2" d="M3.1,117.1l-0.9,0.1c0.1,0.9,0.1,1.9,0.2,2.8l0.9-0.1C3.2,119,3.1,118,3.1,117.1z"/>
<path class="st2" d="M39.4,190.6l-0.6,0.7c0.7,0.6,1.4,1.2,2.2,1.8l0.6-0.7C40.8,191.9,40.1,191.2,39.4,190.6z"/>
<path class="st2" d="M36.9,188.4l-0.6,0.7c0.7,0.6,1.4,1.3,2.1,1.9l0.6-0.7C38.3,189.6,37.6,189,36.9,188.4z"/>
<path class="st2" d="M34.5,186l-0.7,0.7c0.7,0.7,1.4,1.3,2,2l0.6-0.7C35.8,187.3,35.1,186.7,34.5,186z"/>
<path class="st2" d="M44.6,194.9l-0.6,0.7c0.8,0.6,1.5,1.1,2.3,1.7l0.5-0.8C46.1,196,45.3,195.5,44.6,194.9z"/>
<path class="st2" d="M52.9,200.7l-0.5,0.8c0.8,0.5,1.6,1,2.4,1.5l0.5-0.8C54.4,201.7,53.6,201.2,52.9,200.7z"/>
<path class="st2" d="M32.1,183.6l-0.7,0.6c0.7,0.7,1.3,1.4,2,2l0.7-0.7C33.4,185,32.8,184.3,32.1,183.6z"/>
<path class="st2" d="M47.3,196.9l-0.5,0.8c0.8,0.6,1.5,1.1,2.3,1.6l0.5-0.8C48.8,198,48,197.5,47.3,196.9z"/>
<path class="st2" d="M50,198.8l-0.5,0.8c0.8,0.5,1.6,1.1,2.4,1.6l0.5-0.8C51.6,199.9,50.8,199.4,50,198.8z"/>
<path class="st2" d="M25.5,176l-0.7,0.6c0.6,0.7,1.2,1.5,1.8,2.2l0.7-0.6C26.7,177.4,26.1,176.7,25.5,176z"/>
<path class="st2" d="M19.7,167.7l-0.8,0.5c0.5,0.8,1,1.6,1.6,2.4l0.8-0.5C20.7,169.3,20.2,168.5,19.7,167.7z"/>
<path class="st2" d="M18,164.9l-0.8,0.5c0.5,0.8,1,1.6,1.5,2.4l0.8-0.5C18.9,166.5,18.4,165.7,18,164.9z"/>
<path class="st2" d="M21.6,170.5l-0.8,0.5c0.5,0.8,1.1,1.6,1.6,2.3l0.8-0.5C22.6,172.1,22.1,171.3,21.6,170.5z"/>
<path class="st2" d="M23.5,173.3l-0.8,0.5c0.6,0.8,1.1,1.5,1.7,2.3l0.7-0.6C24.6,174.8,24.1,174,23.5,173.3z"/>
<path class="st2" d="M27.7,178.6l-0.7,0.6c0.6,0.7,1.2,1.5,1.9,2.2l0.7-0.6C28.9,180,28.3,179.3,27.7,178.6z"/>
<path class="st2" d="M16.3,161.9l-0.8,0.4c0.5,0.8,0.9,1.7,1.4,2.5l0.8-0.5C17.2,163.6,16.7,162.8,16.3,161.9z"/>
<path class="st2" d="M29.8,181.1l-0.7,0.6c0.6,0.7,1.3,1.4,1.9,2.1l0.7-0.6C31.1,182.5,30.5,181.8,29.8,181.1z"/>
<path class="st2" d="M188,36.5l0.7-0.6c-0.7-0.7-1.3-1.4-2-2.1l-0.7,0.7C186.7,35.1,187.4,35.8,188,36.5z"/>
<path class="st2" d="M185.6,34.1l0.7-0.7c-0.7-0.7-1.4-1.3-2-2l-0.6,0.7C184.3,32.8,185,33.4,185.6,34.1z"/>
<path class="st2" d="M190.3,39l0.7-0.6c-0.6-0.7-1.3-1.4-1.9-2.1l-0.7,0.6C189,37.6,189.6,38.3,190.3,39z"/>
<path class="st2" d="M55.3,203.2c0.8,0.5,1.6,0.9,2.5,1.4l0.4-0.8c-0.8-0.5-1.6-0.9-2.5-1.4L55.3,203.2z"/>
<path class="st2" d="M183.2,31.7l0.6-0.7c-0.7-0.6-1.4-1.3-2.1-1.9l-0.6,0.7C181.8,30.5,182.5,31.1,183.2,31.7z"/>
<path class="st2" d="M194.6,44.2l0.7-0.6c-0.6-0.8-1.2-1.5-1.8-2.2l-0.7,0.6C193.4,42.7,194,43.4,194.6,44.2z"/>
<path class="st2" d="M196.6,46.9l0.8-0.5c-0.6-0.8-1.1-1.5-1.7-2.3l-0.7,0.6C195.5,45.3,196,46.1,196.6,46.9z"/>
<path class="st2" d="M180.7,29.5l0.6-0.7c-0.7-0.6-1.4-1.2-2.2-1.9l-0.6,0.7C179.3,28.2,180,28.8,180.7,29.5z"/>
<path class="st2" d="M192.5,41.5l0.7-0.6c-0.6-0.7-1.2-1.5-1.9-2.2l-0.7,0.6C191.2,40.1,191.9,40.8,192.5,41.5z"/>
<path class="st2" d="M170.1,21.2l0.5-0.8c-0.8-0.5-1.6-1.1-2.4-1.6l-0.5,0.8C168.5,20.2,169.3,20.7,170.1,21.2z"/>
<path class="st2" d="M164.8,16.8c-0.8-0.5-1.6-1-2.5-1.4l-0.4,0.8c0.8,0.5,1.6,0.9,2.5,1.4L164.8,16.8z"/>
<path class="st2" d="M161.9,15.2c-0.8-0.5-1.7-0.9-2.5-1.3l-0.4,0.8c0.8,0.4,1.7,0.9,2.5,1.3L161.9,15.2z"/>
<path class="st2" d="M167.2,19.4l0.5-0.8c-0.8-0.5-1.6-1-2.4-1.5l-0.5,0.8C165.6,18.4,166.5,18.9,167.2,19.4z"/>
<path class="st2" d="M198.5,49.6l0.8-0.5c-0.5-0.8-1.1-1.6-1.6-2.3l-0.8,0.5C197.5,48.1,198,48.8,198.5,49.6z"/>
<path class="st2" d="M175.5,25.2l0.6-0.7c-0.8-0.6-1.5-1.2-2.3-1.7l-0.5,0.8C174,24,174.8,24.6,175.5,25.2z"/>
<path class="st2" d="M172.8,23.2l0.5-0.8c-0.8-0.6-1.5-1.1-2.3-1.6l-0.5,0.8C171.3,22.1,172.1,22.6,172.8,23.2z"/>
<path class="st2" d="M178.2,27.3l0.6-0.7c-0.7-0.6-1.5-1.2-2.2-1.8l-0.6,0.7C176.7,26.1,177.4,26.7,178.2,27.3z"/>
<path class="st2" d="M209.6,70.4l0.9-0.3c-0.4-0.9-0.7-1.8-1.1-2.6l-0.9,0.4C208.9,68.7,209.2,69.5,209.6,70.4z"/>
<path class="st2" d="M214.5,86.5l0.9-0.2c-0.2-0.9-0.4-1.9-0.7-2.8l-0.9,0.2C214.1,84.6,214.3,85.5,214.5,86.5z"/>
<path class="st2" d="M213.8,83.2l0.9-0.2c-0.2-0.9-0.5-1.8-0.7-2.8l-0.9,0.3C213.3,81.4,213.5,82.3,213.8,83.2z"/>
<path class="st2" d="M212.9,79.9l0.9-0.3c-0.3-0.9-0.5-1.8-0.8-2.7l-0.9,0.3C212.3,78.1,212.6,79,212.9,79.9z"/>
<path class="st2" d="M215.2,89.8l0.9-0.2c-0.2-0.9-0.4-1.9-0.6-2.8l-0.9,0.2C214.9,87.9,215.1,88.8,215.2,89.8z"/>
<path class="st2" d="M211.9,76.7l0.9-0.3c-0.3-0.9-0.6-1.8-0.9-2.7l-0.9,0.3C211.3,74.9,211.6,75.8,211.9,76.7z"/>
<path class="st2" d="M216.3,96.4l0.9-0.1c-0.1-0.9-0.3-1.9-0.4-2.8l-0.9,0.1C216.1,94.5,216.2,95.5,216.3,96.4z"/>
<path class="st2" d="M215.8,93.1l0.9-0.1c-0.2-0.9-0.3-1.9-0.5-2.8l-0.9,0.2C215.5,91.2,215.7,92.1,215.8,93.1z"/>
<path class="st2" d="M202.1,55.3l0.8-0.5c-0.5-0.8-1-1.6-1.5-2.4l-0.8,0.5C201.2,53.7,201.7,54.5,202.1,55.3z"/>
<path class="st2" d="M203.8,58.2l0.8-0.4c-0.5-0.8-0.9-1.7-1.4-2.5l-0.8,0.5C202.9,56.6,203.4,57.4,203.8,58.2z"/>
<path class="st2" d="M200.4,52.4l0.8-0.5c-0.5-0.8-1-1.6-1.6-2.4l-0.8,0.5C199.4,50.8,199.9,51.6,200.4,52.4z"/>
<path class="st2" d="M205.4,61.2l0.8-0.4c-0.4-0.8-0.9-1.7-1.3-2.5l-0.8,0.4C204.5,59.5,205,60.4,205.4,61.2z"/>
<path class="st2" d="M206.9,64.2l0.8-0.4c-0.4-0.9-0.8-1.7-1.3-2.6l-0.8,0.4C206.1,62.5,206.5,63.4,206.9,64.2z"/>
<path class="st2" d="M216.7,99.7l0.9-0.1c-0.1-0.9-0.2-1.9-0.3-2.8l-0.9,0.1C216.5,97.9,216.6,98.8,216.7,99.7z"/>
<path class="st2" d="M207.7,65.9c0.2,0.5,0.4,0.9,0.6,1.4l0.9-0.4c-0.2-0.5-0.4-0.9-0.6-1.4c-0.2-0.4-0.4-0.8-0.6-1.2l-0.8,0.4 C207.3,65.1,207.5,65.5,207.7,65.9z"/>
<path class="st2" d="M210.8,73.5l0.9-0.3c-0.3-0.9-0.7-1.8-1-2.7l-0.9,0.3C210.1,71.8,210.4,72.7,210.8,73.5z"/>
<path class="st2" d="M194.8,175.5l0.7,0.6c0.6-0.8,1.1-1.5,1.7-2.3l-0.8-0.5C195.9,174,195.4,174.8,194.8,175.5z"/>
<path class="st2" d="M190.5,180.7l0.7,0.6c0.6-0.7,1.2-1.4,1.9-2.2l-0.7-0.6C191.8,179.3,191.1,180,190.5,180.7z"/>
<path class="st2" d="M192.7,178.2l0.7,0.6c0.6-0.7,1.2-1.5,1.8-2.2l-0.7-0.6C193.9,176.7,193.3,177.5,192.7,178.2z"/>
<path class="st2" d="M185.9,185.6l0.7,0.7c0.7-0.7,1.3-1.4,2-2l-0.7-0.6C187.2,184.3,186.6,185,185.9,185.6z"/>
<path class="st2" d="M202.3,164.4l0.8,0.5c0.5-0.8,0.9-1.6,1.4-2.5l-0.8-0.4C203.3,162.8,202.8,163.6,202.3,164.4z"/>
<path class="st2" d="M188.3,183.2l0.7,0.6c0.6-0.7,1.3-1.4,1.9-2.1l-0.7-0.6C189.5,181.8,188.9,182.5,188.3,183.2z"/>
<path class="st2" d="M200.6,167.3l0.8,0.5c0.5-0.8,1-1.6,1.5-2.4l-0.8-0.5C201.6,165.7,201.1,166.5,200.6,167.3z"/>
<path class="st2" d="M196.8,172.8l0.8,0.5c0.6-0.8,1.1-1.5,1.6-2.3l-0.8-0.5C197.9,171.3,197.4,172.1,196.8,172.8z"/>
<path class="st2" d="M198.7,170.1l0.8,0.5c0.5-0.8,1.1-1.6,1.6-2.4l-0.8-0.5C199.8,168.5,199.3,169.3,198.7,170.1z"/>
<path class="st2" d="M158.9,13.6c-0.8-0.4-1.7-0.8-2.6-1.3l-0.4,0.8c0.9,0.4,1.7,0.8,2.5,1.2L158.9,13.6z"/>
<path class="st2" d="M170.4,198.5l0.5,0.8c0.8-0.5,1.6-1.1,2.3-1.6l-0.5-0.8C172,197.4,171.2,198,170.4,198.5z"/>
<path class="st2" d="M173.2,196.6l0.5,0.8c0.8-0.6,1.5-1.1,2.3-1.7l-0.6-0.7C174.7,195.5,173.9,196,173.2,196.6z"/>
<path class="st2" d="M167.6,200.4l0.5,0.8c0.8-0.5,1.6-1,2.4-1.6l-0.5-0.8C169.2,199.3,168.4,199.9,167.6,200.4z"/>
<path class="st2" d="M175.8,194.6l0.6,0.7c0.7-0.6,1.5-1.2,2.2-1.8l-0.6-0.7C177.3,193.4,176.6,194,175.8,194.6z"/>
<path class="st2" d="M181,190.3l0.6,0.7c0.7-0.6,1.4-1.3,2.1-1.9l-0.6-0.7C182.4,189,181.7,189.6,181,190.3z"/>
<path class="st2" d="M183.5,188l0.6,0.7c0.7-0.7,1.4-1.3,2-2l-0.7-0.7C184.9,186.7,184.2,187.3,183.5,188z"/>
<path class="st2" d="M178.5,192.4l0.6,0.7c0.7-0.6,1.5-1.2,2.2-1.8l-0.6-0.7C179.9,191.2,179.2,191.8,178.5,192.4z"/>
<path class="st2" d="M205.6,158.5l0.8,0.4c0.4-0.8,0.8-1.7,1.3-2.6l-0.8-0.4C206.4,156.8,206,157.7,205.6,158.5z"/>
<path class="st2" d="M215.9,126.6l0.9,0.1c0.1-0.9,0.3-1.9,0.4-2.8l-0.9-0.1C216.2,124.7,216,125.7,215.9,126.6z"/>
<path class="st2" d="M215.3,129.9l0.9,0.2c0.2-0.9,0.3-1.9,0.5-2.8l-0.9-0.1C215.6,128.1,215.5,129,215.3,129.9z"/>
<path class="st2" d="M214.6,133.2l0.9,0.2c0.2-0.9,0.4-1.9,0.6-2.8l-0.9-0.2C215,131.4,214.8,132.3,214.6,133.2z"/>
<path class="st2" d="M213.8,136.5l0.9,0.2c0.2-0.9,0.5-1.8,0.7-2.8l-0.9-0.2C214.3,134.7,214.1,135.6,213.8,136.5z"/>
<path class="st2" d="M216.3,123.3l0.9,0.1c0.1-0.9,0.2-1.9,0.3-2.8l-0.9-0.1C216.6,121.4,216.5,122.3,216.3,123.3z"/>
<path class="st2" d="M217.2,110.4c0,0.9,0,1.9,0,2.8l0.9,0c0-1,0-1.9,0-2.9H217.2z"/>
<path class="st2" d="M204,161.5l0.8,0.4c0.5-0.8,0.9-1.7,1.3-2.5l-0.8-0.4C204.9,159.8,204.4,160.6,204,161.5z"/>
<path class="st2" d="M217,116.6l0.9,0.1c0.1-0.9,0.1-1.9,0.1-2.8l-0.9,0C217.1,114.7,217,115.6,217,116.6z"/>
<path class="st2" d="M216.7,119.9l0.9,0.1c0.1-0.9,0.2-1.9,0.2-2.8l-0.9-0.1C216.9,118,216.8,119,216.7,119.9z"/>
<path class="st2" d="M207,155.5l0.8,0.4c0.4-0.9,0.8-1.7,1.2-2.6l-0.9-0.4C207.8,153.8,207.4,154.6,207,155.5z"/>
<path class="st2" d="M164.7,202.1l0.5,0.8c0.8-0.5,1.6-1,2.4-1.5l-0.5-0.8C166.3,201.2,165.5,201.6,164.7,202.1z"/>
<path class="st2" d="M208.4,152.4l0.9,0.4c0.4-0.9,0.7-1.7,1.1-2.6l-0.9-0.3C209.1,150.7,208.8,151.5,208.4,152.4z"/>
<path class="st2" d="M210.9,146.1l0.9,0.3c0.3-0.9,0.6-1.8,0.9-2.7l-0.9-0.3C211.5,144.4,211.2,145.2,210.9,146.1z"/>
<path class="st2" d="M212,143l0.9,0.3c0.3-0.9,0.6-1.8,0.8-2.7l-0.9-0.3C212.5,141.2,212.3,142.1,212,143z"/>
<path class="st2" d="M213,139.7l0.9,0.3c0.3-0.9,0.5-1.8,0.8-2.7l-0.9-0.2C213.5,137.9,213.2,138.8,213,139.7z"/>
<path class="st2" d="M210.2,147.9c-0.2,0.5-0.4,0.9-0.5,1.4l0.9,0.3c0.2-0.5,0.4-0.9,0.6-1.4c0.2-0.4,0.3-0.8,0.5-1.3l-0.9-0.3 C210.5,147.1,210.4,147.5,210.2,147.9z"/>
<path class="st2" d="M103.5,217.9c0.9,0.1,1.9,0.1,2.8,0.1l0-0.9c-0.9,0-1.9-0.1-2.8-0.1L103.5,217.9z"/>
<path class="st2" d="M90,216.2c0.9,0.2,1.9,0.3,2.8,0.5l0.1-0.9c-0.9-0.1-1.9-0.3-2.8-0.5L90,216.2z"/>
<path class="st2" d="M110.3,217.2v0.9c1,0,1.9,0,2.8,0l0-0.9C112.2,217.2,111.2,217.2,110.3,217.2z"/>
<path class="st2" d="M96.7,217.3c0.9,0.1,1.9,0.2,2.8,0.3l0.1-0.9c-0.9-0.1-1.9-0.2-2.8-0.3L96.7,217.3z"/>
<path class="st2" d="M86.7,215.6c0.9,0.2,1.9,0.4,2.8,0.6l0.2-0.9c-0.9-0.2-1.8-0.4-2.8-0.6L86.7,215.6z"/>
<path class="st2" d="M93.4,216.8c0.9,0.1,1.9,0.3,2.8,0.4l0.1-0.9c-0.9-0.1-1.9-0.3-2.8-0.4L93.4,216.8z"/>
<path class="st2" d="M106.9,218.1c1,0,1.9,0,2.8,0v-0.9c-0.9,0-1.9,0-2.8,0L106.9,218.1z"/>
<path class="st2" d="M58.2,204.9c0.8,0.5,1.7,0.9,2.5,1.3l0.4-0.8c-0.8-0.4-1.7-0.9-2.5-1.3L58.2,204.9z"/>
<path class="st2" d="M161.8,203.8l0.4,0.8c0.8-0.5,1.7-0.9,2.5-1.4l-0.5-0.8C163.5,202.9,162.6,203.3,161.8,203.8z"/>
<path class="st2" d="M83.4,214.8c0.9,0.2,1.8,0.5,2.8,0.7l0.2-0.9c-0.9-0.2-1.8-0.4-2.7-0.7L83.4,214.8z"/>
<path class="st2" d="M64.3,207.9c0.9,0.4,1.7,0.8,2.6,1.2l0.4-0.9c-0.9-0.4-1.7-0.8-2.6-1.2L64.3,207.9z"/>
<path class="st2" d="M61.2,206.5c0.8,0.4,1.7,0.8,2.6,1.2l0.4-0.8c-0.9-0.4-1.7-0.8-2.5-1.2L61.2,206.5z"/>
<path class="st2" d="M67.4,209.3c0.9,0.4,1.7,0.7,2.6,1.1l0.3-0.9c-0.9-0.3-1.7-0.7-2.6-1.1L67.4,209.3z"/>
<path class="st2" d="M70.8,209.7l-0.3,0.9c0.4,0.2,0.8,0.3,1.3,0.5c0.5,0.2,0.9,0.3,1.4,0.5l0.3-0.9c-0.5-0.2-0.9-0.3-1.4-0.5 C71.7,210.1,71.3,209.9,70.8,209.7z"/>
<path class="st2" d="M76.9,212.9c0.9,0.3,1.8,0.6,2.7,0.8l0.3-0.9c-0.9-0.3-1.8-0.5-2.7-0.8L76.9,212.9z"/>
<path class="st2" d="M73.7,211.8c0.9,0.3,1.8,0.6,2.7,0.9l0.3-0.9c-0.9-0.3-1.8-0.6-2.7-0.9L73.7,211.8z"/>
<path class="st2" d="M80.1,213.9c0.9,0.3,1.8,0.5,2.7,0.8l0.2-0.9c-0.9-0.2-1.8-0.5-2.7-0.7L80.1,213.9z"/>
<path class="st2" d="M100.1,217.7c0.9,0.1,1.9,0.2,2.8,0.2l0.1-0.9c-0.9-0.1-1.9-0.1-2.8-0.2L100.1,217.7z"/>
<path class="st2" d="M149.7,209.5l0.3,0.9c0.9-0.4,1.8-0.7,2.6-1.1l-0.4-0.9C151.4,208.8,150.5,209.2,149.7,209.5z"/>
<path class="st2" d="M113.6,217.1l0,0.9c0.9,0,1.9-0.1,2.8-0.1l-0.1-0.9C115.5,217,114.6,217.1,113.6,217.1z"/>
<path class="st2" d="M143.3,211.8l0.3,0.9c0.9-0.3,1.8-0.6,2.7-0.9l-0.3-0.9C145.1,211.2,144.2,211.5,143.3,211.8z"/>
<path class="st2" d="M140.1,212.8l0.3,0.9c0.9-0.3,1.8-0.5,2.7-0.8l-0.3-0.9C141.9,212.3,141,212.6,140.1,212.8z"/>
<path class="st2" d="M158.8,205.4l0.4,0.8c0.8-0.4,1.7-0.9,2.5-1.3l-0.4-0.8C160.5,204.5,159.7,204.9,158.8,205.4z"/>
<path class="st2" d="M154.1,207.7c-0.4,0.2-0.9,0.4-1.3,0.6l0.4,0.9c0.4-0.2,0.9-0.4,1.3-0.6c0.4-0.2,0.8-0.4,1.3-0.6l-0.4-0.8 C154.9,207.3,154.5,207.5,154.1,207.7z"/>
<path class="st2" d="M155.8,206.9l0.4,0.8c0.9-0.4,1.7-0.8,2.6-1.2l-0.4-0.8C157.5,206,156.7,206.5,155.8,206.9z"/>
<path class="st2" d="M146.5,210.7l0.3,0.9c0.9-0.3,1.8-0.7,2.7-1l-0.3-0.9C148.3,210.1,147.4,210.4,146.5,210.7z"/>
<path class="st2" d="M123.7,216.3l0.1,0.9c0.9-0.1,1.9-0.3,2.8-0.4l-0.1-0.9C125.6,216,124.6,216.2,123.7,216.3z"/>
<path class="st2" d="M120.3,216.7l0.1,0.9c0.9-0.1,1.9-0.2,2.8-0.3l-0.1-0.9C122.2,216.5,121.3,216.6,120.3,216.7z"/>
<path class="st2" d="M117,217l0.1,0.9c0.9-0.1,1.9-0.1,2.8-0.2l-0.1-0.9C118.9,216.8,117.9,216.9,117,217z"/>
<path class="st2" d="M133.6,214.5l0.2,0.9c0.9-0.2,1.8-0.4,2.8-0.7l-0.2-0.9C135.4,214.1,134.5,214.3,133.6,214.5z"/>
<path class="st2" d="M136.9,213.7l0.2,0.9c0.9-0.2,1.8-0.5,2.7-0.8l-0.3-0.9C138.7,213.3,137.8,213.5,136.9,213.7z"/>
<path class="st2" d="M130.3,215.2l0.2,0.9c0.9-0.2,1.9-0.4,2.8-0.6l-0.2-0.9C132.2,214.8,131.3,215,130.3,215.2z"/>
<path class="st2" d="M127,215.8l0.1,0.9c0.9-0.2,1.9-0.3,2.8-0.5l-0.2-0.9C128.9,215.5,127.9,215.7,127,215.8z"/>
<path class="st2" d="M41.9,192.8l-0.6,0.7c0.7,0.6,1.5,1.2,2.2,1.8l0.6-0.7C43.4,194,42.7,193.4,41.9,192.8z"/>
<path class="st2" d="M110.3,2.8c0.9,0,1.9,0,2.8,0l0-0.9c-1,0-1.9,0-2.9,0V2.8z"/>
<path class="st2" d="M55.2,17.9l-0.5-0.8c-0.8,0.5-1.6,1-2.4,1.5l0.5,0.8C53.6,18.9,54.4,18.4,55.2,17.9z"/>
<path class="st2" d="M49.5,21.6L49,20.8c-0.8,0.5-1.6,1.1-2.3,1.6l0.5,0.8C47.9,22.6,48.7,22.1,49.5,21.6z"/>
<path class="st2" d="M52.3,19.7l-0.5-0.8c-0.8,0.5-1.6,1-2.4,1.6l0.5,0.8C50.7,20.7,51.5,20.2,52.3,19.7z"/>
<path class="st2" d="M65.9,12.3c0.4-0.2,0.8-0.4,1.2-0.5l-0.4-0.9c-0.4,0.2-0.8,0.4-1.3,0.5c-0.5,0.2-0.9,0.4-1.3,0.6l0.4,0.8 C65,12.7,65.5,12.5,65.9,12.3z"/>
<path class="st2" d="M61.1,14.7l-0.4-0.8c-0.8,0.4-1.7,0.9-2.5,1.3l0.4,0.8C59.4,15.5,60.2,15.1,61.1,14.7z"/>
<path class="st2" d="M64.1,13.2l-0.4-0.8c-0.9,0.4-1.7,0.8-2.6,1.3l0.4,0.8C62.4,14,63.2,13.6,64.1,13.2z"/>
<path class="st2" d="M38.9,29.8l-0.6-0.7c-0.7,0.6-1.4,1.3-2.1,1.9l0.6,0.7C37.5,31.1,38.2,30.5,38.9,29.8z"/>
<path class="st2" d="M46.7,23.5l-0.5-0.8c-0.8,0.6-1.5,1.1-2.3,1.7l0.6,0.7C45.2,24.6,46,24.1,46.7,23.5z"/>
<path class="st2" d="M34,34.5l-0.7-0.7c-0.7,0.7-1.3,1.4-2,2.1l0.7,0.6C32.6,35.8,33.3,35.1,34,34.5z"/>
<path class="st2" d="M36.4,32.1l-0.6-0.7c-0.7,0.7-1.4,1.3-2.1,2l0.7,0.7C35,33.4,35.7,32.8,36.4,32.1z"/>
<path class="st2" d="M41.4,27.6l-0.6-0.7c-0.7,0.6-1.5,1.2-2.2,1.9l0.6,0.7C40,28.9,40.7,28.2,41.4,27.6z"/>
<path class="st2" d="M44,25.5l-0.6-0.7c-0.7,0.6-1.5,1.2-2.2,1.8l0.6,0.7C42.6,26.7,43.3,26.1,44,25.5z"/>
<path class="st2" d="M106.9,2.9c0.9,0,1.9,0,2.8,0V1.9c-1,0-1.9,0-2.9,0L106.9,2.9z"/>
<path class="st2" d="M103,3l-0.1-0.9c-1,0.1-1.9,0.1-2.8,0.2l0.1,0.9C101.1,3.2,102.1,3.1,103,3z"/>
<path class="st2" d="M99.6,3.3l-0.1-0.9c-0.9,0.1-1.9,0.2-2.8,0.3l0.1,0.9C97.8,3.5,98.7,3.4,99.6,3.3z"/>
<path class="st2" d="M96.3,3.7l-0.1-0.9c-0.9,0.1-1.9,0.3-2.8,0.4l0.1,0.9C94.4,4,95.3,3.8,96.3,3.7z"/>
<path class="st2" d="M106.4,2.9l0-0.9c-1,0-1.9,0.1-2.9,0.1l0.1,0.9C104.5,3,105.4,2.9,106.4,2.9z"/>
<path class="st2" d="M31.6,36.9L31,36.2c-0.6,0.7-1.3,1.4-1.9,2.1l0.7,0.6C30.4,38.3,31,37.6,31.6,36.9z"/>
<path class="st2" d="M92.9,4.2l-0.1-0.9c-0.9,0.2-1.9,0.3-2.8,0.5l0.2,0.9C91.1,4.5,92,4.3,92.9,4.2z"/>
<path class="st2" d="M83.1,6.3l-0.2-0.9c-0.9,0.2-1.8,0.5-2.8,0.8L80.3,7C81.2,6.8,82.1,6.5,83.1,6.3z"/>
<path class="st2" d="M73.4,9.3l-0.3-0.9c-0.9,0.3-1.8,0.7-2.7,1l0.3,0.9C71.6,9.9,72.5,9.6,73.4,9.3z"/>
<path class="st2" d="M76.6,8.2l-0.3-0.9c-0.9,0.3-1.8,0.6-2.7,0.9l0.3,0.9C74.8,8.8,75.7,8.5,76.6,8.2z"/>
<path class="st2" d="M79.8,7.2l-0.3-0.9c-0.9,0.3-1.8,0.6-2.7,0.8L77.1,8C78,7.7,78.9,7.4,79.8,7.2z"/>
<path class="st2" d="M70.3,10.5l-0.3-0.9c-0.9,0.4-1.8,0.7-2.6,1.1l0.4,0.9C68.5,11.2,69.4,10.8,70.3,10.5z"/>
<path class="st2" d="M89.6,4.8l-0.2-0.9c-0.9,0.2-1.9,0.4-2.8,0.6l0.2,0.9C87.8,5.2,88.7,5,89.6,4.8z"/>
<path class="st2" d="M58.1,16.3l-0.4-0.8c-0.8,0.5-1.7,0.9-2.5,1.4l0.5,0.8C56.5,17.2,57.3,16.7,58.1,16.3z"/>
<path class="st2" d="M29.4,39.4l-0.7-0.6c-0.6,0.7-1.2,1.4-1.9,2.2l0.7,0.6C28.1,40.8,28.8,40.1,29.4,39.4z"/>
<path class="st2" d="M4.1,93.6l-0.9-0.1c-0.1,0.9-0.3,1.9-0.4,2.8l0.9,0.1C3.8,95.5,3.9,94.5,4.1,93.6z"/>
<path class="st2" d="M5.3,87l-0.9-0.2c-0.2,0.9-0.4,1.9-0.6,2.8l0.9,0.2C4.9,88.8,5.1,87.9,5.3,87z"/>
<path class="st2" d="M4.7,90.3l-0.9-0.2c-0.2,0.9-0.3,1.9-0.5,2.8l0.9,0.1C4.3,92.1,4.5,91.2,4.7,90.3z"/>
<path class="st2" d="M6.1,83.7l-0.9-0.2c-0.2,0.9-0.5,1.8-0.7,2.8l0.9,0.2C5.7,85.5,5.9,84.6,6.1,83.7z"/>
<path class="st2" d="M8,77.2L7.1,77c-0.3,0.9-0.6,1.8-0.8,2.7l0.9,0.3C7.4,79,7.7,78.1,8,77.2z"/>
<path class="st2" d="M7,80.5l-0.9-0.3C5.8,81.1,5.6,82,5.3,83l0.9,0.2C6.5,82.3,6.7,81.4,7,80.5z"/>
<path class="st2" d="M2.9,113.7l-0.9,0c0,1,0.1,1.9,0.1,2.8l0.9-0.1C3,115.6,2.9,114.7,2.9,113.7z"/>
<path class="st2" d="M3.3,100.3l-0.9-0.1c-0.1,0.9-0.2,1.9-0.2,2.8l0.9,0.1C3.1,102.2,3.2,101.2,3.3,100.3z"/>
<path class="st2" d="M2.8,110.4H1.9c0,1,0,1.9,0,2.9l0.9,0C2.8,112.3,2.8,111.3,2.8,110.4z"/>
<path class="st2" d="M2.9,107l-0.9,0c0,1,0,1.9,0,2.9h0.9C2.8,108.9,2.8,108,2.9,107z"/>
<path class="st2" d="M3,103.6l-0.9-0.1c-0.1,1-0.1,1.9-0.1,2.8l0.9,0C2.9,105.5,2.9,104.6,3,103.6z"/>
<path class="st2" d="M3.6,96.9l-0.9-0.1c-0.1,0.9-0.2,1.9-0.3,2.8l0.9,0.1C3.4,98.8,3.5,97.9,3.6,96.9z"/>
<path class="st2" d="M21.2,50.1l-0.8-0.5c-0.5,0.8-1.1,1.6-1.6,2.4l0.8,0.5C20.1,51.6,20.6,50.8,21.2,50.1z"/>
<path class="st2" d="M23.1,47.3l-0.8-0.5c-0.6,0.8-1.1,1.5-1.6,2.3l0.8,0.5C22,48.8,22.5,48.1,23.1,47.3z"/>
<path class="st2" d="M19.3,52.9l-0.8-0.5c-0.5,0.8-1,1.6-1.5,2.4l0.8,0.5C18.3,54.5,18.8,53.7,19.3,52.9z"/>
<path class="st2" d="M27.2,42l-0.7-0.6c-0.6,0.7-1.2,1.5-1.8,2.2l0.7,0.6C26,43.4,26.6,42.7,27.2,42z"/>
<path class="st2" d="M25.1,44.6L24.4,44c-0.6,0.8-1.1,1.5-1.7,2.3l0.8,0.5C24,46.1,24.5,45.3,25.1,44.6z"/>
<path class="st2" d="M17.6,55.8l-0.8-0.5c-0.5,0.8-0.9,1.6-1.4,2.5l0.8,0.4C16.6,57.4,17.1,56.6,17.6,55.8z"/>
<path class="st2" d="M9.1,74.1l-0.9-0.3c-0.3,0.9-0.6,1.8-0.9,2.7l0.9,0.3C8.4,75.8,8.7,74.9,9.1,74.1z"/>
<path class="st2" d="M9.8,72.1c0.2-0.4,0.3-0.8,0.5-1.2l-0.9-0.3C9.2,71,9,71.4,8.9,71.8c-0.2,0.5-0.4,1-0.5,1.5l0.9,0.3 C9.4,73.1,9.6,72.6,9.8,72.1z"/>
<path class="st2" d="M11.5,67.8l-0.9-0.4c-0.4,0.9-0.7,1.8-1.1,2.6l0.9,0.3C10.8,69.5,11.1,68.6,11.5,67.8z"/>
<path class="st2" d="M12.9,64.7L12,64.3c-0.4,0.9-0.8,1.7-1.2,2.6l0.9,0.4C12.1,66.4,12.5,65.6,12.9,64.7z"/>
<path class="st2" d="M14.4,61.7l-0.8-0.4c-0.4,0.8-0.8,1.7-1.3,2.6l0.8,0.4C13.5,63.4,13.9,62.5,14.4,61.7z"/>
<path class="st2" d="M15.9,58.7l-0.8-0.4c-0.5,0.8-0.9,1.7-1.3,2.5l0.8,0.4C15,60.4,15.5,59.5,15.9,58.7z"/>
<path class="st2" d="M86.3,5.5l-0.2-0.9c-0.9,0.2-1.9,0.4-2.8,0.7l0.2,0.9C84.5,5.9,85.4,5.7,86.3,5.5z"/>
<path class="st2" d="M120.4,3.3c0.9,0.1,1.9,0.2,2.8,0.3l0.1-0.9c-0.9-0.1-1.9-0.2-2.8-0.3L120.4,3.3z"/>
<path class="st2" d="M140.2,7.2c0.9,0.3,1.8,0.5,2.7,0.8l0.3-0.9c-0.9-0.3-1.8-0.6-2.7-0.8L140.2,7.2z"/>
<path class="st2" d="M117,3c0.9,0.1,1.9,0.1,2.8,0.2l0.1-0.9c-0.9-0.1-1.9-0.2-2.8-0.2L117,3z"/>
<path class="st2" d="M146.9,8.4l-0.3,0.9c0.4,0.2,0.9,0.3,1.3,0.5c0.4,0.2,0.9,0.3,1.3,0.5l0.3-0.9c-0.4-0.2-0.9-0.4-1.3-0.5 C147.8,8.7,147.3,8.6,146.9,8.4z"/>
<path class="st2" d="M149.7,10.5c0.9,0.3,1.7,0.7,2.6,1.1l0.4-0.9c-0.9-0.4-1.8-0.7-2.6-1.1L149.7,10.5z"/>
<path class="st2" d="M143.4,8.2c0.9,0.3,1.8,0.6,2.7,0.9l0.3-0.9c-0.9-0.3-1.8-0.6-2.7-0.9L143.4,8.2z"/>
<path class="st2" d="M130.4,4.8c0.9,0.2,1.8,0.4,2.8,0.6l0.2-0.9c-0.9-0.2-1.9-0.4-2.8-0.6L130.4,4.8z"/>
<path class="st2" d="M136.9,6.3c0.9,0.2,1.8,0.5,2.7,0.7l0.3-0.9c-0.9-0.3-1.8-0.5-2.8-0.8L136.9,6.3z"/>
<path class="st2" d="M133.7,5.5c0.9,0.2,1.8,0.4,2.7,0.7l0.2-0.9c-0.9-0.2-1.8-0.5-2.8-0.7L133.7,5.5z"/>
<path class="st2" d="M123.7,3.7c0.9,0.1,1.9,0.3,2.8,0.4l0.1-0.9c-0.9-0.1-1.9-0.3-2.8-0.4L123.7,3.7z"/>
<path class="st2" d="M127.1,4.2c0.9,0.2,1.9,0.3,2.8,0.5l0.2-0.9c-0.9-0.2-1.9-0.3-2.8-0.5L127.1,4.2z"/>
<path class="st2" d="M152.8,11.8c0.9,0.4,1.7,0.8,2.6,1.2l0.4-0.8c-0.9-0.4-1.7-0.8-2.6-1.2L152.8,11.8z"/>
<path class="st2" d="M113.6,2.9c0.9,0,1.9,0.1,2.8,0.1l0.1-0.9c-1-0.1-1.9-0.1-2.9-0.1L113.6,2.9z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 29 KiB

257
images/loader2.svg

@ -0,0 +1,257 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="220px" height="220px" viewBox="0 0 220 220" style="enable-background:new 0 0 220 220;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;}
.st1{fill:#A41620;}
.st2{fill:#8DF3E5;}
</style>
<g id="Ruota_x5F_04">
<animateTransform attributeName="transform" begin="0" attributeType="XML" type="rotate" from="0 110 110" to="360 110 110" dur="3s" repeatCount="indefinite"/>
<circle class="st0" cx="110" cy="110" r="90"/>
<path class="st1" d="M152.8,188.9c21.6-11.8,36.4-30,43.3-53.6c6.4-21.8,4.6-46-6.9-67.5v0l-0.5-0.9 c-11.9-21.8-31.5-36.7-53.6-43.2c-21.8-6.4-46-4.6-67.5,6.9h0L66.8,31C45,42.9,30.1,62.5,23.6,84.6c-6.5,22.1-4.6,46.6,7.3,68.4 l3.4-1.8l3.4-1.8c-10.9-19.9-12.6-42.4-6.7-62.6c5.9-20.2,19.6-38.1,39.5-49l0,0c19.9-10.9,42.4-12.6,62.6-6.7 c20.2,5.9,38.1,19.6,49,39.5l0,0.1c10.9,19.9,12.6,42.4,6.7,62.6c-5.9,20.2-19.6,38.1-39.5,49l1.8,3.4L152.8,188.9L152.8,188.9z"/>
</g>
<g id="Ruota_x5F_03">
<animateTransform attributeName="transform" begin="0" attributeType="XML" type="rotate" from="0 110 110" to="-360 110 110" dur="2s" repeatCount="indefinite"/>
<path class="st2" d="M11.7,109.9c0,27.1,11,51.6,28.7,69.4C58.2,197,82.8,208,109.9,208c27.1,0,51.6-11,69.4-28.7 C197,161.5,208,137,208,109.9c0-27.1-11-51.6-28.7-69.4c-17.8-17.8-42.3-28.7-69.4-28.7v5c25.7,0,49,10.4,65.8,27.3 c16.9,16.9,27.3,40.1,27.3,65.8c0,25.7-10.4,49-27.3,65.8c-16.9,16.9-40.1,27.3-65.8,27.3c-25.7,0-49-10.4-65.8-27.3 c-16.9-16.9-27.3-40.1-27.3-65.8H11.7L11.7,109.9z"/>
<circle class="st0" cx="110" cy="110" r="93"/>
</g>
<g id="Ruota_x5F_02">
<animateTransform attributeName="transform" begin="0" attributeType="XML" type="rotate" from="0 110 110" to="360 110 110" dur="6s" repeatCount="indefinite"/>
<g>
<path class="st1" d="M181.4,38.4L181.4,38.4c0.3,0.3,0.7,0.7,1,1l0.9,0.9l0.9-0.9l0.6-0.6l0.9-0.9l-0.9-0.9l-2-2l-0.9-0.9 l-0.9,0.9l-0.6,0.6l-0.9,0.9l0.9,0.9C180.7,37.8,181.1,38.1,181.4,38.4z"/>
<path class="st1" d="M187.7,45.3L187.7,45.3c0.4,0.4,0.7,0.8,0.9,1.1l0.8,1l1-0.8l0.6-0.5l1-0.8l-0.8-1l-1.9-2.2l-0.8-1l-1,0.8 l-0.6,0.5l-1,0.8l0.8,1C187.1,44.7,187.4,45,187.7,45.3z"/>
<path class="st1" d="M193.7,53.4c0.3,0.4,0.5,0.8,0.8,1.2l0.7,1.1l1.1-0.7l0.7-0.4l1-0.7l-0.7-1l-1.6-2.4l-0.7-1l-1,0.7l-0.7,0.4 l-1.1,0.7l0.7,1C193.2,52.6,193.4,53,193.7,53.4z"/>
<path class="st1" d="M173.9,31.7c0.3,0.2,0.7,0.5,1.1,0.9l1,0.8l0.8-1l0.5-0.6l0.8-1l-1-0.8l-2.2-1.8l-1-0.8l-0.8,1l-0.5,0.6 l-0.8,1l1,0.8C173.3,31.2,173.6,31.5,173.9,31.7z"/>
<path class="st1" d="M202.7,69.9c0.2,0.5,0.4,0.9,0.6,1.3c0.2,0.5,0.4,1,0.5,1.3l0.5,1.2l1.2-0.5l0.7-0.3l1.2-0.5l-0.5-1.2 l-1.1-2.7l-0.5-1.2l-1.2,0.5l-0.7,0.3l-1.2,0.5L202.7,69.9z"/>
<path class="st1" d="M198.3,60.9c0.2,0.3,0.4,0.8,0.7,1.3c0.2,0.4,0.5,0.9,0.7,1.3l0.6,1.1l1.1-0.6l0.7-0.4l1.1-0.6l-0.6-1.1 l-1.4-2.6l-0.6-1.1l-1.1,0.6l-0.7,0.4l-1.1,0.6L198.3,60.9z"/>
<path class="st1" d="M211.4,97l-1.3,0.1l0.1,1.3c0.1,0.5,0.1,1,0.2,1.4c0,0.3,0.1,0.8,0.1,1.4l0.1,1.3l1.3-0.1l0.8-0.1l1.3-0.1 l-0.1-1.3l-0.3-2.9l-0.1-1.3l-1.3,0.1L211.4,97z"/>
<path class="st1" d="M205.6,77.4l0.4,1.2c0.2,0.5,0.3,1,0.4,1.4c0.1,0.4,0.3,0.9,0.4,1.4l0.4,1.2l1.2-0.4l0.8-0.2l1.2-0.4 l-0.4-1.2l-0.9-2.8l-0.4-1.2l-1.2,0.4l-0.8,0.2L205.6,77.4z"/>
<path class="st1" d="M165.7,25.6c0.4,0.3,0.8,0.5,1.2,0.8l1.1,0.7l0.7-1.1l0.4-0.7l0.7-1.1l-1.1-0.7l-2.4-1.6l-1.1-0.7l-0.7,1.1 l-0.4,0.7l-0.7,1.1l1.1,0.7C164.9,25.1,165.3,25.4,165.7,25.6z"/>
<path class="st1" d="M209.6,86.8l-1.3,0.3l0.3,1.2c0.1,0.6,0.2,1.1,0.3,1.4c0.1,0.4,0.2,0.9,0.3,1.4l0.2,1.3l1.3-0.3l0.8-0.2 l1.2-0.3l-0.3-1.2l-0.6-2.8l-0.3-1.2l-1.2,0.3L209.6,86.8z"/>
<path class="st1" d="M71.4,203.1c-0.4-0.2-0.8-0.3-1.3-0.6l-1.2-0.5l-0.5,1.2l-0.3,0.7l-0.5,1.2l1.2,0.5l2.7,1.1l1.2,0.5l0.5-1.2 l0.3-0.7l0.5-1.2l-1.2-0.5C72.3,203.5,71.9,203.4,71.4,203.1z"/>
<path class="st1" d="M212,116.6l-1.3-0.1l-0.1,1.3c0,0.6-0.1,1.1-0.1,1.4c0,0.4-0.1,0.9-0.1,1.4l-0.1,1.3l1.3,0.1l0.8,0.1l1.3,0.1 l0.1-1.3l0.3-2.9l0.1-1.3l-1.3-0.1L212,116.6z"/>
<path class="st1" d="M213,107.1h-0.8h-1.3l0,1.3l0,0.4v0c0,0.2,0,0.4,0,1c0,0.6,0,0.8,0,1v0l0,0.4l0,1.3h1.3h0.8h1.3v-1.3v-2.9 v-1.3H213z"/>
<path class="st1" d="M62.9,199.2c-0.5-0.3-0.9-0.5-1.3-0.7l-1.1-0.6l-0.6,1.1l-0.4,0.7l-0.6,1.1l1.1,0.6l2.6,1.4l1.1,0.6l0.6-1.1 l0.4-0.7l0.6-1.1l-1.1-0.6C63.7,199.6,63.2,199.3,62.9,199.2z"/>
<path class="st1" d="M157.1,20.5c0.5,0.3,0.9,0.5,1.3,0.7l1.1,0.6l0.6-1.1l0.4-0.7l0.6-1.1l-1.1-0.6l-2.6-1.4l-1.1-0.6l-0.6,1.1 l-0.4,0.7l-0.6,1.1l1.1,0.6C156.3,20.1,156.8,20.3,157.1,20.5z"/>
<path class="st1" d="M54.3,194c-0.4-0.3-0.8-0.5-1.2-0.8l-1.1-0.7l-0.7,1.1l-0.4,0.7l-0.7,1.1l1.1,0.7l2.4,1.6l1.1,0.7l0.7-1.1 l0.4-0.7l0.7-1.1l-1.1-0.7C55.1,194.6,54.7,194.3,54.3,194z"/>
<path class="st1" d="M148.6,16.5c0.4,0.2,0.8,0.3,1.3,0.6l1.2,0.5l0.5-1.2l0.3-0.7l0.5-1.2l-1.2-0.5l-2.7-1.1l-1.2-0.5l-0.5,1.2 l-0.3,0.7l-0.5,1.2l1.2,0.5C147.7,16.1,148.1,16.3,148.6,16.5z"/>
<path class="st1" d="M181.4,181.5c-18.3,18.3-43.6,29.6-71.5,29.6c-11,0-21.6-1.8-31.5-5l-1.4,2.8c10.4,3.5,21.4,5.3,33,5.3 c28.8,0,54.8-11.7,73.7-30.5c15-15,25.4-34.5,29.1-56.3l-3.1-0.2C205.9,148.2,195.8,167,181.4,181.5z"/>
<path class="st1" d="M8.8,110c0-27.9,11.3-53.2,29.6-71.5C56.7,20.2,82,8.9,109.9,8.9c11,0,21.6,1.8,31.5,5l1.4-2.8 c-10.4-3.5-21.4-5.3-33-5.3c-28.8,0-54.8,11.7-73.7,30.5C17.4,55.2,5.7,81.2,5.7,110c0,28.8,11.7,54.8,30.5,73.7 c3.6,3.6,7.5,6.9,11.6,10l1.4-2.8c-3.8-2.9-7.4-6-10.8-9.4C20.1,163.2,8.8,137.9,8.8,110z"/>
</g>
</g>
<g id="Ruota_x5F_01">
<animateTransform attributeName="transform" begin="0" attributeType="XML" type="rotate" from="0 110 110" to="-360 110 110" dur="6s"/>
<g>
<path class="st2" d="M14.7,159l-0.8,0.4c0.4,0.8,0.9,1.7,1.3,2.5l0.8-0.4C15.6,160.6,15.1,159.8,14.7,159z"/>
<path class="st2" d="M8.2,143.5l-0.9,0.3c0.3,0.9,0.6,1.8,0.9,2.7l0.9-0.3C8.8,145.3,8.5,144.4,8.2,143.5z"/>
<path class="st2" d="M6.3,137l-0.9,0.2c0.2,0.9,0.5,1.8,0.8,2.7l0.9-0.3C6.8,138.8,6.5,137.9,6.3,137z"/>
<path class="st2" d="M9.3,146.6L8.4,147c0.3,0.9,0.7,1.8,1,2.7l0.9-0.3C10,148.4,9.6,147.5,9.3,146.6z"/>
<path class="st2" d="M10.5,149.8l-0.9,0.3c0.4,0.9,0.7,1.8,1.1,2.6l0.9-0.4C11.2,151.5,10.9,150.7,10.5,149.8z"/>
<path class="st2" d="M13.2,156l-0.8,0.4c0.4,0.9,0.8,1.7,1.3,2.6l0.8-0.4C14,157.7,13.6,156.8,13.2,156z"/>
<path class="st2" d="M5.5,133.7l-0.9,0.2c0.2,0.9,0.4,1.9,0.7,2.8l0.9-0.2C5.9,135.6,5.7,134.7,5.5,133.7z"/>
<path class="st2" d="M12.3,154.1c-0.2-0.4-0.3-0.8-0.5-1.2l-0.9,0.4c0.2,0.4,0.3,0.8,0.5,1.2c0.2,0.5,0.4,0.9,0.6,1.4l0.8-0.4 C12.8,155,12.5,154.5,12.3,154.1z"/>
<path class="st2" d="M7.2,140.3l-0.9,0.3c0.3,0.9,0.6,1.8,0.8,2.7L8,143C7.7,142.1,7.5,141.2,7.2,140.3z"/>
<path class="st2" d="M217,103.1l0.9-0.1c-0.1-0.9-0.1-1.9-0.2-2.8l-0.9,0.1C216.8,101.2,216.9,102.2,217,103.1z"/>
<path class="st2" d="M4.8,130.5l-0.9,0.2c0.2,0.9,0.4,1.9,0.6,2.8l0.9-0.2C5.2,132.3,5,131.4,4.8,130.5z"/>
<path class="st2" d="M217.1,106.5l0.9,0c0-1-0.1-1.9-0.1-2.8l-0.9,0.1C217,104.6,217.1,105.5,217.1,106.5z"/>
<path class="st2" d="M217.2,109.8h0.9c0-1,0-1.9,0-2.9l-0.9,0C217.2,108,217.2,108.9,217.2,109.8z"/>
<path class="st2" d="M4.2,127.1l-0.9,0.1c0.2,0.9,0.3,1.9,0.5,2.8l0.9-0.2C4.5,129,4.4,128.1,4.2,127.1z"/>
<path class="st2" d="M3.7,123.8l-0.9,0.1c0.1,0.9,0.3,1.9,0.4,2.8l0.9-0.1C4,125.7,3.8,124.7,3.7,123.8z"/>
<path class="st2" d="M3.3,120.5l-0.9,0.1c0.1,0.9,0.2,1.9,0.3,2.8l0.9-0.1C3.5,122.3,3.4,121.4,3.3,120.5z"/>
<path class="st2" d="M3.1,117.1l-0.9,0.1c0.1,0.9,0.1,1.9,0.2,2.8l0.9-0.1C3.2,119,3.1,118,3.1,117.1z"/>
<path class="st2" d="M39.4,190.6l-0.6,0.7c0.7,0.6,1.4,1.2,2.2,1.8l0.6-0.7C40.8,191.9,40.1,191.2,39.4,190.6z"/>
<path class="st2" d="M36.9,188.4l-0.6,0.7c0.7,0.6,1.4,1.3,2.1,1.9l0.6-0.7C38.3,189.6,37.6,189,36.9,188.4z"/>
<path class="st2" d="M34.5,186l-0.7,0.7c0.7,0.7,1.4,1.3,2,2l0.6-0.7C35.8,187.3,35.1,186.7,34.5,186z"/>
<path class="st2" d="M44.6,194.9l-0.6,0.7c0.8,0.6,1.5,1.1,2.3,1.7l0.5-0.8C46.1,196,45.3,195.5,44.6,194.9z"/>
<path class="st2" d="M52.9,200.7l-0.5,0.8c0.8,0.5,1.6,1,2.4,1.5l0.5-0.8C54.4,201.7,53.6,201.2,52.9,200.7z"/>
<path class="st2" d="M32.1,183.6l-0.7,0.6c0.7,0.7,1.3,1.4,2,2l0.7-0.7C33.4,185,32.8,184.3,32.1,183.6z"/>
<path class="st2" d="M47.3,196.9l-0.5,0.8c0.8,0.6,1.5,1.1,2.3,1.6l0.5-0.8C48.8,198,48,197.5,47.3,196.9z"/>
<path class="st2" d="M50,198.8l-0.5,0.8c0.8,0.5,1.6,1.1,2.4,1.6l0.5-0.8C51.6,199.9,50.8,199.4,50,198.8z"/>
<path class="st2" d="M25.5,176l-0.7,0.6c0.6,0.7,1.2,1.5,1.8,2.2l0.7-0.6C26.7,177.4,26.1,176.7,25.5,176z"/>
<path class="st2" d="M19.7,167.7l-0.8,0.5c0.5,0.8,1,1.6,1.6,2.4l0.8-0.5C20.7,169.3,20.2,168.5,19.7,167.7z"/>
<path class="st2" d="M18,164.9l-0.8,0.5c0.5,0.8,1,1.6,1.5,2.4l0.8-0.5C18.9,166.5,18.4,165.7,18,164.9z"/>
<path class="st2" d="M21.6,170.5l-0.8,0.5c0.5,0.8,1.1,1.6,1.6,2.3l0.8-0.5C22.6,172.1,22.1,171.3,21.6,170.5z"/>
<path class="st2" d="M23.5,173.3l-0.8,0.5c0.6,0.8,1.1,1.5,1.7,2.3l0.7-0.6C24.6,174.8,24.1,174,23.5,173.3z"/>
<path class="st2" d="M27.7,178.6l-0.7,0.6c0.6,0.7,1.2,1.5,1.9,2.2l0.7-0.6C28.9,180,28.3,179.3,27.7,178.6z"/>
<path class="st2" d="M16.3,161.9l-0.8,0.4c0.5,0.8,0.9,1.7,1.4,2.5l0.8-0.5C17.2,163.6,16.7,162.8,16.3,161.9z"/>
<path class="st2" d="M29.8,181.1l-0.7,0.6c0.6,0.7,1.3,1.4,1.9,2.1l0.7-0.6C31.1,182.5,30.5,181.8,29.8,181.1z"/>
<path class="st2" d="M188,36.5l0.7-0.6c-0.7-0.7-1.3-1.4-2-2.1l-0.7,0.7C186.7,35.1,187.4,35.8,188,36.5z"/>
<path class="st2" d="M185.6,34.1l0.7-0.7c-0.7-0.7-1.4-1.3-2-2l-0.6,0.7C184.3,32.8,185,33.4,185.6,34.1z"/>
<path class="st2" d="M190.3,39l0.7-0.6c-0.6-0.7-1.3-1.4-1.9-2.1l-0.7,0.6C189,37.6,189.6,38.3,190.3,39z"/>
<path class="st2" d="M55.3,203.2c0.8,0.5,1.6,0.9,2.5,1.4l0.4-0.8c-0.8-0.5-1.6-0.9-2.5-1.4L55.3,203.2z"/>
<path class="st2" d="M183.2,31.7l0.6-0.7c-0.7-0.6-1.4-1.3-2.1-1.9l-0.6,0.7C181.8,30.5,182.5,31.1,183.2,31.7z"/>
<path class="st2" d="M194.6,44.2l0.7-0.6c-0.6-0.8-1.2-1.5-1.8-2.2l-0.7,0.6C193.4,42.7,194,43.4,194.6,44.2z"/>
<path class="st2" d="M196.6,46.9l0.8-0.5c-0.6-0.8-1.1-1.5-1.7-2.3l-0.7,0.6C195.5,45.3,196,46.1,196.6,46.9z"/>
<path class="st2" d="M180.7,29.5l0.6-0.7c-0.7-0.6-1.4-1.2-2.2-1.9l-0.6,0.7C179.3,28.2,180,28.8,180.7,29.5z"/>
<path class="st2" d="M192.5,41.5l0.7-0.6c-0.6-0.7-1.2-1.5-1.9-2.2l-0.7,0.6C191.2,40.1,191.9,40.8,192.5,41.5z"/>
<path class="st2" d="M170.1,21.2l0.5-0.8c-0.8-0.5-1.6-1.1-2.4-1.6l-0.5,0.8C168.5,20.2,169.3,20.7,170.1,21.2z"/>
<path class="st2" d="M164.8,16.8c-0.8-0.5-1.6-1-2.5-1.4l-0.4,0.8c0.8,0.5,1.6,0.9,2.5,1.4L164.8,16.8z"/>
<path class="st2" d="M161.9,15.2c-0.8-0.5-1.7-0.9-2.5-1.3l-0.4,0.8c0.8,0.4,1.7,0.9,2.5,1.3L161.9,15.2z"/>
<path class="st2" d="M167.2,19.4l0.5-0.8c-0.8-0.5-1.6-1-2.4-1.5l-0.5,0.8C165.6,18.4,166.5,18.9,167.2,19.4z"/>
<path class="st2" d="M198.5,49.6l0.8-0.5c-0.5-0.8-1.1-1.6-1.6-2.3l-0.8,0.5C197.5,48.1,198,48.8,198.5,49.6z"/>
<path class="st2" d="M175.5,25.2l0.6-0.7c-0.8-0.6-1.5-1.2-2.3-1.7l-0.5,0.8C174,24,174.8,24.6,175.5,25.2z"/>
<path class="st2" d="M172.8,23.2l0.5-0.8c-0.8-0.6-1.5-1.1-2.3-1.6l-0.5,0.8C171.3,22.1,172.1,22.6,172.8,23.2z"/>
<path class="st2" d="M178.2,27.3l0.6-0.7c-0.7-0.6-1.5-1.2-2.2-1.8l-0.6,0.7C176.7,26.1,177.4,26.7,178.2,27.3z"/>
<path class="st2" d="M209.6,70.4l0.9-0.3c-0.4-0.9-0.7-1.8-1.1-2.6l-0.9,0.4C208.9,68.7,209.2,69.5,209.6,70.4z"/>
<path class="st2" d="M214.5,86.5l0.9-0.2c-0.2-0.9-0.4-1.9-0.7-2.8l-0.9,0.2C214.1,84.6,214.3,85.5,214.5,86.5z"/>
<path class="st2" d="M213.8,83.2l0.9-0.2c-0.2-0.9-0.5-1.8-0.7-2.8l-0.9,0.3C213.3,81.4,213.5,82.3,213.8,83.2z"/>
<path class="st2" d="M212.9,79.9l0.9-0.3c-0.3-0.9-0.5-1.8-0.8-2.7l-0.9,0.3C212.3,78.1,212.6,79,212.9,79.9z"/>
<path class="st2" d="M215.2,89.8l0.9-0.2c-0.2-0.9-0.4-1.9-0.6-2.8l-0.9,0.2C214.9,87.9,215.1,88.8,215.2,89.8z"/>
<path class="st2" d="M211.9,76.7l0.9-0.3c-0.3-0.9-0.6-1.8-0.9-2.7l-0.9,0.3C211.3,74.9,211.6,75.8,211.9,76.7z"/>
<path class="st2" d="M216.3,96.4l0.9-0.1c-0.1-0.9-0.3-1.9-0.4-2.8l-0.9,0.1C216.1,94.5,216.2,95.5,216.3,96.4z"/>
<path class="st2" d="M215.8,93.1l0.9-0.1c-0.2-0.9-0.3-1.9-0.5-2.8l-0.9,0.2C215.5,91.2,215.7,92.1,215.8,93.1z"/>
<path class="st2" d="M202.1,55.3l0.8-0.5c-0.5-0.8-1-1.6-1.5-2.4l-0.8,0.5C201.2,53.7,201.7,54.5,202.1,55.3z"/>
<path class="st2" d="M203.8,58.2l0.8-0.4c-0.5-0.8-0.9-1.7-1.4-2.5l-0.8,0.5C202.9,56.6,203.4,57.4,203.8,58.2z"/>
<path class="st2" d="M200.4,52.4l0.8-0.5c-0.5-0.8-1-1.6-1.6-2.4l-0.8,0.5C199.4,50.8,199.9,51.6,200.4,52.4z"/>
<path class="st2" d="M205.4,61.2l0.8-0.4c-0.4-0.8-0.9-1.7-1.3-2.5l-0.8,0.4C204.5,59.5,205,60.4,205.4,61.2z"/>
<path class="st2" d="M206.9,64.2l0.8-0.4c-0.4-0.9-0.8-1.7-1.3-2.6l-0.8,0.4C206.1,62.5,206.5,63.4,206.9,64.2z"/>
<path class="st2" d="M216.7,99.7l0.9-0.1c-0.1-0.9-0.2-1.9-0.3-2.8l-0.9,0.1C216.5,97.9,216.6,98.8,216.7,99.7z"/>
<path class="st2" d="M207.7,65.9c0.2,0.5,0.4,0.9,0.6,1.4l0.9-0.4c-0.2-0.5-0.4-0.9-0.6-1.4c-0.2-0.4-0.4-0.8-0.6-1.2l-0.8,0.4 C207.3,65.1,207.5,65.5,207.7,65.9z"/>
<path class="st2" d="M210.8,73.5l0.9-0.3c-0.3-0.9-0.7-1.8-1-2.7l-0.9,0.3C210.1,71.8,210.4,72.7,210.8,73.5z"/>
<path class="st2" d="M194.8,175.5l0.7,0.6c0.6-0.8,1.1-1.5,1.7-2.3l-0.8-0.5C195.9,174,195.4,174.8,194.8,175.5z"/>
<path class="st2" d="M190.5,180.7l0.7,0.6c0.6-0.7,1.2-1.4,1.9-2.2l-0.7-0.6C191.8,179.3,191.1,180,190.5,180.7z"/>
<path class="st2" d="M192.7,178.2l0.7,0.6c0.6-0.7,1.2-1.5,1.8-2.2l-0.7-0.6C193.9,176.7,193.3,177.5,192.7,178.2z"/>
<path class="st2" d="M185.9,185.6l0.7,0.7c0.7-0.7,1.3-1.4,2-2l-0.7-0.6C187.2,184.3,186.6,185,185.9,185.6z"/>
<path class="st2" d="M202.3,164.4l0.8,0.5c0.5-0.8,0.9-1.6,1.4-2.5l-0.8-0.4C203.3,162.8,202.8,163.6,202.3,164.4z"/>
<path class="st2" d="M188.3,183.2l0.7,0.6c0.6-0.7,1.3-1.4,1.9-2.1l-0.7-0.6C189.5,181.8,188.9,182.5,188.3,183.2z"/>
<path class="st2" d="M200.6,167.3l0.8,0.5c0.5-0.8,1-1.6,1.5-2.4l-0.8-0.5C201.6,165.7,201.1,166.5,200.6,167.3z"/>
<path class="st2" d="M196.8,172.8l0.8,0.5c0.6-0.8,1.1-1.5,1.6-2.3l-0.8-0.5C197.9,171.3,197.4,172.1,196.8,172.8z"/>
<path class="st2" d="M198.7,170.1l0.8,0.5c0.5-0.8,1.1-1.6,1.6-2.4l-0.8-0.5C199.8,168.5,199.3,169.3,198.7,170.1z"/>
<path class="st2" d="M158.9,13.6c-0.8-0.4-1.7-0.8-2.6-1.3l-0.4,0.8c0.9,0.4,1.7,0.8,2.5,1.2L158.9,13.6z"/>
<path class="st2" d="M170.4,198.5l0.5,0.8c0.8-0.5,1.6-1.1,2.3-1.6l-0.5-0.8C172,197.4,171.2,198,170.4,198.5z"/>
<path class="st2" d="M173.2,196.6l0.5,0.8c0.8-0.6,1.5-1.1,2.3-1.7l-0.6-0.7C174.7,195.5,173.9,196,173.2,196.6z"/>
<path class="st2" d="M167.6,200.4l0.5,0.8c0.8-0.5,1.6-1,2.4-1.6l-0.5-0.8C169.2,199.3,168.4,199.9,167.6,200.4z"/>
<path class="st2" d="M175.8,194.6l0.6,0.7c0.7-0.6,1.5-1.2,2.2-1.8l-0.6-0.7C177.3,193.4,176.6,194,175.8,194.6z"/>
<path class="st2" d="M181,190.3l0.6,0.7c0.7-0.6,1.4-1.3,2.1-1.9l-0.6-0.7C182.4,189,181.7,189.6,181,190.3z"/>
<path class="st2" d="M183.5,188l0.6,0.7c0.7-0.7,1.4-1.3,2-2l-0.7-0.7C184.9,186.7,184.2,187.3,183.5,188z"/>
<path class="st2" d="M178.5,192.4l0.6,0.7c0.7-0.6,1.5-1.2,2.2-1.8l-0.6-0.7C179.9,191.2,179.2,191.8,178.5,192.4z"/>
<path class="st2" d="M205.6,158.5l0.8,0.4c0.4-0.8,0.8-1.7,1.3-2.6l-0.8-0.4C206.4,156.8,206,157.7,205.6,158.5z"/>
<path class="st2" d="M215.9,126.6l0.9,0.1c0.1-0.9,0.3-1.9,0.4-2.8l-0.9-0.1C216.2,124.7,216,125.7,215.9,126.6z"/>
<path class="st2" d="M215.3,129.9l0.9,0.2c0.2-0.9,0.3-1.9,0.5-2.8l-0.9-0.1C215.6,128.1,215.5,129,215.3,129.9z"/>
<path class="st2" d="M214.6,133.2l0.9,0.2c0.2-0.9,0.4-1.9,0.6-2.8l-0.9-0.2C215,131.4,214.8,132.3,214.6,133.2z"/>
<path class="st2" d="M213.8,136.5l0.9,0.2c0.2-0.9,0.5-1.8,0.7-2.8l-0.9-0.2C214.3,134.7,214.1,135.6,213.8,136.5z"/>
<path class="st2" d="M216.3,123.3l0.9,0.1c0.1-0.9,0.2-1.9,0.3-2.8l-0.9-0.1C216.6,121.4,216.5,122.3,216.3,123.3z"/>
<path class="st2" d="M217.2,110.4c0,0.9,0,1.9,0,2.8l0.9,0c0-1,0-1.9,0-2.9H217.2z"/>
<path class="st2" d="M204,161.5l0.8,0.4c0.5-0.8,0.9-1.7,1.3-2.5l-0.8-0.4C204.9,159.8,204.4,160.6,204,161.5z"/>
<path class="st2" d="M217,116.6l0.9,0.1c0.1-0.9,0.1-1.9,0.1-2.8l-0.9,0C217.1,114.7,217,115.6,217,116.6z"/>
<path class="st2" d="M216.7,119.9l0.9,0.1c0.1-0.9,0.2-1.9,0.2-2.8l-0.9-0.1C216.9,118,216.8,119,216.7,119.9z"/>
<path class="st2" d="M207,155.5l0.8,0.4c0.4-0.9,0.8-1.7,1.2-2.6l-0.9-0.4C207.8,153.8,207.4,154.6,207,155.5z"/>
<path class="st2" d="M164.7,202.1l0.5,0.8c0.8-0.5,1.6-1,2.4-1.5l-0.5-0.8C166.3,201.2,165.5,201.6,164.7,202.1z"/>
<path class="st2" d="M208.4,152.4l0.9,0.4c0.4-0.9,0.7-1.7,1.1-2.6l-0.9-0.3C209.1,150.7,208.8,151.5,208.4,152.4z"/>
<path class="st2" d="M210.9,146.1l0.9,0.3c0.3-0.9,0.6-1.8,0.9-2.7l-0.9-0.3C211.5,144.4,211.2,145.2,210.9,146.1z"/>
<path class="st2" d="M212,143l0.9,0.3c0.3-0.9,0.6-1.8,0.8-2.7l-0.9-0.3C212.5,141.2,212.3,142.1,212,143z"/>
<path class="st2" d="M213,139.7l0.9,0.3c0.3-0.9,0.5-1.8,0.8-2.7l-0.9-0.2C213.5,137.9,213.2,138.8,213,139.7z"/>
<path class="st2" d="M210.2,147.9c-0.2,0.5-0.4,0.9-0.5,1.4l0.9,0.3c0.2-0.5,0.4-0.9,0.6-1.4c0.2-0.4,0.3-0.8,0.5-1.3l-0.9-0.3 C210.5,147.1,210.4,147.5,210.2,147.9z"/>
<path class="st2" d="M103.5,217.9c0.9,0.1,1.9,0.1,2.8,0.1l0-0.9c-0.9,0-1.9-0.1-2.8-0.1L103.5,217.9z"/>
<path class="st2" d="M90,216.2c0.9,0.2,1.9,0.3,2.8,0.5l0.1-0.9c-0.9-0.1-1.9-0.3-2.8-0.5L90,216.2z"/>
<path class="st2" d="M110.3,217.2v0.9c1,0,1.9,0,2.8,0l0-0.9C112.2,217.2,111.2,217.2,110.3,217.2z"/>
<path class="st2" d="M96.7,217.3c0.9,0.1,1.9,0.2,2.8,0.3l0.1-0.9c-0.9-0.1-1.9-0.2-2.8-0.3L96.7,217.3z"/>
<path class="st2" d="M86.7,215.6c0.9,0.2,1.9,0.4,2.8,0.6l0.2-0.9c-0.9-0.2-1.8-0.4-2.8-0.6L86.7,215.6z"/>
<path class="st2" d="M93.4,216.8c0.9,0.1,1.9,0.3,2.8,0.4l0.1-0.9c-0.9-0.1-1.9-0.3-2.8-0.4L93.4,216.8z"/>
<path class="st2" d="M106.9,218.1c1,0,1.9,0,2.8,0v-0.9c-0.9,0-1.9,0-2.8,0L106.9,218.1z"/>
<path class="st2" d="M58.2,204.9c0.8,0.5,1.7,0.9,2.5,1.3l0.4-0.8c-0.8-0.4-1.7-0.9-2.5-1.3L58.2,204.9z"/>
<path class="st2" d="M161.8,203.8l0.4,0.8c0.8-0.5,1.7-0.9,2.5-1.4l-0.5-0.8C163.5,202.9,162.6,203.3,161.8,203.8z"/>
<path class="st2" d="M83.4,214.8c0.9,0.2,1.8,0.5,2.8,0.7l0.2-0.9c-0.9-0.2-1.8-0.4-2.7-0.7L83.4,214.8z"/>
<path class="st2" d="M64.3,207.9c0.9,0.4,1.7,0.8,2.6,1.2l0.4-0.9c-0.9-0.4-1.7-0.8-2.6-1.2L64.3,207.9z"/>
<path class="st2" d="M61.2,206.5c0.8,0.4,1.7,0.8,2.6,1.2l0.4-0.8c-0.9-0.4-1.7-0.8-2.5-1.2L61.2,206.5z"/>
<path class="st2" d="M67.4,209.3c0.9,0.4,1.7,0.7,2.6,1.1l0.3-0.9c-0.9-0.3-1.7-0.7-2.6-1.1L67.4,209.3z"/>
<path class="st2" d="M70.8,209.7l-0.3,0.9c0.4,0.2,0.8,0.3,1.3,0.5c0.5,0.2,0.9,0.3,1.4,0.5l0.3-0.9c-0.5-0.2-0.9-0.3-1.4-0.5 C71.7,210.1,71.3,209.9,70.8,209.7z"/>
<path class="st2" d="M76.9,212.9c0.9,0.3,1.8,0.6,2.7,0.8l0.3-0.9c-0.9-0.3-1.8-0.5-2.7-0.8L76.9,212.9z"/>
<path class="st2" d="M73.7,211.8c0.9,0.3,1.8,0.6,2.7,0.9l0.3-0.9c-0.9-0.3-1.8-0.6-2.7-0.9L73.7,211.8z"/>
<path class="st2" d="M80.1,213.9c0.9,0.3,1.8,0.5,2.7,0.8l0.2-0.9c-0.9-0.2-1.8-0.5-2.7-0.7L80.1,213.9z"/>
<path class="st2" d="M100.1,217.7c0.9,0.1,1.9,0.2,2.8,0.2l0.1-0.9c-0.9-0.1-1.9-0.1-2.8-0.2L100.1,217.7z"/>
<path class="st2" d="M149.7,209.5l0.3,0.9c0.9-0.4,1.8-0.7,2.6-1.1l-0.4-0.9C151.4,208.8,150.5,209.2,149.7,209.5z"/>
<path class="st2" d="M113.6,217.1l0,0.9c0.9,0,1.9-0.1,2.8-0.1l-0.1-0.9C115.5,217,114.6,217.1,113.6,217.1z"/>
<path class="st2" d="M143.3,211.8l0.3,0.9c0.9-0.3,1.8-0.6,2.7-0.9l-0.3-0.9C145.1,211.2,144.2,211.5,143.3,211.8z"/>
<path class="st2" d="M140.1,212.8l0.3,0.9c0.9-0.3,1.8-0.5,2.7-0.8l-0.3-0.9C141.9,212.3,141,212.6,140.1,212.8z"/>
<path class="st2" d="M158.8,205.4l0.4,0.8c0.8-0.4,1.7-0.9,2.5-1.3l-0.4-0.8C160.5,204.5,159.7,204.9,158.8,205.4z"/>
<path class="st2" d="M154.1,207.7c-0.4,0.2-0.9,0.4-1.3,0.6l0.4,0.9c0.4-0.2,0.9-0.4,1.3-0.6c0.4-0.2,0.8-0.4,1.3-0.6l-0.4-0.8 C154.9,207.3,154.5,207.5,154.1,207.7z"/>
<path class="st2" d="M155.8,206.9l0.4,0.8c0.9-0.4,1.7-0.8,2.6-1.2l-0.4-0.8C157.5,206,156.7,206.5,155.8,206.9z"/>
<path class="st2" d="M146.5,210.7l0.3,0.9c0.9-0.3,1.8-0.7,2.7-1l-0.3-0.9C148.3,210.1,147.4,210.4,146.5,210.7z"/>
<path class="st2" d="M123.7,216.3l0.1,0.9c0.9-0.1,1.9-0.3,2.8-0.4l-0.1-0.9C125.6,216,124.6,216.2,123.7,216.3z"/>
<path class="st2" d="M120.3,216.7l0.1,0.9c0.9-0.1,1.9-0.2,2.8-0.3l-0.1-0.9C122.2,216.5,121.3,216.6,120.3,216.7z"/>
<path class="st2" d="M117,217l0.1,0.9c0.9-0.1,1.9-0.1,2.8-0.2l-0.1-0.9C118.9,216.8,117.9,216.9,117,217z"/>
<path class="st2" d="M133.6,214.5l0.2,0.9c0.9-0.2,1.8-0.4,2.8-0.7l-0.2-0.9C135.4,214.1,134.5,214.3,133.6,214.5z"/>
<path class="st2" d="M136.9,213.7l0.2,0.9c0.9-0.2,1.8-0.5,2.7-0.8l-0.3-0.9C138.7,213.3,137.8,213.5,136.9,213.7z"/>
<path class="st2" d="M130.3,215.2l0.2,0.9c0.9-0.2,1.9-0.4,2.8-0.6l-0.2-0.9C132.2,214.8,131.3,215,130.3,215.2z"/>
<path class="st2" d="M127,215.8l0.1,0.9c0.9-0.2,1.9-0.3,2.8-0.5l-0.2-0.9C128.9,215.5,127.9,215.7,127,215.8z"/>
<path class="st2" d="M41.9,192.8l-0.6,0.7c0.7,0.6,1.5,1.2,2.2,1.8l0.6-0.7C43.4,194,42.7,193.4,41.9,192.8z"/>
<path class="st2" d="M110.3,2.8c0.9,0,1.9,0,2.8,0l0-0.9c-1,0-1.9,0-2.9,0V2.8z"/>
<path class="st2" d="M55.2,17.9l-0.5-0.8c-0.8,0.5-1.6,1-2.4,1.5l0.5,0.8C53.6,18.9,54.4,18.4,55.2,17.9z"/>
<path class="st2" d="M49.5,21.6L49,20.8c-0.8,0.5-1.6,1.1-2.3,1.6l0.5,0.8C47.9,22.6,48.7,22.1,49.5,21.6z"/>
<path class="st2" d="M52.3,19.7l-0.5-0.8c-0.8,0.5-1.6,1-2.4,1.6l0.5,0.8C50.7,20.7,51.5,20.2,52.3,19.7z"/>
<path class="st2" d="M65.9,12.3c0.4-0.2,0.8-0.4,1.2-0.5l-0.4-0.9c-0.4,0.2-0.8,0.4-1.3,0.5c-0.5,0.2-0.9,0.4-1.3,0.6l0.4,0.8 C65,12.7,65.5,12.5,65.9,12.3z"/>
<path class="st2" d="M61.1,14.7l-0.4-0.8c-0.8,0.4-1.7,0.9-2.5,1.3l0.4,0.8C59.4,15.5,60.2,15.1,61.1,14.7z"/>
<path class="st2" d="M64.1,13.2l-0.4-0.8c-0.9,0.4-1.7,0.8-2.6,1.3l0.4,0.8C62.4,14,63.2,13.6,64.1,13.2z"/>
<path class="st2" d="M38.9,29.8l-0.6-0.7c-0.7,0.6-1.4,1.3-2.1,1.9l0.6,0.7C37.5,31.1,38.2,30.5,38.9,29.8z"/>
<path class="st2" d="M46.7,23.5l-0.5-0.8c-0.8,0.6-1.5,1.1-2.3,1.7l0.6,0.7C45.2,24.6,46,24.1,46.7,23.5z"/>
<path class="st2" d="M34,34.5l-0.7-0.7c-0.7,0.7-1.3,1.4-2,2.1l0.7,0.6C32.6,35.8,33.3,35.1,34,34.5z"/>
<path class="st2" d="M36.4,32.1l-0.6-0.7c-0.7,0.7-1.4,1.3-2.1,2l0.7,0.7C35,33.4,35.7,32.8,36.4,32.1z"/>
<path class="st2" d="M41.4,27.6l-0.6-0.7c-0.7,0.6-1.5,1.2-2.2,1.9l0.6,0.7C40,28.9,40.7,28.2,41.4,27.6z"/>
<path class="st2" d="M44,25.5l-0.6-0.7c-0.7,0.6-1.5,1.2-2.2,1.8l0.6,0.7C42.6,26.7,43.3,26.1,44,25.5z"/>
<path class="st2" d="M106.9,2.9c0.9,0,1.9,0,2.8,0V1.9c-1,0-1.9,0-2.9,0L106.9,2.9z"/>
<path class="st2" d="M103,3l-0.1-0.9c-1,0.1-1.9,0.1-2.8,0.2l0.1,0.9C101.1,3.2,102.1,3.1,103,3z"/>
<path class="st2" d="M99.6,3.3l-0.1-0.9c-0.9,0.1-1.9,0.2-2.8,0.3l0.1,0.9C97.8,3.5,98.7,3.4,99.6,3.3z"/>
<path class="st2" d="M96.3,3.7l-0.1-0.9c-0.9,0.1-1.9,0.3-2.8,0.4l0.1,0.9C94.4,4,95.3,3.8,96.3,3.7z"/>
<path class="st2" d="M106.4,2.9l0-0.9c-1,0-1.9,0.1-2.9,0.1l0.1,0.9C104.5,3,105.4,2.9,106.4,2.9z"/>
<path class="st2" d="M31.6,36.9L31,36.2c-0.6,0.7-1.3,1.4-1.9,2.1l0.7,0.6C30.4,38.3,31,37.6,31.6,36.9z"/>
<path class="st2" d="M92.9,4.2l-0.1-0.9c-0.9,0.2-1.9,0.3-2.8,0.5l0.2,0.9C91.1,4.5,92,4.3,92.9,4.2z"/>
<path class="st2" d="M83.1,6.3l-0.2-0.9c-0.9,0.2-1.8,0.5-2.8,0.8L80.3,7C81.2,6.8,82.1,6.5,83.1,6.3z"/>
<path class="st2" d="M73.4,9.3l-0.3-0.9c-0.9,0.3-1.8,0.7-2.7,1l0.3,0.9C71.6,9.9,72.5,9.6,73.4,9.3z"/>
<path class="st2" d="M76.6,8.2l-0.3-0.9c-0.9,0.3-1.8,0.6-2.7,0.9l0.3,0.9C74.8,8.8,75.7,8.5,76.6,8.2z"/>
<path class="st2" d="M79.8,7.2l-0.3-0.9c-0.9,0.3-1.8,0.6-2.7,0.8L77.1,8C78,7.7,78.9,7.4,79.8,7.2z"/>
<path class="st2" d="M70.3,10.5l-0.3-0.9c-0.9,0.4-1.8,0.7-2.6,1.1l0.4,0.9C68.5,11.2,69.4,10.8,70.3,10.5z"/>
<path class="st2" d="M89.6,4.8l-0.2-0.9c-0.9,0.2-1.9,0.4-2.8,0.6l0.2,0.9C87.8,5.2,88.7,5,89.6,4.8z"/>
<path class="st2" d="M58.1,16.3l-0.4-0.8c-0.8,0.5-1.7,0.9-2.5,1.4l0.5,0.8C56.5,17.2,57.3,16.7,58.1,16.3z"/>
<path class="st2" d="M29.4,39.4l-0.7-0.6c-0.6,0.7-1.2,1.4-1.9,2.2l0.7,0.6C28.1,40.8,28.8,40.1,29.4,39.4z"/>
<path class="st2" d="M4.1,93.6l-0.9-0.1c-0.1,0.9-0.3,1.9-0.4,2.8l0.9,0.1C3.8,95.5,3.9,94.5,4.1,93.6z"/>
<path class="st2" d="M5.3,87l-0.9-0.2c-0.2,0.9-0.4,1.9-0.6,2.8l0.9,0.2C4.9,88.8,5.1,87.9,5.3,87z"/>
<path class="st2" d="M4.7,90.3l-0.9-0.2c-0.2,0.9-0.3,1.9-0.5,2.8l0.9,0.1C4.3,92.1,4.5,91.2,4.7,90.3z"/>
<path class="st2" d="M6.1,83.7l-0.9-0.2c-0.2,0.9-0.5,1.8-0.7,2.8l0.9,0.2C5.7,85.5,5.9,84.6,6.1,83.7z"/>
<path class="st2" d="M8,77.2L7.1,77c-0.3,0.9-0.6,1.8-0.8,2.7l0.9,0.3C7.4,79,7.7,78.1,8,77.2z"/>
<path class="st2" d="M7,80.5l-0.9-0.3C5.8,81.1,5.6,82,5.3,83l0.9,0.2C6.5,82.3,6.7,81.4,7,80.5z"/>
<path class="st2" d="M2.9,113.7l-0.9,0c0,1,0.1,1.9,0.1,2.8l0.9-0.1C3,115.6,2.9,114.7,2.9,113.7z"/>
<path class="st2" d="M3.3,100.3l-0.9-0.1c-0.1,0.9-0.2,1.9-0.2,2.8l0.9,0.1C3.1,102.2,3.2,101.2,3.3,100.3z"/>
<path class="st2" d="M2.8,110.4H1.9c0,1,0,1.9,0,2.9l0.9,0C2.8,112.3,2.8,111.3,2.8,110.4z"/>
<path class="st2" d="M2.9,107l-0.9,0c0,1,0,1.9,0,2.9h0.9C2.8,108.9,2.8,108,2.9,107z"/>
<path class="st2" d="M3,103.6l-0.9-0.1c-0.1,1-0.1,1.9-0.1,2.8l0.9,0C2.9,105.5,2.9,104.6,3,103.6z"/>
<path class="st2" d="M3.6,96.9l-0.9-0.1c-0.1,0.9-0.2,1.9-0.3,2.8l0.9,0.1C3.4,98.8,3.5,97.9,3.6,96.9z"/>
<path class="st2" d="M21.2,50.1l-0.8-0.5c-0.5,0.8-1.1,1.6-1.6,2.4l0.8,0.5C20.1,51.6,20.6,50.8,21.2,50.1z"/>
<path class="st2" d="M23.1,47.3l-0.8-0.5c-0.6,0.8-1.1,1.5-1.6,2.3l0.8,0.5C22,48.8,22.5,48.1,23.1,47.3z"/>
<path class="st2" d="M19.3,52.9l-0.8-0.5c-0.5,0.8-1,1.6-1.5,2.4l0.8,0.5C18.3,54.5,18.8,53.7,19.3,52.9z"/>
<path class="st2" d="M27.2,42l-0.7-0.6c-0.6,0.7-1.2,1.5-1.8,2.2l0.7,0.6C26,43.4,26.6,42.7,27.2,42z"/>
<path class="st2" d="M25.1,44.6L24.4,44c-0.6,0.8-1.1,1.5-1.7,2.3l0.8,0.5C24,46.1,24.5,45.3,25.1,44.6z"/>
<path class="st2" d="M17.6,55.8l-0.8-0.5c-0.5,0.8-0.9,1.6-1.4,2.5l0.8,0.4C16.6,57.4,17.1,56.6,17.6,55.8z"/>
<path class="st2" d="M9.1,74.1l-0.9-0.3c-0.3,0.9-0.6,1.8-0.9,2.7l0.9,0.3C8.4,75.8,8.7,74.9,9.1,74.1z"/>
<path class="st2" d="M9.8,72.1c0.2-0.4,0.3-0.8,0.5-1.2l-0.9-0.3C9.2,71,9,71.4,8.9,71.8c-0.2,0.5-0.4,1-0.5,1.5l0.9,0.3 C9.4,73.1,9.6,72.6,9.8,72.1z"/>
<path class="st2" d="M11.5,67.8l-0.9-0.4c-0.4,0.9-0.7,1.8-1.1,2.6l0.9,0.3C10.8,69.5,11.1,68.6,11.5,67.8z"/>
<path class="st2" d="M12.9,64.7L12,64.3c-0.4,0.9-0.8,1.7-1.2,2.6l0.9,0.4C12.1,66.4,12.5,65.6,12.9,64.7z"/>
<path class="st2" d="M14.4,61.7l-0.8-0.4c-0.4,0.8-0.8,1.7-1.3,2.6l0.8,0.4C13.5,63.4,13.9,62.5,14.4,61.7z"/>
<path class="st2" d="M15.9,58.7l-0.8-0.4c-0.5,0.8-0.9,1.7-1.3,2.5l0.8,0.4C15,60.4,15.5,59.5,15.9,58.7z"/>
<path class="st2" d="M86.3,5.5l-0.2-0.9c-0.9,0.2-1.9,0.4-2.8,0.7l0.2,0.9C84.5,5.9,85.4,5.7,86.3,5.5z"/>
<path class="st2" d="M120.4,3.3c0.9,0.1,1.9,0.2,2.8,0.3l0.1-0.9c-0.9-0.1-1.9-0.2-2.8-0.3L120.4,3.3z"/>
<path class="st2" d="M140.2,7.2c0.9,0.3,1.8,0.5,2.7,0.8l0.3-0.9c-0.9-0.3-1.8-0.6-2.7-0.8L140.2,7.2z"/>
<path class="st2" d="M117,3c0.9,0.1,1.9,0.1,2.8,0.2l0.1-0.9c-0.9-0.1-1.9-0.2-2.8-0.2L117,3z"/>
<path class="st2" d="M146.9,8.4l-0.3,0.9c0.4,0.2,0.9,0.3,1.3,0.5c0.4,0.2,0.9,0.3,1.3,0.5l0.3-0.9c-0.4-0.2-0.9-0.4-1.3-0.5 C147.8,8.7,147.3,8.6,146.9,8.4z"/>
<path class="st2" d="M149.7,10.5c0.9,0.3,1.7,0.7,2.6,1.1l0.4-0.9c-0.9-0.4-1.8-0.7-2.6-1.1L149.7,10.5z"/>
<path class="st2" d="M143.4,8.2c0.9,0.3,1.8,0.6,2.7,0.9l0.3-0.9c-0.9-0.3-1.8-0.6-2.7-0.9L143.4,8.2z"/>
<path class="st2" d="M130.4,4.8c0.9,0.2,1.8,0.4,2.8,0.6l0.2-0.9c-0.9-0.2-1.9-0.4-2.8-0.6L130.4,4.8z"/>
<path class="st2" d="M136.9,6.3c0.9,0.2,1.8,0.5,2.7,0.7l0.3-0.9c-0.9-0.3-1.8-0.5-2.8-0.8L136.9,6.3z"/>
<path class="st2" d="M133.7,5.5c0.9,0.2,1.8,0.4,2.7,0.7l0.2-0.9c-0.9-0.2-1.8-0.5-2.8-0.7L133.7,5.5z"/>
<path class="st2" d="M123.7,3.7c0.9,0.1,1.9,0.3,2.8,0.4l0.1-0.9c-0.9-0.1-1.9-0.3-2.8-0.4L123.7,3.7z"/>
<path class="st2" d="M127.1,4.2c0.9,0.2,1.9,0.3,2.8,0.5l0.2-0.9c-0.9-0.2-1.9-0.3-2.8-0.5L127.1,4.2z"/>
<path class="st2" d="M152.8,11.8c0.9,0.4,1.7,0.8,2.6,1.2l0.4-0.8c-0.9-0.4-1.7-0.8-2.6-1.2L152.8,11.8z"/>
<path class="st2" d="M113.6,2.9c0.9,0,1.9,0.1,2.8,0.1l0.1-0.9c-1-0.1-1.9-0.1-2.9-0.1L113.6,2.9z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 29 KiB

BIN
images/video.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 247 KiB

12
index.php

@ -47,14 +47,14 @@
<div id="dropLoading">
<div id="animation_container">
<canvas id="canvas"></canvas>
<div id="dom_overlay_container"></div>
<div class="box">
<div class="count">0</div>
<img class="anim" src="<?php echo $BASE_URL;?>/images/loader.svg" />
<div class="text">...</div>
</div>
<div id="countdown"></div>
</div>
<script type="text/javascript" src="<?php echo $BASE_URL;?>/node_modules/jquery/dist/jquery.min.js"></script>
<script type="text/javascript" src="<?php echo $BASE_URL;?>/js/scripts.js"></script>

6
js/compatibility.js

@ -18,13 +18,15 @@ $(document).ready(()=>{
confirm.on('click', ()=>{
loadingInit()
loading.find('.text').text('Personalizzazione della formazione in corso ...')
loading.fadeIn()
timeout_trigger()
setTimeout(()=>{
loading.fadeOut(()=>{
window.location='plans'
})
},7000)
},6500)
})

1060
js/loading.js

File diff suppressed because one or more lines are too long

28
js/modules.js

@ -22,6 +22,8 @@ function drop(ev) {
let once = true
overlay.fadeIn()
discard.on('click',()=>{
@ -33,22 +35,26 @@ function drop(ev) {
confirm.on('click', ()=>{
const module = $('#'+data)
if(once){
loadingInit()
loading.find('.text').text('Analisi di compatibilità del modulo in corso ...')
overlay.fadeOut()
loading.fadeIn()
setTimeout(()=>{
const module = $('#'+data)
timeout_trigger()
if(target.find('.modules-container').length){
target.find('.modules-container').append('<div class="div-drag">'+module.text()+'</div>')
}else{
$('.modules-container').append('<div class="div-drag">'+module.text()+'</div>')
}
loading.fadeOut()
setTimeout(()=>{
if(target.find('.modules-container').length){
target.find('.modules-container').append('<div class="div-drag">'+module.text()+'</div>')
}else{
$('.modules-container').append('<div class="div-drag">'+module.text()+'</div>')
}
},700)
loading.fadeOut()
window.location = 'compatibility'
},6500)
once = false
}

71
js/plans.js

@ -2,7 +2,10 @@
$(document).ready(()=>{
const plans = $('.plans')
const phones = plans.find('.phone')
const clouds = plans.find('.cloud')
const videoOpener = plans.find('.video-opener')
const delay = 1000
let timer = 0
@ -11,19 +14,71 @@ $(document).ready(()=>{
const el = $(elem)
timer = index*delay
if(el.hasClass('empty')){
if(el.hasClass('empty') || el.hasClass('hidden')){
timer -= delay
}
if(!el.hasClass('hidden')){
setTimeout(()=>{
if(!el.hasClass('empty')){
$('#notify1')[0].play()
}
el.fadeIn(500)
},timer)
}
})
}, delay)
phones.each((index, phone)=>{
const content = $(phone).find('.content')
const actions = content.find('.button')
const firstChild = content.find('.cloud').first()
actions.each((index, button)=>{
const action = $(button)
action.on('click', (e)=>{
const elem = $(e.currentTarget)
const show = $('#' + elem.data('cloud'))
let offset = 0
$('#notify1')[0].play()
show.fadeIn(400,()=>{
offset = show.offset().top - content.offset().top - 20
firstChild.animate({'margin-top': '-' + offset},400)
})
setTimeout(()=>{
if(!el.hasClass('empty')){
$('#notify1')[0].play()
}
el.fadeIn(500)
},timer)
})
})
})
videoOpener.on('click', (e)=>{
const elem = $(e.currentTarget)
const show = $('#' + elem.data('video'))
const video = show.find('video')
const close = show.find('.video-close')
show.fadeIn()
video.get(0).play()
close.on('click', (e)=>{
const elem = $(e.currentTarget)
const video = elem.siblings('video')
video.get(0).pause()
elem.parent().fadeOut()
})
},delay)
})
})

16
js/scripts.js

@ -1 +1,17 @@
let counter = 0
function timeout_trigger(){
counter++
$('#dropLoading .count').text(counter + "%")
if(counter != 100) {
setTimeout('timeout_trigger()', 50)
}else{
counter = 0
}
}

22
plans.php

@ -20,7 +20,18 @@
Il modulo "differenze culturali" è disponibile.
</div>
<div class="cloud empty">
<button class="button dotted">Ok</button>
<button class="button dotted" data-cloud="luca_1">Ok</button>
</div>
<div class="cloud empty hidden" id="luca_1">
<img src="<?= $BASE_URL;?>/images/video.png" class="video-opener" data-video="video1">
</div>
<div class="video" id="video1">
<div class="video-close"></div>
<video width="400" controls>
<source src="https://cdn.jsdelivr.net/npm/big-buck-bunny-1080p@0.0.6/video.mp4" type="video/mp4">
</video>
</div>
</div>
<div class="input"></div>
@ -33,11 +44,16 @@
<div class="rule">Venditore</div>
<div class="content">
<div class="cloud left">
Ciao Sara!<br>
Ciao Sarah!<br>
Il modulo "differenze culturali" è disponibile.
</div>
<div class="cloud empty">
<button class="button dotted">Ok</button>
<button class="button dotted" data-cloud="sara_1">Ok</button>
</div>
<div class="cloud left hidden" id="sara_1">
Ciao Luca!<br>
Il modulo "differenze culturali" è disponibile.
</div>
</div>
<div class="input"></div>

3
scripts/compatibility.php

@ -1,3 +1,2 @@
<script type="text/javascript" src="https://code.createjs.com/createjs-2015.11.26.min.js"></script>
<script type="text/javascript" src="<?php echo $BASE_URL;?>/js/loading.js"></script>
<script type="text/javascript" src="<?php echo $BASE_URL;?>/js/compatibility.js"></script>

3
scripts/modules.php

@ -1,4 +1,3 @@
<script type="text/javascript" src="https://code.createjs.com/createjs-2015.11.26.min.js"></script>
<script type="text/javascript" src="<?php echo $BASE_URL;?>/js/loading.js"></script>
<script type="text/javascript" src="<?php echo $BASE_URL;?>/js/modules.js"></script>

BIN
scss/.sass-cache/132087705a52dd1d0e0e4a761ce2b1b521d0d802/global.scssc

Binary file not shown.

65
scss/global.scss

@ -93,7 +93,6 @@ a{
#dropLoading{
display: none;
position: fixed;
@ -103,26 +102,54 @@ a{
width: 100%;
background: rgba(0,0,0,0.8);
overflow: hidden;
#animation_container{
position: absolute;
height: 300px;
width: 300px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#countdown{
.box{
position: fixed;
height: 30px;
line-height: 30px;
width: 50px;
z-index: 9999;
top: calc(50% + 30px);
height: 220px;
width: 220px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
font-size: $font-18;
color: white;
div{
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
animation: fade 7s linear 0s 1 normal;
}
.anim {
animation: pop-up 7s ease-in 0s 1 normal;
}
.count{
color: white;
}
.text {
width: 100vw;
color: white;
text-align: center;
font-size: $font-10;
top: calc(50% + 140px);
}
}
}
@keyframes pop-up{
0% {transform: scale(0);}
10% {transform: scale(1);}
95% {transform: scale(1);}
100% {transform: scale(0);}
}
@keyframes fade{
0% {opacity: 0;}
10% {opacity: 1;}
95% {opacity: 1;}
100% {opacity: 0;}
}

48
scss/sections/plans.scss

@ -42,7 +42,8 @@
top: 145px;
left: 12px;
height: 371px;
width: 222px;
width: 223px;
overflow: hidden;
.cloud{
display: none;
@ -54,13 +55,19 @@
margin: 10px 0;
border-radius: 8px;
img{
width: 100%;
padding: 5px;
cursor: pointer;
}
&.left{
left: 15px;
background: $pink;
border: 1px solid $dark-pink;
&:before{
content: '';
border: solid 11px transparent;
border: solid 8px transparent;
border-right-color: $dark-pink;
position: absolute;
left: 0;
@ -69,7 +76,7 @@
}
&:after{
content: '';
border: solid 10px transparent;
border: solid 7px transparent;
border-right-color: $pink;
position: absolute;
left: 0;
@ -84,7 +91,7 @@
border: 1px solid $dark-azure;
&:before{
content: '';
border: solid 11px transparent;
border: solid 8px transparent;
border-left-color: $dark-azure;
position: absolute;
right: 0;
@ -93,7 +100,7 @@
}
&:after{
content: '';
border: solid 10px transparent;
border: solid 7px transparent;
border-left-color: $azure;
position: absolute;
right: 0;
@ -109,6 +116,35 @@
}
}
.video{
display: none;
position: absolute;
top: 0;
left:0;
height: 371px;
width: 223px;
background: black;
.video-close{
position: absolute;
top: 0;
right: 3px;
height: 20px;
width: 20px;
cursor: pointer;
&:after{
content: '\f00d';
font-family: $icon;
font-size: $font-20;
color: white;
}
}
video{
height: 371px;
width: 223px;
}
}
}
.input{
@ -116,7 +152,7 @@
top: 516px;
left: 12px;
height: 42px;
width: 222px;
width: 223px;
border-radius: 0 0 26px 26px;
overflow: hidden;
}

Loading…
Cancel
Save