File: platingpixels_2.testhtml

package info (click to toggle)
python-recipe-scrapers 15.9.0-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 246,580 kB
  • sloc: python: 13,214; makefile: 3
file content (969 lines) | stat: -rw-r--r-- 370,479 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
<!doctype html>
<html lang="en-US" class="no-js" itemtype="https://schema.org/Blog" itemscope>
<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="1.2.3",this.triggerEvents=["keydown","mousedown","mousemove","touchmove","touchstart","touchend","wheel"],this.userEventHandler=this._triggerListener.bind(this),this.touchStartHandler=this._onTouchStart.bind(this),this.touchMoveHandler=this._onTouchMove.bind(this),this.touchEndHandler=this._onTouchEnd.bind(this),this.clickHandler=this._onClick.bind(this),this.interceptedClicks=[],window.addEventListener("pageshow",t=>{this.persisted=t.persisted}),window.addEventListener("DOMContentLoaded",()=>{this._preconnect3rdParties()}),this.delayedScripts={normal:[],async:[],defer:[]},this.trash=[],this.allJQueries=[]}_addUserInteractionListener(t){if(document.hidden){t._triggerListener();return}this.triggerEvents.forEach(e=>window.addEventListener(e,t.userEventHandler,{passive:!0})),window.addEventListener("touchstart",t.touchStartHandler,{passive:!0}),window.addEventListener("mousedown",t.touchStartHandler),document.addEventListener("visibilitychange",t.userEventHandler)}_removeUserInteractionListener(){this.triggerEvents.forEach(t=>window.removeEventListener(t,this.userEventHandler,{passive:!0})),document.removeEventListener("visibilitychange",this.userEventHandler)}_onTouchStart(t){"HTML"!==t.target.tagName&&(window.addEventListener("touchend",this.touchEndHandler),window.addEventListener("mouseup",this.touchEndHandler),window.addEventListener("touchmove",this.touchMoveHandler,{passive:!0}),window.addEventListener("mousemove",this.touchMoveHandler),t.target.addEventListener("click",this.clickHandler),this._renameDOMAttribute(t.target,"onclick","rocket-onclick"),this._pendingClickStarted())}_onTouchMove(t){window.removeEventListener("touchend",this.touchEndHandler),window.removeEventListener("mouseup",this.touchEndHandler),window.removeEventListener("touchmove",this.touchMoveHandler,{passive:!0}),window.removeEventListener("mousemove",this.touchMoveHandler),t.target.removeEventListener("click",this.clickHandler),this._renameDOMAttribute(t.target,"rocket-onclick","onclick"),this._pendingClickFinished()}_onTouchEnd(t){window.removeEventListener("touchend",this.touchEndHandler),window.removeEventListener("mouseup",this.touchEndHandler),window.removeEventListener("touchmove",this.touchMoveHandler,{passive:!0}),window.removeEventListener("mousemove",this.touchMoveHandler)}_onClick(t){t.target.removeEventListener("click",this.clickHandler),this._renameDOMAttribute(t.target,"rocket-onclick","onclick"),this.interceptedClicks.push(t),t.preventDefault(),t.stopPropagation(),t.stopImmediatePropagation(),this._pendingClickFinished()}_replayClicks(){window.removeEventListener("touchstart",this.touchStartHandler,{passive:!0}),window.removeEventListener("mousedown",this.touchStartHandler),this.interceptedClicks.forEach(t=>{t.target.dispatchEvent(new MouseEvent("click",{view:t.view,bubbles:!0,cancelable:!0}))})}_waitForPendingClicks(){return new Promise(t=>{this._isClickPending?this._pendingClickFinished=t:t()})}_pendingClickStarted(){this._isClickPending=!0}_pendingClickFinished(){this._isClickPending=!1}_renameDOMAttribute(t,e,r){t.hasAttribute&&t.hasAttribute(e)&&(event.target.setAttribute(r,event.target.getAttribute(e)),event.target.removeAttribute(e))}_triggerListener(){this._removeUserInteractionListener(this),"loading"===document.readyState?document.addEventListener("DOMContentLoaded",this._loadEverythingNow.bind(this)):this._loadEverythingNow()}_preconnect3rdParties(){let t=[];document.querySelectorAll("script[type=rocketlazyloadscript]").forEach(e=>{if(e.hasAttribute("src")){let r=new URL(e.src).origin;r!==location.origin&&t.push({src:r,crossOrigin:e.crossOrigin||"module"===e.getAttribute("data-rocket-type")})}}),t=[...new Map(t.map(t=>[JSON.stringify(t),t])).values()],this._batchInjectResourceHints(t,"preconnect")}async _loadEverythingNow(){this.lastBreath=Date.now(),this._delayEventListeners(this),this._delayJQueryReady(this),this._handleDocumentWrite(),this._registerAllDelayedScripts(),this._preloadAllScripts(),await this._loadScriptsFromList(this.delayedScripts.normal),await this._loadScriptsFromList(this.delayedScripts.defer),await this._loadScriptsFromList(this.delayedScripts.async);try{await this._triggerDOMContentLoaded(),await this._triggerWindowLoad()}catch(t){console.error(t)}window.dispatchEvent(new Event("rocket-allScriptsLoaded")),this._waitForPendingClicks().then(()=>{this._replayClicks()}),this._emptyTrash()}_registerAllDelayedScripts(){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 _transformScript(t){return new Promise((await this._littleBreath(),navigator.userAgent.indexOf("Firefox/")>0||""===navigator.vendor)?e=>{let r=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"),r.setAttribute(e,t.nodeValue))}),t.text&&(r.text=t.text),r.hasAttribute("src")?(r.addEventListener("load",e),r.addEventListener("error",e)):(r.text=t.text,e());try{t.parentNode.replaceChild(r,t)}catch(i){e()}}:async e=>{function r(){t.setAttribute("data-rocket-status","failed"),e()}try{let i=t.getAttribute("data-rocket-type"),n=t.getAttribute("data-rocket-src");t.text,i?(t.type=i,t.removeAttribute("data-rocket-type")):t.removeAttribute("type"),t.addEventListener("load",function r(){t.setAttribute("data-rocket-status","executed"),e()}),t.addEventListener("error",r),n?(t.removeAttribute("data-rocket-src"),t.src=n):t.src="data:text/javascript;base64,"+window.btoa(unescape(encodeURIComponent(t.text)))}catch(s){r()}})}async _loadScriptsFromList(t){let e=t.shift();return e&&e.isConnected?(await this._transformScript(e),this._loadScriptsFromList(t)):Promise.resolve()}_preloadAllScripts(){this._batchInjectResourceHints([...this.delayedScripts.normal,...this.delayedScripts.defer,...this.delayedScripts.async],"preload")}_batchInjectResourceHints(t,e){var r=document.createDocumentFragment();t.forEach(t=>{let i=t.getAttribute&&t.getAttribute("data-rocket-src")||t.src;if(i){let n=document.createElement("link");n.href=i,n.rel=e,"preconnect"!==e&&(n.as="script"),t.getAttribute&&"module"===t.getAttribute("data-rocket-type")&&(n.crossOrigin=!0),t.crossOrigin&&(n.crossOrigin=t.crossOrigin),t.integrity&&(n.integrity=t.integrity),r.appendChild(n),this.trash.push(n)}}),document.head.appendChild(r)}_delayEventListeners(t){let e={};function r(t,r){!function t(r){!e[r]&&(e[r]={originalFunctions:{add:r.addEventListener,remove:r.removeEventListener},eventsToRewrite:[]},r.addEventListener=function(){arguments[0]=i(arguments[0]),e[r].originalFunctions.add.apply(r,arguments)},r.removeEventListener=function(){arguments[0]=i(arguments[0]),e[r].originalFunctions.remove.apply(r,arguments)});function i(t){return e[r].eventsToRewrite.indexOf(t)>=0?"rocket-"+t:t}}(t),e[t].eventsToRewrite.push(r)}function i(t,e){let r=t[e];Object.defineProperty(t,e,{get:()=>r||function(){},set(i){t["rocket"+e]=r=i}})}r(document,"DOMContentLoaded"),r(window,"DOMContentLoaded"),r(window,"load"),r(window,"pageshow"),r(document,"readystatechange"),i(document,"onreadystatechange"),i(window,"onload"),i(window,"onpageshow")}_delayJQueryReady(t){let e;function r(r){if(r&&r.fn&&!t.allJQueries.includes(r)){r.fn.ready=r.fn.init.prototype.ready=function(e){return t.domReadyFired?e.bind(document)(r):document.addEventListener("rocket-DOMContentLoaded",()=>e.bind(document)(r)),r([])};let i=r.fn.on;r.fn.on=r.fn.init.prototype.on=function(){if(this[0]===window){function t(t){return t.split(" ").map(t=>"load"===t||0===t.indexOf("load.")?"rocket-jquery-load":t).join(" ")}"string"==typeof arguments[0]||arguments[0]instanceof String?arguments[0]=t(arguments[0]):"object"==typeof arguments[0]&&Object.keys(arguments[0]).forEach(e=>{let r=arguments[0][e];delete arguments[0][e],arguments[0][t(e)]=r})}return i.apply(this,arguments),this},t.allJQueries.push(r)}e=r}r(window.jQuery),Object.defineProperty(window,"jQuery",{get:()=>e,set(t){r(t)}})}async _triggerDOMContentLoaded(){this.domReadyFired=!0,await this._littleBreath(),document.dispatchEvent(new Event("rocket-DOMContentLoaded")),await this._littleBreath(),window.dispatchEvent(new Event("rocket-DOMContentLoaded")),await this._littleBreath(),document.dispatchEvent(new Event("rocket-readystatechange")),await this._littleBreath(),document.rocketonreadystatechange&&document.rocketonreadystatechange()}async _triggerWindowLoad(){await this._littleBreath(),window.dispatchEvent(new Event("rocket-load")),await this._littleBreath(),window.rocketonload&&window.rocketonload(),await this._littleBreath(),this.allJQueries.forEach(t=>t(window).trigger("rocket-jquery-load")),await this._littleBreath();let t=new Event("rocket-pageshow");t.persisted=this.persisted,window.dispatchEvent(t),await this._littleBreath(),window.rocketonpageshow&&window.rocketonpageshow({persisted:this.persisted})}_handleDocumentWrite(){let t=new Map;document.write=document.writeln=function(e){let r=document.currentScript;r||console.error("WPRocket unable to document.write this: "+e);let i=document.createRange(),n=r.parentElement,s=t.get(r);void 0===s&&(s=r.nextSibling,t.set(r,s));let a=document.createDocumentFragment();i.setStart(a,0),a.appendChild(i.createContextualFragment(e)),n.insertBefore(a,s)}}async _littleBreath(){Date.now()-this.lastBreath>45&&(await this._requestAnimFrame(),this.lastBreath=Date.now())}async _requestAnimFrame(){return document.hidden?new Promise(t=>setTimeout(t)):new Promise(t=>requestAnimationFrame(t))}_emptyTrash(){this.trash.forEach(t=>t.remove())}static run(){let t=new RocketLazyLoadScripts;t._addUserInteractionListener(t)}}RocketLazyLoadScripts.run();</script>

	<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
	<meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />

<!-- Social Warfare v4.4.2 https://warfareplugins.com - BEGINNING OF OUTPUT -->
<meta property="og:description" content="I'm a big fan of good old-fashioned comfort foods. You can’t get more classic than Chicken Fried Chicken. It’s a simple recipe of breaded chicken breasts that are fried to crispy, extra crunchy goodness. This is a sponsored post written by me on behalf of Foster Farms. All opinions are 100% mine. These photos don’t">
<meta property="og:title" content="Chicken Fried Chicken">
<meta property="article_author" content="https://facebook.com/platingpixels">
<meta property="article_publisher" content="http://facebook.com/platingpixels">
<meta property="og:image" content="https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-2.jpg">
<meta property="fb:app_id" content="529576650555031">
<meta property="og:type" content="article">
<meta property="og:url" content="https://www.platingpixels.com/chicken-fried-chicken/">
<meta property="og:site_name" content="Plating Pixels">
<meta property="article:published_time" content="2022-09-19T08:37:22-07:00">
<meta property="article:modified_time" content="2022-10-20T11:05:44-07:00">
<meta property="og:updated_time" content="2022-10-20T11:05:44-07:00">
<meta name="twitter:title" content="Chicken Fried Chicken">
<meta name="twitter:description" content="I'm a big fan of good old-fashioned comfort foods. You can’t get more classic than Chicken Fried Chicken. It’s a simple recipe of breaded chicken breasts that are fried to crispy, extra crunchy goodness. This is a sponsored post written by me on behalf of Foster Farms. All opinions are 100% mine. These photos don’t">
<meta name="twitter:image" content="https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-2.jpg">
<meta name="twitter:site" content="@platingpixels">
<meta name="twitter:creator" content="@platingpixels">
<meta name="twitter:card" content="summary_large_image">
<style></style>
<!-- Social Warfare v4.4.2 https://warfareplugins.com - END OF OUTPUT -->


	<!-- This site is optimized with the Yoast SEO plugin v21.3 - https://yoast.com/wordpress/plugins/seo/ -->
	<title>Chicken Fried Chicken - Plating Pixels</title><link rel="preload" as="font" href="https://www.platingpixels.com/wp-content/plugins/social-warfare/assets/fonts/sw-icon-font.woff?ver=4.4.1" crossorigin><link rel="preload" as="font" href="https://fonts.gstatic.com/s/albertsans/v1/i7dOIFdwYjGaAMFtZd_QA1ZbYFc.woff2" crossorigin><link rel="preload" as="font" href="https://fonts.gstatic.com/s/alegreyasans/v24/5aUz9_-1phKLFgshYDvh6Vwt7VptvQ.woff2" crossorigin><link rel="preload" as="font" href="https://fonts.gstatic.com/s/sen/v9/6xKjdSxYI9_3nPWN.woff2" crossorigin><link rel="preload" as="font" href="https://fonts.gstatic.com/s/zillaslab/v11/dFa6ZfeM_74wlPZtksIFajo6_Q.woff2" crossorigin><style id="wpr-usedcss">@font-face{font-family:sw-icon-font;src:url("https://www.platingpixels.com/wp-content/plugins/social-warfare/assets/fonts/sw-icon-font.eot?ver=4.4.1");src:url("https://www.platingpixels.com/wp-content/plugins/social-warfare/assets/fonts/sw-icon-font.eot?ver=4.4.1#iefix") format("embedded-opentype"),url("https://www.platingpixels.com/wp-content/plugins/social-warfare/assets/fonts/sw-icon-font.woff?ver=4.4.1") format("woff"),url("https://www.platingpixels.com/wp-content/plugins/social-warfare/assets/fonts/sw-icon-font.ttf?ver=4.4.1") format("truetype"),url("https://www.platingpixels.com/wp-content/plugins/social-warfare/assets/fonts/sw-icon-font.svg?ver=4.4.1#1445203416") format("svg");font-weight:400;font-style:normal;font-display:swap}img.emoji{display:inline!important;border:none!important;box-shadow:none!important;height:1em!important;width:1em!important;margin:0 .07em!important;vertical-align:-.1em!important;background:0 0!important;padding:0!important}body:not(:hover) fieldset.wprm-comment-ratings-container:focus-within span{outline:#4D90FE solid 1px}.comment-form-wprm-rating{text-align:left;margin-top:5px;margin-bottom:20px}.comment-form-wprm-rating .wprm-rating-stars{display:inline-block;vertical-align:middle}fieldset.wprm-comment-ratings-container{position:relative;display:inline-block;padding:0;margin:0;border:0;background:0 0}fieldset.wprm-comment-ratings-container legend{position:absolute;opacity:0}fieldset.wprm-comment-ratings-container br{display:none}fieldset.wprm-comment-ratings-container input[type=radio]{float:left;margin:0!important;padding:0!important;width:16px;height:16px;min-width:0;min-height:0;opacity:0;border:0;cursor:pointer}fieldset.wprm-comment-ratings-container input[type=radio]:first-child{margin-left:-16px}fieldset.wprm-comment-ratings-container span{position:absolute;pointer-events:none;width:80px;height:16px;top:0;left:0;opacity:0;font-size:0}fieldset.wprm-comment-ratings-container span svg{width:100%!important;height: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:scale(-1,1)}.rtl fieldset.wprm-comment-ratings-container span{left:inherit;right:0}.rtl fieldset.wprm-comment-ratings-container span svg{transform:scale(-1,1)}img.wprm-comment-rating{display:block;margin:5px 0}img.wprm-comment-rating+br{display:none}.wprm-rating-star svg{display:inline;vertical-align:middle;width:16px;height:16px;margin:0}.wprm-recipe-container{outline:0}.wprm-recipe{overflow:hidden;zoom:1;text-align:left;clear:both}.wprm-recipe *{box-sizing:border-box}.wprm-recipe ol,.wprm-recipe ul{-webkit-margin-before:0;-webkit-margin-after:0;-webkit-padding-start:0;margin:0;padding:0}.wprm-recipe li{font-size:1em;margin:0 0 0 32px;padding:0}.wprm-recipe p{font-size:1em;margin:0;padding:0}.wprm-recipe li,.wprm-recipe li.wprm-recipe-instruction{list-style-position:outside}.wprm-recipe li:before{display:none}.wprm-recipe h1,.wprm-recipe h2,.wprm-recipe h3,.wprm-recipe h4,.wprm-recipe h5{clear:none;font-variant:normal;text-transform:none;letter-spacing:normal;margin:0;padding:0}.wprm-recipe a.wprm-recipe-link,.wprm-recipe a.wprm-recipe-link:hover{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.wprm-recipe .wprm-nutrition-label{margin-top:10px}body:not(.wprm-print) .wprm-recipe p:first-letter{font-size:inherit;line-height:inherit;color:inherit;margin:inherit;padding:inherit;font-family: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-call-to-action.wprm-call-to-action-simple{margin-top:10px;padding:5px 10px;display:flex;justify-content:center;align-items:middle}.wprm-call-to-action.wprm-call-to-action-simple .wprm-call-to-action-icon{font-size:2.2em;margin:5px .5em 5px 0}.wprm-call-to-action.wprm-call-to-action-simple .wprm-call-to-action-icon svg{margin-top:0}.wprm-call-to-action.wprm-call-to-action-simple .wprm-call-to-action-text-container{margin:5px 0}.wprm-call-to-action.wprm-call-to-action-simple .wprm-call-to-action-text-container .wprm-call-to-action-header{display:block;font-weight:700;font-size:1.3em}.wprm-recipe-block-container-columns{display:block}.wprm-recipe-block-container-columns .wprm-recipe-details-label{display:inline-block;min-width:130px}@media all and (max-width:450px){.wprm-call-to-action.wprm-call-to-action-simple{flex-wrap:wrap}.wprm-call-to-action.wprm-call-to-action-simple .wprm-call-to-action-text-container{text-align:center}.wprm-recipe-block-container-columns .wprm-recipe-details-label{min-width:0;margin-right:.4em}}.wprm-recipe-details-unit{font-size:.8em}@media only screen and (max-width:600px){.wprm-recipe-details-unit{font-size:1em}}.wprm-container-float-right{float:right;margin:0 0 10px 10px;text-align:center;position:relative;z-index:1}.rtl .wprm-container-float-right{float:left;margin:0 10px 10px 0}@media only screen and (max-width:640px){.rtl .wprm-container-float-right,.wprm-container-float-right{float:none;margin-left:0;margin-right:0}}.wprm-block-text-normal{font-weight:400;font-style:normal;text-transform:none}.wprm-block-text-light{font-weight:300!important}.wprm-block-text-bold{font-weight:700!important}.wprm-align-left{text-align:left}.wprm-recipe-header .wprm-recipe-icon{margin-right:5px}.wprm-recipe-header .wprm-unit-conversion-container{text-transform:none;font-style:normal;font-weight:400;opacity:1;font-size:16px}.wprm-recipe-icon svg{display:inline;vertical-align:middle;margin-top:-.15em;width:1.3em;height:1.3em;overflow:visible}.wprm-recipe-image img{display:block;margin:0 auto}.wprm-recipe-ingredients-container .wprm-recipe-ingredient-group-name{margin-top:.8em!important}.wprm-recipe-instructions-container .wprm-recipe-instruction-group-name{margin-top:.8em!important}.wprm-recipe-instructions-container .wprm-recipe-instruction-text{font-size:1em}.wprm-recipe-instructions-container .wprm-recipe-instruction-media{max-width:100%;margin:5px 0 15px}.wprm-recipe-link{cursor:pointer;text-decoration:none}.wprm-recipe-rating{white-space:nowrap}.wprm-recipe-rating svg{vertical-align:middle;margin-top:-.15em!important;width:1.1em;height:1.1em;margin:0}.wprm-recipe-rating .wprm-recipe-rating-details{font-size:.8em}.wprm-spacer{display:block!important;background:0 0!important;font-size:0;line-height:0;width:100%;height:10px}.wprm-spacer+.wprm-spacer{display:none!important}.wprm-recipe-instruction-text .wprm-spacer,.wprm-recipe-summary .wprm-spacer{display:block!important}:where(.wp-block-button__link){border-radius:9999px;box-shadow:none;padding:calc(.667em + 2px) calc(1.333em + 2px);text-decoration:none}:where(.wp-block-calendar table:not(.has-background) th){background:#ddd}:where(.wp-block-columns){margin-bottom:1.75em}:where(.wp-block-columns.has-background){padding:1.25em 2.375em}:where(.wp-block-post-comments input[type=submit]){border:none}:where(.wp-block-cover-image:not(.has-text-color)),:where(.wp-block-cover:not(.has-text-color)){color:#fff}:where(.wp-block-cover-image.is-light:not(.has-text-color)),:where(.wp-block-cover.is-light:not(.has-text-color)){color:#000}:where(.wp-block-file){margin-bottom:1.5em}:where(.wp-block-file__button){border-radius:2em;display:inline-block;padding:.5em 1em}:where(.wp-block-file__button):is(a):active,:where(.wp-block-file__button):is(a):focus,:where(.wp-block-file__button):is(a):hover,:where(.wp-block-file__button):is(a):visited{box-shadow:none;color:#fff;opacity:.85;text-decoration:none}h1.has-background,h2.has-background,h3.has-background,h4.has-background,h5.has-background{padding:1.25em 2.375em}.wp-block-image img{box-sizing:border-box;height:auto;max-width:100%;vertical-align:bottom}.wp-block-image[style*=border-radius] img,.wp-block-image[style*=border-radius]>a{border-radius:inherit}.wp-block-image.aligncenter{text-align:center}.wp-block-image.alignfull img,.wp-block-image.alignwide img{height:auto;width:100%}.wp-block-image .aligncenter,.wp-block-image.aligncenter{display:table}.wp-block-image .aligncenter{margin-left:auto;margin-right:auto}.wp-block-image :where(.has-border-color){border-style:solid}.wp-block-image :where([style*=border-top-color]){border-top-style:solid}.wp-block-image :where([style*=border-right-color]){border-right-style:solid}.wp-block-image :where([style*=border-bottom-color]){border-bottom-style:solid}.wp-block-image :where([style*=border-left-color]){border-left-style:solid}.wp-block-image :where([style*=border-width]){border-style:solid}.wp-block-image :where([style*=border-top-width]){border-top-style:solid}.wp-block-image :where([style*=border-right-width]){border-right-style:solid}.wp-block-image :where([style*=border-bottom-width]){border-bottom-style:solid}.wp-block-image :where([style*=border-left-width]){border-left-style:solid}.wp-block-image figure{margin:0}:where(.wp-block-latest-comments:not([style*=line-height] .wp-block-latest-comments__comment)){line-height:1.1}:where(.wp-block-latest-comments:not([style*=line-height] .wp-block-latest-comments__comment-excerpt p)){line-height:1.8}ol,ul{box-sizing:border-box}ol.has-background,ul.has-background{padding:1.25em 2.375em}:where(.wp-block-navigation.has-background .wp-block-navigation-item a:not(.wp-element-button)),:where(.wp-block-navigation.has-background .wp-block-navigation-submenu a:not(.wp-element-button)){padding:.5em 1em}:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item a:not(.wp-element-button)),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu a:not(.wp-element-button)),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu button.wp-block-navigation-item__content),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-pages-list__item button.wp-block-navigation-item__content){padding:.5em 1em}p.has-background{padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}:where(.wp-block-post-excerpt){margin-bottom:var(--wp--style--block-gap);margin-top:var(--wp--style--block-gap)}:where(.wp-block-pullquote){margin:0 0 1em}.wp-block-search__button{margin-left:10px;word-break:normal}.wp-block-search__button svg{fill:currentColor;min-height:24px;min-width:24px;vertical-align:text-bottom}:where(.wp-block-search__button){border:1px solid #ccc;padding:6px 10px}.wp-block-search__inside-wrapper{display:flex;flex:auto;flex-wrap:nowrap;max-width:100%}.wp-block-search__label{width:100%}.wp-block-search__input{-webkit-appearance:initial;appearance:none;border:1px solid #949494;flex-grow:1;margin-left:0;margin-right:0;min-width:3rem;padding:8px;text-decoration:unset!important}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper){border:1px solid #949494;box-sizing:border-box;padding:4px}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input{border:none;border-radius:0;padding:0 4px}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input:focus{outline:0}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) :where(.wp-block-search__button){padding:4px 8px}.wp-block-search.aligncenter .wp-block-search__inside-wrapper{margin:auto}.wp-block-social-links{background:0 0;box-sizing:border-box;margin-left:0;padding-left:0;padding-right:0;text-indent:0}.wp-block-social-links .wp-social-link a,.wp-block-social-links .wp-social-link a:hover{border-bottom:0;box-shadow:none;text-decoration:none}.wp-block-social-links .wp-social-link a{padding:.25em}.wp-block-social-links .wp-social-link svg{height:1em;width:1em}.wp-block-social-links .wp-social-link span:not(.screen-reader-text){font-size:.65em;margin-left:.5em;margin-right:.5em}.wp-block-social-links{font-size:24px}.wp-block-social-links.aligncenter{display:flex;justify-content:center}.wp-block-social-link{border-radius:9999px;display:block;height:auto;transition:transform .1s ease}.wp-block-social-link a{align-items:center;display:flex;line-height:0;transition:transform .1s ease}.wp-block-social-link:hover{transform:scale(1.1)}.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor,.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor svg,.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:active,.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:hover,.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:visited{fill:currentColor;color:currentColor}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link{background-color:#f0f0f0;color:#444}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook{background-color:#1778f2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram{background-color:#f00075;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pinterest{background-color:#e60122;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitter{background-color:#1da1f2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube{background-color:red;color:#fff}:where(.wp-block-term-description){margin-bottom:var(--wp--style--block-gap);margin-top:var(--wp--style--block-gap)}:where(pre.wp-block-verse){font-family:inherit}.entry-content{counter-reset:footnotes}.wp-element-button{cursor:pointer}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-text-align-center{text-align:center}.aligncenter{clear:both}.screen-reader-text{clip:rect(1px,1px,1px,1px);word-wrap:normal!important;border:0;-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{clip:auto!important;background-color:#ddd;-webkit-clip-path:none;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}body{--wp--preset--color--black:#000000;--wp--preset--color--cyan-bluish-gray:#abb8c3;--wp--preset--color--white:#ffffff;--wp--preset--color--pale-pink:#f78da7;--wp--preset--color--vivid-red:#cf2e2e;--wp--preset--color--luminous-vivid-orange:#ff6900;--wp--preset--color--luminous-vivid-amber:#fcb900;--wp--preset--color--light-green-cyan:#7bdcb5;--wp--preset--color--vivid-green-cyan:#00d084;--wp--preset--color--pale-cyan-blue:#8ed1fc;--wp--preset--color--vivid-cyan-blue:#0693e3;--wp--preset--color--vivid-purple:#9b51e0;--wp--preset--color--theme-palette-1:#8cc63f;--wp--preset--color--theme-palette-2:#73aa2a;--wp--preset--color--theme-palette-3:#222222;--wp--preset--color--theme-palette-4:#353535;--wp--preset--color--theme-palette-5:#454545;--wp--preset--color--theme-palette-6:#676767;--wp--preset--color--theme-palette-7:#a7a7a7;--wp--preset--color--theme-palette-8:#f7f7f7;--wp--preset--color--theme-palette-9:#ffffff;--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:14px;--wp--preset--font-size--medium:24px;--wp--preset--font-size--large:32px;--wp--preset--font-size--x-large:42px;--wp--preset--font-size--larger:40px;--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}body .is-layout-flex{flex-wrap:wrap;align-items:center}body .is-layout-flex>*{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}.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;width:1px;margin:-1px;padding:0;border:0;word-wrap:normal!important}.wpcf7 form .wpcf7-response-output{margin:2em .5em 1em;padding:.2em 1em;border:2px solid #00a0d2}.wpcf7 form.init .wpcf7-response-output,.wpcf7 form.resetting .wpcf7-response-output,.wpcf7 form.submitting .wpcf7-response-output{display:none}.wpcf7 form.sent .wpcf7-response-output{border-color:#46b450}.wpcf7 form.aborted .wpcf7-response-output,.wpcf7 form.failed .wpcf7-response-output{border-color:#dc3232}.wpcf7 form.spam .wpcf7-response-output{border-color:#f56e28}.wpcf7 form.invalid .wpcf7-response-output,.wpcf7 form.payment-required .wpcf7-response-output,.wpcf7 form.unaccepted .wpcf7-response-output{border-color:#ffb900}.wpcf7-form-control-wrap{position:relative}.wpcf7-not-valid-tip{color:#dc3232;font-size:1em;font-weight:400;display:block}.use-floating-validation-tip .wpcf7-not-valid-tip{position:relative;top:-2ex;left:1em;z-index:100;border:1px solid #dc3232;background:#fff;padding:.2em .8em;width:24em}.wpcf7-spinner{visibility:hidden;display:inline-block;background-color:#23282d;opacity:.75;width:24px;height:24px;border:none;border-radius:100%;padding:0;margin:0 24px;position:relative}form.submitting .wpcf7-spinner{visibility:visible}.wpcf7-spinner::before{content:'';position:absolute;background-color:#fbfbfc;top:4px;left:4px;width:6px;height:6px;border:none;border-radius:100%;transform-origin:8px 8px;animation-name:spin;animation-duration:1s;animation-timing-function:linear;animation-iteration-count:infinite}@media (prefers-reduced-motion:reduce){.wp-block-social-link{transition-delay:0s;transition-duration:0s}.wpcf7-spinner::before{animation-name:blink;animation-duration:2s}}@keyframes spin{from{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes blink{from{opacity:0}50%{opacity:1}to{opacity:0}}.wpcf7 input[type=file]{cursor:pointer}.wpcf7 input[type=file]:disabled{cursor:default}.wpcf7 .wpcf7-submit:disabled{cursor:not-allowed}.wpcf7 input[type=email],.wpcf7 input[type=tel],.wpcf7 input[type=url]{direction:ltr}.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{position:relative;background-color:#333;color:#fff;border-radius:4px;font-size:14px;line-height:1.4;white-space:normal;outline:0;transition-property:transform,visibility,opacity}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(0.54,1.5,0.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1}#wprm-timer-container{position:fixed;z-index:16777271;left:0;right:0;bottom:0;height:50px;font-size:24px;font-family:monospace,sans-serif;line-height:50px;background-color:#000;color:#fff;display:flex;align-items:center}#wprm-timer-container .wprm-timer-icon{cursor:pointer;padding:0 10px}#wprm-timer-container .wprm-timer-icon svg{display:table-cell;vertical-align:middle;width:24px;height: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{display:block;border:3px solid #fff;height:24px;width:100%}#wprm-timer-container span#wprm-timer-bar-container #wprm-timer-bar #wprm-timer-bar-elapsed{display:block;height:100%;width:0%;background-color:#fff;border:0}#wprm-timer-container.wprm-timer-finished{animation:1s linear infinite wprmtimerblink}@keyframes wprmtimerblink{50%{opacity:.5}}.wprm-recipe-advanced-servings-container{margin:5px 0;display:flex;align-items:center;flex-wrap:wrap}.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]{width:16px!important;margin:0!important;opacity:0}.wprm-checkbox-container label.wprm-checkbox-label{position:relative;display:inline!important;margin:0!important;left:0;padding-left:26px}.wprm-checkbox-container label::after,.wprm-checkbox-container label::before{position:absolute;content:"";display:inline-block}.rtl .wprm-checkbox-container label::after{right:5px}.wprm-checkbox-container label::before{height:18px;width:18px;border:1px solid;left:0;top:0}.wprm-checkbox-container label::after{height:5px;width:9px;border-left:2px solid;border-bottom:2px solid;transform:rotate(-45deg);left:5px;top:5px}.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;position:absolute;left:-32px;top:.25em;line-height:.9em}.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}.wprm-nutrition-label,html body .wprm-recipe-container .wprm-nutrition-label{display:inline-block;max-width:250px;border:1px solid #333;padding:5px;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:16px;text-align:left!important;color:#000}.wprm-nutrition-label .nutrition-title,html body .wprm-recipe-container .wprm-nutrition-label .nutrition-title{font-weight:700;font-size:24px;line-height:24px}.wprm-nutrition-label .nutrition-serving,html body .wprm-recipe-container .wprm-nutrition-label .nutrition-serving{font-size:10px;line-height:14px;font-weight:700}.wprm-nutrition-label .nutrition-item,.wprm-nutrition-label .nutrition-sub-item,html body .wprm-recipe-container .wprm-nutrition-label .nutrition-item,html body .wprm-recipe-container .wprm-nutrition-label .nutrition-sub-item{border-top:1px solid #333;clear:both}.wprm-nutrition-label .nutrition-sub-item,html body .wprm-recipe-container .wprm-nutrition-label .nutrition-sub-item{margin-left:14px}.wprm-nutrition-label .nutrition-percentage,html body .wprm-recipe-container .wprm-nutrition-label .nutrition-percentage{float:right}.wprm-nutrition-label .nutrition-line,html body .wprm-recipe-container .wprm-nutrition-label .nutrition-line{background-color:#333;height:5px;font-size:1px}.wprm-nutrition-label .nutrition-line.nutrition-line-big,html body .wprm-recipe-container .wprm-nutrition-label .nutrition-line.nutrition-line-big{height:10px}.wprm-nutrition-label .nutrition-warning,html body .wprm-recipe-container .wprm-nutrition-label .nutrition-warning{border-top:1px solid #333;clear:both;padding-top:5px;font-size:10px;color:#999}.rtl .wprm-nutrition-label,html body.rtl .wprm-recipe-container .wprm-nutrition-label{text-align:right!important}.rtl .wprm-nutrition-label .nutrition-sub-item,html body.rtl .wprm-recipe-container .wprm-nutrition-label .nutrition-sub-item{margin-left:0;margin-right:14px}.rtl .wprm-nutrition-label .nutrition-percentage,html body.rtl .wprm-recipe-container .wprm-nutrition-label .nutrition-percentage{float:left}.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;width:60px;margin:0;padding:5px}.wprm-recipe-servings-text-buttons-container{display:inline-flex}.wprm-recipe-servings-text-buttons-container input[type=text].wprm-recipe-servings{display:inline;width:40px;margin:0;padding:0;vertical-align:top;text-align:center;outline:0;border-radius:0!important}.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;height:30px;user-select:none;font-size:16px}.wprm-recipe-servings-text-buttons-container .wprm-recipe-servings-change{display:inline-block;width:20px;line-height:26px;background:#333;color:#fff;text-align:center;cursor:pointer;border-radius:3px}.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-right:none;border-top-right-radius:0!important;border-bottom-right-radius:0!important}.wprm-recipe-servings-text-buttons-container .wprm-recipe-servings-change.wprm-recipe-servings-increment{border-left:none;border-top-left-radius:0!important;border-bottom-left-radius:0!important}.wprm-recipe-servings-container .tippy-box{padding:5px 10px}.swp_social_panel.swp_default_full_color a,body .swp_social_panel.swp_other_full_color:hover a,html body .swp_social_panel.swp_individual_full_color .nc_tweetContainer:hover a{color:#fff}.swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_facebook,body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_facebook:not(:hover),html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_facebook:hover{border:1px solid #1877f2}.swp_social_panel.swp_default_full_color .swp_facebook,body .swp_social_panel.swp_other_full_color:hover .swp_facebook,html body .swp_social_panel.swp_individual_full_color .swp_facebook:hover{background:#1877f2;border:1px solid #0b5fcc}.swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_flipboard,body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_flipboard:not(:hover),html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_flipboard:hover{border:1px solid #bf2626}.swp_social_panel.swp_default_full_color .swp_flipboard,body .swp_social_panel.swp_other_full_color:hover .swp_flipboard,html body .swp_social_panel.swp_individual_full_color .swp_flipboard:hover{background:#bf2626;border:1px solid #941e1e}.swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_more,body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_more:not(:hover),html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_more:hover{border:1px solid #ee464f}.swp_social_panel.swp_default_full_color .swp_more,body .swp_social_panel.swp_other_full_color:hover .swp_more,html body .swp_social_panel.swp_individual_full_color .swp_more:hover{background:#ee464f;border:1px solid #ea1723}.swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_pinterest,body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_pinterest:not(:hover),html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_pinterest:hover{border:1px solid #e60023}.swp_social_panel.swp_default_full_color .swp_pinterest,body .swp_social_panel.swp_other_full_color:hover .swp_pinterest,html body .swp_social_panel.swp_individual_full_color .swp_pinterest:hover{background:#e60023;border:1px solid #b3001b}.swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_print,body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_print:not(:hover),html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_print:hover{border:1px solid #777}.swp_social_panel.swp_default_full_color .swp_print,body .swp_social_panel.swp_other_full_color:hover .swp_print,html body .swp_social_panel.swp_individual_full_color .swp_print:hover{background:#777;border:1px solid #5e5e5e}.swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_twitter,body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_twitter:not(:hover),html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_twitter:hover{border:1px solid #1da1f2}.swp_social_panel.swp_default_full_color .swp_twitter,body .swp_social_panel.swp_other_full_color:hover .swp_twitter,html body .swp_social_panel.swp_individual_full_color .swp_twitter:hover{background:#1da1f2;border:1px solid #0c85d0}.scale-90{transform:scale(.9)}.swp_social_panel:not(.nc_floater).scale-90.scale-full_width{width:111.11111%!important}.scale-100{transform:scale(1)}.swp_social_panel:not(.nc_floater).scale-100.scale-full_width{width:100%!important}.scale-full_width{transform-origin:left}@media print{.swp_social_panel{display:none;opacity:0;visibility:collapse}}html[lang] .site * i.sw{font-family:sw-icon-font!important}.swp_social_panel{clear:both;display:flex;height:34px;line-height:1;margin-bottom:20px!important;margin-top:20px!important;overflow:hidden;padding:0;align-items:stretch;-webkit-box-align:stretch;-moz-box-align:stretch;-webkit-box-pack:justify;-moz-box-pack:justify;direction:ltr;-ms-flex-align:stretch;-ms-flex-line-pack:center;-ms-flex-pack:justify;flex-wrap:wrap;justify-content:space-between}.swp_social_panel .nc_tweetContainer a.nc_tweet{display:block;display:flex;font-family:Lato,sans-serif;font-size:18px!important;font-weight:700;height:30px;text-decoration:none;text-decoration:none!important;text-transform:none;flex-flow:row wrap;box-shadow:none}.swp_social_panel .nc_tweetContainer:not(.total_shares):not(.total_sharesalt){border-radius:2px;cursor:pointer;float:left;font-family:Lato;height:32px;margin:0 5px 3px;min-width:34px;overflow:hidden;text-align:center;transition:all .1s linear}.swp_social_panel .nc_tweetContainer .spaceManWilly{display:block;width:120px}.swp_social_panel .swp_share{display:block;float:right;float:left;font-size:14px;font-weight:400;height:30px;line-height:32px;margin:0 0 0 6px;max-width:none!important}.swp_social_panel a .swp_count{font-size:14px}.swp_social_panel a .swp_count:not(.swp_hide){display:inline-block;line-height:32px;margin:0;padding:0 5px;flex:1}.swp_social_panel a .swp_count.swp_hide{margin:0 auto;width:auto}.swp_social_panel:not(.nc_floater):not(.swp_social_panelSide){width:100%!important}.swp_social_panel:not(.swp_social_panelSide){transition:opacity .2s ease-in-out}.swp_social_panel:not(.swp_social_panelSide) .nc_tweetContainer{flex:1}.swp_social_panel:not(.swp_social_panelSide) .nc_tweetContainer:first-child{margin-left:0}.swp_social_panel:not(.swp_social_panelSide) .nc_tweetContainer:nth-last-child(1){margin-right:0}.swp_social_panel span:before{content:initial!important}.swp_social_panel .iconFiller{font-size:18px;margin:0 auto;display:block;float:left;height:30px;overflow:hidden;transition:width .1s linear;width:30px}.swp_social_panel .sw{float:left;height:30px;line-height:32px;margin:1px 5px 0;text-shadow:none!important;width:20px}.swp_social_panel.mobile .iconFiller~.swp_count{display:none}.swp_powered_by{font-family:helvetica,arial,sans-serif;color:#000}.swp_powered_by span{clear:both;width:100%;display:block;margin:36px 0 -30px}.swp_powered_by a{color:#000;text-decoration:none}.swp_powered_by img{max-height:40px;margin-top:30px}.sw{display:inline-block;font-family:sw-icon-font!important;font-size:inherit;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;text-rendering:auto;text-transform:none!important;transform:translate(0,0);-webkit-transform:translate(0,0);-moz-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.sw:before{display:block!important}i.swp_facebook_icon:before{content:"k"}i.swp_flipboard_icon:before{content:"m"}i.swp_more_icon:before{content:"B"}i.swp_pinterest_icon:before{content:"A"}i.swp_twitter_icon:before{content:"N"}.swp_social_panelSide{transition:all .2s linear;flex-direction:column;height:auto;overflow:visible;z-index:9998;margin:10px 5px!important;padding:0}.swp_social_panelSide.fade,.swp_social_panelSide.slide{transition:all .2s linear;position:fixed}.swp_social_panelSide.fade{display:none}.swp_social_panelSide.fade .swp_float_left{left:5px}.swp_social_panelSide[class*=swp_side]{height:auto;display:flex;position:fixed;padding:30px 0}.swp_social_panelSide.swp_side_top{top:15px}.swp_social_panelSide.swp_side_bottom{bottom:15px}.swp_social_panelSide .nc_tweetContainer{transition:all .1s linear;border-radius:3px;clear:both;display:block;font-family:Lato,sans-serif;height:32px;margin:3px 0!important;overflow:hidden;padding:0;width:90px}.swp_social_panelSide .nc_tweetContainer:not(.total_shares){line-height:34px}.swp_social_panelSide .nc_tweetContainer:hover,.swp_social_panelSide .nc_tweetContainer:hover .iconFiller,.swp_social_panelSide .nc_tweetContainer:hover .swp_count{transition:all .1s linear}.swp_social_panelSide .nc_tweetContainer .iconFiller{transition:all .1s linear;display:inline-block;height:40px;margin:0 6px;padding:0;vertical-align:middle;width:21px}.swp_social_panelSide .nc_tweetContainer .swp_count{transition:all .1s linear;display:inline-block;font-size:14px;height:32px;line-height:16px;margin:0;padding:0;overflow:hidden;text-align:right;vertical-align:top;width:0}.swp_social_panelSide .nc_tweetContainer a{transition:all .1s linear;cursor:pointer;display:block;font-weight:500;height:36px;margin:0;padding:0;text-decoration:none}.swp_social_panelSide .nc_tweetContainer .sw,.swp_social_panelSide .nc_tweetContainer .swp_share{float:left;line-height:34px}.swp_social_panelSide .nc_tweetContainer .swp_share{font-size:13px;margin:0}.swp_social_panelSide.swp_boxed .nc_tweetContainer{margin-bottom:5px;width:67.5px!important}.swp_social_panelSide.swp_boxed .nc_tweetContainer,.swp_social_panelSide.swp_boxed .nc_tweetContainer a{width:67.5px;height:67.5px!important;position:relative}.swp_social_panelSide.swp_boxed .nc_tweetContainer span.iconFiller{height:40px;width:67.5px}.swp_social_panelSide.swp_boxed .nc_tweetContainer i.sw{font-size:27px;height:40px;margin:0;padding-top:10px;text-align:center;width:100%}.swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) span.swp_share{height:35px;opacity:0;position:absolute;bottom:0;left:0;text-align:center;width:67.5px}.swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) span.swp_count{height:35px;margin:0;padding:0;position:absolute;bottom:0;left:0;text-align:center;transition:padding .1s linear;width:100%}.swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .swp_hide span.swp_share,.swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares):hover span.swp_share:not(.swp_hide){opacity:1}.swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares):hover span.swp_count:not(.swp_hide){opacity:0}.swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .swp_count{padding:0 8px;width:48px}.swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .swp_count.swp_hide{padding:0;width:100%}.swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .swp_count.swp_hide .iconFiller{display:block;float:none;margin:0 auto}.swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .spaceManWilly,.swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares):hover .iconFiller{width:100%}.swp_social_panelSide.swp_boxed .nc_tweetContainer span.swp_hide .iconFiller,.swp_social_panelSide.swp_boxed .nc_tweetContainer span.swp_hide .spaceManWilly,.swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) span.swp_count.swp_hide{height:67.5px;opacity:1}.swp_social_panelSide:not(.swp_boxed):not(.swp_circles) .nc_tweetContainer:not(.total_shares) .iconFiller{margin-left:2px;width:30px}.swp_social_panelSide:not(.swp_boxed):not(.swp_circles) .nc_tweetContainer:not(.total_shares):not(.total_shares) .spaceManWilly,.swp_social_panelSide:not(.swp_boxed):not(.swp_circles) .nc_tweetContainer:not(.total_shares)[data-network]:not(.total_shares):hover span.iconFiller{width:90px}.swp_social_panelSide:not(.swp_boxed):not(.swp_circles) .nc_tweetContainer:not(.total_shares):hover{width:150px}.nc_wrapper{background:#fff;position:fixed;transition:top .5s bottom .5s;width:100%;z-index:99999}.nc_wrapper.bottom{bottom:0;left:0}.nc_wrapper.top{top:0;left:0}.nc_wrapper .swp_social_panel{margin-bottom:10px!important;margin-top:10px!important}.nc_floater{margin:10px 0;position:relative}.float-position-center-left{transform-origin:center left}a.swp_CTT{text-decoration:none!important;cursor:pointer}a.swp-hover-pin-button{background:#cd2029;border:1px solid #aa1b29;border:0;border-bottom:none;border-radius:3px;box-shadow:none;color:#fff;font-family:Lato,sans-serif;font-size:15px;width:120px!important;height:32px;line-height:32px;padding:0 20px;position:absolute;text-decoration:none;text-align:center;transition:opacity .5s;z-index:3200;position:absolute;cursor:pointer}a.swp-hover-pin-button::before{content:"A";color:#fff;float:left;font-family:sw-icon-font;font-size:20px;font-weight:400;line-height:36px;margin-left:-5px;margin-right:10px}a.swp-hover-pin-button:hover::before{content:"z"}a.swp-hover-pin-button:focus,a.swp-hover-pin-button:hover{background:#aa1b29;color:#fff;text-decoration:none}.swp-content-locator{display:none!important;margin:0!important}.swp-lightbox-wrapper{width:100%;height:100%;position:fixed;top:0;background:#fff;z-index:999999}.swp-lightbox-wrapper .swp-lightbox-inner{width:50%;left:25%;position:relative;text-align:center;top:10%;background:#fff;padding:35px;border-radius:10px}@media (max-width:768px){.swp-lightbox-wrapper .swp-lightbox-inner{width:80%;left:10%}}@media (max-width:450px){.swp-lightbox-wrapper .swp-lightbox-inner{width:90%;left:5%}}.swp-lightbox-wrapper .swp-lightbox-inner h5{font-family:Lato,sans-serif;font-size:25px;margin-bottom:40px;text-align:center}.swp-lightbox-wrapper .swp-lightbox-inner .swp-lightbox-close{font-weight:700;height:20px;width:20px;cursor:pointer;color:#30394f;text-align:right;transform:rotate(45deg);display:inline-block;float:right;margin:-30px;font-size:25px}.swp-lightbox-wrapper .swp-lightbox-inner .swp-lightbox-close:before{content:'+';font-family:arial}@media print{.swp-lightbox-wrapper{display:none}}.swp-lightbox-wrapper .swp_pinterest_icon.top_icon{color:#cd2029;font-size:45px;margin:0;padding:0;line-height:0}.swp-lightbox-wrapper.pinterest-overlay .swp-lightbox-inner{width:70%;left:15%;height:80%;overflow-y:auto}.swp-lightbox-wrapper.pinterest-overlay .swp-lightbox-inner h5{margin-bottom:40px}.swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper{text-align:center}.swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper{display:inline-block;width:24%;margin-right:1%}.swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper img{border-radius:3px;max-width:100%;height:auto}.swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper .swp-hover-pin-button{position:initial;width:100%!important;display:block;margin-top:10px;margin-bottom:40px}html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block;min-width:0}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}a{background-color:transparent}b,strong{font-weight:700}code{font-family:monospace,monospace;font-size:1em}small{font-size:80%}img{border-style:none}button,input,optgroup,select,textarea{font-size:100%;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],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}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}:root{--global-gray-400:#CBD5E0;--global-gray-500:#A0AEC0;--global-xs-spacing:1em;--global-sm-spacing:1.5rem;--global-md-spacing:2rem;--global-lg-spacing:2.5em;--global-xl-spacing:3.5em;--global-xxl-spacing:5rem;--global-edge-spacing:1.5rem;--global-boxed-spacing:2rem}h1,h2,h3,h4,h5{padding:0;margin:0}h1 a,h2 a,h3 a,h4 a,h5 a{color:inherit;text-decoration:none}em,i{font-style:italic}address{margin:0 0 1.5em}code,tt{font-family:Monaco,Consolas,"Andale Mono","DejaVu Sans Mono",monospace;font-size:.8rem}mark{text-decoration:none}html{box-sizing:border-box}*,::after,::before{box-sizing:inherit}hr{height:0;border:0;border-bottom:2px solid var(--global-gray-400)}ol,ul{margin:0 0 1.5em 1.5em;padding:0}ol.aligncenter,ul.aligncenter{list-style:none}ul{list-style:disc}ol{list-style:decimal}li>ol,li>ul{margin-bottom:0;margin-left:1.5em}dt{font-weight:700}img{display:block;height:auto;max-width:100%}figure{margin:.5em 0}table{margin:0 0 1.5em;width:100%}a{color:var(--global-palette-highlight);transition:all .1s linear}a:active,a:focus,a:hover{color:var(--global-palette-highlight-alt)}a:active,a:hover{outline:0}.inner-link-style-plain a:not(.button),.widget-area.inner-link-style-plain a:not(.button){text-decoration:none}.inner-link-style-normal a:not(.button),.widget-area.inner-link-style-normal a:not(.button){text-decoration:underline}.screen-reader-text{clip:rect(1px,1px,1px,1px);position:absolute!important;height:1px;width:1px;overflow:hidden;word-wrap:normal!important}.screen-reader-text:focus{background-color:#f1f1f1;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:.875rem;font-weight:700;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}.hide-focus-outline :focus{outline:0}#primary[tabindex="-1"]:focus{outline:0}textarea{width:100%}input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],textarea{-webkit-appearance:none;color:var(--global-palette5);border:1px solid var(--global-gray-400);border-radius:3px;padding:.4em .5em;max-width:100%;background:var(--global-palette9);box-shadow:0 0 0 -7px transparent}::-webkit-input-placeholder{color:var(--global-palette6)}::-moz-placeholder{color:var(--global-palette6);opacity:1}::placeholder{color:var(--global-palette6)}input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,textarea:focus{color:var(--global-palette3);border-color:var(--global-palette6);outline:0;box-shadow:0 5px 15px -7px rgba(0,0,0,.1)}select{border:1px solid var(--global-gray-400);background-size:16px 100%;padding:.2em 35px .2em .5em;background:var(--global-palette9) url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNSIgaGVpZ2h0PSIyNSIgZmlsbD0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNiYmIiPjxwYXRoIGQ9Ik02IDlsNiA2IDYtNiIvPjwvc3ZnPg==) no-repeat 98% 50%;-moz-appearance:none;-webkit-appearance:none;appearance:none;box-shadow:none;outline:0;box-shadow:0 0 0 -7px transparent}select::-ms-expand{display:none}select:focus{color:var(--global-palette3);border-color:var(--global-palette6);background-color:var(--global-palette9);box-shadow:0 5px 15px -7px rgba(0,0,0,.1);outline:0}select:focus option{color:#333}.search-form{position:relative}.search-form input.search-field,.search-form input[type=search]{padding-right:60px;width:100%}.search-form .search-submit[type=submit]{top:0;right:0;bottom:0;position:absolute;color:transparent;background:0 0;z-index:2;width:50px;border:0;padding:8px 12px 7px;border-radius:0;box-shadow:none;overflow:hidden}.search-form .search-submit[type=submit]:focus,.search-form .search-submit[type=submit]:hover{color:transparent;background:0 0;box-shadow:none}.search-form .kadence-search-icon-wrap{position:absolute;right:0;top:0;height:100%;width:50px;padding:0;text-align:center;background:0 0;z-index:3;cursor:pointer;pointer-events:none;color:var(--global-palette6);text-shadow:none;display:flex;align-items:center;justify-content:center}.search-form .search-submit[type=submit]:hover~.kadence-search-icon-wrap{color:var(--global-palette4)}body.rtl .search-form .button[type=submit],body.rtl .search-form .kadence-search-icon-wrap{left:0;right:auto}body.rtl .search-form input.search-field,body.rtl .search-form input[type=search]{padding-right:.5em;padding-left:60px}fieldset{padding:.625em 1.425em;border:1px solid var(--global-gray-500);margin-top:1.2em;margin-bottom:1.2em}legend{font-weight:700}.button,.wp-element-button,button,input[type=button],input[type=reset],input[type=submit]{border-radius:3px;background:var(--global-palette-btn-bg);color:var(--global-palette-btn);padding:.4em 1em;border:0;line-height:1.6;display:inline-block;font-family:inherit;cursor:pointer;text-decoration:none;transition:all .2s ease;box-shadow:0 0 0 -7px transparent}.button:visited,.wp-element-button:visited,button:visited,input[type=button]:visited,input[type=reset]:visited,input[type=submit]:visited{background:var(--global-palette-btn-bg);color:var(--global-palette-btn)}.button:active,.button:focus,.button:hover,.wp-element-button:active,.wp-element-button:focus,.wp-element-button:hover,button:active,button:focus,button:hover,input[type=button]:active,input[type=button]:focus,input[type=button]:hover,input[type=reset]:active,input[type=reset]:focus,input[type=reset]:hover,input[type=submit]:active,input[type=submit]:focus,input[type=submit]:hover{color:var(--global-palette-btn-hover);background:var(--global-palette-btn-bg-hover);box-shadow:0 15px 25px -7px rgba(0,0,0,.1)}.button.disabled,.button:disabled,.wp-element-button.disabled,.wp-element-button:disabled,button.disabled,button:disabled,input[type=button].disabled,input[type=button]:disabled,input[type=reset].disabled,input[type=reset]:disabled,input[type=submit].disabled,input[type=submit]:disabled{cursor:not-allowed;opacity:.5}.kadence-svg-iconset{display:inline-flex;align-self:center}.kadence-svg-iconset svg{height:1em;width:1em}.kadence-svg-iconset.svg-baseline svg{top:.125em;position:relative}.kt-clear::after,.kt-clear::before{content:' ';display:table}.kt-clear::after{clear:both}#wpadminbar{position:fixed!important}.content-area{margin:var(--global-xxl-spacing) 0}.entry-content{word-break:break-word}.entry-content table{word-break:normal}.body{overflow-x:hidden}.scroll a *,a.scroll *{pointer-events:none}.site-container{margin:0 auto;padding:0 var(--global-content-edge-padding)}.content-bg{background:#fff}.content-style-unboxed .entry:not(.loop-entry)>.entry-content-wrap{padding:0}.content-style-unboxed .content-bg:not(.loop-entry){background:0 0}.content-style-unboxed .entry:not(.loop-entry){box-shadow:none;border-radius:0}@media screen and (min-width:1025px){.has-sidebar .content-container{display:grid;grid-template-columns:5fr 2fr;grid-gap:var(--global-xl-spacing);justify-content:center}#secondary{grid-column:2;grid-row:1;min-width:0}.has-sidebar .wp-site-blocks .content-container .alignfull,.has-sidebar .wp-site-blocks .content-container .alignwide{width:unset;max-width:unset;margin-left:0;margin-right:0}}#kt-scroll-up,#kt-scroll-up-reader{position:fixed;-webkit-transform:translateY(40px);transform:translateY(40px);transition:all .2s ease;opacity:0;z-index:1000;display:flex;cursor:pointer}#kt-scroll-up *,#kt-scroll-up-reader *{pointer-events:none}#kt-scroll-up-reader.scroll-up-style-outline,#kt-scroll-up.scroll-up-style-outline{background:0 0}.scroll-up-style-outline,.scroll-up-wrap.scroll-up-style-outline{border-width:2px;border-style:solid;border-color:currentColor;color:var(--global-palette4)}.scroll-up-style-outline:hover{color:var(--global-palette5)}#kt-scroll-up.scroll-visible{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}#kt-scroll-up-reader{-webkit-transform:translateY(0);transform:translateY(0);transition:all 0s ease}#kt-scroll-up-reader:not(:focus){clip:rect(1px,1px,1px,1px);height:1px;width:1px;overflow:hidden;word-wrap:normal!important}#kt-scroll-up-reader:focus{-webkit-transform:translateY(0);transform:translateY(0);opacity:1;box-shadow:none;z-index:1001}@media screen and (max-width:719px){.vs-sm-false{display:none!important}}#wrapper{overflow:hidden;overflow:clip}.kadence-scrollbar-fixer{margin-right:var(--scrollbar-offset,unset)}.kadence-scrollbar-fixer .item-is-fixed{right:var(--scrollbar-offset,0)}.aligncenter{clear:both;display:block;margin-left:auto;margin-right:auto;text-align:center}body.footer-on-bottom #wrapper{min-height:100vh;display:flex;flex-direction:column}body.footer-on-bottom.admin-bar #wrapper{min-height:calc(100vh - 32px)}body.footer-on-bottom #inner-wrap{flex:1 0 auto}:root{--global-palette1:#8cc63f;--global-palette2:#73aa2a;--global-palette3:#222222;--global-palette4:#353535;--global-palette5:#454545;--global-palette6:#676767;--global-palette7:#a7a7a7;--global-palette8:#f7f7f7;--global-palette9:#ffffff;--global-palette9rgb:255,255,255;--global-palette-highlight:#8cc63f;--global-palette-highlight-alt:var(--global-palette6);--global-palette-highlight-alt2:var(--global-palette9);--global-palette-btn-bg:var(--global-palette1);--global-palette-btn-bg-hover:#7a7a7a;--global-palette-btn:var(--global-palette9);--global-palette-btn-hover:var(--global-palette9);--global-body-font-family:'Albert Sans',sans-serif;--global-heading-font-family:'Albert Sans',sans-serif;--global-primary-nav-font-family:'Zilla Slab',serif;--global-fallback-font:sans-serif;--global-display-fallback-font:sans-serif;--global-content-width:1280px;--global-content-narrow-width:842px;--global-content-edge-padding:1.5rem;--global-calc-content-width:calc(1280px - var(--global-content-edge-padding) - var(--global-content-edge-padding) )}.wp-site-blocks{--global-vw:calc( 100vw - ( 0.5 * var(--scrollbar-offset)))}:root .has-theme-palette-9-background-color{background-color:var(--global-palette9)}:root .has-theme-palette1-color{color:var(--global-palette1)}:root .has-theme-palette9-background-color{background-color:var(--global-palette9)}body{background:var(--global-palette8)}body,input,optgroup,select,textarea{font-style:normal;font-weight:400;font-size:18px;line-height:2;letter-spacing:.02em;font-family:var(--global-body-font-family);color:var(--global-palette4)}.content-bg,body.content-style-unboxed .site{background:var(--global-palette9)}h1,h2,h3,h4,h5{font-family:var(--global-heading-font-family)}h1{font-style:normal;font-weight:400;font-size:40px;line-height:1.5;color:var(--global-palette3)}h2{font-style:normal;font-weight:400;font-size:32px;line-height:1.5;color:var(--global-palette3)}h3{font-style:normal;font-weight:400;font-size:24px;line-height:1.5;color:var(--global-palette3)}h4{font-style:normal;font-weight:400;font-size:22px;line-height:1.5;color:var(--global-palette4)}h5{font-style:normal;font-weight:700;font-size:13px;line-height:1.5;letter-spacing:1.5px;font-family:Sen,sans-serif;text-transform:uppercase;color:var(--global-palette4)}.comments-area,.site-container{max-width:var(--global-content-width)}@media all and (min-width:1510px){.wp-site-blocks .content-container .alignwide{margin-left:-115px;margin-right:-115px;width:unset;max-width:unset}}.content-area{margin-top:5rem;margin-bottom:5rem}.entry-content-wrap{padding:2rem}.entry.single-entry{box-shadow:0 0 0 0 rgba(51,51,51,.16);border-radius:0 0 0 0}.entry.loop-entry{border-radius:0 0 0 0;box-shadow:0 0 0 0 rgba(51,51,51,.16)}.loop-entry .entry-content-wrap{padding:2rem}@media all and (max-width:1024px){.content-area{margin-top:3rem;margin-bottom:3rem}.entry-content-wrap{padding:2rem}.loop-entry .entry-content-wrap{padding:2rem}}@media all and (max-width:767px){.content-area{margin-top:2rem;margin-bottom:2rem}.entry-content-wrap{padding:1.5rem}.loop-entry .entry-content-wrap{padding:1.5rem}}.has-sidebar:not(.has-left-sidebar) .content-container{grid-template-columns:1fr 360px}.primary-sidebar.widget-area .widget{margin-bottom:1em;color:var(--global-palette4)}.primary-sidebar.widget-area .sidebar-inner-wrap a:where(:not(.button):not(.wp-block-button__link):not(.wp-element-button)){color:var(--global-palette6)}.primary-sidebar.widget-area .sidebar-inner-wrap a:where(:not(.button):not(.wp-block-button__link):not(.wp-element-button)):hover{color:var(--global-palette4)}.primary-sidebar.widget-area{background:var(--global-palette9);padding:0}.button,button,input[type=button],input[type=reset],input[type=submit]{font-style:normal;font-weight:400;font-size:16px;letter-spacing:2px;font-family:'Alegreya Sans',sans-serif;text-transform:uppercase;border-radius:11px;padding:17px;box-shadow:0 0 0 -7px transparent}.button:active,.button:focus,.button:hover,button:active,button:focus,button:hover,input[type=button]:active,input[type=button]:focus,input[type=button]:hover,input[type=reset]:active,input[type=reset]:focus,input[type=reset]:hover,input[type=submit]:active,input[type=submit]:focus,input[type=submit]:hover{box-shadow:0 15px 25px -7px rgba(0,0,0,.1)}.site-middle-footer-inner-wrap{padding-top:30px;padding-bottom:30px;grid-column-gap:30px;grid-row-gap:30px}.site-middle-footer-inner-wrap .widget{margin-bottom:30px}.site-middle-footer-inner-wrap .site-footer-section:not(:last-child):after{border-right:1px solid var(--global-palette7);right:calc(-30px / 2)}.site-top-footer-wrap .site-footer-row-container-inner{background:var(--global-palette8)}.site-top-footer-inner-wrap{padding-top:0;padding-bottom:0;grid-column-gap:30px;grid-row-gap:30px}.site-top-footer-inner-wrap .widget{margin-bottom:30px}.site-top-footer-inner-wrap .site-footer-section:not(:last-child):after{right:calc(-30px / 2)}.site-bottom-footer-wrap .site-footer-row-container-inner{background:var(--global-palette1);border-top:3px none var(--global-palette7)}.site-bottom-footer-inner-wrap{padding-top:10px;padding-bottom:10px;grid-column-gap:30px}.site-bottom-footer-inner-wrap .widget{margin-bottom:30px}.site-bottom-footer-inner-wrap .site-footer-section:not(:last-child):after{border-right:0px transparent;right:calc(-30px / 2)}@media all and (max-width:767px){.site-middle-footer-inner-wrap .site-footer-section:not(:last-child):after{border-right:0px transparent}.site-bottom-footer-wrap .site-footer-row-container-inner{background:linear-gradient(135deg,var(--global-palette1) 0,var(--global-palette6) 100%)}}.footer-social-wrap .footer-social-inner-wrap{font-size:1em;gap:.3em}.site-footer .site-footer-wrap .site-footer-section .footer-social-wrap .footer-social-inner-wrap .social-button{color:var(--global-palette8);border:2px transparent;border-radius:3px}.site-footer .site-footer-wrap .site-footer-section .footer-social-wrap .footer-social-inner-wrap .social-button:hover{color:var(--global-palette9)}#colophon .footer-html{font-style:normal;color:var(--global-palette9)}#colophon .site-footer-row-container .site-footer-row .footer-html a{color:var(--global-palette8)}#colophon .site-footer-row-container .site-footer-row .footer-html a:hover{color:var(--global-palette3)}#kt-scroll-up,#kt-scroll-up-reader{border-radius:0 0 0 0;color:var(--global-palette4);border-color:var(--global-palette4);bottom:100px;font-size:1em;padding:.4em}#kt-scroll-up-reader.scroll-up-side-right,#kt-scroll-up.scroll-up-side-right{right:30px}#colophon .footer-navigation .footer-menu-container>ul>li>a{padding-left:calc(3em / 2);padding-right:calc(3em / 2);padding-top:calc(.6em / 2);padding-bottom:calc(.6em / 2);color:var(--global-palette9)}#colophon .footer-navigation .footer-menu-container>ul li a{font-style:normal;font-weight:600;font-size:12px;letter-spacing:2px;text-transform:uppercase}#colophon .footer-navigation .footer-menu-container>ul li a:hover{color:var(--global-palette3)}#colophon .footer-navigation .footer-menu-container>ul li.current-menu-item>a{color:var(--global-palette9)}.post-title .entry-taxonomies,.post-title .entry-taxonomies a{font-style:normal;font-weight:600;font-size:12px;letter-spacing:1px;color:var(--global-palette1)}.post-title .entry-taxonomies a:hover{color:var(--global-palette6)}.loop-entry.type-post h2.entry-title{font-style:normal;font-size:24px;color:var(--global-palette4)}.loop-entry.type-post .entry-taxonomies{font-style:normal;font-weight:600;font-size:12px;text-transform:uppercase}.loop-entry.type-post .entry-taxonomies,.loop-entry.type-post .entry-taxonomies a{color:var(--global-palette1)}.loop-entry.type-post .entry-taxonomies a:hover{color:var(--global-palette6)}.loop-entry.type-post .entry-meta{font-style:normal;font-weight:300}@media all and (min-width:1025px){.transparent-header #masthead{position:absolute;left:0;right:0;z-index:100}.transparent-header.kadence-scrollbar-fixer #masthead{right:var(--scrollbar-offset,0)}.transparent-header #masthead,.transparent-header .site-main-header-wrap .site-header-row-container-inner,.transparent-header .site-top-header-wrap .site-header-row-container-inner{background:0 0}}.site-branding a.brand img{max-width:243px}@media all and (max-width:1024px){.mobile-transparent-header #masthead{position:absolute;left:0;right:0;z-index:100}.kadence-scrollbar-fixer.mobile-transparent-header #masthead{right:var(--scrollbar-offset,0)}.mobile-transparent-header #masthead,.mobile-transparent-header .site-main-header-wrap .site-header-row-container-inner,.mobile-transparent-header .site-top-header-wrap .site-header-row-container-inner{background:0 0}.site-branding a.brand img{max-width:240px}}@media all and (max-width:767px){.site-branding a.brand img{max-width:180px}}.site-branding{padding:0}#masthead,#masthead .kadence-sticky-header.item-is-fixed:not(.item-at-start):not(.site-header-row-container):not(.site-main-header-wrap),#masthead .kadence-sticky-header.item-is-fixed:not(.item-at-start)>.site-header-row-container-inner{background:#fff}.site-main-header-wrap .site-header-row-container-inner{border-bottom:3px none var(--global-palette7)}.site-main-header-inner-wrap{min-height:100px}.site-top-header-wrap .site-header-row-container-inner{background:#e6e7e6;border-bottom:1px solid var(--global-palette8)}.site-top-header-inner-wrap{min-height:50px}#masthead .kadence-sticky-header.item-is-fixed:not(.item-at-start):not(.item-hidden-above)>.site-header-row-container-inner,#masthead .kadence-sticky-header.item-is-fixed:not(.item-at-start):not(.site-header-row-container):not(.item-hidden-above):not(.site-main-header-wrap){border-bottom:3px double var(--global-palette7)}.main-navigation .primary-menu-container>ul>li.menu-item>a{padding-left:calc(3em / 2);padding-right:calc(3em / 2);padding-top:1em;padding-bottom:1em;color:var(--global-palette4)}.main-navigation .primary-menu-container>ul>li.menu-item .dropdown-nav-special-toggle{right:calc(3em / 2)}.main-navigation .primary-menu-container>ul li.menu-item>a{font-style:normal;font-weight:400;font-size:18px;letter-spacing:0;font-family:var(--global-primary-nav-font-family);text-transform:none}.main-navigation .primary-menu-container>ul>li.menu-item>a:hover{color:var(--global-palette-highlight)}.main-navigation .primary-menu-container>ul>li.menu-item.current-menu-item>a{color:var(--global-palette3)}.header-navigation .header-menu-container ul ul.sub-menu{background:var(--global-palette8);box-shadow:inset 0 0 0 0 var(--global-palette1)}.header-navigation .header-menu-container ul ul li.menu-item{border-bottom:0 solid rgba(255,255,255,.1)}.header-navigation .header-menu-container ul ul li.menu-item>a{width:225px;padding-top:1em;padding-bottom:1em;color:var(--global-palette4);font-style:normal;font-weight:400;font-size:14px;font-family:Sen,sans-serif}.header-navigation .header-menu-container ul ul li.menu-item>a:hover{color:var(--global-palette9);background:var(--global-palette1)}.header-navigation .header-menu-container ul ul li.menu-item.current-menu-item>a{color:var(--global-palette9);background:var(--global-palette1)}.mobile-toggle-open-container .menu-toggle-open{color:var(--global-palette4);padding:.4em .6em;font-size:14px}.mobile-toggle-open-container .menu-toggle-open .menu-toggle-icon{font-size:20px}.mobile-toggle-open-container .menu-toggle-open:focus,.mobile-toggle-open-container .menu-toggle-open:hover{color:var(--global-palette1)}.mobile-navigation ul li{font-style:normal;font-weight:600;font-size:12px;letter-spacing:3px;text-transform:uppercase}.mobile-navigation ul li a{padding-top:1.5em;padding-bottom:1.5em}.mobile-navigation ul li.menu-item-has-children>.drawer-nav-drop-wrap,.mobile-navigation ul li>a{color:var(--global-palette4)}.mobile-navigation ul li.menu-item-has-children>.drawer-nav-drop-wrap:hover,.mobile-navigation ul li>a:hover{color:var(--global-palette1)}.mobile-navigation ul li.current-menu-item.menu-item-has-children>.drawer-nav-drop-wrap,.mobile-navigation ul li.current-menu-item>a{color:var(--global-palette-highlight)}.mobile-navigation ul li.menu-item-has-children .drawer-nav-drop-wrap,.mobile-navigation ul li:not(.menu-item-has-children) a{border-bottom:1px solid var(--global-palette7)}.mobile-navigation:not(.drawer-navigation-parent-toggle-true) ul li.menu-item-has-children .drawer-nav-drop-wrap button{border-left:1px solid var(--global-palette7)}#mobile-drawer .drawer-inner{background:var(--global-palette8)}#mobile-drawer .drawer-header .drawer-toggle{padding:.6em .15em;font-size:24px}#mobile-drawer .drawer-header .drawer-toggle,#mobile-drawer .drawer-header .drawer-toggle:focus{color:var(--global-palette4)}#mobile-drawer .drawer-header .drawer-toggle:focus:hover,#mobile-drawer .drawer-header .drawer-toggle:hover{color:var(--global-palette1)}.header-html{font-style:normal;font-weight:400;font-size:14px}.header-html a{color:var(--global-palette6)}.header-html a:hover{color:var(--global-palette3)}.header-social-wrap .header-social-inner-wrap{font-size:1em;gap:.47em}.header-social-wrap .header-social-inner-wrap .social-button{color:var(--global-palette7);background:var(--global-palette9);border:0 solid currentColor;border-radius:100px}.header-social-wrap .header-social-inner-wrap .social-button:hover{color:var(--global-palette6);background:var(--global-palette9)}.header-mobile-social-wrap .header-mobile-social-inner-wrap{font-size:1em;gap:.3em}.header-mobile-social-wrap .header-mobile-social-inner-wrap .social-button{color:var(--global-palette3);border:2px transparent;border-radius:3px}.header-mobile-social-wrap .header-mobile-social-inner-wrap .social-button:hover{color:var(--global-palette6)}.search-toggle-open-container .search-toggle-open{color:var(--global-palette3)}.search-toggle-open-container .search-toggle-open .search-toggle-icon{font-size:1em}.search-toggle-open-container .search-toggle-open:focus,.search-toggle-open-container .search-toggle-open:hover{color:var(--global-palette4)}#search-drawer .drawer-header,#search-drawer .drawer-inner .drawer-content form .kadence-search-icon-wrap,#search-drawer .drawer-inner .drawer-content form input.search-field{color:var(--global-palette3)}#search-drawer .drawer-inner .drawer-content form button[type=submit]:hover~.kadence-search-icon-wrap,#search-drawer .drawer-inner .drawer-content form input.search-field:focus,#search-drawer .drawer-inner .drawer-content form input.search-submit:hover~.kadence-search-icon-wrap{color:var(--global-palette4)}#search-drawer .drawer-inner{background:rgba(255,245,239,.8)}.site-branding{max-height:inherit}.site-branding a.brand{display:flex;flex-direction:row;align-items:center;text-decoration:none;color:inherit;max-height:inherit}.site-branding a.brand img{display:block}.site-branding .site-title{margin:0}.site-branding.branding-layout-standard:not(.site-brand-logo-only) a.brand img{margin-right:1em}@media screen and (max-width:719px){.site-branding.branding-mobile-layout-standard:not(.site-brand-logo-only) a.brand{flex-direction:row}.site-branding.branding-mobile-layout-standard:not(.site-brand-logo-only) a.brand img{margin-right:1em;margin-bottom:0;margin-top:0}}.header-navigation ul ul.sub-menu{display:none;position:absolute;top:100%;flex-direction:column;background:#fff;margin-left:0;box-shadow:0 2px 13px rgba(0,0,0,.1);z-index:1000}body:not(.hide-focus-outline) .header-navigation li.menu-item--has-toggle>a:focus .dropdown-nav-toggle{opacity:.2}.header-navigation ul ul.sub-menu>li:last-child{border-bottom:0}.header-navigation ul ul.sub-menu.sub-menu-edge{left:auto;right:0}.header-navigation ul ul ul.sub-menu.sub-menu-edge{left:auto;right:100%}.header-navigation[class*=header-navigation-dropdown-animation-fade] ul ul.sub-menu{opacity:0;visibility:hidden;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);transition:all .2s ease;display:block;clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden}.header-navigation[class*=header-navigation-dropdown-animation-fade] ul li.menu-item--toggled-on>ul,.header-navigation[class*=header-navigation-dropdown-animation-fade] ul li:hover>ul,.header-navigation[class*=header-navigation-dropdown-animation-fade] ul li:not(.menu-item--has-toggle):focus>ul{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);clip:auto;height:auto;overflow:visible}.header-navigation.header-navigation-dropdown-animation-fade-up ul ul.sub-menu{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}.wp-site-blocks .nav--toggle-sub .dropdown-nav-special-toggle{position:absolute!important;overflow:hidden;padding:0!important;margin:0!important;margin-right:-.1em!important;border:0!important;width:.9em;top:0;bottom:0;height:auto;border-radius:0;box-shadow:none!important;background:0 0!important;display:block;left:auto;right:calc(1.4em / 2);pointer-events:none}.wp-site-blocks .nav--toggle-sub .sub-menu .dropdown-nav-special-toggle{width:2.6em;margin:0!important;right:0}.nav--toggle-sub .dropdown-nav-special-toggle:focus{z-index:10}.nav--toggle-sub .dropdown-nav-toggle{display:block;background:0 0;position:absolute;right:0;top:50%;width:.7em;height:.7em;font-size:inherit;width:.9em;height:.9em;font-size:.9em;display:inline-flex;line-height:inherit;margin:0;padding:0;border:none;border-radius:0;-webkit-transform:translateY(-50%);transform:translateY(-50%);overflow:visible;transition:opacity .2s ease}.nav--toggle-sub ul ul .dropdown-nav-toggle{right:.2em}.nav--toggle-sub ul ul .dropdown-nav-toggle .kadence-svg-iconset{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}.nav--toggle-sub li.menu-item-has-children{position:relative}.nav-drop-title-wrap{position:relative;padding-right:1em;display:block}.nav--toggle-sub li.menu-item--toggled-on>ul,.nav--toggle-sub li:hover>ul,.nav--toggle-sub li:not(.menu-item--has-toggle):focus>ul{display:block}.nav--toggle-sub li:not(.menu-item--has-toggle):focus-within>ul{display:block}@media (hover:none){.wp-site-blocks .nav--toggle-sub .menu-item--has-toggle:not(.menu-item--toggled-on) .dropdown-nav-special-toggle{left:0;right:0!important;margin-right:0!important;width:100%;pointer-events:all}.wp-site-blocks .nav--toggle-sub .menu-item--has-toggle:not(.menu-item--toggled-on)>a{pointer-events:none}}.rtl .nav--toggle-sub .dropdown-nav-toggle{right:auto;left:0}.rtl .primary-menu-container>ul>li.menu-item>.dropdown-nav-special-toggle{right:auto;left:calc(1.4em / 2)}.rtl .wp-site-blocks .nav--toggle-sub .sub-menu .dropdown-nav-special-toggle{left:0;right:auto}.rtl .nav--toggle-sub ul ul .dropdown-nav-toggle .kadence-svg-iconset{-webkit-transform:rotate(-270deg);transform:rotate(-270deg)}.rtl .header-navigation ul ul ul.sub-menu{right:100%;left:auto}.rtl .nav-drop-title-wrap{padding-left:1em;padding-right:0}.header-menu-container,.header-navigation{display:flex}.header-navigation li.menu-item>a{display:block;width:100%;text-decoration:none;color:var(--global-palette4);transition:all .2s ease-in-out;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.header-navigation li.menu-item>a:focus,.header-navigation li.menu-item>a:hover{color:var(--global-palette-highlight)}.header-navigation ul.sub-menu{display:block;list-style:none;margin:0;padding:0}.header-navigation ul li.menu-item>a{padding:.6em .5em}.header-navigation ul ul li.menu-item>a{padding:1em}.header-navigation ul ul li.menu-item>a{width:200px}.header-navigation ul ul ul.sub-menu{top:0;left:100%;right:auto;min-height:100%}.header-navigation .menu{display:flex;flex-wrap:wrap;justify-content:center;align-items:center;list-style:none;margin:0;padding:0}.menu-toggle-open{display:flex;background:0 0;align-items:center;box-shadow:none}.menu-toggle-open .menu-toggle-icon{display:flex}.menu-toggle-open:focus,.menu-toggle-open:hover{border-color:currentColor;background:0 0;box-shadow:none}.menu-toggle-open.menu-toggle-style-default{border:0}.wp-site-blocks .menu-toggle-open{box-shadow:none}.mobile-navigation{width:100%}.mobile-navigation a{display:block;width:100%;text-decoration:none;padding:.6em .5em}.mobile-navigation ul{display:block;list-style:none;margin:0;padding:0}.drawer-nav-drop-wrap{display:flex;position:relative}.drawer-nav-drop-wrap a{color:inherit}.drawer-nav-drop-wrap .drawer-sub-toggle{background:0 0;color:inherit;padding:.5em .7em;display:flex;border:0;border-radius:0;box-shadow:none;line-height:normal}.drawer-nav-drop-wrap .drawer-sub-toggle[aria-expanded=true] svg{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.mobile-navigation ul ul{padding-left:1em;transition:all .2s ease-in-out}.mobile-navigation ul.has-collapse-sub-nav ul.sub-menu{display:none}.mobile-navigation ul ul ul ul ul ul{padding-left:0}.mobile-navigation ul.has-collapse-sub-nav .sub-menu.show-drawer{display:block}.popup-drawer{position:fixed;display:none;top:0;bottom:0;left:-99999rem;right:99999rem;transition:opacity .25s ease-in,left 0s .25s,right 0s .25s;z-index:100000}.popup-drawer .drawer-overlay{background-color:rgba(0,0,0,.4);position:fixed;top:0;right:0;bottom:0;left:0;opacity:0;transition:opacity .2s ease-in-out}.popup-drawer .drawer-inner{width:100%;-webkit-transform:translateX(100%);transform:translateX(100%);max-width:90%;right:0;top:0;overflow:auto;background:#090c10;color:#fff;bottom:0;opacity:0;position:fixed;box-shadow:0 0 2rem 0 rgba(0,0,0,.1);display:flex;flex-direction:column;transition:opacity .25s cubic-bezier(.77, .2, .05, 1),-webkit-transform .3s cubic-bezier(.77, .2, .05, 1);transition:transform .3s cubic-bezier(.77, .2, .05, 1),opacity .25s cubic-bezier(.77, .2, .05, 1);transition:transform .3s cubic-bezier(.77, .2, .05, 1),opacity .25s cubic-bezier(.77, .2, .05, 1),-webkit-transform .3s cubic-bezier(.77, .2, .05, 1)}.popup-drawer .drawer-header{padding:0 1.5em;display:flex;justify-content:flex-end;min-height:calc(1.2em + 24px)}.popup-drawer .drawer-header .drawer-toggle{background:0 0;border:0;font-size:24px;line-height:1;padding:.6em .15em;color:inherit;display:flex;box-shadow:none;border-radius:0}.popup-drawer .drawer-header .drawer-toggle:hover{box-shadow:none}.popup-drawer .drawer-content{padding:0 1.5em 1.5em}.popup-drawer .drawer-header .drawer-toggle{width:1em;position:relative;height:1em;box-sizing:content-box;font-size:24px}.drawer-toggle .toggle-close-bar{width:.75em;height:.08em;background:currentColor;-webkit-transform-origin:center center;transform-origin:center center;position:absolute;margin-top:-.04em;opacity:0;border-radius:.08em;left:50%;margin-left:-.375em;top:50%;-webkit-transform:rotate(45deg) translateX(-50%);transform:rotate(45deg) translateX(-50%);transition:opacity .3s cubic-bezier(.77, .2, .05, 1),-webkit-transform .3s cubic-bezier(.77, .2, .05, 1);transition:transform .3s cubic-bezier(.77, .2, .05, 1),opacity .3s cubic-bezier(.77, .2, .05, 1);transition:transform .3s cubic-bezier(.77, .2, .05, 1),opacity .3s cubic-bezier(.77, .2, .05, 1),-webkit-transform .3s cubic-bezier(.77, .2, .05, 1);transition-delay:0.2s}.drawer-toggle .toggle-close-bar:last-child{-webkit-transform:rotate(-45deg) translateX(50%);transform:rotate(-45deg) translateX(50%)}.popup-drawer.active .drawer-toggle .toggle-close-bar{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:1}.popup-drawer.active .drawer-toggle .toggle-close-bar:last-child{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:1}.popup-drawer .drawer-content.content-valign-middle{min-height:calc(100% - (1.2em + 24px));display:flex;justify-content:center;flex-direction:column;padding-bottom:calc(1.2em + 24px);max-height:calc(100% - (1.2em + 24px));overflow:auto}.popup-drawer .drawer-content.content-align-center{text-align:center}.popup-drawer .drawer-content.content-align-center .site-header-item{justify-content:center}.popup-drawer .drawer-content.content-align-right{text-align:right}.popup-drawer .drawer-content.content-align-right .site-header-item{justify-content:flex-end}body.admin-bar .popup-drawer{top:46px}body.admin-bar .popup-drawer .drawer-inner{top:46px}@media screen and (min-width:783px){body.admin-bar .popup-drawer{top:32px}body.admin-bar .popup-drawer .drawer-inner{top:32px}}.popup-drawer.show-drawer{display:block}.popup-drawer.active{left:0;opacity:1;right:0;transition:opacity .25s ease-out}.popup-drawer.active .drawer-inner{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}.popup-drawer.active .drawer-overlay{opacity:1;cursor:pointer}body[class*=showing-popup-drawer-]{overflow:hidden}#main-header{display:none}#masthead{position:relative;z-index:11}.site-header-row{display:grid;grid-template-columns:auto auto}.site-header-upper-inner-wrap.child-is-fixed{display:flex;align-items:flex-end}.site-header-upper-inner-wrap.child-is-fixed .site-main-header-wrap{width:100%}.site-header-section{display:flex;max-height:inherit}.site-header-item{display:flex;align-items:center;margin-right:10px;max-height:inherit}.rtl .site-header-item{margin-left:10px;margin-right:0}.site-header-section>.site-header-item:last-child{margin-right:0}.rtl .site-header-section>.site-header-item:last-child{margin-left:0}.drawer-content .site-header-item{margin-right:0;margin-bottom:10px}.drawer-content .site-header-item:last-child{margin-bottom:0}.site-header-section-right{justify-content:flex-end}.header-html-inner p:first-child{margin-top:0}.header-html-inner p:last-child{margin-bottom:0}.element-social-inner-wrap{display:flex;flex-wrap:wrap;align-items:center;gap:.3em}a.social-button{width:2em;text-decoration:none;height:2em;display:inline-flex;justify-content:center;align-items:center;margin:0;color:var(--global-palette4);background:var(--global-palette7);border-radius:3px;transition:all .2s ease-in-out}a.social-button:hover{color:var(--global-palette-btn);background:var(--global-palette-btn-bg)}.social-style-outline .social-button{background:0 0!important;border:2px solid var(--global-palette7)}.social-style-outline .social-button:hover{color:var(--global-palette-highlight);border-color:currentColor}.search-toggle-open{display:flex;background:0 0;align-items:center;padding:.5em;box-shadow:none}.search-toggle-open .search-toggle-icon{display:flex}.search-toggle-open .search-toggle-icon svg.kadence-svg-icon{top:-.05em;position:relative}.search-toggle-open:focus,.search-toggle-open:hover{border-color:currentColor;background:0 0;box-shadow:none}.search-toggle-open.search-toggle-style-default{border:0}.popup-drawer-layout-fullwidth .drawer-inner{max-width:none;background:rgba(9,12,16,.97);transition:opacity .2s ease-in,-webkit-transform 0s ease-in;transition:transform 0s ease-in,opacity .2s ease-in;transition:transform 0s ease-in,opacity .2s ease-in,-webkit-transform 0s ease-in}.popup-drawer-layout-fullwidth .drawer-inner .drawer-overlay{background-color:transparent}#search-drawer .drawer-inner .drawer-header{position:relative;z-index:100}#search-drawer .drawer-inner .drawer-content{display:flex;justify-content:center;align-items:center;position:absolute;top:0;bottom:0;left:0;right:0;padding:2em}#search-drawer .drawer-inner form{max-width:800px;width:100%;margin:0 auto;display:flex}#search-drawer .drawer-inner form label{flex-grow:2}#search-drawer .drawer-inner form ::-webkit-input-placeholder{color:currentColor;opacity:.5}#search-drawer .drawer-inner form ::-moz-placeholder{color:currentColor;opacity:.5}#search-drawer .drawer-inner form :-ms-input-placeholder{color:currentColor;opacity:.5}#search-drawer .drawer-inner form :-moz-placeholder{color:currentColor;opacity:.5}#search-drawer .drawer-inner input.search-field{width:100%;background:0 0;color:var(--global-palette6);padding:.8em 80px .8em .8em;font-size:20px;border:1px solid currentColor}#search-drawer .drawer-inner input.search-field:focus{color:#fff;box-shadow:5px 5px 0 0 currentColor}#search-drawer .drawer-inner .search-submit[type=submit]{width:70px}#search-drawer .drawer-inner .kadence-search-icon-wrap{color:var(--global-palette6);width:70px}#search-drawer .drawer-inner .search-submit[type=submit]:hover~.kadence-search-icon-wrap{color:#fff}#search-drawer .drawer-inner button[type=submit]:hover~.kadence-search-icon-wrap{color:#fff}.site-header-upper-inner-wrap.child-is-fixed .site-top-header-wrap:not(.item-is-fixed){align-self:flex-start;flex-grow:1}.kadence-sticky-header{position:relative;z-index:1}.item-is-fixed{position:fixed;left:0;right:0;z-index:1200}.site-branding a.brand img.kadence-sticky-logo{display:none}.kadence-sticky-header.item-is-fixed:not(.item-at-start) .site-branding a.brand img:not(.svg-logo-image){width:auto}#mobile-drawer{z-index:99999}#mobile-header .mobile-navigation>.mobile-menu-container.drawer-menu-container>ul.menu{display:flex;flex-wrap:wrap}#mobile-header .mobile-navigation:not(.drawer-navigation-parent-toggle-true) ul li.menu-item-has-children .drawer-nav-drop-wrap button{border:0}#mobile-header .mobile-navigation ul li.menu-item-has-children .drawer-nav-drop-wrap,#mobile-header .mobile-navigation ul li:not(.menu-item-has-children) a{border:0}.wp-block-image{margin-bottom:0}figure.wp-block-image.aligncenter img{display:inline-block}ul.wp-block-social-links:not(.specificity){padding-left:0;padding-right:0}.wp-block-search .wp-block-search__button{border-color:var(--global-gray-400);color:var(--global-palette4);background:var(--global-palette9)}.wp-block-search .wp-block-search__input{border-color:var(--global-gray-400)}embed,iframe,object{max-width:100%}.pagination{margin:var(--global-lg-spacing) auto;overflow:hidden}.pagination .nav-links{justify-content:center;flex-wrap:wrap}.pagination a:active,.pagination a:focus,.pagination a:hover{border-color:var(--global-palette-btn-bg)}.pagination .current{border-color:var(--global-palette-btn-bg);background:var(--global-palette-btn-bg);color:var(--global-palette-btn)}.post-navigation{margin:var(--global-lg-spacing) auto}.post-navigation a{text-decoration:none;color:inherit;display:block}.post-navigation a:hover{color:var(--global-palette-highlight)}.post-navigation .nav-links{display:grid;grid-template-columns:repeat(2,1fr)}.post-navigation .nav-previous{position:relative}.post-navigation .nav-previous .kadence-svg-iconset{padding-right:.5em}.post-navigation .nav-previous a{padding-right:var(--global-xs-spacing)}.post-navigation .nav-previous:after{position:absolute;content:'';top:25%;right:0;width:1px;height:50%;background:var(--global-gray-500)}.post-navigation .nav-next{grid-column-start:2;text-align:right}.post-navigation .nav-next a{padding-left:var(--global-xs-spacing)}.post-navigation .nav-next .kadence-svg-iconset{padding-left:.5em}.post-navigation-sub{margin-bottom:.5em}.post-navigation-sub small{text-transform:uppercase;display:inline-block;font-weight:700;letter-spacing:.05em}.widget{margin-top:0;margin-bottom:1.5em}.widget-area .widget:last-child{margin-bottom:0}.widget-area ul{padding-left:.5em}.widget-area a:where(:not(.button):not(.wp-block-button__link):not(.wp-element-button)){color:var(--global-palette3);text-decoration:none}.widget-area a:where(:not(.button):not(.wp-block-button__link):not(.wp-element-button)):hover{color:var(--global-palette-highlight);text-decoration:underline}.widget-area .widget{margin-left:0;margin-right:0}.widget li{line-height:1.8}.widget select{max-width:100%;text-overflow:ellipsis}.grid-cols{display:grid;grid-template-columns:minmax(0,1fr);-webkit-column-gap:2.5rem;-moz-column-gap:2.5rem;column-gap:2.5rem;row-gap:2.5rem}.wp-site-blocks .grid-cols:before{display:none}@media screen and (min-width:576px){.grid-sm-col-2{grid-template-columns:repeat(2,minmax(0,1fr))}}article.sticky{font-size:inherit}.entry{box-shadow:0 15px 25px -10px rgba(0,0,0,.05);border-radius:.25rem}.content-wrap{position:relative}.single-content{margin:var(--global-md-spacing) 0 0}.single-content address,.single-content figure,.single-content form,.single-content hr,.single-content p,.single-content table{margin-top:0;margin-bottom:var(--global-md-spacing)}.single-content p>img{display:inline-block}.single-content p>img.aligncenter{display:block}.single-content li>img{display:inline-block}.single-content li>img.aligncenter{display:block}.single-content h1,.single-content h2,.single-content h3,.single-content h4,.single-content h5{margin:1.5em 0 .5em}.single-content h1:first-child,.single-content h2:first-child,.single-content h3:first-child,.single-content h4:first-child,.single-content h5:first-child{margin-top:0}.single-content h1+*,.single-content h2+*,.single-content h3+*,.single-content h4+*,.single-content h5+*{margin-top:0}.single-content ol,.single-content ul{margin:0 0 var(--global-md-spacing);padding-left:2em}.single-content ol.aligncenter,.single-content ul.aligncenter{text-align:center;padding-left:0}.single-content li>ol,.single-content li>ul{margin:0}.single-content address:last-child,.single-content figure:last-child,.single-content form:last-child,.single-content h1:last-child,.single-content h2:last-child,.single-content h3:last-child,.single-content h4:last-child,.single-content h5:last-child,.single-content hr:last-child,.single-content ol:last-child,.single-content p:last-child,.single-content table:last-child,.single-content ul:last-child{margin-bottom:0}.single-content .wp-block-image{margin-top:0;margin-bottom:0}.single-content .wp-block-image figure{margin-bottom:var(--global-md-spacing)}.single-content .wp-block-image:last-child figure{margin-bottom:0}.single-content figure.wp-block-image{margin-bottom:var(--global-md-spacing)}.single-content figure.wp-block-image:last-child{margin-bottom:0}.entry-content:after{display:table;clear:both;content:''}.wp-site-blocks .post-thumbnail{display:block;height:0;padding-bottom:66.67%;overflow:hidden;position:relative}.wp-site-blocks .post-thumbnail.kadence-thumbnail-ratio-1-1{padding-bottom:100%}.wp-site-blocks .post-thumbnail .post-thumbnail-inner{position:absolute;top:0;bottom:0;left:0;right:0}.wp-site-blocks .post-thumbnail img{flex:1;-o-object-fit:cover;object-fit:cover}.wp-site-blocks .post-thumbnail:not(.kadence-thumbnail-ratio-inherit) img{height:100%;width:100%}.kadence-breadcrumbs{margin:1em 0;font-size:85%;color:var(--global-palette5)}.kadence-breadcrumbs a{color:inherit}.kadence-breadcrumbs p{margin:0}.entry-content-wrap .entry-header .kadence-breadcrumbs:first-child{margin-top:0}.entry-meta{font-size:80%;margin:1em 0;display:flex;flex-wrap:wrap}.entry-meta>*{display:inline-flex;align-items:center;flex-wrap:wrap}.entry-meta>* time{white-space:nowrap}.entry-meta a{color:inherit;text-decoration:none}.entry-meta>:after{margin-left:.5rem;margin-right:.5rem;content:"";display:inline-block;background-color:currentColor;height:.25rem;width:.25rem;opacity:.8;border-radius:9999px;vertical-align:.1875em}.entry-meta>:last-child:after{display:none}.loop-entry .entry-header .entry-title{margin:0}.loop-entry .entry-header .entry-meta{margin:1em 0}.updated:not(.published){display:none}.entry-taxonomies{margin-bottom:.5em;letter-spacing:.05em;font-size:70%;text-transform:uppercase}.entry-taxonomies a{text-decoration:none;font-weight:700}@media screen and (max-width:719px){.primary-sidebar{padding-left:0;padding-right:0}.loop-entry .entry-taxonomies{margin-bottom:1em}.site-footer-row-container-inner .site-footer-row.site-footer-row-mobile-column-layout-row{grid-template-columns:minmax(0,1fr)}}.entry-hero-container-inner{background:var(--global-palette7)}.entry-hero-container-inner .entry-header{min-height:200px;display:flex;align-items:center;text-align:center;justify-content:center;flex-direction:column;margin-bottom:0}.entry-hero-container-inner .entry-header>div{width:100%}.entry-hero-container-inner .entry-header .entry-meta{justify-content:center}.title-align-left{text-align:left}.entry-header{margin-bottom:1em}.entry-footer{clear:both}.comments-area.entry-content-wrap{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.alignfull,.alignwide,.entry-content .alignfull,.entry-content .alignwide{margin-left:calc(50% - (var(--global-vw,100vw)/ 2));margin-right:calc(50% - (var(--global-vw,100vw)/ 2));max-width:100vw;width:var(--global-vw,100vw);padding-left:0;padding-right:0;clear:both}.entry-title{word-wrap:break-word}.comments-area{margin-top:var(--global-xl-spacing);margin-left:auto;margin-right:auto}.comments-area .comment .avatar{position:absolute;left:-70px;width:50px;height:50px;border-radius:50px}.bypostauthor{display:block}.comment-reply-title,.comments-title{margin-bottom:1em}.comment-list{padding:0;margin:0;list-style-type:none}.comment-list ol{list-style-type:none}.children{margin-left:1em;padding-left:0}.rtl .children{margin-left:0;margin-right:1em}#cancel-comment-reply-link{margin-left:.8em}@media screen and (min-width:768px){.children{margin-left:2em}.rtl .children{margin-left:0;margin-right:2em}}.comment-body{position:relative;border-bottom:1px solid var(--global-gray-500);margin-bottom:3em}.comment-author .fn a{color:inherit}.comment-meta{position:relative;margin-left:70px;font-size:80%}.comment-form a,.comment-meta a{text-decoration:none;border:none;color:inherit}.comment-form a:focus,.comment-form a:hover,.comment-meta a:focus,.comment-meta a:hover{text-decoration:underline}.bypostauthor .avatar{box-sizing:content-box;border:5px solid var(--global-palette7);margin-top:-5px;margin-left:-5px}.comment-author{font-size:1.4em;line-height:1.3}.says{font-size:80%}.comment-metadata{padding-bottom:.5em}.comment-content a{word-wrap:break-word}.comment-content ol,.comment-content ul{margin:0;padding-right:3em;padding-left:3em}.comment-content ol{list-style-type:decimal}.comment-content ol ol,.comment-content ul ul{margin-right:0;margin-left:0}.comment-content{margin-bottom:2rem;padding-top:.3em}.reply{margin-bottom:2em;margin-top:-.5em}.comment-reply-link{display:inline-block;padding:.5em 1em;font-size:85%;color:var(--global-palette5);line-height:1;text-decoration:none;background:0 0;border:1px solid var(--global-palette7);border-radius:0}.comment-reply-link:focus,.comment-reply-link:hover{border-color:var(--global-palette4);color:var(--global-palette4);cursor:pointer}.comment-form{line-height:1.3}.comment-form p{margin:1.5em 0}.comment-form .comment-notes{margin-top:-.5em;font-size:80%;font-style:italic}.comment-form .comment-input-wrap p{margin:0 0 1.5em}.comment-input-wrap input{width:100%}@media screen and (min-width:767px){.reply{position:absolute;top:0;right:0;margin:0}.comment-form .comment-input-wrap{display:grid;grid-template-columns:repeat(3,1fr);grid-gap:1.5em;margin-top:-1em}.comment-form .comment-input-wrap p{margin:0}}#respond+.comments-title{margin-top:3em}.comment-form a{font-weight:500}.comment-form label{display:block;padding-bottom:.4em}.comment-form-cookies-consent{display:flex;align-items:center}.comment-form .comment-form-cookies-consent input{font-size:90%;vertical-align:-2px}.comment-form .required{color:#d54e21}.comment-form .comment-input-wrap p,.comment-form p.comment-form-float-label{display:flex;flex-direction:column-reverse;align-items:flex-start}.comment-form .comment-input-wrap p label,.comment-form p.comment-form-float-label label{-webkit-transform-origin:left bottom;transform-origin:left bottom;color:var(--global-palette6)}.comment-form p.comment-form-float-label{margin-top:-1em}.comment-form input,.comment-form label{transition:all .2s}.comment-form input:-moz-placeholder-shown+label,.comment-form textarea:-moz-placeholder-shown+label{white-space:nowrap;overflow:hidden;max-width:90%;text-overflow:ellipsis;cursor:text;transform:translate(.5em,2.35em) scale(1)}.comment-form input:placeholder-shown+label,.comment-form textarea:placeholder-shown+label{white-space:nowrap;overflow:hidden;max-width:90%;text-overflow:ellipsis;cursor:text;-webkit-transform:translate(.5em,2.35em) scale(1);transform:translate(.5em,2.35em) scale(1)}.comment-form ::-webkit-input-placeholder{-webkit-transition:inherit;transition:inherit;opacity:0}.comment-form ::-moz-placeholder{-moz-transition:inherit;transition:inherit;opacity:0}.comment-form ::placeholder{transition:inherit;opacity:0}.comment-form input:focus::-webkit-input-placeholder,.comment-form textarea:focus::-webkit-input-placeholder{opacity:1}.comment-form input:focus::-moz-placeholder,.comment-form textarea:focus::-moz-placeholder{opacity:1}.comment-form input:focus::placeholder,.comment-form textarea:focus::placeholder{opacity:1}.comment-form input:not(:-moz-placeholder-shown)+label,.comment-form textarea:not(:-moz-placeholder-shown)+label{transform:translate(0,0) scale(.75);cursor:pointer}.comment-form input:focus+label,.comment-form input:not(:placeholder-shown)+label,.comment-form textarea:focus+label,.comment-form textarea:not(:placeholder-shown)+label{-webkit-transform:translate(0,0) scale(.75);transform:translate(0,0) scale(.75);cursor:pointer}.comment-form input[type=checkbox]+label{display:inline-block;padding-bottom:0;-webkit-transform:none;transform:none;padding-left:.2em}.comment-form .comment-form-cookies-consent label:not(:-moz-placeholder-shown){padding-left:.6em;font-size:90%}.comment-form .comment-form-cookies-consent label:not(:placeholder-shown){padding-left:.6em;font-size:90%}.primary-sidebar{padding-top:1.5rem;padding-bottom:1.5rem;margin-left:auto;margin-right:auto}@media screen and (min-width:768px){.comment-content ol,.comment-content ul{padding-right:1.5em;padding-left:1.5em}.primary-sidebar{padding-left:0;padding-right:0}}@media screen and (min-width:1025px){#main-header{display:block}#mobile-header{display:none}.grid-lg-col-2{grid-template-columns:repeat(2,minmax(0,1fr))}.grid-lg-col-3{grid-template-columns:repeat(3,minmax(0,1fr))}.primary-sidebar{padding:0;margin:0}.has-sticky-sidebar #wrapper,.has-sticky-sidebar-widget #wrapper{overflow:visible}.has-sticky-sidebar .sidebar-inner-wrap,.has-sticky-sidebar-widget .primary-sidebar .widget:last-child{position:-webkit-sticky;position:sticky;top:20px;overflow-y:auto}.has-sticky-sidebar-widget .sidebar-inner-wrap{height:100%}}.entry-related{margin-top:var(--global-lg-spacing);margin-bottom:var(--global-lg-spacing);background:var(--global-palette7)}.content-wrap .entry-related:last-child{margin-bottom:0}.entry-related-carousel .entry-footer,.entry-related-carousel .entry-taxonomies{display:none}.entry-related-carousel h3.entry-title{font-size:20px}h2.entry-related-title{margin-bottom:1.5rem}.wp-site-blocks .entry-related-inner{display:block}.has-sidebar .entry-related{background:0 0}.has-sidebar .wp-site-blocks .entry-related-inner{padding:0}.entry-related-inner-content{padding-top:var(--global-xl-spacing);padding-bottom:var(--global-xl-spacing);padding-left:var(--global-sm-spacing);padding-right:var(--global-sm-spacing)}.entry-related-inner-content .grid-cols{display:grid}.splide.splide-initial .splide__list.grid-cols{display:flex;gap:0}.splide__container{box-sizing:border-box;position:relative}.splide__list{-webkit-backface-visibility:hidden;backface-visibility:hidden;display:flex;height:100%;margin:0!important;padding:0!important;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.splide.splide-initial .splide__list{gap:0;display:flex}.splide.is-initialized:not(.is-active) .splide__list{display:block}.splide__pagination{align-items:center;display:flex;flex-wrap:wrap;justify-content:center;margin:0;pointer-events:none}.splide__pagination li{display:inline-block;line-height:1;list-style-type:none;margin:0;pointer-events:auto}.splide__progress__bar{width:0}.splide__toggle.is-active .splide__toggle__play,.splide__toggle__pause{display:none}.splide__toggle.is-active .splide__toggle__pause{display:inline}.splide{outline:0;position:relative;--splide-nav-color:#fff;--splide-nav-background:rgba(0, 0, 0, .8);--splide-nav-border:2px solid transparent;--splide-pagination-background:#000}.splide[data-slider-dots=true]{margin-bottom:30px}.splide.kt-carousel-arrowstyle-blackonlight{--splide-nav-color:#000;--splide-nav-background:rgba(255, 255, 255, .8)}.splide.kt-carousel-arrowstyle-outlineblack{--splide-nav-color:#000;--splide-nav-border:2px solid #000;--splide-nav-background:transparent}.splide.kt-carousel-arrowstyle-outlinewhite{--splide-nav-color:#fff;--splide-nav-border:2px solid #fff;--splide-nav-background:transparent}.kt-blocks-carousel .splide__pagination__page.is-active{background-color:#000}.kt-blocks-carousel .splide__pagination__page:focus,.kt-blocks-carousel .splide__pagination__page:focus-visible,.kt-blocks-carousel .splide__pagination__page:hover{outline:0}.kt-blocks-carousel .kt-carousel-dotstyle-light .splide__pagination__page,.kt-blocks-carousel .kt-carousel-dotstyle-light .splide__pagination__page.is-active{background-color:#fff}.kt-blocks-carousel .kt-carousel-dotstyle-outlinedark .splide__pagination__page{background-color:transparent;box-shadow:inset 0 0 0 1px #000;transition:box-shadow .3s ease}.kt-blocks-carousel .kt-carousel-dotstyle-outlinedark .splide__pagination__page.is-active{background-color:transparent;box-shadow:inset 0 0 0 8px #000}.kt-blocks-carousel .kt-carousel-dotstyle-outlinelight .splide__pagination__page{background-color:transparent;box-shadow:inset 0 0 0 1px #fff;transition:box-shadow .3s ease}.kt-blocks-carousel .kt-carousel-dotstyle-outlinelight .splide__pagination__page.is-active{background-color:transparent;box-shadow:inset 0 0 0 8px #fff}.splide.is-initialized,.splide.is-rendered{visibility:visible}.splide__slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;box-sizing:border-box;flex-shrink:0;list-style-type:none!important;margin:0;outline:0;position:relative}.splide__slide img{vertical-align:bottom}.splide__slider{position:relative}.splide__sr{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.splide__spinner{-webkit-animation:1s linear infinite splide-loading;animation:1s linear infinite splide-loading;border:2px solid #999;border-left-color:transparent;border-radius:50%;bottom:0;contain:strict;display:inline-block;height:20px;left:0;margin:auto;position:absolute;right:0;top:0;width:20px}.splide__track{overflow:hidden;position:relative;z-index:0}@-webkit-keyframes splide-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes splide-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.splide--draggable>.splide__slider>.splide__track,.splide--draggable>.splide__track{-webkit-user-select:none;-moz-user-select:none;user-select:none}.splide--fade>.splide__slider>.splide__track>.splide__list,.splide--fade>.splide__track>.splide__list{display:flex}.splide--fade>.splide__slider>.splide__track>.splide__list>.splide__slide,.splide--fade>.splide__track>.splide__list>.splide__slide{position:relative;left:unset;right:unset;top:unset;opacity:0;z-index:0}.splide--fade>.splide__slider>.splide__track>.splide__list>.splide__slide.is-active,.splide--fade>.splide__track>.splide__list>.splide__slide.is-active{opacity:1;position:relative;z-index:1}.splide--rtl{direction:rtl}.splide--ttb.is-active>.splide__slider>.splide__track>.splide__list,.splide--ttb.is-active>.splide__track>.splide__list{display:block}.splide .splide__arrow{align-items:center;background:var(--splide-nav-background);border:var(--splide-nav-border);border-radius:3px;cursor:pointer;display:flex;height:3em;justify-content:center;opacity:.25;padding:0;color:var(--splide-nav-color);position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:2em;z-index:1;transition:opacity .4s ease-in-out}.splide:hover .splide__arrow{opacity:.75}.splide .splide__arrow svg{fill:currentColor;height:1em;width:1em}.splide .splide__arrow:focus,.splide .splide__arrow:hover{opacity:1;background:var(--splide-nav-background);color:var(--splide-nav-color)}.splide .splide__arrow:disabled{opacity:.1;cursor:not-allowed}.splide .splide__arrow--prev{left:1em}.splide .splide__arrow--prev svg{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.splide .splide__arrow--next{right:1em}.splide .splide__pagination{bottom:-25px;left:0;padding:0 1em;position:absolute;right:0;z-index:1}.splide .splide__pagination__page{background:var(--splide-pagination-background);border:0;border-radius:50%;display:inline-block;height:10px;margin:3px;opacity:.25;padding:0;transition:opacity .2s ease-in-out;width:10px}.splide .splide__pagination__page.is-active{background:var(--splide-pagination-background);opacity:.75}.splide .splide__pagination__page:hover{cursor:pointer;opacity:1}.splide .splide__pagination__page:focus-visible{outline-offset:3px}.splide .splide.is-focus-in .splide__pagination__page:focus{outline-offset:3px}.splide .splide__progress__bar{background:#ccc;height:3px}@supports (outline-offset:-3px){.splide__slide:focus-visible{outline-offset:-3px}.splide.is-focus-in .splide__slide:focus{outline-offset:-3px}}.splide__toggle{cursor:pointer}.splide__toggle:focus-visible{outline-offset:3px}.splide.is-focus-in .splide__toggle:focus{outline-offset:3px}.splide--nav>.splide__slider>.splide__track>.splide__list>.splide__slide,.splide--nav>.splide__track>.splide__list>.splide__slide{border:3px solid transparent;cursor:pointer}.splide--nav>.splide__slider>.splide__track>.splide__list>.splide__slide.is-active,.splide--nav>.splide__track>.splide__list>.splide__slide.is-active{border:3px solid #000}.splide--nav>.splide__slider>.splide__track>.splide__list>.splide__slide:focus,.splide--nav>.splide__track>.splide__list>.splide__slide:focus{outline:0}.splide--rtl>.splide__arrows .splide__arrow--prev,.splide--rtl>.splide__slider>.splide__track>.splide__arrows .splide__arrow--prev,.splide--rtl>.splide__track>.splide__arrows .splide__arrow--prev{left:auto;right:1em}.splide--rtl>.splide__arrows .splide__arrow--prev svg,.splide--rtl>.splide__slider>.splide__track>.splide__arrows .splide__arrow--prev svg,.splide--rtl>.splide__track>.splide__arrows .splide__arrow--prev svg{-webkit-transform:scaleX(1);transform:scaleX(1)}.splide--rtl>.splide__arrows .splide__arrow--next,.splide--rtl>.splide__slider>.splide__track>.splide__arrows .splide__arrow--next,.splide--rtl>.splide__track>.splide__arrows .splide__arrow--next{left:1em;right:auto}.splide--rtl>.splide__arrows .splide__arrow--next svg,.splide--rtl>.splide__slider>.splide__track>.splide__arrows .splide__arrow--next svg,.splide--rtl>.splide__track>.splide__arrows .splide__arrow--next svg{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.splide--ttb>.splide__arrows .splide__arrow,.splide--ttb>.splide__slider>.splide__track>.splide__arrows .splide__arrow,.splide--ttb>.splide__track>.splide__arrows .splide__arrow{left:50%;-webkit-transform:translate(-50%);transform:translate(-50%)}.splide--ttb>.splide__arrows .splide__arrow--prev,.splide--ttb>.splide__slider>.splide__track>.splide__arrows .splide__arrow--prev,.splide--ttb>.splide__track>.splide__arrows .splide__arrow--prev{top:1em}.splide--ttb>.splide__arrows .splide__arrow--prev svg,.splide--ttb>.splide__slider>.splide__track>.splide__arrows .splide__arrow--prev svg,.splide--ttb>.splide__track>.splide__arrows .splide__arrow--prev svg{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}.splide--ttb>.splide__arrows .splide__arrow--next,.splide--ttb>.splide__slider>.splide__track>.splide__arrows .splide__arrow--next,.splide--ttb>.splide__track>.splide__arrows .splide__arrow--next{bottom:1em;top:auto}.splide--ttb>.splide__arrows .splide__arrow--next svg,.splide--ttb>.splide__slider>.splide__track>.splide__arrows .splide__arrow--next svg,.splide--ttb>.splide__track>.splide__arrows .splide__arrow--next svg{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.splide--ttb>.splide__pagination,.splide--ttb>.splide__slider>.splide__pagination{bottom:0;display:flex;flex-direction:column;left:auto;padding:1em 0;right:.5em;top:0}.site-footer-row{display:grid;grid-template-columns:repeat(2,minmax(0,1fr))}.site-footer-row.site-footer-row-columns-3{grid-template-columns:1fr 1fr 1fr}.site-footer-row.site-footer-row-columns-4{grid-template-columns:1fr 1fr 1fr 1fr}.site-footer-row.site-footer-row-columns-1{display:flex;justify-content:center}.site-footer-row.site-footer-row-columns-1 .site-footer-section{flex:1;text-align:center;min-width:0}.site-footer-row-layout-fullwidth>.site-footer-row-container-inner>.site-container{max-width:none}@media screen and (min-width:720px) and (max-width:1024px){.site-footer-row-container-inner .site-footer-row.site-footer-row-tablet-column-layout-default{grid-template-columns:minmax(0,1fr)}}.site-footer-section{display:flex;max-height:inherit}.footer-widget-area{flex:1;min-width:0;display:flex}.footer-widget-area>*{flex:1;min-width:0}.footer-widget-area.content-valign-middle{align-items:center}.footer-widget-area.content-valign-top{align-items:flex-start}.footer-widget-area.content-align-center{text-align:center}.footer-widget-area.content-align-center .footer-navigation{justify-content:center}.footer-widget-area.content-align-center .widget_media_image img{margin:0 auto}.footer-widget-area.content-align-center .footer-social-inner-wrap{justify-content:center}.footer-widget-area.content-align-right{text-align:right}.footer-widget-area.content-align-right .footer-navigation{justify-content:flex-end}.footer-widget-area.content-align-right .footer-navigation .menu{justify-content:flex-end}.footer-widget-area.content-align-right .footer-social-inner-wrap{justify-content:flex-end}.footer-widget-area.content-align-right .widget_media_image img{margin:0 0 0 auto}.footer-widget-area.content-align-left{text-align:left}.footer-widget-area.content-align-left .footer-navigation{justify-content:flex-start}.footer-widget-area.content-align-left .footer-navigation .menu{justify-content:flex-start}.footer-widget-area.content-align-left .footer-social-inner-wrap{justify-content:flex-start}@media screen and (max-width:1024px){.site-branding.branding-tablet-layout-standard:not(.site-brand-logo-only) a.brand img{margin-right:1em}.has-sticky-sidebar .sidebar-inner-wrap,.has-sticky-sidebar-widget .primary-sidebar .widget:last-child{max-height:none!important;overflow-y:auto}.footer-widget-area.content-tablet-align-center{text-align:center}.footer-widget-area.content-tablet-align-center .footer-navigation{justify-content:center}.footer-widget-area.content-tablet-align-center .footer-navigation .menu{justify-content:center}.footer-widget-area.content-tablet-align-center .footer-social-inner-wrap{justify-content:center}.footer-widget-area.content-tablet-align-center .widget_media_image img{margin:0 auto}}@media screen and (max-width:719px){.footer-widget-area.content-mobile-align-center{text-align:center}.footer-widget-area.content-mobile-align-center .footer-navigation{justify-content:center}.footer-widget-area.content-mobile-align-center .footer-navigation .menu{justify-content:center}.footer-widget-area.content-mobile-align-center .footer-social-inner-wrap{justify-content:center}.footer-widget-area.content-mobile-align-center .widget_media_image img{margin:0 auto}}.ft-ro-dir-column .site-footer-section{flex-direction:column}.rtl .footer-widget-area.content-align-right .footer-social-inner-wrap{justify-content:flex-start}.rtl .footer-widget-area.content-align-left .footer-social-inner-wrap{justify-content:flex-end}.footer-menu-container,.footer-navigation{display:flex}.footer-navigation a{display:block;width:100%;text-decoration:none;color:var(--global-palette4);transition:all .2s ease-in-out}.footer-navigation a:focus,.footer-navigation a:hover{color:var(--global-palette-highlight)}.footer-navigation ul{display:block;list-style:none;margin:0;padding:0}.footer-navigation ul li a{padding:.6em .5em}.footer-navigation .menu{display:flex;flex-wrap:wrap;justify-content:center}.site-footer-wrap .footer-navigation .footer-menu-container>ul li a:hover{text-decoration:none}.site-footer-wrap .social-button{color:var(--global-palette4);background:var(--global-palette7)}.site-footer-wrap .social-button:hover{text-decoration:none;color:var(--global-palette-btn);background:var(--global-palette-btn-bg)}.social-style-outline .social-button:hover{color:var(--global-palette3)}.site-footer-section{position:relative}.site-footer-section:not(:last-child):after{content:'';position:absolute;top:0;bottom:0;height:auto;width:0;right:-15px;-webkit-transform:translateX(50%);transform:translateX(50%)}.footer-html{margin:1em 0}.footer-html p:last-child{margin-bottom:0}.footer-html p:first-child{margin-top:0}a{cursor:pointer}.popup-drawer .drawer-overlay{background-color:none}.pagination .nav-links{text-align:center}.main-navigation .menu>.menu-item>a{position:relative;padding:6px 0;overflow:hidden}.main-navigation .menu>.menu-item>a::after{content:"";position:absolute;top:0;left:calc(37%);width:22px;height:11px;background-image:url(https://www.platingpixels.com/wp-content/themes/restored316-create/restored316-create/images/above-nav.svg);background-repeat:no-repeat;opacity:0;transition:all .5s ease}.main-navigation .menu>.menu-item>a:active::after,.main-navigation .menu>.menu-item>a:hover::after{opacity:1;animation:1s ease-in-out infinite alternate pulse}@keyframes pulse{from{transform:scale(.8)}to{transform:scale(1.2)}}.menu .right a{border-right:1px solid var(--global-palette7)}.menu .left a{border-left:1px solid var(--global-palette7)}ul.menu .left ul li.menu-item>a,ul.menu .right ul li.menu-item>a{border:none}.comment-body{border-bottom:1px solid var(--global-palette8)}.comment .avatar{height:75px;left:-95px;width:75px}.comment-meta{margin-left:95px}input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],select,textarea{border:1px solid var(--global-palette7);border-radius:0}.wp-block-search .wp-block-search__input{border:1px solid var(--global-palette7);border-radius:50px}.wp-block-search .wp-block-search__button{border-color:var(--global-palette7)}.popup-drawer .drawer-overlay{background-color:transparent}.site-branding{padding:30px 0}.site-header-upper-inner-wrap.child-is-fixed .site-main-header-wrap .site-branding{padding:0}.site-header-upper-inner-wrap.child-is-fixed .site-main-header-wrap .site-branding img{max-width:140px}.entry-taxonomies{color:#8cc63f}@media (max-width:479px){h1.entry-title{line-height:1.1;font-size:34px}.kadence-breadcrumbs{line-height:1.6;margin-bottom:30px}}:root{--global-kb-font-size-sm:clamp(0.8rem, 0.73rem + 0.217vw, 0.9rem);--global-kb-font-size-md:clamp(1.1rem, 0.995rem + 0.326vw, 1.25rem);--global-kb-font-size-lg:clamp(1.75rem, 1.576rem + 0.543vw, 2rem);--global-kb-font-size-xl:clamp(2.25rem, 1.728rem + 1.63vw, 3rem);--global-kb-font-size-xxl:clamp(2.5rem, 1.456rem + 3.26vw, 4rem);--global-kb-font-size-xxxl:clamp(2.75rem, 0.489rem + 7.065vw, 6rem)}.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}.wprm-comment-rating svg path{fill:#7ed321}.wprm-comment-rating svg polygon{stroke:#7ed321}.wprm-comment-ratings-container svg .wprm-star-full{fill:#7ed321}.wprm-comment-ratings-container svg .wprm-star-empty{stroke:#7ed321}.wprm-recipe-template-snippet-basic-modified{font-family:"Lucida Sans Unicode","Lucida Grande",sans-serif;font-size:.9em;text-align:center;margin-top:-3px;margin-bottom:10px}.wprm-recipe-template-classic-modified{margin:20px auto;background-color:#fff;font-family:inherit;font-size:1em;line-height:1.5em!important;color:#333;max-width:740px}.wprm-recipe-template-classic-modified a{color:#7ed321}.wprm-recipe-template-classic-modified li,.wprm-recipe-template-classic-modified p{font-family:inherit;font-size:1em!important;line-height:1.5em!important}.wprm-recipe-template-classic-modified li{margin:0 0 0 32px!important;padding:0!important}.wprm-recipe-template-classic-modified ol,.wprm-recipe-template-classic-modified ul{margin:0!important;padding:0!important}.wprm-recipe-template-classic-modified br{display:none}.wprm-recipe-template-classic-modified .wprm-recipe-header,.wprm-recipe-template-classic-modified .wprm-recipe-name{font-family:inherit;color:#000;line-height:1.3em}.wprm-recipe-template-classic-modified h1,.wprm-recipe-template-classic-modified h2,.wprm-recipe-template-classic-modified h3,.wprm-recipe-template-classic-modified h4,.wprm-recipe-template-classic-modified h5{font-family:inherit;color:#000;line-height:1.3em;margin:0!important;padding:0!important}.wprm-recipe-template-classic-modified .wprm-recipe-header{margin-top:1.2em!important}.wprm-recipe-template-classic-modified h1{font-size:2em}.wprm-recipe-template-classic-modified h2{font-size:1.8em}.wprm-recipe-template-classic-modified h3{font-size:1.2em}.wprm-recipe-template-classic-modified h4{font-size:1em}.wprm-recipe-template-classic-modified h5{font-size:1em}.wprm-recipe-template-classic-modified{border-top-style:outset;border-top-width:0;border-top-color:#fff;padding:10px}@font-face{font-family:'Albert Sans';font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/albertsans/v1/i7dOIFdwYjGaAMFtZd_QA1ZbYFc.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Albert Sans';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/albertsans/v1/i7dOIFdwYjGaAMFtZd_QA1ZbYFc.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Albert Sans';font-style:normal;font-weight:600;font-display:swap;src:url(https://fonts.gstatic.com/s/albertsans/v1/i7dOIFdwYjGaAMFtZd_QA1ZbYFc.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Albert Sans';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/albertsans/v1/i7dOIFdwYjGaAMFtZd_QA1ZbYFc.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Alegreya Sans';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/alegreyasans/v24/5aUz9_-1phKLFgshYDvh6Vwt7VptvQ.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Sen;font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/sen/v9/6xKjdSxYI9_3nPWN.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Sen;font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/sen/v9/6xKjdSxYI9_3nPWN.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Zilla Slab';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/zillaslab/v11/dFa6ZfeM_74wlPZtksIFajo6_Q.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}.single-content h1{margin-bottom:50px}.search .loop-entry.type-post h2.entry-title{font-size:20px}@media only screen and (max-width:359px){.content-container.site-container{padding-left:10px!important;padding-right:10px!important}.wprm-recipe-container>.wprm-recipe{padding-left:0!important;padding-right:0!important}}#wprm-recipe-rating-0 .wprm-rating-star.wprm-rating-star-full svg *{fill:#7ed321}#wprm-recipe-rating-0 .wprm-rating-star.wprm-rating-star-33 svg *{fill:url(#wprm-recipe-rating-0-33)}#wprm-recipe-rating-0 .wprm-rating-star.wprm-rating-star-50 svg *{fill:url(#wprm-recipe-rating-0-50)}#wprm-recipe-rating-0 .wprm-rating-star.wprm-rating-star-66 svg *{fill:url(#wprm-recipe-rating-0-66)}linearGradient#wprm-recipe-rating-0-33 stop{stop-color:#7ed321}linearGradient#wprm-recipe-rating-0-50 stop{stop-color:#7ed321}linearGradient#wprm-recipe-rating-0-66 stop{stop-color:#7ed321}.kadence-info-box-image-intrisic{height:0}.kt-blocks-info-box-link-wrap{margin-left:auto;margin-right:auto}.kt-info-halign-center{text-align:center}.kt-info-halign-center .kadence-info-box-image-inner-intrisic-container{margin:0 auto}.kt-blocks-info-box-media-align-top .kt-blocks-info-box-media{display:inline-block;max-width:100%}.kt-blocks-info-box-media-align-top .kt-infobox-textcontent{display:block}.kt-blocks-info-box-text{color:var(--global-palette5,#444)}.wp-block-kadence-infobox .kt-blocks-info-box-text{margin-bottom:0}.wp-block-kadence-infobox .kt-blocks-info-box-title{margin-top:0}.kt-blocks-info-box-link-wrap{background:var(--global-palette8,#f2f2f2);border-color:var(--global-palette7,#eee);display:block;padding:var(--global-kb-spacing-xs,1rem)}.kt-blocks-info-box-link-wrap,.kt-blocks-info-box-media{border:0 solid transparent;transition:all .3s cubic-bezier(.17,.67,.35,.95)}.kt-blocks-info-box-text,.kt-blocks-info-box-title{transition:all .3s cubic-bezier(.17,.67,.35,.95)}.kt-blocks-info-box-media{color:var(--global-palette5,#444);margin:0 15px;padding:10px}.kt-blocks-info-box-media img{height:auto;margin:0;max-width:100%;padding:0}.kt-blocks-info-box-media-align-top .kt-blocks-info-box-media{margin:0}.kt-blocks-info-box-media-align-top .kt-blocks-info-box-media-container{margin:0 15px;max-width:inherit}.kt-blocks-info-box-media .kt-info-box-image,.kt-blocks-info-box-media-container{max-width:100%}.wp-block-kadence-infobox a.kt-blocks-info-box-link-wrap{text-decoration:none!important}.kt-blocks-info-box-media{overflow:hidden}.kt-info-box_17cd67-21 .kt-blocks-info-box-link-wrap{border-top:5px solid var(--global-palette9,#fff);border-right:5px solid var(--global-palette9,#fff);border-bottom:5px solid var(--global-palette9,#fff);border-left:5px solid var(--global-palette9,#fff);border-top-left-radius:30px;border-top-right-radius:30px;border-bottom-right-radius:30px;border-bottom-left-radius:30px;background:#fff;padding-top:var(--global-kb-spacing-xs,1rem);padding-right:var(--global-kb-spacing-xs,1rem);padding-bottom:var(--global-kb-spacing-xs,1rem);padding-left:var(--global-kb-spacing-xs,1rem)}.kt-info-box_17cd67-21 .kadence-info-box-image-inner-intrisic-container{max-width:318px}.kt-info-box_17cd67-21 .kadence-info-box-image-inner-intrisic-container .kadence-info-box-image-intrisic{padding-bottom:94.8611%;width:720px;height:0;max-width:100%}.kt-info-box_17cd67-21 .kt-blocks-info-box-media{background:var(--global-palette7,#eee);border-color:var(--global-palette7,#eee);border-radius:200px;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0}.kt-info-box_17cd67-21 .kt-blocks-info-box-media-container{margin-top:0;margin-right:15px;margin-bottom:10px;margin-left:15px}.kt-info-box_17cd67-21 .kt-blocks-info-box-media .kadence-info-box-image-intrisic img{border-radius:200px}.kt-info-box_17cd67-21 h2.kt-blocks-info-box-title{font-size:28px;line-height:35px;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;margin-top:5px;margin-right:0;margin-bottom:10px;margin-left:0}.kt-info-box_17cd67-21 .kt-blocks-info-box-text{font-size:var(--global-kb-font-size-sm, .9rem);line-height:24px}@media all and (max-width:1024px){.kt-info-box_17cd67-21 .kt-blocks-info-box-link-wrap{border-top:5px solid var(--global-palette9,#fff);border-right:5px solid var(--global-palette9,#fff);border-bottom:5px solid var(--global-palette9,#fff);border-left:5px solid var(--global-palette9,#fff)}}@media all and (max-width:767px){.kt-info-box_17cd67-21 .kt-blocks-info-box-link-wrap{border-top:5px solid var(--global-palette9,#fff);border-right:5px solid var(--global-palette9,#fff);border-bottom:5px solid var(--global-palette9,#fff);border-left:5px solid var(--global-palette9,#fff)}}.wp-block-kadence-advancedheading mark{background:0 0;border-style:solid;border-width:0}.wp-block-kadence-advancedheading.kt-adv-heading_4b1a11-6b,.wp-block-kadence-advancedheading.kt-adv-heading_4b1a11-6b[data-kb-block=kb-adv-heading_4b1a11-6b]{font-size:24px;font-style:normal}.wp-block-kadence-advancedheading.kt-adv-heading_4b1a11-6b mark,.wp-block-kadence-advancedheading.kt-adv-heading_4b1a11-6b[data-kb-block=kb-adv-heading_4b1a11-6b] mark{font-style:normal;color:#f76a0c;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0}.kb-posts-id-_170bae-15 .entry.loop-entry .entry-header .entry-title{font-size:var(--global-kb-font-size-sm, .9rem)}.kb-posts-id-_170bae-15 .loop-entry{background:0 0;box-shadow:none}.kb-posts-id-_170bae-15 .loop-entry>.entry-content-wrap{padding:0}.kb-posts-id-_170bae-15 .loop-entry .post-thumbnail{margin-bottom:1em}.wp-block-kadence-advancedheading.kt-adv-heading_c3a7ec-1e,.wp-block-kadence-advancedheading.kt-adv-heading_c3a7ec-1e[data-kb-block=kb-adv-heading_c3a7ec-1e]{font-style:normal}.wp-block-kadence-advancedheading.kt-adv-heading_c3a7ec-1e mark,.wp-block-kadence-advancedheading.kt-adv-heading_c3a7ec-1e[data-kb-block=kb-adv-heading_c3a7ec-1e] mark{font-style:normal;color:#f76a0c;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0}.wp-block-kadence-advancedheading.kt-adv-heading_53bdb0-6a,.wp-block-kadence-advancedheading.kt-adv-heading_53bdb0-6a[data-kb-block=kb-adv-heading_53bdb0-6a]{font-style:normal}.wp-block-kadence-advancedheading.kt-adv-heading_53bdb0-6a mark,.wp-block-kadence-advancedheading.kt-adv-heading_53bdb0-6a[data-kb-block=kb-adv-heading_53bdb0-6a] mark{font-style:normal;color:#f76a0c;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0}</style>
	<meta name="description" content="Chicken Fried Chicken is a simple recipe of breaded chicken breasts fried to crispy, extra crunchy goodness for an easy weeknight dinner." />
	<link rel="canonical" href="https://www.platingpixels.com/chicken-fried-chicken/" />
	<meta property="og:locale" content="en_US" />
	<meta property="og:type" content="article" />
	<meta property="og:title" content="Chicken Fried Chicken - Plating Pixels" />
	<meta property="og:description" content="Chicken Fried Chicken is a simple recipe of breaded chicken breasts fried to crispy, extra crunchy goodness for an easy weeknight dinner." />
	<meta property="og:url" content="https://www.platingpixels.com/chicken-fried-chicken/" />
	<meta property="og:site_name" content="Plating Pixels" />
	<meta property="article:publisher" content="https://facebook.com/platingpixels" />
	<meta property="article:author" content="https://www.facebook.com/PlatingPixels" />
	<meta property="article:published_time" content="2022-09-19T15:37:22+00:00" />
	<meta property="article:modified_time" content="2022-10-20T18:05:44+00:00" />
	<meta property="og:image" content="https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-2.jpg" />
	<meta property="og:image:width" content="1080" />
	<meta property="og:image:height" content="1620" />
	<meta property="og:image:type" content="image/jpeg" />
	<meta name="author" content="Matthew" />
	<meta name="twitter:card" content="summary_large_image" />
	<meta name="twitter:creator" content="@platingpixels" />
	<meta name="twitter:site" content="@platingpixels" />
	<meta name="twitter:label1" content="Written by" />
	<meta name="twitter:data1" content="Matthew" />
	<meta name="twitter:label2" content="Est. reading time" />
	<meta name="twitter:data2" content="5 minutes" />
	<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"Article","@id":"https://www.platingpixels.com/chicken-fried-chicken/#article","isPartOf":{"@id":"https://www.platingpixels.com/chicken-fried-chicken/"},"author":{"name":"Matthew","@id":"https://www.platingpixels.com/#/schema/person/4a4d76ffc8a44f160c7b433abfa34c6f"},"headline":"Chicken Fried Chicken","datePublished":"2022-09-19T15:37:22+00:00","dateModified":"2022-10-20T18:05:44+00:00","wordCount":1093,"commentCount":2,"publisher":{"@id":"https://www.platingpixels.com/#organization"},"image":{"@id":"https://www.platingpixels.com/chicken-fried-chicken/#primaryimage"},"thumbnailUrl":"https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-2.jpg","articleSection":["Chicken Recipes","Entrees and Dinner Recipes","Recipes"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https://www.platingpixels.com/chicken-fried-chicken/#respond"]}]},{"@type":"WebPage","@id":"https://www.platingpixels.com/chicken-fried-chicken/","url":"https://www.platingpixels.com/chicken-fried-chicken/","name":"Chicken Fried Chicken - Plating Pixels","isPartOf":{"@id":"https://www.platingpixels.com/#website"},"primaryImageOfPage":{"@id":"https://www.platingpixels.com/chicken-fried-chicken/#primaryimage"},"image":{"@id":"https://www.platingpixels.com/chicken-fried-chicken/#primaryimage"},"thumbnailUrl":"https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-2.jpg","datePublished":"2022-09-19T15:37:22+00:00","dateModified":"2022-10-20T18:05:44+00:00","description":"Chicken Fried Chicken is a simple recipe of breaded chicken breasts fried to crispy, extra crunchy goodness for an easy weeknight dinner.","breadcrumb":{"@id":"https://www.platingpixels.com/chicken-fried-chicken/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://www.platingpixels.com/chicken-fried-chicken/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https://www.platingpixels.com/chicken-fried-chicken/#primaryimage","url":"https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-2.jpg","contentUrl":"https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-2.jpg","width":1080,"height":1620,"caption":"Overhead shot of Chicken Fried Chicken smothered with country gravy"},{"@type":"BreadcrumbList","@id":"https://www.platingpixels.com/chicken-fried-chicken/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://www.platingpixels.com/"},{"@type":"ListItem","position":2,"name":"Chicken Recipes","item":"https://www.platingpixels.com/category/chicken/"},{"@type":"ListItem","position":3,"name":"Chicken Fried Chicken"}]},{"@type":"WebSite","@id":"https://www.platingpixels.com/#website","url":"https://www.platingpixels.com/","name":"Plating Pixels","description":"Easy Lightened-Up Comfort Food Recipes","publisher":{"@id":"https://www.platingpixels.com/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://www.platingpixels.com/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https://www.platingpixels.com/#organization","name":"Plating Pixels","url":"https://www.platingpixels.com/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https://www.platingpixels.com/#/schema/logo/image/","url":"https://www.platingpixels.com/wp-content/uploads/2017/10/Plating-Pixels-logo-food-blog.png","contentUrl":"https://www.platingpixels.com/wp-content/uploads/2017/10/Plating-Pixels-logo-food-blog.png","width":640,"height":182,"caption":"Plating Pixels"},"image":{"@id":"https://www.platingpixels.com/#/schema/logo/image/"},"sameAs":["https://facebook.com/platingpixels","https://twitter.com/platingpixels","https://instagram.com/platingpixels","https://www.linkedin.com/in/mattivan","https://pinterest.com/platingpixels","https://www.youtube.com/channel/UCUO0dU4kM99ZWWDlSCmGLvA"]},{"@type":"Person","@id":"https://www.platingpixels.com/#/schema/person/4a4d76ffc8a44f160c7b433abfa34c6f","name":"Matthew","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https://www.platingpixels.com/#/schema/person/image/","url":"https://secure.gravatar.com/avatar/1bdf552b063b57f828e16a2db45aea8d?s=96&d=blank&r=pg","contentUrl":"https://secure.gravatar.com/avatar/1bdf552b063b57f828e16a2db45aea8d?s=96&d=blank&r=pg","caption":"Matthew"},"sameAs":["https://www.platingpixels.com","https://www.facebook.com/PlatingPixels","https://twitter.com/platingpixels"]},{"@type":"Recipe","name":"Chicken Fried Chicken","author":{"@type":"Person","name":"Plating Pixels"},"description":"Chicken Fried Chicken is a simple recipe of breaded chicken breasts fried to crispy, extra crunchy goodness for an easy weeknight dinner the family will love.","datePublished":"2022-09-19T08:37:22+00:00","image":["https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1.jpg","https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1-500x500.jpg","https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1-500x375.jpg","https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1-480x270.jpg"],"recipeYield":["6","6 pieces"],"prepTime":"PT15M","cookTime":"PT15M","totalTime":"PT30M","recipeIngredient":["2 pounds Foster Farms Free Range Simply Raised Chicken Breast Fillets (cut in half)","2 cups all-purpose flour","2 teaspoons baking powder","1 ½ teaspoons baking soda","1 ½ teaspoons salt","1 teaspoon garlic powder","1 teaspoon paprika","½ teaspoon ground black pepper","1 ½ cups buttermilk","1 large egg","Frying oil (such as avocado, grapeseed, peanut, canola, or corn oil)","⅓ cup of the used frying oil (or butter)","½ cup flour","2 ½ cups whole milk","Salt and pepper to taste"],"recipeInstructions":[{"@type":"HowToSection","name":"To Fry the Chicken Breasts","itemListElement":[{"@type":"HowToStep","text":"In a large bowl, whisk together flour, baking powder, baking soda, salt, garlic powder, paprika, and pepper. Set aside.","name":"In a large bowl, whisk together flour, baking powder, baking soda, salt, garlic powder, paprika, and pepper. Set aside.","url":"https://www.platingpixels.com/chicken-fried-chicken/#wprm-recipe-19396-step-0-0"},{"@type":"HowToStep","text":"In a separate bowl stir together the buttermilk and egg.","name":"In a separate bowl stir together the buttermilk and egg.","url":"https://www.platingpixels.com/chicken-fried-chicken/#wprm-recipe-19396-step-0-1"},{"@type":"HowToStep","text":"One at a time, dip the chicken breasts into the flour mixture and press to evenly coat both sides. Next, dip into the buttermilk mixture, then dip into the flour mixture again to coat well. Repeat for remaining chicken pieces.","name":"One at a time, dip the chicken breasts into the flour mixture and press to evenly coat both sides. Next, dip into the buttermilk mixture, then dip into the flour mixture again to coat well. Repeat for remaining chicken pieces.","url":"https://www.platingpixels.com/chicken-fried-chicken/#wprm-recipe-19396-step-0-2"},{"@type":"HowToStep","text":"Preheat about 2 inches of frying oil in a skillet or frying pan on medium to 325° F.","name":"Preheat about 2 inches of frying oil in a skillet or frying pan on medium to 325° F.","url":"https://www.platingpixels.com/chicken-fried-chicken/#wprm-recipe-19396-step-0-3"},{"@type":"HowToStep","text":"Add some of the breaded chicken breast pieces, leaving space between each. Fry for 3 to 5 minutes until browned. Rotate to brown the other sides and cook to an internal temp of at least 165° F.","name":"Add some of the breaded chicken breast pieces, leaving space between each. Fry for 3 to 5 minutes until browned. Rotate to brown the other sides and cook to an internal temp of at least 165° F.","url":"https://www.platingpixels.com/chicken-fried-chicken/#wprm-recipe-19396-step-0-4"},{"@type":"HowToStep","text":"Remove the chicken breasts and place them onto a paper-towel line plate to drain. Repeat for remaining chicken pieces. Reserve some of the frying oil to make the country gravy.","name":"Remove the chicken breasts and place them onto a paper-towel line plate to drain. Repeat for remaining chicken pieces. Reserve some of the frying oil to make the country gravy.","url":"https://www.platingpixels.com/chicken-fried-chicken/#wprm-recipe-19396-step-0-5"},{"@type":"HowToStep","text":"Serve with country gravy or desired sauce and sides.","name":"Serve with country gravy or desired sauce and sides.","url":"https://www.platingpixels.com/chicken-fried-chicken/#wprm-recipe-19396-step-0-6"}]},{"@type":"HowToSection","name":"To Make the Country Gravy","itemListElement":[{"@type":"HowToStep","text":"In a medium saucepan over medium heat, stir together the reserved frying oil and flour until it forms a thick past-like consistency. If using butter, melt the butter first, then add the flour.","name":"In a medium saucepan over medium heat, stir together the reserved frying oil and flour until it forms a thick past-like consistency. If using butter, melt the butter first, then add the flour.","url":"https://www.platingpixels.com/chicken-fried-chicken/#wprm-recipe-19396-step-1-0"},{"@type":"HowToStep","text":"Slowly add the milk while and whisk until smooth. Cook 3 to 5 minutes, stirring often, to heat and thicken the sauce.","name":"Slowly add the milk while and whisk until smooth. Cook 3 to 5 minutes, stirring often, to heat and thicken the sauce.","url":"https://www.platingpixels.com/chicken-fried-chicken/#wprm-recipe-19396-step-1-1"},{"@type":"HowToStep","text":"Pour over the fried chicken and serve.","name":"Pour over the fried chicken and serve.","url":"https://www.platingpixels.com/chicken-fried-chicken/#wprm-recipe-19396-step-1-2"}]}],"aggregateRating":{"@type":"AggregateRating","ratingValue":"5","ratingCount":"1"},"recipeCategory":["Chicken","Dinner","Entree"],"recipeCuisine":["American"],"keywords":"breaded fried chicken, Chicken Fried Chicken, fried chicken recipe","nutrition":{"@type":"NutritionInformation","servingSize":"1 piece with gravy","calories":"669 kcal","carbohydrateContent":"49 g","proteinContent":"44 g","fatContent":"32 g","saturatedFatContent":"8 g","transFatContent":"0.2 g","cholesterolContent":"147 mg","sodiumContent":"1147 mg","fiberContent":"2 g","sugarContent":"8 g","unsaturatedFatContent":"22 g"},"@id":"https://www.platingpixels.com/chicken-fried-chicken/#recipe","isPartOf":{"@id":"https://www.platingpixels.com/chicken-fried-chicken/#article"},"mainEntityOfPage":"https://www.platingpixels.com/chicken-fried-chicken/"}]}</script>
	<!-- / Yoast SEO plugin. -->


<link rel='dns-prefetch' href='//scripts.mediavine.com' />
<link rel='dns-prefetch' href='//maxcdn.bootstrapcdn.com' />
<link rel='dns-prefetch' href='//platform.twitter.com' />
<link rel='dns-prefetch' href='//s3.amazonaws.com' />
<link rel='dns-prefetch' href='//ajax.googleapis.com' />
<link rel='dns-prefetch' href='//cdnjs.cloudflare.com' />
<link rel='dns-prefetch' href='//netdna.bootstrapcdn.com' />

<link rel='dns-prefetch' href='//connect.facebook.net' />
<link rel='dns-prefetch' href='//www.google-analytics.com' />
<link rel='dns-prefetch' href='//www.googletagmanager.com' />
<link rel='dns-prefetch' href='//maps.google.com' />
<link rel="alternate" type="application/rss+xml" title="Plating Pixels &raquo; Feed" href="https://www.platingpixels.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="Plating Pixels &raquo; Comments Feed" href="https://www.platingpixels.com/comments/feed/" />
			<script type="rocketlazyloadscript">document.documentElement.classList.remove( 'no-js' );</script>
			<link rel="alternate" type="application/rss+xml" title="Plating Pixels &raquo; Chicken Fried Chicken Comments Feed" href="https://www.platingpixels.com/chicken-fried-chicken/feed/" />
<style></style>



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




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








<style id='kadence-blocks-global-variables-inline-css'></style>
<script async="async" data-noptimize="1" data-cfasync="false" src='https://scripts.mediavine.com/tags/plating-pixels.js?ver=6.3.1' id='mv-script-wrapper-js'></script>
<script type="rocketlazyloadscript" data-rocket-src='https://www.platingpixels.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.0' id='jquery-core-js'></script>
<script type="rocketlazyloadscript" data-rocket-src='https://www.platingpixels.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1' id='jquery-migrate-js' defer></script>
<link rel="https://api.w.org/" href="https://www.platingpixels.com/wp-json/" /><link rel="alternate" type="application/json" href="https://www.platingpixels.com/wp-json/wp/v2/posts/19388" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.platingpixels.com/xmlrpc.php?rsd" />
<link rel='shortlink' href='https://www.platingpixels.com/?p=19388' />
<link rel="alternate" type="application/json+oembed" href="https://www.platingpixels.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.platingpixels.com%2Fchicken-fried-chicken%2F" />
<link rel="alternate" type="text/xml+oembed" href="https://www.platingpixels.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.platingpixels.com%2Fchicken-fried-chicken%2F&#038;format=xml" />
<!-- Google tag (gtag.js) -->
<script type="rocketlazyloadscript" async data-rocket-src="https://www.googletagmanager.com/gtag/js?id=G-F7SLTF9X6H"></script>
<script type="rocketlazyloadscript">
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'G-F7SLTF9X6H');
</script><style type="text/css"></style><style type="text/css"></style><style type="text/css"></style><link rel="pingback" href="https://www.platingpixels.com/xmlrpc.php">
<link rel="icon" href="https://www.platingpixels.com/wp-content/uploads/2017/10/cropped-P-favicon-32x32.webp" sizes="32x32" />
<link rel="icon" href="https://www.platingpixels.com/wp-content/uploads/2017/10/cropped-P-favicon-192x192.webp" sizes="192x192" />
<link rel="apple-touch-icon" href="https://www.platingpixels.com/wp-content/uploads/2017/10/cropped-P-favicon-180x180.webp" />
<meta name="msapplication-TileImage" content="https://www.platingpixels.com/wp-content/uploads/2017/10/cropped-P-favicon-270x270.png" />
<noscript><style id="rocket-lazyload-nojs-css">.rll-youtube-player, [data-lazy-src]{display:none !important;}</style></noscript></head>

<body class="post-template-default single single-post postid-19388 single-format-standard wp-custom-logo wp-embed-responsive footer-on-bottom hide-focus-outline link-style-standard has-sidebar content-title-style-normal content-width-normal content-style-unboxed content-vertical-padding-show non-transparent-header mobile-non-transparent-header">
<div id="wrapper" class="site wp-site-blocks">
			<a class="skip-link screen-reader-text scroll-ignore" href="#main">Skip to content</a>
		<header id="masthead" class="site-header" role="banner" itemtype="https://schema.org/WPHeader" itemscope>
	<div id="main-header" class="site-header-wrap">
		<div class="site-header-inner-wrap">
			<div class="site-header-upper-wrap">
				<div class="site-header-upper-inner-wrap">
					<div class="site-top-header-wrap site-header-row-container site-header-focus-item site-header-row-layout-standard" data-section="kadence_customizer_header_top">
	<div class="site-header-row-container-inner">
				<div class="site-container">
			<div class="site-top-header-inner-wrap site-header-row site-header-row-has-sides site-header-row-no-center">
									<div class="site-header-top-section-left site-header-section site-header-section-left">
						<div class="site-header-item site-header-focus-item" data-section="kadence_customizer_header_social">
	<div class="header-social-wrap"><div class="header-social-inner-wrap element-social-inner-wrap social-show-label-false social-style-outline"><a href="https://www.instagram.com/platingpixels/" aria-label="Instagram" target="_blank" rel="noopener noreferrer"  class="social-button header-social-item social-link-instagram"><span class="kadence-svg-iconset"><svg class="kadence-svg-icon kadence-instagram-alt-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Instagram</title><path d="M7 1c-1.657 0-3.158 0.673-4.243 1.757s-1.757 2.586-1.757 4.243v10c0 1.657 0.673 3.158 1.757 4.243s2.586 1.757 4.243 1.757h10c1.657 0 3.158-0.673 4.243-1.757s1.757-2.586 1.757-4.243v-10c0-1.657-0.673-3.158-1.757-4.243s-2.586-1.757-4.243-1.757zM7 3h10c1.105 0 2.103 0.447 2.828 1.172s1.172 1.723 1.172 2.828v10c0 1.105-0.447 2.103-1.172 2.828s-1.723 1.172-2.828 1.172h-10c-1.105 0-2.103-0.447-2.828-1.172s-1.172-1.723-1.172-2.828v-10c0-1.105 0.447-2.103 1.172-2.828s1.723-1.172 2.828-1.172zM16.989 11.223c-0.15-0.972-0.571-1.857-1.194-2.567-0.754-0.861-1.804-1.465-3.009-1.644-0.464-0.074-0.97-0.077-1.477-0.002-1.366 0.202-2.521 0.941-3.282 1.967s-1.133 2.347-0.93 3.712 0.941 2.521 1.967 3.282 2.347 1.133 3.712 0.93 2.521-0.941 3.282-1.967 1.133-2.347 0.93-3.712zM15.011 11.517c0.122 0.82-0.1 1.609-0.558 2.227s-1.15 1.059-1.969 1.18-1.609-0.1-2.227-0.558-1.059-1.15-1.18-1.969 0.1-1.609 0.558-2.227 1.15-1.059 1.969-1.18c0.313-0.046 0.615-0.042 0.87-0.002 0.74 0.11 1.366 0.47 1.818 0.986 0.375 0.428 0.63 0.963 0.72 1.543zM17.5 7.5c0.552 0 1-0.448 1-1s-0.448-1-1-1-1 0.448-1 1 0.448 1 1 1z"></path>
				</svg></span></a><a href="https://www.pinterest.com/platingpixels/plating-pixels-blog-recipes/" aria-label="Pinterest" target="_blank" rel="noopener noreferrer"  class="social-button header-social-item social-link-pinterest"><span class="kadence-svg-iconset"><svg class="kadence-svg-icon kadence-pinterest-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="28" viewBox="0 0 24 28"><title>Pinterest</title><path d="M19.5 2c2.484 0 4.5 2.016 4.5 4.5v15c0 2.484-2.016 4.5-4.5 4.5h-11.328c0.516-0.734 1.359-2 1.687-3.281 0 0 0.141-0.531 0.828-3.266 0.422 0.797 1.625 1.484 2.906 1.484 3.813 0 6.406-3.484 6.406-8.141 0-3.516-2.984-6.797-7.516-6.797-5.641 0-8.484 4.047-8.484 7.422 0 2.031 0.781 3.844 2.438 4.531 0.266 0.109 0.516 0 0.594-0.297 0.047-0.203 0.172-0.734 0.234-0.953 0.078-0.297 0.047-0.406-0.172-0.656-0.469-0.578-0.781-1.297-0.781-2.344 0-3 2.25-5.672 5.844-5.672 3.187 0 4.937 1.937 4.937 4.547 0 3.422-1.516 6.312-3.766 6.312-1.234 0-2.172-1.031-1.875-2.297 0.359-1.5 1.047-3.125 1.047-4.203 0-0.969-0.516-1.781-1.594-1.781-1.266 0-2.281 1.313-2.281 3.063 0 0 0 1.125 0.375 1.891-1.297 5.5-1.531 6.469-1.531 6.469-0.344 1.437-0.203 3.109-0.109 3.969h-2.859c-2.484 0-4.5-2.016-4.5-4.5v-15c0-2.484 2.016-4.5 4.5-4.5h15z"></path>
				</svg></span></a><a href="https://www.facebook.com/PlatingPixels/" aria-label="Facebook" target="_blank" rel="noopener noreferrer"  class="social-button header-social-item social-link-facebook"><span class="kadence-svg-iconset"><svg class="kadence-svg-icon kadence-facebook-alt2-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="16" height="28" viewBox="0 0 16 28"><title>Facebook</title><path d="M14.984 0.187v4.125h-2.453c-1.922 0-2.281 0.922-2.281 2.25v2.953h4.578l-0.609 4.625h-3.969v11.859h-4.781v-11.859h-3.984v-4.625h3.984v-3.406c0-3.953 2.422-6.109 5.953-6.109 1.687 0 3.141 0.125 3.563 0.187z"></path>
				</svg></span></a><a href="https://www.youtube.com/channel/UCUO0dU4kM99ZWWDlSCmGLvA" aria-label="YouTube" target="_blank" rel="noopener noreferrer"  class="social-button header-social-item social-link-youtube"><span class="kadence-svg-iconset"><svg class="kadence-svg-icon kadence-youtube-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 28 28"><title>YouTube</title><path d="M11.109 17.625l7.562-3.906-7.562-3.953v7.859zM14 4.156c5.891 0 9.797 0.281 9.797 0.281 0.547 0.063 1.75 0.063 2.812 1.188 0 0 0.859 0.844 1.109 2.781 0.297 2.266 0.281 4.531 0.281 4.531v2.125s0.016 2.266-0.281 4.531c-0.25 1.922-1.109 2.781-1.109 2.781-1.062 1.109-2.266 1.109-2.812 1.172 0 0-3.906 0.297-9.797 0.297v0c-7.281-0.063-9.516-0.281-9.516-0.281-0.625-0.109-2.031-0.078-3.094-1.188 0 0-0.859-0.859-1.109-2.781-0.297-2.266-0.281-4.531-0.281-4.531v-2.125s-0.016-2.266 0.281-4.531c0.25-1.937 1.109-2.781 1.109-2.781 1.062-1.125 2.266-1.125 2.812-1.188 0 0 3.906-0.281 9.797-0.281v0z"></path>
				</svg></span></a></div></div></div><!-- data-section="header_social" -->
					</div>
																	<div class="site-header-top-section-right site-header-section site-header-section-right">
						<div class="site-header-item site-header-focus-item" data-section="kadence_customizer_header_html">
	<div class="header-html inner-link-style-normal"><div class="header-html-inner"><p><strong>Trending Recipe</strong>: <a href="https://www.platingpixels.com/how-to-bake-chicken-breast-that-are-moist-and-tender/">Easy Baked Chicken Breast</a></p>
</div></div></div><!-- data-section="header_html" -->
					</div>
							</div>
		</div>
	</div>
</div>
<div class="site-main-header-wrap site-header-row-container site-header-focus-item site-header-row-layout-standard kadence-sticky-header" data-section="kadence_customizer_header_main" data-reveal-scroll-up="false" data-shrink="true" data-shrink-height="70">
	<div class="site-header-row-container-inner">
				<div class="site-container">
			<div class="site-main-header-inner-wrap site-header-row site-header-row-has-sides site-header-row-no-center">
									<div class="site-header-main-section-left site-header-section site-header-section-left">
						<div class="site-header-item site-header-focus-item" data-section="title_tagline">
	<div class="site-branding branding-layout-standard site-brand-logo-only"><a class="brand has-logo-image" href="https://www.platingpixels.com/" rel="home" aria-label="Plating Pixels"><img width="430" height="119" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20430%20119'%3E%3C/svg%3E" class="custom-logo" alt="Plating Pixels" decoding="async" fetchpriority="high" data-lazy-srcset="https://www.platingpixels.com/wp-content/uploads/2021/11/cropped-cropped-Plating-Pixels-logo.png 430w, https://www.platingpixels.com/wp-content/uploads/2021/11/cropped-cropped-Plating-Pixels-logo-105x29.png 105w" data-lazy-sizes="(max-width: 430px) 100vw, 430px" data-lazy-src="https://www.platingpixels.com/wp-content/uploads/2021/11/cropped-cropped-Plating-Pixels-logo.png" /><noscript><img width="430" height="119" src="https://www.platingpixels.com/wp-content/uploads/2021/11/cropped-cropped-Plating-Pixels-logo.png" class="custom-logo" alt="Plating Pixels" decoding="async" fetchpriority="high" srcset="https://www.platingpixels.com/wp-content/uploads/2021/11/cropped-cropped-Plating-Pixels-logo.png 430w, https://www.platingpixels.com/wp-content/uploads/2021/11/cropped-cropped-Plating-Pixels-logo-105x29.png 105w" sizes="(max-width: 430px) 100vw, 430px" /></noscript></a></div></div><!-- data-section="title_tagline" -->
					</div>
																	<div class="site-header-main-section-right site-header-section site-header-section-right">
						<div class="site-header-item site-header-focus-item site-header-item-main-navigation header-navigation-layout-stretch-false header-navigation-layout-fill-stretch-false" data-section="kadence_customizer_primary_navigation">
		<nav id="site-navigation" class="main-navigation header-navigation nav--toggle-sub header-navigation-style-standard header-navigation-dropdown-animation-fade-up" role="navigation" aria-label="Primary Navigation">
				<div class="primary-menu-container header-menu-container">
			<ul id="primary-menu" class="menu"><li id="menu-item-11961" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-11961"><a href="https://www.platingpixels.com/recipe-index">Recipe Index</a></li>
<li id="menu-item-1297" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-has-children menu-item-1297"><a href="https://www.platingpixels.com/category/recipe/"><span class="nav-drop-title-wrap">Categories<span class="dropdown-nav-toggle"><span class="kadence-svg-iconset svg-baseline"><svg aria-hidden="true" class="kadence-svg-icon kadence-arrow-down-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Expand</title><path d="M5.293 9.707l6 6c0.391 0.391 1.024 0.391 1.414 0l6-6c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z"></path>
				</svg></span></span></span></a>
<ul class="sub-menu">
	<li id="menu-item-11274" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-11274"><a href="https://www.platingpixels.com/category/appetizer/">Appetizer Recipes</a></li>
	<li id="menu-item-380" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-380"><a href="https://www.platingpixels.com/category/breakfast/">Breakfast Recipes</a></li>
	<li id="menu-item-445" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-has-children menu-item-445"><a href="https://www.platingpixels.com/category/entrees/"><span class="nav-drop-title-wrap">Entrees &#038; Mains<span class="dropdown-nav-toggle"><span class="kadence-svg-iconset svg-baseline"><svg aria-hidden="true" class="kadence-svg-icon kadence-arrow-down-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Expand</title><path d="M5.293 9.707l6 6c0.391 0.391 1.024 0.391 1.414 0l6-6c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z"></path>
				</svg></span></span></span></a>
	<ul class="sub-menu">
		<li id="menu-item-12019" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-12019"><a href="https://www.platingpixels.com/category/entrees/">All Entrees</a></li>
		<li id="menu-item-11963" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-11963"><a href="https://www.platingpixels.com/category/beef/">Beef Recipes</a></li>
		<li id="menu-item-11962" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-11962"><a href="https://www.platingpixels.com/category/chicken/">Chicken Recipes</a></li>
		<li id="menu-item-11965" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-11965"><a href="https://www.platingpixels.com/category/pork/">Pork Recipes</a></li>
		<li id="menu-item-11964" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-11964"><a href="https://www.platingpixels.com/category/seafood/">Seafood Recipes</a></li>
		<li id="menu-item-12020" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12020"><a href="https://www.platingpixels.com/category/grilled/">Gas Grilled Recipes</a></li>
		<li id="menu-item-11966" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-11966"><a href="https://www.platingpixels.com/category/slow-cooker/">Slow Cooker Recipes</a></li>
		<li id="menu-item-11967" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-11967"><a href="https://www.platingpixels.com/category/soup/">Soups, Stews and Chili Recipes</a></li>
	</ul>
</li>
	<li id="menu-item-50" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-50"><a href="https://www.platingpixels.com/category/desserts/">Dessert Recipes</a></li>
	<li id="menu-item-1874" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1874"><a href="https://www.platingpixels.com/category/gluten-free/">Gluten-Free Recipes</a></li>
	<li id="menu-item-15888" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-15888"><a href="https://www.platingpixels.com/category/keto/">Keto Recipes</a></li>
	<li id="menu-item-1301" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children menu-item-1301"><a href="https://www.platingpixels.com/category/vegetarian/"><span class="nav-drop-title-wrap">Vegetarian<span class="dropdown-nav-toggle"><span class="kadence-svg-iconset svg-baseline"><svg aria-hidden="true" class="kadence-svg-icon kadence-arrow-down-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Expand</title><path d="M5.293 9.707l6 6c0.391 0.391 1.024 0.391 1.414 0l6-6c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z"></path>
				</svg></span></span></span></a>
	<ul class="sub-menu">
		<li id="menu-item-12021" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12021"><a href="https://www.platingpixels.com/category/vegan/">Vegan Recipes</a></li>
	</ul>
</li>
	<li id="menu-item-12875" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-12875"><a href="https://www.platingpixels.com/category/recipe/">All Recipes</a></li>
</ul>
</li>
<li id="menu-item-12" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-12"><a href="https://www.platingpixels.com/about/"><span class="nav-drop-title-wrap">About<span class="dropdown-nav-toggle"><span class="kadence-svg-iconset svg-baseline"><svg aria-hidden="true" class="kadence-svg-icon kadence-arrow-down-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Expand</title><path d="M5.293 9.707l6 6c0.391 0.391 1.024 0.391 1.414 0l6-6c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z"></path>
				</svg></span></span></span></a>
<ul class="sub-menu">
	<li id="menu-item-12676" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-12676"><a href="https://www.platingpixels.com/about/">About Plating Pixels</a></li>
	<li id="menu-item-85" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-85"><a href="https://www.platingpixels.com/contact/">Contact</a></li>
	<li id="menu-item-4115" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4115"><a href="https://www.platingpixels.com/work-with-us/">Work With Me</a></li>
</ul>
</li>
</ul>		</div>
	</nav><!-- #site-navigation -->
	</div><!-- data-section="primary_navigation" -->
<div class="site-header-item site-header-focus-item" data-section="kadence_customizer_header_search">
		<div class="search-toggle-open-container">
						<button class="search-toggle-open drawer-toggle search-toggle-style-default" aria-label="View Search Form" data-toggle-target="#search-drawer" data-toggle-body-class="showing-popup-drawer-from-full" aria-expanded="false" data-set-focus="#search-drawer .search-field"
					>
						<span class="search-toggle-icon"><span class="kadence-svg-iconset"><svg aria-hidden="true" class="kadence-svg-icon kadence-search2-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Search</title><path d="M16.041 15.856c-0.034 0.026-0.067 0.055-0.099 0.087s-0.060 0.064-0.087 0.099c-1.258 1.213-2.969 1.958-4.855 1.958-1.933 0-3.682-0.782-4.95-2.050s-2.050-3.017-2.050-4.95 0.782-3.682 2.050-4.95 3.017-2.050 4.95-2.050 3.682 0.782 4.95 2.050 2.050 3.017 2.050 4.95c0 1.886-0.745 3.597-1.959 4.856zM21.707 20.293l-3.675-3.675c1.231-1.54 1.968-3.493 1.968-5.618 0-2.485-1.008-4.736-2.636-6.364s-3.879-2.636-6.364-2.636-4.736 1.008-6.364 2.636-2.636 3.879-2.636 6.364 1.008 4.736 2.636 6.364 3.879 2.636 6.364 2.636c2.125 0 4.078-0.737 5.618-1.968l3.675 3.675c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414z"></path>
				</svg></span></span>
		</button>
	</div>
	</div><!-- data-section="header_search" -->
					</div>
							</div>
		</div>
	</div>
</div>
				</div>
			</div>
					</div>
	</div>

<div id="mobile-header" class="site-mobile-header-wrap">
	<div class="site-header-inner-wrap">
		<div class="site-header-upper-wrap">
			<div class="site-header-upper-inner-wrap">
			<div class="site-top-header-wrap site-header-focus-item site-header-row-layout-standard site-header-row-tablet-layout-default site-header-row-mobile-layout-default ">
	<div class="site-header-row-container-inner">
		<div class="site-container">
			<div class="site-top-header-inner-wrap site-header-row site-header-row-has-sides site-header-row-no-center">
									<div class="site-header-top-section-left site-header-section site-header-section-left">
						<div class="site-header-item site-header-focus-item" data-section="kadence_customizer_mobile_social">
	<div class="header-mobile-social-wrap"><div class="header-mobile-social-inner-wrap element-social-inner-wrap social-show-label-false social-style-outline"><a href="https://www.facebook.com/PlatingPixels/" aria-label="Facebook" target="_blank" rel="noopener noreferrer"  class="social-button header-social-item social-link-facebook"><span class="kadence-svg-iconset"><svg class="kadence-svg-icon kadence-facebook-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><title>Facebook</title><path d="M31.997 15.999c0-8.836-7.163-15.999-15.999-15.999s-15.999 7.163-15.999 15.999c0 7.985 5.851 14.604 13.499 15.804v-11.18h-4.062v-4.625h4.062v-3.525c0-4.010 2.389-6.225 6.043-6.225 1.75 0 3.581 0.313 3.581 0.313v3.937h-2.017c-1.987 0-2.607 1.233-2.607 2.498v3.001h4.437l-0.709 4.625h-3.728v11.18c7.649-1.2 13.499-7.819 13.499-15.804z"></path>
				</svg></span></a><a href="https://twitter.com/platingpixels" aria-label="Twitter" target="_blank" rel="noopener noreferrer"  class="social-button header-social-item social-link-twitter"><span class="kadence-svg-iconset"><svg class="kadence-svg-icon kadence-twitter-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="26" height="28" viewBox="0 0 26 28"><title>Twitter</title><path d="M25.312 6.375c-0.688 1-1.547 1.891-2.531 2.609 0.016 0.219 0.016 0.438 0.016 0.656 0 6.672-5.078 14.359-14.359 14.359-2.859 0-5.516-0.828-7.75-2.266 0.406 0.047 0.797 0.063 1.219 0.063 2.359 0 4.531-0.797 6.266-2.156-2.219-0.047-4.078-1.5-4.719-3.5 0.313 0.047 0.625 0.078 0.953 0.078 0.453 0 0.906-0.063 1.328-0.172-2.312-0.469-4.047-2.5-4.047-4.953v-0.063c0.672 0.375 1.453 0.609 2.281 0.641-1.359-0.906-2.25-2.453-2.25-4.203 0-0.938 0.25-1.797 0.688-2.547 2.484 3.062 6.219 5.063 10.406 5.281-0.078-0.375-0.125-0.766-0.125-1.156 0-2.781 2.25-5.047 5.047-5.047 1.453 0 2.766 0.609 3.687 1.594 1.141-0.219 2.234-0.641 3.203-1.219-0.375 1.172-1.172 2.156-2.219 2.781 1.016-0.109 2-0.391 2.906-0.781z"></path>
				</svg></span></a><a href="https://www.instagram.com/platingpixels/" aria-label="Instagram" target="_blank" rel="noopener noreferrer"  class="social-button header-social-item social-link-instagram"><span class="kadence-svg-iconset"><svg class="kadence-svg-icon kadence-instagram-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><title>Instagram</title><path d="M21.138 0.242c3.767 0.007 3.914 0.038 4.65 0.144 1.52 0.219 2.795 0.825 3.837 1.821 0.584 0.562 0.987 1.112 1.349 1.848 0.442 0.899 0.659 1.75 0.758 3.016 0.021 0.271 0.031 4.592 0.031 8.916s-0.009 8.652-0.030 8.924c-0.098 1.245-0.315 2.104-0.743 2.986-0.851 1.755-2.415 3.035-4.303 3.522-0.685 0.177-1.304 0.26-2.371 0.31-0.381 0.019-4.361 0.024-8.342 0.024s-7.959-0.012-8.349-0.029c-0.921-0.044-1.639-0.136-2.288-0.303-1.876-0.485-3.469-1.784-4.303-3.515-0.436-0.904-0.642-1.731-0.751-3.045-0.031-0.373-0.039-2.296-0.039-8.87 0-2.215-0.002-3.866 0-5.121 0.006-3.764 0.037-3.915 0.144-4.652 0.219-1.518 0.825-2.795 1.825-3.833 0.549-0.569 1.105-0.975 1.811-1.326 0.915-0.456 1.756-0.668 3.106-0.781 0.374-0.031 2.298-0.038 8.878-0.038h5.13zM15.999 4.364v0c-3.159 0-3.555 0.014-4.796 0.070-1.239 0.057-2.084 0.253-2.824 0.541-0.765 0.297-1.415 0.695-2.061 1.342s-1.045 1.296-1.343 2.061c-0.288 0.74-0.485 1.586-0.541 2.824-0.056 1.241-0.070 1.638-0.070 4.798s0.014 3.556 0.070 4.797c0.057 1.239 0.253 2.084 0.541 2.824 0.297 0.765 0.695 1.415 1.342 2.061s1.296 1.046 2.061 1.343c0.74 0.288 1.586 0.484 2.825 0.541 1.241 0.056 1.638 0.070 4.798 0.070s3.556-0.014 4.797-0.070c1.239-0.057 2.085-0.253 2.826-0.541 0.765-0.297 1.413-0.696 2.060-1.343s1.045-1.296 1.343-2.061c0.286-0.74 0.482-1.586 0.541-2.824 0.056-1.241 0.070-1.637 0.070-4.797s-0.015-3.557-0.070-4.798c-0.058-1.239-0.255-2.084-0.541-2.824-0.298-0.765-0.696-1.415-1.343-2.061s-1.295-1.045-2.061-1.342c-0.742-0.288-1.588-0.484-2.827-0.541-1.241-0.056-1.636-0.070-4.796-0.070zM14.957 6.461c0.31-0 0.655 0 1.044 0 3.107 0 3.475 0.011 4.702 0.067 1.135 0.052 1.75 0.241 2.16 0.401 0.543 0.211 0.93 0.463 1.337 0.87s0.659 0.795 0.871 1.338c0.159 0.41 0.349 1.025 0.401 2.16 0.056 1.227 0.068 1.595 0.068 4.701s-0.012 3.474-0.068 4.701c-0.052 1.135-0.241 1.75-0.401 2.16-0.211 0.543-0.463 0.93-0.871 1.337s-0.794 0.659-1.337 0.87c-0.41 0.16-1.026 0.349-2.16 0.401-1.227 0.056-1.595 0.068-4.702 0.068s-3.475-0.012-4.702-0.068c-1.135-0.052-1.75-0.242-2.161-0.401-0.543-0.211-0.931-0.463-1.338-0.87s-0.659-0.794-0.871-1.337c-0.159-0.41-0.349-1.025-0.401-2.16-0.056-1.227-0.067-1.595-0.067-4.703s0.011-3.474 0.067-4.701c0.052-1.135 0.241-1.75 0.401-2.16 0.211-0.543 0.463-0.931 0.871-1.338s0.795-0.659 1.338-0.871c0.41-0.16 1.026-0.349 2.161-0.401 1.073-0.048 1.489-0.063 3.658-0.065v0.003zM16.001 10.024c-3.3 0-5.976 2.676-5.976 5.976s2.676 5.975 5.976 5.975c3.3 0 5.975-2.674 5.975-5.975s-2.675-5.976-5.975-5.976zM16.001 12.121c2.142 0 3.879 1.736 3.879 3.879s-1.737 3.879-3.879 3.879c-2.142 0-3.879-1.737-3.879-3.879s1.736-3.879 3.879-3.879zM22.212 8.393c-0.771 0-1.396 0.625-1.396 1.396s0.625 1.396 1.396 1.396 1.396-0.625 1.396-1.396c0-0.771-0.625-1.396-1.396-1.396v0.001z"></path>
				</svg></span></a></div></div></div><!-- data-section="mobile_social" -->
					</div>
																	<div class="site-header-top-section-right site-header-section site-header-section-right">
						<div class="site-header-item site-header-focus-item" data-section="kadence_customizer_header_search">
		<div class="search-toggle-open-container">
						<button class="search-toggle-open drawer-toggle search-toggle-style-default" aria-label="View Search Form" data-toggle-target="#search-drawer" data-toggle-body-class="showing-popup-drawer-from-full" aria-expanded="false" data-set-focus="#search-drawer .search-field"
					>
						<span class="search-toggle-icon"><span class="kadence-svg-iconset"><svg aria-hidden="true" class="kadence-svg-icon kadence-search2-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Search</title><path d="M16.041 15.856c-0.034 0.026-0.067 0.055-0.099 0.087s-0.060 0.064-0.087 0.099c-1.258 1.213-2.969 1.958-4.855 1.958-1.933 0-3.682-0.782-4.95-2.050s-2.050-3.017-2.050-4.95 0.782-3.682 2.050-4.95 3.017-2.050 4.95-2.050 3.682 0.782 4.95 2.050 2.050 3.017 2.050 4.95c0 1.886-0.745 3.597-1.959 4.856zM21.707 20.293l-3.675-3.675c1.231-1.54 1.968-3.493 1.968-5.618 0-2.485-1.008-4.736-2.636-6.364s-3.879-2.636-6.364-2.636-4.736 1.008-6.364 2.636-2.636 3.879-2.636 6.364 1.008 4.736 2.636 6.364 3.879 2.636 6.364 2.636c2.125 0 4.078-0.737 5.618-1.968l3.675 3.675c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414z"></path>
				</svg></span></span>
		</button>
	</div>
	</div><!-- data-section="header_search" -->
					</div>
							</div>
		</div>
	</div>
</div>
<div class="site-main-header-wrap site-header-focus-item site-header-row-layout-standard site-header-row-tablet-layout-default site-header-row-mobile-layout-default  kadence-sticky-header" data-shrink="true" data-reveal-scroll-up="false" data-shrink-height="60">
	<div class="site-header-row-container-inner">
		<div class="site-container">
			<div class="site-main-header-inner-wrap site-header-row site-header-row-has-sides site-header-row-no-center">
									<div class="site-header-main-section-left site-header-section site-header-section-left">
						<div class="site-header-item site-header-focus-item" data-section="title_tagline">
	<div class="site-branding mobile-site-branding branding-layout-standard branding-tablet-layout-standard site-brand-logo-only branding-mobile-layout-standard site-brand-logo-only"><a class="brand has-logo-image" href="https://www.platingpixels.com/" rel="home" aria-label="Plating Pixels"><img width="430" height="119" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20430%20119'%3E%3C/svg%3E" class="custom-logo" alt="Plating Pixels" decoding="async" data-lazy-srcset="https://www.platingpixels.com/wp-content/uploads/2021/11/cropped-cropped-Plating-Pixels-logo.png 430w, https://www.platingpixels.com/wp-content/uploads/2021/11/cropped-cropped-Plating-Pixels-logo-105x29.png 105w" data-lazy-sizes="(max-width: 430px) 100vw, 430px" data-lazy-src="https://www.platingpixels.com/wp-content/uploads/2021/11/cropped-cropped-Plating-Pixels-logo.png" /><noscript><img width="430" height="119" src="https://www.platingpixels.com/wp-content/uploads/2021/11/cropped-cropped-Plating-Pixels-logo.png" class="custom-logo" alt="Plating Pixels" decoding="async" srcset="https://www.platingpixels.com/wp-content/uploads/2021/11/cropped-cropped-Plating-Pixels-logo.png 430w, https://www.platingpixels.com/wp-content/uploads/2021/11/cropped-cropped-Plating-Pixels-logo-105x29.png 105w" sizes="(max-width: 430px) 100vw, 430px" /></noscript></a></div></div><!-- data-section="title_tagline" -->
					</div>
																	<div class="site-header-main-section-right site-header-section site-header-section-right">
						<div class="site-header-item site-header-focus-item site-header-item-navgation-popup-toggle" data-section="kadence_customizer_mobile_trigger">
		<div class="mobile-toggle-open-container">
						<button id="mobile-toggle" class="menu-toggle-open drawer-toggle menu-toggle-style-default" aria-label="Open menu" data-toggle-target="#mobile-drawer" data-toggle-body-class="showing-popup-drawer-from-right" aria-expanded="false" data-set-focus=".menu-toggle-close"
					>
						<span class="menu-toggle-icon"><span class="kadence-svg-iconset"><svg aria-hidden="true" class="kadence-svg-icon kadence-menu-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Toggle Menu</title><path d="M3 13h18c0.552 0 1-0.448 1-1s-0.448-1-1-1h-18c-0.552 0-1 0.448-1 1s0.448 1 1 1zM3 7h18c0.552 0 1-0.448 1-1s-0.448-1-1-1h-18c-0.552 0-1 0.448-1 1s0.448 1 1 1zM3 19h18c0.552 0 1-0.448 1-1s-0.448-1-1-1h-18c-0.552 0-1 0.448-1 1s0.448 1 1 1z"></path>
				</svg></span></span>
		</button>
	</div>
	</div><!-- data-section="mobile_trigger" -->
					</div>
							</div>
		</div>
	</div>
</div>
			</div>
		</div>
			</div>
</div>
</header><!-- #masthead -->

	<div id="inner-wrap" class="wrap hfeed kt-clear">
		<div id="primary" class="content-area">
	<div class="content-container site-container">
		<main id="main" class="site-main" role="main">
						<div class="content-wrap">
				<article id="post-19388" class="entry content-bg single-entry post-19388 post type-post status-publish format-standard has-post-thumbnail hentry category-chicken category-entrees category-recipe mv-content-wrapper">
	<div class="entry-content-wrap">
		<header class="entry-header post-title title-align-left title-tablet-align-inherit title-mobile-align-inherit">
	<div class="kadence-breadcrumbs yoast-bc-wrap"><span><span><a href="https://www.platingpixels.com/">Home</a></span> » <span><a href="https://www.platingpixels.com/category/chicken/">Chicken Recipes</a></span> » <span class="breadcrumb_last" aria-current="page">Chicken Fried Chicken</span></span></div><h1 class="entry-title">Chicken Fried Chicken</h1><div class="entry-meta entry-meta-divider-dot"><span class="posted-on">Published: September 19, 2022</span></div></header><!-- .entry-header -->

<div class="entry-content single-content">
	<div class="swp_social_panel swp_horizontal_panel swp_flat_fresh  swp_default_full_color swp_other_full_color swp_individual_full_color scale-90 scale-full_width" data-min-width="1100" data-float-color="#ffffff" data-float="left" data-float-mobile="bottom" data-transition="slide" data-post-id="19388" ><div class="nc_tweetContainer swp_share_button swp_pinterest" data-network="pinterest"><a rel="nofollow noreferrer noopener" class="nc_tweet swp_share_link" data-count="0" data-link="https://pinterest.com/pin/create/button/?url=https://www.platingpixels.com/chicken-fried-chicken/&media=https%3A%2F%2Fwww.platingpixels.com%2Fwp-content%2Fuploads%2F2022%2F09%2FChicken-Fried-Chicken-recipe-2.jpg&description=Chicken+Fried+Chicken+via+%40platingpixels"  ><span class="swp_count swp_hide"><span class="iconFiller"><span class="spaceManWilly"><i class="sw swp_pinterest_icon"></i><span class="swp_share">Pin</span></span></span></span></a></div><div class="nc_tweetContainer swp_share_button swp_facebook" data-network="facebook"><a class="nc_tweet swp_share_link" rel="nofollow noreferrer noopener" target="_blank" href="https://www.facebook.com/share.php?u=https%3A%2F%2Fwww.platingpixels.com%2Fchicken-fried-chicken%2F%3Futm_source%3Dfacebook%26utm_medium%3Dsocial%26utm_campaign%3DSocialWarfare" data-link="https://www.facebook.com/share.php?u=https%3A%2F%2Fwww.platingpixels.com%2Fchicken-fried-chicken%2F%3Futm_source%3Dfacebook%26utm_medium%3Dsocial%26utm_campaign%3DSocialWarfare"><span class="swp_count swp_hide"><span class="iconFiller"><span class="spaceManWilly"><i class="sw swp_facebook_icon"></i><span class="swp_share">Share</span></span></span></span></a></div><div class="nc_tweetContainer swp_share_button swp_flipboard" data-network="flipboard"><a class="nc_tweet swp_share_link" rel="nofollow noreferrer noopener" target="_blank" href="https://share.flipboard.com/bookmarklet/popout?v=2&title=Chicken+Fried+Chicken&url=https%3A%2F%2Fwww.platingpixels.com%2Fchicken-fried-chicken%2F%3Futm_source%3Dflipboard%26utm_medium%3Dsocial%26utm_campaign%3DSocialWarfare" data-link="https://share.flipboard.com/bookmarklet/popout?v=2&title=Chicken+Fried+Chicken&url=https%3A%2F%2Fwww.platingpixels.com%2Fchicken-fried-chicken%2F%3Futm_source%3Dflipboard%26utm_medium%3Dsocial%26utm_campaign%3DSocialWarfare"><span class="swp_count swp_hide"><span class="iconFiller"><span class="spaceManWilly"><i class="sw swp_flipboard_icon"></i><span class="swp_share">Flip</span></span></span></span></a></div><div class="nc_tweetContainer swp_share_button swp_twitter" data-network="twitter"><a class="nc_tweet swp_share_link" rel="nofollow noreferrer noopener" target="_blank" href="https://twitter.com/intent/tweet?text=Chicken+Fried+Chicken&url=https%3A%2F%2Fwww.platingpixels.com%2Fchicken-fried-chicken%2F%3Futm_source%3Dtwitter%26utm_medium%3Dsocial%26utm_campaign%3DSocialWarfare&via=platingpixels" data-link="https://twitter.com/intent/tweet?text=Chicken+Fried+Chicken&url=https%3A%2F%2Fwww.platingpixels.com%2Fchicken-fried-chicken%2F%3Futm_source%3Dtwitter%26utm_medium%3Dsocial%26utm_campaign%3DSocialWarfare&via=platingpixels"><span class="swp_count swp_hide"><span class="iconFiller"><span class="spaceManWilly"><i class="sw swp_twitter_icon"></i><span class="swp_share">Tweet</span></span></span></span></a></div><div class="nc_tweetContainer swp_share_button swp_more" data-network="more"><a class="nc_tweet swp_share_link" rel="nofollow noreferrer noopener" target="_blank" href="#" data-link="#"><span class="swp_count swp_hide"><span class="iconFiller"><span class="spaceManWilly"><i class="sw swp_more_icon"></i><span class="swp_share">More</span></span></span></span></a></div></div><div class="wprm-recipe wprm-recipe-snippet wprm-recipe-template-snippet-basic-modified"><a href="#recipe" data-recipe="19396" style="color: #9b9b9b;" class="wprm-recipe-jump wprm-recipe-link wprm-jump-to-recipe-shortcode wprm-block-text-light">JUMP TO RECIPE</a> - <a href="https://www.platingpixels.com/wprm_print/19396" style="color: #9b9b9b;" class="wprm-recipe-print wprm-recipe-link wprm-print-recipe-shortcode wprm-block-text-light" data-recipe-id="19396" data-template="" target="_blank" rel="nofollow">PRINT RECIPE</a></div><p>I&rsquo;m a big fan of good old-fashioned comfort foods. You can&rsquo;t get more classic than Chicken Fried Chicken. It&rsquo;s a simple recipe of breaded chicken breasts that are fried to crispy, extra crunchy goodness.</p>
<p>This is a sponsored post written by me on behalf of <a href="https://lnk2.io/wmRSw5x" target="_blank" rel="nofollow noopener">Foster Farms</a>. All opinions are 100% mine.</p>
<p><img decoding="async" class="aligncenter size-full wp-image-19395" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201080%201620'%3E%3C/svg%3E" alt="Prepared Chicken Fried Chicken on a plate served with mashed potatoes and country gravy" width="1080" height="1620" data-pin-description="Chicken Fried Chicken https://www.platingpixels.com/chicken-fried-chicken/" data-lazy-srcset="https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1.jpg 1080w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1-733x1100.jpg 733w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1-100x150.jpg 100w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1-768x1152.jpg 768w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1-1024x1536.jpg 1024w" data-lazy-sizes="(max-width: 1080px) 100vw, 1080px" data-lazy-src="https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1.jpg"><noscript><img decoding="async" class="aligncenter size-full wp-image-19395" src="https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1.jpg" alt="Prepared Chicken Fried Chicken on a plate served with mashed potatoes and country gravy" width="1080" height="1620" data-pin-description="Chicken Fried Chicken https://www.platingpixels.com/chicken-fried-chicken/" srcset="https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1.jpg 1080w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1-733x1100.jpg 733w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1-100x150.jpg 100w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1-768x1152.jpg 768w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1-1024x1536.jpg 1024w" sizes="(max-width: 1080px) 100vw, 1080px"></noscript></p>
<p>These photos don&rsquo;t do it justice. I&rsquo;m talking super crunchy bits of flavor morsels. The trick to getting this perfect crunch is using a flour mixture combined with a buttermilk mixture to coat the chicken breasts. Then simply fry the breaded chicken in oil until browned and crunchy. Let&rsquo;s break it down step-by-step.</p>
<p><img decoding="async" class="aligncenter size-full wp-image-19389" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201080%202429'%3E%3C/svg%3E" alt="Collage of 6 images showing how to bread chicken in egg mixture and then in flour" width="1080" height="2429" data-pin-description="Chicken Fried Chicken https://www.platingpixels.com/chicken-fried-chicken/" data-lazy-srcset="https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-3.jpg 1080w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-3-489x1100.jpg 489w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-3-67x150.jpg 67w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-3-768x1727.jpg 768w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-3-683x1536.jpg 683w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-3-911x2048.jpg 911w" data-lazy-sizes="(max-width: 1080px) 100vw, 1080px" data-lazy-src="https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-3.jpg"><noscript><img decoding="async" class="aligncenter size-full wp-image-19389" src="https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-3.jpg" alt="Collage of 6 images showing how to bread chicken in egg mixture and then in flour" width="1080" height="2429" data-pin-description="Chicken Fried Chicken https://www.platingpixels.com/chicken-fried-chicken/" srcset="https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-3.jpg 1080w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-3-489x1100.jpg 489w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-3-67x150.jpg 67w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-3-768x1727.jpg 768w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-3-683x1536.jpg 683w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-3-911x2048.jpg 911w" sizes="(max-width: 1080px) 100vw, 1080px"></noscript></p>
<h2>How to Make Chicken Fried Chicken</h2>
<ol>
<li aria-level="1">In a large bowl, whisk together flour, baking powder, baking soda, and seasonings.</li>
<li aria-level="1">In a separate bowl stir together buttermilk and an egg.</li>
<li aria-level="1">Dip thin chicken breast pieces into the flour mixture and evenly coat both sides. Dip into the buttermilk mixture, then dip into the flour mixture again to coat.</li>
<li aria-level="1">Preheat about 2 inches of frying oil in a skillet or frying pan on medium to 325&deg; F.</li>
<li aria-level="1">Add some of the breaded chicken breast pieces, leaving space between each. Fry for 3 to 5 minutes until browned. Rotate to brown the other sides and cook to an internal temp of at least 165&deg; F.</li>
<li aria-level="1">Remove the chicken breast pieces and place them on a paper towel-lined plate to remove excess oil. Serve with country gravy or desired sauce and sides.</li>
</ol>
<p><img decoding="async" class="aligncenter size-full wp-image-19393" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201080%201620'%3E%3C/svg%3E" alt="Process shot of breaded chicken frying in oil" width="1080" height="1620" data-pin-description="Chicken Fried Chicken https://www.platingpixels.com/chicken-fried-chicken/" data-lazy-srcset="https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-9.jpg 1080w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-9-733x1100.jpg 733w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-9-100x150.jpg 100w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-9-768x1152.jpg 768w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-9-1024x1536.jpg 1024w" data-lazy-sizes="(max-width: 1080px) 100vw, 1080px" data-lazy-src="https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-9.jpg"><noscript><img decoding="async" class="aligncenter size-full wp-image-19393" src="https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-9.jpg" alt="Process shot of breaded chicken frying in oil" width="1080" height="1620" data-pin-description="Chicken Fried Chicken https://www.platingpixels.com/chicken-fried-chicken/" srcset="https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-9.jpg 1080w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-9-733x1100.jpg 733w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-9-100x150.jpg 100w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-9-768x1152.jpg 768w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-9-1024x1536.jpg 1024w" sizes="(max-width: 1080px) 100vw, 1080px"></noscript></p>
<h3>Tips for this Recipe</h3>
<h4>What Type of Chicken Breasts to Use</h4>
<ul>
<li aria-level="1">Look for thin-cut chicken breasts so they fry evenly and create the ideal browned coating. If all you can find are regular sized, you can cut them in half</li>
<li aria-level="1">Some chicken fried recipes call for pounding or tenderizing the meat. This isn&rsquo;t necessary if you use thinner chicken breasts. The texture will still be plenty tender and moist.</li>
</ul>
<p><img decoding="async" class="aligncenter size-full wp-image-19390" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%201800'%3E%3C/svg%3E" alt="A plate of Chicken Fried Chicken next to package of Foster Farms chicken breasts" width="1200" height="1800" data-pin-description="Chicken Fried Chicken https://www.platingpixels.com/chicken-fried-chicken/" data-lazy-srcset="https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1a.jpg 1200w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1a-733x1100.jpg 733w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1a-100x150.jpg 100w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1a-768x1152.jpg 768w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1a-1024x1536.jpg 1024w" data-lazy-sizes="(max-width: 1200px) 100vw, 1200px" data-lazy-src="https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1a.jpg"><noscript><img decoding="async" class="aligncenter size-full wp-image-19390" src="https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1a.jpg" alt="A plate of Chicken Fried Chicken next to package of Foster Farms chicken breasts" width="1200" height="1800" data-pin-description="Chicken Fried Chicken https://www.platingpixels.com/chicken-fried-chicken/" srcset="https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1a.jpg 1200w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1a-733x1100.jpg 733w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1a-100x150.jpg 100w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1a-768x1152.jpg 768w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1a-1024x1536.jpg 1024w" sizes="(max-width: 1200px) 100vw, 1200px"></noscript></p>
<p>I&rsquo;ve been using <a href="https://www.fosterfarms.com/products/simply-raised/?&amp;meat_type=chicken" target="_blank" rel="nofollow noopener">Foster Farms Simply Raised&#9415;</a> Free Range Boneless Skinless Chicken Breasts in some of my recent recipes. And it&rsquo;s not a coincidence that they have all tasted amazing. Foster Farms Simply Raised chicken is antibiotic-free, air-chilled, raised free range with 100% vegetarian feed and no added hormones.</p>
<p>I truly believe not all chicken (and meats) are the same. It&rsquo;s always best to find a brand and product you like. Give these a try and look for their products at a retailer near you or use their <a href="https://www.fosterfarms.com/where-to-buy/" target="_blank" rel="nofollow noopener">store finder</a>.</p>
<p><img decoding="async" class="aligncenter size-full wp-image-19392" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201080%201620'%3E%3C/svg%3E" alt="Fried breaded chicken draining on a plate" width="1080" height="1620" data-pin-description="Chicken Fried Chicken https://www.platingpixels.com/chicken-fried-chicken/" data-lazy-srcset="https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-10.jpg 1080w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-10-733x1100.jpg 733w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-10-100x150.jpg 100w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-10-768x1152.jpg 768w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-10-1024x1536.jpg 1024w" data-lazy-sizes="(max-width: 1080px) 100vw, 1080px" data-lazy-src="https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-10.jpg"><noscript><img decoding="async" class="aligncenter size-full wp-image-19392" src="https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-10.jpg" alt="Fried breaded chicken draining on a plate" width="1080" height="1620" data-pin-description="Chicken Fried Chicken https://www.platingpixels.com/chicken-fried-chicken/" srcset="https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-10.jpg 1080w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-10-733x1100.jpg 733w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-10-100x150.jpg 100w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-10-768x1152.jpg 768w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-10-1024x1536.jpg 1024w" sizes="(max-width: 1080px) 100vw, 1080px"></noscript></p>
<h4>What Oil Temp for Fried Chicken</h4>
<p>Heat oil to 325&deg; F to fry breaded chicken breasts. If lower the breading won&rsquo;t properly brown and if higher the breading is likely to brown too much.</p>
<p>If you don&rsquo;t have a digital thermometer to check the oil, heat it over medium to medium-high heat. Test it by adding a bit of the leftover breading and it should immediately start bubbling. If not, then it&rsquo;s not hot enough. If the oil starts to smoke it&rsquo;s too hot.</p>
<h4>What Type of Oil to Use for Frying</h4>
<p>Be sure to use frying oil that has a higher smoke point. While Chicken Fried Chicken doesn&rsquo;t use high-heat frying, it&rsquo;s still safer. I recommend (in order of preference) avocado, grapeseed, peanut, canola, or corn oil. Olive oil isn&rsquo;t recommended and is best used for lower heat cooking such as sauteing.</p>
<h4>How Long to Fry Chicken Breast</h4>
<p>On medium heat with 325&deg; F oil, chicken breast should fry for 4 to 7 minutes depending on thickness. Cook chicken to an internal temp of at least 165&deg; F to be safe.</p>
<p><img decoding="async" class="aligncenter size-full wp-image-19391" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201080%201620'%3E%3C/svg%3E" alt="Chicken Fried Chicken on a plate with slice cut out of it" width="1080" height="1620" data-pin-description="Chicken Fried Chicken https://www.platingpixels.com/chicken-fried-chicken/" data-lazy-srcset="https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-11.jpg 1080w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-11-733x1100.jpg 733w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-11-100x150.jpg 100w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-11-768x1152.jpg 768w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-11-1024x1536.jpg 1024w" data-lazy-sizes="(max-width: 1080px) 100vw, 1080px" data-lazy-src="https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-11.jpg"><noscript><img decoding="async" class="aligncenter size-full wp-image-19391" src="https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-11.jpg" alt="Chicken Fried Chicken on a plate with slice cut out of it" width="1080" height="1620" data-pin-description="Chicken Fried Chicken https://www.platingpixels.com/chicken-fried-chicken/" srcset="https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-11.jpg 1080w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-11-733x1100.jpg 733w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-11-100x150.jpg 100w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-11-768x1152.jpg 768w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-11-1024x1536.jpg 1024w" sizes="(max-width: 1080px) 100vw, 1080px"></noscript></p>
<h4>Use Country Gravy for Topping</h4>
<p>This Chicken Fried Chicken recipe gets even better with a homemade country gravy sauce that uses some of the frying oil. This adds extra flavor and helps to create the roux, which is a flour-base for sauces and gravies.</p>
<p>Note: If you prefer not to use the frying oil, you can substitute it with butter.</p>
<h3>What to Serve with Chicken Fried Chicken</h3>
<p>Besides veggies such as peas or string beans you can serve the fried chicken with some of my favorite dinner sides:</p>
<ul>
<li aria-level="1"><a href="https://www.platingpixels.com/easy-creamy-mashed-potatoes/">Easy Creamy Mashed Potatoes Recipe</a></li>
<li aria-level="1"><a href="https://www.platingpixels.com/candied-bacon-au-gratin-potatoes/">Candied Bacon Au Gratin Potatoes</a></li>
<li aria-level="1"><a href="https://www.platingpixels.com/cauliflower-mac-and-cheese/">Keto Cauliflower Mac and Cheese</a></li>
<li aria-level="1"><a href="https://www.platingpixels.com/gluten-free-mac-and-cheese-with-goat-cheese/">Gluten-Free Mac and Cheese</a></li>
<li aria-level="1"><a href="https://www.platingpixels.com/sausage-stuffed-mushrooms/">Sausage Stuffed Mushrooms</a></li>
</ul>
<p><img decoding="async" class="aligncenter size-full wp-image-19394" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201080%201620'%3E%3C/svg%3E" alt="Overhead shot of Chicken Fried Chicken smothered with country gravy" width="1080" height="1620" data-pin-description="Chicken Fried Chicken https://www.platingpixels.com/chicken-fried-chicken/" data-lazy-srcset="https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-2.jpg 1080w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-2-733x1100.jpg 733w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-2-100x150.jpg 100w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-2-768x1152.jpg 768w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-2-1024x1536.jpg 1024w" data-lazy-sizes="(max-width: 1080px) 100vw, 1080px" data-lazy-src="https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-2.jpg"><noscript><img decoding="async" class="aligncenter size-full wp-image-19394" src="https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-2.jpg" alt="Overhead shot of Chicken Fried Chicken smothered with country gravy" width="1080" height="1620" data-pin-description="Chicken Fried Chicken https://www.platingpixels.com/chicken-fried-chicken/" srcset="https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-2.jpg 1080w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-2-733x1100.jpg 733w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-2-100x150.jpg 100w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-2-768x1152.jpg 768w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-2-1024x1536.jpg 1024w" sizes="(max-width: 1080px) 100vw, 1080px"></noscript></p>
<h5>How to Store Leftovers</h5>
<p>Store the fried chicken and country gravy separately in the fridge for up to 3 to 4 days. This fried chicken is so crunchy, it still had a crispy texture with leftovers. For even more crunchiness, reheat the leftovers in an oven or toaster oven instead of the microwave.</p>
<div id="recipe"></div><div id="wprm-recipe-container-19396" class="wprm-recipe-container" data-recipe-id="19396" data-servings="6"><div class="wprm-recipe wprm-recipe-template-classic-modified"><p><strong>Leave a comment below and star rating</strong> if you made this recipe or want to share your thoughts.
<p> &nbsp; </p>

<strong>Are you following me </strong>on <a title="Plating Pixels on Pinterest" href="https://www.pinterest.com/platingpixels" target="_blank" rel="nofollow noopener">Pinterest</a>, <a title="Plating Pixels on Instagram" href="https://www.instagram.com/platingpixels" target="_blank" rel="nofollow noopener">Instagram</a>,&nbsp;<a title="Plating Pixels on Facebook" href="https://www.facebook.com/PlatingPixels" target="_blank" rel="nofollow noopener">Facebook</a>, and&nbsp;<a title="Plating Pixels on Twitter" href="https://www.twitter.com/platingpixels" target="_blank" rel="nofollow noopener">Twitter</a>? Also, <a title="Plating Pixels newsletter" href="http://eepurl.com/XYvf1" target="_blank" rel="nofollow noopener">sign up for our newsletter</a> to get all our recipes and cooking tips.

<div class="wprm-spacer"></div>
<hr>
<div class="wprm-container-float-right">
	<div class="wprm-recipe-image wprm-block-image-normal"><img style="border-width: 0px;border-style: solid;border-color: #666666;" width="100" height="150" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20100%20150'%3E%3C/svg%3E" class="attachment-thumbnail size-thumbnail" alt="Prepared Chicken Fried Chicken on a plate served with mashed potatoes and country gravy" decoding="async" data-lazy-srcset="https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1-100x150.jpg 100w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1-733x1100.jpg 733w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1-768x1152.jpg 768w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1-1024x1536.jpg 1024w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1.jpg 1080w" data-lazy-sizes="(max-width: 100px) 100vw, 100px" data-lazy-src="https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1-100x150.jpg" /><noscript><img style="border-width: 0px;border-style: solid;border-color: #666666;" width="100" height="150" src="https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1-100x150.jpg" class="attachment-thumbnail size-thumbnail" alt="Prepared Chicken Fried Chicken on a plate served with mashed potatoes and country gravy" decoding="async" srcset="https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1-100x150.jpg 100w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1-733x1100.jpg 733w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1-768x1152.jpg 768w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1-1024x1536.jpg 1024w, https://www.platingpixels.com/wp-content/uploads/2022/09/Chicken-Fried-Chicken-recipe-1.jpg 1080w" sizes="(max-width: 100px) 100vw, 100px" /></noscript></div>
<div class="wprm-spacer"></div>

	<div class="wprm-spacer" style="height: 5px"></div>
	<a href="https://www.platingpixels.com/wprm_print/19396" style="color: #333333;" class="wprm-recipe-print wprm-recipe-link wprm-print-recipe-shortcode wprm-block-text-normal" data-recipe-id="19396" data-template="" target="_blank" rel="nofollow"><span class="wprm-recipe-icon wprm-recipe-print-icon"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g ><path fill="#4a4a4a" d="M19,5.09V1c0-0.552-0.448-1-1-1H6C5.448,0,5,0.448,5,1v4.09C2.167,5.569,0,8.033,0,11v7c0,0.552,0.448,1,1,1h4v4c0,0.552,0.448,1,1,1h12c0.552,0,1-0.448,1-1v-4h4c0.552,0,1-0.448,1-1v-7C24,8.033,21.833,5.569,19,5.09z M7,2h10v3H7V2z M17,22H7v-9h10V22z M18,10c-0.552,0-1-0.448-1-1c0-0.552,0.448-1,1-1s1,0.448,1,1C19,9.552,18.552,10,18,10z"/></g></svg></span> Print</a>

<div class="wprm-spacer" style="height: 9px"></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-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-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-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-rating-0" class="wprm-recipe-rating wprm-recipe-rating-separate"><span class="wprm-rating-star wprm-rating-star-1 wprm-rating-star-full" data-rating="1" data-color="#7ed321" 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="#7ed321" 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="#7ed321" 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="#7ed321" 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="#7ed321" 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="#7ed321" 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="#7ed321" 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="#7ed321" 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="#7ed321" 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="#7ed321" 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 1 vote</div></div>
<div class="wprm-spacer" style="height: 8px"></div>
</div>
<h2 class="wprm-recipe-name wprm-block-text-normal">Chicken Fried Chicken</h2>
<div class="wprm-spacer" style="height: 5px"></div>
<div class="wprm-recipe-summary wprm-block-text-light"><span style="display: block;">Chicken Fried Chicken is a simple recipe of breaded chicken breasts fried to crispy, extra crunchy goodness for an easy weeknight dinner the family will love.</span></div>
<div class="wprm-spacer"></div>
<div class="wprm-recipe-meta-container wprm-recipe-tags-container wprm-recipe-details-container wprm-recipe-details-container-columns wprm-block-text-light" style=""><div class="wprm-recipe-block-container wprm-recipe-block-container-columns wprm-block-text-light wprm-recipe-tag-container wprm-recipe-course-container" style=""><span class="wprm-recipe-icon wprm-recipe-tag-icon wprm-recipe-course-icon"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g ><path fill="#7ed321" d="M22.707,12.293l-11-11C11.52,1.106,11.265,1,11,1H2C1.448,1,1,1.448,1,2v9c0,0.265,0.105,0.52,0.293,0.707l11,11C12.488,22.903,12.744,23,13,23s0.512-0.098,0.707-0.293l9-9C23.098,13.317,23.098,12.684,22.707,12.293z M7,9C5.895,9,5,8.105,5,7c0-1.105,0.895-2,2-2s2,0.895,2,2C9,8.105,8.105,9,7,9z M13,17.414L8.586,13L10,11.586L14.414,16L13,17.414z M16,14.414L11.586,10L13,8.586L17.414,13L16,14.414z"/></g></svg></span> <span class="wprm-recipe-details-label wprm-block-text-bold wprm-recipe-tag-label wprm-recipe-course-label">Course </span><span class="wprm-recipe-course wprm-block-text-light">Chicken, Dinner, Entree</span></div><div class="wprm-recipe-block-container wprm-recipe-block-container-columns wprm-block-text-light wprm-recipe-tag-container wprm-recipe-cuisine-container" style=""><span class="wprm-recipe-icon wprm-recipe-tag-icon wprm-recipe-cuisine-icon"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g ><path fill="#7ed321" d="M22.707,12.293l-11-11C11.52,1.106,11.265,1,11,1H2C1.448,1,1,1.448,1,2v9c0,0.265,0.105,0.52,0.293,0.707l11,11C12.488,22.903,12.744,23,13,23s0.512-0.098,0.707-0.293l9-9C23.098,13.317,23.098,12.684,22.707,12.293z M7,9C5.895,9,5,8.105,5,7c0-1.105,0.895-2,2-2s2,0.895,2,2C9,8.105,8.105,9,7,9z M13,17.414L8.586,13L10,11.586L14.414,16L13,17.414z M16,14.414L11.586,10L13,8.586L17.414,13L16,14.414z"/></g></svg></span> <span class="wprm-recipe-details-label wprm-block-text-bold wprm-recipe-tag-label wprm-recipe-cuisine-label">Cuisine </span><span class="wprm-recipe-cuisine wprm-block-text-light">American</span></div><div class="wprm-recipe-block-container wprm-recipe-block-container-columns wprm-block-text-light wprm-recipe-tag-container wprm-recipe-keyword-container" style=""><span class="wprm-recipe-icon wprm-recipe-tag-icon wprm-recipe-keyword-icon"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g ><path fill="#7ed321" d="M22.707,12.293l-11-11C11.52,1.106,11.265,1,11,1H2C1.448,1,1,1.448,1,2v9c0,0.265,0.105,0.52,0.293,0.707l11,11C12.488,22.903,12.744,23,13,23s0.512-0.098,0.707-0.293l9-9C23.098,13.317,23.098,12.684,22.707,12.293z M7,9C5.895,9,5,8.105,5,7c0-1.105,0.895-2,2-2s2,0.895,2,2C9,8.105,8.105,9,7,9z M13,17.414L8.586,13L10,11.586L14.414,16L13,17.414z M16,14.414L11.586,10L13,8.586L17.414,13L16,14.414z"/></g></svg></span> <span class="wprm-recipe-details-label wprm-block-text-bold wprm-recipe-tag-label wprm-recipe-keyword-label">Keyword </span><span class="wprm-recipe-keyword wprm-block-text-light">breaded fried chicken, Chicken Fried Chicken, fried chicken recipe</span></div></div>
<div class="wprm-spacer"></div>
<div class="wprm-recipe-meta-container wprm-recipe-times-container wprm-recipe-details-container wprm-recipe-details-container-columns wprm-block-text-light" style=""><div class="wprm-recipe-block-container wprm-recipe-block-container-columns wprm-block-text-light wprm-recipe-time-container wprm-recipe-prep-time-container" style=""><span class="wprm-recipe-icon wprm-recipe-time-icon wprm-recipe-prep-time-icon"><svg 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 ><path data-color="color-2" fill="#7ed321" d="M4.3,16.6l-2.2,2.2c-0.6,0.6-0.9,1.3-0.9,2.1c0,0.8,0.3,1.6,0.9,2.1s1.3,0.9,2.1,0.9c0.8,0,1.6-0.3,2.1-0.9l2.2-2.2L4.3,16.6z"/><path fill="#7ed321" d="M22.6,5.4l-3.5-3.5c-1.1-1.1-2.6-1.8-4.2-1.8s-3.1,0.6-4.2,1.8l-8.4,8.4c-0.4,0.4-0.4,1,0,1.4l7.1,7.1C9.5,18.9,9.7,19,10,19c0,0,0,0,0,0c0.3,0,0.5-0.1,0.7-0.3L22.6,6.8C23,6.4,23,5.8,22.6,5.4z M9.2,14.6l-1.4-1.4l6.4-6.4l1.4,1.4L9.2,14.6z"/></g></svg></span> <span class="wprm-recipe-details-label wprm-block-text-bold wprm-recipe-time-label wprm-recipe-prep-time-label">Prep Time </span><span class="wprm-recipe-time wprm-block-text-light"><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">minutes</span></span></div><div class="wprm-recipe-block-container wprm-recipe-block-container-columns wprm-block-text-light wprm-recipe-time-container wprm-recipe-cook-time-container" style=""><span class="wprm-recipe-icon wprm-recipe-time-icon wprm-recipe-cook-time-icon"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g ><path data-color="color-2" fill="#7ed321" d="M9,9c0.6,0,1-0.4,1-1V4c0-0.6-0.4-1-1-1S8,3.4,8,4v4C8,8.6,8.4,9,9,9z"/><path data-color="color-2" fill="#7ed321" d="M4,12c0.6,0,1-0.4,1-1V7c0-0.6-0.4-1-1-1S3,6.4,3,7v4C3,11.6,3.4,12,4,12z"/><path data-color="color-2" fill="#7ed321" d="M14,12c0.6,0,1-0.4,1-1V7c0-0.6-0.4-1-1-1s-1,0.4-1,1v4C13,11.6,13.4,12,14,12z"/><path fill="#7ed321" d="M23,14h-5H1c-0.6,0-1,0.4-1,1v3c0,1.7,1.3,3,3,3h13c1.7,0,3-1.3,3-3v-1h4c0.6,0,1-0.4,1-1v-1C24,14.4,23.6,14,23,14z"/></g></svg></span> <span class="wprm-recipe-details-label wprm-block-text-bold wprm-recipe-time-label wprm-recipe-cook-time-label">Cook Time </span><span class="wprm-recipe-time wprm-block-text-light"><span class="wprm-recipe-details wprm-recipe-details-minutes wprm-recipe-cook_time wprm-recipe-cook_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-cook_time-unit wprm-recipe-cook_timeunit-minutes" aria-hidden="true">minutes</span></span></div><div class="wprm-recipe-block-container wprm-recipe-block-container-columns wprm-block-text-light wprm-recipe-time-container wprm-recipe-total-time-container" style=""><span class="wprm-recipe-icon wprm-recipe-time-icon wprm-recipe-total-time-icon"><svg 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 ><path fill="#7ed321" d="M21,11h2.949C23.466,5.181,18.819,0.534,13,0.051V3h-2V0.051C5.181,0.534,0.534,5.181,0.051,11H3v2H0.051C0.534,18.819,5.181,23.466,11,23.949V21h2v2.949c5.819-0.484,10.466-5.13,10.949-10.949H21V11z M17,13h-5.535L6.613,5.723l1.664-1.109L12.535,11H17V13z"/></g></svg></span> <span class="wprm-recipe-details-label wprm-block-text-bold wprm-recipe-time-label wprm-recipe-total-time-label">Total Time </span><span class="wprm-recipe-time wprm-block-text-light"><span class="wprm-recipe-details wprm-recipe-details-minutes wprm-recipe-total_time wprm-recipe-total_time-minutes">30<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">minutes</span></span></div></div>
<div class="wprm-spacer"></div>
<div class="wprm-recipe-block-container wprm-recipe-block-container-columns wprm-block-text-light wprm-recipe-nutrition-container wprm-recipe-calories-container" style=""><span class="wprm-recipe-icon wprm-recipe-nutrition-icon wprm-recipe-calories-icon"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g ><rect data-color="color-2" x="21" y="8" fill="#7ed321" width="3" height="8"/><path fill="#7ed321" d="M18,5H1C0.448,5,0,5.447,0,6v12c0,0.553,0.448,1,1,1h17c0.552,0,1-0.447,1-1V6C19,5.447,18.552,5,18,5z M11,12v4l-7-5l5,1V8l6,5L11,12z"/></g></svg></span> <span class="wprm-recipe-details-label wprm-block-text-bold wprm-recipe-nutrition-label wprm-recipe-calories-label">Calories </span><span class="wprm-recipe-nutrition-with-unit"><span class="wprm-recipe-details wprm-recipe-nutrition wprm-recipe-calories wprm-block-text-light">669</span><span class="wprm-recipe-details-unit wprm-recipe-nutrition-unit wprm-recipe-calories-unit wprm-block-text-light">kcal</span></span></div>
<div class="wprm-recipe-block-container wprm-recipe-block-container-columns wprm-block-text-light wprm-recipe-servings-container" style=""><span class="wprm-recipe-icon wprm-recipe-servings-icon"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g ><path fill="#7ed321" d="M10,0C9.4,0,9,0.4,9,1v4H7V1c0-0.6-0.4-1-1-1S5,0.4,5,1v4H3V1c0-0.6-0.4-1-1-1S1,0.4,1,1v8c0,1.7,1.3,3,3,3v10c0,1.1,0.9,2,2,2s2-0.9,2-2V12c1.7,0,3-1.3,3-3V1C11,0.4,10.6,0,10,0z"/><path data-color="color-2" fill="#7ed321" d="M19,0c-3.3,0-6,2.7-6,6v9c0,0.6,0.4,1,1,1h2v6c0,1.1,0.9,2,2,2s2-0.9,2-2V1C20,0.4,19.6,0,19,0z"/></g></svg></span> <span class="wprm-recipe-details-label wprm-block-text-bold wprm-recipe-servings-label">Servings </span><span class="wprm-recipe-servings-with-unit"><span class="wprm-recipe-servings wprm-recipe-details wprm-recipe-servings-19396 wprm-recipe-servings-adjustable-tooltip wprm-block-text-light" data-initial-servings="" data-recipe="19396" aria-label="Adjust recipe servings">6</span> <span class="wprm-recipe-servings-unit wprm-recipe-details-unit wprm-block-text-light">pieces</span></span></div>
<div class="wprm-spacer" style="height: 4px"></div>
<strong>Author:</strong> Matt Ivan
<div class="wprm-spacer" style="height: 4px"></div>

<strong>Did you know?</strong> Servings and ingredient amounts can be adjusted on all my recipes. Click the green number above to change.</p>
<div class="wprm-spacer" style="height: 5px"></div>
<div class="wprm-recipe-ingredients-container wprm-recipe-ingredients-no-images wprm-recipe-19396-ingredients-container wprm-block-text-light wprm-ingredient-style-regular wprm-recipe-images-before" data-recipe="19396" data-servings="6"><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"><h4 class="wprm-recipe-group-name wprm-recipe-ingredient-group-name wprm-block-text-light">Fried Chicken</h4><ul class="wprm-recipe-ingredients"><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="1"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-0" class="wprm-checkbox" aria-label="&nbsp;2&#032;pounds&#032;Foster Farms Free Range Simply Raised Chicken Breast Fillets,&#032;cut in half"><label for="wprm-checkbox-0" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">&#x25a2; </span></label></span><span class="wprm-recipe-ingredient-amount">2</span>&#32;<span class="wprm-recipe-ingredient-unit">pounds</span>&#32;<span class="wprm-recipe-ingredient-name">Foster Farms Free Range Simply Raised Chicken Breast Fillets</span>,&#32;<span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-normal">cut in half</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="2"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-1" class="wprm-checkbox" aria-label="&nbsp;2&#032;cups&#032;all-purpose flour"><label for="wprm-checkbox-1" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">&#x25a2; </span></label></span><span class="wprm-recipe-ingredient-amount">2</span>&#32;<span class="wprm-recipe-ingredient-unit">cups</span>&#32;<span class="wprm-recipe-ingredient-name">all-purpose flour</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="3"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-2" class="wprm-checkbox" aria-label="&nbsp;2&#032;teaspoons&#032;baking powder"><label for="wprm-checkbox-2" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">&#x25a2; </span></label></span><span class="wprm-recipe-ingredient-amount">2</span>&#32;<span class="wprm-recipe-ingredient-unit">teaspoons</span>&#32;<span class="wprm-recipe-ingredient-name">baking powder</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="4"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-3" class="wprm-checkbox" aria-label="&nbsp;1 ½&#032;teaspoons&#032;baking soda"><label for="wprm-checkbox-3" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">&#x25a2; </span></label></span><span class="wprm-recipe-ingredient-amount">1 ½</span>&#32;<span class="wprm-recipe-ingredient-unit">teaspoons</span>&#32;<span class="wprm-recipe-ingredient-name">baking soda</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="5"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-4" class="wprm-checkbox" aria-label="&nbsp;1 ½&#032;teaspoons&#032;salt"><label for="wprm-checkbox-4" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">&#x25a2; </span></label></span><span class="wprm-recipe-ingredient-amount">1 ½</span>&#32;<span class="wprm-recipe-ingredient-unit">teaspoons</span>&#32;<span class="wprm-recipe-ingredient-name">salt</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="6"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-5" class="wprm-checkbox" aria-label="&nbsp;1&#032;teaspoon&#032;garlic powder"><label for="wprm-checkbox-5" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">&#x25a2; </span></label></span><span class="wprm-recipe-ingredient-amount">1</span>&#32;<span class="wprm-recipe-ingredient-unit">teaspoon</span>&#32;<span class="wprm-recipe-ingredient-name">garlic powder</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="7"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-6" class="wprm-checkbox" aria-label="&nbsp;1&#032;teaspoon&#032;paprika"><label for="wprm-checkbox-6" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">&#x25a2; </span></label></span><span class="wprm-recipe-ingredient-amount">1</span>&#32;<span class="wprm-recipe-ingredient-unit">teaspoon</span>&#32;<span class="wprm-recipe-ingredient-name">paprika</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="8"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-7" class="wprm-checkbox" aria-label="&nbsp;½&#032;teaspoon&#032;ground black pepper"><label for="wprm-checkbox-7" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">&#x25a2; </span></label></span><span class="wprm-recipe-ingredient-amount">½</span>&#32;<span class="wprm-recipe-ingredient-unit">teaspoon</span>&#32;<span class="wprm-recipe-ingredient-name">ground black pepper</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="9"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-8" class="wprm-checkbox" aria-label="&nbsp;1 ½&#032;cups&#032;buttermilk"><label for="wprm-checkbox-8" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">&#x25a2; </span></label></span><span class="wprm-recipe-ingredient-amount">1 ½</span>&#32;<span class="wprm-recipe-ingredient-unit">cups</span>&#32;<span class="wprm-recipe-ingredient-name">buttermilk</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="10"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-9" class="wprm-checkbox" aria-label="&nbsp;1&#032;large&#032;egg"><label for="wprm-checkbox-9" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">&#x25a2; </span></label></span><span class="wprm-recipe-ingredient-amount">1</span>&#32;<span class="wprm-recipe-ingredient-unit">large</span>&#32;<span class="wprm-recipe-ingredient-name">egg</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="11"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-10" class="wprm-checkbox" aria-label="&nbsp;Frying oil,&#032;such as avocado, grapeseed, peanut, canola, or corn oil"><label for="wprm-checkbox-10" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">&#x25a2; </span></label></span><span class="wprm-recipe-ingredient-name">Frying oil</span>,&#32;<span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-normal">such as avocado, grapeseed, peanut, canola, or corn oil</span></li></ul></div><div class="wprm-recipe-ingredient-group"><h4 class="wprm-recipe-group-name wprm-recipe-ingredient-group-name wprm-block-text-light">Country Gravy Sauce</h4><ul class="wprm-recipe-ingredients"><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="13"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-11" class="wprm-checkbox" aria-label="&nbsp;⅓&#032;cup&#032;of the used frying oil,&#032;or butter"><label for="wprm-checkbox-11" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">&#x25a2; </span></label></span><span class="wprm-recipe-ingredient-amount">⅓</span>&#32;<span class="wprm-recipe-ingredient-unit">cup</span>&#32;<span class="wprm-recipe-ingredient-name">of the used frying oil</span>,&#32;<span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-normal">or butter</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="14"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-12" class="wprm-checkbox" aria-label="&nbsp;½&#032;cup&#032;flour"><label for="wprm-checkbox-12" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">&#x25a2; </span></label></span><span class="wprm-recipe-ingredient-amount">½</span>&#32;<span class="wprm-recipe-ingredient-unit">cup</span>&#32;<span class="wprm-recipe-ingredient-name">flour</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="15"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-13" class="wprm-checkbox" aria-label="&nbsp;2 ½&#032;cups&#032;whole milk"><label for="wprm-checkbox-13" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">&#x25a2; </span></label></span><span class="wprm-recipe-ingredient-amount">2 ½</span>&#32;<span class="wprm-recipe-ingredient-unit">cups</span>&#32;<span class="wprm-recipe-ingredient-name">whole milk</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="16"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-14" class="wprm-checkbox" aria-label="&nbsp;Salt and pepper to taste"><label for="wprm-checkbox-14" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">&#x25a2; </span></label></span><span class="wprm-recipe-ingredient-name">Salt and pepper to taste</span></li></ul></div></div>


<div class="wprm-recipe-instructions-container wprm-recipe-19396-instructions-container wprm-block-text-light" data-recipe="19396"><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"><h4 class="wprm-recipe-group-name wprm-recipe-instruction-group-name wprm-block-text-normal">To Fry the Chicken Breasts</h4><ul class="wprm-recipe-instructions"><li id="wprm-recipe-19396-step-0-0" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text">In a large bowl, whisk together flour, baking powder, baking soda, salt, garlic powder, paprika, and pepper. Set aside.</div></li><li id="wprm-recipe-19396-step-0-1" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text">In a separate bowl stir together the buttermilk and egg.</div></li><li id="wprm-recipe-19396-step-0-2" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text">One at a time, dip the chicken breasts into the flour mixture and press to evenly coat both sides. Next, dip into the buttermilk mixture, then dip into the flour mixture again to coat well. Repeat for remaining chicken pieces.</div></li><li id="wprm-recipe-19396-step-0-3" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text">Preheat about 2 inches of frying oil in a skillet or frying pan on medium to 325° F.</div></li><li id="wprm-recipe-19396-step-0-4" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text">Add some of the breaded chicken breast pieces, leaving space between each. Fry for 3 to 5 minutes until browned. Rotate to brown the other sides and cook to an internal temp of at least 165° F.</div></li><li id="wprm-recipe-19396-step-0-5" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text">Remove the chicken breasts and place them onto a paper-towel line plate to drain. Repeat for remaining chicken pieces. Reserve some of the frying oil to make the country gravy.</div></li><li id="wprm-recipe-19396-step-0-6" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text">Serve with country gravy or desired sauce and sides.</div></li></ul></div><div class="wprm-recipe-instruction-group"><h4 class="wprm-recipe-group-name wprm-recipe-instruction-group-name wprm-block-text-normal">To Make the Country Gravy</h4><ul class="wprm-recipe-instructions"><li id="wprm-recipe-19396-step-1-0" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text">In a medium saucepan over medium heat, stir together the reserved frying oil and flour until it forms a thick past-like consistency. If using butter, melt the butter first, then add the flour.</div></li><li id="wprm-recipe-19396-step-1-1" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text">Slowly add the milk while and whisk until smooth. Cook 3 to 5 minutes, stirring often, to heat and thicken the sauce.</div></li><li id="wprm-recipe-19396-step-1-2" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text">Pour over the fried chicken and serve.</div></li></ul></div></div>


<div class="wprm-spacer" style="height: 11px"></div>
<span class="wprm-recipe-details wprm-recipe-nutrition wprm-recipe- wprm-block-text-normal"></span>
<div class="wprm-nutrition-label-container wprm-nutrition-label-container-label" style="text-align: center;"><div class="wprm-nutrition-label" style="background-color: #ffffff;color: #000000;">
	<div class="nutrition-title">Nutrition Facts</div>
	<div class="nutrition-recipe">Chicken Fried Chicken</div>
	<div class="nutrition-line nutrition-line-big"></div>
	<div class="nutrition-serving">
		Amount Per Serving		 (1 piece with gravy)	</div>
	<div class="nutrition-item">
		<span class="nutrition-main"><strong>Calories</strong> 669</span>
				<span class="nutrition-percentage">Calories from Fat 288</span>
			</div>
		<div class="nutrition-line"></div>
	<div class="nutrition-item">
		<span class="nutrition-percentage"><strong>% Daily Value*</strong></span>
	</div>
	<div class="nutrition-item nutrition-item-fat"><span class="nutrition-main"><strong>Fat</strong> 32g</span><span class="nutrition-percentage"><strong>49%</strong></span></div><div class="nutrition-sub-item nutrition-item-saturated_fat"><span class="nutrition-sub">Saturated Fat 8g</span><span class="nutrition-percentage"><strong>50%</strong></span></div><div class="nutrition-sub-item nutrition-item-trans_fat"><span class="nutrition-sub">Trans Fat 0.2g</span></div><div class="nutrition-sub-item nutrition-item-polyunsaturated_fat"><span class="nutrition-sub">Polyunsaturated Fat 14g</span></div><div class="nutrition-sub-item nutrition-item-monounsaturated_fat"><span class="nutrition-sub">Monounsaturated Fat 8g</span></div><div class="nutrition-item nutrition-item-cholesterol"><span class="nutrition-main"><strong>Cholesterol</strong> 147mg</span><span class="nutrition-percentage"><strong>49%</strong></span></div><div class="nutrition-item nutrition-item-sodium"><span class="nutrition-main"><strong>Sodium</strong> 1147mg</span><span class="nutrition-percentage"><strong>50%</strong></span></div><div class="nutrition-item nutrition-item-potassium"><span class="nutrition-main"><strong>Potassium</strong> 1011mg</span><span class="nutrition-percentage"><strong>29%</strong></span></div><div class="nutrition-item nutrition-item-carbohydrates"><span class="nutrition-main"><strong>Carbohydrates</strong> 49g</span><span class="nutrition-percentage"><strong>16%</strong></span></div><div class="nutrition-sub-item nutrition-item-fiber"><span class="nutrition-sub">Fiber 2g</span><span class="nutrition-percentage"><strong>8%</strong></span></div><div class="nutrition-sub-item nutrition-item-sugar"><span class="nutrition-sub">Sugar 8g</span><span class="nutrition-percentage"><strong>9%</strong></span></div><div class="nutrition-item nutrition-item-protein"><span class="nutrition-main"><strong>Protein</strong> 44g</span><span class="nutrition-percentage"><strong>88%</strong></span></div>			<div class="nutrition-line nutrition-line-big"></div>
	<div class="nutrition-item nutrition-item-vitamin_a"><span class="nutrition-main"><strong>Vitamin A</strong> 519IU</span><span class="nutrition-percentage"><strong>10%</strong></span></div><div class="nutrition-item nutrition-item-vitamin_c"><span class="nutrition-main"><strong>Vitamin C</strong> 2mg</span><span class="nutrition-percentage"><strong>2%</strong></span></div><div class="nutrition-item nutrition-item-calcium"><span class="nutrition-main"><strong>Calcium</strong> 274mg</span><span class="nutrition-percentage"><strong>27%</strong></span></div><div class="nutrition-item nutrition-item-iron"><span class="nutrition-main"><strong>Iron</strong> 3mg</span><span class="nutrition-percentage"><strong>17%</strong></span></div>		<div class="nutrition-warning">* Percent Daily Values are based on a 2000 calorie diet.</div>
</div>
</div>
<div class="wprm-spacer" style="height: 8px"></div>

<div class="wprm-call-to-action wprm-call-to-action-simple" style="color: #333333;background-color: #ffffff;margin: 2px;padding-top: 17px;padding-bottom: 17px;"><span class="wprm-recipe-icon wprm-call-to-action-icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24"><g class="nc-icon-wrapper" fill="#4a4a4a"><path fill="#4a4a4a" d="M12,0C5.4,0,0,5.4,0,12c0,5.1,3.2,9.4,7.6,11.2c-0.1-0.9-0.2-2.4,0-3.4c0.2-0.9,1.4-6,1.4-6S8.7,13,8.7,12 c0-1.7,1-2.9,2.2-2.9c1,0,1.5,0.8,1.5,1.7c0,1-0.7,2.6-1,4c-0.3,1.2,0.6,2.2,1.8,2.2c2.1,0,3.8-2.2,3.8-5.5c0-2.9-2.1-4.9-5-4.9 c-3.4,0-5.4,2.6-5.4,5.2c0,1,0.4,2.1,0.9,2.7c0.1,0.1,0.1,0.2,0.1,0.3c-0.1,0.4-0.3,1.2-0.3,1.4c-0.1,0.2-0.2,0.3-0.4,0.2 c-1.5-0.7-2.4-2.9-2.4-4.6c0-3.8,2.8-7.3,7.9-7.3c4.2,0,7.4,3,7.4,6.9c0,4.1-2.6,7.5-6.2,7.5c-1.2,0-2.4-0.6-2.8-1.4 c0,0-0.6,2.3-0.7,2.9c-0.3,1-1,2.3-1.5,3.1C9.6,23.8,10.8,24,12,24c6.6,0,12-5.4,12-12C24,5.4,18.6,0,12,0z"></path></g></svg></span> <span class="wprm-call-to-action-text-container"><span class="wprm-call-to-action-header" style="color: #4a4a4a;">Like this recipe?</span><span class="wprm-call-to-action-text">Visit <a href="https://www.pinterest.com/platingpixels" target="_blank" rel="noreferrer noopener" style="color: #7ed321">@platingpixels</a> on Pinterest to discover more. Pin it with button below to save recipe for later.</span></span></div>
<a href="#commentform" style="color: #333333;" class="wprm-recipe-jump-to-comments wprm-recipe-link wprm-block-text-bold"><span class="wprm-recipe-icon wprm-recipe-jump-to-comments-icon"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g ><path fill="#333333" 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"/></g></svg></span> Don't forget to leave a comment below and rate this recipe if you like it →</a></div></div>
<p><img decoding="async" style="display: none;" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201%201'%3E%3C/svg%3E" width="1" height="1" data-pin-description="Chicken Fried Chicken https://www.platingpixels.com/chicken-fried-chicken/" data-lazy-src="https://lnk2.io/yqTcRZY"><noscript><img decoding="async" style="display: none;" src="https://lnk2.io/yqTcRZY" width="1" height="1" data-pin-description="Chicken Fried Chicken https://www.platingpixels.com/chicken-fried-chicken/"></noscript></p>

<div class="swp_social_panel swp_horizontal_panel swp_flat_fresh  swp_default_full_color swp_other_full_color swp_individual_full_color scale-90 scale-full_width" data-min-width="1100" data-float-color="#ffffff" data-float="left" data-float-mobile="bottom" data-transition="slide" data-post-id="19388" ><div class="nc_tweetContainer swp_share_button swp_pinterest" data-network="pinterest"><a rel="nofollow noreferrer noopener" class="nc_tweet swp_share_link" data-count="0" data-link="https://pinterest.com/pin/create/button/?url=https://www.platingpixels.com/chicken-fried-chicken/&media=https%3A%2F%2Fwww.platingpixels.com%2Fwp-content%2Fuploads%2F2022%2F09%2FChicken-Fried-Chicken-recipe-2.jpg&description=Chicken+Fried+Chicken+via+%40platingpixels"  ><span class="swp_count swp_hide"><span class="iconFiller"><span class="spaceManWilly"><i class="sw swp_pinterest_icon"></i><span class="swp_share">Pin</span></span></span></span></a></div><div class="nc_tweetContainer swp_share_button swp_facebook" data-network="facebook"><a class="nc_tweet swp_share_link" rel="nofollow noreferrer noopener" target="_blank" href="https://www.facebook.com/share.php?u=https%3A%2F%2Fwww.platingpixels.com%2Fchicken-fried-chicken%2F%3Futm_source%3Dfacebook%26utm_medium%3Dsocial%26utm_campaign%3DSocialWarfare" data-link="https://www.facebook.com/share.php?u=https%3A%2F%2Fwww.platingpixels.com%2Fchicken-fried-chicken%2F%3Futm_source%3Dfacebook%26utm_medium%3Dsocial%26utm_campaign%3DSocialWarfare"><span class="swp_count swp_hide"><span class="iconFiller"><span class="spaceManWilly"><i class="sw swp_facebook_icon"></i><span class="swp_share">Share</span></span></span></span></a></div><div class="nc_tweetContainer swp_share_button swp_flipboard" data-network="flipboard"><a class="nc_tweet swp_share_link" rel="nofollow noreferrer noopener" target="_blank" href="https://share.flipboard.com/bookmarklet/popout?v=2&title=Chicken+Fried+Chicken&url=https%3A%2F%2Fwww.platingpixels.com%2Fchicken-fried-chicken%2F%3Futm_source%3Dflipboard%26utm_medium%3Dsocial%26utm_campaign%3DSocialWarfare" data-link="https://share.flipboard.com/bookmarklet/popout?v=2&title=Chicken+Fried+Chicken&url=https%3A%2F%2Fwww.platingpixels.com%2Fchicken-fried-chicken%2F%3Futm_source%3Dflipboard%26utm_medium%3Dsocial%26utm_campaign%3DSocialWarfare"><span class="swp_count swp_hide"><span class="iconFiller"><span class="spaceManWilly"><i class="sw swp_flipboard_icon"></i><span class="swp_share">Flip</span></span></span></span></a></div><div class="nc_tweetContainer swp_share_button swp_twitter" data-network="twitter"><a class="nc_tweet swp_share_link" rel="nofollow noreferrer noopener" target="_blank" href="https://twitter.com/intent/tweet?text=Chicken+Fried+Chicken&url=https%3A%2F%2Fwww.platingpixels.com%2Fchicken-fried-chicken%2F%3Futm_source%3Dtwitter%26utm_medium%3Dsocial%26utm_campaign%3DSocialWarfare&via=platingpixels" data-link="https://twitter.com/intent/tweet?text=Chicken+Fried+Chicken&url=https%3A%2F%2Fwww.platingpixels.com%2Fchicken-fried-chicken%2F%3Futm_source%3Dtwitter%26utm_medium%3Dsocial%26utm_campaign%3DSocialWarfare&via=platingpixels"><span class="swp_count swp_hide"><span class="iconFiller"><span class="spaceManWilly"><i class="sw swp_twitter_icon"></i><span class="swp_share">Tweet</span></span></span></span></a></div><div class="nc_tweetContainer swp_share_button swp_more" data-network="more"><a class="nc_tweet swp_share_link" rel="nofollow noreferrer noopener" target="_blank" href="#" data-link="#"><span class="swp_count swp_hide"><span class="iconFiller"><span class="spaceManWilly"><i class="sw swp_more_icon"></i><span class="swp_share">More</span></span></span></span></a></div></div><div class="swp-content-locator"></div><div class="entry-taxonomies"><span class="category-links term-links category-style-normal"><a href="https://www.platingpixels.com/category/chicken/" rel="category tag">Chicken Recipes</a> | <a href="https://www.platingpixels.com/category/entrees/" rel="category tag">Entrees and Dinner Recipes</a> | <a href="https://www.platingpixels.com/category/recipe/" rel="category tag">Recipes</a></span></div></div><!-- .entry-content -->
<footer class="entry-footer">
	</footer><!-- .entry-footer -->
	</div>
</article><!-- #post-19388 -->


	<nav class="navigation post-navigation" aria-label="Posts">
		<h2 class="screen-reader-text">Post navigation</h2>
		<div class="nav-links"><div class="nav-previous"><a href="https://www.platingpixels.com/chili-lime-grilled-chicken-bowls/" rel="prev"><div class="post-navigation-sub"><small><span class="kadence-svg-iconset svg-baseline"><svg aria-hidden="true" class="kadence-svg-icon kadence-arrow-left-alt-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="29" height="28" viewBox="0 0 29 28"><title>Previous</title><path d="M28 12.5v3c0 0.281-0.219 0.5-0.5 0.5h-19.5v3.5c0 0.203-0.109 0.375-0.297 0.453s-0.391 0.047-0.547-0.078l-6-5.469c-0.094-0.094-0.156-0.219-0.156-0.359v0c0-0.141 0.063-0.281 0.156-0.375l6-5.531c0.156-0.141 0.359-0.172 0.547-0.094 0.172 0.078 0.297 0.25 0.297 0.453v3.5h19.5c0.281 0 0.5 0.219 0.5 0.5z"></path>
				</svg></span>Previous</small></div>Chili Lime Grilled Chicken Bowls</a></div><div class="nav-next"><a href="https://www.platingpixels.com/slow-cooker-shredded-chicken/" rel="next"><div class="post-navigation-sub"><small>Next<span class="kadence-svg-iconset svg-baseline"><svg aria-hidden="true" class="kadence-svg-icon kadence-arrow-right-alt-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="27" height="28" viewBox="0 0 27 28"><title>Continue</title><path d="M27 13.953c0 0.141-0.063 0.281-0.156 0.375l-6 5.531c-0.156 0.141-0.359 0.172-0.547 0.094-0.172-0.078-0.297-0.25-0.297-0.453v-3.5h-19.5c-0.281 0-0.5-0.219-0.5-0.5v-3c0-0.281 0.219-0.5 0.5-0.5h19.5v-3.5c0-0.203 0.109-0.375 0.297-0.453s0.391-0.047 0.547 0.078l6 5.469c0.094 0.094 0.156 0.219 0.156 0.359v0z"></path>
				</svg></span></small></div>Slow Cooker Shredded Chicken</a></div></div>
	</nav>		<div class="entry-related alignfull entry-related-style-wide">
			<div class="entry-related-inner content-container site-container">
				<div class="entry-related-inner-content alignwide">
					<h2 class="entry-related-title">Similar Posts</h2>					<div class="entry-related-carousel kadence-slide-init splide" data-columns-xxl="3" data-columns-xl="3" data-columns-md="3" data-columns-sm="2" data-columns-xs="2" data-columns-ss="1" data-slider-anim-speed="400" data-slider-scroll="1" data-slider-dots="true" data-slider-arrows="true" data-slider-hover-pause="false" data-slider-auto="false" data-slider-speed="7000" data-slider-gutter="40" data-slider-loop="true" data-slider-next-label="Next" data-slider-slide-label="Posts" data-slider-prev-label="Previous">
						<div class="splide__track">
							<div class="splide__list grid-cols grid-sm-col-2 grid-lg-col-3">
								<div class="carousel-item splide__slide">
<article class="entry content-bg loop-entry post-13736 post type-post status-publish format-standard has-post-thumbnail hentry category-appetizer category-beef category-keto category-recipe mv-content-wrapper">
			<a class="post-thumbnail kadence-thumbnail-ratio-1-1" href="https://www.platingpixels.com/greek-baked-meatballs/">
			<div class="post-thumbnail-inner">
				<img width="720" height="1080" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20720%201080'%3E%3C/svg%3E" class="attachment-full size-full wp-post-image" alt="Greek Baked Meatballs" decoding="async" data-lazy-srcset="https://www.platingpixels.com/wp-content/uploads/2019/01/Baked-Greek-Meatballs-recipe-1.webp 720w,https://www.platingpixels.com/wp-content/uploads/2019/01/Baked-Greek-Meatballs-recipe-1-100x150.webp 100w,https://www.platingpixels.com/wp-content/uploads/2019/01/Baked-Greek-Meatballs-recipe-1-200x300.webp 200w" data-lazy-sizes="(max-width: 720px) 100vw, 720px" data-lazy-src="https://www.platingpixels.com/wp-content/uploads/2019/01/Baked-Greek-Meatballs-recipe-1.webp" /><noscript><img width="720" height="1080" src="https://www.platingpixels.com/wp-content/uploads/2019/01/Baked-Greek-Meatballs-recipe-1.webp" class="attachment-full size-full wp-post-image" alt="Greek Baked Meatballs" decoding="async" srcset="https://www.platingpixels.com/wp-content/uploads/2019/01/Baked-Greek-Meatballs-recipe-1.webp 720w,https://www.platingpixels.com/wp-content/uploads/2019/01/Baked-Greek-Meatballs-recipe-1-100x150.webp 100w,https://www.platingpixels.com/wp-content/uploads/2019/01/Baked-Greek-Meatballs-recipe-1-200x300.webp 200w" sizes="(max-width: 720px) 100vw, 720px" /></noscript>			</div>
		</a><!-- .post-thumbnail -->
			<div class="entry-content-wrap">
		<header class="entry-header">

	<h3 class="entry-title"><a href="https://www.platingpixels.com/greek-baked-meatballs/" rel="bookmark">Greek Baked Meatballs</a></h3></header><!-- .entry-header -->
<footer class="entry-footer">
	</footer><!-- .entry-footer -->
	</div>
</article>
</div><div class="carousel-item splide__slide">
<article class="entry content-bg loop-entry post-7103 post type-post status-publish format-standard has-post-thumbnail hentry category-gluten-free category-keto category-recipe category-salad category-side category-vegetarian tag-avocado tag-basil tag-cheese tag-cucumber tag-mozzarella tag-olive-oil tag-pumpkin-seed tag-salt-pepper tag-tomato mv-content-wrapper">
			<a class="post-thumbnail kadence-thumbnail-ratio-1-1" href="https://www.platingpixels.com/mozzarella-avocado-caprese-salad/">
			<div class="post-thumbnail-inner">
				<img width="950" height="633" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20950%20633'%3E%3C/svg%3E" class="attachment-full size-full wp-post-image" alt="Mozzarella Avocado Caprese Salad" decoding="async" data-lazy-srcset="https://www.platingpixels.com/wp-content/uploads/2016/06/Mozzarella-Avocado-Caprese-Salad-recipe-5.webp 950w,https://www.platingpixels.com/wp-content/uploads/2016/06/Mozzarella-Avocado-Caprese-Salad-recipe-5-105x70.webp 105w,https://www.platingpixels.com/wp-content/uploads/2016/06/Mozzarella-Avocado-Caprese-Salad-recipe-5-300x200.webp 300w,https://www.platingpixels.com/wp-content/uploads/2016/06/Mozzarella-Avocado-Caprese-Salad-recipe-5-768x512.webp 768w,https://www.platingpixels.com/wp-content/uploads/2016/06/Mozzarella-Avocado-Caprese-Salad-recipe-5-824x549.webp 824w" data-lazy-sizes="(max-width: 950px) 100vw, 950px" data-lazy-src="https://www.platingpixels.com/wp-content/uploads/2016/06/Mozzarella-Avocado-Caprese-Salad-recipe-5.webp" /><noscript><img width="950" height="633" src="https://www.platingpixels.com/wp-content/uploads/2016/06/Mozzarella-Avocado-Caprese-Salad-recipe-5.webp" class="attachment-full size-full wp-post-image" alt="Mozzarella Avocado Caprese Salad" decoding="async" srcset="https://www.platingpixels.com/wp-content/uploads/2016/06/Mozzarella-Avocado-Caprese-Salad-recipe-5.webp 950w,https://www.platingpixels.com/wp-content/uploads/2016/06/Mozzarella-Avocado-Caprese-Salad-recipe-5-105x70.webp 105w,https://www.platingpixels.com/wp-content/uploads/2016/06/Mozzarella-Avocado-Caprese-Salad-recipe-5-300x200.webp 300w,https://www.platingpixels.com/wp-content/uploads/2016/06/Mozzarella-Avocado-Caprese-Salad-recipe-5-768x512.webp 768w,https://www.platingpixels.com/wp-content/uploads/2016/06/Mozzarella-Avocado-Caprese-Salad-recipe-5-824x549.webp 824w" sizes="(max-width: 950px) 100vw, 950px" /></noscript>			</div>
		</a><!-- .post-thumbnail -->
			<div class="entry-content-wrap">
		<header class="entry-header">

	<h3 class="entry-title"><a href="https://www.platingpixels.com/mozzarella-avocado-caprese-salad/" rel="bookmark">Mozzarella Avocado Caprese Salad</a></h3></header><!-- .entry-header -->
<footer class="entry-footer">
	</footer><!-- .entry-footer -->
	</div>
</article>
</div><div class="carousel-item splide__slide">
<article class="entry content-bg loop-entry post-3319 post type-post status-publish format-standard has-post-thumbnail hentry category-chicken category-entrees category-gluten-free category-keto category-popular-recipe category-recipe tag-chicken-2 tag-olive-oil mv-content-wrapper">
			<a class="post-thumbnail kadence-thumbnail-ratio-1-1" href="https://www.platingpixels.com/how-to-bake-chicken-breast-that-are-moist-and-tender/">
			<div class="post-thumbnail-inner">
				<img width="720" height="1080" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20720%201080'%3E%3C/svg%3E" class="attachment-full size-full wp-post-image" alt="Baked Chicken Breast (A Complete How-To)" decoding="async" data-lazy-srcset="https://www.platingpixels.com/wp-content/uploads/2018/11/Baked-Chicken-Breast-recipe-3.webp 720w,https://www.platingpixels.com/wp-content/uploads/2018/11/Baked-Chicken-Breast-recipe-3-100x150.webp 100w,https://www.platingpixels.com/wp-content/uploads/2018/11/Baked-Chicken-Breast-recipe-3-200x300.webp 200w" data-lazy-sizes="(max-width: 720px) 100vw, 720px" data-lazy-src="https://www.platingpixels.com/wp-content/uploads/2018/11/Baked-Chicken-Breast-recipe-3.webp" /><noscript><img width="720" height="1080" src="https://www.platingpixels.com/wp-content/uploads/2018/11/Baked-Chicken-Breast-recipe-3.webp" class="attachment-full size-full wp-post-image" alt="Baked Chicken Breast (A Complete How-To)" decoding="async" srcset="https://www.platingpixels.com/wp-content/uploads/2018/11/Baked-Chicken-Breast-recipe-3.webp 720w,https://www.platingpixels.com/wp-content/uploads/2018/11/Baked-Chicken-Breast-recipe-3-100x150.webp 100w,https://www.platingpixels.com/wp-content/uploads/2018/11/Baked-Chicken-Breast-recipe-3-200x300.webp 200w" sizes="(max-width: 720px) 100vw, 720px" /></noscript>			</div>
		</a><!-- .post-thumbnail -->
			<div class="entry-content-wrap">
		<header class="entry-header">

	<h3 class="entry-title"><a href="https://www.platingpixels.com/how-to-bake-chicken-breast-that-are-moist-and-tender/" rel="bookmark">Baked Chicken Breast (A Complete How-To)</a></h3></header><!-- .entry-header -->
<footer class="entry-footer">
	</footer><!-- .entry-footer -->
	</div>
</article>
</div><div class="carousel-item splide__slide">
<article class="entry content-bg loop-entry post-4649 post type-post status-publish format-standard has-post-thumbnail hentry category-roundups category-recipe tag-barbecue-2 tag-bbq tag-grill tag-roundup mv-content-wrapper">
			<a class="post-thumbnail kadence-thumbnail-ratio-1-1" href="https://www.platingpixels.com/ultimate-4th-of-july-party-menu-recipes/">
			<div class="post-thumbnail-inner">
				<img width="720" height="340" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20720%20340'%3E%3C/svg%3E" class="attachment-full size-full wp-post-image" alt="Ultimate 4th of July Party Menu Recipes" decoding="async" data-lazy-srcset="https://www.platingpixels.com/wp-content/uploads/2015/07/Ultimate-4th-of-July-Party-Menu-Recipes.webp 720w,https://www.platingpixels.com/wp-content/uploads/2015/07/Ultimate-4th-of-July-Party-Menu-Recipes-105x50.webp 105w,https://www.platingpixels.com/wp-content/uploads/2015/07/Ultimate-4th-of-July-Party-Menu-Recipes-300x142.webp 300w,https://www.platingpixels.com/wp-content/uploads/2015/07/Ultimate-4th-of-July-Party-Menu-Recipes-520x245.webp 520w" data-lazy-sizes="(max-width: 720px) 100vw, 720px" data-lazy-src="https://www.platingpixels.com/wp-content/uploads/2015/07/Ultimate-4th-of-July-Party-Menu-Recipes.webp" /><noscript><img width="720" height="340" src="https://www.platingpixels.com/wp-content/uploads/2015/07/Ultimate-4th-of-July-Party-Menu-Recipes.webp" class="attachment-full size-full wp-post-image" alt="Ultimate 4th of July Party Menu Recipes" decoding="async" srcset="https://www.platingpixels.com/wp-content/uploads/2015/07/Ultimate-4th-of-July-Party-Menu-Recipes.webp 720w,https://www.platingpixels.com/wp-content/uploads/2015/07/Ultimate-4th-of-July-Party-Menu-Recipes-105x50.webp 105w,https://www.platingpixels.com/wp-content/uploads/2015/07/Ultimate-4th-of-July-Party-Menu-Recipes-300x142.webp 300w,https://www.platingpixels.com/wp-content/uploads/2015/07/Ultimate-4th-of-July-Party-Menu-Recipes-520x245.webp 520w" sizes="(max-width: 720px) 100vw, 720px" /></noscript>			</div>
		</a><!-- .post-thumbnail -->
			<div class="entry-content-wrap">
		<header class="entry-header">

	<h3 class="entry-title"><a href="https://www.platingpixels.com/ultimate-4th-of-july-party-menu-recipes/" rel="bookmark">Ultimate 4th of July Party Menu Recipes</a></h3></header><!-- .entry-header -->
<footer class="entry-footer">
	</footer><!-- .entry-footer -->
	</div>
</article>
</div><div class="carousel-item splide__slide">
<article class="entry content-bg loop-entry post-442 post type-post status-publish format-standard has-post-thumbnail hentry category-entrees category-gluten-free category-recipe category-seafood tag-avocado tag-chilies tag-cilantro tag-jalapeno tag-limes tag-olive tag-rice tag-shrimp tag-tomato mv-content-wrapper">
			<a class="post-thumbnail kadence-thumbnail-ratio-1-1" href="https://www.platingpixels.com/veracruz-shrimp-with-olives/">
			<div class="post-thumbnail-inner">
				<img width="1500" height="1041" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201500%201041'%3E%3C/svg%3E" class="attachment-full size-full wp-post-image" alt="Veracruz Shrimp with Green Olives" decoding="async" data-lazy-srcset="https://www.platingpixels.com/wp-content/uploads/2014/05/Veracruz-Shrimp-with-Green-Olives-2.webp 1500w,https://www.platingpixels.com/wp-content/uploads/2014/05/Veracruz-Shrimp-with-Green-Olives-2-105x72.webp 105w,https://www.platingpixels.com/wp-content/uploads/2014/05/Veracruz-Shrimp-with-Green-Olives-2-300x208.webp 300w,https://www.platingpixels.com/wp-content/uploads/2014/05/Veracruz-Shrimp-with-Green-Olives-2-768x533.webp 768w,https://www.platingpixels.com/wp-content/uploads/2014/05/Veracruz-Shrimp-with-Green-Olives-2-1100x763.webp 1100w,https://www.platingpixels.com/wp-content/uploads/2014/05/Veracruz-Shrimp-with-Green-Olives-2-824x572.webp 824w,https://www.platingpixels.com/wp-content/uploads/2014/05/Veracruz-Shrimp-with-Green-Olives-2-720x499.webp 720w" data-lazy-sizes="(max-width: 1500px) 100vw, 1500px" data-lazy-src="https://www.platingpixels.com/wp-content/uploads/2014/05/Veracruz-Shrimp-with-Green-Olives-2.webp" /><noscript><img width="1500" height="1041" src="https://www.platingpixels.com/wp-content/uploads/2014/05/Veracruz-Shrimp-with-Green-Olives-2.webp" class="attachment-full size-full wp-post-image" alt="Veracruz Shrimp with Green Olives" decoding="async" srcset="https://www.platingpixels.com/wp-content/uploads/2014/05/Veracruz-Shrimp-with-Green-Olives-2.webp 1500w,https://www.platingpixels.com/wp-content/uploads/2014/05/Veracruz-Shrimp-with-Green-Olives-2-105x72.webp 105w,https://www.platingpixels.com/wp-content/uploads/2014/05/Veracruz-Shrimp-with-Green-Olives-2-300x208.webp 300w,https://www.platingpixels.com/wp-content/uploads/2014/05/Veracruz-Shrimp-with-Green-Olives-2-768x533.webp 768w,https://www.platingpixels.com/wp-content/uploads/2014/05/Veracruz-Shrimp-with-Green-Olives-2-1100x763.webp 1100w,https://www.platingpixels.com/wp-content/uploads/2014/05/Veracruz-Shrimp-with-Green-Olives-2-824x572.webp 824w,https://www.platingpixels.com/wp-content/uploads/2014/05/Veracruz-Shrimp-with-Green-Olives-2-720x499.webp 720w" sizes="(max-width: 1500px) 100vw, 1500px" /></noscript>			</div>
		</a><!-- .post-thumbnail -->
			<div class="entry-content-wrap">
		<header class="entry-header">

	<h3 class="entry-title"><a href="https://www.platingpixels.com/veracruz-shrimp-with-olives/" rel="bookmark">Veracruz Shrimp with Green Olives</a></h3></header><!-- .entry-header -->
<footer class="entry-footer">
	</footer><!-- .entry-footer -->
	</div>
</article>
</div><div class="carousel-item splide__slide">
<article class="entry content-bg loop-entry post-364 post type-post status-publish format-standard has-post-thumbnail hentry category-breakfast category-recipe category-vegetarian tag-butter tag-buttermilk tag-macadamia-nuts tag-nuts tag-orange tag-pancake tag-wheat tag-white-chocolate-chip mv-content-wrapper">
			<a class="post-thumbnail kadence-thumbnail-ratio-1-1" href="https://www.platingpixels.com/white-chocolate-macadamia-nut-pancakes/">
			<div class="post-thumbnail-inner">
				<img width="1500" height="1145" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201500%201145'%3E%3C/svg%3E" class="attachment-full size-full wp-post-image" alt="White Chocolate Chip Macadamia Nut Pancakes with Orange Butter" decoding="async" data-lazy-srcset="https://www.platingpixels.com/wp-content/uploads/2014/04/White-Chocolate-Chip-Macadamia-Nut-Pancakes-with-Orange-Butter-1.webp 1500w,https://www.platingpixels.com/wp-content/uploads/2014/04/White-Chocolate-Chip-Macadamia-Nut-Pancakes-with-Orange-Butter-1-105x80.webp 105w,https://www.platingpixels.com/wp-content/uploads/2014/04/White-Chocolate-Chip-Macadamia-Nut-Pancakes-with-Orange-Butter-1-300x229.webp 300w,https://www.platingpixels.com/wp-content/uploads/2014/04/White-Chocolate-Chip-Macadamia-Nut-Pancakes-with-Orange-Butter-1-768x586.webp 768w,https://www.platingpixels.com/wp-content/uploads/2014/04/White-Chocolate-Chip-Macadamia-Nut-Pancakes-with-Orange-Butter-1-1100x840.webp 1100w,https://www.platingpixels.com/wp-content/uploads/2014/04/White-Chocolate-Chip-Macadamia-Nut-Pancakes-with-Orange-Butter-1-824x629.webp 824w,https://www.platingpixels.com/wp-content/uploads/2014/04/White-Chocolate-Chip-Macadamia-Nut-Pancakes-with-Orange-Butter-1-720x549.webp 720w" data-lazy-sizes="(max-width: 1500px) 100vw, 1500px" data-lazy-src="https://www.platingpixels.com/wp-content/uploads/2014/04/White-Chocolate-Chip-Macadamia-Nut-Pancakes-with-Orange-Butter-1.webp" /><noscript><img width="1500" height="1145" src="https://www.platingpixels.com/wp-content/uploads/2014/04/White-Chocolate-Chip-Macadamia-Nut-Pancakes-with-Orange-Butter-1.webp" class="attachment-full size-full wp-post-image" alt="White Chocolate Chip Macadamia Nut Pancakes with Orange Butter" decoding="async" srcset="https://www.platingpixels.com/wp-content/uploads/2014/04/White-Chocolate-Chip-Macadamia-Nut-Pancakes-with-Orange-Butter-1.webp 1500w,https://www.platingpixels.com/wp-content/uploads/2014/04/White-Chocolate-Chip-Macadamia-Nut-Pancakes-with-Orange-Butter-1-105x80.webp 105w,https://www.platingpixels.com/wp-content/uploads/2014/04/White-Chocolate-Chip-Macadamia-Nut-Pancakes-with-Orange-Butter-1-300x229.webp 300w,https://www.platingpixels.com/wp-content/uploads/2014/04/White-Chocolate-Chip-Macadamia-Nut-Pancakes-with-Orange-Butter-1-768x586.webp 768w,https://www.platingpixels.com/wp-content/uploads/2014/04/White-Chocolate-Chip-Macadamia-Nut-Pancakes-with-Orange-Butter-1-1100x840.webp 1100w,https://www.platingpixels.com/wp-content/uploads/2014/04/White-Chocolate-Chip-Macadamia-Nut-Pancakes-with-Orange-Butter-1-824x629.webp 824w,https://www.platingpixels.com/wp-content/uploads/2014/04/White-Chocolate-Chip-Macadamia-Nut-Pancakes-with-Orange-Butter-1-720x549.webp 720w" sizes="(max-width: 1500px) 100vw, 1500px" /></noscript>			</div>
		</a><!-- .post-thumbnail -->
			<div class="entry-content-wrap">
		<header class="entry-header">

	<h3 class="entry-title"><a href="https://www.platingpixels.com/white-chocolate-macadamia-nut-pancakes/" rel="bookmark">White Chocolate Chip Macadamia Nut Pancakes with Orange Butter</a></h3></header><!-- .entry-header -->
<footer class="entry-footer">
	</footer><!-- .entry-footer -->
	</div>
</article>
</div>							</div>
						</div>
					</div>
				</div>
			</div>
		</div><!-- .entry-author -->
		<div id="comments" class="comments-area">
	<h2 class="comments-title">2 Comments</h2><!-- .comments-title -->		<ol class="comment-list">
					<li id="comment-120331" class="comment even thread-even depth-1 parent">
			<article id="div-comment-120331" class="comment-body">
				<footer class="comment-meta">
					<div class="comment-author vcard">
						<img alt='' src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2060%2060'%3E%3C/svg%3E" data-lazy-srcset='https://secure.gravatar.com/avatar/d0da49bf0b4ce730d3fe216c34ff1abe?s=120&#038;d=blank&#038;r=pg 2x' class='avatar avatar-60 photo' height='60' width='60' decoding='async' data-lazy-src="https://secure.gravatar.com/avatar/d0da49bf0b4ce730d3fe216c34ff1abe?s=60&#038;d=blank&#038;r=pg"/><noscript><img alt='' src='https://secure.gravatar.com/avatar/d0da49bf0b4ce730d3fe216c34ff1abe?s=60&#038;d=blank&#038;r=pg' srcset='https://secure.gravatar.com/avatar/d0da49bf0b4ce730d3fe216c34ff1abe?s=120&#038;d=blank&#038;r=pg 2x' class='avatar avatar-60 photo' height='60' width='60' decoding='async'/></noscript>						<b class="fn">Sofia Graf</b> <span class="says">says:</span>					</div><!-- .comment-author -->

					<div class="comment-metadata">
						<a href="https://www.platingpixels.com/chicken-fried-chicken/#comment-120331"><time datetime="2022-11-10T05:27:51-08:00">November 10, 2022 at 5:27 am</time></a>					</div><!-- .comment-metadata -->

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

				<div class="comment-content">
					<p><img class="wprm-comment-rating" src="data:image/gif;base64,R0lGODdhAQABAPAAAP///wAAACwAAAAAAQABAEACAkQBADs=" data-lazy-src="https://www.platingpixels.com/wp-content/plugins/wp-recipe-maker/assets/icons/rating/stars-5.svg" alt="5 stars" width="80" height="16" /><br />
I wish to try the recipe for Chicken Fried Chicken with ghee butter instead of using vegetable oil. Ghee offers a higher smoke point and ghee is more flavorsome than any other vegetable oil. Please Matt, let me know if I am choosing the right oil for a high temperature deep-frying recipe? Thanks in advance.<br />
I prefer using Milkio grass-fed ghee for all my recipes.</p>
				</div><!-- .comment-content -->

				<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-120331' data-commentid="120331" data-postid="19388" data-belowelement="div-comment-120331" data-respondelement="respond" data-replyto="Reply to Sofia Graf" aria-label='Reply to Sofia Graf'>Reply</a></div>			</article><!-- .comment-body -->
		<ol class="children">
		<li id="comment-120332" class="comment byuser comment-author-mattivandesigns-com bypostauthor odd alt depth-2">
			<article id="div-comment-120332" class="comment-body">
				<footer class="comment-meta">
					<div class="comment-author vcard">
						<img alt='' src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2060%2060'%3E%3C/svg%3E" data-lazy-srcset='https://secure.gravatar.com/avatar/1bdf552b063b57f828e16a2db45aea8d?s=120&#038;d=blank&#038;r=pg 2x' class='avatar avatar-60 photo' height='60' width='60' decoding='async' data-lazy-src="https://secure.gravatar.com/avatar/1bdf552b063b57f828e16a2db45aea8d?s=60&#038;d=blank&#038;r=pg"/><noscript><img alt='' src='https://secure.gravatar.com/avatar/1bdf552b063b57f828e16a2db45aea8d?s=60&#038;d=blank&#038;r=pg' srcset='https://secure.gravatar.com/avatar/1bdf552b063b57f828e16a2db45aea8d?s=120&#038;d=blank&#038;r=pg 2x' class='avatar avatar-60 photo' height='60' width='60' decoding='async'/></noscript>						<b class="fn"><a href="https://www.platingpixels.com" class="url" rel="ugc">Matthew</a></b> <span class="says">says:</span>					</div><!-- .comment-author -->

					<div class="comment-metadata">
						<a href="https://www.platingpixels.com/chicken-fried-chicken/#comment-120332"><time datetime="2022-11-10T05:33:42-08:00">November 10, 2022 at 5:33 am</time></a>					</div><!-- .comment-metadata -->

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

				<div class="comment-content">
					<p>Hi Sofia. That’s a great question and thanks for the comment. You can use a variety of frying oil‘s, but I’ve never tried ghee. As long as the smoke point is much higher than butter it should work. You’ll just need to find the balance of enough heat to crisp up the breading, but not cause smoking.</p>
				</div><!-- .comment-content -->

				<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-120332' data-commentid="120332" data-postid="19388" data-belowelement="div-comment-120332" data-respondelement="respond" data-replyto="Reply to Matthew" aria-label='Reply to Matthew'>Reply</a></div>			</article><!-- .comment-body -->
		</li><!-- #comment-## -->
</ol><!-- .children -->
</li><!-- #comment-## -->
		</ol><!-- .comment-list -->
			<div id="respond" class="comment-respond">
		<h3 id="reply-title" class="comment-reply-title">Leave a Reply <small><a rel="nofollow" id="cancel-comment-reply-link" href="/chicken-fried-chicken/#respond" style="display:none;">Cancel reply</a></small></h3><form action="https://www.platingpixels.com/wp-comments-post.php" method="post" id="commentform" class="comment-form" novalidate><p class="comment-notes"><span id="email-notes">Your email address will not be published.</span> <span class="required-field-message">Required fields are marked <span class="required">*</span></span></p><div class="comment-form-wprm-rating">
	<label for="wprm-comment-rating-631351076">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="#7ed321" 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="#7ed321" 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="#7ed321" 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="#7ed321" 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="#7ed321" 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="#7ed321" 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="#7ed321" 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="#7ed321" 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="#7ed321" 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-631351076" 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="#7ed321" 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>
<p class="comment-form-comment comment-form-float-label"><textarea id="comment" name="comment" placeholder="Leave a comment..." cols="45" rows="8" maxlength="65525" aria-required="true" required="required"></textarea><label class="float-label" for="comment">Comment <span class="required">*</span></label></p><div class="comment-input-wrap has-url-field"><p class="comment-form-author"><input aria-label="Name" id="author" name="author" type="text" placeholder="John Doe" value="" size="30" maxlength="245" aria-required='true' required='required' /><label class="float-label" for="author">Name <span class="required">*</span></label></p>
<p class="comment-form-email"><input aria-label="Email" id="email" name="email" type="email" placeholder="john@example.com" value="" size="30" maxlength="100" aria-describedby="email-notes" aria-required='true' required='required' /><label class="float-label" for="email">Email <span class="required">*</span></label></p>
<p class="comment-form-url"><input aria-label="Website" id="url" name="url" type="url" placeholder="https://www.example.com" value="" size="30" maxlength="200" /><label class="float-label" for="url">Website</label></p></div>
<p class="comment-form-cookies-consent"><input id="wp-comment-cookies-consent" name="wp-comment-cookies-consent" type="checkbox" value="yes" /> <label for="wp-comment-cookies-consent">Save my name, email, and website in this browser for the next time I comment.</label></p>
<p class="form-submit"><input name="submit" type="submit" id="submit" class="submit" value="Post Comment" /> <input type='hidden' name='comment_post_ID' value='19388' 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="d63059e346" /></p><p style="display: none !important;"><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="58"/><script type="rocketlazyloadscript">document.getElementById( "ak_js_1" ).setAttribute( "value", ( new Date() ).getTime() );</script></p></form>	</div><!-- #respond -->
	</div><!-- #comments -->
			</div>
					</main><!-- #main -->
		<aside id="secondary" role="complementary" class="primary-sidebar widget-area sidebar-slug-sidebar-secondary sidebar-link-style-normal">
	<div class="sidebar-inner-wrap">
		<section id="block-37" class="widget widget_block">
<style></style>
<div class="wp-block-kadence-infobox kt-info-box_17cd67-21"><a class="kt-blocks-info-box-link-wrap info-box-link kt-blocks-info-box-media-align-top kt-info-halign-center" href="https://www.platingpixels.com/about/"><div class="kt-blocks-info-box-media-container"><div class="kt-blocks-info-box-media kt-info-media-animate-none"><div class="kadence-info-box-image-inner-intrisic-container"><div class="kadence-info-box-image-intrisic kt-info-animate-none"><div class="kadence-info-box-image-inner-intrisic"><img decoding="async" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20720%20683'%3E%3C/svg%3E" alt="Matt Ivan of Plating Pixels in the kitchen" width="720" height="683" class="kt-info-box-image wp-image-18376" data-lazy-src="https://www.platingpixels.com/wp-content/uploads/2020/11/Matt-Ivan-of-Plating-Pixels-1-720x683.webp"/><noscript><img decoding="async" src="https://www.platingpixels.com/wp-content/uploads/2020/11/Matt-Ivan-of-Plating-Pixels-1-720x683.webp" alt="Matt Ivan of Plating Pixels in the kitchen" width="720" height="683" class="kt-info-box-image wp-image-18376"/></noscript></div></div></div></div></div><div class="kt-infobox-textcontent"><h2 class="kt-blocks-info-box-title">Hi, I'm Matt!</h2><p class="kt-blocks-info-box-text">Welcome to Plating Pixels, a food blog with easy weeknight recipes, healthy comfort food, and decadent desserts. Plating Pixels features hundreds of recipes with easily found ingredients, usually 10 ingredients or less. I love lightened-up and comfort food recipes, so you’ll find plenty of that.</p></div></a></div>
</section><section id="block-38" class="widget widget_block widget_text">
<p class="has-text-align-center"><a href="https://www.platingpixels.com/about/">MORE ABOUT PLATING PIXELS &gt;</a></p>
</section><section id="block-35" class="widget widget_block">
<ul class="wp-block-social-links aligncenter is-layout-flex wp-block-social-links-is-layout-flex"><li class="wp-social-link wp-social-link-pinterest  wp-block-social-link"><a rel=" noopener nofollow" target="_blank" href="https://www.pinterest.com/platingpixels/" class="wp-block-social-link-anchor"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M12.289,2C6.617,2,3.606,5.648,3.606,9.622c0,1.846,1.025,4.146,2.666,4.878c0.25,0.111,0.381,0.063,0.439-0.169 c0.044-0.175,0.267-1.029,0.365-1.428c0.032-0.128,0.017-0.237-0.091-0.362C6.445,11.911,6.01,10.75,6.01,9.668 c0-2.777,2.194-5.464,5.933-5.464c3.23,0,5.49,2.108,5.49,5.122c0,3.407-1.794,5.768-4.13,5.768c-1.291,0-2.257-1.021-1.948-2.277 c0.372-1.495,1.089-3.112,1.089-4.191c0-0.967-0.542-1.775-1.663-1.775c-1.319,0-2.379,1.309-2.379,3.059 c0,1.115,0.394,1.869,0.394,1.869s-1.302,5.279-1.54,6.261c-0.405,1.666,0.053,4.368,0.094,4.604 c0.021,0.126,0.167,0.169,0.25,0.063c0.129-0.165,1.699-2.419,2.142-4.051c0.158-0.59,0.817-2.995,0.817-2.995 c0.43,0.784,1.681,1.446,3.013,1.446c3.963,0,6.822-3.494,6.822-7.833C20.394,5.112,16.849,2,12.289,2"></path></svg><span class="wp-block-social-link-label screen-reader-text">Pinterest</span></a></li>

<li class="wp-social-link wp-social-link-instagram  wp-block-social-link"><a rel=" noopener nofollow" target="_blank" href="https://www.instagram.com/platingpixels/" class="wp-block-social-link-anchor"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z"></path></svg><span class="wp-block-social-link-label screen-reader-text">Instagram</span></a></li>

<li class="wp-social-link wp-social-link-facebook  wp-block-social-link"><a rel=" noopener nofollow" target="_blank" href="https://www.facebook.com/PlatingPixels/" class="wp-block-social-link-anchor"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M12 2C6.5 2 2 6.5 2 12c0 5 3.7 9.1 8.4 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.5h-1.3c-1.2 0-1.6.8-1.6 1.6V12h2.8l-.4 2.9h-2.3v7C18.3 21.1 22 17 22 12c0-5.5-4.5-10-10-10z"></path></svg><span class="wp-block-social-link-label screen-reader-text">Facebook</span></a></li>

<li class="wp-social-link wp-social-link-youtube  wp-block-social-link"><a rel=" noopener nofollow" target="_blank" href="https://www.youtube.com/@platingpixels" class="wp-block-social-link-anchor"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M21.8,8.001c0,0-0.195-1.378-0.795-1.985c-0.76-0.797-1.613-0.801-2.004-0.847c-2.799-0.202-6.997-0.202-6.997-0.202 h-0.009c0,0-4.198,0-6.997,0.202C4.608,5.216,3.756,5.22,2.995,6.016C2.395,6.623,2.2,8.001,2.2,8.001S2,9.62,2,11.238v1.517 c0,1.618,0.2,3.237,0.2,3.237s0.195,1.378,0.795,1.985c0.761,0.797,1.76,0.771,2.205,0.855c1.6,0.153,6.8,0.201,6.8,0.201 s4.203-0.006,7.001-0.209c0.391-0.047,1.243-0.051,2.004-0.847c0.6-0.607,0.795-1.985,0.795-1.985s0.2-1.618,0.2-3.237v-1.517 C22,9.62,21.8,8.001,21.8,8.001z M9.935,14.594l-0.001-5.62l5.404,2.82L9.935,14.594z"></path></svg><span class="wp-block-social-link-label screen-reader-text">YouTube</span></a></li>

<li class="wp-social-link wp-social-link-twitter  wp-block-social-link"><a rel=" noopener nofollow" target="_blank" href="https://twitter.com/platingpixels" class="wp-block-social-link-anchor"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z"></path></svg><span class="wp-block-social-link-label screen-reader-text">Twitter</span></a></li></ul>
</section><section id="block-32" class="widget widget_block"><style id='kadence-blocks-advancedheading-inline-css'></style>
<style></style>
<h2 class="kt-adv-heading_4b1a11-6b wp-block-kadence-advancedheading has-theme-palette-9-background-color has-background" data-kb-block="kb-adv-heading_4b1a11-6b">Popular Recipes</h2>
</section><section id="block-33" class="widget widget_block"><style></style><div class="wp-block-kadence-posts kb-posts kb-posts-id-_170bae-15 content-wrap grid-cols kb-posts-style-unboxed grid-sm-col-2 grid-lg-col-2 item-image-style-above"><article class="entry content-bg loop-entry post-16755 post type-post status-publish format-standard has-post-thumbnail hentry category-entrees category-gluten-free category-keto category-popular-recipe category-pork category-recipe category-soup mv-content-wrapper">
			<a class="post-thumbnail kadence-thumbnail-ratio-1-1" href="https://www.platingpixels.com/pressure-cooker-chile-verde-pork/">
			<div class="post-thumbnail-inner">
				<img width="1080" height="1620" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201080%201620'%3E%3C/svg%3E" class="attachment-full size-full wp-post-image" alt="Bowl of prepared Pressure Cooker Chile Verde Pork" decoding="async" data-lazy-srcset="https://www.platingpixels.com/wp-content/uploads/2019/07/Pressure-Cooker-Pork-Chile-Verde-recipe-8.webp 1080w,https://www.platingpixels.com/wp-content/uploads/2019/07/Pressure-Cooker-Pork-Chile-Verde-recipe-8-100x150.webp 100w,https://www.platingpixels.com/wp-content/uploads/2019/07/Pressure-Cooker-Pork-Chile-Verde-recipe-8-200x300.webp 200w,https://www.platingpixels.com/wp-content/uploads/2019/07/Pressure-Cooker-Pork-Chile-Verde-recipe-8-768x1152.webp 768w,https://www.platingpixels.com/wp-content/uploads/2019/07/Pressure-Cooker-Pork-Chile-Verde-recipe-8-733x1100.webp 733w" data-lazy-sizes="(max-width: 1080px) 100vw, 1080px" data-lazy-src="https://www.platingpixels.com/wp-content/uploads/2019/07/Pressure-Cooker-Pork-Chile-Verde-recipe-8.webp" /><noscript><img width="1080" height="1620" src="https://www.platingpixels.com/wp-content/uploads/2019/07/Pressure-Cooker-Pork-Chile-Verde-recipe-8.webp" class="attachment-full size-full wp-post-image" alt="Bowl of prepared Pressure Cooker Chile Verde Pork" decoding="async" srcset="https://www.platingpixels.com/wp-content/uploads/2019/07/Pressure-Cooker-Pork-Chile-Verde-recipe-8.webp 1080w,https://www.platingpixels.com/wp-content/uploads/2019/07/Pressure-Cooker-Pork-Chile-Verde-recipe-8-100x150.webp 100w,https://www.platingpixels.com/wp-content/uploads/2019/07/Pressure-Cooker-Pork-Chile-Verde-recipe-8-200x300.webp 200w,https://www.platingpixels.com/wp-content/uploads/2019/07/Pressure-Cooker-Pork-Chile-Verde-recipe-8-768x1152.webp 768w,https://www.platingpixels.com/wp-content/uploads/2019/07/Pressure-Cooker-Pork-Chile-Verde-recipe-8-733x1100.webp 733w" sizes="(max-width: 1080px) 100vw, 1080px" /></noscript>			</div>
		</a><!-- .post-thumbnail -->
			<div class="entry-content-wrap">
		<header class="entry-header">
	<h5 class="entry-title"><a href="https://www.platingpixels.com/pressure-cooker-chile-verde-pork/" rel="bookmark">Pressure Cooker Chile Verde Pork (Easy &#038; Authentic)</a></h5></header><!-- .entry-header -->
<footer class="entry-footer">
	</footer><!-- .entry-footer -->	</div>
</article>
<article class="entry content-bg loop-entry post-3319 post type-post status-publish format-standard has-post-thumbnail hentry category-chicken category-entrees category-gluten-free category-keto category-popular-recipe category-recipe tag-chicken-2 tag-olive-oil mv-content-wrapper">
			<a class="post-thumbnail kadence-thumbnail-ratio-1-1" href="https://www.platingpixels.com/how-to-bake-chicken-breast-that-are-moist-and-tender/">
			<div class="post-thumbnail-inner">
				<img width="720" height="1080" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20720%201080'%3E%3C/svg%3E" class="attachment-full size-full wp-post-image" alt="Sliced baked chicken breast on a plate" decoding="async" data-lazy-srcset="https://www.platingpixels.com/wp-content/uploads/2018/11/Baked-Chicken-Breast-recipe-3.webp 720w,https://www.platingpixels.com/wp-content/uploads/2018/11/Baked-Chicken-Breast-recipe-3-100x150.webp 100w,https://www.platingpixels.com/wp-content/uploads/2018/11/Baked-Chicken-Breast-recipe-3-200x300.webp 200w" data-lazy-sizes="(max-width: 720px) 100vw, 720px" data-lazy-src="https://www.platingpixels.com/wp-content/uploads/2018/11/Baked-Chicken-Breast-recipe-3.webp" /><noscript><img width="720" height="1080" src="https://www.platingpixels.com/wp-content/uploads/2018/11/Baked-Chicken-Breast-recipe-3.webp" class="attachment-full size-full wp-post-image" alt="Sliced baked chicken breast on a plate" decoding="async" srcset="https://www.platingpixels.com/wp-content/uploads/2018/11/Baked-Chicken-Breast-recipe-3.webp 720w,https://www.platingpixels.com/wp-content/uploads/2018/11/Baked-Chicken-Breast-recipe-3-100x150.webp 100w,https://www.platingpixels.com/wp-content/uploads/2018/11/Baked-Chicken-Breast-recipe-3-200x300.webp 200w" sizes="(max-width: 720px) 100vw, 720px" /></noscript>			</div>
		</a><!-- .post-thumbnail -->
			<div class="entry-content-wrap">
		<header class="entry-header">
	<h5 class="entry-title"><a href="https://www.platingpixels.com/how-to-bake-chicken-breast-that-are-moist-and-tender/" rel="bookmark">Baked Chicken Breast (A Complete How-To)</a></h5></header><!-- .entry-header -->
<footer class="entry-footer">
	</footer><!-- .entry-footer -->	</div>
</article>
<article class="entry content-bg loop-entry post-8037 post type-post status-publish format-standard has-post-thumbnail hentry category-gluten-free category-popular-recipe category-recipe category-soup category-thanksgiving-recipes category-turkey tag-bean tag-cannellini tag-cheese tag-chili tag-chili-powder tag-chilies tag-cilantro tag-cumin tag-garlic tag-olive-oli tag-onion tag-pepper-jack tag-turkey tag-vegetable-stock tag-zucchini mv-content-wrapper">
			<a class="post-thumbnail kadence-thumbnail-ratio-1-1" href="https://www.platingpixels.com/healthy-white-bean-turkey-chili/">
			<div class="post-thumbnail-inner">
				<img width="633" height="950" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20633%20950'%3E%3C/svg%3E" class="attachment-full size-full wp-post-image" alt="An overhead shot of a bowl of Healthy White Bean Turkey Chili" decoding="async" data-lazy-srcset="https://www.platingpixels.com/wp-content/uploads/2017/02/Healthy-White-Bean-Turkey-Chili-recipe-3.webp 633w,https://www.platingpixels.com/wp-content/uploads/2017/02/Healthy-White-Bean-Turkey-Chili-recipe-3-100x150.webp 100w,https://www.platingpixels.com/wp-content/uploads/2017/02/Healthy-White-Bean-Turkey-Chili-recipe-3-200x300.webp 200w,https://www.platingpixels.com/wp-content/uploads/2017/02/Healthy-White-Bean-Turkey-Chili-recipe-3-549x824.webp 549w,https://www.platingpixels.com/wp-content/uploads/2017/02/Healthy-White-Bean-Turkey-Chili-recipe-3-300x450.webp 300w" data-lazy-sizes="(max-width: 633px) 100vw, 633px" data-lazy-src="https://www.platingpixels.com/wp-content/uploads/2017/02/Healthy-White-Bean-Turkey-Chili-recipe-3.webp" /><noscript><img width="633" height="950" src="https://www.platingpixels.com/wp-content/uploads/2017/02/Healthy-White-Bean-Turkey-Chili-recipe-3.webp" class="attachment-full size-full wp-post-image" alt="An overhead shot of a bowl of Healthy White Bean Turkey Chili" decoding="async" srcset="https://www.platingpixels.com/wp-content/uploads/2017/02/Healthy-White-Bean-Turkey-Chili-recipe-3.webp 633w,https://www.platingpixels.com/wp-content/uploads/2017/02/Healthy-White-Bean-Turkey-Chili-recipe-3-100x150.webp 100w,https://www.platingpixels.com/wp-content/uploads/2017/02/Healthy-White-Bean-Turkey-Chili-recipe-3-200x300.webp 200w,https://www.platingpixels.com/wp-content/uploads/2017/02/Healthy-White-Bean-Turkey-Chili-recipe-3-549x824.webp 549w,https://www.platingpixels.com/wp-content/uploads/2017/02/Healthy-White-Bean-Turkey-Chili-recipe-3-300x450.webp 300w" sizes="(max-width: 633px) 100vw, 633px" /></noscript>			</div>
		</a><!-- .post-thumbnail -->
			<div class="entry-content-wrap">
		<header class="entry-header">
	<h5 class="entry-title"><a href="https://www.platingpixels.com/healthy-white-bean-turkey-chili/" rel="bookmark">Healthy White Bean Turkey Chili</a></h5></header><!-- .entry-header -->
<footer class="entry-footer">
	</footer><!-- .entry-footer -->	</div>
</article>
<article class="entry content-bg loop-entry post-4783 post type-post status-publish format-standard has-post-thumbnail hentry category-gluten-free category-popular-recipe category-pork category-recipe category-slow-cooker tag-apple-cider-vinegar tag-brown-sugar tag-cayenne-pepper tag-crushed-red-pepper tag-garlic-powder tag-ground-mustard tag-mustard tag-onion tag-paprika tag-pork tag-worcestershire-sauce mv-content-wrapper">
			<a class="post-thumbnail kadence-thumbnail-ratio-1-1" href="https://www.platingpixels.com/carolina-style-slow-cooker-pulled-pork/">
			<div class="post-thumbnail-inner">
				<img width="720" height="1080" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20720%201080'%3E%3C/svg%3E" class="attachment-full size-full wp-post-image" alt="Carolina Style Slow Cooker Pulled Pork on a plate with a hand using fork to pick some up" decoding="async" data-lazy-srcset="https://www.platingpixels.com/wp-content/uploads/2019/01/Carolina-Style-Slow-Cooker-Pulled-Pork-feature.webp 720w,https://www.platingpixels.com/wp-content/uploads/2019/01/Carolina-Style-Slow-Cooker-Pulled-Pork-feature-100x150.webp 100w,https://www.platingpixels.com/wp-content/uploads/2019/01/Carolina-Style-Slow-Cooker-Pulled-Pork-feature-200x300.webp 200w" data-lazy-sizes="(max-width: 720px) 100vw, 720px" data-lazy-src="https://www.platingpixels.com/wp-content/uploads/2019/01/Carolina-Style-Slow-Cooker-Pulled-Pork-feature.webp" /><noscript><img width="720" height="1080" src="https://www.platingpixels.com/wp-content/uploads/2019/01/Carolina-Style-Slow-Cooker-Pulled-Pork-feature.webp" class="attachment-full size-full wp-post-image" alt="Carolina Style Slow Cooker Pulled Pork on a plate with a hand using fork to pick some up" decoding="async" srcset="https://www.platingpixels.com/wp-content/uploads/2019/01/Carolina-Style-Slow-Cooker-Pulled-Pork-feature.webp 720w,https://www.platingpixels.com/wp-content/uploads/2019/01/Carolina-Style-Slow-Cooker-Pulled-Pork-feature-100x150.webp 100w,https://www.platingpixels.com/wp-content/uploads/2019/01/Carolina-Style-Slow-Cooker-Pulled-Pork-feature-200x300.webp 200w" sizes="(max-width: 720px) 100vw, 720px" /></noscript>			</div>
		</a><!-- .post-thumbnail -->
			<div class="entry-content-wrap">
		<header class="entry-header">
	<h5 class="entry-title"><a href="https://www.platingpixels.com/carolina-style-slow-cooker-pulled-pork/" rel="bookmark">Carolina Slow Cooker Pulled Pork</a></h5></header><!-- .entry-header -->
<footer class="entry-footer">
	</footer><!-- .entry-footer -->	</div>
</article>
<article class="entry content-bg loop-entry post-8164 post type-post status-publish format-standard has-post-thumbnail hentry category-chicken category-entrees category-grilled category-keto category-popular-recipe category-recipe tag-chicken-2 tag-olive-oil mv-content-wrapper">
			<a class="post-thumbnail kadence-thumbnail-ratio-1-1" href="https://www.platingpixels.com/how-to-grill-chicken-breast-that-are-moist-and-tender/">
			<div class="post-thumbnail-inner">
				<img width="633" height="950" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20633%20950'%3E%3C/svg%3E" class="attachment-full size-full wp-post-image" alt="Moist Grilled Chicken Breasts on plate next to gas grill" decoding="async" data-lazy-srcset="https://www.platingpixels.com/wp-content/uploads/2017/04/How-to-Grill-Chicken-Breast-that-are-Moist-and-Tender-recipe-6.webp 633w,https://www.platingpixels.com/wp-content/uploads/2017/04/How-to-Grill-Chicken-Breast-that-are-Moist-and-Tender-recipe-6-100x150.webp 100w,https://www.platingpixels.com/wp-content/uploads/2017/04/How-to-Grill-Chicken-Breast-that-are-Moist-and-Tender-recipe-6-200x300.webp 200w,https://www.platingpixels.com/wp-content/uploads/2017/04/How-to-Grill-Chicken-Breast-that-are-Moist-and-Tender-recipe-6-549x824.webp 549w,https://www.platingpixels.com/wp-content/uploads/2017/04/How-to-Grill-Chicken-Breast-that-are-Moist-and-Tender-recipe-6-300x450.webp 300w" data-lazy-sizes="(max-width: 633px) 100vw, 633px" data-lazy-src="https://www.platingpixels.com/wp-content/uploads/2017/04/How-to-Grill-Chicken-Breast-that-are-Moist-and-Tender-recipe-6.webp" /><noscript><img width="633" height="950" src="https://www.platingpixels.com/wp-content/uploads/2017/04/How-to-Grill-Chicken-Breast-that-are-Moist-and-Tender-recipe-6.webp" class="attachment-full size-full wp-post-image" alt="Moist Grilled Chicken Breasts on plate next to gas grill" decoding="async" srcset="https://www.platingpixels.com/wp-content/uploads/2017/04/How-to-Grill-Chicken-Breast-that-are-Moist-and-Tender-recipe-6.webp 633w,https://www.platingpixels.com/wp-content/uploads/2017/04/How-to-Grill-Chicken-Breast-that-are-Moist-and-Tender-recipe-6-100x150.webp 100w,https://www.platingpixels.com/wp-content/uploads/2017/04/How-to-Grill-Chicken-Breast-that-are-Moist-and-Tender-recipe-6-200x300.webp 200w,https://www.platingpixels.com/wp-content/uploads/2017/04/How-to-Grill-Chicken-Breast-that-are-Moist-and-Tender-recipe-6-549x824.webp 549w,https://www.platingpixels.com/wp-content/uploads/2017/04/How-to-Grill-Chicken-Breast-that-are-Moist-and-Tender-recipe-6-300x450.webp 300w" sizes="(max-width: 633px) 100vw, 633px" /></noscript>			</div>
		</a><!-- .post-thumbnail -->
			<div class="entry-content-wrap">
		<header class="entry-header">
	<h5 class="entry-title"><a href="https://www.platingpixels.com/how-to-grill-chicken-breast-that-are-moist-and-tender/" rel="bookmark">How to Grill Chicken Breast (Juicy and Tender)</a></h5></header><!-- .entry-header -->
<footer class="entry-footer">
	</footer><!-- .entry-footer -->	</div>
</article>
<article class="entry content-bg loop-entry post-7877 post type-post status-publish format-standard has-post-thumbnail hentry category-gluten-free category-keto category-popular-recipe category-recipe category-seafood category-soup tag-bell-pepper tag-celery tag-chicken-stock tag-cod tag-diced-tomato tag-fish tag-garlic tag-italian-seasoning tag-lemon tag-olive-oil tag-onion tag-tomato-paste-basil tag-white-wine mv-content-wrapper">
			<a class="post-thumbnail kadence-thumbnail-ratio-1-1" href="https://www.platingpixels.com/one-pot-cod-fish-soup/">
			<div class="post-thumbnail-inner">
				<img width="633" height="950" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20633%20950'%3E%3C/svg%3E" class="attachment-full size-full wp-post-image" alt="Italian One Pot Cod Fish Soup recipe - www.platingpixels.com" decoding="async" data-lazy-srcset="https://www.platingpixels.com/wp-content/uploads/2017/01/Italian-One-Pot-Cod-Fish-Soup-recipe-6.webp 633w,https://www.platingpixels.com/wp-content/uploads/2017/01/Italian-One-Pot-Cod-Fish-Soup-recipe-6-100x150.webp 100w,https://www.platingpixels.com/wp-content/uploads/2017/01/Italian-One-Pot-Cod-Fish-Soup-recipe-6-200x300.webp 200w,https://www.platingpixels.com/wp-content/uploads/2017/01/Italian-One-Pot-Cod-Fish-Soup-recipe-6-549x824.webp 549w,https://www.platingpixels.com/wp-content/uploads/2017/01/Italian-One-Pot-Cod-Fish-Soup-recipe-6-300x450.webp 300w" data-lazy-sizes="(max-width: 633px) 100vw, 633px" data-lazy-src="https://www.platingpixels.com/wp-content/uploads/2017/01/Italian-One-Pot-Cod-Fish-Soup-recipe-6.webp" /><noscript><img width="633" height="950" src="https://www.platingpixels.com/wp-content/uploads/2017/01/Italian-One-Pot-Cod-Fish-Soup-recipe-6.webp" class="attachment-full size-full wp-post-image" alt="Italian One Pot Cod Fish Soup recipe - www.platingpixels.com" decoding="async" srcset="https://www.platingpixels.com/wp-content/uploads/2017/01/Italian-One-Pot-Cod-Fish-Soup-recipe-6.webp 633w,https://www.platingpixels.com/wp-content/uploads/2017/01/Italian-One-Pot-Cod-Fish-Soup-recipe-6-100x150.webp 100w,https://www.platingpixels.com/wp-content/uploads/2017/01/Italian-One-Pot-Cod-Fish-Soup-recipe-6-200x300.webp 200w,https://www.platingpixels.com/wp-content/uploads/2017/01/Italian-One-Pot-Cod-Fish-Soup-recipe-6-549x824.webp 549w,https://www.platingpixels.com/wp-content/uploads/2017/01/Italian-One-Pot-Cod-Fish-Soup-recipe-6-300x450.webp 300w" sizes="(max-width: 633px) 100vw, 633px" /></noscript>			</div>
		</a><!-- .post-thumbnail -->
			<div class="entry-content-wrap">
		<header class="entry-header">
	<h5 class="entry-title"><a href="https://www.platingpixels.com/one-pot-cod-fish-soup/" rel="bookmark">Italian Fish Soup Recipe</a></h5></header><!-- .entry-header -->
<footer class="entry-footer">
	</footer><!-- .entry-footer -->	</div>
</article>
</div></section><section id="block-34" class="widget widget_block widget_search"><form role="search" method="get" action="https://www.platingpixels.com/" class="wp-block-search__button-outside wp-block-search__text-button wp-block-search"><label class="wp-block-search__label screen-reader-text" for="wp-block-search__input-2" >Search</label><div class="wp-block-search__inside-wrapper " ><input class="wp-block-search__input" id="wp-block-search__input-2" placeholder="Search all recipes..." value="" type="search" name="s" required /><button aria-label="Search" class="wp-block-search__button wp-element-button" type="submit" >Search</button></div></form></section><section id="block-36" class="widget widget_block">
<ul class="wp-block-social-links is-layout-flex wp-block-social-links-is-layout-flex"></ul>
</section>	</div>
</aside><!-- #secondary -->
	</div>
</div><!-- #primary -->
	</div><!-- #inner-wrap -->
	<footer id="colophon" class="site-footer" role="contentinfo">
	<div class="site-footer-wrap">
		<div class="site-top-footer-wrap site-footer-row-container site-footer-focus-item site-footer-row-layout-standard site-footer-row-tablet-layout-default site-footer-row-mobile-layout-default" data-section="kadence_customizer_footer_top">
	<div class="site-footer-row-container-inner">
				<div class="site-container">
			<div class="site-top-footer-inner-wrap site-footer-row site-footer-row-columns-1 site-footer-row-column-layout-row site-footer-row-tablet-column-layout-default site-footer-row-mobile-column-layout-row ft-ro-dir-column ft-ro-collapse-normal ft-ro-t-dir-default ft-ro-m-dir-default ft-ro-lstyle-plain">
									<div class="site-footer-top-section-1 site-footer-section footer-section-inner-items-1">
						<div class="footer-widget-area widget-area site-footer-focus-item footer-widget1 content-align-default content-tablet-align-default content-mobile-align-default content-valign-middle content-tablet-valign-default content-mobile-valign-default" data-section="sidebar-widgets-footer1">
	<div class="footer-widget-area-inner site-info-inner">
			</div>
</div><!-- .footer-widget1 -->
					</div>
								</div>
		</div>
	</div>
</div>
<div class="site-middle-footer-wrap site-footer-row-container site-footer-focus-item site-footer-row-layout-standard site-footer-row-tablet-layout-default site-footer-row-mobile-layout-default" data-section="kadence_customizer_footer_middle">
	<div class="site-footer-row-container-inner">
				<div class="site-container">
			<div class="site-middle-footer-inner-wrap site-footer-row site-footer-row-columns-4 site-footer-row-column-layout-equal site-footer-row-tablet-column-layout-default site-footer-row-mobile-column-layout-row ft-ro-dir-row ft-ro-collapse-normal ft-ro-t-dir-default ft-ro-m-dir-default ft-ro-lstyle-plain">
									<div class="site-footer-middle-section-1 site-footer-section footer-section-inner-items-1">
						<div class="footer-widget-area widget-area site-footer-focus-item footer-widget2 content-align-center content-tablet-align-default content-mobile-align-default content-valign-middle content-tablet-valign-default content-mobile-valign-default" data-section="sidebar-widgets-footer2">
	<div class="footer-widget-area-inner site-info-inner">
		<section id="block-3" class="widget widget_block widget_media_image">
<figure class="wp-block-image size-full"><img decoding="async" width="430" height="120" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20430%20120'%3E%3C/svg%3E" alt="" class="wp-image-12009" data-lazy-srcset="https://www.platingpixels.com/wp-content/uploads/2018/11/cropped-Plating-Pixels-logo-top-1.webp 430w,https://www.platingpixels.com/wp-content/uploads/2018/11/cropped-Plating-Pixels-logo-top-1-105x29.webp 105w,https://www.platingpixels.com/wp-content/uploads/2018/11/cropped-Plating-Pixels-logo-top-1-300x84.webp 300w" data-lazy-sizes="(max-width: 430px) 100vw, 430px" data-lazy-src="https://www.platingpixels.com/wp-content/uploads/2018/11/cropped-Plating-Pixels-logo-top-1.webp" /><noscript><img decoding="async" width="430" height="120" src="https://www.platingpixels.com/wp-content/uploads/2018/11/cropped-Plating-Pixels-logo-top-1.webp" alt="" class="wp-image-12009" srcset="https://www.platingpixels.com/wp-content/uploads/2018/11/cropped-Plating-Pixels-logo-top-1.webp 430w,https://www.platingpixels.com/wp-content/uploads/2018/11/cropped-Plating-Pixels-logo-top-1-105x29.webp 105w,https://www.platingpixels.com/wp-content/uploads/2018/11/cropped-Plating-Pixels-logo-top-1-300x84.webp 300w" sizes="(max-width: 430px) 100vw, 430px" /></noscript></figure>
</section><section id="block-21" class="widget widget_block">
<ul class="wp-block-social-links aligncenter has-icon-color has-icon-background-color is-style-default is-layout-flex wp-block-social-links-is-layout-flex"><li style="color: #8cc63f; background-color: #ffffff; " class="wp-social-link wp-social-link-pinterest has-theme-palette1-color has-theme-palette9-background-color wp-block-social-link"><a rel=" noopener nofollow" target="_blank" href="https://www.pinterest.com/platingpixels/plating-pixels-blog-recipes/" class="wp-block-social-link-anchor"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M12.289,2C6.617,2,3.606,5.648,3.606,9.622c0,1.846,1.025,4.146,2.666,4.878c0.25,0.111,0.381,0.063,0.439-0.169 c0.044-0.175,0.267-1.029,0.365-1.428c0.032-0.128,0.017-0.237-0.091-0.362C6.445,11.911,6.01,10.75,6.01,9.668 c0-2.777,2.194-5.464,5.933-5.464c3.23,0,5.49,2.108,5.49,5.122c0,3.407-1.794,5.768-4.13,5.768c-1.291,0-2.257-1.021-1.948-2.277 c0.372-1.495,1.089-3.112,1.089-4.191c0-0.967-0.542-1.775-1.663-1.775c-1.319,0-2.379,1.309-2.379,3.059 c0,1.115,0.394,1.869,0.394,1.869s-1.302,5.279-1.54,6.261c-0.405,1.666,0.053,4.368,0.094,4.604 c0.021,0.126,0.167,0.169,0.25,0.063c0.129-0.165,1.699-2.419,2.142-4.051c0.158-0.59,0.817-2.995,0.817-2.995 c0.43,0.784,1.681,1.446,3.013,1.446c3.963,0,6.822-3.494,6.822-7.833C20.394,5.112,16.849,2,12.289,2"></path></svg><span class="wp-block-social-link-label screen-reader-text">Pinterest</span></a></li>

<li style="color: #8cc63f; background-color: #ffffff; " class="wp-social-link wp-social-link-instagram has-theme-palette1-color has-theme-palette9-background-color wp-block-social-link"><a rel=" noopener nofollow" target="_blank" href="https://www.instagram.com/platingpixels/" class="wp-block-social-link-anchor"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z"></path></svg><span class="wp-block-social-link-label screen-reader-text">Instagram</span></a></li>

<li style="color: #8cc63f; background-color: #ffffff; " class="wp-social-link wp-social-link-facebook has-theme-palette1-color has-theme-palette9-background-color wp-block-social-link"><a rel=" noopener nofollow" target="_blank" href="https://www.facebook.com/PlatingPixels/" class="wp-block-social-link-anchor"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M12 2C6.5 2 2 6.5 2 12c0 5 3.7 9.1 8.4 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.5h-1.3c-1.2 0-1.6.8-1.6 1.6V12h2.8l-.4 2.9h-2.3v7C18.3 21.1 22 17 22 12c0-5.5-4.5-10-10-10z"></path></svg><span class="wp-block-social-link-label screen-reader-text">Facebook</span></a></li></ul>
</section>	</div>
</div><!-- .footer-widget2 -->
					</div>
										<div class="site-footer-middle-section-2 site-footer-section footer-section-inner-items-1">
						<div class="footer-widget-area widget-area site-footer-focus-item footer-widget3 content-align-default content-tablet-align-default content-mobile-align-default content-valign-middle content-tablet-valign-default content-mobile-valign-default" data-section="sidebar-widgets-footer3">
	<div class="footer-widget-area-inner site-info-inner">
		<section id="block-8" class="widget widget_block"><style></style>
<h4 class="kt-adv-heading_c3a7ec-1e wp-block-kadence-advancedheading" data-kb-block="kb-adv-heading_c3a7ec-1e">Popular Categories</h4>
</section><section id="block-25" class="widget widget_block widget_text">
<p><a href="https://www.platingpixels.com/category/entrees/">Entree Recipes</a><br><a href="https://www.platingpixels.com/category/breakfast/">Breakfast Recipes<br></a><a href="https://www.platingpixels.com/category/chicken/">Chicken Recipes</a><br><a href="https://www.platingpixels.com/category/desserts/">Dessert Recipes<br></a><a href="https://www.platingpixels.com/category/grilled/">Grilled Recipes<br></a><a href="https://www.platingpixels.com/category/keto/">Keto Recipes</a><br><a href="https://www.platingpixels.com/category/slow-cooker/">Slow Cooker Recipes</a></p>
</section>	</div>
</div><!-- .footer-widget3 -->
					</div>
										<div class="site-footer-middle-section-3 site-footer-section footer-section-inner-items-1">
						<div class="footer-widget-area widget-area site-footer-focus-item footer-widget4 content-align-default content-tablet-align-default content-mobile-align-default content-valign-middle content-tablet-valign-default content-mobile-valign-default" data-section="sidebar-widgets-footer4">
	<div class="footer-widget-area-inner site-info-inner">
		<section id="block-18" class="widget widget_block"><style></style>
<h4 class="kt-adv-heading_53bdb0-6a wp-block-kadence-advancedheading" data-kb-block="kb-adv-heading_53bdb0-6a">About</h4>
</section><section id="block-26" class="widget widget_block widget_text">
<p><a href="https://www.platingpixels.com/about/">About Plating Pixels<br></a><a href="https://www.platingpixels.com/contact/">Contact Me<br></a><a href="https://www.platingpixels.com/work-with-us/">Work With Me<br></a><a href="https://www.platingpixels.com/privacy-policy/">Privacy Policy</a></p>
</section>	</div>
</div><!-- .footer-widget4 -->
					</div>
										<div class="site-footer-middle-section-4 site-footer-section footer-section-inner-items-1">
						<div class="footer-widget-area widget-area site-footer-focus-item footer-widget5 content-align-default content-tablet-align-default content-mobile-align-default content-valign-middle content-tablet-valign-default content-mobile-valign-default" data-section="sidebar-widgets-footer5">
	<div class="footer-widget-area-inner site-info-inner">
		<section id="block-28" class="widget widget_block widget_search"><form role="search" method="get" action="https://www.platingpixels.com/" class="wp-block-search__button-outside wp-block-search__text-button wp-block-search"><label class="wp-block-search__label" for="wp-block-search__input-5" >What would you like to make?</label><div class="wp-block-search__inside-wrapper " ><input class="wp-block-search__input" id="wp-block-search__input-5" placeholder="Search recipes..." value="" type="search" name="s" required /><button aria-label="Search" class="wp-block-search__button wp-element-button" type="submit" >Search</button></div></form></section>	</div>
</div><!-- .footer-widget5 -->
					</div>
								</div>
		</div>
	</div>
</div>
<div class="site-bottom-footer-wrap site-footer-row-container site-footer-focus-item site-footer-row-layout-fullwidth site-footer-row-tablet-layout-default site-footer-row-mobile-layout-default" data-section="kadence_customizer_footer_bottom">
	<div class="site-footer-row-container-inner">
				<div class="site-container">
			<div class="site-bottom-footer-inner-wrap site-footer-row site-footer-row-columns-3 site-footer-row-column-layout-equal site-footer-row-tablet-column-layout-default site-footer-row-mobile-column-layout-row ft-ro-dir-row ft-ro-collapse-normal ft-ro-t-dir-default ft-ro-m-dir-default ft-ro-lstyle-plain">
									<div class="site-footer-bottom-section-1 site-footer-section footer-section-inner-items-1">
						<div class="footer-widget-area widget-area site-footer-focus-item footer-navigation-wrap content-align-standard content-tablet-align-center content-mobile-align-default content-valign-middle content-tablet-valign-default content-mobile-valign-default footer-navigation-layout-stretch-false" data-section="kadence_customizer_footer_navigation">
	<div class="footer-widget-area-inner footer-navigation-inner">
			<nav id="footer-navigation" class="footer-navigation" role="navigation" aria-label="Footer Navigation">
				<div class="footer-menu-container">
			<ul id="footer-menu" class="menu"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-11961"><a href="https://www.platingpixels.com/recipe-index">Recipe Index</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-1297"><a href="https://www.platingpixels.com/category/recipe/">Categories</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-12"><a href="https://www.platingpixels.com/about/">About</a></li>
</ul>		</div>
	</nav><!-- #footer-navigation -->
		</div>
</div><!-- data-section="footer_navigation" -->
					</div>
										<div class="site-footer-bottom-section-2 site-footer-section footer-section-inner-items-1">
						<div class="footer-widget-area widget-area site-footer-focus-item footer-social content-align-center content-tablet-align-default content-mobile-align-default content-valign-middle content-tablet-valign-default content-mobile-valign-default" data-section="kadence_customizer_footer_social">
	<div class="footer-widget-area-inner footer-social-inner">
		<div class="footer-social-wrap"><div class="footer-social-inner-wrap element-social-inner-wrap social-show-label-false social-style-outline"><a href="https://www.pinterest.com/platingpixels/plating-pixels-blog-recipes/" aria-label="Pinterest" target="_blank" rel="noopener noreferrer"  class="social-button footer-social-item social-link-pinterest"><span class="kadence-svg-iconset"><svg class="kadence-svg-icon kadence-pinterest-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="28" viewBox="0 0 24 28"><title>Pinterest</title><path d="M19.5 2c2.484 0 4.5 2.016 4.5 4.5v15c0 2.484-2.016 4.5-4.5 4.5h-11.328c0.516-0.734 1.359-2 1.687-3.281 0 0 0.141-0.531 0.828-3.266 0.422 0.797 1.625 1.484 2.906 1.484 3.813 0 6.406-3.484 6.406-8.141 0-3.516-2.984-6.797-7.516-6.797-5.641 0-8.484 4.047-8.484 7.422 0 2.031 0.781 3.844 2.438 4.531 0.266 0.109 0.516 0 0.594-0.297 0.047-0.203 0.172-0.734 0.234-0.953 0.078-0.297 0.047-0.406-0.172-0.656-0.469-0.578-0.781-1.297-0.781-2.344 0-3 2.25-5.672 5.844-5.672 3.187 0 4.937 1.937 4.937 4.547 0 3.422-1.516 6.312-3.766 6.312-1.234 0-2.172-1.031-1.875-2.297 0.359-1.5 1.047-3.125 1.047-4.203 0-0.969-0.516-1.781-1.594-1.781-1.266 0-2.281 1.313-2.281 3.063 0 0 0 1.125 0.375 1.891-1.297 5.5-1.531 6.469-1.531 6.469-0.344 1.437-0.203 3.109-0.109 3.969h-2.859c-2.484 0-4.5-2.016-4.5-4.5v-15c0-2.484 2.016-4.5 4.5-4.5h15z"></path>
				</svg></span></a><a href="https://www.instagram.com/platingpixels/" aria-label="Instagram" target="_blank" rel="noopener noreferrer"  class="social-button footer-social-item social-link-instagram"><span class="kadence-svg-iconset"><svg class="kadence-svg-icon kadence-instagram-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><title>Instagram</title><path d="M21.138 0.242c3.767 0.007 3.914 0.038 4.65 0.144 1.52 0.219 2.795 0.825 3.837 1.821 0.584 0.562 0.987 1.112 1.349 1.848 0.442 0.899 0.659 1.75 0.758 3.016 0.021 0.271 0.031 4.592 0.031 8.916s-0.009 8.652-0.030 8.924c-0.098 1.245-0.315 2.104-0.743 2.986-0.851 1.755-2.415 3.035-4.303 3.522-0.685 0.177-1.304 0.26-2.371 0.31-0.381 0.019-4.361 0.024-8.342 0.024s-7.959-0.012-8.349-0.029c-0.921-0.044-1.639-0.136-2.288-0.303-1.876-0.485-3.469-1.784-4.303-3.515-0.436-0.904-0.642-1.731-0.751-3.045-0.031-0.373-0.039-2.296-0.039-8.87 0-2.215-0.002-3.866 0-5.121 0.006-3.764 0.037-3.915 0.144-4.652 0.219-1.518 0.825-2.795 1.825-3.833 0.549-0.569 1.105-0.975 1.811-1.326 0.915-0.456 1.756-0.668 3.106-0.781 0.374-0.031 2.298-0.038 8.878-0.038h5.13zM15.999 4.364v0c-3.159 0-3.555 0.014-4.796 0.070-1.239 0.057-2.084 0.253-2.824 0.541-0.765 0.297-1.415 0.695-2.061 1.342s-1.045 1.296-1.343 2.061c-0.288 0.74-0.485 1.586-0.541 2.824-0.056 1.241-0.070 1.638-0.070 4.798s0.014 3.556 0.070 4.797c0.057 1.239 0.253 2.084 0.541 2.824 0.297 0.765 0.695 1.415 1.342 2.061s1.296 1.046 2.061 1.343c0.74 0.288 1.586 0.484 2.825 0.541 1.241 0.056 1.638 0.070 4.798 0.070s3.556-0.014 4.797-0.070c1.239-0.057 2.085-0.253 2.826-0.541 0.765-0.297 1.413-0.696 2.060-1.343s1.045-1.296 1.343-2.061c0.286-0.74 0.482-1.586 0.541-2.824 0.056-1.241 0.070-1.637 0.070-4.797s-0.015-3.557-0.070-4.798c-0.058-1.239-0.255-2.084-0.541-2.824-0.298-0.765-0.696-1.415-1.343-2.061s-1.295-1.045-2.061-1.342c-0.742-0.288-1.588-0.484-2.827-0.541-1.241-0.056-1.636-0.070-4.796-0.070zM14.957 6.461c0.31-0 0.655 0 1.044 0 3.107 0 3.475 0.011 4.702 0.067 1.135 0.052 1.75 0.241 2.16 0.401 0.543 0.211 0.93 0.463 1.337 0.87s0.659 0.795 0.871 1.338c0.159 0.41 0.349 1.025 0.401 2.16 0.056 1.227 0.068 1.595 0.068 4.701s-0.012 3.474-0.068 4.701c-0.052 1.135-0.241 1.75-0.401 2.16-0.211 0.543-0.463 0.93-0.871 1.337s-0.794 0.659-1.337 0.87c-0.41 0.16-1.026 0.349-2.16 0.401-1.227 0.056-1.595 0.068-4.702 0.068s-3.475-0.012-4.702-0.068c-1.135-0.052-1.75-0.242-2.161-0.401-0.543-0.211-0.931-0.463-1.338-0.87s-0.659-0.794-0.871-1.337c-0.159-0.41-0.349-1.025-0.401-2.16-0.056-1.227-0.067-1.595-0.067-4.703s0.011-3.474 0.067-4.701c0.052-1.135 0.241-1.75 0.401-2.16 0.211-0.543 0.463-0.931 0.871-1.338s0.795-0.659 1.338-0.871c0.41-0.16 1.026-0.349 2.161-0.401 1.073-0.048 1.489-0.063 3.658-0.065v0.003zM16.001 10.024c-3.3 0-5.976 2.676-5.976 5.976s2.676 5.975 5.976 5.975c3.3 0 5.975-2.674 5.975-5.975s-2.675-5.976-5.975-5.976zM16.001 12.121c2.142 0 3.879 1.736 3.879 3.879s-1.737 3.879-3.879 3.879c-2.142 0-3.879-1.737-3.879-3.879s1.736-3.879 3.879-3.879zM22.212 8.393c-0.771 0-1.396 0.625-1.396 1.396s0.625 1.396 1.396 1.396 1.396-0.625 1.396-1.396c0-0.771-0.625-1.396-1.396-1.396v0.001z"></path>
				</svg></span></a><a href="https://www.facebook.com/PlatingPixels/" aria-label="Facebook" target="_blank" rel="noopener noreferrer"  class="social-button footer-social-item social-link-facebook"><span class="kadence-svg-iconset"><svg class="kadence-svg-icon kadence-facebook-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><title>Facebook</title><path d="M31.997 15.999c0-8.836-7.163-15.999-15.999-15.999s-15.999 7.163-15.999 15.999c0 7.985 5.851 14.604 13.499 15.804v-11.18h-4.062v-4.625h4.062v-3.525c0-4.010 2.389-6.225 6.043-6.225 1.75 0 3.581 0.313 3.581 0.313v3.937h-2.017c-1.987 0-2.607 1.233-2.607 2.498v3.001h4.437l-0.709 4.625h-3.728v11.18c7.649-1.2 13.499-7.819 13.499-15.804z"></path>
				</svg></span></a><a href="https://www.youtube.com/channel/UCUO0dU4kM99ZWWDlSCmGLvA" aria-label="YouTube" target="_blank" rel="noopener noreferrer"  class="social-button footer-social-item social-link-youtube"><span class="kadence-svg-iconset"><svg class="kadence-svg-icon kadence-youtube-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 28 28"><title>YouTube</title><path d="M11.109 17.625l7.562-3.906-7.562-3.953v7.859zM14 4.156c5.891 0 9.797 0.281 9.797 0.281 0.547 0.063 1.75 0.063 2.812 1.188 0 0 0.859 0.844 1.109 2.781 0.297 2.266 0.281 4.531 0.281 4.531v2.125s0.016 2.266-0.281 4.531c-0.25 1.922-1.109 2.781-1.109 2.781-1.062 1.109-2.266 1.109-2.812 1.172 0 0-3.906 0.297-9.797 0.297v0c-7.281-0.063-9.516-0.281-9.516-0.281-0.625-0.109-2.031-0.078-3.094-1.188 0 0-0.859-0.859-1.109-2.781-0.297-2.266-0.281-4.531-0.281-4.531v-2.125s-0.016-2.266 0.281-4.531c0.25-1.937 1.109-2.781 1.109-2.781 1.062-1.125 2.266-1.125 2.812-1.188 0 0 3.906-0.281 9.797-0.281v0z"></path>
				</svg></span></a><a href="https://twitter.com/platingpixels" aria-label="Twitter" target="_blank" rel="noopener noreferrer"  class="social-button footer-social-item social-link-twitter"><span class="kadence-svg-iconset"><svg class="kadence-svg-icon kadence-twitter-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="26" height="28" viewBox="0 0 26 28"><title>Twitter</title><path d="M25.312 6.375c-0.688 1-1.547 1.891-2.531 2.609 0.016 0.219 0.016 0.438 0.016 0.656 0 6.672-5.078 14.359-14.359 14.359-2.859 0-5.516-0.828-7.75-2.266 0.406 0.047 0.797 0.063 1.219 0.063 2.359 0 4.531-0.797 6.266-2.156-2.219-0.047-4.078-1.5-4.719-3.5 0.313 0.047 0.625 0.078 0.953 0.078 0.453 0 0.906-0.063 1.328-0.172-2.312-0.469-4.047-2.5-4.047-4.953v-0.063c0.672 0.375 1.453 0.609 2.281 0.641-1.359-0.906-2.25-2.453-2.25-4.203 0-0.938 0.25-1.797 0.688-2.547 2.484 3.062 6.219 5.063 10.406 5.281-0.078-0.375-0.125-0.766-0.125-1.156 0-2.781 2.25-5.047 5.047-5.047 1.453 0 2.766 0.609 3.687 1.594 1.141-0.219 2.234-0.641 3.203-1.219-0.375 1.172-1.172 2.156-2.219 2.781 1.016-0.109 2-0.391 2.906-0.781z"></path>
				</svg></span></a></div></div>	</div>
</div><!-- data-section="footer_social" -->
					</div>
										<div class="site-footer-bottom-section-3 site-footer-section footer-section-inner-items-1">

<div class="footer-widget-area site-info site-footer-focus-item content-align-right content-tablet-align-center content-mobile-align-center content-valign-middle content-tablet-valign-default content-mobile-valign-default" data-section="kadence_customizer_footer_html">
	<div class="footer-widget-area-inner site-info-inner">
		<div class="footer-html inner-link-style-plain"><div class="footer-html-inner"><p>&copy; 2023 Plating Pixels™ All Rights Reserved</p>
</div></div>	</div>
</div><!-- .site-info -->
					</div>
								</div>
		</div>
	</div>
</div>
	</div>
</footer><!-- #colophon -->

</div><!-- #wrapper -->

			<script type="rocketlazyloadscript">document.documentElement.style.setProperty('--scrollbar-offset', window.innerWidth - document.documentElement.clientWidth + 'px' );</script>
			<script type="rocketlazyloadscript">window.wprm_recipes = {"recipe-19396":{"id":19396,"type":"food","name":"Chicken Fried Chicken"}}</script><a id="kt-scroll-up" tabindex="-1" aria-hidden="true" aria-label="Scroll to top" href="#wrapper" class="kadence-scroll-to-top scroll-up-wrap scroll-ignore scroll-up-side-right scroll-up-style-outline vs-lg-true vs-md-true vs-sm-false"><span class="kadence-svg-iconset"><svg aria-hidden="true" class="kadence-svg-icon kadence-chevron-up-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Scroll to top</title><path d="M18.707 14.293l-6-6c-0.391-0.391-1.024-0.391-1.414 0l-6 6c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5.293-5.293 5.293 5.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414z"></path>
				</svg></span></a><button id="kt-scroll-up-reader" href="#wrapper" aria-label="Scroll to top" class="kadence-scroll-to-top scroll-up-wrap scroll-ignore scroll-up-side-right scroll-up-style-outline vs-lg-true vs-md-true vs-sm-false"><span class="kadence-svg-iconset"><svg aria-hidden="true" class="kadence-svg-icon kadence-chevron-up-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Scroll to top</title><path d="M18.707 14.293l-6-6c-0.391-0.391-1.024-0.391-1.414 0l-6 6c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5.293-5.293 5.293 5.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414z"></path>
				</svg></span></button>	<div id="mobile-drawer" class="popup-drawer popup-drawer-layout-sidepanel popup-drawer-animation-fade popup-drawer-side-right" data-drawer-target-string="#mobile-drawer"
			>
		<div class="drawer-overlay" data-drawer-target-string="#mobile-drawer"></div>
		<div class="drawer-inner">
						<div class="drawer-header">
				<button class="menu-toggle-close drawer-toggle" aria-label="Close menu"  data-toggle-target="#mobile-drawer" data-toggle-body-class="showing-popup-drawer-from-right" aria-expanded="false" data-set-focus=".menu-toggle-open"
							>
					<span class="toggle-close-bar"></span>
					<span class="toggle-close-bar"></span>
				</button>
			</div>
			<div class="drawer-content mobile-drawer-content content-align-left content-valign-top">
								<div class="site-header-item site-header-focus-item site-header-item-mobile-navigation mobile-navigation-layout-stretch-false" data-section="kadence_customizer_mobile_navigation">
		<nav id="mobile-site-navigation" class="mobile-navigation drawer-navigation drawer-navigation-parent-toggle-false" role="navigation" aria-label="Primary Mobile Navigation">
				<div class="mobile-menu-container drawer-menu-container">
			<ul id="mobile-menu" class="menu has-collapse-sub-nav"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-11961"><a href="https://www.platingpixels.com/recipe-index">Recipe Index</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-has-children menu-item-1297"><div class="drawer-nav-drop-wrap"><a href="https://www.platingpixels.com/category/recipe/">Categories</a><button class="drawer-sub-toggle" data-toggle-duration="10" data-toggle-target="#mobile-menu .menu-item-1297 &gt; .sub-menu" aria-expanded="false"><span class="screen-reader-text">Expand child menu</span><span class="kadence-svg-iconset"><svg aria-hidden="true" class="kadence-svg-icon kadence-arrow-down-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Expand</title><path d="M5.293 9.707l6 6c0.391 0.391 1.024 0.391 1.414 0l6-6c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z"></path>
				</svg></span></button></div>
<ul class="sub-menu">
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-11274"><a href="https://www.platingpixels.com/category/appetizer/">Appetizer Recipes</a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-380"><a href="https://www.platingpixels.com/category/breakfast/">Breakfast Recipes</a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-has-children menu-item-445"><div class="drawer-nav-drop-wrap"><a href="https://www.platingpixels.com/category/entrees/">Entrees &#038; Mains</a><button class="drawer-sub-toggle" data-toggle-duration="10" data-toggle-target="#mobile-menu .menu-item-445 &gt; .sub-menu" aria-expanded="false"><span class="screen-reader-text">Expand child menu</span><span class="kadence-svg-iconset"><svg aria-hidden="true" class="kadence-svg-icon kadence-arrow-down-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Expand</title><path d="M5.293 9.707l6 6c0.391 0.391 1.024 0.391 1.414 0l6-6c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z"></path>
				</svg></span></button></div>
	<ul class="sub-menu">
		<li class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-12019"><a href="https://www.platingpixels.com/category/entrees/">All Entrees</a></li>
		<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-11963"><a href="https://www.platingpixels.com/category/beef/">Beef Recipes</a></li>
		<li class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-11962"><a href="https://www.platingpixels.com/category/chicken/">Chicken Recipes</a></li>
		<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-11965"><a href="https://www.platingpixels.com/category/pork/">Pork Recipes</a></li>
		<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-11964"><a href="https://www.platingpixels.com/category/seafood/">Seafood Recipes</a></li>
		<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12020"><a href="https://www.platingpixels.com/category/grilled/">Gas Grilled Recipes</a></li>
		<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-11966"><a href="https://www.platingpixels.com/category/slow-cooker/">Slow Cooker Recipes</a></li>
		<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-11967"><a href="https://www.platingpixels.com/category/soup/">Soups, Stews and Chili Recipes</a></li>
	</ul>
</li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-50"><a href="https://www.platingpixels.com/category/desserts/">Dessert Recipes</a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1874"><a href="https://www.platingpixels.com/category/gluten-free/">Gluten-Free Recipes</a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-15888"><a href="https://www.platingpixels.com/category/keto/">Keto Recipes</a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children menu-item-1301"><div class="drawer-nav-drop-wrap"><a href="https://www.platingpixels.com/category/vegetarian/">Vegetarian</a><button class="drawer-sub-toggle" data-toggle-duration="10" data-toggle-target="#mobile-menu .menu-item-1301 &gt; .sub-menu" aria-expanded="false"><span class="screen-reader-text">Expand child menu</span><span class="kadence-svg-iconset"><svg aria-hidden="true" class="kadence-svg-icon kadence-arrow-down-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Expand</title><path d="M5.293 9.707l6 6c0.391 0.391 1.024 0.391 1.414 0l6-6c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z"></path>
				</svg></span></button></div>
	<ul class="sub-menu">
		<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12021"><a href="https://www.platingpixels.com/category/vegan/">Vegan Recipes</a></li>
	</ul>
</li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-12875"><a href="https://www.platingpixels.com/category/recipe/">All Recipes</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-12"><div class="drawer-nav-drop-wrap"><a href="https://www.platingpixels.com/about/">About</a><button class="drawer-sub-toggle" data-toggle-duration="10" data-toggle-target="#mobile-menu .menu-item-12 &gt; .sub-menu" aria-expanded="false"><span class="screen-reader-text">Expand child menu</span><span class="kadence-svg-iconset"><svg aria-hidden="true" class="kadence-svg-icon kadence-arrow-down-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Expand</title><path d="M5.293 9.707l6 6c0.391 0.391 1.024 0.391 1.414 0l6-6c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z"></path>
				</svg></span></button></div>
<ul class="sub-menu">
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-12676"><a href="https://www.platingpixels.com/about/">About Plating Pixels</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-85"><a href="https://www.platingpixels.com/contact/">Contact</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4115"><a href="https://www.platingpixels.com/work-with-us/">Work With Me</a></li>
</ul>
</li>
</ul>		</div>
	</nav><!-- #site-navigation -->
	</div><!-- data-section="mobile_navigation" -->
							</div>
		</div>
	</div>
	<script id='wprm-public-js-extra'>
var wprm_public = {"endpoints":{"analytics":"https:\/\/www.platingpixels.com\/wp-json\/wp-recipe-maker\/v1\/analytics"},"settings":{"features_comment_ratings":true,"template_color_comment_rating":"#7ed321","instruction_media_toggle_default":"on","video_force_ratio":false,"analytics_enabled":true,"google_analytics_enabled":false,"print_new_tab":true},"post_id":"19388","home_url":"https:\/\/www.platingpixels.com\/","print_slug":"wprm_print","permalinks":"\/%postname%\/","ajax_url":"https:\/\/www.platingpixels.com\/wp-admin\/admin-ajax.php","nonce":"e7375813a0","api_nonce":"1ecb8668cf","translations":[]};
</script>
<script type="rocketlazyloadscript" data-rocket-src='https://www.platingpixels.com/wp-content/plugins/wp-recipe-maker/dist/public-modern.js?ver=8.10.3' id='wprm-public-js' defer></script>
<script type="rocketlazyloadscript" data-minify="1" data-rocket-src='https://www.platingpixels.com/wp-content/cache/min/1/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=1691768098' id='swv-js' defer></script>
<script id='contact-form-7-js-extra'>
var wpcf7 = {"api":{"root":"https:\/\/www.platingpixels.com\/wp-json\/","namespace":"contact-form-7\/v1"},"cached":"1"};
</script>
<script type="rocketlazyloadscript" data-minify="1" data-rocket-src='https://www.platingpixels.com/wp-content/cache/min/1/wp-content/plugins/contact-form-7/includes/js/index.js?ver=1691768098' id='contact-form-7-js' defer></script>
<script id='wprmp-public-js-extra'>
var wprmp_public = {"endpoints":{"private_notes":"https:\/\/www.platingpixels.com\/wp-json\/wp-recipe-maker\/v1\/private-notes"},"settings":{"recipe_template_mode":"modern","features_adjustable_servings":true,"adjustable_servings_round_to_decimals":"2","unit_conversion_temperature_conversion":false,"unit_conversion_system_1_temperature":"F","unit_conversion_system_2_temperature":"C","fractions_enabled":false,"fractions_use_mixed":true,"fractions_use_symbols":true,"fractions_max_denominator":"8","decimal_separator":"point","features_comment_ratings":true,"features_user_ratings":false,"user_ratings_thank_you_message":"Thank you for voting!","user_ratings_force_comment":"never","user_ratings_force_comment_scroll_to":"","servings_changer_display":"tooltip_slider","template_ingredient_list_style":"checkbox","template_instruction_list_style":"decimal","template_color_icon":"#343434"},"timer":{"sound_file":"https:\/\/www.platingpixels.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":134217728,"text":{"image_size":"The image file is too large"}}};
</script>
<script type="rocketlazyloadscript" data-minify="1" data-rocket-src='https://www.platingpixels.com/wp-content/cache/min/1/wp-content/plugins/wp-recipe-maker-premium/dist/public-pro.js?ver=1691768098' id='wprmp-public-js' defer></script>
<script id='social_warfare_script-js-extra'>
var socialWarfare = {"addons":["pro"],"post_id":"19388","variables":{"emphasizeIcons":"1","powered_by_toggle":false,"affiliate_link":"https:\/\/warfareplugins.com"},"floatBeforeContent":""};
</script>
<script type="rocketlazyloadscript" data-rocket-src='https://www.platingpixels.com/wp-content/plugins/social-warfare/assets/js/script.min.js?ver=4.4.2' id='social_warfare_script-js' defer></script>
<script type="rocketlazyloadscript" id="rocket-browser-checker-js-after">
"use strict";var _createClass=function(){function defineProperties(target,props){for(var i=0;i<props.length;i++){var descriptor=props[i];descriptor.enumerable=descriptor.enumerable||!1,descriptor.configurable=!0,"value"in descriptor&&(descriptor.writable=!0),Object.defineProperty(target,descriptor.key,descriptor)}}return function(Constructor,protoProps,staticProps){return protoProps&&defineProperties(Constructor.prototype,protoProps),staticProps&&defineProperties(Constructor,staticProps),Constructor}}();function _classCallCheck(instance,Constructor){if(!(instance instanceof Constructor))throw new TypeError("Cannot call a class as a function")}var RocketBrowserCompatibilityChecker=function(){function RocketBrowserCompatibilityChecker(options){_classCallCheck(this,RocketBrowserCompatibilityChecker),this.passiveSupported=!1,this._checkPassiveOption(this),this.options=!!this.passiveSupported&&options}return _createClass(RocketBrowserCompatibilityChecker,[{key:"_checkPassiveOption",value:function(self){try{var options={get passive(){return!(self.passiveSupported=!0)}};window.addEventListener("test",null,options),window.removeEventListener("test",null,options)}catch(err){self.passiveSupported=!1}}},{key:"initRequestIdleCallback",value:function(){!1 in window&&(window.requestIdleCallback=function(cb){var start=Date.now();return setTimeout(function(){cb({didTimeout:!1,timeRemaining:function(){return Math.max(0,50-(Date.now()-start))}})},1)}),!1 in window&&(window.cancelIdleCallback=function(id){return clearTimeout(id)})}},{key:"isDataSaverModeOn",value:function(){return"connection"in navigator&&!0===navigator.connection.saveData}},{key:"supportsLinkPrefetch",value:function(){var elem=document.createElement("link");return elem.relList&&elem.relList.supports&&elem.relList.supports("prefetch")&&window.IntersectionObserver&&"isIntersecting"in IntersectionObserverEntry.prototype}},{key:"isSlowConnection",value:function(){return"connection"in navigator&&"effectiveType"in navigator.connection&&("2g"===navigator.connection.effectiveType||"slow-2g"===navigator.connection.effectiveType)}}]),RocketBrowserCompatibilityChecker}();
</script>
<script id='rocket-preload-links-js-extra'>
var RocketPreloadLinksConfig = {"excludeUris":"\/(?:.+\/)?feed(?:\/(?:.+\/?)?)?$|\/(?:.+\/)?embed\/|\/(index.php\/)?(.*)wp-json(\/.*|$)|\/refer\/|\/go\/|\/recommend\/|\/recommends\/","usesTrailingSlash":"1","imageExt":"jpg|jpeg|gif|png|tiff|bmp|webp|avif|pdf|doc|docx|xls|xlsx|php","fileExt":"jpg|jpeg|gif|png|tiff|bmp|webp|avif|pdf|doc|docx|xls|xlsx|php|html|htm","siteUrl":"https:\/\/www.platingpixels.com","onHoverDelay":"100","rateThrottle":"3"};
</script>
<script type="rocketlazyloadscript" id="rocket-preload-links-js-after">
(function() {
"use strict";var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e=function(){function i(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(e,t,n){return t&&i(e.prototype,t),n&&i(e,n),e}}();function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var t=function(){function n(e,t){i(this,n),this.browser=e,this.config=t,this.options=this.browser.options,this.prefetched=new Set,this.eventTime=null,this.threshold=1111,this.numOnHover=0}return e(n,[{key:"init",value:function(){!this.browser.supportsLinkPrefetch()||this.browser.isDataSaverModeOn()||this.browser.isSlowConnection()||(this.regex={excludeUris:RegExp(this.config.excludeUris,"i"),images:RegExp(".("+this.config.imageExt+")$","i"),fileExt:RegExp(".("+this.config.fileExt+")$","i")},this._initListeners(this))}},{key:"_initListeners",value:function(e){-1<this.config.onHoverDelay&&document.addEventListener("mouseover",e.listener.bind(e),e.listenerOptions),document.addEventListener("mousedown",e.listener.bind(e),e.listenerOptions),document.addEventListener("touchstart",e.listener.bind(e),e.listenerOptions)}},{key:"listener",value:function(e){var t=e.target.closest("a"),n=this._prepareUrl(t);if(null!==n)switch(e.type){case"mousedown":case"touchstart":this._addPrefetchLink(n);break;case"mouseover":this._earlyPrefetch(t,n,"mouseout")}}},{key:"_earlyPrefetch",value:function(t,e,n){var i=this,r=setTimeout(function(){if(r=null,0===i.numOnHover)setTimeout(function(){return i.numOnHover=0},1e3);else if(i.numOnHover>i.config.rateThrottle)return;i.numOnHover++,i._addPrefetchLink(e)},this.config.onHoverDelay);t.addEventListener(n,function e(){t.removeEventListener(n,e,{passive:!0}),null!==r&&(clearTimeout(r),r=null)},{passive:!0})}},{key:"_addPrefetchLink",value:function(i){return this.prefetched.add(i.href),new Promise(function(e,t){var n=document.createElement("link");n.rel="prefetch",n.href=i.href,n.onload=e,n.onerror=t,document.head.appendChild(n)}).catch(function(){})}},{key:"_prepareUrl",value:function(e){if(null===e||"object"!==(void 0===e?"undefined":r(e))||!1 in e||-1===["http:","https:"].indexOf(e.protocol))return null;var t=e.href.substring(0,this.config.siteUrl.length),n=this._getPathname(e.href,t),i={original:e.href,protocol:e.protocol,origin:t,pathname:n,href:t+n};return this._isLinkOk(i)?i:null}},{key:"_getPathname",value:function(e,t){var n=t?e.substring(this.config.siteUrl.length):e;return n.startsWith("/")||(n="/"+n),this._shouldAddTrailingSlash(n)?n+"/":n}},{key:"_shouldAddTrailingSlash",value:function(e){return this.config.usesTrailingSlash&&!e.endsWith("/")&&!this.regex.fileExt.test(e)}},{key:"_isLinkOk",value:function(e){return null!==e&&"object"===(void 0===e?"undefined":r(e))&&(!this.prefetched.has(e.href)&&e.origin===this.config.siteUrl&&-1===e.href.indexOf("?")&&-1===e.href.indexOf("#")&&!this.regex.excludeUris.test(e.href)&&!this.regex.images.test(e.href))}}],[{key:"run",value:function(){"undefined"!=typeof RocketPreloadLinksConfig&&new n(new RocketBrowserCompatibilityChecker({capture:!0,passive:!0}),RocketPreloadLinksConfig).init()}}]),n}();t.run();
}());
</script>
<script type="rocketlazyloadscript" data-rocket-src='https://www.platingpixels.com/wp-includes/js/comment-reply.min.js?ver=6.3.1' id='comment-reply-js' defer></script>
<script id='kadence-navigation-js-extra'>
var kadenceConfig = {"screenReader":{"expand":"Expand child menu","expandOf":"Expand child menu of","collapse":"Collapse child menu","collapseOf":"Collapse child menu of"},"breakPoints":{"desktop":"1024","tablet":768},"scrollOffset":"0"};
</script>
<script type="rocketlazyloadscript" data-rocket-src='https://www.platingpixels.com/wp-content/themes/kadence/assets/js/navigation.min.js?ver=1.1.38' id='kadence-navigation-js' async></script>
<script type="rocketlazyloadscript" data-rocket-src='https://www.google.com/recaptcha/api.js?render=6Lcx38IZAAAAAAAnpYvl1I0Tn0YwrTGd5gtHQjVs&#038;ver=3.0' id='google-recaptcha-js'></script>
<script type="rocketlazyloadscript" data-rocket-src='https://www.platingpixels.com/wp-includes/js/dist/vendor/wp-polyfill-inert.min.js?ver=3.1.2' id='wp-polyfill-inert-js' defer></script>
<script type="rocketlazyloadscript" data-rocket-src='https://www.platingpixels.com/wp-includes/js/dist/vendor/regenerator-runtime.min.js?ver=0.13.11' id='regenerator-runtime-js' defer></script>
<script type="rocketlazyloadscript" data-rocket-src='https://www.platingpixels.com/wp-includes/js/dist/vendor/wp-polyfill.min.js?ver=3.15.0' id='wp-polyfill-js'></script>
<script id='wpcf7-recaptcha-js-extra'>
var wpcf7_recaptcha = {"sitekey":"6Lcx38IZAAAAAAAnpYvl1I0Tn0YwrTGd5gtHQjVs","actions":{"homepage":"homepage","contactform":"contactform"}};
</script>
<script type="rocketlazyloadscript" data-minify="1" data-rocket-src='https://www.platingpixels.com/wp-content/cache/min/1/wp-content/plugins/contact-form-7/modules/recaptcha/index.js?ver=1691768098' id='wpcf7-recaptcha-js' defer></script>
<script type="rocketlazyloadscript" data-rocket-src='https://www.platingpixels.com/wp-content/themes/kadence/assets/js/splide.min.js?ver=1.1.38' id='kad-splide-js' async></script>
<script id='kadence-slide-init-js-extra'>
var kadenceSlideConfig = {"of":"of","to":"to","slide":"Slide","next":"Next","prev":"Previous"};
</script>
<script type="rocketlazyloadscript" data-rocket-src='https://www.platingpixels.com/wp-content/themes/kadence/assets/js/splide-init.min.js?ver=1.1.38' id='kadence-slide-init-js' async></script>
<script type="rocketlazyloadscript" data-minify="1" defer data-rocket-src='https://www.platingpixels.com/wp-content/cache/min/1/wp-content/plugins/akismet/_inc/akismet-frontend.js?ver=1691768100' id='akismet-frontend-js'></script>
<div class="swp_social_panelSide swp_floating_panel swp_social_panel swp_boxed swp_default_full_color swp_other_full_color swp_individual_full_color slide swp_float_left swp_side_center scale-100 float-position-center-left" data-min-width="1100" data-float-color="#ffffff" data-float="left" data-float-mobile="bottom" data-transition="slide" data-post-id="19388" ><div class="nc_tweetContainer swp_share_button swp_pinterest" data-network="pinterest"><a rel="nofollow noreferrer noopener" class="nc_tweet swp_share_link" data-count="0" data-link="https://pinterest.com/pin/create/button/?url=https://www.platingpixels.com/chicken-fried-chicken/&media=https%3A%2F%2Fwww.platingpixels.com%2Fwp-content%2Fuploads%2F2022%2F09%2FChicken-Fried-Chicken-recipe-2.jpg&description=Chicken+Fried+Chicken+via+%40platingpixels"  ><span class="swp_count swp_hide"><span class="iconFiller"><span class="spaceManWilly"><i class="sw swp_pinterest_icon"></i><span class="swp_share">Pin</span></span></span></span></a></div><div class="nc_tweetContainer swp_share_button swp_facebook" data-network="facebook"><a class="nc_tweet swp_share_link" rel="nofollow noreferrer noopener" target="_blank" href="https://www.facebook.com/share.php?u=https%3A%2F%2Fwww.platingpixels.com%2Fchicken-fried-chicken%2F%3Futm_source%3Dfacebook%26utm_medium%3Dsocial%26utm_campaign%3DSocialWarfare" data-link="https://www.facebook.com/share.php?u=https%3A%2F%2Fwww.platingpixels.com%2Fchicken-fried-chicken%2F%3Futm_source%3Dfacebook%26utm_medium%3Dsocial%26utm_campaign%3DSocialWarfare"><span class="swp_count swp_hide"><span class="iconFiller"><span class="spaceManWilly"><i class="sw swp_facebook_icon"></i><span class="swp_share">Share</span></span></span></span></a></div><div class="nc_tweetContainer swp_share_button swp_flipboard" data-network="flipboard"><a class="nc_tweet swp_share_link" rel="nofollow noreferrer noopener" target="_blank" href="https://share.flipboard.com/bookmarklet/popout?v=2&title=Chicken+Fried+Chicken&url=https%3A%2F%2Fwww.platingpixels.com%2Fchicken-fried-chicken%2F%3Futm_source%3Dflipboard%26utm_medium%3Dsocial%26utm_campaign%3DSocialWarfare" data-link="https://share.flipboard.com/bookmarklet/popout?v=2&title=Chicken+Fried+Chicken&url=https%3A%2F%2Fwww.platingpixels.com%2Fchicken-fried-chicken%2F%3Futm_source%3Dflipboard%26utm_medium%3Dsocial%26utm_campaign%3DSocialWarfare"><span class="swp_count swp_hide"><span class="iconFiller"><span class="spaceManWilly"><i class="sw swp_flipboard_icon"></i><span class="swp_share">Flip</span></span></span></span></a></div><div class="nc_tweetContainer swp_share_button swp_twitter" data-network="twitter"><a class="nc_tweet swp_share_link" rel="nofollow noreferrer noopener" target="_blank" href="https://twitter.com/intent/tweet?text=Chicken+Fried+Chicken&url=https%3A%2F%2Fwww.platingpixels.com%2Fchicken-fried-chicken%2F%3Futm_source%3Dtwitter%26utm_medium%3Dsocial%26utm_campaign%3DSocialWarfare&via=platingpixels" data-link="https://twitter.com/intent/tweet?text=Chicken+Fried+Chicken&url=https%3A%2F%2Fwww.platingpixels.com%2Fchicken-fried-chicken%2F%3Futm_source%3Dtwitter%26utm_medium%3Dsocial%26utm_campaign%3DSocialWarfare&via=platingpixels"><span class="swp_count swp_hide"><span class="iconFiller"><span class="spaceManWilly"><i class="sw swp_twitter_icon"></i><span class="swp_share">Tweet</span></span></span></span></a></div></div>	<div id="search-drawer" class="popup-drawer popup-drawer-layout-fullwidth" data-drawer-target-string="#search-drawer"
			>
		<div class="drawer-overlay" data-drawer-target-string="#search-drawer"></div>
		<div class="drawer-inner">
			<div class="drawer-header">
				<button class="search-toggle-close drawer-toggle" aria-label="Close search"  data-toggle-target="#search-drawer" data-toggle-body-class="showing-popup-drawer-from-full" aria-expanded="false" data-set-focus=".search-toggle-open"
							>
					<span class="kadence-svg-iconset"><svg class="kadence-svg-icon kadence-close-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Toggle Menu Close</title><path d="M5.293 6.707l5.293 5.293-5.293 5.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5.293-5.293 5.293 5.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-5.293-5.293 5.293-5.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z"></path>
				</svg></span>				</button>
			</div>
			<div class="drawer-content">
				<form role="search" method="get" class="search-form" action="https://www.platingpixels.com/">
				<label>
					<span class="screen-reader-text">Search for:</span>
					<input type="search" class="search-field" placeholder="Search &hellip;" value="" name="s" />
				</label>
				<input type="submit" class="search-submit" value="Search" />
			<div class="kadence-search-icon-wrap"><span class="kadence-svg-iconset"><svg aria-hidden="true" class="kadence-svg-icon kadence-search-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="26" height="28" viewBox="0 0 26 28"><title>Search</title><path d="M18 13c0-3.859-3.141-7-7-7s-7 3.141-7 7 3.141 7 7 7 7-3.141 7-7zM26 26c0 1.094-0.906 2-2 2-0.531 0-1.047-0.219-1.406-0.594l-5.359-5.344c-1.828 1.266-4.016 1.937-6.234 1.937-6.078 0-11-4.922-11-11s4.922-11 11-11 11 4.922 11 11c0 2.219-0.672 4.406-1.937 6.234l5.359 5.359c0.359 0.359 0.578 0.875 0.578 1.406z"></path>
				</svg></span></div></form>			</div>
		</div>
	</div>
	<script type="rocketlazyloadscript" data-rocket-type="text/javascript"> var swp_nonce = "9bddc99894";function parentIsEvil() { var html = null; try { var doc = top.location.pathname; } catch(err){ }; if(typeof doc === "undefined") { return true } else { return false }; }; if (parentIsEvil()) { top.location = self.location.href; };var url = "https://www.platingpixels.com/chicken-fried-chicken/";if(url.indexOf("stfi.re") != -1) { var canonical = ""; var links = document.getElementsByTagName("link"); for (var i = 0; i  0; if (swpButtonsExist) { swp_admin_ajax = "https://www.platingpixels.com/wp-admin/admin-ajax.php"; swp_post_id=19388; swp_post_url= "https://www.platingpixels.com/chicken-fried-chicken/"; swp_post_recovery_url = "http://www.platingpixels.com/chicken-fried-chicken/"; socialWarfare.fetchFacebookShares(); } }); </script><script>window.lazyLoadOptions=[{elements_selector:"img[data-lazy-src],.rocket-lazyload,iframe[data-lazy-src]",data_src:"lazy-src",data_srcset:"lazy-srcset",data_sizes:"lazy-sizes",class_loading:"lazyloading",class_loaded:"lazyloaded",threshold:300,callback_loaded:function(element){if(element.tagName==="IFRAME"&&element.dataset.rocketLazyload=="fitvidscompatible"){if(element.classList.contains("lazyloaded")){if(typeof window.jQuery!="undefined"){if(jQuery.fn.fitVids){jQuery(element).parent().fitVids()}}}}}},{elements_selector:".rocket-lazyload",data_src:"lazy-src",data_srcset:"lazy-srcset",data_sizes:"lazy-sizes",class_loading:"lazyloading",class_loaded:"lazyloaded",threshold:300,}];window.addEventListener('LazyLoad::Initialized',function(e){var lazyLoadInstance=e.detail.instance;if(window.MutationObserver){var observer=new MutationObserver(function(mutations){var image_count=0;var iframe_count=0;var rocketlazy_count=0;mutations.forEach(function(mutation){for(var i=0;i<mutation.addedNodes.length;i++){if(typeof mutation.addedNodes[i].getElementsByTagName!=='function'){continue}
if(typeof mutation.addedNodes[i].getElementsByClassName!=='function'){continue}
images=mutation.addedNodes[i].getElementsByTagName('img');is_image=mutation.addedNodes[i].tagName=="IMG";iframes=mutation.addedNodes[i].getElementsByTagName('iframe');is_iframe=mutation.addedNodes[i].tagName=="IFRAME";rocket_lazy=mutation.addedNodes[i].getElementsByClassName('rocket-lazyload');image_count+=images.length;iframe_count+=iframes.length;rocketlazy_count+=rocket_lazy.length;if(is_image){image_count+=1}
if(is_iframe){iframe_count+=1}}});if(image_count>0||iframe_count>0||rocketlazy_count>0){lazyLoadInstance.update()}});var b=document.getElementsByTagName("body")[0];var config={childList:!0,subtree:!0};observer.observe(b,config)}},!1)</script><script data-no-minify="1" async src="https://www.platingpixels.com/wp-content/plugins/wp-rocket/assets/js/lazyload/17.8.3/lazyload.min.js"></script></body>
</html>

<!-- This website is like a Rocket, isn't it? Performance optimized by WP Rocket. Learn more: https://wp-rocket.me - Debug: cached@1697047457 -->