first commit

This commit is contained in:
2024-10-25 16:01:25 +02:00
commit 0b41d1ac8e
198 changed files with 371618 additions and 0 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,152 @@
$breakpoints: (
xs: 576px,
sm: 768px,
md: 992px,
lg: 1281px
);
@mixin respond-above($breakpoint) {
@if map-has-key($breakpoints, $breakpoint) {
$breakpoint-value: map-get($breakpoints, $breakpoint);
@media (min-width: $breakpoint-value) {
@content;
}
} @else {
@warn 'Invalid breakpoint: #{$breakpoint}.';
}
}
@mixin respond-below($breakpoint) {
@if map-has-key($breakpoints, $breakpoint) {
$breakpoint-value: map-get($breakpoints, $breakpoint);
@media (max-width: ($breakpoint-value - 1)) {
@content;
}
} @else {
@warn 'Invalid breakpoint: #{$breakpoint}.';
}
}
@mixin respond-between($lower, $upper) {
@if map-has-key($breakpoints, $lower) and map-has-key($breakpoints, $upper) {
$lower-breakpoint: map-get($breakpoints, $lower);
$upper-breakpoint: map-get($breakpoints, $upper);
@media (min-width: $lower-breakpoint) and (max-width: ($upper-breakpoint - 1)) {
@content;
}
} @else {
@if (map-has-key($breakpoints, $lower) == false) {
@warn 'Your lower breakpoint was invalid: #{$lower}.';
}
@if (map-has-key($breakpoints, $upper) == false) {
@warn 'Your upper breakpoint was invalid: #{$upper}.';
}
}
}
@mixin border-radius($px: 0) {
-webkit-border-radius: $px;
-moz-border-radius: $px;
border-radius: $px;
}
@mixin box-shadow($value) {
-webkit-box-shadow: $value;
-moz-box-shadow: $value;
box-shadow: $value;
}
@mixin transition($element: all, $time: .5s, $option: ease) {
-webkit-transition: $element $time $option;
transition: $element $time $option;
}
@mixin opacity($value) {
$IEValue: $value*100;
opacity: $value;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity="+$IEValue+")";
filter: alpha(opacity=$IEValue);
}
@mixin flexbox() {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
}
@mixin flex($values) {
-webkit-box-flex: $values;
-moz-box-flex: $values;
-webkit-flex: $values;
-ms-flex: $values;
flex: $values;
}
@mixin flex-direction($direction) {
-webkit-flex-direction: $direction;
-moz-flex-direction: $direction;
-ms-flex-direction: $direction;
flex-direction: $direction;
}
@mixin flex-wrap($wrap) {
-webkit-flex-wrap: $wrap;
-moz-flex-wrap: $wrap;
-ms-flex-wrap: $wrap;
flex-wrap: $wrap;
}
@mixin flex-flow($flow) {
-webkit-flex-flow: $flow;
-moz-flex-flow: $flow;
-ms-flex-flow: $flow;
flex-flow: $flow;
}
@mixin order($val) {
-webkit-box-ordinal-group: $val;
-moz-box-ordinal-group: $val;
-ms-flex-order: $val;
-webkit-order: $val;
order: $val;
}
@mixin flex-grow($grow) {
-webkit-flex-grow: $grow;
-moz-flex-grow: $grow;
-ms-flex-grow: $grow;
flex-grow: $grow;
}
@mixin flex-shrink($shrink) {
-webkit-flex-shrink: $shrink;
-moz-flex-shrink: $shrink;
-ms-flex-shrink: $shrink;
flex-shrink: $shrink;
}
@mixin flex-basis($width) {
-webkit-flex-basis: $width;
-moz-flex-basis: $width;
-ms-flex-basis: $width;
flex-basis: $width;
}
@mixin justify-content($justify) {
-webkit-justify-content: $justify;
-moz-justify-content: $justify;
-ms-justify-content: $justify;
justify-content: $justify;
-ms-flex-pack: $justify;
}
@mixin align-content($align) {
-webkit-align-content: $align;
-moz-align-content: $align;
-ms-align-content: $align;
align-content: $align;
}
@mixin align-items($align) {
-webkit-align-items: $align;
-moz-align-items: $align;
-ms-align-items: $align;
align-items: $align;
}
@mixin align-self($align) {
-webkit-align-self: $align;
-moz-align-self: $align;
-ms-align-self: $align;
align-self: $align;
}
.vmiddle {
@include flexbox;
@include align-items( center );
}
.hright {
@include flexbox;
@include justify-content( flex-end );
}

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,169 @@
/* GOOGLE FONT IMPORT */
@import url(http://fonts.googleapis.com/css?family=Open+Sans:300,400,700,900);
body {
font-family: 'Open Sans', sans-serif;
color: #555;
background-color: #F5F5F5;
line-height: 1.64;
margin: 0;
padding-top: 100px;
}
a, a:visited {
color: #1dc6df;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Open Sans', sans-serif;
}
.animation-demo {
border-radius: 3px;
padding: 20px 30px;
margin-bottom: 30px;
}
ul {
margin: 0;
}
li {
margin-left: -60px;
}
section {
padding-top: 80px;
padding-bottom: 80px;
}
select, input, textarea {
font-family: 'Open Sans', sans-serif;
font-size: 16px;
padding: 10px;
color: #777;
width: 400px;
border-radius: 4px;
border: 1px solid #E2E2E2;
}
input {
width: 200px;
}
textarea {
width: 90%;
}
/* ================================= */
/* ========== ICON FEATURE BOXES STYLES ========== */
/* ================================= */
/* === Vertical 3 Column === */
.icon-feature-3column {
}
.icon-feature-3column i {
font-size: 100px;
margin-top: 20px;
margin-bottom: 20px;
}
/* === Vertical 4 Column === */
.icon-feature-4column {
}
.icon-feature-4column i {
font-size: 70px;
margin-top: 20px;
margin-bottom: 20px;
}
/* === Vertical 3 Column - With Background === */
.icon-feature-3column-alt {
}
.icon-feature-3column-alt i {
font-size: 70px;
border-radius: 100px;
padding: 35px;
margin-top: 20px;
margin-bottom: 20px;
}
/* === Vertical 4 Column - With Background === */
.icon-feature-4column-alt {
}
.icon-feature-4column-alt i {
font-size: 50px;
border-radius: 100px;
padding: 25px;
margin-top: 20px;
margin-bottom: 20px;
}
/* === Horizontal 3 Column === */
.icon-feature-3column-horizontal {
display: table;
}
.icon-feature-3column-horizontal .icon {
display: table-cell;
padding-top: 15px;
}
.icon-feature-3column-horizontal .icon i {
font-size: 40px;
}
.icon-feature-3column-horizontal .content {
display: table-cell;
vertical-align: top;
text-align: left;
padding-left: 20px;
}
/* === Horizontal 2 Column === */
.icon-feature-2column-horizontal {
display: table;
}
.icon-feature-2column-horizontal .icon {
display: table-cell;
padding-top: 15px;
}
.icon-feature-2column-horizontal .icon i {
font-size: 60px;
}
.icon-feature-2column-horizontal .content {
display: table-cell;
vertical-align: top;
text-align: left;
padding-left: 30px;
}
/* === Horizontal 3 Column - With Background === */
.icon-feature-3column-horizontal-alt {
display: table;
}
.icon-feature-3column-horizontal-alt .icon {
display: table-cell;
padding-top: 15px;
}
.icon-feature-3column-horizontal-alt .icon i {
border-radius: 100px;
padding: 12px;
font-size: 24px;
margin-top: 0;
margin-bottom: 20px;
}
.icon-feature-3column-horizontal-alt .content {
display: table-cell;
vertical-align: top;
text-align: left;
padding-left: 20px;
}
/* === Horizontal 2 Column - With Background === */
.icon-feature-2column-horizontal-alt {
display: table;
}
.icon-feature-2column-horizontal-alt .icon {
display: table-cell;
padding-top: 15px;
}
.icon-feature-2column-horizontal-alt .icon i {
border-radius: 100px;
padding: 16px;
font-size: 32px;
margin-top: 0;
margin-bottom: 20px;
}
.icon-feature-2column-horizontal-alt .content {
display: table-cell;
vertical-align: top;
text-align: left;
padding-left: 20px;
}

View File

@@ -0,0 +1,318 @@
/*!
* jQuery Cre-animate - Scrolling Animations - v1.1
* Copyright (c) 2014 CreativelyCoded
* support@creativelycoded.com
*
* http://www.creativelycoded.com/
*/
(function($) { "use strict";
var disablePoint = 1024;
if ($(window).width() < disablePoint) {
// Do nothing //
}
else {
var dataanimation = {
fadein: 'fade-in',
fadeout: 'fade-out',
slidedownfromtop: 'slide-down-from-top',
slideinfromright: 'slide-in-from-right',
slideupfrombottom: 'slide-up-from-bottom',
slideinfromleft: 'slide-in-from-left',
scaleup: 'scale-up',
scaledown: 'scale-down',
rotate: 'rotate',
flipyaxis: 'flip-y-axis',
flipxaxis: 'flip-x-axis'
};
var cssEase = {
'ease': 'ease',
'in': 'ease-in',
'out': 'ease-out',
'in-out': 'ease-in-out',
'snap': 'cubic-bezier(0,1,.5,1)',
// Penner equations
'easeOutCubic': 'cubic-bezier(.215,.61,.355,1)',
'easeInOutCubic': 'cubic-bezier(.645,.045,.355,1)',
'easeInCirc': 'cubic-bezier(.6,.04,.98,.335)',
'easeOutCirc': 'cubic-bezier(.075,.82,.165,1)',
'easeInOutCirc': 'cubic-bezier(.785,.135,.15,.86)',
'easeInExpo': 'cubic-bezier(.95,.05,.795,.035)',
'easeOutExpo': 'cubic-bezier(.19,1,.22,1)',
'easeInOutExpo': 'cubic-bezier(1,0,0,1)',
'easeInQuad': 'cubic-bezier(.55,.085,.68,.53)',
'easeOutQuad': 'cubic-bezier(.25,.46,.45,.94)',
'easeInOutQuad': 'cubic-bezier(.455,.03,.515,.955)',
'easeInQuart': 'cubic-bezier(.895,.03,.685,.22)',
'easeOutQuart': 'cubic-bezier(.165,.84,.44,1)',
'easeInOutQuart': 'cubic-bezier(.77,0,.175,1)',
'easeInQuint': 'cubic-bezier(.755,.05,.855,.06)',
'easeOutQuint': 'cubic-bezier(.23,1,.32,1)',
'easeInOutQuint': 'cubic-bezier(.86,0,.07,1)',
'easeInSine': 'cubic-bezier(.47,0,.745,.715)',
'easeOutSine': 'cubic-bezier(.39,.575,.565,1)',
'easeInOutSine': 'cubic-bezier(.445,.05,.55,.95)',
'easeInBack': 'cubic-bezier(.6,-.28,.735,.045)',
'easeOutBack': 'cubic-bezier(.175, .885,.32,1.275)',
'easeInOutBack': 'cubic-bezier(.68,-.55,.265,1.55)'
};
//GLOBAL TRANSITION VARIABLES
var opacityZero = {
'opacity': '0',
'-ms-opacity': '0',
'-webkit-opacity': '0',
'-moz-opacity': '0',
'-o-opacity': '0',
};
var opacityFull = {
'opacity': '1',
'-ms-opacity': '1',
'-webkit-opacity': '1',
'-moz-opacity': '1',
'-o-opacity': '1',
};
// DEFAULT ATTRIBUTES FOR ELEMENTS BASED ON ANIMATION TYPE
$(document).ready(function() {
$('html, body').css('overflow-x', 'hidden');
$('html').css('height', '100%');
$('.cre-animate').css({'position': 'relative'});
$('.cre-animate').each(function() {
var dataanimationUser = $(this).data('animation');
if (dataanimationUser == dataanimation.fadein) {
$(this).css(opacityZero);
}
if (dataanimationUser == dataanimation.fadeout) {
$(this).css(opacityFull);
}
if (dataanimationUser == dataanimation.slideinfromright) {
$(this).css({'right': '-400px'}).css(opacityZero);
}
if (dataanimationUser == dataanimation.slideinfromleft) {
$(this).css({'left': '-400px'}).css(opacityZero);
}
if (dataanimationUser == dataanimation.slideupfrombottom) {
$(this).css({'bottom': '-200px'}).css(opacityZero);
}
if (dataanimationUser == dataanimation.slidedownfromtop) {
$(this).css({'top': '-200px'}).css(opacityZero);
}
if (dataanimationUser == dataanimation.rotate) {
$(this).css(opacityZero);
}
if (dataanimationUser == dataanimation.scaleup) {
var datastartscale = 0;
var startScale = {
'transform': 'scale(' + datastartscale + ')',
'-ms-transform': 'scale(' + datastartscale + ')',
'-webkit-transform': 'scale(' + datastartscale + ')',
'-moz-transform': 'scale(' + datastartscale + ')',
'-o-transform': 'scale(' + datastartscale + ')'
};
$(this).css(startScale).css(opacityZero);
}
if (dataanimationUser == dataanimation.scaledown) {
var datastartscale2 = 2;
var startScale2 = {
'transform': 'scale(' + datastartscale2 + ')',
'-ms-transform': 'scale(' + datastartscale2 + ')',
'-webkit-transform': 'scale(' + datastartscale2 + ')',
'-moz-transform': 'scale(' + datastartscale2 + ')',
'-o-transform': 'scale(' + datastartscale2 + ')'
};
$(this).css(startScale2).css(opacityZero);
}
if (dataanimationUser == dataanimation.flipyaxis) {
var flipY = {
'transform': 'rotateY(180deg)',
'-ms-transform': 'rotateY(180deg)',
'-webkit-transform': 'rotateY(180deg)',
'-moz-transform': 'rotateY(180deg)',
'-o-transform': 'rotateY(180deg)'
};
$(this).css(flipY).css(opacityZero);
}
if (dataanimationUser == dataanimation.flipxaxis) {
var flipX = {
'transform': 'rotateX(180deg)',
'-ms-transform': 'rotateX(180deg)',
'-webkit-transform': 'rotateX(180deg)',
'-moz-transform': 'rotateX(180deg)',
'-o-transform': 'rotateX(180deg)'
};
$(this).css(flipX).css(opacityZero);
}
});
});
// ONSCROLL ANIMATION OF ELEMENTS
$(window).on('scroll load', function() {
$('.cre-animate').each(function() {
// GET ANIMATION TYPE FROM ELEMENT
var dataanimationUser = $(this).data('animation');
// CALCULATES THE TRIGGER POINT USING THE OFFSET
var dataoffset = $(this).data('offset');
var parsePercent = parseFloat(dataoffset);
var decimal = parsePercent / 100;
var triggerpoint = $(window).height() * decimal + $(window).scrollTop(); // Call point in Viewport: viewport height * decimal(%) + pixels to top of window
var element = $(this).offset().top;
if (dataanimationUser == dataanimation.slidedownfromtop) {
element = element + 200;
}
if (dataanimationUser == dataanimation.slideupfrombottom) {
element = element - 200;
}
if (dataanimationUser == dataanimation.scaleup) {
element = element - $(this).height() / 2;
}
if (dataanimationUser == dataanimation.scaledown) {
element = element + $(this).height() / 2;
}
// ASSIGNS VALUES FOR THE EASING TYPES
var dataeasing = $(this).data('easing');
if (cssEase[dataeasing]) {
dataeasing = cssEase[dataeasing];
}
// TRANSITION OPTIONS ARE CREATED
var datadelay = $(this).data('delay');
var dataspeed = $(this).data('speed');
var transitionOptions = {
'transition-duration': dataspeed + 'ms',
'-ms-transition-duration': dataspeed + 'ms',
'-webkit-transition-duration': dataspeed + 'ms',
'-moz-transition-duration': dataspeed + 'ms',
'-o-transition-duration': dataspeed + 'ms',
'transition-timing-function': dataeasing,
'-ms-transition-timing-function': dataeasing,
'-webkit-transition-timing-function': dataeasing,
'-moz-transition-timing-function': dataeasing,
'-o-transition-timing-function': dataeasing,
'transition-delay': datadelay + 'ms',
'-ms-transition-delay': datadelay + 'ms',
'-webkit-transition-delay': datadelay + 'ms',
'-moz-transition-delay': datadelay + 'ms',
'-o-transition-delay': datadelay + 'ms'
};
// TRIGGERS THE ANIMATIONS
if (element < triggerpoint) {
// FADE IN
if (dataanimationUser == dataanimation.fadein) {
$(this).css(opacityFull).css(transitionOptions);
}
// FADE OUT
if (dataanimationUser == dataanimation.fadeout) {
$(this).css(opacityZero).css(transitionOptions);
}
// SLIDE DOWN FROM TOP
if (dataanimationUser == dataanimation.slidedownfromtop) {
$(this).css({'top': '0'}).css(opacityFull).css(transitionOptions);
}
// SLIDE UP FROM BOTTOM
if (dataanimationUser == dataanimation.slideupfrombottom) {
$(this).css({'bottom': '0'}).css(opacityFull).css(transitionOptions);
}
// SLIDE IN FROM RIGHT
if (dataanimationUser == dataanimation.slideinfromright) {
$(this).css({'right': '0'}).css(opacityFull).css(transitionOptions);
}
// SLIDE IN FROM LEFT
if (dataanimationUser == dataanimation.slideinfromleft) {
$(this).css({'left': '0'}).css(opacityFull).css(transitionOptions);
}
// SCALE UP
if (dataanimationUser == dataanimation.scaleup) {
var dataendscale = 1;
var endScale = {
'transform': 'scale(' + dataendscale + ')',
'-ms-transform': 'scale(' + dataendscale + ')',
'-webkit-transform': 'scale(' + dataendscale + ')',
'-moz-transform': 'scale(' + dataendscale + ')',
'-o-transform': 'scale(' + dataendscale + ')'
};
$(this).css(endScale).css(opacityFull).css(transitionOptions);
}
// SCALE DOWN
if (dataanimationUser == dataanimation.scaledown) {
var dataendscale2 = 1;
var endScale2 = {
'transform': 'scale(' + dataendscale2 + ')',
'-ms-transform': 'scale(' + dataendscale2 + ')',
'-webkit-transform': 'scale(' + dataendscale2 + ')',
'-moz-transform': 'scale(' + dataendscale2 + ')',
'-o-transform': 'scale(' + dataendscale2 + ')'
};
$(this).css(endScale2).css(opacityFull).css(transitionOptions);
}
// ROTATE
if (dataanimationUser == dataanimation.rotate) {
var degrees = 360;
var rotation = {
'transform': 'rotate(' + degrees + 'deg)',
'-ms-transform': 'rotate(' + degrees + 'deg)',
'-webkit-transform': 'rotate(' + degrees + 'deg)',
'-moz-transform': 'rotate(' + degrees + 'deg)',
'-o-transform': 'rotate(' + degrees + 'deg)'
};
$(this).css(rotation).css(opacityFull).css(transitionOptions);
}
// FLIP Y AXIS
if (dataanimationUser == dataanimation.flipyaxis) {
var flipY = {
'transform': 'rotateY(360deg)',
'-ms-transform': 'rotateY(360deg)',
'-webkit-transform': 'rotateY(360deg)',
'-moz-transform': 'rotateY(360deg)',
'-o-transform': 'rotateY(360deg)'
};
$(this).css(flipY).css(opacityFull).css(transitionOptions);
}
// FLIP X AXIS
if (dataanimationUser == dataanimation.flipxaxis) {
var flipX = {
'transform': 'rotateX(360deg)',
'-ms-transform': 'rotateX(360deg)',
'-webkit-transform': 'rotateX(360deg)',
'-moz-transform': 'rotateX(360deg)',
'-o-transform': 'rotateX(360deg)'
};
$(this).css(flipX).css(opacityFull).css(transitionOptions);
}
}
});
});
}
}(jQuery));

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24" style="-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); transform: rotate(360deg);"><path d="M23.5 17l-5 5l-3.5-3.5l1.5-1.5l2 2l3.5-3.5l1.5 1.5M13 18H3V8l8 5l8-5v5h2V6c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h10v-2m6-12l-8 5l-8-5h16z" fill="#f6db00"/><rect x="0" y="0" width="24" height="24" fill="rgba(0, 0, 0, 0)" /></svg>

After

Width:  |  Height:  |  Size: 512 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 306 KiB

View File

@@ -0,0 +1,122 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.0.5, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Warstwa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 477.9 219.6" style="enable-background:new 0 0 477.9 219.6;" xml:space="preserve">
<style type="text/css">
.st0{fill:#1C2116;}
.st1{fill:#E7E323;}
.st2{fill:#101413;}
</style>
<title>logo</title>
<path class="st0" d="M459.2,152.5l-7.5,7.3c-8.4,7.4-17.6,13.9-27.4,19.3c-15,8.3-30.8,15.1-47.1,20.4c-10.8,3.5-21.7,6.5-32.8,8.9
c-10.1,2.3-20.3,4.2-30.6,5.8c-7.1,1.1-14.2,1.9-21.3,2.6c-11.3,1.1-22.6,1.9-33.9,2.4c-11.9,0.5-23.9,0.4-35.8,0.2
c-8.5-0.1-17-0.6-25.5-1.4c-13.1-1.3-26.1-2.7-39.1-4.9c-15.5-2.5-30.9-6-46.1-10.3c-21-6.1-41.3-13.9-60.3-24.9
c-11.7-6.8-22.7-14.6-32.1-24.4S3.3,132.5,0.8,118.9C-1,108.8,0.2,98.5,4.3,89c1-1.5,1.7-3.1,2.3-4.8c11.1-19.9,28.5-33.1,47.9-44
c23.1-12.9,47.8-21.4,73.4-27.6C176.7,1,226-2.1,275.9,1.3c22.2,1.5,44.2,4.6,65.9,9.4c28.5,6.3,56.1,15.2,81.7,29.5
c15.3,8.5,29.3,18.7,40.3,32.5c7.5,9.4,12.6,19.9,13.8,32c1.4,13.9-2.8,26.2-10.4,37.6C464.8,145.8,462.1,149.3,459.2,152.5z
M239,3.5c-20.4,0-40.8,1.2-61,3.6c-28.1,3.4-55.7,9.1-82.4,18.5c-19.1,6.6-37.4,14.9-54.1,26.5c-11.2,7.8-21.2,16.7-28.5,28.4
s-10.7,24.2-8,38c2.4,12.2,8.7,22.3,17,31.2C34.2,162.9,49,172.3,65,180.2c29.4,14.5,60.7,22.9,92.8,28.3
c18.6,3.1,37.5,5.1,56.3,5.9c28.8,1.4,57.8,0.4,86.4-3.1c25.1-2.9,49.9-8.3,74.1-15.9c20.8-6.7,40.9-15.2,59.1-27.4
c12.6-8.4,23.9-18.2,31.8-31.4c9.2-15.4,10.8-31.4,3.5-48.1c-4.9-11.1-12.6-20-21.7-27.8c-17.7-15.2-38.3-25.2-59.9-33.3
c-20.8-7.6-42.3-13.3-64.1-16.9C295.4,5.8,267.2,3.4,239,3.5z"/>
<path class="st1" d="M239,3.5c28.2-0.1,56.4,2.3,84.3,7.1c21.8,3.6,43.3,9.3,64.1,16.9c21.6,8.1,42.3,18.1,59.9,33.3
c9.1,7.8,16.8,16.7,21.7,27.8c7.4,16.6,5.8,32.7-3.5,48.1c-7.9,13.2-19.2,23-31.8,31.4c-18.3,12.3-38.3,20.7-59.1,27.4
c-24.1,7.6-48.9,13-74.1,15.9c-28.7,3.5-57.6,4.5-86.4,3.1c-18.9-0.8-37.7-2.8-56.3-5.9c-32.2-5.4-63.5-13.8-92.9-28.3
c-16-7.9-30.8-17.4-43.1-30.5c-8.3-8.9-14.6-19-17-31.2c-2.7-13.8,0.7-26.3,8-38s17.4-20.6,28.6-28.4c16.7-11.6,35-19.9,54.1-26.5
c26.8-9.3,54.3-15,82.4-18.5C198.2,4.7,218.6,3.5,239,3.5z M237.4,18.8c-7.5-0.1-18.1,0.4-28.5,1.1c-23.8,1.5-47.4,5-70.6,10.4
c-21.8,5.1-42.9,12-63,21.9c-14.2,7-27.7,15.3-38.6,27c-6.4,6.9-11.3,14.6-13,24c-2.1,11.4,1.5,21.4,8,30.5
c7.5,10.4,17.4,18.1,28.2,24.7c27.3,16.7,57.3,26.3,88.4,33.1c17.8,3.9,35.8,6.5,53.9,8c24.8,2.1,49.6,2.2,74.4,0.2
c24.2-1.8,48.2-5.8,71.7-11.9c21.9-5.7,43.2-13.1,63.2-24c12.9-7,25-15.1,34.5-26.6c6.8-8.2,11.3-17.4,11.2-28.3
c-0.1-10.4-4.5-19.1-11-26.9c-9.7-11.7-22.2-20-35.5-27.1c-26.8-14.2-55.5-22.6-85.2-28.3C297.5,21.3,269,18.9,237.4,18.8
L237.4,18.8z"/>
<path class="st0" d="M237.4,18.8c31.6,0,60,2.4,88.1,7.8c29.6,5.7,58.4,14.1,85.2,28.3c13.3,7.1,25.8,15.4,35.5,27.2
c6.4,7.8,10.8,16.5,11,26.9c0.1,10.9-4.4,20.1-11.2,28.3c-9.5,11.5-21.6,19.6-34.5,26.6c-20,10.8-41.3,18.2-63.2,24
c-23.5,6-47.5,10-71.7,11.9c-24.8,2-49.7,1.9-74.4-0.2c-18.1-1.5-36.1-4.1-53.9-8c-31-6.8-61-16.4-88.4-33.1
c-10.8-6.6-20.7-14.3-28.2-24.7c-6.6-9.1-10.1-19.1-8-30.5c1.7-9.4,6.6-17.2,13-24c11-11.8,24.4-20,38.6-27
c20.1-9.9,41.2-16.8,63-21.9c23.2-5.4,46.8-8.9,70.6-10.4C219.4,19.2,229.9,18.8,237.4,18.8z M242.4,196.8c20.6,0,41.3-1.5,61.7-4.4
c17.7-2.5,35.2-6.2,52.4-11.1c21.5-6.2,42.5-14.1,61.6-26c10.6-6.6,20.4-14.2,27.4-24.8c8.1-12.2,9.2-24.8,2.4-37.9
C444,85.3,438.4,79.3,432,74c-15-12.5-32.4-20.8-50.5-27.6c-19.8-7.5-40.2-12.6-61-16.3c-17.5-3.2-35.2-5.2-53-6.2
c-32.1-1.8-64.2-0.4-96,4.3c-19.9,2.9-39.6,7.4-58.8,13.5c-18.9,6.1-37.2,13.7-53.9,24.7C49.1,72.8,40.3,80.1,34,90.1
c-6.4,10.2-7.9,21-3.4,32.4c3.1,7.8,8.4,14.1,14.5,19.7C56.8,152.9,70.5,160.6,85,167c25.7,11.5,52.7,18.7,80.3,23.5
C190.8,194.8,216.6,196.9,242.4,196.8L242.4,196.8z"/>
<path class="st1" d="M242.5,196.8c-25.9,0.2-51.7-1.9-77.2-6.3c-27.7-4.8-54.6-12-80.3-23.5c-14.4-6.5-28.1-14.1-39.8-24.9
c-6.1-5.6-11.4-11.9-14.5-19.7c-4.6-11.3-3.1-22.1,3.4-32.4c6.3-10,15.1-17.3,24.8-23.8c16.7-11,35-18.6,53.9-24.7
c19.2-6.1,38.9-10.6,58.8-13.5c31.8-4.7,63.9-6.1,96-4.3c17.8,0.9,35.5,3,53,6.2c20.8,3.7,41.2,8.8,61,16.3
C399.6,53.2,417,61.5,432,74c6.4,5.3,12,11.3,15.9,18.7c6.9,13.1,5.7,25.7-2.4,37.9c-7,10.6-16.8,18.2-27.4,24.8
c-19.1,11.9-40,19.7-61.6,26c-17.2,4.9-34.7,8.6-52.4,11.1C283.7,195.3,263.1,196.8,242.5,196.8z M345.8,107.9
c-0.7-0.1-0.5-0.5-0.6-0.8c-1.1-8.9-2.1-17.7-3.4-26.6c-1.3-9.5-2.2-19-4.8-28.3c-1.1-3.8-2.6-7.5-6.1-9.9c-5.6-4-11-2.3-13.2,4.2
c-0.3,0.8-0.5,1.7-0.6,2.5c-0.9,4.6-1.4,9.2-1.3,13.9c-0.2,39.2-0.9,78.4-3.1,117.6c-0.1,1.6,0.3,2,1.8,1.6
c4.3-0.9,8.5-1.7,12.8-2.4c1.6-0.3,2.1-1,2.2-2.7c1.1-25.3,1.9-50.6,2-75.9c0-0.7,0.1-1.4,0.2-2.6c0.5,1.2,0.8,2.4,0.7,3.7
c2.5,21.1,4.8,42.3,6.7,63.4c0.1,2.7,0.6,5.4,1.3,7.9c0.5,1.6,1.1,3.4,3.2,3.7c2.3,0.3,3.7-1.1,4.8-2.9c1.6-2.9,2.6-6.1,3-9.4
c2.2-14.3,3.6-28.7,5.2-43.1c0.8-7.1,1.5-14.3,2.2-21.4c0.5,2.9,0.7,5.9,0.8,8.9c0.7,19.8,1.3,39.7,1,59.5c0,1.9,0.7,1.9,2.1,1.3
c4.2-1.5,8.5-3.1,12.8-4.4c1.7-0.5,2.3-1.3,2.3-3.1c-0.1-24.6-1-49.2-2.8-73.7c-0.5-7-0.7-14.1-2.1-21c-1.2-6.1-3.1-11.9-8.5-15.7
c-6.1-4.2-12.7-5.1-14.1,5.8s-1.9,22.1-2.9,33.1C346.8,96.9,346.3,102.4,345.8,107.9z M244.9,111.3c0.2,17.1,1.8,34,6.8,50.5
c2.4,7.9,5.2,15.6,10.7,22c6.5,7.5,14.9,7.9,22.3,1.3c4.3-3.9,7.2-8.8,9.7-13.9c6.9-14.4,10.2-29.6,11.6-45.4
c2-21.8,0.1-43.1-6.9-63.9c-3.1-9.2-7-17.9-14-25c-7.2-7.3-15.4-7.1-22.2,0.5c-5.7,6.4-8.8,14.2-11.1,22.3
C246.7,76.5,245,93.8,244.9,111.3L244.9,111.3z M170.5,57.6H170c0-5.8-0.1-11.7,0-17.5c0-1.8-0.6-2.2-2.2-1.8
c-1.8,0.4-3.6,0.7-5.4,0.9c-7.5,0.8-12.9,4.8-16.9,10.9c-3.8,6.1-6.8,12.7-8.8,19.6c-7,23.2-8,47.8-3,71.5
c2.1,10,5.1,19.7,10.3,28.6c3.2,5.5,7.4,9.8,13.6,11.8c3.2,1,6.5,1.2,9.8,1.8c2,0.4,2.4-0.1,2.4-2c0.1-10.3,0.2-20.6,0.4-30.8
c0.1-5.3,0.1-5.3-5.2-5.6c-4.2-0.2-7.7-1.7-10-5.4c-1.7-3-2.9-6.3-3.5-9.7c-0.4-1.9,0.3-2.3,2.1-2.2c4.9,0.3,9.8,0.3,14.7,0.5
c1.7,0.1,2.1-0.4,2.1-2.1c-0.1-10-0.1-19.9,0-29.9c0-2-0.6-2.4-2.4-2.2c-5,0.3-9.9,0.5-14.9,0.7c-1.2,0.1-1.7-0.1-1.5-1.5
c1.3-8.3,4.8-16.4,16.8-16.3c1.8,0,2-0.8,2-2.3C170.4,69,170.5,63.3,170.5,57.6L170.5,57.6z M239.5,55.9h-0.6c0-6.9,0-13.8,0-20.6
c0-1.5-0.4-2.2-2-2.1c-2.3,0.1-4.6,0.1-6.9,0.1c-4.5-0.1-8.8,1.9-11.7,5.4c-2.3,2.6-4.2,5.5-5.6,8.7c-5.9,12.9-8.8,26.5-10.2,40.5
c-2.1,20.4-1.6,40.7,2.6,60.9c2,9.7,4.7,19.2,9.5,27.9c4.1,7.4,9.8,12.1,18.9,11.3c1-0.1,2.1-0.1,3.1,0c1.8,0.2,2.3-0.5,2.3-2.2
c0.1-12.7,0.4-25.3,0.6-38c0.1-3.7,0.6-3.4-3.3-3.2c-5.6,0.4-8.9-2.2-11.1-7c-0.4-0.8-0.7-1.6-1-2.4c-4-10.4-4.2-21.2-3.3-32
c0.4-6.1,1.8-12.1,4.2-17.7c2.1-4.9,5.7-7.7,11.2-7.3c0.5,0,1,0,1.4,0c1.6,0.2,2-0.4,2-2C239.4,69.5,239.5,62.7,239.5,55.9
L239.5,55.9z M385.3,124.1c0.2,12.1,0,24.2-0.6,36.3c-0.1,1.8,0.2,2.3,2,1.4c3.2-1.7,6.6-3,10.1-4.1c5.1-1.3,6.4-4.2,6.5-9.3
c0.5-16,0.6-32,0.3-47.9c-0.1-1.5,0.1-3,0.6-4.4c1-2.5,2.8-3.1,5.1-1.5s3.4,5,2.7,8.1c-0.5,2.1-1.6,3.5-3.9,3.4
c-1.3,0-1.6,0.4-1.6,1.6c0.1,6.7,0.1,13.3,0,19.9c0,1.4,0.5,1.5,1.7,1.4c13.3-1.6,24-16.3,21.1-29.4c-2.2-10.2-8.6-17.8-15.9-24.7
c-3-3-6.5-5.3-10.4-6.9c-6-2.3-10.9-0.6-14,5c-2.8,5-3.7,10.6-3.7,16.2C385.2,100.8,385.3,112.5,385.3,124.1L385.3,124.1z
M88.5,74.9L88.5,74.9c-0.1-3.9-0.1-7.9-0.1-11.9c0-1-0.1-1.8-1.4-1.2c-4.4,2-9,3.5-13.1,6.1c-7.2,4.5-12.3,11-16.6,18.2
c-8.5,14.1-11.7,28.6-4.3,44.4c6.9,14.8,17,25.9,33,30.8c1.8,0.6,2.4,0.7,2.4-1.6c-0.1-6.1,0-12.2,0-18.3c0-5.9,0-5.9-5.9-6.9
c-6.1-1.1-10.6-4.3-12.6-10.4c-0.5-1.4-0.4-2,1.4-1.8c5.1,0.5,10.2,0.8,15.3,1.3c1.4,0.1,1.8-0.1,1.8-1.6c-0.1-6.7-0.1-13.4,0-20.2
c0-1.4-0.2-1.9-1.8-1.7c-5.1,0.7-10.2,1.1-15.3,1.8c-1.8,0.3-1.8-0.4-1.4-1.8c1-2.9,2.8-5.4,5.1-7.3c3.1-2.4,6.8-3.9,10.7-4.2
c2-0.3,3-1,2.8-3.3C88.3,82,88.5,78.4,88.5,74.9z M94,99.1h0.2c0,10.8-0.1,21.7,0,32.5c0,8.1,0.7,16.1,3.7,23.8
c3.3,8.4,8.3,14.8,17.8,16.6c3.2,0.7,6.3,1.6,9.3,2.6c1.8,0.6,2.2,0.1,2.2-1.6c0-10.7,0.1-21.3,0.2-32c0-1.1-0.2-1.7-1.5-1.8
c-2.2-0.2-4.4-0.5-6.6-0.8c-3.8-0.4-5.9-2.4-6.3-6.2c-0.3-2.4-0.4-4.9-0.4-7.3c-0.1-23.6-0.3-47.3-0.4-70.9c0-1.8-0.4-2.2-2.1-1.5
c-4.7,1.8-9.4,3.4-14.1,5c-1.7,0.5-2.1,1.3-2.1,3C94,73.3,94,86.2,94,99.1z M191.8,111.8L191.8,111.8c0.1-5.3,0-10.6,0.1-15.9
c0-1.5-0.3-2.2-1.9-2.1c-2.9,0.1-5.8,0.1-8.8,0c-1.4,0-1.8,0.4-1.8,1.8c0,10.5,0,21-0.1,31.5c0,1.2,0.4,1.6,1.6,1.7
c3,0.2,6,0.5,9,0.9c1.5,0.2,1.9-0.3,1.9-1.8C191.8,122.5,191.8,117.1,191.8,111.8L191.8,111.8z"/>
<path class="st2" d="M345.8,107.9c0.5-5.5,1-10.9,1.5-16.4c1-11,1.4-22.1,2.9-33.1s8.1-10.1,14.1-5.8c5.4,3.7,7.2,9.6,8.5,15.7
c1.4,6.9,1.6,14,2.1,21c1.8,24.5,2.7,49.1,2.8,73.7c0,1.8-0.6,2.6-2.3,3.1c-4.3,1.4-8.5,2.9-12.8,4.4c-1.4,0.5-2.1,0.6-2.1-1.3
c0.3-19.9-0.3-39.7-1-59.5c-0.1-3-0.4-6-0.8-8.9c-0.7,7.1-1.4,14.3-2.2,21.4c-1.6,14.4-3.1,28.8-5.2,43.1c-0.4,3.3-1.4,6.5-3,9.4
c-1.1,1.8-2.5,3.2-4.8,2.9c-2.1-0.3-2.7-2-3.2-3.7c-0.8-2.6-1.2-5.2-1.3-7.9c-1.9-21.2-4.2-42.3-6.7-63.4c0.1-1.3-0.2-2.5-0.7-3.7
c-0.1,1.1-0.2,1.8-0.2,2.6c0,25.3-0.9,50.6-2,75.9c-0.1,1.7-0.6,2.4-2.2,2.7c-4.3,0.7-8.5,1.6-12.8,2.4c-1.5,0.3-1.9-0.1-1.8-1.6
c2.2-39.2,2.8-78.4,3.1-117.6c-0.1-4.7,0.4-9.3,1.3-13.9c0.2-0.9,0.4-1.7,0.6-2.5c2.2-6.5,7.6-8.2,13.2-4.2c3.4,2.4,5,6.1,6.1,9.9
c2.6,9.2,3.5,18.8,4.8,28.3c1.2,8.8,2.3,17.7,3.4,26.6C345.2,107.4,345.1,107.7,345.8,107.9z"/>
<path class="st2" d="M244.9,111.3c0.1-17.5,1.8-34.8,6.7-51.6c2.4-8.1,5.4-15.9,11.1-22.3c6.8-7.6,15-7.8,22.2-0.5
c7,7,11,15.8,14.1,25c7,20.8,8.9,42.1,6.9,63.9c-1.4,15.8-4.7,31.1-11.6,45.4c-2.5,5.1-5.4,10-9.7,13.9c-7.3,6.7-15.8,6.3-22.3-1.3
c-5.5-6.4-8.3-14.1-10.7-22C246.7,145.4,245.1,128.4,244.9,111.3z M287.7,110.8c0-8.1-0.8-16.1-3.9-23.7c-1.1-2.9-2.4-5.7-5-7.6
c-2.1-1.9-5.3-1.7-7.2,0.4c0,0,0,0,0,0c-1.8,1.8-3.1,4-3.9,6.4c-5.2,15.6-5.2,31.3-0.5,47c0.8,2.9,2.2,5.6,4.2,7.9
c2.6,2.7,5.6,2.8,8.3,0.1c2-2.1,3.4-4.6,4.3-7.3C286.6,126.5,287.9,118.7,287.7,110.8z"/>
<path class="st2" d="M170.5,57.6c0,5.7,0,11.4,0,17.1c0,1.5-0.2,2.3-2,2.3c-11.9-0.1-15.5,8-16.8,16.3c-0.2,1.4,0.3,1.6,1.5,1.5
c5-0.3,9.9-0.4,14.9-0.7c1.8-0.1,2.5,0.2,2.4,2.2c-0.1,10-0.1,19.9,0,29.9c0,1.7-0.4,2.2-2.1,2.1c-4.9-0.3-9.8-0.3-14.7-0.5
c-1.8-0.1-2.4,0.3-2.1,2.2c0.6,3.4,1.8,6.7,3.5,9.7c2.3,3.7,5.7,5.2,10,5.4c5.3,0.2,5.3,0.3,5.2,5.6c-0.1,10.3-0.3,20.6-0.4,30.8
c0,1.9-0.4,2.4-2.4,2c-3.3-0.6-6.6-0.8-9.8-1.8c-6.2-1.9-10.4-6.3-13.6-11.8c-5.2-8.9-8.3-18.6-10.3-28.6c-5-23.7-4-48.3,3-71.5
c2-6.9,4.9-13.5,8.8-19.6c4-6.1,9.3-10.2,16.9-10.9c1.8-0.2,3.6-0.5,5.4-0.9c1.6-0.3,2.3,0,2.2,1.8c-0.1,5.8,0,11.7,0,17.5
L170.5,57.6z"/>
<path class="st2" d="M239.5,55.9c0,6.8-0.1,13.6,0,20.4c0,1.6-0.4,2.2-2,2c-0.5-0.1-1,0-1.4,0c-5.6-0.4-9.1,2.3-11.2,7.3
c-2.4,5.6-3.8,11.6-4.2,17.7c-0.9,10.9-0.6,21.7,3.3,32c0.3,0.8,0.7,1.6,1,2.4c2.1,4.8,5.5,7.5,11.1,7c3.9-0.3,3.3-0.5,3.3,3.2
c-0.2,12.6-0.4,25.3-0.6,38c0,1.8-0.5,2.4-2.3,2.2c-1-0.1-2.1-0.1-3.1,0c-9,0.8-14.7-3.8-18.9-11.3c-4.9-8.8-7.5-18.2-9.5-27.9
c-4.2-20.2-4.6-40.5-2.6-60.9c1.4-14,4.3-27.7,10.2-40.5c1.4-3.2,3.3-6.1,5.6-8.7c2.9-3.5,7.2-5.5,11.7-5.4c2.3,0,4.6,0,6.9-0.1
c1.6-0.1,2,0.5,2,2.1c-0.1,6.9,0,13.8,0,20.6H239.5z"/>
<path class="st2" d="M385.3,124.1c0-11.6-0.1-23.3,0-34.9c0.1-5.6,0.9-11.2,3.7-16.2c3.1-5.6,8.1-7.3,14-5c3.9,1.6,7.4,4,10.4,6.9
c7.3,6.9,13.6,14.6,15.9,24.7c2.9,13.1-7.7,27.8-21.1,29.4c-1.2,0.1-1.7,0-1.7-1.4c0-6.7,0-13.3,0-19.9c0-1.2,0.3-1.7,1.6-1.6
c2.2,0,3.4-1.4,3.9-3.4c0.7-3.1-0.5-6.5-2.7-8.1s-4-1-5.1,1.5c-0.5,1.4-0.7,2.9-0.6,4.4c0.3,16,0.2,32-0.3,47.9
c-0.1,5-1.4,8-6.5,9.3c-3.5,1-6.9,2.4-10.1,4.1c-1.8,0.8-2.1,0.4-2-1.4C385.3,148.3,385.5,136.2,385.3,124.1z"/>
<path class="st2" d="M88.5,74.9c0,3.6-0.2,7.1,0.1,10.7c0.2,2.3-0.8,3-2.8,3.3c-3.9,0.4-7.6,1.8-10.6,4.2c-2.4,1.9-4.1,4.4-5.1,7.3
c-0.5,1.4-0.5,2,1.4,1.8c5.1-0.7,10.2-1.1,15.3-1.8c1.6-0.2,1.8,0.3,1.8,1.7c-0.1,6.7-0.1,13.4,0,20.2c0,1.4-0.4,1.7-1.8,1.6
c-5.1-0.5-10.2-0.8-15.3-1.3c-1.8-0.2-1.8,0.4-1.4,1.8c2,6.2,6.5,9.3,12.6,10.4c5.9,1.1,5.9,1.1,5.9,6.9c0,6.1-0.2,12.2,0,18.3
c0,2.3-0.6,2.1-2.4,1.6c-16-4.9-26.1-16-33-30.8c-7.4-15.7-4.3-30.3,4.3-44.4C61.6,79,66.7,72.5,74,68c4.1-2.6,8.7-4.1,13.1-6.1
c1.3-0.6,1.4,0.1,1.4,1.2C88.5,67.1,88.5,71,88.5,74.9L88.5,74.9z"/>
<path class="st2" d="M94,99.1c0-12.9,0-25.8,0-38.7c0-1.7,0.4-2.5,2.1-3c4.7-1.5,9.4-3.2,14.1-5c1.7-0.7,2.1-0.3,2.1,1.5
c0.1,23.6,0.2,47.3,0.4,70.9c0,2.4,0.1,4.9,0.4,7.3c0.5,3.8,2.6,5.8,6.3,6.2c2.2,0.2,4.4,0.6,6.6,0.8c1.3,0.1,1.5,0.7,1.5,1.8
c-0.1,10.7-0.2,21.3-0.2,32c0,1.7-0.4,2.2-2.2,1.6c-3.1-1.1-6.2-2-9.3-2.6c-9.5-1.8-14.6-8.2-17.8-16.6c-3-7.6-3.6-15.7-3.7-23.8
c-0.1-10.8,0-21.7,0-32.5L94,99.1z"/>
<path class="st2" d="M191.8,111.8c0,5.4-0.1,10.7,0,16.1c0,1.5-0.4,2-1.9,1.8c-3-0.4-6-0.7-9-0.9c-1.2-0.1-1.6-0.5-1.6-1.7
c0.1-10.5,0.1-21,0.1-31.5c0-1.3,0.4-1.8,1.8-1.8c2.9,0.1,5.9,0.1,8.8,0c1.7-0.1,1.9,0.6,1.9,2.1
C191.7,101.2,191.8,106.5,191.8,111.8L191.8,111.8z"/>
<path class="st1" d="M287.7,110.8c0.2,7.9-1.1,15.8-3.7,23.2c-0.9,2.7-2.3,5.2-4.3,7.3c-2.7,2.7-5.7,2.6-8.3-0.1
c-2-2.3-3.4-5-4.2-7.9c-4.7-15.7-4.7-31.4,0.5-47c0.8-2.4,2.1-4.6,3.9-6.4c1.9-2.1,5.1-2.3,7.2-0.4c0,0,0,0,0,0
c2.6,1.9,3.8,4.8,5,7.6C286.9,94.7,287.8,102.7,287.7,110.8z"/>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24" style="-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); transform: rotate(360deg);"><path fill="none" d="M16.585 19.999l2.006-2.005l-2.586-2.586l-1.293 1.293a.991.991 0 0 1-.912.271c-.115-.024-2.842-.611-4.502-2.271s-2.247-4.387-2.271-4.502a.999.999 0 0 1 .271-.912l1.293-1.293l-2.586-2.586L4 7.413c.02 1.223.346 5.508 3.712 8.874c3.355 3.356 7.625 3.691 8.873 3.712z"/><path d="M16.566 21.999h.028c.528 0 1.027-.208 1.405-.586l2.712-2.712a.999.999 0 0 0 0-1.414l-4-4a.999.999 0 0 0-1.414 0l-1.594 1.594c-.739-.22-2.118-.72-2.992-1.594s-1.374-2.253-1.594-2.992l1.594-1.594a.999.999 0 0 0 0-1.414l-4-4a1.03 1.03 0 0 0-1.414 0L2.586 5.999c-.38.38-.594.902-.586 1.435c.023 1.424.4 6.37 4.298 10.268s8.844 4.274 10.268 4.297zM6.005 5.408l2.586 2.586l-1.293 1.293a.996.996 0 0 0-.271.912c.024.115.611 2.842 2.271 4.502s4.387 2.247 4.502 2.271a.994.994 0 0 0 .912-.271l1.293-1.293l2.586 2.586l-2.006 2.005c-1.248-.021-5.518-.356-8.873-3.712C4.346 12.921 4.02 8.636 4 7.413l2.005-2.005zm13.994 5.591h2c0-5.13-3.873-8.999-9.01-8.999v2c4.062 0 7.01 2.943 7.01 6.999z" fill="#f6db00"/><path d="M12.999 8c2.103 0 3 .897 3 3h2c0-3.225-1.775-5-5-5v2z" fill="#f6db00"/><rect x="0" y="0" width="24" height="24" fill="rgba(0, 0, 0, 0)" /></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB