-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.html
915 lines (826 loc) · 58.4 KB
/
search.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="css/fonts.css">
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" type="image/png" href="images/favicon.png" />
<script src="scripts/jquery-3.4.1.min.js"></script>
<script src="scripts/skinfo.js"></script>
<script src="scripts/searchTexts.js"></script>
<script src="scripts/numberToText.js"></script>
<script src="scripts/search.js"></script>
<script src="scripts/instafeed.min.js"></script>
<script src="scripts/tracking.js"></script>
<title>Skinfo</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0 user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="google" content="nositelinkssearchbox" />
<meta name="description" content="Understand all ingredients in skincare & cosmetic products with Skinfo, based on scientific information. Product transparency for consumers and online stores." />
<meta name="keywords" content="information, ingredients, skincare, cosmetics, makeup, skincare app, skincare guide, health hazard, harmful, bad, carcinogenic, endocrine disruption, toxic, irritant, allergic, allergy, effects, health effects, organic, vegan, natural, synthetic, chemical, spf, sun protection factor,information,ingredienser,hudvård,kosmetika,smink,hudvårdsapp,kosmetik,hudvårdsguide,farliga,dåliga,skadliga,cancerframkallande,hormonstörande,giftiga,irriterande,allergiska,allergi,påverkan,hälsoeffekter,organiska,ekologiska,veganska,naturliga,syntetiska,kemiska,spf">
<meta property="og:site_name" content="Skinfo.se" />
<meta property="og:url" content="https://www.skinfo.se/" />
<meta charset="utf-8" />
</head>
<body>
<div class="page-container">
<div class="content">
<div id="main-menu" class="main-menu one-edge-shadow">
<div class="skinfo-menu">
<span class="skinfo-title"><img class="noselect" src="svg/skinfo-logo-color-RGB.svg" height="20px"></span>
<div style="float: right;">
<!-- <a class="menu-button" href="https://www.askskinfo.com" target="_blank" style="font-weight: bold !important">askskinfo.com</a>
<span>|</span> -->
<a class="menu-button" href="howitworks">How it works</a>
<a class="menu-button" href="price">Price</a>
<a class="menu-button" href="search">Ingredient search</a>
<a class="menu-button blackbackgroundcolor" style="padding-top:15px; padding-bottom: 13px; padding-left: 25px; padding-right: 25px; color:white !important; border-radius: 0.5rem; text-align: center;" href="https://apps.shopify.com/skinfo" target="_blank">Start free trial</a>
</div>
</div>
<div id="skinfo-menu-mobile" class="skinfo-menu-mobile">
<span class="skinfo-title"><img class="noselect" src="svg/skinfo-logo-color-RGB.svg" height="20px" style="padding-top:10px"></span>
<div id="skinfo-menu-mobile-button" style="float: right; padding-right: 20px;">
<div class="bar1"></div>
<div class="bar2"></div>
<div class="bar3"></div>
</div>
</div>
<div id="skinfo-menu-mobile-expanded" style="display: none; width: 100%;">
<span class="menu-title">Browse by Ingredients</span>
<span class="menu-button menu-browse-button" data-lvl="0">Acids</span>
<span class="menu-button menu-browse-button" data-lvl="1" style="display: none;">AHA</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Citric Acid</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Glycolic Acid</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Lactic Acid</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Malic Acid</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Mandelic Acid</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Tartaric Acid</span>
<span class="menu-button menu-browse-button" data-lvl="1" style="display: none;">BHA</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Salicylic Acid</span>
<span class="menu-button menu-browse-button" data-lvl="1" style="display: none;">PHA</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Galactonolactone</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Galactose</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Gluconic Acid</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Gluconolactone</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Lactobionic Acid</span>
<span class="menu-button menu-browse-button" data-lvl="0">Allergenic</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">1,6-Octadien-3-Ol, 3,7-Dimethyl-</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">2-(4-Tert-Butylbenzyl)propionaldehyde</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">2,6,10-Dodecatrien-1-Ol, 3,7,11-Trimethyl</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">2,6-Octadien-1-Ol, 3,7-Dimethyl-, (2E)</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">2-Benzylideneheptanal</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">2-Benzylideneoctanal</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">2H-1-Benzopyran-2-One</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">2-Pentyl-3-Phenylprop-2-En-1-Ol</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">2-Propenal, 3-Phenyl</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">2-Propenoic Acid, 3-Phenyl-, Phenylmethyl Ester</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">3,7-Dimethyl-2,6-Octadienal</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">3-Methyl-4-(2,6,6-Trimethyl-2-Cyclohexen-1-Yl)-3-Buten-2-One</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">4-Methoxybenzyl Alcohol</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">Alpha-Isomethyl Ionone</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">Amyl
Cinnamal</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">Amylcinnamyl Alcohol</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">Anise Alcohol</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">Benzyl Alcohol</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">Benzyl Alcohol (7)</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">Benzyl Benzoate</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">Benzyl Cinnamate</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">Benzyl Salicylate</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">Butylphenyl Methylpropional</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">Cinnamal</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">Cinnamyl Alcohol</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">Citral</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">Citronellol</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">Coumarin</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">Eugenol</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">Farnesol</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">Geraniol</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">Hexyl Cinnamal</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">Hydroxycitronellal</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">Isoeugenol</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">Linalool</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">Methyl 2-Octynoate</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">Phenol, 2-Methoxy-4-(2-Propenyl)</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="1" style="display: none;">Treemoss Extract</span>
<span class="menu-button menu-browse-button" data-lvl="0">Vitamins</span>
<span class="menu-button menu-browse-button" data-lvl="1" style="display: none;">Vitamin A</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Cis-Retinoic Acid</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Retinal</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Retinol</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Retinyl Acetate</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Retinyl Oleate</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Retinyl Palmitate</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Retinyl Propionate</span>
<span class="menu-button menu-browse-button" data-lvl="1" style="display: none;">Vitamin B</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Folic Acid</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Niacin</span>
<span class="menu-button menu-browse-button" data-lvl="1" style="display: none;">Vitamin B12</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Cyanocobalamin</span>
<span class="menu-button menu-browse-button" data-lvl="1" style="display: none;">Vitamin B2</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Lactoflavin</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Riboflavin</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Riboflavin Tetraacetate</span>
<span class="menu-button menu-browse-button" data-lvl="1" style="display: none;">Vitamin B3</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Niacinamide</span>
<span class="menu-button menu-browse-button" data-lvl="1" style="display: none;">Vitamin B4</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Adenine</span>
<span class="menu-button menu-browse-button" data-lvl="1" style="display: none;">Vitamin B5</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Calcium Pantothenate</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Panthenol</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Pantothenic Acid</span>
<span class="menu-button menu-browse-button" data-lvl="1" style="display: none;">Vitamin B6</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Pyridoxal 5-Phosphate</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Pyridoxine</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Pyridoxine Dilaurate</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Pyridoxine Dioctenoate</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Pyridoxine Dipalmitate</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Pyridoxine Tripalmitate</span>
<span class="menu-button menu-browse-button" data-lvl="1" style="display: none;">Vitamin B7</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Biotin</span>
<span class="menu-button menu-browse-button" data-lvl="1" style="display: none;">Vitamin C</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Ascorbic Acid</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Ascorbyl Palmitate</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Sodium Ascorbate</span>
<span class="menu-button menu-browse-button" data-lvl="1" style="display: none;">Vitamin D</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">7-Dehydrocholesterol</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Cholesterol</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Ergosterol</span>
<span class="menu-button menu-browse-button" data-lvl="1" style="display: none;">Vitamin D2</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Ergocalciferol</span>
<span class="menu-button menu-browse-button" data-lvl="1" style="display: none;">Vitamin E</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Tocopherol</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Tocopheryl Acetate</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Tocopheryl Linoleate</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Tocopheryl Nicotinate</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Tocopheryl Succinate</span>
<span class="menu-button menu-browse-button" data-lvl="1" style="display: none;">Vitamin K1</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Phytonadione Epoxide</span>
<span class="menu-button menu-browse-button" data-lvl="1" style="display: none;">Vitamin K1</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Menaquinone-7</span>
<span class="menu-button menu-browse-button" data-lvl="1" style="display: none;">Vitamin K1</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Menadione</span>
<span class="menu-button menu-browse-button" data-lvl="1" style="display: none;">Vitamin U</span>
<span class="menu-button menu-browse-button seo-ingredient" data-lvl="2" style="display: none;">Methylmethionine</span>
<span class="menu-button menu-break"></span>
<span class="menu-title">For Business</span>
<a class="menu-button" href="https://www.askskinfo.com" target="_blank" style="font-weight: bold !important; border-bottom: 1px solid black;">askskinfo.com</a>
<a class="menu-button" href="howitworks">How it works</a>
<a class="menu-button" href="price">Price</a>
<a class="menu-button one-edge-shadow" href="search">Ingredient search</a>
</div>
</div>
<!-- svg symbols start-->
<svg style="display: none">
<symbol id="MINERAL" viewBox="0 0 24 24" style="fill:#8F8F8F">
<path d="M22,19.541h-.655l-7.711-7.7a2.26,2.26,0,0,0-3.192,0l-7.7,7.7H2a.6.6,0,0,0,0,1.2h.946a.588.588,0,0,0,.082,0H21.056l.042,0,.041,0H22a.6.6,0,0,0,0-1.2Zm-17.563,0,6.853-6.853a1.059,1.059,0,0,1,1.5,0l6.86,6.853Zm5.726-3.195a.5.5,0,1,1-.707,0A.5.5,0,0,1,10.163,16.346Zm1.558-1.558a.5.5,0,1,1-.707,0A.5.5,0,0,1,11.721,14.789ZM8.594,17.915a.5.5,0,1,1-.707,0A.5.5,0,0,1,8.594,17.915ZM9.6,7.56a.5.5,0,1,1,.5.5A.5.5,0,0,1,9.6,7.56Zm0,2.219a.5.5,0,1,1,.5.5A.5.5,0,0,1,9.6,9.779ZM11.5,6.56a.5.5,0,1,1,.5.5A.5.5,0,0,1,11.5,6.56Zm0-2.2a.5.5,0,1,1,.5.5A.5.5,0,0,1,11.5,4.357Zm0,4.422a.5.5,0,1,1,.5.5A.5.5,0,0,1,11.5,8.779Zm1.083,7.562a.5.5,0,1,1,0,.707A.5.5,0,0,1,12.583,16.341Zm-.862,1.569a.5.5,0,1,1-.707,0A.5.5,0,0,1,11.721,17.91Z" />
</symbol>
</svg>
<svg style="display: none;">
<symbol id="FUNGI" style="color:#8F8F8F" viewBox="40 40 225 225">
<path style="fill: #8F8F8F" d="M153.5,76.5h-3.3c-42.3,0-76.7,34.4-76.7,76.7v1.7c0,7.4,6,13.5,13.5,13.5h46.4c-0.6,4.3-1.6,11.8-2.7,19.5 c-3.8,27.3-6.8,48.4-6.8,51.8c0,12.5,12.5,22.6,28,22.6c15.5,0,28-10.2,28-22.6c0-3.3-2.9-24.5-6.8-51.8c-1.1-7.8-2.1-15.2-2.7-19.5 h46.4c7.4,0,13.5-6,13.5-13.5v-1.7C230.2,110.9,195.8,76.5,153.5,76.5L153.5,76.5z M166,188.9c2.7,19,6.7,47.7,6.7,50.8 c0,8.5-9.4,15.5-20.9,15.5c-11.5,0-20.8-6.9-20.8-15.5c0-3.1,4-31.8,6.7-50.8c1.6-11.3,2.4-17.3,2.8-20.5h22.6 C163.5,171.6,164.4,177.5,166,188.9L166,188.9z M223.1,154.9c0,3.5-2.8,6.3-6.3,6.3H86.9c-3.5,0-6.3-2.8-6.3-6.3v-1.7 c0-38.4,31.2-69.6,69.6-69.6h3.3c38.4,0,69.6,31.2,69.6,69.6V154.9L223.1,154.9z" />
<rect style="fill: none;" height="24" width="24" />
</symbol>
</svg>
<svg style="display: none;">
<symbol id="BACTERIA" viewBox="24 24 48 48" style="fill:#8F8F8F">
<path d="M49.999 30.075c-10.985 0-19.924 8.938-19.924 19.925s8.938 19.925 19.924 19.925S69.924 60.987 69.924 50s-8.94-19.925-19.925-19.925zm0 36.849c-9.332 0-16.924-7.593-16.924-16.925s7.592-16.926 16.924-16.926c9.333 0 16.925 7.594 16.925 16.926s-7.592 16.925-16.925 16.925zm-9.025-18.523a3.013 3.013 0 01-.083-2.326 3.017 3.017 0 011.586-1.705 1.502 1.502 0 00.74-1.988 1.498 1.498 0 00-1.987-.74 6 6 0 00-3.149 3.387 6.01 6.01 0 00.166 4.622 1.5 1.5 0 102.727-1.25zm17.051-3.147c.965 0 1.938-.274 2.795-.85a1.5 1.5 0 10-1.668-2.493 2.043 2.043 0 01-2.83-.562 1.499 1.499 0 10-2.492 1.669 5.035 5.035 0 004.195 2.236zm.254 10.583a1.499 1.499 0 00-1.707 1.259 3.02 3.02 0 01-1.203 1.994 3.047 3.047 0 01-2.26.559 1.512 1.512 0 00-1.709 1.259 1.5 1.5 0 001.258 1.709c.307.046.613.068.92.068a5.99 5.99 0 003.57-1.18 6.005 6.005 0 002.391-3.96 1.5 1.5 0 00-1.26-1.708zm-15.984 1.148a1.5 1.5 0 00-2.343 1.873l1.461 1.827c.297.371.732.563 1.172.563a1.498 1.498 0 001.17-2.436l-1.46-1.827zm6.528-17.056a1.5 1.5 0 001.01-.391l1.562-1.422a1.5 1.5 0 00-2.017-2.22l-1.564 1.422a1.502 1.502 0 001.009 2.611zm14.716 10.768a1.5 1.5 0 00-1.715-1.249l-2.07.325a1.5 1.5 0 00.465 2.963l2.07-.325a1.499 1.499 0 001.25-1.714zm-18.513-2.909c-1.811 1.812-1.811 4.761.002 6.573s4.762 1.813 6.572 0l.002-.001a4.652 4.652 0 00-.002-6.572 4.658 4.658 0 00-6.574 0zm4.453 4.453a1.648 1.648 0 11-2.33-2.332 1.648 1.648 0 012.33 2.332z" />
</symbol>
</svg>
<svg style="display: none;">
<symbol id="ANIMAL" viewBox="0 0 100 100" style="fill:#8F8F8F">
<g>
<g>
<ellipse cx="33.6" cy="21.3" rx="12.7" ry="16.3" transform="matrix(0.9831 -0.1832 0.1832 0.9831 -3.3401 6.5177)" />
<ellipse cx="14.4" cy="48.4" rx="11.5" ry="14.8" transform="matrix(0.9455 -0.3256 0.3256 0.9455 -14.9901 7.3242)" />
<ellipse cx="66.4" cy="21.3" rx="16.3" ry="12.7" transform="matrix(0.1831 -0.9831 0.9831 0.1831 33.2484 82.6954)" />
<ellipse cx="85.6" cy="48.4" rx="14.8" ry="11.5" transform="matrix(0.3256 -0.9455 0.9455 0.3256 11.9361 113.6151)" />
<path d="M83.5,73.9l-8.8-5.1c-5.6-3.3-9.9-8.4-12.2-14.5l-3.6-9.6c-1.4-3.7-4.9-6.1-8.8-6.1c-3.9,0-7.4,2.4-8.8,6.1l-3.6,9.6 c-2.3,6.1-6.6,11.2-12.2,14.5l-8.8,5.1c-3.5,2-5.6,5.7-5.6,9.7c0,7.3,6.9,12.7,14,10.9l0,0c16.5-4.1,33.7-4.1,50.2,0 c7.1,1.8,14-3.6,14-10.9C89.1,79.6,87,75.9,83.5,73.9z" />
</g>
</g>
</symbol>
</svg>
<svg style="display: none;">
<symbol viewBox="0 0 32 32" id="SYNTHETIC" style="fill:#8F8F8F; margin-top:2px">
<title />
<g>
<path d="M26.72,24.21,20,10.76V4h1V2H11V4h1v6.76L5.28,24.21A4,4,0,0,0,8.85,30h14.3a4,4,0,0,0,3.57-5.79ZM13.89,11.45A1,1,0,0,0,14,11V4h4v7a1,1,0,0,0,.11.45L22.38,20H9.62Zm11,15.6a2,2,0,0,1-1.7.95H8.85a2,2,0,0,1-1.78-2.89L8.62,22H23.38l1.55,3.11A2,2,0,0,1,24.85,27.05Z" />
</g>
</symbol>
</svg>
<svg style="display: none;">
<symbol id="PLANT" viewBox="0 0 30 30">
<path d=" M29,3c0,3.562-0.172,7.005-3,9.428S18.906,15.007,15,15c-0.006-2.652,0.86-6.415,3.688-8.839S25.5,3,29,3z" fill="none" id="XMLID_35_" stroke="#8F8F8F" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" />
<path d=" M3,7c0,3.266,0.148,6.421,2.571,8.643S11.652,18.006,15,18c0.005-2.431-0.737-5.881-3.161-8.103S6,7,3,7z" fill="none" id="XMLID_34_" stroke="#8F8F8F" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" />
<line fill="none" id="XMLID_32_" stroke="#8F8F8F" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" x1="15" x2="15" y1="27" y2="15" />
</symbol>
</svg>
<svg style="display: none;">
<symbol id="add" viewBox="0 0 23 23">
<title />
<g>
<g>
<circle style="fill:#3C00C8" cx="12" cy="12" r="11" />
<path style="fill:white" d="M17.06,11H13V6.94a1,1,0,1,0-2,0V11H6.93a1,1,0,0,0,0,2H11v4.06a1,1,0,0,0,2,0V13h4.06a1,1,0,0,0,0-2Z" />
<rect style="fill:none" height="24" width="24" />
</g>
</g>
</symbol>
</svg>
<svg style="display: none;">
<symbol id="remove" viewBox="0 0 23 23">
<title />
<g>
<g>
<circle style="fill:#8F8F8F" cx="12" cy="12.01" r="11" />
<path style="fill:white" d="M17.06,13H6.93a1,1,0,0,1,0-2H17.06a1,1,0,0,1,0,2Z" />
<rect style="fill: none" height="24" width="24" />
</g>
</g>
</symbol>
</svg>
<svg style="display: none;">
<symbol id="exclamationmark" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 286.054 286.054" style="enable-background:new 0 0 286 286;" xml:space="preserve">
<g>
<path style="fill: #FFA100;" d="M143.027,0C64.04,0,0,64.04,0,143.027c0,78.996,64.04,143.027,143.027,143.027
c78.996,0,143.027-64.022,143.027-143.027C286.054,64.04,222.022,0,143.027,0z M143.027,259.236
c-64.183,0-116.209-52.026-116.209-116.209S78.844,26.818,143.027,26.818s116.209,52.026,116.209,116.209
S207.21,259.236,143.027,259.236z M143.036,62.726c-10.244,0-17.995,5.346-17.995,13.981v79.201c0,8.644,7.75,13.972,17.995,13.972
c9.994,0,17.995-5.551,17.995-13.972V76.707C161.03,68.277,153.03,62.726,143.036,62.726z M143.036,187.723
c-9.842,0-17.852,8.01-17.852,17.86c0,9.833,8.01,17.843,17.852,17.843s17.843-8.01,17.843-17.843
C160.878,195.732,152.878,187.723,143.036,187.723z" />
</g>
</symbol>
</svg>
<svg style="display: none;">
<symbol id="share" viewBox="-21 0 512 512" xmlns="http://www.w3.org/2000/svg">
<path d="m453.332031 85.332031c0 38.292969-31.039062 69.335938-69.332031 69.335938s-69.332031-31.042969-69.332031-69.335938c0-38.289062 31.039062-69.332031 69.332031-69.332031s69.332031 31.042969 69.332031 69.332031zm0 0" />
<path d="m384 170.667969c-47.0625 0-85.332031-38.273438-85.332031-85.335938 0-47.058593 38.269531-85.332031 85.332031-85.332031s85.332031 38.273438 85.332031 85.332031c0 47.0625-38.269531 85.335938-85.332031 85.335938zm0-138.667969c-29.417969 0-53.332031 23.9375-53.332031 53.332031 0 29.398438 23.914062 53.335938 53.332031 53.335938s53.332031-23.9375 53.332031-53.335938c0-29.394531-23.914062-53.332031-53.332031-53.332031zm0 0" />
<path d="m453.332031 426.667969c0 38.289062-31.039062 69.332031-69.332031 69.332031s-69.332031-31.042969-69.332031-69.332031c0-38.292969 31.039062-69.335938 69.332031-69.335938s69.332031 31.042969 69.332031 69.335938zm0 0" />
<path d="m384 512c-47.0625 0-85.332031-38.273438-85.332031-85.332031 0-47.0625 38.269531-85.335938 85.332031-85.335938s85.332031 38.273438 85.332031 85.335938c0 47.058593-38.269531 85.332031-85.332031 85.332031zm0-138.667969c-29.417969 0-53.332031 23.9375-53.332031 53.335938 0 29.394531 23.914062 53.332031 53.332031 53.332031s53.332031-23.9375 53.332031-53.332031c0-29.398438-23.914062-53.335938-53.332031-53.335938zm0 0" />
<path d="m154.667969 256c0 38.292969-31.042969 69.332031-69.335938 69.332031-38.289062 0-69.332031-31.039062-69.332031-69.332031s31.042969-69.332031 69.332031-69.332031c38.292969 0 69.335938 31.039062 69.335938 69.332031zm0 0" />
<path d="m85.332031 341.332031c-47.058593 0-85.332031-38.269531-85.332031-85.332031s38.273438-85.332031 85.332031-85.332031c47.0625 0 85.335938 38.269531 85.335938 85.332031s-38.273438 85.332031-85.335938 85.332031zm0-138.664062c-29.417969 0-53.332031 23.933593-53.332031 53.332031s23.914062 53.332031 53.332031 53.332031c29.421875 0 53.335938-23.933593 53.335938-53.332031s-23.914063-53.332031-53.335938-53.332031zm0 0" />
<path d="m135.703125 245.761719c-7.425781 0-14.636719-3.863281-18.5625-10.773438-5.824219-10.21875-2.238281-23.253906 7.980469-29.101562l197.949218-112.851563c10.21875-5.867187 23.253907-2.28125 29.101563 7.976563 5.824219 10.21875 2.238281 23.253906-7.980469 29.101562l-197.953125 112.851563c-3.328125 1.898437-6.953125 2.796875-10.535156 2.796875zm0 0" />
<path d="m333.632812 421.761719c-3.585937 0-7.210937-.898438-10.539062-2.796875l-197.953125-112.851563c-10.21875-5.824219-13.800781-18.859375-7.976563-29.101562 5.800782-10.238281 18.855469-13.84375 29.097657-7.976563l197.953125 112.851563c10.21875 5.824219 13.800781 18.859375 7.976562 29.101562-3.945312 6.910157-11.15625 10.773438-18.558594 10.773438zm0 0" />
</svg>
</svg>
<!-- svg symbols stop-->
<div style="margin-top:50px;"></div>
<div>
<div style="margin-top: 75px;">
<div id="searchbar" class="searchbar">
<div>
<div style="width: 20px; height: 20px; float: left; margin-top: 4px;">
<svg focusable="false" xmlns="http://www.w3.org/2000/svg" fill="#9aa0a6" viewBox="0 0 20 20">
<path d="M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z">
</path>
</svg>
</div>
<form id="searchform" autocomplete="off" action="/search?id=">
<input id="searchbox" autocomplete="off" autofocus type="search" name="id" placeholder="search ingredients" class="searchbox">
</input>
</form>
</div>
</div>
<div id="searchbar-suggestions" class="searchbar-suggestions" style="display: none;"></div>
</div>
</div>
<div style="display: flex; flex-direction: column;">
<div class="main-style-class">
<div class="search-main-div" id="search-main-div"></div>
<div class="search-error-div" id="search-error-div"></div>
</div>
<div class="search-widget" id="widget"></div>
<div style="display: none;" id="copyText"></div>
<div id="snackbar">Url copied!</div>
</div>
<div id="data" style="margin-top: 20px;"></div>
<div class="one-block-fullwidth graybackgroundcolor footer-main" style="margin-bottom: 0;">
<div class="graybackgroundcolor" style="display: flex;">
<div class="footer">
<div class="footer-item skinfo-logo-foooter" style="display: flex;">
<div style="display: flex;">
<div style="margin: auto;">
<img style="width: 150px;" src="svg/skinfo-logo-color-RGB.svg">
</div>
</div>
</div>
<div class="footer-item">
<div>
<div class="footer-header">Skinfo</div>
<div class="footer-links">
<a class="footer-link" href="price">Price</a>
<a class="footer-link" href="howitworks">How it works</a>
<a class="footer-link" href="search">Ingredient Search</a>
<a class="footer-link" href="casestudies">Case Studies</a>
<a class="footer-link" target="_blank" rel="noopener noreferrer" href="https://api.skinfo.se/doc/">Developers API
Reference
</a>
</div>
</div>
</div>
<div class="footer-item">
<div>
<div class="footer-header">Company</div>
<div class="footer-links">
<a class="footer-link" href="aboutus">About us</a>
<a class="footer-link" href="contactus">Contact us</a>
<a class="footer-link" href="pressandmedia">Press & Media</a>
<a class="footer-link" href="privacypolicy">Privacy Policy</a>
<a class="footer-link" href="termsandcondition">Terms & Conditions</a>
</div>
</div>
</div>
<div class="footer-item">
<div>
<div class="footer-header">Connect with us</div>
<div class="footer-links">
<div class="social-media">
<div class="social-media-div">
<div class="social-media-icon">
<a target="_blank" rel="noopener noreferrer" href="https://www.instagram.com/skinfo.official"> <svg role="presentation" viewBox="-2.5 -5 55 55">
<linearGradient id="insta-gradient" x1="0%" x2="100%" y1="0%" y2="100%">
<stop offset="0" stop-color="#e80026"></stop>
<stop offset="1" stop-color="#bc00ac"></stop>
</linearGradient>
<g fill="none" fill-rule="evenodd" transform="translate(.5)">
<circle cx="24" cy="24" fill="url(#insta-gradient)" r="26">
</circle>
<g fill="#fff" fill-rule="nonzero" transform="translate(14 14)">
<path d="m10 1.80436508c2.6692857 0 2.9854365.01023809 4.0396825.05833333.9746826.04448413 1.5039683.20730159 1.8562699.34420635.4342099.16025873.8269834.41579335 1.1494444.74781746.3320241.32246105.5875588.7152345.7478175 1.14944445.1369047.3522619.2997619.8815873.3442063 1.85626984.0480953 1.05416666.0582937 1.37031746.0582937 4.03968249 0 2.6693651-.0101984 2.9854366-.0582937 4.0396826-.0444841.9746825-.2073412 1.5039682-.3442063 1.8562698-.3363143.8718421-1.0254199 1.5609477-1.8972619 1.8972619-.3522619.1369048-.8815873.2997619-1.8562699.3442064-1.0539682.0480952-1.370119.0582936-4.0396825.0582936-2.66956349 0-2.98559524-.0101984-4.03968254-.0582936-.97468254-.0444841-1.50396825-.2073413-1.85626984-.3442064-.43421055-.1602575-.82698426-.4157923-1.14944445-.7478174-.33202306-.3224619-.58755752-.7152351-.74781746-1.1494445-.13690476-.3522619-.2997619-.8815873-.34420634-1.8562698-.04809524-1.054127-.05829366-1.3703175-.05829366-4.0396826 0-2.66936503.01019842-2.98543646.05829366-4.03968249.04448412-.97468254.20730158-1.50396826.34420634-1.85626984.16027662-.43423159.41583907-.8270197.74789683-1.14948413.3224619-.33202307.71523511-.58755752 1.14944444-.74781746.35226191-.13690476.88158731-.29976191 1.85626985-.34420635 1.05416666-.04809524 1.37031746-.05829365 4.03968257-.05829365m0-1.80123016c-2.71500003 0-3.05555559.01150794-4.1216667.06015873-1.0640873.04857143-1.79075397.21753968-2.42662699.46468254-.66703973.25101711-1.27129677.64451547-1.77063492 1.15305556-.50865468.49930683-.90226292 1.10356623-1.15337301 1.77063492-.24694445.6359127-.4159127 1.36257936-.46428572 2.42666666-.0488492 1.06611111-.06035714 1.40666667-.06035714 4.12166667s.01150794 3.0555556.06035714 4.1216667c.04857143 1.0640873.21753969 1.7907539.46468254 2.426627.25101826.6670391.64451647 1.2712959 1.15305556 1.7706349.49933652.508542 1.10359403.9020407 1.77063492 1.1530555.6359127.2471429 1.36257936.4161111 2.42662698.4646826 1.06626984.0486508 1.40670635.0601587 4.12166664.0601587 2.7149603 0 3.0555556-.0115079 4.1216667-.0601587 1.0640873-.0485715 1.790754-.2175397 2.426627-.4646826 1.3428072-.5193465 2.404344-1.5808832 2.9236905-2.9236904.2471428-.6359127.4161111-1.3625794.4646825-2.426627.0486508-1.0662699.0601587-1.4067064.0601587-4.1216667 0-2.71496032-.0115079-3.05555556-.0601587-4.12166667-.0485714-1.0640873-.2175397-1.79075396-.4646825-2.42662698-.2510149-.66704089-.6445135-1.2712984-1.1530556-1.77063492-.4993483-.50864147-1.1036494-.90222327-1.770754-1.15329365-.6359127-.24694445-1.3625793-.4159127-2.4266666-.46428572-1.0661111-.0488492-1.4066667-.06035714-4.1216667-.06035714z">
</path>
<path d="m10 4.86646825c-2.8351713 0-5.13353175 2.29836045-5.13353175 5.13353175s2.29836045 5.1335317 5.13353175 5.1335317 5.1335317-2.2983604 5.1335317-5.1335317-2.2983604-5.13353175-5.1335317-5.13353175zm0 8.46579365c-1.84035227 0-3.33222222-1.4919361-3.33222222-3.33228835 0-1.84035227 1.49192286-3.33223545 3.33227512-3.33223545 1.8403523 0 3.3322487 1.49190963 3.3322487 3.3322619 0 1.8403639-1.4919377 3.3322619-3.3323016 3.3322619z">
</path>
<circle cx="15.336349" cy="4.663651" r="1.199603">
</circle>
</g>
</g>
</svg></a>
</div>
<div class="social-media-icon">
<a target="_blank" rel="noopener noreferrer" href="https://www.facebook.com/skinfo-112112250281156/">
<svg role="presentation" viewBox="-2.5 -5 55 55">
<g fill="none" fill-rule="evenodd">
<circle cx="24.5" cy="24" fill="#3b5998" r="26">
</circle>
<g fill-rule="nonzero" transform="translate(12.5 12)">
<path d="m0 0h24v24h-24z" fill="#000" opacity="0" transform="matrix(-1 0 0 -1 24 24)">
</path>
<path d="m17 3.5c0-.27614237-.2238576-.5-.5-.5h-2.5c-2.6206835-.13054557-4.85472495 1.8800917-5 4.5v2.7h-2.5c-.27614237 0-.5.2238576-.5.5v2.6c0 .2761424.22385763.5.5.5h2.5v6.7c0 .2761424.22385763.5.5.5h3c.2761424 0 .5-.2238576.5-.5v-6.7h2.62c.2287445.0032859.4305439-.1490932.49-.37l.72-2.6c.0403184-.1497279.0088876-.3096887-.0850863-.4330295-.0939739-.1233407-.2398548-.1961015-.3949137-.1969705h-3.35v-2.7c.051542-.51290129.4845219-.90258325 1-.9h2.5c.2761424 0 .5-.22385763.5-.5z" fill="#fff"></path>
</g>
</g>
</svg></a>
</div>
<div class="social-media-icon">
<a target="_blank" rel="noopener noreferrer" href="https://www.linkedin.com/company/skinfo/"> <svg role="presentation" viewBox="-2.5 -5 55 55">
<g fill="none" fill-rule="evenodd">
<circle cx="24.5" cy="24" fill="#0077b5" r="26">
</circle>
<g fill-rule="nonzero" transform="translate(12.5 12)">
<path d="m0 0h24v24h-24z" fill="#000" opacity="0" transform="matrix(-1 0 0 -1 24 24)">
</path>
<path d="m15.15 8.39996562c1.5479431-.00527818 3.0344522.60523353 4.13183 1.69698368 1.032826 1.0275295 1.6411426 2.4019439 1.7113415 3.8506202l.0068285.2724305v5.88c0 .4588212-.3433367.8374518-.7871059.8929877l-.1128941.0070123h-2.1c-.4588212 0-.8374518-.3433367-.8929877-.7871059l-.0070123-.1128941v-5.81c.0079484-1.0138751-.7440421-1.8732929-1.75-2-.5480814-.0596792-1.0956684.1166548-1.5059361.4849416-.3646825.3273661-.5902448.778911-.6355882 1.262423l-.0084757.1826354v5.88c0 .4588212-.3433367.8374518-.7871059.8929877l-.1128941.0070123h-2.1c-.23869484 0-.46761336-.0948212-.6363961-.2636039-.14065229-.1406523-.22994236-.3230655-.25579871-.5180965l-.00780519-.1182996v-5.88c.00264603-1.54795.62079234-3.0313006 1.71817-4.1230507 1.0973778-1.09175015 2.5838869-1.70226186 4.13183-1.69698368zm-8.55.90003438c.49705627 0 .9.40294373.9.9v9.9c0 .4970563-.40294373.9-.9.9h-2.7c-.49705627 0-.9-.4029437-.9-.9v-9.9c0-.49705627.40294373-.9.9-.9zm-1.35-6.3c1.24264069 0 2.25 1.00735931 2.25 2.25s-1.00735931 2.25-2.25 2.25-2.25-1.00735931-2.25-2.25 1.00735931-2.25 2.25-2.25z" fill="#fff"></path>
</g>
</g>
</svg></a>
</div>
</div>
</div>
</div>
<div class="horizondiv">
<div class="horizonflag">
<svg alt="European Union Horizon 2020" title="European Union Horizon 2020" role="presentation" viewBox="0 0 810 540" class="Footer-symbol">
<defs>
<g id="eu-d">
<g id="eu-b">
<path id="eu-a" d="M0 0v1h.5z" transform="rotate(18 3.16 -.5)">
</path>
<use transform="scale(-1 1)" xlink:href="#eu-a"></use>
</g>
<g id="eu-c">
<use transform="rotate(72)" xlink:href="#eu-b"></use>
<use transform="rotate(144)" xlink:href="#eu-b"></use>
</g>
<use transform="scale(-1 1)" xlink:href="#eu-c"></use>
</g>
</defs>
<path fill="#039" d="M0 0h810v540H0z"></path>
<g fill="#fc0" transform="matrix(30 0 0 30 405 270)">
<use y="-6" xlink:href="#eu-d"></use>
<use y="6" xlink:href="#eu-d"></use>
<g id="eu-e">
<use x="-6" xlink:href="#eu-d"></use>
<use transform="rotate(-144 -2.34 -2.11)" xlink:href="#eu-d"></use>
<use transform="rotate(144 -2.11 -2.34)" xlink:href="#eu-d"></use>
<use transform="rotate(72 -4.66 -2.08)" xlink:href="#eu-d"></use>
<use transform="rotate(72 -5.08 .53)" xlink:href="#eu-d"></use>
</g>
<use transform="scale(-1 1)" xlink:href="#eu-e"></use>
</g>
</svg>
</div>
<div class="horizontext">
<b>Horizon 2020</b> European Union Funding for Research & Innovation
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
<style>
[data-lvl="1"] {
margin-right: 10px;
}
[data-lvl="2"] {
margin-right: 20px;
}
.main-style-class {
margin-top: 20px;
margin: auto;
width: 80%;
max-width: 690px;
}
.search-widget {
width: 80%;
margin: auto;
margin-top: 20px;
}
.seo-menu-expand {
display: flex !important;
flex-direction: column;
background-image: none !important;
font-weight: bold;
color: black !important;
}
.seo-displayname {
color: black;
font-size: 1.5rem;
margin-top: 20px;
font-weight: bold;
margin-bottom: -10px;
text-align: left !important;
}
.seo-question {
color: black;
font-size: 1.2rem;
margin-bottom: 3px;
text-align: left !important;
}
.seo-question-new-section {
margin-top: 20px;
}
.seo-answer {
color: #8F8F8F;
}
.search-error-div {
padding: 20px;
background-color: gainsboro;
border-radius: 0.75rem;
margin: auto;
margin-top: 20px;
display: none;
}
.seo-error-header {
color: #8F8F8F;
font-size: 1.0rem;
margin-bottom: 3px;
text-align: left !important;
}
.seo-error-ingredient {
color: black;
}
.seo-fact-header {
color: black;
font-size: 1.2rem;
margin-bottom: 3px;
text-align: left !important;
}
.seo-fact-header-freq-question {
margin-bottom: 20px;
font-style: italic;
}
.seo-fact-synonyms {
color: #545454;
}
.seo-fact-functions-short {
color: #545454;
font-weight: bold;
}
.seo-fact-functions-long {
color: #8F8F8F;
}
.seo-fact-concerns-short {
color: #545454;
font-weight: bold;
}
.seo-fact-concerns-long {
color: #8F8F8F;
}
.seo-settings {
color: black;
font-size: 1.2rem;
text-align: left;
}
.seo-settings-underheader {
color: black;
font-size: 0.8rem;
margin-bottom: 3px;
font-style: italic;
}
.seo-choice {
color: rgb(0, 0, 0, 0.8);
cursor: pointer;
display: flex;
width: fit-content;
margin-top: 7px;
margin-bottom: 5px;
}
.seo-svg-origin-text {
color: #545454;
}
.seo-svg-origin {
width: 20px;
height: 20px;
position: relative;
left: 3px;
top: 3px;
}
.seo-svg-concern {
width: 15px;
height: 15px;
margin-left: 3px;
}
.seo-svg-settings {
min-width: 20px;
min-height: 20px;
max-width: 20px;
max-height: 20px;
margin-right: 5px;
}
.seo-ingredient {
font-style: italic;
}
.seo-href {
color: black !important;
margin-left: 3px;
}
.seo-svg-share {
min-width: 20px;
min-height: 20px;
max-width: 20px;
max-height: 20px;
float: right;
cursor: pointer;
}
.seo-svg-share-withText {
min-width: 16px;
min-height: 16px;
max-width: 16px;
max-height: 16px;
margin-left: 5px;
margin-top: -3px;
cursor: pointer;
}
.seo-svg-share-element {
margin: auto;
margin-top: 20px;
display: flex;
cursor: pointer;
}
.browse-fullscreen-menu {
display: grid !important;
float: right !important;
margin-top: 20px !important;
overflow-y: scroll;
overflow-x: hidden;
overflow-y: auto !important;
overflow-x: unset !important;
max-height: calc(100vh - 62px) !important;
}
.main-menu {
overflow-y: auto;
}
@media only screen and (max-width: 500px) {
.search-widget {
width: 100%;
}
.main-menu-change {
max-height: 100vh;
height: unset;
}
}
/* snackbarSection */
/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
visibility: hidden;
/* Hidden by default. Visible on click */
min-width: 250px;
/* Set a default minimum width */
margin-left: -125px;
/* Divide value of min-width by 2 */
background-color: #333;
/* Black background color */
color: #fff;
/* White text color */
text-align: center;
/* Centered text */
border-radius: 2px;
/* Rounded borders */
padding: 16px;
/* Padding */
position: fixed;
/* Sit on top of the screen */
z-index: 1;
/* Add a z-index if needed */
left: 50%;
/* Center the snackbar */
bottom: 30px;
/* 30px from the bottom */
}
/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
visibility: visible;
/* Show the snackbar */
/* Add animation: Take 0.5 seconds to fade in and out the snackbar.
However, delay the fade out process for 2.5 seconds */
-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
from {
bottom: 0;
opacity: 0;
}
to {
bottom: 30px;
opacity: 1;
}
}
@keyframes fadein {
from {
bottom: 0;
opacity: 0;
}
to {
bottom: 30px;
opacity: 1;
}
}
@-webkit-keyframes fadeout {
from {
bottom: 30px;
opacity: 1;
}
to {
bottom: 0;
opacity: 0;
}
}
@keyframes fadeout {
from {
bottom: 30px;
opacity: 1;
}
to {
bottom: 0;
opacity: 0;
}
}
</style>
<script>
var globalIngredients = [];
var globalFunctions = [];
var globalConcerns = [];
function closeChildElements(currentElement) {
var sibiling = currentElement.nextSibling;
while (sibiling.nodeName == '#text')
sibiling = sibiling.nextSibling;
while (parseInt(sibiling.dataset.lvl) > parseInt(currentElement.dataset.lvl)) {
sibiling.style.display = 'none';
sibiling.classList.remove('seo-menu-expand');
sibiling = sibiling.nextSibling;
while (sibiling.nodeName == '#text')
sibiling = sibiling.nextSibling;
}
}
var browseMenuButtons = document.getElementsByClassName('menu-browse-button');
for (i = 0; i < browseMenuButtons.length; i++) {
browseMenuButtons[i].onclick = function (e) {
e.stopPropagation();
if (e.target.classList.contains('seo-ingredient')) {
var computerMenu = document.getElementById('skinfo-menu-mobile-expanded');
if (computerMenu.classList.contains('browse-fullscreen-menu'))
document.getElementById('browse-fullscreen-button').click();
else
document.getElementById('skinfo-menu-mobile').click();
getIngredientData(e.target.innerText);
$('#searchbox').val(e.target.innerText);
return;
}
if (e.target.classList.contains('seo-menu-expand')) {
e.target.classList.remove('seo-menu-expand');
closeChildElements(e.target);
} else {
var currentElement = e.target;
currentElement.classList.add('seo-menu-expand');
var sibiling = currentElement.nextSibling;
while (sibiling.nodeName == '#text')
sibiling = sibiling.nextSibling;
while (sibiling.classList.contains('menu-browse-button')) {
if (parseInt(sibiling.dataset.lvl) == parseInt(currentElement.dataset.lvl))
break;
if (parseInt(sibiling.dataset.lvl) == (parseInt(currentElement.dataset.lvl) + 2)) {
sibiling = sibiling.nextSibling;
while (sibiling.nodeName == '#text')
sibiling = sibiling.nextSibling;
continue;
}
sibiling.style.display = 'initial';
sibiling = sibiling.nextSibling;
while (sibiling.nodeName == '#text')
sibiling = sibiling.nextSibling;
}
}
}
}
function updateSettings(id, add) {
var data = {
id: id,
store: true,
add: add,
};
if (data.id.startsWith('f-')) {
data.id = data.id.substring(2);
data.type = 'function';
if (add)
globalFunctions.push(id);
else
globalFunctions.splice(globalFunctions.indexOf(id), 1);
}
else if (data.id.startsWith('c-')) {
data.id = data.id.substring(2);
data.type = 'concern';
if (add)
globalConcerns.push(id);
else
globalConcerns.splice(globalConcerns.indexOf(id), 1);
}
else {
data.type = 'ingredient';
if (add)
globalIngredients.push(id);
else
globalIngredients.splice(globalIngredients.indexOf(id), 1);
}
document.getElementById('skinfo-settings-iframe').contentWindow.postMessage(data, '*');
}
function updateSettingsBind(e) {
e.stopPropagation();
var correctElement = e.target;
while (!correctElement.classList.contains('seo-choice')) {
correctElement = correctElement.parentNode;
}
var id = correctElement.dataset.id;
var action = correctElement.firstChild.firstChild.getAttribute('xlink:href');
if (action.includes('add')) {
updateSettings(id, true);
correctElement.firstChild.firstChild.setAttribute('xlink:href', '#remove');
}
else {
updateSettings(id, false);
correctElement.firstChild.firstChild.setAttribute('xlink:href', '#add');
}
}
if (document.getElementById('browse-fullscreen-button')) {
document.getElementById('browse-fullscreen-button').onclick = function () {
var menu = document.getElementById('skinfo-menu-mobile-expanded');
if (menu.classList.contains('browse-fullscreen-menu')) {
menu.classList.remove('browse-fullscreen-menu');
}
else
menu.classList.add('browse-fullscreen-menu');
}
}
window.onmessage = function (e) {
if (e.data.value) {
var json = JSON.parse(e.data.value);
var ingredients = json.ingredients;
var concerns = json.concerns;
var functions = json.functions;
for (i = 0; i < ingredients.length; i++) {
globalIngredients.push(ingredients[i]);
}
for (const [key, value] of Object.entries(functions)) {
globalFunctions.push('f-' + key);
}
for (const [key, value] of Object.entries(concerns)) {
globalConcerns.push('c-' + key);
}
}
}
</script>