-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcold.html
3442 lines (2850 loc) · 297 KB
/
cold.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>The Automatic Meal Planner
- Eat This Much</title>
<meta name="description"
content="Eat This Much automatically creates custom meal plans for your diet goals.
Perfect for weight loss, bodybuilding, Vegan, Paleo, Atkins and more!">
<link rel="canonical" href="https://www.eatthismuch.com"/>
<meta property="og:url" content="https://www.eatthismuch.com">
<meta name="author" content="Eat This Much, Inc.">
<meta name="apple-itunes-app" content="app-id=981637806"/>
<meta name="google-play-app" content="app-id=com.eatthismuch">
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="facebook-domain-verification" content="90c0tp8wt2dibwilp2yh04zjhngako"/>
<!-- handle the og:url in the canonical url block -->
<meta property="og:image" content="https://www.eatthismuch.com/static_files/images/peach_etm_logo.png">
<meta property="og:title" content="Eat This Much, your personal diet assistant">
<meta property="og:type" content="website">
<meta property="og:description"
content="Eat This Much automatically creates custom meal plans for your diet goals.
Perfect for weight loss, bodybuilding, Vegan, Paleo, Atkins and more!">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="512">
<meta property="og:image:height" content="512">
<meta property="fb:app_id" content="337307303021297"/>
<meta property="fb:admins" content="1229220616"/>
<meta property="og:site_name" content="Eat This Much"/>
<!-- Different favicon sizes -->
<link rel="apple-touch-icon" sizes="180x180" href="/static_files/favicon/apple-touch-icon.png?v=sPxWbBeAde">
<link rel="icon" type="image/png" sizes="32x32" href="/static_files/favicon/favicon-32x32.png?v=sPxWbBeAde">
<link rel="icon" type="image/png" sizes="16x16" href="/static_files/favicon/favicon-16x16.png?v=sPxWbBeAde">
<link rel="manifest" href="/static_files/favicon/manifest.json?v=sPxWbBeAde">
<link rel="mask-icon" href="/static_files/favicon/safari-pinned-tab.svg?v=sPxWbBeAde" color="#5bbad5">
<link rel="shortcut icon" href="/static_files/favicon/favicon.ico?v=sPxWbBeAde">
<meta name="theme-color" content="#ffffff">
<meta name="application-name" content="Eat This Much"/>
<!-- pinterest domain verification -->
<meta name="p:domain_verify" content="ca15cc90f354c4445150f482f8103178"/>
<meta name="google-site-verification" content="kaTtdAl05EWDWpgZN2h-DOWC7gR2ynmIhjbuLFc1V44"/>
<link href="/static_files/css_libs1.0.2618.css" rel="stylesheet" type="text/css">
<script>
var css_loaded = true;
// Necessary for tracking events in google tag manager
var dataLayer = [];
</script>
<!-- Google Tag Manager -->
<script>(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
'gtm.start':
new Date().getTime(), event: 'gtm.js'
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-MBH9BBG');</script>
<!-- End Google Tag Manager -->
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<link href="/static_files/etm1.0.2618.css" rel="stylesheet">
<!--[if IE]>
<link href="/static_files/css/iestyle.css" rel="stylesheet" type="text/css">
<![endif]-->
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-MBH9BBG"
height="0" width="0" style="display:none;visibility:hidden"></iframe>
</noscript>
<!-- End Google Tag Manager (noscript) -->
<script>
var loaded_body = true;
var ie9 = 0;
var ie8 = 0;
</script>
<!-- HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/es5-shim/2.3.0/es5-shim.min.js"></script>
<![endif]-->
<!-- include the SVG icons -->
<svg version="1.1" style="display:none;" xmlns="http://www.w3.org/2000/svg">
<symbol id="icon-refresh" width="24" height="19" viewBox="0 0 24 19">
<g stroke="#000" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
<path d="M.9268 8.1992l2.787 4.15 3.205-3.838M23.5 12.5l-2.786-4.15-3.206 3.838"/>
<path d="M20.6768 8.3867c.834 4.408-2.273 8.729-6.509 9.729-2.954.699-5.916-.239-7.931-2.224M3.7187 12.3252c-1.313-4.883 1.97-9.675 6.538-10.753 3.156-.747 6.316.372 8.324 2.641"/>
</g>
</symbol>
<symbol id="icon-three-dot" width="20" height="20" viewBox="0 0 20 20">
<g transform="translate(1 1)" fill="none" fill-rule="evenodd">
<circle class="s0" cx="9" cy="9" r="9"/>
<circle class="f0" cx="9" cy="9" r="1"/>
<circle class="f0" cx="13" cy="9" r="1"/>
<circle class="f0" cx="5" cy="9" r="1"/>
</g>
</symbol>
<symbol id="icon-shuffle" width="24" height="18" viewBox="0 0 24 18">
<g stroke="#000" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
<path d="M10.5 7.001S9 3.501 6 3.501H.5M23.5 3.501H18c-5 0-7 11-12 11H.5M13 11.501s2 3 5 3h5.5"/>
<path d="M21.5.501l2 3-2 3M21.5 11.501l2 3-2 3"/>
</g>
</symbol>
<symbol id="icon-refresh-white" width="24" height="19" viewBox="0 0 24 19">
<g stroke="#FFFFFF" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
<path d="M.9268 8.1992l2.787 4.15 3.205-3.838M23.5 12.5l-2.786-4.15-3.206 3.838"/>
<path d="M20.6768 8.3867c.834 4.408-2.273 8.729-6.509 9.729-2.954.699-5.916-.239-7.931-2.224M3.7187 12.3252c-1.313-4.883 1.97-9.675 6.538-10.753 3.156-.747 6.316.372 8.324 2.641"/>
</g>
</symbol>
<symbol id="icon-refresh-orange" width="24" height="19" viewBox="0 0 24 19">
<g stroke="#F0754F" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
<path d="M.9268 8.1992l2.787 4.15 3.205-3.838M23.5 12.5l-2.786-4.15-3.206 3.838"/>
<path d="M20.6768 8.3867c.834 4.408-2.273 8.729-6.509 9.729-2.954.699-5.916-.239-7.931-2.224M3.7187 12.3252c-1.313-4.883 1.97-9.675 6.538-10.753 3.156-.747 6.316.372 8.324 2.641"/>
</g>
</symbol>
<symbol id="icon-refresh3-white" viewBox="0 0 32 32" style="fill:#FFFFFF;">
<path transform="rotate(45 16,16)"
d="M16 4c-5.113 0-9.383 3.16-11.125 7.625l1.844.75C8.175 8.64 11.71 6 16 6c3.242 0 6.133 1.59 7.938 4H20v2h7V5h-2v3.094C22.81 5.582 19.57 4 16 4zm9.28 15.625C23.825 23.36 20.29 26 16 26c-3.277 0-6.156-1.613-7.97-4H12v-2H5v7h2v-3.094C9.188 26.386 12.395 28 16 28c5.113 0 9.383-3.16 11.125-7.625z"/>
</symbol>
<symbol id="icon-refresh3-orange" viewBox="0 0 32 32" style="fill:#F0754F;">
<path transform="rotate(45 16,16)"
d="M16 4c-5.113 0-9.383 3.16-11.125 7.625l1.844.75C8.175 8.64 11.71 6 16 6c3.242 0 6.133 1.59 7.938 4H20v2h7V5h-2v3.094C22.81 5.582 19.57 4 16 4zm9.28 15.625C23.825 23.36 20.29 26 16 26c-3.277 0-6.156-1.613-7.97-4H12v-2H5v7h2v-3.094C9.188 26.386 12.395 28 16 28c5.113 0 9.383-3.16 11.125-7.625z"/>
</symbol>
<symbol id="icon-big-loading-spinner" width="100" height="100" viewBox="0 0 100 100"
preserveAspectRatio="xMidYMid">
<circle cx="50" cy="50" fill="none" stroke-linecap="round" r="40" stroke-width="4" stroke="#F0754F"
stroke-dasharray="62.83185307179586 62.83185307179586" transform="rotate(102 50 50)">
<animateTransform attributeName="transform" type="rotate" calcMode="linear" values="0 50 50;360 50 50"
keyTimes="0;1" dur="1s" begin="0s" repeatCount="indefinite"/>
</circle>
<circle cx="50" cy="50" fill="none" stroke-linecap="round" r="35" stroke-width="4"
stroke="rgba(13.725490196078438%,30.38228969006962%,99.21568627450982%,0.801)"
stroke-dasharray="54.97787143782138 54.97787143782138" stroke-dashoffset="54.97787144"
transform="rotate(-102 50 50)">
<animateTransform attributeName="transform" type="rotate" calcMode="linear" values="0 50 50;-360 50 50"
keyTimes="0;1" dur="1s" begin="0s" repeatCount="indefinite"/>
</circle>
</symbol>
<symbol id="icon-thumbs-up-black" viewBox="0 0 50 50">
<g id="surface1">
<path style=" " d="M 24 4 C 22.824219 4 21.691406 4.726563 20.9375 5.90625 C 20.910156 5.945313 20.867188 5.960938 20.84375 6 L 9.6875 21.3125 C 8.570313 22.878906 8 24.699219 8 26.59375 L 8 36 C 8 40.945313 12.054688 45 17 45 L 36 45 C 37.515625 45 38.769531 44.386719 39.625 43.5625 C 40.480469 42.738281 41 41.722656 41 40.6875 C 41 39.832031 40.800781 39.128906 40.59375 38.59375 C 41.566406 38.070313 43 37.078125 43 34.8125 C 43 33.386719 42.308594 32.453125 41.625 31.84375 C 42.308594 31.171875 43 30.183594 43 28.6875 C 43 26.445313 41.578125 25.527344 40.75 25.09375 C 40.835938 24.578125 41 23.820313 41 22.90625 C 41 20.949219 39.152344 19.109375 36.4375 19.09375 C 36.429688 19.09375 36.414063 19.09375 36.40625 19.09375 C 33.300781 19.003906 25.800781 19 23.9375 19 C 24.269531 18.253906 24.511719 17.734375 25.125 16.34375 C 26.058594 14.226563 27.039063 12.007813 27.34375 11.15625 C 27.34375 11.152344 27.34375 11.128906 27.34375 11.125 C 27.613281 10.410156 28 9.703125 28 8.59375 C 28 7.050781 27.398438 5.847656 26.59375 5.09375 C 25.789063 4.339844 24.851563 4 24 4 Z M 24 6 C 24.246094 6 24.796875 6.167969 25.21875 6.5625 C 25.640625 6.957031 26 7.539063 26 8.59375 C 26 9.273438 25.796875 9.558594 25.46875 10.4375 C 25.46875 10.449219 25.46875 10.457031 25.46875 10.46875 C 25.269531 11.027344 24.25 13.410156 23.3125 15.53125 C 22.375 17.652344 21.5 19.59375 21.5 19.59375 C 21.363281 19.902344 21.390625 20.257813 21.574219 20.542969 C 21.757813 20.824219 22.070313 20.996094 22.40625 21 C 22.40625 21 33.035156 20.996094 36.375 21.09375 C 36.386719 21.09375 36.394531 21.09375 36.40625 21.09375 C 38.269531 21.09375 39 22.273438 39 22.90625 C 39 23.707031 38.71875 25.4375 38.71875 25.4375 C 38.644531 25.914063 38.921875 26.371094 39.375 26.53125 C 39.375 26.53125 41 27.054688 41 28.6875 C 41 30.152344 39.53125 31.03125 39.53125 31.03125 C 39.1875 31.214844 38.980469 31.578125 39 31.96875 C 39.019531 32.355469 39.261719 32.699219 39.625 32.84375 C 39.625 32.84375 41 33.347656 41 34.8125 C 41 36.460938 38.9375 37.25 38.9375 37.25 C 38.640625 37.355469 38.410156 37.597656 38.320313 37.898438 C 38.226563 38.199219 38.28125 38.527344 38.46875 38.78125 C 38.46875 38.78125 39 39.5 39 40.6875 C 39 40.953125 38.769531 41.625 38.25 42.125 C 37.730469 42.625 36.984375 43 36 43 L 17 43 C 13.144531 43 10 39.855469 10 36 L 10 26.59375 C 10 25.097656 10.441406 23.730469 11.3125 22.5 C 11.316406 22.492188 11.308594 22.476563 11.3125 22.46875 L 22.5 7.09375 C 22.523438 7.0625 22.542969 7.03125 22.5625 7 C 23.011719 6.253906 23.617188 6 24 6 Z "/>
</g>
</symbol>
<symbol id="icon-thumbs-up-green" viewBox="0 0 50 50">
<g id="surface1" fill="#27ae60">
<path style=" " d="M 36 45 L 17 45 C 12.039063 45 8 40.964844 8 36 L 8 26.601563 C 8 24.660156 8.566406 22.886719 9.6875 21.320313 L 20.890625 5.910156 C 21.589844 4.742188 22.769531 4 24 4 C 25.660156 4 28 5.425781 28 8.601563 C 28 9.507813 27.753906 10.117188 27.511719 10.707031 C 27.453125 10.847656 27.394531 10.992188 27.335938 11.148438 C 26.960938 12.199219 24.980469 16.675781 23.941406 19 C 27.019531 19.003906 33.839844 19.023438 36.429688 19.101563 C 39.28125 19.101563 41 21.03125 41 22.898438 C 41 23.539063 40.894531 24.414063 40.804688 25.03125 C 41.683594 25.554688 43 26.679688 43 28.699219 C 43 30.105469 42.324219 31.144531 41.675781 31.824219 C 42.335938 32.433594 43 33.390625 43 34.800781 C 43 36.808594 41.617188 38.023438 40.628906 38.640625 C 40.824219 39.164063 41 39.867188 41 40.699219 C 41 42.496094 39.097656 45 36 45 Z " fill="#27ae60"/>
</g>
</symbol>
<symbol id="icon-thumbs-down-black" viewBox="0 0 50 50">
<g id="surface1">
<path style=" " d="M 17 5 C 12.054688 5 8 9.054688 8 14 L 8 23.40625 C 8 25.300781 8.570313 27.121094 9.6875 28.6875 L 20.84375 44 C 20.867188 44.039063 20.910156 44.054688 20.9375 44.09375 C 21.691406 45.273438 22.824219 46 24 46 C 24.851563 46 25.789063 45.660156 26.59375 44.90625 C 27.398438 44.152344 28 42.949219 28 41.40625 C 28 40.285156 27.609375 39.667969 27.34375 38.875 C 27.042969 38.03125 26.0625 35.785156 25.125 33.65625 C 24.511719 32.265625 24.269531 31.746094 23.9375 31 C 25.800781 31 33.300781 30.996094 36.40625 30.90625 C 36.417969 30.90625 36.425781 30.90625 36.4375 30.90625 C 39.152344 30.890625 41 29.050781 41 27.09375 C 41 26.179688 40.835938 25.421875 40.75 24.90625 C 41.578125 24.472656 43 23.554688 43 21.3125 C 43 19.816406 42.308594 18.828125 41.625 18.15625 C 42.308594 17.546875 43 16.613281 43 15.1875 C 43 12.921875 41.566406 11.929688 40.59375 11.40625 C 40.800781 10.871094 41 10.167969 41 9.3125 C 41 8.277344 40.480469 7.261719 39.625 6.4375 C 38.769531 5.613281 37.515625 5 36 5 Z M 17 7 L 36 7 C 36.984375 7 37.730469 7.375 38.25 7.875 C 38.769531 8.375 39 9.046875 39 9.3125 C 39 10.5 38.46875 11.21875 38.46875 11.21875 C 38.28125 11.472656 38.226563 11.800781 38.320313 12.101563 C 38.410156 12.402344 38.640625 12.644531 38.9375 12.75 C 38.9375 12.75 41 13.539063 41 15.1875 C 41 16.652344 39.625 17.15625 39.625 17.15625 C 39.261719 17.300781 39.019531 17.644531 39 18.03125 C 38.980469 18.421875 39.1875 18.785156 39.53125 18.96875 C 39.53125 18.96875 41 19.847656 41 21.3125 C 41 22.945313 39.375 23.46875 39.375 23.46875 C 38.921875 23.628906 38.644531 24.085938 38.71875 24.5625 C 38.71875 24.5625 39 26.292969 39 27.09375 C 39 27.726563 38.269531 28.90625 36.40625 28.90625 C 36.394531 28.90625 36.386719 28.90625 36.375 28.90625 C 33.035156 29.003906 22.40625 29 22.40625 29 C 22.070313 29.003906 21.757813 29.175781 21.574219 29.457031 C 21.390625 29.742188 21.363281 30.097656 21.5 30.40625 C 21.5 30.40625 22.375 32.347656 23.3125 34.46875 C 24.25 36.589844 25.269531 38.972656 25.46875 39.53125 L 25.4375 39.53125 C 25.773438 40.535156 26 40.726563 26 41.40625 C 26 42.460938 25.640625 43.042969 25.21875 43.4375 C 24.796875 43.832031 24.246094 44 24 44 C 23.617188 44 23.011719 43.746094 22.5625 43 C 22.542969 42.96875 22.523438 42.9375 22.5 42.90625 L 11.3125 27.53125 C 11.308594 27.523438 11.316406 27.507813 11.3125 27.5 C 10.441406 26.269531 10 24.902344 10 23.40625 L 10 14 C 10 10.144531 13.144531 7 17 7 Z "/>
</g>
</symbol>
<symbol id="icon-thumbs-down-red" viewBox="0 0 50 50">
<g id="surface1" fill="#e74c3c">
<path style=" " d="M 24 46 C 22.769531 46 21.589844 45.257813 20.84375 44.015625 L 9.691406 28.6875 C 8.566406 27.113281 8 25.339844 8 23.398438 L 8 14 C 8 9.039063 12.039063 5 17 5 L 36 5 C 39.097656 5 41 7.503906 41 9.300781 C 41 10.132813 40.824219 10.835938 40.628906 11.359375 C 41.617188 11.976563 43 13.195313 43 15.199219 C 43 16.609375 42.335938 17.566406 41.675781 18.175781 C 42.324219 18.851563 43 19.894531 43 21.300781 C 43 23.324219 41.683594 24.445313 40.804688 24.96875 C 40.894531 25.585938 41 26.457031 41 27.101563 C 41 28.96875 39.277344 30.902344 36.398438 30.902344 C 33.832031 30.976563 27.015625 30.996094 23.941406 31 C 24.980469 33.324219 26.964844 37.804688 27.34375 38.863281 C 27.429688 39.121094 27.507813 39.320313 27.578125 39.503906 C 27.796875 40.046875 28 40.566406 28 41.398438 C 28 44.574219 25.660156 46 24 46 Z " fill="#e74c3c"/>
</g>
</symbol>
<symbol id="icon-refresh2" width="64" height="64" viewBox="0 0 32 32">
<g stroke="#000" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
<path transform="rotate(45 16,16)"
d="M 16 4 C 10.886719 4 6.617188 7.160156 4.875 11.625 L 6.71875 12.375 C 8.175781 8.640625 11.710938 6 16 6 C 19.242188 6 22.132813 7.589844 23.9375 10 L 20 10 L 20 12 L 27 12 L 27 5 L 25 5 L 25 8.09375 C 22.808594 5.582031 19.570313 4 16 4 Z M 25.28125 19.625 C 23.824219 23.359375 20.289063 26 16 26 C 12.722656 26 9.84375 24.386719 8.03125 22 L 12 22 L 12 20 L 5 20 L 5 27 L 7 27 L 7 23.90625 C 9.1875 26.386719 12.394531 28 16 28 C 21.113281 28 25.382813 24.839844 27.125 20.375 Z "/>
</g>
</symbol>
<symbol id="icon-folder-orange" width="25" height="25" viewBox="0 0 25 25">
<g stroke="#F0754F" fill="none" fill-rule="evenodd" stroke-linejoin="round">
<path stroke-linecap="round" d="M3.5 20.5h20V.5h-20z"/>
<path d="M7 4.5h13M7 6.5h13M7 8.5h13M7 10.5h13M7 12.5h13M7 14.5h13M7 16.5h6"/>
<path stroke-linecap="round" d="M3.5 4.5h-3v19h19v-3"/>
</g>
</symbol>
<symbol id="icon-folder-white" width="25" height="25" viewBox="0 0 25 25">
<g stroke="#FFF" fill="none" fill-rule="evenodd" stroke-linejoin="round">
<path stroke-linecap="round" d="M3.5 20.5h20V.5h-20z"/>
<path d="M7 4.5h13M7 6.5h13M7 8.5h13M7 10.5h13M7 12.5h13M7 14.5h13M7 16.5h6"/>
<path stroke-linecap="round" d="M3.5 4.5h-3v19h19v-3"/>
</g>
</symbol>
<symbol id="icon-fridge" viewBox="0 0 50 50" version="1.1">
<g id="surface1">
<path style=" " d="M 10 0 C 8.355469 0 7 1.355469 7 3 L 7 18.6875 C 6.941406 18.882813 6.941406 19.085938 7 19.28125 L 7 44 C 7 45.644531 8.355469 47 10 47 L 10 48 C 10 49.09375 10.90625 50 12 50 L 15 50 C 16.09375 50 17 49.09375 17 48 L 17 47 L 33 47 L 33 48 C 33 49.09375 33.90625 50 35 50 L 38 50 C 39.09375 50 40 49.09375 40 48 L 40 47 C 41.644531 47 43 45.644531 43 44 L 43 19.1875 C 43.027344 19.054688 43.027344 18.914063 43 18.78125 L 43 3 C 43 1.355469 41.644531 0 40 0 Z M 10 2 L 40 2 C 40.5625 2 41 2.4375 41 3 L 41 18 L 9 18 L 9 3 C 9 2.4375 9.4375 2 10 2 Z M 13.90625 5.96875 C 13.863281 5.976563 13.820313 5.988281 13.78125 6 C 13.316406 6.105469 12.988281 6.523438 13 7 L 13 14 C 12.996094 14.359375 13.183594 14.695313 13.496094 14.878906 C 13.808594 15.058594 14.191406 15.058594 14.503906 14.878906 C 14.816406 14.695313 15.003906 14.359375 15 14 L 15 7 C 15.011719 6.710938 14.894531 6.433594 14.6875 6.238281 C 14.476563 6.039063 14.191406 5.941406 13.90625 5.96875 Z M 9 20 L 41 20 L 41 44 C 41 44.5625 40.5625 45 40 45 L 10 45 C 9.4375 45 9 44.5625 9 44 Z M 13.90625 22.96875 C 13.863281 22.976563 13.820313 22.988281 13.78125 23 C 13.316406 23.105469 12.988281 23.523438 13 24 L 13 31 C 12.996094 31.359375 13.183594 31.695313 13.496094 31.878906 C 13.808594 32.058594 14.191406 32.058594 14.503906 31.878906 C 14.816406 31.695313 15.003906 31.359375 15 31 L 15 24 C 15.011719 23.710938 14.894531 23.433594 14.6875 23.238281 C 14.476563 23.039063 14.191406 22.941406 13.90625 22.96875 Z M 12 47 L 15 47 L 15 48 L 12 48 Z M 35 47 L 38 47 L 38 48 L 35 48 Z "/>
</g>
</symbol>
<symbol id="icon-ingredients" viewBox="0 0 50 50" version="1.1">
<g id="surface1">
<path style=" " d="M 29 0 C 27.90625 0 27 0.90625 27 2 L 27 5 C 27 5.976563 27.722656 6.804688 28.65625 6.96875 C 28.246094 7.632813 27.835938 8.382813 27.4375 9.28125 C 26.609375 11.148438 25.8125 13.429688 25.1875 15.59375 L 23.8125 14.8125 C 23.605469 14.691406 23.363281 14.644531 23.125 14.6875 C 22.933594 14.730469 22.761719 14.828125 22.625 14.96875 L 21.28125 16.25 C 19.492188 14.714844 17.164063 13.78125 14.625 13.78125 C 9.167969 13.78125 4.675781 18.078125 4.40625 24 L 2.84375 24 C 1.285156 24 0 25.285156 0 26.84375 L 0 30.15625 C 0 31.714844 1.285156 33 2.84375 33 L 3 33 L 3 36 C 3 36.21875 3.023438 36.191406 3.03125 36.21875 C 3.039063 36.246094 3.027344 36.261719 3.03125 36.28125 C 3.042969 36.320313 3.050781 36.355469 3.0625 36.40625 C 3.089844 36.503906 3.140625 36.652344 3.1875 36.8125 C 3.28125 37.132813 3.402344 37.566406 3.5625 38.09375 C 3.878906 39.148438 4.328125 40.554688 4.75 41.9375 C 5.597656 44.707031 6.4375 47.4375 6.4375 47.4375 C 6.449219 47.511719 6.472656 47.585938 6.5 47.65625 C 6.769531 48.140625 7.046875 48.632813 7.4375 49.09375 C 7.828125 49.554688 8.457031 50 9.21875 50 L 40.78125 50 C 41.554688 50 42.269531 49.621094 42.6875 49.125 C 43.105469 48.628906 43.308594 48.066406 43.53125 47.53125 C 43.542969 47.5 43.554688 47.46875 43.5625 47.4375 C 43.5625 47.4375 44.402344 44.707031 45.25 41.9375 C 45.671875 40.554688 46.121094 39.148438 46.4375 38.09375 C 46.597656 37.566406 46.71875 37.132813 46.8125 36.8125 C 46.859375 36.652344 46.910156 36.503906 46.9375 36.40625 C 46.949219 36.355469 46.957031 36.320313 46.96875 36.28125 C 46.972656 36.261719 46.960938 36.246094 46.96875 36.21875 C 46.976563 36.191406 47 36.21875 47 36 L 47 33 L 47.15625 33 C 48.714844 33 50 31.714844 50 30.15625 L 50 26.84375 C 50 25.285156 48.714844 24 47.15625 24 L 44 24 L 44 21.8125 C 44 19.558594 42.941406 15.703125 41.65625 12.15625 C 41.015625 10.382813 40.328125 8.703125 39.625 7.4375 C 39.53125 7.269531 39.4375 7.125 39.34375 6.96875 C 40.277344 6.804688 41 5.976563 41 5 L 41 2 C 41 0.90625 40.09375 0 39 0 Z M 29 2 L 39 2 L 39 5 L 29 5 Z M 31.09375 7 L 36.84375 7 C 36.871094 7.015625 36.953125 7.066406 37.0625 7.1875 C 37.28125 7.429688 37.566406 7.882813 37.875 8.4375 C 38.492188 9.546875 39.164063 11.105469 39.78125 12.8125 C 41.015625 16.226563 42 20.269531 42 21.8125 L 42 24 L 40 24 C 39.988281 23.988281 39.980469 23.980469 39.96875 23.96875 L 26.96875 16.625 C 27.582031 14.402344 28.414063 11.984375 29.25 10.09375 C 29.710938 9.050781 30.203125 8.160156 30.59375 7.59375 C 30.789063 7.3125 30.957031 7.121094 31.0625 7.03125 C 31.089844 7.007813 31.082031 7.007813 31.09375 7 Z M 14.625 15.78125 C 16.601563 15.78125 18.398438 16.46875 19.8125 17.625 L 13.0625 24 L 6.40625 24 C 6.660156 19.066406 10.222656 15.78125 14.625 15.78125 Z M 23.4375 16.9375 L 35.9375 24 L 15.96875 24 Z M 2.84375 26 L 47.15625 26 C 47.628906 26 48 26.371094 48 26.84375 L 48 30.15625 C 48 30.628906 47.628906 31 47.15625 31 L 4.0625 31 C 4.042969 31 4.019531 31 4 31 L 2.84375 31 C 2.371094 31 2 30.628906 2 30.15625 L 2 26.84375 C 2 26.371094 2.371094 26 2.84375 26 Z M 5 33 L 12 33 L 12 45 C 12 45.550781 12.449219 46 13 46 L 16 46 C 16.550781 46 17 45.550781 17 45 L 17 33 L 19 33 L 19 45 C 19 45.550781 19.449219 46 20 46 L 23 46 C 23.550781 46 24 45.550781 24 45 L 24 33 L 26 33 L 26 45 C 26 45.550781 26.449219 46 27 46 L 30 46 C 30.550781 46 31 45.550781 31 45 L 31 33 L 33 33 L 33 45 C 33 45.550781 33.449219 46 34 46 L 37 46 C 37.550781 46 38 45.550781 38 45 L 38 33 L 45 33 L 45 35.875 C 44.976563 35.957031 44.953125 36.09375 44.90625 36.25 C 44.816406 36.5625 44.660156 37.003906 44.5 37.53125 C 44.183594 38.582031 43.765625 39.960938 43.34375 41.34375 C 42.511719 44.0625 41.714844 46.691406 41.6875 46.78125 C 41.6875 46.78125 41.65625 46.875 41.65625 46.875 C 41.464844 47.316406 41.285156 47.660156 41.15625 47.8125 C 41.015625 47.980469 41.023438 48 40.78125 48 L 9.21875 48 C 9.144531 48 9.152344 48 8.96875 47.78125 C 8.800781 47.582031 8.558594 47.191406 8.3125 46.75 C 8.277344 46.632813 7.484375 44.050781 6.65625 41.34375 C 6.234375 39.960938 5.816406 38.582031 5.5 37.53125 C 5.339844 37.003906 5.183594 36.5625 5.09375 36.25 C 5.046875 36.09375 5.023438 35.957031 5 35.875 Z M 14 33 L 15 33 L 15 44 L 14 44 Z M 21 33 L 22 33 L 22 44 L 21 44 Z M 28 33 L 29 33 L 29 44 L 28 44 Z M 35 33 L 36 33 L 36 44 L 35 44 Z "/>
</g>
</symbol>
<symbol id="icon-rice-bowl" viewBox="0 0 50 50" version="1.1">
<g id="surface1">
<path style=" " d="M 37.96875 2.28125 C 37.4375 2.375 37.082031 2.789063 36.90625 3.125 L 29.90625 17 C 29.007813 15.796875 27.617188 15 26 15 C 23.972656 15 22.28125 16.253906 21.5 18 C 20.890625 18 20.335938 18.15625 19.78125 18.3125 C 19.054688 17.558594 18.125 17 17 17 C 16.496094 17 16.054688 17.175781 15.625 17.34375 C 15.113281 17.164063 14.582031 17 14 17 C 11.539063 17 9.59375 18.839844 9.1875 21.1875 C 6.839844 21.59375 5 23.539063 5 26 L 3 26 C 2.96875 26 2.9375 26 2.90625 26 C 2.390625 26.046875 1.996094 26.480469 2 27 L 2 30.625 C 2 35.492188 4.667969 39.832031 8.125 42.9375 C 11.582031 46.042969 15.859375 48 19.53125 48 L 30.46875 48 C 34.140625 48 38.417969 46.042969 41.875 42.9375 C 45.332031 39.832031 48 35.492188 48 30.625 L 48 27 C 48 26.449219 47.550781 26 47 26 L 45.84375 26 C 45.542969 25.011719 44.828125 24.214844 43.9375 23.6875 C 43.785156 21.824219 42.367188 20.347656 40.53125 20.09375 C 40.246094 19.421875 39.832031 18.835938 39.3125 18.34375 L 46.1875 8.65625 C 46.535156 8.15625 46.746094 7.261719 45.625 6.46875 C 44.507813 5.675781 43.734375 6.332031 43.40625 6.84375 L 36.9375 17.09375 C 36.632813 17.03125 36.324219 17 36 17 C 34.675781 17 33.542969 17.597656 32.65625 18.4375 C 32.453125 18.359375 32.238281 18.292969 32.03125 18.21875 L 39.84375 4.65625 C 40.144531 4.125 40.28125 3.214844 39.09375 2.53125 C 38.648438 2.273438 38.285156 2.222656 37.96875 2.28125 Z M 26 17 C 27.453125 17 28.652344 18.019531 28.9375 19.375 L 29.15625 20.4375 L 30.1875 20.125 C 30.480469 20.042969 30.742188 20 31 20 C 31.507813 20 31.996094 20.132813 32.4375 20.375 L 33.15625 20.78125 L 33.6875 20.125 C 34.246094 19.4375 35.054688 19 36 19 C 37.410156 19 38.574219 19.949219 38.90625 21.25 L 39.09375 22.0625 L 39.90625 22 C 40.097656 21.992188 40.125 22 40 22 C 41.117188 22 42 22.882813 42 24 C 42 23.90625 41.980469 23.953125 41.96875 24.125 L 41.9375 24.875 L 42.65625 25.125 C 43.109375 25.28125 43.480469 25.601563 43.71875 26 L 27 26 C 27 25.449219 26.550781 25 26 25 C 25.449219 25 25 25.449219 25 26 L 7 26 C 7 24.332031 8.332031 23 10 23 L 11 23 L 11 22 C 11 20.332031 12.332031 19 14 19 C 14.429688 19 14.839844 19.082031 15.21875 19.25 L 15.65625 19.46875 L 16.09375 19.25 C 16.390625 19.097656 16.679688 19 17 19 C 17.710938 19 18.328125 19.351563 18.6875 19.90625 L 19.125 20.59375 L 19.875 20.3125 C 20.382813 20.117188 20.929688 20 21.5 20 C 21.667969 20 21.824219 20.011719 22 20.03125 L 22.875 20.125 L 23.09375 19.28125 C 23.417969 17.972656 24.585938 17 26 17 Z M 15 21 C 14.449219 21 14 21.449219 14 22 C 14 22.550781 14.449219 23 15 23 C 15.550781 23 16 22.550781 16 22 C 16 21.449219 15.550781 21 15 21 Z M 18 23 C 17.449219 23 17 23.449219 17 24 C 17 24.550781 17.449219 25 18 25 C 18.550781 25 19 24.550781 19 24 C 19 23.449219 18.550781 23 18 23 Z M 33 23 C 32.449219 23 32 23.449219 32 24 C 32 24.550781 32.449219 25 33 25 C 33.550781 25 34 24.550781 34 24 C 34 23.449219 33.550781 23 33 23 Z M 4 28 L 46 28 L 46 30.625 C 46 34.757813 43.710938 38.609375 40.5625 41.4375 C 37.414063 44.265625 33.398438 46 30.46875 46 L 19.53125 46 C 16.601563 46 12.585938 44.265625 9.4375 41.4375 C 6.289063 38.609375 4 34.757813 4 30.625 Z "/>
</g>
</symbol>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" style="display:none;">
<defs>
<symbol id="icon-delete" viewBox="0 0 32 32">
<path d="M 7.21875 5.78125 L 5.78125 7.21875 L 14.5625 16 L 5.78125 24.78125 L 7.21875 26.21875 L 16 17.4375 L 24.78125 26.21875 L 26.21875 24.78125 L 17.4375 16 L 26.21875 7.21875 L 24.78125 5.78125 L 16 14.5625 Z "></path>
</symbol>
<symbol id="icon-calendar" viewBox="0 0 50 50">
<path d="M12 0c-1.094 0-2 .906-2 2v2H4c-.523 0-1.055.19-1.43.57C2.19 4.945 2 5.477 2 6v40c0 .523.19 1.055.57 1.434.375.375.907.566 1.43.566h42c.523 0 1.055-.19 1.434-.566.375-.38.566-.91.566-1.434V6c0-.523-.19-1.055-.566-1.43-.38-.38-.91-.57-1.434-.57h-6V2c0-1.094-.906-2-2-2h-2c-1.094 0-2 .906-2 2v2H16V2c0-1.094-.906-2-2-2zm0 2h2v6h-2zm24 0h2v6h-2zM4 6h6v2c0 1.094.906 2 2 2h2c1.094 0 2-.906 2-2V6h18v2c0 1.094.906 2 2 2h2c1.094 0 2-.906 2-2V6h6v7H4zm0 9h42v31H4zm6 4v23h30V19zm2 2h5v5h-5zm7 0h5v5h-5zm7 0h5v5h-5zm7 0h5v5h-5zm-21 7h5v5h-5zm7 0h5v5h-5zm7 0h5v5h-5zm7 0h5v5h-5zm-21 7h5v5h-5zm7 0h5v5h-5zm7 0h5v5h-5zm7 0h5v5h-5z"/>
</symbol>
<symbol id="icon-frying-pan" viewBox="0 0 50 50">
<path d="M15.984 7.984c-.55.012-.992.465-.984 1.016 0 4.777-2.043 6.465-4.14 8.34C8.97 19.027 7 20.945 7 25c-.004.363.184.7.496.88.313.183.695.183 1.008 0 .312-.18.5-.517.496-.88 0-3.477 1.3-4.48 3.19-6.172C14.29 16.958 17 14.398 17 9c.004-.27-.102-.53-.293-.723-.19-.19-.453-.297-.723-.293zM22 12c-.55 0-1 .45-1 1 0 2.922-1.242 4.035-2.684 5.324-1.546 1.387-3.3 2.957-3.3 6.676 0 .55.45 1 1 1s1-.445 1-1c0-2.824 1.222-3.918 2.636-5.188C21.222 18.407 23 16.817 23 13c0-.55-.45-1-1-1zm5 4c-.555 0-1 .45-1 1 0 1.816-.746 2.484-1.69 3.324-1.033.918-2.318 2.063-2.318 4.676 0 .55.45 1 1 1s1-.45 1-1c0-1.72.692-2.332 1.65-3.184C26.69 20.883 28 19.716 28 17c0-.55-.445-1-1-1zm18.844 9.938c-2.32-.028-7.57.34-13.918 3.464l.04-.136c.08-.3.018-.625-.17-.87-.19-.25-.483-.396-.796-.396H2.656c-.312 0-.61.145-.797.395-.188.246-.255.57-.173.87l1.997 7.313C4.394 39.184 6.774 41 9.474 41h14.71c2.546 0 4.79-1.63 5.632-4h1.247c1.76 0 3.515-.61 4.835-1.855 1.098-1.036 3.317-2.454 7.7-2.958 2.507-.29 4.402-2.44 4.402-4.96V27c0-.5-.37-.922-.863-.988 0 0-.46-.063-1.293-.075zm-.86 2.05c.293.012.532.024.715.04-.34 1.11-1.13 2.035-2.33 2.175-4.733.543-7.417 2.145-8.843 3.488-.91.857-2.168 1.31-3.465 1.31h-.66l.817-2.988.23-.117c.007-.004.02-.012.03-.016 6.692-3.65 11.45-3.946 13.504-3.892zM3.96 30h25.73l-.272 1.004c-.004.016-.012.03-.016.047l-1.277 4.684v.008l-.082.31c-.477 1.745-2.05 2.948-3.86 2.948H9.474c-1.81 0-3.383-1.203-3.86-2.95z"/>
</symbol>
<symbol id="icon-mortar-pestle" viewBox="0 0 50 50">
<path d="M 39.625 4 C 37.828125 4.078125 36.074219 5.230469 35.125 7.53125 C 34.09375 10.027344 32.96875 12.273438 31.8125 14.3125 C 29.644531 14.113281 27.367188 14 25 14 C 18.289063 14 12.199219 14.847656 7.71875 16.25 C 5.476563 16.949219 3.636719 17.78125 2.28125 18.78125 C 0.925781 19.78125 0 21.03125 0 22.5 C 0 22.585938 -0.0078125 22.664063 0 22.75 C -0.0117188 22.832031 -0.0117188 22.917969 0 23 C 0 30.046875 2.035156 35.367188 4.1875 39.03125 C 5.261719 40.863281 6.359375 42.296875 7.25 43.3125 C 8.140625 44.328125 8.863281 44.988281 9 45.125 L 9.03125 45.125 C 11.234375 47.328125 16.355469 50 25 50 C 33.671875 50 38.59375 46.816406 40.84375 45.21875 C 41.554688 44.714844 43.796875 42.820313 45.96875 39.15625 C 48.140625 35.492188 50.144531 30.117188 50 22.96875 C 49.996094 22.90625 49.984375 22.84375 49.96875 22.78125 C 49.976563 22.6875 50 22.597656 50 22.5 C 50 21.046875 49.078125 19.804688 47.75 18.8125 C 46.761719 18.070313 45.488281 17.417969 44 16.84375 C 44.570313 16.335938 45.164063 15.835938 45.8125 15.3125 C 47.757813 13.742188 48.3125 11.683594 47.8125 9.9375 C 47.3125 8.191406 46.011719 6.777344 44.59375 5.75 L 44.5625 5.75 C 43.148438 4.726563 41.421875 3.921875 39.625 4 Z M 39.71875 6 C 40.832031 5.949219 42.242188 6.53125 43.40625 7.375 C 44.570313 8.214844 45.5625 9.378906 45.875 10.46875 C 46.1875 11.558594 46.050781 12.546875 44.5625 13.75 C 43.488281 14.617188 42.53125 15.476563 41.65625 16.3125 C 41.652344 16.316406 41.628906 16.308594 41.625 16.3125 C 41.421875 16.410156 41.253906 16.578125 41.15625 16.78125 C 41.152344 16.785156 41.160156 16.808594 41.15625 16.8125 C 41.132813 16.832031 41.113281 16.851563 41.09375 16.875 C 36.203125 21.714844 34.367188 25.839844 33.09375 28.53125 C 30.566406 28.820313 27.851563 29 25 29 C 24.246094 29 23.488281 28.992188 22.75 28.96875 C 25.398438 26.550781 29.324219 22.449219 33 16.25 C 33.007813 16.238281 33.023438 16.230469 33.03125 16.21875 C 33.3125 16.042969 33.488281 15.738281 33.5 15.40625 C 33.5 15.394531 33.5 15.386719 33.5 15.375 C 34.710938 13.253906 35.898438 10.910156 36.96875 8.3125 C 37.703125 6.53125 38.605469 6.050781 39.71875 6 Z M 25 16 C 26.976563 16 28.859375 16.078125 30.6875 16.21875 C 26.523438 22.941406 22.148438 26.914063 19.90625 28.8125 C 15.410156 28.5 11.394531 27.804688 8.3125 26.84375 C 6.210938 26.1875 4.542969 25.417969 3.46875 24.625 C 2.394531 23.832031 2 23.101563 2 22.5 C 2 21.898438 2.394531 21.167969 3.46875 20.375 C 4.542969 19.582031 6.210938 18.8125 8.3125 18.15625 C 12.515625 16.84375 18.457031 16 25 16 Z M 42.375 18.375 C 44.164063 18.988281 45.613281 19.695313 46.5625 20.40625 C 47.613281 21.191406 48 21.902344 48 22.5 C 48 23.101563 47.605469 23.832031 46.53125 24.625 C 45.457031 25.417969 43.789063 26.1875 41.6875 26.84375 C 39.902344 27.402344 37.789063 27.859375 35.46875 28.21875 C 36.703125 25.605469 38.390625 22.316406 42.375 18.375 Z M 47.90625 26.0625 C 47.527344 31.289063 45.941406 35.300781 44.25 38.15625 C 42.242188 41.546875 39.992188 43.375 39.6875 43.59375 C 37.523438 45.128906 33.195313 48 25 48 C 16.773438 48 12.089844 45.371094 10.4375 43.71875 C 10.15625 43.4375 9.574219 42.9375 8.75 42 C 7.925781 41.0625 6.90625 39.734375 5.90625 38.03125 C 4.234375 35.183594 2.671875 31.226563 2.1875 26.125 C 2.222656 26.152344 2.246094 26.191406 2.28125 26.21875 C 3.636719 27.21875 5.476563 28.050781 7.71875 28.75 C 12.199219 30.152344 18.289063 31 25 31 C 31.710938 31 37.800781 30.152344 42.28125 28.75 C 44.523438 28.050781 46.363281 27.21875 47.71875 26.21875 C 47.785156 26.167969 47.839844 26.113281 47.90625 26.0625 Z "></path>
</symbol>
<symbol id="icon-playlist" viewBox="0 0 50 50">
<path d="M5 4c-.55 0-1 .45-1 1v40c0 .55.45 1 1 1h40c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm1 2h38v38H6zm8 5c-1.645 0-3 1.355-3 3s1.355 3 3 3 3-1.355 3-3-1.355-3-3-3zm0 2c.563 0 1 .438 1 1 0 .563-.438 1-1 1-.563 0-1-.438-1-1 0-.563.438-1 1-1zm7 0c-.36-.004-.695.184-.88.496-.18.313-.18.695 0 1.008.185.312.52.5.88.496h17c.36.004.695-.184.88-.496.18-.313.18-.695 0-1.008-.185-.312-.52-.5-.88-.496zm-7 9c-1.645 0-3 1.355-3 3s1.355 3 3 3 3-1.355 3-3-1.355-3-3-3zm0 2c.563 0 1 .438 1 1 0 .563-.438 1-1 1-.563 0-1-.438-1-1 0-.563.438-1 1-1zm7 0c-.36-.004-.695.184-.88.496-.18.313-.18.695 0 1.008.185.312.52.5.88.496h17c.36.004.695-.184.88-.496.18-.313.18-.695 0-1.008-.185-.312-.52-.5-.88-.496zm-7 9c-1.645 0-3 1.355-3 3s1.355 3 3 3 3-1.355 3-3-1.355-3-3-3zm0 2c.563 0 1 .438 1 1 0 .563-.438 1-1 1-.563 0-1-.438-1-1 0-.563.438-1 1-1zm7 0c-.36-.004-.695.184-.88.496-.18.313-.18.695 0 1.008.185.312.52.5.88.496h17c.36.004.695-.184.88-.496.18-.313.18-.695 0-1.008-.185-.312-.52-.5-.88-.496z"/>
</symbol>
<symbol id="icon-refresh3" viewBox="0 0 32 32">
<path transform="rotate(45 16,16)"
d="M16 4c-5.113 0-9.383 3.16-11.125 7.625l1.844.75C8.175 8.64 11.71 6 16 6c3.242 0 6.133 1.59 7.938 4H20v2h7V5h-2v3.094C22.81 5.582 19.57 4 16 4zm9.28 15.625C23.825 23.36 20.29 26 16 26c-3.277 0-6.156-1.613-7.97-4H12v-2H5v7h2v-3.094C9.188 26.386 12.395 28 16 28c5.113 0 9.383-3.16 11.125-7.625z"/>
</symbol>
<symbol id="icon-search-filled" viewBox="0 0 50 50">
<path d="M21 3C11.602 3 4 10.602 4 20s7.602 17 17 17c3.355 0 6.46-.984 9.094-2.656l12.28 12.28 4.25-4.25L34.5 30.282C36.68 27.423 38 23.88 38 20c0-9.398-7.602-17-17-17zm0 4c7.2 0 13 5.8 13 13s-5.8 13-13 13S8 27.2 8 20 13.8 7 21 7z"/>
</symbol>
<symbol id="icon-search" viewBox="0 0 50 50">
<path d="M21 3C11.62 3 4 10.62 4 20c0 9.38 7.62 17 17 17 3.71 0 7.14-1.195 9.938-3.22l13.156 13.126 2.812-2.812-13-13.032C36.46 28.087 38 24.223 38 20c0-9.38-7.62-17-17-17zm0 2c8.297 0 15 6.703 15 15s-6.703 15-15 15S6 28.297 6 20 12.703 5 21 5z"/>
</symbol>
<symbol id="icon-shuffle2" viewBox="0 0 50 50">
<path d="M36.72 5.28l-1.44 1.44L38.563 10h-6c-1.937 0-3.714 1.148-4.53 2.906l-3.72 7.938 1.125 2.375 4.407-9.47c.488-1.055 1.554-1.75 2.718-1.75h6l-3.28 3.28 1.437 1.44 5-5 .686-.72-.687-.72zM8 10v2h6.438c1.17 0 2.226.688 2.718 1.75L28.03 37.094c.822 1.76 2.587 2.906 4.532 2.906h6l-3.28 3.28 1.437 1.44 5-5 .686-.72-.687-.72-5-5-1.44 1.44L38.563 38h-6c-1.17 0-2.226-.688-2.718-1.75L18.97 12.906C18.147 11.146 16.382 10 14.437 10zm13.563 16.78l-4.407 9.47c-.488 1.055-1.554 1.75-2.718 1.75H8v2h6.438c1.937 0 3.714-1.148 4.53-2.906l3.72-7.938z"/>
</symbol>
<symbol id="icon-thumbs-down-2" viewBox="0 0 50 50">
<path d="M17 5c-4.945 0-9 4.055-9 9v9.406c0 1.895.57 3.715 1.688 5.282L20.843 44c.023.04.066.055.093.094C21.692 45.274 22.825 46 24 46c.852 0 1.79-.34 2.594-1.094.804-.754 1.406-1.957 1.406-3.5 0-1.12-.39-1.738-.656-2.53-.3-.845-1.282-3.09-2.22-5.22-.612-1.39-.854-1.91-1.186-2.656 1.863 0 9.363-.004 12.468-.094h.032C39.151 30.89 41 29.05 41 27.094c0-.914-.164-1.672-.25-2.188.828-.433 2.25-1.35 2.25-3.593 0-1.497-.69-2.485-1.375-3.157.684-.61 1.375-1.543 1.375-2.968 0-2.266-1.434-3.258-2.406-3.782.207-.535.406-1.238.406-2.094 0-1.035-.52-2.05-1.375-2.874C38.77 5.612 37.515 5 36 5zm0 2h19c.984 0 1.73.375 2.25.875S39 9.047 39 9.313c0 1.187-.53 1.906-.53 1.906-.19.253-.243.58-.15.882.09.3.32.543.617.648 0 0 2.063.79 2.063 2.438 0 1.464-1.375 1.968-1.375 1.968-.363.145-.605.49-.625.875-.02.392.188.755.53.94 0 0 1.47.878 1.47 2.343 0 1.632-1.625 2.156-1.625 2.156-.453.16-.73.616-.656 1.093 0 0 .28 1.73.28 2.53 0 .634-.73 1.813-2.594 1.813h-.03c-3.34.098-13.97.094-13.97.094-.336.004-.648.176-.832.457-.183.285-.21.64-.074.95 0 0 .875 1.94 1.813 4.062.937 2.12 1.957 4.503 2.156 5.06h-.032c.335 1.005.562 1.197.562 1.876 0 1.055-.36 1.637-.78 2.032-.423.394-.974.562-1.22.562-.383 0-.988-.254-1.438-1-.02-.03-.04-.063-.062-.094L11.312 27.53c-.003-.007.004-.022 0-.03-.87-1.23-1.312-2.598-1.312-4.094V14c0-3.855 3.145-7 7-7z"/>
</symbol>
<symbol id="icon-thumbs-down" viewBox="0 0 32 32">
<path d="M10.156 6c-1.41 0-2.64.996-2.937 2.375l-2.157 10C4.668 20.223 6.112 22 8 22h5.75l-.188.75c-.203.156-.332.223-.624.625-.47.64-.938 1.633-.938 2.97C12 27.77 13.29 29 14.906 29h.406l.313-.28 6.78-6.72H27V6zm0 2H21v12.594l-6.406 6.312c-.422-.082-.594-.254-.594-.562 0-.903.273-1.46.53-1.813.26-.35.44-.436.44-.436l.342-.188.126-.406.593-2.25.314-1.25H8c-.66 0-1.105-.574-.97-1.22l2.126-10c.102-.467.524-.78 1-.78zM23 8h2v12h-2z"/>
</symbol>
<symbol id="icon-thumbs-up-2" viewBox="0 0 50 50">
<path d="M24 4c-1.176 0-2.31.727-3.063 1.906-.027.04-.07.055-.093.094L9.687 21.313C8.57 22.878 8 24.698 8 26.593V36c0 4.945 4.055 9 9 9h19c1.516 0 2.77-.613 3.625-1.438.855-.824 1.375-1.84 1.375-2.874 0-.856-.2-1.56-.406-2.094.972-.524 2.406-1.516 2.406-3.782 0-1.425-.69-2.36-1.375-2.968.684-.672 1.375-1.66 1.375-3.157 0-2.242-1.422-3.16-2.25-3.593.086-.516.25-1.274.25-2.188 0-1.957-1.848-3.797-4.563-3.812h-.03C33.3 19.004 25.8 19 23.936 19c.333-.746.575-1.266 1.188-2.656.934-2.117 1.914-4.336 2.22-5.188v-.03c.268-.716.655-1.423.655-2.532 0-1.543-.602-2.746-1.406-3.5C25.79 4.34 24.852 4 24 4zm0 2c.246 0 .797.168 1.22.563.42.394.78.976.78 2.03 0 .68-.203.966-.53 1.845v.03c-.2.56-1.22 2.942-2.157 5.063-.938 2.122-1.813 4.064-1.813 4.064-.137.308-.11.664.074.95.184.28.496.452.832.456 0 0 10.63-.004 13.97.094h.03c1.864 0 2.594 1.18 2.594 1.812 0 .8-.28 2.532-.28 2.532-.075.476.202.933.655 1.093 0 0 1.625.525 1.625 2.157 0 1.465-1.47 2.344-1.47 2.344-.343.185-.55.548-.53.94.02.385.262.73.625.874 0 0 1.375.504 1.375 1.968 0 1.65-2.063 2.438-2.063 2.438-.296.105-.527.348-.617.648-.093.3-.04.63.15.883 0 0 .53.72.53 1.907 0 .266-.23.938-.75 1.438S36.984 43 36 43H17c-3.855 0-7-3.145-7-7v-9.406c0-1.496.44-2.864 1.313-4.094.003-.008-.004-.023 0-.03L22.5 7.093c.023-.032.043-.063.063-.094.45-.746 1.054-1 1.437-1z"/>
</symbol>
<symbol id="icon-thumbs-up" viewBox="0 0 32 32">
<path d="M16.688 3l-.313.28L9.595 10H5v16h16.844c1.41 0 2.64-.996 2.937-2.375l2.157-10C27.332 11.777 25.887 10 24 10h-5.75l.188-.75c.203-.156.332-.223.625-.625.468-.64.937-1.633.937-2.97C20 4.23 18.71 3 17.094 3zm.718 2.094c.422.082.594.254.594.562 0 .903-.273 1.46-.53 1.813-.26.35-.44.436-.44.436l-.343.188-.125.406-.593 2.25-.314 1.25H24c.66 0 1.105.574.97 1.22l-2.126 10c-.102.468-.524.78-1 .78H11V11.406zM7 12h2v12H7z"/>
</symbol>
<symbol id="icon-user" viewBox="0 0 50 50">
<path d="M25.875 3.406c-4.672.086-7.656 1.973-8.938 4.906-1.222 2.793-.95 6.32-.062 9.97-.477.558-.855 1.308-.72 2.437.15 1.23.49 2.104.97 2.718.266.335.613.367.938.53.175 1.048.468 2.095.906 2.97.25.503.534.968.81 1.343.126.17.306.267.44.407.007 1.235.01 2.262-.095 3.563-.324.785-1.082 1.418-2.313 2.03-1.27.634-2.92 1.22-4.593 1.94-1.673.718-3.392 1.593-4.75 2.968-1.36 1.374-2.322 3.26-2.47 5.75L5.937 46h40.126L46 44.937c-.148-2.488-1.113-4.374-2.47-5.75-1.354-1.374-3.053-2.25-4.718-2.968-1.664-.72-3.296-1.306-4.562-1.94-1.215-.608-1.98-1.225-2.313-2-.11-1.315-.1-2.346-.093-3.593.133-.144.312-.238.437-.406.275-.378.536-.843.782-1.343.426-.875.735-1.925.907-2.968.31-.165.647-.204.905-.532.48-.614.82-1.49.97-2.72.132-1.093-.236-1.816-.69-2.374.49-1.586 1.115-4.15.907-6.782-.113-1.437-.48-2.87-1.343-4.062-.79-1.094-2.072-1.89-3.69-2.22-1.05-1.362-2.94-1.874-5.124-1.874zm.03 2h.032c2.012.008 3.317.598 3.688 1.25l.25.407.47.062c1.39.19 2.186.754 2.75 1.53.56.78.874 1.865.968 3.064.187 2.397-.504 5.19-.938 6.5l-.25.78.688.406c-.043-.027.382.262.28 1.094-.116.98-.35 1.488-.53 1.72-.18.23-.274.218-.282.218l-.843.062-.093.813c-.094.863-.442 1.92-.844 2.75-.203.414-.41.777-.594 1.03-.183.255-.375.395-.28.345l-.532.28v.595c0 1.45-.06 2.636.093 4.312v.125l.063.125c.57 1.535 1.89 2.492 3.344 3.22 1.453.725 3.12 1.26 4.687 1.936 1.568.677 3 1.486 4.064 2.564.843.855 1.375 1.988 1.656 3.406H8.25c.28-1.414.81-2.55 1.656-3.406 1.067-1.078 2.52-1.887 4.094-2.563 1.574-.675 3.23-1.21 4.688-1.936 1.457-.727 2.804-1.684 3.375-3.22l.062-.25c.152-1.675.094-2.862.094-4.312v-.593l-.532-.282c.09.046-.125-.09-.313-.344s-.418-.617-.625-1.032c-.414-.828-.754-1.894-.844-2.75l-.093-.812-.844-.063c-.01 0-.103.012-.282-.218-.18-.232-.415-.74-.532-1.72-.097-.832.324-1.12.282-1.094l.656-.406-.188-.72c-.94-3.624-1.105-6.917-.125-9.155.978-2.23 2.97-3.633 7.126-3.72z"/>
</symbol>
<symbol id="icon-view-more" viewBox="0 0 16 16">
<path d="M8 1C4.14 1 1 4.14 1 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm0 1c3.32 0 6 2.68 6 6s-2.68 6-6 6-6-2.68-6-6 2.68-6 6-6zM5 7c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3 0c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3 0c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z"/>
</symbol>
<symbol id="icon-star" viewBox="0 0 50 50">
<path style=" "
d="M 25 0.78125 L 24.0625 3.1875 L 18.625 17.34375 L 3.4375 18.1875 L 0.84375 18.3125 L 2.875 19.9375 L 14.65625 29.53125 L 10.75 44.1875 L 10.09375 46.6875 L 12.25 45.28125 L 25 37.03125 L 37.75 45.28125 L 39.90625 46.6875 L 39.25 44.1875 L 35.34375 29.53125 L 47.125 19.9375 L 49.15625 18.3125 L 46.5625 18.1875 L 31.375 17.34375 L 25.9375 3.1875 Z M 25 6.34375 L 29.75 18.6875 L 30 19.28125 L 30.65625 19.3125 L 43.875 20.03125 L 33.59375 28.375 L 33.09375 28.78125 L 33.25 29.40625 L 36.625 42.15625 L 25.53125 35 L 25 34.65625 L 24.46875 35 L 13.375 42.15625 L 16.75 29.40625 L 16.90625 28.78125 L 16.40625 28.375 L 6.125 20.03125 L 19.34375 19.3125 L 20 19.28125 L 20.25 18.6875 Z "></path>
</symbol>
<symbol id="icon-star-filled" viewBox="0 0 50 50">
<path style="fill:#f1c40f;"
d="M 39.921875 46.695313 L 25 37.039063 L 10.078125 46.695313 L 14.652344 29.519531 L 0.855469 18.3125 L 18.605469 17.355469 L 25 0.773438 L 31.394531 17.355469 L 49.144531 18.3125 L 35.347656 29.519531 Z "></path>
</symbol>
<symbol id="icon-recur" viewBox="0 0 50 50">
<path style=" "
d="M 16 3 C 8.832031 3 3 8.832031 3 16 C 3 23.167969 8.832031 29 16 29 C 23.167969 29 29 23.167969 29 16 L 27 16 C 27 22.085938 22.085938 27 16 27 C 9.914063 27 5 22.085938 5 16 C 5 9.914063 9.914063 5 16 5 C 19.875 5 23.261719 6.984375 25.21875 10 L 20 10 L 20 12 L 28 12 L 28 4 L 26 4 L 26 7.71875 C 23.617188 4.84375 20.019531 3 16 3 Z "></path>
</symbol>
<symbol id="icon-trash" viewBox="0 0 50 50">
<path style="line-height:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;block-progression:tb;isolation:auto;mix-blend-mode:normal"
d="M 21 2 C 19.354545 2 18 3.3545455 18 5 L 18 7 L 10.154297 7 A 1.0001 1.0001 0 0 0 9.984375 6.9863281 A 1.0001 1.0001 0 0 0 9.8398438 7 L 8 7 A 1.0001 1.0001 0 1 0 8 9 L 9 9 L 9 45 C 9 46.645455 10.354545 48 12 48 L 38 48 C 39.645455 48 41 46.645455 41 45 L 41 9 L 42 9 A 1.0001 1.0001 0 1 0 42 7 L 40.167969 7 A 1.0001 1.0001 0 0 0 39.841797 7 L 32 7 L 32 5 C 32 3.3545455 30.645455 2 29 2 L 21 2 z M 21 4 L 29 4 C 29.554545 4 30 4.4454545 30 5 L 30 7 L 20 7 L 20 5 C 20 4.4454545 20.445455 4 21 4 z M 11 9 L 18.832031 9 A 1.0001 1.0001 0 0 0 19.158203 9 L 30.832031 9 A 1.0001 1.0001 0 0 0 31.158203 9 L 39 9 L 39 45 C 39 45.554545 38.554545 46 38 46 L 12 46 C 11.445455 46 11 45.554545 11 45 L 11 9 z M 18.984375 13.986328 A 1.0001 1.0001 0 0 0 18 15 L 18 40 A 1.0001 1.0001 0 1 0 20 40 L 20 15 A 1.0001 1.0001 0 0 0 18.984375 13.986328 z M 24.984375 13.986328 A 1.0001 1.0001 0 0 0 24 15 L 24 40 A 1.0001 1.0001 0 1 0 26 40 L 26 15 A 1.0001 1.0001 0 0 0 24.984375 13.986328 z M 30.984375 13.986328 A 1.0001 1.0001 0 0 0 30 15 L 30 40 A 1.0001 1.0001 0 1 0 32 40 L 32 15 A 1.0001 1.0001 0 0 0 30.984375 13.986328 z"
font-weight="400" font-family="sans-serif" white-space="normal" overflow="visible"></path>
</symbol>
<symbol id="icon-link" viewBox="0 0 30 30">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round"
stroke-linejoin="round">
<g id="Recipe-Info---Ingredients" transform="translate(-889.000000, -389.000000)" stroke="#000000">
<g id="overlay">
<g id="modal" transform="translate(388.000000, 80.000000)">
<g id="icon-bar" transform="translate(31.000000, 308.000000)">
<g id="Group-16" transform="translate(66.000000, 0.000000)">
<g id="Group-40" transform="translate(404.000000, 1.000000)">
<path d="M15.5908333,22.6603333 L10.2858333,27.9636667 C8.33416667,29.917 5.1675,29.917 3.21416667,27.9636667 L2.03583333,26.7853333 C0.0841666667,24.8336667 0.0841666667,21.667 2.03583333,19.7153333 L9.6975,12.0536667 C11.6508333,10.1003333 14.8158333,10.1003333 16.7691667,12.0536667 L17.9475,13.2336667"
id="Stroke-80"></path>
<path d="M14.4125,7.338 L19.7158333,2.03633333 C21.6691667,0.083 24.8325,0.083 26.7858333,2.03633333 L27.9641667,3.21466667 C29.9175,5.16633333 29.9175,8.333 27.9641667,10.2863333 L20.3041667,17.9446667 C18.3508333,19.8996667 15.1858333,19.8996667 13.2341667,17.9446667"
id="Stroke-81"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</symbol>
<symbol id="icon-link-orange" viewBox="0 0 30 30">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round"
stroke-linejoin="round">
<g id="Recipe-Info---Ingredients" transform="translate(-889.000000, -389.000000)" stroke="#F0754F" >
<g id="overlay">
<g id="modal" transform="translate(388.000000, 80.000000)">
<g id="icon-bar" transform="translate(31.000000, 308.000000)">
<g id="Group-16" transform="translate(66.000000, 0.000000)">
<g id="Group-40" transform="translate(404.000000, 1.000000)">
<path d="M15.5908333,22.6603333 L10.2858333,27.9636667 C8.33416667,29.917 5.1675,29.917 3.21416667,27.9636667 L2.03583333,26.7853333 C0.0841666667,24.8336667 0.0841666667,21.667 2.03583333,19.7153333 L9.6975,12.0536667 C11.6508333,10.1003333 14.8158333,10.1003333 16.7691667,12.0536667 L17.9475,13.2336667"
id="Stroke-80"></path>
<path d="M14.4125,7.338 L19.7158333,2.03633333 C21.6691667,0.083 24.8325,0.083 26.7858333,2.03633333 L27.9641667,3.21466667 C29.9175,5.16633333 29.9175,8.333 27.9641667,10.2863333 L20.3041667,17.9446667 C18.3508333,19.8996667 15.1858333,19.8996667 13.2341667,17.9446667"
id="Stroke-81"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</symbol>
<symbol id="icon-link-white" viewBox="0 0 30 30">
<g id="Page-1" stroke="#FFFFFF" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round"
stroke-linejoin="round">
<g id="Recipe-Info---Ingredients" transform="translate(-889.000000, -389.000000)" stroke="#FFFFFF">
<g id="overlay">
<g id="modal" transform="translate(388.000000, 80.000000)">
<g id="icon-bar" transform="translate(31.000000, 308.000000)">
<g id="Group-16" transform="translate(66.000000, 0.000000)">
<g id="Group-40" transform="translate(404.000000, 1.000000)">
<path d="M15.5908333,22.6603333 L10.2858333,27.9636667 C8.33416667,29.917 5.1675,29.917 3.21416667,27.9636667 L2.03583333,26.7853333 C0.0841666667,24.8336667 0.0841666667,21.667 2.03583333,19.7153333 L9.6975,12.0536667 C11.6508333,10.1003333 14.8158333,10.1003333 16.7691667,12.0536667 L17.9475,13.2336667"
id="Stroke-80"></path>
<path d="M14.4125,7.338 L19.7158333,2.03633333 C21.6691667,0.083 24.8325,0.083 26.7858333,2.03633333 L27.9641667,3.21466667 C29.9175,5.16633333 29.9175,8.333 27.9641667,10.2863333 L20.3041667,17.9446667 C18.3508333,19.8996667 15.1858333,19.8996667 13.2341667,17.9446667"
id="Stroke-81"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</symbol>
<symbol id="icon-add-recur" viewBox="0 0 50 50">
<g fill="none" stroke="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter"
stroke-miterlimit="10" stroke-dasharray="" stroke-dashoffset="0" font-family="sans-serif"
font-weight="none" font-size="12" text-anchor="start" mix-blend-mode="normal">
<g>
<g>
<path d="M0,50l0,-50l50,0l0,50z" fill="none" font-weight="normal"/>
<g fill="#000000" font-weight="400">
<path d="M21.26909,45.67049c1.21062,0.21652 2.45741,0.32951 3.73091,0.32951c11.60953,0 21,-9.39047 21,-21c-0.0051,-0.36064 0.18438,-0.69608 0.49587,-0.87789c0.3115,-0.18181 0.69676,-0.18181 1.00825,0c0.3115,0.18181 0.50097,0.51725 0.49587,0.87789c0,12.69047 -10.30953,23 -23,23c-1.93437,0 -3.81343,-0.23953 -5.60909,-0.69052c0.68123,-0.48083 1.31076,-1.03063 1.87818,-1.63899z M2.69052,30.60909c-0.45099,-1.79566 -0.69052,-3.67471 -0.69052,-5.60909c0,-12.69047 10.30953,-23 23,-23c7.2878,0 13.78519,3.40209 18,8.69922l0,-6.69922c-0.00755,-0.55153 0.43286,-1.00505 0.98438,-1.01367c0.27029,-0.00422 0.53078,0.10116 0.72212,0.29212c0.19133,0.19097 0.29721,0.45125 0.29351,0.72155l0,10l-1.55078,0l-8.44922,0c-0.36064,0.0051 -0.69608,-0.18437 -0.87789,-0.49587c-0.18181,-0.3115 -0.18181,-0.69676 0,-1.00825c0.18181,-0.3115 0.51725,-0.50097 0.87789,-0.49587l6.48047,0c-3.84528,-4.86929 -9.78778,-8 -16.48047,-8c-11.60953,0 -21,9.39047 -21,21c0,1.27349 0.11299,2.52028 0.32951,3.73091c-0.60837,0.56742 -1.15816,1.19694 -1.63899,1.87818z"/>
</g>
<g fill="#000000" font-weight="normal">
<g>
<g id="Слой_2" visibility="hidden"/>
<g id="Android_x5F_4" visibility="hidden"/>
<g id="Android_x5F_5" visibility="hidden"/>
<g id="Windows_x5F_8" visibility="hidden"/>
<g id="Windows_x5F_10" visibility="hidden"/>
<g id="Color" visibility="hidden"/>
<g id="IOS" visibility="hidden"/>
<g id="IOS_copy">
<path d="M18.4,37.5c0,0.6 -0.4,1 -1,1l-3.9,0l0,3.9c0,0.6 -0.4,1 -1,1c-0.6,0 -1,-0.4 -1,-1l0,-3.9l-3.9,0c-0.6,0 -1,-0.4 -1,-1c0,-0.6 0.4,-1 1,-1l3.9,0l0,-3.9c0,-0.6 0.4,-1 1,-1c0.6,0 1,0.4 1,1l0,3.9l3.9,0c0.6,0 1,0.4 1,1z M22.5,37.5c0,5.5 -4.5,10 -10,10c-5.5,0 -10,-4.5 -10,-10c0,-5.5 4.5,-10 10,-10c5.5,0 10,4.5 10,10z M20.5,37.5c0,-4.4 -3.6,-8 -8,-8c-4.4,0 -8,3.6 -8,8c0,4.4 3.6,8 8,8c4.4,0 8,-3.6 8,-8z"/>
</g>
</g>
</g>
</g>
</g>
</g>
</symbol>
<symbol id="icon-add-recur2" viewBox="0 0 50 50">
<g fill="none" stroke="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter"
stroke-miterlimit="10" stroke-dasharray="" stroke-dashoffset="0" font-family="sans-serif"
font-weight="none" font-size="12" text-anchor="start" mix-blend-mode="normal">
<g>
<g>
<path d="M0,50l0,-50l50,0l0,50z" fill="none" font-weight="normal"/>
<g fill="#000000" font-weight="600">
<path d="M21.26909,45.67049c1.21062,0.21652 2.45741,0.32951 3.73091,0.32951c11.60953,0 21,-9.39047 21,-21c-0.0051,-0.36064 0.18438,-0.69608 0.49587,-0.87789c0.3115,-0.18181 0.69676,-0.18181 1.00825,0c0.3115,0.18181 0.50097,0.51725 0.49587,0.87789c0,12.69047 -10.30953,23 -23,23c-1.93437,0 -3.81343,-0.23953 -5.60909,-0.69052c0.68123,-0.48083 1.31076,-1.03063 1.87818,-1.63899z M2.69052,30.60909c-0.45099,-1.79566 -0.69052,-3.67471 -0.69052,-5.60909c0,-12.69047 10.30953,-23 23,-23c7.2878,0 13.78519,3.40209 18,8.69922l0,-6.69922c-0.00755,-0.55153 0.43286,-1.00505 0.98438,-1.01367c0.27029,-0.00422 0.53078,0.10116 0.72212,0.29212c0.19133,0.19097 0.29721,0.45125 0.29351,0.72155l0,10l-1.55078,0l-8.44922,0c-0.36064,0.0051 -0.69608,-0.18437 -0.87789,-0.49587c-0.18181,-0.3115 -0.18181,-0.69676 0,-1.00825c0.18181,-0.3115 0.51725,-0.50097 0.87789,-0.49587l6.48047,0c-3.84528,-4.86929 -9.78778,-8 -16.48047,-8c-11.60953,0 -21,9.39047 -21,21c0,1.27349 0.11299,2.52028 0.32951,3.73091c-0.60837,0.56742 -1.15816,1.19694 -1.63899,1.87818z"/>
</g>
<g fill="#000000" font-weight="normal">
<g>
<g id="Слой_2" visibility="hidden"/>
<g id="Android_x5F_4" visibility="hidden"/>
<g id="Android_x5F_5" visibility="hidden"/>
<g id="Windows_x5F_8" visibility="hidden"/>
<g id="Windows_x5F_10" visibility="hidden"/>
<g id="Color" visibility="hidden"/>
<g id="IOS" visibility="hidden"/>
<g id="IOS_copy">
<path d="M18.4,37.5c0,0.6 -0.4,1 -1,1l-3.9,0l0,3.9c0,0.6 -0.4,1 -1,1c-0.6,0 -1,-0.4 -1,-1l0,-3.9l-3.9,0c-0.6,0 -1,-0.4 -1,-1c0,-0.6 0.4,-1 1,-1l3.9,0l0,-3.9c0,-0.6 0.4,-1 1,-1c0.6,0 1,0.4 1,1l0,3.9l3.9,0c0.6,0 1,0.4 1,1z M22.5,37.5c0,5.5 -4.5,10 -10,10c-5.5,0 -10,-4.5 -10,-10c0,-5.5 4.5,-10 10,-10c5.5,0 10,4.5 10,10z M20.5,37.5c0,-4.4 -3.6,-8 -8,-8c-4.4,0 -8,3.6 -8,8c0,4.4 3.6,8 8,8c4.4,0 8,-3.6 8,-8z"/>
</g>
</g>
</g>
</g>
</g>
</g>
</symbol>
<symbol id="icon-pin" viewBox="0 0 24 24">
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round"
stroke-linejoin="round">
<g id="Recipe-Info---Ingredients" transform="translate(-653.000000, -392.000000)" stroke="#000000">
<g id="overlay">
<g id="modal" transform="translate(388.000000, 80.000000)">
<g id="icon-bar" transform="translate(31.000000, 308.000000)">
<g id="Group-16" transform="translate(66.000000, 0.000000)">
<g id="Group-24" transform="translate(168.000000, 4.000000)">
<path d="M9.5,14.5 L0.5,23.5" id="Stroke-119"></path>
<polygon id="Stroke-120"
points="21.5 9.5 23.5 7.5 16.5 0.5 14.5 2.5 15.5 3.5 10.5 8.5 6.5 8.5 5 10 14 19 15.5 17.5 15.5 13.5 20.5 8.5"></polygon>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</symbol>
<symbol id="icon-pin-orange" viewBox="0 0 24 24">
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round"
stroke-linejoin="round">
<g id="Recipe-Info---Ingredients" transform="translate(-653.000000, -392.000000)" stroke="#F0754F">
<g id="overlay">
<g id="modal" transform="translate(388.000000, 80.000000)">
<g id="icon-bar" transform="translate(31.000000, 308.000000)">
<g id="Group-16" transform="translate(66.000000, 0.000000)">
<g id="Group-24" transform="translate(168.000000, 4.000000)">
<path d="M9.5,14.5 L0.5,23.5" id="Stroke-119"></path>
<polygon id="Stroke-120"
points="21.5 9.5 23.5 7.5 16.5 0.5 14.5 2.5 15.5 3.5 10.5 8.5 6.5 8.5 5 10 14 19 15.5 17.5 15.5 13.5 20.5 8.5"></polygon>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</symbol>
<symbol id="icon-pin-white" viewBox="0 0 24 24">
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round"
stroke-linejoin="round">
<g id="Recipe-Info---Ingredients" transform="translate(-653.000000, -392.000000)" stroke="#FFFFFF">
<g id="overlay">
<g id="modal" transform="translate(388.000000, 80.000000)">
<g id="icon-bar" transform="translate(31.000000, 308.000000)">
<g id="Group-16" transform="translate(66.000000, 0.000000)">
<g id="Group-24" transform="translate(168.000000, 4.000000)">
<path d="M9.5,14.5 L0.5,23.5" id="Stroke-119"></path>
<polygon id="Stroke-120"
points="21.5 9.5 23.5 7.5 16.5 0.5 14.5 2.5 15.5 3.5 10.5 8.5 6.5 8.5 5 10 14 19 15.5 17.5 15.5 13.5 20.5 8.5"></polygon>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</symbol>
<symbol id="icon-trash-2" viewBox="0 0 32 32">
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round"
stroke-linejoin="round">
<g id="Recipe-Info---Ingredients" transform="translate(-808.000000, -388.000000)" stroke="#231F20">
<g id="overlay">
<g id="modal" transform="translate(388.000000, 80.000000)">
<g id="icon-bar" transform="translate(31.000000, 308.000000)">
<g id="Group-16" transform="translate(66.000000, 0.000000)">
<g id="Group" transform="translate(324.000000, 1.000000)">
<polygon id="Stroke-154"
points="26.0869565 30 3.91304348 30 3.91304348 3.91304348 26.0869565 3.91304348"></polygon>
<polygon id="Stroke-155"
points="20.8695652 3.91304348 9.13043478 3.91304348 9.13043478 0 20.8695652 0"></polygon>
<path d="M0,3.91304348 L30,3.91304348" id="Stroke-156"></path>
<path d="M9.13043478,9.13043478 L9.13043478,24.1304348" id="Stroke-157"></path>
<path d="M15,9.13043478 L15,24.1304348" id="Stroke-158"></path>
<path d="M20.8695652,9.13043478 L20.8695652,24.1304348" id="Stroke-159"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</symbol>
</defs>
<!--
<g>
<use xlink:href="#icon-calendar" width="24" height="24" x="3" y="3"/>
<use xlink:href="#icon-frying-pan" width="24" height="24" x="33" y="3"/>
<use xlink:href="#icon-playlist" width="24" height="24" x="63" y="3"/>
<use xlink:href="#icon-refresh" width="24" height="24" x="93" y="3"/>
<use xlink:href="#icon-search-filled" width="24" height="24" x="3" y="33"/>
<use xlink:href="#icon-search" width="24" height="24" x="33" y="33"/>
<use xlink:href="#icon-shuffle" width="24" height="24" x="63" y="33"/>
<use xlink:href="#icon-thumbs-down-2" width="24" height="24" x="93" y="33"/>
<use xlink:href="#icon-thumbs-down" width="24" height="24" x="3" y="63"/>
<use xlink:href="#icon-thumbs-up-2" width="24" height="24" x="33" y="63"/>
<use xlink:href="#icon-thumbs-up" width="24" height="24" x="63" y="63"/>
<use xlink:href="#icon-user" width="24" height="24" x="93" y="63"/>
<use xlink:href="#icon-view-more" width="24" height="24" x="3" y="93"/>
</g>
-->
</svg>
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">
<defs>
<symbol id="icon-broccoli-16" viewBox="0 0 16 16">
<path d="M4.493 15.5c-.11-5.413-1.527-8.208-2.13-9.157L3.416 5.29c.868.995 1.657 2.395 2.35 4.172l.82 2.108L7 5.07h2l.415 6.5.82-2.108c.69-1.777 1.48-3.178 2.35-4.172l1.052 1.053c-.603.95-2.02 3.744-2.13 9.157H4.493z"
fill="#BAE0BD"/>
<path d="M8.53 5.57l.24 3.776.29 4.513 1.64-4.215c.58-1.487 1.223-2.696 1.92-3.61l.39.39C12.33 7.64 11.19 10.34 11.02 15H4.98c-.17-4.66-1.31-7.36-1.99-8.576l.39-.39c.696.914 1.34 2.123 1.92 3.61l1.64 4.214.29-4.513.24-3.775h1.06m4.04-1c-1.2 1.203-2.114 2.947-2.8 4.712l-.303-4.71H6.533L6.23 9.28c-.686-1.764-1.6-3.508-2.8-4.71L1.713 6.285S3.962 8.99 4 16h8c.038-7.01 2.286-9.714 2.286-9.714L12.57 4.57z"
fill="#5E9C76"/>
<g>
<path d="M12.5 8.5c-.545 0-1.067-.15-1.553-.447l-.275-.168-.267.182C9.99 8.35 9.505 8.5 9 8.5c-.432 0-.852-.117-1.248-.348L7.5 8.005l-.252.147c-.396.23-.816.348-1.248.348s-.852-.117-1.248-.348L4.5 8.005l-.252.147c-.396.23-.816.348-1.248.348C1.62 8.5.5 7.378.5 6c0-1.055.676-2 1.682-2.35l.354-.123-.02-.396-.012-.1C2.5 1.623 3.62.5 5 .5c.432 0 .852.117 1.248.348L6.5.995 6.752.85C7.148.616 7.568.5 8 .5s.852.117 1.248.348L9.5.995 9.752.85C10.148.616 10.568.5 11 .5c1.156 0 2.152.79 2.423 1.917l.058.24.228.1C14.796 3.24 15.5 4.316 15.5 5.5c0 1.654-1.346 3-3 3z"
fill="#D8F0DA"/>
<path d="M11 1c.924 0 1.72.63 1.937 1.534l.116.482.453.2C14.413 3.616 15 4.513 15 5.5 15 6.878 13.878 8 12.5 8c-.45 0-.886-.126-1.293-.374l-.55-.336-.533.363C9.79 7.88 9.402 8 9 8c-.342 0-.677-.094-.997-.28L7.5 7.427l-.503.293C6.677 7.906 6.342 8 6 8s-.677-.094-.997-.28L4.5 7.427l-.503.293C3.677 7.906 3.342 8 3 8c-1.103 0-2-.897-2-2 0-.842.54-1.597 1.347-1.878l.714-.25-.044-.754c-.003-.046-.008-.092-.016-.15C3.018 1.88 3.908 1 5 1c.342 0 .677.094.997.28l.503.293.503-.293C7.323 1.094 7.658 1 8 1s.677.094.997.28l.503.293.503-.293c.32-.186.655-.28.997-.28m0-1c-.55 0-1.057.158-1.5.416C9.057.158 8.55 0 8 0S6.943.158 6.5.416C6.057.158 5.55 0 5 0 3.343 0 2 1.343 2 3c0 .06.014.118.018.178C.846 3.586 0 4.688 0 6c0 1.657 1.343 3 3 3 .55 0 1.057-.158 1.5-.416.443.258.95.416 1.5.416s1.057-.158 1.5-.416C7.943 8.842 8.45 9 9 9c.626 0 1.206-.192 1.687-.52.53.324 1.146.52 1.813.52C14.433 9 16 7.433 16 5.5c0-1.43-.86-2.656-2.09-3.2C13.593.984 12.415 0 11 0z"
fill="#5E9C76"/>
</g>
</symbol>
<symbol id="icon-broccoli-30" viewBox="0 0 30 30">
<path d="M9.495 28.5C9.33 18.26 5.83 13.345 4.692 12.015l2.3-2.3c2.082 2.262 3.755 5.754 4.976 10.39l.82 3.123.688-13.728h3.05l.686 13.727.82-3.122c1.222-4.637 2.895-8.13 4.977-10.39l2.3 2.3c-1.138 1.33-4.64 6.246-4.804 16.484H9.496z"
fill="#BAE0BD"/>
<path d="M16.05 10l.5 10.028.322 6.45 1.643-6.245c1.13-4.296 2.647-7.582 4.514-9.788l1.606 1.607c-1.372 1.767-4.37 6.662-4.62 15.95H9.983c-.25-9.288-3.248-14.183-4.62-15.95l1.606-1.607c1.867 2.206 3.384 5.492 4.514 9.788l1.643 6.245.322-6.45.5-10.028h2.1M23 9c-2.73 2.73-4.417 7.05-5.45 10.978L17 9h-4l-.55 10.978C11.418 16.048 9.73 11.728 7 9l-3 3s4.933 4.733 5 17h12c.067-12.267 5-17 5-17l-3-3z"
fill="#5E9C76"/>
<g>
<path d="M23 16.5c-1.235 0-2.405-.405-3.383-1.17l-.33-.257-.31.277c-.835.74-1.893 1.15-2.977 1.15-1.438 0-2.802-.705-3.65-1.887l-.186-.26-.313.06c-.303.06-.58.087-.85.087-.48 0-.97-.09-1.492-.275l-.28-.1-.222.2C8.168 15.083 7.1 15.5 6 15.5c-2.48 0-4.5-2.02-4.5-4.5 0-1.852 1.172-3.538 2.916-4.197l.234-.088.07-.24C5.395 4.134 7.565 2.5 10 2.5c.53 0 1.062.078 1.577.232l.266.08.208-.183C12.88 1.9 13.93 1.5 15 1.5c1.1 0 2.168.417 3.006 1.175l.22.2.282-.1C19.03 2.59 19.518 2.5 20 2.5c1.85 0 3.537 1.172 4.196 2.916l.09.234.24.07c2.34.674 3.974 2.845 3.974 5.28 0 3.033-2.468 5.5-5.5 5.5z"
fill="#D8F0DA"/>
<path d="M15 2c.976 0 1.925.37 2.67 1.046l.442.4.562-.2C19.144 3.082 19.577 3 20 3c1.67 0 3.134 1.018 3.73 2.593l.176.468.48.14C26.515 6.814 28 8.787 28 11c0 2.757-2.243 5-5 5-1.122 0-2.186-.368-3.076-1.064l-.657-.514-.624.554C17.9 15.636 16.963 16 16 16c-1.277 0-2.49-.627-3.243-1.678l-.373-.52-.628.12c-.272.053-.52.078-.756.078-.423 0-.857-.08-1.326-.247l-.562-.2-.442.4C7.925 14.63 6.976 15 6 15c-2.206 0-4-1.794-4-4 0-1.67 1.018-3.134 2.593-3.73l.468-.176.14-.48C5.814 4.485 7.787 3 10 3c.482 0 .965.07 1.434.21l.53.16.416-.365C12.903 2.547 13.783 2 15 2m0-1c-1.26 0-2.4.483-3.28 1.253C11.175 2.09 10.598 2 10 2 7.264 2 4.96 3.832 4.24 6.335 2.35 7.05 1 8.86 1 11c0 2.76 2.24 5 5 5 1.29 0 2.454-.502 3.34-1.304.522.185 1.075.304 1.66.304.323 0 .638-.036.944-.095C12.852 16.17 14.324 17 16 17c1.275 0 2.425-.492 3.308-1.277C20.328 16.52 21.606 17 23 17c3.314 0 6-2.686 6-6 0-2.736-1.832-5.04-4.335-5.76C23.95 3.35 22.14 2 20 2c-.585 0-1.138.12-1.66.304C17.455 1.502 16.29 1 15 1z"
fill="#5E9C76"/>
</g>
</symbol>
<symbol id="icon-broccoli-40" viewBox="0 0 40 40">
<path d="M12.495 38.5c-.193-14.328-5.3-20.982-6.725-22.564l3.367-3.367c2.872 3.048 5.228 7.78 7.006 14.075l.83 2.933.835-16.745h4.383l.837 16.745.83-2.933c1.777-6.295 4.133-11.027 7.005-14.076l3.367 3.366c-1.427 1.582-6.532 8.236-6.726 22.564h-15.01z"
fill="#BAE0BD"/>
<path d="M30.88 13.293l2.668 2.67c-1.765 2.123-6.25 8.798-6.534 22.037H12.987c-.286-13.24-4.77-19.914-6.534-22.038l2.67-2.67c2.66 3 4.857 7.53 6.54 13.49l1.657 5.866.304-6.09.66-13.225h3.432l.66 13.226.305 6.088 1.658-5.867c1.682-5.958 3.88-10.49 6.54-13.487m-.02-1.436c-3.648 3.647-5.996 9.387-7.483 14.652l-.71-14.177h-5.332l-.71 14.176c-1.486-5.266-3.834-11.006-7.48-14.653l-4.072 4.07S11.91 22.353 12 39h16c.09-16.65 6.93-23.072 6.93-23.072l-4.073-4.07z"
fill="#5E9C76"/>
<g>
<path d="M21 22.5c-2.17 0-4.19-1.08-5.402-2.886l-.18-.27-.32.055c-.397.067-.756.1-1.098.1-.61 0-1.225-.09-1.826-.265l-.232-.068-.197.14C10.64 20.087 9.345 20.5 8 20.5c-3.584 0-6.5-2.916-6.5-6.5 0-2.67 1.604-5.038 4.088-6.032l.217-.087.072-.22C6.892 4.573 9.754 2.5 13 2.5c.854 0 1.708.15 2.536.45l.26.094.218-.17C17.168 1.975 18.546 1.5 20 1.5c1.48 0 2.877.49 4.04 1.414l.228.183.27-.11C25.327 2.662 26.155 2.5 27 2.5c2.67 0 5.04 1.605 6.032 4.088l.086.217.222.073C36.427 7.892 38.5 10.753 38.5 14c0 4.136-3.364 7.5-7.5 7.5-1.567 0-3.073-.485-4.354-1.402l-.376-.27-.298.355C24.732 21.655 22.92 22.5 21 22.5z"
fill="#D8F0DA"/>
<path d="M20 2c1.366 0 2.655.45 3.728 1.305l.46.365.542-.222C25.456 3.15 26.22 3 27 3c2.465 0 4.65 1.48 5.568 3.774l.173.433.444.146C36.064 8.3 38 10.97 38 14c0 3.86-3.14 7-7 7-1.462 0-2.867-.453-4.064-1.31l-.752-.537-.595.707C24.443 21.22 22.77 22 21 22c-2.004 0-3.868-.996-4.987-2.664l-.36-.538-.64.11c-.366.062-.698.092-1.013.092-.563 0-1.13-.082-1.686-.245l-.464-.136-.394.278C10.436 19.618 9.242 20 8 20c-3.308 0-6-2.692-6-6 0-2.465 1.48-4.65 3.774-5.568l.433-.173.146-.444C7.3 4.936 9.97 3 13 3c.796 0 1.593.14 2.368.42l.518.187.435-.34C17.387 2.44 18.66 2 20 2m0-1c-1.62 0-3.107.556-4.294 1.48C14.86 2.174 13.95 2 13 2 9.454 2 6.452 4.31 5.403 7.503 2.823 8.536 1 11.053 1 14c0 3.866 3.134 7 7 7 1.503 0 2.893-.478 4.034-1.285.624.183 1.283.285 1.966.285.404 0 .797-.042 1.183-.107C16.44 21.766 18.575 23 21 23c2.15 0 4.07-.97 5.354-2.495C27.664 21.442 29.266 22 31 22c4.418 0 8-3.582 8-8 0-3.546-2.31-6.548-5.503-7.597C32.464 3.823 29.947 2 27 2c-.938 0-1.83.188-2.65.522C23.157 1.572 21.647 1 20 1z"
fill="#5E9C76"/>
</g>
</symbol>
<symbol id="icon-broccoli-80" viewBox="0 0 80 80">
<path d="M26.496 77.5c-.305-29.982-13.333-43.515-15.678-45.708l5.518-7.314c9.118 9.42 14.71 25.514 17.81 37.442L35 65.2l1.48-38.183h7.04L45.002 65.2l.853-3.28c3.1-11.928 8.69-28.022 17.81-37.442l5.518 7.314C66.837 33.985 53.81 47.518 53.503 77.5H26.497z"
fill="#BAE0BD"/>
<path d="M63.62 25.25l4.887 6.48C65.39 34.705 53.435 48 53.01 77H26.99c-.425-29-12.38-42.294-15.497-45.272l4.887-6.48c8.805 9.397 14.244 25.105 17.28 36.797l1.705 6.56.263-6.773 1.333-34.316h6.077l1.333 34.316.263 6.773 1.704-6.56c3.038-11.69 8.477-27.4 17.283-36.795m.094-1.536c-9.405 9.405-15.146 25.77-18.344 38.08L44 26.517h-8l-1.37 35.278c-3.198-12.31-8.94-28.675-18.344-38.08l-6.143 8.143S25.82 44.706 26 78h28c.18-33.294 15.857-46.142 15.857-46.142l-6.143-8.144z"
fill="#5E9C76"/>
<g>
<path d="M42 45.5c-4.51 0-8.703-2.24-11.22-5.993l-.18-.27-.32.056c-.82.14-1.565.207-2.28.207-1.268 0-2.544-.185-3.792-.55l-.232-.068-.197.14C21.484 40.642 18.794 41.5 16 41.5 8.556 41.5 2.5 35.444 2.5 28c0-5.546 3.333-10.464 8.49-12.53l.217-.086.073-.22C13.376 8.783 19.29 4.5 26 4.5c1.766 0 3.53.312 5.244.93l.26.093.217-.17C34.118 3.488 36.98 2.5 40 2.5c3.074 0 5.976 1.015 8.39 2.936l.23.183.27-.112C50.525 4.838 52.244 4.5 54 4.5c5.546 0 10.464 3.333 12.53 8.49l.085.217.222.073C73.215 15.376 77.5 21.29 77.5 28c0 8.547-6.953 15.5-15.5 15.5-3.24 0-6.35-1.002-9-2.897l-.376-.27-.298.354C49.75 43.747 45.986 45.5 42 45.5z"
fill="#D8F0DA"/>
<path d="M40 3c2.96 0 5.754.978 8.08 2.827l.458.365.543-.222C50.654 5.326 52.31 5 54 5c5.34 0 10.077 3.21 12.065 8.177l.173.433.443.146C72.854 15.783 77 21.506 77 28c0 8.27-6.73 15-15 15-3.134 0-6.146-.97-8.71-2.804l-.75-.538-.596.707C49.464 43.31 45.84 45 42 45c-4.342 0-8.38-2.158-10.804-5.772l-.36-.538-.64.11c-.79.134-1.51.2-2.196.2-1.22 0-2.45-.178-3.652-.53l-.464-.136-.394.28C21.282 40.173 18.692 41 16 41 8.832 41 3 35.168 3 28c0-5.34 3.21-10.077 8.177-12.065l.433-.173.146-.443C13.783 9.146 19.506 5 26 5c1.708 0 3.416.303 5.074.9l.518.187.435-.34C34.335 3.95 37.092 3 40 3m0-1c-3.24 0-6.215 1.11-8.587 2.96C29.72 4.35 27.903 4 26 4c-7.09 0-13.096 4.618-15.195 11.007C5.648 17.07 2 22.105 2 28c0 7.732 6.268 14 14 14 3.007 0 5.786-.957 8.067-2.57 1.25.365 2.566.57 3.933.57.808 0 1.595-.083 2.365-.215C32.878 43.532 37.15 46 42 46c4.3 0 8.14-1.942 10.71-4.99C55.33 42.884 58.53 44 62 44c8.837 0 16-7.163 16-16 0-7.09-4.618-13.096-11.007-15.195C64.93 7.648 59.895 4 54 4c-1.876 0-3.663.375-5.298 1.045C46.312 3.145 43.292 2 40 2z"
fill="#5E9C76"/>
</g>
</symbol>
<symbol id="icon-hamburger-16" viewBox="0 0 16 16">
<path fill="#FFEEA3" d="M1.5 6.5h13v2h-13z"/>
<path d="M14 7v1H2V7h12m1-1H1v3h14V6z" fill="#BA9B48"/>
<path fill="#F78F8F" d="M.694 6.5l.666-2h13.28l.666 2"/>
<path d="M14.28 5l.332 1H1.387l.333-1h12.56M15 4H1L0 7h16l-1-3z" fill="#C74343"/>
<path d="M2 14.5c-.276 0-.5-.225-.5-.5v-2.5h13V14c0 .275-.224.5-.5.5H2z" fill="#F5CE85"/>
<path d="M14 12v2H2v-2h12m1-1H1v3c0 .552.448 1 1 1h12c.552 0 1-.448 1-1v-3z" fill="#967A44"/>
<path d="M14.054 12.5c-1.24 0-1.91-.593-1.937-.618l-.235-.212-.296.118c-.475.198-1.884.712-2.68.712-1.397 0-2.616-.68-2.628-.686l-.294-.165-.264.21c-.007.004-.838.64-2.186.64-1 0-2.234-.52-2.87-.825.26-.506.52-.932.673-1.175H14.64l.733 1.303c-.383.333-.927.697-1.32.697z"
fill="#BAE0BD"/>
<path d="M14.348 11l.38.675c-.263.186-.526.325-.674.325-1.027 0-1.582-.472-1.592-.48l-.472-.442-.597.25c-.623.26-1.85.672-2.488.672-1.256 0-2.372-.615-2.38-.62l-.59-.334-.528.423c-.007.004-.717.53-1.873.53-.67 0-1.52-.283-2.175-.56.092-.165.18-.314.256-.44h12.732m.585-1H1.067s-.58.85-1.067 1.897C0 11.897 1.976 13 3.534 13c1.56 0 2.497-.75 2.497-.75s1.32.75 2.875.75c1.074 0 2.874-.75 2.874-.75s.8.75 2.274.75c.9 0 1.946-1.103 1.946-1.103L14.933 10z"
fill="#5E9C76"/>
<g>
<path d="M14.054 5.5c-1.24 0-1.91-.593-1.937-.618l-.235-.212-.296.118c-.475.198-1.884.712-2.68.712-1.397 0-2.616-.68-2.628-.686l-.295-.165-.264.21c-.007.004-.838.64-2.186.64-1 0-2.234-.52-2.868-.825.26-.506.518-.932.672-1.175H14.64l.734 1.303c-.384.333-.928.697-1.32.697z"
fill="#BAE0BD"/>
<path d="M14.348 4l.38.675c-.263.186-.526.325-.674.325-1.027 0-1.582-.472-1.592-.48l-.472-.442-.597.25c-.623.26-1.85.672-2.488.672-1.256 0-2.372-.615-2.38-.62l-.59-.334-.528.423C5.4 4.473 4.69 5 3.534 5c-.67 0-1.52-.283-2.175-.56.092-.165.18-.314.256-.44h12.732m.585-1H1.067S.487 3.85 0 4.897C0 4.897 1.976 6 3.534 6c1.56 0 2.497-.75 2.497-.75S7.35 6 8.906 6c1.074 0 2.874-.75 2.874-.75s.8.75 2.274.75C14.954 6 16 4.897 16 4.897L14.933 3z"
fill="#5E9C76"/>
</g>
<g>
<path d="M1.5 3.5V3C1.5.934 5.035.5 8 .5s6.5.434 6.5 2.5v.5h-13z" fill="#F5CE85"/>
<path d="M8 1c2.24 0 6 .26 6 2H2c0-1.805 4.196-2 6-2m0-1C1.48 0 1 2.006 1 3v1h14V3c0-1.01-.48-3-7-3z"
fill="#967A44"/>
</g>
<g>
<path d="M1.5 10.5c-.55 0-1-.448-1-1s.45-1 1-1h13c.55 0 1 .448 1 1s-.45 1-1 1h-13z" fill="#A6714E"/>
<path d="M14.5 9c.276 0 .5.224.5.5s-.224.5-.5.5h-13c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h13m0-1h-13C.672 8 0 8.672 0 9.5S.672 11 1.5 11h13c.828 0 1.5-.672 1.5-1.5S15.328 8 14.5 8z"
fill="#7A4F34"/>
</g>
</symbol>
<symbol id="icon-hamburger-30" viewBox="0 0 30 30">
<path fill="#FFEEA3" d="M1.64 17.5l.75-3h25.22l.75 3"/>
<path d="M27.22 15l.5 2H2.28l.5-2h24.44m.78-1H2l-1 4h28l-1-4z" fill="#BA9B48"/>
<path fill="#F78F8F" d="M1.61 14.5l.8-4h25.18l.8 4"/>
<path d="M27.18 11l.6 3H2.22l.6-3h24.36m.82-1H2l-1 5h28l-1-5z" fill="#C74343"/>
<path d="M4 26.5c-1.378 0-2.5-1.12-2.5-2.5v-1.793l.708-.707h25.585l.708.707V24c0 1.38-1.12 2.5-2.5 2.5H4z"
fill="#F5CE85"/>
<path d="M27.586 22l.414.414V24c0 1.103-.897 2-2 2H4c-1.103 0-2-.897-2-2v-1.586L2.414 22h25.172M28 21H2l-1 1v2c0 1.657 1.343 3 3 3h22c1.657 0 3-1.343 3-3v-2l-1-1z"
fill="#967A44"/>
<path d="M24 13.5c-1.694 0-4.68-2.087-5.688-2.89l-.267-.214-.296.17c-.928.538-3.59 1.934-4.75 1.934-1.437 0-3.788-.953-3.81-.963l-.18-.073-.18.066c-.743.27-2.878.97-3.83.97H.56c.172-.818.667-1.863.88-2.264L1.85 9.5h26.414l.274.686.795 1.593c-1.032.507-3.668 1.72-5.33 1.72z"
fill="#BAE0BD"/>
<path d="M27.923 10l.148.37.016.04.02.037.55 1.103C27.352 12.164 25.284 13 24 13c-1.375 0-4.027-1.706-5.376-2.782L18.35 10h9.573M17.73 10l-.232.135C16.163 10.91 13.885 12 13 12c-1.107 0-2.99-.668-3.622-.926l-.358-.145-.362.13c-1 .364-2.878.94-3.658.94H1.22c.183-.54.445-1.123.655-1.516L2.143 10H17.73M28.6 9H1.554L1 10s-1 1.866-1 3h5c1.25 0 4-1 4-1s2.45 1 4 1 5-2 5-2 3.757 3 6 3 6-2 6-2l-1-2-.4-1z"
fill="#5E9C76"/>
<path d="M26.352 23.5c-1.778 0-3.047-.897-3.06-.906l-.246-.177-.27.137c-.02.008-1.91.946-3.776.946s-3.757-.938-3.775-.946l-.165-.083-.18.045c-.04.01-4.053.985-6.88.985-2.212 0-5.792-1.22-7.21-1.738.565-.706 1.128-1.114 1.353-1.262h25.65l1.488 1.488c-.69.608-1.936 1.512-2.928 1.512z"
fill="#BAE0BD"/>
<path d="M27.586 21l.954.954c-.663.514-1.537 1.046-2.188 1.046-1.59 0-2.76-.807-2.768-.812l-.492-.354-.54.272c-.495.25-2.095.894-3.552.894-1.742 0-3.534-.885-3.55-.893l-.33-.166-.358.09c-.04.008-3.993.97-6.762.97-1.837 0-4.692-.887-6.34-1.46.258-.253.486-.432.637-.54h25.29M28 20H2s-1.086.605-2 2c0 0 5.078 2 8 2s7-1 7-1 1.986 1 4 1c2.014 0 4-1 4-1s1.392 1 3.352 1C28.037 24 30 22 30 22l-2-2z"
fill="#5E9C76"/>
<g>
<path d="M1.506 9.5c.076-2.13 1.047-6 13.494-6s13.418 3.87 13.494 6H1.506z" fill="#F5CE85"/>
<path d="M15 4c10.956 0 12.68 2.986 12.95 5H2.05C2.32 6.986 4.045 4 15 4m0-1C1.96 3 1 7.24 1 10h28c0-2.76-.96-7-14-7z"
fill="#967A44"/>
</g>
<g>
<path d="M2 20.5c-.827 0-1.5-.673-1.5-1.5s.673-1.5 1.5-1.5h26c.827 0 1.5.673 1.5 1.5s-.673 1.5-1.5 1.5H2z"
fill="#A6714E"/>
<path d="M28 18c.55 0 1 .45 1 1s-.45 1-1 1H2c-.55 0-1-.45-1-1s.45-1 1-1h26m0-1H2c-1.105 0-2 .895-2 2s.895 2 2 2h26c1.105 0 2-.895 2-2s-.895-2-2-2z"
fill="#7A4F34"/>
</g>
<g>
<circle cx="8.5" cy="6.5" r=".5" fill="#967A44"/>
</g>
<g>
<circle cx="10.5" cy="5.5" r=".5" fill="#967A44"/>
</g>
<g>
<circle cx="11.5" cy="7.5" r=".5" fill="#967A44"/>
</g>
</symbol>
<symbol id="icon-hamburger-40" viewBox="0 0 40 40">
<path fill="#FFEEA3" d="M1.654 23.5l1.085-4h34.52l1.086 4"/>
<path d="M36.878 20l.814 3H2.308l.814-3h33.756m.765-1H2.357L1 24h38l-1.357-5z" fill="#BA9B48"/>
<path fill="#F78F8F" d="M1.606 19.5l1.164-6h34.46l1.164 6"/>
<path d="M36.818 14l.97 5H2.21l.97-5h33.636m.825-1H2.357L1 20h38l-1.357-7z" fill="#C74343"/>
<path d="M4 35.5c-1.378 0-2.5-1.12-2.5-2.5v-3.793l.707-.707h35.586l.707.707V33c0 1.38-1.122 2.5-2.5 2.5H4z"
fill="#F5CE85"/>
<path d="M37.586 29l.414.414V33c0 1.103-.897 2-2 2H4c-1.103 0-2-.897-2-2v-3.586L2.414 29h35.172M38 28H2l-1 1v4c0 1.657 1.343 3 3 3h32c1.657 0 3-1.343 3-3v-4l-1-1z"
fill="#967A44"/>
<path d="M32 17.5c-2.795 0-7.66-3.47-7.708-3.506l-.25-.18-.273.143c-1.25.65-4.84 2.343-6.436 2.343-1.954 0-5.13-1.158-5.16-1.17l-.164-.06-.165.054c-.036.012-3.61 1.176-5.178 1.176H.557c.207-1.006.908-2.343 1.207-2.844l.587-.956h35.46l.4.903 1.09 1.967c-1.31.586-4.985 2.13-7.3 2.13z"
fill="#BAE0BD"/>
<path d="M37.484 13l.27.606.017.04.023.04.805 1.45C36.838 15.89 33.853 17 32 17c-2.185 0-6.095-2.463-7.417-3.412l-.5-.36-.546.286c-1.694.884-4.876 2.286-6.204 2.286-1.864 0-4.958-1.127-4.99-1.14l-.325-.12-.33.11c-.98.32-3.788 1.15-5.023 1.15h-5.45c.25-.737.67-1.573.97-2.077L2.63 13h34.854m.65-1H2.07l-.737 1.2S0 15.44 0 16.8h6.666L12 15.6s3.265 1.2 5.334 1.2c2.068 0 6.666-2.4 6.666-2.4s5.01 3.6 8 3.6 8-2.4 8-2.4l-1.333-2.4-.534-1.2z"
fill="#5E9C76"/>
<path d="M35.136 31.5c-2.433 0-4.173-1.153-4.19-1.165l-.235-.158-.256.12c-.025.013-2.583 1.203-5.12 1.203-2.536 0-5.094-1.19-5.12-1.202l-.157-.074-.168.04c-.055.012-5.43 1.236-9.223 1.236-3.075 0-8.09-1.634-9.855-2.243.844-1.028 1.7-1.587 1.987-1.757h34.336l2.12 1.988c-.784.658-2.585 2.012-4.12 2.012z"
fill="#BAE0BD"/>
<path d="M36.938 28l1.558 1.46c-.914.7-2.27 1.54-3.36 1.54-2.253 0-3.897-1.07-3.91-1.08l-.47-.315-.514.24c-.026.012-2.49 1.155-4.91 1.155-2.418 0-4.882-1.143-4.905-1.154l-.313-.148-.338.078c-.053.012-5.37 1.224-9.11 1.224-2.657 0-6.842-1.265-8.974-1.973.522-.53.998-.866 1.25-1.027h33.996m.395-1H2.667S1.22 27.756 0 29.5c0 0 6.77 2.5 10.667 2.5C14.563 32 20 30.75 20 30.75S22.648 32 25.333 32s5.334-1.25 5.334-1.25S32.522 32 35.137 32C37.38 32 40 29.5 40 29.5L37.333 27z"
fill="#5E9C76"/>
<g>
<path d="M1.516 12.5c.5-8 13.06-8 18.484-8 17.374 0 18.432 5.254 18.496 8H1.516z" fill="#F5CE85"/>
<path d="M20 5c15.812 0 17.734 4.326 17.968 7H2.032C2.266 9.326 4.188 5 20 5m0-1C2.304 4 1 9.45 1 13h38c0-3.55-1.304-9-19-9z"
fill="#967A44"/>
</g>
<g>
<path d="M2.5 27.5c-1.103 0-2-.897-2-2s.897-2 2-2h35c1.103 0 2 .897 2 2s-.897 2-2 2h-35z"
fill="#A6714E"/>
<path d="M37.5 24c.827 0 1.5.673 1.5 1.5s-.673 1.5-1.5 1.5h-35c-.827 0-1.5-.673-1.5-1.5S1.673 24 2.5 24h35m0-1h-35C1.12 23 0 24.12 0 25.5S1.12 28 2.5 28h35c1.38 0 2.5-1.12 2.5-2.5S38.88 23 37.5 23z"
fill="#7A4F34"/>
</g>
<g>
<circle cx="14.5" cy="6.5" r=".5" fill="#967A44"/>
</g>
<g>
<circle cx="15.5" cy="9.5" r=".5" fill="#967A44"/>
</g>
<g>
<circle cx="11.5" cy="8.5" r=".5" fill="#967A44"/>
</g>
</symbol>
<symbol id="icon-hamburger-80" viewBox="0 0 80 80">
<path fill="#FFEEA3" d="M2.654 46.5l2.443-9h69.806l2.443 9"/>
<path d="M74.52 38l2.172 8H3.308l2.17-8h69.043m.766-1H4.714L2 47h76l-2.714-10z" fill="#BA9B48"/>
<path fill="#F78F8F" d="M2.606 38.5l2.52-13h69.747l2.52 13"/>
<path d="M74.46 26l2.328 12H3.212L5.54 26h68.92m.826-1H4.714L2 39h76l-2.714-14z" fill="#C74343"/>
<path d="M8 70.5c-3.033 0-5.5-2.468-5.5-5.5v-7.793L4.207 55.5h71.586l1.707 1.707V65c0 3.032-2.467 5.5-5.5 5.5H8z"
fill="#F5CE85"/>
<path d="M75.586 56L77 57.414V65c0 2.757-2.243 5-5 5H8c-2.757 0-5-2.243-5-5v-7.586L4.414 56h71.172M76 55H4l-2 2v8c0 3.314 2.686 6 6 6h64c3.314 0 6-2.686 6-6v-8l-2-2z"
fill="#967A44"/>
<path d="M64 34.5c-5.754 0-15.61-7.035-15.708-7.106l-.25-.18-.273.143c-.092.048-9.136 4.743-13.103 4.743-4 0-10.43-2.345-10.495-2.37l-.163-.06-.166.055c-.073.024-7.297 2.375-10.512 2.375H.53c.282-2.582 2.54-6.402 2.566-6.443L4.422 23.5h71.52l.935 2.104 2.426 4.37c-2.06.94-10.24 4.526-15.303 4.526z"
fill="#BAE0BD"/>
<path d="M75.617 24l.802 1.806.017.04.022.04 2.14 3.855C75.98 30.913 68.63 34 64 34c-5.59 0-15.32-6.942-15.417-7.012l-.5-.36-.546.286C45.04 28.217 37.86 31.6 34.667 31.6c-3.91 0-10.258-2.315-10.322-2.34l-.326-.12-.33.11c-.073.022-7.22 2.35-10.357 2.35H1.115c.41-2.01 1.813-4.685 2.403-5.677L4.702 24h70.915m.65-1H4.143l-1.476 2.4S0 29.88 0 32.6h13.333C16.666 32.6 24 30.2 24 30.2s6.53 2.4 10.667 2.4S48 27.8 48 27.8 58.018 35 64 35s16-4.8 16-4.8l-2.667-4.8-1.066-2.4z"
fill="#5E9C76"/>
<path d="M70.27 62.5c-5 0-8.622-2.39-8.658-2.415l-.235-.158-.257.12c-.052.025-5.263 2.453-10.454 2.453-5.2 0-10.4-2.428-10.453-2.452l-.157-.074-.168.04c-.108.023-10.91 2.486-18.555 2.486-6.67 0-17.796-3.777-20.537-4.745C2.78 55.13 4.97 53.783 5.463 53.5h69.005l4.793 4.493c-1.276 1.12-5.433 4.507-8.99 4.507z"
fill="#BAE0BD"/>
<path d="M74.27 54l4.244 3.977C76.948 59.293 73.35 62 70.27 62c-4.834 0-8.345-2.307-8.378-2.33l-.47-.316-.515.242C60.857 59.62 55.74 62 50.667 62c-5.074 0-10.19-2.38-10.24-2.405l-.314-.148-.337.077C39.668 59.55 28.92 62 21.333 62c-6.15 0-16.18-3.267-19.71-4.486C3.303 55.47 5.027 54.344 5.6 54h68.67m.397-1H5.333S2.437 54.51 0 58c0 0 13.54 5 21.333 5C29.126 63 40 60.5 40 60.5S45.295 63 50.666 63c5.37 0 10.667-2.5 10.667-2.5s3.71 2.5 8.938 2.5c4.495 0 9.73-5 9.73-5l-5.333-5z"
fill="#5E9C76"/>
<g>
<path d="M2.505 24.5c.18-8.025 4.935-17 37.495-17s37.314 8.975 37.495 17H2.505z" fill="#F5CE85"/>
<path d="M40 8c31.42 0 36.598 8.34 36.976 16H3.024C3.402 16.34 8.58 8 40 8m0-1C4.607 7 2 17.9 2 25H78c0-7.1-2.607-18-38-18z"
fill="#967A44"/>
</g>
<g>
<path d="M5 54.5C2.52 54.5.5 52.48.5 50s2.02-4.5 4.5-4.5h70c2.48 0 4.5 2.02 4.5 4.5s-2.02 4.5-4.5 4.5H5z"
fill="#A6714E"/>
<path d="M75 46c2.206 0 4 1.794 4 4s-1.794 4-4 4H5c-2.206 0-4-1.794-4-4s1.794-4 4-4h70m0-1H5c-2.76 0-5 2.24-5 5s2.24 5 5 5h70c2.76 0 5-2.24 5-5s-2.24-5-5-5z"
fill="#7A4F34"/>
</g>
<g>
<circle cx="30" cy="12" r="1" fill="#967A44"/>
</g>
<g>
<circle cx="32" cy="18" r="1" fill="#967A44"/>
</g>
<g>
<circle cx="24" cy="16" r="1" fill="#967A44"/>
</g>
</symbol>
<symbol id="icon-no-gluten-16" viewBox="0 0 16 16">
<path fill="none" stroke="#7A4F34" stroke-linecap="round" stroke-miterlimit="10" d="M.5 15.5L14.02 1.98"/>
<path d="M14.845 3.51c-.65.652-1.706.652-2.357 0s-.65-1.705 0-2.356C13.698-.054 16 0 16 0s-.04 2.396-1.155 3.51zM12.9 7.2c-.778 0-1.41-.63-1.41-1.41s.632-1.408 1.41-1.408c1.445 0 2.79 1.41 2.79 1.41S14.233 7.2 12.9 7.2z"
fill="#967A44"/>
<path d="M10.646 9.454c-.778 0-1.41-.63-1.41-1.41s.632-1.408 1.41-1.408c1.445 0 2.79 1.41 2.79 1.41s-1.457 1.408-2.79 1.408z"
fill="#967A44"/>
<path d="M8.39 11.71c-.777 0-1.408-.632-1.408-1.41s.63-1.41 1.41-1.41c1.444 0 2.79 1.41 2.79 1.41s-1.458 1.41-2.79 1.41z"
fill="#967A44"/>
<path d="M6.137 13.963c-.778 0-1.41-.63-1.41-1.41s.632-1.408 1.41-1.408c1.445 0 2.79 1.41 2.79 1.41s-1.457 1.408-2.79 1.408zM8.8 3.1c0 .778.63 1.41 1.41 1.41s1.408-.632 1.408-1.41c0-1.445-1.41-2.79-1.41-2.79S8.8 1.766 8.8 3.1z"
fill="#967A44"/>
<path d="M6.546 5.354c0 .778.63 1.41 1.41 1.41s1.408-.632 1.408-1.41c0-1.445-1.41-2.79-1.41-2.79S6.547 4.02 6.547 5.354z"
fill="#967A44"/>
<path d="M4.29 7.61c0 .777.632 1.408 1.41 1.408s1.41-.63 1.41-1.41c0-1.444-1.41-2.79-1.41-2.79S4.29 6.276 4.29 7.61z"
fill="#967A44"/>
<path d="M2.037 9.863c0 .778.63 1.41 1.41 1.41s1.408-.632 1.408-1.41c0-1.445-1.41-2.79-1.41-2.79S2.038 8.53 2.038 9.863z"
fill="#967A44"/>
<path fill="none" stroke="#36404D" stroke-miterlimit="10" d="M1 1l14 14"/>
</symbol>
<symbol id="icon-no-gluten-30" viewBox="0 0 30 30">
<path fill="none" stroke="#7A4F34" stroke-linecap="round" stroke-miterlimit="10"
d="M1.5 28.5L25.486 4.514"/>
<path d="M25.5 6.5c-.534 0-1.036-.208-1.414-.586-.78-.78-.78-2.05 0-2.828 1.242-1.242 3.41-1.513 4.382-1.57-.087 1.015-.405 3.25-1.554 4.398-.378.378-.88.586-1.414.586z"
fill="#F5CE85"/>
<path d="M27.91 2.065c-.155 1.135-.534 2.68-1.35 3.495-.283.284-.66.44-1.06.44s-.777-.156-1.06-.44c-.586-.584-.586-1.535 0-2.12.923-.924 2.45-1.256 3.47-1.375M28.932 1c-.488 0-3.537.067-5.2 1.732-.977.976-.977 2.56 0 3.536C24.22 6.756 24.86 7 25.5 7s1.28-.244 1.768-.732C28.94 4.595 29 1 29 1h-.067z"
fill="#967A44"/>
<path d="M23.5 11.5c-1.103 0-2-.897-2-2s.897-2 2-2c1.76 0 3.472 1.33 4.21 1.988-.78.657-2.585 2.012-4.21 2.012z"
fill="#F5CE85"/>
<path d="M23.5 8c1.306 0 2.617.842 3.425 1.482-.91.694-2.27 1.518-3.425 1.518-.827 0-1.5-.673-1.5-1.5S22.673 8 23.5 8m0-1C22.12 7 21 8.12 21 9.5s1.12 2.5 2.5 2.5c2.366 0 4.95-2.5 4.95-2.5S26.064 7 23.5 7z"
fill="#967A44"/>
<path d="M19.5 15.5c-1.103 0-2-.897-2-2s.897-2 2-2c1.76 0 3.472 1.33 4.21 1.988-.78.657-2.585 2.012-4.21 2.012z"
fill="#F5CE85"/>
<path d="M19.5 12c1.305 0 2.616.84 3.424 1.48-.915.695-2.276 1.52-3.424 1.52-.827 0-1.5-.673-1.5-1.5s.673-1.5 1.5-1.5m0-1c-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5c2.366 0 4.95-2.5 4.95-2.5S22.064 11 19.5 11z"
fill="#967A44"/>
<path d="M15.5 19.5c-1.103 0-2-.897-2-2s.897-2 2-2c1.76 0 3.472 1.33 4.21 1.988-.78.657-2.585 2.012-4.21 2.012z"
fill="#F5CE85"/>
<path d="M15.5 16c1.306 0 2.617.842 3.425 1.482-.91.694-2.27 1.518-3.425 1.518-.827 0-1.5-.673-1.5-1.5s.673-1.5 1.5-1.5m0-1c-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5c2.366 0 4.95-2.5 4.95-2.5S18.064 15 15.5 15z"
fill="#967A44"/>
<path d="M11.5 23.5c-1.103 0-2-.897-2-2s.897-2 2-2c1.76 0 3.472 1.33 4.21 1.988-.78.657-2.585 2.012-4.21 2.012z"
fill="#F5CE85"/>
<path d="M11.5 20c1.306 0 2.617.842 3.425 1.482-.91.694-2.27 1.518-3.425 1.518-.827 0-1.5-.673-1.5-1.5s.673-1.5 1.5-1.5m0-1C10.12 19 9 20.12 9 21.5s1.12 2.5 2.5 2.5c2.366 0 4.95-2.5 4.95-2.5S14.064 19 11.5 19z"
fill="#967A44"/>
<path d="M20.5 8.5c-1.103 0-2-.897-2-2 0-1.63 1.355-3.432 2.01-4.21.658.74 1.99 2.456 1.99 4.21 0 1.103-.897 2-2 2z"
fill="#F5CE85"/>
<path d="M20.52 3.076c.64.81 1.48 2.12 1.48 3.424 0 .827-.673 1.5-1.5 1.5S19 7.327 19 6.5c0-1.148.825-2.51 1.52-3.424M20.5 1.55S18 4.134 18 6.5C18 7.88 19.12 9 20.5 9S23 7.88 23 6.5c0-2.564-2.5-4.95-2.5-4.95z"
fill="#967A44"/>
<g>
<path d="M16.5 12.5c-1.103 0-2-.897-2-2 0-1.63 1.355-3.432 2.01-4.21.658.74 1.99 2.456 1.99 4.21 0 1.103-.897 2-2 2z"
fill="#F5CE85"/>
<path d="M16.52 7.076c.64.81 1.48 2.12 1.48 3.424 0 .827-.673 1.5-1.5 1.5s-1.5-.673-1.5-1.5c0-1.148.825-2.51 1.52-3.424M16.5 5.55S14 8.134 14 10.5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5c0-2.564-2.5-4.95-2.5-4.95z"
fill="#967A44"/>
</g>
<g>
<path d="M12.5 16.5c-1.103 0-2-.897-2-2 0-1.63 1.355-3.432 2.01-4.21.658.74 1.99 2.456 1.99 4.21 0 1.103-.897 2-2 2z"
fill="#F5CE85"/>
<path d="M12.52 11.076c.64.81 1.48 2.12 1.48 3.424 0 .827-.673 1.5-1.5 1.5s-1.5-.673-1.5-1.5c0-1.148.825-2.51 1.52-3.424M12.5 9.55S10 12.134 10 14.5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5c0-2.564-2.5-4.95-2.5-4.95z"
fill="#967A44"/>
</g>
<g>
<path d="M8.5 20.5c-1.103 0-2-.897-2-2 0-1.63 1.355-3.432 2.01-4.21.658.74 1.99 2.456 1.99 4.21 0 1.103-.897 2-2 2z"
fill="#F5CE85"/>
<path d="M8.52 15.076c.64.81 1.48 2.12 1.48 3.424 0 .827-.673 1.5-1.5 1.5S7 19.327 7 18.5c0-1.148.825-2.51 1.52-3.424M8.5 13.55S6 16.134 6 18.5C6 19.88 7.12 21 8.5 21s2.5-1.12 2.5-2.5c0-2.564-2.5-4.95-2.5-4.95z"
fill="#967A44"/>
</g>
<g>
<path d="M7.5 27.5c-1.103 0-2-.897-2-2s.897-2 2-2c1.76 0 3.472 1.33 4.21 1.988-.78.657-2.585 2.012-4.21 2.012z"
fill="#F5CE85"/>
<path d="M7.5 24c1.306 0 2.617.842 3.425 1.482C10.015 26.176 8.655 27 7.5 27c-.827 0-1.5-.673-1.5-1.5S6.673 24 7.5 24m0-1C6.12 23 5 24.12 5 25.5S6.12 28 7.5 28c2.366 0 4.95-2.5 4.95-2.5S10.064 23 7.5 23z"
fill="#967A44"/>
</g>
<g>
<path d="M4.5 24.5c-1.103 0-2-.897-2-2 0-1.63 1.355-3.432 2.01-4.21.658.74 1.99 2.456 1.99 4.21 0 1.103-.897 2-2 2z"
fill="#F5CE85"/>
<path d="M4.52 19.076c.64.81 1.48 2.12 1.48 3.424 0 .827-.673 1.5-1.5 1.5S3 23.327 3 22.5c0-1.148.825-2.51 1.52-3.424M4.5 17.55S2 20.134 2 22.5C2 23.88 3.12 25 4.5 25S7 23.88 7 22.5c0-2.564-2.5-4.95-2.5-4.95z"
fill="#967A44"/>
</g>
<path fill="none" stroke="#36404D" stroke-miterlimit="10" d="M3 3l24 24"/>
</symbol>
<symbol id="icon-no-gluten-40" viewBox="0 0 40 40">
<path fill="none" stroke="#7A4F34" stroke-linecap="round" stroke-miterlimit="10"
d="M1.5 38.5L34.208 5.794"/>
<path d="M34.228 8.683c-.777 0-1.508-.303-2.057-.853s-.85-1.28-.85-2.057.302-1.507.85-2.057c1.832-1.83 5.084-2.15 6.303-2.205-.094 1.285-.497 4.63-2.188 6.32-.55.55-1.28.853-2.057.853z"
fill="#F5CE85"/>
<path d="M37.927 2.047c-.176 1.62-.705 4.138-1.996 5.43-.454.455-1.06.706-1.702.706-.643 0-1.248-.25-1.703-.706-.455-.455-.706-1.06-.706-1.703s.25-1.248.705-1.703c1.48-1.48 3.998-1.903 5.402-2.023M38.91 1c-.667 0-4.823.093-7.093 2.363-1.33 1.33-1.33 3.49 0 4.82.666.667 1.538 1 2.41 1 .873 0 1.746-.333 2.412-1C38.92 5.904 39 1.002 39 1.002h-.09z"
fill="#967A44"/>
<path d="M31.5 15.5c-1.604 0-2.91-1.304-2.91-2.908s1.306-2.91 2.91-2.91c2.583 0 5.09 2.053 6.015 2.898-.974.842-3.624 2.92-6.015 2.92z"
fill="#F5CE85"/>
<path d="M31.5 10.183c2.09 0 4.162 1.472 5.248 2.387-1.143.922-3.31 2.43-5.248 2.43-1.328 0-2.41-1.08-2.41-2.408s1.082-2.41 2.41-2.41m0-1c-1.883 0-3.41 1.527-3.41 3.41s1.527 3.41 3.41 3.41c3.226 0 6.75-3.41 6.75-3.41s-3.253-3.41-6.75-3.41z"
fill="#967A44"/>
<path d="M26.045 20.955c-1.604 0-2.91-1.305-2.91-2.91s1.306-2.908 2.91-2.908c2.583 0 5.09 2.052 6.015 2.897-.974.842-3.623 2.92-6.015 2.92z"
fill="#F5CE85"/>
<path d="M26.045 15.637c2.09 0 4.162 1.472 5.248 2.387-1.143.922-3.31 2.43-5.248 2.43-1.328 0-2.41-1.08-2.41-2.408s1.082-2.41 2.41-2.41m0-1c-1.883 0-3.41 1.527-3.41 3.41 0 1.883 1.527 3.41 3.41 3.41 3.226 0 6.75-3.41 6.75-3.41s-3.253-3.41-6.75-3.41z"
fill="#967A44"/>
<path d="M20.59 26.41c-1.603 0-2.908-1.305-2.908-2.91s1.305-2.908 2.91-2.908c2.582 0 5.09 2.052 6.015 2.897-.976.84-3.625 2.92-6.016 2.92z"
fill="#F5CE85"/>
<path d="M20.59 21.092c2.09 0 4.163 1.472 5.25 2.387-1.144.92-3.31 2.43-5.25 2.43-1.327 0-2.408-1.08-2.408-2.41s1.08-2.408 2.41-2.408m0-1c-1.884 0-3.41 1.526-3.41 3.41s1.526 3.408 3.41 3.408c3.225 0 6.75-3.41 6.75-3.41s-3.255-3.408-6.75-3.408z"
fill="#967A44"/>
<path d="M15.136 31.864c-1.604 0-2.91-1.305-2.91-2.91s1.306-2.908 2.91-2.908c2.583 0 5.092 2.052 6.016 2.897-.975.842-3.625 2.92-6.016 2.92z"
fill="#F5CE85"/>
<path d="M15.136 26.546c2.09 0 4.162 1.472 5.248 2.387-1.143.922-3.31 2.43-5.248 2.43-1.328 0-2.41-1.08-2.41-2.408s1.082-2.41 2.41-2.41m0-1c-1.883 0-3.41 1.527-3.41 3.41s1.527 3.41 3.41 3.41c3.226 0 6.75-3.41 6.75-3.41s-3.253-3.41-6.75-3.41z"
fill="#967A44"/>
<path d="M27.41 11.41c-1.605 0-2.91-1.305-2.91-2.91 0-2.395 2.08-5.042 2.92-6.016.847.924 2.898 3.433 2.898 6.017 0 1.605-1.305 2.91-2.91 2.91z"
fill="#F5CE85"/>
<path d="M27.43 3.253C28.348 4.34 29.82 6.41 29.82 8.5c0 1.33-1.08 2.41-2.41 2.41S25 9.83 25 8.5c0-1.938 1.51-4.104 2.43-5.247m-.02-1.502S24 5.276 24 8.5c0 1.884 1.526 3.41 3.41 3.41s3.408-1.526 3.408-3.41c0-3.496-3.41-6.75-3.41-6.75z"
fill="#967A44"/>
<g>
<path d="M21.955 16.864c-1.604 0-2.91-1.305-2.91-2.91 0-2.395 2.08-5.04 2.922-6.015.845.923 2.897 3.432 2.897 6.015 0 1.605-1.305 2.91-2.91 2.91z"
fill="#F5CE85"/>
<path d="M21.98 8.703c1.01 1.202 2.384 3.28 2.384 5.252 0 1.328-1.08 2.41-2.41 2.41s-2.408-1.082-2.408-2.41c0-1.94 1.512-4.11 2.434-5.252m-.025-1.497s-3.41 3.524-3.41 6.75c0 1.883 1.527 3.41 3.41 3.41s3.41-1.527 3.41-3.41c0-3.497-3.41-6.75-3.41-6.75z"
fill="#967A44"/>
</g>
<g>
<path d="M16.5 22.32c-1.604 0-2.91-1.306-2.91-2.91 0-2.392 2.08-5.04 2.922-6.016.845.924 2.897 3.433 2.897 6.016 0 1.605-1.306 2.91-2.91 2.91z"
fill="#F5CE85"/>
<path d="M16.525 14.158c1.01 1.202 2.384 3.28 2.384 5.252 0 1.328-1.082 2.41-2.41 2.41s-2.41-1.082-2.41-2.41c0-1.94 1.513-4.11 2.435-5.252M16.5 12.66s-3.41 3.524-3.41 6.75c0 1.883 1.527 3.41 3.41 3.41s3.41-1.527 3.41-3.41c0-3.497-3.41-6.75-3.41-6.75z"
fill="#967A44"/>
</g>
<g>
<path d="M11.045 27.773c-1.604 0-2.91-1.305-2.91-2.91 0-2.395 2.08-5.04 2.922-6.015.845.924 2.897 3.433 2.897 6.016 0 1.605-1.305 2.91-2.91 2.91z"
fill="#F5CE85"/>
<path d="M11.07 19.612c1.01 1.202 2.385 3.28 2.385 5.252 0 1.328-1.08 2.41-2.41 2.41s-2.408-1.082-2.408-2.41c0-1.94 1.512-4.11 2.434-5.252m-.025-1.497s-3.41 3.524-3.41 6.75c0 1.883 1.527 3.41 3.41 3.41s3.41-1.527 3.41-3.41c0-3.497-3.41-6.75-3.41-6.75z"
fill="#967A44"/>
</g>
<g>
<path d="M9.682 37.32c-1.604 0-2.91-1.306-2.91-2.91s1.306-2.91 2.91-2.91c2.583 0 5.092 2.053 6.016 2.898-.975.842-3.625 2.92-6.016 2.92z"
fill="#F5CE85"/>
<path d="M9.682 32c2.092 0 4.166 1.476 5.25 2.39-1.268 1.022-3.423 2.43-5.25 2.43-1.328 0-2.41-1.082-2.41-2.41S8.353 32 9.683 32m0-1c-1.883 0-3.41 1.527-3.41 3.41 0 1.883 1.527 3.41 3.41 3.41 3.226 0 6.75-3.41 6.75-3.41S13.178 31 9.682 31z"
fill="#967A44"/>
</g>
<g>
<path d="M5.59 33.228c-1.603 0-2.908-1.305-2.908-2.908 0-2.392 2.08-5.04 2.92-6.016.846.924 2.898 3.432 2.898 6.015 0 1.603-1.305 2.908-2.91 2.908z"
fill="#F5CE85"/>
<path d="M5.616 25.067C6.626 26.27 8 28.347 8 30.32c0 1.327-1.08 2.408-2.41 2.408s-2.408-1.08-2.408-2.41c0-1.94 1.512-4.11 2.434-5.25m-.025-1.5s-3.408 3.525-3.408 6.75c0 1.884 1.526 3.41 3.41 3.41S9 32.202 9 30.318c0-3.496-3.41-6.75-3.41-6.75z"
fill="#967A44"/>
</g>
<path fill="none" stroke="#36404D" stroke-miterlimit="10" d="M3 3l34 34"/>
</symbol>
<symbol id="icon-no-gluten-80" viewBox="0 0 80 80">
<path fill="none" stroke="#7A4F34" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10"
d="M3 77l66.288-66.287"/>
<path d="M68.667 17.5c-1.647 0-3.195-.642-4.36-1.807S62.5 12.98 62.5 11.333s.643-3.195 1.807-4.36c4.01-4.01 11.33-4.428 13.17-4.47-.11 2.02-.764 9.504-4.45 13.19-1.164 1.165-2.713 1.807-4.36 1.807z"
fill="#F5CE85"/>
<path d="M76.944 3.022c-.187 2.527-.98 9.028-4.27 12.318-1.07 1.07-2.493 1.66-4.007 1.66-1.513 0-2.936-.59-4.007-1.66-2.21-2.21-2.21-5.804 0-8.013 3.563-3.563 9.884-4.195 12.284-4.305M77.822 2c-1.302 0-9.43.18-13.868 4.62-2.603 2.602-2.603 6.823 0 9.426 1.302 1.302 3.008 1.952 4.714 1.952 1.706 0 3.412-.65 4.714-1.952C77.842 11.586 78 2 78 2s-.062 0-.178 0z"
fill="#967A44"/>
<path d="M63.926 32.648c-3.502 0-6.352-2.85-6.352-6.352s2.85-6.352 6.352-6.352c5.813 0 11.39 4.95 12.84 6.34-1.532 1.375-7.465 6.364-12.84 6.364z"
fill="#F5CE85"/>
<path d="M63.926 20.445c5.197 0 10.243 4.13 12.098 5.828-1.956 1.69-7.287 5.876-12.098 5.876-3.227 0-5.852-2.626-5.852-5.853s2.625-5.852 5.852-5.852m0-1c-3.784 0-6.852 3.068-6.852 6.852 0 3.784 3.068 6.852 6.852 6.852 6.483 0 13.566-6.853 13.566-6.853s-6.54-6.852-13.566-6.852z"
fill="#967A44"/>
<path d="M52.963 43.612c-3.502 0-6.352-2.85-6.352-6.353 0-3.503 2.85-6.353 6.353-6.353 5.813 0 11.39 4.95 12.84 6.34-1.532 1.375-7.465 6.365-12.84 6.365z"
fill="#F5CE85"/>
<path d="M52.963 31.408c5.197 0 10.243 4.13 12.098 5.828-1.955 1.69-7.286 5.876-12.097 5.876-3.227 0-5.852-2.625-5.852-5.852s2.626-5.852 5.853-5.852m0-1c-3.784 0-6.852 3.068-6.852 6.852s3.07 6.852 6.853 6.852c6.483 0 13.566-6.852 13.566-6.852s-6.54-6.852-13.567-6.852z"
fill="#967A44"/>
<path d="M42 54.575c-3.502 0-6.352-2.85-6.352-6.353 0-3.502 2.85-6.352 6.352-6.352 5.813 0 11.39 4.95 12.84 6.34-1.53 1.375-7.465 6.365-12.84 6.365z"
fill="#F5CE85"/>
<path d="M42 42.37c5.197 0 10.243 4.13 12.098 5.83-1.956 1.69-7.287 5.875-12.098 5.875-3.227 0-5.852-2.625-5.852-5.852S38.773 42.37 42 42.37m0-1c-3.784 0-6.852 3.07-6.852 6.853s3.068 6.852 6.852 6.852c6.483 0 13.566-6.852 13.566-6.852S49.028 41.37 42 41.37z"
fill="#967A44"/>
<path d="M31.037 65.538c-3.502 0-6.352-2.85-6.352-6.353 0-3.502 2.85-6.352 6.352-6.352 5.813 0 11.39 4.95 12.84 6.34-1.53 1.375-7.464 6.365-12.84 6.365z"
fill="#F5CE85"/>
<path d="M31.037 53.334c5.198 0 10.245 4.13 12.098 5.828-1.954 1.69-7.278 5.875-12.098 5.875-3.227 0-5.852-2.625-5.852-5.852s2.625-5.85 5.852-5.85m0-1c-3.784 0-6.852 3.067-6.852 6.85s3.068 6.853 6.852 6.853c6.483 0 13.566-6.852 13.566-6.852s-6.538-6.852-13.566-6.852z"
fill="#967A44"/>
<path d="M53.704 22.427c-3.502 0-6.352-2.85-6.352-6.352 0-5.38 4.99-11.31 6.364-12.842 1.39 1.45 6.34 7.028 6.34 12.842 0 3.502-2.85 6.352-6.352 6.352z"
fill="#F5CE85"/>
<path d="M53.728 3.977c1.698 1.854 5.828 6.9 5.828 12.098 0 3.227-2.625 5.852-5.852 5.852s-5.852-2.625-5.852-5.852c0-4.81 4.185-10.142 5.876-12.098m-.024-1.468s-6.852 7.082-6.852 13.565c0 3.784 3.068 6.852 6.852 6.852s6.852-3.068 6.852-6.852c0-7.028-6.852-13.566-6.852-13.566z"
fill="#967A44"/>
<g>
<path d="M42.74 33.39c-3.5 0-6.35-2.85-6.35-6.352 0-5.376 4.99-11.31 6.364-12.842 1.39 1.45 6.34 7.028 6.34 12.842 0 3.502-2.85 6.352-6.353 6.352z"
fill="#F5CE85"/>
<path d="M42.765 14.94c1.698 1.854 5.828 6.9 5.828 12.098 0 3.227-2.625 5.852-5.852 5.852s-5.85-2.625-5.85-5.852c0-4.81 4.185-10.142 5.875-12.098m-.024-1.468s-6.85 7.083-6.85 13.566c0 3.784 3.067 6.852 6.85 6.852 3.785 0 6.853-3.068 6.853-6.852 0-7.028-6.852-13.566-6.852-13.566z"
fill="#967A44"/>
</g>
<g>
<path d="M31.778 44.353c-3.502 0-6.352-2.85-6.352-6.352 0-5.375 4.99-11.308 6.365-12.84 1.39 1.45 6.34 7.028 6.34 12.84 0 3.503-2.85 6.353-6.352 6.353z"
fill="#F5CE85"/>
<path d="M31.802 25.903C33.5 27.757 37.63 32.803 37.63 38c0 3.228-2.625 5.853-5.852 5.853S25.926 41.228 25.926 38c0-4.81 4.186-10.14 5.876-12.097m-.024-1.468S24.926 31.518 24.926 38c0 3.785 3.068 6.853 6.852 6.853 3.784 0 6.852-3.068 6.852-6.852 0-7.027-6.852-13.565-6.852-13.565z"
fill="#967A44"/>
</g>
<g>
<path d="M20.815 55.315c-3.502 0-6.352-2.85-6.352-6.352 0-5.376 4.99-11.31 6.365-12.842 1.39 1.45 6.34 7.03 6.34 12.843 0 3.503-2.85 6.352-6.353 6.352z"
fill="#F5CE85"/>
<path d="M20.84 36.865c1.698 1.85 5.827 6.89 5.827 12.1 0 3.226-2.625 5.85-5.852 5.85s-5.852-2.624-5.852-5.85c0-4.813 4.187-10.144 5.877-12.1m-.025-1.467s-6.852 7.083-6.852 13.566c0 3.784 3.068 6.852 6.852 6.852 3.784 0 6.852-3.068 6.852-6.852 0-7.028-6.852-13.566-6.852-13.566z"
fill="#967A44"/>
</g>
<g>
<path d="M20.074 76.5c-3.502 0-6.352-2.85-6.352-6.352 0-3.502 2.85-6.352 6.352-6.352 5.813 0 11.39 4.95 12.84 6.34-1.53 1.375-7.464 6.365-12.84 6.365z"
fill="#F5CE85"/>
<path d="M20.074 64.297c5.197 0 10.243 4.13 12.098 5.828C30.216 71.815 24.885 76 20.074 76c-3.227 0-5.852-2.624-5.852-5.85 0-3.228 2.625-5.853 5.852-5.853m0-1c-3.784 0-6.852 3.068-6.852 6.852S16.29 77 20.074 77c6.483 0 13.566-6.85 13.566-6.85s-6.538-6.853-13.566-6.853z"
fill="#967A44"/>
</g>
<g>
<path d="M9.852 66.278c-3.502 0-6.352-2.85-6.352-6.352 0-5.376 4.99-11.31 6.365-12.842 1.39 1.45 6.34 7.03 6.34 12.842 0 3.503-2.85 6.352-6.353 6.352z"
fill="#F5CE85"/>
<path d="M9.876 47.83c1.698 1.853 5.828 6.9 5.828 12.097 0 3.227-2.625 5.852-5.852 5.852S4 63.152 4 59.926c0-4.81 4.186-10.142 5.876-12.098m-.024-1.47S3 53.445 3 59.928c0 3.784 3.068 6.852 6.852 6.852s6.852-3.07 6.852-6.853c0-7.028-6.852-13.566-6.852-13.566z"
fill="#967A44"/>
</g>
<path fill="none" stroke="#36404D" stroke-miterlimit="10" d="M6 6l68 68"/>
</symbol>
<symbol id="icon-olive-16" viewBox="0 0 16 16">
<path d="M7.364 6.324c-2.212 0-3.764-.944-4.624-2.81 3.306.13 4.938 1.145 6.11 2.666-.384.074-.905.144-1.486.144z"
fill="#BAE0BD"/>
<path d="M3.638 4.075c2.044.204 3.29.815 4.22 1.732-.157.01-.322.018-.493.018-1.66 0-2.907-.588-3.727-1.75M2 3c1.07 3.167 3.517 3.825 5.365 3.825 1.31 0 2.32-.33 2.32-.33C8.23 4.28 6.292 3 2 3z"
fill="#5E9C76"/>
<path d="M10.474 5.238c-.52-.28-1.396-.874-1.777-1.85-.31-.796-.245-1.72.198-2.747.828.388 1.457 1.008 1.754 1.746.328.818.266 1.797-.176 2.852z"
fill="#BAE0BD"/>
<path d="M9.16 1.362c.477.32.834.737 1.025 1.21.226.562.235 1.203.028 1.916-.393-.285-.823-.706-1.048-1.276-.212-.538-.213-1.158-.004-1.85M8.645 0c-2.226 4.348 2.072 5.903 2.072 5.903C12.3 2.793 10.716.72 8.644 0z"
fill="#5E9C76"/>
<path d="M5.177 9.536C9.03 4.69 15.5 4.5 15.5 4.5M11.975 10.412c-2.507-3.39.428-5.382.428-5.382" fill="none"
stroke="#967A44" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/>
<path d="M2.975 15.5c-.348 0-.68-.073-.987-.217C.556 14.61.074 12.593.91 10.78 1.54 9.418 2.794 8.5 4.026 8.5c.348 0 .68.073.987.217 1.432.672 1.914 2.69 1.077 4.502-.63 1.363-1.883 2.28-3.115 2.28z"
fill="#C1CFE0"/>
<path d="M4.026 9c.274 0 .535.057.775.17 1.183.555 1.558 2.277.836 3.84C5.086 14.2 4.016 15 2.974 15c-.274 0-.535-.057-.775-.17-1.183-.555-1.558-2.277-.836-3.84C1.914 9.8 2.984 9 4.026 9m0-1c-1.393 0-2.834.98-3.57 2.57-.953 2.064-.363 4.376 1.318 5.165.383.18.79.265 1.2.265 1.393 0 2.834-.98 3.57-2.57.953-2.064.363-4.376-1.318-5.165-.383-.18-.79-.265-1.2-.265z"
fill="#66798F"/>
<path d="M3.5 10.5s-.578 0-1 1" fill="none" stroke="#FFF" stroke-linecap="round" stroke-miterlimit="10"/>
<g>
<path d="M12.827 15.5c-1.462 0-2.813-1.228-3.213-2.92-.242-1.025-.092-2.068.414-2.86.393-.616.976-1.03 1.642-1.17.165-.032.335-.05.504-.05 1.462 0 2.813 1.228 3.213 2.92.242 1.025.092 2.068-.414 2.86-.393.616-.976 1.03-1.642 1.17-.164.032-.334.05-.503.05z"
fill="#C1CFE0"/>
<path d="M12.174 9c1.213 0 2.385 1.09 2.726 2.535.212.895.084 1.798-.35 2.478-.225.354-.637.806-1.32.947-.133.026-.268.04-.403.04-1.213 0-2.385-1.09-2.726-2.535-.21-.895-.083-1.798.35-2.478.226-.354.638-.806 1.322-.947.13-.026.267-.04.402-.04m0-1c-.2 0-.403.02-.605.062-1.864.384-2.957 2.46-2.443 4.634.46 1.94 2.04 3.304 3.7 3.304.2 0 .403-.02.605-.062 1.863-.384 2.956-2.46 2.442-4.634-.46-1.94-2.04-3.304-3.7-3.304z"
fill="#66798F"/>
</g>
<path d="M11.5 10.5s-.304.445 0 1" fill="none" stroke="#FFF" stroke-linecap="round" stroke-miterlimit="10"/>
</symbol>
<symbol id="icon-olive-30" viewBox="0 0 30 30">
<path d="M13.725 12.055c-3.154 0-7.272-.97-9.412-5.456 5.718.125 9.236 1.686 11.836 5.262-.566.09-1.42.193-2.425.193z"
fill="#BAE0BD"/>
<path d="M5.156 7.125c4.075.182 7.42 1.162 10.063 4.354-.434.042-.94.074-1.497.074-2.82 0-6.45-.81-8.567-4.43m-1.61-1.033c2.18 5.454 6.947 6.464 10.178 6.464 1.9 0 3.27-.35 3.27-.35-2.546-3.87-6.062-6.113-13.45-6.113z"
fill="#5E9C76"/>
<path d="M18.532 10.635c-1.176-.742-4.25-3.273-3.05-8.96 1.655.706 2.915 1.91 3.5 3.36.65 1.61.492 3.538-.45 5.6z"
fill="#BAE0BD"/>
<path d="M15.857 2.406c1.25.668 2.195 1.657 2.66 2.816.547 1.356.48 2.914-.2 4.64-1.19-.945-3.136-3.192-2.46-7.456M15.127 1c-1.95 7.774 3.625 10.33 3.625 10.33 2.77-5.44 0-9.07-3.626-10.33z"
fill="#5E9C76"/>
<path d="M9.948 17.383C16.36 9.4 26.5 9.5 26.5 9.5M20.957 19.22c-4.387-5.93.34-8.897.34-8.897" fill="none"