File: evolvingtable_1.testhtml

package info (click to toggle)
python-recipe-scrapers 15.9.0-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 246,580 kB
  • sloc: python: 13,214; makefile: 3
file content (1006 lines) | stat: -rw-r--r-- 450,221 bytes parent folder | download | duplicates (2)
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
1001
1002
1003
1004
1005
1006
<!DOCTYPE html><html lang="en-US">
<head><meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
<!-- Hubbub v.2.20.0 https://morehubbub.com/ -->
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Spicy Sriracha Mayo - Evolving Table" />
<meta property="og:description" content="This spicy Sriracha Mayo recipe is ready in 5 minutes with sriracha, mayonnaise, lemon, and minced fresh garlic cloves." />
<meta property="og:url" content="https://www.evolvingtable.com/sriracha-mayo/" />
<meta property="og:site_name" content="Evolving Table" />
<meta property="og:updated_time" content="2024-05-08T05:00:16+00:00" />
<meta property="article:published_time" content="2024-05-08T05:00:00+00:00" />
<meta property="article:modified_time" content="2024-05-08T05:00:16+00:00" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Spicy Sriracha Mayo - Evolving Table" />
<meta name="twitter:description" content="This spicy Sriracha Mayo recipe is ready in 5 minutes with sriracha, mayonnaise, lemon, and minced fresh garlic cloves." />
<meta property="og:image" content="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12.jpg" />
<meta name="twitter:image" content="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12.jpg" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="1800" />
<meta property="article:author" content="www.facebook.com/evolvingtable/" />
<meta name="twitter:creator" content="@www.twitter.com/evolvingtable/" />
<!-- Hubbub v.2.20.0 https://morehubbub.com/ -->

	<!-- This site is optimized with the Yoast SEO plugin v22.6 - https://yoast.com/wordpress/plugins/seo/ -->
	<title>Spicy Sriracha Mayo - Evolving Table</title><link rel="preload" as="font" href="https://www.evolvingtable.com/wp-content/themes/evolvingtable-2023/assets/fonts/poppins-v20-latin-700.woff2" crossorigin><style id="wpr-usedcss">:root{--comment-rating-star-color:#343434}.wprm-comment-rating svg path{fill:var(--comment-rating-star-color)}.wprm-comment-rating svg polygon{stroke:var(--comment-rating-star-color)}.wprm-comment-ratings-container svg .wprm-star-full{fill:var(--comment-rating-star-color)}.wprm-comment-ratings-container svg .wprm-star-empty{stroke:var(--comment-rating-star-color)}body:not(:hover) fieldset.wprm-comment-ratings-container:focus-within span{outline:#4d90fe solid 1px}.comment-form-wprm-rating{margin-bottom:20px;margin-top:5px;text-align:left}.comment-form-wprm-rating .wprm-rating-stars{display:inline-block;vertical-align:middle}fieldset.wprm-comment-ratings-container{background:0 0;border:0;display:inline-block;margin:0;padding:0;position:relative}fieldset.wprm-comment-ratings-container legend{left:0;opacity:0;position:absolute}fieldset.wprm-comment-ratings-container br{display:none}fieldset.wprm-comment-ratings-container input[type=radio]{border:0;cursor:pointer;float:left;height:16px;margin:0!important;min-height:0;min-width:0;opacity:0;padding:0!important;width:16px}fieldset.wprm-comment-ratings-container input[type=radio]:first-child{margin-left:-16px}fieldset.wprm-comment-ratings-container span{font-size:0;height:16px;left:0;opacity:0;pointer-events:none;position:absolute;top:0;width:80px}fieldset.wprm-comment-ratings-container span svg{height:100%!important;width:100%!important}fieldset.wprm-comment-ratings-container input:checked+span,fieldset.wprm-comment-ratings-container input:hover+span{opacity:1}fieldset.wprm-comment-ratings-container input:hover+span~span{display:none}:root{--wprm-popup-font-size:16px;--wprm-popup-background:#fff;--wprm-popup-title:#000;--wprm-popup-content:#444;--wprm-popup-button-background:#5a822b;--wprm-popup-button-text:#fff}.wprm-popup-modal{display:none}.wprm-popup-modal__overlay{align-items:center;background:#0009;bottom:0;display:flex;justify-content:center;left:0;position:fixed;right:0;top:0;z-index:2147483647}.wprm-popup-modal__container{background-color:var(--wprm-popup-background);border-radius:4px;box-sizing:border-box;font-size:var(--wprm-popup-font-size);max-height:100vh;max-width:100%;overflow-y:auto;padding:30px}.wprm-popup-modal__header{align-items:center;display:flex;justify-content:space-between;margin-bottom:10px}.wprm-popup-modal__title{box-sizing:border-box;color:var(--wprm-popup-title);font-size:1.2em;font-weight:600;line-height:1.25;margin-bottom:0;margin-top:0}.wprm-popup-modal__close{background:#0000;border:0;cursor:pointer}.wprm-popup-modal__header .wprm-popup-modal__close:before{color:var(--wprm-popup-title);content:"\2715";font-size:var(--wprm-popup-font-size)}.wprm-popup-modal__content{color:var(--wprm-popup-content);line-height:1.5}.wprm-popup-modal__content p{font-size:1em;line-height:1.5}.wprm-popup-modal__footer{margin-top:20px}.wprm-popup-modal__btn{-moz-osx-font-smoothing:grayscale;-webkit-appearance:button;-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:var(--wprm-popup-button-background);border-radius:.25em;border-style:none;border-width:0;color:var(--wprm-popup-button-text);cursor:pointer;font-size:1em;line-height:1.15;margin:0;overflow:visible;padding:.5em 1em;text-transform:none;-webkit-transform:translateZ(0);transform:translateZ(0);transition:-webkit-transform .25s ease-out;transition:transform .25s ease-out;transition:transform .25s ease-out,-webkit-transform .25s ease-out;will-change:transform}.wprm-popup-modal__btn:focus,.wprm-popup-modal__btn:hover{-webkit-transform:scale(1.05);transform:scale(1.05)}@keyframes wprmPopupModalFadeIn{0%{opacity:0}to{opacity:1}}@keyframes wprmPopupModalFadeOut{0%{opacity:1}to{opacity:0}}@keyframes wprmPopupModalSlideIn{0%{transform:translateY(15%)}to{transform:translateY(0)}}@keyframes wprmPopupModalSlideOut{0%{transform:translateY(0)}to{transform:translateY(-10%)}}.wprm-popup-modal[aria-hidden=false] .wprm-popup-modal__overlay{animation:.3s cubic-bezier(0,0,.2,1) wprmPopupModalFadeIn}.wprm-popup-modal[aria-hidden=false] .wprm-popup-modal__container{animation:.3s cubic-bezier(0,0,.2,1) wprmPopupModalSlideIn}.wprm-popup-modal[aria-hidden=true] .wprm-popup-modal__overlay{animation:.3s cubic-bezier(0,0,.2,1) wprmPopupModalFadeOut}.wprm-popup-modal[aria-hidden=true] .wprm-popup-modal__container{animation:.3s cubic-bezier(0,0,.2,1) wprmPopupModalSlideOut}.wprm-popup-modal .wprm-popup-modal__container,.wprm-popup-modal .wprm-popup-modal__overlay{will-change:transform}img.wprm-comment-rating{display:block;margin:5px 0}img.wprm-comment-rating+br{display:none}.wprm-rating-star svg{display:inline;height:16px;margin:0;vertical-align:middle;width:16px}.wprm-loader{animation:1s ease-in-out infinite wprmSpin;-webkit-animation:1s ease-in-out infinite wprmSpin;border:2px solid #c8c8c84d;border-radius:50%;border-top-color:#444;display:inline-block;height:10px;width:10px}@keyframes wprmSpin{to{-webkit-transform:rotate(1turn)}}@-webkit-keyframes wprmSpin{to{-webkit-transform:rotate(1turn)}}.wprm-recipe-container{outline:0}.wprm-recipe{zoom:1;clear:both;overflow:hidden;text-align:left}.wprm-recipe *{box-sizing:border-box}.wprm-recipe ol,.wprm-recipe ul{-webkit-margin-before:0;-webkit-margin-after:0;-webkit-padding-start:0;margin:0;padding:0}.wprm-recipe li{font-size:1em;margin:0 0 0 32px;padding:0}.wprm-recipe p{font-size:1em;margin:0;padding:0}.wprm-recipe li,.wprm-recipe li.wprm-recipe-instruction{list-style-position:outside}.wprm-recipe li:before{display:none}.wprm-recipe h1,.wprm-recipe h2,.wprm-recipe h3,.wprm-recipe h4{clear:none;font-variant:normal;letter-spacing:normal;margin:0;padding:0;text-transform:none}.wprm-recipe a.wprm-recipe-link,.wprm-recipe a.wprm-recipe-link:hover{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}body:not(.wprm-print) .wprm-recipe p:first-letter{color:inherit;font-family:inherit;font-size:inherit;line-height:inherit;margin:inherit;padding:inherit}.wprm-screen-reader-text{clip:rect(1px,1px,1px,1px);word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px}.wprm-call-to-action.wprm-call-to-action-simple{display:flex;justify-content:center;margin-top:10px;padding:5px 10px}.wprm-call-to-action.wprm-call-to-action-simple .wprm-call-to-action-icon{font-size:2.2em;margin:5px .5em 5px 0}.wprm-call-to-action.wprm-call-to-action-simple .wprm-call-to-action-icon svg{margin-top:0}.wprm-call-to-action.wprm-call-to-action-simple .wprm-call-to-action-text-container{margin:5px 0}.wprm-call-to-action.wprm-call-to-action-simple .wprm-call-to-action-text-container .wprm-call-to-action-header{display:block;font-size:1.3em;font-weight:700}@media (max-width:450px){.wprm-call-to-action.wprm-call-to-action-simple{flex-wrap:wrap}.wprm-call-to-action.wprm-call-to-action-simple .wprm-call-to-action-text-container{text-align:center}}.wprm-recipe-block-container-separated,.wprm-recipe-block-container-separated .wprm-recipe-details-label{display:block}.wprm-recipe-details-unit{font-size:.8em}@media only screen and (max-width:600px){.wprm-recipe-details-unit{font-size:1em}}.wprm-block-text-normal{font-style:normal;font-weight:400;text-transform:none}.wprm-block-text-bold{font-weight:700!important}.wprm-block-text-faded{opacity:.7}.wprm-block-text-faded .wprm-block-text-faded{opacity:1}.wprm-align-left{text-align:left}.wprm-recipe-header .wprm-recipe-icon{margin-right:5px}.wprm-recipe-header.wprm-header-has-actions{align-items:center;display:flex;flex-wrap:wrap}.wprm-recipe-header .wprm-recipe-adjustable-servings-container{font-size:16px;font-style:normal;font-weight:400;opacity:1;text-transform:none}.wprm-recipe-icon svg{display:inline;height:1.3em;margin-top:-.15em;overflow:visible;vertical-align:middle;width:1.3em}.wprm-recipe-image img{display:block;margin:0 auto}.wprm-recipe-instructions-container .wprm-recipe-instruction-text{font-size:1em}.wprm-recipe-instruction-ingredients-inline .wprm-recipe-instruction-ingredient{display:inline-block;padding-right:5px}.wprm-recipe-instruction-ingredients-inline .wprm-recipe-instruction-ingredient:last-child{padding-right:0}.wprm-recipe-link{cursor:pointer;text-decoration:none}.wprm-nutrition-label-container-simple .wprm-nutrition-label-text-nutrition-unit{font-size:.85em}.wprm-recipe-rating{white-space:nowrap}.wprm-recipe-rating svg{height:1.1em;margin-top:-.15em!important;margin:0;vertical-align:middle;width:1.1em}.wprm-recipe-rating.wprm-recipe-rating-inline .wprm-recipe-rating-details{display:inline-block;margin-left:10px}.wprm-recipe-rating .wprm-recipe-rating-details{font-size:.8em}.wprm-toggle-switch-container{align-items:center;display:flex;margin:10px 0}.wprm-toggle-switch-container label{cursor:pointer;flex-shrink:0;font-size:1em;margin:0}.wprm-toggle-switch-container .wprm-prevent-sleep-description{font-size:.8em;line-height:1.1em;margin-left:10px}.wprm-toggle-switch{display:inline-block;position:relative}.wprm-toggle-switch input{height:0;margin:0;min-width:0;opacity:0;padding:0;width:0}.wprm-toggle-switch .wprm-toggle-switch-slider{background-color:#ccc;cursor:pointer;height:20px;left:0;margin-top:-10px;position:absolute;right:0;top:50%;-webkit-transition:.4s;transition:.4s;width:40px}.wprm-toggle-switch .wprm-toggle-switch-slider:before{background-color:#fff;bottom:10%;content:"";height:80%;left:7%;position:absolute;right:50%;-webkit-transition:.4s;transition:.4s}.wprm-toggle-switch input:checked+.wprm-toggle-switch-slider{background-color:#333!important}.wprm-toggle-switch input:focus+.wprm-toggle-switch-slider{box-shadow:0 0 0 3px #0000001f}.wprm-toggle-switch input:checked+.wprm-toggle-switch-slider:before{left:50%;right:7%}.wprm-toggle-switch .wprm-toggle-switch-label{margin-left:50px}.wprm-toggle-switch-rounded .wprm-toggle-switch-slider:before{border-radius:50%}.wprm-toggle-container{align-items:stretch;border:1px solid #333;display:inline-flex;flex-shrink:0;overflow:hidden}.wprm-toggle-container button.wprm-toggle{border:none;border-radius:0;box-shadow:none;display:inline-block;font-size:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;padding:5px 10px;text-decoration:none;text-transform:inherit;white-space:nowrap}.wprm-toggle-container button.wprm-toggle:not(.wprm-toggle-active){background:0 0!important;color:inherit!important}.wprm-recipe-header+.wprm-recipe-video{margin-top:10px}.wp-block-button__link{box-sizing:border-box;cursor:pointer;display:inline-block;text-align:center;word-break:break-word}.wp-block-button__link.aligncenter{text-align:center}:where(.wp-block-button__link){border-radius:9999px;box-shadow:none;padding:calc(.667em + 2px) calc(1.333em + 2px);text-decoration:none}.wp-block-buttons>.wp-block-button.has-custom-font-size .wp-block-button__link{font-size:inherit}.wp-block-button .wp-block-button__link:where(.is-style-outline),.wp-block-button:where(.is-style-outline)>.wp-block-button__link{border:2px solid;padding:.667em 1.333em}.wp-block-button .wp-block-button__link:where(.is-style-outline):not(.has-text-color),.wp-block-button:where(.is-style-outline)>.wp-block-button__link:not(.has-text-color){color:currentColor}.wp-block-button .wp-block-button__link:where(.is-style-outline):not(.has-background),.wp-block-button:where(.is-style-outline)>.wp-block-button__link:not(.has-background){background-color:initial;background-image:none}.wp-block-button .wp-block-button__link:where(.has-border-color){border-width:initial}.wp-block-button .wp-block-button__link:where([style*=border-top-color]){border-top-width:medium}.wp-block-button .wp-block-button__link:where([style*=border-right-color]){border-right-width:medium}.wp-block-button .wp-block-button__link:where([style*=border-bottom-color]){border-bottom-width:medium}.wp-block-button .wp-block-button__link:where([style*=border-left-color]){border-left-width:medium}.wp-block-button .wp-block-button__link:where([style*=border-style]){border-width:initial}.wp-block-button .wp-block-button__link:where([style*=border-top-style]){border-top-width:medium}.wp-block-button .wp-block-button__link:where([style*=border-right-style]){border-right-width:medium}.wp-block-button .wp-block-button__link:where([style*=border-bottom-style]){border-bottom-width:medium}.wp-block-button .wp-block-button__link:where([style*=border-left-style]){border-left-width:medium}.wp-block-buttons>.wp-block-button{display:inline-block;margin:0}.wp-block-buttons.is-content-justification-center{justify-content:center}.wp-block-buttons.is-content-justification-space-between{justify-content:space-between}.wp-block-buttons.aligncenter{text-align:center}.wp-block-buttons:not(.is-content-justification-space-between,.is-content-justification-right,.is-content-justification-left,.is-content-justification-center) .wp-block-button.aligncenter{margin-left:auto;margin-right:auto;width:100%}.wp-block-buttons.has-custom-font-size .wp-block-button__link{font-size:inherit}.wp-block-button.aligncenter{text-align:center}:where(.wp-block-calendar table:not(.has-background) th){background:#ddd}:where(.wp-block-columns){margin-bottom:1.75em}:where(.wp-block-columns.has-background){padding:1.25em 2.375em}:where(.wp-block-post-comments input[type=submit]){border:none}:where(.wp-block-cover-image:not(.has-text-color)),:where(.wp-block-cover:not(.has-text-color)){color:#fff}:where(.wp-block-cover-image.is-light:not(.has-text-color)),:where(.wp-block-cover.is-light:not(.has-text-color)){color:#000}:where(.wp-block-file){margin-bottom:1.5em}:where(.wp-block-file__button){border-radius:2em;display:inline-block;padding:.5em 1em}:where(.wp-block-file__button):is(a):active,:where(.wp-block-file__button):is(a):focus,:where(.wp-block-file__button):is(a):hover,:where(.wp-block-file__button):is(a):visited{box-shadow:none;color:#fff;opacity:.85;text-decoration:none}.wp-block-gallery:not(.has-nested-images){display:flex;flex-wrap:wrap;list-style-type:none;margin:0;padding:0}figure.wp-block-gallery.has-nested-images{align-items:normal}.wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image){margin:0;width:calc(50% - var(--wp--style--unstable-gallery-gap,16px)/ 2)}.wp-block-gallery.has-nested-images figure.wp-block-image{box-sizing:border-box;display:flex;flex-direction:column;flex-grow:1;justify-content:center;max-width:100%;position:relative}.wp-block-gallery.has-nested-images figure.wp-block-image>a,.wp-block-gallery.has-nested-images figure.wp-block-image>div{flex-direction:column;flex-grow:1;margin:0}.wp-block-gallery.has-nested-images figure.wp-block-image img{display:block;height:auto;max-width:100%!important;width:auto}.wp-block-gallery.has-nested-images:not(.is-cropped) figure.wp-block-image:not(#individual-image){margin-bottom:auto;margin-top:0}.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image){align-self:inherit}.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>a,.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>div:not(.components-drop-zone){display:flex}.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) a,.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) img{flex:1 0 0%;height:100%;object-fit:cover;width:100%}@media (min-width:600px){.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image){width:calc(33.33% - var(--wp--style--unstable-gallery-gap,16px)*.66667)}.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2),.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2)~figure.wp-block-image:not(#individual-image){width:calc(50% - var(--wp--style--unstable-gallery-gap,16px)*.5)}.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:last-child{width:100%}}.wp-block-gallery.has-nested-images.aligncenter{justify-content:center}.wp-block-group{box-sizing:border-box}h1.has-background,h2.has-background,h3.has-background,h4.has-background{padding:1.25em 2.375em}.wp-block-image img{box-sizing:border-box;height:auto;max-width:100%;vertical-align:bottom}.wp-block-image[style*=border-radius] img,.wp-block-image[style*=border-radius]>a{border-radius:inherit}.wp-block-image.aligncenter{text-align:center}.wp-block-image .aligncenter,.wp-block-image.aligncenter{display:table}.wp-block-image .aligncenter{margin-left:auto;margin-right:auto}.wp-block-image :where(.has-border-color){border-style:solid}.wp-block-image :where([style*=border-top-color]){border-top-style:solid}.wp-block-image :where([style*=border-right-color]){border-right-style:solid}.wp-block-image :where([style*=border-bottom-color]){border-bottom-style:solid}.wp-block-image :where([style*=border-left-color]){border-left-style:solid}.wp-block-image :where([style*=border-width]){border-style:solid}.wp-block-image :where([style*=border-top-width]){border-top-style:solid}.wp-block-image :where([style*=border-right-width]){border-right-style:solid}.wp-block-image :where([style*=border-bottom-width]){border-bottom-style:solid}.wp-block-image :where([style*=border-left-width]){border-left-style:solid}.wp-block-image figure{margin:0}:where(.wp-block-latest-comments:not([style*=line-height] .wp-block-latest-comments__comment)){line-height:1.1}:where(.wp-block-latest-comments:not([style*=line-height] .wp-block-latest-comments__comment-excerpt p)){line-height:1.8}ol,ul{box-sizing:border-box}ol.has-background,ul.has-background{padding:1.25em 2.375em}:where(.wp-block-navigation.has-background .wp-block-navigation-item a:not(.wp-element-button)),:where(.wp-block-navigation.has-background .wp-block-navigation-submenu a:not(.wp-element-button)){padding:.5em 1em}:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item a:not(.wp-element-button)),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu a:not(.wp-element-button)),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu button.wp-block-navigation-item__content),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-pages-list__item button.wp-block-navigation-item__content){padding:.5em 1em}p.has-background{padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}:where(.wp-block-post-excerpt){margin-bottom:var(--wp--style--block-gap);margin-top:var(--wp--style--block-gap)}:where(.wp-block-preformatted.has-background){padding:1.25em 2.375em}:where(.wp-block-pullquote){margin:0 0 1em}:where(.wp-block-search__button){border:1px solid #ccc;padding:6px 10px}.wp-block-search__input{-webkit-appearance:initial;appearance:none;border:1px solid #949494;flex-grow:1;margin-left:0;margin-right:0;min-width:3rem;padding:8px;text-decoration:unset!important}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper){border:1px solid #949494;box-sizing:border-box;padding:4px}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input{border:none;border-radius:0;padding:0 4px}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input:focus{outline:0}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) :where(.wp-block-search__button){padding:4px 8px}:where(.wp-block-term-description){margin-bottom:var(--wp--style--block-gap);margin-top:var(--wp--style--block-gap)}:where(pre.wp-block-verse){font-family:inherit}.entry-content{counter-reset:footnotes}.wp-element-button{cursor:pointer}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-text-align-center{text-align:center}.aligncenter{clear:both}.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#ddd;clip:auto!important;-webkit-clip-path:none;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}.block-about{--cwp-image:344px;min-height:var(--cwp-image);position:relative;align-items:center}.block-about .block-about__inner{gap:0}.block-about__content{flex-basis:0;flex-grow:1}.block-about ul.social-links{padding-left:0}.block-about ul.social-links li a:hover svg{fill:var(--wp--preset--color--senary)}.block-about ul.social-links svg{fill:var(--wp--preset--color--background)}.block-about .block-about__image{position:relative}.block-about .block-about__image::before{content:"";display:block;position:absolute;background:url(https://www.evolvingtable.com/wp-content/themes/evolvingtable-2023/assets/icons/logo/logo-icon.svg) center no-repeat;background-size:contain;z-index:-1;width:104px;height:105px;z-index:1}.wp-element-button.has-background:hover{background-color:var(--wp--preset--color--background)!important;color:var(--wp--preset--color--senary)!important}@media only screen and (max-width:760px){.block-about.cwp-large,.block-about.cwp-large.has-background{padding:40px 16px}.block-about .block-about__inner{display:block}.block-about .block-about__image{margin-bottom:var(--wp--custom--layout--block-gap-large);padding:0 20px}.block-about .block-about__image::before{bottom:-20px;left:0}}@media only screen and (min-width:760px){.block-about.cwp-large,.block-about.cwp-large.has-background{padding:40px}.block-about__image{align-self:stretch;width:var(--cwp-image);height:auto}.block-about__image figure,.block-about__image img{width:100%;height:100%;object-fit:cover}.block-about .block-about__image::before{bottom:-20px;left:-20px}.block-about .block-about__content{padding:0 0 0 var(--wp--custom--layout--block-gap-large)}}.block-area-sidebar .block-about .block-about__inner{display:block}.block-area-sidebar .block-about.has-background{padding:0}.block-area-sidebar .block-about .block-about__content{padding:40px}.block-area-sidebar .block-about__image{position:relative;width:100%;padding:var(--wp--custom--layout--block-gap-large);padding-bottom:0}.block-area-sidebar .block-about .block-about__image::before{display:none}.block-seen-in__title{font-weight:700;font-size:var(--wp--preset--font-size--x-large);text-align:center;margin:0 0 24px}.block-seen-in__wrap{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;column-gap:20px;row-gap:16px}.block-seen-in__wrap img{width:100px;height:48px;object-fit:contain}.block-area-sidebar .block-seen-in__wrap{gap:16px}.block-email__inner{position:relative;background-color:var(--wp--preset--color--background);border:1px solid var(--wp--preset--color--secondary)}.block-email__inner::after{content:"";display:block;position:absolute;background:url(https://www.evolvingtable.com/wp-content/themes/evolvingtable-2023/assets/icons/logo/logo-icon.svg) center no-repeat;background-size:contain;z-index:1}.block-email .wpforms-container{color:var(--wp--preset--color--foreground)}.block-email .wpforms-container .wpforms-head-container{text-align:center}.block-email .wpforms-container .wpforms-head-container .wpforms-description{font-weight:600}.block-email label.wpforms-field-label{font-size:var(--wp--preset--font-size--tiny);font-weight:600}.block-email .wpforms-container .wpforms-form .wpforms-field input:focus{border-color:var(--wp--preset--color--primary)}.block-email .wpforms-container .wpforms-submit-container{text-align:center}.block-email .wpforms-container .wpforms-submit-container .wpforms-submit{background-color:var(--wp--preset--color--senary)}@media only screen and (max-width:767px){.block-email.cwp-large.has-background{padding:32px}.block-email__inner{padding:60px 40px 40px}.block-email__inner::after{width:120px;height:122px;top:-75px;left:-16px}}@media only screen and (min-width:768px){.block-email.cwp-large.has-background{padding:60px 80px}.block-email__inner{padding:40px 60px}.block-email__inner::after{width:130px;height:132px;top:-38px;left:-60px}.block-email .wpforms-container .wpforms-field-container{display:flex;column-gap:16px}.block-email .wpforms-container .wpforms-field-container>*{margin-bottom:0;flex-grow:1}}.block-area-sidebar .block-email.cwp-large{padding:32px}.block-area-sidebar .block-email__inner{padding:60px 24px 40px}.block-area-sidebar .block-email__inner::after{width:120px;height:122px;top:-60px;left:-20px}.block-area-sidebar .block-email .wpforms-container .wpforms-head-container .wpforms-title{font-size:1.75rem}.block-area-sidebar .block-email .wpforms-field-container{display:block}.post-summary{position:relative;background:var(--wp--preset--color--background);color:var(--wp--preset--color--foreground);box-shadow:5px 5px 7px rgba(48,42,32,.1)}@supports(aspect-ratio:1){.post-summary__image img{aspect-ratio:0.75;object-fit:cover}}.post-summary__content{position:relative;padding:12px;text-align:center}.layout-sidebar-list .post-summary__content{display:flex;flex-direction:column;justify-content:center}.post-summary .post-summary__content>*{margin:0}.post-summary .post-summary__content>*+*,.post-summary .post-summary__content>.post-summary__title:first-child{margin-top:15px}.post-summary .post-summary__content .entry-total-time{position:relative;color:var(--wp--preset--color--secondary);letter-spacing:var(--wp--custom--letter-spacing--none);line-height:var(--wp--custom--line-height--small);font-size:var(--wp--preset--font-size--tiny);font-weight:600}.post-summary .post-summary__content .entry-total-time svg{position:relative;bottom:-2px;fill:var(--wp--preset--color--secondary);width:var(--wp--preset--font-size--tiny);height:auto;margin-right:3px}.post-summary__title{font-size:1.5rem}.block-post-listing:is(.layout-4up-grid,.layout-5up-featured,.layout-5up-list,.layout-6up-featured,.layout-6up-grid,.layout-6up-list,.layout-sidebar-grid,.layout-sidebar-list ) .post-summary .post-summary__title{font-size:var(--wp--preset--font-size--large)}.layout-sidebar-list .post-summary__title{margin-top:0}.post-summary__title a{color:var(--wp--preset--color--foreground);text-decoration:none}.post-summary__title a:hover{color:var(--wp--custom--color--link)}.post-summary__image img{width:100%}.block-post-listing header{display:flex;justify-content:space-between;align-items:center;gap:8px}.block-post-listing__title{flex-basis:0;flex-grow:1;max-width:var(--wp--custom--layout--content)}.block-post-listing footer{text-align:right;margin-top:var(--wp--style--block-gap)}@media only screen and (min-width:601px){.block-post-listing footer{display:none}}.block-post-listing__inner{display:grid;grid-template-columns:repeat(var(--cwp-columns,1),1fr);column-gap:8px;row-gap:16px}.layout-sidebar-grid{--cwp-columns:2}@media (max-width:600px){.layout-4up-grid{--cwp-columns:2}.post-summary.m-list{display:grid;grid-template-columns:138px 1fr}}@media (min-width:601px){.block-post-listing__inner{column-gap:32px;row-gap:32px}body:is(.content,.content-sidebar) .site-main .block-post-listing:is(.layout-4up-featured,.layout-4up-grid,.layout-4up-list,.layout-5up-featured,.layout-5up-list) .block-post-listing__inner{column-gap:16px;row-gap:16px}.block-area-sidebar .block-post-listing__inner{column-gap:8px;row-gap:16px}.layout-4up-grid{--cwp-columns:4}.post-summary.d-list{display:grid;grid-template-columns:138px 1fr}}.post-summary .post-summary__content .cwp-short-names{position:absolute;top:9px;right:initial;left:0;top:-14px;width:100%;text-align:center}.block-post-listing .post-summary .post-summary__content .cwp-short-names .cat-key span.label{top:9px}.layout-4up-grid .post-summary__content .cwp-short-names .cat-key span.label{top:9px}.layout-sidebar-list .post-summary__content .cwp-short-names{position:initial}.block-post-meta p{font-size:var(--wp--preset--font-size--small)}.block-post-meta span{font-family:var(--wp--preset-font-family--primary);font-weight:700;letter-spacing:var(--wp--custom--letter-spacing--none);line-height:var(--wp--custom--line-height--small);font-size:var(--wp--preset--font-size--large)}.block-post-meta a{font-weight:600;font-size:var(--wp--preset--font-size--small);line-height:var(--wp--custom--line-height--normal);letter-spacing:var(--wp--custom--letter-spacing--none);margin-bottom:var(--wp--custom--layout--block-gap)}@media only screen and (max-width:768px){.block-post-meta{text-align:center}}.block-save-recipe.has-background{padding:24px}.block-save-recipe .wpforms-container{margin:0}.block-save-recipe .wpforms-container.one-line .wpforms-form{display:grid;grid-template-columns:2fr auto;grid-template-rows:auto auto;align-items:flex-end}.block-save-recipe .wpforms-container.one-line .wpforms-form .wpforms-head-container{grid-column:1/-1}.block-save-recipe .wpforms-container.one-line .wpforms-form input[type=email]{height:44px}.cwp-save-recipe-shortcode{background-color:var(--wp--preset--color--foreground);color:var(--wp--preset--color--background);grid-column:1/-1;display:flex;flex-direction:column;align-items:center;gap:16px;margin-top:32px;padding:16px}.cwp-save-recipe-shortcode__title{display:flex;align-items:center;gap:16px}@media only screen and (min-width:768px){.cwp-save-recipe-shortcode{flex-direction:row}.cwp-save-recipe-shortcode .left{flex:1 0 316px}.cwp-save-recipe-shortcode .right{flex:1 1 auto}.cwp-save-recipe-shortcode div.wpforms-container.one-line .wpforms-form{grid-gap:0}}@media only screen and (max-width:767px){.cwp-save-recipe-shortcode .left{display:flex;flex-direction:column;row-gap:8px}.cwp-save-recipe-shortcode__title{justify-content:center}}.cwp-save-recipe-shortcode__title .icon{max-width:50px}.cwp-save-recipe-shortcode__title h4{font-size:var(--wp--preset--font-size--x-large)}.cwp-save-recipe-shortcode__description{font-size:var(--wp--preset--font-size--tiny);font-style:italic}@media only screen and (max-width:400px){.cwp-save-recipe-shortcode__description{font-size:var(--wp--preset--font-size--min)}}.cwp-save-recipe-shortcode div.wpforms-container.one-line .wpforms-form{display:flex}.cwp-save-recipe-shortcode .wpforms-container{margin-bottom:0}.cwp-save-recipe-shortcode .wpforms-field-container{align-items:center}.cwp-save-recipe-shortcode label.wpforms-field-label{display:none}.cwp-save-recipe-shortcode input[type=email]{height:44px}.cwp-save-recipe-shortcode .wpforms-submit-container button[type=submit].wpforms-submit.wp-element-button{font-family:var(--wp--preset--font-family--primary);border-radius:0;height:44px}.cwp-save-recipe-shortcode div.wpforms-container.one-line .wpforms-submit-container{padding-top:0;margin-top:0}.cwp-save-recipe-shortcode div.wpforms-container.one-line .wpforms-submit-container button[type=submit]{white-space:nowrap;border:var(--wp--custom--border-width--tiny) solid var(--wp--preset--color--foreground);text-transform:none}ul.social-links{display:flex}ul.social-links.has-text-align-center{justify-content:center}ul.social-links li{list-style-type:none}ul.social-links a{width:44px;height:44px;display:flex;align-items:center;justify-content:center;text-decoration:none}ul.social-links svg{fill:var(--wp--preset--color--foreground);width:20px;height:20px}ul.social-links a:hover svg{fill:var(--wp--preset--color--primary)}.block-social-share{display:flex;gap:25px;align-items:flex-start;padding-bottom:40px;border-bottom:4px solid var(--wp--preset--color--nonary);margin-bottom:40px!important}.block-social-share a{padding:0;width:44px;height:44px;display:inline-flex;align-items:center;justify-content:center}.block-social-share a+a{margin-left:12px}.block-social-share svg{fill:var(--wp--preset--color--foreground)}.social-share__links,.social-share__title{flex:1}.social-share__title{padding-top:10px;font-family:var(--wp--custom--typography--heading--font-family);font-weight:700;font-size:var(--wp--preset--font-size--large);letter-spacing:var(--wp--custom--letter-spacing--none);line-height:var(--wp--custom--line-height--small);margin-bottom:16px}.social-share__links{text-align:right}@media only screen and (max-width:768px){.block-social-share{flex-direction:column;align-items:center;gap:0}}.block-tip:not(.has-background){background:var(--wp--preset--color--backdrop)}.block-tip{color:var(--wp--preset--color--background)}.wp-block-heading.block-tip__title{display:flex;align-items:center;gap:16px}.wp-block-heading.block-tip__title::before{content:"";display:block;background:url(https://www.evolvingtable.com/wp-content/themes/evolvingtable-2023/assets/icons/logo/logo-icon.svg) center no-repeat;background-size:contain;width:73px;height:73px;flex-shrink:0}.block-tip p{font-size:var(--wp--preset--font-size--small);font-weight:600}@media only screen and (max-width:760px){.block-tip.has-background,.block-tip:not(.has-background){padding:40px 24px}}@media only screen and (min-width:761px){.block-tip.has-background,.block-tip:not(.has-background){padding:var(--wp--custom--layout--block-gap-large)}}body{--wp--preset--color--black:#000000;--wp--preset--color--cyan-bluish-gray:#abb8c3;--wp--preset--color--white:#ffffff;--wp--preset--color--pale-pink:#f78da7;--wp--preset--color--vivid-red:#cf2e2e;--wp--preset--color--luminous-vivid-orange:#ff6900;--wp--preset--color--luminous-vivid-amber:#fcb900;--wp--preset--color--light-green-cyan:#7bdcb5;--wp--preset--color--vivid-green-cyan:#00d084;--wp--preset--color--pale-cyan-blue:#8ed1fc;--wp--preset--color--vivid-cyan-blue:#0693e3;--wp--preset--color--vivid-purple:#9b51e0;--wp--preset--color--foreground:#302A20;--wp--preset--color--background:#ffffff;--wp--preset--color--primary:#37757F;--wp--preset--color--secondary:#6B6A6B;--wp--preset--color--tertiary:#929E53;--wp--preset--color--quaternary:#E9C3B6;--wp--preset--color--quinary:#A7DAD2;--wp--preset--color--senary:#CD4D44;--wp--preset--color--septenary:#CBCAC8;--wp--preset--color--octonary:#E9BC50;--wp--preset--color--nonary:#E9E9E9;--wp--preset--color--denary:#EBEBEB;--wp--preset--color--duodenary:#FFFEFC;--wp--preset--color--tredenary:#6C4F80;--wp--preset--color--pattern-primary:#302A21;--wp--preset--color--pattern-secondary:#fffffe;--wp--preset--color--pattern-tertiary:#929E54;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6, 147, 227, 1) 0%,rgb(155, 81, 224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,rgb(122, 220, 180) 0%,rgb(0, 208, 130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252, 185, 0, 1) 0%,rgba(255, 105, 0, 1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255, 105, 0, 1) 0%,rgb(207, 46, 46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,rgb(238, 238, 238) 0%,rgb(169, 184, 195) 100%);--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,rgb(74, 234, 220) 0%,rgb(151, 120, 209) 20%,rgb(207, 42, 186) 40%,rgb(238, 44, 130) 60%,rgb(251, 105, 98) 80%,rgb(254, 248, 76) 100%);--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,rgb(255, 206, 236) 0%,rgb(152, 150, 240) 100%);--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,rgb(254, 205, 165) 0%,rgb(254, 45, 45) 50%,rgb(107, 0, 62) 100%);--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,rgb(255, 203, 112) 0%,rgb(199, 81, 192) 50%,rgb(65, 88, 208) 100%);--wp--preset--gradient--pale-ocean:linear-gradient(135deg,rgb(255, 245, 203) 0%,rgb(182, 227, 212) 50%,rgb(51, 167, 181) 100%);--wp--preset--gradient--electric-grass:linear-gradient(135deg,rgb(202, 248, 128) 0%,rgb(113, 206, 126) 100%);--wp--preset--gradient--midnight:linear-gradient(135deg,rgb(2, 3, 129) 0%,rgb(40, 116, 252) 100%);--wp--preset--font-size--small:1rem;--wp--preset--font-size--medium:1.125rem;--wp--preset--font-size--large:1.25rem;--wp--preset--font-size--x-large:clamp(1.5rem, 2.8vw, 1.75rem);--wp--preset--font-size--gargantuan:clamp(2.75rem, 5.2vw, 3.25rem);--wp--preset--font-size--colossal:clamp(2.5rem, 4.8vw, 3rem);--wp--preset--font-size--gigantic:clamp(2.125rem, 4.4vw, 2.75rem);--wp--preset--font-size--jumbo:clamp(2rem, 4vw, 2.5rem);--wp--preset--font-size--huge:clamp(1.875rem, 3.6vw, 2.25rem);--wp--preset--font-size--big:clamp(1.75rem, 3.2vw, 2rem);--wp--preset--font-size--tiny:0.875rem;--wp--preset--font-size--min:0.75rem;--wp--preset--font-family--system-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;--wp--preset--font-family--system-serif:-apple-system-ui-serif,ui-serif,Noto Serif,Iowan Old Style,Apple Garamond,Baskerville,Times New Roman,Droid Serif,Times,Source Serif Pro,serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;--wp--preset--font-family--primary:Poppins,sans-serif;--wp--preset--spacing--20:0.44rem;--wp--preset--spacing--30:0.67rem;--wp--preset--spacing--40:1rem;--wp--preset--spacing--50:1.5rem;--wp--preset--spacing--60:2.25rem;--wp--preset--spacing--70:3.38rem;--wp--preset--spacing--80:5.06rem;--wp--preset--shadow--natural:6px 6px 9px rgba(0, 0, 0, .2);--wp--preset--shadow--deep:12px 12px 50px rgba(0, 0, 0, .4);--wp--preset--shadow--sharp:6px 6px 0px rgba(0, 0, 0, .2);--wp--preset--shadow--outlined:6px 6px 0px -3px rgba(255, 255, 255, 1),6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp:6px 6px 0px rgba(0, 0, 0, 1);--wp--custom--border-radius--tiny:3px;--wp--custom--border-radius--small:8px;--wp--custom--border-radius--medium:12px;--wp--custom--border-radius--large:50%;--wp--custom--border-width--tiny:1px;--wp--custom--border-width--small:2px;--wp--custom--border-width--medium:3px;--wp--custom--border-width--large:4px;--wp--custom--box-shadow--1:0px 2px 8px rgba(33, 33, 33, .12);--wp--custom--box-shadow--2:0px 3px 10px rgba(33, 33, 33, .25);--wp--custom--color--link:var(--wp--preset--color--senary);--wp--custom--color--star:var(--wp--preset--color--octonary);--wp--custom--color--neutral-50:#FAFAFA;--wp--custom--color--neutral-100:#F5F5F5;--wp--custom--color--neutral-200:#EEEEEE;--wp--custom--color--neutral-300:#E0E0E0;--wp--custom--color--neutral-400:#BDBDBD;--wp--custom--color--neutral-500:#9E9E9E;--wp--custom--color--neutral-600:#757575;--wp--custom--color--neutral-700:#616161;--wp--custom--color--neutral-800:#424242;--wp--custom--color--neutral-900:#212121;--wp--custom--layout--content:736px;--wp--custom--layout--wide:1200px;--wp--custom--layout--sidebar:336px;--wp--custom--layout--page:var(--wp--custom--layout--content);--wp--custom--layout--padding:16px;--wp--custom--layout--block-gap:16px;--wp--custom--layout--block-gap-large:40px;--wp--custom--letter-spacing--none:normal;--wp--custom--letter-spacing--tight:-.01em;--wp--custom--letter-spacing--loose:.05em;--wp--custom--letter-spacing--looser:.1em;--wp--custom--line-height--tiny:1.1;--wp--custom--line-height--small:1.2;--wp--custom--line-height--medium:1.4;--wp--custom--line-height--normal:1.75;--wp--custom--typography--heading--font-family:var(--wp--preset--font-family--primary);--wp--custom--typography--heading--font-size:var(--wp--preset--font-size--big);--wp--custom--typography--heading--font-weight:700;--wp--custom--typography--heading--letter-spacing:var(--wp--custom--letter-spacing--none);--wp--custom--typography--heading--line-height:var(--wp--custom--line-height--small);--wp--custom--typography--heading--text-transform:none;--wp--custom--typography--interface--font-family:var(--wp--preset--font-family--system-sans-serif);--wp--custom--typography--interface--font-size:var(--wp--preset--font-size--small);--wp--custom--typography--interface--font-weight:400;--wp--custom--typography--interface--letter-spacing:var(--wp--custom--letter-spacing--loose);--wp--custom--typography--interface--line-height:var(--wp--custom--line-height--small);--wp--custom--typography--interface--text-transform:uppercase}body{margin:0;--wp--style--global--content-size:var(--wp--custom--layout--content);--wp--style--global--wide-size:var(--wp--custom--layout--wide)}:where(.wp-site-blocks)>*{margin-block-start:var(--wp--custom--layout--block-gap);margin-block-end:0}:where(.wp-site-blocks)>:first-child:first-child{margin-block-start:0}:where(.wp-site-blocks)>:last-child:last-child{margin-block-end:0}body{--wp--style--block-gap:var(--wp--custom--layout--block-gap)}:where(body .is-layout-flow)>:first-child:first-child{margin-block-start:0}:where(body .is-layout-flow)>:last-child:last-child{margin-block-end:0}:where(body .is-layout-flow)>*{margin-block-start:var(--wp--custom--layout--block-gap);margin-block-end:0}:where(body .is-layout-constrained)>:first-child:first-child{margin-block-start:0}:where(body .is-layout-constrained)>:last-child:last-child{margin-block-end:0}:where(body .is-layout-constrained)>*{margin-block-start:var(--wp--custom--layout--block-gap);margin-block-end:0}:where(body .is-layout-flex){gap:var(--wp--custom--layout--block-gap)}:where(body .is-layout-grid){gap:var(--wp--custom--layout--block-gap)}body .is-layout-flow>.aligncenter{margin-left:auto!important;margin-right:auto!important}body .is-layout-constrained>.aligncenter{margin-left:auto!important;margin-right:auto!important}body .is-layout-constrained>:where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width:var(--wp--style--global--content-size);margin-left:auto!important;margin-right:auto!important}body .is-layout-flex{display:flex}body .is-layout-flex{flex-wrap:wrap;align-items:center}body .is-layout-flex>*{margin:0}body{background-color:var(--wp--preset--color--background);color:var(--wp--preset--color--foreground);font-family:var(--wp--preset--font-family--system-sans-serif);font-size:var(--wp--preset--font-size--medium);line-height:var(--wp--custom--line-height--normal);padding-top:0;padding-right:0;padding-bottom:0;padding-left:0}a:where(:not(.wp-element-button)){color:var(--wp--custom--color--link);font-weight:600;text-decoration:underline}h1,h2,h3,h4{font-family:var(--wp--custom--typography--heading--font-family);font-weight:var(--wp--custom--typography--heading--font-weight);letter-spacing:var(--wp--custom--typography--heading--letter-spacing);line-height:var(--wp--custom--typography--heading--line-height);text-transform:var(--wp--custom--typography--heading--text-transform)}h1{font-size:var(--wp--preset--font-size--gigantic);line-height:var(--wp--custom--line-height--tiny)}h2{font-size:var(--wp--preset--font-size--big)}h3{font-size:var(--wp--preset--font-size--x-large)}h4{font-size:var(--wp--preset--font-size--large)}.wp-block-button__link,.wp-element-button{background-color:var(--wp--preset--color--foreground);border-radius:0;border-color:var(--wp--preset--color--primary);border-width:1px;color:var(--wp--preset--color--background);font-family:var(--wp--custom--typography--interface--font-family);font-size:var(--wp--preset--font-size--small);font-weight:700;letter-spacing:var(--wp--custom--typography--interface--letter-spacing);line-height:var(--wp--custom--line-height--medium);padding:11px 16px;text-decoration:none;text-transform:var(--wp--custom--typography--interface--text-transform)}.has-background-color{color:var(--wp--preset--color--background)!important}.has-senary-background-color{background-color:var(--wp--preset--color--senary)!important}.has-pattern-primary-background-color{background-color:var(--wp--preset--color--pattern-primary)!important}.has-small-font-size{font-size:var(--wp--preset--font-size--small)!important}.has-medium-font-size{font-size:var(--wp--preset--font-size--medium)!important}.has-big-font-size{font-size:var(--wp--preset--font-size--big)!important}.has-tiny-font-size{font-size:var(--wp--preset--font-size--tiny)!important}.wprm-user-rating.wprm-user-rating-allowed .wprm-rating-star{cursor:pointer}.wprm-popup-modal-user-rating .wprm-popup-modal__container{max-width:500px;width:95%}.wprm-popup-modal-user-rating #wprm-user-ratings-modal-message{display:none}.wprm-popup-modal-user-rating .wprm-user-ratings-modal-recipe-name{margin:5px auto;max-width:350px;text-align:center}.wprm-popup-modal-user-rating .wprm-user-ratings-modal-stars-container{margin-bottom:5px;text-align:center}.wprm-popup-modal-user-rating textarea{border:1px solid #cecece;border-radius:4px;display:block;font-family:inherit;font-size:.9em;line-height:1.5;min-height:75px;padding:10px;resize:vertical;width:calc(100% - 20px)}.wprm-popup-modal-user-rating textarea:focus::placeholder{color:#0000}.wprm-popup-modal-user-rating .wprm-user-rating-modal-field{align-items:center;display:flex;margin-top:10px}.wprm-popup-modal-user-rating .wprm-user-rating-modal-field label{margin-right:10px;min-width:70px;width:auto}.wprm-popup-modal-user-rating .wprm-user-rating-modal-field input{border:1px solid #cecece;border-radius:4px;display:block;flex:1;font-size:.9em;line-height:1.5;padding:5px 10px;width:100%}.wprm-popup-modal-user-rating button{margin-right:5px}.wprm-popup-modal-user-rating button:disabled{cursor:not-allowed;opacity:.5}.wprm-popup-modal-user-rating #wprm-user-rating-modal-errors{color:#8b0000;display:inline-block;font-size:.8em}.wprm-popup-modal-user-rating #wprm-user-rating-modal-errors div,.wprm-popup-modal-user-rating #wprm-user-rating-modal-waiting{display:none}fieldset.wprm-user-ratings-modal-stars{background:0 0;border:0;display:inline-block;margin:0;padding:0;position:relative}fieldset.wprm-user-ratings-modal-stars legend{left:0;opacity:0;position:absolute}fieldset.wprm-user-ratings-modal-stars br{display:none}fieldset.wprm-user-ratings-modal-stars input[type=radio]{border:0;cursor:pointer;float:left;height:16px;margin:0!important;min-height:0;min-width:0;opacity:0;padding:0!important;width:16px}fieldset.wprm-user-ratings-modal-stars input[type=radio]:first-child{margin-left:-16px}fieldset.wprm-user-ratings-modal-stars span{font-size:0;height:16px;left:0;opacity:0;pointer-events:none;position:absolute;top:0;width:80px}fieldset.wprm-user-ratings-modal-stars span svg{height:100%!important;width:100%!important}fieldset.wprm-user-ratings-modal-stars input:checked+span,fieldset.wprm-user-ratings-modal-stars input:hover+span{opacity:1}fieldset.wprm-user-ratings-modal-stars input:hover+span~span{display:none}@supports (-webkit-touch-callout:none){.wprm-popup-modal-user-rating .wprm-user-rating-modal-field input,.wprm-popup-modal-user-rating textarea{font-size:16px}}.wprm-recipe-ingredients-container,.wprm-recipe-instructions-container{counter-reset:wprm-advanced-list-counter}.wprm-checkbox-container{margin-left:-16px}.wprm-checkbox-container input[type=checkbox]{margin:0!important;opacity:0;width:16px!important}.wprm-checkbox-container label.wprm-checkbox-label{display:inline!important;left:0;margin:0!important;padding-left:26px;position:relative}.wprm-checkbox-container label:after,.wprm-checkbox-container label:before{content:"";display:inline-block;position:absolute}.wprm-checkbox-container label:before{border:1px solid;height:18px;left:0;top:0;width:18px}.wprm-checkbox-container label:after{border-bottom:2px solid;border-left:2px solid;height:5px;left:5px;top:5px;transform:rotate(-45deg);width:9px}.wprm-checkbox-container input[type=checkbox]+label:after{content:none}.wprm-checkbox-container input[type=checkbox]:checked+label:after{content:""}.wprm-checkbox-container input[type=checkbox]:focus+label:before{outline:#3b99fc auto 5px}.wprm-recipe-ingredients li,.wprm-recipe-instructions li{position:relative}.wprm-recipe-ingredients li .wprm-checkbox-container,.wprm-recipe-instructions li .wprm-checkbox-container{display:inline-block;left:-32px;line-height:.9em;position:absolute;top:.25em}.no-js .wprm-private-notes-container,.no-js .wprm-recipe-private-notes-header{display:none}input[type=number].wprm-recipe-servings{display:inline;margin:0;padding:5px;width:60px}html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}a{background-color:rgba(0,0,0,0)}b,strong{font-weight:bolder}code{font-family:monospace,monospace;font-size:1em}small{font-size:80%}img{border-style:none}button,input,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}template{display:none}[hidden]{display:none}figure{margin:0}html,input[type=search]{box-sizing:border-box}@media(max-width:359px){body{--wp--custom--layout--padding:10px}}*,:after,:before{box-sizing:inherit}.wrap{max-width:calc(var(--wp--custom--layout--wide) + 2*var(--wp--custom--layout--padding));margin:0 auto;padding-left:var(--wp--custom--layout--padding);padding-right:var(--wp--custom--layout--padding)}.site-inner{padding:var(--wp--custom--layout--block-gap-large) 0}.screen-reader-text,.screen-reader-text span{position:absolute!important;clip:rect(0,0,0,0);height:1px;width:1px;border:0;overflow:hidden}.screen-reader-text:focus{clip:auto!important;height:auto;width:auto;display:block;font-size:1em;font-weight:700;padding:15px 23px 14px;color:#333;background:#fff;z-index:100000;text-decoration:none;box-shadow:0 0 2px 2px rgba(0,0,0,.6)}@media(max-width:991px){.sidebar-primary{display:none}}@media(min-width:992px){.content-sidebar .content-area{display:grid;grid-template-columns:minmax(0,1fr) var(--wp--custom--layout--sidebar);grid-column-gap:var(--wp--style--block-gap);max-width:var(--wp--custom--layout--wide);margin-left:auto;margin-right:auto}.content-sidebar .site-main{float:none;width:100%;max-width:var(--wp--custom--layout--content)}.content-sidebar .sidebar-primary{float:none;width:100%}}h1,h2,h3,h4{margin-block-end:var(--wp--style--block-gap)}h1:first-child,h2:first-child,h3:first-child,h4:first-child{margin-block-start:0}p.is-style-heading{font-family:var(--wp--custom--typography--heading--font-family);font-size:var(--wp--custom--typography--heading--font-size);font-weight:var(--wp--custom--typography--heading--font-weight);letter-spacing:var(--wp--custom--typography--heading--letter-spacing);line-height:var(--wp--custom--typography--heading--line-height);text-transform:var(--wp--custom--typography--heading--text-transform)}strong{font-weight:600}ul.is-style-fancy li{list-style-type:none;position:relative}ul.is-style-fancy li::before{content:"";position:absolute;top:10px;left:-20px;width:11px;height:12px;background-image:url("https://www.evolvingtable.com/wp-content/themes/evolvingtable-2023/assets/icons/utility/fancy-list-icon.svg");background-size:cover}ol.is-style-fancy{list-style-type:none;counter-reset:my-counter;padding-left:0}ol.is-style-fancy>li{position:relative;padding-left:46px;margin-bottom:10px;counter-increment:my-counter}ol.is-style-fancy>li::before{content:counter(my-counter);position:absolute;top:3px;left:10px;color:var(--wp--preset--color--background);font-weight:700;font-size:var(--wp--preset--font-size--tiny);letter-spacing:var(--wp--custom--letter-spacing--loose);background-image:url("https://www.evolvingtable.com/wp-content/themes/evolvingtable-2023/assets/icons/utility/fancy-list-ordered-icon.svg");background-size:24px 24px;background-repeat:no-repeat;background-position:center center;padding-left:9px;padding-right:8px;padding-top:1px}img{display:block;max-width:100%;height:auto}img.aligncenter{margin-left:auto;margin-right:auto}.wp-block-image{position:relative}.wp-block-gallery.has-nested-images figure.wp-block-image{position:relative}.wp-block-button>.wp-block-button__link,.wp-element-button{display:inline-flex;min-height:44px;box-sizing:border-box;align-items:center;gap:4px;font-size:var(--wp--preset--font-size--tiny);letter-spacing:var(--wp--custom--letter-spacing--none);line-height:var(--wp--custom--line-height--normal)}.wp-block-button>.wp-block-button__link.has-background,.wp-element-button.has-background{padding:11px 16px}.wp-block-button>.wp-block-button__link:hover:not(.has-background),.wp-element-button:hover:not(.has-background){background:var(--wp--preset--color--senary)}.wp-block-button>.wp-block-button__link:hover:not(.has-text-color),.wp-element-button:hover:not(.has-text-color){color:var(--wp--preset--color--background)}input,select,textarea{background:var(--wp--preset--color--background);border:var(--wp--custom--border-width--tiny) solid var(--wp--preset--color--foreground);border-radius:0;color:var(--wp--preset--color--foreground);font-size:var(--wp--preset--font-size--small);line-height:var(--wp--custom--line-height--medium);padding:9px 12px;width:100%}input[type=checkbox],input[type=submit]{width:auto}select{line-height:54px;height:54px}textarea{width:100%;resize:vertical}::-moz-placeholder{color:var(--wp--preset--color--foreground);opacity:1}::-ms-input-placeholder{color:var(--wp--preset--color--foreground)}::-webkit-input-placeholder{color:var(--wp--preset--color--foreground)}input:focus:-ms-input-placeholder,input:focus::-moz-placeholder,input:focus::-webkit-input-placeholder,textarea:focus:-ms-input-placeholder,textarea:focus::-moz-placeholder,textarea:focus::-webkit-input-placeholder{color:transparent}.wpforms-container .wpforms-field-label,label{font-family:var(--wp--custom--typography--interface--font-family);font-size:var(--wp--custom--typography--interface--font-size);font-weight:var(--wp--custom--typography--interface--font-weight);letter-spacing:var(--wp--custom--typography--interface--letter-spacing);line-height:var(--wp--custom--typography--interface--line-height);text-transform:var(--wp--custom--typography--interface--text-transform)}.wpforms-container .wpforms-field-label .wpforms-required-label,label .wpforms-required-label{color:inherit}.search-form .search__inside-wrapper{background:var(--wp--preset--color--background);border:var(--wp--custom--border-width--tiny) solid var(--wp--preset--color--foreground);border-radius:0;display:flex;justify-content:space-between;padding:4px}.search-form .search__inside-wrapper .search-field{border:none;flex-grow:1;padding:0 4px;width:100%;min-width:3rem}.search-form .search__inside-wrapper .search-field:focus{outline:var(--wp--preset--color--background)}.search-form .search__inside-wrapper .search-submit{width:44px;height:44px;aspect-ratio:1;display:flex;align-items:center;justify-content:center;border:0}.search-form .search__inside-wrapper .search-submit.wp-element-button{padding:0}.search-form .search__inside-wrapper .search-submit svg{fill:#fff;width:36px;height:36px}.has-background{padding:var(--wp--custom--layout--block-gap) var(--wp--custom--layout--padding)}.has-background{color:var(--wp--preset--color--foreground);--cwp--button:var(--wp--preset--color--foreground)}.has-pattern-primary-background-color,.has-senary-background-color{color:var(--wp--preset--color--white);--cwp--button:var(--wp--preset--color--white)}.has-pattern-primary-background-color{background-image:url("https://www.evolvingtable.com/wp-content/themes/evolvingtable-2023/assets/images/bg-pattern-dark-brown.jpg");position:relative;background-size:375px}.has-pattern-primary-background-color>*{position:relative;z-index:1}div.wpforms-container.save-recipe{background-color:var(--wp--preset--color--foreground);color:var(--wp--preset--color--background);padding:40px}div.wpforms-container.save-recipe .wpforms-head-container{margin-bottom:20px}div.wpforms-container.save-recipe .wpforms-head-container::before{content:"";float:left;margin-right:24px;background-image:url("https://www.evolvingtable.com/wp-content/themes/evolvingtable-2023/assets/images/icon-email-envelope.png");background-size:100% 100%;width:120px;height:76px;display:inline-block;grid-row:1/span 2}@media(max-width:767px){div.wpforms-container.save-recipe{padding:16px}div.wpforms-container.save-recipe form{display:grid;grid-template-columns:auto min-content;align-items:flex-end}div.wpforms-container.save-recipe .wpforms-head-container{grid-column:1/-1}div.wpforms-container.save-recipe .wpforms-head-container{text-align:center}div.wpforms-container.save-recipe .wpforms-head-container::before{margin:0 0 16px;background-image:url(https://www.evolvingtable.com/wp-content/themes/evolvingtable-2023/assets/images/icon-email-envelope.png);background-repeat:no-repeat;background-size:120px 76px;background-position:center;width:100%;height:76px;display:block}div.wpforms-container.save-recipe input[type=email]{height:44px}div.wpforms-container.save-recipe .wpforms-submit-container button[type=submit]{white-space:nowrap;margin-bottom:16px;height:44px}.cwp-short-names{position:initial}}@media(min-width:768px){div.wpforms-container.save-recipe .wpforms-head-container{display:grid;grid-template-columns:144px 1fr;align-items:center}div.wpforms-container.save-recipe .wpforms-submit-container{display:flex;align-items:flex-end}}.cwp-short-names{line-height:1em;display:flex;align-items:center;justify-content:center;gap:3px}.post-header .cwp-short-names{position:absolute;right:16px;top:70px}.cwp-short-names .cat-key{position:relative;text-transform:uppercase;display:flex;align-items:center;justify-content:center}.cwp-short-names .cat-key :hover{fill:var(--wp--preset--color--foreground)}.cwp-short-names .cat-key svg{width:27px;height:27px}.cwp-short-names .cat-key span.label{position:absolute;width:100%;text-align:center;font-weight:800;font-size:var(--wp--preset--font-size--min);color:var(--wp--preset--color--background);line-height:.8em;display:flex;align-items:center;justify-content:center}.cwp-short-names .cat-key span.label:hover+svg{fill:var(--wp--preset--color--foreground)}.cwp-short-names .cat-key.asparagus{fill:#929e53}.cwp-short-names .cat-key.sunrise{fill:#cd4d44}.cwp-short-names .cat-key.mustard{fill:#e9bc50}.cwp-short-names .cat-key.robbinegg{fill:#a7dad2}.cwp-short-names .cat-key.smoke{fill:#6b6a6b}.cwp-short-names .cat-key.dirtyblue{fill:#37757f}.wprm-recipe .cwp-short-names{margin-top:16px;display:flex;align-items:center;justify-content:center;position:absolute;bottom:-14px;width:100%;margin:0}.wprm-recipe .cwp-short-names .cat-key span.label{font-size:var(--wp--preset--font-size--tiny);top:9px}.wprm-recipe .cwp-short-names svg{width:30px;height:30px}.wprm-recipe .cwp-short-names a{line-height:1em}:where(.entry-content,.comment-respond) a:where(:not(.wp-element-button)){text-decoration:underline;text-decoration-color:var(--wp--preset--color--senary);text-underline-offset:3px}:where(.entry-content,.comment-respond) a:where(:not(.wp-element-button):hover){background-color:var(--wp--preset--color--senary);color:var(--wp--preset--color--background)}:where(.entry-content,.comment-respond) :where(.social-links,.wprm-recipe-template-cwp-food,.wprm-recipe-template-cwp-roundup,.yoast-table-of-contents,.cwp-short-names,.icon-group,.block-about,.block-as-seen-in,.block-ci,.block-cookbook,.block-cookbook-banner,.block-ebook,.block-email,.block-featured-video,.block-instagram-cta,.block-pinterest-cta,.block-post-listing .post-summary__content,.block-quick-links .block-quick-links__inner,.block-social-share,.block-tip,.block-video-container,.block-area,.post-header__avatar,.shop-page-wp-grid,.wp-block-image) a:where(:not(.wp-element-button)){background:initial;text-decoration:initial}:where(.entry-content,.comment-respond) :where(.social-links,.wprm-recipe-template-cwp-food,.wprm-recipe-template-cwp-roundup,.yoast-table-of-contents,.cwp-short-names,.icon-group,.block-about,.block-as-seen-in,.block-ci,.block-cookbook,.block-cookbook-banner,.block-ebook,.block-email,.block-featured-video,.block-instagram-cta,.block-pinterest-cta,.block-post-listing .post-summary__content,.block-quick-links .block-quick-links__inner,.block-social-share,.block-tip,.block-video-container,.block-area,.post-header__avatar,.shop-page-wp-grid,.wp-block-image) a:where(:not(.wp-element-button)):hover{background:initial;text-decoration:initial}.breadcrumb{margin:0 auto 16px;font-family:var(--wp--custom--typography--interface--font-family);font-size:var(--wp--custom--typography--interface--font-size);font-weight:var(--wp--custom--typography--interface--font-weight);letter-spacing:var(--wp--custom--typography--interface--letter-spacing);line-height:var(--wp--custom--typography--interface--line-height);text-transform:var(--wp--custom--typography--interface--text-transform);font-size:var(--wp--preset--font-size--small);max-width:var(--wp--custom--layout--page);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.breadcrumb span{color:var(--wp--preset--color--foreground)}.breadcrumb a{color:var(--wp--preset--color--senary);font-weight:700;letter-spacing:var(--wp--custom--letter-spacing--none)}.breadcrumb .sep{margin:0 1px}.post-header .breadcrumb{max-width:100%;grid-column:1/-1;margin-left:0;margin-right:0}.breadcrumb .breadcrumb_last{letter-spacing:var(--wp--custom--letter-spacing--none);font-weight:600;white-space:normal}@media(max-width:767px){.breadcrumb{font-size:var(--wp--preset--font-size--tiny)}}.schema-faq-section{background-color:var(--wp--preset--color--denary)}.schema-faq>*+*{margin-top:var(--wp--custom--layout--block-gap)}.schema-faq-question{font-family:var(--wp--custom--typography--heading--font-family);font-size:var(--wp--custom--typography--heading--font-size);font-weight:var(--wp--custom--typography--heading--font-weight);letter-spacing:var(--wp--custom--typography--heading--letter-spacing);line-height:var(--wp--custom--typography--heading--line-height);text-transform:var(--wp--custom--typography--heading--text-transform);font-size:var(--wp--preset--font-size--large);display:block;padding:var(--wp--custom--layout--block-gap)}.schema-faq-answer{padding:var(--wp--custom--layout--block-gap);margin:0;font-weight:600}.schema-faq--has-toggle .schema-faq-question{padding-right:52px;position:relative}.schema-faq-toggle{background-color:rgba(0,0,0,0);background-image:url(https://www.evolvingtable.com/wp-content/themes/evolvingtable-2023/assets/icons/utility/plus.svg);background-size:23px 23px;background-position:center center;background-repeat:no-repeat;border:none;cursor:pointer;width:44px;height:44px;position:absolute;right:0;top:calc(50% - 22px)}.schema-faq-section.active .schema-faq-toggle{background-color:rgba(0,0,0,0);background-image:url(https://www.evolvingtable.com/wp-content/themes/evolvingtable-2023/assets/icons/utility/minus.svg);background-size:23px 23px;background-position:center center;background-repeat:no-repeat}.yoast-table-of-contents{background:var(--wp--preset--color--foreground)}.yoast-table-of-contents h2{position:relative;font-family:var(--wp--preset--font-family--system-sans-serif);color:var(--wp--preset--color--background);padding:24px;padding-left:92px;margin:0;z-index:1}.yoast-table-of-contents h2::before{content:"";display:block;position:absolute;background:url(https://www.evolvingtable.com/wp-content/themes/evolvingtable-2023/assets/icons/logo/logo-icon-alt.svg) center no-repeat;background-size:contain;width:52px;height:52px;top:calc(50% - 26px);left:24px;z-index:1}.yoast-table-of-contents ul{margin:0;padding:0 24px 16px}.yoast-table-of-contents ul a{font-weight:700;font-size:var(--wp--preset--font-size--small);color:var(--wp--preset--color--background);text-decoration:underline}.yoast-table-of-contents ul li{margin-bottom:0;position:relative;margin-left:24px}.yoast-table-of-contents ul li::before{content:"";position:absolute;top:10px;left:-20px;width:11px;height:12px;background-image:url("https://www.evolvingtable.com/wp-content/themes/evolvingtable-2023/assets/icons/utility/fancy-list-icon.svg");background-size:cover}.yoast-table-of-contents--no-js{padding-bottom:60px}.yoast-table-of-contents--no-js ul li:nth-of-type(n+4){display:none}.wprm-recipe-rating .wprm-recipe-rating-details{font-size:inherit}.wprm-toggle-switch-container{display:block}.wprm-toggle-switch-container .wprm-prevent-sleep-description{display:block;margin-left:53px}div.wpforms-container .wpforms-title{font-family:var(--wp--custom--typography--heading--font-family);font-size:var(--wp--custom--typography--heading--font-size);font-weight:var(--wp--custom--typography--heading--font-weight);letter-spacing:var(--wp--custom--typography--heading--letter-spacing);line-height:var(--wp--custom--typography--heading--line-height);text-transform:var(--wp--custom--typography--heading--text-transform);margin:0 0 16px;padding:0}div.wpforms-container .wpforms-description{margin:0;padding:0}div.wpforms-container .wpforms-field{padding:0;margin-bottom:16px}div.wpforms-container .wpforms-submit-container{padding:0;margin-top:16px;text-align:left}div.wpforms-container .wpforms-submit-container .wpforms-submit.wp-element-button{border:0}@media(min-width:768px){div.wpforms-container.one-line .wpforms-form{display:grid;grid-template-columns:1fr fit-content(300px);column-gap:var(--wp--custom--layout--block-gap)}div.wpforms-container.one-line .wpforms-head-container{grid-column:1/-1}div.wpforms-container.one-line .wpforms-field-container{display:flex;gap:var(--wp--custom--layout--block-gap)}div.wpforms-container.one-line .wpforms-field{margin:0;flex-basis:0;flex-grow:1}div.wpforms-container.one-line .wpforms-field input.wpforms-field-large{padding:11px 12px;outline:0}div.wpforms-container.one-line .wpforms-field-label{min-height:26px}div.wpforms-container.one-line .wpforms-submit-container{margin:0}div.wpforms-container.one-line .wpforms-submit-container .wpforms-submit.wp-element-button{background-color:var(--wp--preset--color--senary);border:0;padding:11px 24px}}div.wpforms-container.save-recipe .wpforms-form{column-gap:0}div.wpforms-container.save-recipe .wpforms-form input[type=email]{border-right:0;height:46px;border-color:var(--wp--preset--color--background)}.top-hat{border-top:1px solid var(--wp--preset--color--foreground);background:var(--wp--preset--color--senary);text-align:center;padding:10px 0}.top-hat .wrap{padding-inline:4px}.top-hat p{margin:0;font-size:var(--wp--preset--font-size--small);font-weight:700;line-height:var(--wp--custom--line-height--small)}.top-hat p img{max-width:44px}@media(max-width:767px){div.wpforms-container.one-line .wpforms-submit-container{margin:0;text-align:center}div.wpforms-container.one-line .wpforms-submit-container .wpforms-submit.wp-element-button{background-color:var(--wp--preset--color--senary);border:0;padding:11px 16px}.top-hat p{font-size:var(--wp--preset--font-size--tiny)}.top-hat p a{margin:0;text-transform:none}}.top-hat a{position:relative;color:var(--wp--preset--color--foreground);text-decoration:none;text-transform:uppercase;font-weight:700;font-size:var(--wp--preset--font-size--tiny);line-height:var(--wp--custom--line-height--small);color:var(--wp--preset--color--background);letter-spacing:var(--wp--custom--letter-spacing--loose);margin-left:5px}.top-hat a:hover{text-decoration:underline}.top-hat a span{position:relative;top:-2px;font-size:var(--wp--preset--font-size--large)}.site-header{background:var(--wp--preset--color--foreground);position:relative;--cwp-logo-width:400px;--cwp-logo-height:71px}.site-header .wrap{display:grid;grid-template-columns:minmax(0,var(--cwp-logo-width)) 1fr;align-items:center}.site-header .nav-menu{justify-self:flex-end}@media(min-width:1271px){.site-header .nav-menu{display:flex;flex-direction:column-reverse;align-items:flex-end}}.site-header__logo{display:block;max-width:var(--cwp-logo-width);width:100%;height:var(--cwp-logo-height);justify-self:center;margin:16px 0}@media(max-width:1270px){.site-header{--cwp-logo-width:225px;--cwp-logo-height:40px}.site-header .nav-menu{grid-column:1/-1;width:100%}.site-header__logo{margin:10px 0}}.site-header__logo svg{width:100%;height:100%}.site-header__toggles{display:flex;flex-wrap:nowrap;justify-self:flex-end;margin-right:-16px}@media(min-width:1271px){.site-header__toggles{display:none}.header-search{position:absolute;transform:translateY(78px)}}.favorite-toggle,.menu-toggle,.post-header__favorite,.search-toggle{background:var(--wp--preset--color--senary);border:none;box-shadow:none;cursor:pointer;line-height:0;padding:10px;text-align:center;margin-left:5px;width:44px;height:44px;display:flex;align-items:center;justify-content:center}.favorite-toggle svg,.menu-toggle svg,.post-header__favorite svg,.search-toggle svg{width:24px;height:24px;fill:var(--wp--preset--color--background)}.favorite-toggle .close,.menu-toggle .close,.post-header__favorite .close,.search-toggle .close{display:none}.favorite-toggle.active .close,.menu-toggle.active .close,.post-header__favorite.active .close,.search-toggle.active .close{display:inline}.favorite-toggle.active .open,.menu-toggle.active .open,.post-header__favorite.active .open,.search-toggle.active .open{display:none}.favorite-toggle:hover,.menu-toggle:hover,.post-header__favorite:hover,.search-toggle:hover{background:var(--wp--preset--color--background)}.favorite-toggle:hover svg,.menu-toggle:hover svg,.post-header__favorite:hover svg,.search-toggle:hover svg{fill:var(--wp--preset--color--senary);stroke:var(--wp--preset--color--senary)}@media(max-width:1270px){.site-header__toggles{margin-right:-7px}.site-header.menu-active{max-height:100vh;overflow-y:auto;overscroll-behavior-y:contain}.favorite-toggle,.menu-toggle,.post-header__favorite,.search-toggle{background-color:rgba(0,0,0,0);margin-left:0;padding:7px;height:auto;width:auto}.favorite-toggle.menu-toggle:not(.active):hover,.menu-toggle.menu-toggle:not(.active):hover,.post-header__favorite.menu-toggle:not(.active):hover,.search-toggle.menu-toggle:not(.active):hover{background-color:rgba(0,0,0,0)}.favorite-toggle.menu-toggle:not(.active):hover svg,.menu-toggle.menu-toggle:not(.active):hover svg,.post-header__favorite.menu-toggle:not(.active):hover svg,.search-toggle.menu-toggle:not(.active):hover svg{stroke:none}}.header-search{grid-column:1/-1;width:100%;max-width:var(--wp--custom--layout--wide);margin:0 auto;display:flex;justify-content:flex-end}@media(max-width:1199px){.header-search{right:16px}}.header-search:not(.active){display:none}@media(max-width:1270px){.header-search{display:block;padding:var(--wp--custom--layout--padding)}html{scroll-padding-top:70px}}@supports(position:sticky){body .site-header{position:sticky;top:-1px;transition:transform .3s;z-index:10}}.nav-menu>*{line-height:0}.nav-menu ul{clear:both;line-height:1;margin:0;padding:0;width:100%}.nav-menu ul li{margin-bottom:0}.nav-menu .menu-item{list-style:none;position:relative}.nav-menu .menu-item a{font-family:var(--wp--custom--typography--interface--font-family);font-size:var(--wp--custom--typography--interface--font-size);font-weight:var(--wp--custom--typography--interface--font-weight);letter-spacing:var(--wp--custom--typography--interface--letter-spacing);line-height:var(--wp--custom--typography--interface--line-height);text-transform:var(--wp--custom--typography--interface--text-transform);font-weight:700;font-size:var(--wp--preset--font-size--medium);color:var(--wp--preset--color--background);text-decoration:none;border:none;display:block;position:relative;line-height:16px;padding:14px 16px}.nav-menu .menu-item.browse-all-recipes{margin-right:5px}.nav-menu .menu-item.browse-all-recipes>a{background:var(--wp--preset--color--senary);color:var(--wp--preset--color--background);text-align:center}@media(max-width:1270px){.nav-menu .menu-item.browse-all-recipes{margin:0;display:flex;justify-content:center}.nav-menu .menu-item.browse-all-recipes>a{background-color:var(--wp--preset--color--background);color:var(--wp--preset--color--senary);font-size:var(--wp--preset--font-size--small);margin-inline:16px;margin-block-start:16px;display:block;text-transform:uppercase;width:70%}}.nav-menu .menu-item.browse-all-recipes>a:hover{background:var(--wp--preset--color--background);color:var(--wp--preset--color--senary)}.nav-menu .menu-item.menu-item-favorite a{padding:0;display:flex}.nav-menu .menu-item.menu-item-favorite,.nav-menu .menu-item.menu-item-search{fill:var(--wp--preset--color--background);stroke:var(--wp--preset--color--background)}.nav-menu .submenu-expand{width:44px;height:44px;background:rgba(0,0,0,0);border:none;border-radius:0;box-shadow:none;padding:0;outline:0;cursor:pointer;position:absolute;right:0;line-height:0;top:50%;transform:translateY(-50%);padding:10px}.nav-menu .submenu-expand.expanded .open,.nav-menu .submenu-expand:not(.expanded) .close{display:none}.nav-menu .submenu-expand svg{fill:var(--wp--preset--color--background);width:16px;height:16px}.nav-menu .submenu-expand svg.close{position:relative;right:-4px}.nav-menu .nav-secondary{margin-bottom:5px}.nav-menu .nav-secondary a{font-size:var(--wp--preset--font-size--tiny)}@media(min-width:1271px){html{scroll-padding-top:140px}.nav-menu .menu-item{float:left}.nav-menu .menu-item:focus-within:not(.menu-item-favorite,.menu-item-search),.nav-menu .menu-item:hover:not(.menu-item-favorite,.menu-item-search){background-color:var(--wp--preset--color--senary)}}@media(max-width:1270px){.nav-menu{display:none}.nav-menu .menu-item a{font-size:var(--wp--preset--font-size--tiny);font-weight:700;line-height:var(--wp--custom--line-height--small);letter-spacing:var(--wp--custom--letter-spacing--loose)}.nav-menu.active{display:block}.nav-menu .menu-item-favorite,.nav-menu .menu-item-search{display:none}.nav-menu .submenu-expand{top:0;right:0;transform:none;width:44px;height:44px}.nav-menu .submenu-expand svg{width:16px;height:16px}.nav-menu .submenu-expand svg.close{position:initial}.nav-menu .submenu-expand.expanded{background-color:var(--wp--preset--color--senary)}}.post-header{background-color:var(--wp--preset--color--backdrop);background-image:url(https://www.evolvingtable.com/wp-content/themes/evolvingtable-2023/assets/images/bg-pattern-light-v2.jpg);background-size:375px}.post-header .wrap{position:relative}.post-header .entry-title{font-family:var(--wp--custom--typography--heading--font-family);font-size:var(--wp--preset--font-size--gigantic);font-weight:700;line-height:var(--wp--custom--line-height--tiny);margin-bottom:var(--wp--custom--layout--block-gap)}.post-header .wrap>:last-child{margin-bottom:0}.post-header .breadcrumb{margin-bottom:var(--wp--custom--layout--block-gap)}.post-header .post-header__actions .wp-element-button svg{fill:var(--wp--preset--color--background)}.post-header__info{font-size:var(--wp--preset--font-size--medium);line-height:var(--wp--custom--line-height--small);position:relative;display:flex;flex-wrap:nowrap;align-items:center;column-gap:8px}.post-header__info .entry-avatar{flex-shrink:0}.post-header__info .entry-avatar img{width:64px;height:auto;border-radius:50%;margin-right:8px}.post-header__info>div{display:flex;flex-wrap:wrap;align-items:center;row-gap:7px;column-gap:7px;max-width:400px}.post-header__info>div>*{margin:0}.post-header__info>div p{letter-spacing:var(--wp--custom--letter-spacing--none);font-weight:600}.post-header__info .post-date{width:100%}.post-header__info .cwp-wprm-rating{font-size:20px}@media(max-width:767px){.post-header{background-image:url(https://www.evolvingtable.com/wp-content/themes/evolvingtable-2023/assets/images/bg-pattern-wide.jpg);background-position:center center;background-size:800px}.post-header__info{font-size:var(--wp--preset--font-size--small)}}.post-header__actions{position:relative;display:flex;align-items:center;gap:4px}@media(max-width:991px){.post-header__actions{margin-top:12px;justify-content:center}}.post-header__actions .post-header__favorite,.post-header__actions .social-share{width:44px;height:44px;display:flex;align-items:center;justify-content:center}.post-header__actions .wp-element-button{font-family:var(--wp--custom--typography--interface--font-family);font-size:var(--wp--custom--typography--interface--font-size);font-weight:var(--wp--custom--typography--interface--font-weight);letter-spacing:var(--wp--custom--typography--interface--letter-spacing);line-height:var(--wp--custom--typography--interface--line-height);text-transform:var(--wp--custom--typography--interface--text-transform);background-color:var(--wp--preset--color--foreground);border-radius:0;padding:11px 16px;line-height:var(--wp--custom--line-height--normal);letter-spacing:var(--wp--custom--letter-spacing--none);font-weight:700;font-size:var(--wp--preset--font-size--tiny);border:0}.post-header__actions .wp-element-button.post-header__favorite{position:relative;width:initial;height:initial;padding-left:40px}.post-header__actions .wp-element-button.post-header__favorite span.save,.post-header__actions .wp-element-button.post-header__favorite span.saved{position:absolute;left:10px;top:11px;fill:var(--wp--preset--color--background)}.post-header__actions .postheader-icon{position:absolute;left:-159px;bottom:-96px;width:126px;height:129px}.post-header .cwp-short-names{position:initial;flex-shrink:0}.post-header .cwp-short-names .cat-key span.label{font-size:var(--wp--preset--font-size--medium)}.post-header .cwp-short-names .cat-key svg{width:40px;height:40px}@media(max-width:991px){.post-header{padding:24px 0 44px}.post-header .cwp-short-names{position:initial;justify-content:left;margin-bottom:20px}.post-header .cwp-short-names .cat-key span.label{font-size:var(--wp--preset--font-size--tiny);top:10px}.post-header .cwp-short-names .cat-key svg{width:30px;height:30px}.post-header .postheader-icon{position:absolute;right:0;left:auto;bottom:auto;width:82px;height:84px;top:49px}.post-header .breadcrumb{margin-bottom:var(--wp--custom--layout--block-gap)}.aff-disc .aff-disc__inner{margin:0 auto;max-width:var(--wp--custom--layout--page)}.aff-disc p{padding-right:100px}}@media(min-width:992px){.post-header{padding:24px 0}.post-header__lower{display:flex;justify-content:space-between;align-items:center}.post-header .post-header__title-icons-container{display:flex;justify-content:space-between;align-items:center;gap:16px}}.aff-disc{font-size:var(--wp--preset--font-size--min);padding-top:16px;padding-left:var(--wp--custom--layout--padding);padding-right:var(--wp--custom--layout--padding)}.aff-disc p{margin:0}@media(min-width:992px){.aff-disc .aff-disc__inner{max-width:calc(var(--wp--custom--layout--wide));margin:0 auto}}.post-header__favorite{line-height:0}.post-header__favorite .saved{display:none}.post-header__favorite.active .saved{display:inline}.post-header__favorite.active .save{display:none}.site-inner{padding-left:var(--wp--custom--layout--padding);padding-right:var(--wp--custom--layout--padding)}.block-area ol a,.block-area ul:not(.social-links) a,.cwp-inner ol a,.cwp-inner ul:not(.social-links) a,.entry-content ol a,.entry-content ul:not(.social-links) a{font-weight:600}.block-area>*,.cwp-inner>*,.entry-content>*{margin:0 auto;max-width:var(--wp--custom--layout--page)}.block-area>*+*,.cwp-inner>*+*,.entry-content>*+*{margin-top:var(--wp--style--block-gap)}.block-area>.cwp-large:not(:first-child),.block-area>.wpforms-container.save-recipe:not(:first-child),.block-area>.wprm-recipe-roundup-item:not(:first-child),.cwp-inner>.cwp-large:not(:first-child),.cwp-inner>.wpforms-container.save-recipe:not(:first-child),.cwp-inner>.wprm-recipe-roundup-item:not(:first-child),.entry-content>.cwp-large:not(:first-child),.entry-content>.wpforms-container.save-recipe:not(:first-child),.entry-content>.wprm-recipe-roundup-item:not(:first-child){margin-top:var(--wp--custom--layout--block-gap-large)}.block-area>.cwp-large:not(:last-child),.block-area>.wpforms-container.save-recipe:not(:last-child),.block-area>.wprm-recipe-roundup-item:not(:last-child),.cwp-inner>.cwp-large:not(:last-child),.cwp-inner>.wpforms-container.save-recipe:not(:last-child),.cwp-inner>.wprm-recipe-roundup-item:not(:last-child),.entry-content>.cwp-large:not(:last-child),.entry-content>.wpforms-container.save-recipe:not(:last-child),.entry-content>.wprm-recipe-roundup-item:not(:last-child){margin-bottom:var(--wp--custom--layout--block-gap-large)}.block-area>.jpibfi:first-child+*,.cwp-inner>.jpibfi:first-child+*,.entry-content>.jpibfi:first-child+*{margin-top:0}@media(max-width:767px){.block-area .aff-disc,.cwp-inner .aff-disc,.entry-content .aff-disc{margin:0 auto 0 0;max-width:calc(100% - 94px);padding:var(--wp--custom--layout--block-gap) 0 0 0}}.entry-content>*+h2{margin-top:40px}.entry-comments{max-width:var(--wp--custom--layout--page);margin-left:auto;margin-right:auto}.block-area-after-post{margin:32px 0}img.wprm-comment-rating{filter:invert(86%) sepia(41%) saturate(3750%) hue-rotate(351deg) brightness(107%) contrast(104%)}.entry-comments h2,.entry-comments h3{display:flex;justify-content:center;align-items:center;gap:16px}.entry-comments .comment-list{border:0;border-top:2px solid var(--wp--preset--color--nonary);padding:0;margin:0}.entry-comments .comment-list li{list-style-type:none;border-bottom:2px solid var(--wp--preset--color--nonary);margin-top:24px;padding-bottom:24px}.entry-comments .comment-list li article{position:relative}.entry-comments .comment-list li article .comment-content p{color:var(--wp--preset--color--foreground);font-weight:400;font-size:var(--wp--preset--font-size--small)}.entry-comments .comment-list li article .wprm-comment-rating{margin-bottom:var(--wp--custom--layout--block-gap)}.entry-comments .comment-list li.staff>article{background-image:url("https://www.evolvingtable.com/wp-content/themes/evolvingtable-2023/assets/images/bg-pattern-light.jpg");background-size:375px;padding:24px}.entry-comments .comment-list li:not(.staff)>article .avatar{display:none}.entry-comments .comment-list li:last-child{border-bottom:0;padding-bottom:0}.entry-comments .comment-list>li{overflow:hidden}.entry-comments .comment-list>li>ol.children{margin-left:24px}.entry-comments .comment-list .comment-author{font-weight:700;font-size:var(--wp--preset--font-size--large);letter-spacing:var(--wp--custom--letter-spacing--none);line-height:var(--wp--custom--line-height--normal)}.entry-comments .comment-list .comment-author a{color:var(--wp--preset--color--foreground);text-decoration:none}.entry-comments .comment-list .comment-author .says{display:none}.entry-comments .comment-list .comment-author .avatar{float:left;border-radius:50%;margin-right:8px}.entry-comments .comment-list .comment-meta{padding-right:54px}.entry-comments .comment-list .comment-metadata{font-size:var(--wp--preset--font-size--tiny);margin-bottom:16px}.entry-comments .comment-list .comment-metadata a{font-family:var(--wp--custom--typography--interface--font-family);font-size:var(--wp--custom--typography--interface--font-size);font-weight:var(--wp--custom--typography--interface--font-weight);letter-spacing:var(--wp--custom--typography--interface--letter-spacing);line-height:var(--wp--custom--typography--interface--line-height);text-transform:var(--wp--custom--typography--interface--text-transform);color:var(--wp--preset--color--foreground);text-decoration:none;font-weight:500;font-size:var(--wp--preset--font-size--tiny);line-height:var(--wp--custom--letter-spacing--tight)}.entry-comments .comment-list .comment-metadata a:hover{color:var(--wp--preset--color--primary)}.entry-comments .comment-list .comment-content p:last-child{margin:0}.entry-comments .comment-list .comment-reply-link{font-family:var(--wp--custom--typography--interface--font-family);font-size:var(--wp--custom--typography--interface--font-size);font-weight:var(--wp--custom--typography--interface--font-weight);letter-spacing:var(--wp--custom--typography--interface--letter-spacing);line-height:var(--wp--custom--typography--interface--line-height);text-transform:var(--wp--custom--typography--interface--text-transform);position:absolute;top:16px;right:16px;color:var(--wp--preset--color--senary);font-weight:700;font-size:var(--wp--preset--font-size--tiny);letter-spacing:var(--wp--custom--letter-spacing--none)}.entry-comments .comment-list ol.children{margin:0;padding:0}.comment-respond{background-image:url("https://www.evolvingtable.com/wp-content/themes/evolvingtable-2023/assets/images/bg-pattern-dark-brown.jpg");background-color:var(--wp--preset--color--foreground);background-size:375px;color:var(--wp--preset--color--background);margin:30px 0;padding:var(--wp--custom--layout--block-gap-large)}@media(min-width:768px){.comment-respond{margin:60px 0}}.comment-respond a{font-weight:600}.comment-respond label{display:block}.comment-respond h2,.comment-respond h3{display:block;justify-content:space-between}.comment-respond .comment-notes{text-align:center}.comment-respond .comment-form-wprm-rating{display:flex;justify-content:center;align-items:start;gap:5px}.comment-respond .comment-form-wprm-rating label,.comment-respond .comment-form-wprm-rating span{flex:0 0 auto}.comment-respond .comment-form-wprm-rating label{margin-top:6px;font-size:var(--wp--preset--font-size--small)}.comment-respond input,.comment-respond select,.comment-respond textarea{border:0;outline:0}.comment-respond label{font-family:var(--wp--custom--typography--interface--font-family);font-size:var(--wp--custom--typography--interface--font-size);font-weight:var(--wp--custom--typography--interface--font-weight);letter-spacing:var(--wp--custom--typography--interface--letter-spacing);line-height:var(--wp--custom--typography--interface--line-height);text-transform:var(--wp--custom--typography--interface--text-transform);letter-spacing:var(--wp--custom--letter-spacing--loose);font-size:var(--wp--preset--font-size--tiny)}.comment-respond .form-submit{display:flex;justify-content:center}.comment-respond .form-submit .submit.wp-element-button{font-family:var(--wp--custom--typography--interface--font-family);font-size:var(--wp--custom--typography--interface--font-size);font-weight:var(--wp--custom--typography--interface--font-weight);letter-spacing:var(--wp--custom--typography--interface--letter-spacing);line-height:var(--wp--custom--typography--interface--line-height);text-transform:var(--wp--custom--typography--interface--text-transform);background-color:var(--wp--preset--color--senary);font-weight:700;font-size:var(--wp--preset--font-size--tiny);line-height:var(--wp--custom--line-height--normal);letter-spacing:var(--wp--custom--letter-spacing--none);color:var(--wp--preset--color--background);border-radius:0}.comment-respond fieldset.wprm-comment-ratings-container span{max-width:100%;max-height:100%}.comment-respond fieldset.wprm-comment-ratings-container input[type=radio]{max-width:100%;max-height:100%}.comment-respond fieldset.wprm-comment-ratings-container legend+input+span svg{opacity:.7}.comment-reply-title{justify-content:space-between;text-align:center}.comment-reply-title a{font-family:var(--wp--custom--typography--interface--font-family);font-size:var(--wp--custom--typography--interface--font-size);font-weight:var(--wp--custom--typography--interface--font-weight);letter-spacing:var(--wp--custom--typography--interface--letter-spacing);line-height:var(--wp--custom--typography--interface--line-height);text-transform:var(--wp--custom--typography--interface--text-transform)}.block-area-before-footer{padding:var(--wp--custom--layout--block-gap-large) var(--wp--custom--layout--padding)}.block-area-before-footer>*{max-width:var(--wp--custom--layout--wide)}.site-footer{background:var(--wp--preset--color--foreground);font-size:var(--wp--preset--font-size--small);padding:40px 0;position:relative;text-align:center;margin-top:40px}.site-footer .wrap>:first-child:not(.site-footer__inner){margin-bottom:40px}.site-footer__inner:not(:first-child){margin-top:24px}.site-footer__inner>*{margin-top:0;margin-bottom:0}@media(min-width:768px){.site-footer__inner{display:flex;justify-content:space-between;align-items:center;gap:32px}}.site-footer .backtotop-circle{--cwp-size:44px;background:var(--wp--preset--color--senary);border-radius:50%;display:flex;align-items:center;justify-content:center;width:var(--cwp-size);height:var(--cwp-size);position:absolute;top:calc(var(--cwp-size)/-2);left:50%;margin-left:calc(var(--cwp-size)/-2)}.site-footer .backtotop-circle svg{fill:#fff}.site-footer__logo{display:inline-flex}.site-footer__bottom{background-color:var(--wp--preset--color--foreground);font-size:var(--wp--preset--font-size--min);color:var(--wp--preset--color--septenary);padding-bottom:40px}.site-footer__bottom p{margin:0}.site-footer__bottom a{color:var(--wp--preset--color--nonary);text-decoration:underline}.site-footer__bottom ul.social-links{justify-content:center;padding-left:0;margin:0}.site-footer__bottom ul.social-links li a svg{fill:var(--wp--preset--color--nonary)}@media(min-width:768px){.site-footer__bottom .wrap{display:flex;justify-content:space-between;align-items:center;flex-direction:row-reverse;gap:32px}}.nav-footer{font-family:var(--wp--custom--typography--interface--font-family);font-size:var(--wp--custom--typography--interface--font-size);font-weight:var(--wp--custom--typography--interface--font-weight);letter-spacing:var(--wp--custom--typography--interface--letter-spacing);line-height:var(--wp--custom--typography--interface--line-height);text-transform:var(--wp--custom--typography--interface--text-transform);flex-wrap:wrap;justify-content:center}.nav-footer ul{padding-left:0;margin:0;display:flex;flex-wrap:wrap;align-items:center;justify-content:center}.nav-footer li{list-style-type:none}@media(max-width:767px){.site-footer__inner>*+*{margin-top:16px}.site-footer__bottom{text-align:center}.site-footer__bottom ul.social-links{margin-bottom:8px}.site-footer__copyright{display:block}.nav-footer ul{gap:24px 40px}}@media(min-width:768px){.nav-footer ul{gap:24px}}.nav-footer a{color:var(--wp--preset--color--background);text-decoration:none;font-weight:700;font-size:var(--wp--preset--font-size--tiny)}.nav-footer a:hover{text-decoration:underline}.nav-footer a:hover{text-decoration:none}.site-footer__bottom .site-footer__links a{font-weight:600}.wprm-comment-rating svg{width:24px!important;height:24px!important}img.wprm-comment-rating{width:120px!important;height:24px!important}body{--comment-rating-star-color:#e9bc50}body{--wprm-popup-font-size:16px}body{--wprm-popup-background:#ffffff}body{--wprm-popup-title:#000000}body{--wprm-popup-content:#444444}body{--wprm-popup-button-background:#444444}body{--wprm-popup-button-text:#ffffff}@font-face{font-family:Poppins;font-style:normal;font-weight:700;font-display:swap;src:url('https://www.evolvingtable.com/wp-content/themes/evolvingtable-2023/assets/fonts/poppins-v20-latin-700.woff2') format('woff2')}@media only screen and (max-width:359px){li .mv-ad-box{margin-left:-20px!important}.cwp-food-content__rate{margin-left:unset!important;margin-right:unset!important}.cwp-food-content{padding-left:10px!important;padding-right:10px!important}}#wprm-recipe-user-rating-0 .wprm-rating-star.wprm-rating-star-full svg *{fill:var(--wp--custom--color--star)}linearGradient#wprm-recipe-user-rating-0-33 stop{stop-color:var(--wp--custom--color--star)}linearGradient#wprm-recipe-user-rating-0-50 stop{stop-color:var(--wp--custom--color--star)}linearGradient#wprm-recipe-user-rating-0-66 stop{stop-color:var(--wp--custom--color--star)}#wprm-recipe-user-rating-2 .wprm-rating-star.wprm-rating-star-full svg *{fill:var(--wp--custom--color--star)}linearGradient#wprm-recipe-user-rating-2-33 stop{stop-color:var(--wp--custom--color--star)}linearGradient#wprm-recipe-user-rating-2-50 stop{stop-color:var(--wp--custom--color--star)}linearGradient#wprm-recipe-user-rating-2-66 stop{stop-color:var(--wp--custom--color--star)}#wprm-toggle-switch-1652512318 input:checked+.wprm-toggle-switch-slider{background-color:var(--wp--preset--color--senary)!important}#wprm-recipe-user-rating-1 .wprm-rating-star.wprm-rating-star-full svg *{fill:var(--wp--custom--color--star)}linearGradient#wprm-recipe-user-rating-1-33 stop{stop-color:var(--wp--custom--color--star)}linearGradient#wprm-recipe-user-rating-1-50 stop{stop-color:var(--wp--custom--color--star)}linearGradient#wprm-recipe-user-rating-1-66 stop{stop-color:var(--wp--custom--color--star)}.wp-block-gallery.wp-block-gallery-1{--wp--style--unstable-gallery-gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );gap:var(--wp--style--gallery-gap-default,var(--gallery-block--gutter-size,var(--wp--style--block-gap,.5em)))}.wp-block-gallery.wp-block-gallery-2{--wp--style--unstable-gallery-gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );gap:var(--wp--style--gallery-gap-default,var(--gallery-block--gutter-size,var(--wp--style--block-gap,.5em)))}.wp-container-core-buttons-is-layout-1.wp-container-core-buttons-is-layout-1{justify-content:center}.wp-container-core-group-is-layout-4.wp-container-core-group-is-layout-4{flex-wrap:nowrap;justify-content:space-between;align-items:flex-start}.wp-container-core-buttons-is-layout-2.wp-container-core-buttons-is-layout-2{justify-content:center}.wp-container-core-group-is-layout-7.wp-container-core-group-is-layout-7{flex-wrap:nowrap;justify-content:space-between;align-items:flex-start}.wpforms-container noscript.wpforms-error-noscript{color:#900}.wpforms-container .wpforms-title{font-size:26px;margin:0 0 10px}.wpforms-container .wpforms-description{margin:0 0 10px}.wpforms-container .wpforms-submit-container{padding:10px 0 0;position:relative}.wpforms-container .wpforms-submit-spinner{margin-left:.5em}.wpforms-container{margin-bottom:26px}.wpforms-container .wpforms-field.wpforms-field-hidden{display:none;padding:0}div.wpforms-container .wpforms-form textarea{resize:vertical}.wpforms-container ul,.wpforms-container ul li{background:0 0;border:0;margin:0;list-style:none}.wpforms-container input.wpforms-field-large,.wpforms-container select.wpforms-field-large{max-width:100%}.wpforms-container textarea.wpforms-field-large{height:220px}.wpforms-container .wpforms-field{padding:10px 0;position:relative}.wpforms-container .wpforms-field-label{display:block;font-weight:700;float:none;word-break:break-word;word-wrap:break-word}.wpforms-container .wpforms-required-label{color:red;font-weight:400}.wpforms-container input[type=email],.wpforms-container input[type=number],.wpforms-container input[type=password],.wpforms-container input[type=search],.wpforms-container input[type=text],.wpforms-container input[type=time],.wpforms-container select,.wpforms-container textarea{display:block;width:100%;box-sizing:border-box;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;float:none;font-family:inherit}.wpforms-container input[type=checkbox],.wpforms-container input[type=radio]{width:13px;height:13px;margin:2px 10px 0 3px;display:inline-block;vertical-align:baseline}.st0{fill:#FFFFFF}.cwp-food-header{background:var(--wp--preset--color--backdrop);margin-top:var(--wp--custom--layout--block-gap);font-size:var(--wp--preset--font-size--small)}@media only screen and (max-width:600px){.wpforms-container .wpforms-field:not(.wpforms-field-phone):not(.wpforms-field-select-style-modern):not(.wpforms-field-radio):not(.wpforms-field-checkbox):not(.wpforms-field-layout){overflow-x:hidden}.wpforms-container .wpforms-field{padding-right:1px;padding-left:1px}.wpforms-container .wpforms-form .wpforms-field>*{max-width:100%}.cwp-food-header{margin-top:var(--wp--custom--layout--block-gap-large)}}.cwp-food-header__top{background-color:var(--wp--preset--color--foreground);color:var(--wp--preset--color--background);position:relative}.cwp-food-header__top:not(.has-favorite-icon){text-align:center}.cwp-food-header__top .rate-title{font-size:1.875rem;line-height:var(--wp--custom--line-height--small);font-weight:700;display:flex;align-items:center;gap:4px;margin-bottom:4px}.cwp-food-header__top:not(.has-favorite-icon) .rate-title{justify-content:center}.cwp-food-header__top .rate-title::before{background:url(https://www.evolvingtable.com/wp-content/themes/evolvingtable-2023/assets/images/wprm-tap-stars-arrow.svg) left center no-repeat;content:'';display:block;width:20px;height:33px;margin-right:10px}.cwp-food-header__top .wprm-recipe-rating-details{font-family:var(--wp--custom--typography--heading--font-family);font-size:var(--wp--preset--font-size--tiny);font-weight:700}.cwp-food-header__top .wprm-recipe-rating .wprm-rating-star svg{margin-right:6px}.cwp-food-header__top .wprm-recipe-rating.wprm-recipe-rating-inline .wprm-recipe-rating-details{margin-left:3px}.cwp-food-header .cwp-food-header__content{background-image:url('https://www.evolvingtable.com/wp-content/themes/evolvingtable-2023/assets/images/bg-pattern-wide.jpg');background-size:800px;background-position:center left -5px;display:flex;justify-content:space-between;border:4px solid var(--wp--preset--color--nonary);border-top:0;border-bottom:0;align-items:center}.cwp-food-header .cwp-food-header__content>*{flex-basis:calc(50% - var(--wp--custom--layout--block-gap))}.cwp-food-header .cwp-food-header__left>*+*{margin-top:12px}.cwp-food-header .wprm-recipe-name{line-height:var(--wp--custom--line-height--small)}.cwp-food-header .wprm-recipe-summary{font-weight:500;font-size:var(--wp--preset--font-size--medium)}.cwp-food-header .wprm-recipe-image img{width:100%}@media only screen and (max-width:767px){.cwp-food-header__top{padding:12px 16px}.cwp-food-header__top .wprm-recipe-rating .wprm-rating-star svg{width:24px;height:24px}.cwp-food-header .cwp-food-header__content{padding:24px var(--wp--custom--layout--padding) 24px;flex-wrap:wrap;flex-direction:column-reverse;text-align:center}.cwp-food-header .cwp-food-header__content>*{flex-basis:100%}.cwp-food-header__right{margin-bottom:32px}.cwp-food-header .wprm-recipe-image{max-width:240px;margin-inline:auto}}@media only screen and (min-width:768px){.cwp-food-header__top{padding:12px 40px}.cwp-food-header__top .wprm-recipe-rating .wprm-rating-star svg{width:24px;height:24px}.cwp-food-header .cwp-food-header__content{padding:var(--wp--custom--layout--block-gap-large)}.wprm-recipe-template-cwp-food{--wp--custom--layout--padding:40px}}@media only screen and (min-width:367px) and (max-width:379px){.cwp-food-header__top .wprm-recipe-rating .wprm-rating-star svg{width:17px;height:17px}}@media only screen and (min-width:380px) and (max-width:390px){.cwp-food-header__top .wprm-recipe-rating .wprm-rating-star svg{width:17px;height:17px}}@media only screen and (min-width:391px) and (max-width:400px){.cwp-food-header__top .wprm-recipe-rating .wprm-rating-star svg{width:20px;height:20px}}.wprm-recipe-template-cwp-food .cwp-food-meta .wprm-recipe-meta-container{background-color:var(--wp--preset--color--nonary);display:flex;flex-wrap:wrap;gap:16px 18px;justify-content:center;padding:20px;margin:0}.cwp-food-meta .wprm-recipe-meta-container .wprm-recipe-block-container{display:flex;gap:4px;align-items:center}.cwp-food-meta .wprm-recipe-meta-container .wprm-recipe-icon svg{width:20px;height:20px}.cwp-food-meta .wprm-recipe-meta-container .wprm-recipe-block-container span.wprm-recipe-details-label{font-weight:900;font-size:var(--wp--preset--font-size--small);text-transform:uppercase}.cwp-food-meta .wprm-recipe-meta-container .wprm-recipe-time{font-weight:600;font-size:var(--wp--preset--font-size--small)}.cwp-food-buttons{display:flex;flex-wrap:wrap;gap:8px}.cwp-food-buttons a{background:var(--wp--preset--color--foreground);color:var(--wp--preset--color--background);font-family:var(--wp--custom--typography--interface--font-family);letter-spacing:var(--wp--custom--typography--interface--letter-spacing);text-transform:var(--wp--custom--typography--interface--text-transform);font-weight:700;line-height:var(--wp--custom--line-height--medium);font-size:var(--wp--preset--font-size--tiny);padding:10px;flex-grow:1;display:flex;gap:8px;align-items:center;justify-content:center}.cwp-food-buttons a .wprm-recipe-icon svg{width:20px;height:20px}.cwp-food-content div.wpforms-container.save-recipe{padding:unset}.cwp-food-content .cwp-save-recipe-shortcode{margin-top:16px}.cwp-food-content .cwp-save-recipe-shortcode input[type=email]{border-color:var(--wp--preset--color--background)}.cwp-food-content .cwp-save-recipe-shortcode .wpforms-submit-container button[type=submit].wpforms-submit.wp-element-button{padding:11px 16px;border-color:var(--wp--preset--color--senary)}.cwp-food-content{background:var(--wp--preset--color--background);border-left:4px solid var(--wp--preset--color--nonary);border-right:4px solid var(--wp--preset--color--nonary);padding:16px}.cwp-food-content a:not(.cwp-food-buttons a){text-decoration:underline;text-underline-offset:3px}.cwp-food-content a:hover{background-color:var(--wp--preset--color--senary);color:var(--wp--preset--color--background)}.cwp-food-content>div+div{margin-top:32px}.cwp-food-content>div+div.cwp-food-nutrition,.cwp-food-content>div+div.wprm-recipe-ingredients-container,.cwp-food-content>div+div.wprm-recipe-notes-container{padding-top:16px;border-top:4px solid var(--wp--preset--color--nonary);margin-top:16px}.cwp-food-content>div#recipe-video,.cwp-food-content>div:first-child{margin-top:0;padding-top:0;border-top:0}.cwp-food-content>div.wprm-prevent-sleep,.cwp-food-content>div.wprm-recipe-instructions-container,.cwp-food-content>div:nth-child(2){border-top:0}.cwp-food-content .wprm-nutrition-label-container-simple .wprm-nutrition-label-text-nutrition-unit,.wprm-recipe-template-cwp-food .wprm-recipe-details-unit{font-size:inherit}.cwp-food-content .wprm-recipe-ingredient-group,.cwp-food-content .wprm-recipe-ingredients,.cwp-food-content .wprm-recipe-instruction-group,.cwp-food-content .wprm-recipe-instructions,.cwp-food-content .wprm-recipe-notes{margin-block-start:16px}.cwp-food-content .wprm-recipe-header>:first-child{margin-left:auto}.cwp-food-content .wprm-toggle-container button.wprm-toggle{font-family:var(--wp--custom--typography--interface--font-family);letter-spacing:var(--wp--custom--typography--interface--letter-spacing);text-transform:var(--wp--custom--typography--interface--text-transform);font-weight:700;line-height:var(--wp--custom--line-height--medium);font-size:var(--wp--preset--font-size--min);padding:11px 12px}.cwp-food-content .wprm-recipe-header.wprm-header-has-actions{row-gap:16px}.cwp-food-content .wprm-recipe-ingredients{text-transform:none;font-weight:600}.cwp-food-content .wprm-recipe-ingredients li+li{margin-top:8px}.cwp-food-content .wprm-recipe-ingredients label.wprm-checkbox-label{top:2px}.cwp-food-content .wprm-recipe-ingredient-notes{font-style:italic;text-transform:none;font-weight:400;opacity:.7;font-size:var(--wp--preset--font-size--small)}.cwp-food-content .wprm-toggle-switch .wprm-toggle-switch-label{margin-left:40px!important}.cwp-food-content ul.wprm-recipe-instructions li{margin-top:8px}.cwp-food-content ul.wprm-recipe-instructions{counter-reset:li}.cwp-food-content ul.wprm-recipe-instructions li{list-style-type:none;position:relative}.cwp-food-content ul.wprm-recipe-instructions li::before{content:counter(li);counter-increment:li;display:flex;position:absolute;top:3px;left:-32px;color:var(--wp--preset--color--background);font-weight:700;font-size:var(--wp--preset--font-size--tiny);letter-spacing:var(--wp--custom--letter-spacing--loose);background-image:url(https://www.evolvingtable.com/wp-content/themes/evolvingtable-2023/assets/icons/utility/fancy-list-ordered-icon.svg);background-size:25px 24px;background-repeat:no-repeat;background-position:center center;padding-left:9px;padding-right:8px;padding-top:1px}.cwp-food-content .wprm-recipe-instruction-ingredients{line-height:var(--wp--custom--line-height--medium);font-style:italic;font-size:var(--wp--preset--font-size--small);margin-top:4px}.cwp-food-content .wprm-recipe-instruction-ingredients::before{content:"("}.cwp-food-content .wprm-recipe-instruction-ingredients::after{content:")"}.cwp-food-content .wprm-recipe-last-instruction .wprm-recipe-instruction-text{font-size:var(--wp--preset--font-size--small);border:2px var(--wp--preset--color--nonary) solid;border-radius:var(--wp--custom--border-radius--small);margin-left:0;padding:16px}.cwp-food-content .wprm-recipe-last-instruction .wprm-recipe-instruction-text::before{content:url('https://www.evolvingtable.com/wp-content/themes/evolvingtable-2023/assets/icons/utility/star-full.svg');display:inline-block;vertical-align:sub;width:24px;height:24px;margin-right:8px;background:0 0;filter:invert(98%) sepia(27%) saturate(5335%) hue-rotate(314deg) brightness(93%) contrast(93%)}.cwp-food-content__rate{background-color:var(--wp--preset--color--foreground);color:#fff;text-align:center;margin-inline:-16px;padding:12px 0}.cwp-food-content__rate .rate-title{font-size:1.875rem;line-height:var(--wp--custom--line-height--small);font-weight:700;display:flex;align-items:center;justify-content:center;gap:4px}.cwp-food-content__rate .rate-title::before{background:url(https://www.evolvingtable.com/wp-content/themes/evolvingtable-2023/assets/images/wprm-tap-stars-arrow.svg) left center no-repeat;content:'';display:block;width:20px;height:33px;margin-right:10px}.cwp-food-content__rate .wprm-recipe-rating-details{font-family:var(--wp--custom--typography--heading--font-family);font-size:var(--wp--preset--font-size--tiny);font-weight:700}.cwp-food-content__rate .wprm-recipe-rating .wprm-rating-star svg{width:24px;height:24px;margin-right:4px}@media only screen and (max-width:767px){.wprm-recipe-template-cwp-food{margin-left:calc(-1 * var(--wp--custom--layout--padding));margin-right:calc(-1 * var(--wp--custom--layout--padding));width:calc(100% + 2 * var(--wp--custom--layout--padding))}.cwp-food-content{border-left:0;border-right:0}.cwp-food-content__rate .wprm-recipe-rating{margin-left:0}.wprm-recipe-template-cwp-food .wprm-call-to-action{padding:24px 20px!important}}.cwp-food-content .wprm-recipe-video iframe{width:100%;height:100%;aspect-ratio:16/9}.cwp-food-nutrition .wprm-nutrition-label-container{margin:16px 0}.cwp-food-nutrition p.has-small-font-size{color:var(--wp--preset--color--secondary);line-height:var(--wp--custom--line-height--small);font-style:italic}.wprm-recipe-template-cwp-food .wprm-call-to-action{position:relative;justify-content:flex-start;flex-wrap:nowrap;align-items:center;position:relative}.wprm-recipe-template-cwp-food .wprm-call-to-action *{position:relative;z-index:2}.wprm-recipe-template-cwp-food .wprm-call-to-action::before{background:url('https://www.evolvingtable.com/wp-content/themes/evolvingtable-2023/assets/images/bg-pattern-wide.jpg');background-size:800px;background-position:center center -5px;mix-blend-mode:multiply;content:'';display:block;width:100%;height:100%;position:absolute;top:0;left:0;z-index:1}.wprm-recipe-template-cwp-food .wprm-call-to-action.wprm-call-to-action-simple .wprm-call-to-action-icon{margin:0 20px 0 0;line-height:0}.wprm-recipe-template-cwp-food .wprm-call-to-action.wprm-call-to-action-simple .wprm-call-to-action-icon svg{width:58px;height:58px}.wprm-recipe-template-cwp-food .wprm-call-to-action.wprm-call-to-action-simple .wprm-call-to-action-text-container{text-align:left;margin:0}.wprm-recipe-template-cwp-food .wprm-call-to-action.wprm-call-to-action-simple .wprm-call-to-action-text-container .wprm-call-to-action-header{font-family:var(--wp--custom--typography--heading--font-family);letter-spacing:var(--wp--custom--typography--heading--letter-spacing);text-transform:var(--wp--custom--typography--heading--text-transform);font-size:var(--wp--preset--font-size--x-large);font-weight:700;line-height:var(--wp--custom--line-height--small)}.wprm-recipe-template-cwp-food .wprm-call-to-action-text{font-size:var(--wp--preset--font-size--small)}.wprm-recipe-template-cwp-food .wprm-call-to-action-text a{font-weight:600;text-decoration:underline}@media only screen and (min-width:768px){.wprm-recipe-template-cwp-food .wprm-call-to-action{padding:24px 40px!important}.wprm-recipe-template-cwp-food .wprm-call-to-action.wprm-call-to-action-simple .wprm-call-to-action-text-container{display:flex;align-items:center;gap:24px}}</style>
	<meta name="description" content="This spicy Sriracha Mayo recipe is ready in 5 minutes with sriracha, mayonnaise, lemon, and minced fresh garlic cloves." />
	<link rel="canonical" href="https://www.evolvingtable.com/sriracha-mayo/" />
	<meta name="author" content="London Brazil" />
	<meta name="twitter:label1" content="Written by" />
	<meta name="twitter:data1" content="London Brazil" />
	<meta name="twitter:label2" content="Est. reading time" />
	<meta name="twitter:data2" content="5 minutes" />
	<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"Article","@id":"https://www.evolvingtable.com/sriracha-mayo/#article","isPartOf":{"@id":"https://www.evolvingtable.com/sriracha-mayo/"},"author":{"name":"London Brazil","@id":"https://www.evolvingtable.com/#/schema/person/854779495ea71a1b68a340ca56a0f475"},"headline":"Spicy Sriracha Mayo","datePublished":"2024-05-08T10:00:00+00:00","dateModified":"2024-05-08T10:00:16+00:00","wordCount":918,"commentCount":12,"publisher":{"@id":"https://www.evolvingtable.com/#organization"},"image":{"@id":"https://www.evolvingtable.com/sriracha-mayo/#primaryimage"},"thumbnailUrl":"https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12.jpg","keywords":["5 ingredients or less","appetizer","Dinner","dip","dipping sauce","Fall","Gluten free","low-carb","lunch","mayo","sauce","spicy","Spring","sriracha","Summer","topping","under 30 mintues","Winter"],"articleSection":["Dairy-Free","Gluten-Free","Low-Carb","Lunch","Nut-Free","Paleo","Recipes","Sauces &amp; Dressings","Vegetarian"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https://www.evolvingtable.com/sriracha-mayo/#respond"]}]},{"@type":["WebPage","FAQPage"],"@id":"https://www.evolvingtable.com/sriracha-mayo/","url":"https://www.evolvingtable.com/sriracha-mayo/","name":"Spicy Sriracha Mayo - Evolving Table","isPartOf":{"@id":"https://www.evolvingtable.com/#website"},"primaryImageOfPage":{"@id":"https://www.evolvingtable.com/sriracha-mayo/#primaryimage"},"image":{"@id":"https://www.evolvingtable.com/sriracha-mayo/#primaryimage"},"thumbnailUrl":"https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12.jpg","datePublished":"2024-05-08T10:00:00+00:00","dateModified":"2024-05-08T10:00:16+00:00","description":"This spicy Sriracha Mayo recipe is ready in 5 minutes with sriracha, mayonnaise, lemon, and minced fresh garlic cloves.","breadcrumb":{"@id":"https://www.evolvingtable.com/sriracha-mayo/#breadcrumb"},"mainEntity":[{"@id":"https://www.evolvingtable.com/sriracha-mayo/#faq-question-1714970916578"},{"@id":"https://www.evolvingtable.com/sriracha-mayo/#faq-question-1714970928823"},{"@id":"https://www.evolvingtable.com/sriracha-mayo/#faq-question-1714970940748"},{"@id":"https://www.evolvingtable.com/sriracha-mayo/#faq-question-1714970951874"},{"@id":"https://www.evolvingtable.com/sriracha-mayo/#faq-question-1714970972336"}],"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://www.evolvingtable.com/sriracha-mayo/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https://www.evolvingtable.com/sriracha-mayo/#primaryimage","url":"https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12.jpg","contentUrl":"https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12.jpg","width":1200,"height":1800,"caption":"Mayo, sriracha, and other ingredients are mixed together in this Sriracha Mayo recipe."},{"@type":"BreadcrumbList","@id":"https://www.evolvingtable.com/sriracha-mayo/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://www.evolvingtable.com/"},{"@type":"ListItem","position":2,"name":"Recipes","item":"https://www.evolvingtable.com/category/recipes/"},{"@type":"ListItem","position":3,"name":"Diets","item":"https://www.evolvingtable.com/category/recipes/diets/"},{"@type":"ListItem","position":4,"name":"Gluten-Free","item":"https://www.evolvingtable.com/category/recipes/diets/gluten-free/"},{"@type":"ListItem","position":5,"name":"Spicy Sriracha Mayo"}]},{"@type":"WebSite","@id":"https://www.evolvingtable.com/#website","url":"https://www.evolvingtable.com/","name":"Evolving Table","description":"Healthier spins on your favorite classic recipes.","publisher":{"@id":"https://www.evolvingtable.com/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://www.evolvingtable.com/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https://www.evolvingtable.com/#organization","name":"Evolving Table","url":"https://www.evolvingtable.com/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https://www.evolvingtable.com/#/schema/logo/image/","url":"https://evolvingtable.com/wp-content/uploads/2019/04/ET_octagon-logo.png","contentUrl":"https://evolvingtable.com/wp-content/uploads/2019/04/ET_octagon-logo.png","width":899,"height":899,"caption":"Evolving Table"},"image":{"@id":"https://www.evolvingtable.com/#/schema/logo/image/"},"sameAs":["https://www.facebook.com/evolvingtable","https://x.com/evolvingtable","https://www.instagram.com/evolvingtable/","https://www.pinterest.com/evolvingtable/","https://www.youtube.com/channel/UCOWKwl9lasOMhuAA_r4tFiw"]},{"@type":"Person","@id":"https://www.evolvingtable.com/#/schema/person/854779495ea71a1b68a340ca56a0f475","name":"London Brazil","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https://www.evolvingtable.com/#/schema/person/image/","url":"https://evolvingtable.com/wp-content/uploads/2023/10/author.jpg","contentUrl":"https://evolvingtable.com/wp-content/uploads/2023/10/author.jpg","caption":"London Brazil"},"description":"I’m London Brazil! Join me as we cook up healthy spins on classic recipes for your family and learn a few easy cooking tips and tricks!","sameAs":["https://www.evolvingtable.com/about-london/","www.facebook.com/evolvingtable/","www.instagram.com/evolvingtable/","www.linkedin.com/in/london-brazil-1a7a4313a/","www.pinterest.com/evolvingtable/","https://x.com/www.twitter.com/evolvingtable/","https://www.youtube.com/channel/UCOWKwl9lasOMhuAA_r4tFiw"],"url":"https://www.evolvingtable.com/about-london/"},{"@type":"Question","@id":"https://www.evolvingtable.com/sriracha-mayo/#faq-question-1714970916578","position":1,"url":"https://www.evolvingtable.com/sriracha-mayo/#faq-question-1714970916578","name":"How spicy is sriracha mayo?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"Spicy sriracha mayo is about a 5 out of 10 on the spicy scale when 1½ tablespoons of Sriracha sauce is used in this recipe. It's a 3 to 4 out of 10 when 1 tablespoon is used. Feel free to use more or less depending on your desired spice level!","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Question","@id":"https://www.evolvingtable.com/sriracha-mayo/#faq-question-1714970928823","position":2,"url":"https://www.evolvingtable.com/sriracha-mayo/#faq-question-1714970928823","name":"What is sriracha mayo made of?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"<strong>The two main ingredients in sriracha mayo are mayonnaise and sriracha. Garlic and lemon juice are great flavor additions as well.</strong>","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Question","@id":"https://www.evolvingtable.com/sriracha-mayo/#faq-question-1714970940748","position":3,"url":"https://www.evolvingtable.com/sriracha-mayo/#faq-question-1714970940748","name":"Is sriracha mayo the same as yum-yum sauce?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"The two mayonnaise-based sauces are similar, however yum-yum sauce is not as spicy, and has a sweeter taste.","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Question","@id":"https://www.evolvingtable.com/sriracha-mayo/#faq-question-1714970951874","position":4,"url":"https://www.evolvingtable.com/sriracha-mayo/#faq-question-1714970951874","name":"Is spicy mayo healthy?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"Because this sauce contains mayo it can be high in fat. To make it healthier, use a low-fat mayonnaise.","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Question","@id":"https://www.evolvingtable.com/sriracha-mayo/#faq-question-1714970972336","position":5,"url":"https://www.evolvingtable.com/sriracha-mayo/#faq-question-1714970972336","name":"How to store sriracha mayo?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"Seal the sriracha mayo in an airtight container and keep in the refrigerator. If made with fresh garlic it will last for <strong>up to 2 weeks</strong>, and <strong>up to a month</strong> if garlic powder is used. Do not freeze, however.","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Recipe","name":"Spicy Sriracha Mayo Recipe","author":{"@id":"https://www.evolvingtable.com/#/schema/person/854779495ea71a1b68a340ca56a0f475"},"description":"Learn how to make Sriracha Mayo with this easy recipe. Use as a dip for fries, or to add a kick to sushi, burgers, or fish tacos!","datePublished":"2024-05-08T05:00:00+00:00","image":["https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12.jpg","https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12-500x500.jpg","https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12-500x375.jpg","https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12-480x270.jpg"],"video":{"name":"Homemade Sriracha Mayo Recipe","description":"Easily make Sriracha Mayo at home with only four simple ingredients and in under 5 minutes!  This creamy and spicy sauce recipe makes a great addition to your favorite fish tacos or sushi, as a spread on burgers or sandwiches, and even as a dip for fries.  Make a big batch of it now and keep it in the refrigerator when you want a fast way to take your dishes over-the-top!","thumbnailUrl":"https://mediavine-res.cloudinary.com/image/upload/s--XMQ6XHWp--/c_limit,f_auto,fl_lossy,h_1080,q_auto,w_1920/v1670612443/aljzy9mljsv8mzajyjmw.jpg","embedUrl":"https://video.mediavine.com/videos/iVBqHNl0K.js","contentUrl":"https://mediavine-res.cloudinary.com/video/upload/t_original/v1670612439/iVBqHNl0K.mp4","uploadDate":"2020-08-27T14:45:00+00:00","duration":"PT230S","@type":"VideoObject"},"recipeYield":["8"],"prepTime":"PT5M","totalTime":"PT5M","recipeIngredient":["½ cup mayonnaise (regular, avocado-oil, or vegan)","1 - 1 ½ Tbsp. Sriracha sauce (or other hot sauce)","1 tsp. lemon juice (freshly squeezed)","1  small clove garlic (crushed)","Salt (to taste, optional)"],"recipeInstructions":[{"@type":"HowToStep","text":"Add all ingredients to a medium-sized bowl. Whisk until well combined, making sure to scrape the bottom of the bowl as you do.","name":"Add all ingredients to a medium-sized bowl. Whisk until well combined, making sure to scrape the bottom of the bowl as you do.","url":"https://www.evolvingtable.com/sriracha-mayo/#wprm-recipe-19079-step-0-0"},{"@type":"HowToStep","text":"Serve immediately or store in the refrigerator for up to 2 weeks.","name":"Serve immediately or store in the refrigerator for up to 2 weeks.","url":"https://www.evolvingtable.com/sriracha-mayo/#wprm-recipe-19079-step-0-1"}],"aggregateRating":{"@type":"AggregateRating","ratingValue":"4.8","ratingCount":"5"},"review":[{"@type":"Review","reviewRating":{"@type":"Rating","ratingValue":"5"},"reviewBody":"Thank you for this recipe! Just made it with a little more of Sriracha than 1 Tbsp, and LOVED it! My poke was truly amazing with this sauce. I'll surely try it with other dishes 🙂","author":{"@type":"Person","name":"Gaby"},"datePublished":"2023-08-15"},{"@type":"Review","reviewRating":{"@type":"Rating","ratingValue":"5"},"reviewBody":"This was one of the best meals I've had ever!  Thank you for this.  \r\n\r\nYour heat scale for using the Sriracha sauce was spot on.  I used a Tablespoon and it was mildly spicy and just perfect for me!  I added an extra squeeze of honey on the salmon for extra sweetness.  It was PERFECTION!\r\n\r\nI do have a question though.  I believe I followed your instructions but did not have ANY marinade left over to put in the pan with the salmon.  Am wondering how much you typically have left over to pour back in there and then cook down when you make it?","author":{"@type":"Person","name":"TAMARA G SUTTLE"},"datePublished":"2023-07-22"},{"@type":"Review","reviewRating":{"@type":"Rating","ratingValue":"5"},"reviewBody":"This is the easiest  and best tasting recipe for Sriracha Mayo!! My family loved it so much, they ate it all and were angry that I didn't  double the recipe!!  Next time, I definitely will.   We ate it on Banh Mi sandwiches.   Yum!!!","author":{"@type":"Person","name":"Barbara Renze"},"datePublished":"2023-03-12"},{"@type":"Review","reviewRating":{"@type":"Rating","ratingValue":"5"},"reviewBody":"Delish, I'll make it again and again","author":{"@type":"Person","name":"Max McCrat"},"datePublished":"2022-02-07"}],"recipeCategory":["dip","sauce"],"recipeCuisine":["American","Asian"],"keywords":"5 minute, dip, easy, spicy","nutrition":{"@type":"NutritionInformation","calories":"96 kcal","carbohydrateContent":"1 g","proteinContent":"1 g","fatContent":"10 g","saturatedFatContent":"2 g","cholesterolContent":"6 mg","sodiumContent":"211 mg","sugarContent":"1 g","servingSize":"1 serving"},"@id":"https://www.evolvingtable.com/sriracha-mayo/#recipe","isPartOf":{"@id":"https://www.evolvingtable.com/sriracha-mayo/#article"},"mainEntityOfPage":"https://www.evolvingtable.com/sriracha-mayo/"}]}</script>
	<!-- / Yoast SEO plugin. -->


<link rel='dns-prefetch' href='//scripts.mediavine.com' />
<link rel='dns-prefetch' href='//www.googletagmanager.com' />

<link rel="alternate" type="application/rss+xml" title="Evolving Table &raquo; Feed" href="https://www.evolvingtable.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="Evolving Table &raquo; Comments Feed" href="https://www.evolvingtable.com/comments/feed/" />
<link rel="alternate" type="application/rss+xml" title="Evolving Table &raquo; Spicy Sriracha Mayo Comments Feed" href="https://www.evolvingtable.com/sriracha-mayo/feed/" />
<link rel="alternate" type="application/rss+xml" title="Evolving Table &raquo; Stories Feed" href="https://www.evolvingtable.com/web-stories/feed/">
















<style id='global-styles-inline-css'></style>




<style id='rocket-lazyload-inline-css'>
.rll-youtube-player{position:relative;padding-bottom:56.23%;height:0;overflow:hidden;max-width:100%;}.rll-youtube-player:focus-within{outline: 2px solid currentColor;outline-offset: 5px;}.rll-youtube-player iframe{position:absolute;top:0;left:0;width:100%;height:100%;z-index:100;background:0 0}.rll-youtube-player img{bottom:0;display:block;left:0;margin:auto;max-width:100%;width:100%;position:absolute;right:0;top:0;border:none;height:auto;-webkit-transition:.4s all;-moz-transition:.4s all;transition:.4s all}.rll-youtube-player img:hover{-webkit-filter:brightness(75%)}.rll-youtube-player .play{height:100%;width:100%;left:0;top:0;position:absolute;background:url(https://www.evolvingtable.com/wp-content/plugins/wp-rocket/assets/img/youtube.png) no-repeat center;background-color: transparent !important;cursor:pointer;border:none;}.wp-embed-responsive .wp-has-aspect-ratio .rll-youtube-player{position:absolute;padding-bottom:0;width:100%;height:100%;top:0;bottom:0;left:0;right:0}
</style>
<script src="https://www.evolvingtable.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1"></script>
<script async="async" data-noptimize="1" data-cfasync="false" src="https://scripts.mediavine.com/tags/evolving-table.js?ver=6.5.3" id="mv-script-wrapper-js"></script>

<!-- Google tag (gtag.js) snippet added by Site Kit -->

<!-- Google Analytics snippet added by Site Kit -->
<script src="https://www.googletagmanager.com/gtag/js?id=G-BR9ZMVTDTN" id="google_gtagjs-js" async></script>
<script id="google_gtagjs-js-after">
window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}
gtag("set","linker",{"domains":["www.evolvingtable.com"]});
gtag("js", new Date());
gtag("set", "developer_id.dZTNiMT", true);
gtag("config", "G-BR9ZMVTDTN");
</script>

<!-- End Google tag (gtag.js) snippet added by Site Kit -->
<link rel="https://api.w.org/" href="https://www.evolvingtable.com/wp-json/" /><link rel="alternate" type="application/json" href="https://www.evolvingtable.com/wp-json/wp/v2/posts/19066" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.evolvingtable.com/xmlrpc.php?rsd" />
<link rel='shortlink' href='https://www.evolvingtable.com/?p=19066' />
<link rel="alternate" type="application/json+oembed" href="https://www.evolvingtable.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.evolvingtable.com%2Fsriracha-mayo%2F" />
<link rel="alternate" type="text/xml+oembed" href="https://www.evolvingtable.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.evolvingtable.com%2Fsriracha-mayo%2F&#038;format=xml" />
<script type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1">(function() {
                    var _fbq = window._fbq || (window._fbq = []);
                    if (!_fbq.loaded) {
                        var fbds = document.createElement('script');
                        fbds.async = true;
                        fbds.src = '//connect.facebook.net/en_US/fbds.js';
                        var s = document.getElementsByTagName('script')[0];
                        s.parentNode.insertBefore(fbds, s);
                        _fbq.loaded = true;
                    }                    
                    })();
                    window._fbq = window._fbq || [];
                    window._fbq.push(['track', '1677812275763612', {'value':'0.00','currency':'USD'}]);
                    </script> 
                     
                    
                
                    <noscript><img height='1' width='1' alt='' style='display:none' src='https://www.facebook.com/tr?ev=1677812275763612&amp;cd[value]=0.00&amp;cd[currency]=USD&amp;noscript=1' /></noscript><meta name="generator" content="Site Kit by Google 1.126.0" /><style type="text/css"></style>
		
<!-- [slickstream] Page Generated at: 5/8/2024, 8:53:09 PM UTC -->
<!-- [slickstream] Fetching page boot data from server -->
<!-- [slickstream] Fetch endpoint: https://app.slickstream.com/d/page-boot-data?site=4SZ7PXZ1&url=https%3A%2F%2Fwww.evolvingtable.com%2Fsriracha-mayo%2F -->
<!-- [slickstream] Headers: {"referer":"https:\/\/www.evolvingtable.com"} -->
<!-- [slickstream] Storing page boot data in transient cache: slick_page_boot_d7c8adb36e636191453a76ed023e875c -->
<!-- [slickstream] Page Boot Data: -->
<script class='slickstream-script'>
(function() {
    "slickstream";
    const win = window;
    win.$slickBoot = win.$slickBoot || {};
    win.$slickBoot.d = {"placeholders":[],"bootTriggerTimeout":250,"bestBy":1715202489423,"epoch":1712753533061,"siteCode":"4SZ7PXZ1","services":{"engagementCacheableApiDomain":"https:\/\/c04f.app.slickstream.com\/","engagementNonCacheableApiDomain":"https:\/\/c04b.app.slickstream.com\/","engagementResourcesDomain":"https:\/\/c04f.app.slickstream.com\/","storyCacheableApiDomain":"https:\/\/stories.slickstream.com\/","storyNonCacheableApiDomain":"https:\/\/stories.slickstream.com\/","storyResourcesDomain":"https:\/\/stories.slickstream.com\/","websocketUri":"wss:\/\/c04b-wss.app.slickstream.com\/socket?site=4SZ7PXZ1"},"bootUrl":"https:\/\/c.slickstream.com\/app\/2.13.87\/boot-loader.js","appUrl":"https:\/\/c.slickstream.com\/app\/2.13.87\/app.js","adminUrl":"","allowList":["evolvingtable.com"],"abTests":[{"_id":"6633dfa5f4c7c6dcf5b8c823","id":"4419203d-0898-43ee-96ea-6426ff61eb73","type":"feature-switches","feature":"email-capture","fraction":50,"startDate":1714716000000,"endDate":1715666400000,"includeSites":null,"excludeSites":["R5MAV0Z7","H0C6SBKF","9J3AXZ8B","UGS2VGHL","9LUFT7H6","TH98WLES","UTESX23V","VWHMMQZH","J9LCGELD","KBPNSKP5","LXTCTVZR","MR6141R5","H5PR7HJQ","188YWALQ","8EL02J60","MZ02ZNGF","NS6YK5H7","TPDSH95N","L8EAVD26","QCZ3H7Z7","L9LWDWR9","VUWHN67V","L7T65V6E","2M100P02","717PL89C","MK33XNMR","03XXE0QN","6DNFWRY3","P49MPDD8","QQ2GT249","F9T6P4AS","HG1JRBRE","JA1YSFU7","KWC2J25C","YWZPSMNX","6ERGB664","TRF11T5M","APWM5SG8","UEZP9P70","BX1S81NB","YNW7K84Q","KSMD07P2","TUKDXTE5","A5PEEJV7","VVLCUEGX","H45AS4KF","7NL4ZU6P","A3N6MZ45","03W1KUFU","RL5Q09CR","HJGYF938","CZL2W79Z","0AZMTWJJ","8BB5593U","PYQK73ZF","MGD9RQF2","UM5PVDTR","KWGH5P0M","YTTURXH1","M4RA4P87","PWBR5SR0","MAR7TZHH","HLGNPQ2Z","FQ1PDT4Z","1UKE2G1S","MY8VYZB5","6ZXSY5UT","TX0RQ5ZZ","1FMA936N","9ED5GMCM","HC3E36C0","ASFHPXBJ","6RXV2XQ4","ZCCPQJ62","89B7Z58W","LHA4XEV3","UELT7CLV","482DFTZQ","EVRZF23V","CPTHKD1B","29T7AWS6","CYCBEYZM","NW41N695","5520822S","M69FLGY8","7YPPXP8Z","0PG5A2ZU","Z3CL4E5J"],"addedAt":1714675621786,"updatedAt":1714675621786,"devices":["desktop","phone"]}],"v2":{"phone":{"placeholders":[],"bootTriggerTimeout":250,"bestBy":1715202489423,"epoch":1712753533061,"siteCode":"4SZ7PXZ1","services":{"engagementCacheableApiDomain":"https:\/\/c04f.app.slickstream.com\/","engagementNonCacheableApiDomain":"https:\/\/c04b.app.slickstream.com\/","engagementResourcesDomain":"https:\/\/c04f.app.slickstream.com\/","storyCacheableApiDomain":"https:\/\/stories.slickstream.com\/","storyNonCacheableApiDomain":"https:\/\/stories.slickstream.com\/","storyResourcesDomain":"https:\/\/stories.slickstream.com\/","websocketUri":"wss:\/\/c04b-wss.app.slickstream.com\/socket?site=4SZ7PXZ1"},"bootUrl":"https:\/\/c.slickstream.com\/app\/2.13.87\/boot-loader.js","appUrl":"https:\/\/c.slickstream.com\/app\/2.13.87\/app.js","adminUrl":"","allowList":["evolvingtable.com"],"abTests":[{"_id":"6633dfa5f4c7c6dcf5b8c823","id":"4419203d-0898-43ee-96ea-6426ff61eb73","type":"feature-switches","feature":"email-capture","fraction":50,"startDate":1714716000000,"endDate":1715666400000,"includeSites":null,"excludeSites":["R5MAV0Z7","H0C6SBKF","9J3AXZ8B","UGS2VGHL","9LUFT7H6","TH98WLES","UTESX23V","VWHMMQZH","J9LCGELD","KBPNSKP5","LXTCTVZR","MR6141R5","H5PR7HJQ","188YWALQ","8EL02J60","MZ02ZNGF","NS6YK5H7","TPDSH95N","L8EAVD26","QCZ3H7Z7","L9LWDWR9","VUWHN67V","L7T65V6E","2M100P02","717PL89C","MK33XNMR","03XXE0QN","6DNFWRY3","P49MPDD8","QQ2GT249","F9T6P4AS","HG1JRBRE","JA1YSFU7","KWC2J25C","YWZPSMNX","6ERGB664","TRF11T5M","APWM5SG8","UEZP9P70","BX1S81NB","YNW7K84Q","KSMD07P2","TUKDXTE5","A5PEEJV7","VVLCUEGX","H45AS4KF","7NL4ZU6P","A3N6MZ45","03W1KUFU","RL5Q09CR","HJGYF938","CZL2W79Z","0AZMTWJJ","8BB5593U","PYQK73ZF","MGD9RQF2","UM5PVDTR","KWGH5P0M","YTTURXH1","M4RA4P87","PWBR5SR0","MAR7TZHH","HLGNPQ2Z","FQ1PDT4Z","1UKE2G1S","MY8VYZB5","6ZXSY5UT","TX0RQ5ZZ","1FMA936N","9ED5GMCM","HC3E36C0","ASFHPXBJ","6RXV2XQ4","ZCCPQJ62","89B7Z58W","LHA4XEV3","UELT7CLV","482DFTZQ","EVRZF23V","CPTHKD1B","29T7AWS6","CYCBEYZM","NW41N695","5520822S","M69FLGY8","7YPPXP8Z","0PG5A2ZU","Z3CL4E5J"],"addedAt":1714675621786,"updatedAt":1714675621786,"devices":["desktop","phone"]}]},"tablet":{"placeholders":[],"bootTriggerTimeout":250,"bestBy":1715202489423,"epoch":1712753533061,"siteCode":"4SZ7PXZ1","services":{"engagementCacheableApiDomain":"https:\/\/c04f.app.slickstream.com\/","engagementNonCacheableApiDomain":"https:\/\/c04b.app.slickstream.com\/","engagementResourcesDomain":"https:\/\/c04f.app.slickstream.com\/","storyCacheableApiDomain":"https:\/\/stories.slickstream.com\/","storyNonCacheableApiDomain":"https:\/\/stories.slickstream.com\/","storyResourcesDomain":"https:\/\/stories.slickstream.com\/","websocketUri":"wss:\/\/c04b-wss.app.slickstream.com\/socket?site=4SZ7PXZ1"},"bootUrl":"https:\/\/c.slickstream.com\/app\/2.13.87\/boot-loader.js","appUrl":"https:\/\/c.slickstream.com\/app\/2.13.87\/app.js","adminUrl":"","allowList":["evolvingtable.com"],"abTests":[{"_id":"6633dfa5f4c7c6dcf5b8c823","id":"4419203d-0898-43ee-96ea-6426ff61eb73","type":"feature-switches","feature":"email-capture","fraction":50,"startDate":1714716000000,"endDate":1715666400000,"includeSites":null,"excludeSites":["R5MAV0Z7","H0C6SBKF","9J3AXZ8B","UGS2VGHL","9LUFT7H6","TH98WLES","UTESX23V","VWHMMQZH","J9LCGELD","KBPNSKP5","LXTCTVZR","MR6141R5","H5PR7HJQ","188YWALQ","8EL02J60","MZ02ZNGF","NS6YK5H7","TPDSH95N","L8EAVD26","QCZ3H7Z7","L9LWDWR9","VUWHN67V","L7T65V6E","2M100P02","717PL89C","MK33XNMR","03XXE0QN","6DNFWRY3","P49MPDD8","QQ2GT249","F9T6P4AS","HG1JRBRE","JA1YSFU7","KWC2J25C","YWZPSMNX","6ERGB664","TRF11T5M","APWM5SG8","UEZP9P70","BX1S81NB","YNW7K84Q","KSMD07P2","TUKDXTE5","A5PEEJV7","VVLCUEGX","H45AS4KF","7NL4ZU6P","A3N6MZ45","03W1KUFU","RL5Q09CR","HJGYF938","CZL2W79Z","0AZMTWJJ","8BB5593U","PYQK73ZF","MGD9RQF2","UM5PVDTR","KWGH5P0M","YTTURXH1","M4RA4P87","PWBR5SR0","MAR7TZHH","HLGNPQ2Z","FQ1PDT4Z","1UKE2G1S","MY8VYZB5","6ZXSY5UT","TX0RQ5ZZ","1FMA936N","9ED5GMCM","HC3E36C0","ASFHPXBJ","6RXV2XQ4","ZCCPQJ62","89B7Z58W","LHA4XEV3","UELT7CLV","482DFTZQ","EVRZF23V","CPTHKD1B","29T7AWS6","CYCBEYZM","NW41N695","5520822S","M69FLGY8","7YPPXP8Z","0PG5A2ZU","Z3CL4E5J"],"addedAt":1714675621786,"updatedAt":1714675621786,"devices":["desktop","phone"]}]},"desktop":{"placeholders":[],"bootTriggerTimeout":250,"bestBy":1715202489423,"epoch":1712753533061,"siteCode":"4SZ7PXZ1","services":{"engagementCacheableApiDomain":"https:\/\/c04f.app.slickstream.com\/","engagementNonCacheableApiDomain":"https:\/\/c04b.app.slickstream.com\/","engagementResourcesDomain":"https:\/\/c04f.app.slickstream.com\/","storyCacheableApiDomain":"https:\/\/stories.slickstream.com\/","storyNonCacheableApiDomain":"https:\/\/stories.slickstream.com\/","storyResourcesDomain":"https:\/\/stories.slickstream.com\/","websocketUri":"wss:\/\/c04b-wss.app.slickstream.com\/socket?site=4SZ7PXZ1"},"bootUrl":"https:\/\/c.slickstream.com\/app\/2.13.87\/boot-loader.js","appUrl":"https:\/\/c.slickstream.com\/app\/2.13.87\/app.js","adminUrl":"","allowList":["evolvingtable.com"],"abTests":[{"_id":"6633dfa5f4c7c6dcf5b8c823","id":"4419203d-0898-43ee-96ea-6426ff61eb73","type":"feature-switches","feature":"email-capture","fraction":50,"startDate":1714716000000,"endDate":1715666400000,"includeSites":null,"excludeSites":["R5MAV0Z7","H0C6SBKF","9J3AXZ8B","UGS2VGHL","9LUFT7H6","TH98WLES","UTESX23V","VWHMMQZH","J9LCGELD","KBPNSKP5","LXTCTVZR","MR6141R5","H5PR7HJQ","188YWALQ","8EL02J60","MZ02ZNGF","NS6YK5H7","TPDSH95N","L8EAVD26","QCZ3H7Z7","L9LWDWR9","VUWHN67V","L7T65V6E","2M100P02","717PL89C","MK33XNMR","03XXE0QN","6DNFWRY3","P49MPDD8","QQ2GT249","F9T6P4AS","HG1JRBRE","JA1YSFU7","KWC2J25C","YWZPSMNX","6ERGB664","TRF11T5M","APWM5SG8","UEZP9P70","BX1S81NB","YNW7K84Q","KSMD07P2","TUKDXTE5","A5PEEJV7","VVLCUEGX","H45AS4KF","7NL4ZU6P","A3N6MZ45","03W1KUFU","RL5Q09CR","HJGYF938","CZL2W79Z","0AZMTWJJ","8BB5593U","PYQK73ZF","MGD9RQF2","UM5PVDTR","KWGH5P0M","YTTURXH1","M4RA4P87","PWBR5SR0","MAR7TZHH","HLGNPQ2Z","FQ1PDT4Z","1UKE2G1S","MY8VYZB5","6ZXSY5UT","TX0RQ5ZZ","1FMA936N","9ED5GMCM","HC3E36C0","ASFHPXBJ","6RXV2XQ4","ZCCPQJ62","89B7Z58W","LHA4XEV3","UELT7CLV","482DFTZQ","EVRZF23V","CPTHKD1B","29T7AWS6","CYCBEYZM","NW41N695","5520822S","M69FLGY8","7YPPXP8Z","0PG5A2ZU","Z3CL4E5J"],"addedAt":1714675621786,"updatedAt":1714675621786,"devices":["desktop","phone"]}]},"unknown":{"placeholders":[],"bootTriggerTimeout":250,"bestBy":1715202489423,"epoch":1712753533061,"siteCode":"4SZ7PXZ1","services":{"engagementCacheableApiDomain":"https:\/\/c04f.app.slickstream.com\/","engagementNonCacheableApiDomain":"https:\/\/c04b.app.slickstream.com\/","engagementResourcesDomain":"https:\/\/c04f.app.slickstream.com\/","storyCacheableApiDomain":"https:\/\/stories.slickstream.com\/","storyNonCacheableApiDomain":"https:\/\/stories.slickstream.com\/","storyResourcesDomain":"https:\/\/stories.slickstream.com\/","websocketUri":"wss:\/\/c04b-wss.app.slickstream.com\/socket?site=4SZ7PXZ1"},"bootUrl":"https:\/\/c.slickstream.com\/app\/2.13.87\/boot-loader.js","appUrl":"https:\/\/c.slickstream.com\/app\/2.13.87\/app.js","adminUrl":"","allowList":["evolvingtable.com"],"abTests":[{"_id":"6633dfa5f4c7c6dcf5b8c823","id":"4419203d-0898-43ee-96ea-6426ff61eb73","type":"feature-switches","feature":"email-capture","fraction":50,"startDate":1714716000000,"endDate":1715666400000,"includeSites":null,"excludeSites":["R5MAV0Z7","H0C6SBKF","9J3AXZ8B","UGS2VGHL","9LUFT7H6","TH98WLES","UTESX23V","VWHMMQZH","J9LCGELD","KBPNSKP5","LXTCTVZR","MR6141R5","H5PR7HJQ","188YWALQ","8EL02J60","MZ02ZNGF","NS6YK5H7","TPDSH95N","L8EAVD26","QCZ3H7Z7","L9LWDWR9","VUWHN67V","L7T65V6E","2M100P02","717PL89C","MK33XNMR","03XXE0QN","6DNFWRY3","P49MPDD8","QQ2GT249","F9T6P4AS","HG1JRBRE","JA1YSFU7","KWC2J25C","YWZPSMNX","6ERGB664","TRF11T5M","APWM5SG8","UEZP9P70","BX1S81NB","YNW7K84Q","KSMD07P2","TUKDXTE5","A5PEEJV7","VVLCUEGX","H45AS4KF","7NL4ZU6P","A3N6MZ45","03W1KUFU","RL5Q09CR","HJGYF938","CZL2W79Z","0AZMTWJJ","8BB5593U","PYQK73ZF","MGD9RQF2","UM5PVDTR","KWGH5P0M","YTTURXH1","M4RA4P87","PWBR5SR0","MAR7TZHH","HLGNPQ2Z","FQ1PDT4Z","1UKE2G1S","MY8VYZB5","6ZXSY5UT","TX0RQ5ZZ","1FMA936N","9ED5GMCM","HC3E36C0","ASFHPXBJ","6RXV2XQ4","ZCCPQJ62","89B7Z58W","LHA4XEV3","UELT7CLV","482DFTZQ","EVRZF23V","CPTHKD1B","29T7AWS6","CYCBEYZM","NW41N695","5520822S","M69FLGY8","7YPPXP8Z","0PG5A2ZU","Z3CL4E5J"],"addedAt":1714675621786,"updatedAt":1714675621786,"devices":["desktop","phone"]}]}}};
    win.$slickBoot.s = 'plugin';
    win.$slickBoot._bd = performance.now();
})();
</script>
<!-- [slickstream] END Page Boot Data -->

<meta property="slick:wpversion" content="1.4.3" />
<!-- [slickstream] Bootloader: -->
<script class='slickstream-script' >
'use strict';
(async(e,t)=>{if(location.search.indexOf("no-slick")>=0){return}let s;const a=()=>performance.now();let c=window.$slickBoot=window.$slickBoot||{};c.rt=e;c._es=a();c.ev="2.0.1";c.l=async(e,t)=>{try{let c=0;if(!s&&"caches"in self){s=await caches.open("slickstream-code")}if(s){let o=await s.match(e);if(!o){c=a();await s.add(e);o=await s.match(e);if(o&&!o.ok){o=undefined;s.delete(e)}}if(o){const e=o.headers.get("x-slickstream-consent");return{t:c,d:t?await o.blob():await o.json(),c:e||"na"}}}}catch(e){console.log(e)}return{}};const o=e=>new Request(e,{cache:"no-store"});if(!c.d||c.d.bestBy<Date.now()){const s=o(`${e}/d/page-boot-data?site=${t}&url=${encodeURIComponent(location.href.split("#")[0])}`);let{t:i,d:n,c:l}=await c.l(s);if(n){if(n.bestBy<Date.now()){n=undefined}else if(i){c._bd=i;c.c=l}}if(!n){c._bd=a();const e=await fetch(s);const t=e.headers.get("x-slickstream-consent");c.c=t||"na";n=await e.json()}if(n){c.d=n;c.s="embed"}}if(c.d){let e=c.d.bootUrl;const{t:t,d:s}=await c.l(o(e),true);if(s){c.bo=e=URL.createObjectURL(s);if(t){c._bf=t}}else{c._bf=a()}const i=document.createElement("script");i.className="slickstream-script";i.src=e;document.head.appendChild(i)}else{console.log("[slickstream] Boot failed")}})
("https://app.slickstream.com","4SZ7PXZ1");
</script>
<!-- [slickstream] END Bootloader -->
<!-- [slickstream] Page Metadata: -->
<meta property="slick:wppostid" content="19066" />
<meta property="slick:featured_image" content="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12.jpg" />
<meta property="slick:group" content="post" />
<meta property="slick:category" content="dairy-free:Dairy-Free;diets:Diets" />
<meta property="slick:category" content="gluten-free:Gluten-Free;diets:Diets" />
<meta property="slick:category" content="low-carb:Low-Carb;diets:Diets" />
<meta property="slick:category" content="lunch:Lunch;meal-type:Meal Type" />
<meta property="slick:category" content="nut-free:Nut-Free;diets:Diets" />
<meta property="slick:category" content="paleo:Paleo;diets:Diets" />
<meta property="slick:category" content="recipes:Recipes" />
<meta property="slick:category" content="sauces-dressings:Sauces &amp  Dressings;meal-type:Meal Type" />
<meta property="slick:category" content="vegetarian:Vegetarian;diets:Diets" />
<script type="application/x-slickstream+json">{"@context":"https://slickstream.com","@graph":[{"@type":"Plugin","version":"1.4.3"},{"@type":"Site","name":"Evolving Table","url":"https://www.evolvingtable.com","description":"Healthier spins on your favorite classic recipes.","atomUrl":"https://www.evolvingtable.com/feed/atom/","rtl":false},{"@type":"WebPage","@id":19066,"isFront":false,"isHome":false,"isCategory":false,"isTag":false,"isSingular":true,"date":"2024-05-08T05:00:00-05:00","modified":"2024-05-08T05:00:16-05:00","title":"Spicy Sriracha Mayo","pageType":"post","postType":"post","featured_image":"https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12.jpg","author":"London Brazil","categories":[{"@id":1797,"slug":"dairy-free","name":"Dairy-Free","parents":[{"@type":"CategoryParent","@id":1787,"slug":"diets","name":"Diets"}]},{"@id":1789,"slug":"gluten-free","name":"Gluten-Free","parents":[{"@type":"CategoryParent","@id":1787,"slug":"diets","name":"Diets"}]},{"@id":1796,"slug":"low-carb","name":"Low-Carb","parents":[{"@type":"CategoryParent","@id":1787,"slug":"diets","name":"Diets"}]},{"@id":3,"slug":"lunch","name":"Lunch","parents":[{"@type":"CategoryParent","@id":1788,"slug":"meal-type","name":"Meal Type"}]},{"@id":1795,"slug":"nut-free","name":"Nut-Free","parents":[{"@type":"CategoryParent","@id":1787,"slug":"diets","name":"Diets"}]},{"@id":1791,"slug":"paleo","name":"Paleo","parents":[{"@type":"CategoryParent","@id":1787,"slug":"diets","name":"Diets"}]},{"@id":1,"slug":"recipes","name":"Recipes","parents":[]},{"@id":117,"slug":"sauces-dressings","name":"Sauces &amp  Dressings","parents":[{"@type":"CategoryParent","@id":1788,"slug":"meal-type","name":"Meal Type"}]},{"@id":1792,"slug":"vegetarian","name":"Vegetarian","parents":[{"@type":"CategoryParent","@id":1787,"slug":"diets","name":"Diets"}]}],"tags":["5 ingredients or less","appetizer","Dinner","dip","dipping sauce","Fall","Gluten free","low-carb","lunch","mayo","sauce","spicy","Spring","sriracha","Summer","topping","under 30 mintues","Winter"],"taxonomies":[]}]}</script>
<!-- [slickstream] END Page Metadata -->
<script class='slickstream-script'>
(function() {
    const slickstreamRocketPluginScripts = document.querySelectorAll('script.slickstream-script[type=rocketlazyloadscript]');
    const slickstreamRocketExternalScripts = document.querySelectorAll('script[type=rocketlazyloadscript][src*="app.slickstream.com"]');
    if (slickstreamRocketPluginScripts.length > 0 || slickstreamRocketExternalScripts.length > 0) {
        console.warn('[slickstream] WARNING: WP-Rocket is deferring one or more Slickstream scripts. This may cause undesirable behavior, such as increased CLS scores.');
    }
})();
</script><meta name="hubbub-info" description="Hubbub Pro 2.20.0"><style type="text/css"></style><style type="text/css"></style><meta name="google-site-verification" content="0B_CZouQh2fXJs8Dn_ohOHxGG6NEWXWPWHMDS9GYwPo"><meta name="p:domain_verify" content="d9f3b7cb59c396d3ac89e5fba24d75b2" /><meta name="p:domain_verify" content="818fba9ba9444491957db06039776050" /><script type="pmdelayedscript" data-perfmatters-type="text/javascript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "lh8s7quxog"); </script>
<script data-minify="1" async src="https://www.evolvingtable.com/wp-content/cache/min/1/tag/js/gpt.js?ver=1715188535" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1"></script>
<script type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1">
window.googletag = window.googletag || {cmd: []};
googletag.cmd.push(function() {
googletag.defineSlot(
'/18190176,22509600467/MCM_Validation',
[1, 1],
'div-gpt-ad-1614955491295-0'
).addService(googletag.pubads());
googletag.pubads().enableSingleRequest();
googletag.enableServices();
});
</script>
<div id="div-gpt-ad-1614955491295-0">
<script type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1">
googletag.cmd.push(function() {
if (googletag.pubads().isInitialLoadDisabled()) {
googletag.display('div-gpt-ad-1614955491295-0');
googletag.refresh('div-gpt-ad-1614955491295-0');
} else {
googletag.display('div-gpt-ad-1614955491295-0');
}
});
</script>
</div>

		<script type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1">
			( function() {
				window.onpageshow = function( event ) {
					// Defined window.wpforms means that a form exists on a page.
					// If so and back/forward button has been clicked,
					// force reload a page to prevent the submit button state stuck.
					if ( typeof window.wpforms !== 'undefined' && event.persisted ) {
						window.location.reload();
					}
				};
			}() );
		</script>
		<meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1"><link rel="profile" href="http://gmpg.org/xfn/11"><link rel="pingback" href="https://www.evolvingtable.com/xmlrpc.php"><style id='wp-fonts-local'></style>
<link rel="icon" href="https://www.evolvingtable.com/wp-content/themes/evolvingtable-2023/assets/images/favicon.png">		<style id="wp-custom-css"></style>
		<noscript><style id="rocket-lazyload-nojs-css">.rll-youtube-player, [data-lazy-src]{display:none !important;}</style></noscript></head><body class="single wp-embed-responsive content-sidebar singular postid-19066" id="top"><div class="site-container"><a class="skip-link screen-reader-text" href="#main-content">Skip to content</a><div class="top-hat"><div class="wrap"><p>Get the best recipes straight to your inbox. <a href="https://www.evolvingtable.com/e-mail-signup/">Sign up! →</a></p></div></div><header class="site-header" role="banner"><div class="wrap"><a href="https://www.evolvingtable.com" rel="home" class="site-header__logo" aria-label="Evolving Table Home"><svg aria-hidden="true" role="img" focusable="false"><use href="#logo-primary"></use></svg></a><div class="site-header__toggles"><button class="favorite-toggle"><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-heart1"></use></svg><span class="screen-reader-text">My Favorites</span></button><button aria-label="Search" class="search-toggle"><svg class="open" width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-search"></use></svg><svg class="close" width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-close"></use></svg></button><button aria-label="Menu" class="menu-toggle"><svg class="open" width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-menu"></use></svg><svg class="close" width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-close"></use></svg></button></div><nav class="nav-menu" role="navigation"><div class="nav-primary"><ul id="primary-menu" class="menu"><li id="menu-item-80370" class="browse-all-recipes menu-item current-post-ancestor current-menu-parent current-post-parent"><a href="https://www.evolvingtable.com/category/recipes/">Browse Recipes</a></li>
<li id="menu-item-80371" class="menu-item"><a href="https://www.evolvingtable.com/shop-around/">Shop</a></li>
<li id="menu-item-80372" class="menu-item"><a href="https://www.evolvingtable.com/healthy-meal-plans/">Meal Plans</a></li>
<li id="menu-item-87773" class="menu-item"><a href="https://www.evolvingtable.com/17-salad-dressings-e-book/">e-CookBook</a></li>
<li class="menu-item menu-item-favorite"><button class="favorite-toggle"><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-heart1"></use></svg><span class="screen-reader-text">My Favorites</span></button></li><li class="menu-item menu-item-search"><button aria-label="Search" class="search-toggle"><svg class="open" width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-search"></use></svg><svg class="close" width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-close"></use></svg></button></li></ul></div><div class="nav-secondary"><ul id="secondary-menu" class="menu"><li id="menu-item-80426" class="menu-item"><a href="https://www.evolvingtable.com/start-here/">New? Start Here</a></li>
<li id="menu-item-80460" class="menu-item menu-item-home"><a href="https://www.evolvingtable.com/">Home</a></li>
<li id="menu-item-80428" class="menu-item"><a href="https://www.evolvingtable.com/about-london/">About</a></li>
<li id="menu-item-80429" class="menu-item"><a href="https://www.evolvingtable.com/contact/">Contact</a></li>
</ul></div></nav><div class="header-search"><form role="search" method="get" class="search-form" action="https://www.evolvingtable.com/category/recipes">
		<label>
			<span class="screen-reader-text">Search</span>
		</label>
		<div class="search__inside-wrapper ">
			<input type="search" class="search-field" placeholder="Search" value="" name="fwp_search" title="Search for" />
			<button type="submit" aria-label="Submit" class="search-submit wp-element-button button-inside">
				<svg class="search-icon" viewBox="0 0 24 24" width="24" height="24">
					<path d="M13 5c-3.3 0-6 2.7-6 6 0 1.4.5 2.7 1.3 3.7l-3.8 3.8 1.1 1.1 3.8-3.8c1 .8 2.3 1.3 3.7 1.3 3.3 0 6-2.7 6-6S16.3 5 13 5zm0 10.5c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2 4.5-4.5 4.5z"></path>
				</svg>
			</button>
		</div>
	</form></div></div></header><div class="post-header"><div class="wrap"><p id="breadcrumbs" class="breadcrumb"><span><span><a href="https://www.evolvingtable.com/">Home</a></span> <span class="sep">&vert;</span> <span><a href="https://www.evolvingtable.com/category/recipes/">Recipes</a></span> <span class="sep">&vert;</span> <span><a href="https://www.evolvingtable.com/category/recipes/diets/">Diets</a></span> <span class="sep">&vert;</span> <span><a href="https://www.evolvingtable.com/category/recipes/diets/gluten-free/">Gluten-Free</a></span> <span class="sep">&vert;</span> <span class="breadcrumb_last" aria-current="page">Spicy Sriracha Mayo</span></span></p><div class="post-header__title-icons-container"><h1 class="entry-title">Spicy Sriracha Mayo</h1><div class="cwp-short-names"><a href="https://www.evolvingtable.com/category/recipes/diets/dairy-free/" class="cat-key sunrise"><span class="label">DF</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a><a href="https://www.evolvingtable.com/category/recipes/diets/gluten-free/" class="cat-key asparagus"><span class="label">GF</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a><a href="https://www.evolvingtable.com/category/recipes/diets/low-carb/" class="cat-key robbinegg"><span class="label">LC</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a><a href="https://www.evolvingtable.com/category/recipes/diets/paleo/" class="cat-key dirtyblue"><span class="label">PA</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a><a href="https://www.evolvingtable.com/category/recipes/diets/vegetarian/" class="cat-key smoke"><span class="label">VG</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a></div></div><div class="post-header__lower"><div class="post-header__info"><a href="https://www.evolvingtable.com/about-london/" aria-hidden="true" tabindex="-1" class="entry-avatar"><img alt='Avatar photo' src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2064%2064'%3E%3C/svg%3E" data-lazy-srcset='https://evolvingtable.com/wp-content/uploads/2023/10/author.jpg 2x' class='avatar avatar-64 photo' height='64' width='64' decoding='async' data-lazy-src="https://evolvingtable.com/wp-content/uploads/2023/10/author.jpg"/><noscript><img alt='Avatar photo' src='https://evolvingtable.com/wp-content/uploads/2023/10/author.jpg' srcset='https://evolvingtable.com/wp-content/uploads/2023/10/author.jpg 2x' class='avatar avatar-64 photo' height='64' width='64' decoding='async'/></noscript></a><div><p class="entry-author">By <a href="https://www.evolvingtable.com/about-london/">London Brazil</a></p><div class="cwp-wprm-rating"><style></style><svg xmlns="http://www.w3.org/2000/svg" width="0" height="0" style="display:block;width:0px;height:0px"><defs><linearGradient id="wprm-recipe-user-rating-0-33"><stop offset="0%" stop-opacity="1" /><stop offset="33%" stop-opacity="1" /><stop offset="33%" stop-opacity="0" /><stop offset="100%" stop-opacity="0" /></linearGradient></defs><defs><linearGradient id="wprm-recipe-user-rating-0-50"><stop offset="0%" stop-opacity="1" /><stop offset="50%" stop-opacity="1" /><stop offset="50%" stop-opacity="0" /><stop offset="100%" stop-opacity="0" /></linearGradient></defs><defs><linearGradient id="wprm-recipe-user-rating-0-66"><stop offset="0%" stop-opacity="1" /><stop offset="66%" stop-opacity="1" /><stop offset="66%" stop-opacity="0" /><stop offset="100%" stop-opacity="0" /></linearGradient></defs></svg><style></style><div id="wprm-recipe-user-rating-0" class="wprm-recipe-rating wprm-recipe-rating-recipe-19079 wprm-user-rating wprm-user-rating-not-voted wprm-user-rating-allowed" data-recipe="19079" data-average="4.8" data-count="5" data-total="24" data-user="0" data-decimals="2"data-modal-uid="user-rating"><span class="wprm-rating-star wprm-rating-star-1 wprm-rating-star-full" data-rating="1" data-color="var(--wp--custom--color--star)" role="button" tabindex="0" aria-label="Rate this recipe 1 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g  transform="translate(0, 0)"><polygon fill="none" stroke="var(--wp--custom--color--star)" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"/></g></svg></span><span class="wprm-rating-star wprm-rating-star-2 wprm-rating-star-full" data-rating="2" data-color="var(--wp--custom--color--star)" role="button" tabindex="0" aria-label="Rate this recipe 2 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g  transform="translate(0, 0)"><polygon fill="none" stroke="var(--wp--custom--color--star)" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"/></g></svg></span><span class="wprm-rating-star wprm-rating-star-3 wprm-rating-star-full" data-rating="3" data-color="var(--wp--custom--color--star)" role="button" tabindex="0" aria-label="Rate this recipe 3 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g  transform="translate(0, 0)"><polygon fill="none" stroke="var(--wp--custom--color--star)" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"/></g></svg></span><span class="wprm-rating-star wprm-rating-star-4 wprm-rating-star-full" data-rating="4" data-color="var(--wp--custom--color--star)" role="button" tabindex="0" aria-label="Rate this recipe 4 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g  transform="translate(0, 0)"><polygon fill="none" stroke="var(--wp--custom--color--star)" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"/></g></svg></span><span class="wprm-rating-star wprm-rating-star-5 wprm-rating-star-full" data-rating="5" data-color="var(--wp--custom--color--star)" role="button" tabindex="0" aria-label="Rate this recipe 5 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g  transform="translate(0, 0)"><polygon fill="none" stroke="var(--wp--custom--color--star)" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"/></g></svg></span></div></div><p class="post-date"> May 08, 2024</p></div></div><div class="post-header__actions"><a class="wp-element-button" href="#wprm-recipe-container-19079">Jump to Recipe</a><a class="wp-element-button" href="#respond"><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-star"></use></svg>Rate Recipe</a><img width="126" height="130" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20126%20130'%3E%3C/svg%3E" class="postheader-icon" title="post-header-icon" data-lazy-src="https://www.evolvingtable.com/wp-content/themes/evolvingtable-2023/assets/icons/logo/logo-icon.svg"><noscript><img width="126" height="130" src="https://www.evolvingtable.com/wp-content/themes/evolvingtable-2023/assets/icons/logo/logo-icon.svg" class="postheader-icon" title="post-header-icon"></noscript></div></div></div></div><div class="aff-disc"><div class="aff-disc__inner"><p>&nbsp;</p>
</div></div><div class="site-inner" id="main-content"><div class="content-area"><main class="site-main" role="main"><article class="type-post mv-content-wrapper grow-content-body"><div class="entry-content">
<input class="jpibfi" type="hidden"><p><em>Thank goodness this <strong>Sriracha Mayo</strong> only takes 5 minutes to make, because you&rsquo;re going to want to put it on everything! A simple mix of sriracha sauce, creamy mayo, lemon juice and garlic combine to make a spicy dipping sauce that&rsquo;s perfect with fries, on fish tacos, smothered on burgers, or drizzled over sushi rolls and rice bowls!</em></p>



<figure class="wp-block-image size-full"><img fetchpriority="high" decoding="async" width="1200" height="1800" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%201800'%3E%3C/svg%3E" alt="Mayo, sriracha, and other ingredients are mixed together in this Sriracha Mayo recipe." class="wp-image-61667" data-jpibfi-post-excerpt="" data-jpibfi-post-url="https://www.evolvingtable.com/sriracha-mayo/" data-jpibfi-post-title="Spicy Sriracha Mayo" data-jpibfi-src="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12.jpg" data-lazy-srcset="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12.jpg 1200w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12-400x600.jpg 400w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12-683x1024.jpg 683w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12-200x300.jpg 200w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12-768x1152.jpg 768w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12-1024x1536.jpg 1024w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12-600x900.jpg 600w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12-150x225.jpg 150w" data-lazy-sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12.jpg" data-lazy-src="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12.jpg"><noscript><img fetchpriority="high" decoding="async" width="1200" height="1800" src="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12.jpg" alt="Mayo, sriracha, and other ingredients are mixed together in this Sriracha Mayo recipe." class="wp-image-61667" data-jpibfi-post-excerpt="" data-jpibfi-post-url="https://www.evolvingtable.com/sriracha-mayo/" data-jpibfi-post-title="Spicy Sriracha Mayo" data-jpibfi-src="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12.jpg" srcset="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12.jpg 1200w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12-400x600.jpg 400w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12-683x1024.jpg 683w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12-200x300.jpg 200w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12-768x1152.jpg 768w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12-1024x1536.jpg 1024w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12-600x900.jpg 600w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12-150x225.jpg 150w" sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12.jpg"></noscript></figure><div class="wp-block-yoast-seo-table-of-contents yoast-table-of-contents yoast-table-of-contents--no-js"><h2 id="table-of-contents">Table of Contents</h2><ul><li><a href="#why-youll-love-this-sauce">Why You&rsquo;ll Love This Sauce</a></li><li><a href="#ingredients-and-substitutions">Ingredients and Substitutions</a></li><li><a href="#make-it-with-2-ingredients">Make It with 2 Ingredients</a></li><li><a href="#how-to-make-sriracha-mayo-at-home">How to Make Sriracha Mayo at Home</a></li><li><a href="#faqs">FAQs</a></li><li><a href="#what-to-serve-with-sriracha-mayo">What to Serve With Sriracha Mayo</a></li><li><a href="#wprm-recipe-container-19079">Spicy Sriracha Mayo Recipe</a></li></ul></div>


<p>Over a decade ago I went to dental school in San Antonio, Texas. There was this very popular restaurant called <a href="https://thecove.us">The Cove</a> and I was absolutely OBSESSED with their sweet potato fries. So much so that I would often ONLY order fries with a double side of sriracha mayo for dinner!</p>



<p>Since figuring out how to make it myself, it&rsquo;s been my go-to sauce for practically everything.</p>



<p>You may initially think this big batch will last you AT LEAST a week.&nbsp;But fair warning &mdash;you&rsquo;ll be finding ways to use it for nearly every meal.</p>



<p>In addition to using it as a dipping sauce, you can drizzle it on eggs, fish tacos, sushi rolls, or use as a spread on <a href="https://www.evolvingtable.com/sweet-potato-black-bean-burger-quinoa/" target="_blank" rel="noreferrer noopener"><strong>Sweet Potato Black Bean Burgers</strong></a>.</p>



<h2 class="wp-block-heading" id="why-youll-love-this-sauce">Why You&rsquo;ll Love This Sauce</h2>



<ul class="is-style-fancy"><li>It&rsquo;s ready in 5 minutes.</li>



<li>The recipe calls for only 4 ingredients which you probably have on hand.</li>



<li>You can adjust the amount of spice to taste.</li>



<li>With 1 easy swap, you can even make it vegan!</li>
</ul><figure class="wp-block-image aligncenter size-full"><img decoding="async" width="1200" height="1800" data-pin-description="Easily make Sriracha Mayo at home with only four simple ingredients and in under 5 minutes!&nbsp; This creamy and spicy sauce recipe makes a great addition to your favorite fish tacos or sushi, as a spread on burgers or sandwiches, and even as a dip for fries.&nbsp; Make a big batch of it now and keep it in the refrigerator when you want a fast way to take your dishes over-the-top! #sriracha #mayo #lowcarb #dip #sauce #lowcarb" data-pin-title="Sriracha Mayo Recipe | How to Make Spicy Sriracha Mayonnaise for Tacos and Fries" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%201800'%3E%3C/svg%3E" alt="Mayonnaise, Sriracha, garlic, and lemon juice are the ingredients needed for this homemade Sriracha Mayo recipe." class="wp-image-61655" data-jpibfi-post-excerpt="" data-jpibfi-post-url="https://www.evolvingtable.com/sriracha-mayo/" data-jpibfi-post-title="Spicy Sriracha Mayo" data-jpibfi-src="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-1.jpg" data-lazy-srcset="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-1.jpg 1200w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-1-400x600.jpg 400w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-1-683x1024.jpg 683w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-1-200x300.jpg 200w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-1-768x1152.jpg 768w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-1-1024x1536.jpg 1024w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-1-600x900.jpg 600w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-1-150x225.jpg 150w" data-lazy-sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-1.jpg" data-lazy-src="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-1.jpg"><noscript><img decoding="async" width="1200" height="1800" data-pin-description="Easily make Sriracha Mayo at home with only four simple ingredients and in under 5 minutes!&nbsp; This creamy and spicy sauce recipe makes a great addition to your favorite fish tacos or sushi, as a spread on burgers or sandwiches, and even as a dip for fries.&nbsp; Make a big batch of it now and keep it in the refrigerator when you want a fast way to take your dishes over-the-top! #sriracha #mayo #lowcarb #dip #sauce #lowcarb" data-pin-title="Sriracha Mayo Recipe | How to Make Spicy Sriracha Mayonnaise for Tacos and Fries" src="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-1.jpg" alt="Mayonnaise, Sriracha, garlic, and lemon juice are the ingredients needed for this homemade Sriracha Mayo recipe." class="wp-image-61655" data-jpibfi-post-excerpt="" data-jpibfi-post-url="https://www.evolvingtable.com/sriracha-mayo/" data-jpibfi-post-title="Spicy Sriracha Mayo" data-jpibfi-src="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-1.jpg" srcset="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-1.jpg 1200w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-1-400x600.jpg 400w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-1-683x1024.jpg 683w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-1-200x300.jpg 200w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-1-768x1152.jpg 768w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-1-1024x1536.jpg 1024w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-1-600x900.jpg 600w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-1-150x225.jpg 150w" sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-1.jpg"></noscript></figure><div class="block-area block-area-after-second-image"><div class="block-save-recipe cwp-large"><div class="wpforms-container one-line save-recipe wpforms-location-save_recipe" id="wpforms-75756"><form id="wpforms-form-75756" class="wpforms-validate wpforms-form wpforms-ajax-form" data-formid="75756" method="post" enctype="multipart/form-data" action="/sriracha-mayo/" data-token="f18ea4e6303996d174c086e9cd8aff8d" data-token-time="1715201589"><div class="wpforms-head-container"><div class="wpforms-title">Email this recipe!</div><div class="wpforms-description">Simply enter your email and get it sent to your inbox! You&rsquo;ll also get the newest recipes from us every week!</div></div><noscript class="wpforms-error-noscript">Please enable JavaScript in your browser to complete this form.</noscript><div class="wpforms-field-container"><div id="wpforms-75756-field_1-container" class="wpforms-field wpforms-field-email" data-field-id="1"><label class="wpforms-field-label" for="wpforms-75756-field_1">Email <span class="wpforms-required-label">*</span></label><input type="email" id="wpforms-75756-field_1" class="wpforms-field-large wpforms-field-required" name="wpforms[fields][1]" spellcheck="false" required></div><div id="wpforms-75756-field_5-container" class="wpforms-field wpforms-field-hidden" data-field-id="5"><input type="hidden" id="wpforms-75756-field_5" name="wpforms[fields][5]" value="https://www.evolvingtable.com/sriracha-mayo/"></div><div id="wpforms-75756-field_4-container" class="wpforms-field wpforms-field-hidden" data-field-id="4"><input type="hidden" id="wpforms-75756-field_4" name="wpforms[fields][4]" value="Spicy Sriracha Mayo"></div></div><!-- .wpforms-field-container --><div class="wpforms-submit-container"><input type="hidden" name="wpforms[id]" value="75756"><input type="hidden" name="page_title" value="Spicy Sriracha Mayo"><input type="hidden" name="page_url" value="https://www.evolvingtable.com/sriracha-mayo/"><input type="hidden" name="page_id" value="94151"><input type="hidden" name="wpforms[post_id]" value="94151"><button type="submit" name="wpforms[submit]" id="wpforms-submit-75756" class="wpforms-submit wp-element-button" data-alt-text="Sending..." data-submit-text="Send" aria-live="assertive" value="wpforms-submit">Send</button><img decoding="async" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2026%2026'%3E%3C/svg%3E" class="wpforms-submit-spinner" style="display: none;" width="26" height="26" alt="Loading" data-jpibfi-post-excerpt="" data-jpibfi-post-url="https://www.evolvingtable.com/sriracha-mayo/" data-jpibfi-post-title="Spicy Sriracha Mayo" data-jpibfi-src="https://www.evolvingtable.com/wp-content/plugins/wpforms/assets/images/submit-spin.svg" data-pin-media="https://www.evolvingtable.com/wp-content/plugins/wpforms/assets/images/submit-spin.svg" data-lazy-src="https://www.evolvingtable.com/wp-content/plugins/wpforms/assets/images/submit-spin.svg"><noscript><img decoding="async" src="https://www.evolvingtable.com/wp-content/plugins/wpforms/assets/images/submit-spin.svg" class="wpforms-submit-spinner" style="display: none;" width="26" height="26" alt="Loading" data-jpibfi-post-excerpt="" data-jpibfi-post-url="https://www.evolvingtable.com/sriracha-mayo/" data-jpibfi-post-title="Spicy Sriracha Mayo" data-jpibfi-src="https://www.evolvingtable.com/wp-content/plugins/wpforms/assets/images/submit-spin.svg" data-pin-media="https://www.evolvingtable.com/wp-content/plugins/wpforms/assets/images/submit-spin.svg"></noscript></div></form></div>  <!-- .wpforms-container --></div></div>


<h2 class="wp-block-heading" id="ingredients-and-substitutions">Ingredients and Substitutions</h2>



<ul><li><strong>Sriracha Sauce</strong>. This spicy sauce is also a little sweet and gives this mayo a wonderful kick of flavor. Read more below about the different types of hot sauce and substitutions you can try.</li>



<li><strong>Mayo</strong>. Regular store-bought mayo, such as Duke&rsquo;s or Hellman&rsquo;s, is the best tasting for this recipe.&nbsp;However, an avocado oil- or plant-based mayonnaise will work as well. </li>



<li><strong>Lemon Juice</strong>. Just a touch of fresh lemon juice helps to balance out the richness of the mayonnaise.&nbsp;If you don&rsquo;t have this on hand you can squeeze in some lime juice instead.</li>



<li><strong>Garlic</strong>. One small fresh garlic clove is crushed and then mixed in.&nbsp;You can also use &frac14; teaspoon of garlic powder.</li>
</ul><div class="block-tip cwp-inner has-background has-pattern-primary-background-color">

<h2 class="wp-block-heading block-tip__title" id="make-it-with-2-ingredients">Make It with 2 Ingredients</h2>



<p>Keep it simple and make a 2-ingredient sauce by just using the sriracha and mayonnaise. But know the addition of lemon juice and fresh garlic really takes the flavor over the top!</p>

</div>


<h2 class="wp-block-heading" id="how-to-make-sriracha-mayo-at-home">How to Make Sriracha Mayo at Home</h2>



<p><em>Please see the recipe card below for more detailed ingredient amounts.</em></p>



<h3 class="wp-block-heading">1. Add Ingredients to a Bowl</h3>



<p><strong>Add all ingredients to a medium-sized bowl</strong>. You can adjust the ratio of mayo-to-sriracha if you like it a bit spicier.</p>



<p>Start by adding the least amount of sriracha sauce and then add more to taste. If you end up adding too much simply add more mayonnaise to tone down the spice.</p>



<p>If you plan on storing the sauce for future use, you can save dishes and mix in an airtight container.</p>



<figure class="wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex"><figure class="wp-block-image size-large"><img decoding="async" width="683" height="1024" data-id="61657" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20683%201024'%3E%3C/svg%3E" alt="Whisk together garlic, mayonnaise, sriracha, and lemon in a bowl for this quick and easy dip." class="wp-image-61657" data-jpibfi-post-excerpt="" data-jpibfi-post-url="https://www.evolvingtable.com/sriracha-mayo/" data-jpibfi-post-title="Spicy Sriracha Mayo" data-jpibfi-src="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-3-683x1024.jpg" data-lazy-srcset="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-3-683x1024.jpg 683w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-3-400x600.jpg 400w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-3-200x300.jpg 200w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-3-768x1152.jpg 768w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-3-1024x1536.jpg 1024w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-3-600x900.jpg 600w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-3-150x225.jpg 150w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-3.jpg 1200w" data-lazy-sizes="(max-width: 683px) 100vw, 683px" data-pin-media="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-3.jpg" data-lazy-src="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-3-683x1024.jpg"><noscript><img decoding="async" width="683" height="1024" data-id="61657" src="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-3-683x1024.jpg" alt="Whisk together garlic, mayonnaise, sriracha, and lemon in a bowl for this quick and easy dip." class="wp-image-61657" data-jpibfi-post-excerpt="" data-jpibfi-post-url="https://www.evolvingtable.com/sriracha-mayo/" data-jpibfi-post-title="Spicy Sriracha Mayo" data-jpibfi-src="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-3-683x1024.jpg" srcset="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-3-683x1024.jpg 683w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-3-400x600.jpg 400w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-3-200x300.jpg 200w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-3-768x1152.jpg 768w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-3-1024x1536.jpg 1024w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-3-600x900.jpg 600w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-3-150x225.jpg 150w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-3.jpg 1200w" sizes="(max-width: 683px) 100vw, 683px" data-pin-media="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-3.jpg"></noscript></figure></figure><h3 class="wp-block-heading">2. Whisk Until Combined</h3>



<p><strong>Stir until well combined.</strong></p>



<p>Using a whisk is the best way to make sure all of the flavors are incorporated. Make sure to really scrape on the bottom of the bowl to ensure everything is well mixed.</p>



<figure class="wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-2 is-layout-flex wp-block-gallery-is-layout-flex"><figure class="wp-block-image size-full"><img decoding="async" width="1200" height="1800" data-id="61660" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%201800'%3E%3C/svg%3E" alt="Whisk all ingredients together for a spicy sauce to add to your meal." class="wp-image-61660" data-jpibfi-post-excerpt="" data-jpibfi-post-url="https://www.evolvingtable.com/sriracha-mayo/" data-jpibfi-post-title="Spicy Sriracha Mayo" data-jpibfi-src="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-6.jpg" data-lazy-srcset="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-6.jpg 1200w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-6-400x600.jpg 400w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-6-683x1024.jpg 683w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-6-200x300.jpg 200w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-6-768x1152.jpg 768w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-6-1024x1536.jpg 1024w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-6-600x900.jpg 600w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-6-150x225.jpg 150w" data-lazy-sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-6.jpg" data-lazy-src="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-6.jpg"><noscript><img decoding="async" width="1200" height="1800" data-id="61660" src="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-6.jpg" alt="Whisk all ingredients together for a spicy sauce to add to your meal." class="wp-image-61660" data-jpibfi-post-excerpt="" data-jpibfi-post-url="https://www.evolvingtable.com/sriracha-mayo/" data-jpibfi-post-title="Spicy Sriracha Mayo" data-jpibfi-src="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-6.jpg" srcset="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-6.jpg 1200w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-6-400x600.jpg 400w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-6-683x1024.jpg 683w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-6-200x300.jpg 200w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-6-768x1152.jpg 768w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-6-1024x1536.jpg 1024w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-6-600x900.jpg 600w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-6-150x225.jpg 150w" sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-6.jpg"></noscript></figure></figure><h2 class="wp-block-heading" id="faqs">FAQs</h2>



<div class="schema-faq wp-block-yoast-faq-block"><div class="schema-faq-section" id="faq-question-1714970916578"><strong class="schema-faq-question"><strong>How spicy is sriracha mayo?</strong></strong> <p class="schema-faq-answer">Spicy sriracha mayo is about a 5 out of 10 on the spicy scale when 1&frac12; tablespoons of&nbsp;Sriracha sauce is used in this recipe. It&rsquo;s a 3 to 4 out of 10 when 1 tablespoon is used. Feel free to use more or less depending on your desired spice level!</p> </div> <div class="schema-faq-section" id="faq-question-1714970928823"><strong class="schema-faq-question"><strong>What is sriracha mayo made of?</strong></strong> <p class="schema-faq-answer"><strong>The two main ingredients in sriracha mayo are mayonnaise and sriracha. Garlic and lemon juice are great flavor additions as well.</strong></p> </div> <div class="schema-faq-section" id="faq-question-1714970940748"><strong class="schema-faq-question"><strong>Is sriracha mayo the same as yum-yum sauce?</strong></strong> <p class="schema-faq-answer">The two mayonnaise-based sauces are similar, however yum-yum sauce is not as spicy, and has a sweeter taste.</p> </div> <div class="schema-faq-section" id="faq-question-1714970951874"><strong class="schema-faq-question"><strong>Is spicy mayo healthy?</strong></strong> <p class="schema-faq-answer">Because this sauce contains mayo it can be high in fat. To make it healthier, use a low-fat mayonnaise.</p> </div> <div class="schema-faq-section" id="faq-question-1714970972336"><strong class="schema-faq-question">How to store sriracha mayo?</strong> <p class="schema-faq-answer">Seal the sriracha mayo in an airtight container and keep in the refrigerator. If made with fresh garlic it will last for <strong>up to 2 weeks</strong>, and <strong>up to a month</strong> if garlic powder is used. Do not freeze, however.</p> </div> </div>



<figure class="wp-block-image aligncenter size-full"><img decoding="async" width="1200" height="1800" data-pin-description="Ultra Crispy Baked Sweet Potato Fries are going to soon become your new favorite side dish!&nbsp; Learn how easy it is to cut sweet potatoes into fries and then bake them in the oven instead of deep-frying.&nbsp; You can then serve this healthy, vegan, vegetarian, and gluten-free roasted vegetable with a side of homemade sriracha mayo for a show-stopping recipe the whole family will love! #sweetpotato #fries #sidedish #glutenfree #vegan" data-pin-title="Crispy Baked Sweet Potato Fries Recipe | How to Make the Best Sweet Potato Fries" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%201800'%3E%3C/svg%3E" alt="Mayo, sriracha, and other ingredients are mixed together in this Sriracha Mayo recipe." class="wp-image-61669" data-jpibfi-post-excerpt="" data-jpibfi-post-url="https://www.evolvingtable.com/sriracha-mayo/" data-jpibfi-post-title="Spicy Sriracha Mayo" data-jpibfi-src="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-13.jpg" data-lazy-srcset="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-13.jpg 1200w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-13-400x600.jpg 400w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-13-683x1024.jpg 683w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-13-200x300.jpg 200w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-13-768x1152.jpg 768w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-13-1024x1536.jpg 1024w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-13-600x900.jpg 600w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-13-150x225.jpg 150w" data-lazy-sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-13.jpg" data-lazy-src="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-13.jpg"><noscript><img decoding="async" width="1200" height="1800" data-pin-description="Ultra Crispy Baked Sweet Potato Fries are going to soon become your new favorite side dish!&nbsp; Learn how easy it is to cut sweet potatoes into fries and then bake them in the oven instead of deep-frying.&nbsp; You can then serve this healthy, vegan, vegetarian, and gluten-free roasted vegetable with a side of homemade sriracha mayo for a show-stopping recipe the whole family will love! #sweetpotato #fries #sidedish #glutenfree #vegan" data-pin-title="Crispy Baked Sweet Potato Fries Recipe | How to Make the Best Sweet Potato Fries" src="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-13.jpg" alt="Mayo, sriracha, and other ingredients are mixed together in this Sriracha Mayo recipe." class="wp-image-61669" data-jpibfi-post-excerpt="" data-jpibfi-post-url="https://www.evolvingtable.com/sriracha-mayo/" data-jpibfi-post-title="Spicy Sriracha Mayo" data-jpibfi-src="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-13.jpg" srcset="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-13.jpg 1200w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-13-400x600.jpg 400w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-13-683x1024.jpg 683w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-13-200x300.jpg 200w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-13-768x1152.jpg 768w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-13-1024x1536.jpg 1024w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-13-600x900.jpg 600w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-13-150x225.jpg 150w" sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-13.jpg"></noscript></figure><h2 class="wp-block-heading" id="what-to-serve-with-sriracha-mayo">What to Serve With Sriracha Mayo</h2>



<p>Have some extra sriracha mayo? Use up this creamy sauce with these tasty recipes:</p>



<p>This sauce is delicious on <a href="https://www.evolvingtable.com/baked-potato-wedges/"><strong>Baked Potato Wedges</strong></a>, <a href="https://evolvingtable.com/baked-sweet-potato-fries/"><strong>Baked Sweet Potato Fries</strong></a>, and <a href="https://www.evolvingtable.com/sweet-potato-hash/"><strong>Sweet Potato Hash</strong></a>.</p>



<p>It also takes <a href="https://www.evolvingtable.com/shredded-chicken-tacos/"><strong>Shredded Chicken Tacos</strong></a> to a whole new level.</p>



<p>Serve sriracha mayo on <a href="https://www.evolvingtable.com/air-fryer-pickles/"><strong>Air Fryer Pickles</strong></a> and <a href="https://www.evolvingtable.com/air-fryer-zucchini-chips/"><strong>Air Fryer Zucchini Chips</strong></a>.</p>



<p>Top a <a href="https://www.evolvingtable.com/sushi-rice-bowl/"><strong>Sushi Rice Bowl</strong></a> with a spoonful. Or drizzle it over Egg Roll in a Bowl or Spring Roll in a Bowl.</p>



<p>It&rsquo;s delicious over <strong><a href="https://www.evolvingtable.com/bbq-chicken-stuffed-sweet-potatoes/">BBQ Chicken Stuffed Sweet Potatoes</a></strong> or a <strong><a href="https://www.evolvingtable.com/burger-bowls/">Burger in a Bowl</a></strong>.</p>



<div class="mv-video-target mv-video-id-iVBqHNl0K" data-video-id="iVBqHNl0K" data-volume="70" data-ratio="16:9"></div>


<div id="recipe"></div><div id="wprm-recipe-container-19079" class="wprm-recipe-container" data-recipe-id="19079" data-servings="8"><div class="wprm-recipe wprm-recipe-template-cwp-food"><div class="cwp-food-header">
	<div class="cwp-food-header__top"><p class="rate-title">Tap stars to rate!</p><style></style><svg xmlns="http://www.w3.org/2000/svg" width="0" height="0" style="display:block;width:0px;height:0px"><defs><lineargradient id="wprm-recipe-user-rating-2-33"><stop offset="0%" stop-opacity="1"></stop><stop offset="33%" stop-opacity="1"></stop><stop offset="33%" stop-opacity="0"></stop><stop offset="100%" stop-opacity="0"></stop></lineargradient></defs><defs><lineargradient id="wprm-recipe-user-rating-2-50"><stop offset="0%" stop-opacity="1"></stop><stop offset="50%" stop-opacity="1"></stop><stop offset="50%" stop-opacity="0"></stop><stop offset="100%" stop-opacity="0"></stop></lineargradient></defs><defs><lineargradient id="wprm-recipe-user-rating-2-66"><stop offset="0%" stop-opacity="1"></stop><stop offset="66%" stop-opacity="1"></stop><stop offset="66%" stop-opacity="0"></stop><stop offset="100%" stop-opacity="0"></stop></lineargradient></defs></svg><style></style><div id="wprm-recipe-user-rating-2" class="wprm-recipe-rating wprm-recipe-rating-recipe-19079 wprm-user-rating wprm-recipe-rating-inline wprm-user-rating-not-voted wprm-user-rating-allowed" data-recipe="19079" data-average="4.8" data-count="5" data-total="24" data-user="0" data-decimals="2" data-modal-uid="user-rating"><span class="wprm-rating-star wprm-rating-star-1 wprm-rating-star-full" data-rating="1" data-color="var(--wp--custom--color--star)" role="button" tabindex="0" aria-label="Rate this recipe 1 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="var(--wp--custom--color--star)" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><span class="wprm-rating-star wprm-rating-star-2 wprm-rating-star-full" data-rating="2" data-color="var(--wp--custom--color--star)" role="button" tabindex="0" aria-label="Rate this recipe 2 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="var(--wp--custom--color--star)" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><span class="wprm-rating-star wprm-rating-star-3 wprm-rating-star-full" data-rating="3" data-color="var(--wp--custom--color--star)" role="button" tabindex="0" aria-label="Rate this recipe 3 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="var(--wp--custom--color--star)" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><span class="wprm-rating-star wprm-rating-star-4 wprm-rating-star-full" data-rating="4" data-color="var(--wp--custom--color--star)" role="button" tabindex="0" aria-label="Rate this recipe 4 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="var(--wp--custom--color--star)" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><span class="wprm-rating-star wprm-rating-star-5 wprm-rating-star-full" data-rating="5" data-color="var(--wp--custom--color--star)" role="button" tabindex="0" aria-label="Rate this recipe 5 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="var(--wp--custom--color--star)" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><div class="wprm-recipe-rating-details wprm-block-text-normal"><span class="wprm-recipe-rating-average">4.80</span> from <span class="wprm-recipe-rating-count">5</span> votes</div></div></div>
	<div class="cwp-food-header__content">
		<div class="cwp-food-header__left">
			<h2 class="wprm-recipe-name wprm-block-text-none" id="spicy-sriracha-mayo-recipe">Spicy Sriracha Mayo Recipe</h2>
			<div class="wprm-recipe-summary wprm-block-text-normal"><span style="display: block;">Learn how to make <strong>Sriracha Mayo</strong> with this easy recipe. Use as a dip for fries, or to add a kick to sushi, burgers, or fish tacos!</span></div>
		</div>
		<div class="cwp-food-header__right">
			<div style="position: relative">
			<div class="wprm-recipe-image wprm-block-image-square nopin"><img decoding="async" style="border-width: 0px;border-style: solid;border-color: #666666;" width="300" height="300" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20300'%3E%3C/svg%3E" class="attachment-300x300 size-300x300" alt="Mayo, sriracha, and other ingredients are mixed together in this Sriracha Mayo recipe." data-lazy-srcset="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12-300x300.jpg 300w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12-150x150.jpg 150w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12-500x500.jpg 500w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12-320x320.jpg 320w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12-190x190.jpg 190w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12-96x96.jpg 96w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-jpibfi-post-excerpt="" data-jpibfi-post-url="https://www.evolvingtable.com/sriracha-mayo/" data-jpibfi-post-title="Spicy Sriracha Mayo" data-jpibfi-src="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12-300x300.jpg" data-pin-media="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12.jpg" data-lazy-src="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12-300x300.jpg"><noscript><img decoding="async" style="border-width: 0px;border-style: solid;border-color: #666666;" width="300" height="300" src="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12-300x300.jpg" class="attachment-300x300 size-300x300" alt="Mayo, sriracha, and other ingredients are mixed together in this Sriracha Mayo recipe." srcset="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12-300x300.jpg 300w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12-150x150.jpg 150w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12-500x500.jpg 500w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12-320x320.jpg 320w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12-190x190.jpg 190w, https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12-96x96.jpg 96w" sizes="(max-width: 300px) 100vw, 300px" data-jpibfi-post-excerpt="" data-jpibfi-post-url="https://www.evolvingtable.com/sriracha-mayo/" data-jpibfi-post-title="Spicy Sriracha Mayo" data-jpibfi-src="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12-300x300.jpg" data-pin-media="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12.jpg"></noscript></div>
			<div class="cwp-short-names"><a href="https://www.evolvingtable.com/category/recipes/diets/dairy-free/" class="cat-key sunrise"><span class="label">DF</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a><a href="https://www.evolvingtable.com/category/recipes/diets/gluten-free/" class="cat-key asparagus"><span class="label">GF</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a><a href="https://www.evolvingtable.com/category/recipes/diets/low-carb/" class="cat-key robbinegg"><span class="label">LC</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a><a href="https://www.evolvingtable.com/category/recipes/diets/paleo/" class="cat-key dirtyblue"><span class="label">PA</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a><a href="https://www.evolvingtable.com/category/recipes/diets/vegetarian/" class="cat-key smoke"><span class="label">VG</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a></div>
			</div>
		</div>
	</div>
</div>

<div class="cwp-food-meta">
	<div class="wprm-recipe-meta-container wprm-recipe-custom-container wprm-recipe-details-container wprm-recipe-details-container-separated wprm-block-text-none" style=""><div class="wprm-recipe-block-container wprm-recipe-block-container-separated wprm-block-text-none wprm-recipe-servings-container" style=""><span class="wprm-recipe-icon wprm-recipe-servings-icon"><svg width="16px" height="16px" viewbox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g fill="#333333"><path d="M15.9199,4.9443 L18.1399,2.7243 C18.5509,2.3133 19.0909,2.1083 19.6299,2.1083 C20.1699,2.1083 20.7099,2.3133 21.1209,2.7243 C21.9429,3.5473 21.9419,4.8843 21.1209,5.7073 L18.9019,7.9253 C18.0799,8.7483 16.7419,8.7483 15.9199,7.9253 C15.0979,7.1033 15.0979,5.7663 15.9199,4.9443 M23.5529,22.1383 L13.3369,11.9233 L15.3109,9.9493 C15.9559,10.3353 16.6809,10.5413 17.4109,10.5413 C18.4629,10.5413 19.5159,10.1403 20.3159,9.3403 L22.5349,7.1213 C24.1369,5.5183 24.1369,2.9123 22.5349,1.3103 C21.7599,0.5343 20.7279,0.1073 19.6299,0.1073 C18.5329,0.1073 17.5019,0.5343 16.7259,1.3103 L14.5059,3.5303 C13.7299,4.3063 13.3029,5.3383 13.3029,6.4343 C13.3029,7.1883 13.5179,7.9053 13.8959,8.5363 L11.9229,10.5083 L9.9489,8.5353 C10.8909,6.9593 10.6959,4.8863 9.3399,3.5303 L6.1039,0.2933 C5.7129,-0.0977 5.0799,-0.0977 4.6899,0.2933 C4.2989,0.6833 4.2989,1.3163 4.6899,1.7073 L7.9259,4.9443 C8.4909,5.5093 8.6579,6.3153 8.4459,7.0323 L3.6539,2.2403 C3.2639,1.8493 2.6309,1.8493 2.2399,2.2403 C1.8499,2.6313 1.8499,3.2633 2.2399,3.6543 L7.0319,8.4463 C6.3149,8.6583 5.5089,8.4913 4.9429,7.9253 L1.7069,4.6893 C1.3159,4.2983 0.6839,4.2983 0.2929,4.6893 C-0.0981,5.0803 -0.0981,5.7133 0.2929,6.1033 L3.5289,9.3403 C4.3309,10.1403 5.3829,10.5413 6.4349,10.5413 C7.1649,10.5413 7.8899,10.3353 8.5349,9.9493 L10.5089,11.9233 L0.2929,22.1383 C-0.0981,22.5293 -0.0981,23.1623 0.2929,23.5523 C0.4879,23.7483 0.7439,23.8453 0.9999,23.8453 C1.2559,23.8453 1.5119,23.7483 1.7069,23.5523 L11.9229,13.3373 L22.1389,23.5523 C22.3339,23.7483 22.5899,23.8453 22.8459,23.8453 C23.1019,23.8453 23.3569,23.7483 23.5529,23.5523 C23.9429,23.1623 23.9429,22.5293 23.5529,22.1383"></path></g></g></svg></span> <span class="wprm-recipe-details-label wprm-block-text-none wprm-recipe-servings-label">Yield </span><span class="wprm-recipe-servings wprm-recipe-details wprm-recipe-servings-19079 wprm-recipe-servings-adjustable-tooltip wprm-block-text-none" data-initial-servings="" data-recipe="19079" aria-label="Adjust recipe servings">8</span></div><div class="wprm-recipe-block-container wprm-recipe-block-container-separated wprm-block-text-none wprm-recipe-time-container wprm-recipe-prep-time-container" style=""><span class="wprm-recipe-icon wprm-recipe-time-icon wprm-recipe-prep-time-icon"><svg width="16px" height="16px" viewbox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g fill="#333333"><path d="M23.0003,3.36572875e-15 C23.0316387,0.000317919689 23.0536425,0.00151109438 23.0755909,0.0036138599 L23.0003,3.36572875e-15 C23.0419819,3.36572875e-15 23.0830681,0.00322127478 23.1234112,0.00947749182 C23.1407517,0.0123470995 23.1589186,0.0158140355 23.1770055,0.0199094972 C23.1927102,0.0232043388 23.2078903,0.0270981267 23.2229413,0.0314207845 C23.2373137,0.0358562825 23.2513595,0.040309618 23.2653331,0.0451495221 C23.2866031,0.0522017473 23.3077746,0.0605080776 23.3286321,0.0696621675 C23.3382508,0.0741632281 23.3476385,0.0784787431 23.3569809,0.0829754814 C23.3781618,0.0929340076 23.3990319,0.104054222 23.4195268,0.116025011 C23.4335023,0.124343766 23.4473662,0.132918622 23.4610918,0.141916689 C23.4796908,0.154029591 23.4976803,0.166771745 23.5153154,0.180181753 C23.5215871,0.184990661 23.5280204,0.19000071 23.5344156,0.195109815 C23.586634,0.236855816 23.6353658,0.284328743 23.6802654,0.336947065 C23.6902854,0.348910836 23.7001798,0.361023076 23.7099116,0.373439419 C23.7250854,0.392462885 23.7395122,0.412025738 23.7534415,0.432151928 C23.7562299,0.43664277 23.7593476,0.44121751 23.7624447,0.4458273 L23.769238,0.455541135 C23.7909293,0.488457379 23.811321,0.522788367 23.8303136,0.558408405 L23.7624447,0.4458273 C23.7930109,0.491322665 23.8205847,0.538758404 23.8451908,0.587752207 C23.8589849,0.614619568 23.8717651,0.64234537 23.8837139,0.670714903 C23.8916909,0.69034202 23.8993981,0.709868171 23.9066758,0.729569234 C23.9667944,0.891355027 24.0003,1.07231394 24.0003,1.26315789 C24.0003,1.37052085 23.989696,1.47475535 23.9697388,1.57428146 C23.967148,1.58490156 23.9648139,1.59593416 23.9623606,1.60693038 C23.9555487,1.63944278 23.9473725,1.67108415 23.9382567,1.70214932 C23.9328014,1.7194493 23.9272838,1.73710073 23.9214435,1.75461133 C23.9130937,1.78057383 23.9038746,1.80572912 23.8940331,1.83042064 C23.8871468,1.84713902 23.8798952,1.86440489 23.8723095,1.8814851 C23.8602176,1.90903343 23.8474942,1.93526551 23.8340529,1.96084342 C23.8267188,1.97460628 23.8189413,1.9887999 23.8109117,2.00282261 C23.789491,2.04037757 23.7665296,2.07615951 23.742116,2.11025074 C23.7361292,2.11837436 23.730366,2.12620343 23.7245111,2.13395705 C23.7018558,2.16426076 23.6779391,2.193016 23.6529446,2.22023557 C23.6511671,2.22181835 23.6491147,2.22403628 23.6470534,2.22624593 C22.2271772,3.74833439 21.6647271,4.65602375 21.4043432,6.25622236 L21.313921,6.9057026 C21.0634824,8.84220504 20.486405,13.8251595 19.5858719,21.8291803 C19.4531115,23.0090189 18.6885169,23.9016995 17.7616677,23.9923977 L17.605771,24 L7.04340288,24 C6.03281327,24 5.18975734,23.05054 5.06049935,21.8040728 L5.04653242,21.6149567 L4.1993,2.526 L4.09147292,2.52631579 C2.6590264,2.52631579 2.05156336,3.19209822 2.00342832,4.83304006 L2.0003,5.05263158 L2.0003,10.2119816 C2.0003,10.9096044 1.55258475,11.4751395 1.0003,11.4751395 C0.487464161,11.4751395 0.0647928393,10.9875098 0.00702773133,10.3592925 L0.0003,10.2119816 L0.0003,5.05263158 C0.0003,1.9313089 1.41899303,0.112409326 3.85967681,0.00503921635 L4.09147292,3.36572875e-15 L23.0003,3.36572875e-15 Z M20.5851703,2.52607109 L6.2023,2.526 L7.04340288,21.4736842 L17.605771,21.4736842 L18.9326769,9.85721503 C19.1364011,8.12389009 19.2843546,6.91171982 19.3767646,6.21889335 L19.3924957,6.1020206 C19.5921836,4.63305189 19.951032,3.55981979 20.5851703,2.52607109 Z M14,15.1578947 C14.5522847,15.1578947 15,15.7234298 15,16.4210526 C15,17.0688453 14.6139598,17.6027459 14.1166211,17.6757123 L14,17.6842105 L10,17.6842105 C9.44771525,17.6842105 9,17.1186755 9,16.4210526 C9,15.77326 9.38604019,15.2393594 9.88337887,15.1663929 L10,15.1578947 L14,15.1578947 Z M14,10.1052632 C14.5522847,10.1052632 15,10.6707982 15,11.3684211 C15,12.0162137 14.6139598,12.5501143 14.1166211,12.6230808 L14,12.6315789 L10,12.6315789 C9.44771525,12.6315789 9,12.0660439 9,11.3684211 C9,10.7206284 9.38604019,10.1867278 9.88337887,10.1137613 L10,10.1052632 L14,10.1052632 Z M14,5.05263158 C14.5522847,5.05263158 15,5.61816663 15,6.31578947 C15,6.96358211 14.6139598,7.49748273 14.1166211,7.57044918 L14,7.57894737 L10,7.57894737 C9.44771525,7.57894737 9,7.01341232 9,6.31578947 C9,5.66799683 9.38604019,5.13409622 9.88337887,5.06112977 L10,5.05263158 L14,5.05263158 Z"></path></g></g></svg></span> <span class="wprm-recipe-details-label wprm-block-text-none wprm-recipe-time-label wprm-recipe-prep-time-label">Prep </span><span class="wprm-recipe-time wprm-block-text-none"><span class="wprm-recipe-details wprm-recipe-details-minutes wprm-recipe-prep_time wprm-recipe-prep_time-minutes">5<span class="sr-only screen-reader-text wprm-screen-reader-text"> minutes</span></span> <span class="wprm-recipe-details-unit wprm-recipe-details-minutes wprm-recipe-prep_time-unit wprm-recipe-prep_timeunit-minutes" aria-hidden="true">mins</span></span></div><div class="wprm-recipe-block-container wprm-recipe-block-container-separated wprm-block-text-none wprm-recipe-time-container wprm-recipe-total-time-container" style=""><span class="wprm-recipe-icon wprm-recipe-time-icon wprm-recipe-total-time-icon"><svg width="16px" height="16px" viewbox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g fill="#333333"><path d="M10.3751486,0.076857365 C14.4800787,0.363902043 17.5948888,3.86011769 17.4395617,7.94264453 L17.4324114,8.06363503 L18.5276667,7.03351806 C19.5730051,6.04970474 21.1389301,5.88973514 22.3561798,6.62061018 L22.5199255,6.72580302 C23.6998469,7.53517206 24.2101624,9.01192996 23.7996825,10.3671978 L23.737977,10.55118 L20.9781832,18.0392757 C21.8266399,18.4532395 22.3935161,19.3196488 22.3886178,20.2997609 L22.3824562,20.4641071 C22.2899952,21.7863617 21.1853173,22.7963187 19.8785011,22.7897876 L19.7141549,22.7836261 L5.88738768,21.8170691 C5.53161214,23.0768227 4.37361588,24 3,24 C1.34314575,24 0,22.6568542 0,21 C0,19.9002922 0.591710358,18.9387857 1.47412246,18.4164892 L2.26372725,7.12800838 C2.55651282,2.94097963 6.18811986,-0.215928207 10.3751486,0.076857365 Z M3,20 C2.44771525,20 2,20.4477153 2,21 C2,21.5522847 2.44771525,22 3,22 C3.55228475,22 4,21.5522847 4,21 C4,20.4477153 3.55228475,20 3,20 Z M4.27842123,7.0484684 L4.25885535,7.26752133 L3.50564887,18.0424325 C4.51546976,18.2138378 5.35350889,18.8898651 5.75124272,19.8019907 L19.8536679,20.788498 C20.1291376,20.8077607 20.3680654,20.6000639 20.3873281,20.3245942 C20.4044506,20.0797322 20.2422469,19.8637428 20.0125191,19.8052394 L19.9234243,19.7909339 L19.5744727,19.7665328 C18.948774,19.7227797 18.527364,19.1253865 18.6720504,18.5339163 L18.7059014,18.4232216 L21.8613215,9.85968566 C22.0620418,9.31494838 21.867338,8.70346752 21.3886025,8.37507808 C20.9621797,8.08257267 20.4008102,8.10081316 19.9961123,8.40732222 L19.8983706,8.48994208 L16.944649,11.2698176 C16.309533,11.8675529 15.2878242,11.4205546 15.2596589,10.5832258 L15.261733,10.4718492 L15.4311715,8.04876578 C15.6469062,4.96361586 13.3207856,2.28772016 10.2356357,2.07198547 C7.22394169,1.86138731 4.60224565,4.07304472 4.27842123,7.0484684 Z"></path></g></g></svg></span> <span class="wprm-recipe-details-label wprm-block-text-none wprm-recipe-time-label wprm-recipe-total-time-label">Total </span><span class="wprm-recipe-time wprm-block-text-none"><span class="wprm-recipe-details wprm-recipe-details-minutes wprm-recipe-total_time wprm-recipe-total_time-minutes">5<span class="sr-only screen-reader-text wprm-screen-reader-text"> minutes</span></span> <span class="wprm-recipe-details-unit wprm-recipe-details-minutes wprm-recipe-total_time-unit wprm-recipe-total_timeunit-minutes" aria-hidden="true">mins</span></span></div></div>
</div>

<div class="cwp-food-content">

	<div class="cwp-food-buttons">
		<a href="https://www.evolvingtable.com/wprm_print/spicy-sriracha-mayo-recipe" style="color: #fff;" class="wprm-recipe-print wprm-recipe-link wprm-print-recipe-shortcode wprm-block-text-normal" data-recipe-id="19079" data-template="" target="_blank" rel="nofollow"><span class="wprm-recipe-icon wprm-recipe-print-icon"><svg width="16px" height="16px" viewbox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g fill="#fff"><g><path d="M17.5454,0.0005 C18.2904,0.0005 18.9004,0.6105 18.9004,1.3565 L18.9004,1.3565 L18.9004,4.9445 L21.9904,4.9445 C23.0954,4.9445 24.0004,5.8485 24.0004,6.9535 L24.0004,6.9535 L24.0004,17.2415 C24.0004,18.3465 23.0954,19.2505 21.9904,19.2505 L21.9904,19.2505 L19.8414,19.2505 L19.8414,22.2795 C19.8414,23.1725 19.1104,23.9035 18.2174,23.9035 L18.2174,23.9035 L5.7834,23.9035 C4.8894,23.9035 4.1594,23.1725 4.1594,22.2795 L4.1594,22.2795 L4.1594,19.2505 L2.0104,19.2505 C0.9044,19.2505 0.0004,18.3465 0.0004,17.2415 L0.0004,17.2415 L0.0004,6.9535 C0.0004,5.8485 0.9044,4.9445 2.0104,4.9445 L2.0104,4.9445 L5.0984,4.9445 L5.0984,1.3565 C5.0984,0.6105 5.7094,0.0005 6.4554,0.0005 L6.4554,0.0005 Z M17.8414,15.5975 L6.1594,15.5975 L6.1594,21.9035 L17.8414,21.9035 L17.8414,15.5975 Z M21.9904,6.9445 L2.0104,6.9445 L2.0004,17.2415 L4.1594,17.2425 L4.1594,15.2215 C4.1594,14.3285 4.8894,13.5975 5.7834,13.5975 L5.7834,13.5975 L18.2174,13.5975 C19.1104,13.5975 19.8414,14.3285 19.8414,15.2215 L19.8414,15.2215 L19.8414,17.2495 L21.9904,17.2505 L22.0004,6.9535 L21.9904,6.9445 Z M6.1632,9.1318 C6.7902,9.1318 7.2992,9.6408 7.2992,10.2678 C7.2992,10.8948 6.7902,11.4028 6.1632,11.4028 L6.1632,11.4028 L5.0992,11.4028 C4.4722,11.4028 3.9632,10.8948 3.9632,10.2678 C3.9632,9.6408 4.4722,9.1318 5.0992,9.1318 L5.0992,9.1318 Z M16.6304,2.2715 L7.3704,2.2715 L7.3704,4.6845 L16.6304,4.6845 L16.6304,2.2715 Z"></path></g></g></g></svg></span> Print</a>
		<a href="https://www.pinterest.com/pin/create/bookmarklet/?url=https%3A%2F%2Fwww.evolvingtable.com%2Fsriracha-mayo%2F&amp;media=https%3A%2F%2Fwww.evolvingtable.com%2Fwp-content%2Fuploads%2F2023%2F02%2FSriracha-Mayo-12.jpg&amp;description=Spicy+Sriracha+Mayo+Recipe&amp;is_video=false" style="color: #fff;" class="wprm-recipe-pin wprm-recipe-link wprm-block-text-normal" target="_blank" rel="nofollow noopener" data-recipe="19079" data-url="https://www.evolvingtable.com/sriracha-mayo/" data-media="https://www.evolvingtable.com/wp-content/uploads/2023/02/Sriracha-Mayo-12.jpg" data-description="Spicy Sriracha Mayo Recipe" data-repin=""><span class="wprm-recipe-icon wprm-recipe-pin-icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewbox="0 0 16 16"><g class="nc-icon-wrapper" stroke-width="1" fill="#fff" stroke="#fff"><path fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M11.5,0.5 C9.982,0.5,8.678,1.355,8,2.601C7.322,1.355,6.018,0.5,4.5,0.5c-2.209,0-4,1.791-4,4c0,4,7.5,11,7.5,11s7.5-7,7.5-11 C15.5,2.291,13.709,0.5,11.5,0.5z" data-cap="butt"></path></g></svg></span> Pin</a>
		<a href="#commentform" style="color: #fff;" class="wprm-recipe-jump-to-comments wprm-recipe-link wprm-block-text-normal"><span class="wprm-recipe-icon wprm-recipe-jump-to-comments-icon"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#fff" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span> Comment</a>
	</div>
		<div class="cwp-save-recipe-shortcode">
		<div class="left">
			<div class="cwp-save-recipe-shortcode__title">
				<div class="icon"><img width="352" height="224" decoding="async" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20352%20224'%3E%3C/svg%3E" alt="An image of an envelope sealed shut with the Evolving Table logo." class="nopin" data-jpibfi-post-excerpt="" data-jpibfi-post-url="https://www.evolvingtable.com/sriracha-mayo/" data-jpibfi-post-title="Spicy Sriracha Mayo" data-jpibfi-src="https://www.evolvingtable.com/wp-content/themes/evolvingtable-2023/assets/images/icon-email-envelope.png" data-pin-media="https://www.evolvingtable.com/wp-content/themes/evolvingtable-2023/assets/images/icon-email-envelope.png" data-lazy-src="https://www.evolvingtable.com/wp-content/themes/evolvingtable-2023/assets/images/icon-email-envelope.png"><noscript><img width="352" height="224" decoding="async" src="https://www.evolvingtable.com/wp-content/themes/evolvingtable-2023/assets/images/icon-email-envelope.png" alt="An image of an envelope sealed shut with the Evolving Table logo." class="nopin" data-jpibfi-post-excerpt="" data-jpibfi-post-url="https://www.evolvingtable.com/sriracha-mayo/" data-jpibfi-post-title="Spicy Sriracha Mayo" data-jpibfi-src="https://www.evolvingtable.com/wp-content/themes/evolvingtable-2023/assets/images/icon-email-envelope.png" data-pin-media="https://www.evolvingtable.com/wp-content/themes/evolvingtable-2023/assets/images/icon-email-envelope.png"></noscript></div>
				<h4>Email this recipe!</h4>
			</div>
			<div class="cwp-save-recipe-shortcode__description">
				<div>Enter your email and we&rsquo;ll send it directly to you.</div>
			</div>
		</div>
		<div class="right">
			<div class="wpforms-container one-line save-recipe wpforms-location-save_recipe" id="wpforms-75756"><form id="wpforms-form-75756" class="wpforms-validate wpforms-form wpforms-ajax-form" data-formid="75756" method="post" enctype="multipart/form-data" action="/sriracha-mayo/" data-token="f18ea4e6303996d174c086e9cd8aff8d" data-token-time="1715201589"><noscript class="wpforms-error-noscript">Please enable JavaScript in your browser to complete this form.</noscript><div class="wpforms-field-container"><div id="wpforms-75756-field_1-container" class="wpforms-field wpforms-field-email" data-field-id="1"><label class="wpforms-field-label" for="wpforms-75756-field_1">Email <span class="wpforms-required-label">*</span></label><input type="email" id="wpforms-75756-field_1" class="wpforms-field-large wpforms-field-required" name="wpforms[fields][1]" spellcheck="false" required></div><div id="wpforms-75756-field_5-container" class="wpforms-field wpforms-field-hidden" data-field-id="5"><input type="hidden" id="wpforms-75756-field_5" name="wpforms[fields][5]" value="https://www.evolvingtable.com/sriracha-mayo/"></div><div id="wpforms-75756-field_4-container" class="wpforms-field wpforms-field-hidden" data-field-id="4"><input type="hidden" id="wpforms-75756-field_4" name="wpforms[fields][4]" value="Spicy Sriracha Mayo"></div></div><!-- .wpforms-field-container --><div class="wpforms-submit-container"><input type="hidden" name="wpforms[id]" value="75756"><input type="hidden" name="page_title" value="Spicy Sriracha Mayo"><input type="hidden" name="page_url" value="https://www.evolvingtable.com/sriracha-mayo/"><input type="hidden" name="page_id" value="19066"><input type="hidden" name="wpforms[post_id]" value="19066"><button type="submit" name="wpforms[submit]" id="wpforms-submit-75756" class="wpforms-submit wp-element-button" data-alt-text="Sending..." data-submit-text="Send" aria-live="assertive" value="wpforms-submit">Send</button><img decoding="async" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2026%2026'%3E%3C/svg%3E" class="wpforms-submit-spinner" style="display: none;" width="26" height="26" alt="Loading" data-jpibfi-post-excerpt="" data-jpibfi-post-url="https://www.evolvingtable.com/sriracha-mayo/" data-jpibfi-post-title="Spicy Sriracha Mayo" data-jpibfi-src="https://www.evolvingtable.com/wp-content/plugins/wpforms/assets/images/submit-spin.svg" data-pin-media="https://www.evolvingtable.com/wp-content/plugins/wpforms/assets/images/submit-spin.svg" data-lazy-src="https://www.evolvingtable.com/wp-content/plugins/wpforms/assets/images/submit-spin.svg"><noscript><img decoding="async" src="https://www.evolvingtable.com/wp-content/plugins/wpforms/assets/images/submit-spin.svg" class="wpforms-submit-spinner" style="display: none;" width="26" height="26" alt="Loading" data-jpibfi-post-excerpt="" data-jpibfi-post-url="https://www.evolvingtable.com/sriracha-mayo/" data-jpibfi-post-title="Spicy Sriracha Mayo" data-jpibfi-src="https://www.evolvingtable.com/wp-content/plugins/wpforms/assets/images/submit-spin.svg" data-pin-media="https://www.evolvingtable.com/wp-content/plugins/wpforms/assets/images/submit-spin.svg"></noscript></div></form></div>  <!-- .wpforms-container -->		</div>
	</div>
	
	
	<div class="wprm-recipe-ingredients-container wprm-recipe-ingredients-no-images wprm-recipe-19079-ingredients-container wprm-block-text-normal wprm-ingredient-style-regular wprm-recipe-images-before" data-recipe="19079" data-servings="8"><h3 class="wprm-recipe-header wprm-recipe-ingredients-header wprm-block-text-none wprm-align-left wprm-header-decoration-none wprm-header-has-actions" style="">Ingredients&nbsp;<div class="wprm-recipe-adjustable-servings-container wprm-recipe-adjustable-servings-19079-container wprm-toggle-container wprm-block-text-normal" data-initial-servings="" style="background-color: var(--wp--preset--color--background);border-color: var(--wp--preset--color--foreground);color: var(--wp--preset--color--foreground);border-radius: 0px;"><button href="#" class="wprm-recipe-adjustable-servings wprm-toggle wprm-toggle-active" data-multiplier="1" data-servings="8" data-recipe="19079" style="background-color: var(--wp--preset--color--foreground);color: var(--wp--preset--color--background);" aria-label="Adjust servings by 1x">1x</button><button href="#" class="wprm-recipe-adjustable-servings wprm-toggle" data-multiplier="2" data-servings="8" data-recipe="19079" style="background-color: var(--wp--preset--color--foreground);color: var(--wp--preset--color--background);border-left: 1px solid var(--wp--preset--color--foreground);" aria-label="Adjust servings by 2x">2x</button><button href="#" class="wprm-recipe-adjustable-servings wprm-toggle" data-multiplier="3" data-servings="8" data-recipe="19079" style="background-color: var(--wp--preset--color--foreground);color: var(--wp--preset--color--background);border-left: 1px solid var(--wp--preset--color--foreground);" aria-label="Adjust servings by 3x">3x</button></div></h3><div class="wprm-recipe-ingredient-group"><ul class="wprm-recipe-ingredients"><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="0"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-0" class="wprm-checkbox" aria-label="&nbsp;&frac12; cup mayonnaise regular, avocado-oil, or vegan"><label for="wprm-checkbox-0" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">&#9634; </span></label></span><span class="wprm-recipe-ingredient-amount">&frac12;</span> <span class="wprm-recipe-ingredient-unit">cup</span> <span class="wprm-recipe-ingredient-name">mayonnaise</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-normal">regular, avocado-oil, or vegan</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="2"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-1" class="wprm-checkbox" aria-label="&nbsp;1 - 1 &frac12; Tbsp. Sriracha sauce or other hot sauce"><label for="wprm-checkbox-1" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">&#9634; </span></label></span><span class="wprm-recipe-ingredient-amount">1 &ndash; 1 &frac12;</span> <span class="wprm-recipe-ingredient-unit">Tbsp.</span> <span class="wprm-recipe-ingredient-name">Sriracha sauce</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-normal">or other hot sauce</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="4"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-2" class="wprm-checkbox" aria-label="&nbsp;1 tsp. lemon juice freshly squeezed"><label for="wprm-checkbox-2" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">&#9634; </span></label></span><span class="wprm-recipe-ingredient-amount">1</span> <span class="wprm-recipe-ingredient-unit">tsp.</span> <span class="wprm-recipe-ingredient-name">lemon juice</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-normal">freshly squeezed</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="6"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-3" class="wprm-checkbox" aria-label="&nbsp;1 small clove garlic crushed"><label for="wprm-checkbox-3" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">&#9634; </span></label></span><span class="wprm-recipe-ingredient-amount">1</span> <span class="wprm-recipe-ingredient-name">small clove garlic</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-normal">crushed</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="8"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-4" class="wprm-checkbox" aria-label="&nbsp;Salt to taste, optional"><label for="wprm-checkbox-4" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">&#9634; </span></label></span><span class="wprm-recipe-ingredient-name">Salt</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-normal">to taste, optional</span></li></ul></div></div>
	<div class="wprm-prevent-sleep wprm-toggle-switch-container" style="display:none;"><style type="text/css"></style><label id="wprm-toggle-switch-1261618029" class="wprm-toggle-switch wprm-toggle-switch-rounded"><input type="checkbox" id="wprm-prevent-sleep-checkbox-1261618029" class="wprm-prevent-sleep-checkbox"><span class="wprm-toggle-switch-slider" style="width: 40px;height: 20px;margin-top: -10px;background-color: #cccccc;border-radius: 10px;"></span><span class="wprm-toggle-switch-label wprm-prevent-sleep-label wprm-block-text-bold" style="margin-left: 50px;">Cook Mode</span></label><span class="wprm-prevent-sleep-description wprm-block-text-normal">Prevent your screen from going dark</span></div>
	<div class="wprm-recipe-instructions-container wprm-recipe-19079-instructions-container wprm-block-text-normal" data-recipe="19079"><h3 class="wprm-recipe-header wprm-recipe-instructions-header wprm-block-text-none wprm-align-left wprm-header-decoration-none wprm-header-has-actions" style="">Instructions&nbsp;</h3><div class="wprm-recipe-instruction-group"><ul class="wprm-recipe-instructions"><li id="wprm-recipe-19079-step-0-0" class="wprm-recipe-instruction" style="list-style-type: none;"><div class="wprm-recipe-instruction-text"><span style="display: block;">Add all ingredients to a medium-sized bowl. Whisk until well combined, making sure to scrape the bottom of the bowl as you do.</span></div><div class="wprm-recipe-instruction-ingredients wprm-recipe-instruction-ingredients-inline wprm-block-text-faded"><span class="wprm-recipe-instruction-ingredient wprm-recipe-instruction-ingredient-19079-0" data-separator=", " style="margin-bottom: 5px;">&frac12; cup mayonnaise, </span><span class="wprm-recipe-instruction-ingredient wprm-recipe-instruction-ingredient-19079-2" data-separator=", " style="margin-bottom: 5px;">1 &ndash; 1 &frac12; Tbsp. Sriracha sauce, </span><span class="wprm-recipe-instruction-ingredient wprm-recipe-instruction-ingredient-19079-4" data-separator=", " style="margin-bottom: 5px;">1 tsp. lemon juice, </span><span class="wprm-recipe-instruction-ingredient wprm-recipe-instruction-ingredient-19079-6" data-separator=", " style="margin-bottom: 5px;">1 small clove garlic, </span><span class="wprm-recipe-instruction-ingredient wprm-recipe-instruction-ingredient-19079-8" data-separator="" style="margin-bottom: 5px;">Salt</span></div></li><li id="wprm-recipe-19079-step-0-1" class="wprm-recipe-instruction" style="list-style-type: none;"><div class="wprm-recipe-instruction-text"><span style="display: block;">Serve immediately or store in the refrigerator for up to 2 weeks.</span></div></li></ul></div></div>
	<div class="wprm-recipe-last-instruction">
		<div class="wprm-recipe-instruction-text">
			Last step! If you make this, <a href="#comments">please leave a review</a> letting us know how it was!
		</div>
	</div>
	<div class="cwp-food-content__rate">
		<p class="rate-title">Tap stars to rate!</p>
		<style></style><svg xmlns="http://www.w3.org/2000/svg" width="0" height="0" style="display:block;width:0px;height:0px"><defs><lineargradient id="wprm-recipe-user-rating-1-33"><stop offset="0%" stop-opacity="1"></stop><stop offset="33%" stop-opacity="1"></stop><stop offset="33%" stop-opacity="0"></stop><stop offset="100%" stop-opacity="0"></stop></lineargradient></defs><defs><lineargradient id="wprm-recipe-user-rating-1-50"><stop offset="0%" stop-opacity="1"></stop><stop offset="50%" stop-opacity="1"></stop><stop offset="50%" stop-opacity="0"></stop><stop offset="100%" stop-opacity="0"></stop></lineargradient></defs><defs><lineargradient id="wprm-recipe-user-rating-1-66"><stop offset="0%" stop-opacity="1"></stop><stop offset="66%" stop-opacity="1"></stop><stop offset="66%" stop-opacity="0"></stop><stop offset="100%" stop-opacity="0"></stop></lineargradient></defs></svg><style></style><div id="wprm-recipe-user-rating-1" class="wprm-recipe-rating wprm-recipe-rating-recipe-19079 wprm-user-rating wprm-recipe-rating-inline wprm-user-rating-not-voted wprm-user-rating-allowed" data-recipe="19079" data-average="4.8" data-count="5" data-total="24" data-user="0" data-decimals="2" data-modal-uid="user-rating"><span class="wprm-rating-star wprm-rating-star-1 wprm-rating-star-full" data-rating="1" data-color="var(--wp--custom--color--star)" role="button" tabindex="0" aria-label="Rate this recipe 1 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="var(--wp--custom--color--star)" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><span class="wprm-rating-star wprm-rating-star-2 wprm-rating-star-full" data-rating="2" data-color="var(--wp--custom--color--star)" role="button" tabindex="0" aria-label="Rate this recipe 2 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="var(--wp--custom--color--star)" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><span class="wprm-rating-star wprm-rating-star-3 wprm-rating-star-full" data-rating="3" data-color="var(--wp--custom--color--star)" role="button" tabindex="0" aria-label="Rate this recipe 3 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="var(--wp--custom--color--star)" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><span class="wprm-rating-star wprm-rating-star-4 wprm-rating-star-full" data-rating="4" data-color="var(--wp--custom--color--star)" role="button" tabindex="0" aria-label="Rate this recipe 4 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="var(--wp--custom--color--star)" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><span class="wprm-rating-star wprm-rating-star-5 wprm-rating-star-full" data-rating="5" data-color="var(--wp--custom--color--star)" role="button" tabindex="0" aria-label="Rate this recipe 5 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="var(--wp--custom--color--star)" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><div class="wprm-recipe-rating-details wprm-block-text-normal"><span class="wprm-recipe-rating-average">4.80</span> from <span class="wprm-recipe-rating-count">5</span> votes</div></div>
	</div>
	<div id="recipe-video"></div><div id="wprm-recipe-video-container-19079" class="wprm-recipe-video-container"><h3 class="wprm-recipe-header wprm-recipe-video-header wprm-block-text-none wprm-align-left wprm-header-decoration-none" style="">Video</h3><div class="wprm-recipe-video"><div class="mv-video-target mv-video-id-iVBqHNl0K" data-video-id="iVBqHNl0K" data-volume="70" data-ratio="16:9"></div></div></div>
	<div class="wprm-recipe-notes-container wprm-block-text-normal"><h3 class="wprm-recipe-header wprm-recipe-notes-header wprm-block-text-none wprm-align-left wprm-header-decoration-none" style="">Notes</h3><div class="wprm-recipe-notes"><ul><li>This sauce is about a 5 out of 10 on the spicy scale when 1 &frac12; tablespoons of Sriracha sauce is used or a 3-4 out of 10 when 1 tablespoon is used.</li>
<li>This recipe makes about <span data-slate-fragment="JTVCJTdCJTIydHlwZSUyMiUzQSUyMnBhcmFncmFwaCUyMiUyQyUyMmNoaWxkcmVuJTIyJTNBJTVCJTdCJTIydGV4dCUyMiUzQSUyMiVDMiVCRCUyMiU3RCU1RCU3RCU1RA==">&frac12;</span> cup of sauce, or 8 tablespoons.</li>
</ul></div></div>
	<div class="cwp-food-nutrition"><h3 class="wprm-recipe-header wprm-recipe-nutrition-header wprm-block-text-none wprm-align-left wprm-header-decoration-none" style="">Nutrition</h3><div class="wprm-nutrition-label-container wprm-nutrition-label-container-simple wprm-block-text-normal" style="text-align: left;"><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-calories"><span class="wprm-nutrition-label-text-nutrition-label  wprm-block-text-normal" style="color: var(--wp--preset--color--foreground)">Calories: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">96</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">kcal</span></span><span style="color: var(--wp--preset--color--foreground)">, </span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-carbohydrates"><span class="wprm-nutrition-label-text-nutrition-label  wprm-block-text-normal" style="color: var(--wp--preset--color--foreground)">Carbohydrates: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">1</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">g</span></span><span style="color: var(--wp--preset--color--foreground)">, </span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-protein"><span class="wprm-nutrition-label-text-nutrition-label  wprm-block-text-normal" style="color: var(--wp--preset--color--foreground)">Protein: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">1</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">g</span></span><span style="color: var(--wp--preset--color--foreground)">, </span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-fat"><span class="wprm-nutrition-label-text-nutrition-label  wprm-block-text-normal" style="color: var(--wp--preset--color--foreground)">Fat: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">10</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">g</span></span><span style="color: var(--wp--preset--color--foreground)">, </span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-saturated_fat"><span class="wprm-nutrition-label-text-nutrition-label  wprm-block-text-normal" style="color: var(--wp--preset--color--foreground)">Saturated Fat: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">2</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">g</span></span><span style="color: var(--wp--preset--color--foreground)">, </span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-cholesterol"><span class="wprm-nutrition-label-text-nutrition-label  wprm-block-text-normal" style="color: var(--wp--preset--color--foreground)">Cholesterol: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">6</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">mg</span></span><span style="color: var(--wp--preset--color--foreground)">, </span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-sodium"><span class="wprm-nutrition-label-text-nutrition-label  wprm-block-text-normal" style="color: var(--wp--preset--color--foreground)">Sodium: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">211</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">mg</span></span><span style="color: var(--wp--preset--color--foreground)">, </span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-potassium"><span class="wprm-nutrition-label-text-nutrition-label  wprm-block-text-normal" style="color: var(--wp--preset--color--foreground)">Potassium: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">7</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">mg</span></span><span style="color: var(--wp--preset--color--foreground)">, </span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-sugar"><span class="wprm-nutrition-label-text-nutrition-label  wprm-block-text-normal" style="color: var(--wp--preset--color--foreground)">Sugar: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">1</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">g</span></span><span style="color: var(--wp--preset--color--foreground)">, </span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-vitamin_a"><span class="wprm-nutrition-label-text-nutrition-label  wprm-block-text-normal" style="color: var(--wp--preset--color--foreground)">Vitamin A: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">17</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">IU</span></span><span style="color: var(--wp--preset--color--foreground)">, </span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-vitamin_c"><span class="wprm-nutrition-label-text-nutrition-label  wprm-block-text-normal" style="color: var(--wp--preset--color--foreground)">Vitamin C: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">4</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">mg</span></span><span style="color: var(--wp--preset--color--foreground)">, </span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-iron"><span class="wprm-nutrition-label-text-nutrition-label  wprm-block-text-normal" style="color: var(--wp--preset--color--foreground)">Iron: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">1</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">mg</span></span></div><p class="has-small-font-size">Nutrition information is automatically calculated, so should only be used as an approximation.</p></div>
</div>
<div class="wprm-call-to-action wprm-call-to-action-simple" style="color: var(--wp--preset--color--background);background-color: var(--wp--preset--color--senary);margin: 0px;padding-top: 10px;padding-bottom: 10px;"><span class="wprm-recipe-icon wprm-call-to-action-icon"><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 65 64"><g fill="var(--wp--preset--color--background)" fill-rule="nonzero"><path d="M33 .374c-17.397 0-31.5 14.103-31.5 31.5l.004.575a31.351 31.351 0 0 0 3.698 14.253l.284.52-5.005 16.68 20.454-2.923.432.176a31.399 31.399 0 0 0 11.636 2.219c17.394 0 31.497-14.103 31.497-31.5S50.397.374 33 .374Zm0 5c14.636 0 26.5 11.864 26.5 26.5s-11.864 26.5-26.5 26.5a26.403 26.403 0 0 1-10.714-2.254l-.655-.29-14.113 2.016 3.39-11.291-.578-.951A26.356 26.356 0 0 1 6.5 31.878C6.5 17.238 18.364 5.374 33 5.374Z"></path><path d="m27.028 23.652-8.244 1.787-.147.037c-1.389.408-1.908 2.145-.921 3.25l5.618 6.288-.847 8.39-.01.146c-.045 1.449 1.449 2.483 2.806 1.885L33 42.034l7.716 3.4.137.055c1.364.49 2.81-.61 2.66-2.086l-.852-8.389 5.62-6.288.096-.116c.884-1.147.284-2.857-1.164-3.171l-8.243-1.786-4.242-7.285c-.771-1.325-2.685-1.325-3.457 0l-4.243 7.284Zm5.971-2.304 2.959 5.08.1.156a2 2 0 0 0 1.205.792l5.746 1.245-3.917 4.385-.118.145a2 2 0 0 0-.38 1.39l.592 5.848-5.38-2.37-.174-.067a2 2 0 0 0-1.439.067l-5.382 2.371.592-5.85.01-.186a2 2 0 0 0-.508-1.348l-3.919-4.385 5.75-1.245a2 2 0 0 0 1.306-.948l2.957-5.08Z"></path></g></svg></span> <span class="wprm-call-to-action-text-container"><span class="wprm-call-to-action-header" style="color: var(--wp--preset--color--background);">Made this recipe?</span><span class="wprm-call-to-action-text"><a href="#commentform" target="_blank" style="color: var(--wp--preset--color--background)">Leave a comment below!</a></span></span></div></div></div>
<div class="dpsp-post-pinterest-image-hidden" style="display: none;"><img width="1000" height="2000" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201000%202000'%3E%3C/svg%3E"  data-pin-title="Spicy Sriracha Mayo" data-pin-description="Thank goodness this Sriracha Mayo only takes 5 minutes to make, because you&#039;re going to want to put it on everything! A simple mix of sriracha sauce, creamy mayo, lemon juice and garlic combine to make a spicy dipping sauce that&#039;s perfect with fries, on fish tacos, smothered on burgers, or drizzled over sushi rolls and rice bowls!"   class="dpsp-post-pinterest-image-hidden-inner  dpsp-post-pinterest-image-hidden-single" data-lazy-src="https://www.evolvingtable.com/wp-content/uploads/2024/05/Spicy-Sriracha-Mayo-PinStat24-1A.jpg" /><noscript><img width="1000" height="2000" src="https://www.evolvingtable.com/wp-content/uploads/2024/05/Spicy-Sriracha-Mayo-PinStat24-1A.jpg"  data-pin-title="Spicy Sriracha Mayo" data-pin-description="Thank goodness this Sriracha Mayo only takes 5 minutes to make, because you&#039;re going to want to put it on everything! A simple mix of sriracha sauce, creamy mayo, lemon juice and garlic combine to make a spicy dipping sauce that&#039;s perfect with fries, on fish tacos, smothered on burgers, or drizzled over sushi rolls and rice bowls!"   class="dpsp-post-pinterest-image-hidden-inner  dpsp-post-pinterest-image-hidden-single" loading="lazy" /></noscript></div></div></article><div class="block-area block-area-after-post"><div class="block-social-share"><div class="social-share__title">Share this with your friends!</div><div class="social-share__links"><a href="https://pinterest.com/pin/create/button/?url=https://www.evolvingtable.com/sriracha-mayo/&amp;media=https://www.evolvingtable.com/wp-content/uploads/2024/05/Spicy-Sriracha-Mayo-PinStat24-1A.jpg&amp;description=Spicy Sriracha Mayo" title="Share on Pinterest"  target="_blank"  rel="nofollow noopener noreferrer"  class="social-share" data-postid="19066" data-pin-do="none" data-social-network="Pinterest" data-social-action="Pin" data-social-target="https://www.evolvingtable.com/sriracha-mayo/"><svg width="29" height="29" aria-hidden="true" role="img" focusable="false"><use href="#utility-pinterest"></use></svg><span class="screen-reader-text">Pin</span></a><a href="https://www.facebook.com/sharer/sharer.php?u=https://www.evolvingtable.com/sriracha-mayo/&amp;display=popup&amp;ref=plugin&amp;src=share_button" title="Share on Facebook"  target="_blank"  rel="nofollow noopener noreferrer"  class="social-share" data-postid="19066" data-social-network="Facebook" data-social-action="Share" data-social-target="https://www.evolvingtable.com/sriracha-mayo/"><svg width="29" height="29" aria-hidden="true" role="img" focusable="false"><use href="#utility-facebook"></use></svg><span class="screen-reader-text">Facebook</span></a><a href="https://twitter.com/share?url=https://www.evolvingtable.com/sriracha-mayo/&amp;text=Spicy%20Sriracha%20Mayo" title="Share on Twitter"  target="_blank"  rel="nofollow noopener noreferrer"  class="social-share" data-postid="19066" data-social-network="Twitter" data-social-action="Tweet" data-social-target="https://www.evolvingtable.com/sriracha-mayo/"><svg width="29" height="29" aria-hidden="true" role="img" focusable="false"><use href="#utility-twitter"></use></svg><span class="screen-reader-text">Tweet</span></a><a href="https://www.yummly.com/urb/verify?url=https://www.evolvingtable.com/sriracha-mayo/&amp;title=Spicy%20Sriracha%20Mayo&amp;yumtype=button" title="Share on Yummly"  target="_blank"  rel="nofollow noopener noreferrer"  class="social-share" data-postid="19066" data-social-network="Yummly" data-social-action="Saved" data-social-target="https://www.evolvingtable.com/sriracha-mayo/"><svg width="29" height="29" aria-hidden="true" role="img" focusable="false"><use href="#utility-yummly"></use></svg><span class="screen-reader-text">Yummly</span></a><a href="mailto:?subject=Your%20friend%20has%20shared%20an%20article%20with%20you.&amp;body=Spicy%20Sriracha%20Mayo%0D%0Ahttps%3A%2F%2Fwww.evolvingtable.com%2Fsriracha-mayo%2F%0D%0A" title="Share via Email"  class="social-share" data-postid="19066" data-social-network="Email" data-social-action="Emailed" data-social-target="https://www.evolvingtable.com/sriracha-mayo/"><svg width="29" height="29" aria-hidden="true" role="img" focusable="false"><use href="#utility-email1"></use></svg><span class="screen-reader-text">Email</span></a></div></div>

<div class="block-post-meta"><p class="post-terms"><span>Categorized as:<br /></span><a href="https://www.evolvingtable.com/category/recipes/diets/dairy-free/" rel="tag">Dairy-Free</a>, <a href="https://www.evolvingtable.com/category/recipes/diets/gluten-free/" rel="tag">Gluten-Free</a>, <a href="https://www.evolvingtable.com/category/recipes/diets/low-carb/" rel="tag">Low-Carb</a>, <a href="https://www.evolvingtable.com/category/recipes/meal-type/lunch/" rel="tag">Lunch</a>, <a href="https://www.evolvingtable.com/category/recipes/diets/nut-free/" rel="tag">Nut-Free</a>, <a href="https://www.evolvingtable.com/category/recipes/diets/paleo/" rel="tag">Paleo</a>, <a href="https://www.evolvingtable.com/category/recipes/" rel="tag">Recipes</a>, <a href="https://www.evolvingtable.com/category/recipes/meal-type/sauces-dressings/" rel="tag">Sauces &amp; Dressings</a>, <a href="https://www.evolvingtable.com/category/recipes/diets/vegetarian/" rel="tag">Vegetarian</a></p></div>

<div class="block-email cwp-large has-background has-pattern-primary-background-color">

<div class="wp-block-group block-email__inner is-layout-flow wp-block-group-is-layout-flow"><div class="wpforms-container wpforms-block wpforms-block-fc2460ba-646b-41f8-b203-96b797b3e0bb" id="wpforms-75758"><form id="wpforms-form-75758" class="wpforms-validate wpforms-form wpforms-ajax-form" data-formid="75758" method="post" enctype="multipart/form-data" action="/sriracha-mayo/" data-token="30fa74d8888d1e1b175127304396757d" data-token-time="1715201589"><div class="wpforms-head-container"><div class="wpforms-title">5 Secrets to Healthier Family Dinners</div><div class="wpforms-description">Tips & recipes for getting yummy — and healthy — meals on the table.</div></div><noscript class="wpforms-error-noscript">Please enable JavaScript in your browser to complete this form.</noscript><div class="wpforms-field-container"><div id="wpforms-75758-field_1-container" class="wpforms-field wpforms-field-name" data-field-id="1"><label class="wpforms-field-label" for="wpforms-75758-field_1">First Name <span class="wpforms-required-label">*</span></label><input type="text" id="wpforms-75758-field_1" class="wpforms-field-large wpforms-field-required" name="wpforms[fields][1]" required></div><div id="wpforms-75758-field_2-container" class="wpforms-field wpforms-field-email" data-field-id="2"><label class="wpforms-field-label" for="wpforms-75758-field_2">Email <span class="wpforms-required-label">*</span></label><input type="email" id="wpforms-75758-field_2" class="wpforms-field-large wpforms-field-required" name="wpforms[fields][2]" spellcheck="false" required></div></div><!-- .wpforms-field-container --><div class="wpforms-submit-container" ><input type="hidden" name="wpforms[id]" value="75758"><input type="hidden" name="page_title" value="Spicy Sriracha Mayo"><input type="hidden" name="page_url" value="https://www.evolvingtable.com/sriracha-mayo/"><input type="hidden" name="page_id" value="80435"><input type="hidden" name="wpforms[post_id]" value="80435"><button type="submit" name="wpforms[submit]" id="wpforms-submit-75758" class="wpforms-submit wp-element-button" data-alt-text="Sending..." data-submit-text="Subscribe" aria-live="assertive" value="wpforms-submit">Subscribe</button><img src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2026%2026'%3E%3C/svg%3E" class="wpforms-submit-spinner" style="display: none;" width="26" height="26" alt="Loading" data-lazy-src="https://www.evolvingtable.com/wp-content/plugins/wpforms/assets/images/submit-spin.svg"><noscript><img src="https://www.evolvingtable.com/wp-content/plugins/wpforms/assets/images/submit-spin.svg" class="wpforms-submit-spinner" style="display: none;" width="26" height="26" alt="Loading"></noscript></div></form></div>  <!-- .wpforms-container --></div>

</div>

<section class="block-post-listing cwp-large layout-4up-grid"><header><div class="block-post-listing__title">

<h2 class="wp-block-heading">You May Also Like</h2>

</div></header><div class="block-post-listing__inner"><article class="post-summary"><div class="post-summary__image"><a href="https://www.evolvingtable.com/gluten-free-taco-seasoning-recipe/" tabindex="-1" aria-hidden="true"><img width="600" height="800" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20600%20800'%3E%3C/svg%3E" class="nopin" alt="Homemade taco seasoning recipe in a glass container with a silver spoon scooping some out." data-pin-nopin="1" data-lazy-sizes="(max-width: 600px) 50vw, 276px" decoding="async" data-lazy-srcset="https://www.evolvingtable.com/wp-content/uploads/2022/03/Taco-Seasoning-Mix-1-e1715020350537-600x800.jpg 600w, https://www.evolvingtable.com/wp-content/uploads/2022/03/Taco-Seasoning-Mix-1-e1715020350537-378x504.jpg 378w, https://www.evolvingtable.com/wp-content/uploads/2022/03/Taco-Seasoning-Mix-1-e1715020350537-276x368.jpg 276w, https://www.evolvingtable.com/wp-content/uploads/2022/03/Taco-Seasoning-Mix-1-e1715020350537-640x853.jpg 640w" data-lazy-src="https://www.evolvingtable.com/wp-content/uploads/2022/03/Taco-Seasoning-Mix-1-e1715020350537-600x800.jpg" /><noscript><img width="600" height="800" src="https://www.evolvingtable.com/wp-content/uploads/2022/03/Taco-Seasoning-Mix-1-e1715020350537-600x800.jpg" class="nopin" alt="Homemade taco seasoning recipe in a glass container with a silver spoon scooping some out." data-pin-nopin="1" sizes="(max-width: 600px) 50vw, 276px" decoding="async" srcset="https://www.evolvingtable.com/wp-content/uploads/2022/03/Taco-Seasoning-Mix-1-e1715020350537-600x800.jpg 600w, https://www.evolvingtable.com/wp-content/uploads/2022/03/Taco-Seasoning-Mix-1-e1715020350537-378x504.jpg 378w, https://www.evolvingtable.com/wp-content/uploads/2022/03/Taco-Seasoning-Mix-1-e1715020350537-276x368.jpg 276w, https://www.evolvingtable.com/wp-content/uploads/2022/03/Taco-Seasoning-Mix-1-e1715020350537-640x853.jpg 640w" /></noscript></a></div><div class="post-summary__content"><div class="cwp-short-names"><a href="https://www.evolvingtable.com/category/recipes/diets/dairy-free/" class="cat-key sunrise"><span class="label">DF</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a><a href="https://www.evolvingtable.com/category/recipes/diets/gluten-free/" class="cat-key asparagus"><span class="label">GF</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a><a href="https://www.evolvingtable.com/category/recipes/diets/low-carb/" class="cat-key robbinegg"><span class="label">LC</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a><a href="https://www.evolvingtable.com/category/recipes/diets/paleo/" class="cat-key dirtyblue"><span class="label">PA</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a></div><h3 class="post-summary__title"><a href="https://www.evolvingtable.com/gluten-free-taco-seasoning-recipe/">Gluten-Free Taco Seasoning Mix</a></h3><p class="entry-total-time"><svg width="16" height="16" aria-hidden="true" role="img" focusable="false"><use href="#utility-clock2"></use></svg>5 mins</p></div></article><article class="post-summary"><div class="post-summary__image"><a href="https://www.evolvingtable.com/crispy-chinese-orange-chicken/" tabindex="-1" aria-hidden="true"><img width="600" height="800" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20600%20800'%3E%3C/svg%3E" class="nopin" alt="Chopsticks pick up a single piece of orange chicken from a bowl with rice." data-pin-nopin="1" data-lazy-sizes="(max-width: 600px) 50vw, 276px" decoding="async" data-lazy-srcset="https://www.evolvingtable.com/wp-content/uploads/2024/03/glutenfree-orange-chicken-30-600x800.jpg 600w, https://www.evolvingtable.com/wp-content/uploads/2024/03/glutenfree-orange-chicken-30-640x853.jpg 640w, https://www.evolvingtable.com/wp-content/uploads/2024/03/glutenfree-orange-chicken-30-378x504.jpg 378w, https://www.evolvingtable.com/wp-content/uploads/2024/03/glutenfree-orange-chicken-30-276x368.jpg 276w" data-lazy-src="https://www.evolvingtable.com/wp-content/uploads/2024/03/glutenfree-orange-chicken-30-600x800.jpg" /><noscript><img width="600" height="800" src="https://www.evolvingtable.com/wp-content/uploads/2024/03/glutenfree-orange-chicken-30-600x800.jpg" class="nopin" alt="Chopsticks pick up a single piece of orange chicken from a bowl with rice." data-pin-nopin="1" sizes="(max-width: 600px) 50vw, 276px" decoding="async" srcset="https://www.evolvingtable.com/wp-content/uploads/2024/03/glutenfree-orange-chicken-30-600x800.jpg 600w, https://www.evolvingtable.com/wp-content/uploads/2024/03/glutenfree-orange-chicken-30-640x853.jpg 640w, https://www.evolvingtable.com/wp-content/uploads/2024/03/glutenfree-orange-chicken-30-378x504.jpg 378w, https://www.evolvingtable.com/wp-content/uploads/2024/03/glutenfree-orange-chicken-30-276x368.jpg 276w" /></noscript></a></div><div class="post-summary__content"><div class="cwp-short-names"><a href="https://www.evolvingtable.com/category/recipes/diets/dairy-free/" class="cat-key sunrise"><span class="label">DF</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a><a href="https://www.evolvingtable.com/category/recipes/diets/gluten-free/" class="cat-key asparagus"><span class="label">GF</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a><a href="https://www.evolvingtable.com/category/recipes/diets/refined-sugar-free/" class="cat-key mustard"><span class="label">SF</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a></div><h3 class="post-summary__title"><a href="https://www.evolvingtable.com/crispy-chinese-orange-chicken/">Crispy Gluten-Free Orange Chicken</a></h3><p class="entry-total-time"><svg width="16" height="16" aria-hidden="true" role="img" focusable="false"><use href="#utility-clock2"></use></svg>30 mins</p></div></article><article class="post-summary"><div class="post-summary__image"><a href="https://www.evolvingtable.com/orange-chicken-sauce/" tabindex="-1" aria-hidden="true"><img width="600" height="800" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20600%20800'%3E%3C/svg%3E" class="nopin" alt="A spoon scoops out some orange sauce from a bowl." data-pin-nopin="1" data-lazy-sizes="(max-width: 600px) 50vw, 276px" decoding="async" data-lazy-srcset="https://www.evolvingtable.com/wp-content/uploads/2024/03/orange-chicken-sauce-8-600x800.jpg 600w, https://www.evolvingtable.com/wp-content/uploads/2024/03/orange-chicken-sauce-8-640x853.jpg 640w, https://www.evolvingtable.com/wp-content/uploads/2024/03/orange-chicken-sauce-8-378x504.jpg 378w, https://www.evolvingtable.com/wp-content/uploads/2024/03/orange-chicken-sauce-8-276x368.jpg 276w" data-lazy-src="https://www.evolvingtable.com/wp-content/uploads/2024/03/orange-chicken-sauce-8-600x800.jpg" /><noscript><img width="600" height="800" src="https://www.evolvingtable.com/wp-content/uploads/2024/03/orange-chicken-sauce-8-600x800.jpg" class="nopin" alt="A spoon scoops out some orange sauce from a bowl." data-pin-nopin="1" sizes="(max-width: 600px) 50vw, 276px" decoding="async" srcset="https://www.evolvingtable.com/wp-content/uploads/2024/03/orange-chicken-sauce-8-600x800.jpg 600w, https://www.evolvingtable.com/wp-content/uploads/2024/03/orange-chicken-sauce-8-640x853.jpg 640w, https://www.evolvingtable.com/wp-content/uploads/2024/03/orange-chicken-sauce-8-378x504.jpg 378w, https://www.evolvingtable.com/wp-content/uploads/2024/03/orange-chicken-sauce-8-276x368.jpg 276w" /></noscript></a></div><div class="post-summary__content"><div class="cwp-short-names"><a href="https://www.evolvingtable.com/category/recipes/diets/dairy-free/" class="cat-key sunrise"><span class="label">DF</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a><a href="https://www.evolvingtable.com/category/recipes/diets/gluten-free/" class="cat-key asparagus"><span class="label">GF</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a><a href="https://www.evolvingtable.com/category/recipes/diets/vegetarian/" class="cat-key smoke"><span class="label">VG</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a></div><h3 class="post-summary__title"><a href="https://www.evolvingtable.com/orange-chicken-sauce/">Homemade Orange Chicken Sauce</a></h3><p class="entry-total-time"><svg width="16" height="16" aria-hidden="true" role="img" focusable="false"><use href="#utility-clock2"></use></svg>10 mins</p></div></article><article class="post-summary"><div class="post-summary__image"><a href="https://www.evolvingtable.com/corn-tortilla-quesadillas/" tabindex="-1" aria-hidden="true"><img width="600" height="800" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20600%20800'%3E%3C/svg%3E" class="nopin" alt="A stack of corn tortilla quesadillas are served on a tray." data-pin-nopin="1" data-lazy-sizes="(max-width: 600px) 50vw, 276px" decoding="async" data-lazy-srcset="https://www.evolvingtable.com/wp-content/uploads/2024/03/quick-corn-tortilla-quesadillas-40-600x800.jpg 600w, https://www.evolvingtable.com/wp-content/uploads/2024/03/quick-corn-tortilla-quesadillas-40-640x853.jpg 640w, https://www.evolvingtable.com/wp-content/uploads/2024/03/quick-corn-tortilla-quesadillas-40-378x504.jpg 378w, https://www.evolvingtable.com/wp-content/uploads/2024/03/quick-corn-tortilla-quesadillas-40-276x368.jpg 276w" data-lazy-src="https://www.evolvingtable.com/wp-content/uploads/2024/03/quick-corn-tortilla-quesadillas-40-600x800.jpg" /><noscript><img width="600" height="800" src="https://www.evolvingtable.com/wp-content/uploads/2024/03/quick-corn-tortilla-quesadillas-40-600x800.jpg" class="nopin" alt="A stack of corn tortilla quesadillas are served on a tray." data-pin-nopin="1" sizes="(max-width: 600px) 50vw, 276px" decoding="async" srcset="https://www.evolvingtable.com/wp-content/uploads/2024/03/quick-corn-tortilla-quesadillas-40-600x800.jpg 600w, https://www.evolvingtable.com/wp-content/uploads/2024/03/quick-corn-tortilla-quesadillas-40-640x853.jpg 640w, https://www.evolvingtable.com/wp-content/uploads/2024/03/quick-corn-tortilla-quesadillas-40-378x504.jpg 378w, https://www.evolvingtable.com/wp-content/uploads/2024/03/quick-corn-tortilla-quesadillas-40-276x368.jpg 276w" /></noscript></a></div><div class="post-summary__content"><div class="cwp-short-names"><a href="https://www.evolvingtable.com/category/recipes/diets/gluten-free/" class="cat-key asparagus"><span class="label">GF</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a><a href="https://www.evolvingtable.com/category/recipes/diets/vegetarian/" class="cat-key smoke"><span class="label">VG</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a></div><h3 class="post-summary__title"><a href="https://www.evolvingtable.com/corn-tortilla-quesadillas/">7-Minute Corn Tortilla Quesadillas</a></h3><p class="entry-total-time"><svg width="16" height="16" aria-hidden="true" role="img" focusable="false"><use href="#utility-clock2"></use></svg>7 mins</p></div></article></div></section>

<div class="block-about cwp-large has-background has-pattern-primary-background-color">

<div class="wp-block-group block-about__inner is-content-justification-space-between is-nowrap is-layout-flex wp-container-core-group-is-layout-4 wp-block-group-is-layout-flex">
<div class="wp-block-group block-about__image is-layout-flow wp-block-group-is-layout-flow">
<figure class="wp-block-image size-large is-resized"><img src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="" class="wp-image-77052" style="object-fit:cover;width:305px;height:334px" data-lazy-src="https://evolvingtable.com/wp-content/uploads/2023/10/author-about-1200x1200.jpg"/><noscript><img src="https://evolvingtable.com/wp-content/uploads/2023/10/author-about-1200x1200.jpg" alt="" class="wp-image-77052" style="object-fit:cover;width:305px;height:334px"/></noscript></figure>
</div>



<div class="wp-block-group block-about__content is-layout-constrained wp-block-group-is-layout-constrained">
<p class="has-text-align-center is-style-heading has-big-font-size" style="font-weight:700"><strong>Thanks for</strong><br><strong>Stopping By!</strong></p>



<p class="has-text-align-center has-medium-font-size" style="font-weight:600;letter-spacing:normal">I’m London! Join me as we cook up nourishing meals for you and your loved ones and learn a few healthy cooking tips and tricks!</p>



<div class="wp-block-buttons has-custom-font-size has-tiny-font-size is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-1 wp-block-buttons-is-layout-flex" style="font-weight:700;letter-spacing:normal;line-height:normal">
<div class="wp-block-button"><a class="wp-block-button__link has-background-color has-senary-background-color has-text-color has-background wp-element-button" href="https://www.evolvingtable.com/about-london/">Read More About Me</a></div>
</div>


<ul class="social-links has-text-align-center"><li><a href="https://www.instagram.com/evolvingtable/" target="_blank" rel="noopener noreferrer" aria-label="Instagram"><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-instagram"></use></svg></a></li>
<li><a href="https://www.youtube.com/channel/UCOWKwl9lasOMhuAA_r4tFiw" target="_blank" rel="noopener noreferrer" aria-label="YouTube"><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-youtube-play"></use></svg></a></li>
<li><a href="https://www.facebook.com/evolvingtable" target="_blank" rel="noopener noreferrer" aria-label="Facebook"><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-facebook"></use></svg></a></li>
<li><a href="https://twitter.com/evolvingtable" target="_blank" rel="noopener noreferrer" aria-label="Twitter"><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-twitter"></use></svg></a></li>
<li><a href="https://www.pinterest.com/evolvingtable/" target="_blank" rel="noopener noreferrer" aria-label="Pinterest"><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-pinterest"></use></svg></a></li></ul></div>
</div>

</div></div><div id="comments" class="entry-comments">	<div id="respond" class="comment-respond">
		<h2 id="reply-title" class="comment-reply-title">Leave a comment <small><a rel="nofollow" id="cancel-comment-reply-link" href="/sriracha-mayo/#respond" style="display:none;">Cancel reply</a></small></h2><form action="https://www.evolvingtable.com/wp-comments-post.php" method="post" id="commentform" class="comment-form" novalidate><p class="comment-notes"><span id="email-notes">Your email address will not be published.</span> <span class="required-field-message">Required fields are marked <span class="required">*</span></span></p><div class="comment-form-wprm-rating">
	<label for="wprm-comment-rating-513437895">Recipe Rating</label>	<span class="wprm-rating-stars">
		<fieldset class="wprm-comment-ratings-container" data-original-rating="0" data-current-rating="0">
			<legend>Recipe Rating</legend>
			<input aria-label="Don&#039;t rate this recipe" name="wprm-comment-rating" value="0" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="margin-left: -24px !important; width: 24px !important; height: 24px !important;" checked="checked"><span aria-hidden="true" style="width: 120px !important; height: 24px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="80px" height="16px" viewBox="0 0 120 24">
  <defs>
    <polygon class="wprm-star-empty" id="wprm-star-empty-0" fill="none" stroke="#e9bc50" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
  </defs>
	<use xlink:href="#wprm-star-empty-0" x="0" y="0" />
	<use xlink:href="#wprm-star-empty-0" x="24" y="0" />
	<use xlink:href="#wprm-star-empty-0" x="48" y="0" />
	<use xlink:href="#wprm-star-empty-0" x="72" y="0" />
	<use xlink:href="#wprm-star-empty-0" x="96" y="0" />
</svg></span><br><input aria-label="Rate this recipe 1 out of 5 stars" name="wprm-comment-rating" value="1" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 24px !important; height: 24px !important;"><span aria-hidden="true" style="width: 120px !important; height: 24px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="80px" height="16px" viewBox="0 0 120 24">
  <defs>
	<polygon class="wprm-star-empty" id="wprm-star-empty-1" fill="none" stroke="#e9bc50" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
	<path class="wprm-star-full" id="wprm-star-full-1" fill="#e9bc50" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
  </defs>
	<use xlink:href="#wprm-star-full-1" x="0" y="0" />
	<use xlink:href="#wprm-star-empty-1" x="24" y="0" />
	<use xlink:href="#wprm-star-empty-1" x="48" y="0" />
	<use xlink:href="#wprm-star-empty-1" x="72" y="0" />
	<use xlink:href="#wprm-star-empty-1" x="96" y="0" />
</svg></span><br><input aria-label="Rate this recipe 2 out of 5 stars" name="wprm-comment-rating" value="2" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 24px !important; height: 24px !important;"><span aria-hidden="true" style="width: 120px !important; height: 24px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="80px" height="16px" viewBox="0 0 120 24">
  <defs>
	<polygon class="wprm-star-empty" id="wprm-star-empty-2" fill="none" stroke="#e9bc50" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
	<path class="wprm-star-full" id="wprm-star-full-2" fill="#e9bc50" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
  </defs>
	<use xlink:href="#wprm-star-full-2" x="0" y="0" />
	<use xlink:href="#wprm-star-full-2" x="24" y="0" />
	<use xlink:href="#wprm-star-empty-2" x="48" y="0" />
	<use xlink:href="#wprm-star-empty-2" x="72" y="0" />
	<use xlink:href="#wprm-star-empty-2" x="96" y="0" />
</svg></span><br><input aria-label="Rate this recipe 3 out of 5 stars" name="wprm-comment-rating" value="3" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 24px !important; height: 24px !important;"><span aria-hidden="true" style="width: 120px !important; height: 24px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="80px" height="16px" viewBox="0 0 120 24">
  <defs>
	<polygon class="wprm-star-empty" id="wprm-star-empty-3" fill="none" stroke="#e9bc50" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
	<path class="wprm-star-full" id="wprm-star-full-3" fill="#e9bc50" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
  </defs>
	<use xlink:href="#wprm-star-full-3" x="0" y="0" />
	<use xlink:href="#wprm-star-full-3" x="24" y="0" />
	<use xlink:href="#wprm-star-full-3" x="48" y="0" />
	<use xlink:href="#wprm-star-empty-3" x="72" y="0" />
	<use xlink:href="#wprm-star-empty-3" x="96" y="0" />
</svg></span><br><input aria-label="Rate this recipe 4 out of 5 stars" name="wprm-comment-rating" value="4" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 24px !important; height: 24px !important;"><span aria-hidden="true" style="width: 120px !important; height: 24px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="80px" height="16px" viewBox="0 0 120 24">
  <defs>
	<polygon class="wprm-star-empty" id="wprm-star-empty-4" fill="none" stroke="#e9bc50" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
	<path class="wprm-star-full" id="wprm-star-full-4" fill="#e9bc50" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
  </defs>
	<use xlink:href="#wprm-star-full-4" x="0" y="0" />
	<use xlink:href="#wprm-star-full-4" x="24" y="0" />
	<use xlink:href="#wprm-star-full-4" x="48" y="0" />
	<use xlink:href="#wprm-star-full-4" x="72" y="0" />
	<use xlink:href="#wprm-star-empty-4" x="96" y="0" />
</svg></span><br><input aria-label="Rate this recipe 5 out of 5 stars" name="wprm-comment-rating" value="5" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" id="wprm-comment-rating-513437895" style="width: 24px !important; height: 24px !important;"><span aria-hidden="true" style="width: 120px !important; height: 24px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="80px" height="16px" viewBox="0 0 120 24">
  <defs>
	<path class="wprm-star-full" id="wprm-star-full-5" fill="#e9bc50" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
  </defs>
	<use xlink:href="#wprm-star-full-5" x="0" y="0" />
	<use xlink:href="#wprm-star-full-5" x="24" y="0" />
	<use xlink:href="#wprm-star-full-5" x="48" y="0" />
	<use xlink:href="#wprm-star-full-5" x="72" y="0" />
	<use xlink:href="#wprm-star-full-5" x="96" y="0" />
</svg></span>		</fieldset>
	</span>
</div>
<p class="comment-form-comment"><label for="comment">Comment <span class="required">*</span></label> <textarea id="comment" name="comment" cols="45" rows="8" maxlength="65525" required></textarea></p><p class="comment-form-author"><label for="author">Name</label> <input id="author" name="author" type="text" value="" size="30" maxlength="245" autocomplete="name" /></p>
<p class="comment-form-email"><label for="email">Email</label> <input id="email" name="email" type="email" value="" size="30" maxlength="100" aria-describedby="email-notes" autocomplete="email" /></p>
<p class="comment-form-comment-subscribe"><label for="cren_subscribe_to_comment"><input id="cren_subscribe_to_comment" name="cren_subscribe_to_comment" type="checkbox" value="on" checked>Notify me via e-mail if anyone answers my comment.</label></p>
<p class="form-submit"><input name="submit" type="submit" id="submit" class="submit wp-element-button" value="Post Comment" /> <input type='hidden' name='comment_post_ID' value='19066' id='comment_post_ID' />
<input type='hidden' name='comment_parent' id='comment_parent' value='0' />
</p><p style="display: none;"><input type="hidden" id="akismet_comment_nonce" name="akismet_comment_nonce" value="adda383879" /></p><p style="display: none !important;" class="akismet-fields-container" data-prefix="ak_"><label>&#916;<textarea name="ak_hp_textarea" cols="45" rows="8" maxlength="100"></textarea></label><input type="hidden" id="ak_js_1" name="ak_js" value="214"/><script type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1">document.getElementById( "ak_js_1" ).setAttribute( "value", ( new Date() ).getTime() );</script></p></form>	</div><!-- #respond -->
	<h2 class="comments-title">Comments</h2><ol class="comment-list">		<li id="comment-43864" class="comment even thread-even depth-1 parent">
			<article id="div-comment-43864" class="comment-body">
				<footer class="comment-meta">
					<div class="comment-author vcard">
												<b class="fn">Gaby</b> <span class="says">says:</span>					</div><!-- .comment-author -->

					<div class="comment-metadata">
						<a href="https://www.evolvingtable.com/sriracha-mayo/#comment-43864"><time datetime="2023-08-15T09:43:39-05:00">August 15, 2023 at 9:43 am</time></a>					</div><!-- .comment-metadata -->

									</footer><!-- .comment-meta -->

				<div class="comment-content">
					<p><img class="wprm-comment-rating" src="data:image/gif;base64,R0lGODdhAQABAPAAAP///wAAACwAAAAAAQABAEACAkQBADs=" data-lazy-src="https://www.evolvingtable.com/wp-content/plugins/wp-recipe-maker/assets/icons/rating/stars-5.svg" alt="5 stars" width="80" height="16" /><br />
Thank you for this recipe! Just made it with a little more of Sriracha than 1 Tbsp, and LOVED it! My poke was truly amazing with this sauce. I&#8217;ll surely try it with other dishes 🙂</p>
				</div><!-- .comment-content -->

				<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-43864' data-commentid="43864" data-postid="19066" data-belowelement="div-comment-43864" data-respondelement="respond" data-replyto="Reply to Gaby" aria-label='Reply to Gaby'>Reply</a></div>			</article><!-- .comment-body -->
		<ol class="children">
		<li id="comment-43877" class="comment byuser comment-author-london bypostauthor odd alt depth-2 staff">
			<article id="div-comment-43877" class="comment-body">
				<footer class="comment-meta">
					<div class="comment-author vcard">
												<b class="fn">London Brazil</b> <span class="says">says:</span>					</div><!-- .comment-author -->

					<div class="comment-metadata">
						<a href="https://www.evolvingtable.com/sriracha-mayo/#comment-43877"><time datetime="2023-08-16T00:19:38-05:00">August 16, 2023 at 12:19 am</time></a>					</div><!-- .comment-metadata -->

									</footer><!-- .comment-meta -->

				<div class="comment-content">
					<p>Yay! So happy to hear you enjoyed the recipe, Gaby! It&#8217;s good on so many things. Thanks so much for taking the time to leave a comment and rating!</p>
				</div><!-- .comment-content -->

				<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-43877' data-commentid="43877" data-postid="19066" data-belowelement="div-comment-43877" data-respondelement="respond" data-replyto="Reply to London Brazil" aria-label='Reply to London Brazil'>Reply</a></div>			</article><!-- .comment-body -->
		</li><!-- #comment-## -->
</ol><!-- .children -->
</li><!-- #comment-## -->
		<li id="comment-43513" class="comment even thread-odd thread-alt depth-1 parent">
			<article id="div-comment-43513" class="comment-body">
				<footer class="comment-meta">
					<div class="comment-author vcard">
												<b class="fn">TAMARA G SUTTLE</b> <span class="says">says:</span>					</div><!-- .comment-author -->

					<div class="comment-metadata">
						<a href="https://www.evolvingtable.com/sriracha-mayo/#comment-43513"><time datetime="2023-07-22T18:47:12-05:00">July 22, 2023 at 6:47 pm</time></a>					</div><!-- .comment-metadata -->

									</footer><!-- .comment-meta -->

				<div class="comment-content">
					<p><img class="wprm-comment-rating" src="data:image/gif;base64,R0lGODdhAQABAPAAAP///wAAACwAAAAAAQABAEACAkQBADs=" data-lazy-src="https://www.evolvingtable.com/wp-content/plugins/wp-recipe-maker/assets/icons/rating/stars-5.svg" alt="5 stars" width="80" height="16" /><br />
This was one of the best meals I&#8217;ve had ever!  Thank you for this.  </p>
<p>Your heat scale for using the Sriracha sauce was spot on.  I used a Tablespoon and it was mildly spicy and just perfect for me!  I added an extra squeeze of honey on the salmon for extra sweetness.  It was PERFECTION!</p>
<p>I do have a question though.  I believe I followed your instructions but did not have ANY marinade left over to put in the pan with the salmon.  Am wondering how much you typically have left over to pour back in there and then cook down when you make it?</p>
				</div><!-- .comment-content -->

				<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-43513' data-commentid="43513" data-postid="19066" data-belowelement="div-comment-43513" data-respondelement="respond" data-replyto="Reply to TAMARA G SUTTLE" aria-label='Reply to TAMARA G SUTTLE'>Reply</a></div>			</article><!-- .comment-body -->
		<ol class="children">
		<li id="comment-43753" class="comment byuser comment-author-london bypostauthor odd alt depth-2 staff">
			<article id="div-comment-43753" class="comment-body">
				<footer class="comment-meta">
					<div class="comment-author vcard">
												<b class="fn">London Brazil</b> <span class="says">says:</span>					</div><!-- .comment-author -->

					<div class="comment-metadata">
						<a href="https://www.evolvingtable.com/sriracha-mayo/#comment-43753"><time datetime="2023-08-07T18:29:25-05:00">August 7, 2023 at 6:29 pm</time></a>					</div><!-- .comment-metadata -->

									</footer><!-- .comment-meta -->

				<div class="comment-content">
					<p>Yay! So happy to hear you enjoyed the recipe, Tamara! That&#8217;s awesome. It depends on the size and thickness of the fish. Thanks so much for taking the time to leave a comment and rating!</p>
				</div><!-- .comment-content -->

				<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-43753' data-commentid="43753" data-postid="19066" data-belowelement="div-comment-43753" data-respondelement="respond" data-replyto="Reply to London Brazil" aria-label='Reply to London Brazil'>Reply</a></div>			</article><!-- .comment-body -->
		</li><!-- #comment-## -->
</ol><!-- .children -->
</li><!-- #comment-## -->
		<li id="comment-41004" class="comment even thread-even depth-1 parent">
			<article id="div-comment-41004" class="comment-body">
				<footer class="comment-meta">
					<div class="comment-author vcard">
												<b class="fn">Barbara Renze</b> <span class="says">says:</span>					</div><!-- .comment-author -->

					<div class="comment-metadata">
						<a href="https://www.evolvingtable.com/sriracha-mayo/#comment-41004"><time datetime="2023-03-12T08:10:32-05:00">March 12, 2023 at 8:10 am</time></a>					</div><!-- .comment-metadata -->

									</footer><!-- .comment-meta -->

				<div class="comment-content">
					<p><img class="wprm-comment-rating" src="data:image/gif;base64,R0lGODdhAQABAPAAAP///wAAACwAAAAAAQABAEACAkQBADs=" data-lazy-src="https://www.evolvingtable.com/wp-content/plugins/wp-recipe-maker/assets/icons/rating/stars-5.svg" alt="5 stars" width="80" height="16" /><br />
This is the easiest  and best tasting recipe for Sriracha Mayo!! My family loved it so much, they ate it all and were angry that I didn&#8217;t  double the recipe!!  Next time, I definitely will.   We ate it on Banh Mi sandwiches.   Yum!!!</p>
				</div><!-- .comment-content -->

				<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-41004' data-commentid="41004" data-postid="19066" data-belowelement="div-comment-41004" data-respondelement="respond" data-replyto="Reply to Barbara Renze" aria-label='Reply to Barbara Renze'>Reply</a></div>			</article><!-- .comment-body -->
		<ol class="children">
		<li id="comment-41165" class="comment byuser comment-author-london bypostauthor odd alt depth-2 staff">
			<article id="div-comment-41165" class="comment-body">
				<footer class="comment-meta">
					<div class="comment-author vcard">
												<b class="fn">London Brazil</b> <span class="says">says:</span>					</div><!-- .comment-author -->

					<div class="comment-metadata">
						<a href="https://www.evolvingtable.com/sriracha-mayo/#comment-41165"><time datetime="2023-03-20T21:23:11-05:00">March 20, 2023 at 9:23 pm</time></a>					</div><!-- .comment-metadata -->

									</footer><!-- .comment-meta -->

				<div class="comment-content">
					<p>Yay! So happy to hear you enjoyed the recipe, Barbara! Doubling is so easy, too. Thanks so much for taking the time to leave a comment and rating!</p>
				</div><!-- .comment-content -->

				<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-41165' data-commentid="41165" data-postid="19066" data-belowelement="div-comment-41165" data-respondelement="respond" data-replyto="Reply to London Brazil" aria-label='Reply to London Brazil'>Reply</a></div>			</article><!-- .comment-body -->
		</li><!-- #comment-## -->
</ol><!-- .children -->
</li><!-- #comment-## -->
		<li id="comment-40212" class="comment even thread-odd thread-alt depth-1 parent">
			<article id="div-comment-40212" class="comment-body">
				<footer class="comment-meta">
					<div class="comment-author vcard">
												<b class="fn">Sandra Strong</b> <span class="says">says:</span>					</div><!-- .comment-author -->

					<div class="comment-metadata">
						<a href="https://www.evolvingtable.com/sriracha-mayo/#comment-40212"><time datetime="2023-01-29T15:28:29-06:00">January 29, 2023 at 3:28 pm</time></a>					</div><!-- .comment-metadata -->

									</footer><!-- .comment-meta -->

				<div class="comment-content">
					<p>Really good sauce, head with your sweet potato fries. Definitely a keeper! I think that it would probably taste good on a fish taco too</p>
				</div><!-- .comment-content -->

				<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-40212' data-commentid="40212" data-postid="19066" data-belowelement="div-comment-40212" data-respondelement="respond" data-replyto="Reply to Sandra Strong" aria-label='Reply to Sandra Strong'>Reply</a></div>			</article><!-- .comment-body -->
		<ol class="children">
		<li id="comment-40264" class="comment byuser comment-author-london bypostauthor odd alt depth-2 staff">
			<article id="div-comment-40264" class="comment-body">
				<footer class="comment-meta">
					<div class="comment-author vcard">
												<b class="fn">London Brazil</b> <span class="says">says:</span>					</div><!-- .comment-author -->

					<div class="comment-metadata">
						<a href="https://www.evolvingtable.com/sriracha-mayo/#comment-40264"><time datetime="2023-01-31T14:19:59-06:00">January 31, 2023 at 2:19 pm</time></a>					</div><!-- .comment-metadata -->

									</footer><!-- .comment-meta -->

				<div class="comment-content">
					<p>Yay! So happy to hear you enjoyed the recipe, Sandra! This combo sounds great. Thanks so much for taking the time to leave a comment!</p>
				</div><!-- .comment-content -->

				<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-40264' data-commentid="40264" data-postid="19066" data-belowelement="div-comment-40264" data-respondelement="respond" data-replyto="Reply to London Brazil" aria-label='Reply to London Brazil'>Reply</a></div>			</article><!-- .comment-body -->
		</li><!-- #comment-## -->
</ol><!-- .children -->
</li><!-- #comment-## -->
		<li id="comment-32895" class="comment even thread-even depth-1 parent">
			<article id="div-comment-32895" class="comment-body">
				<footer class="comment-meta">
					<div class="comment-author vcard">
												<b class="fn">Max McCrat</b> <span class="says">says:</span>					</div><!-- .comment-author -->

					<div class="comment-metadata">
						<a href="https://www.evolvingtable.com/sriracha-mayo/#comment-32895"><time datetime="2022-02-07T10:07:43-06:00">February 7, 2022 at 10:07 am</time></a>					</div><!-- .comment-metadata -->

									</footer><!-- .comment-meta -->

				<div class="comment-content">
					<p><img class="wprm-comment-rating" src="data:image/gif;base64,R0lGODdhAQABAPAAAP///wAAACwAAAAAAQABAEACAkQBADs=" data-lazy-src="https://www.evolvingtable.com/wp-content/plugins/wp-recipe-maker/assets/icons/rating/stars-5.svg" alt="5 stars" width="80" height="16" /><br />
Delish, I&#8217;ll make it again and again</p>
				</div><!-- .comment-content -->

				<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-32895' data-commentid="32895" data-postid="19066" data-belowelement="div-comment-32895" data-respondelement="respond" data-replyto="Reply to Max McCrat" aria-label='Reply to Max McCrat'>Reply</a></div>			</article><!-- .comment-body -->
		<ol class="children">
		<li id="comment-33117" class="comment byuser comment-author-london bypostauthor odd alt depth-2 staff">
			<article id="div-comment-33117" class="comment-body">
				<footer class="comment-meta">
					<div class="comment-author vcard">
												<b class="fn">London Brazil</b> <span class="says">says:</span>					</div><!-- .comment-author -->

					<div class="comment-metadata">
						<a href="https://www.evolvingtable.com/sriracha-mayo/#comment-33117"><time datetime="2022-02-16T21:31:42-06:00">February 16, 2022 at 9:31 pm</time></a>					</div><!-- .comment-metadata -->

									</footer><!-- .comment-meta -->

				<div class="comment-content">
					<p>Yay! So happy to hear you enjoyed the recipe Max! Thanks so much for taking the time to leave a comment and a rating.</p>
				</div><!-- .comment-content -->

				<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-33117' data-commentid="33117" data-postid="19066" data-belowelement="div-comment-33117" data-respondelement="respond" data-replyto="Reply to London Brazil" aria-label='Reply to London Brazil'>Reply</a></div>			</article><!-- .comment-body -->
		</li><!-- #comment-## -->
</ol><!-- .children -->
</li><!-- #comment-## -->
		<li id="comment-32828" class="comment even thread-odd thread-alt depth-1 parent">
			<article id="div-comment-32828" class="comment-body">
				<footer class="comment-meta">
					<div class="comment-author vcard">
												<b class="fn">Anonymous</b> <span class="says">says:</span>					</div><!-- .comment-author -->

					<div class="comment-metadata">
						<a href="https://www.evolvingtable.com/sriracha-mayo/#comment-32828"><time datetime="2022-02-03T12:13:09-06:00">February 3, 2022 at 12:13 pm</time></a>					</div><!-- .comment-metadata -->

									</footer><!-- .comment-meta -->

				<div class="comment-content">
					<p><img class="wprm-comment-rating" src="data:image/gif;base64,R0lGODdhAQABAPAAAP///wAAACwAAAAAAQABAEACAkQBADs=" data-lazy-src="https://www.evolvingtable.com/wp-content/plugins/wp-recipe-maker/assets/icons/rating/stars-5.svg" alt="5 stars" width="80" height="16" /><br />
Good stuff. I put 3 Tbsp sriacha. It was medium spice to me.</p>
				</div><!-- .comment-content -->

				<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-32828' data-commentid="32828" data-postid="19066" data-belowelement="div-comment-32828" data-respondelement="respond" data-replyto="Reply to Anonymous" aria-label='Reply to Anonymous'>Reply</a></div>			</article><!-- .comment-body -->
		<ol class="children">
		<li id="comment-32837" class="comment byuser comment-author-london bypostauthor odd alt depth-2 staff">
			<article id="div-comment-32837" class="comment-body">
				<footer class="comment-meta">
					<div class="comment-author vcard">
												<b class="fn">London Brazil</b> <span class="says">says:</span>					</div><!-- .comment-author -->

					<div class="comment-metadata">
						<a href="https://www.evolvingtable.com/sriracha-mayo/#comment-32837"><time datetime="2022-02-03T22:34:05-06:00">February 3, 2022 at 10:34 pm</time></a>					</div><!-- .comment-metadata -->

									</footer><!-- .comment-meta -->

				<div class="comment-content">
					<p>So happy to hear you enjoyed the recipe! Thanks so much for taking the time to leave a comment and rating!</p>
				</div><!-- .comment-content -->

				<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-32837' data-commentid="32837" data-postid="19066" data-belowelement="div-comment-32837" data-respondelement="respond" data-replyto="Reply to London Brazil" aria-label='Reply to London Brazil'>Reply</a></div>			</article><!-- .comment-body -->
		</li><!-- #comment-## -->
</ol><!-- .children -->
</li><!-- #comment-## -->
</ol></div></main><aside class="sidebar-primary" role="complementary"><div class="block-area block-area-sidebar"><div class="block-about cwp-large has-background has-pattern-primary-background-color">

<div class="wp-block-group block-about__inner is-content-justification-space-between is-nowrap is-layout-flex wp-container-core-group-is-layout-7 wp-block-group-is-layout-flex">
<div class="wp-block-group block-about__image is-layout-flow wp-block-group-is-layout-flow">
<figure class="wp-block-image size-large"><img src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="" class="wp-image-77052" data-lazy-src="https://evolvingtable.com/wp-content/uploads/2023/10/author-about-1200x1200.jpg"/><noscript><img src="https://evolvingtable.com/wp-content/uploads/2023/10/author-about-1200x1200.jpg" alt="" class="wp-image-77052"/></noscript></figure>
</div>



<div class="wp-block-group block-about__content is-layout-flow wp-block-group-is-layout-flow">
<p class="has-text-align-center is-style-heading has-big-font-size" style="font-weight:700">Thanks for Stopping By!</p>



<p class="has-text-align-center has-medium-font-size" style="font-weight:600;letter-spacing:normal">I’m London! Join me as we cook up nourishing meals for you and your loved ones and learn a few healthy cooking tips and tricks!</p>



<div class="wp-block-buttons has-custom-font-size has-tiny-font-size is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-2 wp-block-buttons-is-layout-flex" style="font-weight:700;letter-spacing:normal;line-height:normal">
<div class="wp-block-button"><a class="wp-block-button__link has-background-color has-senary-background-color has-text-color has-background has-text-align-center wp-element-button" href="https://www.evolvingtable.com/about-london/">Read More About Me</a></div>
</div>


<ul class="social-links has-text-align-center"><li><a href="https://www.instagram.com/evolvingtable/" target="_blank" rel="noopener noreferrer" aria-label="Instagram"><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-instagram"></use></svg></a></li>
<li><a href="https://www.youtube.com/channel/UCOWKwl9lasOMhuAA_r4tFiw" target="_blank" rel="noopener noreferrer" aria-label="YouTube"><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-youtube-play"></use></svg></a></li>
<li><a href="https://www.facebook.com/evolvingtable" target="_blank" rel="noopener noreferrer" aria-label="Facebook"><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-facebook"></use></svg></a></li>
<li><a href="https://twitter.com/evolvingtable" target="_blank" rel="noopener noreferrer" aria-label="Twitter"><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-twitter"></use></svg></a></li>
<li><a href="https://www.pinterest.com/evolvingtable/" target="_blank" rel="noopener noreferrer" aria-label="Pinterest"><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-pinterest"></use></svg></a></li></ul></div>
</div>

</div>

<section class="block-post-listing cwp-large layout-sidebar-grid block-post-listing--sidebar"><header><div class="block-post-listing__title">

<h2 class="wp-block-heading has-text-align-center">Holiday Favorites</h2>

</div></header><div class="block-post-listing__inner"><article class="post-summary"><div class="post-summary__image"><a href="https://www.evolvingtable.com/pecan-pie-without-corn-syrup/" tabindex="-1" aria-hidden="true"><img width="600" height="800" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20600%20800'%3E%3C/svg%3E" class="nopin" alt="A slice of pecan pie is shown on a plate with a fork." data-pin-nopin="1" data-lazy-sizes="(max-width: 600px) 164px, 164px" decoding="async" data-lazy-srcset="https://www.evolvingtable.com/wp-content/uploads/2022/10/Pecan-Pie-22-600x800.jpg 600w, https://www.evolvingtable.com/wp-content/uploads/2022/10/Pecan-Pie-22-378x504.jpg 378w, https://www.evolvingtable.com/wp-content/uploads/2022/10/Pecan-Pie-22-276x368.jpg 276w, https://www.evolvingtable.com/wp-content/uploads/2022/10/Pecan-Pie-22-640x853.jpg 640w" data-lazy-src="https://www.evolvingtable.com/wp-content/uploads/2022/10/Pecan-Pie-22-600x800.jpg" /><noscript><img width="600" height="800" src="https://www.evolvingtable.com/wp-content/uploads/2022/10/Pecan-Pie-22-600x800.jpg" class="nopin" alt="A slice of pecan pie is shown on a plate with a fork." data-pin-nopin="1" sizes="(max-width: 600px) 164px, 164px" decoding="async" srcset="https://www.evolvingtable.com/wp-content/uploads/2022/10/Pecan-Pie-22-600x800.jpg 600w, https://www.evolvingtable.com/wp-content/uploads/2022/10/Pecan-Pie-22-378x504.jpg 378w, https://www.evolvingtable.com/wp-content/uploads/2022/10/Pecan-Pie-22-276x368.jpg 276w, https://www.evolvingtable.com/wp-content/uploads/2022/10/Pecan-Pie-22-640x853.jpg 640w" /></noscript></a></div><div class="post-summary__content"><div class="cwp-short-names"><a href="https://www.evolvingtable.com/category/recipes/diets/dairy-free/" class="cat-key sunrise"><span class="label">DF</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a><a href="https://www.evolvingtable.com/category/recipes/diets/gluten-free/" class="cat-key asparagus"><span class="label">GF</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a><a href="https://www.evolvingtable.com/category/recipes/diets/vegetarian/" class="cat-key smoke"><span class="label">VG</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a></div><h3 class="post-summary__title"><a href="https://www.evolvingtable.com/pecan-pie-without-corn-syrup/">Pecan Pie without Corn Syrup</a></h3><p class="entry-total-time"><svg width="16" height="16" aria-hidden="true" role="img" focusable="false"><use href="#utility-clock2"></use></svg>1 hr 15 mins</p></div></article><article class="post-summary"><div class="post-summary__image"><a href="https://www.evolvingtable.com/sweet-potato-casserole/" tabindex="-1" aria-hidden="true"><img width="600" height="800" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20600%20800'%3E%3C/svg%3E" class="nopin" alt="Sweet and crunchy sweet potato casserole is delicious and simple." data-pin-nopin="1" data-lazy-sizes="(max-width: 600px) 164px, 164px" decoding="async" data-lazy-srcset="https://www.evolvingtable.com/wp-content/uploads/2022/10/Sweet-Potato-Casserole-22-600x800.jpg 600w, https://www.evolvingtable.com/wp-content/uploads/2022/10/Sweet-Potato-Casserole-22-378x504.jpg 378w, https://www.evolvingtable.com/wp-content/uploads/2022/10/Sweet-Potato-Casserole-22-276x368.jpg 276w, https://www.evolvingtable.com/wp-content/uploads/2022/10/Sweet-Potato-Casserole-22-640x853.jpg 640w" data-lazy-src="https://www.evolvingtable.com/wp-content/uploads/2022/10/Sweet-Potato-Casserole-22-600x800.jpg" /><noscript><img width="600" height="800" src="https://www.evolvingtable.com/wp-content/uploads/2022/10/Sweet-Potato-Casserole-22-600x800.jpg" class="nopin" alt="Sweet and crunchy sweet potato casserole is delicious and simple." data-pin-nopin="1" sizes="(max-width: 600px) 164px, 164px" decoding="async" srcset="https://www.evolvingtable.com/wp-content/uploads/2022/10/Sweet-Potato-Casserole-22-600x800.jpg 600w, https://www.evolvingtable.com/wp-content/uploads/2022/10/Sweet-Potato-Casserole-22-378x504.jpg 378w, https://www.evolvingtable.com/wp-content/uploads/2022/10/Sweet-Potato-Casserole-22-276x368.jpg 276w, https://www.evolvingtable.com/wp-content/uploads/2022/10/Sweet-Potato-Casserole-22-640x853.jpg 640w" /></noscript></a></div><div class="post-summary__content"><div class="cwp-short-names"><a href="https://www.evolvingtable.com/category/recipes/diets/gluten-free/" class="cat-key asparagus"><span class="label">GF</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a></div><h3 class="post-summary__title"><a href="https://www.evolvingtable.com/sweet-potato-casserole/">Sweet Potato Casserole with Pecans</a></h3><p class="entry-total-time"><svg width="16" height="16" aria-hidden="true" role="img" focusable="false"><use href="#utility-clock2"></use></svg>1 hr 15 mins</p></div></article><article class="post-summary"><div class="post-summary__image"><a href="https://www.evolvingtable.com/ham-family-cornbread-dressing/" tabindex="-1" aria-hidden="true"><img width="600" height="800" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20600%20800'%3E%3C/svg%3E" class="nopin" alt="Southern cornbread dressing is the perfect holiday side." data-pin-nopin="1" data-lazy-sizes="(max-width: 600px) 164px, 164px" decoding="async" data-lazy-srcset="https://www.evolvingtable.com/wp-content/uploads/2022/09/Cornbread-Dressing-21-600x800.jpg 600w, https://www.evolvingtable.com/wp-content/uploads/2022/09/Cornbread-Dressing-21-378x504.jpg 378w, https://www.evolvingtable.com/wp-content/uploads/2022/09/Cornbread-Dressing-21-276x368.jpg 276w, https://www.evolvingtable.com/wp-content/uploads/2022/09/Cornbread-Dressing-21-640x853.jpg 640w" data-lazy-src="https://www.evolvingtable.com/wp-content/uploads/2022/09/Cornbread-Dressing-21-600x800.jpg" /><noscript><img width="600" height="800" src="https://www.evolvingtable.com/wp-content/uploads/2022/09/Cornbread-Dressing-21-600x800.jpg" class="nopin" alt="Southern cornbread dressing is the perfect holiday side." data-pin-nopin="1" sizes="(max-width: 600px) 164px, 164px" decoding="async" srcset="https://www.evolvingtable.com/wp-content/uploads/2022/09/Cornbread-Dressing-21-600x800.jpg 600w, https://www.evolvingtable.com/wp-content/uploads/2022/09/Cornbread-Dressing-21-378x504.jpg 378w, https://www.evolvingtable.com/wp-content/uploads/2022/09/Cornbread-Dressing-21-276x368.jpg 276w, https://www.evolvingtable.com/wp-content/uploads/2022/09/Cornbread-Dressing-21-640x853.jpg 640w" /></noscript></a></div><div class="post-summary__content"><div class="cwp-short-names"><a href="https://www.evolvingtable.com/category/recipes/diets/gluten-free/" class="cat-key asparagus"><span class="label">GF</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a><a href="https://www.evolvingtable.com/category/recipes/diets/refined-sugar-free/" class="cat-key mustard"><span class="label">SF</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a></div><h3 class="post-summary__title"><a href="https://www.evolvingtable.com/ham-family-cornbread-dressing/">Cajun Cornbread Dressing</a></h3><p class="entry-total-time"><svg width="16" height="16" aria-hidden="true" role="img" focusable="false"><use href="#utility-clock2"></use></svg>1 hr</p></div></article><article class="post-summary"><div class="post-summary__image"><a href="https://www.evolvingtable.com/melting-potatoes/" tabindex="-1" aria-hidden="true"><img width="600" height="800" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20600%20800'%3E%3C/svg%3E" class="nopin" alt="Tender on the inside melting potatoes are the perfect side dish." data-pin-nopin="1" data-lazy-sizes="(max-width: 600px) 164px, 164px" decoding="async" data-lazy-srcset="https://www.evolvingtable.com/wp-content/uploads/2022/11/Melting-Potatoes-24-600x800.jpg 600w, https://www.evolvingtable.com/wp-content/uploads/2022/11/Melting-Potatoes-24-378x504.jpg 378w, https://www.evolvingtable.com/wp-content/uploads/2022/11/Melting-Potatoes-24-276x368.jpg 276w, https://www.evolvingtable.com/wp-content/uploads/2022/11/Melting-Potatoes-24-640x853.jpg 640w" data-lazy-src="https://www.evolvingtable.com/wp-content/uploads/2022/11/Melting-Potatoes-24-600x800.jpg" /><noscript><img width="600" height="800" src="https://www.evolvingtable.com/wp-content/uploads/2022/11/Melting-Potatoes-24-600x800.jpg" class="nopin" alt="Tender on the inside melting potatoes are the perfect side dish." data-pin-nopin="1" sizes="(max-width: 600px) 164px, 164px" decoding="async" srcset="https://www.evolvingtable.com/wp-content/uploads/2022/11/Melting-Potatoes-24-600x800.jpg 600w, https://www.evolvingtable.com/wp-content/uploads/2022/11/Melting-Potatoes-24-378x504.jpg 378w, https://www.evolvingtable.com/wp-content/uploads/2022/11/Melting-Potatoes-24-276x368.jpg 276w, https://www.evolvingtable.com/wp-content/uploads/2022/11/Melting-Potatoes-24-640x853.jpg 640w" /></noscript></a></div><div class="post-summary__content"><div class="cwp-short-names"><a href="https://www.evolvingtable.com/category/recipes/diets/gluten-free/" class="cat-key asparagus"><span class="label">GF</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a><a href="https://www.evolvingtable.com/category/recipes/diets/refined-sugar-free/" class="cat-key mustard"><span class="label">SF</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a><a href="https://www.evolvingtable.com/category/recipes/diets/vegetarian/" class="cat-key smoke"><span class="label">VG</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a></div><h3 class="post-summary__title"><a href="https://www.evolvingtable.com/melting-potatoes/">Melting Potatoes</a></h3><p class="entry-total-time"><svg width="16" height="16" aria-hidden="true" role="img" focusable="false"><use href="#utility-clock2"></use></svg>1 hr</p></div></article></div></section>

<div class="block-email cwp-large has-background has-pattern-primary-background-color">

<div class="wp-block-group block-email__inner is-layout-flow wp-block-group-is-layout-flow"><div class="wpforms-container wpforms-block wpforms-block-636a52a1-a4fe-4a67-866e-a3ea508419c2" id="wpforms-75758"><form id="wpforms-form-75758" class="wpforms-validate wpforms-form wpforms-ajax-form" data-formid="75758" method="post" enctype="multipart/form-data" action="/sriracha-mayo/" data-token="30fa74d8888d1e1b175127304396757d" data-token-time="1715201589"><div class="wpforms-head-container"><div class="wpforms-title">5 Secrets to Healthier Family Dinners</div><div class="wpforms-description">Tips & recipes for getting yummy — and healthy — meals on the table.</div></div><noscript class="wpforms-error-noscript">Please enable JavaScript in your browser to complete this form.</noscript><div class="wpforms-field-container"><div id="wpforms-75758-field_1-container" class="wpforms-field wpforms-field-name" data-field-id="1"><label class="wpforms-field-label" for="wpforms-75758-field_1">First Name <span class="wpforms-required-label">*</span></label><input type="text" id="wpforms-75758-field_1" class="wpforms-field-large wpforms-field-required" name="wpforms[fields][1]" required></div><div id="wpforms-75758-field_2-container" class="wpforms-field wpforms-field-email" data-field-id="2"><label class="wpforms-field-label" for="wpforms-75758-field_2">Email <span class="wpforms-required-label">*</span></label><input type="email" id="wpforms-75758-field_2" class="wpforms-field-large wpforms-field-required" name="wpforms[fields][2]" spellcheck="false" required></div></div><!-- .wpforms-field-container --><div class="wpforms-submit-container" ><input type="hidden" name="wpforms[id]" value="75758"><input type="hidden" name="page_title" value="Spicy Sriracha Mayo"><input type="hidden" name="page_url" value="https://www.evolvingtable.com/sriracha-mayo/"><input type="hidden" name="page_id" value="80437"><input type="hidden" name="wpforms[post_id]" value="80437"><button type="submit" name="wpforms[submit]" id="wpforms-submit-75758" class="wpforms-submit wp-element-button" data-alt-text="Sending..." data-submit-text="Subscribe" aria-live="assertive" value="wpforms-submit">Subscribe</button><img src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2026%2026'%3E%3C/svg%3E" class="wpforms-submit-spinner" style="display: none;" width="26" height="26" alt="Loading" data-lazy-src="https://www.evolvingtable.com/wp-content/plugins/wpforms/assets/images/submit-spin.svg"><noscript><img src="https://www.evolvingtable.com/wp-content/plugins/wpforms/assets/images/submit-spin.svg" class="wpforms-submit-spinner" style="display: none;" width="26" height="26" alt="Loading"></noscript></div></form></div>  <!-- .wpforms-container --></div>

</div>

<section class="block-post-listing cwp-large layout-sidebar-list block-post-listing--sidebar"><header><div class="block-post-listing__title">

<h2 class="wp-block-heading has-text-align-center">Popular Recipes</h2>

</div></header><div class="block-post-listing__inner"><article class="post-summary m-list d-list"><div class="post-summary__image"><a href="https://www.evolvingtable.com/stuffed-cabbage-rolls/" tabindex="-1" aria-hidden="true"><img width="600" height="800" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20600%20800'%3E%3C/svg%3E" class="nopin" alt="One cabbage roll is lifted out by a metal spoon." data-pin-nopin="1" data-lazy-sizes="(max-width: 600px) 138px, 138px" decoding="async" data-lazy-srcset="https://www.evolvingtable.com/wp-content/uploads/2021/02/Cabbage-Rolls-32-600x800.jpg 600w, https://www.evolvingtable.com/wp-content/uploads/2021/02/Cabbage-Rolls-32-378x504.jpg 378w, https://www.evolvingtable.com/wp-content/uploads/2021/02/Cabbage-Rolls-32-276x368.jpg 276w" data-lazy-src="https://www.evolvingtable.com/wp-content/uploads/2021/02/Cabbage-Rolls-32-600x800.jpg" /><noscript><img width="600" height="800" src="https://www.evolvingtable.com/wp-content/uploads/2021/02/Cabbage-Rolls-32-600x800.jpg" class="nopin" alt="One cabbage roll is lifted out by a metal spoon." data-pin-nopin="1" sizes="(max-width: 600px) 138px, 138px" decoding="async" srcset="https://www.evolvingtable.com/wp-content/uploads/2021/02/Cabbage-Rolls-32-600x800.jpg 600w, https://www.evolvingtable.com/wp-content/uploads/2021/02/Cabbage-Rolls-32-378x504.jpg 378w, https://www.evolvingtable.com/wp-content/uploads/2021/02/Cabbage-Rolls-32-276x368.jpg 276w" /></noscript></a></div><div class="post-summary__content"><div class="cwp-short-names"><a href="https://www.evolvingtable.com/category/recipes/diets/dairy-free/" class="cat-key sunrise"><span class="label">DF</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a><a href="https://www.evolvingtable.com/category/recipes/diets/gluten-free/" class="cat-key asparagus"><span class="label">GF</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a><a href="https://www.evolvingtable.com/category/recipes/diets/low-carb/" class="cat-key robbinegg"><span class="label">LC</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a></div><h3 class="post-summary__title"><a href="https://www.evolvingtable.com/stuffed-cabbage-rolls/">Stuffed Cabbage Rolls</a></h3><p class="entry-total-time"><svg width="16" height="16" aria-hidden="true" role="img" focusable="false"><use href="#utility-clock2"></use></svg>1 hr 30 mins</p></div></article><article class="post-summary m-list d-list"><div class="post-summary__image"><a href="https://www.evolvingtable.com/italian-wedding-soup/" tabindex="-1" aria-hidden="true"><img width="600" height="800" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20600%20800'%3E%3C/svg%3E" class="nopin" alt="Italian wedding soup recipe in a white bowl with a spoon in it." data-pin-nopin="1" data-lazy-sizes="(max-width: 600px) 138px, 138px" decoding="async" data-lazy-srcset="https://www.evolvingtable.com/wp-content/uploads/2022/09/Italian-Wedding-Soup-26-600x800.jpg 600w, https://www.evolvingtable.com/wp-content/uploads/2022/09/Italian-Wedding-Soup-26-378x504.jpg 378w, https://www.evolvingtable.com/wp-content/uploads/2022/09/Italian-Wedding-Soup-26-276x368.jpg 276w, https://www.evolvingtable.com/wp-content/uploads/2022/09/Italian-Wedding-Soup-26-640x853.jpg 640w" data-lazy-src="https://www.evolvingtable.com/wp-content/uploads/2022/09/Italian-Wedding-Soup-26-600x800.jpg" /><noscript><img width="600" height="800" src="https://www.evolvingtable.com/wp-content/uploads/2022/09/Italian-Wedding-Soup-26-600x800.jpg" class="nopin" alt="Italian wedding soup recipe in a white bowl with a spoon in it." data-pin-nopin="1" sizes="(max-width: 600px) 138px, 138px" decoding="async" srcset="https://www.evolvingtable.com/wp-content/uploads/2022/09/Italian-Wedding-Soup-26-600x800.jpg 600w, https://www.evolvingtable.com/wp-content/uploads/2022/09/Italian-Wedding-Soup-26-378x504.jpg 378w, https://www.evolvingtable.com/wp-content/uploads/2022/09/Italian-Wedding-Soup-26-276x368.jpg 276w, https://www.evolvingtable.com/wp-content/uploads/2022/09/Italian-Wedding-Soup-26-640x853.jpg 640w" /></noscript></a></div><div class="post-summary__content"><div class="cwp-short-names"><a href="https://www.evolvingtable.com/category/recipes/diets/dairy-free/" class="cat-key sunrise"><span class="label">DF</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a><a href="https://www.evolvingtable.com/category/recipes/diets/gluten-free/" class="cat-key asparagus"><span class="label">GF</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a></div><h3 class="post-summary__title"><a href="https://www.evolvingtable.com/italian-wedding-soup/">Italian Wedding Soup</a></h3><p class="entry-total-time"><svg width="16" height="16" aria-hidden="true" role="img" focusable="false"><use href="#utility-clock2"></use></svg>1 hr</p></div></article><article class="post-summary m-list d-list"><div class="post-summary__image"><a href="https://www.evolvingtable.com/peanut-sauce/" tabindex="-1" aria-hidden="true"><img width="600" height="800" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20600%20800'%3E%3C/svg%3E" class="nopin" alt="A spoon is used to serve this easy peanut sauce." data-pin-nopin="1" data-lazy-sizes="(max-width: 600px) 138px, 138px" decoding="async" data-lazy-srcset="https://www.evolvingtable.com/wp-content/uploads/2022/02/Peanut-Dipping-Sauce-12-600x800.jpg 600w, https://www.evolvingtable.com/wp-content/uploads/2022/02/Peanut-Dipping-Sauce-12-378x504.jpg 378w, https://www.evolvingtable.com/wp-content/uploads/2022/02/Peanut-Dipping-Sauce-12-276x368.jpg 276w, https://www.evolvingtable.com/wp-content/uploads/2022/02/Peanut-Dipping-Sauce-12-640x853.jpg 640w" data-lazy-src="https://www.evolvingtable.com/wp-content/uploads/2022/02/Peanut-Dipping-Sauce-12-600x800.jpg" /><noscript><img width="600" height="800" src="https://www.evolvingtable.com/wp-content/uploads/2022/02/Peanut-Dipping-Sauce-12-600x800.jpg" class="nopin" alt="A spoon is used to serve this easy peanut sauce." data-pin-nopin="1" sizes="(max-width: 600px) 138px, 138px" decoding="async" srcset="https://www.evolvingtable.com/wp-content/uploads/2022/02/Peanut-Dipping-Sauce-12-600x800.jpg 600w, https://www.evolvingtable.com/wp-content/uploads/2022/02/Peanut-Dipping-Sauce-12-378x504.jpg 378w, https://www.evolvingtable.com/wp-content/uploads/2022/02/Peanut-Dipping-Sauce-12-276x368.jpg 276w, https://www.evolvingtable.com/wp-content/uploads/2022/02/Peanut-Dipping-Sauce-12-640x853.jpg 640w" /></noscript></a></div><div class="post-summary__content"><div class="cwp-short-names"><a href="https://www.evolvingtable.com/category/recipes/diets/dairy-free/" class="cat-key sunrise"><span class="label">DF</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a><a href="https://www.evolvingtable.com/category/recipes/diets/gluten-free/" class="cat-key asparagus"><span class="label">GF</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a><a href="https://www.evolvingtable.com/category/recipes/diets/low-carb/" class="cat-key robbinegg"><span class="label">LC</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a><a href="https://www.evolvingtable.com/category/recipes/diets/refined-sugar-free/" class="cat-key mustard"><span class="label">SF</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a></div><h3 class="post-summary__title"><a href="https://www.evolvingtable.com/peanut-sauce/">Peanut Sauce for Spring Rolls</a></h3><p class="entry-total-time"><svg width="16" height="16" aria-hidden="true" role="img" focusable="false"><use href="#utility-clock2"></use></svg>5 mins</p></div></article><article class="post-summary m-list d-list"><div class="post-summary__image"><a href="https://www.evolvingtable.com/egg-roll-in-a-bowl-paleo-keto/" tabindex="-1" aria-hidden="true"><img width="600" height="800" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20600%20800'%3E%3C/svg%3E" class="nopin" alt="A metal spatula scooping up some shredded cabbage and ground turkey from a large skillet." data-pin-nopin="1" data-lazy-sizes="(max-width: 600px) 138px, 138px" decoding="async" data-lazy-srcset="https://www.evolvingtable.com/wp-content/uploads/2024/01/egg-roll-in-a-bowl-14-1-600x800.jpg 600w, https://www.evolvingtable.com/wp-content/uploads/2024/01/egg-roll-in-a-bowl-14-1-640x853.jpg 640w, https://www.evolvingtable.com/wp-content/uploads/2024/01/egg-roll-in-a-bowl-14-1-378x504.jpg 378w, https://www.evolvingtable.com/wp-content/uploads/2024/01/egg-roll-in-a-bowl-14-1-276x368.jpg 276w" data-lazy-src="https://www.evolvingtable.com/wp-content/uploads/2024/01/egg-roll-in-a-bowl-14-1-600x800.jpg" /><noscript><img width="600" height="800" src="https://www.evolvingtable.com/wp-content/uploads/2024/01/egg-roll-in-a-bowl-14-1-600x800.jpg" class="nopin" alt="A metal spatula scooping up some shredded cabbage and ground turkey from a large skillet." data-pin-nopin="1" sizes="(max-width: 600px) 138px, 138px" decoding="async" srcset="https://www.evolvingtable.com/wp-content/uploads/2024/01/egg-roll-in-a-bowl-14-1-600x800.jpg 600w, https://www.evolvingtable.com/wp-content/uploads/2024/01/egg-roll-in-a-bowl-14-1-640x853.jpg 640w, https://www.evolvingtable.com/wp-content/uploads/2024/01/egg-roll-in-a-bowl-14-1-378x504.jpg 378w, https://www.evolvingtable.com/wp-content/uploads/2024/01/egg-roll-in-a-bowl-14-1-276x368.jpg 276w" /></noscript></a></div><div class="post-summary__content"><div class="cwp-short-names"><a href="https://www.evolvingtable.com/category/recipes/diets/dairy-free/" class="cat-key sunrise"><span class="label">DF</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a><a href="https://www.evolvingtable.com/category/recipes/diets/gluten-free/" class="cat-key asparagus"><span class="label">GF</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a><a href="https://www.evolvingtable.com/category/recipes/diets/low-carb/" class="cat-key robbinegg"><span class="label">LC</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a><a href="https://www.evolvingtable.com/category/recipes/diets/paleo/" class="cat-key dirtyblue"><span class="label">PA</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-octagon"></use></svg></a></div><h3 class="post-summary__title"><a href="https://www.evolvingtable.com/egg-roll-in-a-bowl-paleo-keto/">Egg Roll in a Bowl</a></h3><p class="entry-total-time"><svg width="16" height="16" aria-hidden="true" role="img" focusable="false"><use href="#utility-clock2"></use></svg>30 mins</p></div></article></div></section></div></aside></div></div><div class="block-area block-area-before-footer"><div class="block-seen-in"><p class="block-seen-in__title">As Seen In</p><div class="block-seen-in__wrap"><div><img width="300" height="144" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20144'%3E%3C/svg%3E" class="nopin" alt="" data-lazy-sizes="100px" decoding="async" data-lazy-srcset="https://www.evolvingtable.com/wp-content/uploads/2023/09/thepioneerwoman.png 300w, https://www.evolvingtable.com/wp-content/uploads/2023/09/thepioneerwoman-150x72.png 150w" data-lazy-src="https://www.evolvingtable.com/wp-content/uploads/2023/09/thepioneerwoman.png" /><noscript><img width="300" height="144" src="https://www.evolvingtable.com/wp-content/uploads/2023/09/thepioneerwoman.png" class="nopin" alt="" sizes="100px" decoding="async" srcset="https://www.evolvingtable.com/wp-content/uploads/2023/09/thepioneerwoman.png 300w, https://www.evolvingtable.com/wp-content/uploads/2023/09/thepioneerwoman-150x72.png 150w" /></noscript></div><div><img width="300" height="144" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20144'%3E%3C/svg%3E" class="nopin" alt="" data-lazy-sizes="100px" decoding="async" data-lazy-srcset="https://www.evolvingtable.com/wp-content/uploads/2023/09/tasty.png 300w, https://www.evolvingtable.com/wp-content/uploads/2023/09/tasty-150x72.png 150w" data-lazy-src="https://www.evolvingtable.com/wp-content/uploads/2023/09/tasty.png" /><noscript><img width="300" height="144" src="https://www.evolvingtable.com/wp-content/uploads/2023/09/tasty.png" class="nopin" alt="" sizes="100px" decoding="async" srcset="https://www.evolvingtable.com/wp-content/uploads/2023/09/tasty.png 300w, https://www.evolvingtable.com/wp-content/uploads/2023/09/tasty-150x72.png 150w" /></noscript></div><div><img width="300" height="144" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20144'%3E%3C/svg%3E" class="nopin" alt="" data-lazy-sizes="100px" decoding="async" data-lazy-srcset="https://www.evolvingtable.com/wp-content/uploads/2023/09/shape.png 300w, https://www.evolvingtable.com/wp-content/uploads/2023/09/shape-150x72.png 150w" data-lazy-src="https://www.evolvingtable.com/wp-content/uploads/2023/09/shape.png" /><noscript><img width="300" height="144" src="https://www.evolvingtable.com/wp-content/uploads/2023/09/shape.png" class="nopin" alt="" sizes="100px" decoding="async" srcset="https://www.evolvingtable.com/wp-content/uploads/2023/09/shape.png 300w, https://www.evolvingtable.com/wp-content/uploads/2023/09/shape-150x72.png 150w" /></noscript></div><div><img width="300" height="144" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20144'%3E%3C/svg%3E" class="nopin" alt="" data-lazy-sizes="100px" decoding="async" data-lazy-srcset="https://www.evolvingtable.com/wp-content/uploads/2023/09/parade.png 300w, https://www.evolvingtable.com/wp-content/uploads/2023/09/parade-150x72.png 150w" data-lazy-src="https://www.evolvingtable.com/wp-content/uploads/2023/09/parade.png" /><noscript><img width="300" height="144" src="https://www.evolvingtable.com/wp-content/uploads/2023/09/parade.png" class="nopin" alt="" sizes="100px" decoding="async" srcset="https://www.evolvingtable.com/wp-content/uploads/2023/09/parade.png 300w, https://www.evolvingtable.com/wp-content/uploads/2023/09/parade-150x72.png 150w" /></noscript></div><div><img width="300" height="144" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20144'%3E%3C/svg%3E" class="nopin" alt="" data-lazy-sizes="100px" decoding="async" data-lazy-srcset="https://www.evolvingtable.com/wp-content/uploads/2023/09/msn.png 300w, https://www.evolvingtable.com/wp-content/uploads/2023/09/msn-150x72.png 150w" data-lazy-src="https://www.evolvingtable.com/wp-content/uploads/2023/09/msn.png" /><noscript><img width="300" height="144" src="https://www.evolvingtable.com/wp-content/uploads/2023/09/msn.png" class="nopin" alt="" sizes="100px" decoding="async" srcset="https://www.evolvingtable.com/wp-content/uploads/2023/09/msn.png 300w, https://www.evolvingtable.com/wp-content/uploads/2023/09/msn-150x72.png 150w" /></noscript></div><div><img width="300" height="144" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20144'%3E%3C/svg%3E" class="nopin" alt="" data-lazy-sizes="100px" decoding="async" data-lazy-srcset="https://www.evolvingtable.com/wp-content/uploads/2023/09/fitnessmagazine.png 300w, https://www.evolvingtable.com/wp-content/uploads/2023/09/fitnessmagazine-150x72.png 150w" data-lazy-src="https://www.evolvingtable.com/wp-content/uploads/2023/09/fitnessmagazine.png" /><noscript><img width="300" height="144" src="https://www.evolvingtable.com/wp-content/uploads/2023/09/fitnessmagazine.png" class="nopin" alt="" sizes="100px" decoding="async" srcset="https://www.evolvingtable.com/wp-content/uploads/2023/09/fitnessmagazine.png 300w, https://www.evolvingtable.com/wp-content/uploads/2023/09/fitnessmagazine-150x72.png 150w" /></noscript></div><div><img width="300" height="144" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20144'%3E%3C/svg%3E" class="nopin" alt="" data-lazy-sizes="100px" decoding="async" data-lazy-srcset="https://www.evolvingtable.com/wp-content/uploads/2023/09/delish.png 300w, https://www.evolvingtable.com/wp-content/uploads/2023/09/delish-150x72.png 150w" data-lazy-src="https://www.evolvingtable.com/wp-content/uploads/2023/09/delish.png" /><noscript><img width="300" height="144" src="https://www.evolvingtable.com/wp-content/uploads/2023/09/delish.png" class="nopin" alt="" sizes="100px" decoding="async" srcset="https://www.evolvingtable.com/wp-content/uploads/2023/09/delish.png 300w, https://www.evolvingtable.com/wp-content/uploads/2023/09/delish-150x72.png 150w" /></noscript></div><div><img width="300" height="144" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20144'%3E%3C/svg%3E" class="nopin" alt="" data-lazy-sizes="100px" decoding="async" data-lazy-srcset="https://www.evolvingtable.com/wp-content/uploads/2023/09/countryliving.png 300w, https://www.evolvingtable.com/wp-content/uploads/2023/09/countryliving-150x72.png 150w" data-lazy-src="https://www.evolvingtable.com/wp-content/uploads/2023/09/countryliving.png" /><noscript><img width="300" height="144" src="https://www.evolvingtable.com/wp-content/uploads/2023/09/countryliving.png" class="nopin" alt="" sizes="100px" decoding="async" srcset="https://www.evolvingtable.com/wp-content/uploads/2023/09/countryliving.png 300w, https://www.evolvingtable.com/wp-content/uploads/2023/09/countryliving-150x72.png 150w" /></noscript></div><div><img width="300" height="144" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20144'%3E%3C/svg%3E" class="nopin" alt="" data-lazy-sizes="100px" decoding="async" data-lazy-srcset="https://www.evolvingtable.com/wp-content/uploads/2023/09/betterhomesgardens.png 300w, https://www.evolvingtable.com/wp-content/uploads/2023/09/betterhomesgardens-150x72.png 150w" data-lazy-src="https://www.evolvingtable.com/wp-content/uploads/2023/09/betterhomesgardens.png" /><noscript><img width="300" height="144" src="https://www.evolvingtable.com/wp-content/uploads/2023/09/betterhomesgardens.png" class="nopin" alt="" sizes="100px" decoding="async" srcset="https://www.evolvingtable.com/wp-content/uploads/2023/09/betterhomesgardens.png 300w, https://www.evolvingtable.com/wp-content/uploads/2023/09/betterhomesgardens-150x72.png 150w" /></noscript></div></div></div></div><footer class="site-footer" role="contentinfo"><div class="wrap"><a class="backtotop-circle" href="#top"><span class="screen-reader-text">Back to top</span><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-chevron-large-up"></use></svg></a><div class="site-footer__inner"><a href="https://www.evolvingtable.com/" class="site-footer__logo"><span class="screen-reader-text">Evolving Table</span><svg width="300" height="54" aria-hidden="true" role="img" focusable="false"><use href="#logo-primary"></use></svg></a><div class="nav-footer"><ul id="menu-footer-nav" class="menu"><li id="menu-item-80358" class="menu-item current-post-ancestor current-menu-parent current-post-parent"><a href="https://www.evolvingtable.com/category/recipes/">Browse All Recipes</a></li>
<li id="menu-item-80359" class="menu-item"><a href="https://www.evolvingtable.com/shop-around/">Shop</a></li>
<li id="menu-item-80360" class="menu-item"><a href="https://www.evolvingtable.com/healthy-meal-plans/">Meal Plans</a></li>
<li id="menu-item-80361" class="menu-item"><a href="https://www.evolvingtable.com/category/kitchen-tips/">Kitchen Tips</a></li>
<li id="menu-item-80362" class="menu-item"><a href="https://www.evolvingtable.com/start-here/">New? Start Here</a></li>
<li id="menu-item-80363" class="menu-item menu-item-home"><a href="https://www.evolvingtable.com/">Home</a></li>
<li id="menu-item-80364" class="menu-item"><a href="https://www.evolvingtable.com/about-london/">About</a></li>
<li id="menu-item-80365" class="menu-item"><a href="https://www.evolvingtable.com/contact/">Contact</a></li>
</ul></div></div></div></footer><div class="site-footer__bottom"><div class="wrap"><ul class="social-links"><li><a href="https://www.instagram.com/evolvingtable/" target="_blank" rel="noopener noreferrer" aria-label="Instagram"><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-instagram"></use></svg></a></li>
<li><a href="https://www.youtube.com/channel/UCOWKwl9lasOMhuAA_r4tFiw" target="_blank" rel="noopener noreferrer" aria-label="YouTube"><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-youtube-play"></use></svg></a></li>
<li><a href="https://www.facebook.com/evolvingtable" target="_blank" rel="noopener noreferrer" aria-label="Facebook"><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-facebook"></use></svg></a></li>
<li><a href="https://twitter.com/evolvingtable" target="_blank" rel="noopener noreferrer" aria-label="Twitter"><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-twitter"></use></svg></a></li>
<li><a href="https://www.pinterest.com/evolvingtable/" target="_blank" rel="noopener noreferrer" aria-label="Pinterest"><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-pinterest"></use></svg></a></li></ul><p><span class="site-footer__copyright">&copy;2024 Evolving Table. All rights reserved.</span><span class="site-footer__links"> <a href="https://www.evolvingtable.com/resources/privacy-policy/">Privacy Policy</a> &bull; Powered by <a href="https://cultivatewp.com" target="_blank" rel="noopener nofollow">CultivateWP</a>.</span></p>
</div></div></div><div id="mv-grow-data" data-settings='{&quot;general&quot;:{&quot;contentSelector&quot;:false,&quot;show_count&quot;:{&quot;content&quot;:false,&quot;sidebar&quot;:false,&quot;pop_up&quot;:false,&quot;sticky_bar&quot;:false},&quot;isTrellis&quot;:false},&quot;post&quot;:{&quot;ID&quot;:19066,&quot;categories&quot;:[{&quot;ID&quot;:1797},{&quot;ID&quot;:1789},{&quot;ID&quot;:1796},{&quot;ID&quot;:3},{&quot;ID&quot;:1795},{&quot;ID&quot;:1791},{&quot;ID&quot;:1},{&quot;ID&quot;:117},{&quot;ID&quot;:1792}]},&quot;shareCounts&quot;:{&quot;pinterest&quot;:3954,&quot;yummly&quot;:1},&quot;shouldRun&quot;:true,&quot;utmParams&quot;:[],&quot;pinterest&quot;:{&quot;pinDescriptionSource&quot;:&quot;post_pinterest_description&quot;,&quot;pinDescription&quot;:&quot;Thank goodness this Sriracha Mayo only takes 5 minutes to make, because you&#039;re going to want to put it on everything! A simple mix of sriracha sauce, creamy mayo, lemon juice and garlic combine to make a spicy dipping sauce that&#039;s perfect with fries, on fish tacos, smothered on burgers, or drizzled over sushi rolls and rice bowls!&quot;,&quot;pinTitle&quot;:&quot;Spicy Sriracha Mayo&quot;,&quot;pinImageURL&quot;:&quot;https:\/\/www.evolvingtable.com\/wp-content\/uploads\/2024\/05\/Spicy-Sriracha-Mayo-PinStat24-1A.jpg&quot;,&quot;pinnableImages&quot;:&quot;all_images&quot;,&quot;postImageHidden&quot;:&quot;yes&quot;,&quot;postImageHiddenMultiple&quot;:&quot;yes&quot;,&quot;lazyLoadCompatibility&quot;:&quot;yes&quot;,&quot;buttonPosition&quot;:&quot;&quot;,&quot;buttonShape&quot;:null,&quot;showButtonLabel&quot;:null,&quot;buttonLabelText&quot;:null,&quot;buttonShareBehavior&quot;:&quot;all_images&quot;,&quot;hoverButtonShareBehavior&quot;:null,&quot;minimumImageWidth&quot;:null,&quot;minimumImageHeight&quot;:null,&quot;showImageOverlay&quot;:null,&quot;postTypeDisplay&quot;:null,&quot;imagePinIt&quot;:&quot;0&quot;,&quot;hasContent&quot;:&quot;1&quot;,&quot;shareURL&quot;:&quot;https:\/\/www.evolvingtable.com\/sriracha-mayo\/&quot;,&quot;bypassClasses&quot;:[&quot;mv-grow-bypass&quot;,&quot;no_pin&quot;],&quot;bypassDenyClasses&quot;:[&quot;dpsp-post-pinterest-image-hidden-inner&quot;,&quot;mv-create-pinterest&quot;],&quot;ignoreSelectors&quot;:[],&quot;hoverButtonIgnoreClasses&quot;:[&quot;lazyloaded&quot;,&quot;lazyload&quot;,&quot;td-animation-stack&quot;,&quot;ezlazyloaded&quot;,&quot;penci-lazy&quot;,&quot;ut-lazy&quot;,&quot;ut-image-loaded&quot;,&quot;ut-animated-image&quot;],&quot;disableIframes&quot;:null}}'></div><script type="pmdelayedscript" data-perfmatters-type="text/javascript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1">(function (d) {var f = d.getElementsByTagName('SCRIPT')[0],p = d.createElement('SCRIPT');p.type = 'text/javascript';p.async = true;p.src = '//assets.pinterest.com/js/pinit.js';f.parentNode.insertBefore(p, f);})(document);</script><script type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1">window.wprm_recipes = {"recipe-19079":{"type":"food","name":"Spicy Sriracha Mayo Recipe","slug":"wprm-spicy-sriracha-mayo-recipe","servings":"8","rating":{"count":5,"total":24,"average":4.8,"user":0}}}</script>    <script type="pmdelayedscript" data-perfmatters-type="text/javascript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1">
        var trackcmp_email = 'testingf';
        var trackcmp = document.createElement('script');
        trackcmp.async = true;
        trackcmp.type = 'text/javascript';
        trackcmp.src = '//trackcmp.net/visit?actid=223407843&e=' + encodeURIComponent(trackcmp_email) + '&r=' + encodeURIComponent(document.referrer) + '&u=' + encodeURIComponent(window.location.href);
        var trackcmp_s = document.getElementsByTagName('script');
        if (trackcmp_s.length) {
            trackcmp_s[0].parentNode.appendChild(trackcmp);
        } else {
            var trackcmp_h = document.getElementsByTagName('head');
            if (trackcmp_h.length) {
                trackcmp_h[0].appendChild(trackcmp);
            }
        }
    </script>
    <style id='core-block-supports-inline-css'>
.wp-block-gallery.wp-block-gallery-1{--wp--style--unstable-gallery-gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );}.wp-block-gallery.wp-block-gallery-2{--wp--style--unstable-gallery-gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );}.wp-container-core-buttons-is-layout-1.wp-container-core-buttons-is-layout-1{justify-content:center;}.wp-container-core-group-is-layout-4.wp-container-core-group-is-layout-4{flex-wrap:nowrap;justify-content:space-between;align-items:flex-start;}.wp-container-core-buttons-is-layout-2.wp-container-core-buttons-is-layout-2{justify-content:center;}.wp-container-core-group-is-layout-7.wp-container-core-group-is-layout-7{flex-wrap:nowrap;justify-content:space-between;align-items:flex-start;}
</style>

<script id="wprm-public-js-extra">
var wprm_public = {"user":"0","endpoints":{"analytics":"https:\/\/www.evolvingtable.com\/wp-json\/wp-recipe-maker\/v1\/analytics","manage":"https:\/\/www.evolvingtable.com\/wp-json\/wp-recipe-maker\/v1\/manage"},"settings":{"features_comment_ratings":true,"template_color_comment_rating":"#e9bc50","instruction_media_toggle_default":"on","video_force_ratio":false,"analytics_enabled":true,"google_analytics_enabled":false,"print_new_tab":true,"print_recipe_identifier":"slug"},"post_id":"19066","home_url":"https:\/\/www.evolvingtable.com\/","print_slug":"wprm_print","permalinks":"\/%postname%\/","ajax_url":"https:\/\/www.evolvingtable.com\/wp-admin\/admin-ajax.php","nonce":"1a5e3bc1e6","api_nonce":"0d3d1e57bd","translations":{"Select a collection":"Select a collection","Select a column":"Select a column","Select a group":"Select a group","Shopping List":"Shopping List","Print":"Print","Print Collection":"Print Collection","Print Recipes":"Print Recipes","Hide Nutrition Facts":"Hide Nutrition Facts","Show Nutrition Facts":"Show Nutrition Facts","Are you sure you want to remove all items from this collection?":"Are you sure you want to remove all items from this collection?","Clear Items":"Clear Items","Description for this collection:":"Description for this collection:","Change Description":"Change Description","Set Description":"Set Description","Save to my Collections":"Save to my Collections","None":"None","Blue":"Blue","Red":"Red","Green":"Green","Yellow":"Yellow","Note":"Note","Color":"Color","Name":"Name","Ingredients":"Ingredients","cup":"cup","olive oil":"olive oil","Add Ingredient":"Add Ingredient","Edit Ingredients":"Edit Ingredients","Text":"Text","Nutrition Facts (per serving)":"Nutrition Facts (per serving)","Add Column":"Add Column","Edit Columns":"Edit Columns","Add Group":"Add Group","Edit Groups":"Edit Groups","Add Item":"Add Item","Remove Items":"Remove Items","Columns & Groups":"Columns & Groups","Remove All Items":"Remove All Items","Stop Removing Items":"Stop Removing Items","Actions":"Actions","Click to add:":"Click to add:","Drag and drop to add:":"Drag and drop to add:","Load more...":"Load more...","Search Recipes":"Search Recipes","Search Ingredients":"Search Ingredients","Add Custom Recipe":"Add Custom Recipe","Add Note":"Add Note","Add from Collection":"Add from Collection","Start typing to search...":"Start typing to search...","Your Collections":"Your Collections","Editing User":"Editing User","Cancel":"Cancel","Go Back":"Go Back","Edit Item":"Edit Item","Change Name":"Change Name","Move Left":"Move Left","Move Right":"Move Right","Duplicate":"Duplicate","Delete Column":"Delete Column","Are you sure you want to delete?":"Are you sure you want to delete?","Click to set name":"Click to set name","Set a new amount for this ingredient:":"Set a new amount for this ingredient:","Set the number of servings":"Set the number of servings","servings":"servings","View Recipe":"View Recipe","Edit Custom Recipe":"Edit Custom Recipe","Edit Note":"Edit Note","Duplicate Item":"Duplicate Item","Change Servings":"Change Servings","Do not mark as leftovers":"Do not mark as leftovers","Mark as leftovers":"Mark as leftovers","Remove Item":"Remove Item","Leftovers":"Leftovers","Done":"Done","Add to Collection":"Add to Collection","Close":"Close","Move Up":"Move Up","Move Down":"Move Down","Delete Group":"Delete Group","Nutrition Facts":"Nutrition Facts","Click to confirm...":"Click to confirm...","Are you sure you want to delete all items in":"Are you sure you want to delete all items in","Stop Editing":"Stop Editing","Recipe":"Recipe","Regenerate Shopping List":"Regenerate Shopping List","Print Shopping List":"Print Shopping List","The link copied to your clipboard will allow others to edit this shopping list.":"The link copied to your clipboard will allow others to edit this shopping list.","Copy this link to allow others to edit this shopping list:":"Copy this link to allow others to edit this shopping list:","Share Edit Link":"Share Edit Link","Save Shopping List":"Save Shopping List","Edit Shopping List":"Edit Shopping List","Generate Shopping List":"Generate Shopping List","Remove All":"Remove All","Shopping List Options":"Shopping List Options","Include ingredient notes":"Include ingredient notes","Preferred Unit System":"Preferred Unit System","Deselect all":"Deselect all","Select all":"Select all","Collection":"Collection","Unnamed":"Unnamed","remove":"remove","There are unsaved changes. Are you sure you want to leave this page?":"There are unsaved changes. Are you sure you want to leave this page?","Make sure to select some recipes for the shopping list first.":"Make sure to select some recipes for the shopping list first.","Are you sure you want to generate a new shopping list for this collection? You will only be able to access this shopping list again with the share link.":"Are you sure you want to generate a new shopping list for this collection? You will only be able to access this shopping list again with the share link.","The shopping list could not be saved. Try again later.":"The shopping list could not be saved. Try again later.","Are you sure you want to remove all recipes from this shopping list?":"Are you sure you want to remove all recipes from this shopping list?","Back":"Back","Make sure to save the shopping list before printing.":"Make sure to save the shopping list before printing.","No recipes have been added to the shopping list yet.":"No recipes have been added to the shopping list yet.","Click the cart icon in the top right to generate the shopping list.":"Click the cart icon in the top right to generate the shopping list.","Select recipes and click the cart icon in the top right to generate the shopping list.":"Select recipes and click the cart icon in the top right to generate the shopping list.","Click the cart icon in the top right to generate a new shopping list.":"Click the cart icon in the top right to generate a new shopping list.","Right click and copy this link to allow others to edit this shopping list.":"Right click and copy this link to allow others to edit this shopping list.","List":"List","Are you sure you want to delete this group, and all of the items in it?":"Are you sure you want to delete this group, and all of the items in it?","Your shopping list is empty.":"Your shopping list is empty.","Group":"Group","Add Collection":"Add Collection","Empty Collection":"Empty Collection","Add Pre-made Collection":"Add Pre-made Collection","Edit Collections":"Edit Collections","Select a collection to add for this user":"Select a collection to add for this user","Add Saved Collection":"Add Saved Collection","Delete":"Delete","Go to Shopping List":"Go to Shopping List","Recipes":"Recipes","Decrease serving size by 1":"Decrease serving size by 1","Increase serving size by 1":"Increase serving size by 1","Something went wrong. Please try again.":"Something went wrong. Please try again.","Select Amazon Product":"Select Amazon Product","Change Amazon Product":"Change Amazon Product","Find Amazon Product:":"Find Amazon Product:","Search":"Search","Error":"Error","No products found for":"No products found for","No products found.":"No products found.","Results for":"Results for","Current Product":"Current Product","Select Product":"Select Product","Nothing to add products to yet.":"Nothing to add products to yet.","In recipe":"In recipe","Product":"Product","Amount needed":"Amount needed","Change Product":"Change Product","A name is required for this saved nutrition ingredient.":"A name is required for this saved nutrition ingredient.","Save a new Custom Ingredient":"Save a new Custom Ingredient","Amount":"Amount","Unit":"Unit","Name (required)":"Name (required)","Save for Later & Use":"Save for Later & Use","Use":"Use","Select a saved ingredient":"Select a saved ingredient","Match this equation to get the correct amounts:":"Match this equation to get the correct amounts:","Cancel Calculation":"Cancel Calculation","Go to Next Step":"Go to Next Step","Use These Values":"Use These Values","Nutrition Calculation":"Nutrition Calculation","Experiencing issues?":"Experiencing issues?","Check the API Status":"Check the API Status","n\/a":"n\/a","Values of all the checked ingredients will be added together and":"Values of all the checked ingredients will be added together and","divided by":"divided by","the number of servings for this recipe.":"the number of servings for this recipe.","Values of all the checked ingredients will be added together.":"Values of all the checked ingredients will be added together.","API Ingredients":"API Ingredients","Custom Ingredients":"Custom Ingredients","Recipe Nutrition Facts Preview":"Recipe Nutrition Facts Preview","Changes to these values can be made after confirming with the blue button.":"Changes to these values can be made after confirming with the blue button.","Select or search for a saved ingredient":"Select or search for a saved ingredient","No ingredients set for this recipe.":"No ingredients set for this recipe.","Used in Recipe":"Used in Recipe","Used for Calculation":"Used for Calculation","Nutrition Source":"Nutrition Source","Match & Units":"Match & Units","API":"API","Saved\/Custom":"Saved\/Custom","no match found":"no match found","Units n\/a":"Units n\/a","Find a match for:":"Find a match for:","No ingredients found for":"No ingredients found for","No ingredients found.":"No ingredients found.","Editing Equipment Affiliate Fields":"Editing Equipment Affiliate Fields","The fields you set here will affect all recipes using this equipment.":"The fields you set here will affect all recipes using this equipment.","Regular Links":"Regular Links","Images":"Images","HTML Code":"HTML Code","Images and HTML code only show up when the Equipment block is set to the \"Images\" display style in the Template Editor.":"Images and HTML code only show up when the Equipment block is set to the \"Images\" display style in the Template Editor.","Save Changes":"Save Changes","other recipe(s) affected":"other recipe(s) affected","This can affect other recipes":"This can affect other recipes","Edit Link":"Edit Link","Remove Link":"Remove Link","Are you sure you want to delete this link?":"Are you sure you want to delete this link?","Set Affiliate Link":"Set Affiliate Link","Edit Image":"Edit Image","Remove Image":"Remove Image","Add Image":"Add Image","This feature is only available in":"This feature is only available in","You need to set up this feature on the WP Recipe Maker > Settings > Unit Conversion page first.":"You need to set up this feature on the WP Recipe Maker > Settings > Unit Conversion page first.","Original Unit System for this recipe":"Original Unit System for this recipe","Use Default":"Use Default","First Unit System":"First Unit System","Second Unit System":"Second Unit System","Conversion":"Conversion","Converted":"Converted","Original":"Original","Convert All Automatically":"Convert All Automatically","Convert":"Convert","Keep Unit":"Keep Unit","Automatically":"Automatically","Weight Units":"Weight Units","Volume Units":"Volume Units","Convert...":"Convert...","Ingredient Link Type":"Ingredient Link Type","Global: the same link will be used for every recipe with this ingredient":"Global: the same link will be used for every recipe with this ingredient","Custom: these links will only affect the recipe below":"Custom: these links will only affect the recipe below","Use Global Links":"Use Global Links","Custom Links for this Recipe only":"Custom Links for this Recipe only","Edit Global Links":"Edit Global Links","Affiliate Link":"Affiliate Link","No link set":"No link set","No equipment set for this recipe.":"No equipment set for this recipe.","Regular Link":"Regular Link","Image":"Image","Edit Affiliate Fields":"Edit Affiliate Fields","No HTML set":"No HTML set","Editing Global Ingredient Links":"Editing Global Ingredient Links","All fields are required.":"All fields are required.","Something went wrong. Make sure this key does not exist yet.":"Something went wrong. Make sure this key does not exist yet.","Are you sure you want to close without saving changes?":"Are you sure you want to close without saving changes?","Editing Custom Field":"Editing Custom Field","Creating new Custom Field":"Creating new Custom Field","Type":"Type","Key":"Key","my-custom-field":"my-custom-field","My Custom Field":"My Custom Field","Save":"Save","Editing Product":"Editing Product","Setting Product":"Setting Product","Product ID":"Product ID","No product set yet":"No product set yet","Product Name":"Product Name","Unset Product":"Unset Product","Search for products":"Search for products","No products found":"No products found","A label and key are required.":"A label and key are required.","Editing Nutrient":"Editing Nutrient","Creating new Nutrient":"Creating new Nutrient","Custom":"Custom","Calculated":"Calculated","my-custom-nutrient":"my-custom-nutrient","Label":"Label","My Custom Nutrient":"My Custom Nutrient","mg":"mg","Daily Need":"Daily Need","Calculation":"Calculation","Learn more":"Learn more","Decimal Precision":"Decimal Precision","Order":"Order","Loading...":"Loading...","Editing Nutrition Ingredient":"Editing Nutrition Ingredient","Creating new Nutrition Ingredient":"Creating new Nutrition Ingredient","Are you sure you want to overwrite the existing values?":"Are you sure you want to overwrite the existing values?","Import values from recipe":"Import values from recipe","Cancel import":"Cancel import","Use this recipe":"Use this recipe","Sort:":"Sort:","Filter:":"Filter:","Edit Recipe Submission":"Edit Recipe Submission","Approve Submission":"Approve Submission","Approve Submission & Add to new Post":"Approve Submission & Add to new Post","Delete Recipe Submission":"Delete Recipe Submission","Are you sure you want to delete":"Are you sure you want to delete","ID":"ID","Date":"Date","User":"User","Edit Nutrient":"Edit Nutrient","Delete Custom Nutrient":"Delete Custom Nutrient","Active":"Active","View and edit collections for this user":"View and edit collections for this user","User ID":"User ID","Display Name":"Display Name","Email":"Email","# Collections":"# Collections","Show All":"Show All","Has Saved Collections":"Has Saved Collections","Does not have Saved Collections":"Does not have Saved Collections","# Items in Inbox":"# Items in Inbox","# Items in Collections":"# Items in Collections","Your Custom Fields":"Your Custom Fields","Custom Field":"Custom Field","Custom Fields":"Custom Fields","Custom Nutrition Ingredient":"Custom Nutrition Ingredient","Custom Nutrition":"Custom Nutrition","Custom Nutrient":"Custom Nutrient","Custom Nutrients":"Custom Nutrients","Features":"Features","Saved Collection":"Saved Collection","Saved Collections":"Saved Collections","User Collection":"User Collection","User Collections":"User Collections","Recipe Submissions":"Recipe Submissions","Recipe Submission":"Recipe Submission","Edit Field":"Edit Field","Delete Field":"Delete Field","Edit Custom Ingredient":"Edit Custom Ingredient","Delete Custom Ingredient":"Delete Custom Ingredient","Edit Saved Collection":"Edit Saved Collection","Reload Recipes":"Reload Recipes","Duplicate Saved Collection":"Duplicate Saved Collection","Delete Saved Collection":"Delete Saved Collection","Description":"Description","Default":"Default","Enable to make this a default collection for new users. Does not affect those who have used the collections feature before.":"Enable to make this a default collection for new users. Does not affect those who have used the collections feature before.","Push to All":"Push to All","Enable to push this collection to everyone using the collections feature. Will affect both new and existing users and add this collection to their list.":"Enable to push this collection to everyone using the collections feature. Will affect both new and existing users and add this collection to their list.","Template":"Template","Enable to make this saved collection show up as an option after clicking \"Add Collection\". This would usually be an empty collection with a specific structure like \"Empty Week Plan\".":"Enable to make this saved collection show up as an option after clicking \"Add Collection\". This would usually be an empty collection with a specific structure like \"Empty Week Plan\".","Quick Add":"Quick Add","Enable to make this saved collection show up after clicking on \"Add Pre-made Collection\". Can be used to give users easy access to the meal plans you create.":"Enable to make this saved collection show up after clicking on \"Add Pre-made Collection\". Can be used to give users easy access to the meal plans you create.","What do you want the new order to be?":"What do you want the new order to be?","Save Collection Link":"Save Collection Link","# Items":"# Items"}};
</script>
<script data-minify="1" src="https://www.evolvingtable.com/wp-content/cache/min/1/wp-content/plugins/wp-recipe-maker/dist/public-modern.js?ver=1715188535" id="wprm-public-js" defer type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1"></script>
<script id="jpibfi-script-js-extra">
var jpibfi_options = {"hover":{"siteTitle":"Evolving Table","image_selector":".jpibfi_container img","disabled_classes":"wp-smiley;nopin","enabled_classes":"","min_image_height":0,"min_image_height_small":0,"min_image_width":0,"min_image_width_small":0,"show_on":"[single],[page],[archive],[search],[category]","disable_on":",9657,9659,1206,9663,10331,10299,10339,10340,10531,11077,11081","show_button":"hover","button_margin_bottom":20,"button_margin_top":20,"button_margin_left":20,"button_margin_right":20,"button_position":"top-left","description_option":["img_title","img_alt","post_title"],"transparency_value":0.2,"pin_image":"custom","pin_image_button":"square","pin_image_icon":"circle","pin_image_size":"normal","custom_image_url":"https:\/\/www.evolvingtable.com\/wp-content\/uploads\/2017\/08\/pinit.png","scale_pin_image":false,"pin_linked_url":true,"pinLinkedImages":true,"pinImageWidth":75,"pinImageHeight":75,"scroll_selector":"","support_srcset":false}};
</script>
<script data-minify="1" src="https://www.evolvingtable.com/wp-content/cache/min/1/wp-content/plugins/jquery-pin-it-button-for-images/js/jpibfi.client.js?ver=1715188535" id="jpibfi-script-js" defer type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1"></script>
<script id="dpsp-frontend-js-pro-js-before" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1">
		var dpsp_pin_button_data = {"pin_description_source":"post_pinterest_description","pinterest_pinnable_images":"all_images","pinterest_button_share_behavior":"all_images","post_pinterest_image_hidden":"yes","post_multiple_hidden_pinterest_images":"yes","lazy_load_compatibility":"yes","pinterest_title":"Spicy Sriracha Mayo","pinterest_description":"Thank goodness this Sriracha Mayo only takes 5 minutes to make, because you're going to want to put it on everything! A simple mix of sriracha sauce, creamy mayo, lemon juice and garlic combine to make a spicy dipping sauce that's perfect with fries, on fish tacos, smothered on burgers, or drizzled over sushi rolls and rice bowls!","pinterest_image_url":"https:\/\/www.evolvingtable.com\/wp-content\/uploads\/2024\/05\/Spicy-Sriracha-Mayo-PinStat24-1A.jpg"}
	
</script>
<script data-minify="1" async data-noptimize src="https://www.evolvingtable.com/wp-content/cache/min/1/wp-content/plugins/social-pug/assets/dist/front-end-pro.js?ver=1715188547" id="dpsp-frontend-js-pro-js" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1"></script>
<script id="wprmp-public-js-extra" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1">
var wprmp_public = {"user":"0","endpoints":{"private_notes":"https:\/\/www.evolvingtable.com\/wp-json\/wp-recipe-maker\/v1\/private-notes","user_rating":"https:\/\/www.evolvingtable.com\/wp-json\/wp-recipe-maker\/v1\/user-rating","collections":"https:\/\/www.evolvingtable.com\/wp-json\/wp\/v2\/wprm_collection","collections_helper":"https:\/\/www.evolvingtable.com\/wp-json\/wp-recipe-maker\/v1\/recipe-collections","nutrition":"https:\/\/www.evolvingtable.com\/wp-json\/wp-recipe-maker\/v1\/nutrition"},"settings":{"recipe_template_mode":"modern","features_adjustable_servings":true,"adjustable_servings_round_to_decimals":"2","unit_conversion_remember":true,"unit_conversion_temperature":"none","unit_conversion_system_1_temperature":"F","unit_conversion_system_2_temperature":"C","unit_conversion_advanced_servings_conversion":false,"unit_conversion_system_1_length_unit":"inch","unit_conversion_system_2_length_unit":"cm","fractions_enabled":false,"fractions_use_mixed":true,"fractions_use_symbols":true,"fractions_max_denominator":"8","unit_conversion_system_1_fractions":true,"unit_conversion_system_2_fractions":true,"unit_conversion_enabled":false,"decimal_separator":"point","features_comment_ratings":true,"features_user_ratings":true,"user_ratings_type":"modal","user_ratings_modal_title":"Rate This Recipe","user_ratings_thank_you_title":"Rate This Recipe","user_ratings_thank_you_message_with_comment":"<p>Thank you for voting!<\/p>","user_ratings_problem_message":"<p>There was a problem rating this recipe. Please try again later.<\/p>","user_ratings_force_comment_scroll_to":"","user_ratings_require_comment":true,"user_ratings_require_name":false,"user_ratings_require_email":false,"user_ratings_comment_suggestions_enabled":"never","rating_details_zero":"No ratings yet","rating_details_one":"%average% from 1 vote","rating_details_multiple":"%average% from %votes% votes","rating_details_user_voted":"(Your vote: %user%)","rating_details_user_not_voted":"(Click on the stars to vote!)","servings_changer_display":"tooltip_slider","template_ingredient_list_style":"checkbox","template_instruction_list_style":"decimal","template_color_icon":"#343434","recipe_collections_scroll_to_top":true,"recipe_collections_scroll_to_top_offset":"30"},"timer":{"sound_file":"https:\/\/www.evolvingtable.com\/wp-content\/plugins\/wp-recipe-maker-premium\/assets\/sounds\/alarm.mp3","text":{"start_timer":"Click to Start Timer"},"icons":{"pause":"<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\"><g ><path fill=\"#fffefe\" d=\"M9,2H4C3.4,2,3,2.4,3,3v18c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1V3C10,2.4,9.6,2,9,2z\"\/><path fill=\"#fffefe\" d=\"M20,2h-5c-0.6,0-1,0.4-1,1v18c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1V3C21,2.4,20.6,2,20,2z\"\/><\/g><\/svg>","play":"<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\"><g ><path fill=\"#fffefe\" d=\"M6.6,2.2C6.3,2,5.9,1.9,5.6,2.1C5.2,2.3,5,2.6,5,3v18c0,0.4,0.2,0.7,0.6,0.9C5.7,22,5.8,22,6,22c0.2,0,0.4-0.1,0.6-0.2l12-9c0.3-0.2,0.4-0.5,0.4-0.8s-0.1-0.6-0.4-0.8L6.6,2.2z\"\/><\/g><\/svg>","close":"<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\"><g ><path fill=\"#fffefe\" d=\"M22.7,4.3l-3-3c-0.4-0.4-1-0.4-1.4,0L12,7.6L5.7,1.3c-0.4-0.4-1-0.4-1.4,0l-3,3c-0.4,0.4-0.4,1,0,1.4L7.6,12l-6.3,6.3c-0.4,0.4-0.4,1,0,1.4l3,3c0.4,0.4,1,0.4,1.4,0l6.3-6.3l6.3,6.3c0.2,0.2,0.5,0.3,0.7,0.3s0.5-0.1,0.7-0.3l3-3c0.4-0.4,0.4-1,0-1.4L16.4,12l6.3-6.3C23.1,5.3,23.1,4.7,22.7,4.3z\"\/><\/g><\/svg>"}},"recipe_submission":{"max_file_size":671088640,"text":{"image_size":"The image file is too large"}},"collections":{"default":{"inbox":{"id":0,"name":"Inbox","nbrItems":0,"columns":[{"id":0,"name":"Recipes"}],"groups":[{"id":0,"name":""}],"items":{"0-0":[]}},"user":[]}},"add_to_collection":{"access":"logged_in","behaviour":"inbox","placement":"bottom","not_logged_in":"hide","not_logged_in_redirect":"","not_logged_in_tooltip":"","collections":{"inbox":"Inbox","user":[]}},"quick_access_shopping_list":{"access":"everyone"}};
</script>
<script data-minify="1" src="https://www.evolvingtable.com/wp-content/cache/min/1/wp-content/plugins/wp-recipe-maker-premium/dist/public-elite.js?ver=1715188535" id="wprmp-public-js" defer type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1"></script>
<script id="rocket-browser-checker-js-after" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1">
"use strict";var _createClass=function(){function defineProperties(target,props){for(var i=0;i<props.length;i++){var descriptor=props[i];descriptor.enumerable=descriptor.enumerable||!1,descriptor.configurable=!0,"value"in descriptor&&(descriptor.writable=!0),Object.defineProperty(target,descriptor.key,descriptor)}}return function(Constructor,protoProps,staticProps){return protoProps&&defineProperties(Constructor.prototype,protoProps),staticProps&&defineProperties(Constructor,staticProps),Constructor}}();function _classCallCheck(instance,Constructor){if(!(instance instanceof Constructor))throw new TypeError("Cannot call a class as a function")}var RocketBrowserCompatibilityChecker=function(){function RocketBrowserCompatibilityChecker(options){_classCallCheck(this,RocketBrowserCompatibilityChecker),this.passiveSupported=!1,this._checkPassiveOption(this),this.options=!!this.passiveSupported&&options}return _createClass(RocketBrowserCompatibilityChecker,[{key:"_checkPassiveOption",value:function(self){try{var options={get passive(){return!(self.passiveSupported=!0)}};window.addEventListener("test",null,options),window.removeEventListener("test",null,options)}catch(err){self.passiveSupported=!1}}},{key:"initRequestIdleCallback",value:function(){!1 in window&&(window.requestIdleCallback=function(cb){var start=Date.now();return setTimeout(function(){cb({didTimeout:!1,timeRemaining:function(){return Math.max(0,50-(Date.now()-start))}})},1)}),!1 in window&&(window.cancelIdleCallback=function(id){return clearTimeout(id)})}},{key:"isDataSaverModeOn",value:function(){return"connection"in navigator&&!0===navigator.connection.saveData}},{key:"supportsLinkPrefetch",value:function(){var elem=document.createElement("link");return elem.relList&&elem.relList.supports&&elem.relList.supports("prefetch")&&window.IntersectionObserver&&"isIntersecting"in IntersectionObserverEntry.prototype}},{key:"isSlowConnection",value:function(){return"connection"in navigator&&"effectiveType"in navigator.connection&&("2g"===navigator.connection.effectiveType||"slow-2g"===navigator.connection.effectiveType)}}]),RocketBrowserCompatibilityChecker}();
</script>
<script id="rocket-preload-links-js-extra" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1">
var RocketPreloadLinksConfig = {"excludeUris":"\/(?:.+\/)?feed(?:\/(?:.+\/?)?)?$|\/(?:.+\/)?embed\/|\/(index.php\/)?(.*)wp-json(\/.*|$)|\/refer\/|\/go\/|\/recommend\/|\/recommends\/","usesTrailingSlash":"1","imageExt":"jpg|jpeg|gif|png|tiff|bmp|webp|avif|pdf|doc|docx|xls|xlsx|php","fileExt":"jpg|jpeg|gif|png|tiff|bmp|webp|avif|pdf|doc|docx|xls|xlsx|php|html|htm","siteUrl":"https:\/\/www.evolvingtable.com","onHoverDelay":"100","rateThrottle":"3"};
</script>
<script id="rocket-preload-links-js-after" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1">
(function() {
"use strict";var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e=function(){function i(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(e,t,n){return t&&i(e.prototype,t),n&&i(e,n),e}}();function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var t=function(){function n(e,t){i(this,n),this.browser=e,this.config=t,this.options=this.browser.options,this.prefetched=new Set,this.eventTime=null,this.threshold=1111,this.numOnHover=0}return e(n,[{key:"init",value:function(){!this.browser.supportsLinkPrefetch()||this.browser.isDataSaverModeOn()||this.browser.isSlowConnection()||(this.regex={excludeUris:RegExp(this.config.excludeUris,"i"),images:RegExp(".("+this.config.imageExt+")$","i"),fileExt:RegExp(".("+this.config.fileExt+")$","i")},this._initListeners(this))}},{key:"_initListeners",value:function(e){-1<this.config.onHoverDelay&&document.addEventListener("mouseover",e.listener.bind(e),e.listenerOptions),document.addEventListener("mousedown",e.listener.bind(e),e.listenerOptions),document.addEventListener("touchstart",e.listener.bind(e),e.listenerOptions)}},{key:"listener",value:function(e){var t=e.target.closest("a"),n=this._prepareUrl(t);if(null!==n)switch(e.type){case"mousedown":case"touchstart":this._addPrefetchLink(n);break;case"mouseover":this._earlyPrefetch(t,n,"mouseout")}}},{key:"_earlyPrefetch",value:function(t,e,n){var i=this,r=setTimeout(function(){if(r=null,0===i.numOnHover)setTimeout(function(){return i.numOnHover=0},1e3);else if(i.numOnHover>i.config.rateThrottle)return;i.numOnHover++,i._addPrefetchLink(e)},this.config.onHoverDelay);t.addEventListener(n,function e(){t.removeEventListener(n,e,{passive:!0}),null!==r&&(clearTimeout(r),r=null)},{passive:!0})}},{key:"_addPrefetchLink",value:function(i){return this.prefetched.add(i.href),new Promise(function(e,t){var n=document.createElement("link");n.rel="prefetch",n.href=i.href,n.onload=e,n.onerror=t,document.head.appendChild(n)}).catch(function(){})}},{key:"_prepareUrl",value:function(e){if(null===e||"object"!==(void 0===e?"undefined":r(e))||!1 in e||-1===["http:","https:"].indexOf(e.protocol))return null;var t=e.href.substring(0,this.config.siteUrl.length),n=this._getPathname(e.href,t),i={original:e.href,protocol:e.protocol,origin:t,pathname:n,href:t+n};return this._isLinkOk(i)?i:null}},{key:"_getPathname",value:function(e,t){var n=t?e.substring(this.config.siteUrl.length):e;return n.startsWith("/")||(n="/"+n),this._shouldAddTrailingSlash(n)?n+"/":n}},{key:"_shouldAddTrailingSlash",value:function(e){return this.config.usesTrailingSlash&&!e.endsWith("/")&&!this.regex.fileExt.test(e)}},{key:"_isLinkOk",value:function(e){return null!==e&&"object"===(void 0===e?"undefined":r(e))&&(!this.prefetched.has(e.href)&&e.origin===this.config.siteUrl&&-1===e.href.indexOf("?")&&-1===e.href.indexOf("#")&&!this.regex.excludeUris.test(e.href)&&!this.regex.images.test(e.href))}}],[{key:"run",value:function(){"undefined"!=typeof RocketPreloadLinksConfig&&new n(new RocketBrowserCompatibilityChecker({capture:!0,passive:!0}),RocketPreloadLinksConfig).init()}}]),n}();t.run();
}());
</script>
<script id="theme-global-js-extra">
var cwp = {"favorites":"slickstream"};
</script>
<script data-minify="1" src="https://www.evolvingtable.com/wp-content/cache/min/1/wp-content/themes/evolvingtable-2023/assets/js/global.js?ver=1715188535" id="theme-global-js" defer></script>
<script src="https://www.evolvingtable.com/wp-includes/js/comment-reply.min.js?ver=6.5.3" id="comment-reply-js" async data-wp-strategy="async" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1"></script>
<script data-minify="1" src="https://www.evolvingtable.com/wp-content/cache/min/1/wp-content/themes/evolvingtable-2023/blocks/toc/toc.js?ver=1715188535" id="toc-js" defer type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1"></script>
<script id="wpforms-user-journey-js-extra" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1">
var wpforms_user_journey = {"is_ssl":"1","page_id":"19066"};
</script>
<script src="https://www.evolvingtable.com/wp-content/plugins/wpforms-user-journey/assets/js/wpforms-user-journey.min.js?ver=1.2.0" id="wpforms-user-journey-js" defer type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1"></script>
<script data-minify="1" defer src="https://www.evolvingtable.com/wp-content/cache/min/1/wp-content/plugins/akismet/_inc/akismet-frontend.js?ver=1715188547" id="akismet-frontend-js" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1"></script>
<script src="https://evolvingtable.ck.page/Lv9kV2Ognigwql28yb6J-recommendations.js?ver=1.6.3" id="convertkit-wpforms-creator-network-recommendations-js" defer type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1"></script>
<script src="https://www.evolvingtable.com/wp-content/plugins/wpforms/assets/lib/jquery.validate.min.js?ver=1.20.0" id="wpforms-validation-js" defer type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1"></script>
<script src="https://www.evolvingtable.com/wp-content/plugins/wpforms/assets/lib/mailcheck.min.js?ver=1.1.2" id="wpforms-mailcheck-js" defer type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1"></script>
<script src="https://www.evolvingtable.com/wp-content/plugins/wpforms/assets/lib/punycode.min.js?ver=1.0.0" id="wpforms-punycode-js" defer type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1"></script>
<script src="https://www.evolvingtable.com/wp-content/plugins/wpforms/assets/js/share/utils.min.js?ver=1.8.8.3" id="wpforms-generic-utils-js" defer type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1"></script>
<script src="https://www.evolvingtable.com/wp-content/plugins/wpforms/assets/js/frontend/wpforms.min.js?ver=1.8.8.3" id="wpforms-js" defer type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1"></script>
<svg style="display:none;"><defs><symbol id="logo-primary"viewBox="0 0 181 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.82258 5.43368V10.2148H10.2407V13.2463H3.82258V18.2988H11.0607V21.414H0V2.31844H11.0636V5.43368H3.82258Z" fill="white"/><path d="M19.7481 17.8888L23.5736 6.27961H27.6445L22.0463 21.4111H17.4037L11.8315 6.27961H15.9284L19.751 17.8888H19.7481Z" fill="white"/><path d="M48.4493 1.19823V21.4111H44.6238V1.19823H48.4493Z" fill="white"/><path d="M57.4341 17.8888L61.2595 6.27961H65.3304L59.7322 21.4111H55.0897L49.5175 6.27961H53.6144L57.437 17.8888H57.4341Z" fill="white"/><path d="M66.927 3.83419C66.4795 3.4069 66.2572 2.87277 66.2572 2.2376C66.2572 1.60243 66.4795 1.06831 66.927 0.641008C67.3716 0.21371 67.9317 6.10352e-05 68.6073 6.10352e-05C69.2829 6.10352e-05 69.8401 0.21371 70.2876 0.641008C70.7323 1.06831 70.9575 1.60243 70.9575 2.2376C70.9575 2.87277 70.7352 3.4069 70.2876 3.83419C69.8401 4.26149 69.28 4.47514 68.6073 4.47514C67.9346 4.47514 67.3745 4.26149 66.927 3.83419ZM70.4926 6.27961V21.4111H66.6672V6.27961H70.4926Z" fill="white"/><path d="M85.3788 7.76938C86.4903 8.90691 87.0447 10.4977 87.0447 12.5361V21.414H83.2192V13.0557C83.2192 11.8547 82.9189 10.9308 82.3184 10.2841C81.7179 9.63736 80.8979 9.314 79.8614 9.314C78.8249 9.314 77.9732 9.63736 77.3611 10.2841C76.752 10.9308 76.4459 11.8547 76.4459 13.0557V21.414H72.6205V6.27961H76.4459V8.16492C76.9569 7.50953 77.6066 6.99562 78.3976 6.62029C79.1887 6.24785 80.0606 6.06019 81.0047 6.06019C82.8063 6.06019 84.2643 6.62895 85.3759 7.76649L85.3788 7.76938Z" fill="white"/><path d="M98.4893 6.70402C99.3439 7.15153 100.019 7.72896 100.51 8.4392V6.2825H104.362V21.5238C104.362 22.9269 104.079 24.177 103.516 25.2799C102.95 26.3799 102.104 27.2547 100.975 27.9015C99.8463 28.5482 98.4806 28.8715 96.8783 28.8715C94.7302 28.8715 92.9662 28.3692 91.5919 27.3702C90.2176 26.3684 89.4381 25.0028 89.2562 23.2734H93.0528C93.252 23.9663 93.6851 24.5148 94.3491 24.9248C95.0132 25.3348 95.8187 25.5398 96.7657 25.5398C97.8772 25.5398 98.778 25.2078 99.4709 24.5437C100.164 23.8797 100.51 22.8721 100.51 21.5266V19.1765C100.019 19.8867 99.341 20.4786 98.4749 20.9521C97.6087 21.4256 96.6213 21.6623 95.5126 21.6623C94.2365 21.6623 93.073 21.3332 92.0163 20.6778C90.9596 20.0224 90.1281 19.0985 89.516 17.9062C88.9069 16.7138 88.6008 15.3424 88.6008 13.7949C88.6008 12.2473 88.9069 10.9077 89.516 9.72398C90.1252 8.54025 90.9538 7.63079 92.0019 6.99273C93.0499 6.35467 94.2192 6.03709 95.5126 6.03709C96.6415 6.03709 97.6347 6.2594 98.4893 6.70691V6.70402ZM99.9646 11.4563C99.6009 10.7922 99.1071 10.2812 98.4893 9.92608C97.8686 9.57096 97.2045 9.39484 96.4943 9.39484C95.784 9.39484 95.1287 9.56807 94.5281 9.91453C93.9276 10.261 93.4397 10.7662 93.0672 11.4303C92.6948 12.0943 92.5071 12.8825 92.5071 13.792C92.5071 14.7014 92.6948 15.4983 93.0672 16.1825C93.4397 16.8668 93.9334 17.3894 94.5426 17.7531C95.1518 18.1169 95.8043 18.2988 96.4943 18.2988C97.1843 18.2988 97.8686 18.1198 98.4893 17.7676C99.1071 17.4125 99.6009 16.9014 99.9646 16.2374C100.328 15.5733 100.51 14.7765 100.51 13.8468C100.51 12.9172 100.328 12.1232 99.9646 11.4563Z" fill="white"/><path d="M124.984 2.34731V5.43367H119.903V21.414H116.077V5.43367H110.996V2.34731H124.984Z" fill="white"/><path d="M125.261 9.72109C125.87 8.53736 126.699 7.62791 127.747 6.98985C128.795 6.35179 129.964 6.0342 131.258 6.0342C132.387 6.0342 133.374 6.26229 134.22 6.71846C135.066 7.17462 135.744 7.74628 136.255 8.4392V6.2825H140.107V21.414H136.255V19.2025C135.765 19.9127 135.086 20.4988 134.22 20.9636C133.354 21.4285 132.358 21.6595 131.229 21.6595C129.953 21.6595 128.792 21.3303 127.747 20.6749C126.699 20.0195 125.87 19.0957 125.261 17.9033C124.652 16.7109 124.346 15.3395 124.346 13.792C124.346 12.2445 124.652 10.9048 125.261 9.72109ZM135.71 11.4563C135.346 10.7922 134.852 10.2812 134.234 9.92608C133.614 9.57096 132.95 9.39484 132.239 9.39484C131.529 9.39484 130.874 9.56807 130.273 9.91453C129.673 10.261 129.185 10.7662 128.812 11.4303C128.44 12.0943 128.252 12.8825 128.252 13.792C128.252 14.7014 128.44 15.4983 128.812 16.1825C129.185 16.8668 129.678 17.3894 130.288 17.7531C130.897 18.1169 131.549 18.2988 132.239 18.2988C132.929 18.2988 133.614 18.1198 134.234 17.7676C134.852 17.4125 135.346 16.9014 135.71 16.2374C136.073 15.5733 136.255 14.7765 136.255 13.8468C136.255 12.9172 136.073 12.1232 135.71 11.4563Z" fill="white"/><path d="M148.041 6.71557C148.907 6.2594 149.894 6.03131 151.003 6.03131C152.296 6.03131 153.466 6.3489 154.514 6.98696C155.562 7.62502 156.39 8.53158 157 9.70377C157.609 10.8788 157.915 12.2387 157.915 13.7862C157.915 15.3337 157.609 16.7051 157 17.8975C156.39 19.0899 155.562 20.0138 154.514 20.6692C153.466 21.3245 152.296 21.6537 151.003 21.6537C149.874 21.6537 148.887 21.4314 148.041 20.9839C147.195 20.5363 146.516 19.9589 146.005 19.2487V21.4054H142.183V1.19823H146.005V8.49116C146.496 7.7636 147.175 7.17174 148.041 6.71557ZM153.448 11.4274C153.076 10.7634 152.582 10.2581 151.973 9.91164C151.364 9.56518 150.703 9.39195 149.992 9.39195C149.282 9.39195 148.65 9.57096 148.041 9.92319C147.432 10.2783 146.938 10.7922 146.565 11.4678C146.193 12.1405 146.005 12.9345 146.005 13.8439C146.005 14.7534 146.193 15.5474 146.565 16.2201C146.938 16.8928 147.432 17.4096 148.041 17.7647C148.65 18.1198 149.302 18.2959 149.992 18.2959C150.682 18.2959 151.364 18.114 151.973 17.7502C152.582 17.3865 153.076 16.8668 153.448 16.1941C153.821 15.5214 154.008 14.7187 154.008 13.7891C154.008 12.8594 153.821 12.0914 153.448 11.4274Z" fill="white"/><path d="M163.432 1.19823V21.4111H159.61V1.19823H163.432Z" fill="white"/><path d="M180.264 14.993H169.201C169.29 16.0844 169.674 16.9418 170.347 17.5597C171.02 18.1804 171.848 18.4894 172.833 18.4894C174.253 18.4894 175.264 17.8802 175.864 16.6589H179.99C179.554 18.1169 178.714 19.3122 177.478 20.2505C176.24 21.1888 174.718 21.6566 172.916 21.6566C171.458 21.6566 170.153 21.3332 168.996 20.6865C167.838 20.0398 166.937 19.1245 166.29 17.9408C165.644 16.7571 165.32 15.3914 165.32 13.8439C165.32 12.2964 165.638 10.9019 166.276 9.7182C166.914 8.53447 167.806 7.62502 168.952 6.98696C170.099 6.3489 171.421 6.03131 172.914 6.03131C174.406 6.03131 175.642 6.34024 176.779 6.96098C177.917 7.57883 178.8 8.4594 179.43 9.59694C180.059 10.7345 180.371 12.0424 180.371 13.5177C180.371 14.0634 180.333 14.5571 180.261 14.993H180.264ZM176.413 12.4263C176.395 11.4418 176.04 10.6565 175.347 10.0647C174.654 9.47279 173.809 9.17831 172.807 9.17831C171.86 9.17831 171.063 9.46413 170.416 10.0387C169.769 10.6132 169.374 11.4101 169.227 12.4292H176.41L176.413 12.4263Z" fill="white"/><path d="M37.9343 6.2796H35.2608V10.9077L37.9343 6.2796Z" fill="#CD4D44"/><path d="M32.0647 6.2796L34.7353 10.9077V6.2796H32.0647Z" fill="#CD4D44"/><path d="M32.0647 21.4111H34.7353V16.7831L32.0647 21.4111Z" fill="#37757F"/><path d="M37.9343 21.4111L35.2608 16.7831V21.4111H37.9343Z" fill="#37757F"/><path d="M42.5652 16.7802V14.1067H37.9342L42.5652 16.7802Z" fill="#6B6A6B"/><path d="M42.5652 10.9106L37.9342 13.5841H42.5652V10.9106Z" fill="#6B6A6B"/><path d="M27.4337 10.9106V13.5841H32.0618L27.4337 10.9106Z" fill="#E9BC50"/><path d="M27.4337 16.7802L32.0618 14.1067H27.4337V16.7802Z" fill="#E9BC50"/><path d="M42.4238 10.5699L40.5327 8.68172L37.2616 11.9529L42.4238 10.5699Z" fill="#E9C3B6"/><path d="M38.272 6.42108L36.8891 11.5833L40.1631 8.30928L38.272 6.42108Z" fill="#E9C3B6"/><path d="M27.5723 17.1209L29.4634 19.0091L32.7374 15.7379L27.5723 17.1209Z" fill="#929E53"/><path d="M31.724 21.2697L33.107 16.1075L29.8329 19.3815L31.724 21.2697Z" fill="#929E53"/><path d="M38.272 21.2697L40.1631 19.3815L36.8891 16.1075L38.272 21.2697Z" fill="#6C4F80"/><path d="M42.4238 17.1209L37.2616 15.7379L40.5327 19.0091L42.4238 17.1209Z" fill="#6C4F80"/><path d="M31.724 6.42108L29.8329 8.30928L33.107 11.5833L31.724 6.42108Z" fill="#A7DAD2"/><path d="M27.5723 10.5699L32.7374 11.9529L29.4634 8.68172L27.5723 10.5699Z" fill="#A7DAD2"/><path d="M26.8077 27.9137L26.3958 30.4182H25.5747L26.5084 24.7939H27.3185L26.9725 26.8866H27.0247C27.1583 26.6577 27.3378 26.4774 27.5629 26.3455C27.79 26.2119 28.0683 26.1451 28.3978 26.1451C28.6871 26.1451 28.9297 26.2046 29.1256 26.3236C29.3233 26.4426 29.4624 26.6202 29.543 26.8563C29.6254 27.0907 29.6382 27.3836 29.5814 27.7351L29.1311 30.4182H28.3099L28.7383 27.834C28.7896 27.5246 28.7493 27.2848 28.6175 27.1145C28.4857 26.9424 28.2797 26.8563 27.9996 26.8563C27.8037 26.8563 27.6224 26.8975 27.4558 26.9799C27.2911 27.0623 27.1519 27.1832 27.0384 27.3424C26.9249 27.4999 26.848 27.6903 26.8077 27.9137Z" fill="white"/><path d="M32.0311 30.5034C31.6173 30.5034 31.275 30.4146 31.004 30.237C30.7349 30.0576 30.5463 29.8058 30.4383 29.4818C30.3302 29.1559 30.3129 28.7741 30.3861 28.3366C30.4575 27.9045 30.6012 27.5237 30.8172 27.1941C31.0333 26.8646 31.3024 26.6074 31.6246 26.4224C31.9487 26.2375 32.3066 26.1451 32.6984 26.1451C32.9364 26.1451 33.1607 26.1844 33.3713 26.2632C33.5836 26.3419 33.764 26.4655 33.9123 26.6339C34.0606 26.8023 34.1631 27.0211 34.2198 27.2903C34.2784 27.5576 34.2766 27.8825 34.2144 28.2652L34.1677 28.5563H30.8118L30.9079 27.9411H33.4564C33.4948 27.7251 33.4848 27.5338 33.4262 27.3672C33.3676 27.1987 33.2669 27.066 33.1241 26.9689C32.9831 26.8719 32.8055 26.8234 32.5913 26.8234C32.3716 26.8234 32.1666 26.8811 31.9762 26.9964C31.7858 27.1118 31.6265 27.2591 31.4983 27.4386C31.372 27.6161 31.2923 27.7992 31.2594 27.9878L31.1633 28.5508C31.1157 28.8584 31.1239 29.1055 31.188 29.2923C31.2539 29.479 31.3692 29.6145 31.534 29.6987C31.6988 29.7829 31.9048 29.825 32.1519 29.825C32.3112 29.825 32.4586 29.8031 32.5941 29.7591C32.7314 29.7134 32.8531 29.6465 32.9593 29.5587C33.0655 29.4689 33.1543 29.3573 33.2257 29.2236L33.9782 29.3637C33.8775 29.5925 33.7328 29.793 33.5443 29.9651C33.3557 30.1354 33.1333 30.2681 32.8769 30.3633C32.6224 30.4567 32.3405 30.5034 32.0311 30.5034Z" fill="white"/><path d="M35.9946 30.5116C35.7273 30.5116 35.4939 30.4622 35.2943 30.3633C35.0948 30.2626 34.9474 30.1171 34.8522 29.9267C34.757 29.7362 34.7323 29.5028 34.778 29.2264C34.8183 28.9884 34.897 28.7925 35.0142 28.6387C35.1332 28.4849 35.2778 28.3631 35.4481 28.2734C35.6184 28.1819 35.8033 28.1132 36.0029 28.0674C36.2024 28.0217 36.4038 27.9878 36.607 27.9658C36.8633 27.9365 37.0711 27.9118 37.2304 27.8917C37.3915 27.8715 37.5124 27.8404 37.5929 27.7983C37.6735 27.7544 37.722 27.683 37.7385 27.5841V27.5649C37.7769 27.3269 37.7421 27.142 37.6341 27.0101C37.5279 26.8765 37.343 26.8097 37.0794 26.8097C36.8048 26.8097 36.5741 26.8701 36.3873 26.9909C36.2024 27.1118 36.066 27.2472 35.9781 27.3974L35.2421 27.2216C35.374 26.9653 35.5415 26.7584 35.7447 26.6009C35.9498 26.4417 36.174 26.3263 36.4175 26.2549C36.661 26.1817 36.91 26.1451 37.1645 26.1451C37.3329 26.1451 37.5078 26.1652 37.689 26.2055C37.8703 26.2439 38.0351 26.3153 38.1834 26.4197C38.3335 26.5241 38.4452 26.6733 38.5184 26.8673C38.5916 27.0596 38.6026 27.3095 38.5514 27.6171L38.0873 30.4182H37.2853L37.3842 29.8415H37.3513C37.2817 29.9477 37.1847 30.0521 37.0602 30.1546C36.9375 30.2571 36.7874 30.3423 36.6098 30.41C36.4322 30.4777 36.2271 30.5116 35.9946 30.5116ZM36.2747 29.8525C36.5036 29.8525 36.7059 29.8076 36.8816 29.7179C37.0592 29.6282 37.203 29.5111 37.3128 29.3664C37.4227 29.22 37.4913 29.0634 37.5188 28.8968L37.6094 28.3531C37.5746 28.3823 37.5133 28.4089 37.4254 28.4327C37.3394 28.4565 37.2423 28.4776 37.1343 28.4959C37.0263 28.5142 36.9201 28.5297 36.8157 28.5425C36.7132 28.5554 36.6281 28.5673 36.5603 28.5782C36.3992 28.5984 36.2482 28.6323 36.1072 28.6799C35.9681 28.7275 35.8518 28.7961 35.7584 28.8858C35.6651 28.9737 35.6065 29.0909 35.5827 29.2373C35.5497 29.4406 35.5982 29.5944 35.7282 29.6987C35.86 29.8012 36.0422 29.8525 36.2747 29.8525Z" fill="white"/><path d="M40.9358 24.7939L40.0021 30.4182H39.1809L40.1147 24.7939H40.9358Z" fill="white"/><path d="M43.7789 26.2L43.6717 26.8591H41.3676L41.4747 26.2H43.7789ZM42.2574 25.1894H43.0786L42.414 29.1797C42.3883 29.339 42.3929 29.4589 42.4277 29.5394C42.4625 29.6182 42.5156 29.6722 42.587 29.7015C42.6602 29.7289 42.7417 29.7427 42.8314 29.7427C42.8973 29.7427 42.955 29.7381 43.0044 29.7289C43.0538 29.7198 43.0932 29.7124 43.1225 29.707L43.1664 30.3853C43.1115 30.4036 43.0374 30.4219 42.944 30.4402C42.8524 30.4603 42.7408 30.4713 42.6089 30.4732C42.3929 30.4768 42.1979 30.4384 42.024 30.3578C41.8501 30.2754 41.7201 30.1509 41.634 29.9843C41.548 29.8159 41.5269 29.6044 41.5709 29.3499L42.2574 25.1894Z" fill="white"/><path d="M45.3106 27.9137L44.8986 30.4182H44.0775L45.0112 24.7939H45.8214L45.4753 26.8866H45.5275C45.6612 26.6577 45.8406 26.4774 46.0658 26.3455C46.2928 26.2119 46.5711 26.1451 46.9006 26.1451C47.1899 26.1451 47.4325 26.2046 47.6284 26.3236C47.8261 26.4426 47.9653 26.6202 48.0458 26.8563C48.1282 27.0907 48.141 27.3836 48.0843 27.7351L47.6339 30.4182H46.8128L47.2412 27.834C47.2924 27.5246 47.2522 27.2848 47.1203 27.1145C46.9885 26.9424 46.7826 26.8563 46.5024 26.8563C46.3065 26.8563 46.1253 26.8975 45.9587 26.9799C45.7939 27.0623 45.6548 27.1832 45.5413 27.3424C45.4277 27.4999 45.3508 27.6903 45.3106 27.9137Z" fill="white"/><path d="M48.8368 32.0001C48.7123 32.0001 48.6015 31.99 48.5045 31.9699C48.4074 31.9516 48.3351 31.9314 48.2875 31.9094L48.6006 31.2366C48.7452 31.2769 48.8743 31.2925 48.9878 31.2833C49.1031 31.2741 49.2112 31.2265 49.3119 31.1405C49.4125 31.0544 49.5151 30.919 49.6194 30.7341L49.7732 30.4567L48.9466 26.2H49.7924L50.3142 29.4818H50.3582L51.973 26.2H52.8875L50.3582 30.9757C50.2392 31.2027 50.1037 31.3913 49.9517 31.5414C49.8016 31.6934 49.6332 31.8078 49.4464 31.8847C49.2615 31.9616 49.0583 32.0001 48.8368 32.0001Z" fill="white"/><path d="M58.6965 27.2298L57.9303 27.3617C57.9138 27.2646 57.8799 27.1731 57.8287 27.087C57.7792 27.001 57.7032 26.9314 57.6007 26.8783C57.4982 26.8234 57.3618 26.7959 57.1915 26.7959C56.9553 26.7959 56.7485 26.8499 56.5709 26.958C56.3951 27.066 56.2944 27.2033 56.2688 27.3699C56.245 27.5054 56.277 27.6152 56.3649 27.6994C56.4528 27.7818 56.6075 27.8505 56.829 27.9054L57.4771 28.0592C57.8506 28.1489 58.1179 28.289 58.279 28.4794C58.442 28.668 58.4987 28.9133 58.4493 29.2154C58.4072 29.4662 58.2973 29.6886 58.1198 29.8827C57.944 30.0768 57.7188 30.2287 57.4442 30.3386C57.1696 30.4484 56.8638 30.5034 56.5269 30.5034C56.0473 30.5034 55.6738 30.4018 55.4065 30.1985C55.1392 29.9953 55.0018 29.7079 54.9945 29.3362L55.8074 29.2154C55.8221 29.4223 55.8962 29.5788 56.0299 29.685C56.1653 29.7893 56.353 29.8415 56.5928 29.8415C56.8675 29.8434 57.0972 29.7857 57.2822 29.6685C57.4671 29.5513 57.5723 29.4094 57.598 29.2428C57.6199 29.1128 57.5906 29.0048 57.5101 28.9188C57.4314 28.8327 57.2922 28.7668 57.0927 28.7211L56.4116 28.5645C56.0308 28.4748 55.7616 28.3302 55.6042 28.1306C55.4467 27.931 55.3936 27.6802 55.4449 27.3781C55.4852 27.131 55.5895 26.9159 55.758 26.7328C55.9283 26.5479 56.1434 26.4041 56.4034 26.3016C56.6633 26.1972 56.9508 26.1451 57.2657 26.1451C57.7252 26.1451 58.0703 26.2439 58.301 26.4417C58.5317 26.6376 58.6635 26.9003 58.6965 27.2298Z" fill="white"/><path d="M58.888 32.0001L59.8602 26.2H60.6621L60.5495 26.8838H60.6182C60.6804 26.7959 60.7646 26.6943 60.8708 26.579C60.9788 26.4636 61.1207 26.3629 61.2965 26.2769C61.4722 26.189 61.691 26.1451 61.9528 26.1451C62.2934 26.1451 62.5817 26.2311 62.8179 26.4032C63.0541 26.5753 63.2225 26.8234 63.3232 27.1475C63.4239 27.4715 63.4367 27.8615 63.3617 28.3174C63.2866 28.7732 63.1456 29.1641 62.9387 29.49C62.7318 29.8141 62.481 30.064 62.1863 30.2397C61.8933 30.4137 61.5757 30.5006 61.2333 30.5006C60.977 30.5006 60.7747 30.4576 60.6264 30.3715C60.4799 30.2855 60.371 30.1848 60.2996 30.0695C60.2282 29.9541 60.1742 29.8516 60.1376 29.7619H60.0881L59.7146 32.0001H58.888ZM60.3133 28.3091C60.2657 28.6057 60.2657 28.8657 60.3133 29.089C60.3609 29.3124 60.4561 29.4873 60.5989 29.6136C60.7436 29.7381 60.934 29.8003 61.1702 29.8003C61.4155 29.8003 61.6306 29.7353 61.8155 29.6053C62.0004 29.4735 62.1533 29.295 62.2741 29.0698C62.3968 28.8446 62.4819 28.5911 62.5295 28.3091C62.5753 28.0308 62.5744 27.7809 62.5268 27.5594C62.481 27.3379 62.3867 27.163 62.2439 27.0349C62.1011 26.9067 61.9061 26.8426 61.659 26.8426C61.4191 26.8426 61.2068 26.904 61.0219 27.0266C60.8388 27.1493 60.6868 27.3205 60.566 27.5402C60.4451 27.7599 60.3609 28.0162 60.3133 28.3091Z" fill="white"/><path d="M63.9294 30.4182L64.6325 26.2H65.4536L64.7506 30.4182H63.9294ZM65.2147 25.5409C65.0719 25.5409 64.951 25.4933 64.8522 25.3981C64.7551 25.3011 64.7103 25.1857 64.7176 25.0521C64.7249 24.9166 64.7817 24.8012 64.8879 24.706C64.9941 24.609 65.1177 24.5605 65.2586 24.5605C65.4014 24.5605 65.5214 24.609 65.6184 24.706C65.7154 24.8012 65.7612 24.9166 65.7557 25.0521C65.7484 25.1857 65.6916 25.3011 65.5854 25.3981C65.4811 25.4933 65.3575 25.5409 65.2147 25.5409Z" fill="white"/><path d="M67.0911 27.9137L66.6791 30.4182H65.858L66.561 26.2H67.3492L67.2339 26.8866H67.286C67.4197 26.6614 67.6019 26.4819 67.8326 26.3483C68.0651 26.2128 68.3397 26.1451 68.6564 26.1451C68.942 26.1451 69.1819 26.2055 69.3759 26.3263C69.5718 26.4453 69.7101 26.6229 69.7906 26.8591C69.873 27.0953 69.8858 27.3873 69.8291 27.7351L69.3787 30.4182H68.5576L68.9887 27.834C69.0382 27.5283 68.9979 27.2893 68.8679 27.1172C68.7397 26.9433 68.5356 26.8563 68.2555 26.8563C68.0651 26.8563 67.8884 26.8975 67.7254 26.9799C67.5643 27.0623 67.4279 27.1832 67.3163 27.3424C67.2064 27.4999 67.1313 27.6903 67.0911 27.9137Z" fill="white"/><path d="M74.1709 27.2298L73.4047 27.3617C73.3882 27.2646 73.3543 27.1731 73.3031 27.087C73.2536 27.001 73.1777 26.9314 73.0751 26.8783C72.9726 26.8234 72.8362 26.7959 72.6659 26.7959C72.4298 26.7959 72.2229 26.8499 72.0453 26.958C71.8695 27.066 71.7688 27.2033 71.7432 27.3699C71.7194 27.5054 71.7514 27.6152 71.8393 27.6994C71.9272 27.7818 72.0819 27.8505 72.3034 27.9054L72.9516 28.0592C73.325 28.1489 73.5923 28.289 73.7535 28.4794C73.9164 28.668 73.9732 28.9133 73.9237 29.2154C73.8816 29.4662 73.7718 29.6886 73.5942 29.8827C73.4184 30.0768 73.1932 30.2287 72.9186 30.3386C72.644 30.4484 72.3382 30.5034 72.0014 30.5034C71.5217 30.5034 71.1482 30.4018 70.8809 30.1985C70.6136 29.9953 70.4763 29.7079 70.4689 29.3362L71.2818 29.2154C71.2965 29.4223 71.3706 29.5788 71.5043 29.685C71.6398 29.7893 71.8274 29.8415 72.0673 29.8415C72.3419 29.8434 72.5717 29.7857 72.7566 29.6685C72.9415 29.5513 73.0468 29.4094 73.0724 29.2428C73.0944 29.1128 73.0651 29.0048 72.9845 28.9188C72.9058 28.8327 72.7666 28.7668 72.5671 28.7211L71.886 28.5645C71.5052 28.4748 71.2361 28.3302 71.0786 28.1306C70.9212 27.931 70.8681 27.6802 70.9193 27.3781C70.9596 27.131 71.064 26.9159 71.2324 26.7328C71.4027 26.5479 71.6178 26.4041 71.8778 26.3016C72.1378 26.1972 72.4252 26.1451 72.7401 26.1451C73.1996 26.1451 73.5447 26.2439 73.7754 26.4417C74.0061 26.6376 74.1379 26.9003 74.1709 27.2298Z" fill="white"/><path d="M78.466 30.5034C78.0651 30.5034 77.73 30.4118 77.4609 30.2287C77.1918 30.0438 77.0023 29.7857 76.8924 29.4543C76.7844 29.1211 76.7661 28.7339 76.8375 28.2926C76.9071 27.8606 77.0471 27.4834 77.2577 27.1612C77.47 26.839 77.7355 26.589 78.0541 26.4115C78.3745 26.2339 78.7306 26.1451 79.1224 26.1451C79.5233 26.1451 79.8575 26.2375 80.1248 26.4224C80.3939 26.6074 80.5834 26.8664 80.6932 27.1996C80.8031 27.5328 80.8223 27.921 80.7509 28.364C80.6813 28.7925 80.5394 29.1678 80.3252 29.49C80.1129 29.8104 79.8474 30.0594 79.5288 30.237C79.2103 30.4146 78.856 30.5034 78.466 30.5034ZM78.5127 29.8141C78.7763 29.8141 79.0061 29.7445 79.202 29.6053C79.3997 29.4662 79.5609 29.2813 79.6854 29.0506C79.8099 28.8199 79.895 28.5673 79.9408 28.2926C79.9829 28.0272 79.982 27.7846 79.938 27.5649C79.8959 27.3433 79.8044 27.1658 79.6634 27.0321C79.5224 26.8985 79.3265 26.8316 79.0757 26.8316C78.812 26.8316 78.5804 26.9021 78.3809 27.0431C78.1832 27.1822 78.022 27.3681 77.8975 27.6006C77.7749 27.8331 77.6916 28.0867 77.6476 28.3613C77.6055 28.6249 77.6055 28.8675 77.6476 29.089C77.6897 29.3087 77.7813 29.4845 77.9223 29.6163C78.0632 29.7481 78.2601 29.8141 78.5127 29.8141Z" fill="white"/><path d="M82.5655 27.9137L82.1535 30.4182H81.3324L82.0355 26.2H82.8236L82.7083 26.8866H82.7605C82.8941 26.6614 83.0763 26.4819 83.307 26.3483C83.5395 26.2128 83.8141 26.1451 84.1308 26.1451C84.4165 26.1451 84.6563 26.2055 84.8504 26.3263C85.0463 26.4453 85.1845 26.6229 85.265 26.8591C85.3474 27.0953 85.3602 27.3873 85.3035 27.7351L84.8531 30.4182H84.032L84.4631 27.834C84.5126 27.5283 84.4723 27.2893 84.3423 27.1172C84.2141 26.9433 84.01 26.8563 83.7299 26.8563C83.5395 26.8563 83.3628 26.8975 83.1999 26.9799C83.0388 27.0623 82.9024 27.1832 82.7907 27.3424C82.6808 27.4999 82.6058 27.6903 82.5655 27.9137Z" fill="white"/><path d="M108.928 30.5034C108.517 30.5034 108.181 30.4109 107.92 30.226C107.658 30.0392 107.476 29.782 107.373 29.4543C107.271 29.1266 107.254 28.7513 107.324 28.3283C107.393 27.8999 107.535 27.5219 107.749 27.1941C107.965 26.8646 108.235 26.6074 108.56 26.4224C108.885 26.2375 109.247 26.1451 109.644 26.1451C109.965 26.1451 110.24 26.2046 110.471 26.3236C110.702 26.4408 110.876 26.6055 110.995 26.8179C111.114 27.0303 111.166 27.2784 111.149 27.5621H110.35C110.337 27.3644 110.264 27.1941 110.13 27.0513C109.997 26.9085 109.8 26.8371 109.54 26.8371C109.311 26.8371 109.101 26.8975 108.908 27.0184C108.716 27.1374 108.554 27.3076 108.422 27.5292C108.29 27.7489 108.201 28.0089 108.153 28.3091C108.102 28.6167 108.105 28.8822 108.161 29.1055C108.218 29.3289 108.322 29.5019 108.474 29.6246C108.626 29.7472 108.818 29.8086 109.048 29.8086C109.206 29.8086 109.352 29.7802 109.488 29.7234C109.625 29.6648 109.746 29.5815 109.85 29.4735C109.956 29.3655 110.039 29.2355 110.097 29.0836H110.899C110.821 29.3563 110.689 29.5999 110.504 29.8141C110.321 30.0283 110.096 30.1967 109.828 30.3194C109.561 30.442 109.261 30.5034 108.928 30.5034Z" fill="white"/><path d="M113.304 24.7939L112.371 30.4182H111.55L112.483 24.7939H113.304Z" fill="white"/><path d="M114.692 30.5116C114.425 30.5116 114.191 30.4622 113.992 30.3633C113.792 30.2626 113.645 30.1171 113.549 29.9267C113.454 29.7362 113.43 29.5028 113.475 29.2264C113.516 28.9884 113.594 28.7925 113.712 28.6387C113.831 28.4849 113.975 28.3631 114.145 28.2734C114.316 28.1819 114.501 28.1132 114.7 28.0674C114.9 28.0217 115.101 27.9878 115.304 27.9658C115.561 27.9365 115.768 27.9118 115.928 27.8917C116.089 27.8715 116.21 27.8404 116.29 27.7983C116.371 27.7544 116.419 27.683 116.436 27.5841V27.5649C116.474 27.3269 116.439 27.142 116.331 27.0101C116.225 26.8765 116.04 26.8097 115.777 26.8097C115.502 26.8097 115.271 26.8701 115.085 26.9909C114.9 27.1118 114.763 27.2472 114.675 27.3974L113.939 27.2216C114.071 26.9653 114.239 26.7584 114.442 26.6009C114.647 26.4417 114.871 26.3263 115.115 26.2549C115.358 26.1817 115.607 26.1451 115.862 26.1451C116.03 26.1451 116.205 26.1652 116.386 26.2055C116.568 26.2439 116.732 26.3153 116.881 26.4197C117.031 26.5241 117.142 26.6733 117.216 26.8673C117.289 27.0596 117.3 27.3095 117.249 27.6171L116.785 30.4182H115.983L116.082 29.8415H116.049C115.979 29.9477 115.882 30.0521 115.757 30.1546C115.635 30.2571 115.485 30.3423 115.307 30.41C115.129 30.4777 114.924 30.5116 114.692 30.5116ZM114.972 29.8525C115.201 29.8525 115.403 29.8076 115.579 29.7179C115.757 29.6282 115.9 29.5111 116.01 29.3664C116.12 29.22 116.189 29.0634 116.216 28.8968L116.307 28.3531C116.272 28.3823 116.211 28.4089 116.123 28.4327C116.037 28.4565 115.94 28.4776 115.832 28.4959C115.724 28.5142 115.617 28.5297 115.513 28.5425C115.411 28.5554 115.325 28.5673 115.258 28.5782C115.097 28.5984 114.945 28.6323 114.805 28.6799C114.665 28.7275 114.549 28.7961 114.456 28.8858C114.362 28.9737 114.304 29.0909 114.28 29.2373C114.247 29.4406 114.296 29.5944 114.426 29.6987C114.557 29.8012 114.74 29.8525 114.972 29.8525Z" fill="white"/><path d="M121.572 27.2298L120.806 27.3617C120.789 27.2646 120.755 27.1731 120.704 27.087C120.655 27.001 120.579 26.9314 120.476 26.8783C120.374 26.8234 120.237 26.7959 120.067 26.7959C119.831 26.7959 119.624 26.8499 119.446 26.958C119.271 27.066 119.17 27.2033 119.144 27.3699C119.12 27.5054 119.153 27.6152 119.24 27.6994C119.328 27.7818 119.483 27.8505 119.705 27.9054L120.353 28.0592C120.726 28.1489 120.993 28.289 121.155 28.4794C121.317 28.668 121.374 28.9133 121.325 29.2154C121.283 29.4662 121.173 29.6886 120.995 29.8827C120.819 30.0768 120.594 30.2287 120.32 30.3386C120.045 30.4484 119.739 30.5034 119.402 30.5034C118.923 30.5034 118.549 30.4018 118.282 30.1985C118.015 29.9953 117.877 29.7079 117.87 29.3362L118.683 29.2154C118.698 29.4223 118.772 29.5788 118.905 29.685C119.041 29.7893 119.228 29.8415 119.468 29.8415C119.743 29.8434 119.973 29.7857 120.158 29.6685C120.343 29.5513 120.448 29.4094 120.473 29.2428C120.495 29.1128 120.466 29.0048 120.386 28.9188C120.307 28.8327 120.168 28.7668 119.968 28.7211L119.287 28.5645C118.906 28.4748 118.637 28.3302 118.48 28.1306C118.322 27.931 118.269 27.6802 118.32 27.3781C118.361 27.131 118.465 26.9159 118.633 26.7328C118.804 26.5479 119.019 26.4041 119.279 26.3016C119.539 26.1972 119.826 26.1451 120.141 26.1451C120.601 26.1451 120.946 26.2439 121.177 26.4417C121.407 26.6376 121.539 26.9003 121.572 27.2298Z" fill="white"/><path d="M125.718 27.2298L124.952 27.3617C124.935 27.2646 124.902 27.1731 124.85 27.087C124.801 27.001 124.725 26.9314 124.622 26.8783C124.52 26.8234 124.383 26.7959 124.213 26.7959C123.977 26.7959 123.77 26.8499 123.593 26.958C123.417 27.066 123.316 27.2033 123.29 27.3699C123.267 27.5054 123.299 27.6152 123.387 27.6994C123.474 27.7818 123.629 27.8505 123.851 27.9054L124.499 28.0592C124.872 28.1489 125.14 28.289 125.301 28.4794C125.464 28.668 125.52 28.9133 125.471 29.2154C125.429 29.4662 125.319 29.6886 125.141 29.8827C124.966 30.0768 124.74 30.2287 124.466 30.3386C124.191 30.4484 123.885 30.5034 123.549 30.5034C123.069 30.5034 122.695 30.4018 122.428 30.1985C122.161 29.9953 122.023 29.7079 122.016 29.3362L122.829 29.2154C122.844 29.4223 122.918 29.5788 123.052 29.685C123.187 29.7893 123.375 29.8415 123.614 29.8415C123.889 29.8434 124.119 29.7857 124.304 29.6685C124.489 29.5513 124.594 29.4094 124.62 29.2428C124.642 29.1128 124.612 29.0048 124.532 28.9188C124.453 28.8327 124.314 28.7668 124.114 28.7211L123.433 28.5645C123.052 28.4748 122.783 28.3302 122.626 28.1306C122.468 27.931 122.415 27.6802 122.467 27.3781C122.507 27.131 122.611 26.9159 122.78 26.7328C122.95 26.5479 123.165 26.4041 123.425 26.3016C123.685 26.1972 123.972 26.1451 124.287 26.1451C124.747 26.1451 125.092 26.2439 125.323 26.4417C125.553 26.6376 125.685 26.9003 125.718 27.2298Z" fill="white"/><path d="M126.171 30.4182L126.874 26.2H127.695L126.992 30.4182H126.171ZM127.456 25.5409C127.313 25.5409 127.192 25.4933 127.093 25.3981C126.996 25.3011 126.951 25.1857 126.959 25.0521C126.966 24.9166 127.023 24.8012 127.129 24.706C127.235 24.609 127.359 24.5605 127.5 24.5605C127.643 24.5605 127.762 24.609 127.859 24.706C127.957 24.8012 128.002 24.9166 127.997 25.0521C127.989 25.1857 127.933 25.3011 127.827 25.3981C127.722 25.4933 127.599 25.5409 127.456 25.5409Z" fill="white"/><path d="M129.862 30.5034C129.452 30.5034 129.116 30.4109 128.854 30.226C128.593 30.0392 128.41 29.782 128.308 29.4543C128.205 29.1266 128.189 28.7513 128.258 28.3283C128.328 27.8999 128.47 27.5219 128.684 27.1941C128.9 26.8646 129.17 26.6074 129.494 26.4224C129.82 26.2375 130.182 26.1451 130.579 26.1451C130.899 26.1451 131.175 26.2046 131.406 26.3236C131.636 26.4408 131.811 26.6055 131.93 26.8179C132.049 27.0303 132.1 27.2784 132.084 27.5621H131.285C131.272 27.3644 131.199 27.1941 131.065 27.0513C130.931 26.9085 130.735 26.8371 130.475 26.8371C130.246 26.8371 130.035 26.8975 129.843 27.0184C129.651 27.1374 129.489 27.3076 129.357 27.5292C129.225 27.7489 129.135 28.0089 129.088 28.3091C129.036 28.6167 129.039 28.8822 129.096 29.1055C129.153 29.3289 129.257 29.5019 129.409 29.6246C129.561 29.7472 129.752 29.8086 129.983 29.8086C130.14 29.8086 130.287 29.7802 130.422 29.7234C130.56 29.6648 130.681 29.5815 130.785 29.4735C130.891 29.3655 130.974 29.2355 131.032 29.0836H131.834C131.755 29.3563 131.623 29.5999 131.439 29.8141C131.255 30.0283 131.03 30.1967 130.763 30.3194C130.496 30.442 130.195 30.5034 129.862 30.5034Z" fill="white"/><path d="M134.531 30.4182L135.234 26.2H136.028L135.915 26.8701H135.959C136.072 26.6431 136.238 26.4646 136.456 26.3346C136.674 26.2027 136.906 26.1368 137.153 26.1368C137.207 26.1368 137.267 26.1387 137.335 26.1423C137.402 26.1442 137.457 26.1487 137.5 26.1561L137.368 26.9415C137.337 26.9323 137.28 26.9223 137.197 26.9113C137.115 26.8985 137.03 26.8921 136.942 26.8921C136.75 26.8921 136.571 26.9332 136.407 27.0156C136.242 27.0962 136.104 27.2088 135.992 27.3534C135.88 27.4962 135.808 27.6592 135.775 27.8423L135.352 30.4182H134.531Z" fill="white"/><path d="M139.17 30.5034C138.756 30.5034 138.414 30.4146 138.143 30.237C137.874 30.0576 137.685 29.8058 137.577 29.4818C137.469 29.1559 137.452 28.7741 137.525 28.3366C137.596 27.9045 137.74 27.5237 137.956 27.1941C138.172 26.8646 138.441 26.6074 138.763 26.4224C139.088 26.2375 139.445 26.1451 139.837 26.1451C140.075 26.1451 140.3 26.1844 140.51 26.2632C140.722 26.3419 140.903 26.4655 141.051 26.6339C141.199 26.8023 141.302 27.0211 141.359 27.2903C141.417 27.5576 141.415 27.8825 141.353 28.2652L141.306 28.5563H137.951L138.047 27.9411H140.595C140.634 27.7251 140.624 27.5338 140.565 27.3672C140.506 27.1987 140.406 27.066 140.263 26.9689C140.122 26.8719 139.944 26.8234 139.73 26.8234C139.51 26.8234 139.305 26.8811 139.115 26.9964C138.925 27.1118 138.765 27.2591 138.637 27.4386C138.511 27.6161 138.431 27.7992 138.398 27.9878L138.302 28.5508C138.255 28.8584 138.263 29.1055 138.327 29.2923C138.393 29.479 138.508 29.6145 138.673 29.6987C138.838 29.7829 139.044 29.825 139.291 29.825C139.45 29.825 139.597 29.8031 139.733 29.7591C139.87 29.7134 139.992 29.6465 140.098 29.5587C140.204 29.4689 140.293 29.3573 140.365 29.2236L141.117 29.3637C141.016 29.5925 140.872 29.793 140.683 29.9651C140.495 30.1354 140.272 30.2681 140.016 30.3633C139.761 30.4567 139.479 30.5034 139.17 30.5034Z" fill="white"/><path d="M143.683 30.5034C143.273 30.5034 142.937 30.4109 142.675 30.226C142.413 30.0392 142.231 29.782 142.128 29.4543C142.026 29.1266 142.009 28.7513 142.079 28.3283C142.148 27.8999 142.29 27.5219 142.505 27.1941C142.721 26.8646 142.991 26.6074 143.315 26.4224C143.641 26.2375 144.002 26.1451 144.399 26.1451C144.72 26.1451 144.995 26.2046 145.226 26.3236C145.457 26.4408 145.632 26.6055 145.751 26.8179C145.87 27.0303 145.921 27.2784 145.904 27.5621H145.105C145.092 27.3644 145.019 27.1941 144.886 27.0513C144.752 26.9085 144.555 26.8371 144.295 26.8371C144.066 26.8371 143.856 26.8975 143.663 27.0184C143.471 27.1374 143.309 27.3076 143.177 27.5292C143.046 27.7489 142.956 28.0089 142.908 28.3091C142.857 28.6167 142.86 28.8822 142.916 29.1055C142.973 29.3289 143.078 29.5019 143.23 29.6246C143.382 29.7472 143.573 29.8086 143.804 29.8086C143.961 29.8086 144.107 29.7802 144.243 29.7234C144.38 29.6648 144.501 29.5815 144.605 29.4735C144.712 29.3655 144.794 29.2355 144.853 29.0836H145.654C145.576 29.3563 145.444 29.5999 145.259 29.8141C145.076 30.0283 144.851 30.1967 144.583 30.3194C144.316 30.442 144.016 30.5034 143.683 30.5034Z" fill="white"/><path d="M146.305 30.4182L147.008 26.2H147.829L147.126 30.4182H146.305ZM147.59 25.5409C147.447 25.5409 147.326 25.4933 147.227 25.3981C147.13 25.3011 147.086 25.1857 147.093 25.0521C147.1 24.9166 147.157 24.8012 147.263 24.706C147.369 24.609 147.493 24.5605 147.634 24.5605C147.777 24.5605 147.897 24.609 147.994 24.706C148.091 24.8012 148.136 24.9166 148.131 25.0521C148.124 25.1857 148.067 25.3011 147.961 25.3981C147.856 25.4933 147.733 25.5409 147.59 25.5409Z" fill="white"/><path d="M147.97 32.0001L148.942 26.2H149.744L149.631 26.8838H149.7C149.762 26.7959 149.846 26.6943 149.952 26.579C150.06 26.4636 150.202 26.3629 150.378 26.2769C150.554 26.189 150.773 26.1451 151.034 26.1451C151.375 26.1451 151.663 26.2311 151.899 26.4032C152.136 26.5753 152.304 26.8234 152.405 27.1475C152.505 27.4715 152.518 27.8615 152.443 28.3174C152.368 28.7732 152.227 29.1641 152.02 29.49C151.813 29.8141 151.563 30.064 151.268 30.2397C150.975 30.4137 150.657 30.5006 150.315 30.5006C150.059 30.5006 149.856 30.4576 149.708 30.3715C149.561 30.2855 149.453 30.1848 149.381 30.0695C149.31 29.9541 149.256 29.8516 149.219 29.7619H149.17L148.796 32.0001H147.97ZM149.395 28.3091C149.347 28.6057 149.347 28.8657 149.395 29.089C149.442 29.3124 149.538 29.4873 149.68 29.6136C149.825 29.7381 150.016 29.8003 150.252 29.8003C150.497 29.8003 150.712 29.7353 150.897 29.6053C151.082 29.4735 151.235 29.295 151.356 29.0698C151.478 28.8446 151.564 28.5911 151.611 28.3091C151.657 28.0308 151.656 27.7809 151.608 27.5594C151.563 27.3379 151.468 27.163 151.325 27.0349C151.183 26.9067 150.988 26.8426 150.741 26.8426C150.501 26.8426 150.288 26.904 150.103 27.0266C149.92 27.1493 149.768 27.3205 149.648 27.5402C149.527 27.7599 149.442 28.0162 149.395 28.3091Z" fill="white"/><path d="M154.818 30.5034C154.404 30.5034 154.062 30.4146 153.791 30.237C153.522 30.0576 153.333 29.8058 153.225 29.4818C153.117 29.1559 153.1 28.7741 153.173 28.3366C153.244 27.9045 153.388 27.5237 153.604 27.1941C153.82 26.8646 154.089 26.6074 154.412 26.4224C154.736 26.2375 155.094 26.1451 155.485 26.1451C155.723 26.1451 155.948 26.1844 156.158 26.2632C156.371 26.3419 156.551 26.4655 156.699 26.6339C156.848 26.8023 156.95 27.0211 157.007 27.2903C157.065 27.5576 157.064 27.8825 157.001 28.2652L156.955 28.5563H153.599L153.695 27.9411H156.243C156.282 27.7251 156.272 27.5338 156.213 27.3672C156.155 27.1987 156.054 27.066 155.911 26.9689C155.77 26.8719 155.592 26.8234 155.378 26.8234C155.159 26.8234 154.954 26.8811 154.763 26.9964C154.573 27.1118 154.413 27.2591 154.285 27.4386C154.159 27.6161 154.079 27.7992 154.046 27.9878L153.95 28.5508C153.903 28.8584 153.911 29.1055 153.975 29.2923C154.041 29.479 154.156 29.6145 154.321 29.6987C154.486 29.7829 154.692 29.825 154.939 29.825C155.098 29.825 155.246 29.8031 155.381 29.7591C155.518 29.7134 155.64 29.6465 155.746 29.5587C155.852 29.4689 155.941 29.3573 156.013 29.2236L156.765 29.3637C156.664 29.5925 156.52 29.793 156.331 29.9651C156.143 30.1354 155.92 30.2681 155.664 30.3633C155.409 30.4567 155.127 30.5034 154.818 30.5034Z" fill="white"/><path d="M161.259 27.2298L160.492 27.3617C160.476 27.2646 160.442 27.1731 160.391 27.087C160.341 27.001 160.265 26.9314 160.163 26.8783C160.06 26.8234 159.924 26.7959 159.754 26.7959C159.518 26.7959 159.311 26.8499 159.133 26.958C158.957 27.066 158.857 27.2033 158.831 27.3699C158.807 27.5054 158.839 27.6152 158.927 27.6994C159.015 27.7818 159.17 27.8505 159.391 27.9054L160.039 28.0592C160.413 28.1489 160.68 28.289 160.841 28.4794C161.004 28.668 161.061 28.9133 161.012 29.2154C160.969 29.4662 160.86 29.6886 160.682 29.8827C160.506 30.0768 160.281 30.2287 160.006 30.3386C159.732 30.4484 159.426 30.5034 159.089 30.5034C158.609 30.5034 158.236 30.4018 157.969 30.1985C157.701 29.9953 157.564 29.7079 157.557 29.3362L158.37 29.2154C158.384 29.4223 158.458 29.5788 158.592 29.685C158.728 29.7893 158.915 29.8415 159.155 29.8415C159.43 29.8434 159.659 29.7857 159.844 29.6685C160.029 29.5513 160.135 29.4094 160.16 29.2428C160.182 29.1128 160.153 29.0048 160.072 28.9188C159.994 28.8327 159.854 28.7668 159.655 28.7211L158.974 28.5645C158.593 28.4748 158.324 28.3302 158.166 28.1306C158.009 27.931 157.956 27.6802 158.007 27.3781C158.047 27.131 158.152 26.9159 158.32 26.7328C158.49 26.5479 158.706 26.4041 158.966 26.3016C159.226 26.1972 159.513 26.1451 159.828 26.1451C160.287 26.1451 160.633 26.2439 160.863 26.4417C161.094 26.6376 161.226 26.9003 161.259 27.2298Z" fill="white"/></symbol><symbol id="utility-heart1"xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M15.346 3.006a5.054 5.054 0 00-3.414 1.51l-.164.169-.106-.113A5.097 5.097 0 007.936 3C4.55 3 2 5.725 2 9.362c0 4 3.091 7.94 8.522 11.427.41.257.835.428 1.245.428.413 0 .867-.181 1.251-.432 5.43-3.486 8.525-7.424 8.525-11.423C21.543 5.726 18.984 3 15.6 3l-.253.006zM15.599 5c2.251 0 3.944 1.804 3.944 4.362 0 3.162-2.69 6.584-7.611 9.744l-.165.094-.175-.1C6.686 15.949 4 12.527 4 9.362 4 6.801 5.686 5 7.936 5c1.27 0 2.301.67 2.95 1.877a1 1 0 001.758.006C13.314 5.661 14.328 5 15.6 5z"/></symbol><symbol id="utility-search"viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.5 2.5C6.08173 2.5 2.5 6.08173 2.5 10.5C2.5 14.9183 6.08172 18.5 10.5 18.5C12.3487 18.5 14.051 17.8729 15.4056 16.8199L19.7929 21.2071L19.8871 21.2903C20.2794 21.5953 20.8466 21.5676 21.2071 21.2071C21.5976 20.8166 21.5976 20.1834 21.2071 19.7929L16.8199 15.4056C17.8729 14.051 18.5 12.3487 18.5 10.5C18.5 6.08172 14.9183 2.5 10.5 2.5ZM10.5 4.5C13.8137 4.5 16.5 7.18629 16.5 10.5C16.5 13.8137 13.8137 16.5 10.5 16.5C7.18629 16.5 4.5 13.8137 4.5 10.5C4.5 7.18629 7.18629 4.5 10.5 4.5Z" stroke-width="0.75" /></symbol><symbol id="utility-close"viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M17.7864 7.62017L17.7071 7.7071L13.415 12L17.7071 16.2929C18.0976 16.6834 18.0976 17.3166 17.7071 17.7071C17.3466 18.0676 16.7794 18.0953 16.3871 17.7903L16.2929 17.7071L12 13.415L7.70711 17.7071C7.31658 18.0976 6.68342 18.0976 6.29289 17.7071C5.93241 17.3466 5.90468 16.7794 6.2097 16.3871L6.29289 16.2929L10.585 12L6.29289 7.7071C5.90237 7.31658 5.90237 6.68341 6.29289 6.29289C6.65338 5.9324 7.22061 5.90467 7.6129 6.2097L7.70711 6.29289L12 10.585L16.2929 6.29289L16.3798 6.21359C17.2605 5.48399 18.46 6.63151 17.8532 7.53111L17.7864 7.62017Z"/></symbol><symbol id="utility-menu"width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="2.375" y="3.5" width="19.25" height="3" rx="1.5" fill="white"/><rect x="2.375" y="10.5" width="19.25" height="3" rx="1.5" fill="white"/><rect x="2.375" y="17.5" width="19.25" height="3" rx="1.5" fill="white"/></symbol><symbol id="utility-octagon"version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"  viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve"><style type="text/css"></style><g><path class="st0" d="M16.6,24H7.5c-0.3,0-0.6-0.1-0.8-0.3l-6.4-6.3C0.1,17.1,0,16.9,0,16.6v-9C0,7.2,0.1,7,0.3,6.8l6.4-6.4 C7,0.1,7.2,0,7.5,0h9c0.3,0,0.6,0.1,0.8,0.3l6.3,6.4C23.9,7,24,7.2,24,7.5v9.1c0,0.3-0.1,0.6-0.3,0.8l-6.3,6.3 C17.1,23.9,16.9,24,16.6,24z"/><path class="st1" d="M8.1,1.4c-0.3,0-0.6,0.1-0.8,0.3L1.8,7.4C1.6,7.6,1.4,7.9,1.4,8.1V16c0,0.3,0.1,0.6,0.3,0.8l5.6,5.5 c0.2,0.2,0.5,0.3,0.8,0.3H16c0.3,0,0.6-0.1,0.8-0.3l5.5-5.5c0.2-0.2,0.3-0.5,0.3-0.8V8.1c0-0.3-0.1-0.6-0.3-0.8l-5.4-5.5 c0,0-0.3-0.4-1.1-0.4C14.9,1.4,8.1,1.4,8.1,1.4z"/></g></symbol><symbol id="utility-star"viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M12 0.243896L15.6356 7.99998H23.7448L17.8055 14.192L20.15 23.4463L12 18.7539L3.84997 23.4463L6.1944 14.192L0.255127 7.99998H8.3643L12 0.243896ZM12 4.95606L9.63563 9.99998H4.9448L8.40553 13.608L6.94996 19.3536L12 16.4461L17.05 19.3537L15.5944 13.608L19.0551 9.99998H14.3643L12 4.95606Z"/></symbol><symbol id="utility-pinterest"xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M12.009 1C5.929 1 1 5.921 1 11.991c0 4.659 2.9 8.639 6.995 10.24-.1-.868-.181-2.207.036-3.157.2-.86 1.287-5.464 1.287-5.464s-.326-.66-.326-1.628c0-1.529.888-2.669 1.993-2.669.942 0 1.396.706 1.396 1.547 0 .941-.598 2.352-.916 3.664-.262 1.094.553 1.99 1.631 1.99 1.958 0 3.462-2.063 3.462-5.03 0-2.632-1.894-4.468-4.603-4.468-3.135 0-4.975 2.343-4.975 4.767 0 .94.363 1.954.816 2.506.09.108.1.208.072.316-.081.344-.272 1.095-.308 1.249-.045.199-.163.244-.371.144-1.378-.642-2.238-2.641-2.238-4.26 0-3.465 2.519-6.65 7.275-6.65 3.815 0 6.787 2.715 6.787 6.351 0 3.79-2.392 6.839-5.708 6.839-1.115 0-2.166-.579-2.52-1.266l-.688 2.614c-.244.959-.915 2.153-1.368 2.886 1.033.316 2.12.488 3.262.488C18.07 23 23 18.079 23 12.009 23.018 5.921 18.089 1 12.009 1z"/></symbol><symbol id="utility-facebook"xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M23 12.067C23 5.955 18.075 1 12 1S1 5.955 1 12.067C1 17.592 5.022 22.17 10.281 23v-7.733H7.488v-3.2h2.793V9.63c0-2.773 1.643-4.305 4.155-4.305 1.204 0 2.463.215 2.463.215v2.724h-1.387c-1.367 0-1.793.853-1.793 1.728v2.076h3.05l-.487 3.2h-2.563V23C18.978 22.17 23 17.592 23 12.067"/></symbol><symbol id="utility-twitter"xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M24 4.368a9.705 9.705 0 01-2.828.796 5.045 5.045 0 002.165-2.794 9.685 9.685 0 01-3.127 1.225A4.86 4.86 0 0016.616 2c-2.72 0-4.924 2.261-4.924 5.05 0 .396.043.78.127 1.15C7.728 7.99 4.1 5.98 1.672 2.926a5.111 5.111 0 00-.667 2.538 5.08 5.08 0 002.19 4.2 4.822 4.822 0 01-2.23-.63v.064c0 2.446 1.696 4.486 3.95 4.95a4.853 4.853 0 01-1.297.178c-.318 0-.626-.032-.926-.092.626 2.006 2.445 3.466 4.598 3.507A9.721 9.721 0 010 19.732 13.688 13.688 0 007.548 22c9.057 0 14.01-7.694 14.01-14.365 0-.22-.006-.436-.015-.653A10.155 10.155 0 0024 4.37v-.001z"/></symbol><symbol id="utility-yummly"xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M10.021 20.157c-.456.27-.924.307-1.21-.029-.302-.356-.389-2.292 2.612-2.87 0 0-.474 2.346-1.402 2.899m-.19-15.26c.484-1.931.118-3.701-1.838-3.881-1.686-.155-3.295.858-3.78 1.386-.349.381-.232.838.082 1.393.246.433.576.715.66.766.104.066.236.067.287.008.564-.649 1.59-1.138 1.947-.837.313.264.194.76.07 1.236 0 0-1.097 4.224-1.543 5.984-.328 1.297-.006 2.477.922 3.041.69.434 1.714.399 2.524.293 1.76-.218 2.79-.976 2.957-1.107l-.326 1.852s-1.984.183-3.61 1.18c-2.136 1.309-3 4.283-1.632 5.817 1.369 1.535 3.758.953 4.73.283.937-.644 2.159-2 2.712-5.076 3.223.168 4.061 1.875 5.435 1.937.986.044 1.681-.929 1.558-1.963a.265.265 0 00-.195-.217c-.192-.054-.388-.008-.955-.267-.458-.209-2.577-1.255-5.496-1.6l2.114-12.307c.095-.551.09-.996-.08-1.278-.249-.414-.795-.525-1.42-.47-.49.044-.88.23-.96.286a.294.294 0 00-.13.264c.021.232.197.413.052 1.306-.031.188-.722 4.126-1.307 7.46-1.544.948-3.6 1.397-4.023.828-.202-.284-.157-.815.038-1.613.042-.176.952-3.694 1.206-4.705"/></symbol><symbol id="utility-email1"xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M20 4c.8 0 1.527.313 2.064.823.036.03.071.064.104.1l.02.024A2.99 2.99 0 0123 7v10a2.99 2.99 0 01-.826 2.067.75.75 0 01-.05.056l-.057.051A2.99 2.99 0 0120 20H4a2.988 2.988 0 01-1.902-.68.919.919 0 01-.13-.106l-.051-.055A2.991 2.991 0 011 17V7c0-.787.303-1.503.799-2.038a1.007 1.007 0 01.16-.162A2.996 2.996 0 014 4zm-5.396 9.018l-1.275 1.139a2 2 0 01-2.522.11l-.138-.112-1.264-1.131L4.548 18h15.037l-4.981-4.982zM3 7.297v9.426l4.913-5.033L3 7.297zm18 .009l-4.902 4.378L21 16.585V7.306zM19.459 6H4.55l5.413 4.84c.033.025.066.053.097.083l.015.018 1.924 1.721 1.893-1.692a1.016 1.016 0 01.167-.15l5.4-4.82z"/></symbol><symbol id="utility-clock2"xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1zm0 2a9 9 0 100 18 9 9 0 000-18zm0 3a1 1 0 01.993.883L13 7v4.5l3.6 2.7a1 1 0 01-1.095 1.669L15.4 15.8l-4-3-.012-.009a1.005 1.005 0 01-.366-.583l-.006-.03a.881.881 0 01-.01-.061l-.001-.021a1.005 1.005 0 01-.004-.06L11 12V7a1 1 0 011-1z"/></symbol><symbol id="utility-instagram"xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M13.33 1a74.32 74.32 0 012.344.03l.205.007.656.028c1.171.053 1.97.24 2.67.512a5.399 5.399 0 011.949 1.268 5.391 5.391 0 011.269 1.95c.272.699.458 1.498.511 2.669.01.202.017.38.024.553l.008.205.007.206c.019.624.026 1.349.027 2.99v1.164c-.002 2.46-.016 2.86-.066 3.953-.053 1.171-.24 1.97-.511 2.67a5.399 5.399 0 01-1.27 1.949 5.399 5.399 0 01-1.948 1.269c-.7.272-1.499.458-2.67.511-1.093.05-1.492.064-3.953.066h-1.164a102.67 102.67 0 01-2.99-.027l-.206-.007-.205-.008-.553-.024c-1.17-.053-1.97-.24-2.67-.511a5.391 5.391 0 01-1.949-1.27 5.399 5.399 0 01-1.268-1.948c-.273-.7-.459-1.499-.512-2.67l-.028-.656-.007-.205A74.32 74.32 0 011 13.33v-2.66c.004-1.282.013-1.869.033-2.447l.008-.205.024-.553c.053-1.17.24-1.97.512-2.67a5.391 5.391 0 011.268-1.949 5.391 5.391 0 011.95-1.268c.699-.273 1.498-.459 2.669-.512l.553-.024.205-.008c.578-.02 1.165-.03 2.448-.033zm-.254 1.982h-2.153c-1.972.003-2.369.017-3.368.063-1.073.049-1.655.229-2.043.379-.514.2-.88.438-1.265.823-.385.385-.623.75-.823 1.265-.15.388-.33.97-.379 2.043-.046 1-.06 1.396-.063 3.368v2.153c.003 1.972.017 2.368.063 3.369.049 1.072.229 1.654.379 2.042.2.514.438.88.823 1.265.385.385.75.624 1.265.823.388.15.97.33 2.043.38.24.01.445.02.645.027l.2.007c.536.018 1.11.026 2.294.028h.473l.26.001H13.306a72.452 72.452 0 002.294-.029l.2-.007.646-.028c1.072-.05 1.654-.228 2.042-.38a3.4 3.4 0 001.265-.822 3.4 3.4 0 00.823-1.265c.15-.388.33-.97.38-2.042.01-.24.02-.446.027-.646l.007-.2c.018-.536.026-1.11.028-2.294v-.473l.001-.26v-1.144-.734a72.468 72.468 0 00-.029-2.294l-.007-.2-.028-.645c-.05-1.073-.228-1.655-.38-2.043a3.393 3.393 0 00-.822-1.265 3.414 3.414 0 00-1.265-.823c-.388-.15-.97-.33-2.042-.379-1-.046-1.397-.06-3.369-.063zM12 6.35a5.649 5.649 0 110 11.298A5.649 5.649 0 0112 6.35zm0 1.982a3.667 3.667 0 100 7.334 3.667 3.667 0 000-7.334zm5.872-3.526a1.32 1.32 0 110 2.641 1.32 1.32 0 010-2.64z"/></symbol><symbol id="utility-youtube-play"xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M23.987 10.508a25.814 25.814 0 00-.114-1.813 16.34 16.34 0 00-.288-1.96 3.083 3.083 0 00-.93-1.633 2.866 2.866 0 00-1.668-.77C19.004 4.11 16.009 4 12 4s-7.004.11-8.987.332a2.834 2.834 0 00-1.66.77 3.1 3.1 0 00-.924 1.634 14.58 14.58 0 00-.302 1.959c-.067.73-.105 1.335-.114 1.813C.004 10.986 0 11.65 0 12.5c0 .85.004 1.514.013 1.992.01.478.047 1.083.114 1.813s.163 1.384.288 1.96a3.08 3.08 0 00.931 1.633c.478.442 1.034.7 1.667.77C4.996 20.889 7.991 21 12 21c4.01 0 7.004-.11 8.987-.332a2.835 2.835 0 001.66-.77 3.1 3.1 0 00.924-1.634 14.6 14.6 0 00.302-1.959c.067-.73.105-1.335.114-1.813.009-.478.013-1.142.013-1.992 0-.85-.004-1.514-.013-1.992zm-7.246 2.71l-6.857 4.249a.768.768 0 01-.455.133.933.933 0 01-.416-.106.79.79 0 01-.441-.744v-8.5a.79.79 0 01.441-.744c.304-.16.594-.15.871.027l6.857 4.25c.268.15.402.39.402.717 0 .328-.134.567-.402.717z"/></symbol><symbol id="utility-chevron-large-up"xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M11.293 7.293a1 1 0 011.32-.083l.094.083 8 8a1 1 0 01-1.32 1.497l-.094-.083L12 9.415l-7.293 7.292a1 1 0 01-1.32.083l-.094-.083a1 1 0 01-.083-1.32l.083-.094 8-8z"/></symbol></defs></svg><div id="wprm-popup-modal-user-rating" class="wprm-popup-modal wprm-popup-modal-user-rating" data-type="user-rating" aria-hidden="true">
		<div class="wprm-popup-modal__overlay" tabindex="-1">
		<div class="wprm-popup-modal__container" role="dialog" aria-modal="true" aria-labelledby="wprm-popup-modal-user-rating-title">
			<header class="wprm-popup-modal__header">
				<h2 class="wprm-popup-modal__title" id="wprm-popup-modal-user-rating-title">
					Rate This Recipe				</h2>

				<button class="wprm-popup-modal__close" aria-label="Close" data-micromodal-close></button>
			</header>

			<div class="wprm-popup-modal__content" id="wprm-popup-modal-user-rating-content">
				<form id="wprm-user-ratings-modal-stars-form" onsubmit="window.WPRecipeMaker.userRatingModal.submit( this ); return false;">
	<div class="wprm-user-ratings-modal-recipe-name"></div>
	<div class="wprm-user-ratings-modal-stars-container">
		<fieldset class="wprm-user-ratings-modal-stars">
			<legend>Your vote:</legend>
			<input aria-label="Don&#039;t rate this recipe" name="wprm-user-rating-stars" value="0" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="margin-left: -31px !important; width: 34px !important; height: 34px !important;" checked="checked"><span aria-hidden="true" style="width: 170px !important; height: 34px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="97.142857142857px" height="16px" viewBox="0 0 145.71428571429 29.142857142857">
  <defs>
    <polygon class="wprm-modal-star-empty" id="wprm-modal-star-empty-0" fill="none" stroke="#FFD700" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
  </defs>
	<use xlink:href="#wprm-modal-star-empty-0" x="2.5714285714286" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-empty-0" x="31.714285714286" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-empty-0" x="60.857142857143" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-empty-0" x="90" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-empty-0" x="119.14285714286" y="2.5714285714286" />
</svg></span><br><input aria-label="Rate this recipe 1 out of 5 stars" name="wprm-user-rating-stars" value="1" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 34px !important; height: 34px !important;"><span aria-hidden="true" style="width: 170px !important; height: 34px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="97.142857142857px" height="16px" viewBox="0 0 145.71428571429 29.142857142857">
  <defs>
	<polygon class="wprm-modal-star-empty" id="wprm-modal-star-empty-1" fill="none" stroke="#FFD700" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
	<path class="wprm-modal-star-full" id="wprm-modal-star-full-1" fill="#FFD700" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
  </defs>
	<use xlink:href="#wprm-modal-star-full-1" x="2.5714285714286" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-empty-1" x="31.714285714286" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-empty-1" x="60.857142857143" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-empty-1" x="90" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-empty-1" x="119.14285714286" y="2.5714285714286" />
</svg></span><br><input aria-label="Rate this recipe 2 out of 5 stars" name="wprm-user-rating-stars" value="2" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 34px !important; height: 34px !important;"><span aria-hidden="true" style="width: 170px !important; height: 34px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="97.142857142857px" height="16px" viewBox="0 0 145.71428571429 29.142857142857">
  <defs>
	<polygon class="wprm-modal-star-empty" id="wprm-modal-star-empty-2" fill="none" stroke="#FFD700" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
	<path class="wprm-modal-star-full" id="wprm-modal-star-full-2" fill="#FFD700" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
  </defs>
	<use xlink:href="#wprm-modal-star-full-2" x="2.5714285714286" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-full-2" x="31.714285714286" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-empty-2" x="60.857142857143" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-empty-2" x="90" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-empty-2" x="119.14285714286" y="2.5714285714286" />
</svg></span><br><input aria-label="Rate this recipe 3 out of 5 stars" name="wprm-user-rating-stars" value="3" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 34px !important; height: 34px !important;"><span aria-hidden="true" style="width: 170px !important; height: 34px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="97.142857142857px" height="16px" viewBox="0 0 145.71428571429 29.142857142857">
  <defs>
	<polygon class="wprm-modal-star-empty" id="wprm-modal-star-empty-3" fill="none" stroke="#FFD700" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
	<path class="wprm-modal-star-full" id="wprm-modal-star-full-3" fill="#FFD700" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
  </defs>
	<use xlink:href="#wprm-modal-star-full-3" x="2.5714285714286" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-full-3" x="31.714285714286" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-full-3" x="60.857142857143" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-empty-3" x="90" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-empty-3" x="119.14285714286" y="2.5714285714286" />
</svg></span><br><input aria-label="Rate this recipe 4 out of 5 stars" name="wprm-user-rating-stars" value="4" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 34px !important; height: 34px !important;"><span aria-hidden="true" style="width: 170px !important; height: 34px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="97.142857142857px" height="16px" viewBox="0 0 145.71428571429 29.142857142857">
  <defs>
	<polygon class="wprm-modal-star-empty" id="wprm-modal-star-empty-4" fill="none" stroke="#FFD700" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
	<path class="wprm-modal-star-full" id="wprm-modal-star-full-4" fill="#FFD700" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
  </defs>
	<use xlink:href="#wprm-modal-star-full-4" x="2.5714285714286" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-full-4" x="31.714285714286" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-full-4" x="60.857142857143" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-full-4" x="90" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-empty-4" x="119.14285714286" y="2.5714285714286" />
</svg></span><br><input aria-label="Rate this recipe 5 out of 5 stars" name="wprm-user-rating-stars" value="5" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 34px !important; height: 34px !important;"><span aria-hidden="true" style="width: 170px !important; height: 34px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="97.142857142857px" height="16px" viewBox="0 0 145.71428571429 29.142857142857">
  <defs>
	<path class="wprm-modal-star-full" id="wprm-modal-star-full-5" fill="#FFD700" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
  </defs>
	<use xlink:href="#wprm-modal-star-full-5" x="2.5714285714286" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-full-5" x="31.714285714286" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-full-5" x="60.857142857143" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-full-5" x="90" y="2.5714285714286" />
	<use xlink:href="#wprm-modal-star-full-5" x="119.14285714286" y="2.5714285714286" />
</svg></span>		</fieldset>
	</div>
			<textarea name="wprm-user-rating-comment" class="wprm-user-rating-modal-comment" placeholder="We love getting a rating, but a review would be even better! Please consider leaving a comment to help us out..." oninput="window.WPRecipeMaker.userRatingModal.checkFields();" aria-label="Comment"></textarea>
	<input type="hidden" name="wprm-user-rating-recipe-id" value="" />
	<div class="wprm-user-rating-modal-comment-meta">
				<div class="wprm-user-rating-modal-field">
			<label>Name</label>
			<input type="text" name="wprm-user-rating-name" value="" />
		</div>
		<div class="wprm-user-rating-modal-field">
			<label>Email</label>
			<input type="email" name="wprm-user-rating-email" value="" />
		</div>
	</div>
	<footer class="wprm-popup-modal__footer">
				<button type="submit" class="wprm-popup-modal__btn wprm-user-rating-modal-submit-comment">Rate and Review Recipe</button>
		<div id="wprm-user-rating-modal-errors">
			<div id="wprm-user-rating-modal-error-rating">A rating is required</div>
			<div id="wprm-user-rating-modal-error-name">A name is required</div>
			<div id="wprm-user-rating-modal-error-email">An email is required</div>
		</div>
		<div id="wprm-user-rating-modal-waiting">
			<div class="wprm-loader"></div>
		</div>
	</footer>
</form>
<div id="wprm-user-ratings-modal-message"></div>			</div>

					</div>
  	</div>
	</div><style type="text/css"></style><script type='text/javascript'>
/* <![CDATA[ */
var wpforms_settings = {"val_required":"This field is required.","val_email":"Please enter a valid email address.","val_email_suggestion":"Did you mean {suggestion}?","val_email_suggestion_title":"Click to accept this suggestion.","val_email_restricted":"This email address is not allowed.","val_number":"Please enter a valid number.","val_number_positive":"Please enter a valid positive number.","val_minimum_price":"Amount entered is less than the required minimum.","val_confirm":"Field values do not match.","val_checklimit":"You have exceeded the number of allowed selections: {#}.","val_limit_characters":"{count} of {limit} max characters.","val_limit_words":"{count} of {limit} max words.","val_recaptcha_fail_msg":"Google reCAPTCHA verification failed, please try again later.","val_turnstile_fail_msg":"Cloudflare Turnstile verification failed, please try again later.","val_inputmask_incomplete":"Please fill out the field in required format.","uuid_cookie":"1","locale":"en","wpforms_plugin_url":"https:\/\/www.evolvingtable.com\/wp-content\/plugins\/wpforms\/","gdpr":"","ajaxurl":"https:\/\/www.evolvingtable.com\/wp-admin\/admin-ajax.php","mailcheck_enabled":"1","mailcheck_domains":[],"mailcheck_toplevel_domains":["dev"],"is_ssl":"1","currency_code":"USD","currency_thousands":",","currency_decimals":"2","currency_decimal":".","currency_symbol":"$","currency_symbol_pos":"left","val_requiredpayment":"Payment is required.","val_creditcard":"Please enter a valid credit card number.","val_post_max_size":"The total size of the selected files {totalSize} MB exceeds the allowed limit {maxSize} MB.","val_time12h":"Please enter time in 12-hour AM\/PM format (eg 8:45 AM).","val_time24h":"Please enter time in 24-hour format (eg 22:45).","val_time_limit":"Please enter time between {minTime} and {maxTime}.","val_url":"Please enter a valid URL.","val_fileextension":"File type is not allowed.","val_filesize":"File exceeds max size allowed. File was not uploaded.","post_max_size":"671088640","token_cache_lifetime":"86400","val_password_strength":"A stronger password is required. Consider using upper and lower case letters, numbers, and symbols.","val_phone":"Please enter a valid phone number.","entry_preview_iframe_styles":["https:\/\/www.evolvingtable.com\/wp-includes\/js\/tinymce\/skins\/lightgray\/content.min.css?ver=6.5.3","https:\/\/www.evolvingtable.com\/wp-includes\/css\/dashicons.min.css?ver=6.5.3","https:\/\/www.evolvingtable.com\/wp-includes\/js\/tinymce\/skins\/wordpress\/wp-content.css?ver=6.5.3","https:\/\/www.evolvingtable.com\/wp-content\/plugins\/wpforms\/assets\/pro\/css\/fields\/richtext\/editor-content.min.css"]}
/* ]]> */
</script>
<script>window.lazyLoadOptions=[{elements_selector:"img[data-lazy-src],.rocket-lazyload,iframe[data-lazy-src]",data_src:"lazy-src",data_srcset:"lazy-srcset",data_sizes:"lazy-sizes",class_loading:"lazyloading",class_loaded:"lazyloaded",threshold:300,callback_loaded:function(element){if(element.tagName==="IFRAME"&&element.dataset.rocketLazyload=="fitvidscompatible"){if(element.classList.contains("lazyloaded")){if(typeof window.jQuery!="undefined"){if(jQuery.fn.fitVids){jQuery(element).parent().fitVids()}}}}}},{elements_selector:".rocket-lazyload",data_src:"lazy-src",data_srcset:"lazy-srcset",data_sizes:"lazy-sizes",class_loading:"lazyloading",class_loaded:"lazyloaded",threshold:300,}];window.addEventListener('LazyLoad::Initialized',function(e){var lazyLoadInstance=e.detail.instance;if(window.MutationObserver){var observer=new MutationObserver(function(mutations){var image_count=0;var iframe_count=0;var rocketlazy_count=0;mutations.forEach(function(mutation){for(var i=0;i<mutation.addedNodes.length;i++){if(typeof mutation.addedNodes[i].getElementsByTagName!=='function'){continue}
if(typeof mutation.addedNodes[i].getElementsByClassName!=='function'){continue}
images=mutation.addedNodes[i].getElementsByTagName('img');is_image=mutation.addedNodes[i].tagName=="IMG";iframes=mutation.addedNodes[i].getElementsByTagName('iframe');is_iframe=mutation.addedNodes[i].tagName=="IFRAME";rocket_lazy=mutation.addedNodes[i].getElementsByClassName('rocket-lazyload');image_count+=images.length;iframe_count+=iframes.length;rocketlazy_count+=rocket_lazy.length;if(is_image){image_count+=1}
if(is_iframe){iframe_count+=1}}});if(image_count>0||iframe_count>0||rocketlazy_count>0){lazyLoadInstance.update()}});var b=document.getElementsByTagName("body")[0];var config={childList:!0,subtree:!0};observer.observe(b,config)}},!1)</script><script data-no-minify="1" async src="https://www.evolvingtable.com/wp-content/plugins/wp-rocket/assets/js/lazyload/17.8.3/lazyload.min.js"></script><script type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1">function lazyLoadThumb(e,alt,l){var t='<img data-lazy-src="https://i.ytimg.com/vi/ID/hqdefault.jpg" alt="" width="480" height="360"><noscript><img src="https://i.ytimg.com/vi/ID/hqdefault.jpg" alt="" width="480" height="360"></noscript>',a='<button class="play" aria-label="play Youtube video"></button>';if(l){t=t.replace('data-lazy-','');t=t.replace('loading="lazy"','');t=t.replace(/<noscript>.*?<\/noscript>/g,'');}t=t.replace('alt=""','alt="'+alt+'"');return t.replace("ID",e)+a}function lazyLoadYoutubeIframe(){var e=document.createElement("iframe"),t="ID?autoplay=1";t+=0===this.parentNode.dataset.query.length?"":"&"+this.parentNode.dataset.query;e.setAttribute("src",t.replace("ID",this.parentNode.dataset.src)),e.setAttribute("frameborder","0"),e.setAttribute("allowfullscreen","1"),e.setAttribute("allow","accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"),this.parentNode.parentNode.replaceChild(e,this.parentNode)}document.addEventListener("DOMContentLoaded",function(){var exclusions=[];var e,t,p,u,l,a=document.getElementsByClassName("rll-youtube-player");for(t=0;t<a.length;t++)(e=document.createElement("div")),(u='https://i.ytimg.com/vi/ID/hqdefault.jpg'),(u=u.replace('ID',a[t].dataset.id)),(l=exclusions.some(exclusion=>u.includes(exclusion))),e.setAttribute("data-id",a[t].dataset.id),e.setAttribute("data-query",a[t].dataset.query),e.setAttribute("data-src",a[t].dataset.src),(e.innerHTML=lazyLoadThumb(a[t].dataset.id,a[t].dataset.alt,l)),a[t].appendChild(e),(p=e.querySelector(".play")),(p.onclick=lazyLoadYoutubeIframe)});</script><script id="perfmatters-delayed-scripts-js">const pmDelayClick=false;const pmUserInteractions=["keydown","mousedown","mousemove","wheel","touchmove","touchstart","touchend"],pmDelayedScripts={normal:[],defer:[],async:[]},jQueriesArray=[],pmInterceptedClicks=[];var pmDOMLoaded=!1,pmClickTarget="";function pmTriggerDOMListener(){"undefined"!=typeof pmDelayTimer&&clearTimeout(pmDelayTimer),pmUserInteractions.forEach(function(e){window.removeEventListener(e,pmTriggerDOMListener,{passive:!0})}),document.removeEventListener("visibilitychange",pmTriggerDOMListener),"loading"===document.readyState?document.addEventListener("DOMContentLoaded",pmTriggerDelayedScripts):pmTriggerDelayedScripts()}async function pmTriggerDelayedScripts(){pmDelayEventListeners(),pmDelayJQueryReady(),pmProcessDocumentWrite(),pmSortDelayedScripts(),pmPreloadDelayedScripts(),await pmLoadDelayedScripts(pmDelayedScripts.normal),await pmLoadDelayedScripts(pmDelayedScripts.defer),await pmLoadDelayedScripts(pmDelayedScripts.async),await pmTriggerEventListeners(),document.querySelectorAll("link[data-pmdelayedstyle]").forEach(function(e){e.setAttribute("href",e.getAttribute("data-pmdelayedstyle"))}),window.dispatchEvent(new Event("perfmatters-allScriptsLoaded")),pmReplayClicks()}function pmDelayEventListeners(){let e={};function t(t,r){function n(r){return e[t].delayedEvents.indexOf(r)>=0?"perfmatters-"+r:r}e[t]||(e[t]={originalFunctions:{add:t.addEventListener,remove:t.removeEventListener},delayedEvents:[]},t.addEventListener=function(){arguments[0]=n(arguments[0]),e[t].originalFunctions.add.apply(t,arguments)},t.removeEventListener=function(){arguments[0]=n(arguments[0]),e[t].originalFunctions.remove.apply(t,arguments)}),e[t].delayedEvents.push(r)}function r(e,t){let r=e[t];Object.defineProperty(e,t,{get:r||function(){},set:function(r){e["perfmatters"+t]=r}})}t(document,"DOMContentLoaded"),t(window,"DOMContentLoaded"),t(window,"load"),t(window,"pageshow"),t(document,"readystatechange"),r(document,"onreadystatechange"),r(window,"onload"),r(window,"onpageshow")}function pmDelayJQueryReady(){let e=window.jQuery;Object.defineProperty(window,"jQuery",{get:()=>e,set(t){if(t&&t.fn&&!jQueriesArray.includes(t)){t.fn.ready=t.fn.init.prototype.ready=function(e){pmDOMLoaded?e.bind(document)(t):document.addEventListener("perfmatters-DOMContentLoaded",function(){e.bind(document)(t)})};let r=t.fn.on;t.fn.on=t.fn.init.prototype.on=function(){if(this[0]===window){function e(e){return e=(e=(e=e.split(" ")).map(function(e){return"load"===e||0===e.indexOf("load.")?"perfmatters-jquery-load":e})).join(" ")}"string"==typeof arguments[0]||arguments[0]instanceof String?arguments[0]=e(arguments[0]):"object"==typeof arguments[0]&&Object.keys(arguments[0]).forEach(function(t){delete Object.assign(arguments[0],{[e(t)]:arguments[0][t]})[t]})}return r.apply(this,arguments),this},jQueriesArray.push(t)}e=t}})}function pmProcessDocumentWrite(){let e=new Map;document.write=document.writeln=function(t){var r=document.currentScript,n=document.createRange();let a=e.get(r);void 0===a&&(a=r.nextSibling,e.set(r,a));var i=document.createDocumentFragment();n.setStart(i,0),i.appendChild(n.createContextualFragment(t)),r.parentElement.insertBefore(i,a)}}function pmSortDelayedScripts(){document.querySelectorAll("script[type=pmdelayedscript]").forEach(function(e){e.hasAttribute("src")?e.hasAttribute("defer")&&!1!==e.defer?pmDelayedScripts.defer.push(e):e.hasAttribute("async")&&!1!==e.async?pmDelayedScripts.async.push(e):pmDelayedScripts.normal.push(e):pmDelayedScripts.normal.push(e)})}function pmPreloadDelayedScripts(){var e=document.createDocumentFragment();[...pmDelayedScripts.normal,...pmDelayedScripts.defer,...pmDelayedScripts.async].forEach(function(t){var r=t.getAttribute("src");if(r){var n=document.createElement("link");n.href=r,n.rel="preload",n.as="script",e.appendChild(n)}}),document.head.appendChild(e)}async function pmLoadDelayedScripts(e){var t=e.shift();return t?(await pmReplaceScript(t),pmLoadDelayedScripts(e)):Promise.resolve()}async function pmReplaceScript(e){return await pmNextFrame(),new Promise(function(t){let r=document.createElement("script");[...e.attributes].forEach(function(e){let t=e.nodeName;"type"!==t&&("data-type"===t&&(t="type"),r.setAttribute(t,e.nodeValue))}),e.hasAttribute("src")?(r.addEventListener("load",t),r.addEventListener("error",t)):(r.text=e.text,t()),e.parentNode.replaceChild(r,e)})}async function pmTriggerEventListeners(){pmDOMLoaded=!0,await pmNextFrame(),document.dispatchEvent(new Event("perfmatters-DOMContentLoaded")),await pmNextFrame(),window.dispatchEvent(new Event("perfmatters-DOMContentLoaded")),await pmNextFrame(),document.dispatchEvent(new Event("perfmatters-readystatechange")),await pmNextFrame(),document.perfmattersonreadystatechange&&document.perfmattersonreadystatechange(),await pmNextFrame(),window.dispatchEvent(new Event("perfmatters-load")),await pmNextFrame(),window.perfmattersonload&&window.perfmattersonload(),await pmNextFrame(),jQueriesArray.forEach(function(e){e(window).trigger("perfmatters-jquery-load")});let e=new Event("perfmatters-pageshow");e.persisted=window.pmPersisted,window.dispatchEvent(e),await pmNextFrame(),window.perfmattersonpageshow&&window.perfmattersonpageshow({persisted:window.pmPersisted})}async function pmNextFrame(){return new Promise(function(e){requestAnimationFrame(e)})}function pmClickHandler(e){e.target.removeEventListener("click",pmClickHandler),pmRenameDOMAttribute(e.target,"pm-onclick","onclick"),pmInterceptedClicks.push(e),e.preventDefault(),e.stopPropagation(),e.stopImmediatePropagation()}function pmReplayClicks(){window.removeEventListener("touchstart",pmTouchStartHandler,{passive:!0}),window.removeEventListener("mousedown",pmTouchStartHandler),pmInterceptedClicks.forEach(e=>{e.target.outerHTML===pmClickTarget&&e.target.dispatchEvent(new MouseEvent("click",{view:e.view,bubbles:!0,cancelable:!0}))})}function pmTouchStartHandler(e){"HTML"!==e.target.tagName&&(pmClickTarget||(pmClickTarget=e.target.outerHTML),window.addEventListener("touchend",pmTouchEndHandler),window.addEventListener("mouseup",pmTouchEndHandler),window.addEventListener("touchmove",pmTouchMoveHandler,{passive:!0}),window.addEventListener("mousemove",pmTouchMoveHandler),e.target.addEventListener("click",pmClickHandler),pmRenameDOMAttribute(e.target,"onclick","pm-onclick"))}function pmTouchMoveHandler(e){window.removeEventListener("touchend",pmTouchEndHandler),window.removeEventListener("mouseup",pmTouchEndHandler),window.removeEventListener("touchmove",pmTouchMoveHandler,{passive:!0}),window.removeEventListener("mousemove",pmTouchMoveHandler),e.target.removeEventListener("click",pmClickHandler),pmRenameDOMAttribute(e.target,"pm-onclick","onclick")}function pmTouchEndHandler(e){window.removeEventListener("touchend",pmTouchEndHandler),window.removeEventListener("mouseup",pmTouchEndHandler),window.removeEventListener("touchmove",pmTouchMoveHandler,{passive:!0}),window.removeEventListener("mousemove",pmTouchMoveHandler)}function pmRenameDOMAttribute(e,t,r){e.hasAttribute&&e.hasAttribute(t)&&(event.target.setAttribute(r,event.target.getAttribute(t)),event.target.removeAttribute(t))}window.addEventListener("pageshow",e=>{window.pmPersisted=e.persisted}),pmUserInteractions.forEach(function(e){window.addEventListener(e,pmTriggerDOMListener,{passive:!0})}),pmDelayClick&&(window.addEventListener("touchstart",pmTouchStartHandler,{passive:!0}),window.addEventListener("mousedown",pmTouchStartHandler)),document.addEventListener("visibilitychange",pmTriggerDOMListener);</script></body></html>
<!-- This website is like a Rocket, isn't it? Performance optimized by WP Rocket. Learn more: https://wp-rocket.me - Debug: cached@1715201589 -->