File: thefirstmess_1.testhtml

package info (click to toggle)
python-recipe-scrapers 15.11.0-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 302,920 kB
  • sloc: python: 14,620; makefile: 3
file content (989 lines) | stat: -rw-r--r-- 450,546 bytes parent folder | download
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
<!DOCTYPE html>
<html lang="en-US">
<head><meta charset="UTF-8"><script>if(navigator.userAgent.match(/MSIE|Internet Explorer/i)||navigator.userAgent.match(/Trident\/7\..*?rv:11/i)){var href=document.location.href;if(!href.match(/[?&]nowprocket/)){if(href.indexOf("?")==-1){if(href.indexOf("#")==-1){document.location.href=href+"?nowprocket=1"}else{document.location.href=href.replace("#","?nowprocket=1#")}}else{if(href.indexOf("#")==-1){document.location.href=href+"&nowprocket=1"}else{document.location.href=href.replace("#","&nowprocket=1#")}}}}</script><script>(()=>{class RocketLazyLoadScripts{constructor(){this.v="2.0.3",this.userEvents=["keydown","keyup","mousedown","mouseup","mousemove","mouseover","mouseenter","mouseout","mouseleave","touchmove","touchstart","touchend","touchcancel","wheel","click","dblclick","input","visibilitychange"],this.attributeEvents=["onblur","onclick","oncontextmenu","ondblclick","onfocus","onmousedown","onmouseenter","onmouseleave","onmousemove","onmouseout","onmouseover","onmouseup","onmousewheel","onscroll","onsubmit"]}async t(){this.i(),this.o(),/iP(ad|hone)/.test(navigator.userAgent)&&this.h(),this.u(),this.l(this),this.m(),this.k(this),this.p(this),this._(),await Promise.all([this.R(),this.L()]),this.lastBreath=Date.now(),this.S(this),this.P(),this.D(),this.O(),this.M(),await this.C(this.delayedScripts.normal),await this.C(this.delayedScripts.defer),await this.C(this.delayedScripts.async),this.F("domReady"),await this.T(),await this.j(),await this.I(),this.F("windowLoad"),await this.A(),window.dispatchEvent(new Event("rocket-allScriptsLoaded")),this.everythingLoaded=!0,this.lastTouchEnd&&await new Promise((t=>setTimeout(t,500-Date.now()+this.lastTouchEnd))),this.H(),this.F("all"),this.U(),this.W()}i(){this.CSPIssue=sessionStorage.getItem("rocketCSPIssue"),document.addEventListener("securitypolicyviolation",(t=>{this.CSPIssue||"script-src-elem"!==t.violatedDirective||"data"!==t.blockedURI||(this.CSPIssue=!0,sessionStorage.setItem("rocketCSPIssue",!0))}),{isRocket:!0})}o(){window.addEventListener("pageshow",(t=>{this.persisted=t.persisted,this.realWindowLoadedFired=!0}),{isRocket:!0}),window.addEventListener("pagehide",(()=>{this.onFirstUserAction=null}),{isRocket:!0})}h(){let t;function e(e){t=e}window.addEventListener("touchstart",e,{isRocket:!0}),window.addEventListener("touchend",(function i(o){Math.abs(o.changedTouches[0].pageX-t.changedTouches[0].pageX)<10&&Math.abs(o.changedTouches[0].pageY-t.changedTouches[0].pageY)<10&&o.timeStamp-t.timeStamp<200&&(o.target.dispatchEvent(new PointerEvent("click",{target:o.target,bubbles:!0,cancelable:!0,detail:1})),event.preventDefault(),window.removeEventListener("touchstart",e,{isRocket:!0}),window.removeEventListener("touchend",i,{isRocket:!0}))}),{isRocket:!0})}q(t){this.userActionTriggered||("mousemove"!==t.type||this.firstMousemoveIgnored?"keyup"===t.type||"mouseover"===t.type||"mouseout"===t.type||(this.userActionTriggered=!0,this.onFirstUserAction&&this.onFirstUserAction()):this.firstMousemoveIgnored=!0),"click"===t.type&&t.preventDefault(),this.savedUserEvents.length>0&&(t.stopPropagation(),t.stopImmediatePropagation()),"touchstart"===this.lastEvent&&"touchend"===t.type&&(this.lastTouchEnd=Date.now()),"click"===t.type&&(this.lastTouchEnd=0),this.lastEvent=t.type,this.savedUserEvents.push(t)}u(){this.savedUserEvents=[],this.userEventHandler=this.q.bind(this),this.userEvents.forEach((t=>window.addEventListener(t,this.userEventHandler,{passive:!1,isRocket:!0})))}U(){this.userEvents.forEach((t=>window.removeEventListener(t,this.userEventHandler,{passive:!1,isRocket:!0}))),this.savedUserEvents.forEach((t=>{t.target.dispatchEvent(new window[t.constructor.name](t.type,t))}))}m(){this.eventsMutationObserver=new MutationObserver((t=>{const e="return false";for(const i of t){if("attributes"===i.type){const t=i.target.getAttribute(i.attributeName);t&&t!==e&&(i.target.setAttribute("data-rocket-"+i.attributeName,t),i.target["rocket"+i.attributeName]=new Function("event",t),i.target.setAttribute(i.attributeName,e))}"childList"===i.type&&i.addedNodes.forEach((t=>{if(t.nodeType===Node.ELEMENT_NODE)for(const i of t.attributes)this.attributeEvents.includes(i.name)&&i.value&&""!==i.value&&(t.setAttribute("data-rocket-"+i.name,i.value),t["rocket"+i.name]=new Function("event",i.value),t.setAttribute(i.name,e))}))}})),this.eventsMutationObserver.observe(document,{subtree:!0,childList:!0,attributeFilter:this.attributeEvents})}H(){this.eventsMutationObserver.disconnect(),this.attributeEvents.forEach((t=>{document.querySelectorAll("[data-rocket-"+t+"]").forEach((e=>{e.setAttribute(t,e.getAttribute("data-rocket-"+t)),e.removeAttribute("data-rocket-"+t)}))}))}k(t){Object.defineProperty(HTMLElement.prototype,"onclick",{get(){return this.rocketonclick||null},set(e){this.rocketonclick=e,this.setAttribute(t.everythingLoaded?"onclick":"data-rocket-onclick","this.rocketonclick(event)")}})}S(t){function e(e,i){let o=e[i];e[i]=null,Object.defineProperty(e,i,{get:()=>o,set(s){t.everythingLoaded?o=s:e["rocket"+i]=o=s}})}e(document,"onreadystatechange"),e(window,"onload"),e(window,"onpageshow");try{Object.defineProperty(document,"readyState",{get:()=>t.rocketReadyState,set(e){t.rocketReadyState=e},configurable:!0}),document.readyState="loading"}catch(t){console.log("WPRocket DJE readyState conflict, bypassing")}}l(t){this.originalAddEventListener=EventTarget.prototype.addEventListener,this.originalRemoveEventListener=EventTarget.prototype.removeEventListener,this.savedEventListeners=[],EventTarget.prototype.addEventListener=function(e,i,o){o&&o.isRocket||!t.B(e,this)&&!t.userEvents.includes(e)||t.B(e,this)&&!t.userActionTriggered||e.startsWith("rocket-")||t.everythingLoaded?t.originalAddEventListener.call(this,e,i,o):t.savedEventListeners.push({target:this,remove:!1,type:e,func:i,options:o})},EventTarget.prototype.removeEventListener=function(e,i,o){o&&o.isRocket||!t.B(e,this)&&!t.userEvents.includes(e)||t.B(e,this)&&!t.userActionTriggered||e.startsWith("rocket-")||t.everythingLoaded?t.originalRemoveEventListener.call(this,e,i,o):t.savedEventListeners.push({target:this,remove:!0,type:e,func:i,options:o})}}F(t){"all"===t&&(EventTarget.prototype.addEventListener=this.originalAddEventListener,EventTarget.prototype.removeEventListener=this.originalRemoveEventListener),this.savedEventListeners=this.savedEventListeners.filter((e=>{let i=e.type,o=e.target||window;return"domReady"===t&&"DOMContentLoaded"!==i&&"readystatechange"!==i||("windowLoad"===t&&"load"!==i&&"readystatechange"!==i&&"pageshow"!==i||(this.B(i,o)&&(i="rocket-"+i),e.remove?o.removeEventListener(i,e.func,e.options):o.addEventListener(i,e.func,e.options),!1))}))}p(t){let e;function i(e){return t.everythingLoaded?e:e.split(" ").map((t=>"load"===t||t.startsWith("load.")?"rocket-jquery-load":t)).join(" ")}function o(o){function s(e){const s=o.fn[e];o.fn[e]=o.fn.init.prototype[e]=function(){return this[0]===window&&t.userActionTriggered&&("string"==typeof arguments[0]||arguments[0]instanceof String?arguments[0]=i(arguments[0]):"object"==typeof arguments[0]&&Object.keys(arguments[0]).forEach((t=>{const e=arguments[0][t];delete arguments[0][t],arguments[0][i(t)]=e}))),s.apply(this,arguments),this}}if(o&&o.fn&&!t.allJQueries.includes(o)){const e={DOMContentLoaded:[],"rocket-DOMContentLoaded":[]};for(const t in e)document.addEventListener(t,(()=>{e[t].forEach((t=>t()))}),{isRocket:!0});o.fn.ready=o.fn.init.prototype.ready=function(i){function s(){parseInt(o.fn.jquery)>2?setTimeout((()=>i.bind(document)(o))):i.bind(document)(o)}return t.realDomReadyFired?!t.userActionTriggered||t.fauxDomReadyFired?s():e["rocket-DOMContentLoaded"].push(s):e.DOMContentLoaded.push(s),o([])},s("on"),s("one"),s("off"),t.allJQueries.push(o)}e=o}t.allJQueries=[],o(window.jQuery),Object.defineProperty(window,"jQuery",{get:()=>e,set(t){o(t)}})}P(){const t=new Map;document.write=document.writeln=function(e){const i=document.currentScript,o=document.createRange(),s=i.parentElement;let n=t.get(i);void 0===n&&(n=i.nextSibling,t.set(i,n));const c=document.createDocumentFragment();o.setStart(c,0),c.appendChild(o.createContextualFragment(e)),s.insertBefore(c,n)}}async R(){return new Promise((t=>{this.userActionTriggered?t():this.onFirstUserAction=t}))}async L(){return new Promise((t=>{document.addEventListener("DOMContentLoaded",(()=>{this.realDomReadyFired=!0,t()}),{isRocket:!0})}))}async I(){return this.realWindowLoadedFired?Promise.resolve():new Promise((t=>{window.addEventListener("load",t,{isRocket:!0})}))}M(){this.pendingScripts=[];this.scriptsMutationObserver=new MutationObserver((t=>{for(const e of t)e.addedNodes.forEach((t=>{"SCRIPT"!==t.tagName||t.noModule||t.isWPRocket||this.pendingScripts.push({script:t,promise:new Promise((e=>{const i=()=>{const i=this.pendingScripts.findIndex((e=>e.script===t));i>=0&&this.pendingScripts.splice(i,1),e()};t.addEventListener("load",i,{isRocket:!0}),t.addEventListener("error",i,{isRocket:!0}),setTimeout(i,1e3)}))})}))})),this.scriptsMutationObserver.observe(document,{childList:!0,subtree:!0})}async j(){await this.J(),this.pendingScripts.length?(await this.pendingScripts[0].promise,await this.j()):this.scriptsMutationObserver.disconnect()}D(){this.delayedScripts={normal:[],async:[],defer:[]},document.querySelectorAll("script[type$=rocketlazyloadscript]").forEach((t=>{t.hasAttribute("data-rocket-src")?t.hasAttribute("async")&&!1!==t.async?this.delayedScripts.async.push(t):t.hasAttribute("defer")&&!1!==t.defer||"module"===t.getAttribute("data-rocket-type")?this.delayedScripts.defer.push(t):this.delayedScripts.normal.push(t):this.delayedScripts.normal.push(t)}))}async _(){await this.L();let t=[];document.querySelectorAll("script[type$=rocketlazyloadscript][data-rocket-src]").forEach((e=>{let i=e.getAttribute("data-rocket-src");if(i&&!i.startsWith("data:")){i.startsWith("//")&&(i=location.protocol+i);try{const o=new URL(i).origin;o!==location.origin&&t.push({src:o,crossOrigin:e.crossOrigin||"module"===e.getAttribute("data-rocket-type")})}catch(t){}}})),t=[...new Map(t.map((t=>[JSON.stringify(t),t]))).values()],this.N(t,"preconnect")}async $(t){if(await this.G(),!0!==t.noModule||!("noModule"in HTMLScriptElement.prototype))return new Promise((e=>{let i;function o(){(i||t).setAttribute("data-rocket-status","executed"),e()}try{if(navigator.userAgent.includes("Firefox/")||""===navigator.vendor||this.CSPIssue)i=document.createElement("script"),[...t.attributes].forEach((t=>{let e=t.nodeName;"type"!==e&&("data-rocket-type"===e&&(e="type"),"data-rocket-src"===e&&(e="src"),i.setAttribute(e,t.nodeValue))})),t.text&&(i.text=t.text),t.nonce&&(i.nonce=t.nonce),i.hasAttribute("src")?(i.addEventListener("load",o,{isRocket:!0}),i.addEventListener("error",(()=>{i.setAttribute("data-rocket-status","failed-network"),e()}),{isRocket:!0}),setTimeout((()=>{i.isConnected||e()}),1)):(i.text=t.text,o()),i.isWPRocket=!0,t.parentNode.replaceChild(i,t);else{const i=t.getAttribute("data-rocket-type"),s=t.getAttribute("data-rocket-src");i?(t.type=i,t.removeAttribute("data-rocket-type")):t.removeAttribute("type"),t.addEventListener("load",o,{isRocket:!0}),t.addEventListener("error",(i=>{this.CSPIssue&&i.target.src.startsWith("data:")?(console.log("WPRocket: CSP fallback activated"),t.removeAttribute("src"),this.$(t).then(e)):(t.setAttribute("data-rocket-status","failed-network"),e())}),{isRocket:!0}),s?(t.fetchPriority="high",t.removeAttribute("data-rocket-src"),t.src=s):t.src="data:text/javascript;base64,"+window.btoa(unescape(encodeURIComponent(t.text)))}}catch(i){t.setAttribute("data-rocket-status","failed-transform"),e()}}));t.setAttribute("data-rocket-status","skipped")}async C(t){const e=t.shift();return e?(e.isConnected&&await this.$(e),this.C(t)):Promise.resolve()}O(){this.N([...this.delayedScripts.normal,...this.delayedScripts.defer,...this.delayedScripts.async],"preload")}N(t,e){this.trash=this.trash||[];let i=!0;var o=document.createDocumentFragment();t.forEach((t=>{const s=t.getAttribute&&t.getAttribute("data-rocket-src")||t.src;if(s&&!s.startsWith("data:")){const n=document.createElement("link");n.href=s,n.rel=e,"preconnect"!==e&&(n.as="script",n.fetchPriority=i?"high":"low"),t.getAttribute&&"module"===t.getAttribute("data-rocket-type")&&(n.crossOrigin=!0),t.crossOrigin&&(n.crossOrigin=t.crossOrigin),t.integrity&&(n.integrity=t.integrity),t.nonce&&(n.nonce=t.nonce),o.appendChild(n),this.trash.push(n),i=!1}})),document.head.appendChild(o)}W(){this.trash.forEach((t=>t.remove()))}async T(){try{document.readyState="interactive"}catch(t){}this.fauxDomReadyFired=!0;try{await this.G(),document.dispatchEvent(new Event("rocket-readystatechange")),await this.G(),document.rocketonreadystatechange&&document.rocketonreadystatechange(),await this.G(),document.dispatchEvent(new Event("rocket-DOMContentLoaded")),await this.G(),window.dispatchEvent(new Event("rocket-DOMContentLoaded"))}catch(t){console.error(t)}}async A(){try{document.readyState="complete"}catch(t){}try{await this.G(),document.dispatchEvent(new Event("rocket-readystatechange")),await this.G(),document.rocketonreadystatechange&&document.rocketonreadystatechange(),await this.G(),window.dispatchEvent(new Event("rocket-load")),await this.G(),window.rocketonload&&window.rocketonload(),await this.G(),this.allJQueries.forEach((t=>t(window).trigger("rocket-jquery-load"))),await this.G();const t=new Event("rocket-pageshow");t.persisted=this.persisted,window.dispatchEvent(t),await this.G(),window.rocketonpageshow&&window.rocketonpageshow({persisted:this.persisted})}catch(t){console.error(t)}}async G(){Date.now()-this.lastBreath>45&&(await this.J(),this.lastBreath=Date.now())}async J(){return document.hidden?new Promise((t=>setTimeout(t))):new Promise((t=>requestAnimationFrame(t)))}B(t,e){return e===document&&"readystatechange"===t||(e===document&&"DOMContentLoaded"===t||(e===window&&"DOMContentLoaded"===t||(e===window&&"load"===t||e===window&&"pageshow"===t)))}static run(){(new RocketLazyLoadScripts).t()}}RocketLazyLoadScripts.run()})();</script>
    
    <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
    <title>Soft &amp; Fluffy Vegan Blueberry Muffins with A Bit of Whole Wheat Flour | The First Mess</title><link rel="preload" data-rocket-preload as="font" href="https://thefirstmess.com/wp-content/themes/thefirstmess2022/fonts/Levitate-Regular.woff2" crossorigin><link rel="preload" data-rocket-preload as="font" href="https://thefirstmess.com/wp-content/themes/thefirstmess2022/fonts/Canela-Light-Web.woff2" crossorigin><link rel="preload" data-rocket-preload as="font" href="https://use.typekit.net/af/1be3c2/00000000000000007735e606/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&#038;fvd=n3&#038;v=3" crossorigin><link rel="preload" data-rocket-preload as="font" href="https://use.typekit.net/af/23e139/00000000000000007735e605/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&#038;fvd=n5&#038;v=3" crossorigin><style id="wpr-usedcss">img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}.adthrive-ad{margin-top:10px;margin-bottom:10px;text-align:center;overflow-x:visible;clear:both;line-height:0}body.adthrive-device-desktop div[id^=cls-video-container]{max-width:630px;margin:auto;min-height:400px!important}.adthrive-sticky-sidebar>div{top:100px!important}body.search .adthrive-content{flex:0 0 100%}@media print{.adthrive-ad{display:none!important;height:0;width:0;visibility:hidden}}:where(.wp-block-button__link){border-radius:9999px;box-shadow:none;padding:calc(.667em + 2px) calc(1.333em + 2px);text-decoration:none}:root :where(.wp-block-button .wp-block-button__link.is-style-outline),:root :where(.wp-block-button.is-style-outline>.wp-block-button__link){border:2px solid;padding:.667em 1.333em}:root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-text-color)),:root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-text-color)){color:currentColor}:root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-background)),:root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background)){background-color:initial;background-image:none}:where(.wp-block-calendar table:not(.has-background) th){background:#ddd}.wp-block-columns{align-items:normal!important;box-sizing:border-box;display:flex;flex-wrap:wrap!important}@media (min-width:782px){.wp-block-columns{flex-wrap:nowrap!important}}@media (max-width:781px){.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column{flex-basis:100%!important}}@media (min-width:782px){.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column{flex-basis:0;flex-grow:1}}:where(.wp-block-columns){margin-bottom:1.75em}:where(.wp-block-columns.has-background){padding:1.25em 2.375em}.wp-block-column{flex-grow:1;min-width:0;overflow-wrap:break-word;word-break:break-word}: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}:root :where(.wp-block-cover h1:not(.has-text-color)),:root :where(.wp-block-cover h2:not(.has-text-color)),:root :where(.wp-block-cover h3:not(.has-text-color)),:root :where(.wp-block-cover h4:not(.has-text-color)),:root :where(.wp-block-cover h5:not(.has-text-color)),:root :where(.wp-block-cover h6:not(.has-text-color)),:root :where(.wp-block-cover p:not(.has-text-color)){color:inherit}: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 figure.wp-block-image:has(figcaption):before{bottom:0;left:0;max-height:100%;position:absolute;right:0}.wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before{-webkit-backdrop-filter:blur(3px);backdrop-filter:blur(3px);content:"";height:100%;-webkit-mask-image:linear-gradient(0deg,#000 20%,#0000);mask-image:linear-gradient(0deg,#000 20%,#0000);max-height:40%}.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}:where(.wp-block-group.wp-block-group-is-layout-constrained){position:relative}h1.has-background,h2.has-background,h3.has-background{padding:1.25em 2.375em}.wp-block-image a{display:inline-block}.wp-block-image img{box-sizing:border-box;height:auto;max-width:100%;vertical-align:bottom}@media (prefers-reduced-motion:no-preference){.wp-block-image img.hide{visibility:hidden}.wp-block-image img.show{animation:.4s show-content-image}}.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(figcaption){margin-bottom:1em;margin-top:.5em}:root :where(.wp-block-image.is-style-rounded img,.wp-block-image .is-style-rounded img){border-radius:9999px}.wp-block-image figure{margin:0}@keyframes show-content-image{0%{visibility:hidden}99%{visibility:hidden}to{visibility:visible}}: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}:root :where(.wp-block-latest-posts.is-grid){padding:0}:root :where(.wp-block-latest-posts.wp-block-latest-posts__list){padding-left:0}ul{box-sizing:border-box}:root :where(.wp-block-list.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}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}:where(.wp-block-post-comments-form) input:not([type=submit]),:where(.wp-block-post-comments-form) textarea{border:1px solid #949494;font-family:inherit;font-size:1em}:where(.wp-block-post-comments-form) input:where(:not([type=submit]):not([type=checkbox])),:where(.wp-block-post-comments-form) textarea{padding:calc(.667em + 2px)}:where(.wp-block-post-excerpt){box-sizing:border-box;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-search__button){border:1px solid #ccc;padding:6px 10px}:where(.wp-block-search__input){font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;text-transform:inherit}: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}:root :where(.wp-block-separator.is-style-dots){height:auto;line-height:1;text-align:center}:root :where(.wp-block-separator.is-style-dots):before{color:currentColor;content:"···";font-family:serif;font-size:1.5em;letter-spacing:2em;padding-left:2em}:root :where(.wp-block-site-logo.is-style-rounded){border-radius:9999px}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link{background-color:#f0f0f0;color:#444}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-amazon{background-color:#f90;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bandcamp{background-color:#1ea0c3;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-behance{background-color:#0757fe;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bluesky{background-color:#0a7aff;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-codepen{background-color:#1e1f26;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-deviantart{background-color:#02e49b;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dribbble{background-color:#e94c89;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dropbox{background-color:#4280ff;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-etsy{background-color:#f45800;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-facebook{background-color:#0866ff;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-fivehundredpx{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-flickr{background-color:#0461dd;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-foursquare{background-color:#e65678;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-github{background-color:#24292d;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-goodreads{background-color:#eceadd;color:#382110}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-google{background-color:#ea4434;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-gravatar{background-color:#1d4fc4;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-instagram{background-color:#f00075;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-lastfm{background-color:#e21b24;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-linkedin{background-color:#0d66c2;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-mastodon{background-color:#3288d4;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-medium{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-meetup{background-color:#f6405f;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-patreon{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pinterest{background-color:#e60122;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pocket{background-color:#ef4155;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-reddit{background-color:#ff4500;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-skype{background-color:#0478d7;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-snapchat{background-color:#fefc00;color:#fff;stroke:#000}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-soundcloud{background-color:#ff5600;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-spotify{background-color:#1bd760;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-telegram{background-color:#2aabee;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-threads{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tiktok{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tumblr{background-color:#011835;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitch{background-color:#6440a4;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitter{background-color:#1da1f2;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vimeo{background-color:#1eb7ea;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vk{background-color:#4680c2;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-wordpress{background-color:#3499cd;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-whatsapp{background-color:#25d366;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-x{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-yelp{background-color:#d32422;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-youtube{background-color:red;color:#fff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link{background:0 0}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link svg{height:1.25em;width:1.25em}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-amazon{color:#f90}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bandcamp{color:#1ea0c3}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-behance{color:#0757fe}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bluesky{color:#0a7aff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-codepen{color:#1e1f26}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-deviantart{color:#02e49b}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dribbble{color:#e94c89}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dropbox{color:#4280ff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-etsy{color:#f45800}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-facebook{color:#0866ff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-fivehundredpx{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-flickr{color:#0461dd}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-foursquare{color:#e65678}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-github{color:#24292d}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-goodreads{color:#382110}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-google{color:#ea4434}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-gravatar{color:#1d4fc4}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-instagram{color:#f00075}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-lastfm{color:#e21b24}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-linkedin{color:#0d66c2}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-mastodon{color:#3288d4}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-medium{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-meetup{color:#f6405f}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-patreon{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pinterest{color:#e60122}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pocket{color:#ef4155}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-reddit{color:#ff4500}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-skype{color:#0478d7}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-snapchat{color:#fff;stroke:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-soundcloud{color:#ff5600}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-spotify{color:#1bd760}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-telegram{color:#2aabee}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-threads{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tiktok{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tumblr{color:#011835}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitch{color:#6440a4}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitter{color:#1da1f2}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vimeo{color:#1eb7ea}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vk{color:#4680c2}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-whatsapp{color:#25d366}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-wordpress{color:#3499cd}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-x{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-yelp{color:#d32422}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-youtube{color:red}:root :where(.wp-block-social-links .wp-social-link a){padding:.25em}:root :where(.wp-block-social-links.is-style-logos-only .wp-social-link a){padding:0}:root :where(.wp-block-social-links.is-style-pill-shape .wp-social-link a){padding-left:.66667em;padding-right:.66667em}:root :where(.wp-block-tag-cloud.is-style-outline){display:flex;flex-wrap:wrap;gap:1ch}:root :where(.wp-block-tag-cloud.is-style-outline a){border:1px solid;font-size:unset!important;margin-right:0;padding:1ch 2ch;text-decoration:none!important}:root :where(.wp-block-table-of-contents){box-sizing:border-box}:where(.wp-block-term-description){box-sizing:border-box;margin-bottom:var(--wp--style--block-gap);margin-top:var(--wp--style--block-gap)}:where(pre.wp-block-verse){font-family:inherit}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.aligncenter{clear:both}.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);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;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}}:root{--wp--preset--aspect-ratio--square:1;--wp--preset--aspect-ratio--4-3:4/3;--wp--preset--aspect-ratio--3-4:3/4;--wp--preset--aspect-ratio--3-2:3/2;--wp--preset--aspect-ratio--2-3:2/3;--wp--preset--aspect-ratio--16-9:16/9;--wp--preset--aspect-ratio--9-16:9/16;--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--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:13px;--wp--preset--font-size--medium:20px;--wp--preset--font-size--large:36px;--wp--preset--font-size--x-large:42px;--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)}:where(.is-layout-flex){gap:.5em}:where(.is-layout-grid){gap:.5em}body .is-layout-flex{display:flex}.is-layout-flex{flex-wrap:wrap;align-items:center}.is-layout-flex>:is(*,div){margin:0}:where(.wp-block-post-template.is-layout-flex){gap:1.25em}:where(.wp-block-post-template.is-layout-grid){gap:1.25em}:where(.wp-block-columns.is-layout-flex){gap:2em}:where(.wp-block-columns.is-layout-grid){gap:2em}:root :where(.wp-block-pullquote){font-size:1.5em;line-height:1.6}html{line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,footer,header,nav,section{display:block}h1{font-size:2em;margin:.67em 0}figure,main{display:block}figure{margin:1em 40px}a{background-color:transparent;-webkit-text-decoration-skip:objects}code{font-family:monospace,monospace;font-size:1em}small{font-size:80%}video{display:inline-block}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}fieldset{padding:.35em .75em .625em}legend{-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{-webkit-box-sizing:border-box;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-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}template{display:none}[hidden]{display:none}.slick-slider{position:relative;display:block;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto}.slick-track:after,.slick-track:before{display:table;content:""}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}html{-webkit-text-size-adjust:100%}body{margin:0;position:relative;font-size:1em;line-height:1;color:#000;overflow-x:hidden}button,input[type=email],input[type=number],input[type=submit],input[type=text],input[type=url],textarea{border:0;padding:0;margin:0;border-radius:0;-webkit-appearance:none;resize:none;background:0 0}button,input[type=email],input[type=submit],input[type=text],input[type=url],textarea{-webkit-appearance:none}p{margin:0}ul{padding:0;margin:0}img{outline:0;max-width:100%;height:auto}a{text-decoration:none}h1,h2,h3{font-weight:400;margin:0;font-size:1em}.dmc-post-editor iframe{display:inline-block}input:focus::-webkit-input-placeholder{font-size:0}input:focus:-moz-placeholder{font-size:0}input:focus::-moz-placeholder{font-size:0}input:focus:-ms-input-placeholder{font-size:0}textarea:focus::-webkit-input-placeholder{font-size:0}textarea:focus:-moz-placeholder{font-size:0}textarea:focus::-moz-placeholder{font-size:0}textarea:focus:-ms-input-placeholder{font-size:0}img.aligncenter{display:block;margin-left:auto;margin-right:auto}.featured-media iframe{width:100%;margin:0 auto}.slick-slide{outline:0}.dmc-icon{font-style:normal;cursor:pointer;display:block}.dmc-icon:before{display:block}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}picture{-webkit-transition:opacity .2s ease-in-out;-o-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out}.dmc-image-holder img{display:block;margin:0 auto}.dmc-image-link-wrapper{display:block}.dmc-image-link-wrapper:hover img,.dmc-image-link-wrapper:hover picture{opacity:.75}a:hover>.featured-media img{opacity:.75}.dmc-button-wrap .dmc-button{display:inline-block;text-align:center;outline:0;cursor:pointer}.dmc-menu-wrapper a{cursor:pointer}.dmc-menu-wrapper.style-horizontal .menu{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-pack:distribute;justify-content:space-around}.dmc-menu-wrapper.dmc-menu-expanders .sub-menu{display:none}.dmc-menu-wrapper.style-dropdown li.menu-item-has-children{position:relative}.dmc-menu-wrapper.style-dropdown li.menu-item-has-children:hover .sub-menu{display:block}.dmc-menu-wrapper.style-dropdown .sub-menu{display:none;position:absolute;bottom:0;left:50%;-webkit-transform:translate(-50%,100%);-ms-transform:translate(-50%,100%);transform:translate(-50%,100%);width:200px;z-index:100}.dmc-menu-wrapper.style-dropdown .sub-menu li{text-align:center;padding:8px 20px}.dmc-menu-wrapper.style-dropdown .sub-menu li a{display:inline-block}.dmc-menu-wrapper.style-dropdown .sub-menu li:first-child{padding-top:58px}.dmc-menu-wrapper.style-dropdown .sub-menu li:last-child{padding-bottom:23px}.dmc-bakery-slider{overflow:hidden}.dmc-bakery-slider .slick-list,.dmc-bakery-slider .slick-track{height:100%}.dmc-bakery-slider .slick-dots{position:absolute;bottom:20px;right:20px}.dmc-bakery-slider .slick-dots li{margin-right:4px;display:inline-block;vertical-align:middle}.dmc-bakery-slider .slick-dots li:last-child{margin-right:0}.dmc-bakery-slider .slick-dots li button{font-size:0;line-height:0;width:12px;height:12px;background-color:transparent;border-radius:20px;cursor:pointer;-webkit-box-sizing:border-box;box-sizing:border-box}#dmc-popups{display:none;width:100%;height:100%;position:fixed;background:rgba(255,255,255,.8);top:0;left:0;z-index:2000}#dmc-popups .dmc-popups-inner{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;height:100%}#dmc-popups .dmc-popup{display:none;max-width:100%;max-height:100%;overflow:auto;position:relative}.dmc-search-form{width:100%;margin:0 auto}.dmc-search-form .dmc-search-input-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@font-face{font-family:Levitate;src:url("https://thefirstmess.com/wp-content/themes/thefirstmess2022/fonts/Levitate-Regular.eot");src:url("https://thefirstmess.com/wp-content/themes/thefirstmess2022/fonts/Levitate-Regular.eot?#iefix") format("embedded-opentype"),url("https://thefirstmess.com/wp-content/themes/thefirstmess2022/fonts/Levitate-Regular.woff2") format("woff2"),url("https://thefirstmess.com/wp-content/themes/thefirstmess2022/fonts/Levitate-Regular.woff") format("woff"),url("https://thefirstmess.com/wp-content/themes/thefirstmess2022/fonts/Levitate-Regular.ttf") format("truetype"),url("https://thefirstmess.com/wp-content/themes/thefirstmess2022/fonts/Levitate-Regular.svg#Levitate-Regular") format("svg");font-display:swap}@font-face{font-display:swap;font-family:"Canela Web";src:url("https://thefirstmess.com/wp-content/themes/thefirstmess2022/fonts/Canela-Light-Web.woff2") format("woff2"),url("https://thefirstmess.com/wp-content/themes/thefirstmess2022/fonts/Canela-Light-Web.woff") format("woff");font-weight:300;font-style:normal;font-stretch:normal}body{color:#23443e;font-family:proxima-nova;font-weight:300;font-size:14px;background:#f0eded}a{color:#23443e}a:hover{color:#74867f}.dmc-posts-feed.loading-by-click{opacity:.75}.dmc-width-main{max-width:1202px;-webkit-box-sizing:border-box;box-sizing:border-box;margin-left:auto!important;margin-right:auto!important}.dmc-padding-main{padding-left:20px!important;padding-right:20px!important}*{-webkit-box-sizing:border-box;box-sizing:border-box}#dmc-single-post{margin-top:26px}.comment-form .dmc-button-wrap input[type=submit],.dmc-button,a{-webkit-transition:color .2s ease-in-out;-o-transition:color .2s ease-in-out;transition:color .2s ease-in-out}.dmc-image-holder img{-webkit-transition:opacity .2s ease-in-out;-o-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out}.dmc-image-picture{width:100%;display:block;position:relative;height:0;overflow:hidden}.dmc-image-picture.type-fluid{height:auto}.dmc-image-picture.type-fluid img{position:relative;top:initial;left:initial;-webkit-transform:none;-ms-transform:none;transform:none;display:block;max-width:100%;width:100%}.dmc-image-picture img{position:absolute;top:50%;left:50%;width:100%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);max-width:initial;display:block}input[type=email],input[type=number],input[type=password],input[type=text],textarea{color:#000;width:100%;padding:12px 10px;-webkit-box-sizing:border-box;box-sizing:border-box}input[type=email]::-webkit-input-placeholder,input[type=number]::-webkit-input-placeholder,input[type=password]::-webkit-input-placeholder,input[type=text]::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#000}input[type=email]::-moz-placeholder,input[type=number]::-moz-placeholder,input[type=password]::-moz-placeholder,input[type=text]::-moz-placeholder,textarea::-moz-placeholder{color:#000}input[type=email]:-ms-input-placeholder,input[type=number]:-ms-input-placeholder,input[type=password]:-ms-input-placeholder,input[type=text]:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#000}input[type=email]::-ms-input-placeholder,input[type=number]::-ms-input-placeholder,input[type=password]::-ms-input-placeholder,input[type=text]::-ms-input-placeholder,textarea::-ms-input-placeholder{color:#000}input[type=email]::placeholder,input[type=number]::placeholder,input[type=password]::placeholder,input[type=text]::placeholder,textarea::placeholder{color:#000}input[type=email],input[type=number],input[type=password],input[type=text]{border:0}input[type=submit]{cursor:pointer}fieldset{border:1px solid #000;margin:18px 0}fieldset legend{padding:0 10px}.dmc-icon-64{font-style:normal;display:block;background-repeat:no-repeat;-webkit-transition:background .2s ease-in-out;-o-transition:background .2s ease-in-out;transition:background .2s ease-in-out}.dmc-icon-64.dmc-icon-search{width:18px;height:16px;background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOC42MSAxNi4xMyI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNiN2JjYjE7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJMYXllcl8yIiBkYXRhLW5hbWU9IkxheWVyIDIiPjxnIGlkPSJNQUlOX0xBWUVSIiBkYXRhLW5hbWU9Ik1BSU4gTEFZRVIiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTYuOTMsMTMuODdhNi45NCw2Ljk0LDAsMSwxLDYuOTQtNi45NEE2Ljk0LDYuOTQsMCwwLDEsNi45MywxMy44N1pNNi45My43NWE2LjE5LDYuMTksMCwxLDAsNi4xOSw2LjE4QTYuMTgsNi4xOCwwLDAsMCw2LjkzLjc1WiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iMTQuOTkiIHk9IjkuNjgiIHdpZHRoPSIwLjc1IiBoZWlnaHQ9IjcuNjMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC00LjcyIDE3LjM0KSByb3RhdGUoLTUyLjEzKSIvPjwvZz48L2c+PC9zdmc+")}.dmc-button-wrap.style-default .dmc-button{font-family:Levitate,sans-serif;font-size:12px;line-height:1;letter-spacing:1.6px;text-transform:uppercase;border-bottom:3px solid #dbd2a0;padding-bottom:2px}.comment-form .dmc-button-wrap,.dmc-button-wrap.style-long-big{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;border-top:1px solid rgba(183,188,177,.75);border-bottom:1px solid rgba(183,188,177,.75);text-align:center}.comment-form .dmc-button-wrap input[type=submit],.dmc-button-wrap.style-long-big .dmc-button{font-family:Levitate,sans-serif;font-size:12px;line-height:1;letter-spacing:1.6px;text-transform:uppercase}.comment-form .dmc-button-wrap input[type=submit]:hover,.dmc-button-wrap.style-long-big .dmc-button:hover{color:#74867f}.comment-form .dmc-button-wrap input[type=submit],.dmc-button-wrap.style-long-big.and-short .dmc-button{padding:22px 10px}.dmc-button-wrap.style-long-big .dmc-button{padding:20px 10px 18px}.dmc-search-form{position:relative}.dmc-search-form input[type=text]{font-family:proxima-nova;font-weight:300;font-size:17px;line-height:1.53;letter-spacing:.2px;color:#b7bcb1;padding-left:70px;padding-right:10px}.dmc-search-form input[type=text]::-webkit-input-placeholder{color:#b7bcb1}.dmc-search-form input[type=text]::-moz-placeholder{color:#b7bcb1}.dmc-search-form input[type=text]:-ms-input-placeholder{color:#b7bcb1}.dmc-search-form input[type=text]::-ms-input-placeholder{color:#b7bcb1}.dmc-search-form input[type=text]::placeholder{color:#b7bcb1}.dmc-search-form .dmc-icon{position:absolute;top:50%;left:28px;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.dmc-content-style-1 a{-webkit-box-shadow:0 3px 0 0 #dbd2a0,inset 0 0 0 0 #dbd2a0;box-shadow:0 3px 0 0 #dbd2a0,inset 0 0 0 0 #dbd2a0;-webkit-transition:-webkit-box-shadow .2s ease-in-out;transition:-webkit-box-shadow .2s ease-in-out;-o-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out,-webkit-box-shadow .2s ease-in-out}.dmc-content-style-1 a:hover{color:#23443e;-webkit-box-shadow:0 3px 0 0 #dbd2a0,inset 0 -20px 0 0 #dbd2a0;box-shadow:0 3px 0 0 #dbd2a0,inset 0 -20px 0 0 #dbd2a0}.dmc-content-style-1{font-family:proxima-nova;font-weight:300;font-size:14px;line-height:1.53;letter-spacing:.2px}.dmc-content-style-1 h1,.dmc-content-style-1 h2,.dmc-content-style-1 h3{margin-bottom:20px}.dmc-content-style-1 .wp-block-image,.dmc-content-style-1 p{margin-bottom:20px}.dmc-content-style-1 .wp-block-image:last-child,.dmc-content-style-1 p:last-child{margin-bottom:0}.dmc-content-style-1 ul{padding-left:20px;margin-bottom:50px}.dmc-content-style-1 ul li{margin-bottom:8px}.dmc-content-style-1 ul li:last-child{margin-bottom:0}.f-text-default{font-family:proxima-nova;font-weight:300;font-size:14px;line-height:1.53;letter-spacing:.2px}.f-text-proxima-24{font-family:proxima-nova;font-weight:300;font-size:24px;line-height:1.33;letter-spacing:0}.dmc-post-editor .dmc-content-style-1 h2:not(.wprm-recipe-name){font-family:"Canela Web",sans-serif;font-size:16px;line-height:1.2;letter-spacing:0;background-color:#f8e4dd;padding:30px 40px}.dmc-post-editor figure{margin:0}.dmc-post-editor .featured-product-block{padding:0;gap:0;margin-bottom:40px;background-color:#f8e4dd;padding:20px 20px 30px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.dmc-post-editor .featured-product-block h3{font-family:"Canela Web",sans-serif;font-size:18px;line-height:1.2;letter-spacing:0}.dmc-post-editor .featured-product-block .featured-product-block-inner{margin-bottom:20px}.dmc-post-editor .featured-product-block a{-webkit-box-shadow:none;box-shadow:none}.dmc-body-inner{padding-top:54px}.dmc-header-row-1{height:54px;position:fixed;top:0;left:0;width:100%;z-index:200;border-bottom:1px solid rgba(183,188,177,.75);background:#f0eded}.dmc-header-row-1 .dmc-header-row-inner{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%}.dmc-header-row-1 .dmc-col-2 .dmc-menu-wrapper{display:none}.dmc-header-row-1 .dmc-menu-wrapper{font-family:proxima-nova;font-weight:300;font-size:11px;line-height:25px;letter-spacing:.5px}.dmc-header-row-1 .dmc-menu-wrapper li:after{content:"/";display:inline-block;margin:0 6px}.dmc-header-row-1 .dmc-menu-wrapper li:last-child:after{display:none}.dmc-header-row-1 .dmc-menu-wrapper a{text-decoration:underline}.dmc-logo-main{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.dmc-logo-main a.dmc-image-holder{display:block}.dmc-mm-trig-hold{display:block}.dmc-mm-trig-hold .mm-label{font-size:12px;text-decoration:underline}.dmc-header-row-2{display:none}.dmc-menu-wrapper.style-dropdown .sub-menu{width:160px;background:#f0eded;padding-top:10px}.dmc-menu-wrapper.style-dropdown .sub-menu li{border-right:1px solid rgba(183,188,177,.75);border-left:1px solid rgba(183,188,177,.75)}.dmc-menu-wrapper.style-dropdown .sub-menu li:first-child{padding-top:20px;border-top:1px solid rgba(183,188,177,.75)}.dmc-menu-wrapper.style-dropdown .sub-menu li:last-child{padding-bottom:20px;border-bottom:1px solid rgba(183,188,177,.75)}#dmc-comments ul,.dmc-menu-wrapper ul{list-style:none}#dmc-mobile-menu{position:fixed;top:54px;left:0;width:300px;height:100%;background:#f0eded;z-index:210;-webkit-transform:translateX(-100%);-ms-transform:translateX(-100%);transform:translateX(-100%);-webkit-transition:-webkit-transform .5s ease-in-out;transition:-webkit-transform .5s ease-in-out;-o-transition:transform .5s ease-in-out;transition:transform .5s ease-in-out;transition:transform .5s ease-in-out,-webkit-transform .5s ease-in-out;overflow:scroll;-webkit-box-shadow:3px 0 6px rgba(0,0,0,.06);box-shadow:3px 0 6px rgba(0,0,0,.06)}body.dmc-mobile-menu-open #dmc-mobile-menu{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}#dmc-mobile-menu .dmc-mobile-menu-in{padding:40px 20px}#dmc-mobile-menu .dmc-menu-wrapper{font-size:12px;font-family:proxima-nova;font-weight:500;letter-spacing:1.5px;text-transform:uppercase}#dmc-mobile-menu .dmc-menu-wrapper ul{text-align:center}#dmc-mobile-menu .dmc-menu-wrapper li{margin-bottom:26px}#dmc-mobile-menu .dmc-menu-wrapper li:last-child{margin-bottom:0}#dmc-mobile-menu .dmc-search-form input[type=text]{border:1px solid rgba(183,188,177,.75);font-size:14px;line-height:20px;padding-left:54px}#dmc-mobile-menu .dmc-search-form{margin-top:30px;margin-bottom:30px}#dmc-mobile-menu .dmc-search-form .dmc-icon{left:18px}.dmc-mobile-menu-in{width:100%;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.dmc-mm-in-in{width:100%}.dmc-mm-trig-hold .mm-label{cursor:pointer}.content-card-3-col{max-width:356px;width:calc((100% - 10px)/ 2);margin-right:10px;margin-top:7px}.content-card-3-col:nth-child(2n){margin-right:0;margin-top:0}.content-card-3-col{margin-bottom:20px}.content-card-3-col .data-title-holder{margin-top:14px}.content-card-3-col .data-title{font-family:"Canela Web",sans-serif;font-weight:300;font-size:16px;line-height:1.2;letter-spacing:0;padding:0 6px}.dmc-feed-3-cols{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.dmc-feed-related .dmc-feed-3-cols{max-width:722px}#dmc-main-footer{margin-top:30px}.dmc-footer-row-2{background:#23443e;color:#b7bcb1;margin-top:30px}.footer-row-2-1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-bottom:1px solid rgba(183,188,177,.75);-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding-top:40px;padding-bottom:40px}.footer-row-2-1 .dmc-image-picture img{width:100%}.footer-row-2-1 .dmc-col-2{width:100%;margin-top:10px}.footer-row-2-2{display:-webkit-box;display:-ms-flexbox;display:flex;border-bottom:1px solid rgba(183,188,177,.75);padding-top:40px;padding-bottom:40px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.footer-row-2-2 .dmc-col{width:100%;margin-bottom:20px;text-align:center}.footer-row-2-2 .dmc-col:last-child{margin-bottom:0}.footer-row-2-2 .dmc-menu-wrapper{font-family:proxima-nova;font-weight:500;font-size:11px;line-height:1;letter-spacing:1.7px;text-transform:uppercase}.footer-row-2-2 .dmc-menu-wrapper li{margin-bottom:20px}.footer-row-2-2 .dmc-menu-wrapper li:last-child{margin-bottom:0}.footer-row-2-2 .dmc-menu-wrapper a{color:#b7bcb1}.footer-row-2-2 .dmc-menu-wrapper a:hover{color:#74867f}.footer-row-2-3{padding-top:40px;padding-bottom:40px}.dmc-copyright-wrapper{font-family:proxima-nova;font-weight:500;font-size:9px;line-height:1;letter-spacing:1.7px;text-transform:uppercase;color:#74867f}.dmc-copyright-wrapper a{color:#74867f}.dmc-copyright-wrapper .dmc-copyright{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.dmc-copyright-wrapper .dmc-copyright p{margin-bottom:10px}.dmc-copyright-wrapper .dmc-copyright p:last-child{margin-bottom:0}.dmc-newsletter-form{max-width:884px}.dmc-newsletter-form input[type=email]{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;font-family:"Canela Web",sans-serif!important;font-size:16px!important;line-height:1.2!important;letter-spacing:0!important;color:#b7bcb1;text-align:center;background:0 0!important;border:0!important;padding:12px 10px!important;height:auto!important}.dmc-newsletter-form input[type=email]::-webkit-input-placeholder{color:#b7bcb1}.dmc-newsletter-form input[type=email]::-moz-placeholder{color:#b7bcb1}.dmc-newsletter-form input[type=email]:-ms-input-placeholder{color:#b7bcb1}.dmc-newsletter-form input[type=email]::-ms-input-placeholder{color:#b7bcb1}.dmc-newsletter-form input[type=email]::placeholder{color:#b7bcb1}.dmc-newsletter-form input[type=submit]{font-family:Levitate,sans-serif!important;font-size:12px!important;line-height:1!important;letter-spacing:1.6px!important;text-transform:uppercase!important;color:#b7bcb1!important;margin-top:10px;background:0 0!important;margin-left:0!important;margin-right:0!important;margin-bottom:0!important;padding:0!important;border:0!important;-webkit-box-flex:0!important;-ms-flex:0 0 auto!important;flex:0 0 auto!important}.dmc-newsletter-form .main-form{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important;-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}html .emailoctopus-error-message,html .emailoctopus-success-message{color:#b7bcb1!important;font-family:proxima-nova!important;font-weight:300!important}.grecaptcha-badge{display:none!important}.wprm-recipe.wprm-recipe-template-thefirstmess-template{width:100vw;margin-left:-20px;background:#fff;margin-bottom:50px;margin-top:56px}.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-name{font-family:"Canela Web",sans-serif;font-weight:300;font-size:26px;line-height:1.12;letter-spacing:0;text-align:center;margin-bottom:24px}.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-summary{font-family:proxima-nova;font-weight:300;font-size:16px;line-height:1.33;letter-spacing:0;margin-bottom:26px;text-align:center}.wprm-recipe.wprm-recipe-template-thefirstmess-template .dmc-wprm-row-1{display:-webkit-box;display:-ms-flexbox;display:flex;padding-top:40px;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.wprm-recipe.wprm-recipe-template-thefirstmess-template .dmc-wprm-row-1 .dmc-wprm-col-1{width:100%;max-width:738px;margin-top:20px}.wprm-recipe.wprm-recipe-template-thefirstmess-template .dmc-wprm-row-1 .dmc-wprm-col-2{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-image{max-width:300px}.wprm-recipe.wprm-recipe-template-thefirstmess-template .dmc-wprm-buttons{display:none}.wprm-recipe.wprm-recipe-template-thefirstmess-template .dmc-wprm-row-2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-top:23px;border-bottom:1px solid rgba(183,188,177,.75);padding-bottom:25px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;border-top:1px solid rgba(183,188,177,.75);margin-top:30px}.wprm-recipe.wprm-recipe-template-thefirstmess-template .dmc-wprm-row-2 .wprm-recipe-details-label{font-family:Levitate,sans-serif;font-size:14px;line-height:1;letter-spacing:1.6px;text-transform:uppercase;margin-bottom:10px}.wprm-recipe.wprm-recipe-template-thefirstmess-template .dmc-wprm-row-2 .wprm-recipe-time{font-family:Levitate,sans-serif;font-size:16px;line-height:1;letter-spacing:1.6px;text-transform:uppercase}.wprm-recipe.wprm-recipe-template-thefirstmess-template .dmc-wprm-row-2 .wprm-recipe-details-unit{font-size:1em;display:inline-block;margin-left:-6px}.wprm-recipe.wprm-recipe-template-thefirstmess-template .dmc-wprm-row-2 .wprm-recipe-block-container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;position:relative}.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-times-container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-times-container .wprm-recipe-block-container{width:100%;margin-bottom:30px}.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-servings-container{width:280px}.wprm-recipe.wprm-recipe-template-thefirstmess-template .dmc-wprm-row-3{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:26px;border-bottom:1px solid rgba(183,188,177,.75);padding-bottom:6px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.wprm-recipe.wprm-recipe-template-thefirstmess-template .dmc-wprm-row-3 .dmc-wprm-col-1{width:100%;max-width:448px;margin-right:40px}.wprm-recipe.wprm-recipe-template-thefirstmess-template .dmc-wprm-row-3 .dmc-wprm-col-2{width:100%;max-width:606px}.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-header{font-family:proxima-nova;font-weight:300;font-size:24px;line-height:1.33;letter-spacing:0;margin-bottom:14px}.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-equipment li,.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-ingredients li{margin:0 0 10px;list-style:none!important}.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-instructions li{margin:0 0 6px;list-style-position:inside!important}.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-instructions .wprm-recipe-instruction-text{display:inline}.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-instructions .wprm-recipe-instruction-text span{display:inline!important}.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-notes ul{list-style:none}.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-notes ul li{margin:0 0 10px}.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-notes ul li:before{content:"•";display:inline;padding-right:6px}.wprm-recipe.wprm-recipe-template-thefirstmess-template ul{margin-bottom:45px}.wprm-recipe.wprm-recipe-template-thefirstmess-template .dmc-wprm-footer{padding-top:22px;padding-bottom:44px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.wprm-recipe.wprm-recipe-template-thefirstmess-template .dmc-wprm-footer .wprm-recipe-block-container-inline{margin-right:0}.wprm-recipe.wprm-recipe-template-thefirstmess-template .dmc-wprm-footer .wprm-recipe-author-container{font-family:proxima-nova;font-weight:300;font-size:11px;line-height:25px;letter-spacing:.5px}.wprm-recipe.wprm-recipe-template-thefirstmess-template .dmc-wprm-footer .wprm-recipe-author-container a{-webkit-box-shadow:none;box-shadow:none}.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-tags-container{display:-webkit-box;display:-ms-flexbox;display:flex;font-family:proxima-nova;font-weight:300;font-size:11px;line-height:25px;letter-spacing:.5px}.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-tags-container .wprm-recipe-tag-container:after{content:"/";display:inline-block;margin:0 7px}.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-tags-container .wprm-recipe-tag-container:nth-last-child(2):after{display:none}.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-tags-container .wprm-recipe-keyword-container{display:none}.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-tags-container a{-webkit-box-shadow:none;box-shadow:none;text-decoration:underline}.dmc-single-post-header .wprm-recipe-rating .wprm-recipe-rating-details,.wprm-recipe-template-thefirstmess-template .wprm-recipe-rating .wprm-recipe-rating-details{font-family:proxima-nova;font-weight:300;font-size:11px;line-height:25px;letter-spacing:.5px}.dmc-single-post-header .wprm-recipe-rating .wprm-rating-star,.wprm-recipe-template-thefirstmess-template .wprm-recipe-rating .wprm-rating-star{margin-right:10px!important}.dmc-single-post-header .wprm-recipe-rating .wprm-rating-star:last-child,.wprm-recipe-template-thefirstmess-template .wprm-recipe-rating .wprm-rating-star:last-child{margin-right:0!important}.dmc-single-post-header .wprm-recipe-rating svg,.wprm-recipe-template-thefirstmess-template .wprm-recipe-rating svg{width:21px!important;height:21px!important;margin-top:0!important}.dmc-single-post-header .wprm-recipe-rating .wprm-rating-star.wprm-rating-star-full svg *,.wprm-recipe-template-thefirstmess-template .wprm-recipe-rating .wprm-rating-star.wprm-rating-star-full svg *{fill:#23443e!important}.dmc-single-post-header .wprm-recipe-rating .wprm-rating-star svg *,.wprm-recipe-template-thefirstmess-template .wprm-recipe-rating .wprm-rating-star svg *{stroke:#23443e!important}.dmc-single-post-header>.wprm-recipe-rating{border-bottom:1px solid rgba(183,188,177,.75);padding:24px 10px 22px}.wprm-recipe-rating{text-align:center}.dmc-page-with-sidebar{display:-webkit-box;display:-ms-flexbox;display:flex}.dmc-page-with-sidebar .dmc-pwsb-content-holder{max-width:740px;position:relative;z-index:11;width:100%;margin-right:auto;margin-left:auto}.dmc-page-with-sidebar .dmc-pwsb-sidebar-holder{width:100%;max-width:300px;position:relative;z-index:10;display:none}.dmc-single-post.content .dmc-single-post-header .data-title-holder{margin-top:-10px;margin-bottom:26px}.dmc-single-post.content .dmc-single-post-header .data-title{font-family:"Canela Web",sans-serif;font-weight:300;font-size:26px;line-height:1.12;letter-spacing:0}.dmc-single-post.content .dmc-single-post-header .dmc-recipe-buttons{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-family:Levitate,sans-serif;font-size:12px;line-height:1;letter-spacing:1.6px;text-transform:uppercase;border-top:1px solid rgba(183,188,177,.75);border-bottom:1px solid rgba(183,188,177,.75);padding-top:6px;padding-bottom:6px}.dmc-single-post.content .dmc-single-post-header .dmc-recipe-buttons .button-wrapper{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.dmc-single-post.content .dmc-single-post-header .dmc-recipe-buttons a{text-transform:uppercase!important;color:#23443e!important}.dmc-single-post.content .dmc-single-post-header .dmc-recipe-buttons a:hover{color:#74867f!important}.dmc-single-post.content .dmc-single-post-header .dmc-recipe-buttons .separator{width:50px;height:50px;position:relative}.dmc-single-post.content .dmc-single-post-header .dmc-recipe-buttons .separator:before{content:"";width:1px;height:100%;background:rgba(183,188,177,.75);position:absolute;top:0;left:50%;-webkit-transform:rotate(28deg);-ms-transform:rotate(28deg);transform:rotate(28deg)}.dmc-single-post.content .dmc-single-post-header .data-short-description{border-bottom:1px solid rgba(183,188,177,.75);padding-top:23px;padding-bottom:25px}.dmc-single-post.content .dmc-single-post-content{margin-top:27px}.dmc-single-post.content .dmc-single-post-pre-footer{border-top:1px solid rgba(183,188,177,.75);margin-top:36px;padding-top:20px;padding-left:5px}.dmc-single-post.content .dmc-single-post-pre-footer .data-date-holder{font-family:proxima-nova;font-weight:300;font-size:11px;line-height:25px;letter-spacing:.5px}.dmc-single-post.content .dmc-single-post-pre-footer .data-post-terms{font-family:proxima-nova;font-weight:300;font-size:11px;line-height:25px;letter-spacing:.5px}.dmc-single-post.content .dmc-single-post-pre-footer .term{text-transform:capitalize}.dmc-single-post.content .dmc-comments-nav{border-top:1px solid rgba(183,188,177,.75);border-bottom:1px solid rgba(183,188,177,.75);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-family:Levitate,sans-serif;font-size:16px;line-height:1;letter-spacing:1.6px;text-transform:uppercase;margin-top:25px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding-top:20px;padding-bottom:20px}.dmc-single-post.content .dmc-comments-nav .dmc-col-1{text-align:center;width:100%}.dmc-single-post.content .dmc-comments-nav .dmc-col-2{width:50%;text-align:center}.dmc-single-post.content .dmc-comments-nav .separator{width:50px;height:50px;position:relative}.dmc-single-post.content .dmc-comments-nav .separator:before{content:"";width:1px;height:100%;background:rgba(183,188,177,.75);position:absolute;top:0;left:50%;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.dmc-single-post-related-section{margin-top:36px}.dmc-single-post-related-section .section-title{font-family:"Canela Web",sans-serif;font-weight:300;font-size:26px;line-height:1.12;letter-spacing:0;text-align:center;margin-bottom:46px}.posts-nav{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-top:1px solid rgba(183,188,177,.75);border-bottom:1px solid rgba(183,188,177,.75);padding-top:6px;padding-bottom:6px;margin-top:24px}.posts-nav .post-nav-holder{width:calc((100% - 50px)/ 2);font-family:proxima-nova;font-weight:300;font-size:11px;line-height:25px;letter-spacing:.5px;line-height:20px}.posts-nav .post-nav-holder.prev-holder{text-align:left}.posts-nav .post-nav-holder.next-holder{text-align:right}.posts-nav .separator{width:50px;height:50px;position:relative}.posts-nav .separator:before{content:"";width:1px;height:100%;background:rgba(183,188,177,.75);position:absolute;top:0;left:50%;-webkit-transform:rotate(28deg);-ms-transform:rotate(28deg);transform:rotate(28deg)}.widget_dmc-widget-about .dmc-image-holder{margin-bottom:18px}.widget_dmc-widget-about .dmc-image-picture{padding-bottom:138%}.widget_dmc-widget-about .widget-title{font-family:Levitate,sans-serif;font-size:28px;line-height:1.46;letter-spacing:1.4px;text-transform:lowercase;text-align:center;margin-bottom:14px}.widget_dmc-widget-about .widget-description{text-align:center;margin-bottom:25px}.comment-form{display:none;margin-top:30px}.comment-form .comment-form-input-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin-bottom:20px}.comment-form .comment-form-filed{margin-bottom:20px}.comment-form .comment-form-filed:last-child{margin-bottom:0}.comment-form input[type=email],.comment-form input[type=text]{border:1px solid rgba(183,188,177,.75);font-family:proxima-nova;font-weight:300;font-size:14px;line-height:1.53;letter-spacing:.2px;padding:13px 4px 11px 15px;color:#23443e}.comment-form input[type=email]::-webkit-input-placeholder,.comment-form input[type=text]::-webkit-input-placeholder{color:#23443e}.comment-form input[type=email]::-moz-placeholder,.comment-form input[type=text]::-moz-placeholder{color:#23443e}.comment-form input[type=email]:-ms-input-placeholder,.comment-form input[type=text]:-ms-input-placeholder{color:#23443e}.comment-form input[type=email]::-ms-input-placeholder,.comment-form input[type=text]::-ms-input-placeholder{color:#23443e}.comment-form input[type=email]::placeholder,.comment-form input[type=text]::placeholder{color:#23443e}.comment-form textarea{border:1px solid rgba(183,188,177,.75);font-family:proxima-nova;font-weight:300;font-size:14px;line-height:1.53;letter-spacing:.2px;padding:13px 4px 11px 15px;color:#23443e;min-height:216px}.comment-form textarea::-webkit-input-placeholder{color:#23443e}.comment-form textarea::-moz-placeholder{color:#23443e}.comment-form textarea:-ms-input-placeholder{color:#23443e}.comment-form textarea::-ms-input-placeholder{color:#23443e}.comment-form textarea::placeholder{color:#23443e}.comment-form .comment-form-wprm-rating{margin-top:22px;margin-bottom:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.comment-form .comment-form-wprm-rating label{font-family:proxima-nova;font-weight:300;font-size:14px;line-height:1.53;letter-spacing:.2px;margin-right:16px}.comment-form .wprm-rating-stars svg *{stroke:rgba(183,188,177,.75)!important}.comment-form .dmc-button-wrap{margin-top:34px}.comment-list{margin-top:30px}.comment-list .children>li{padding-left:26px;padding-right:26px}.comment-list>li:last-child{border-bottom:0;padding-bottom:0}.comment-list>ul:last-child>li:last-child{border-bottom:0;padding-bottom:0}.comment{border-bottom:1px solid rgba(183,188,177,.75);margin-top:30px;margin-bottom:30px;padding-bottom:36px}.comment .data-comment-author{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.comment .comment-author{font-family:proxima-nova;font-weight:300;font-size:16px;line-height:1.33;letter-spacing:0}.comment .data-comment-date{font-family:proxima-nova;font-weight:300;font-size:11px;line-height:25px;letter-spacing:.5px}.comment .data-comment-content{font-family:proxima-nova;font-weight:300;font-size:14px;line-height:1.82;letter-spacing:.2px;margin-top:16px}.comment .wprm-comment-rating{margin-bottom:12px}.comment .dmc-reply-wrapper{margin-top:14px}.comment .dmc-reply-link{font-family:proxima-nova;font-weight:300;font-size:11px;line-height:25px;letter-spacing:.5px;text-decoration:underline}.comment-reply-title small{padding-left:10px}@media only screen and (min-width:768px){#mobile-indicator{display:none}#dmc-single-post{margin-top:44px}.dmc-padding-main{padding-left:40px!important;padding-right:40px!important}.dmc-single-post-related-section .section-title,.dmc-single-post.content .dmc-single-post-header .data-title,.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-name{font-size:34px}.content-card-3-col .data-title,.dmc-post-editor .dmc-content-style-1 h2:not(.wprm-recipe-name){font-size:26px}.comment-form .comment-form-wprm-rating label,.comment-form input[type=email],.comment-form input[type=text],.comment-form textarea{font-size:17px}.comment-form .dmc-button-wrap input[type=submit],.dmc-button-wrap.style-default .dmc-button,.dmc-button-wrap.style-long-big .dmc-button,.dmc-single-post.content .dmc-single-post-header .dmc-recipe-buttons{font-size:16px}.comment .data-comment-content,.dmc-content-style-1,.f-text-default{font-size:17px}.comment .comment-author,.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-summary{font-size:24px}.dmc-newsletter-form{padding-right:40px}.content-card-3-col{width:calc((100% - 20px)/ 3);margin-right:10px;margin-top:0}.content-card-3-col:nth-child(2n){margin-top:15px;margin-right:10px}.content-card-3-col:nth-child(3n){margin-right:0}#dmc-main-footer{margin-top:52px}.dmc-button-wrap.style-long-big .dmc-button{padding:32px 10px}.dmc-footer-row-2{margin-top:55px}.footer-row-2-1{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;padding-top:74px;padding-bottom:60px}.footer-row-2-1 .dmc-col-1{margin-right:30px}.dmc-newsletter-form .main-form{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important;-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}html .dmc-newsletter-form .inline-container{max-width:100%!important}.dmc-newsletter-form .form-container{max-width:100%!important}.dmc-newsletter-form .emailoctopus-form-wrapper{margin-top:0!important}html .dmc-newsletter-form .emailoctopus-form-row{margin-left:0!important;margin-right:0!important;margin-bottom:0!important}.dmc-newsletter-form .main-form div[eo-form-fields-container]{position:relative;margin-right:130px}.dmc-newsletter-form .main-form div[eo-form-fields-container]:after{content:"";position:absolute;top:50%;right:-40px;width:1px;height:90px;-webkit-transform:rotate(28deg) translateY(-50%);-ms-transform:rotate(28deg) translateY(-50%);transform:rotate(28deg) translateY(-50%);background:rgba(183,188,177,.75);margin-top:-5px}.dmc-newsletter-form input[type=email]{text-align:left;font-size:33px!important}.dmc-newsletter-form input[type=submit]{margin-top:6px;font-size:16px!important}.footer-row-2-1 .dmc-col-2{margin-top:0}.footer-row-2-2{padding-top:64px;padding-bottom:70px;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.footer-row-2-2 .dmc-col{width:33.3333333333%;padding-right:40px;margin-bottom:0!important;text-align:left}.footer-row-2-3{padding-top:82px;padding-bottom:80px}.dmc-copyright-wrapper .dmc-copyright{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.dmc-copyright-wrapper .dmc-copyright p{margin-bottom:0!important}.dmc-copyright-wrapper .dmc-copyright p:after{content:"|";display:inline-block;margin:0 8px}.dmc-copyright-wrapper .dmc-copyright p:last-child:after{display:none}.dmc-content-style-1 .wp-block-image,.dmc-content-style-1 p{margin-bottom:35px}.wprm-recipe.wprm-recipe-template-thefirstmess-template{margin-left:-40px;width:calc(100% + 80px)}.wprm-recipe.wprm-recipe-template-thefirstmess-template .dmc-wprm-row-1{padding-top:70px;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.wprm-recipe.wprm-recipe-template-thefirstmess-template .dmc-wprm-row-1 .dmc-wprm-col-1{margin-right:46px;margin-top:-12px}.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-name{text-align:left;margin-bottom:32px}.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-summary{text-align:left}.wprm-recipe-rating{text-align:left}.wprm-recipe.wprm-recipe-template-thefirstmess-template .dmc-wprm-buttons{border-top:1px solid rgba(183,188,177,.75);border-bottom:1px solid rgba(183,188,177,.75);margin-top:56px;text-align:center;padding-top:18px;padding-bottom:24px}.wprm-recipe.wprm-recipe-template-thefirstmess-template .dmc-wprm-buttons a{font-family:Levitate,sans-serif;font-size:16px;line-height:1;letter-spacing:1.6px;text-transform:uppercase;color:#23443e!important}.wprm-recipe.wprm-recipe-template-thefirstmess-template .dmc-wprm-buttons a:hover{color:#74867f!important}.wprm-recipe.wprm-recipe-template-thefirstmess-template .dmc-wprm-row-3{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.wprm-recipe.wprm-recipe-template-thefirstmess-template .dmc-wprm-footer{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.wprm-recipe.wprm-recipe-template-thefirstmess-template .dmc-wprm-footer .dmc-wprm-col-1{padding-left:2px;margin-right:40px}.dmc-single-post.content .dmc-comments-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;padding-top:6px;padding-bottom:6px}.dmc-single-post.content .dmc-comments-nav .dmc-col-1{width:50%}.dmc-single-post.content .dmc-comments-nav .separator:before{-webkit-transform:rotate(28deg);-ms-transform:rotate(28deg);transform:rotate(28deg)}.comment-form .comment-form-filed{width:calc((100% - 44px)/ 3);margin-right:22px;margin-bottom:0!important}.comment-form .comment-form-filed:last-child{margin-right:0}.comment-list{margin-top:40px}.comment{margin-top:36px;margin-bottom:36px;padding-bottom:56px}.comment-form .comment-form-input-wrapper{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;margin-bottom:22px}.dmc-feed-related .dmc-feed-3-cols{max-width:100%}.dmc-post-editor .dmc-content-style-1 h2:not(.wprm-recipe-name){padding:40px 60px}.dmc-post-editor .featured-product-block{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.dmc-post-editor .featured-product-block .featured-product-block-inner{-ms-flex-preferred-size:auto!important;flex-basis:auto!important;width:calc(50% - 20px);margin-right:40px;margin-bottom:0}.dmc-post-editor .featured-product-block .fbp-right{-ms-flex-preferred-size:auto!important;flex-basis:auto!important;width:calc(50% - 20px)}.dmc-post-editor .featured-product-block{padding:40px}.dmc-post-editor .featured-product-block h3{font-size:26px}.wprm-recipe.wprm-recipe-template-thefirstmess-template .dmc-wprm-row-2{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;border-top:0;margin-top:0}.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-times-container{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-times-container .wprm-recipe-block-container{width:calc((100vw - 80px)/ 4);margin-bottom:0}.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-times-container .wprm-recipe-block-container:after{content:"";width:1px;height:90px;background:rgba(183,188,177,.75);position:absolute;top:50%;right:20px;-webkit-transform:rotate(28deg) translateY(-50%);-ms-transform:rotate(28deg) translateY(-50%);transform:rotate(28deg) translateY(-50%);margin-top:-2px}.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-times-container .wprm-recipe-block-container:last-child:after{display:none}.wprm-recipe.wprm-recipe-template-thefirstmess-template .dmc-wprm-row-2 .wprm-recipe-details-label{margin-bottom:17px;font-size:16px}.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-servings-container:before{content:"";width:1px;height:90px;background:rgba(183,188,177,.75);position:absolute;top:50%;left:-20px;-webkit-transform:rotate(28deg) translateY(-50%);-ms-transform:rotate(28deg) translateY(-50%);transform:rotate(28deg) translateY(-50%);margin-top:-2px}}@media only screen and (min-width:769px){#tablet-indicator{display:none}}@media only screen and (min-width:821px){.wprm-recipe.wprm-recipe-template-thefirstmess-template{margin-left:calc((740px - 100vw)/ 2);width:100vw}}@media only screen and (min-width:1024px){#pre-tablet-indicator{display:none}.dmc-body-inner{padding-top:0}.dmc-header-row-1{height:112px;position:relative;top:initial;left:initial;border-bottom:0}.dmc-header-row-1 .dmc-header-row-inner{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.dmc-header-row-1 .dmc-col-2{display:none}.dmc-header-row-1 .dmc-col-2 .dmc-menu-wrapper{display:block}.dmc-logo-main{padding:44px 80px}.dmc-mm-trig-hold{display:none}.dmc-header-row-2{display:block;border-top:1px solid rgba(183,188,177,.75);border-bottom:1px solid rgba(183,188,177,.75);height:50px}.dmc-header-row-2 .dmc-menu-wrapper{font-family:proxima-nova;font-weight:500;font-size:11px;line-height:1;letter-spacing:1.7px;text-transform:uppercase}.dmc-header-row-2 .dmc-menu-wrapper li.current-menu-parent>a{-webkit-box-shadow:0 3px 0 0 #dbd2a0;box-shadow:0 3px 0 0 #dbd2a0}.dmc-header-row-2 .dmc-menu-wrapper .menu>li{margin-right:40px}.dmc-header-row-2 .dmc-menu-wrapper .menu>li:last-child{margin-right:0}.dmc-header-row-2 .dmc-header-row-inner{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%}.dmc-header-row-2 .dmc-col-1{width:100%;max-width:364px;border-right:1px solid rgba(183,188,177,.75);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%;padding-left:6px}.dmc-header-row-2 .dmc-col-2{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%}.dmc-header-row-2 .dmc-col-3{width:100%;max-width:364px;border-left:1px solid rgba(183,188,177,.75);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.dmc-header-row-2 .dmc-col-3 .dmc-menu-wrapper .menu>li{margin-right:40px}.dmc-header-row-2 .dmc-col-3 .dmc-menu-wrapper .menu>li:last-child{margin-right:0}body.dmc-sticky-nav-active .dmc-body-inner{padding-top:112px}body.dmc-sticky-nav-active .dmc-header-row-1{height:88px;position:fixed;top:0;left:0;width:100%;z-index:200;border-bottom:1px solid rgba(183,188,177,.75)}body.dmc-sticky-nav-active .dmc-header-row-1 .dmc-header-row-inner{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}body.dmc-sticky-nav-active .dmc-header-row-1 .dmc-col-2{display:block}body.dmc-sticky-nav-active .dmc-header-row-1 .dmc-logo-main{padding-left:0;padding-top:32px;padding-bottom:32px}#dmc-mobile-menu{display:none}.dmc-single-post-related-section .section-title,.dmc-single-post.content .dmc-single-post-header .data-title,.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-name{font-size:50px}.content-card-3-col .data-title,.dmc-post-editor .dmc-content-style-1 h2:not(.wprm-recipe-name){font-size:33px}.dmc-newsletter-form .main-form div[eo-form-fields-container]{margin-right:150px}.content-card-3-col{width:calc((100% - 54px)/ 3);margin-right:27px}.content-card-3-col:nth-child(2n){margin-right:27px}.content-card-3-col:nth-child(3n){margin-right:0}.footer-row-2-1 .dmc-col-1{margin-right:42px}.dmc-newsletter-form .separator{margin-right:90px;margin-left:50px}.dmc-page-with-sidebar .dmc-pwsb-content-holder{width:calc(100% - 46px - 300px);margin-right:46px;margin-left:0}.dmc-page-with-sidebar .dmc-pwsb-sidebar-holder{display:block}.wprm-recipe.wprm-recipe-template-thefirstmess-template{margin-left:-40px}}@media only screen and (min-width:1025px){#landscape-indicator{display:none}}@media only screen and (min-width:1135px){#pre-landscape-indicator{display:none}.dmc-newsletter-form .main-form div[eo-form-fields-container]{margin-right:190px}.dmc-newsletter-form{margin-right:0}.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-times-container .wprm-recipe-block-container{width:280px}}@media only screen and (min-width:1203px){.wprm-recipe.wprm-recipe-template-thefirstmess-template{margin-left:calc((1122px - 100vw)/ 2)}}@media only screen and (min-width:1263px){.dmc-width-main{max-width:1282px}.dmc-padding-main{padding-left:80px!important;padding-right:80px!important}.dmc-header-row-2 .dmc-col-3 .dmc-menu-wrapper .menu>li{margin-right:62px}.dmc-header-row-2 .dmc-menu-wrapper .menu>li{margin-right:54px}.wprm-recipe.wprm-recipe-template-thefirstmess-template{margin-left:calc((1122px - 100vw)/ 2)}}@media only screen and (max-width:1023px){.dmc-feed-related .content-card-3-col{max-width:356px;width:calc((100% - 40px)/ 3);margin-right:20px}.dmc-feed-related .content-card-3-col:last-child{margin-right:0}}@media only screen and (max-width:767px){.dmc-feed-related .content-card-3-col{margin-right:10px;width:calc((100% - 10px)/ 2)}.dmc-feed-related .content-card-3-col:nth-child(2){margin-right:0;margin-top:0}.dmc-feed-related .content-card-3-col:nth-child(3){display:none}.comment-form .dmc-button-wrap input[type=submit],.dmc-button-wrap.style-long-big.and-short .dmc-button{padding:20px 10px 18px}.wprm-recipe.wprm-recipe-template-thefirstmess-template .dmc-wprm-buttons .wprm-recipe-print{font-family:Levitate,sans-serif;font-size:14px;line-height:1;letter-spacing:1.6px;text-transform:uppercase;text-align:center;display:block;margin:30px auto}}@font-face{font-family:proxima-nova;src:url("https://use.typekit.net/af/1be3c2/00000000000000007735e606/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3") format("woff2"),url("https://use.typekit.net/af/1be3c2/00000000000000007735e606/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3") format("woff"),url("https://use.typekit.net/af/1be3c2/00000000000000007735e606/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3") format("opentype");font-display:swap;font-style:normal;font-weight:300;font-stretch:normal}@font-face{font-family:proxima-nova;src:url("https://use.typekit.net/af/23e139/00000000000000007735e605/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n5&v=3") format("woff2"),url("https://use.typekit.net/af/23e139/00000000000000007735e605/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n5&v=3") format("woff"),url("https://use.typekit.net/af/23e139/00000000000000007735e605/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n5&v=3") format("opentype");font-display:swap;font-style:normal;font-weight:500;font-stretch:normal}.tippy-box[data-theme~=wprm]{background-color:#333;color:#fff}.tippy-box[data-theme~=wprm][data-placement^=top]>.tippy-arrow::before{border-top-color:#333}.tippy-box[data-theme~=wprm][data-placement^=bottom]>.tippy-arrow::before{border-bottom-color:#333}.tippy-box[data-theme~=wprm][data-placement^=left]>.tippy-arrow::before{border-left-color:#333}.tippy-box[data-theme~=wprm][data-placement^=right]>.tippy-arrow::before{border-right-color:#333}.tippy-box[data-theme~=wprm] a{color:#fff}.wprm-comment-rating svg{width:18px!important;height:18px!important}img.wprm-comment-rating{width:90px!important;height:18px!important}body{--comment-rating-star-color:#343434}body{--wprm-popup-font-size:16px}body{--wprm-popup-background:#f0eded}body{--wprm-popup-title:#23443e}body{--wprm-popup-content:#23443e}body{--wprm-popup-button-background:#f0eded}body{--wprm-popup-button-text:#23443e}.wprm-recipe-container .adthrive-recipe{min-height:400px!important}.adthrive-ad.adthrive-content{min-height:400px!important}.wprm-recipe.wprm-recipe-template-thefirstmess-template .dmc-wprm-buttons{display:block}.dmc-content-style-1{font-size:17px;line-height:1.6}.f-text-default{font-size:17px}.dmc-single-post-header .wprm-recipe-rating .wprm-recipe-rating-details,.wprm-recipe-template-thefirstmess-template .wprm-recipe-rating .wprm-recipe-rating-details{font-size:13px}.posts-nav .post-nav-holder{font-size:14px}.wprm-recipe.wprm-recipe-template-thefirstmess-template .dmc-wprm-footer .wprm-recipe-author-container,.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-tags-container{font-size:13px}@media only screen and (min-width:1024px){.dmc-header-row-2 .dmc-menu-wrapper{font-size:13px}}.dmc-mm-trig-hold .mm-label{font-size:14px}#dmc-mobile-menu .dmc-menu-wrapper{font-size:15px}.footer-row-2-2 .dmc-menu-wrapper{font-size:13px}.dmc-copyright-wrapper{font-size:11px}.content-card-3-col .data-title{line-height:1.4}@media only screen and (max-width:767px){.dmc-button-wrap.style-default .dmc-button{font-size:14px}.dmc-single-post.content .dmc-single-post-header .dmc-recipe-buttons{font-size:13px}.dmc-button-wrap.style-long-big .dmc-button{font-size:14px}}figure.wp-block-gallery{margin:2em 0}@media only screen and (min-width:735px){.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-times-container .wprm-recipe-block-container:first-child:nth-last-child(4),.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-times-container .wprm-recipe-block-container:first-child:nth-last-child(4)~div{width:175px}}@media only screen and (min-width:1024px){.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-times-container .wprm-recipe-block-container:first-child:nth-last-child(4),.wprm-recipe.wprm-recipe-template-thefirstmess-template .wprm-recipe-times-container .wprm-recipe-block-container:first-child:nth-last-child(4)~div{width:225px}}.content-card-3-col{margin-right:0!important}.dmc-feed-3-cols{justify-content:space-between}.comment-form,.comment-list{display:block}.comment-respond .comment-form-wprm-rating{margin-bottom:10px;padding-left:15px}.comment-list,.comment-list .children{list-style:none}#dmc-comments{margin-top:50px}.dmc-comments-nav h2{font-size:1.2em;margin:10px 0}.comment-nav{margin:50px 0 20px;border-top:1px solid rgba(183,188,177,.75);border-bottom:1px solid rgba(183,188,177,.75);padding-top:40px;padding-bottom:50px}.comment-nav-previous{width:50%;float:left}.comment-nav-next{width:50%;float:right;text-align:right}.data-title-holder span{margin-top:1em;display:block;padding-left:3px}.data-title-holder span a{text-decoration:underline}.dmc-page-with-sidebar .dmc-pwsb-content-holder{z-index:auto}#email-highlight .emailoctopus-form input:not([type=submit]){border:1px solid rgba(183,188,177,.75)!important;border-radius:0;font-family:"Proxima Nova Light",sans-serif;font-size:14px!important;letter-spacing:.2px;padding:20px 4px 20px 20px;color:#23443e;background-color:transparent;margin-bottom:20px;line-height:1.53;background-color:transparent!important}#email-highlight .emailoctopus-form input[type=submit]{border-top:1px solid rgba(183,188,177,.75)!important;border-bottom:1px solid rgba(183,188,177,.75)!important;border-left:0;border-right:0;background-color:transparent!important;border-radius:0;font-family:Levitate,sans-serif;font-size:12px!important;line-height:1;letter-spacing:1.6px;text-transform:uppercase;color:#23443e!important;padding:20px 10px 18px}#email-highlight .emailoctopus-form input[type=submit]{width:100%}#email-highlight .main-form{display:block!important}@media(min-width:1263px){.dmc-header-row-2 .dmc-col-3 .dmc-menu-wrapper .menu>li{margin-right:40px}}header.wprm-popup-modal__header{font-family:"Canela Web",sans-serif}textarea.wprm-user-rating-modal-comment{border:1px solid rgba(183,188,177,.75);border-radius:0!important;font-weight:300;letter-spacing:.2px}textarea.wprm-user-rating-modal-comment::placeholder{color:#23443e}button.wprm-popup-modal__btn.wprm-user-rating-modal-submit-comment{text-transform:uppercase;letter-spacing:1.6px;font-size:13px;font-family:Levitate,sans-serif;border-top:1px solid rgba(183,188,177,.75);border-bottom:1px solid rgba(183,188,177,.75);padding:15px}button.wprm-popup-modal__btn.wprm-user-rating-modal-submit-comment:focus,button.wprm-popup-modal__btn.wprm-user-rating-modal-submit-comment:hover{transform:none;color:#74867f}.breadcrumbs{margin:30px 0;line-height:1.6;text-transform:capitalize}.wprm-user-rating-summary{justify-content:center;margin-top:20px}.comment-form .comment-form-wprm-rating{margin-top:10px;margin-bottom:20px}.comment-form .comment-form-comment-subscribe{margin:20px 0}.comment-form .comment-form-comment-subscribe label{padding-left:5px;vertical-align:top}@media only screen and (min-width:768px){.comment-form .comment-form-filed{width:calc((100% - 22px)/ 2)}}.dmc-single-post-content h3{font-weight:700;font-size:22px;margin-bottom:20px}.dmc-content-style-1 ul ul{margin-bottom:8px}.adthrive-sticky-container{position:relative;display:flex;flex-direction:column;justify-content:flex-start;align-items:center;min-height:250px!important;margin:10px 0;background-color:#fafafa;padding-bottom:0}#wprm-recipe-user-rating-0 .wprm-rating-star.wprm-rating-star-full svg *{fill:#343434}#wprm-recipe-user-rating-0 .wprm-rating-star.wprm-rating-star-33 svg *{fill:url(#wprm-recipe-user-rating-0-33)}#wprm-recipe-user-rating-0 .wprm-rating-star.wprm-rating-star-50 svg *{fill:url(#wprm-recipe-user-rating-0-50)}#wprm-recipe-user-rating-0 .wprm-rating-star.wprm-rating-star-66 svg *{fill:url(#wprm-recipe-user-rating-0-66)}linearGradient#wprm-recipe-user-rating-0-33 stop{stop-color:#343434}linearGradient#wprm-recipe-user-rating-0-50 stop{stop-color:#343434}linearGradient#wprm-recipe-user-rating-0-66 stop{stop-color:#343434}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"]{--text-colour:#212529;--font-family:"Helvetica Neue",Helvetica,Arial,Verdana,sans-serif}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .emailoctopus-form{--label-size:12px;--field-colour:#FFFFFF;--label-colour:#212529;--button-colour:#6E54D7;--button-text-colour:#FFFFFF;--field-border-colour:#CED4DA}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"].inline-container{max-width:600px!important;position:relative}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"]{display:block;font-family:var(--font-family)}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .h3,[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] h1,[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] h2,[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] h3{font-weight:500;line-height:1.2;margin-bottom:.5rem}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] h1{font-size:2.5rem}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] h2{font-size:2rem}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .h3,[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] h3{font-size:1.75rem}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] small{font-size:.875em;font-weight:400}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .form-control{background-clip:padding-box;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem;color:#495057;display:block;font-size:1rem;font-weight:400;height:calc(1.5em + .75rem + 2px);line-height:1.5;padding:.375rem .75rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:100%}@media (prefers-reduced-motion:reduce){[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .form-control{transition:none}}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .form-control::-ms-expand{background-color:transparent;border:0}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .form-control:focus{background-color:#fff;border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25);color:#495057;outline:0}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .form-control::placeholder{color:#6c757d;opacity:1}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .form-control:disabled{background-color:#e9ecef;opacity:1}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] select.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] select.form-control:focus::-ms-value{background-color:#fff;color:#495057}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] select.form-control[multiple],[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] select.form-control[size],[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] textarea.form-control{height:auto}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .form-group{margin-bottom:1rem}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .btn{background-color:transparent;border:1px solid transparent;border-radius:.25rem;color:#212529;display:inline-block;font-size:1rem;font-weight:400;line-height:1.5;padding:.375rem .75rem;text-align:center;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;user-select:none;vertical-align:middle}@media (prefers-reduced-motion:reduce){[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .btn{transition:none}}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .btn:hover{color:#212529;text-decoration:none}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .btn.focus,[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .btn:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.25);outline:0}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .btn.disabled,[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .btn:disabled{opacity:.65}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .btn:not(:disabled):not(.disabled){cursor:pointer}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] a.btn.disabled,[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] fieldset:disabled a.btn{pointer-events:none}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .btn-primary{background-color:#007bff;border-color:#007bff;color:#fff}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .btn-primary:hover{background-color:#0069d9;border-color:#0062cc;color:#fff}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .btn-primary.focus,[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .btn-primary:focus{background-color:#0069d9;border-color:#0062cc;box-shadow:0 0 0 .2rem rgba(38,143,255,.5);color:#fff}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .btn-primary.disabled,[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .btn-primary:disabled{background-color:#007bff;border-color:#007bff;color:#fff}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .btn-primary:not(:disabled):not(.disabled).active,[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .btn-primary:not(:disabled):not(.disabled):active{background-color:#0062cc;border-color:#005cbf;color:#fff}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .btn-primary:not(:disabled):not(.disabled).active:focus,[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .btn-primary:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .mb-2{margin-bottom:.5rem!important}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] input[type=submit]{-webkit-appearance:unset}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] input{background:0 0;margin:0}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] input[type=checkbox]{width:auto}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker{width:min-content}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker:not(.active){display:none}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-picker{background-color:#fff;border-radius:4px;display:flex;flex-direction:column}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-main{flex:auto;padding:2px}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-footer{background-color:#f8f9fa;box-shadow:inset 0 1px 1px rgba(0,0,0,.1)}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-title{background-color:#f8f9fa;box-shadow:inset 0 -1px 1px rgba(0,0,0,.1);font-weight:700;padding:.375rem .75rem;text-align:center}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-controls{display:flex}.datepicker-header [data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-controls{padding:2px 2px 0}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-controls .button{align-items:center;background-color:#fff;border:1px solid #dbe0e5;border-radius:4px;box-shadow:none;color:#343a40;cursor:pointer;display:inline-flex;font-size:1rem;height:2.25em;justify-content:center;line-height:1.5;margin:0;padding:calc(.375em - 1px) .75em;position:relative;text-align:center;vertical-align:top;white-space:nowrap}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-controls .button:active,[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-controls .button:focus{outline:0}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-controls .button:hover{border-color:#afbbc6;color:#343a40}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-controls .button:focus{border-color:#3273dc;color:#343a40}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-controls .button:focus:not(:active){box-shadow:0 0 0 .125em rgba(50,115,220,.25)}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-controls .button:active{border-color:#404040;color:#343a40}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-controls .button[disabled]{cursor:not-allowed}.datepicker-header [data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-controls .button{border-color:transparent;font-weight:700}.datepicker-header [data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-controls .button:hover{background-color:#f9f9f9}.datepicker-header [data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-controls .button:active{background-color:#f2f2f2}.datepicker-footer [data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-controls .button{border-radius:2px;flex:auto;font-size:.75rem;margin:calc(.375rem - 1px) .375rem}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-controls .view-switch{flex:auto}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-controls .next-button,[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-controls .prev-button{flex:0 0 14.2857142857%;padding-left:.375rem;padding-right:.375rem}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-controls .next-button.disabled,[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-controls .prev-button.disabled{visibility:hidden}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-grid,[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-view{display:flex}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-view{align-items:stretch;width:15.75rem}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-grid{flex:auto;flex-wrap:wrap}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker .days{display:flex;flex:auto;flex-direction:column}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker .days-of-week{display:flex}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker .week-numbers{display:flex;flex:0 0 9.6774193548%;flex-direction:column}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker .weeks{align-items:stretch;display:flex;flex:auto;flex-direction:column}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker span{align-items:center;border-radius:4px;cursor:default;display:flex;justify-content:center;-webkit-touch-callout:none;user-select:none}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker .dow{font-size:.875rem;font-weight:700;height:1.5rem}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker .week{color:#afbbc6;flex:auto;font-size:.75rem}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker .days .dow,[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-cell{flex-basis:14.2857142857%}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-cell{height:2.25rem}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-cell:not(.day){flex-basis:25%;height:4.5rem}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-cell:not(.disabled):hover{background-color:#f9f9f9;cursor:pointer}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-cell.focused:not(.selected){background-color:#e9edf0}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-cell.selected,[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-cell.selected:hover{background-color:#3273dc;color:#fff;font-weight:600}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-cell.disabled{color:#dbe0e5}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-cell.next:not(.disabled),[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-cell.prev:not(.disabled){color:#7a7a7a}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-cell.next.selected,[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-cell.prev.selected{color:#e6e6e6}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-cell.highlighted:not(.selected):not(.range):not(.today){background-color:#f8f9fa;border-radius:0}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-cell.highlighted:not(.selected):not(.range):not(.today):not(.disabled):hover{background-color:#f1f3f5}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-cell.highlighted:not(.selected):not(.range):not(.today).focused{background-color:#e9edf0}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-cell.today:not(.selected){background-color:#00d1b2}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-cell.today:not(.selected):not(.disabled){color:#fff}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-cell.today.focused:not(.selected){background-color:#00ccad}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-cell.range-end:not(.selected),[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-cell.range-start:not(.selected){background-color:#afbbc6;color:#fff}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-cell.range-end.focused:not(.selected),[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-cell.range-start.focused:not(.selected){background-color:#aab6c2}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-cell.range-start:not(.range-end){border-radius:4px 0 0 4px}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-cell.range-end:not(.range-start){border-radius:0 4px 4px 0}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-cell.range{background-color:#dbe0e5;border-radius:0}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-cell.range:not(.disabled):not(.focused):not(.today):hover{background-color:#d4dae1}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-cell.range.disabled{color:#c1cad3}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-cell.range.focused{background-color:#ced5dc}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-input.in-edit{border-color:#276bda}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-input.in-edit:active,[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-input.in-edit:focus{box-shadow:0 0 .25em .25em rgba(39,107,218,.2)}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker{border:none;box-shadow:none;font-family:var(--font-family)}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker .datepicker-picker{border:1px solid #ced4da;border-radius:3px;box-shadow:0 2px 10px 0 rgba(0,0,0,.1)}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker .datepicker-controls .button{background-color:#fff;border-color:transparent;font-weight:700}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker .datepicker-controls .button:hover{background-color:#f8f9fa}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker .datepicker-cell{color:var(--datepicker-cell-text,#071c35)}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker .datepicker-cell.selected{background-color:var(--datepicker-cell-select,#3c3c3c);color:var(--datepicker-cell-text-select,#fff);font-weight:700}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker .datepicker-cell:not(.disabled):not(.selected):hover{background-color:color-mix(in srgb,var(--datepicker-cell-select,#3c3c3c),#fff 79%);color:var(--datepicker-cell-text,#071c35)}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker .datepicker-cell:not(.disabled):not(.selected):active{background:color-mix(in srgb,var(--datepicker-cell-select,#3c3c3c),#fff 55%)}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker .datepicker-cell.focused:not(.selected){background-color:#fff}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker .datepicker-cell.next:not(.disabled),[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker .datepicker-cell.prev:not(.disabled){color:color-mix(in srgb,var(--datepicker-cell-text,#071c35),#fff 75%)!important}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-input::-webkit-calendar-picker-indicator,[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-input::-webkit-inner-spin-button{-webkit-appearance:none;display:none}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .datepicker-input.in-edit{border-color:#80bdff!important;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)!important}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] input[type=date]{position:relative}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] input[type=date]:not(.clicked):not(.initialised):after{color:#6c757d;content:attr(placeholder);left:.75rem;position:absolute;top:50%;transform:translateY(-50%)}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] input[type=date]:not(.clicked):not(.initialised){color:transparent}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] input[type=date].form-control,[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] input[type=month].form-control,[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] input[type=time].form-control{appearance:none}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] *,[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] :after,[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] :before{box-sizing:border-box}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] img,[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] picture{display:block;max-width:100%}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .text-center{text-align:center}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] h1{color:var(--text-colour);margin-top:0}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .emailoctopus-form-row{margin-bottom:18px}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .form-container{margin:auto;max-width:520px;width:100%}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .emailoctopus-form [eo-form-fields-container]{align-items:flex-end;display:flex;flex-grow:2;flex-wrap:wrap;justify-content:center}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .emailoctopus-form [eo-form-fields-container] div:first-child:nth-last-child(n+3),[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .emailoctopus-form [eo-form-fields-container] div:first-child:nth-last-child(n+3)~div{width:100%}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .main-form{align-items:flex-end;display:flex;flex-wrap:wrap;justify-content:center}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .main-form .btn,[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .main-form .emailoctopus-form-row{margin-left:2px;margin-right:2px}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .main-form .emailoctopus-form-row{flex-grow:1;min-width:200px}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .main-form .btn{flex-grow:1}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .emailoctopus-form-wrapper{margin-top:1rem}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .emailoctopus-error-message,[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .emailoctopus-success-message{color:var(--text-colour)!important;display:block;font-weight:400;margin:0;opacity:1;padding:0;text-align:center}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .emailoctopus-form-row-hp{left:-5000px;position:absolute}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .emailoctopus-form label{color:var(--label-colour);font-family:var(--font-family);font-size:var(--label-size)}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .emailoctopus-form label:empty{display:none!important}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .emailoctopus-form input{font-family:var(--font-family)}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .emailoctopus-form input:not([type=submit]){background-color:var(--field-colour);border-color:var(--field-border-colour);font-size:var(--base-font-size);line-height:1.6}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .emailoctopus-form input[type=submit]{background-color:var(--button-colour);border-color:var(--button-colour);color:var(--button-text-colour);font-size:var(--base-font-size)}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .mastfoot{display:inline-block;font-family:Lato,Arial,sans-serif;margin-left:auto;margin-right:auto;width:auto}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .mastfoot .inner{text-align:center}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .mastfoot p{background:#f8fbfa;border:1px solid #e8f5f2;border-radius:.25rem;color:#808c97;display:inline-block;font-size:14px;margin:auto;padding:.5em}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .mastfoot a{color:#808c97;display:inline-block;font-weight:700;margin-left:5px;padding-left:23px;position:relative;text-decoration:none}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .mastfoot a:before{background-image:url(https://gallery.eo.page/tentacles/icons/v1/powered-by/otto.svg);background-size:cover;content:"";height:25px;left:0;position:absolute;top:-4px;width:18px}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .mastfoot a:hover{color:#808c97!important}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .mastfoot.disabled p{display:none}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .mastfoot.no-bg p{background:0 0;border:none}[data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"] .mastfoot{margin-top:10px!important}#wprm-recipe-user-rating-1 .wprm-rating-star.wprm-rating-star-full svg *{fill:#343434}#wprm-recipe-user-rating-1 .wprm-rating-star.wprm-rating-star-33 svg *{fill:url(#wprm-recipe-user-rating-1-33)}#wprm-recipe-user-rating-1 .wprm-rating-star.wprm-rating-star-50 svg *{fill:url(#wprm-recipe-user-rating-1-50)}#wprm-recipe-user-rating-1 .wprm-rating-star.wprm-rating-star-66 svg *{fill:url(#wprm-recipe-user-rating-1-66)}linearGradient#wprm-recipe-user-rating-1-33 stop{stop-color:#343434}linearGradient#wprm-recipe-user-rating-1-50 stop{stop-color:#343434}linearGradient#wprm-recipe-user-rating-1-66 stop{stop-color:#343434}#wprm-recipe-user-rating-2 .wprm-rating-star.wprm-rating-star-full svg *{fill:#343434}#wprm-recipe-user-rating-2 .wprm-rating-star.wprm-rating-star-33 svg *{fill:url(#wprm-recipe-user-rating-2-33)}#wprm-recipe-user-rating-2 .wprm-rating-star.wprm-rating-star-50 svg *{fill:url(#wprm-recipe-user-rating-2-50)}#wprm-recipe-user-rating-2 .wprm-rating-star.wprm-rating-star-66 svg *{fill:url(#wprm-recipe-user-rating-2-66)}linearGradient#wprm-recipe-user-rating-2-33 stop{stop-color:#343434}linearGradient#wprm-recipe-user-rating-2-50 stop{stop-color:#343434}linearGradient#wprm-recipe-user-rating-2-66 stop{stop-color:#343434}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763]{--text-colour:#212529;--font-family:"Helvetica Neue",Helvetica,Arial,Verdana,sans-serif}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .emailoctopus-form{--label-size:12px;--field-colour:#FFFFFF;--label-colour:#212529;--button-colour:#6E54D7;--button-text-colour:#FFFFFF;--field-border-colour:#CED4DA}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763].inline-container{max-width:600px!important;position:relative}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763]{display:block;font-family:var(--font-family)}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .h3,[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] h1,[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] h2,[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] h3{font-weight:500;line-height:1.2;margin-bottom:.5rem}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] h1{font-size:2.5rem}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] h2{font-size:2rem}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .h3,[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] h3{font-size:1.75rem}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] small{font-size:.875em;font-weight:400}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .form-control{background-clip:padding-box;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem;color:#495057;display:block;font-size:1rem;font-weight:400;height:calc(1.5em + .75rem + 2px);line-height:1.5;padding:.375rem .75rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:100%}@media (prefers-reduced-motion:reduce){[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .form-control{transition:none}}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .form-control::-ms-expand{background-color:transparent;border:0}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .form-control:focus{background-color:#fff;border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25);color:#495057;outline:0}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .form-control::placeholder{color:#6c757d;opacity:1}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .form-control:disabled{background-color:#e9ecef;opacity:1}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] select.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] select.form-control:focus::-ms-value{background-color:#fff;color:#495057}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] select.form-control[multiple],[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] select.form-control[size],[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] textarea.form-control{height:auto}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .form-group{margin-bottom:1rem}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .btn{background-color:transparent;border:1px solid transparent;border-radius:.25rem;color:#212529;display:inline-block;font-size:1rem;font-weight:400;line-height:1.5;padding:.375rem .75rem;text-align:center;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;user-select:none;vertical-align:middle}@media (prefers-reduced-motion:reduce){[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .btn{transition:none}}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .btn:hover{color:#212529;text-decoration:none}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .btn.focus,[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .btn:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.25);outline:0}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .btn.disabled,[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .btn:disabled{opacity:.65}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .btn:not(:disabled):not(.disabled){cursor:pointer}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] a.btn.disabled,[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] fieldset:disabled a.btn{pointer-events:none}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .btn-primary{background-color:#007bff;border-color:#007bff;color:#fff}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .btn-primary:hover{background-color:#0069d9;border-color:#0062cc;color:#fff}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .btn-primary.focus,[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .btn-primary:focus{background-color:#0069d9;border-color:#0062cc;box-shadow:0 0 0 .2rem rgba(38,143,255,.5);color:#fff}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .btn-primary.disabled,[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .btn-primary:disabled{background-color:#007bff;border-color:#007bff;color:#fff}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .btn-primary:not(:disabled):not(.disabled).active,[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .btn-primary:not(:disabled):not(.disabled):active{background-color:#0062cc;border-color:#005cbf;color:#fff}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .btn-primary:not(:disabled):not(.disabled).active:focus,[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .btn-primary:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .mb-2{margin-bottom:.5rem!important}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] input[type=submit]{-webkit-appearance:unset}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] input{background:0 0;margin:0}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] input[type=checkbox]{width:auto}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker{width:min-content}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker:not(.active){display:none}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-picker{background-color:#fff;border-radius:4px;display:flex;flex-direction:column}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-main{flex:auto;padding:2px}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-footer{background-color:#f8f9fa;box-shadow:inset 0 1px 1px rgba(0,0,0,.1)}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-title{background-color:#f8f9fa;box-shadow:inset 0 -1px 1px rgba(0,0,0,.1);font-weight:700;padding:.375rem .75rem;text-align:center}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-controls{display:flex}.datepicker-header [data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-controls{padding:2px 2px 0}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-controls .button{align-items:center;background-color:#fff;border:1px solid #dbe0e5;border-radius:4px;box-shadow:none;color:#343a40;cursor:pointer;display:inline-flex;font-size:1rem;height:2.25em;justify-content:center;line-height:1.5;margin:0;padding:calc(.375em - 1px) .75em;position:relative;text-align:center;vertical-align:top;white-space:nowrap}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-controls .button:active,[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-controls .button:focus{outline:0}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-controls .button:hover{border-color:#afbbc6;color:#343a40}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-controls .button:focus{border-color:#3273dc;color:#343a40}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-controls .button:focus:not(:active){box-shadow:0 0 0 .125em rgba(50,115,220,.25)}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-controls .button:active{border-color:#404040;color:#343a40}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-controls .button[disabled]{cursor:not-allowed}.datepicker-header [data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-controls .button{border-color:transparent;font-weight:700}.datepicker-header [data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-controls .button:hover{background-color:#f9f9f9}.datepicker-header [data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-controls .button:active{background-color:#f2f2f2}.datepicker-footer [data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-controls .button{border-radius:2px;flex:auto;font-size:.75rem;margin:calc(.375rem - 1px) .375rem}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-controls .view-switch{flex:auto}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-controls .next-button,[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-controls .prev-button{flex:0 0 14.2857142857%;padding-left:.375rem;padding-right:.375rem}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-controls .next-button.disabled,[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-controls .prev-button.disabled{visibility:hidden}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-grid,[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-view{display:flex}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-view{align-items:stretch;width:15.75rem}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-grid{flex:auto;flex-wrap:wrap}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker .days{display:flex;flex:auto;flex-direction:column}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker .days-of-week{display:flex}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker .week-numbers{display:flex;flex:0 0 9.6774193548%;flex-direction:column}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker .weeks{align-items:stretch;display:flex;flex:auto;flex-direction:column}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker span{align-items:center;border-radius:4px;cursor:default;display:flex;justify-content:center;-webkit-touch-callout:none;user-select:none}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker .dow{font-size:.875rem;font-weight:700;height:1.5rem}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker .week{color:#afbbc6;flex:auto;font-size:.75rem}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker .days .dow,[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-cell{flex-basis:14.2857142857%}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-cell{height:2.25rem}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-cell:not(.day){flex-basis:25%;height:4.5rem}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-cell:not(.disabled):hover{background-color:#f9f9f9;cursor:pointer}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-cell.focused:not(.selected){background-color:#e9edf0}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-cell.selected,[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-cell.selected:hover{background-color:#3273dc;color:#fff;font-weight:600}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-cell.disabled{color:#dbe0e5}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-cell.next:not(.disabled),[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-cell.prev:not(.disabled){color:#7a7a7a}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-cell.next.selected,[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-cell.prev.selected{color:#e6e6e6}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-cell.highlighted:not(.selected):not(.range):not(.today){background-color:#f8f9fa;border-radius:0}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-cell.highlighted:not(.selected):not(.range):not(.today):not(.disabled):hover{background-color:#f1f3f5}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-cell.highlighted:not(.selected):not(.range):not(.today).focused{background-color:#e9edf0}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-cell.today:not(.selected){background-color:#00d1b2}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-cell.today:not(.selected):not(.disabled){color:#fff}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-cell.today.focused:not(.selected){background-color:#00ccad}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-cell.range-end:not(.selected),[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-cell.range-start:not(.selected){background-color:#afbbc6;color:#fff}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-cell.range-end.focused:not(.selected),[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-cell.range-start.focused:not(.selected){background-color:#aab6c2}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-cell.range-start:not(.range-end){border-radius:4px 0 0 4px}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-cell.range-end:not(.range-start){border-radius:0 4px 4px 0}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-cell.range{background-color:#dbe0e5;border-radius:0}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-cell.range:not(.disabled):not(.focused):not(.today):hover{background-color:#d4dae1}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-cell.range.disabled{color:#c1cad3}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-cell.range.focused{background-color:#ced5dc}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-input.in-edit{border-color:#276bda}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-input.in-edit:active,[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-input.in-edit:focus{box-shadow:0 0 .25em .25em rgba(39,107,218,.2)}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker{border:none;box-shadow:none;font-family:var(--font-family)}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker .datepicker-picker{border:1px solid #ced4da;border-radius:3px;box-shadow:0 2px 10px 0 rgba(0,0,0,.1)}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker .datepicker-controls .button{background-color:#fff;border-color:transparent;font-weight:700}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker .datepicker-controls .button:hover{background-color:#f8f9fa}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker .datepicker-cell{color:var(--datepicker-cell-text,#071c35)}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker .datepicker-cell.selected{background-color:var(--datepicker-cell-select,#3c3c3c);color:var(--datepicker-cell-text-select,#fff);font-weight:700}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker .datepicker-cell:not(.disabled):not(.selected):hover{background-color:color-mix(in srgb,var(--datepicker-cell-select,#3c3c3c),#fff 79%);color:var(--datepicker-cell-text,#071c35)}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker .datepicker-cell:not(.disabled):not(.selected):active{background:color-mix(in srgb,var(--datepicker-cell-select,#3c3c3c),#fff 55%)}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker .datepicker-cell.focused:not(.selected){background-color:#fff}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker .datepicker-cell.next:not(.disabled),[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker .datepicker-cell.prev:not(.disabled){color:color-mix(in srgb,var(--datepicker-cell-text,#071c35),#fff 75%)!important}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-input::-webkit-calendar-picker-indicator,[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-input::-webkit-inner-spin-button{-webkit-appearance:none;display:none}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .datepicker-input.in-edit{border-color:#80bdff!important;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)!important}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] input[type=date]{position:relative}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] input[type=date]:not(.clicked):not(.initialised):after{color:#6c757d;content:attr(placeholder);left:.75rem;position:absolute;top:50%;transform:translateY(-50%)}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] input[type=date]:not(.clicked):not(.initialised){color:transparent}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] input[type=date].form-control,[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] input[type=month].form-control,[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] input[type=time].form-control{appearance:none}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] *,[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] :after,[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] :before{box-sizing:border-box}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] img,[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] picture{display:block;max-width:100%}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .text-center{text-align:center}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] h1{color:var(--text-colour);margin-top:0}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .emailoctopus-form-row{margin-bottom:18px}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .form-container{margin:auto;max-width:520px;width:100%}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .emailoctopus-form [eo-form-fields-container]{align-items:flex-end;display:flex;flex-grow:2;flex-wrap:wrap;justify-content:center}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .emailoctopus-form [eo-form-fields-container] div:first-child:nth-last-child(n+3),[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .emailoctopus-form [eo-form-fields-container] div:first-child:nth-last-child(n+3)~div{width:100%}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .main-form{align-items:flex-end;display:flex;flex-wrap:wrap;justify-content:center}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .main-form .btn,[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .main-form .emailoctopus-form-row{margin-left:2px;margin-right:2px}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .main-form .emailoctopus-form-row{flex-grow:1;min-width:200px}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .main-form .btn{flex-grow:1}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .emailoctopus-form-wrapper{margin-top:1rem}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .emailoctopus-error-message,[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .emailoctopus-success-message{color:var(--text-colour)!important;display:block;font-weight:400;margin:0;opacity:1;padding:0;text-align:center}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .emailoctopus-form-row-hp{left:-5000px;position:absolute}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .emailoctopus-form label{color:var(--label-colour);font-family:var(--font-family);font-size:var(--label-size)}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .emailoctopus-form label:empty{display:none!important}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .emailoctopus-form input{font-family:var(--font-family)}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .emailoctopus-form input:not([type=submit]){background-color:var(--field-colour);border-color:var(--field-border-colour);font-size:var(--base-font-size);line-height:1.6}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .emailoctopus-form input[type=submit]{background-color:var(--button-colour);border-color:var(--button-colour);color:var(--button-text-colour);font-size:var(--base-font-size)}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .mastfoot{display:inline-block;font-family:Lato,Arial,sans-serif;margin-left:auto;margin-right:auto;width:auto}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .mastfoot .inner{text-align:center}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .mastfoot p{background:#f8fbfa;border:1px solid #e8f5f2;border-radius:.25rem;color:#808c97;display:inline-block;font-size:14px;margin:auto;padding:.5em}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .mastfoot a{color:#808c97;display:inline-block;font-weight:700;margin-left:5px;padding-left:23px;position:relative;text-decoration:none}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .mastfoot a:before{background-image:url(https://gallery.eo.page/tentacles/icons/v1/powered-by/otto.svg);background-size:cover;content:"";height:25px;left:0;position:absolute;top:-4px;width:18px}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .mastfoot a:hover{color:#808c97!important}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .mastfoot.disabled p{display:none}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .mastfoot.no-bg p{background:0 0;border:none}[data-form=b0ec9660-3b96-11ed-9a32-0241b9615763] .mastfoot{margin-top:10px!important}: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}.rtl .comment-form-wprm-rating{text-align:right}.rtl img.wprm-comment-rating{transform:scaleX(-1)}.rtl fieldset.wprm-comment-ratings-container span{left:inherit;right:0}.rtl fieldset.wprm-comment-ratings-container span svg{transform:scaleX(-1)}: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.is-open{display:block}.wprm-popup-modal__overlay{align-items:center;background:rgba(0,0,0,.6);bottom:0;display:flex;justify-content:center;left:0;position:fixed;right:0;top:0;z-index:2147483646}.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__header .wprm-popup-modal__close{background:0 0;border:0;cursor:pointer;width:18px}.wprm-popup-modal__header .wprm-popup-modal__close:before{color:var(--wprm-popup-title);content:"✕";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{-webkit-appearance:button;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;will-change:transform;-moz-osx-font-smoothing:grayscale;-webkit-backface-visibility:hidden;backface-visibility:hidden;-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}.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}.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{background-color:#333;border-radius:4px;color:#fff;font-size:14px;line-height:1.4;outline:0;position:relative;transition-property:transform,visibility,opacity;white-space:normal}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{border-top-color:initial;border-width:8px 8px 0;bottom:-7px;left:0;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{border-bottom-color:initial;border-width:0 8px 8px;left:0;top:-7px;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-left-color:initial;border-width:8px 0 8px 8px;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{border-right-color:initial;border-width:8px 8px 8px 0;left:-7px;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{color:#333;height:16px;width:16px}.tippy-arrow:before{border-color:transparent;border-style:solid;content:"";position:absolute}.tippy-content{padding:5px 9px;position:relative;z-index:1}.tippy-box[data-theme=wprm] .tippy-content p:first-child{margin-top:0}.tippy-box[data-theme=wprm] .tippy-content p:last-child{margin-bottom:0}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 hsla(0,0%,78%,.3);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{overflow:hidden;zoom:1;clear:both;text-align:left}.wprm-recipe *{box-sizing:border-box}.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{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}.rtl .wprm-recipe{text-align:right}.rtl .wprm-recipe li{margin:0 32px 0 0}.wprm-screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important}.wprm-recipe-block-container-inline{display:inline-block;margin-right:1.2em}.rtl .wprm-recipe-block-container-inline{margin-left:1.2em;margin-right:0}.wprm-recipe-block-container-separate{display:block}.wprm-recipe-details-unit{font-size:.8em}@media only screen and (max-width:600px){.wprm-recipe-details-unit{font-size:1em}}.wprm-expandable-container.wprm-expandable-expanded .wprm-expandable-button-show{display:none}.wprm-block-text-normal{font-style:normal;font-weight:400;text-transform:none}.wprm-align-left{text-align:left}.wprm-recipe-image img{display:block;margin:0 auto}.wprm-recipe-image picture{border:none!important}.wprm-recipe-shop-instacart-loading{cursor:wait;opacity:.5}.wprm-recipe-shop-instacart{align-items:center;border:1px solid #003d29;border-radius:23px;cursor:pointer;display:inline-flex;font-family:Instacart,system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;font-size:14px;height:46px;padding:0 18px}.wprm-recipe-shop-instacart>img{height:22px!important;margin:0!important;padding:0!important;width:auto!important}.wprm-recipe-shop-instacart>span{margin-left:10px}.wprm-recipe-instructions-container .wprm-recipe-instruction-text{font-size:1em}.wprm-recipe-instructions-container .wprm-recipe-instruction-media{margin:5px 0 15px;max-width:100%}.wprm-recipe-link{cursor:pointer;text-decoration:none}.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-timer-container{align-items:center;background-color:#000;bottom:0;color:#fff;display:flex;font-family:monospace,sans-serif;font-size:24px;height:50px;left:0;line-height:50px;position:fixed;right:0;z-index:16777271}#wprm-timer-container .wprm-timer-icon{cursor:pointer;padding:0 10px}#wprm-timer-container .wprm-timer-icon svg{display:table-cell;height:24px;vertical-align:middle;width:24px}#wprm-timer-container span{flex-shrink:0}#wprm-timer-container span#wprm-timer-bar-container{flex:1;padding:0 10px 0 15px}#wprm-timer-container span#wprm-timer-bar-container #wprm-timer-bar{border:3px solid #fff;display:block;height:24px;width:100%}#wprm-timer-container span#wprm-timer-bar-container #wprm-timer-bar #wprm-timer-bar-elapsed{background-color:#fff;border:0;display:block;height:100%;width:0}#wprm-timer-container.wprm-timer-finished{animation:1s linear infinite wprmtimerblink}@keyframes wprmtimerblink{50%{opacity:.5}}.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 .wprm-user-rating-modal-comment-suggestions-container{display:none}.wprm-popup-modal-user-rating .wprm-user-rating-modal-comment-suggestions-container .wprm-user-rating-modal-comment-suggestion{border:1px dashed var(--wprm-popup-button-background);border-radius:5px;cursor:pointer;font-size:.8em;font-weight:700;margin:5px;padding:5px 10px}.wprm-popup-modal-user-rating .wprm-user-rating-modal-comment-suggestions-container .wprm-user-rating-modal-comment-suggestion:hover{border-style:solid}.wprm-popup-modal-user-rating input,.wprm-popup-modal-user-rating textarea{box-sizing:border-box}.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;margin:0;min-height:75px;padding:10px;resize:vertical;width:100%}.wprm-popup-modal-user-rating textarea:focus::placeholder{color:transparent}.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;margin:0;padding:5px 10px;width:100%}.wprm-popup-modal-user-rating.wprm-user-rating-modal-logged-in .wprm-user-rating-modal-comment-meta{display:none}.wprm-popup-modal-user-rating button{margin-right:5px}.wprm-popup-modal-user-rating button:disabled,.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}.wprm-user-rating-summary{align-items:center;display:flex}.wprm-user-rating-summary .wprm-user-rating-summary-stars{margin-right:10px}.wprm-user-rating-summary .wprm-user-rating-summary-details{margin-top:2px}.wprm-popup-modal-user-rating-summary .wprm-popup-modal-user-rating-summary-error{display:none}.wprm-popup-modal-user-rating-summary .wprm-popup-modal-user-rating-summary-ratings{max-height:500px;overflow-y:scroll}.rtl fieldset.wprm-user-ratings-modal-stars span{left:inherit;right:0}.rtl fieldset.wprm-user-ratings-modal-stars span svg{transform:scaleX(-1)}@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-advanced-servings-container{align-items:center;display:flex;flex-wrap:wrap;margin:5px 0}.wprm-recipe-advanced-servings-container .wprm-recipe-advanced-servings-input-unit{margin-left:3px}.wprm-recipe-advanced-servings-container .wprm-recipe-advanced-servings-input-shape{margin-left:5px}.wprm-recipe-equipment-container,.wprm-recipe-ingredients-container,.wprm-recipe-instructions-container{counter-reset:wprm-advanced-list-counter}.wprm-checkbox-container{margin-left:-16px}.rtl .wprm-checkbox-container{margin-left:0;margin-right:-16px}.wprm-checkbox-container input[type=checkbox]{margin:0!important;opacity:0;width:16px!important}.wprm-checkbox-container label:after,.wprm-checkbox-container label:before{content:"";display:inline-block;position:absolute}.rtl .wprm-checkbox-container label:after{right:5px}.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-equipment li,.wprm-recipe-ingredients li,.wprm-recipe-instructions li{position:relative}.wprm-recipe-equipment li .wprm-checkbox-container,.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}.wprm-recipe-equipment li.wprm-checkbox-is-checked,.wprm-recipe-ingredients li.wprm-checkbox-is-checked,.wprm-recipe-instructions li.wprm-checkbox-is-checked{text-decoration:line-through}.rtl .wprm-recipe-equipment li .wprm-checkbox-container,.rtl .wprm-recipe-ingredients li .wprm-checkbox-container,.rtl .wprm-recipe-instructions li .wprm-checkbox-container{left:inherit;right:-32px}.wprm-list-checkbox-container:before{display:none!important}.wprm-list-checkbox-container.wprm-list-checkbox-checked{text-decoration:line-through}.wprm-list-checkbox-container .wprm-list-checkbox:hover{cursor:pointer}.no-js .wprm-private-notes-container,.no-js .wprm-recipe-private-notes-header{display:none}.wprm-private-notes-container:not(.wprm-private-notes-container-disabled){cursor:pointer}.wprm-private-notes-container .wprm-private-notes-user{display:none}.wprm-private-notes-container.wprm-private-notes-has-notes .wprm-private-notes-user{display:block}.wprm-private-notes-container.wprm-private-notes-editing .wprm-private-notes-user{display:none}.wprm-private-notes-container .wprm-private-notes-user{white-space:pre-wrap}.wprm-print .wprm-private-notes-container{cursor:default}.wprm-print .wprm-private-notes-container .wprm-private-notes-user{display:block!important}input[type=number].wprm-recipe-servings{display:inline;margin:0;padding:5px;width:60px}.wprm-recipe-servings-text-buttons-container{display:inline-flex}.wprm-recipe-servings-text-buttons-container input[type=text].wprm-recipe-servings{border-radius:0!important;display:inline;margin:0;outline:0;padding:0;text-align:center;vertical-align:top;width:40px}.wprm-recipe-servings-text-buttons-container .wprm-recipe-servings-change,.wprm-recipe-servings-text-buttons-container input[type=text].wprm-recipe-servings{border:1px solid #333;font-size:16px;height:30px;user-select:none}.wprm-recipe-servings-text-buttons-container .wprm-recipe-servings-change{background:#333;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;line-height:26px;text-align:center;width:20px}.wprm-recipe-servings-text-buttons-container .wprm-recipe-servings-change:active{font-weight:700}.wprm-recipe-servings-text-buttons-container .wprm-recipe-servings-change.wprm-recipe-servings-decrement{border-bottom-right-radius:0!important;border-right:none;border-top-right-radius:0!important}.wprm-recipe-servings-text-buttons-container .wprm-recipe-servings-change.wprm-recipe-servings-increment{border-bottom-left-radius:0!important;border-left:none;border-top-left-radius:0!important}.wprm-recipe-servings-container .tippy-box{padding:5px 10px}input[type=range].wprm-recipe-servings-slider{-webkit-appearance:none;background:0 0;border:0;margin:0;min-width:150px;width:100%}input[type=range].wprm-recipe-servings-slider:focus{outline:0}input[type=range].wprm-recipe-servings-slider::-webkit-slider-runnable-track{background:#aaa;border:.5px solid #010101;border-radius:1.3px;box-shadow:.5px .5px 1px #000,0 0 .5px #0d0d0d;cursor:pointer;height:9.2px;width:100%}input[type=range].wprm-recipe-servings-slider::-webkit-slider-thumb{-webkit-appearance:none;background:#fff;border:.7px solid #000;border-radius:3px;box-shadow:1px 1px 1px #000,0 0 1px #0d0d0d;cursor:pointer;height:22px;margin-top:-6.9px;width:10px}input[type=range].wprm-recipe-servings-slider:focus::-webkit-slider-runnable-track{background:#bcbcbc}input[type=range].wprm-recipe-servings-slider::-moz-range-track{background:#aaa;border:.5px solid #010101;border-radius:1.3px;box-shadow:.5px .5px 1px #000,0 0 .5px #0d0d0d;cursor:pointer;height:9.2px;width:100%}input[type=range].wprm-recipe-servings-slider::-moz-range-thumb{background:#fff;border:.7px solid #000;border-radius:3px;box-shadow:1px 1px 1px #000,0 0 1px #0d0d0d;cursor:pointer;height:22px;width:10px}input[type=range].wprm-recipe-servings-slider::-ms-track{background:0 0;border-color:transparent;color:transparent;cursor:pointer;height:9.2px;width:100%}input[type=range].wprm-recipe-servings-slider::-ms-fill-lower{background:#989898;border:.5px solid #010101;border-radius:2.6px;box-shadow:.5px .5px 1px #000,0 0 .5px #0d0d0d}input[type=range].wprm-recipe-servings-slider::-ms-fill-upper{background:#aaa;border:.5px solid #010101;border-radius:2.6px;box-shadow:.5px .5px 1px #000,0 0 .5px #0d0d0d}input[type=range].wprm-recipe-servings-slider::-ms-thumb{background:#fff;border:.7px solid #000;border-radius:3px;box-shadow:1px 1px 1px #000,0 0 1px #0d0d0d;cursor:pointer;height:22px;height:9.2px;width:10px}input[type=range].wprm-recipe-servings-slider:focus::-ms-fill-lower{background:#aaa}input[type=range].wprm-recipe-servings-slider:focus::-ms-fill-upper{background:#bcbcbc}.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-columns-is-layout-1{flex-wrap:nowrap}.wp-block-gallery.wp-block-gallery-3{--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)))}</style><link rel="preload" data-rocket-preload as="image" imagesrcset="https://thefirstmess.com/wp-content/uploads/fly-images/22606/tfm-footer-about-300x414-c.jpg, https://thefirstmess.com/wp-content/uploads/fly-images/22606/tfm-footer-about-600x828-c.jpg 2x" fetchpriority="high">
    <link rel="profile" href="https://gmpg.org/xfn/11" />
    <link rel="pingback" href="https://thefirstmess.com/xmlrpc.php" />
	    <script data-no-optimize="1" data-cfasync="false">!function(){"use strict";function e(e){const t=e.match(/((?=([a-z0-9._!#$%+^&*()[\]<>-]+))\2@[a-z0-9._-]+\.[a-z0-9._-]+)/gi);return t?t[0]:""}function t(t){return e(a(t.toLowerCase()))}function a(e){return e.replace(/\s/g,"")}async function n(e){const t={sha256Hash:"",sha1Hash:""};if(!("msCrypto"in window)&&"https:"===location.protocol&&"crypto"in window&&"TextEncoder"in window){const a=(new TextEncoder).encode(e),[n,c]=await Promise.all([s("SHA-256",a),s("SHA-1",a)]);t.sha256Hash=n,t.sha1Hash=c}return t}async function s(e,t){const a=await crypto.subtle.digest(e,t);return Array.from(new Uint8Array(a)).map(e=>("00"+e.toString(16)).slice(-2)).join("")}function c(e){let t=!0;return Object.keys(e).forEach(a=>{0===e[a].length&&(t=!1)}),t}function i(e,t,a){e.splice(t,1);const n="?"+e.join("&")+a.hash;history.replaceState(null,"",n)}var o={checkEmail:e,validateEmail:t,trimInput:a,hashEmail:n,hasHashes:c,removeEmailAndReplaceHistory:i,detectEmails:async function(){const e=new URL(window.location.href),a=Array.from(e.searchParams.entries()).map(e=>`${e[0]}=${e[1]}`);let s,o;const r=["adt_eih","sh_kit"];if(a.forEach((e,t)=>{const a=decodeURIComponent(e),[n,c]=a.split("=");if("adt_ei"===n&&(s={value:c,index:t,emsrc:"url"}),r.includes(n)){o={value:c,index:t,emsrc:"sh_kit"===n?"urlhck":"urlh"}}}),s)t(s.value)&&n(s.value).then(e=>{if(c(e)){const t={value:e,created:Date.now()};localStorage.setItem("adt_ei",JSON.stringify(t)),localStorage.setItem("adt_emsrc",s.emsrc)}});else if(o){const e={value:{sha256Hash:o.value,sha1Hash:""},created:Date.now()};localStorage.setItem("adt_ei",JSON.stringify(e)),localStorage.setItem("adt_emsrc",o.emsrc)}s&&i(a,s.index,e),o&&i(a,o.index,e)},cb:"adthrive"};const{detectEmails:r,cb:l}=o;r()}();
</script><meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
	<style></style>
	<style data-no-optimize="1" data-cfasync="false"></style>
<script data-no-optimize="1" data-cfasync="false">
	window.adthriveCLS = {
		enabledLocations: ['Content', 'Recipe'],
		injectedSlots: [],
		injectedFromPlugin: true,
		branch: '2b25b53',bucket: 'prod',			};
	window.adthriveCLS.siteAds = {"betaTester":false,"targeting":[{"value":"553568ba7a55b2e0613623a4","key":"siteId"},{"value":"6233884d52f7df70880d9ebc","key":"organizationId"},{"value":"The First Mess","key":"siteName"},{"value":"AdThrive Edge","key":"service"},{"value":"on","key":"bidding"},{"value":["Food","Clean Eating"],"key":"verticals"}],"siteUrl":"https://thefirstmess.com/","siteId":"553568ba7a55b2e0613623a4","siteName":"The First Mess","breakpoints":{"tablet":768,"desktop":1024},"cloudflare":{"version":"27b3dae"},"adUnits":[{"sequence":null,"targeting":[{"value":["Header"],"key":"location"}],"devices":["desktop","tablet"],"name":"Header","sticky":false,"location":"Header","dynamic":{"pageSelector":"body.home","spacing":0,"max":2,"lazyMax":null,"enable":true,"lazy":false,"elementSelector":".dmc-ad-simulation","skip":0,"classNames":[],"position":"afterbegin","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[728,90]],"priority":399,"autosize":true},{"sequence":null,"targeting":[{"value":["Header"],"key":"location"}],"devices":["phone"],"name":"Header","sticky":false,"location":"Header","dynamic":{"pageSelector":"body.home","spacing":0,"max":2,"lazyMax":null,"enable":true,"lazy":false,"elementSelector":".dmc-ad-simulation","skip":0,"classNames":[],"position":"afterbegin","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[320,100]],"priority":399,"autosize":true},{"sequence":1,"targeting":[{"value":["Sidebar"],"key":"location"},{"value":true,"key":"sticky"}],"devices":["desktop"],"name":"Sidebar_1","sticky":true,"location":"Sidebar","dynamic":{"pageSelector":"body:not(.home)","spacing":0,"max":1,"lazyMax":null,"enable":true,"lazy":false,"elementSelector":"#sidebar","skip":0,"classNames":[],"position":"beforeend","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[1,1],[160,600],[250,250],[300,50],[300,250],[300,420],[300,600],[300,1050],[320,50],[320,100],[336,280]],"priority":299,"autosize":true},{"sequence":9,"targeting":[{"value":["Sidebar"],"key":"location"},{"value":true,"key":"sticky"}],"devices":["desktop"],"name":"Sidebar_9","sticky":true,"location":"Sidebar","dynamic":{"pageSelector":"body.single, body.page:not(.home)","spacing":0,"max":1,"lazyMax":null,"enable":true,"lazy":false,"elementSelector":"#sidebar","skip":0,"classNames":[],"position":"beforeend","every":1,"enabled":true},"stickyOverlapSelector":".wprm-recipe-container, #dmc-main-footer, .dmc-single-post-footer, .dmc-recipe-card-inner.dmc-width-main.dmc-padding-main","adSizes":[[1,1],[160,600],[250,250],[300,50],[300,250],[300,420],[300,600],[300,1050],[320,50],[320,100],[336,280],[120,240]],"priority":291,"autosize":true},{"sequence":null,"targeting":[{"value":["Content"],"key":"location"}],"devices":["phone"],"name":"Content","sticky":false,"location":"Content","dynamic":{"pageSelector":"body.blog, body.search, body.archive","spacing":1.5,"max":2,"lazyMax":13,"enable":true,"lazy":true,"elementSelector":"article:nth-child(2n)","skip":0,"classNames":[],"position":"afterend","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[728,90],[336,280],[320,50],[468,60],[970,90],[250,250],[1,1],[320,100],[970,250],[1,2],[300,50],[300,300],[552,334],[728,250],[300,250]],"priority":199,"autosize":true},{"sequence":null,"targeting":[{"value":["Content"],"key":"location"}],"devices":["desktop"],"name":"Content","sticky":false,"location":"Content","dynamic":{"pageSelector":"body.single:not(.cookbook-template-default), body.page:not(.home)","spacing":1.5,"max":3,"lazyMax":96,"enable":true,"lazy":true,"elementSelector":".dmc-single-post-content  > .dmc-content-inner > *:not(h2):not(h3)","skip":5,"classNames":[],"position":"afterend","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[728,90],[336,280],[320,50],[468,60],[970,90],[250,250],[1,1],[320,100],[970,250],[1,2],[300,50],[300,300],[552,334],[728,250],[300,250]],"priority":199,"autosize":true},{"sequence":null,"targeting":[{"value":["Content"],"key":"location"}],"devices":["tablet"],"name":"Content","sticky":false,"location":"Content","dynamic":{"pageSelector":"body.single:not(.cookbook-template-default), body.page:not(.home)","spacing":1.2,"max":3,"lazyMax":96,"enable":true,"lazy":true,"elementSelector":".dmc-single-post-content  > .dmc-content-inner > *:not(h2):not(h3)","skip":5,"classNames":[],"position":"afterend","every":0,"enabled":true},"stickyOverlapSelector":"","adSizes":[[728,90],[336,280],[320,50],[468,60],[970,90],[250,250],[1,1],[320,100],[970,250],[1,2],[300,50],[300,300],[552,334],[728,250],[300,250]],"priority":199,"autosize":true},{"sequence":null,"targeting":[{"value":["Content"],"key":"location"}],"devices":["phone"],"name":"Content","sticky":false,"location":"Content","dynamic":{"pageSelector":"body.single:not(.cookbook-template-default), body.page:not(.home)","spacing":1.5,"max":3,"lazyMax":96,"enable":true,"lazy":true,"elementSelector":".dmc-single-post-content  > .dmc-content-inner > *:not(h2):not(h3)","skip":5,"classNames":[],"position":"afterend","every":0,"enabled":true},"stickyOverlapSelector":"","adSizes":[[728,90],[336,280],[320,50],[468,60],[970,90],[250,250],[1,1],[320,100],[970,250],[1,2],[300,50],[300,300],[552,334],[728,250],[300,250]],"priority":199,"autosize":true},{"sequence":null,"targeting":[{"value":["Recipe"],"key":"location"}],"devices":["desktop","tablet"],"name":"Recipe","sticky":false,"location":"Recipe","dynamic":{"pageSelector":"body.single","spacing":0.8,"max":1,"lazyMax":98,"enable":true,"lazy":true,"elementSelector":".wprm-recipe-ingredients-container,  .wprm-recipe-instructions-container li, .wprm-recipe-notes-container span, .wprm-recipe-notes-container li","skip":0,"classNames":[],"position":"beforebegin","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[320,50],[250,250],[1,1],[320,100],[1,2],[300,50],[320,300],[300,390],[300,250]],"priority":-101,"autosize":true},{"sequence":5,"targeting":[{"value":["Recipe"],"key":"location"}],"devices":["phone"],"name":"Recipe_5","sticky":false,"location":"Recipe","dynamic":{"pageSelector":"body.single","spacing":0,"max":1,"lazyMax":null,"enable":true,"lazy":false,"elementSelector":".wprm-recipe-ingredients-container","skip":0,"classNames":[],"position":"beforebegin","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[320,50],[250,250],[1,1],[320,100],[1,2],[300,50],[320,300],[300,390],[300,250]],"priority":-105,"autosize":true},{"sequence":null,"targeting":[{"value":["Recipe"],"key":"location"}],"devices":["phone"],"name":"Recipe","sticky":false,"location":"Recipe","dynamic":{"pageSelector":"body.single","spacing":0.9,"max":1,"lazyMax":97,"enable":true,"lazy":true,"elementSelector":".wprm-recipe-ingredients-container, .wprm-recipe-instructions-container li, .wprm-recipe-notes-container span, .wprm-recipe-notes-container li","skip":0,"classNames":[],"position":"afterend","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[320,50],[250,250],[1,1],[320,100],[1,2],[300,50],[320,300],[300,390],[300,250]],"priority":-101,"autosize":true},{"sequence":null,"targeting":[{"value":["Below Post"],"key":"location"}],"devices":["tablet","desktop"],"name":"Below_Post","sticky":false,"location":"Below Post","dynamic":{"pageSelector":"body.single:not(.cookbook-template-default), body.page:not(.home)","spacing":0.85,"max":0,"lazyMax":10,"enable":true,"lazy":true,"elementSelector":"#dmc-comments, .comment-list > li","skip":0,"classNames":[],"position":"beforebegin","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[728,90],[336,280],[320,50],[468,60],[250,250],[1,1],[320,100],[300,250],[970,250],[728,250]],"priority":99,"autosize":true},{"sequence":null,"targeting":[{"value":["Footer"],"key":"location"},{"value":true,"key":"sticky"}],"devices":["phone","tablet","desktop"],"name":"Footer","sticky":true,"location":"Footer","dynamic":{"pageSelector":"","spacing":0,"max":1,"lazyMax":null,"enable":true,"lazy":false,"elementSelector":"body","skip":0,"classNames":[],"position":"beforeend","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[320,50],[320,100],[728,90],[970,90],[468,60],[1,1],[300,50]],"priority":-1,"autosize":true}],"adDensityLayout":{"mobile":{"adDensity":0.23,"onePerViewport":true},"pageOverrides":[{"mobile":{"adDensity":0.2,"onePerViewport":true},"note":null,"pageSelector":"body.blog, body.search, body.archive","desktop":{"adDensity":0.2,"onePerViewport":false}}],"desktop":{"adDensity":0.23,"onePerViewport":true}},"adDensityEnabled":true,"siteExperiments":[],"adTypes":{"sponsorTileDesktop":false,"interscrollerDesktop":true,"nativeBelowPostDesktop":true,"miniscroller":true,"largeFormatsMobile":true,"nativeMobileContent":true,"inRecipeRecommendationMobile":true,"nativeMobileRecipe":true,"sponsorTileMobile":false,"expandableCatalogAdsMobile":true,"outstreamMobile":true,"nativeHeaderMobile":true,"inRecipeRecommendationDesktop":true,"nativeDesktopContent":true,"outstreamDesktop":true,"animatedFooter":true,"skylineHeader":false,"expandableFooter":true,"nativeDesktopSidebar":true,"videoFootersMobile":true,"videoFootersDesktop":true,"interscroller":true,"nativeDesktopRecipe":true,"nativeHeaderDesktop":true,"nativeBelowPostMobile":true,"expandableCatalogAdsDesktop":true,"largeFormatsDesktop":true},"adOptions":{"theTradeDesk":true,"rtbhouse":true,"undertone":true,"sidebarConfig":{"dynamicStickySidebar":{"minHeight":1800,"enabled":true,"blockedSelectors":[]}},"footerCloseButton":false,"teads":true,"pmp":true,"thirtyThreeAcross":true,"sharethrough":true,"optimizeVideoPlayersForEarnings":false,"removeVideoTitleWrapper":true,"pubMatic":true,"infiniteScroll":false,"yahoossp":true,"improvedigital":true,"spa":false,"stickyContainerConfig":{"recipeDesktop":{"minHeight":null,"enabled":false},"blockedSelectors":[],"stickyHeaderSelectors":[".dmc-sticky-nav"],"content":{"minHeight":250,"enabled":true},"recipeMobile":{"minHeight":null,"enabled":false}},"sonobi":true,"yieldmo":true,"footerSelector":"","amazonUAM":true,"gamMCMEnabled":true,"gamMCMChildNetworkCode":"109105652","rubicon":true,"conversant":true,"openx":true,"customCreativeEnabled":true,"mobileHeaderHeight":1,"secColor":"#000000","unruly":true,"mediaGrid":true,"bRealTime":true,"adInViewTime":null,"gumgum":true,"comscoreFooter":true,"desktopInterstitial":false,"footerCloseButtonDesktop":false,"ozone":true,"isAutoOptimized":true,"adform":true,"comscoreTAL":true,"targetaff":false,"bgColor":"#FFFFFF","advancePlaylistOptions":{"playlistPlayer":{"enabled":true},"relatedPlayer":{"enabled":true,"applyToFirst":true}},"amazonASR":true,"kargo":true,"liveRampATS":true,"footerCloseButtonMobile":false,"interstitialBlockedPageSelectors":"","prioritizeShorterVideoAds":true,"allowSmallerAdSizes":true,"comscore":"Food","wakeLock":{"desktopEnabled":true,"mobileValue":15,"mobileEnabled":true,"desktopValue":30},"mobileInterstitial":false,"tripleLift":true,"sensitiveCategories":["alc","ast","cbd","cosm","dat","gamc","gamv","pol","rel","sst","srh","ske","tob","wtl"],"liveRamp":true,"adthriveEmailIdentity":true,"criteo":true,"nativo":true,"infiniteScrollOptions":{"selector":"","heightThreshold":0},"siteAttributes":{"mobileHeaderSelectors":[],"desktopHeaderSelectors":[]},"dynamicContentSlotLazyLoading":true,"clsOptimizedAds":true,"ogury":true,"aidem":false,"verticals":["Food","Clean Eating"],"inImage":false,"usCMP":{"enabled":false,"regions":[]},"advancePlaylist":true,"flipp":true,"delayLoading":false,"inImageZone":null,"appNexus":true,"rise":true,"liveRampId":"","infiniteScrollRefresh":false,"indexExchange":true},"siteAdsProfiles":[],"featureRollouts":{"erp":{"featureRolloutId":19,"data":null,"enabled":false}},"videoPlayers":{"contextual":{"autoplayCollapsibleEnabled":true,"overrideEmbedLocation":false,"defaultPlayerType":"static"},"videoEmbed":"wordpress","footerSelector":"","contentSpecificPlaylists":[],"players":[{"playlistId":"d7y0fAI6","pageSelector":"body.single:not(.cookbook-template-default)","devices":["mobile"],"mobileLocation":"bottom-left","description":"","skip":3,"title":"","type":"stickyPlaylist","enabled":true,"footerSelector":"","elementSelector":".dmc-single-post-content  > .dmc-content-inner > *:not(h2):not(h3), .article-content > *:not(.top-of-post)","id":4049602,"position":"afterend","saveVideoCloseState":false,"shuffle":true,"mobileHeaderSelector":".dmc-sticky-nav","playerId":"6Bjq2Po4","isCompleted":true},{"devices":["desktop","mobile"],"description":"","id":4049598,"title":"Stationary related player - desktop and mobile","type":"stationaryRelated","enabled":true,"playerId":"038ZWbWc"},{"playlistId":"","pageSelector":"","devices":["desktop"],"description":"","skip":3,"title":"Sticky related player - desktop","type":"stickyRelated","enabled":true,"elementSelector":".dmc-single-post-content  > .dmc-content-inner > *:not(h2):not(h3), .article-content > *:not(.top-of-post)","id":4049599,"position":"afterend","saveVideoCloseState":false,"shuffle":false,"mobileHeaderSelector":null,"playerId":"038ZWbWc","isCompleted":true},{"playlistId":"","pageSelector":"","devices":["mobile"],"mobileLocation":"bottom-left","description":"","skip":3,"title":"Sticky related player - mobile","type":"stickyRelated","enabled":true,"elementSelector":".dmc-single-post-content  > .dmc-content-inner > *:not(h2):not(h3), .article-content > *:not(.top-of-post)","id":4049600,"position":"afterend","saveVideoCloseState":false,"shuffle":false,"mobileHeaderSelector":".dmc-sticky-nav","playerId":"038ZWbWc","isCompleted":true},{"playlistId":"d7y0fAI6","pageSelector":"body.single:not(.cookbook-template-default)","devices":["desktop"],"description":"","skip":3,"title":"","type":"stickyPlaylist","enabled":true,"footerSelector":"","elementSelector":".dmc-single-post-content  > .dmc-content-inner > *:not(h2):not(h3), .article-content > *:not(.top-of-post)","id":4049601,"position":"afterend","saveVideoCloseState":false,"shuffle":true,"mobileHeaderSelector":null,"playerId":"6Bjq2Po4","isCompleted":true}],"partners":{"theTradeDesk":true,"unruly":true,"mediaGrid":true,"undertone":true,"gumgum":true,"adform":true,"pmp":true,"kargo":true,"thirtyThreeAcross":false,"stickyOutstream":{"desktop":{"enabled":true},"blockedPageSelectors":"","mobileLocation":"bottom-left","allowOnHomepage":true,"mobile":{"enabled":true},"saveVideoCloseState":false,"mobileHeaderSelector":".dmc-sticky-nav","allowForPageWithStickyPlayer":{"enabled":true}},"sharethrough":true,"tripleLift":true,"pubMatic":true,"criteo":true,"yahoossp":true,"nativo":true,"improvedigital":true,"aidem":false,"yieldmo":true,"amazonUAM":true,"rubicon":true,"appNexus":true,"rise":true,"openx":true,"indexExchange":true}}};</script>

<script data-no-optimize="1" data-cfasync="false">
(function(w, d) {
	w.adthrive = w.adthrive || {};
	w.adthrive.cmd = w.adthrive.cmd || [];
	w.adthrive.plugin = 'adthrive-ads-3.7.5';
	w.adthrive.host = 'ads.adthrive.com';
	w.adthrive.integration = 'plugin';

	var commitParam = (w.adthriveCLS && w.adthriveCLS.bucket !== 'prod' && w.adthriveCLS.branch) ? '&commit=' + w.adthriveCLS.branch : '';

	var s = d.createElement('script');
	s.async = true;
	s.referrerpolicy='no-referrer-when-downgrade';
	s.src = 'https://' + w.adthrive.host + '/sites/553568ba7a55b2e0613623a4/ads.min.js?referrer=' + w.encodeURIComponent(w.location.href) + commitParam + '&cb=' + (Math.floor(Math.random() * 100) + 1) + '';
	var n = d.getElementsByTagName('script')[0];
	n.parentNode.insertBefore(s, n);
})(window, document);
</script>
<link rel="dns-prefetch" href="https://ads.adthrive.com/"><link rel="preconnect" href="https://ads.adthrive.com/"><link rel="preconnect" href="https://ads.adthrive.com/" crossorigin>
	<!-- This site is optimized with the Yoast SEO plugin v24.9 - https://yoast.com/wordpress/plugins/seo/ -->
	<meta name="description" content="Perfect for breakfast, tender vegan blueberry muffins are perfectly sweetened with maple syrup &amp; flavored with orange, vanilla, and nutmeg." />
	<link rel="canonical" href="https://thefirstmess.com/2025/03/12/soft-fluffy-vegan-blueberry-muffins-bit-of-whole-wheat-flour/" />
	<meta property="og:locale" content="en_US" />
	<meta property="og:type" content="recipe" />
	<meta property="og:title" content="Soft &amp; Fluffy Vegan Blueberry Muffins with A Bit of Whole Wheat Flour | The First Mess" />
	<meta property="og:description" content="Perfect for breakfast, tender vegan blueberry muffins are perfectly sweetened with maple syrup &amp; flavored with orange, vanilla, and nutmeg." />
	<meta property="og:url" content="https://thefirstmess.com/2025/03/12/soft-fluffy-vegan-blueberry-muffins-bit-of-whole-wheat-flour/" />
	<meta property="og:site_name" content="The First Mess" />
	<meta property="article:publisher" content="https://www.facebook.com/thefirstmess" />
	<meta property="article:published_time" content="2025-03-12T06:59:00+00:00" />
	<meta property="article:modified_time" content="2025-03-12T19:52:02+00:00" />
	<meta property="og:image" content="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06.jpg" />
	<meta property="og:image:width" content="1480" />
	<meta property="og:image:height" content="1850" />
	<meta property="og:image:type" content="image/jpeg" />
	<meta name="author" content="Laura Wright" />
	<meta name="twitter:label1" content="Written by" />
	<meta name="twitter:data1" content="Laura Wright" />
	<meta name="twitter:label2" content="Est. reading time" />
	<meta name="twitter:data2" content="6 minutes" />
	<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"Article","@id":"https://thefirstmess.com/2025/03/12/soft-fluffy-vegan-blueberry-muffins-bit-of-whole-wheat-flour/#article","isPartOf":{"@id":"https://thefirstmess.com/2025/03/12/soft-fluffy-vegan-blueberry-muffins-bit-of-whole-wheat-flour/"},"author":{"name":"Laura Wright","@id":"https://thefirstmess.com/#/schema/person/6d13d63a4bf30b3704e3321773c0c454"},"headline":"Soft &amp; Fluffy Vegan Blueberry Muffins with A Bit of Whole Wheat Flour","datePublished":"2025-03-12T06:59:00+00:00","dateModified":"2025-03-12T19:52:02+00:00","wordCount":1074,"commentCount":9,"publisher":{"@id":"https://thefirstmess.com/#organization"},"image":{"@id":"https://thefirstmess.com/2025/03/12/soft-fluffy-vegan-blueberry-muffins-bit-of-whole-wheat-flour/#primaryimage"},"thumbnailUrl":"https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06.jpg","keywords":["all purpose flour","blueberries","maple syrup","orange","salt","soy milk","sunflower oil","vanilla","vegan yogurt","whole wheat flour"],"articleSection":["autumn","breakfast","nut free","snack","spring","summer","sweet","vegan","winter"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https://thefirstmess.com/2025/03/12/soft-fluffy-vegan-blueberry-muffins-bit-of-whole-wheat-flour/#respond"]}]},{"@type":"WebPage","@id":"https://thefirstmess.com/2025/03/12/soft-fluffy-vegan-blueberry-muffins-bit-of-whole-wheat-flour/","url":"https://thefirstmess.com/2025/03/12/soft-fluffy-vegan-blueberry-muffins-bit-of-whole-wheat-flour/","name":"Soft & Fluffy Vegan Blueberry Muffins with A Bit of Whole Wheat Flour | The First Mess","isPartOf":{"@id":"https://thefirstmess.com/#website"},"primaryImageOfPage":{"@id":"https://thefirstmess.com/2025/03/12/soft-fluffy-vegan-blueberry-muffins-bit-of-whole-wheat-flour/#primaryimage"},"image":{"@id":"https://thefirstmess.com/2025/03/12/soft-fluffy-vegan-blueberry-muffins-bit-of-whole-wheat-flour/#primaryimage"},"thumbnailUrl":"https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06.jpg","datePublished":"2025-03-12T06:59:00+00:00","dateModified":"2025-03-12T19:52:02+00:00","description":"Perfect for breakfast, tender vegan blueberry muffins are perfectly sweetened with maple syrup & flavored with orange, vanilla, and nutmeg.","breadcrumb":{"@id":"https://thefirstmess.com/2025/03/12/soft-fluffy-vegan-blueberry-muffins-bit-of-whole-wheat-flour/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://thefirstmess.com/2025/03/12/soft-fluffy-vegan-blueberry-muffins-bit-of-whole-wheat-flour/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https://thefirstmess.com/2025/03/12/soft-fluffy-vegan-blueberry-muffins-bit-of-whole-wheat-flour/#primaryimage","url":"https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06.jpg","contentUrl":"https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06.jpg","width":1480,"height":1850,"caption":"An overhead shot shows fluffy vegan blueberry muffins cooling on a wire rack. The muffins are in homemade parchment paper liners."},{"@type":"BreadcrumbList","@id":"https://thefirstmess.com/2025/03/12/soft-fluffy-vegan-blueberry-muffins-bit-of-whole-wheat-flour/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://thefirstmess.com/"},{"@type":"ListItem","position":2,"name":"Recipes","item":"https://thefirstmess.com/recipes/"},{"@type":"ListItem","position":3,"name":"breakfast","item":"https://thefirstmess.com/category/recipe-type/breakfast/"},{"@type":"ListItem","position":4,"name":"Soft &amp; Fluffy Vegan Blueberry Muffins with A Bit of Whole Wheat Flour"}]},{"@type":"WebSite","@id":"https://thefirstmess.com/#website","url":"https://thefirstmess.com/","name":"The First Mess","description":"| Vegan recipes &amp; wholesome meals","publisher":{"@id":"https://thefirstmess.com/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://thefirstmess.com/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https://thefirstmess.com/#organization","name":"The First Mess","url":"https://thefirstmess.com/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https://thefirstmess.com/#/schema/logo/image/","url":"","contentUrl":"","caption":"The First Mess"},"image":{"@id":"https://thefirstmess.com/#/schema/logo/image/"},"sameAs":["https://www.facebook.com/thefirstmess","https://www.instagram.com/thefirstmess/","https://www.pinterest.ca/thefirstmess/"]},{"@type":"Person","@id":"https://thefirstmess.com/#/schema/person/6d13d63a4bf30b3704e3321773c0c454","name":"Laura Wright","sameAs":["https://thefirstmess.com/about/"],"url":"https://thefirstmess.com/about/"},{"@type":"Recipe","name":"Soft &amp; Fluffy Vegan Blueberry Muffins with A Bit of Whole Wheat Flour","author":{"@id":"https://thefirstmess.com/#/schema/person/6d13d63a4bf30b3704e3321773c0c454"},"description":"These vegan blueberry muffins are soft, fluffy, and perfectly sweet with maple syrup. A touch of whole wheat flour brings a nutty flavor, along with zesty orange, a hint of warm nutmeg, and loads of fresh jammy blueberries.","datePublished":"2025-03-12T02:59:00+00:00","image":["https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06.jpg","https://thefirstmess.com/wp-content/uploads/fly-images/33944/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06-500x500-c.jpg","https://thefirstmess.com/wp-content/uploads/fly-images/33944/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06-500x375-c.jpg","https://thefirstmess.com/wp-content/uploads/fly-images/33944/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06-480x270-c.jpg"],"recipeYield":["10"],"prepTime":"PT15M","cookTime":"PT25M","totalTime":"PT40M","recipeIngredient":["1 ½ cups (179 grams) all-purpose flour","½ cup (57 grams) whole wheat flour","1 ½ teaspoons baking powder","1 teaspoon baking soda","½ teaspoon fine sea salt","½ teaspoon ground nutmeg","½ cup (120 ml) maple syrup","½ cup (120 ml) unsweetened vegan yogurt  ((see note))","6 tablespoons (90 ml) sunflower oil","¼ cup (60 ml) unsweetened soy milk","2 teaspoons vanilla extract","1 teaspoon orange zest","1 tablespoon orange juice","1 ½ cups (225 grams) fresh blueberries"],"recipeInstructions":[{"@type":"HowToStep","text":"Preheat the oven to 425°F. Line 10 cups of a 12-cup muffin tin with paper liners, leaving the two in the center empty.","name":"Preheat the oven to 425°F. Line 10 cups of a 12-cup muffin tin with paper liners, leaving the two in the center empty.","url":"https://thefirstmess.com/2025/03/12/soft-fluffy-vegan-blueberry-muffins-bit-of-whole-wheat-flour/#wprm-recipe-33954-step-0-0"},{"@type":"HowToStep","text":"In a large bowl, whisk together the all-purpose flour, whole wheat flour, baking powder, baking soda, salt, and nutmeg.","name":"In a large bowl, whisk together the all-purpose flour, whole wheat flour, baking powder, baking soda, salt, and nutmeg.","url":"https://thefirstmess.com/2025/03/12/soft-fluffy-vegan-blueberry-muffins-bit-of-whole-wheat-flour/#wprm-recipe-33954-step-0-1"},{"@type":"HowToStep","text":"In a medium bowl, combine the maple syrup, yogurt, oil, soy milk, vanilla extract, orange zest, and orange juice. Whisk vigorously to combine.","name":"In a medium bowl, combine the maple syrup, yogurt, oil, soy milk, vanilla extract, orange zest, and orange juice. Whisk vigorously to combine.","url":"https://thefirstmess.com/2025/03/12/soft-fluffy-vegan-blueberry-muffins-bit-of-whole-wheat-flour/#wprm-recipe-33954-step-0-2"},{"@type":"HowToStep","text":"Pour the wet mixture into the dry mixture in the large bowl. Stir with a rubber spatula until almost fully combined. Then, add the blueberries and fold in to distribute throughout the batter. DO NOT over mix!","name":"Pour the wet mixture into the dry mixture in the large bowl. Stir with a rubber spatula until almost fully combined. Then, add the blueberries and fold in to distribute throughout the batter. DO NOT over mix!","url":"https://thefirstmess.com/2025/03/12/soft-fluffy-vegan-blueberry-muffins-bit-of-whole-wheat-flour/#wprm-recipe-33954-step-0-3"},{"@type":"HowToStep","text":"Evenly distribute the batter amongst the lined muffin cups. Pour boiling water into the empty muffin cups in the center of the tin, filling them halfway.","name":"Evenly distribute the batter amongst the lined muffin cups. Pour boiling water into the empty muffin cups in the center of the tin, filling them halfway.","url":"https://thefirstmess.com/2025/03/12/soft-fluffy-vegan-blueberry-muffins-bit-of-whole-wheat-flour/#wprm-recipe-33954-step-0-4"},{"@type":"HowToStep","text":"Bake the muffins at 425°F for 5 minutes. Then, lower the heat to 350°F and bake for an additional 18-20 minutes. The muffins are done when they have domed, golden tops and a paring knife inserted into the center of one comes out clean.","name":"Bake the muffins at 425°F for 5 minutes. Then, lower the heat to 350°F and bake for an additional 18-20 minutes. The muffins are done when they have domed, golden tops and a paring knife inserted into the center of one comes out clean.","url":"https://thefirstmess.com/2025/03/12/soft-fluffy-vegan-blueberry-muffins-bit-of-whole-wheat-flour/#wprm-recipe-33954-step-0-5"},{"@type":"HowToStep","text":"Cool the blueberry muffins completely on a wire rack before enjoying.","name":"Cool the blueberry muffins completely on a wire rack before enjoying.","url":"https://thefirstmess.com/2025/03/12/soft-fluffy-vegan-blueberry-muffins-bit-of-whole-wheat-flour/#wprm-recipe-33954-step-0-6"}],"aggregateRating":{"@type":"AggregateRating","ratingValue":"5","ratingCount":"3","reviewCount":"3"},"review":[{"@type":"Review","reviewRating":{"@type":"Rating","ratingValue":"5"},"reviewBody":"Just made these and boy are they yummy!! I've always used applesauce to substitute for eggs. But this worked well. Thank you!","author":{"@type":"Person","name":"Mary Anne"},"datePublished":"2025-03-16"},{"@type":"Review","reviewRating":{"@type":"Rating","ratingValue":"5"},"reviewBody":"These muffins were so perfect. Incredibly fluffy and sweet but crusty on the top. Absolutely delicious!!!","author":{"@type":"Person","name":"Kate S"},"datePublished":"2025-03-16"},{"@type":"Review","reviewRating":{"@type":"Rating","ratingValue":"5"},"reviewBody":"These were quick to throw together and so delicious. Used frozen blueberries that we picked last summer, and lemon instead of orange because that's what I had. Only complaint is how quickly they were gobbled up. Next time I'd make a double batch. Thanks Laura.","author":{"@type":"Person","name":"Dana"},"datePublished":"2025-03-14"}],"recipeCategory":["Breakfast","Snack"],"recipeCuisine":["American"],"suitableForDiet":["https://schema.org/VeganDiet"],"keywords":"all purpose flour, blueberries, dairy-free yogurt, fall, maple syrup, muffin tin, muffins, nutmeg, orange, salt, soy milk, spring, summer, sunflower oil, vanilla extract, vegan yogurt, whole wheat flour, winter","@id":"https://thefirstmess.com/2025/03/12/soft-fluffy-vegan-blueberry-muffins-bit-of-whole-wheat-flour/#recipe","isPartOf":{"@id":"https://thefirstmess.com/2025/03/12/soft-fluffy-vegan-blueberry-muffins-bit-of-whole-wheat-flour/#article"},"mainEntityOfPage":"https://thefirstmess.com/2025/03/12/soft-fluffy-vegan-blueberry-muffins-bit-of-whole-wheat-flour/"}]}</script>
	<!-- / Yoast SEO plugin. -->


<link rel='dns-prefetch' href='//ads.adthrive.com' />


<style id='classic-theme-styles-inline-css' type='text/css'></style>
<style id='global-styles-inline-css' type='text/css'></style>

<style id='akismet-widget-style-inline-css' type='text/css'></style>
<script type="text/javascript" src="https://thefirstmess.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script>
<script type="text/javascript" src="https://thefirstmess.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript"></script>	<script type="rocketlazyloadscript" data-rocket-type="text/javascript">var ajaxurl = 'https://thefirstmess.com/wp-admin/admin-ajax.php';</script>
	<!-- HFCM by 99 Robots - Snippet # 1: Google Analytics GA4 + UA -->
<!-- Google tag (gtag.js) -->
<script type="rocketlazyloadscript" async data-rocket-src="https://www.googletagmanager.com/gtag/js?id=G-EWWE6XHFLP"></script>
<script type="rocketlazyloadscript">
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

	gtag('config', 'UA-28047831-1');
	gtag('config', 'G-EWWE6XHFLP');
</script>
<!-- /end HFCM by 99 Robots -->
<!-- HFCM by 99 Robots - Snippet # 2: Adobe Typekit -->

<!-- /end HFCM by 99 Robots -->
<!-- [slickstream] Page Generated at: 5/9/2025, 4:47:12 AM EST -->		<script>console.info(`[slickstream] Page Generated at: 5/9/2025, 4:47:12 AM EST`);</script>
		<script>console.info(`[slickstream] Current timestamp: ${(new Date).toLocaleString('en-US', { timeZone: 'America/New_York' })} EST`);</script>
<!-- [slickstream] Page Boot Data: -->
<script class='slickstream-script'>
(function() {
    "slickstream";
    const win = window;
    win.$slickBoot = win.$slickBoot || {};
    win.$slickBoot.d = {"bestBy":1746783982586,"epoch":1727109112398,"siteCode":"WU3UBMRZ","services":{"engagementCacheableApiDomain":"https:\/\/c03f.app.slickstream.com\/","engagementNonCacheableApiDomain":"https:\/\/c03b.app.slickstream.com\/","engagementResourcesDomain":"https:\/\/c03f.app.slickstream.com\/","storyCacheableApiDomain":"https:\/\/stories.slickstream.com\/","storyNonCacheableApiDomain":"https:\/\/stories.slickstream.com\/","storyResourcesDomain":"https:\/\/stories.slickstream.com\/","websocketUri":"wss:\/\/c03b-wss.app.slickstream.com\/socket?site=WU3UBMRZ"},"bootUrl":"https:\/\/c.slickstream.com\/app\/2.14.2\/boot-loader.js","appUrl":"https:\/\/c.slickstream.com\/app\/2.14.2\/app.js","adminUrl":"","allowList":["thefirstmess.com"],"abTests":[],"wpPluginTtl":3600,"v2":{"phone":{"placeholders":[],"bootTriggerTimeout":250,"emailCapture":{"mainTitle":"SAVE THIS RECIPE","saveButtonText":"Send","confirmDesc":"Thanks so much! The recipe will be in your inbox shortly.","optInText":"Sign me up for new recipes","optInDefaultOff":false,"cssSelector":"#cls-video-container-d7y0fAI6","formIconType":"none"},"bestBy":1746783982586,"epoch":1727109112398,"siteCode":"WU3UBMRZ","services":{"engagementCacheableApiDomain":"https:\/\/c03f.app.slickstream.com\/","engagementNonCacheableApiDomain":"https:\/\/c03b.app.slickstream.com\/","engagementResourcesDomain":"https:\/\/c03f.app.slickstream.com\/","storyCacheableApiDomain":"https:\/\/stories.slickstream.com\/","storyNonCacheableApiDomain":"https:\/\/stories.slickstream.com\/","storyResourcesDomain":"https:\/\/stories.slickstream.com\/","websocketUri":"wss:\/\/c03b-wss.app.slickstream.com\/socket?site=WU3UBMRZ"},"bootUrl":"https:\/\/c.slickstream.com\/app\/2.14.2\/boot-loader.js","appUrl":"https:\/\/c.slickstream.com\/app\/2.14.2\/app.js","adminUrl":"","allowList":["thefirstmess.com"],"abTests":[],"wpPluginTtl":3600},"tablet":{"placeholders":[],"bootTriggerTimeout":250,"bestBy":1746783982586,"epoch":1727109112398,"siteCode":"WU3UBMRZ","services":{"engagementCacheableApiDomain":"https:\/\/c03f.app.slickstream.com\/","engagementNonCacheableApiDomain":"https:\/\/c03b.app.slickstream.com\/","engagementResourcesDomain":"https:\/\/c03f.app.slickstream.com\/","storyCacheableApiDomain":"https:\/\/stories.slickstream.com\/","storyNonCacheableApiDomain":"https:\/\/stories.slickstream.com\/","storyResourcesDomain":"https:\/\/stories.slickstream.com\/","websocketUri":"wss:\/\/c03b-wss.app.slickstream.com\/socket?site=WU3UBMRZ"},"bootUrl":"https:\/\/c.slickstream.com\/app\/2.14.2\/boot-loader.js","appUrl":"https:\/\/c.slickstream.com\/app\/2.14.2\/app.js","adminUrl":"","allowList":["thefirstmess.com"],"abTests":[],"wpPluginTtl":3600},"desktop":{"placeholders":[],"bootTriggerTimeout":250,"emailCapture":{"mainTitle":"SAVE THIS RECIPE","saveButtonText":"Send","confirmDesc":"Thanks so much! The recipe will be in your inbox shortly.","optInText":"Sign me up for new recipes","optInDefaultOff":false,"cssSelector":"#cls-video-container-d7y0fAI6","formIconType":"none"},"bestBy":1746783982586,"epoch":1727109112398,"siteCode":"WU3UBMRZ","services":{"engagementCacheableApiDomain":"https:\/\/c03f.app.slickstream.com\/","engagementNonCacheableApiDomain":"https:\/\/c03b.app.slickstream.com\/","engagementResourcesDomain":"https:\/\/c03f.app.slickstream.com\/","storyCacheableApiDomain":"https:\/\/stories.slickstream.com\/","storyNonCacheableApiDomain":"https:\/\/stories.slickstream.com\/","storyResourcesDomain":"https:\/\/stories.slickstream.com\/","websocketUri":"wss:\/\/c03b-wss.app.slickstream.com\/socket?site=WU3UBMRZ"},"bootUrl":"https:\/\/c.slickstream.com\/app\/2.14.2\/boot-loader.js","appUrl":"https:\/\/c.slickstream.com\/app\/2.14.2\/app.js","adminUrl":"","allowList":["thefirstmess.com"],"abTests":[],"wpPluginTtl":3600},"unknown":{"placeholders":[],"bootTriggerTimeout":250,"bestBy":1746783982586,"epoch":1727109112398,"siteCode":"WU3UBMRZ","services":{"engagementCacheableApiDomain":"https:\/\/c03f.app.slickstream.com\/","engagementNonCacheableApiDomain":"https:\/\/c03b.app.slickstream.com\/","engagementResourcesDomain":"https:\/\/c03f.app.slickstream.com\/","storyCacheableApiDomain":"https:\/\/stories.slickstream.com\/","storyNonCacheableApiDomain":"https:\/\/stories.slickstream.com\/","storyResourcesDomain":"https:\/\/stories.slickstream.com\/","websocketUri":"wss:\/\/c03b-wss.app.slickstream.com\/socket?site=WU3UBMRZ"},"bootUrl":"https:\/\/c.slickstream.com\/app\/2.14.2\/boot-loader.js","appUrl":"https:\/\/c.slickstream.com\/app\/2.14.2\/app.js","adminUrl":"","allowList":["thefirstmess.com"],"abTests":[],"wpPluginTtl":3600}}};
    win.$slickBoot.s = 'plugin';
    win.$slickBoot._bd = performance.now();
})();
</script>
<!-- [slickstream] END Page Boot Data -->
<!-- [slickstream] CLS Insertion: -->
<script>
"use strict";(async(e,t,n)=>{const o="slickstream";const i=e?JSON.parse(e):null;const r=t?JSON.parse(t):null;const c=n?JSON.parse(n):null;if(i||r||c){const e=async()=>{if(document.body){if(i){m(i.selector,i.position||"after selector","slick-film-strip",i.minHeight||72,i.margin||i.marginLegacy||"10px auto")}if(r){r.forEach((e=>{if(e.selector){m(e.selector,e.position||"after selector","slick-inline-search-panel",e.minHeight||350,e.margin||e.marginLegacy||"50px 15px",e.id)}}))}if(c){s(c)}return}window.requestAnimationFrame(e)};window.requestAnimationFrame(e)}const s=async e=>{const t="slick-on-page";try{if(document.querySelector(`.${t}`)){return}const n=l()?e.minHeightMobile||220:e.minHeight||200;if(e.cssSelector){m(e.cssSelector,"before selector",t,n,"",undefined)}else{a(e.pLocation||3,t,n)}}catch(e){console.log("plugin","error",o,`Failed to inject ${t}`)}};const a=async(e,t,n)=>{const o=document.createElement("div");o.classList.add(t);o.classList.add("cls-inserted");o.style.minHeight=n+"px";const i=document.querySelectorAll("article p");if((i===null||i===void 0?void 0:i.length)>=e){const t=i[e-1];t.insertAdjacentElement("afterend",o);return o}const r=document.querySelectorAll("section.wp-block-template-part div.entry-content p");if((r===null||r===void 0?void 0:r.length)>=e){const t=r[e-1];t.insertAdjacentElement("afterend",o);return o}return null};const l=()=>{const e=navigator.userAgent;const t=/Tablet|iPad|Playbook|Nook|webOS|Kindle|Android (?!.*Mobile).*Safari/i.test(e);const n=/Mobi|iP(hone|od)|Opera Mini/i.test(e);return n&&!t};const d=async(e,t)=>{const n=Date.now();while(true){const o=document.querySelector(e);if(o){return o}const i=Date.now();if(i-n>=t){throw new Error("Timeout")}await u(200)}};const u=async e=>new Promise((t=>{setTimeout(t,e)}));const m=async(e,t,n,i,r,c)=>{try{const o=await d(e,5e3);const s=c?document.querySelector(`.${n}[data-config="${c}"]`):document.querySelector(`.${n}`);if(o&&!s){const e=document.createElement("div");e.style.minHeight=i+"px";e.style.margin=r;e.classList.add(n);e.classList.add("cls-inserted");if(c){e.dataset.config=c}switch(t){case"after selector":o.insertAdjacentElement("afterend",e);break;case"before selector":o.insertAdjacentElement("beforebegin",e);break;case"first child of selector":o.insertAdjacentElement("afterbegin",e);break;case"last child of selector":o.insertAdjacentElement("beforeend",e);break}return e}}catch(t){console.log("plugin","error",o,`Failed to inject ${n} for selector ${e}`)}return false}})
('','','{\"mainTitle\":\"SAVE THIS RECIPE\",\"saveButtonText\":\"Send\",\"confirmDesc\":\"Thanks so much! The recipe will be in your inbox shortly.\",\"optInText\":\"Sign me up for new recipes\",\"optInDefaultOff\":false,\"cssSelector\":\"#cls-video-container-d7y0fAI6\",\"formIconType\":\"none\"}');

</script>
<!-- [slickstream] END CLS Insertion -->

<meta property='slick:wpversion' content='2.0.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","WU3UBMRZ");
</script>
<!-- [slickstream] END Bootloader -->
<!-- [slickstream] Page Metadata: -->
<meta property="slick:wppostid" content="33956" />
<meta property="slick:featured_image" content="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06.jpg" />
<meta property="slick:group" content="post" />
<meta property="slick:category" content="autumn:autumn" />
<meta property=";" content="season:Season" />
<meta property="slick:category" content="breakfast:breakfast" />
<meta property=";" content="recipe-type:Recipe Type" />
<meta property="slick:category" content="nut-free:nut free" />
<meta property=";" content="dietary:Dietary Preference" />
<meta property="slick:category" content="snack:snack" />
<meta property=";" content="recipe-type:Recipe Type" />
<meta property="slick:category" content="spring:spring" />
<meta property=";" content="season:Season" />
<meta property="slick:category" content="summer:summer" />
<meta property=";" content="season:Season" />
<meta property="slick:category" content="sweet:sweet" />
<meta property=";" content="flavor:Flavor" />
<meta property="slick:category" content="vegan:vegan" />
<meta property=";" content="dietary:Dietary Preference" />
<meta property="slick:category" content="winter:winter" />
<meta property=";" content="season:Season" />
<script type="application/x-slickstream+json">{"@context":"https://slickstream.com","@graph":[{"@type":"Plugin","version":"2.0.3"},{"@type":"Site","name":"The First Mess","url":"https://thefirstmess.com","description":"| Vegan recipes &amp; wholesome meals","atomUrl":"https://thefirstmess.com/feed/atom/","rtl":false},{"@type":"WebPage","@id":33956,"isFront":false,"isHome":false,"isCategory":false,"isTag":false,"isSingular":true,"date":"2025-03-12T02:59:00-04:00","modified":"2025-03-12T15:52:02-04:00","title":"Soft &amp; Fluffy Vegan Blueberry Muffins with A Bit of Whole Wheat Flour","pageType":"post","postType":"post","featured_image":"https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06.jpg","author":"Laura Wright","categories":[{"@id":13,"slug":"autumn","name":"autumn","parents":[{"@type":"CategoryParent","@id":2270,"slug":"season","name":"Season"}]},{"@id":19,"slug":"breakfast","name":"breakfast","parents":[{"@type":"CategoryParent","@id":2268,"slug":"recipe-type","name":"Recipe Type"}]},{"@id":230,"slug":"nut-free","name":"nut free","parents":[{"@type":"CategoryParent","@id":2271,"slug":"dietary","name":"Dietary Preference"}]},{"@id":6,"slug":"snack","name":"snack","parents":[{"@type":"CategoryParent","@id":2268,"slug":"recipe-type","name":"Recipe Type"}]},{"@id":12,"slug":"spring","name":"spring","parents":[{"@type":"CategoryParent","@id":2270,"slug":"season","name":"Season"}]},{"@id":11,"slug":"summer","name":"summer","parents":[{"@type":"CategoryParent","@id":2270,"slug":"season","name":"Season"}]},{"@id":3046,"slug":"sweet","name":"sweet","parents":[{"@type":"CategoryParent","@id":3043,"slug":"flavor","name":"Flavor"}]},{"@id":7,"slug":"vegan","name":"vegan","parents":[{"@type":"CategoryParent","@id":2271,"slug":"dietary","name":"Dietary Preference"}]},{"@id":14,"slug":"winter","name":"winter","parents":[{"@type":"CategoryParent","@id":2270,"slug":"season","name":"Season"}]}],"tags":["all purpose flour","blueberries","maple syrup","orange","salt","soy milk","sunflower oil","vanilla","vegan yogurt","whole wheat flour"]}]}</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]' + ['Slickstream scripts. This ', 'may cause undesirable behavior, ', 'such as increased CLS scores.',' WP-Rocket is deferring one or more ',].sort().join(''));
    }
})();
</script><style type="text/css"></style><style type="text/css"></style>	<style></style>
<link rel="apple-touch-icon" sizes="180x180" href="/wp-content/uploads/fbrfg/apple-touch-icon.png?v=20221026">
<link rel="icon" type="image/png" sizes="32x32" href="/wp-content/uploads/fbrfg/favicon-32x32.png?v=20221026">
<link rel="icon" type="image/png" sizes="16x16" href="/wp-content/uploads/fbrfg/favicon-16x16.png?v=20221026">
<link rel="manifest" href="/wp-content/uploads/fbrfg/site.webmanifest?v=20221026">
<link rel="mask-icon" href="/wp-content/uploads/fbrfg/safari-pinned-tab.svg?v=20221026" color="#5bbad5">
<link rel="shortcut icon" href="/wp-content/uploads/fbrfg/favicon.ico?v=20221026">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="/wp-content/uploads/fbrfg/browserconfig.xml?v=20221026">
<meta name="theme-color" content="#ffffff"><meta name="generator" content="Powered by WPBakery Page Builder - drag and drop page builder for WordPress."/>
<script data-no-optimize='1' data-cfasync='false' id='cls-disable-ads-2b25b53'>var cls_disable_ads=function(t){"use strict";window.adthriveCLS.buildDate="2025-05-07";const e="Content",i="Recipe";const s=new class{info(t,e,...i){this.call(console.info,t,e,...i)}warn(t,e,...i){this.call(console.warn,t,e,...i)}error(t,e,...i){this.call(console.error,t,e,...i),this.sendErrorLogToCommandQueue(t,e,...i)}event(t,e,...i){var s;"debug"===(null==(s=window.adthriveCLS)?void 0:s.bucket)&&this.info(t,e)}sendErrorLogToCommandQueue(t,e,...i){window.adthrive=window.adthrive||{},window.adthrive.cmd=window.adthrive.cmd||[],window.adthrive.cmd.push((()=>{void 0!==window.adthrive.logError&&"function"==typeof window.adthrive.logError&&window.adthrive.logError(t,e,i)}))}call(t,e,i,...s){const o=[`%c${e}::${i} `],a=["color: #999; font-weight: bold;"];s.length>0&&"string"==typeof s[0]&&o.push(s.shift()),a.push(...s);try{Function.prototype.apply.call(t,console,[o.join(""),...a])}catch(t){return void console.error(t)}}},o=t=>{const e=window.location.href;return t.some((t=>new RegExp(t,"i").test(e)))};class a{checkCommandQueue(){this.adthrive&&this.adthrive.cmd&&this.adthrive.cmd.forEach((t=>{const e=t.toString(),i=this.extractAPICall(e,"disableAds");i&&this.disableAllAds(this.extractPatterns(i));const s=this.extractAPICall(e,"disableContentAds");s&&this.disableContentAds(this.extractPatterns(s));const o=this.extractAPICall(e,"disablePlaylistPlayers");o&&this.disablePlaylistPlayers(this.extractPatterns(o))}))}extractPatterns(t){const e=t.match(/["'](.*?)['"]/g);if(null!==e)return e.map((t=>t.replace(/["']/g,"")))}extractAPICall(t,e){const i=new RegExp(e+"\\((.*?)\\)","g"),s=t.match(i);return null!==s&&s[0]}disableAllAds(t){t&&!o(t)||(this.all=!0,this.reasons.add("all_page"))}disableContentAds(t){t&&!o(t)||(this.content=!0,this.recipe=!0,this.locations.add(e),this.locations.add(i),this.reasons.add("content_plugin"))}disablePlaylistPlayers(t){t&&!o(t)||(this.video=!0,this.locations.add("Video"),this.reasons.add("video_page"))}urlHasEmail(t){if(!t)return!1;return null!==/([A-Z0-9._%+-]+(@|%(25)*40)[A-Z0-9.-]+\.[A-Z]{2,})/i.exec(t)}constructor(t){this.adthrive=t,this.all=!1,this.content=!1,this.recipe=!1,this.video=!1,this.locations=new Set,this.reasons=new Set,(this.urlHasEmail(window.location.href)||this.urlHasEmail(window.document.referrer))&&(this.all=!0,this.reasons.add("all_email"));try{this.checkCommandQueue(),null!==document.querySelector(".tag-novideo")&&(this.video=!0,this.locations.add("Video"),this.reasons.add("video_tag"))}catch(t){s.error("ClsDisableAds","checkCommandQueue",t)}}}const n=window.adthriveCLS;return n&&(n.disableAds=new a(window.adthrive)),t.ClsDisableAds=a,t}({});
</script>		<style type="text/css" id="wp-custom-css"></style>
		<noscript><style> .wpb_animate_when_almost_visible { opacity: 1; }</style></noscript><noscript><style id="rocket-lazyload-nojs-css">.rll-youtube-player, [data-lazy-src]{display:none !important;}</style></noscript><style id="rocket-lazyrender-inline-css">[data-wpr-lazyrender] {content-visibility: auto;}</style><meta name="generator" content="WP Rocket 3.18.3" data-wpr-features="wpr_remove_unused_css wpr_delay_js wpr_defer_js wpr_minify_js wpr_lazyload_images wpr_lazyload_iframes wpr_automatic_lazy_rendering wpr_oci wpr_minify_css wpr_desktop wpr_dns_prefetch" /></head>
<body class="post-template-default single single-post postid-33956 single-format-standard not-admin wpb-js-composer js-comp-ver-8.4.1 vc_responsive">
        <div class="dmc-body-inner">
        <header id="dmc-main-header">
            <div class="dmc-header-row-1 dmc-sticky-nav">
                <div class="dmc-header-row-inner dmc-width-main dmc-padding-main">
                    <div class="dmc-col-1">
	                                            <h1 class="dmc-logo-main"><a href="/" class="dmc-image-holder">    <picture class="dmc-image-picture type-fluid">
		<source media="(min-width: 1024px)" srcset="https://thefirstmess.com/wp-content/uploads/fly-images/22605/the-first-mess-main-logo-0x24.png, https://thefirstmess.com/wp-content/uploads/fly-images/22605/the-first-mess-main-logo-0x48.png 2x"><source srcset="https://thefirstmess.com/wp-content/uploads/fly-images/22605/the-first-mess-main-logo-0x14.png, https://thefirstmess.com/wp-content/uploads/fly-images/22605/the-first-mess-main-logo-0x28.png 2x"><img width="202" height="14" src="https://thefirstmess.com/wp-content/uploads/2022/09/the-first-mess-main-logo-620x43.png" class="attachment-0x14 size-0x14" alt="" decoding="async" srcset="https://thefirstmess.com/wp-content/uploads/2022/09/the-first-mess-main-logo-620x43.png 620w, https://thefirstmess.com/wp-content/uploads/2022/09/the-first-mess-main-logo-64x4.png 64w, https://thefirstmess.com/wp-content/uploads/2022/09/the-first-mess-main-logo-128x9.png 128w, https://thefirstmess.com/wp-content/uploads/2022/09/the-first-mess-main-logo.png 690w" sizes="(max-width: 202px) 100vw, 202px" />    </picture>
	</a></h1>
                    </div>
                    <div class="dmc-col-2">
	                        <div class="dmc-menu-wrapper style-horizontal">
        <nav class="dmc-menu dmc-menu-sticky-menu" role="navigation" aria-label="Sticky Menu"><div class="menu-sticky-menu-container"><ul id="menu-sticky-menu" class="menu"><li id="menu-item-22665" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-22665"><a href="https://thefirstmess.com/recipes/">Recipe Search</a></li>
<li id="menu-item-22666" class="menu-item menu-item-type-post_type menu-item-object-cookbook menu-item-22666"><a href="https://thefirstmess.com/cookbook/the-first-mess-cookbook/">My Cookbook</a></li>
</ul></div></nav>    </div>
                            <div class="dmc-mm-trig-hold">
                            <div class="dmc-mm-trig">
                                <div class="mm-label">Menu</div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
            <div class="dmc-header-row-2">
                <div class="dmc-header-row-inner dmc-width-main dmc-padding-main">
                    <div class="dmc-col-1">
	                        <div class="dmc-menu-wrapper style-horizontal">
        <nav class="dmc-menu dmc-menu-main-menu-1" role="navigation" aria-label="Main Menu 1"><div class="menu-main-menu-1-container"><ul id="menu-main-menu-1" class="menu"><li id="menu-item-22647" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-22647"><a href="https://thefirstmess.com/">Home</a></li>
<li id="menu-item-22650" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-22650"><a href="https://thefirstmess.com/recipes/">Recipes</a></li>
<li id="menu-item-22649" class="menu-item menu-item-type-post_type menu-item-object-cookbook menu-item-22649"><a href="https://thefirstmess.com/cookbook/the-first-mess-cookbook/">Cookbook</a></li>
</ul></div></nav>    </div>
                        </div>
                    <div class="dmc-col-2">
	                                <form role="search" method="get" class="dmc-search-form searchform style-default" action="https://thefirstmess.com/" >
                <div class="dmc-search-input-wrap">
					            <i class="dmc-icon dmc-icon-64 dmc-icon-wrap dmc-icon-theme dmc-icon-search" aria-label="Search"></i>
                                <input placeholder="Search by keyword" type="text" value="" name="s" />
                </div>
            </form>
			                    </div>
                    <div class="dmc-col-3">
	                        <div class="dmc-menu-wrapper style-horizontal style-dropdown">
        <nav class="dmc-menu dmc-menu-main-menu-2" role="navigation" aria-label="Main Menu 2"><div class="menu-main-menu-2-container"><ul id="menu-main-menu-2" class="menu"><li id="menu-item-26084" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-26084"><a href="https://thefirstmess.com/recipes/">Categories</a>
<ul class="sub-menu">
	<li id="menu-item-22717" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-22717"><a href="https://thefirstmess.com/category/recipe-type/appetizer/">appetizer</a></li>
	<li id="menu-item-22726" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-22726"><a href="https://thefirstmess.com/category/season/autumn/">autumn</a></li>
	<li id="menu-item-22718" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-22718"><a href="https://thefirstmess.com/category/recipe-type/beverage/">beverage</a></li>
	<li id="menu-item-22719" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-22719"><a href="https://thefirstmess.com/category/recipe-type/breakfast/">breakfast</a></li>
	<li id="menu-item-22712" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-22712"><a href="https://thefirstmess.com/category/dietary/gluten-free/">gluten free</a></li>
	<li id="menu-item-22713" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-22713"><a href="https://thefirstmess.com/category/dietary/grain-free/">grain-free</a></li>
	<li id="menu-item-22727" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-22727"><a href="https://thefirstmess.com/category/season/holidays/">holidays</a></li>
	<li id="menu-item-22720" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-22720"><a href="https://thefirstmess.com/category/recipe-type/dessert/">dessert</a></li>
	<li id="menu-item-22721" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-22721"><a href="https://thefirstmess.com/category/recipe-type/main-course/">main course</a></li>
	<li id="menu-item-22714" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-22714"><a href="https://thefirstmess.com/category/dietary/nut-free/">nut free</a></li>
	<li id="menu-item-22716" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-22716"><a href="https://thefirstmess.com/category/method/quick/">quick</a></li>
	<li id="menu-item-22715" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-22715"><a href="https://thefirstmess.com/category/dietary/refined-sugar-free/">refined sugar-free</a></li>
	<li id="menu-item-22722" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-22722"><a href="https://thefirstmess.com/category/recipe-type/salad/">salad</a></li>
	<li id="menu-item-22723" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-22723"><a href="https://thefirstmess.com/category/recipe-type/sauce/">sauce</a></li>
	<li id="menu-item-22724" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-22724"><a href="https://thefirstmess.com/category/recipe-type/side-dish/">side dish</a></li>
	<li id="menu-item-22725" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-22725"><a href="https://thefirstmess.com/category/recipe-type/soup/">soup</a></li>
	<li id="menu-item-22656" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-22656"><a href="https://thefirstmess.com/category/season/spring/">spring</a></li>
	<li id="menu-item-22729" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-22729"><a href="https://thefirstmess.com/category/season/summer/">summer</a></li>
	<li id="menu-item-22730" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-22730"><a href="https://thefirstmess.com/category/season/winter/">winter</a></li>
</ul>
</li>
<li id="menu-item-22657" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-22657"><a href="https://thefirstmess.com/about/">About</a>
<ul class="sub-menu">
	<li id="menu-item-22658" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-22658"><a target="_blank" href="mailto:laura@thefirstmess.com">Contact</a></li>
</ul>
</li>
<li id="menu-item-26872" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-26872"><a href="https://thefirstmess.com/newsletter/">Newsletter</a></li>
</ul></div></nav>    </div>
                        </div>
                </div>
            </div>
        </header>
        <div id="dmc-mobile-menu">
            <div class="dmc-mobile-menu-in">
                <div class="dmc-mm-in-in">
	                    <div class="dmc-menu-wrapper">
        <nav class="dmc-menu dmc-menu-mobile-menu" role="navigation" aria-label="Mobile Menu"><div class="menu-mobile-menu-container"><ul id="menu-mobile-menu" class="menu"><li id="menu-item-22659" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-22659"><a href="https://thefirstmess.com/">Home</a></li>
<li id="menu-item-22660" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-22660"><a href="https://thefirstmess.com/recipes/">Recipes</a></li>
<li id="menu-item-22661" class="menu-item menu-item-type-post_type menu-item-object-cookbook menu-item-22661"><a href="https://thefirstmess.com/cookbook/the-first-mess-cookbook/">Cookbook</a></li>
<li id="menu-item-22663" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-22663"><a href="https://thefirstmess.com/about/">About</a></li>
<li id="menu-item-26873" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-26873"><a href="https://thefirstmess.com/newsletter/">Newsletter</a></li>
<li id="menu-item-22664" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-22664"><a target="_blank" href="mailto:laura@thefirstmess.com">Contact</a></li>
</ul></div></nav>    </div>
                <form role="search" method="get" class="dmc-search-form searchform style-default" action="https://thefirstmess.com/" >
                <div class="dmc-search-input-wrap">
					            <i class="dmc-icon dmc-icon-64 dmc-icon-wrap dmc-icon-theme dmc-icon-search" aria-label="Search"></i>
                                <input placeholder="Search by keyword" type="text" value="" name="s" />
                </div>
            </form>
			    <div class="dmc-menu-wrapper">
        <nav class="dmc-menu dmc-menu-footer-menu-3" role="navigation" aria-label="Footer Menu 3"><div class="menu-footer-menu-3-container"><ul id="menu-footer-menu-3" class="menu"><li id="menu-item-22673" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-22673"><a target="_blank" href="https://www.pinterest.ca/thefirstmess/">Pinterest</a></li>
<li id="menu-item-22674" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-22674"><a href="https://www.instagram.com/thefirstmess/">Instagram</a></li>
<li id="menu-item-22675" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-22675"><a href="https://www.facebook.com/thefirstmess">Facebook</a></li>
</ul></div></nav>    </div>
                    </div>
            </div>
        </div>
            <div id="dmc-single-post" class="single-post-type-post">
        <div class="dmc-single-post-inner">
							<div class="dmc-single-post-wrapper">
    <article class="dmc-single-post content">
        <div class="dmc-single-post-article-inner dmc-width-main dmc-padding-main">
            <div class="dmc-page-with-sidebar">
                <div class="dmc-pwsb-content-holder">
                    <div class="dmc-single-post-header">
	                    						
						<div class="breadcrumbs"><span><span><a href="https://thefirstmess.com/">Home</a></span> » <span><a href="https://thefirstmess.com/recipes/">Recipes</a></span> » <span><a href="https://thefirstmess.com/category/recipe-type/breakfast/">breakfast</a></span></span></div>						
                        <div class="data-title-holder">
                            <h1 class="data-title">Soft &amp; Fluffy Vegan Blueberry Muffins with A Bit of Whole Wheat Flour</h1>
							<span>Created by <a href="https://thefirstmess.com/about/" title="Visit Laura Wright&#8217;s website" rel="author external">Laura Wright</a>  
							<em>— Published 12/03/2025</em> 								
							</span>
                        </div>
	                                                <div class="dmc-recipe-buttons">
                                <div class="button-wrapper">
                                    <a href="#recipe" class="dmc-jump-to-recipe">Jump to Recipe</a>
                                </div>
                                <div class="separator"></div>
                                <div class="button-wrapper">
	                                <a href="https://www.pinterest.com/pin/create/bookmarklet/?url=https%3A%2F%2Fthefirstmess.com%2F2025%2F03%2F12%2Fsoft-fluffy-vegan-blueberry-muffins-bit-of-whole-wheat-flour%2F&amp;media=https%3A%2F%2Fthefirstmess.com%2Fwp-content%2Fuploads%2F2025%2F03%2Fpinterest-vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple.jpg&amp;description=Soft+%26amp%3B+Fluffy+Vegan+Blueberry+Muffins+with+A+Bit+of+Whole+Wheat+Flour&amp;is_video=false" style="color: #333333;" class="wprm-recipe-pin wprm-recipe-link wprm-block-text-normal" target="_blank" rel="nofollow noopener" data-recipe="33954" data-url="https://thefirstmess.com/2025/03/12/soft-fluffy-vegan-blueberry-muffins-bit-of-whole-wheat-flour/" data-media="https://thefirstmess.com/wp-content/uploads/2025/03/pinterest-vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple.jpg" data-description="Soft &amp; Fluffy Vegan Blueberry Muffins with A Bit of Whole Wheat Flour" data-repin="" role="button">Pin Recipe</a>                                </div>
                            </div>
		                    <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><div id="wprm-recipe-user-rating-0" class="wprm-recipe-rating wprm-recipe-rating-recipe-33954 wprm-user-rating wprm-recipe-rating-inline wprm-user-rating-not-voted wprm-user-rating-allowed" data-recipe="33954" data-average="5" data-count="3" data-total="15" 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="#343434" 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="#343434" 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="#343434" 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="#343434" 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="#343434" 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="#343434" 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="#343434" 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="#343434" 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="#343434" 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="#343434" 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 class="wprm-recipe-rating-details wprm-block-text-normal"><span class="wprm-recipe-rating-average">5</span> from <span class="wprm-recipe-rating-count">3</span> votes</div></div>                            <div class="data-short-description f-text-proxima-24"><p>These vegan blueberry muffins are soft, fluffy, and perfectly sweet with maple syrup. A touch of whole wheat flour brings a nutty flavor, along with zesty orange, a hint of warm nutmeg, and loads of fresh jammy blueberries.</p></div>
                                                </div>
                    <div class="dmc-single-post-content dmc-post-editor">
                        <div class="dmc-content-inner dmc-frizzly-active dmc-content-style-1"><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html><body><figure class="wp-block-image size-post"><img fetchpriority="high" decoding="async" width="740" height="925" src="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06-740x925.jpg" alt="An overhead shot shows fluffy vegan blueberry muffins cooling on a wire rack. The muffins are in homemade parchment paper liners." class="remove-lazy wp-image-33944" srcset="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06.jpg 1480w" sizes="(max-width: 740px) 100vw, 740px" /></figure>



<p>Take one of these perfectly tender vegan blueberry muffins to go with a hot coffee for the perfect <a href="https://thefirstmess.com/category/recipe-type/breakfast/">vegan breakfast</a> indulgence. A combination of vegan yogurt, orange zest and juice, nutmeg, soy milk, and other muffin batter staples gives us a flavorful treat that&rsquo;s also pleasantly fluffy. Fans of my <a href="https://thefirstmess.com/2025/02/05/morning-glory-bread-recipe/">morning glory bread</a> will love this recipe! Sweetened with maple syrup and boosted with a bit of whole wheat flour, these soft muffins with tons of jammy blueberries are simple to make. Once you mix your dry and wet ingredients separately, you fold both together with some <a href="https://thefirstmess.com/tag/blueberries/">fresh blueberries</a>. Bake in the oven for about 25 minutes and enjoy!</p>



<figure class="wp-block-image size-post"><img decoding="async" width="740" height="925" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20740%20925'%3E%3C/svg%3E" alt="An up close, head-on shot shows a vegan blueberry muffin. The muffin's liner has been peeled off and you can see a big oozy pocket of blueberry on the side." class="wp-image-33941" data-lazy-srcset="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-03-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-03-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-03-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-03-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-03-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-03-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-03-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-03-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-03-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-03.jpg 1480w" data-lazy-sizes="(max-width: 740px) 100vw, 740px" data-lazy-src="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-03-740x925.jpg" /><noscript><img decoding="async" width="740" height="925" src="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-03-740x925.jpg" alt="An up close, head-on shot shows a vegan blueberry muffin. The muffin's liner has been peeled off and you can see a big oozy pocket of blueberry on the side." class="wp-image-33941" srcset="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-03-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-03-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-03-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-03-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-03-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-03-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-03-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-03-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-03-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-03.jpg 1480w" sizes="(max-width: 740px) 100vw, 740px" /></noscript></figure>



<figure class="wp-block-image size-post"><img decoding="async" width="740" height="925" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20740%20925'%3E%3C/svg%3E" alt="An up close shot shows the fluffy crumb of a split open vegan blueberry muffin with jammy pockets of blueberries. The muffin half is being held by a hand in bright natural light." class="wp-image-33939" data-lazy-srcset="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-01-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-01-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-01-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-01-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-01-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-01-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-01-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-01-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-01-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-01.jpg 1480w" data-lazy-sizes="(max-width: 740px) 100vw, 740px" data-lazy-src="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-01-740x925.jpg" /><noscript><img decoding="async" width="740" height="925" src="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-01-740x925.jpg" alt="An up close shot shows the fluffy crumb of a split open vegan blueberry muffin with jammy pockets of blueberries. The muffin half is being held by a hand in bright natural light." class="wp-image-33939" srcset="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-01-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-01-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-01-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-01-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-01-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-01-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-01-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-01-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-01-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-01.jpg 1480w" sizes="(max-width: 740px) 100vw, 740px" /></noscript></figure>



<figure class="wp-block-image size-post"><img decoding="async" width="740" height="925" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20740%20925'%3E%3C/svg%3E" alt="An overhead shot shows ingredients for vegan blueberry muffins, all prepped and measured in small bowls. There's baking powder, baking soda, orange zest &amp; juice, maple syrup, all purpose flour, sunflower oil, nutmeg, whole wheat flour, vegan yogurt, vanilla extract, fresh blueberries, salt, and soy milk." class="wp-image-33953" data-lazy-srcset="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-15-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-15-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-15-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-15-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-15-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-15-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-15-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-15-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-15-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-15.jpg 1480w" data-lazy-sizes="(max-width: 740px) 100vw, 740px" data-lazy-src="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-15-740x925.jpg" /><noscript><img decoding="async" width="740" height="925" src="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-15-740x925.jpg" alt="An overhead shot shows ingredients for vegan blueberry muffins, all prepped and measured in small bowls. There's baking powder, baking soda, orange zest &amp; juice, maple syrup, all purpose flour, sunflower oil, nutmeg, whole wheat flour, vegan yogurt, vanilla extract, fresh blueberries, salt, and soy milk." class="wp-image-33953" srcset="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-15-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-15-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-15-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-15-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-15-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-15-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-15-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-15-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-15-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-15.jpg 1480w" sizes="(max-width: 740px) 100vw, 740px" /></noscript></figure>



<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-post"><img decoding="async" width="740" height="925" data-id="33952" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20740%20925'%3E%3C/svg%3E" alt="An overhead shot shows a hand using a whisk to combine dry ingredients in a large bowl with a pouring spout." class="wp-image-33952" data-lazy-srcset="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-14-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-14-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-14-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-14-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-14-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-14-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-14-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-14-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-14-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-14.jpg 1480w" data-lazy-sizes="(max-width: 740px) 100vw, 740px" data-lazy-src="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-14-740x925.jpg" /><noscript><img decoding="async" width="740" height="925" data-id="33952" src="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-14-740x925.jpg" alt="An overhead shot shows a hand using a whisk to combine dry ingredients in a large bowl with a pouring spout." class="wp-image-33952" srcset="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-14-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-14-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-14-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-14-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-14-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-14-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-14-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-14-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-14-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-14.jpg 1480w" sizes="(max-width: 740px) 100vw, 740px" /></noscript></figure>



<figure class="wp-block-image size-post"><img decoding="async" width="740" height="925" data-id="33951" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20740%20925'%3E%3C/svg%3E" alt="An overhead shot shows a hand using a whisk to bring wet ingredients together in a bowl." class="wp-image-33951" data-lazy-srcset="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-13-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-13-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-13-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-13-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-13-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-13-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-13-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-13-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-13-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-13.jpg 1480w" data-lazy-sizes="(max-width: 740px) 100vw, 740px" data-lazy-src="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-13-740x925.jpg" /><noscript><img decoding="async" width="740" height="925" data-id="33951" src="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-13-740x925.jpg" alt="An overhead shot shows a hand using a whisk to bring wet ingredients together in a bowl." class="wp-image-33951" srcset="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-13-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-13-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-13-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-13-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-13-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-13-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-13-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-13-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-13-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-13.jpg 1480w" sizes="(max-width: 740px) 100vw, 740px" /></noscript></figure>
</figure>



<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-large"><img decoding="async" width="940" height="1175" data-id="33950" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20940%201175'%3E%3C/svg%3E" alt="An overhead shot shows a orange zest-flecked wet mixture that's been poured on top of a flour mixture in a large bowl. A rubber spatula is sticking out of the bowl." class="wp-image-33950" data-lazy-srcset="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-12-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-12-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-12-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-12-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-12-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-12-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-12-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-12-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-12-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-12.jpg 1480w" data-lazy-sizes="(max-width: 940px) 100vw, 940px" data-lazy-src="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-12-940x1175.jpg" /><noscript><img decoding="async" width="940" height="1175" data-id="33950" src="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-12-940x1175.jpg" alt="An overhead shot shows a orange zest-flecked wet mixture that's been poured on top of a flour mixture in a large bowl. A rubber spatula is sticking out of the bowl." class="wp-image-33950" srcset="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-12-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-12-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-12-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-12-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-12-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-12-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-12-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-12-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-12-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-12.jpg 1480w" sizes="(max-width: 940px) 100vw, 940px" /></noscript></figure>



<figure class="wp-block-image size-post"><img decoding="async" width="740" height="925" data-id="33949" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20740%20925'%3E%3C/svg%3E" alt="An overhead shot shows fresh blueberries being poured into a bowl of batter." class="wp-image-33949" data-lazy-srcset="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-11-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-11-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-11-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-11-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-11-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-11-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-11-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-11-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-11-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-11.jpg 1480w" data-lazy-sizes="(max-width: 740px) 100vw, 740px" data-lazy-src="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-11-740x925.jpg" /><noscript><img decoding="async" width="740" height="925" data-id="33949" src="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-11-740x925.jpg" alt="An overhead shot shows fresh blueberries being poured into a bowl of batter." class="wp-image-33949" srcset="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-11-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-11-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-11-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-11-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-11-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-11-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-11-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-11-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-11-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-11.jpg 1480w" sizes="(max-width: 740px) 100vw, 740px" /></noscript></figure>
</figure>



<p>I&rsquo;m a muffin gal to the core and knew that we needed a classic vegan blueberry muffin recipe on the site. After <a href="https://thefirstmess.com/about/">many attempts in my kitchen</a> with a variety of different add-ins, I think we&rsquo;ve got it. You do not need eggs or weird egg replacements for pillowy-soft vegan muffins! After years of posting muffin recipes here (and a muffin loaf in <a href="https://thefirstmess.com/cookbook/the-first-mess-cookbook/">my cookbook</a>!) with ground flax/chia etc, I&rsquo;ve learned that you can simply use more of what&rsquo;s already in the recipe (flour, liquid, leavening) to replace eggs.</p>



<p>I like the nutty edge of some whole grain flour in a bake, so I used whole wheat flour in addition to the all-purpose with these simple blueberry muffins. A thing I learned years ago when working with whole grain flour in muffins/loaves: add a bit of orange juice and zest to balance the flavor overall. </p>



<h2 class="wp-block-heading">Some tips for making these vegan blueberry muffins:</h2>



<ul class="wp-block-list">
<li>I tested this recipe with a lot of different types of vegan yogurt. Overall, I recommend using one that you enjoy the taste of on its own. I found that yogurt varieties with longer ingredient lists containing starches/added pea protein did not perform as well. They also contributed a strange taste overall. Here in Canada, Yoggu and Simpla are my favorite brands for baking. </li>



<li>This recipe makes 10 good-sized muffins, leaving 2 empty muffin cups in the center of a standard muffin tin. I recently saw a creator on TikTok fill the empty cups of a muffin tin with boiling water before baking for extra puffy muffins. I can confidently say that this trick works in this recipe! Once you&rsquo;ve filled each muffin cup with batter, pour boiling water halfway up the 2 empty muffin cups. Then, carefully transfer the tin to the oven.</li>



<li>I do prefer fresh blueberries in this recipe because they behave more predictably. With frozen ones, depending on what stage they&rsquo;re at with thawing (even just 10 minutes on the counter), they can &ldquo;gum up&rdquo; the batter with extra moisture.</li>



<li>Don&rsquo;t forget to lower the oven temperature after 5 minutes! Baking at 425&deg; for those first 5 minutes helps to puff up the tops. I learned this tip from <a href="https://sallysbakingaddiction.com/" target="_blank" rel="noreferrer noopener">Sally&rsquo;s Baking Recipes</a>.</li>
</ul>



<p>Really hope you love these little delights! Let me know if you have any questions in the comments and I&rsquo;ll try my best to help :)</p>



<div class="wp-block-columns featured-product-block has-color-2-background-color has-background is-layout-flex wp-container-core-columns-is-layout-1 wp-block-columns-is-layout-flex" id="email-highlight">
<div class="wp-block-column featured-product-block-inner is-layout-flow wp-block-column-is-layout-flow"><div class="wp-block-image">
<figure class="aligncenter size-large"><img decoding="async" width="940" height="1079" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20940%201079'%3E%3C/svg%3E" alt="" class="wp-image-12105" data-lazy-srcset="https://thefirstmess.com/wp-content/uploads/2020/03/24-12101-post/pantry-stuffs-940x1079.jpg 940w, https://thefirstmess.com/wp-content/uploads/2020/03/24-12101-post/pantry-stuffs-620x712.jpg 620w, https://thefirstmess.com/wp-content/uploads/2020/03/24-12101-post/pantry-stuffs-768x882.jpg 768w, https://thefirstmess.com/wp-content/uploads/2020/03/24-12101-post/pantry-stuffs-1338x1536.jpg 1338w, https://thefirstmess.com/wp-content/uploads/2020/03/24-12101-post/pantry-stuffs-56x64.jpg 56w, https://thefirstmess.com/wp-content/uploads/2020/03/24-12101-post/pantry-stuffs-112x128.jpg 112w, https://thefirstmess.com/wp-content/uploads/2020/03/24-12101-post/pantry-stuffs-740x849.jpg 740w, https://thefirstmess.com/wp-content/uploads/2020/03/24-12101-post/pantry-stuffs-1480x1699.jpg 1480w, https://thefirstmess.com/wp-content/uploads/2020/03/24-12101-post/pantry-stuffs.jpg 1656w" data-lazy-sizes="(max-width: 940px) 100vw, 940px" data-lazy-src="https://thefirstmess.com/wp-content/uploads/2020/03/24-12101-post/pantry-stuffs-940x1079.jpg" /><noscript><img decoding="async" width="940" height="1079" src="https://thefirstmess.com/wp-content/uploads/2020/03/24-12101-post/pantry-stuffs-940x1079.jpg" alt="" class="wp-image-12105" srcset="https://thefirstmess.com/wp-content/uploads/2020/03/24-12101-post/pantry-stuffs-940x1079.jpg 940w, https://thefirstmess.com/wp-content/uploads/2020/03/24-12101-post/pantry-stuffs-620x712.jpg 620w, https://thefirstmess.com/wp-content/uploads/2020/03/24-12101-post/pantry-stuffs-768x882.jpg 768w, https://thefirstmess.com/wp-content/uploads/2020/03/24-12101-post/pantry-stuffs-1338x1536.jpg 1338w, https://thefirstmess.com/wp-content/uploads/2020/03/24-12101-post/pantry-stuffs-56x64.jpg 56w, https://thefirstmess.com/wp-content/uploads/2020/03/24-12101-post/pantry-stuffs-112x128.jpg 112w, https://thefirstmess.com/wp-content/uploads/2020/03/24-12101-post/pantry-stuffs-740x849.jpg 740w, https://thefirstmess.com/wp-content/uploads/2020/03/24-12101-post/pantry-stuffs-1480x1699.jpg 1480w, https://thefirstmess.com/wp-content/uploads/2020/03/24-12101-post/pantry-stuffs.jpg 1656w" sizes="(max-width: 940px) 100vw, 940px" /></noscript></figure></div></div>



<div class="wp-block-column fbp-right is-layout-flow wp-block-column-is-layout-flow">
<h3 class="wp-block-heading">Free Pantry &amp; Kitchen Equipment Guide</h3>



<p>Everything you need for flavourful vegan meals that everyone will love, from my kitchen to yours.</p>



<script data-minify="1" async="" src="https://thefirstmess.com/wp-content/cache/min/1/form/6e6fc8da-f341-11ed-97dd-9ba2c057ccac.js?ver=1746733133" data-form="6e6fc8da-f341-11ed-97dd-9ba2c057ccac"></script>
</div>
</div>



<figure class="wp-block-image size-post"><img decoding="async" width="740" height="925" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20740%20925'%3E%3C/svg%3E" alt="An overhead shot shows a hand using a spatula to fold fresh blueberries into a batter in a large bowl." class="wp-image-33948" data-lazy-srcset="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-10-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-10-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-10-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-10-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-10-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-10-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-10-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-10-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-10-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-10.jpg 1480w" data-lazy-sizes="(max-width: 740px) 100vw, 740px" data-lazy-src="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-10-740x925.jpg" /><noscript><img decoding="async" width="740" height="925" src="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-10-740x925.jpg" alt="An overhead shot shows a hand using a spatula to fold fresh blueberries into a batter in a large bowl." class="wp-image-33948" srcset="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-10-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-10-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-10-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-10-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-10-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-10-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-10-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-10-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-10-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-10.jpg 1480w" sizes="(max-width: 740px) 100vw, 740px" /></noscript></figure>



<figure class="wp-block-image size-post"><img decoding="async" width="740" height="925" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20740%20925'%3E%3C/svg%3E" alt="A head-on shot shows a bowl of batter on a kitchen counter next to a muffin tin with homemade parchment liners inside each cavity." class="wp-image-33947" data-lazy-srcset="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-09-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-09-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-09-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-09-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-09-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-09-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-09-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-09-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-09-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-09.jpg 1480w" data-lazy-sizes="(max-width: 740px) 100vw, 740px" data-lazy-src="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-09-740x925.jpg" /><noscript><img decoding="async" width="740" height="925" src="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-09-740x925.jpg" alt="A head-on shot shows a bowl of batter on a kitchen counter next to a muffin tin with homemade parchment liners inside each cavity." class="wp-image-33947" srcset="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-09-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-09-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-09-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-09-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-09-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-09-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-09-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-09-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-09-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-09.jpg 1480w" sizes="(max-width: 740px) 100vw, 740px" /></noscript></figure>



<figure class="wp-block-image size-post"><img decoding="async" width="740" height="925" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20740%20925'%3E%3C/svg%3E" alt="An overhead shot shows blueberry muffin batter portioned into homemade muffin cups in a muffin tin." class="wp-image-33946" data-lazy-srcset="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-08-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-08-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-08-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-08-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-08-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-08-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-08-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-08-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-08-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-08.jpg 1480w" data-lazy-sizes="(max-width: 740px) 100vw, 740px" data-lazy-src="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-08-740x925.jpg" /><noscript><img decoding="async" width="740" height="925" src="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-08-740x925.jpg" alt="An overhead shot shows blueberry muffin batter portioned into homemade muffin cups in a muffin tin." class="wp-image-33946" srcset="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-08-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-08-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-08-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-08-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-08-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-08-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-08-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-08-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-08-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-08.jpg 1480w" sizes="(max-width: 740px) 100vw, 740px" /></noscript></figure>



<figure class="wp-block-image size-post"><img decoding="async" width="740" height="925" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20740%20925'%3E%3C/svg%3E" alt="An overhead shot shows freshly baked vegan blueberry muffins in a muffin tin. The center cups of the muffin tin are filled with hot water. The tin is resting on a wire cooling rack." class="wp-image-33945" data-lazy-srcset="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-07-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-07-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-07-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-07-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-07-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-07-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-07-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-07-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-07-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-07.jpg 1480w" data-lazy-sizes="(max-width: 740px) 100vw, 740px" data-lazy-src="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-07-740x925.jpg" /><noscript><img decoding="async" width="740" height="925" src="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-07-740x925.jpg" alt="An overhead shot shows freshly baked vegan blueberry muffins in a muffin tin. The center cups of the muffin tin are filled with hot water. The tin is resting on a wire cooling rack." class="wp-image-33945" srcset="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-07-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-07-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-07-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-07-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-07-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-07-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-07-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-07-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-07-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-07.jpg 1480w" sizes="(max-width: 740px) 100vw, 740px" /></noscript></figure>



<figure class="wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-3 is-layout-flex wp-block-gallery-is-layout-flex">
<figure class="wp-block-image size-post"><img decoding="async" width="740" height="925" data-id="33942" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20740%20925'%3E%3C/svg%3E" alt="An overhead shot shows vegan blueberry muffins cooling on a wire rack. The muffins are wrapped in homemade parchment muffin liners." class="wp-image-33942" data-lazy-srcset="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-04-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-04-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-04-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-04-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-04-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-04-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-04-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-04-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-04-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-04.jpg 1480w" data-lazy-sizes="(max-width: 740px) 100vw, 740px" data-lazy-src="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-04-740x925.jpg" /><noscript><img decoding="async" width="740" height="925" data-id="33942" src="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-04-740x925.jpg" alt="An overhead shot shows vegan blueberry muffins cooling on a wire rack. The muffins are wrapped in homemade parchment muffin liners." class="wp-image-33942" srcset="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-04-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-04-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-04-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-04-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-04-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-04-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-04-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-04-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-04-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-04.jpg 1480w" sizes="(max-width: 740px) 100vw, 740px" /></noscript></figure>



<figure class="wp-block-image size-post"><img decoding="async" width="740" height="925" data-id="33943" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20740%20925'%3E%3C/svg%3E" alt="A 3/4 angle shot shows perfectly puffed up vegan blueberry muffins on a wire cooling rack. The muffins are wrapped in parchment paper liners." class="wp-image-33943" data-lazy-srcset="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-05-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-05-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-05-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-05-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-05-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-05-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-05-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-05-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-05-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-05.jpg 1480w" data-lazy-sizes="(max-width: 740px) 100vw, 740px" data-lazy-src="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-05-740x925.jpg" /><noscript><img decoding="async" width="740" height="925" data-id="33943" src="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-05-740x925.jpg" alt="A 3/4 angle shot shows perfectly puffed up vegan blueberry muffins on a wire cooling rack. The muffins are wrapped in parchment paper liners." class="wp-image-33943" srcset="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-05-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-05-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-05-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-05-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-05-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-05-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-05-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-05-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-05-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-05.jpg 1480w" sizes="(max-width: 740px) 100vw, 740px" /></noscript></figure>
</figure>



<figure class="wp-block-image size-post"><img decoding="async" width="740" height="925" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20740%20925'%3E%3C/svg%3E" alt="An overhead shot shows a split vegan blueberry muffin on a plate." class="wp-image-33940" data-lazy-srcset="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-02-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-02-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-02-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-02-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-02-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-02-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-02-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-02-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-02-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-02.jpg 1480w" data-lazy-sizes="(max-width: 740px) 100vw, 740px" data-lazy-src="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-02-740x925.jpg" /><noscript><img decoding="async" width="740" height="925" src="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-02-740x925.jpg" alt="An overhead shot shows a split vegan blueberry muffin on a plate." class="wp-image-33940" srcset="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-02-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-02-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-02-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-02-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-02-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-02-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-02-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-02-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-02-860x1076.jpg 860w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-02.jpg 1480w" sizes="(max-width: 740px) 100vw, 740px" /></noscript></figure>


<div id="recipe"></div><div id="wprm-recipe-container-33954" class="wprm-recipe-container" data-recipe-id="33954" data-servings="10"><div class="wprm-recipe wprm-recipe-template-thefirstmess-template"><div class="dmc-recipe-card-inner dmc-width-main dmc-padding-main">
    <div class="dmc-wprm-row-1">
        <div class="dmc-wprm-col-1">
            <h2 class="wprm-recipe-name wprm-block-text-normal">Soft &amp; Fluffy Vegan Blueberry Muffins with A Bit of Whole Wheat Flour</h2>
            <div class="wprm-recipe-summary wprm-block-text-normal"><span style="display: block;">These vegan blueberry muffins are soft, fluffy, and perfectly sweet with maple syrup. A touch of whole wheat flour brings a nutty flavor, along with zesty orange, a hint of warm nutmeg, and loads of fresh jammy blueberries. </span></div>
            <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><div id="wprm-recipe-user-rating-1" class="wprm-recipe-rating wprm-recipe-rating-recipe-33954 wprm-user-rating wprm-recipe-rating-inline wprm-user-rating-not-voted wprm-user-rating-allowed" data-recipe="33954" data-average="5" data-count="3" data-total="15" 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="#343434" 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="#343434" 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="#343434" 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="#343434" 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="#343434" 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="#343434" 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="#343434" 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="#343434" 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="#343434" 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="#343434" 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">5</span> from <span class="wprm-recipe-rating-count">3</span> votes</div></div>
        </div>
        <div class="dmc-wprm-col-2">
            <div class="wprm-recipe-image wprm-block-image-normal"><img decoding="async" style="border-width: 0px;border-style: solid;border-color: #666666;" width="240" height="300" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20240%20300'%3E%3C/svg%3E" class="attachment-300x300 size-300x300" alt="An overhead shot shows fluffy vegan blueberry muffins cooling on a wire rack. The muffins are in homemade parchment paper liners." data-lazy-srcset="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06.jpg 1480w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06-860x1076.jpg 860w" data-lazy-sizes="(max-width: 240px) 100vw, 240px" data-lazy-src="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06.jpg"><noscript><img decoding="async" style="border-width: 0px;border-style: solid;border-color: #666666;" width="240" height="300" src="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06.jpg" class="attachment-300x300 size-300x300" alt="An overhead shot shows fluffy vegan blueberry muffins cooling on a wire rack. The muffins are in homemade parchment paper liners." srcset="https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06.jpg 1480w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06-620x775.jpg 620w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06-940x1175.jpg 940w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06-768x960.jpg 768w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06-1229x1536.jpg 1229w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06-51x64.jpg 51w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06-102x128.jpg 102w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06-740x925.jpg 740w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06-430x538.jpg 430w, https://thefirstmess.com/wp-content/uploads/2025/03/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06-860x1076.jpg 860w" sizes="(max-width: 240px) 100vw, 240px"></noscript></div>
        </div>
    </div>
    <div class="dmc-wprm-buttons">
        <a href="https://thefirstmess.com/wprm_print/soft-fluffy-vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour" style="color: #333333;" class="wprm-recipe-print wprm-recipe-link wprm-print-recipe-shortcode wprm-block-text-normal" data-recipe-id="33954" data-template="" target="_blank" rel="nofollow">Print Recipe</a>
    </div>
    <div class="dmc-wprm-row-2">
        <div class="wprm-recipe-meta-container wprm-recipe-times-container wprm-recipe-details-container wprm-recipe-details-container-separate wprm-block-text-normal" style=""><div class="wprm-recipe-block-container wprm-recipe-block-container-separate wprm-block-text-normal wprm-recipe-time-container wprm-recipe-prep-time-container" style=""><span class="wprm-recipe-details-label wprm-block-text-normal wprm-recipe-time-label wprm-recipe-prep-time-label">Prep Time: </span><span class="wprm-recipe-time wprm-block-text-normal"><span class="wprm-recipe-details wprm-recipe-details-minutes wprm-recipe-prep_time wprm-recipe-prep_time-minutes">15<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-separate wprm-block-text-normal wprm-recipe-time-container wprm-recipe-cook-time-container" style=""><span class="wprm-recipe-details-label wprm-block-text-normal wprm-recipe-time-label wprm-recipe-cook-time-label">Cook Time: </span><span class="wprm-recipe-time wprm-block-text-normal"><span class="wprm-recipe-details wprm-recipe-details-minutes wprm-recipe-cook_time wprm-recipe-cook_time-minutes">25<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-cook_time-unit wprm-recipe-cook_timeunit-minutes" aria-hidden="true">mins</span></span></div><div class="wprm-recipe-block-container wprm-recipe-block-container-separate wprm-block-text-normal wprm-recipe-time-container wprm-recipe-total-time-container" style=""><span class="wprm-recipe-details-label wprm-block-text-normal wprm-recipe-time-label wprm-recipe-total-time-label">Total Time: </span><span class="wprm-recipe-time wprm-block-text-normal"><span class="wprm-recipe-details wprm-recipe-details-minutes wprm-recipe-total_time wprm-recipe-total_time-minutes">40<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 class="wprm-recipe-block-container wprm-recipe-block-container-separate wprm-block-text-normal wprm-recipe-servings-container" style=""><span class="wprm-recipe-details-label wprm-block-text-normal wprm-recipe-servings-label">Servings </span><span class="wprm-recipe-servings wprm-recipe-details wprm-recipe-servings-33954 wprm-recipe-servings-adjustable-tooltip wprm-block-text-normal" data-recipe="33954" aria-label="Adjust recipe servings">10</span></div>
    </div>
    <div class="dmc-wprm-row-3">
        <div class="dmc-wprm-col-1">
            <div class="wprm-recipe-ingredients-container wprm-recipe-ingredients-no-images wprm-recipe-33954-ingredients-container wprm-block-text-normal wprm-ingredient-style-regular wprm-recipe-images-before" data-recipe="33954" data-servings="10"><h3 class="wprm-recipe-header wprm-recipe-ingredients-header wprm-block-text-normal wprm-align-left wprm-header-decoration-none" style="">Ingredients</h3><div class="wprm-recipe-ingredient-group"><ul class="wprm-recipe-ingredients"><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="0"><span class="wprm-recipe-ingredient-amount">1 &frac12;</span> <span class="wprm-recipe-ingredient-unit">cups</span> <span class="wprm-recipe-ingredient-name">(179 grams) all-purpose flour</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="1"><span class="wprm-recipe-ingredient-amount">&frac12;</span> <span class="wprm-recipe-ingredient-unit">cup</span> <span class="wprm-recipe-ingredient-name">(57 grams) whole wheat flour</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="2"><span class="wprm-recipe-ingredient-amount">1 &frac12;</span> <span class="wprm-recipe-ingredient-unit">teaspoons</span> <span class="wprm-recipe-ingredient-name">baking powder</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="3"><span class="wprm-recipe-ingredient-amount">1</span> <span class="wprm-recipe-ingredient-unit">teaspoon</span> <span class="wprm-recipe-ingredient-name">baking soda</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="4"><span class="wprm-recipe-ingredient-amount">&frac12;</span> <span class="wprm-recipe-ingredient-unit">teaspoon</span> <span class="wprm-recipe-ingredient-name">fine sea salt</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="5"><span class="wprm-recipe-ingredient-amount">&frac12;</span> <span class="wprm-recipe-ingredient-unit">teaspoon</span> <span class="wprm-recipe-ingredient-name">ground nutmeg</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="6"><span class="wprm-recipe-ingredient-amount">&frac12;</span> <span class="wprm-recipe-ingredient-unit">cup</span> <span class="wprm-recipe-ingredient-name">(120 ml) maple syrup</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="7"><span class="wprm-recipe-ingredient-amount">&frac12;</span> <span class="wprm-recipe-ingredient-unit">cup</span> <span class="wprm-recipe-ingredient-name">(120 ml) unsweetened vegan yogurt </span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-normal">(see note)</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="8"><span class="wprm-recipe-ingredient-amount">6</span> <span class="wprm-recipe-ingredient-unit">tablespoons</span> <span class="wprm-recipe-ingredient-name">(90 ml) sunflower oil</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="9"><span class="wprm-recipe-ingredient-amount">&frac14;</span> <span class="wprm-recipe-ingredient-unit">cup</span> <span class="wprm-recipe-ingredient-name">(60 ml) unsweetened soy milk</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="10"><span class="wprm-recipe-ingredient-amount">2</span> <span class="wprm-recipe-ingredient-unit">teaspoons</span> <span class="wprm-recipe-ingredient-name">vanilla extract</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="11"><span class="wprm-recipe-ingredient-amount">1</span> <span class="wprm-recipe-ingredient-unit">teaspoon</span> <span class="wprm-recipe-ingredient-name">orange zest</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="12"><span class="wprm-recipe-ingredient-amount">1</span> <span class="wprm-recipe-ingredient-unit">tablespoon</span> <span class="wprm-recipe-ingredient-name">orange juice</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="13"><span class="wprm-recipe-ingredient-amount">1 &frac12;</span> <span class="wprm-recipe-ingredient-unit">cups</span> <span class="wprm-recipe-ingredient-name">(225 grams) fresh blueberries</span></li></ul></div></div>
            
            <div class="wprm-recipe-notes-container wprm-block-text-normal"><h3 class="wprm-recipe-header wprm-recipe-notes-header wprm-block-text-normal wprm-align-left wprm-header-decoration-none" style="">Notes</h3><div class="wprm-recipe-notes"><ul>
<li>I tested these muffins with a lot of different types of vegan yogurt. Overall, I recommend using one that you enjoy the taste of on its own. The ideal vegan yogurt for this is thick, unsweetened, and has a bit of tang. I found that the yogurt varieties with longer ingredient lists containing starches/added pea protein did not perform as well and contributed a strange taste overall. Here in Canada, Yoggu and Simpla are my favorite brands for baking (and eating!).</li>
<li>This recipe makes 10 good-sized muffins, leaving 2 empty muffin cups in the center of a standard muffin tin. I recently saw a creator on TikTok (wish I could remember the account!) fill the empty cups of a muffin tin with boiling water for extra puffy muffins. I can confidently say that this trick works in this recipe! Once you&rsquo;ve filled each muffin cup, pour boiling water halfway up the empty muffin cups and carefully transfer the tin to the oven.</li>
<li>I do prefer fresh blueberries in this recipe because they behave more predictably. With frozen ones, depending on what stage they&rsquo;re at with thawing (even just 10 minutes on the counter), they can &ldquo;gum up&rdquo; the batter with extra moisture.</li>
<li>Don&rsquo;t forget to lower the temperature after 5 minutes! Baking at 425<span data-slate-fragment="JTVCJTdCJTIydHlwZSUyMiUzQSUyMnBhcmFncmFwaCUyMiUyQyUyMmNoaWxkcmVuJTIyJTNBJTVCJTdCJTIydGV4dCUyMiUzQSUyMiVDMiVCMCUyMiU3RCU1RCU3RCU1RA==">&deg;</span> for those first 5 minutes helps to really puff up the tops, a trick I learned from <a href="https://sallysbakingaddiction.com/" target="_blank" rel="noopener">Sally&rsquo;s Baking Recipes</a>.</li>
</ul></div></div>
        </div>
        <div class="dmc-wprm-col-2">
            <div class="wprm-recipe-instructions-container wprm-recipe-33954-instructions-container wprm-block-text-normal" data-recipe="33954"><h3 class="wprm-recipe-header wprm-recipe-instructions-header wprm-block-text-normal wprm-align-left wprm-header-decoration-none" style="">Instructions</h3><div class="wprm-recipe-instruction-group"><ul class="wprm-recipe-instructions"><li id="wprm-recipe-33954-step-0-0" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text"><span style="display: block;">Preheat the oven to 425&deg;F. Line 10 cups of a 12-cup muffin tin with paper liners, leaving the two in the center empty.</span></div></li><li id="wprm-recipe-33954-step-0-1" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text">In a large bowl, whisk together the all-purpose flour, whole wheat flour, baking powder, baking soda, salt, and nutmeg.</div></li><li id="wprm-recipe-33954-step-0-2" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text"><span style="display: block;">In a medium bowl, combine the maple syrup, yogurt, oil, soy milk, vanilla extract, orange zest, and orange juice. Whisk vigorously to combine.</span></div></li><li id="wprm-recipe-33954-step-0-3" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text"><span style="display: block;">Pour the wet mixture into the dry mixture in the large bowl. Stir with a rubber spatula until almost fully combined. Then, add the blueberries and fold in to distribute throughout the batter. DO NOT over mix!</span></div></li><li id="wprm-recipe-33954-step-0-4" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text"><span style="display: block;">Evenly distribute the batter amongst the lined muffin cups. Pour boiling water into the empty muffin cups in the center of the tin, filling them halfway.</span></div></li><li id="wprm-recipe-33954-step-0-5" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text"><span style="display: block;">Bake the muffins at 425&deg;F for 5 minutes. Then, lower the heat to 350&deg;F and bake for an additional 18-20 minutes. The muffins are done when they have domed, golden tops and a paring knife inserted into the center of one comes out clean.</span></div></li><li id="wprm-recipe-33954-step-0-6" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text"><span style="display: block;">Cool the blueberry muffins completely on a wire rack before enjoying.</span></div></li></ul></div></div>
        </div>
    </div>
    <div class="dmc-wprm-footer">
        <div class="dmc-wprm-col-1">
            <div class="wprm-recipe-block-container wprm-recipe-block-container-inline wprm-block-text-normal wprm-recipe-author-container" style=""><span class="wprm-recipe-details-label wprm-block-text-normal wprm-recipe-author-label">Author: </span><span class="wprm-recipe-details wprm-recipe-author wprm-block-text-normal"><a href="https://thefirstmess.com/about/" target="_self">Laura Wright</a></span></div>
        </div>
        <div class="dmc-wprm-col-2">
            <div class="wprm-recipe-meta-container wprm-recipe-tags-container wprm-recipe-details-container wprm-recipe-details-container-separate wprm-block-text-normal" style=""><div class="wprm-recipe-block-container wprm-recipe-block-container-separate wprm-block-text-normal wprm-recipe-tag-container wprm-recipe-course-container" style=""><span class="wprm-recipe-details-label wprm-block-text-normal wprm-recipe-tag-label wprm-recipe-course-label">Course: </span><span class="wprm-recipe-course wprm-block-text-normal"><a href="https://thefirstmess.com/category/recipe-type/breakfast/" class="wprm-recipe-term-link">Breakfast</a>, <a href="https://thefirstmess.com/category/recipe-type/snack/" class="wprm-recipe-term-link">Snack</a></span></div><div class="wprm-recipe-block-container wprm-recipe-block-container-separate wprm-block-text-normal wprm-recipe-tag-container wprm-recipe-cuisine-container" style=""><span class="wprm-recipe-details-label wprm-block-text-normal wprm-recipe-tag-label wprm-recipe-cuisine-label">Cuisine: </span><span class="wprm-recipe-cuisine wprm-block-text-normal">American</span></div><div class="wprm-recipe-block-container wprm-recipe-block-container-separate wprm-block-text-normal wprm-recipe-tag-container wprm-recipe-suitablefordiet-container" style=""><span class="wprm-recipe-details-label wprm-block-text-normal wprm-recipe-tag-label wprm-recipe-suitablefordiet-label">Diet: </span><span class="wprm-recipe-suitablefordiet wprm-block-text-normal"><a href="https://thefirstmess.com/category/dietary/vegan/" class="wprm-recipe-term-link">Vegan</a></span></div><div class="wprm-recipe-block-container wprm-recipe-block-container-separate wprm-block-text-normal wprm-recipe-tag-container wprm-recipe-keyword-container" style=""><span class="wprm-recipe-details-label wprm-block-text-normal wprm-recipe-tag-label wprm-recipe-keyword-label">Keyword: </span><span class="wprm-recipe-keyword wprm-block-text-normal">all purpose flour, blueberries, dairy-free yogurt, fall, maple syrup, muffin tin, muffins, nutmeg, orange, salt, soy milk, spring, summer, sunflower oil, vanilla extract, vegan yogurt, whole wheat flour, winter</span></div></div>
        </div>
    </div>
</div></div></div><script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"rayId":"93e7394feafbeb1e","version":"2025.4.0-1-g37f21b1","serverTiming":{"name":{"cfExtPri":true,"cfL4":true,"cfSpeedBrain":true,"cfCacheStatus":true}},"token":"0b76b5f4e0f349ecb0579776e4f33faa","b":1}' crossorigin="anonymous"></script>
</body></html>
</div>
                    </div>
                    <div class="dmc-single-post-pre-footer">
                        <div class="data-date-holder">
                            <span class="data-date">12/03/2025</span>
			                                        </div>
		                                            <div class="data-post-terms">
                                <span class="label">Posted in: </span>
				                                                    <a class="term" href="https://thefirstmess.com/category/season/autumn/">autumn</a>, 					                                                    <a class="term" href="https://thefirstmess.com/category/recipe-type/breakfast/">breakfast</a>, 					                                                    <a class="term" href="https://thefirstmess.com/category/dietary/nut-free/">nut free</a>, 					                                                    <a class="term" href="https://thefirstmess.com/category/recipe-type/snack/">snack</a>, 					                                                    <a class="term" href="https://thefirstmess.com/category/season/spring/">spring</a>, 					                                                    <a class="term" href="https://thefirstmess.com/category/season/summer/">summer</a>, 					                                                    <a class="term" href="https://thefirstmess.com/category/flavor/sweet/">sweet</a>, 					                                                    <a class="term" href="https://thefirstmess.com/category/dietary/vegan/">vegan</a>, 					                                                    <a class="term" href="https://thefirstmess.com/category/season/winter/">winter</a>					                                            </div>
			                <section id="dmc-comments">
    
	
		<div class="dmc-comments-nav">
		
                            <h2>9 comments</h2>
	                    </div>
	
	
	
	<div class="dmc-comments-wrapper">
		 <div class="wprm-user-rating-summary">
	<div class="wprm-user-rating-summary-stars"><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 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-2-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-2-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><div id="wprm-recipe-user-rating-2" class="wprm-recipe-rating wprm-recipe-rating-recipe-summary wprm-user-rating"><span class="wprm-rating-star wprm-rating-star-1 wprm-rating-star-full" data-rating="1" data-color="#343434" style="font-size: 18px;"><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="#343434" 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="#343434" style="font-size: 18px;"><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="#343434" 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="#343434" style="font-size: 18px;"><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="#343434" 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="#343434" style="font-size: 18px;"><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="#343434" 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="#343434" style="font-size: 18px;"><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="#343434" 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>
	<div class="wprm-user-rating-summary-details">
	5 from 3 votes	</div>
 </div>
	<div id="respond" class="comment-respond">
		<h3 id="reply-title" class="comment-reply-title"> <small><a rel="nofollow" id="cancel-comment-reply-link" href="/2025/03/12/soft-fluffy-vegan-blueberry-muffins-bit-of-whole-wheat-flour/#respond" style="display:none;">Cancel reply</a></small></h3><form action="https://thefirstmess.com/wp-comments-post.php" method="post" id="commentform" class="comment-form"><p class="comment-form-comment"><textarea id="comment" name="comment" placeholder="Comment*" aria-required="true" required="required"></textarea></p><div class="comment-form-wprm-rating">
	<label for="wprm-comment-rating-2832826571">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: -21px !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="106.66666666667px" height="16px" viewBox="0 0 160 32">
  <defs>
    <polygon class="wprm-star-empty" id="wprm-star-empty-0" fill="none" stroke="#343434" 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="4" y="4" />
	<use xlink:href="#wprm-star-empty-0" x="36" y="4" />
	<use xlink:href="#wprm-star-empty-0" x="68" y="4" />
	<use xlink:href="#wprm-star-empty-0" x="100" y="4" />
	<use xlink:href="#wprm-star-empty-0" x="132" y="4" />
</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="106.66666666667px" height="16px" viewBox="0 0 160 32">
  <defs>
	<polygon class="wprm-star-empty" id="wprm-star-empty-1" fill="none" stroke="#343434" 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="#343434" 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="4" y="4" />
	<use xlink:href="#wprm-star-empty-1" x="36" y="4" />
	<use xlink:href="#wprm-star-empty-1" x="68" y="4" />
	<use xlink:href="#wprm-star-empty-1" x="100" y="4" />
	<use xlink:href="#wprm-star-empty-1" x="132" y="4" />
</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="106.66666666667px" height="16px" viewBox="0 0 160 32">
  <defs>
	<polygon class="wprm-star-empty" id="wprm-star-empty-2" fill="none" stroke="#343434" 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="#343434" 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="4" y="4" />
	<use xlink:href="#wprm-star-full-2" x="36" y="4" />
	<use xlink:href="#wprm-star-empty-2" x="68" y="4" />
	<use xlink:href="#wprm-star-empty-2" x="100" y="4" />
	<use xlink:href="#wprm-star-empty-2" x="132" y="4" />
</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="106.66666666667px" height="16px" viewBox="0 0 160 32">
  <defs>
	<polygon class="wprm-star-empty" id="wprm-star-empty-3" fill="none" stroke="#343434" 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="#343434" 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="4" y="4" />
	<use xlink:href="#wprm-star-full-3" x="36" y="4" />
	<use xlink:href="#wprm-star-full-3" x="68" y="4" />
	<use xlink:href="#wprm-star-empty-3" x="100" y="4" />
	<use xlink:href="#wprm-star-empty-3" x="132" y="4" />
</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="106.66666666667px" height="16px" viewBox="0 0 160 32">
  <defs>
	<polygon class="wprm-star-empty" id="wprm-star-empty-4" fill="none" stroke="#343434" 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="#343434" 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="4" y="4" />
	<use xlink:href="#wprm-star-full-4" x="36" y="4" />
	<use xlink:href="#wprm-star-full-4" x="68" y="4" />
	<use xlink:href="#wprm-star-full-4" x="100" y="4" />
	<use xlink:href="#wprm-star-empty-4" x="132" y="4" />
</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-2832826571" 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="106.66666666667px" height="16px" viewBox="0 0 160 32">
  <defs>
	<path class="wprm-star-full" id="wprm-star-full-5" fill="#343434" 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="4" y="4" />
	<use xlink:href="#wprm-star-full-5" x="36" y="4" />
	<use xlink:href="#wprm-star-full-5" x="68" y="4" />
	<use xlink:href="#wprm-star-full-5" x="100" y="4" />
	<use xlink:href="#wprm-star-full-5" x="132" y="4" />
</svg></span>		</fieldset>
	</span>
</div>
<div class="comment-form-input-wrapper"><p class="comment-form-filed comment-form-author"><input id="author" name="author" type="text" placeholder="Name*" value=""  /></p>
<p class="comment-form-filed comment-form-email"><input id="email" name="email" type="email" placeholder="Email*" value="" /></p></div>
<p class="comment-form-comment-subscribe"><input id="fdcr_subscribe_to_comment" name="fdcr_subscribe_to_comment" type="checkbox" value="on" checked><label for="fdcr_subscribe_to_comment">Notify me if there is a reply to my comment</label></p>
	<script type="rocketlazyloadscript">document.addEventListener("DOMContentLoaded", function() { setTimeout(function(){ var e=document.getElementById("cf-turnstile-c-3550566246"); e&&!e.innerHTML.trim()&&(turnstile.remove("#cf-turnstile-c-3550566246"), turnstile.render("#cf-turnstile-c-3550566246", {sitekey:"0x4AAAAAAA1J0AIrmA7vzo0V"})); }, 0); });</script>
	<p class="form-submit"><span id="cf-turnstile-c-3550566246" class="cf-turnstile cf-turnstile-comments" data-action="wordpress-comment" data-callback="" data-sitekey="0x4AAAAAAA1J0AIrmA7vzo0V" data-theme="light" data-language="auto" data-appearance="interaction-only" data-size="normal" data-retry="auto" data-retry-interval="1000"></span><br class="cf-turnstile-br cf-turnstile-br-comments"><div class="dmc-button-wrap"><input name="submit" type="submit" id="submit" class="submit" value="Submit" /></div><script type="rocketlazyloadscript" data-rocket-type="text/javascript">document.addEventListener("DOMContentLoaded", function() { document.body.addEventListener("click", function(event) { if (event.target.matches(".comment-reply-link, #cancel-comment-reply-link")) { turnstile.reset(".comment-form .cf-turnstile"); } }); });</script> <input type='hidden' name='comment_post_ID' value='33956' 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="b9fe440cb0" /></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="25"/><script type="rocketlazyloadscript">document.getElementById( "ak_js_1" ).setAttribute( "value", ( new Date() ).getTime() );</script></p></form>	</div><!-- #respond -->
	            <ul id="comments" class="comment-list">
                    <li id="comment-746259" class="comment">
        <article id="div-comment-746259">
            <header class="data-comment-author">
                <span class="comment-author">Mary Anne</span>
                <time class="data-comment-date" datetime="16/03/2025">16/03/2025</time>
            </header>
            <div class="data-comment-content"><p>Showed a picture to the daughter and granddaughter who are out of town. They asked me to freeze the leftovers for them to try. Do these freeze ok?</p>
</div>
            <div class="dmc-reply-wrapper">
		        <span class="dmc-reply-link"><a rel="nofollow" class="comment-reply-link" href="#comment-746259" data-commentid="746259" data-postid="33956" data-belowelement="comment-746259" data-respondelement="respond" data-replyto="Reply to Mary Anne" aria-label="Reply to Mary Anne">Reply</a></span>            </div>
        </article>
    </li>
    <ul class="children">
    <li id="comment-746263" class="comment">
        <article id="div-comment-746263">
            <header class="data-comment-author">
                <span class="comment-author">Laura Wright</span>
                <time class="data-comment-date" datetime="17/03/2025">17/03/2025</time>
            </header>
            <div class="data-comment-content"><p>Yes they do! I just drop them into a resealable bag. They are good in the freezer for up to 6 months.<br />
-L</p>
</div>
            <div class="dmc-reply-wrapper">
		        <span class="dmc-reply-link"><a rel="nofollow" class="comment-reply-link" href="#comment-746263" data-commentid="746263" data-postid="33956" data-belowelement="comment-746263" data-respondelement="respond" data-replyto="Reply to Laura Wright" aria-label="Reply to Laura Wright">Reply</a></span>            </div>
        </article>
    </li>
    </li><!-- #comment-## -->
</ul><!-- .children -->
</li><!-- #comment-## -->
    <li id="comment-746257" class="comment">
        <article id="div-comment-746257">
            <header class="data-comment-author">
                <span class="comment-author">Mary Anne</span>
                <time class="data-comment-date" datetime="16/03/2025">16/03/2025</time>
            </header>
            <div class="data-comment-content"><p><img class="wprm-comment-rating" src="data:image/gif;base64,R0lGODdhAQABAPAAAP///wAAACwAAAAAAQABAEACAkQBADs=" data-lazy-src="https://thefirstmess.com/wp-content/plugins/wp-recipe-maker/assets/icons/rating/stars-5.svg" alt="5 stars" width="80" height="16" /><br />
Just made these and boy are they yummy!! I&#8217;ve always used applesauce to substitute for eggs. But this worked well. Thank you!</p>
</div>
            <div class="dmc-reply-wrapper">
		        <span class="dmc-reply-link"><a rel="nofollow" class="comment-reply-link" href="#comment-746257" data-commentid="746257" data-postid="33956" data-belowelement="comment-746257" data-respondelement="respond" data-replyto="Reply to Mary Anne" aria-label="Reply to Mary Anne">Reply</a></span>            </div>
        </article>
    </li>
    <ul class="children">
    <li id="comment-746271" class="comment">
        <article id="div-comment-746271">
            <header class="data-comment-author">
                <span class="comment-author">Laura Wright</span>
                <time class="data-comment-date" datetime="17/03/2025">17/03/2025</time>
            </header>
            <div class="data-comment-content"><p>Great to hear Mary Anne! Thanks for taking the time to leave this review! :)<br />
-L</p>
</div>
            <div class="dmc-reply-wrapper">
		        <span class="dmc-reply-link"><a rel="nofollow" class="comment-reply-link" href="#comment-746271" data-commentid="746271" data-postid="33956" data-belowelement="comment-746271" data-respondelement="respond" data-replyto="Reply to Laura Wright" aria-label="Reply to Laura Wright">Reply</a></span>            </div>
        </article>
    </li>
    </li><!-- #comment-## -->
</ul><!-- .children -->
</li><!-- #comment-## -->
    <li id="comment-746256" class="comment">
        <article id="div-comment-746256">
            <header class="data-comment-author">
                <span class="comment-author">Kate S</span>
                <time class="data-comment-date" datetime="16/03/2025">16/03/2025</time>
            </header>
            <div class="data-comment-content"><p><img class="wprm-comment-rating" src="data:image/gif;base64,R0lGODdhAQABAPAAAP///wAAACwAAAAAAQABAEACAkQBADs=" data-lazy-src="https://thefirstmess.com/wp-content/plugins/wp-recipe-maker/assets/icons/rating/stars-5.svg" alt="5 stars" width="80" height="16" /><br />
These muffins were so perfect. Incredibly fluffy and sweet but crusty on the top. Absolutely delicious!!!</p>
</div>
            <div class="dmc-reply-wrapper">
		        <span class="dmc-reply-link"><a rel="nofollow" class="comment-reply-link" href="#comment-746256" data-commentid="746256" data-postid="33956" data-belowelement="comment-746256" data-respondelement="respond" data-replyto="Reply to Kate S" aria-label="Reply to Kate S">Reply</a></span>            </div>
        </article>
    </li>
    <ul class="children">
    <li id="comment-746270" class="comment">
        <article id="div-comment-746270">
            <header class="data-comment-author">
                <span class="comment-author">Laura Wright</span>
                <time class="data-comment-date" datetime="17/03/2025">17/03/2025</time>
            </header>
            <div class="data-comment-content"><p>Thanks for this kind review, Kate! I&#8217;m glad you enjoyed them.<br />
-L</p>
</div>
            <div class="dmc-reply-wrapper">
		        <span class="dmc-reply-link"><a rel="nofollow" class="comment-reply-link" href="#comment-746270" data-commentid="746270" data-postid="33956" data-belowelement="comment-746270" data-respondelement="respond" data-replyto="Reply to Laura Wright" aria-label="Reply to Laura Wright">Reply</a></span>            </div>
        </article>
    </li>
    </li><!-- #comment-## -->
</ul><!-- .children -->
</li><!-- #comment-## -->
    <li id="comment-746249" class="comment">
        <article id="div-comment-746249">
            <header class="data-comment-author">
                <span class="comment-author">Dana</span>
                <time class="data-comment-date" datetime="14/03/2025">14/03/2025</time>
            </header>
            <div class="data-comment-content"><p><img class="wprm-comment-rating" src="data:image/gif;base64,R0lGODdhAQABAPAAAP///wAAACwAAAAAAQABAEACAkQBADs=" data-lazy-src="https://thefirstmess.com/wp-content/plugins/wp-recipe-maker/assets/icons/rating/stars-5.svg" alt="5 stars" width="80" height="16" /><br />
These were quick to throw together and so delicious. Used frozen blueberries that we picked last summer, and lemon instead of orange because that&#8217;s what I had. Only complaint is how quickly they were gobbled up. Next time I&#8217;d make a double batch. Thanks Laura.</p>
</div>
            <div class="dmc-reply-wrapper">
		        <span class="dmc-reply-link"><a rel="nofollow" class="comment-reply-link" href="#comment-746249" data-commentid="746249" data-postid="33956" data-belowelement="comment-746249" data-respondelement="respond" data-replyto="Reply to Dana" aria-label="Reply to Dana">Reply</a></span>            </div>
        </article>
    </li>
    <ul class="children">
    <li id="comment-746265" class="comment">
        <article id="div-comment-746265">
            <header class="data-comment-author">
                <span class="comment-author">Laura Wright</span>
                <time class="data-comment-date" datetime="17/03/2025">17/03/2025</time>
            </header>
            <div class="data-comment-content"><p>So glad to hear that you enjoyed the muffins, Dana! And how wonderful to use berries you had picked yourself :)<br />
-L</p>
</div>
            <div class="dmc-reply-wrapper">
		        <span class="dmc-reply-link"><a rel="nofollow" class="comment-reply-link" href="#comment-746265" data-commentid="746265" data-postid="33956" data-belowelement="comment-746265" data-respondelement="respond" data-replyto="Reply to Laura Wright" aria-label="Reply to Laura Wright">Reply</a></span>            </div>
        </article>
    </li>
    </li><!-- #comment-## -->
</ul><!-- .children -->
</li><!-- #comment-## -->
    <li id="comment-746248" class="comment">
        <article id="div-comment-746248">
            <header class="data-comment-author">
                <span class="comment-author">Elizabeth</span>
                <time class="data-comment-date" datetime="12/03/2025">12/03/2025</time>
            </header>
            <div class="data-comment-content"><p>Beautiful muffins!  They&#8217;re going to be my weekend baking project.  I can&#8217;t wait to try them.</p>
</div>
            <div class="dmc-reply-wrapper">
		        <span class="dmc-reply-link"><a rel="nofollow" class="comment-reply-link" href="#comment-746248" data-commentid="746248" data-postid="33956" data-belowelement="comment-746248" data-respondelement="respond" data-replyto="Reply to Elizabeth" aria-label="Reply to Elizabeth">Reply</a></span>            </div>
        </article>
    </li>
    </li><!-- #comment-## -->
            </ul>
		
		
		<div class="comment-nav">										   
			<div class="comment-nav-previous"></div>
			<div class="comment-nav-next"></div>
		</div>	
		
		
            	</div>
</section>                    </div>
                </div>
                <div class="dmc-pwsb-sidebar-holder">
			        <aside id="sidebar">
    <div id="dmc-widget-about-2" class="widget widget_dmc-widget-about">			<div class="dmc-image-holder">
				    <picture class="dmc-image-picture">
		<source srcset="https://thefirstmess.com/wp-content/uploads/fly-images/22606/tfm-footer-about-300x414-c.jpg, https://thefirstmess.com/wp-content/uploads/fly-images/22606/tfm-footer-about-600x828-c.jpg 2x"><img data-no-lazy="" fetchpriority="high" width="300" height="414" src="https://thefirstmess.com/wp-content/uploads/2022/09/tfm-footer-about-620x855.jpg" class="attachment-300x414 size-300x414" alt="" decoding="async" srcset="https://thefirstmess.com/wp-content/uploads/2022/09/tfm-footer-about-620x855.jpg 620w, https://thefirstmess.com/wp-content/uploads/2022/09/tfm-footer-about-940x1296.jpg 940w, https://thefirstmess.com/wp-content/uploads/2022/09/tfm-footer-about-768x1059.jpg 768w, https://thefirstmess.com/wp-content/uploads/2022/09/tfm-footer-about-1114x1536.jpg 1114w, https://thefirstmess.com/wp-content/uploads/2022/09/tfm-footer-about-46x64.jpg 46w, https://thefirstmess.com/wp-content/uploads/2022/09/tfm-footer-about-93x128.jpg 93w, https://thefirstmess.com/wp-content/uploads/2022/09/tfm-footer-about-740x1020.jpg 740w, https://thefirstmess.com/wp-content/uploads/2022/09/tfm-footer-about.jpg 1294w" sizes="(max-width: 300px) 100vw, 300px" />    </picture>
				</div>
						<h3 class="widget-title">About Laura</h3>
						<div class="widget-description f-text-default">I'm a vegan cookbook author, recipe developer, and a food blogger for over 10 years. Here, you'll find seasonal vegan recipes, wholesome meals, and plenty of feel-good inspiration for a compassionate lifestyle. My hope is to always inspire and encourage anyone, at any level, to try plant-based cooking at home.</div>
				    <div class="dmc-button-wrap style-long-big and-short">
            <a target="_self" class="dmc-button" href="/about/">Read More</a>
        </div>
	    </div></aside>                </div>
            </div>
            <div class="dmc-single-post-footer">
                                    <section class="dmc-single-post-related-section">
                        <div class="section-inner">
                            <h2 class="section-title">Similar Recipes</h2>
			                <div class="dmc-posts-feed dmc-feed-related"><div class="posts-wrapper dmc-feed-3-cols"><article class="dmc-single-post content-card-3-col">
    <div class="dmc-single-post-inner">
        <a href="https://thefirstmess.com/2013/09/19/banana-bread-granola-bars/" class="dmc-image-link-wrapper">
		                <div class="dmc-image-holder featured-media media-image size-3-column">
                                <img width="356" height="540" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20356%20540'%3E%3C/svg%3E" class="attachment-3-column size-3-column wp-post-image" alt="" decoding="async" data-lazy-srcset="https://thefirstmess.com/wp-content/uploads/2013/09/GBAR_FINAL3-356x540.jpg 356w, https://thefirstmess.com/wp-content/uploads/2013/09/GBAR_FINAL3-43x64.jpg 43w, https://thefirstmess.com/wp-content/uploads/2013/09/GBAR_FINAL3-85x128.jpg 85w, https://thefirstmess.com/wp-content/uploads/2013/09/GBAR_FINAL3-712x1080.jpg 712w, https://thefirstmess.com/wp-content/uploads/2013/09/GBAR_FINAL3-400x606.jpg 400w, https://thefirstmess.com/wp-content/uploads/2013/09/GBAR_FINAL3-800x1212.jpg 800w, https://thefirstmess.com/wp-content/uploads/2013/09/GBAR_FINAL3-350x532.jpg 350w, https://thefirstmess.com/wp-content/uploads/2013/09/GBAR_FINAL3-700x1064.jpg 700w, https://thefirstmess.com/wp-content/uploads/2013/09/GBAR_FINAL3-146x220.jpg 146w" data-lazy-sizes="(max-width: 356px) 100vw, 356px" data-lazy-src="https://thefirstmess.com/wp-content/uploads/2013/09/GBAR_FINAL3-356x540.jpg" /><noscript><img width="356" height="540" src="https://thefirstmess.com/wp-content/uploads/2013/09/GBAR_FINAL3-356x540.jpg" class="attachment-3-column size-3-column wp-post-image" alt="" decoding="async" srcset="https://thefirstmess.com/wp-content/uploads/2013/09/GBAR_FINAL3-356x540.jpg 356w, https://thefirstmess.com/wp-content/uploads/2013/09/GBAR_FINAL3-43x64.jpg 43w, https://thefirstmess.com/wp-content/uploads/2013/09/GBAR_FINAL3-85x128.jpg 85w, https://thefirstmess.com/wp-content/uploads/2013/09/GBAR_FINAL3-712x1080.jpg 712w, https://thefirstmess.com/wp-content/uploads/2013/09/GBAR_FINAL3-400x606.jpg 400w, https://thefirstmess.com/wp-content/uploads/2013/09/GBAR_FINAL3-800x1212.jpg 800w, https://thefirstmess.com/wp-content/uploads/2013/09/GBAR_FINAL3-350x532.jpg 350w, https://thefirstmess.com/wp-content/uploads/2013/09/GBAR_FINAL3-700x1064.jpg 700w, https://thefirstmess.com/wp-content/uploads/2013/09/GBAR_FINAL3-146x220.jpg 146w" sizes="(max-width: 356px) 100vw, 356px" /></noscript>            </div>
                    </a>
        <div class="data-title-holder">
            <h3 class="data-title"><a href="https://thefirstmess.com/2013/09/19/banana-bread-granola-bars/">Banana Bread Granola Bars</a></h3>
        </div>
    </div>
</article><article class="dmc-single-post content-card-3-col">
    <div class="dmc-single-post-inner">
        <a href="https://thefirstmess.com/2025/04/02/air-fryer-edamame-crispy/" class="dmc-image-link-wrapper">
		                <div class="dmc-image-holder featured-media media-image size-3-column">
                                <img width="356" height="540" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20356%20540'%3E%3C/svg%3E" class="attachment-3-column size-3-column wp-post-image" alt="An overhead shot shows a shallow dish lined with paper, filled with air fryer crispy edamame. The edamame are lightly browned and a small bowl of flaky salt is seen to the side." decoding="async" data-lazy-srcset="https://thefirstmess.com/wp-content/uploads/2025/04/air-fryer-edamame-crispy0chewy-1-356x540.jpg 356w, https://thefirstmess.com/wp-content/uploads/2025/04/air-fryer-edamame-crispy0chewy-1-712x1080.jpg 712w, https://thefirstmess.com/wp-content/uploads/2025/04/air-fryer-edamame-crispy0chewy-1-400x606.jpg 400w, https://thefirstmess.com/wp-content/uploads/2025/04/air-fryer-edamame-crispy0chewy-1-800x1212.jpg 800w, https://thefirstmess.com/wp-content/uploads/2025/04/air-fryer-edamame-crispy0chewy-1-350x532.jpg 350w, https://thefirstmess.com/wp-content/uploads/2025/04/air-fryer-edamame-crispy0chewy-1-700x1064.jpg 700w, https://thefirstmess.com/wp-content/uploads/2025/04/air-fryer-edamame-crispy0chewy-1-146x220.jpg 146w" data-lazy-sizes="(max-width: 356px) 100vw, 356px" data-lazy-src="https://thefirstmess.com/wp-content/uploads/2025/04/air-fryer-edamame-crispy0chewy-1-356x540.jpg" /><noscript><img width="356" height="540" src="https://thefirstmess.com/wp-content/uploads/2025/04/air-fryer-edamame-crispy0chewy-1-356x540.jpg" class="attachment-3-column size-3-column wp-post-image" alt="An overhead shot shows a shallow dish lined with paper, filled with air fryer crispy edamame. The edamame are lightly browned and a small bowl of flaky salt is seen to the side." decoding="async" srcset="https://thefirstmess.com/wp-content/uploads/2025/04/air-fryer-edamame-crispy0chewy-1-356x540.jpg 356w, https://thefirstmess.com/wp-content/uploads/2025/04/air-fryer-edamame-crispy0chewy-1-712x1080.jpg 712w, https://thefirstmess.com/wp-content/uploads/2025/04/air-fryer-edamame-crispy0chewy-1-400x606.jpg 400w, https://thefirstmess.com/wp-content/uploads/2025/04/air-fryer-edamame-crispy0chewy-1-800x1212.jpg 800w, https://thefirstmess.com/wp-content/uploads/2025/04/air-fryer-edamame-crispy0chewy-1-350x532.jpg 350w, https://thefirstmess.com/wp-content/uploads/2025/04/air-fryer-edamame-crispy0chewy-1-700x1064.jpg 700w, https://thefirstmess.com/wp-content/uploads/2025/04/air-fryer-edamame-crispy0chewy-1-146x220.jpg 146w" sizes="(max-width: 356px) 100vw, 356px" /></noscript>            </div>
                    </a>
        <div class="data-title-holder">
            <h3 class="data-title"><a href="https://thefirstmess.com/2025/04/02/air-fryer-edamame-crispy/">Crispy &amp; Chewy Air Fryer Edamame</a></h3>
        </div>
    </div>
</article><article class="dmc-single-post content-card-3-col">
    <div class="dmc-single-post-inner">
        <a href="https://thefirstmess.com/2024/06/12/tender-grilled-eggplant-slices-barbecue-sauce/" class="dmc-image-link-wrapper">
		                <div class="dmc-image-holder featured-media media-image size-3-column">
                                <img width="356" height="540" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20356%20540'%3E%3C/svg%3E" class="attachment-3-column size-3-column wp-post-image" alt="An overhead shot shows grilled eggplant slices brushed with barbecue sauce on an oval platter. The slices are garnished with chopped herbs." decoding="async" data-lazy-srcset="https://thefirstmess.com/wp-content/uploads/2024/06/tender-grilled-eggplant-barbecue-sauce-03-356x540.jpg 356w, https://thefirstmess.com/wp-content/uploads/2024/06/tender-grilled-eggplant-barbecue-sauce-03-712x1080.jpg 712w, https://thefirstmess.com/wp-content/uploads/2024/06/tender-grilled-eggplant-barbecue-sauce-03-400x606.jpg 400w, https://thefirstmess.com/wp-content/uploads/2024/06/tender-grilled-eggplant-barbecue-sauce-03-800x1212.jpg 800w, https://thefirstmess.com/wp-content/uploads/2024/06/tender-grilled-eggplant-barbecue-sauce-03-350x532.jpg 350w, https://thefirstmess.com/wp-content/uploads/2024/06/tender-grilled-eggplant-barbecue-sauce-03-700x1064.jpg 700w, https://thefirstmess.com/wp-content/uploads/2024/06/tender-grilled-eggplant-barbecue-sauce-03-146x220.jpg 146w" data-lazy-sizes="(max-width: 356px) 100vw, 356px" data-lazy-src="https://thefirstmess.com/wp-content/uploads/2024/06/tender-grilled-eggplant-barbecue-sauce-03-356x540.jpg" /><noscript><img width="356" height="540" src="https://thefirstmess.com/wp-content/uploads/2024/06/tender-grilled-eggplant-barbecue-sauce-03-356x540.jpg" class="attachment-3-column size-3-column wp-post-image" alt="An overhead shot shows grilled eggplant slices brushed with barbecue sauce on an oval platter. The slices are garnished with chopped herbs." decoding="async" srcset="https://thefirstmess.com/wp-content/uploads/2024/06/tender-grilled-eggplant-barbecue-sauce-03-356x540.jpg 356w, https://thefirstmess.com/wp-content/uploads/2024/06/tender-grilled-eggplant-barbecue-sauce-03-712x1080.jpg 712w, https://thefirstmess.com/wp-content/uploads/2024/06/tender-grilled-eggplant-barbecue-sauce-03-400x606.jpg 400w, https://thefirstmess.com/wp-content/uploads/2024/06/tender-grilled-eggplant-barbecue-sauce-03-800x1212.jpg 800w, https://thefirstmess.com/wp-content/uploads/2024/06/tender-grilled-eggplant-barbecue-sauce-03-350x532.jpg 350w, https://thefirstmess.com/wp-content/uploads/2024/06/tender-grilled-eggplant-barbecue-sauce-03-700x1064.jpg 700w, https://thefirstmess.com/wp-content/uploads/2024/06/tender-grilled-eggplant-barbecue-sauce-03-146x220.jpg 146w" sizes="(max-width: 356px) 100vw, 356px" /></noscript>            </div>
                    </a>
        <div class="data-title-holder">
            <h3 class="data-title"><a href="https://thefirstmess.com/2024/06/12/tender-grilled-eggplant-slices-barbecue-sauce/">Tender Grilled Eggplant Slices with Barbecue Sauce</a></h3>
        </div>
    </div>
</article></div></div>                        </div>
                    </section>
	                                <div class="posts-nav">
		                                <div class="post-nav-holder prev-holder">
	                                                <a class="next-prev-links prev-link" href="https://thefirstmess.com/2025/03/05/roasted-sweet-potato-salad-warm-olive-chickpea-dressing/">« Roasted Sweet Potato Salad with Warm Olive &amp; Chickpea "Dressing (Vegan)</a>
		                                        </div>
                    <div class="separator"></div>
                    <div class="post-nav-holder next-holder">
	                                                <a class="next-prev-links next-link" href="https://thefirstmess.com/2025/03/26/green-orzo-risotto-vegan/">Spring Green Orzo "Risotto" (Vegan) »</a>
		                                        </div>
                </div>
            </div>
        </div>
    </article>
</div>			        </div>
    </div>
<footer id="dmc-main-footer" role="contentinfo" itemscope itemtype="https://schema.org/WPFooter">
    <div class="dmc-main-footer-inner">
                <div class="dmc-footer-row-2">
            <div class="dmc-footer-row-inner dmc-width-main dmc-padding-main">
                <div class="footer-row-2-1">
                    <div class="dmc-col-1">
                        <div class="footer-logo-holder">
                                <picture class="dmc-image-picture type-fluid">
		<source media="(min-width: 768px)" srcset="https://thefirstmess.com/wp-content/uploads/fly-images/22607/the-first-mess-footer-logo-98x0.png, https://thefirstmess.com/wp-content/uploads/fly-images/22607/the-first-mess-footer-logo-196x0.png 2x"><source srcset="https://thefirstmess.com/wp-content/uploads/fly-images/22607/the-first-mess-footer-logo-60x0.png, https://thefirstmess.com/wp-content/uploads/fly-images/22607/the-first-mess-footer-logo-120x0.png 2x"><img width="60" height="74" src="https://thefirstmess.com/wp-content/uploads/2022/09/the-first-mess-footer-logo-104x128.png" class="attachment-60x0 size-60x0" alt="" decoding="async" srcset="https://thefirstmess.com/wp-content/uploads/2022/09/the-first-mess-footer-logo-104x128.png 104w, https://thefirstmess.com/wp-content/uploads/2022/09/the-first-mess-footer-logo-52x64.png 52w, https://thefirstmess.com/wp-content/uploads/2022/09/the-first-mess-footer-logo.png 195w" sizes="(max-width: 60px) 100vw, 60px" />    </picture>
	                        </div>
                    </div>
                    <div class="dmc-col-2">
                        <div class="dmc-newsletter-wrapper">
                            <div class="dmc-newsletter-form">
                                <script data-minify="1" async src="https://thefirstmess.com/wp-content/cache/min/1/form/b0ec9660-3b96-11ed-9a32-0241b9615763.js?ver=1746733120" data-form="b0ec9660-3b96-11ed-9a32-0241b9615763"></script>
                            </div>
                        </div>
                    </div>
                </div>
                <div class="footer-row-2-2">
                    <div class="dmc-col dmc-col-1">
	                        <div class="dmc-menu-wrapper">
        <nav class="dmc-menu dmc-menu-footer-menu-1" role="navigation" aria-label="Footer Menu 1"><div class="menu-footer-menu-1-container"><ul id="menu-footer-menu-1" class="menu"><li id="menu-item-22667" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-22667"><a href="https://thefirstmess.com/about/">About</a></li>
<li id="menu-item-22668" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-22668"><a target="_blank" href="mailto:laura@thefirstmess.com">Contact</a></li>
<li id="menu-item-22669" class="menu-item menu-item-type-post_type menu-item-object-cookbook menu-item-22669"><a href="https://thefirstmess.com/cookbook/the-first-mess-cookbook/">My Cookbook</a></li>
</ul></div></nav>    </div>
                        </div>
                    <div class="dmc-col dmc-col-2">
		                    <div class="dmc-menu-wrapper">
        <nav class="dmc-menu dmc-menu-footer-menu-2" role="navigation" aria-label="Footer Menu 2"><div class="menu-footer-menu-2-container"><ul id="menu-footer-menu-2" class="menu"><li id="menu-item-22671" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-22671"><a href="https://thefirstmess.com/recipes/">Recipe Search</a></li>
<li id="menu-item-32719" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-32719"><a href="https://thefirstmess.com/editorial-guidelines/">Editorial Guidelines</a></li>
<li id="menu-item-22672" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-22672"><a href="https://thefirstmess.com/privacy-policy/">Privacy Policy</a></li>
</ul></div></nav>    </div>
                        </div>
                    <div class="dmc-col dmc-col-3">
		                    <div class="dmc-menu-wrapper">
        <nav class="dmc-menu dmc-menu-footer-menu-3" role="navigation" aria-label="Footer Menu 3"><div class="menu-footer-menu-3-container"><ul id="menu-footer-menu-4" class="menu"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-22673"><a target="_blank" href="https://www.pinterest.ca/thefirstmess/">Pinterest</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-22674"><a href="https://www.instagram.com/thefirstmess/">Instagram</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-22675"><a href="https://www.facebook.com/thefirstmess">Facebook</a></li>
</ul></div></nav>    </div>
                        </div>
                </div>
                <div class="footer-row-2-3">
                    <div class="dmc-copyright-wrapper">
		                            <div class="dmc-copyright"><p>© Copyright 2025 The First Mess</p>
<p>site by <a href="https://katelyngambler.com/" target="_blank" rel="nofollow noopener">Katelyn Gambler</a></p>
<p>support by <a href="https://foodiedigital.com/" target="_blank" rel="nofollow noopener">Foodie Digital</a></p></div>
                                </div>
                </div>
            </div>
        </div>
    </div>
</footer>
</div> <!-- .dmc-body-inner -->
    <div data-wpr-lazyrender="1" class="dmc-responsive-indicators">
        <div  id="pre-landscape-indicator"></div>
        <div  id="landscape-indicator"></div>
        <div  id="pre-tablet-indicator"></div>
        <div  id="tablet-indicator"></div>
        <div  id="mobile-indicator"></div>
    </div>
    <script data-no-optimize='1' data-cfasync='false' id='cls-insertion-2b25b53'>!function(){"use strict";function e(){return e=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var i=arguments[t];for(var n in i)Object.prototype.hasOwnProperty.call(i,n)&&(e[n]=i[n])}return e},e.apply(this,arguments)}window.adthriveCLS.buildDate="2025-05-07";const t={AdDensity:"addensity",AdLayout:"adlayout",Interstitial:"interstitial",StickyOutstream:"stickyoutstream"},i="Below_Post",n="Content",s="Recipe",o="Footer",r="Header",a="Sidebar",l="desktop",c="mobile",d="Video_Collapse_Autoplay_SoundOff",h="Video_Individual_Autoplay_SOff",u="Video_Coll_SOff_Smartphone",p="Video_In-Post_ClicktoPlay_SoundOn",m=e=>{const t={};return function(...i){const n=JSON.stringify(i);if(t[n])return t[n];const s=e.apply(this,i);return t[n]=s,s}},g=navigator.userAgent,y=m((e=>/Chrom|Applechromium/.test(e||g))),_=m((()=>/WebKit/.test(g))),f=m((()=>y()?"chromium":_()?"webkit":"other"));const v=new class{info(e,t,...i){this.call(console.info,e,t,...i)}warn(e,t,...i){this.call(console.warn,e,t,...i)}error(e,t,...i){this.call(console.error,e,t,...i),this.sendErrorLogToCommandQueue(e,t,...i)}event(e,t,...i){var n;"debug"===(null==(n=window.adthriveCLS)?void 0:n.bucket)&&this.info(e,t)}sendErrorLogToCommandQueue(e,t,...i){window.adthrive=window.adthrive||{},window.adthrive.cmd=window.adthrive.cmd||[],window.adthrive.cmd.push((()=>{void 0!==window.adthrive.logError&&"function"==typeof window.adthrive.logError&&window.adthrive.logError(e,t,i)}))}call(e,t,i,...n){const s=[`%c${t}::${i} `],o=["color: #999; font-weight: bold;"];n.length>0&&"string"==typeof n[0]&&s.push(n.shift()),o.push(...n);try{Function.prototype.apply.call(e,console,[s.join(""),...o])}catch(e){return void console.error(e)}}},b=(e,t)=>null==e||e!=e?t:e,S=e=>{const t=e.offsetHeight,i=e.offsetWidth,n=e.getBoundingClientRect(),s=document.body,o=document.documentElement,r=window.pageYOffset||o.scrollTop||s.scrollTop,a=window.pageXOffset||o.scrollLeft||s.scrollLeft,l=o.clientTop||s.clientTop||0,c=o.clientLeft||s.clientLeft||0,d=Math.round(n.top+r-l),h=Math.round(n.left+a-c);return{top:d,left:h,bottom:d+t,right:h+i,width:i,height:t}},E=e=>{let t={};const i=((e=window.location.search)=>{const t=0===e.indexOf("?")?1:0;return e.slice(t).split("&").reduce(((e,t)=>{const[i,n]=t.split("=");return e.set(i,n),e}),new Map)})().get(e);if(i)try{const n=decodeURIComponent(i).replace(/\+/g,"");t=JSON.parse(n),v.event("ExperimentOverridesUtil","getExperimentOverrides",e,t)}catch(e){}return t},x=m(((e=navigator.userAgent)=>/Windows NT|Macintosh/i.test(e))),w=m((()=>{const e=navigator.userAgent,t=/Tablet|iPad|Playbook|Nook|webOS|Kindle|Android (?!.*Mobile).*Safari|CrOS/i.test(e);return/Mobi|iP(hone|od)|Opera Mini/i.test(e)&&!t})),A=(e,t,i=document)=>{const n=((e=document)=>{const t=e.querySelectorAll("article");if(0===t.length)return null;const i=Array.from(t).reduce(((e,t)=>t.offsetHeight>e.offsetHeight?t:e));return i&&i.offsetHeight>1.5*window.innerHeight?i:null})(i),s=n?[n]:[],o=[];e.forEach((e=>{const n=Array.from(i.querySelectorAll(e.elementSelector)).slice(0,e.skip);var r;(r=e.elementSelector,r.includes(",")?r.split(","):[r]).forEach((r=>{const a=i.querySelectorAll(r);for(let i=0;i<a.length;i++){const r=a[i];if(t.map.some((({el:e})=>e.isEqualNode(r))))continue;const l=r&&r.parentElement;l&&l!==document.body?s.push(l):s.push(r),-1===n.indexOf(r)&&o.push({dynamicAd:e,element:r})}}))}));const r=((e=document)=>(e===document?document.body:e).getBoundingClientRect().top)(i),a=o.sort(((e,t)=>e.element.getBoundingClientRect().top-r-(t.element.getBoundingClientRect().top-r)));return[s,a]};class C{}const D=["mcmpfreqrec"];const P=new class extends C{init(e){this._gdpr="true"===e.gdpr,this._shouldQueue=this._gdpr}clearQueue(e){e&&(this._shouldQueue=!1,this._sessionStorageHandlerQueue.forEach((e=>{this.setSessionStorage(e.key,e.value)})),this._localStorageHandlerQueue.forEach((e=>{if("adthrive_abgroup"===e.key){const t=Object.keys(e.value)[0],i=e.value[t],n=e.value[`${t}_weight`];this.getOrSetABGroupLocalStorageValue(t,i,n,{value:24,unit:"hours"})}else e.expiry?"internal"===e.type?this.setExpirableInternalLocalStorage(e.key,e.value,{expiry:e.expiry,resetOnRead:e.resetOnRead}):this.setExpirableExternalLocalStorage(e.key,e.value,{expiry:e.expiry,resetOnRead:e.resetOnRead}):"internal"===e.type?this.setInternalLocalStorage(e.key,e.value):this.setExternalLocalStorage(e.key,e.value)})),this._cookieHandlerQueue.forEach((e=>{"internal"===e.type?this.setInternalCookie(e.key,e.value):this.setExternalCookie(e.key,e.value)}))),this._sessionStorageHandlerQueue=[],this._localStorageHandlerQueue=[],this._cookieHandlerQueue=[]}readInternalCookie(e){return this._verifyInternalKey(e),this._readCookie(e)}readExternalCookie(e){return this._readCookie(e)}readInternalLocalStorage(e){return this._verifyInternalKey(e),this._readFromLocalStorage(e)}readExternalLocalStorage(e){return this._readFromLocalStorage(e)}readSessionStorage(e){const t=window.sessionStorage.getItem(e);if(!t)return null;try{return JSON.parse(t)}catch(e){return t}}deleteCookie(e){document.cookie=`${e}=; SameSite=None; Secure; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/`}deleteLocalStorage(e){window.localStorage.removeItem(e)}deleteSessionStorage(e){window.sessionStorage.removeItem(e)}setInternalCookie(e,t,i){this._verifyInternalKey(e),this._setCookieValue("internal",e,t,i)}setExternalCookie(e,t,i){this._setCookieValue("external",e,t,i)}setInternalLocalStorage(e,t){if(this._verifyInternalKey(e),this._gdpr&&this._shouldQueue){const i={key:e,value:t,type:"internal"};this._localStorageHandlerQueue.push(i)}else{const i="string"==typeof t?t:JSON.stringify(t);window.localStorage.setItem(e,i)}}setExternalLocalStorage(e,t){if(this._gdpr&&this._shouldQueue){const i={key:e,value:t,type:"external"};this._localStorageHandlerQueue.push(i)}else{const i="string"==typeof t?t:JSON.stringify(t);window.localStorage.setItem(e,i)}}setExpirableInternalLocalStorage(e,t,i){this._verifyInternalKey(e);try{var n;const o=null!=(n=null==i?void 0:i.expiry)?n:{value:400,unit:"days"};var s;const r=null!=(s=null==i?void 0:i.resetOnRead)&&s;if(this._gdpr&&this._shouldQueue){const i={key:e,value:t,type:"internal",expires:this._getExpiryDate(o),expiry:o,resetOnRead:r};this._localStorageHandlerQueue.push(i)}else{const i={value:t,type:"internal",expires:this._getExpiryDate(o),expiry:o,resetOnRead:r};window.localStorage.setItem(e,JSON.stringify(i))}}catch(e){console.error(e)}}setExpirableExternalLocalStorage(e,t,i){try{var n;const o=null!=(n=null==i?void 0:i.expiry)?n:{value:400,unit:"days"};var s;const r=null!=(s=null==i?void 0:i.resetOnRead)&&s;if(this._gdpr&&this._shouldQueue){const i={key:e,value:JSON.stringify(t),type:"external",expires:this._getExpiryDate(o),expiry:o,resetOnRead:r};this._localStorageHandlerQueue.push(i)}else{const i={value:t,type:"external",expires:this._getExpiryDate(o),expiry:o,resetOnRead:r};window.localStorage.setItem(e,JSON.stringify(i))}}catch(e){console.error(e)}}setSessionStorage(e,t){if(this._gdpr&&this._shouldQueue){const i={key:e,value:t};this._sessionStorageHandlerQueue.push(i)}else{const i="string"==typeof t?t:JSON.stringify(t);window.sessionStorage.setItem(e,i)}}getOrSetABGroupLocalStorageValue(t,i,n,s,o=!0){const r="adthrive_abgroup",a=this.readInternalLocalStorage(r);if(null!==a){const e=a[t];var l;const i=null!=(l=a[`${t}_weight`])?l:null;if(this._isValidABGroupLocalStorageValue(e))return[e,i]}const c=e({},a,{[t]:i,[`${t}_weight`]:n});return s?this.setExpirableInternalLocalStorage(r,c,{expiry:s,resetOnRead:o}):this.setInternalLocalStorage(r,c),[i,n]}_isValidABGroupLocalStorageValue(e){return null!=e&&!("number"==typeof e&&isNaN(e))}_getExpiryDate({value:e,unit:t}){const i=new Date;return"milliseconds"===t?i.setTime(i.getTime()+e):"seconds"==t?i.setTime(i.getTime()+1e3*e):"minutes"===t?i.setTime(i.getTime()+60*e*1e3):"hours"===t?i.setTime(i.getTime()+60*e*60*1e3):"days"===t?i.setTime(i.getTime()+24*e*60*60*1e3):"months"===t&&i.setTime(i.getTime()+30*e*24*60*60*1e3),i.toUTCString()}_resetExpiry(e){return e.expires=this._getExpiryDate(e.expiry),e}_readCookie(e){const t=document.cookie.split("; ").find((t=>t.split("=")[0]===e));if(!t)return null;const i=t.split("=")[1];if(i)try{return JSON.parse(decodeURIComponent(i))}catch(e){return decodeURIComponent(i)}return null}_readFromLocalStorage(e){const t=window.localStorage.getItem(e);if(!t)return null;try{const n=JSON.parse(t),s=n.expires&&(new Date).getTime()>=new Date(n.expires).getTime();if("adthrive_abgroup"===e&&n.created)return window.localStorage.removeItem(e),null;if(n.resetOnRead&&n.expires&&!s){const t=this._resetExpiry(n);var i;return window.localStorage.setItem(e,JSON.stringify(n)),null!=(i=t.value)?i:t}if(s)return window.localStorage.removeItem(e),null;if(!n.hasOwnProperty("value"))return n;try{return JSON.parse(n.value)}catch(e){return n.value}}catch(e){return t}}_setCookieValue(e,t,i,n){try{if(this._gdpr&&this._shouldQueue){const n={key:t,value:i,type:e};this._cookieHandlerQueue.push(n)}else{var s;const e=this._getExpiryDate(null!=(s=null==n?void 0:n.expiry)?s:{value:400,unit:"days"});var o;const a=null!=(o=null==n?void 0:n.sameSite)?o:"None";var r;const l=null==(r=null==n?void 0:n.secure)||r,c="object"==typeof i?JSON.stringify(i):i;document.cookie=`${t}=${c}; SameSite=${a}; ${l?"Secure;":""} expires=${e}; path=/`}}catch(e){}}_verifyInternalKey(e){const t=e.startsWith("adthrive_"),i=e.startsWith("adt_");if(!t&&!i&&!D.includes(e))throw new Error('When reading an internal cookie, the key must start with "adthrive_" or "adt_" or be part of the allowed legacy keys.')}constructor(...e){super(...e),this.name="BrowserStorage",this.disable=!1,this.gdprPurposes=[1],this._sessionStorageHandlerQueue=[],this._localStorageHandlerQueue=[],this._cookieHandlerQueue=[],this._shouldQueue=!1}},k=(e,i,n)=>{switch(i){case t.AdDensity:return((e,t)=>{const i=e.adDensityEnabled,n=e.adDensityLayout.pageOverrides.find((e=>!!document.querySelector(e.pageSelector)&&(e[t].onePerViewport||"number"==typeof e[t].adDensity)));return!i||!n})(e,n);case t.StickyOutstream:return(e=>{var t,i,n;const s=null==(n=e.videoPlayers)||null==(i=n.partners)||null==(t=i.stickyOutstream)?void 0:t.blockedPageSelectors;return!s||!document.querySelector(s)})(e);case t.Interstitial:return(e=>{const t=e.adOptions.interstitialBlockedPageSelectors;return!t||!document.querySelector(t)})(e);default:return!0}},O=t=>{try{return{valid:!0,elements:document.querySelectorAll(t)}}catch(t){return e({valid:!1},t)}},I=e=>""===e?{valid:!0}:O(e),M=(e,t)=>{if(!e)return!1;const i=!!e.enabled,n=null==e.dateStart||Date.now()>=e.dateStart,s=null==e.dateEnd||Date.now()<=e.dateEnd,o=null===e.selector||""!==e.selector&&!!document.querySelector(e.selector),r="mobile"===e.platform&&"mobile"===t,a="desktop"===e.platform&&"desktop"===t,l=null===e.platform||"all"===e.platform||r||a,c="bernoulliTrial"===e.experimentType?1===e.variants.length:(e=>{const t=e.reduce(((e,t)=>t.weight?t.weight+e:e),0);return e.length>0&&e.every((e=>{const t=e.value,i=e.weight;return!(null==t||"number"==typeof t&&isNaN(t)||!i)}))&&100===t})(e.variants);return c||v.error("SiteTest","validateSiteExperiment","experiment presented invalid choices for key:",e.key,e.variants),i&&n&&s&&o&&l&&c},L=["siteId","siteName","adOptions","breakpoints","adUnits"];class R{get enabled(){return!!this._clsGlobalData&&!!this._clsGlobalData.siteAds&&((e,t=L)=>{if(!e)return!1;for(let i=0;i<t.length;i++)if(!e[t[i]])return!1;return!0})(this._clsGlobalData.siteAds)}get error(){return!(!this._clsGlobalData||!this._clsGlobalData.error)}set siteAds(e){this._clsGlobalData.siteAds=e}get siteAds(){return this._clsGlobalData.siteAds}set disableAds(e){this._clsGlobalData.disableAds=e}get disableAds(){return this._clsGlobalData.disableAds}set enabledLocations(e){this._clsGlobalData.enabledLocations=e}get enabledLocations(){return this._clsGlobalData.enabledLocations}get injectedFromPlugin(){return this._clsGlobalData.injectedFromPlugin}set injectedFromPlugin(e){this._clsGlobalData.injectedFromPlugin=e}get injectedFromSiteAds(){return this._clsGlobalData.injectedFromSiteAds}set injectedFromSiteAds(e){this._clsGlobalData.injectedFromSiteAds=e}overwriteInjectedSlots(e){this._clsGlobalData.injectedSlots=e}setInjectedSlots(e){this._clsGlobalData.injectedSlots=this._clsGlobalData.injectedSlots||[],this._clsGlobalData.injectedSlots.push(e)}get injectedSlots(){return this._clsGlobalData.injectedSlots}setInjectedVideoSlots(e){this._clsGlobalData.injectedVideoSlots=this._clsGlobalData.injectedVideoSlots||[],this._clsGlobalData.injectedVideoSlots.push(e)}get injectedVideoSlots(){return this._clsGlobalData.injectedVideoSlots}setInjectedScripts(e){this._clsGlobalData.injectedScripts=this._clsGlobalData.injectedScripts||[],this._clsGlobalData.injectedScripts.push(e)}get getInjectedScripts(){return this._clsGlobalData.injectedScripts}setExperiment(e,t,i=!1){this._clsGlobalData.experiments=this._clsGlobalData.experiments||{},this._clsGlobalData.siteExperiments=this._clsGlobalData.siteExperiments||{};(i?this._clsGlobalData.siteExperiments:this._clsGlobalData.experiments)[e]=t}getExperiment(e,t=!1){const i=t?this._clsGlobalData.siteExperiments:this._clsGlobalData.experiments;return i&&i[e]}setWeightedChoiceExperiment(e,t,i=!1){this._clsGlobalData.experimentsWeightedChoice=this._clsGlobalData.experimentsWeightedChoice||{},this._clsGlobalData.siteExperimentsWeightedChoice=this._clsGlobalData.siteExperimentsWeightedChoice||{};(i?this._clsGlobalData.siteExperimentsWeightedChoice:this._clsGlobalData.experimentsWeightedChoice)[e]=t}getWeightedChoiceExperiment(e,t=!1){var i,n;const s=t?null==(i=this._clsGlobalData)?void 0:i.siteExperimentsWeightedChoice:null==(n=this._clsGlobalData)?void 0:n.experimentsWeightedChoice;return s&&s[e]}get branch(){return this._clsGlobalData.branch}get bucket(){return this._clsGlobalData.bucket}set videoDisabledFromPlugin(e){this._clsGlobalData.videoDisabledFromPlugin=e}get videoDisabledFromPlugin(){return this._clsGlobalData.videoDisabledFromPlugin}set targetDensityLog(e){this._clsGlobalData.targetDensityLog=e}get targetDensityLog(){return this._clsGlobalData.targetDensityLog}getIOSDensity(e){const t=[{weight:100,adDensityPercent:0},{weight:0,adDensityPercent:25},{weight:0,adDensityPercent:50}],i=t.map((e=>e.weight)),{index:n}=(e=>{const t={index:-1,weight:-1};if(!e||0===e.length)return t;const i=e.reduce(((e,t)=>e+t),0);if(0===i)return t;const n=Math.random()*i;let s=0,o=e[s];for(;n>o;)o+=e[++s];return{index:s,weight:e[s]}})(i),s=e-e*(t[n].adDensityPercent/100);return this.setWeightedChoiceExperiment("iosad",t[n].adDensityPercent),s}getTargetDensity(e){return((e=navigator.userAgent)=>/iP(hone|od|ad)/i.test(e))()?this.getIOSDensity(e):e}get removeVideoTitleWrapper(){return this._clsGlobalData.siteAds.adOptions.removeVideoTitleWrapper}constructor(){this._clsGlobalData=window.adthriveCLS}}class T{static getScrollTop(){return(window.pageYOffset||document.documentElement.scrollTop)-(document.documentElement.clientTop||0)}static getScrollBottom(){return this.getScrollTop()+(document.documentElement.clientHeight||0)}static shufflePlaylist(e){let t,i,n=e.length;for(;0!==n;)i=Math.floor(Math.random()*e.length),n-=1,t=e[n],e[n]=e[i],e[i]=t;return e}static isMobileLandscape(){return window.matchMedia("(orientation: landscape) and (max-height: 480px)").matches}static playerViewable(e){const t=e.getBoundingClientRect();return this.isMobileLandscape()?window.innerHeight>t.top+t.height/2&&t.top+t.height/2>0:window.innerHeight>t.top+t.height/2}static createQueryString(e){return Object.keys(e).map((t=>`${t}=${e[t]}`)).join("&")}static createEncodedQueryString(e){return Object.keys(e).map((t=>`${t}=${encodeURIComponent(e[t])}`)).join("&")}static setMobileLocation(e){return"top-left"===(e=e||"bottom-right")?e="adthrive-collapse-top-left":"top-right"===e?e="adthrive-collapse-top-right":"bottom-left"===e?e="adthrive-collapse-bottom-left":"bottom-right"===e?e="adthrive-collapse-bottom-right":"top-center"===e&&(e=w()?"adthrive-collapse-top-center":"adthrive-collapse-bottom-right"),e}static addMaxResolutionQueryParam(e){const t=`max_resolution=${w()?"320":"1280"}`,[i,n]=String(e).split("?");return`${i}?${n?n+`&${t}`:t}`}}class j{constructor(e){this._clsOptions=e,this.removeVideoTitleWrapper=b(this._clsOptions.siteAds.adOptions.removeVideoTitleWrapper,!1);const t=this._clsOptions.siteAds.videoPlayers;this.footerSelector=b(t&&t.footerSelector,""),this.players=b(t&&t.players.map((e=>(e.mobileLocation=T.setMobileLocation(e.mobileLocation),e))),[]),this.relatedSettings=t&&t.contextual}}class H{constructor(e){this.mobileStickyPlayerOnPage=!1,this.playlistPlayerAdded=!1,this.relatedPlayerAdded=!1,this.footerSelector="",this.removeVideoTitleWrapper=!1,this.videoAdOptions=new j(e),this.players=this.videoAdOptions.players,this.relatedSettings=this.videoAdOptions.relatedSettings,this.removeVideoTitleWrapper=this.videoAdOptions.removeVideoTitleWrapper,this.footerSelector=this.videoAdOptions.footerSelector}}class V{}class N extends V{get(){if(this._probability<0||this._probability>1)throw new Error(`Invalid probability: ${this._probability}`);return Math.random()<this._probability}constructor(e){super(),this._probability=e}}class G{setExperimentKey(e=!1){this._clsOptions.setExperiment(this.abgroup,this.result,e)}constructor(){this._clsOptions=new R,this.shouldUseCoreExperimentsConfig=!1}}class W extends G{get result(){return this._result}run(){return new N(this.weight).get()}constructor(e){super(),this._result=!1,this.key="ParallaxAdsExperiment",this.abgroup="parallax",this._choices=[{choice:!0},{choice:!1}],this.weight=0;!!w()&&e.largeFormatsMobile&&(this._result=this.run(),this.setExperimentKey())}}const B=[[728,90],[300,250],[300,600],[320,50],[970,250],[160,600],[300,1050],[336,280],[970,90],[300,50],[320,100],[468,60],[250,250],[120,240],[1,1],[300,300],[552,334],[300,420],[728,250],[320,300],[300,390]],F=[[300,600],[160,600]],z=new Map([[o,1],[r,2],[a,3],[n,4],[s,5],["Sidebar_sticky",6],["Below Post",7]]),q=(e,t)=>{const{location:i,sticky:n}=e;if(i===s&&t){const{recipeMobile:e,recipeDesktop:i}=t;if(w()&&(null==e?void 0:e.enabled))return!0;if(!w()&&(null==i?void 0:i.enabled))return!0}return i===o||n},U=(e,t)=>{const i=t.adUnits,l=(e=>!!e.adTypes&&new W(e.adTypes).result)(t);return i.filter((e=>void 0!==e.dynamic&&e.dynamic.enabled)).map((i=>{const c=i.location.replace(/\s+/g,"_"),d="Sidebar"===c?0:2;return{auctionPriority:z.get(c)||8,location:c,sequence:b(i.sequence,1),sizes:(h=i.adSizes,B.filter((([e,t])=>h.some((([i,n])=>e===i&&t===n))))).filter((t=>((e,[t,i],n)=>{const{location:l,sequence:c}=e;if(l===o)return!("phone"===n&&320===t&&100===i);if(l===r)return!0;if(l===s)return!(w()&&"phone"===n&&(300===t&&390===i||320===t&&300===i));if(l===a){const t=e.adSizes.some((([,e])=>e<=300)),n=i>300;return!(!n||t)||9===c||(c&&c<=5?!n||e.sticky:!n)}return!0})(i,t,e))).concat(l&&i.location===n?F:[]),devices:i.devices,pageSelector:b(i.dynamic.pageSelector,"").trim(),elementSelector:b(i.dynamic.elementSelector,"").trim(),position:b(i.dynamic.position,"beforebegin"),max:Math.floor(b(i.dynamic.max,0)),spacing:b(i.dynamic.spacing,0),skip:Math.floor(b(i.dynamic.skip,0)),every:Math.max(Math.floor(b(i.dynamic.every,1)),1),classNames:i.dynamic.classNames||[],sticky:q(i,t.adOptions.stickyContainerConfig),stickyOverlapSelector:b(i.stickyOverlapSelector,"").trim(),autosize:i.autosize,special:b(i.targeting,[]).filter((e=>"special"===e.key)).reduce(((e,t)=>e.concat(...t.value)),[]),lazy:b(i.dynamic.lazy,!1),lazyMax:b(i.dynamic.lazyMax,d),lazyMaxDefaulted:0!==i.dynamic.lazyMax&&!i.dynamic.lazyMax,name:i.name};var h}))},Q=(e,t)=>{const i=(e=>{let t=e.clientWidth;if(getComputedStyle){const i=getComputedStyle(e,null);t-=parseFloat(i.paddingLeft||"0")+parseFloat(i.paddingRight||"0")}return t})(t),n=e.sticky&&e.location===a;return e.sizes.filter((t=>{const s=!e.autosize||(t[0]<=i||t[0]<=320),o=!n||t[1]<=window.innerHeight-100;return s&&o}))};class J{constructor(e){this.clsOptions=e,this.enabledLocations=[i,n,s,a]}}const K=e=>`adthrive-${e.location.replace("_","-").toLowerCase()}`,Z=e=>`${K(e)}-${e.sequence}`;function Y(e,t){void 0===t&&(t={});var i=t.insertAt;if(e&&"undefined"!=typeof document){var n=document.head||document.getElementsByTagName("head")[0],s=document.createElement("style");s.type="text/css","top"===i&&n.firstChild?n.insertBefore(s,n.firstChild):n.appendChild(s),s.styleSheet?s.styleSheet.cssText=e:s.appendChild(document.createTextNode(e))}}const X=e=>e.some((e=>null!==document.querySelector(e)));function ee(e,t,i,n){var s,o=arguments.length,r=o<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,i):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)r=Reflect.decorate(e,t,i,n);else for(var a=e.length-1;a>=0;a--)(s=e[a])&&(r=(o<3?s(r):o>3?s(t,i,r):s(t,i))||r);return o>3&&r&&Object.defineProperty(t,i,r),r}function te(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)}"function"==typeof SuppressedError&&SuppressedError;class ie extends V{static fromArray(e,t){return new ie(e.map((([e,t])=>({choice:e,weight:t}))),t)}addChoice(e,t){this._choices.push({choice:e,weight:t})}get(){const e=(t=0,i=100,Math.random()*(i-t)+t);var t,i;let n=0;for(const{choice:t,weight:i}of this._choices)if(n+=i,n>=e)return t;return this._default}get totalWeight(){return this._choices.reduce(((e,{weight:t})=>e+t),0)}constructor(e=[],t){super(),this._choices=e,this._default=t}}const ne={"Europe/Brussels":"gdpr","Europe/Sofia":"gdpr","Europe/Prague":"gdpr","Europe/Copenhagen":"gdpr","Europe/Berlin":"gdpr","Europe/Tallinn":"gdpr","Europe/Dublin":"gdpr","Europe/Athens":"gdpr","Europe/Madrid":"gdpr","Africa/Ceuta":"gdpr","Europe/Paris":"gdpr","Europe/Zagreb":"gdpr","Europe/Rome":"gdpr","Asia/Nicosia":"gdpr","Europe/Nicosia":"gdpr","Europe/Riga":"gdpr","Europe/Vilnius":"gdpr","Europe/Luxembourg":"gdpr","Europe/Budapest":"gdpr","Europe/Malta":"gdpr","Europe/Amsterdam":"gdpr","Europe/Vienna":"gdpr","Europe/Warsaw":"gdpr","Europe/Lisbon":"gdpr","Atlantic/Madeira":"gdpr","Europe/Bucharest":"gdpr","Europe/Ljubljana":"gdpr","Europe/Bratislava":"gdpr","Europe/Helsinki":"gdpr","Europe/Stockholm":"gdpr","Europe/London":"gdpr","Europe/Vaduz":"gdpr","Atlantic/Reykjavik":"gdpr","Europe/Oslo":"gdpr","Europe/Istanbul":"gdpr","Europe/Zurich":"gdpr"},se=()=>(e,i,n)=>{const s=n.value;s&&(n.value=function(...e){const i=(e=>{if(null===e)return null;const t=e.map((({choice:e})=>e));return(e=>{let t=5381,i=e.length;for(;i;)t=33*t^e.charCodeAt(--i);return t>>>0})(JSON.stringify(t)).toString(16)})(this._choices),n=this._expConfigABGroup?this._expConfigABGroup:this.abgroup,o=n?n.toLowerCase():this.key?this.key.toLowerCase():"",r=i?`${o}_${i}`:o,a=this.localStoragePrefix?`${this.localStoragePrefix}-${r}`:r;if([t.AdLayout,t.AdDensity].includes(o)&&"gdpr"===(()=>{const e=Intl.DateTimeFormat().resolvedOptions().timeZone,t=ne[e];return null!=t?t:null})()){return s.apply(this,e)}const l=P.readInternalLocalStorage("adthrive_branch");!1===(l&&l.enabled)&&P.deleteLocalStorage(a);const c=(()=>s.apply(this,e))(),d=(h=this._choices,u=c,null!=(m=null==(p=h.find((({choice:e})=>e===u)))?void 0:p.weight)?m:null);var h,u,p,m;const[g,y]=P.getOrSetABGroupLocalStorageValue(a,c,d,{value:24,unit:"hours"});return this._stickyResult=g,this._stickyWeight=y,g})};class oe{get enabled(){return void 0!==this.experimentConfig}_isValidResult(e,t=()=>!0){return t()&&(e=>null!=e&&!("number"==typeof e&&isNaN(e)))(e)}}class re extends oe{_isValidResult(e){return super._isValidResult(e,(()=>this._resultValidator(e)||"control"===e))}run(){if(!this.enabled)return v.error("CLSWeightedChoiceSiteExperiment","run","() => %o","No experiment config found. Defaulting to control."),"control";if(!this._mappedChoices||0===this._mappedChoices.length)return v.error("CLSWeightedChoiceSiteExperiment","run","() => %o","No experiment variants found. Defaulting to control."),"control";const e=new ie(this._mappedChoices).get();return this._isValidResult(e)?e:(v.error("CLSWeightedChoiceSiteExperiment","run","() => %o","Invalid result from experiment choices. Defaulting to control."),"control")}constructor(...e){super(...e),this._resultValidator=()=>!0}}class ae{getSiteExperimentByKey(e){const t=this.siteExperiments.filter((t=>t.key.toLowerCase()===e.toLowerCase()))[0],i=E("at_site_features"),n=(s=(null==t?void 0:t.variants[1])?null==t?void 0:t.variants[1].value:null==t?void 0:t.variants[0].value,o=i[e],typeof s==typeof o);var s,o;return t&&i[e]&&n&&(t.variants=[{displayName:"test",value:i[e],weight:100,id:0}]),t}constructor(e){var t,i;this.siteExperiments=[],this._clsOptions=e,this._device=w()?"mobile":"desktop",this.siteExperiments=null!=(i=null==(t=this._clsOptions.siteAds.siteExperiments)?void 0:t.filter((e=>{const t=e.key,i=M(e,this._device),n=k(this._clsOptions.siteAds,t,this._device);return i&&n})))?i:[]}}class le extends re{get result(){return this._result}run(){if(!this.enabled)return v.error("CLSAdLayoutSiteExperiment","run","() => %o","No experiment config found. Defaulting to empty class name."),"";const e=new ie(this._mappedChoices).get();return this._isValidResult(e)?e:(v.error("CLSAdLayoutSiteExperiment","run","() => %o","Invalid result from experiment choices. Defaulting to empty class name."),"")}_mapChoices(){return this._choices.map((({weight:e,value:t})=>({weight:e,choice:t})))}constructor(e){super(),this._choices=[],this._mappedChoices=[],this._result="",this._resultValidator=e=>"string"==typeof e,this.key=t.AdLayout,this.abgroup=t.AdLayout,this._clsSiteExperiments=new ae(e),this.experimentConfig=this._clsSiteExperiments.getSiteExperimentByKey(this.key),this.enabled&&this.experimentConfig&&(this._choices=this.experimentConfig.variants,this._mappedChoices=this._mapChoices(),this._result=this.run(),e.setWeightedChoiceExperiment(this.abgroup,this._result,!0))}}ee([se(),te("design:type",Function),te("design:paramtypes",[]),te("design:returntype",void 0)],le.prototype,"run",null);class ce extends re{get result(){return this._result}run(){if(!this.enabled)return v.error("CLSTargetAdDensitySiteExperiment","run","() => %o","No experiment config found. Defaulting to control."),"control";const e=new ie(this._mappedChoices).get();return this._isValidResult(e)?e:(v.error("CLSTargetAdDensitySiteExperiment","run","() => %o","Invalid result from experiment choices. Defaulting to control."),"control")}_mapChoices(){return this._choices.map((({weight:e,value:t})=>({weight:e,choice:"number"==typeof t?(t||0)/100:"control"})))}constructor(e){super(),this._choices=[],this._mappedChoices=[],this._result="control",this._resultValidator=e=>"number"==typeof e,this.key=t.AdDensity,this.abgroup=t.AdDensity,this._clsSiteExperiments=new ae(e),this.experimentConfig=this._clsSiteExperiments.getSiteExperimentByKey(this.key),this.enabled&&this.experimentConfig&&(this._choices=this.experimentConfig.variants,this._mappedChoices=this._mapChoices(),this._result=this.run(),e.setWeightedChoiceExperiment(this.abgroup,this._result,!0))}}ee([se(),te("design:type",Function),te("design:paramtypes",[]),te("design:returntype",void 0)],ce.prototype,"run",null);const de="250px";class he{start(){try{var e,t;(e=>{const t=document.body,i=`adthrive-device-${e}`;if(!t.classList.contains(i))try{t.classList.add(i)}catch(e){v.error("BodyDeviceClassComponent","init",{message:e.message});const t="classList"in document.createElement("_");v.error("BodyDeviceClassComponent","init.support",{support:t})}})(this._device);const s=new le(this._clsOptions);if(s.enabled){const e=s.result,t=e.startsWith(".")?e.substring(1):e;if((e=>/^[-_a-zA-Z]+[-_a-zA-Z0-9]*$/.test(e))(t))try{document.body.classList.add(t)}catch(e){v.error("ClsDynamicAdsInjector","start",`Uncaught CSS Class error: ${e}`)}else v.error("ClsDynamicAdsInjector","start",`Invalid class name: ${t}`)}const o=U(this._device,this._clsOptions.siteAds).filter((e=>this._locationEnabled(e))).filter((e=>{return t=e,i=this._device,t.devices.includes(i);var t,i})).filter((e=>{return 0===(t=e).pageSelector.length||null!==document.querySelector(t.pageSelector);var t})),r=this.inject(o);var i,n;if(null==(t=this._clsOptions.siteAds.adOptions.stickyContainerConfig)||null==(e=t.content)?void 0:e.enabled)if(!X(this._clsOptions.siteAds.adOptions.stickyContainerConfig.blockedSelectors||[]))Y(`\n  .adthrive-device-phone .adthrive-sticky-content {\n    height: 450px !important;\n    margin-bottom: 100px !important;\n  }\n  .adthrive-content.adthrive-sticky {\n    position: -webkit-sticky;\n    position: sticky !important;\n    top: 42px !important;\n    margin-top: 42px !important;\n  }\n  .adthrive-content.adthrive-sticky:after {\n    content: "— Advertisement. Scroll down to continue. —";\n    font-size: 10pt;\n    margin-top: 5px;\n    margin-bottom: 5px;\n    display:block;\n    color: #888;\n  }\n  .adthrive-sticky-container {\n    position: relative;\n    display: flex;\n    flex-direction: column;\n    justify-content: flex-start;\n    align-items: center;\n    min-height:${(null==(n=this._clsOptions.siteAds.adOptions.stickyContainerConfig)||null==(i=n.content)?void 0:i.minHeight)||400}px !important;\n    margin: 10px 0 10px 0;\n    background-color: #FAFAFA;\n    padding-bottom:0px;\n  }\n  `);r.forEach((e=>this._clsOptions.setInjectedSlots(e)))}catch(e){v.error("ClsDynamicAdsInjector","start",e)}}inject(e,t=document){this._densityDevice="desktop"===this._device?l:c,this._overrideDefaultAdDensitySettingsWithSiteExperiment();const i=this._clsOptions.siteAds,s=b(i.adDensityEnabled,!0),o=i.adDensityLayout&&s,r=e.filter((e=>o?e.location!==n:e)),a=e.filter((e=>o?e.location===n:null));return[...r.length?this._injectNonDensitySlots(r,t):[],...a.length?this._injectDensitySlots(a,t):[]]}_injectNonDensitySlots(e,t=document){var i;const n=[],o=[];if(e.some((e=>e.location===s&&e.sticky))&&!X((null==(i=this._clsOptions.siteAds.adOptions.stickyContainerConfig)?void 0:i.blockedSelectors)||[])){var r,a;const e=this._clsOptions.siteAds.adOptions.stickyContainerConfig;(e=>{Y(`\n  .adthrive-recipe.adthrive-sticky {\n    position: -webkit-sticky;\n    position: sticky !important;\n    top: 42px !important;\n    margin-top: 42px !important;\n  }\n  .adthrive-recipe-sticky-container {\n    position: relative;\n    display: flex;\n    flex-direction: column;\n    justify-content: flex-start;\n    align-items: center;\n    min-height:${e||400}px !important;\n    margin: 10px 0 10px 0;\n    background-color: #FAFAFA;\n    padding-bottom:0px;\n  }\n  `)})("phone"===this._device?null==e||null==(r=e.recipeMobile)?void 0:r.minHeight:null==e||null==(a=e.recipeDesktop)?void 0:a.minHeight)}for(const i of e)this._insertNonDensityAds(i,n,o,t);return o.forEach((({location:e,element:t})=>{t.style.minHeight=this.locationToMinHeight[e]})),n}_injectDensitySlots(e,t=document){try{this._calculateMainContentHeightAndAllElements(e,t)}catch(e){return[]}const{onePerViewport:i,targetAll:n,targetDensityUnits:s,combinedMax:o,numberOfUnits:r}=this._getDensitySettings(e,t);return this._absoluteMinimumSpacingByDevice=i?window.innerHeight:this._absoluteMinimumSpacingByDevice,r?(this._adInjectionMap.filterUsed(),this._findElementsForAds(r,i,n,o,s,t),this._insertAds()):[]}_overrideDefaultAdDensitySettingsWithSiteExperiment(){var e;if(null==(e=this._clsTargetAdDensitySiteExperiment)?void 0:e.enabled){const e=this._clsTargetAdDensitySiteExperiment.result;"number"==typeof e&&(this._clsOptions.siteAds.adDensityEnabled=!0,this._clsOptions.siteAds.adDensityLayout[this._densityDevice].adDensity=e)}}_getDensitySettings(e,t=document){const i=this._clsOptions.siteAds.adDensityLayout,n=this._determineOverrides(i.pageOverrides),s=n.length?n[0]:i[this._densityDevice],o=this._clsOptions.getTargetDensity(s.adDensity),r=s.onePerViewport,a=this._shouldTargetAllEligible(o);let l=this._getTargetDensityUnits(o,a);const c=this._clsOptions.getWeightedChoiceExperiment("iosad");l<1&&c&&(l=1);const d=this._getCombinedMax(e,t),h=Math.min(this._totalAvailableElements.length,l,...d>0?[d]:[]);return this._pubLog={onePerViewport:r,targetDensity:o,targetDensityUnits:l,combinedMax:d},{onePerViewport:r,targetAll:a,targetDensityUnits:l,combinedMax:d,numberOfUnits:h}}_determineOverrides(e){return e.filter((e=>{const t=I(e.pageSelector);return""===e.pageSelector||t.elements&&t.elements.length})).map((e=>e[this._densityDevice]))}_shouldTargetAllEligible(e){return e===this._densityMax}_getTargetDensityUnits(e,t){return t?this._totalAvailableElements.length:Math.floor(e*this._mainContentHeight/(1-e)/this._minDivHeight)-this._recipeCount}_getCombinedMax(e,t=document){return b(e.filter((e=>{let i;try{i=t.querySelector(e.elementSelector)}catch(e){}return i})).map((e=>Number(e.max)+Number(e.lazyMaxDefaulted?0:e.lazyMax))).sort(((e,t)=>t-e))[0],0)}_elementLargerThanMainContent(e){return e.offsetHeight>=this._mainContentHeight&&this._totalAvailableElements.length>1}_elementDisplayNone(e){const t=window.getComputedStyle(e,null).display;return t&&"none"===t||"none"===e.style.display}_isBelowMaxes(e,t){return this._adInjectionMap.map.length<e&&this._adInjectionMap.map.length<t}_findElementsForAds(e,t,i,n,s,o=document){this._clsOptions.targetDensityLog={onePerViewport:t,combinedMax:n,targetDensityUnits:s,targetDensityPercentage:this._pubLog.targetDensity,mainContentHeight:this._mainContentHeight,recipeCount:this._recipeCount,numberOfEls:this._totalAvailableElements.length};const r=e=>{for(const{dynamicAd:t,element:r}of this._totalAvailableElements)if(this._logDensityInfo(r,t.elementSelector,e),!(!i&&this._elementLargerThanMainContent(r)||this._elementDisplayNone(r))){if(!this._isBelowMaxes(n,s))break;this._checkElementSpacing({dynamicAd:t,element:r,insertEvery:e,targetAll:i,target:o})}!this._usedAbsoluteMinimum&&this._smallerIncrementAttempts<5&&(++this._smallerIncrementAttempts,r(this._getSmallerIncrement(e)))},a=this._getInsertEvery(e,t,s);r(a)}_getSmallerIncrement(e){let t=.6*e;return t<=this._absoluteMinimumSpacingByDevice&&(t=this._absoluteMinimumSpacingByDevice,this._usedAbsoluteMinimum=!0),t}_insertNonDensityAds(e,t,i,n=document){let o=0,r=0,l=0;e.spacing>0&&(o=window.innerHeight*e.spacing,r=o);const c=this._repeatDynamicAds(e),d=this.getElements(e.elementSelector,n);e.skip;for(let h=e.skip;h<d.length&&!(l+1>c.length);h+=e.every){let u=d[h];if(o>0){const{bottom:e}=S(u);if(e<=r)continue;r=e+o}const p=c[l],m=`${p.location}_${p.sequence}`;t.some((e=>e.name===m))&&(l+=1);const g=this.getDynamicElementId(p),y=K(e),_=Z(e),f=[e.location===a&&e.sticky&&e.sequence&&e.sequence<=5?"adthrive-sticky-sidebar":"",e.location===s&&e.sticky?"adthrive-recipe-sticky-container":"",y,_,...e.classNames],v=this.addAd(u,g,e.position,f);if(v){const o=Q(p,v);if(o.length){const r={clsDynamicAd:e,dynamicAd:p,element:v,sizes:o,name:m,infinite:n!==document};t.push(r),i.push({location:p.location,element:v}),e.location===s&&++this._recipeCount,l+=1}u=v}}}_insertAds(){const e=[];return this._adInjectionMap.filterUsed(),this._adInjectionMap.map.forEach((({el:t,dynamicAd:i,target:n},s)=>{const o=Number(i.sequence)+s,r=i.max,a=i.lazy&&o>r;i.sequence=o,i.lazy=a;const l=this._addContentAd(t,i,n);l&&(i.used=!0,e.push(l))})),e}_getInsertEvery(e,t,i){let n=this._absoluteMinimumSpacingByDevice;return this._moreAvailableElementsThanUnitsToInject(i,e)?(this._usedAbsoluteMinimum=!1,n=this._useWiderSpacing(i,e)):(this._usedAbsoluteMinimum=!0,n=this._useSmallestSpacing(t)),t&&window.innerHeight>n?window.innerHeight:n}_useWiderSpacing(e,t){return this._mainContentHeight/Math.min(e,t)}_useSmallestSpacing(e){return e&&window.innerHeight>this._absoluteMinimumSpacingByDevice?window.innerHeight:this._absoluteMinimumSpacingByDevice}_moreAvailableElementsThanUnitsToInject(e,t){return this._totalAvailableElements.length>e||this._totalAvailableElements.length>t}_logDensityInfo(e,t,i){const{onePerViewport:n,targetDensity:s,targetDensityUnits:o,combinedMax:r}=this._pubLog;this._totalAvailableElements.length}_checkElementSpacing({dynamicAd:t,element:i,insertEvery:n,targetAll:s,target:o=document}){(this._isFirstAdInjected()||this._hasProperSpacing(i,t,s,n))&&this._markSpotForContentAd(i,e({},t),o)}_isFirstAdInjected(){return!this._adInjectionMap.map.length}_markSpotForContentAd(e,t,i=document){const n="beforebegin"===t.position||"afterbegin"===t.position;this._adInjectionMap.add(e,this._getElementCoords(e,n),t,i),this._adInjectionMap.sort()}_hasProperSpacing(e,t,n,s){const o="beforebegin"===t.position||"afterbegin"===t.position,r="beforeend"===t.position||"afterbegin"===t.position,a=n||this._isElementFarEnoughFromOtherAdElements(e,s,o),l=r||this._isElementNotInRow(e,o),c=-1===e.id.indexOf(`AdThrive_${i}`);return a&&l&&c}_isElementFarEnoughFromOtherAdElements(e,t,i){const n=this._getElementCoords(e,i);let s=!1;for(let e=0;e<this._adInjectionMap.map.length;e++){const i=this._adInjectionMap.map[e].coords,o=this._adInjectionMap.map[e+1]&&this._adInjectionMap.map[e+1].coords;if(s=n-t>i&&(!o||n+t<o),s)break}return s}_isElementNotInRow(e,t){const i=e.previousElementSibling,n=e.nextElementSibling,s=t?!i&&n||i&&e.tagName!==i.tagName?n:i:n;return!(!s||0!==e.getBoundingClientRect().height)||(!s||e.getBoundingClientRect().top!==s.getBoundingClientRect().top)}_calculateMainContentHeightAndAllElements(e,t=document){const[i,n]=((e,t,i=document)=>{const[n,s]=A(e,t,i);if(0===n.length)throw Error("No Main Content Elements Found");return[Array.from(n).reduce(((e,t)=>t.offsetHeight>e.offsetHeight?t:e))||document.body,s]})(e,this._adInjectionMap,t);this._mainContentDiv=i,this._totalAvailableElements=n,this._mainContentHeight=((e,t="div #comments, section .comments")=>{const i=e.querySelector(t);return i?e.offsetHeight-i.offsetHeight:e.offsetHeight})(this._mainContentDiv)}_getElementCoords(e,t=!1){const i=e.getBoundingClientRect();return(t?i.top:i.bottom)+window.scrollY}_addContentAd(e,t,i=document){var n,s;let o=null;const r=K(t),a=Z(t),l=(null==(s=this._clsOptions.siteAds.adOptions.stickyContainerConfig)||null==(n=s.content)?void 0:n.enabled)?"adthrive-sticky-container":"",c=this.addAd(e,this.getDynamicElementId(t),t.position,[l,r,a,...t.classNames]);if(c){const e=Q(t,c);if(e.length){c.style.minHeight=this.locationToMinHeight[t.location];o={clsDynamicAd:t,dynamicAd:t,element:c,sizes:e,name:`${t.location}_${t.sequence}`,infinite:i!==document}}}return o}getDynamicElementId(e){return`AdThrive_${e.location}_${e.sequence}_${this._device}`}getElements(e,t=document){return t.querySelectorAll(e)}addAd(e,t,i,n=[]){if(!document.getElementById(t)){const s=`<div id="${t}" class="adthrive-ad ${n.join(" ")}"></div>`;e.insertAdjacentHTML(i,s)}return document.getElementById(t)}_repeatDynamicAds(t){const i=[],n=t.location===s?99:this.locationMaxLazySequence.get(t.location),o=t.lazy?b(n,0):0,r=t.max,a=t.lazyMax,l=0===o&&t.lazy?r+a:Math.min(Math.max(o-t.sequence+1,0),r+a),c=Math.max(r,l);for(let n=0;n<c;n++){const s=Number(t.sequence)+n;if("Recipe_1"!==t.name||5!==s){const o=t.lazy&&n>=r;i.push(e({},t,{sequence:s,lazy:o}))}}return i}_locationEnabled(e){const t=this._clsOptions.enabledLocations.includes(e.location),i=this._clsOptions.disableAds&&this._clsOptions.disableAds.all||document.body.classList.contains("adthrive-disable-all"),n=!document.body.classList.contains("adthrive-disable-content")&&!this._clsOptions.disableAds.reasons.has("content_plugin");return t&&!i&&n}constructor(e,t){this._clsOptions=e,this._adInjectionMap=t,this._recipeCount=0,this._mainContentHeight=0,this._mainContentDiv=null,this._totalAvailableElements=[],this._minDivHeight=250,this._densityDevice=l,this._pubLog={onePerViewport:!1,targetDensity:0,targetDensityUnits:0,combinedMax:0},this._densityMax=.99,this._smallerIncrementAttempts=0,this._absoluteMinimumSpacingByDevice=250,this._usedAbsoluteMinimum=!1,this._infPageEndOffset=0,this.locationMaxLazySequence=new Map([[s,5]]),this.locationToMinHeight={Below_Post:de,Content:de,Recipe:de,Sidebar:de};const{tablet:i,desktop:n}=this._clsOptions.siteAds.breakpoints;this._device=((e,t)=>{const i=window.innerWidth;return i>=t?"desktop":i>=e?"tablet":"phone"})(i,n),this._config=new J(e),this._clsOptions.enabledLocations=this._config.enabledLocations,this._clsTargetAdDensitySiteExperiment=this._clsOptions.siteAds.siteExperiments?new ce(this._clsOptions):null}}function ue(e,t){if(null==e)return{};var i,n,s={},o=Object.keys(e);for(n=0;n<o.length;n++)i=o[n],t.indexOf(i)>=0||(s[i]=e[i]);return s}class pe{get enabled(){return!0}}class me extends pe{setPotentialPlayersMap(){const e=this._videoConfig.players||[],t=this._filterPlayerMap(),i=e.filter((e=>"stationaryRelated"===e.type&&e.enabled));return t.stationaryRelated=i,this._potentialPlayerMap=t,this._potentialPlayerMap}_filterPlayerMap(){const e=this._videoConfig.players,t={stickyRelated:[],stickyPlaylist:[],stationaryRelated:[]};return e&&e.length?e.filter((e=>{var t;return null==(t=e.devices)?void 0:t.includes(this._device)})).reduce(((e,t)=>(e[t.type]||(v.event(this._component,"constructor","Unknown Video Player Type detected",t.type),e[t.type]=[]),t.enabled&&e[t.type].push(t),e)),t):t}_checkPlayerSelectorOnPage(e){const t=this._potentialPlayerMap[e].map((e=>({player:e,playerElement:this._getPlacementElement(e)})));return t.length?t[0]:{player:null,playerElement:null}}_getOverrideElement(e,t,i){if(e&&t){const n=document.createElement("div");t.insertAdjacentElement(e.position,n),i=n}else{const{player:e,playerElement:t}=this._checkPlayerSelectorOnPage("stickyPlaylist");if(e&&t){const n=document.createElement("div");t.insertAdjacentElement(e.position,n),i=n}}return i}_shouldOverrideElement(e){const t=e.getAttribute("override-embed");return"true"===t||"false"===t?"true"===t:!!this._videoConfig.relatedSettings&&this._videoConfig.relatedSettings.overrideEmbedLocation}_checkPageSelector(e,t,i=[]){if(e&&t&&0===i.length){return!("/"===window.location.pathname)&&v.event("VideoUtils","getPlacementElement",new Error(`PSNF: ${e} does not exist on the page`)),!1}return!0}_getElementSelector(e,t,i){return t&&t.length>i?t[i]:(v.event("VideoUtils","getPlacementElement",new Error(`ESNF: ${e} does not exist on the page`)),null)}_getPlacementElement(e){const{pageSelector:t,elementSelector:i,skip:n}=e,s=I(t),{valid:o,elements:r}=s,a=ue(s,["valid","elements"]),l=O(i),{valid:c,elements:d}=l,h=ue(l,["valid","elements"]);if(""!==t&&!o)return v.error("VideoUtils","getPlacementElement",new Error(`${t} is not a valid selector`),a),null;if(!c)return v.error("VideoUtils","getPlacementElement",new Error(`${i} is not a valid selector`),h),null;if(!this._checkPageSelector(t,o,r))return null;return this._getElementSelector(i,d,n)||null}_getEmbeddedPlayerType(e){let t=e.getAttribute("data-player-type");return t&&"default"!==t||(t=this._videoConfig.relatedSettings?this._videoConfig.relatedSettings.defaultPlayerType:"static"),this._stickyRelatedOnPage&&(t="static"),t}_getMediaId(e){const t=e.getAttribute("data-video-id");return!!t&&(this._relatedMediaIds.push(t),t)}_createRelatedPlayer(e,t,i,n){"collapse"===t?this._createCollapsePlayer(e,i):"static"===t&&this._createStaticPlayer(e,i,n)}_createCollapsePlayer(t,i){const{player:n,playerElement:s}=this._checkPlayerSelectorOnPage("stickyRelated"),o=n||this._potentialPlayerMap.stationaryRelated[0];if(o&&o.playerId){this._shouldOverrideElement(i)&&(i=this._getOverrideElement(n,s,i)),i=document.querySelector(`#cls-video-container-${t} > div`)||i,this._createStickyRelatedPlayer(e({},o,{mediaId:t}),i)}else v.error(this._component,"_createCollapsePlayer","No video player found")}_createStaticPlayer(t,i,n){if(this._potentialPlayerMap.stationaryRelated.length&&this._potentialPlayerMap.stationaryRelated[0].playerId){const s=this._potentialPlayerMap.stationaryRelated[0];this._createStationaryRelatedPlayer(e({},s,{mediaOrPlaylistId:t}),i,n)}else v.error(this._component,"_createStaticPlayer","No video player found")}_shouldRunAutoplayPlayers(){return!(!this._isVideoAllowedOnPage()||!this._potentialPlayerMap.stickyRelated.length&&!this._potentialPlayerMap.stickyPlaylist.length)}_setPlaylistMediaIdWhenStationaryOnPage(t,i){if(this._potentialPlayerMap.stationaryRelated.length&&this._potentialPlayerMap.stationaryRelated[0].playerId&&t&&t.length){const n=t[0].getAttribute("data-video-id");return n?e({},i,{mediaId:n}):i}return i}_determineAutoplayPlayers(e){const t=this._component,i="VideoManagerComponent"===t,n=this._context;if(this._stickyRelatedOnPage)return void v.event(t,"stickyRelatedOnPage",i&&{device:n&&n.device,isDesktop:this._device}||{});const{playerElement:s}=this._checkPlayerSelectorOnPage("stickyPlaylist");let{player:o}=this._checkPlayerSelectorOnPage("stickyPlaylist");o&&o.playerId&&s?(o=this._setPlaylistMediaIdWhenStationaryOnPage(e,o),this._createPlaylistPlayer(o,s)):Math.random()<.01&&setTimeout((()=>{v.event(t,"noStickyPlaylist",i&&{vendor:"none",device:n&&n.device,isDesktop:this._device}||{})}),1e3)}_initializeRelatedPlayers(e){const t=new Map;for(let i=0;i<e.length;i++){const n=e[i],s=n.offsetParent,o=this._getEmbeddedPlayerType(n),r=this._getMediaId(n);if(s&&r){const e=(t.get(r)||0)+1;t.set(r,e),this._createRelatedPlayer(r,o,n,e)}}}constructor(e,t,i){super(),this._videoConfig=e,this._component=t,this._context=i,this._stickyRelatedOnPage=!1,this._relatedMediaIds=[],this._device=x()?"desktop":"mobile",this._potentialPlayerMap=this.setPotentialPlayersMap()}}class ge extends me{init(){this._initializePlayers()}_wrapVideoPlayerWithCLS(e,t,i=0){if(e.parentNode){const n=e.offsetWidth*(9/16),s=this._createGenericCLSWrapper(n,t,i);return e.parentNode.insertBefore(s,e),s.appendChild(e),s}return null}_createGenericCLSWrapper(e,t,i){const n=document.createElement("div");return n.id=`cls-video-container-${t}`,n.className="adthrive",n.style.minHeight=`${e+i}px`,n}_getTitleHeight(){const e=document.createElement("h3");e.style.margin="10px 0",e.innerText="Title",e.style.visibility="hidden",document.body.appendChild(e);const t=window.getComputedStyle(e),i=parseInt(t.height,10),n=parseInt(t.marginTop,10),s=parseInt(t.marginBottom,10);return document.body.removeChild(e),Math.min(i+s+n,50)}_initializePlayers(){const e=document.querySelectorAll(this._IN_POST_SELECTOR);e.length&&this._initializeRelatedPlayers(e),this._shouldRunAutoplayPlayers()&&this._determineAutoplayPlayers(e)}_createStationaryRelatedPlayer(e,t,i){const n="mobile"===this._device?[400,225]:[640,360],s=p;if(t&&e.mediaOrPlaylistId){const o=`${e.mediaOrPlaylistId}_${i}`,r=this._wrapVideoPlayerWithCLS(t,o);this._playersAddedFromPlugin.push(e.mediaOrPlaylistId),r&&this._clsOptions.setInjectedVideoSlots({playerId:e.playerId,playerName:s,playerSize:n,element:r,type:"stationaryRelated"})}}_createStickyRelatedPlayer(e,t){const i="mobile"===this._device?[400,225]:[640,360],n=h;if(this._stickyRelatedOnPage=!0,this._videoConfig.mobileStickyPlayerOnPage="mobile"===this._device,t&&e.position&&e.mediaId){const s=document.createElement("div");t.insertAdjacentElement(e.position,s);const o=this._getTitleHeight(),r=this._wrapVideoPlayerWithCLS(s,e.mediaId,this._WRAPPER_BAR_HEIGHT+o);this._playersAddedFromPlugin.push(e.mediaId),r&&this._clsOptions.setInjectedVideoSlots({playlistId:e.playlistId,playerId:e.playerId,playerSize:i,playerName:n,element:s,type:"stickyRelated"})}}_createPlaylistPlayer(e,t){const i=e.playlistId,n="mobile"===this._device?u:d,s="mobile"===this._device?[400,225]:[640,360];this._videoConfig.mobileStickyPlayerOnPage=!0;const o=document.createElement("div");t.insertAdjacentElement(e.position,o);let r=this._WRAPPER_BAR_HEIGHT;e.title&&(r+=this._getTitleHeight());const a=this._wrapVideoPlayerWithCLS(o,i,r);this._playersAddedFromPlugin.push(`playlist-${i}`),a&&this._clsOptions.setInjectedVideoSlots({playlistId:e.playlistId,playerId:e.playerId,playerSize:s,playerName:n,element:o,type:"stickyPlaylist"})}_isVideoAllowedOnPage(){const e=this._clsOptions.disableAds;if(e&&e.video){let t="";e.reasons.has("video_tag")?t="video tag":e.reasons.has("video_plugin")?t="video plugin":e.reasons.has("video_page")&&(t="command queue");const i=t?"ClsVideoInsertionMigrated":"ClsVideoInsertion";return v.error(i,"isVideoAllowedOnPage",new Error(`DBP: Disabled by publisher via ${t||"other"}`)),!1}return!this._clsOptions.videoDisabledFromPlugin}constructor(e,t){super(e,"ClsVideoInsertion"),this._videoConfig=e,this._clsOptions=t,this._IN_POST_SELECTOR=".adthrive-video-player",this._WRAPPER_BAR_HEIGHT=36,this._playersAddedFromPlugin=[],t.removeVideoTitleWrapper&&(this._WRAPPER_BAR_HEIGHT=0)}}class ye{add(e,t,i,n=document){this._map.push({el:e,coords:t,dynamicAd:i,target:n})}get map(){return this._map}sort(){this._map.sort((({coords:e},{coords:t})=>e-t))}filterUsed(){this._map=this._map.filter((({dynamicAd:e})=>!e.used))}reset(){this._map=[]}constructor(){this._map=[]}}class _e extends ye{}const fe=e=>{const t=f(),i=(()=>{const e=w()?"mobile":"tablet";return x(g)?"desktop":e})(),n=e.siteAdsProfiles;let s=null;if(n&&n.length)for(const e of n){const n=e.targeting.device,o=e.targeting.browserEngine,r=n&&n.length&&n.includes(i),a=o&&o.length&&o.includes(t);r&&a&&(s=e)}return s};try{(()=>{const e=new R;e&&e.enabled&&(e.siteAds&&(e=>{const t=fe(e);if(t){const e=t.profileId;document.body.classList.add(`raptive-profile-${e}`)}})(e.siteAds),new he(e,new _e).start(),new ge(new H(e),e).init())})()}catch(e){v.error("CLS","pluginsertion-iife",e),window.adthriveCLS&&(window.adthriveCLS.injectedFromPlugin=!1)}}();
</script><script data-no-optimize="1" data-cfasync="false">(function () {var clsElements = document.querySelectorAll("script[id^='cls-']"); window.adthriveCLS && clsElements && clsElements.length === 0 ? window.adthriveCLS.injectedFromPlugin = false : ""; })();</script><script type="rocketlazyloadscript" data-rocket-type="text/javascript">(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="rocketlazyloadscript">window.wprm_recipes = {"recipe-33954":{"type":"food","name":"Soft &amp; Fluffy Vegan Blueberry Muffins with A Bit of Whole Wheat Flour","slug":"wprm-soft-fluffy-vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour","image_url":"https:\/\/thefirstmess.com\/wp-content\/uploads\/2025\/03\/vegan-blueberry-muffins-with-a-bit-of-whole-wheat-flour-maple-06.jpg","rating":{"count":3,"total":15,"average":5,"type":{"comment":3,"no_comment":0,"user":0},"user":0},"ingredients":[{"uid":0,"amount":"1 \u00bd","unit":"cups","name":"(179 grams) all-purpose flour","notes":"","unit_id":2945,"id":5043,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"1 \u00bd","unit":"cups","unitParsed":"cups"}}},{"uid":1,"amount":"\u00bd","unit":"cup","name":"(57 grams) whole wheat flour","notes":"","unit_id":2929,"id":5044,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"\u00bd","unit":"cup","unitParsed":"cup"}}},{"uid":2,"amount":"1 \u00bd","unit":"teaspoons","name":"baking powder","notes":"","unit_id":2939,"id":500,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"1 \u00bd","unit":"teaspoons","unitParsed":"teaspoons"}}},{"uid":3,"amount":"1","unit":"teaspoon","name":"baking soda","notes":"","unit_id":2934,"id":501,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"1","unit":"teaspoon","unitParsed":"teaspoon"}}},{"uid":4,"amount":"\u00bd","unit":"teaspoon","name":"fine sea salt","notes":"","unit_id":2934,"id":502,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"\u00bd","unit":"teaspoon","unitParsed":"teaspoon"}}},{"uid":5,"amount":"\u00bd","unit":"teaspoon","name":"ground nutmeg","notes":"","unit_id":2934,"id":505,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"\u00bd","unit":"teaspoon","unitParsed":"teaspoon"}}},{"uid":6,"amount":"\u00bd","unit":"cup","name":"(120 ml) maple syrup","notes":"","unit_id":2929,"id":5019,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"\u00bd","unit":"cup","unitParsed":"cup"}}},{"uid":7,"amount":"\u00bd","unit":"cup","name":"(120 ml) unsweetened vegan yogurt ","notes":"(see note)","unit_id":2929,"id":5045,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"\u00bd","unit":"cup","unitParsed":"cup"}}},{"uid":8,"amount":"6","unit":"tablespoons","name":"(90 ml) sunflower oil","notes":"","unit_id":2932,"id":5046,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"6","unit":"tablespoons","unitParsed":"tablespoons"}}},{"uid":9,"amount":"\u00bc","unit":"cup","name":"(60 ml) unsweetened soy milk","notes":"","unit_id":2929,"id":5047,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"\u00bc","unit":"cup","unitParsed":"cup"}}},{"uid":10,"amount":"2","unit":"teaspoons","name":"vanilla extract","notes":"","unit_id":2939,"id":509,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"2","unit":"teaspoons","unitParsed":"teaspoons"}}},{"uid":11,"amount":"1","unit":"teaspoon","name":"orange zest","notes":"","unit_id":2934,"id":2007,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"1","unit":"teaspoon","unitParsed":"teaspoon"}}},{"uid":12,"amount":"1","unit":"tablespoon","name":"orange juice","notes":"","unit_id":2936,"id":732,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"1","unit":"tablespoon","unitParsed":"tablespoon"}}},{"uid":13,"amount":"1 \u00bd","unit":"cups","name":"(225 grams) fresh blueberries","notes":"","unit_id":2945,"id":5048,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"1 \u00bd","unit":"cups","unitParsed":"cups"}}}],"originalServings":"10","originalServingsParsed":10,"currentServings":"10","currentServingsParsed":10,"currentServingsFormatted":"10","currentServingsMultiplier":1,"originalSystem":1,"currentSystem":1,"unitSystems":[1],"originalAdvancedServings":{"shape":"round","unit":"inch","diameter":0,"width":0,"length":0,"height":0},"currentAdvancedServings":{"shape":"round","unit":"inch","diameter":0,"width":0,"length":0,"height":0}}}</script>

<style id='core-block-supports-inline-css' type='text/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-columns-is-layout-1{flex-wrap:nowrap;}.wp-block-gallery.wp-block-gallery-3{--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 ) ) );}
</style>
<script type="text/javascript" src="https://thefirstmess.com/wp-includes/js/comment-reply.min.js?ver=eac3ff6c141b27b729fdcfd267777bb0" id="comment-reply-js" async="async" data-wp-strategy="async"></script>
<script type="text/javascript" src="https://thefirstmess.com/wp-content/themes/thefirstmess2022/js/slick.min.js?ver=1.8.1" id="slick-js" data-rocket-defer defer></script>
<script type="text/javascript" src="https://thefirstmess.com/wp-content/themes/thefirstmess2022/js/jquery.mobile.events.min.js?ver=1.4.5" id="dmc-mobile-js-js" data-rocket-defer defer></script>
<script data-minify="1" type="text/javascript" src="https://thefirstmess.com/wp-content/cache/min/1/wp-content/themes/thefirstmess2022/js/functions.js?ver=1746733120" id="dmc-functions-js-js" data-rocket-defer defer></script>
<script type="text/javascript" id="wprm-public-js-extra">
/* <![CDATA[ */
var wprm_public = {"user":"0","endpoints":{"analytics":"https:\/\/thefirstmess.com\/wp-json\/wp-recipe-maker\/v1\/analytics","integrations":"https:\/\/thefirstmess.com\/wp-json\/wp-recipe-maker\/v1\/integrations","manage":"https:\/\/thefirstmess.com\/wp-json\/wp-recipe-maker\/v1\/manage","utilities":"https:\/\/thefirstmess.com\/wp-json\/wp-recipe-maker\/v1\/utilities"},"settings":{"jump_output_hash":true,"features_comment_ratings":true,"template_color_comment_rating":"#343434","instruction_media_toggle_default":"on","video_force_ratio":false,"analytics_enabled":false,"google_analytics_enabled":true,"print_new_tab":true,"print_recipe_identifier":"slug"},"post_id":"33956","home_url":"https:\/\/thefirstmess.com\/","print_slug":"wprm_print","permalinks":"\/%year%\/%monthnum%\/%day%\/%postname%\/","ajax_url":"https:\/\/thefirstmess.com\/wp-admin\/admin-ajax.php","nonce":"d8b01640bf","api_nonce":"4431c4a917","translations":[],"version":{"free":"9.8.3","premium":"9.8.2"}};
/* ]]> */
</script>
<script type="text/javascript" src="https://thefirstmess.com/wp-content/plugins/wp-recipe-maker/dist/public-modern.js?ver=9.8.3" id="wprm-public-js" data-rocket-defer defer></script>
<script type="text/javascript" id="wprmp-public-js-extra">
/* <![CDATA[ */
var wprmp_public = {"user":"0","endpoints":{"private_notes":"https:\/\/thefirstmess.com\/wp-json\/wp-recipe-maker\/v1\/private-notes","user_rating":"https:\/\/thefirstmess.com\/wp-json\/wp-recipe-maker\/v1\/user-rating"},"settings":{"recipe_template_mode":"modern","features_adjustable_servings":true,"adjustable_servings_url":false,"adjustable_servings_url_param":"servings","adjustable_servings_round_to_decimals":"2","unit_conversion_remember":false,"unit_conversion_temperature":false,"unit_conversion_temperature_precision":false,"unit_conversion_system_1_temperature":false,"unit_conversion_system_2_temperature":false,"unit_conversion_advanced_servings_conversion":false,"unit_conversion_system_1_length_unit":false,"unit_conversion_system_2_length_unit":false,"fractions_enabled":false,"fractions_use_mixed":true,"fractions_use_symbols":true,"fractions_max_denominator":"8","unit_conversion_system_1_fractions":false,"unit_conversion_system_2_fractions":false,"unit_conversion_enabled":false,"decimal_separator":"point","features_comment_ratings":true,"features_user_ratings":true,"user_ratings_type":"modal","user_ratings_force_comment_scroll_to_smooth":true,"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 your review!<\/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_open_url_parameter":"rate","user_ratings_require_comment":true,"user_ratings_require_name":true,"user_ratings_require_email":true,"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":"disc","template_instruction_list_style":"decimal","template_color_icon":"#343434"},"timer":{"sound_file":"https:\/\/thefirstmess.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":838860800,"text":{"image_size":"The file is too large. Maximum size:"}}};
/* ]]> */
</script>
<script type="text/javascript" src="https://thefirstmess.com/wp-content/plugins/wp-recipe-maker-premium/dist/public-premium.js?ver=9.8.2" id="wprmp-public-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://challenges.cloudflare.com/turnstile/v0/api.js?render=explicit" id="cfturnstile-js" defer="defer" data-wp-strategy="defer"></script>
<script data-minify="1" defer type="text/javascript" src="https://thefirstmess.com/wp-content/cache/min/1/wp-content/plugins/akismet/_inc/akismet-frontend.js?ver=1746733133" id="akismet-frontend-js"></script>
<script type="rocketlazyloadscript"></script><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="#23443e" 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="#23443e" 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="#23443e" 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="#23443e" 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="#23443e" 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="#23443e" 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="#23443e" 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="#23443e" 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="#23443e" 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="#23443e" 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="To leave a star rating, please share your feedback." 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 for="wprm-user-rating-name">Name *</label>
			<input type="text" id="wprm-user-rating-name" name="wprm-user-rating-name" value="" placeholder="" />		</div>
		<div class="wprm-user-rating-modal-field">
			<label for="wprm-user-rating-email">Email *</label>
			<input type="email" id="wprm-user-rating-email" name="wprm-user-rating-email" value="" placeholder="" />
		</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><div  id="wprm-popup-modal-2" class="wprm-popup-modal wprm-popup-modal-user-rating-summary" data-type="user-rating-summary" 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-2-title">
			<header class="wprm-popup-modal__header">
				<h2 class="wprm-popup-modal__title" id="wprm-popup-modal-2-title">
					Recipe Ratings without Comment				</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-2-content">
				<div class="wprm-loader"></div>
<div class="wprm-popup-modal-user-rating-summary-ratings"></div>
<div class="wprm-popup-modal-user-rating-summary-error">Something went wrong. Please try again.</div>			</div>

					</div>
  	</div>
	</div><script>!function(){"use strict";!function(e){if(-1===e.cookie.indexOf("__adblocker")){e.cookie="__adblocker=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/";var t=new XMLHttpRequest;t.open("GET","https://ads.adthrive.com/abd/abd.js",!0),t.onreadystatechange=function(){if(XMLHttpRequest.DONE===t.readyState)if(200===t.status){var a=e.createElement("script");a.innerHTML=t.responseText,e.getElementsByTagName("head")[0].appendChild(a)}else{var n=new Date;n.setTime(n.getTime()+3e5),e.cookie="__adblocker=true; expires="+n.toUTCString()+"; path=/"}},t.send()}}(document)}();
</script><script type="rocketlazyloadscript">!function(){"use strict";var e;e=document,function(){var t,n;function r(){var t=e.createElement("script");t.src="https://cafemedia-com.videoplayerhub.com/galleryplayer.js",e.head.appendChild(t)}function a(){var t=e.cookie.match("(^|[^;]+)\\s*__adblocker\\s*=\\s*([^;]+)");return t&&t.pop()}function c(){clearInterval(n)}return{init:function(){var e;"true"===(t=a())?r():(e=0,n=setInterval((function(){100!==e&&"false"!==t||c(),"true"===t&&(r(),c()),t=a(),e++}),50))}}}().init()}();
</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://thefirstmess.com/wp-content/plugins/wp-rocket/assets/js/lazyload/17.8.3/lazyload.min.js"></script><script id="bs-cache-speculation-rules" type="speculationrules">
{"prerender":[{"source":"document","where":{"and":[{"href_matches":"\/*"},{"not":{"href_matches":["\/wp-*.php","\/wp-admin\/*","\/wp-content\/*","\/wp-content\/plugins\/*","\/wp-content\/uploads\/*","\/wp-content\/themes\/*","\/checkout\/*","\/checkouts\/*","\/logout\/*","\/*\/delete\/*","\/*\/print\/*","\/wprm_print\/*","\/*\\?*(^|&)(_wpnonce|ac|add-to-cart|add_to_cart|add-to-checkout|attachment_id|cart|download_id|download_media_file|edd_action|edd_options|media_file|media_type|wlmapi|wc-api)=*"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prerender, .no-prerender a"}}]},"eagerness":"moderate"}]}
</script>
<script id="bs-cache-instant-prefetch-invoker-js" type="text/javascript">
/* <![CDATA[ */
document.addEventListener("DOMContentLoaded",function(){if(!(typeof HTMLScriptElement !== "undefined" && typeof HTMLScriptElement.supports === "function" && HTMLScriptElement.supports && HTMLScriptElement.supports("speculationrules"))) {document.querySelectorAll('script[type="speculationrules"]').forEach(script => script.remove());var bs_cache_instant_prefetch_script_element = document.createElement("script");bs_cache_instant_prefetch_script_element.id = "bs-cache-instant-prefetch-js", bs_cache_instant_prefetch_script_element.type = "module", bs_cache_instant_prefetch_script_element.src = "https://thefirstmess.com/wp-content/plugins/bigscoots-cache/assets/js/bs-cache-instant-prefetch-page.min.js", document.body.appendChild(bs_cache_instant_prefetch_script_element)}})
/* ]]> */
</script>
<!-- Hi there! Copyright 2021 Dan Miller Coding -->
</body>
</html><!--
Performance optimized by Redis Object Cache. Learn more: https://wprediscache.com

Retrieved 4615 objects (1 MB) from Redis using PhpRedis (v5.3.7).
-->