1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317
|
<!DOCTYPE html>
<html lang="en-US">
<head><meta charset="UTF-8"><script>if(navigator.userAgent.match(/MSIE|Internet Explorer/i)||navigator.userAgent.match(/Trident\/7\..*?rv:11/i)){var href=document.location.href;if(!href.match(/[?&]nowprocket/)){if(href.indexOf("?")==-1){if(href.indexOf("#")==-1){document.location.href=href+"?nowprocket=1"}else{document.location.href=href.replace("#","?nowprocket=1#")}}else{if(href.indexOf("#")==-1){document.location.href=href+"&nowprocket=1"}else{document.location.href=href.replace("#","&nowprocket=1#")}}}}</script><script>class RocketLazyLoadScripts{constructor(){this.v="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="initial-scale=1.0,width=device-width,shrink-to-fit=no" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link rel="profile" href="https://gmpg.org/xfn/11" />
<meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
<!-- Jetpack Site Verification Tags -->
<meta name="p:domain_verify" content="3c3dea6c76bc6c6c645e2d4d0d088748" />
<!-- This site is optimized with the Yoast SEO plugin v21.2 - https://yoast.com/wordpress/plugins/seo/ -->
<title>Air Fryer Parmesan Tomatoes - Fork To Spoon</title><link rel="preload" href="https://forktospoon.com/wp-content/themes/forktospoon2023/images/logo.svg" as="image" /><link rel="preload" href="https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-1024x1024.png" as="image" imagesrcset="https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-1024x1024.png 1024w, https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-300x300.png 300w, https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-150x150.png 150w, https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-768x768.png 768w, https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-400x400.png 400w, https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-500x500.png 500w, https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-600x600.png 600w, https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-96x96.png 96w, https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes.png 1200w" imagesizes="(max-width: 800px) calc(100vw - 40px), 760px" /><link rel="preload" href="https://forktospoon.com/wp-content/uploads/2021/07/Ingredients-Needed-For-Air-Fryer-Parmesan-Tomatoes.jpg" as="image" imagesrcset="https://forktospoon.com/wp-content/uploads/2021/07/Ingredients-Needed-For-Air-Fryer-Parmesan-Tomatoes.jpg 940w, https://forktospoon.com/wp-content/uploads/2021/07/Ingredients-Needed-For-Air-Fryer-Parmesan-Tomatoes-300x251.jpg 300w, https://forktospoon.com/wp-content/uploads/2021/07/Ingredients-Needed-For-Air-Fryer-Parmesan-Tomatoes-768x644.jpg 768w, https://forktospoon.com/wp-content/uploads/2021/07/Ingredients-Needed-For-Air-Fryer-Parmesan-Tomatoes-150x126.jpg 150w" imagesizes="(max-width: 800px) calc(100vw - 40px), 760px" /><link rel="preload" as="font" href="https://fonts.gstatic.com/s/robotomono/v23/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSh0mQ.woff2" crossorigin><link rel="preload" as="font" href="https://forktospoon.com/wp-content/themes/forktospoon2023/fonts/Satoshi-Regular.woff2" crossorigin><link rel="preload" as="font" href="https://forktospoon.com/wp-content/themes/forktospoon2023/fonts/Satoshi-Bold.woff2" crossorigin><link rel="preload" as="font" href="https://forktospoon.com/wp-content/themes/forktospoon2023/fonts/Satoshi-BoldItalic.woff2" crossorigin><style id="wpr-usedcss">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}.screen-reader-text{clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;position:absolute!important;width:1px;word-wrap:normal!important}.center{text-align:center}.left{text-align:left}.right{text-align:right}.wp-block-image{margin-bottom:1.2em}.pt-cv-wrapper aside,.pt-cv-wrapper details,.pt-cv-wrapper footer,.pt-cv-wrapper header,.pt-cv-wrapper main,.pt-cv-wrapper nav,.pt-cv-wrapper summary{display:block}.pt-cv-wrapper canvas,.pt-cv-wrapper progress,.pt-cv-wrapper video{display:inline-block;vertical-align:baseline}.pt-cv-wrapper [hidden],.pt-cv-wrapper template{display:none}.pt-cv-wrapper a{background-color:transparent}.pt-cv-wrapper a:active,.pt-cv-wrapper a:hover{outline:0}.pt-cv-wrapper abbr[title]{border-bottom:1px dotted}.pt-cv-wrapper strong{font-weight:700}.pt-cv-wrapper h1{margin:.67em 0}.pt-cv-wrapper small{font-size:80%}.pt-cv-wrapper img{border:0}.pt-cv-wrapper svg:not(:root){overflow:hidden}.pt-cv-wrapper code{font-family:monospace,monospace;font-size:1em}.pt-cv-wrapper button,.pt-cv-wrapper input,.pt-cv-wrapper optgroup,.pt-cv-wrapper select,.pt-cv-wrapper textarea{color:inherit;font:inherit;margin:0}.pt-cv-wrapper button{overflow:visible}.pt-cv-wrapper button,.pt-cv-wrapper select{text-transform:none}.pt-cv-wrapper button,.pt-cv-wrapper html input[type=button],.pt-cv-wrapper input[type=reset],.pt-cv-wrapper input[type=submit]{-webkit-appearance:button;cursor:pointer}.pt-cv-wrapper button[disabled],.pt-cv-wrapper html input[disabled]{cursor:default}.pt-cv-wrapper button::-moz-focus-inner,.pt-cv-wrapper input::-moz-focus-inner{border:0;padding:0}.pt-cv-wrapper input{line-height:normal}.pt-cv-wrapper input[type=checkbox],.pt-cv-wrapper input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}.pt-cv-wrapper input[type=number]::-webkit-inner-spin-button,.pt-cv-wrapper input[type=number]::-webkit-outer-spin-button{height:auto}.pt-cv-wrapper input[type=search]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.pt-cv-wrapper input[type=search]::-webkit-search-cancel-button,.pt-cv-wrapper input[type=search]::-webkit-search-decoration{-webkit-appearance:none}.pt-cv-wrapper fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}.pt-cv-wrapper legend{border:0;padding:0}.pt-cv-wrapper textarea{overflow:auto}.pt-cv-wrapper optgroup{font-weight:700}.pt-cv-wrapper table{border-collapse:collapse;border-spacing:0}.pt-cv-wrapper td,.pt-cv-wrapper th{padding:0}@media print{.pt-cv-wrapper *,.pt-cv-wrapper :after,.pt-cv-wrapper :before{background:0 0!important;color:#000!important;-webkit-box-shadow:none!important;box-shadow:none!important;text-shadow:none!important}.pt-cv-wrapper a,.pt-cv-wrapper a:visited{text-decoration:underline}.pt-cv-wrapper a[href]:after{content:" (" attr(href) ")"}.pt-cv-wrapper abbr[title]:after{content:" (" attr(title) ")"}.pt-cv-wrapper a[href^="#"]:after,.pt-cv-wrapper a[href^="javascript:"]:after{content:""}.pt-cv-wrapper img,.pt-cv-wrapper tr{page-break-inside:avoid}.pt-cv-wrapper img{max-width:100%!important}.pt-cv-wrapper h2,.pt-cv-wrapper h3,.pt-cv-wrapper p{orphans:3;widows:3}.pt-cv-wrapper h2,.pt-cv-wrapper h3{page-break-after:avoid}.pt-cv-wrapper .label{border:1px solid #000}.pt-cv-wrapper .table{border-collapse:collapse!important}.pt-cv-wrapper .table td,.pt-cv-wrapper .table th{background-color:#fff!important}}.pt-cv-wrapper img{vertical-align:middle}.pt-cv-wrapper .sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.pt-cv-wrapper [role=button]{cursor:pointer}.pt-cv-wrapper .container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media(min-width:768px){.pt-cv-wrapper .container{width:750px}}@media(min-width:992px){.pt-cv-wrapper .container{width:970px}}@media(min-width:1200px){.pt-cv-wrapper .container{width:1170px}}.pt-cv-wrapper .btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.pt-cv-wrapper .btn.active.focus,.pt-cv-wrapper .btn.active:focus,.pt-cv-wrapper .btn.focus,.pt-cv-wrapper .btn:active.focus,.pt-cv-wrapper .btn:active:focus,.pt-cv-wrapper .btn:focus{outline:dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.pt-cv-wrapper .btn.focus,.pt-cv-wrapper .btn:focus,.pt-cv-wrapper .btn:hover{color:#333;text-decoration:none}.pt-cv-wrapper .btn.active,.pt-cv-wrapper .btn:active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.pt-cv-wrapper .btn.disabled,.pt-cv-wrapper .btn[disabled],.pt-cv-wrapper fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;-webkit-box-shadow:none;box-shadow:none}.pt-cv-wrapper a.btn.disabled,.pt-cv-wrapper fieldset[disabled] a.btn{pointer-events:none}.pt-cv-wrapper .fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.pt-cv-wrapper .fade.in{opacity:1}.pt-cv-wrapper .collapse{display:none}.pt-cv-wrapper .collapse.in{display:block}.pt-cv-wrapper tr.collapse.in{display:table-row}.pt-cv-wrapper tbody.collapse.in{display:table-row-group}.pt-cv-wrapper .collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease}.pt-cv-wrapper .dropdown{position:relative}.pt-cv-wrapper .dropdown-toggle:focus{outline:0}.pt-cv-wrapper .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);-webkit-background-clip:padding-box;background-clip:padding-box}.pt-cv-wrapper .dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.pt-cv-wrapper .dropdown-menu>li>a:focus,.pt-cv-wrapper .dropdown-menu>li>a:hover{text-decoration:none;color:#262626;background-color:#f5f5f5}.pt-cv-wrapper .dropdown-menu>.active>a,.pt-cv-wrapper .dropdown-menu>.active>a:focus,.pt-cv-wrapper .dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;outline:0;background-color:#337ab7}.pt-cv-wrapper .dropdown-menu>.disabled>a,.pt-cv-wrapper .dropdown-menu>.disabled>a:focus,.pt-cv-wrapper .dropdown-menu>.disabled>a:hover{color:#777}.pt-cv-wrapper .dropdown-menu>.disabled>a:focus,.pt-cv-wrapper .dropdown-menu>.disabled>a:hover{text-decoration:none;background-color:transparent;background-image:none;cursor:not-allowed}.pt-cv-wrapper .open>.dropdown-menu{display:block}.pt-cv-wrapper .open>a{outline:0}.pt-cv-wrapper .dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pt-cv-wrapper .pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pt-cv-wrapper .pagination>li{display:inline}.pt-cv-wrapper .pagination>li>a,.pt-cv-wrapper .pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#337ab7;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pt-cv-wrapper .pagination>li:first-child>a,.pt-cv-wrapper .pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pt-cv-wrapper .pagination>li:last-child>a,.pt-cv-wrapper .pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pt-cv-wrapper .pagination>li>a:focus,.pt-cv-wrapper .pagination>li>a:hover,.pt-cv-wrapper .pagination>li>span:focus,.pt-cv-wrapper .pagination>li>span:hover{z-index:3;color:#23527c;background-color:#eee;border-color:#ddd}.pt-cv-wrapper .pagination>.active>a,.pt-cv-wrapper .pagination>.active>a:focus,.pt-cv-wrapper .pagination>.active>a:hover,.pt-cv-wrapper .pagination>.active>span,.pt-cv-wrapper .pagination>.active>span:focus,.pt-cv-wrapper .pagination>.active>span:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7;cursor:default}.pt-cv-wrapper .pagination>.disabled>a,.pt-cv-wrapper .pagination>.disabled>a:focus,.pt-cv-wrapper .pagination>.disabled>a:hover,.pt-cv-wrapper .pagination>.disabled>span,.pt-cv-wrapper .pagination>.disabled>span:focus,.pt-cv-wrapper .pagination>.disabled>span:hover{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pt-cv-wrapper .pagination-lg>li>a,.pt-cv-wrapper .pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pt-cv-wrapper .pagination-lg>li:first-child>a,.pt-cv-wrapper .pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pt-cv-wrapper .pagination-lg>li:last-child>a,.pt-cv-wrapper .pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pt-cv-wrapper .pagination-sm>li>a,.pt-cv-wrapper .pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pt-cv-wrapper .pagination-sm>li:first-child>a,.pt-cv-wrapper .pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pt-cv-wrapper .pagination-sm>li:last-child>a,.pt-cv-wrapper .pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pt-cv-wrapper .pt-cv-carousel{position:relative}.pt-cv-wrapper .pt-cv-carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.pt-cv-wrapper .pt-cv-carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:transparent}.pt-cv-wrapper .pt-cv-carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}@media screen and (min-width:768px){.pt-cv-wrapper .pt-cv-carousel-indicators{bottom:20px}}.pt-cv-wrapper .clearfix:after,.pt-cv-wrapper .clearfix:before,.pt-cv-wrapper .container:after,.pt-cv-wrapper .container:before{content:" ";display:table}.pt-cv-wrapper .clearfix:after,.pt-cv-wrapper .container:after{clear:both}.pt-cv-wrapper .hide{display:none!important}.pt-cv-wrapper .show{display:block!important}.pt-cv-wrapper .hidden{display:none!important}.pt-cv-wrapper .h2,.pt-cv-wrapper h1,.pt-cv-wrapper h2,.pt-cv-wrapper h3,.pt-cv-wrapper h4{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.pt-cv-wrapper .btn{text-decoration:none;outline:0!important;font-style:normal}.pt-cv-wrapper .pagination>li:first-child>a,.pt-cv-wrapper .pagination>li:first-child>span,.pt-cv-wrapper .pagination>li:last-child>a,.pt-cv-wrapper .pagination>li:last-child>span{border-radius:0}.pt-cv-wrapper [class*=pt-cv-] a{box-shadow:none}: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}.wp-block-embed{overflow-wrap:break-word}.wp-block-embed iframe{max-width:100%}:where(.wp-block-file){margin-bottom:1.5em}:where(.wp-block-file__button){border-radius:2em;display:inline-block;padding:.5em 1em}:where(.wp-block-file__button):is(a):active,:where(.wp-block-file__button):is(a):focus,:where(.wp-block-file__button):is(a):hover,:where(.wp-block-file__button):is(a):visited{box-shadow:none;color:#fff;opacity:.85;text-decoration:none}.wp-block-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.alignwide img{height:auto;width:100%}.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}ul{box-sizing:border-box}.wp-block-media-text{box-sizing:border-box;direction:ltr;display:grid;grid-template-columns:50% 1fr;grid-template-rows:auto}.wp-block-media-text .wp-block-media-text__content,.wp-block-media-text .wp-block-media-text__media{align-self:center}.wp-block-media-text .wp-block-media-text__media{grid-column:1;grid-row:1;margin:0}.wp-block-media-text .wp-block-media-text__content{direction:ltr;grid-column:2;grid-row:1;padding:0 8%;word-break:break-word}.wp-block-media-text__media img,.wp-block-media-text__media video{height:auto;max-width:unset;vertical-align:middle;width:100%}@media (max-width:600px){.wp-block-media-text.is-stacked-on-mobile{grid-template-columns:100%!important}.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media{grid-column:1;grid-row:1}.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content{grid-column:1;grid-row:2}}: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}: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}:where(.wp-block-search__button){border:1px solid #ccc;padding:6px 10px}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper){border:1px solid #949494;box-sizing:border-box;padding:4px}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input{border:none;border-radius:0;padding:0 4px}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input:focus{outline:0}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) :where(.wp-block-search__button){padding:4px 8px}:where(.wp-block-term-description){margin-bottom:var(--wp--style--block-gap);margin-top:var(--wp--style--block-gap)}:where(pre.wp-block-verse){font-family:inherit}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.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}}.wp-block-embed{margin:0 0 1em}.wp-block-image{margin:0 0 1em}:where(.wp-block-group.has-background){padding:1.25em 2.375em}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--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6, 147, 227, 1) 0%,rgb(155, 81, 224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,rgb(122, 220, 180) 0%,rgb(0, 208, 130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252, 185, 0, 1) 0%,rgba(255, 105, 0, 1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255, 105, 0, 1) 0%,rgb(207, 46, 46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,rgb(238, 238, 238) 0%,rgb(169, 184, 195) 100%);--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,rgb(74, 234, 220) 0%,rgb(151, 120, 209) 20%,rgb(207, 42, 186) 40%,rgb(238, 44, 130) 60%,rgb(251, 105, 98) 80%,rgb(254, 248, 76) 100%);--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,rgb(255, 206, 236) 0%,rgb(152, 150, 240) 100%);--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,rgb(254, 205, 165) 0%,rgb(254, 45, 45) 50%,rgb(107, 0, 62) 100%);--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,rgb(255, 203, 112) 0%,rgb(199, 81, 192) 50%,rgb(65, 88, 208) 100%);--wp--preset--gradient--pale-ocean:linear-gradient(135deg,rgb(255, 245, 203) 0%,rgb(182, 227, 212) 50%,rgb(51, 167, 181) 100%);--wp--preset--gradient--electric-grass:linear-gradient(135deg,rgb(202, 248, 128) 0%,rgb(113, 206, 126) 100%);--wp--preset--gradient--midnight:linear-gradient(135deg,rgb(2, 3, 129) 0%,rgb(40, 116, 252) 100%);--wp--preset--font-size--small:13px;--wp--preset--font-size--medium:20px;--wp--preset--font-size--large:36px;--wp--preset--font-size--x-large:42px;--wp--preset--spacing--20:0.44rem;--wp--preset--spacing--30:0.67rem;--wp--preset--spacing--40:1rem;--wp--preset--spacing--50:1.5rem;--wp--preset--spacing--60:2.25rem;--wp--preset--spacing--70:3.38rem;--wp--preset--spacing--80:5.06rem;--wp--preset--shadow--natural:6px 6px 9px rgba(0, 0, 0, .2);--wp--preset--shadow--deep:12px 12px 50px rgba(0, 0, 0, .4);--wp--preset--shadow--sharp:6px 6px 0px rgba(0, 0, 0, .2);--wp--preset--shadow--outlined:6px 6px 0px -3px rgba(255, 255, 255, 1),6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp:6px 6px 0px rgba(0, 0, 0, 1)}body{margin:0}:where(.is-layout-flex){gap:.5em}:where(.is-layout-grid){gap:.5em}body{padding-top:0;padding-right:0;padding-bottom:0;padding-left: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}.slick-slider{position:relative;visibility:hidden;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto}.slick-track:after,.slick-track:before{display:table;content:''}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto}.slick-arrow.slick-hidden{display:none}.slick-slider.slick-initialized{visibility:visible}.slick-dotted.slick-slider{margin-bottom:30px}.slick-dots{position:absolute;bottom:-25px;display:block;width:100%;padding:0;margin:0;list-style:none;text-align:center}.slick-dots li{position:relative;display:inline-block;width:20px;height:20px;margin:0 5px;padding:0;cursor:pointer}.slick-dots li button{font-size:0;line-height:0;display:block;width:9px;height:9px;padding:5px;cursor:pointer;color:transparent;border:0;outline:0;background-color:#fff;border-radius:50%}.slick-dots li button:focus,.slick-dots li button:hover{outline:0}.slick-dots li button:focus:before,.slick-dots li button:hover:before{background-color:#000}.slick-dots li button:before{font-family:slick;font-size:6px;line-height:20px;position:absolute;top:0;left:0;width:20px;height:20px;content:'';text-align:center;opacity:.25;color:#000;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.slick-dots li.slick-active button:before{background-color:#000}.slick-track>div>div>div{vertical-align:top!important;padding-left:8px;padding-right:8px;text-align:center}.is-menu{position:relative}.is-menu a{background:0 0!important;line-height:1;outline:0}.is-menu a::after,.is-menu a::before{display:none!important}.is-menu a:focus,.is-menu a:hover,.is-menu:hover>a{background:0 0!important;outline:0}.is-menu.default form{max-width:310px}.is-menu.is-dropdown form{display:none;min-width:310px;max-width:100%;position:absolute;right:0;top:100%;z-index:9}.is-menu.full-width-menu form,.is-menu.sliding form{min-width:0!important;overflow:hidden;position:absolute;right:0;top:25%;width:0;z-index:9;padding:0;margin:0}.is-menu.full-width-menu form:not(.is-search-form) input[type=search],.is-menu.full-width-menu form:not(.is-search-form) input[type=text],.is-menu.is-dropdown form:not(.is-search-form) input[type=search],.is-menu.is-dropdown form:not(.is-search-form) input[type=text],.is-menu.sliding form:not(.is-search-form) input[type=search],.is-menu.sliding form:not(.is-search-form) input[type=text]{background:#fff;color:#000}.is-menu.is-first form{right:auto;left:0}.is-menu.full-width-menu:not(.open) form,.is-menu.sliding:not(.open) form{display:block}.is-menu form .screen-reader-text{display:none}.is-menu form label{margin:0;padding:0}.is-menu-wrapper{display:none;position:absolute;right:5px;top:5px;width:auto;z-index:9999}.is-menu-wrapper.is-expanded{width:100%}.is-menu-wrapper .is-menu{float:right}.is-menu-wrapper .is-menu form{right:0;left:auto}.search-close{cursor:pointer;display:none;height:20px;position:absolute;right:-22px;top:33%;width:20px;z-index:99999}.is-menu.is-first .search-close{right:auto;left:-22px}.is-menu.is-dropdown .search-close{top:calc(100% + 7px)}#is-popup-wrapper{width:100%;height:100%;position:fixed;top:0;left:0;background:#4c4c4c;background:rgba(4,4,4,.91);z-index:999999}.search-close:after{border-left:2px solid #848484;content:'';height:20px;left:9px;position:absolute;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.search-close:before{border-left:2px solid #848484;content:'';height:20px;left:9px;position:absolute;-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg)}.is-menu.full-width-menu.open .search-close,.is-menu.sliding.open .search-close{display:block}@media screen and (max-width:910px){.is-menu form{left:0;min-width:50%;right:auto}.is-menu.default form{max-width:100%}.is-menu.full-width-menu.active-search{position:relative}.is-menu-wrapper{display:block}}.is-link-container{display:none}form .is-link-container{position:relative}form .is-link-container div{position:absolute;width:200px;bottom:-25px;left:5px;z-index:99999;height:auto;line-height:14px;padding:10px 15px}form .is-link-container a{text-decoration:none;font-size:14px;font-weight:100;font-family:arial;box-shadow:none}form .is-link-container a:hover{text-decoration:underline}form:hover+.is-link-container,form:hover>.is-link-container{display:block}.is-menu.full-width-menu.is-first button.is-search-submit,.is-menu.sliding.is-first button.is-search-submit{display:inline-block!important}.is-menu.full-width-menu.is-first button.is-search-submit:not([style="display: inline-block;"]),.is-menu.sliding.is-first button.is-search-submit:not([style="display: inline-block;"]){visibility:hidden}.modal{display:none;vertical-align:middle;position:relative;z-index:2;max-width:500px;box-sizing:border-box;width:90%;background:#fff;padding:15px 30px;-webkit-border-radius:8px;-moz-border-radius:8px;-o-border-radius:8px;-ms-border-radius:8px;border-radius:8px;-webkit-box-shadow:0 0 10px #000;-moz-box-shadow:0 0 10px #000;-o-box-shadow:0 0 10px #000;-ms-box-shadow:0 0 10px #000;box-shadow:0 0 10px #000;text-align:left}@font-face{font-family:'Roboto Mono';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/robotomono/v23/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSh0mQ.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:'Roboto Mono';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/robotomono/v23/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSh0mQ.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}:root{--fs-black:#000;--fs-white:#FFFFFF;--fs-blue:#1e5da2;--fs-paleblue:#f1f7fd;--fs-midblue:#0270bc;--fs-darkblue:#002e6e;--fs-darkyellow:#fa922c;--fs-paleyellow:#fffbf3;--fs-grey:#666;--fs-yellow:#fbbb29;--fs-red:#f30000;--fs-shadow:0 4px 30px 0 rgba(0, 113, 188, .09)}@font-face{font-family:Satoshi;src:url('https://forktospoon.com/wp-content/themes/forktospoon2023/fonts/Satoshi-Regular.woff2') format('woff2'),url('https://forktospoon.com/wp-content/themes/forktospoon2023/fonts/Satoshi-Regular.woff') format('woff'),url('https://forktospoon.com/wp-content/themes/forktospoon2023/fonts/Satoshi-Regular.ttf') format('truetype');font-weight:400;font-display:swap;font-style:normal}@font-face{font-family:Satoshi;src:url('https://forktospoon.com/wp-content/themes/forktospoon2023/fonts/Satoshi-Bold.woff2') format('woff2'),url('https://forktospoon.com/wp-content/themes/forktospoon2023/fonts/Satoshi-Bold.woff') format('woff'),url('https://forktospoon.com/wp-content/themes/forktospoon2023/fonts/Satoshi-Bold.ttf') format('truetype');font-weight:700;font-display:swap;font-style:normal}@font-face{font-family:Satoshi;src:url('https://forktospoon.com/wp-content/themes/forktospoon2023/fonts/Satoshi-BoldItalic.woff2') format('woff2'),url('https://forktospoon.com/wp-content/themes/forktospoon2023/fonts/Satoshi-BoldItalic.woff') format('woff'),url('https://forktospoon.com/wp-content/themes/forktospoon2023/fonts/Satoshi-BoldItalic.ttf') format('truetype');font-weight:700;font-display:swap;font-style:italic}img,legend{border:0}html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body,figure{margin:0}aside,details,figure,footer,header,main,nav,summary{display:block}canvas,progress,video{display:inline-block;vertical-align:baseline}[hidden],template{display:none}a{background-color:transparent}abbr[title]{border-bottom:1px dotted}optgroup,strong{font-weight:bolder}small{font-size:80%}svg:not(:root){overflow:hidden}code{font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}select{text-transform:none}button{overflow:visible}button,input,select,textarea{max-width:100%}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default;opacity:.5}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input[type=checkbox],input[type=radio]{box-sizing:border-box;margin-right:.4375em;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #d1d1d1;margin:0 0 1.75em;padding:.875em}fieldset>:last-child{margin-bottom:0}legend{padding:0}textarea{overflow:auto;vertical-align:top}body{font-family:Satoshi,sans-serif}#respond #reply-title small,#respond .comment-form label,.breadcrumb,.subscribeform label{font-family:"Roboto Mono",monospace}.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.skip-to-content:focus{clip:auto!important;clip-path:none;margin:0;height:auto;width:auto;top:5px;left:5px;display:block;font-size:16px;line-height:22px;padding:11px 25px;background:var(--fs-blue);color:var(--fs-white);z-index:10000000;transition:none;border:1px solid currentColor;font-weight:700;border-radius:22px;text-transform:lowercase}body,html{min-width:320px}img{max-width:100%;height:auto}.clearfix:after,.clearfix:before{content:" ";display:table}.clearfix:after{clear:both}.container{display:block;width:1360px;max-width:100%;margin:0 auto;padding:0 40px;min-width:320px;box-sizing:border-box}@media screen and (max-width:1023px){.container{padding:0 20px}}@media screen and (max-width:339px){.container{padding:0 10px}}body{font-size:20px;line-height:1.6;color:var(--fs-black);background:var(--fs-white);word-wrap:break-word}a{transition:color .3s,background .3s;color:var(--fs-blue);font-weight:700;text-decoration:none}a:active,a:hover{color:var(--fs-darkblue);text-decoration:underline}.imagegrid .gridimage img,a img{transition:opacity .3s;vertical-align:bottom}.imagegrid .gridlink:hover .gridimage img,a:active img,a:hover img{opacity:.75}address,p{margin-top:0;margin-bottom:1em}ul{margin:1em 0;padding:0 0 0 1.6em}ul ul{margin-top:4px;margin-bottom:0}li{margin:0 0 4px;padding:0 0 0 .3125em}li::marker{line-height:1}h1,h2,h3,h4{position:relative}h1 strong,h2 strong,h3 strong,h4 strong{font-weight:inherit}h1 a,h2 a,h3 a,h4 a{font-weight:inherit}h1{font-size:48px;line-height:54px;margin:60px 0 40px;text-align:center;text-transform:lowercase}h2{font-size:36px;line-height:42px;margin:60px 0 30px;text-align:center;text-transform:lowercase}.contentbox h2,h3{font-size:28px;line-height:34px;margin:40px 0 25px;text-transform:lowercase}h4{font-size:24px;line-height:30px;margin:30px 0 20px;text-transform:lowercase}.wp-block-heading img{vertical-align:bottom}.postcontent h1,.postcontent h2{text-transform:none;text-align:left}.postcontent h3,.postcontent h4{text-transform:none}.posttitle{margin:0 0 40px;text-align:left}@media screen and (max-width:767px){h1{font-size:36px;line-height:42px;margin:40px 0 30px}h2{font-size:28px;line-height:34px;margin:40px 0 25px}.contentbox h2,h3{font-size:24px;line-height:30px}h4{font-size:22px;line-height:28px}.posttitle{margin-bottom:30px}}.sidebar h2{font-size:28px;line-height:36px;text-align:center;margin:40px 0 20px}.sidebar h2+.mainsection{margin-top:20px!important}a.btn{background:var(--fs-blue);color:var(--fs-white)!important;font-size:16px;line-height:22px;font-weight:700;padding:11px 25px;text-align:center;display:inline-block;text-decoration:none!important;border-radius:22px;text-transform:lowercase}a.btn-yellow{background:var(--fs-yellow)}a.btn:active,a.btn:hover{background-color:var(--fs-darkblue)}a.btn-yellow:active,a.btn-yellow:hover{background:var(--fs-darkyellow)}a.btn .cicon{font-size:16px;height:22px;vertical-align:top;margin-right:6px}a.btn:focus-visible{outline:auto}a.btn.clicked{position:relative;color:transparent!important;transition:none}a.btn.clicked:before{content:"Loading...";color:var(--fs-white);position:absolute;top:0;left:0;width:100%;box-sizing:border-box;padding:11px 25px}.ajaxnav,.contentbox,.fluid-width-video-wrapper-b,.pagination,.togglelist,.wp-block-embed,.wp-block-image,.wprm-recipe{margin-top:40px;margin-bottom:40px}.postcontent .wp-block-image{margin-top:30px;margin-bottom:30px}.mainsection{margin-top:60px;margin-bottom:60px}h2+*{margin-top:0!important}h2+h3{margin-top:30px!important}h2+.mainsection{margin-top:40px!important}.maincol h2+.mainsection{margin-top:30px!important}h1+.mainsection{margin-top:0}.imagegrid+.ajaxnav{margin-top:-20px}@media screen and (max-width:767px){.mainsection{margin-top:40px;margin-bottom:40px}h2+.mainsection{margin-top:30px!important}.imagegrid+.ajaxnav{margin-top:0}}div.wp-block-image{margin:0!important}.wp-block-image img{vertical-align:bottom}#topbar{background:var(--fs-blue);color:var(--fs-white);padding:8px 0;font-size:18px;line-height:24px}#topbar a{font-weight:inherit;color:inherit;text-decoration:none;padding-right:22px}#topbar a:active,#topbar a:hover{text-decoration:underline}#topbar a:after{content:"";display:inline-block;width:16px;height:24px;margin-right:-22px;margin-left:6px;position:relative;vertical-align:top;top:0;background-size:100%;background-position:center center;background-repeat:no-repeat;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath fill='%23fff' d='M31.706 16.706c0.387-0.387 0.387-1.025 0-1.412l-9-9c-0.387-0.388-1.025-0.388-1.413 0s-0.387 1.025 0 1.412l7.294 7.294h-27.587c-0.55 0-1 0.45-1 1s0.45 1 1 1h27.587l-7.294 7.294c-0.387 0.387-0.387 1.025 0 1.413s1.025 0.387 1.413 0l9-9z'%3E%3C/path%3E%3C/svg%3E%0A")}#wpadminbar{z-index:100005}body.menuopen #wpadminbar,body.searchopen #wpadminbar{z-index:9}#header{height:200px}#header-a{background:var(--fs-white)}#header-b{position:relative}body.fixedheader #header-a{position:fixed;top:0;left:0;width:100%;z-index:10000;-webkit-animation:.3s scrollheader;animation:.3s scrollheader;box-sizing:border-box;box-shadow:0 0 18px rgba(0,0,0,.15)}@-webkit-keyframes scrollheader{0%{-webkit-transform:translateY(-100%);transform:translateY(-100%)}to{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes scrollheader{0%{-webkit-transform:translateY(-100%);transform:translateY(-100%)}to{-webkit-transform:translateY(0);transform:translateY(0)}}html{scroll-padding-top:90px}#logo{width:159px;margin:0 auto;line-height:1;font-weight:400;position:absolute;top:60px;left:0;z-index:1}#logo a{display:block;font-weight:inherit}#logo img{display:block;width:100%;opacity:1}body.fixedheader #logo{width:87px;top:15px}.menubar a{display:block;color:inherit;text-decoration:none}.menubar a:active,.menubar a:hover{color:var(--fs-blue)}.menubar li>.linkwrap>span{display:block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.menubar{position:relative}.menubar>ul{margin:0;padding:0;list-style:none}.menubar>ul>li{margin:0;padding:0}.menubar>ul>li>.submenu{display:none}.menubar>ul>li>.submenu>ul{margin:0;padding:0;list-style:none}.menubar>ul>li>.submenu>ul>li{margin:0;padding:0}.menubar>ul>li>.submenu>ul>li>ul{margin:0;padding:0;list-style:none}.menubar>ul>li>.submenu>ul>li>ul>li{margin:0;padding:0}button.closebtn{font-size:18px;border:none;border-radius:0;padding:0;line-height:40px;max-width:none;display:inline-block;vertical-align:top;transition:color .3s;background:0 0}button.closebtn .cicon{padding:0;height:40px;vertical-align:top}button.closebtn:hover{color:var(--fs-blue)}button.closemenu{display:none}#toggles{display:none}button.togglemenu,button.togglesearch{font-size:22px;border:none;border-radius:0;padding:0;line-height:44px;max-width:none;display:inline-block;vertical-align:top;transition:color .3s;background:0 0;margin:0 -10px}button.togglemenu .cicon,button.togglesearch .cicon{height:44px;vertical-align:top;padding:0 10px}button.togglemenu:hover,button.togglesearch:hover{color:var(--fs-blue)}button.togglesearch{font-size:20px}@media screen and (min-width:1280px){#menu{height:200px;display:flex;flex-direction:column;justify-content:center;box-sizing:border-box}body.fixedheader #menu{height:74px;padding-top:0}#menuoverlay{display:none}.menubar{font-size:24px;line-height:30px;text-transform:lowercase}.menubar>ul{display:flex;justify-content:flex-end;flex-wrap:wrap;margin:0 -20px 0 auto;padding-left:199px;max-width:1220px;box-sizing:border-box}.menubar>ul>li>.linkwrap>a,.menubar>ul>li>.linkwrap>span,.menubar>ul>li>a{padding:7px 20px;font-weight:700}.menubar>ul>li.menu-item-has-children>.linkwrap{position:relative}.menubar>ul>li.menu-item-has-children{position:relative}.menubar>ul>li.menu-item-has-children>.linkwrap>.dropdown-toggle{position:absolute;top:50%;right:20px;border:none;border-radius:0;margin:-12px 0 0;padding:0;background:0 0;pointer-events:none;line-height:1}.menubar>ul>li.menu-item-has-children>.linkwrap>a,.menubar>ul>li.menu-item-has-children>.linkwrap>span{padding-right:40px}.menubar>ul>li.menu-item-has-children>.linkwrap>.dropdown-toggle .cicon{font-size:22px;height:30px;display:inline-block;vertical-align:top;transition:color .3s}.menubar>ul>li>.submenu{display:none!important;visibility:hidden;opacity:0;position:absolute;top:44px;padding-top:8px;left:-11px;z-index:10000;min-width:calc(100% + 12px);font-size:16px;line-height:22px}.menubar>ul>li>.submenu>ul{white-space:nowrap;background:var(--fs-white);border:1px solid var(--fs-blue);border-radius:20px;overflow:hidden;padding:25px 30px}.menubar>ul>li>.submenu>ul>li>a{padding:5px 0;font-weight:400}.menubar>ul>li.accopen>.submenu,.menubar>ul>li.active>.submenu{visibility:visible;opacity:1;display:block!important;animation:.3s fadein}.menubar .megamenu-wrap{background:var(--fs-white);border:1px solid var(--fs-blue);overflow:hidden;padding:30px;border-radius:20px}.menubar .megamenu-cols>ul{margin:0;padding:0;list-style:none;display:flex}.menubar .megamenu-cols>ul>li{margin:0 0 0 40px;padding:0;width:140px}.menubar .megamenu-cols>ul>li:first-child{margin-left:0}.menubar .megamenu-cols>ul>li>ul{margin:10px 0 0;padding:0;list-style:none;display:block!important}.menubar .megamenu-cols>ul>li>ul>li{margin:0;padding:0}.menubar .megamenu-cols>ul>li>ul>li>a{padding:5px 0;font-weight:400}.menubar .megamenu-cols>ul>li>.linkwrap>a,.menubar .megamenu-cols>ul>li>.linkwrap>span{padding:0;text-transform:lowercase;font-weight:700;font-size:20px;line-height:26px}.menubar .megamenu-cols>ul>li>.linkwrap>.dropdown-toggle{display:none}.menubar .megamenu-wrap a.btn{padding-top:10px;padding-bottom:10px}.menubar>ul>li.search{padding:0 20px}.menubar>ul>li.search .searchform{width:258px}body.resizing #menu a{transition:none}}@keyframes fadein{0%{opacity:0;visibility:hidden}to{opacity:1;visibility:visible}}@media screen and (max-width:1279px){#toggles{display:block;height:200px;display:flex;flex-direction:column;justify-content:center;box-sizing:border-box}body.fixedheader #toggles{height:74px}#toggles ul{margin:0 0 0 -30px;padding:0;list-style:none;display:flex;justify-content:flex-end}#toggles ul li{margin:0 0 0 30px;padding:0}body.menuopen #header-a{z-index:10006!important}#menuwrap{position:fixed;top:0;right:-320px;width:320px;height:100%;z-index:10012;overflow-y:auto;transition:right .5s,visibility .5s;box-sizing:border-box;padding:20px 20px 0!important;background:var(--fs-white);visibility:hidden}body.menuopen{overflow:hidden}body.menuopen #menuwrap{right:0;visibility:visible}body.menuopen #menuoverlay{width:100%;height:100%;background:rgba(0,0,0,.3);position:fixed;top:0;right:0;z-index:10011}button.closemenu{margin:-10px 0 15px auto;display:block}.menubar{font-size:24px;line-height:30px;padding-bottom:20px;text-transform:lowercase}.menubar>ul>li>.linkwrap>a,.menubar>ul>li>.linkwrap>span,.menubar>ul>li>.submenu a,.menubar>ul>li>a{padding:15px 0}.menubar li.menu-item-has-children>.linkwrap{padding-right:39px;cursor:pointer;position:relative}.menubar li.menu-item-has-children>.linkwrap>span{cursor:pointer}.menubar li.menu-item-has-children>.linkwrap>span:hover{color:var(--fs-blue)}.menubar li.menu-item-has-children>.linkwrap>.dropdown-toggle{display:block;position:absolute;top:0;right:-18px;width:44px;height:60px;border:none;border-radius:0;margin:0;padding:0;background:0 0;transition:color .3s;text-align:center}.menubar li.menu-item-has-children>.linkwrap>.dropdown-toggle:hover{color:var(--fs-blue)}.menubar li.menu-item-has-children>.linkwrap>.dropdown-toggle .cicon{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);transition:transform .3s;height:40px;vertical-align:top;font-size:22px}.menubar li.menu-item-has-children.open>.linkwrap>.dropdown-toggle .cicon{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.menubar li.menu-item-has-children>.submenu{left:auto!important}.menubar li.menu-item-has-children>.submenu>ul{margin-left:20px}.menubar li.menu-item-has-children>.submenu>ul>li>ul{margin-left:20px}.menubar .megamenu-cols>ul{margin:0 0 0 20px;padding:0;list-style:none}.menubar .megamenu-cols>ul>li{margin:0;padding:0}.menubar .megamenu-cols>ul>li>ul{margin:0 0 0 20px;padding:0;list-style:none;display:none}.menubar .megamenu-cols>ul>li>ul>li{margin:0;padding:0}.menubar .megamenu-cols>ul>li>ul>li>a{padding:15px 0}.menubar .megamenu-cols>ul>li>.linkwrap>a,.menubar .megamenu-cols>ul>li>.linkwrap>span{padding:15px 0;font-weight:700}.menubar .megamenu-wrap a.btn{padding-top:10px;padding-bottom:10px}.menubar li.search{display:none}}#searchwrap{background:var(--fs-white);position:fixed;top:0;left:0;width:100%;-webkit-transform:translateY(-100%);transform:translateY(-100%);z-index:10000;float:none;display:block;margin:0;transition:transform .3s;padding:0}body.searchopen #searchwrap{transform:translateY(0);z-index:90000;margin-left:0;box-shadow:0 0 18px rgba(0,0,0,.15)}body.fixedheader #searchwrap{margin-left:0}body.resizing #searchwrap{-webkit-transition:none;transition:none}#searchwrap h2{margin:0 0 20px;padding:0 40px;text-align:center}#searchwrap .closebtn{display:block;top:10px;right:20px;position:absolute;z-index:1}#searchwrap-a{padding:20px}.searchform{background:var(--fs-paleblue);color:var(--fs-black);position:relative;box-sizing:border-box;margin:0 auto;max-width:100%;width:730px;border-radius:22px}.searchform .input{margin-right:58px}.searchform .input input{background:0 0;border:none;margin:0;padding:10px 0 10px 20px;width:100%;box-sizing:border-box;border-radius:22px 0 0 22px;font-size:16px;line-height:24px}.searchform button[type=submit]{margin:0;padding:0;border:none;background:0 0;width:58px;height:44px;position:absolute;top:0;right:0;transition:color .3s;font-size:18px;border-radius:0 22px 22px 0}.searchform button[type=submit]:hover{color:var(--fs-blue)}.searchform button[type=submit] .cicon{display:block;margin:0 auto}#body .searchform{margin-top:40px;margin-bottom:40px}.bodysection{position:relative;padding:60px 0}.bodysection-white:first-child{padding-top:0}.bodysection-yellow{background:var(--fs-paleyellow)}.bodysection-yellow a{color:var(--fs-yellow)}.bodysection>.container>h1:last-child{margin-bottom:-20px!important}@media screen and (max-width:767px){#logo{width:119px;top:40px}#header{height:140px}#toggles{height:140px}.bodysection{padding:40px 0}.bodysection-white:first-child{padding-top:0}.bodysection>.container>h1:last-child{margin-bottom:0!important}}.bodysection-breadcrumb{padding-bottom:20px}.bodysection-breadcrumb+.bodysection-white{padding-top:0}.imagegrid{margin-left:auto;margin-right:auto;max-width:100%;position:relative}.imagegrid>ul{margin:0 0 0 -30px;padding:0;list-style:none;display:flex;flex-wrap:wrap;row-gap:30px}.imagegrid>ul>li{margin:0;padding:0;display:flex}.imagegrid>ul>li>.li-a{margin-left:30px;position:relative;flex-grow:1;min-width:0;text-align:center}.imagegrid .gridlink{position:relative}.imagegrid .gridimage{position:relative;margin-bottom:20px}.imagegrid .gridimage .gridimage-a{position:relative;height:0;padding-bottom:133.3333333333%;flex-grow:1;overflow:hidden}.imagegrid .gridimage-a img{display:block;position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover}.imagegrid4-main{width:758px}.imagegrid4-main>ul>li{width:25%}.imagegrid .gridtitle{position:static}.imagegrid .gridtitle a{color:inherit;text-decoration:none;font-weight:700}.imagegrid .gridtitle a:after{content:"";display:block;position:absolute;top:0;left:0;bottom:0;right:0;z-index:1}.imagegrid .gridtitle a:active,.imagegrid .gridtitle a:hover{color:var(--fs-blue)}.imagegrid .gridtitle{font-size:20px;line-height:28px}.imagegrid4-main .gridtitle{font-size:18px;line-height:24px}@media screen and (max-width:767px){.imagegrid>ul>li{width:50%}.imagegrid>ul{margin-left:-20px}.imagegrid>ul>li>.li-a{margin-left:20px}}.filters ul{margin:0 0 0 -20px;padding:0;list-style:none;display:flex;flex-wrap:wrap;row-gap:20px}.filters ul li{margin:0;padding:0}@media screen and (max-width:1279px){.filters{flex-basis:100%}}@media screen and (max-width:767px){.filters ul{margin-left:-10px;row-gap:10px}}.pagination{font-size:18px;line-height:24px;text-align:center;text-transform:lowercase}.pagination a{color:inherit;font-weight:inherit;text-decoration:none}.pagination a:active,.pagination a:hover{color:var(--fs-blue)}.pagination .cicon{vertical-align:top;height:24px}.pagination span.current{color:var(--fs-blue)}.ajaxnav{text-align:center}.socialicons{font-size:24px;line-height:1}.socialicons ul{margin:0 0 0 -25px;row-gap:10px;padding:0;list-style:none;display:flex;flex-wrap:wrap;align-items:center;justify-content:center}.socialicons ul li{margin:0 0 0 25px;padding:0}.socialicons ul li a{display:block;margin:0 -10px;font-weight:inherit;color:inherit}.socialicons ul li a:active,.socialicons ul li a:hover{color:var(--fs-blue)}.socialicons ul li a .cicon{padding:0 10px;display:block}.wp-block-media-text{margin-left:auto;margin-right:auto;max-width:100%;grid-gap:60px}.wp-block-media-text:not(.is-style-custom){grid-template-columns:48fr 74fr!important}.wp-block-media-text.is-style-equal{grid-template-columns:1fr 1fr!important}.wp-block-media-text .wp-block-media-text__media{padding:0;align-self:start;position:relative}.wp-block-media-text .wp-block-media-text__content{padding:0;min-width:0}.wp-block-media-text .wp-block-media-text__content>:first-child{margin-top:0}.wp-block-media-text .wp-block-media-text__content>:first-child>:first-child{margin-top:0}.wp-block-media-text .wp-block-media-text__content>:last-child{margin-bottom:0}.wp-block-media-text .wp-block-media-text__content>:last-child>:last-child{margin-bottom:0}@media screen and (max-width:1023px){#fullwrap .wp-block-media-text.is-stacked-on-mobile{grid-template-columns:100%!important}.wp-block-media-text{grid-gap:40px}.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media{display:block;width:auto;margin:0 auto!important;grid-column:1;grid-row:1}.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content{padding:0!important;width:100%;grid-column:1;grid-row:2}.wp-block-media-text>figure img,.wp-block-media-text>figure video{width:auto;max-width:100%}}.breadcrumb{font-size:14px;line-height:20px;text-transform:lowercase}.breadcrumb a{color:inherit;font-weight:inherit;text-decoration:none}.breadcrumb a:active,.breadcrumb a:hover{color:var(--fs-blue)}.breadcrumb .cicon{display:inline-block;height:20px;vertical-align:top;margin:0 4px;position:relative}.breadcrumb+*{margin-top:0}.postcols>.maincol{float:left;display:inline;width:100%;margin-right:-450px}.postcols>.maincol>.maincol-a{margin-right:450px;max-width:760px}.postcols>.sidebar{float:right;display:inline;width:390px;font-size:18px}@media screen and (max-width:1200px){.postcols>.maincol{margin-right:-360px}.postcols>.maincol>.maincol-a{margin-right:360px}.postcols>.sidebar{width:300px}}@media screen and (max-width:1023px){.postcols>.maincol{float:none;display:block;width:760px;max-width:100%;margin:0 auto}.postcols>.maincol>.maincol-a{margin-right:0;max-width:none}.postcols>.sidebar{float:none;display:block;width:390px;margin:60px auto 0;max-width:100%}}.postmeta>ul{margin:0 0 0 -20px;padding:0;list-style:none;display:flex;flex-wrap:wrap;row-gap:20px}.postmeta>ul>li{margin:0 0 0 20px;padding:0}.sharebuttons{font-size:16px;line-height:1}.sharebuttons>ul{margin:0 0 0 -20px;row-gap:20px;padding:0;list-style:none;display:flex;flex-wrap:wrap;align-items:center}.sharebuttons>ul>li{margin:0 0 0 20px;padding:0}.sharebuttons>ul>li>a{display:block;border-radius:50%;box-sizing:border-box;width:44px;height:44px;border:1px solid currentColor;color:inherit;transition:none}.sharebuttons>ul>li>a:active,.sharebuttons>ul>li>a:hover{background:var(--fs-black);color:var(--fs-white);border-color:var(--fs-black)}.sharebuttons>ul>li>a .cicon{font-size:20px;display:block;height:44px;margin:0 auto}.postmeta>ul>li.jump .cicon{vertical-align:top;margin-right:0;margin-left:6px;font-size:14px}.contentbox{font-size:18px;padding:40px}.contentbox-yellow{background:var(--fs-paleyellow)}.contentbox-yellow a{color:var(--fs-yellow)}.contentbox-share{text-align:center}.contentbox-share h2{text-transform:lowercase;text-align:center}.contentbox-share .sharebuttons{margin-bottom:20px}.contentbox-share .sharebuttons>ul{justify-content:center}@media screen and (max-width:767px){.postcols>.sidebar{margin-top:40px}.contentbox{padding:30px 20px}}.subscribebox{background:var(--fs-paleyellow);padding:30px}.subscribebox .sb-image{margin-bottom:30px}.subscribebox .sb-image img{display:block}.subscribebox h2{text-align:left;margin-top:0}.catbuttons>ul{margin:0;padding:0;list-style:none;display:flex;flex-wrap:wrap;justify-content:center;margin-left:-20px;row-gap:20px}.catbuttons>ul>li{margin:0 0 0 20px;padding:0}#respond #reply-title small{display:block;font-size:14px;line-height:20px;margin-top:10px}#respond #reply-title small a{font-weight:inherit;display:inline-block;vertical-align:bottom}#respond .comment-form .wprm-comment-ratings-container{display:block}#respond .comment-form .comtwocol{margin-left:-20px;display:flex}#respond .comment-form .comtwocol p{margin-left:20px;width:50%}#respond .comment-form input[type=email],#respond .comment-form input[type=text],#respond .comment-form input[type=url],#respond .comment-form textarea{border:1px solid var(--fs-darkblue);background:var(--fs-white);border-radius:4px;box-sizing:border-box;width:100%;padding:9px 18px;font-size:16px;line-height:24px}#respond .comment-form textarea{height:116px;transition:height .3s}#respond .comment-form.expanded textarea{height:212px}#respond .comment-form .form-submit{margin-bottom:0}#respond .comment-form input[type=submit]{background:var(--fs-blue);color:var(--fs-white);border:none;border-radius:22px;font-weight:700;margin:0;padding:11px 25px;display:block;font-size:16px;line-height:22px;text-transform:lowercase;transition:background .3s}#respond .comment-form input[type=submit]:hover{background:var(--fs-darkblue)}#respond .comment-form label{display:block;margin:0 0 10px;font-size:14px;line-height:20px;font-weight:400;display:block}#respond .comment-form label .required{color:var(--fs-grey)}#respond .comment-form p{margin-bottom:30px}#respond .comment-form-wprm-rating{margin:0 0 30px}#respond .comment-form .comment-form-cookies-consent,#respond .comment-form .comment-subscription-form{position:relative}#respond .comment-form .comment-form-cookies-consent input[type=checkbox],#respond .comment-form .comment-subscription-form input[type=checkbox]{opacity:0;position:absolute;top:2px;left:0;width:20px;height:20px;z-index:-1}#respond .comment-form .comment-form-cookies-consent input[type=checkbox]:focus+label:before,#respond .comment-form .comment-subscription-form input[type=checkbox]:focus+label:before{box-shadow:0 0 3px var(--fs-black)}#respond .comment-form .comment-form-cookies-consent input[type=checkbox]+label,#respond .comment-form .comment-subscription-form input[type=checkbox]+label{position:relative;display:block;padding-left:32px;margin:0;font-size:16px;line-height:22px;text-transform:none;letter-spacing:0;font-weight:400;font-family:inherit}#respond .comment-form .comment-form-cookies-consent input[type=checkbox]+label:before,#respond .comment-form .comment-subscription-form input[type=checkbox]+label:before{content:"";display:block;position:absolute;top:1px;left:0;width:20px;height:20px;background:var(--fs-white);border:1px solid var(--fs-black);box-sizing:border-box}#respond .comment-form .comment-form-cookies-consent input[type=checkbox]:checked+label:after,#respond .comment-form .comment-subscription-form input[type=checkbox]:checked+label:after{content:"";display:block;position:absolute;top:4px;left:3px;width:14px;height:14px;background-size:100%;background-repeat:no-repeat;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath fill='%23000' d='M27.241 5.217l-16.44 16.44-6.041-6.041c-0.293-0.293-0.768-0.293-1.061 0l-1.768 1.768c-0.293 0.293-0.293 0.768 0 1.061l8.339 8.339c0.293 0.293 0.768 0.293 1.061 0l18.738-18.738c0.293-0.293 0.293-0.768 0-1.061l-1.768-1.768c-0.293-0.293-0.768-0.293-1.061 0z'%3E%3C/path%3E%3C/svg%3E%0A")}.ml-custom-subscribe{margin:20px 0}.subscribeform{width:464px;max-width:100%;margin-left:auto;margin-right:auto}@media screen and (min-width:1024px){.wp-block-media-text h1:not(.has-text-align-center),.wp-block-media-text h2:not(.has-text-align-center){text-align:inherit}.wp-block-media-text .subscribeform{margin-left:0;margin-right:0}}.subscribeform .ml-field-group{position:relative;margin-bottom:20px}.subscribeform label{position:absolute;top:0;left:0;padding:10px 18px;box-sizing:border-box;max-width:100%;height:44px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:14px;line-height:24px;pointer-events:none;transform-origin:0 0;transition:opacity .2s ease-in-out,transform .2s ease-in-out,padding .2s ease-in-out;border-radius:4px;color:var(--fs-black);color:var(--fs-grey)}.subscribeform label span{transition:opacity .2s ease-in-out}.subscribeform input[type=email],.subscribeform input[type=text]{display:block;margin:0;background:var(--fs-white);padding:9px 18px;font-size:16px;line-height:24px;min-width:0;border-radius:4px;box-sizing:border-box;width:100%;color:inherit;border:none;color:var(--fs-black);border:1px solid var(--fs-blue)}.bodysection-yellow .subscribeform input[type=email],.bodysection-yellow .subscribeform input[type=text],.subscribebox .subscribeform input[type=email],.subscribebox .subscribeform input[type=text]{border-color:var(--fs-yellow)}#footer .subscribeform input[type=email],#footer .subscribeform input[type=text],#subscribe-popup .subscribeform input[type=email],#subscribe-popup .subscribeform input[type=text]{border-color:var(--fs-white)}.subscribeform input::placeholder{color:transparent}.subscribeform input:focus+label,.subscribeform input:not(:placeholder-shown)+label{transform:scale(.71429) translate(21px,-12.6px);padding:0 4.2px;height:25.2px;background:var(--fs-white)}.subscribeform input:-webkit-autofill+label{transform:scale(.71429) translate(21px,-12.6px);padding:0 4.2px;height:25.2px;background:var(--fs-white)}.subscribeform button{background:var(--fs-blue);color:var(--fs-white);border:none;font-size:16px;line-height:22px;font-weight:700;transition:background .3s;padding:11px 25px;text-align:center;display:block;box-sizing:border-box;width:100%;border-radius:22px;text-transform:lowercase}.subscribeform button:hover{background:var(--fs-darkblue)}#footer .subscribeform button,#subscribe-popup .subscribeform button,.bodysection-yellow .subscribeform button,.subscribebox .subscribeform button{background:var(--fs-yellow)}#footer .subscribeform button:hover,#subscribe-popup .subscribeform button:hover,.bodysection-yellow .subscribeform button:hover,.subscribebox .subscribeform button:hover{background:var(--fs-darkyellow)}#footer{padding:60px 0;background:var(--fs-blue);color:var(--fs-white);font-size:16px;line-height:1.5}#footer a{text-decoration:none;color:inherit;font-weight:inherit}#footer a:active,#footer a:hover{text-decoration:underline}#footer .ftcols{margin-left:-80px;display:flex}#footer .ftcols .ftcol{width:20%}#footer .ftcols .ftcol-a{margin-left:80px}#footer .ftcols .ftcol-subscribe{width:40%}#footer h2{font-size:28px;line-height:34px;margin:0 0 30px;text-align:inherit}#footer .ftmenu{margin:0;padding:0;list-style:none}#footer .ftmenu li{margin:0 0 8px;padding:0}#footer .ftmenu li:last-child{margin-bottom:0}#footer .ftsmall{font-size:16px;line-height:24px;margin-top:40px}#footer .ftsmall ul{margin:0 0 0 -40px;row-gap:15px;padding:0;list-style:none;display:flex;flex-wrap:wrap}#footer .ftsmall ul li{margin:0 0 0 40px;padding:0}#footer .ftsmall ul li.right{margin-left:auto;padding-left:40px}@media screen and (max-width:1279px){#footer .ftcols{flex-wrap:wrap;justify-content:center;row-gap:40px}#footer .ftcols .ftcol{width:33.333333333333333%}#footer .ftcols .ftcol-subscribe{width:100%}}@media screen and (max-width:767px){.catbuttons>ul{margin-left:-15px;row-gap:15px}.catbuttons>ul>li{margin-left:15px}#footer{padding:40px 0}#footer .ftcols{display:block}#footer .ftcols .ftcol{width:100%;text-align:center;margin-top:40px}#footer .ftsmall{margin-top:40px}#footer .ftsmall ul{display:block;margin-left:0;text-align:center}#footer .ftsmall ul li{margin-left:0;margin-bottom:15px}#footer .ftsmall ul li.right{margin-left:0;padding-left:0}#footer .ftsmall ul li:last-child{margin-bottom:0}}.cicon{display:inline-block;width:1em;height:1em;stroke-width:0;stroke:currentColor;fill:currentColor;overflow:visible!important}.icon-twitter{width:1.1669921875em}.icon-pinterest{width:.7998046875em}.icon-facebook{width:.5498046875em}.icon-youtube{width:1.2222222222em}.icon-angle-down{width:.625em}.icon-tiktok{width:.9287109375em}.icon-arrow-down-solid{width:.75em}#fullwrap .notop>:first-child{margin-top:0}#fullwrap .notop>:first-child>:first-child{margin-top:0}#fullwrap .notop>:first-child>:first-child>:first-child{margin-top:0}#fullwrap .notop>:first-child>:first-child>:first-child>:first-child{margin-top:0}#fullwrap .notop>:first-child>:first-child>:first-child>:first-child>:first-child{margin-top:0}#fullwrap .notop>:first-child>:first-child>:first-child>:first-child>:first-child>:first-child{margin-top:0}#fullwrap .notop>:first-child>:first-child>:first-child>:first-child>:first-child>:first-child>:first-child{margin-top:0}#fullwrap .notop>:first-child>:first-child>:first-child>:first-child>:first-child>:first-child>:first-child>:first-child{margin-top:0}#fullwrap .notop>:first-child>:first-child>:first-child>:first-child>:first-child>:first-child>:first-child>:first-child>:first-child{margin-top:0}#fullwrap .notop>:first-child>:first-child>:first-child>:first-child>:first-child>:first-child>:first-child>:first-child>:first-child>:first-child{margin-top:0}#fullwrap .notop>:first-child>:first-child>:first-child>:first-child>:first-child>:first-child>:first-child>:first-child>:first-child>:first-child>:first-child{margin-top:0}#fullwrap .nobot>:last-child{margin-bottom:0}#fullwrap .nobot>:last-child>:last-child{margin-bottom:0}#fullwrap .nobot>:last-child>:last-child>:last-child{margin-bottom:0}#fullwrap .nobot>:last-child>:last-child>:last-child>:last-child{margin-bottom:0}#fullwrap .nobot>:last-child>:last-child>:last-child>:last-child>:last-child{margin-bottom:0}#fullwrap .nobot>:last-child>:last-child>:last-child>:last-child>:last-child>:last-child{margin-bottom:0}#fullwrap .nobot>:last-child>:last-child>:last-child>:last-child>:last-child>:last-child>:last-child{margin-bottom:0}#fullwrap .nobot>:last-child>:last-child>:last-child>:last-child>:last-child>:last-child>:last-child>:last-child{margin-bottom:0}#fullwrap .nobot>:last-child>:last-child>:last-child>:last-child>:last-child>:last-child>:last-child>:last-child>:last-child{margin-bottom:0}#fullwrap .nobot>:last-child>:last-child>:last-child>:last-child>:last-child>:last-child>:last-child>:last-child>:last-child>:last-child{margin-bottom:0}#fullwrap .nobot>:last-child>:last-child>:last-child>:last-child>:last-child>:last-child>:last-child>:last-child>:last-child>:last-child>:last-child{margin-bottom:0}#fullwrap .wprm-rating-stars{display:block}#fullwrap .wprm-recipe-rating{padding:0;line-height:16px}#fullwrap .wprm-rating-star{display:inline-block;vertical-align:top;padding:0 1px}#fullwrap .wprm-rating-star:first-child{padding-left:0!important}#fullwrap .wprm-rating-star:last-child{padding-right:0!important}#fullwrap .wprm-rating-star svg{width:16px;height:16px;margin:0!important;display:block}.jquery-modal .modal{z-index:100000002}.jquery-modal .modal{width:100%;max-width:600px;background:0 0;box-shadow:none;padding:0}.jquery-modal .modal-a{background:var(--fs-blue);padding:60px;border-radius:20px;color:var(--fs-white)}.jquery-modal .modal .closebtn{position:absolute;right:20px;top:10px;color:var(--fs-white)!important}.jquery-modal .modal h2{font-size:28px;line-height:34px;margin-bottom:30px;margin-top:0}@media screen and (max-width:767px){.jquery-modal .modal-a{padding:55px 20px 40px}.jquery-modal .modal{max-width:420px}.jquery-modal .modal h2{font-size:24px;line-height:30px;padding:0}}:root{--mv-create-radius:0}.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-ratings-container svg .wprm-star-full{fill:#fbbb29}.wprm-comment-ratings-container svg .wprm-star-empty{stroke:#fbbb29}img#wpstats{display:none}body{--tr-star-color:#F2B955}[inert]{pointer-events:none;cursor:default}[inert],[inert] *{user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.fluid-width-video-wrapper{width:100%;position:relative;padding:0}.fluid-width-video-wrapper embed,.fluid-width-video-wrapper iframe,.fluid-width-video-wrapper object{position:absolute;top:0;left:0;width:100%;height:100%}#wprm-recipe-user-rating-0 .wprm-rating-star.wprm-rating-star-full svg *{fill:var(--fs-yellow)}#wprm-recipe-user-rating-0 .wprm-rating-star.wprm-rating-star-33 svg *{fill:url(#wprm-recipe-user-rating-0-33)}#wprm-recipe-user-rating-0 .wprm-rating-star.wprm-rating-star-50 svg *{fill:url(#wprm-recipe-user-rating-0-50)}#wprm-recipe-user-rating-0 .wprm-rating-star.wprm-rating-star-66 svg *{fill:url(#wprm-recipe-user-rating-0-66)}linearGradient#wprm-recipe-user-rating-0-33 stop{stop-color:var(--fs-yellow)}linearGradient#wprm-recipe-user-rating-0-50 stop{stop-color:var(--fs-yellow)}linearGradient#wprm-recipe-user-rating-0-66 stop{stop-color:var(--fs-yellow)}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 fieldset.wprm-comment-ratings-container span{left:inherit;right:0}.rtl fieldset.wprm-comment-ratings-container span svg{transform:scale(-1,1)}.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 ul{-webkit-margin-before:0;-webkit-margin-after:0;-webkit-padding-start:0;margin:0;padding:0}.wprm-recipe li{font-size:1em;margin:0 0 0 32px;padding:0}.wprm-recipe p{font-size:1em;margin:0;padding:0}.wprm-recipe li,.wprm-recipe li.wprm-recipe-instruction{list-style-position:outside}.wprm-recipe li:before{display:none}.wprm-recipe h1,.wprm-recipe h2,.wprm-recipe h3,.wprm-recipe h4{clear:none;font-variant:normal;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}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-recipe-block-container-inline{display:inline-block;margin-right:1.2em}.rtl .wprm-recipe-block-container-inline{margin-right:0;margin-left:1.2em}.wprm-recipe-details-container-inline{display:inline}.wprm-recipe-details-unit{font-size:.8em}@media only screen and (max-width:600px){.wprm-recipe-details-unit{font-size:1em}}.wprm-block-text-normal{font-weight:400;font-style:normal;text-transform:none}.wprm-block-text-bold{font-weight:700!important}.wprm-align-left{text-align:left}.wprm-recipe-header.wprm-header-has-actions{display:flex;flex-wrap:wrap;align-items:center}.wprm-recipe-header .wprm-unit-conversion-container{text-transform:none;font-style:normal;font-weight:400;opacity:1;font-size:16px}.wprm-recipe-image img{display:block;margin:0 auto}.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-nutrition-label-container-simple .wprm-nutrition-label-text-nutrition-unit{font-size:.85em}.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}.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-user-rating.wprm-user-rating-allowed .wprm-rating-star{cursor:pointer}.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::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}.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}.wprm-add-to-collection-tooltip-container{padding:3px}.wprm-add-to-collection-tooltip-container select.wprm-add-to-collection-tooltip{display:block;width:100%;margin:10px 0;padding:3px}.wprm-recipe-template-forktospoon-recipe .forktospoon-recipe-wrap{background:var(--fs-paleblue);padding:40px;font-size:18px;position:relative}.wprm-recipe-template-forktospoon-recipe .fts-recipe-top{display:flex}.wprm-recipe-template-forktospoon-recipe .wprm-recipe-image{margin-right:20px;flex-shrink:0;width:160px}@media screen and (max-width:767px){.wprm-recipe-template-forktospoon-recipe .forktospoon-recipe-wrap{padding:30px 20px}.wprm-recipe-template-forktospoon-recipe .fts-recipe-top{display:block}.wprm-recipe-template-forktospoon-recipe .wprm-recipe-image{display:block;margin:0 auto 20px}}.wprm-recipe-template-forktospoon-recipe h2{margin:0 0 8px;font-size:28px;line-height:34px}.wprm-recipe-template-forktospoon-recipe .wprm-recipe-rating{display:flex;flex-wrap:wrap;align-items:center;row-gap:7px;margin-left:-10px}.wprm-recipe-template-forktospoon-recipe .wprm-recipe-rating>div{margin-left:10px}.wprm-recipe-template-forktospoon-recipe .wprm-recipe-rating .starwrap,.wprm-recipe-template-forktospoon-recipe .wprm-recipe-rating .wprm-recipe-rating-details{margin-left:10px;font-size:inherit}.wprm-recipe-template-forktospoon-recipe .wprm-recipe-rating .wprm-recipe-rating-details{font-size:14px;line-height:20px}.wprm-recipe-template-forktospoon-recipe .wprm-recipe-author-container{display:block;margin-top:10px;font-size:16px;line-height:28px}.wprm-recipe-template-forktospoon-recipe .wprm-recipe-meta-container{display:block;margin-top:10px;font-size:16px;line-height:28px}.wprm-recipe-template-forktospoon-recipe .wprm-recipe-author-container+.wprm-recipe-meta-container{margin-top:0}.wprm-recipe-template-forktospoon-recipe .fts-recipe-buttons,.wprm-recipe-template-forktospoon-recipe .wprm-recipe-equipment-container,.wprm-recipe-template-forktospoon-recipe .wprm-recipe-ingredients-container,.wprm-recipe-template-forktospoon-recipe .wprm-recipe-instructions-container,.wprm-recipe-template-forktospoon-recipe .wprm-recipe-nutrition-container,.wprm-recipe-template-forktospoon-recipe .wprm-recipe-summary-wrap,.wprm-recipe-template-forktospoon-recipe .wprm-recipe-video-container{margin-top:30px}.wprm-recipe-template-forktospoon-recipe .fts-recipe-buttons{display:flex;flex-wrap:wrap;margin-left:-20px;row-gap:20px}.wprm-recipe-template-forktospoon-recipe .fts-recipe-buttons .sharebuttons,.wprm-recipe-template-forktospoon-recipe .fts-recipe-buttons .wprm-recipe-print{margin-left:20px}.wprm-recipe-template-forktospoon-recipe .fts-recipe-buttons .sharebuttons>ul{margin-left:-20px}.wprm-recipe-template-forktospoon-recipe h3{margin:0 0 20px!important;font-size:24px!important;line-height:30px!important}.wprm-recipe-template-forktospoon-recipe h4{margin:15px 0 10px!important;font-size:18px!important;line-height:24px!important;font-weight:700!important;font-family:inherit;letter-spacing:0;text-transform:none}.wprm-recipe-template-forktospoon-recipe span.wprm-recipe-servings{font-weight:inherit}.wprm-recipe-template-forktospoon-recipe .wprm-recipe-details-unit{font-size:inherit}.wprm-recipe-template-forktospoon-recipe .wprm-recipe-ingredients-header.wprm-header-has-actions{display:flex;flex-wrap:wrap;row-gap:10px;align-items:center}.wprm-recipe-template-forktospoon-recipe .wprm-recipe-ingredients-header.wprm-header-has-actions>span.ing{flex-grow:1}.wprm-recipe-template-forktospoon-recipe .wprm-recipe-ingredients-header.wprm-header-has-actions button{font-size:12px;line-height:18px;text-transform:uppercase;letter-spacing:.036em;padding:3px 8px;font-weight:500}.wprm-recipe-template-forktospoon-recipe .wprm-recipe-ingredients-header.wprm-header-has-actions>div{margin-left:3px}.wprm-recipe-template-forktospoon-recipe .wprm-unit-conversion-container{color:#101010!important}@media screen and (max-width:767px){.wprm-recipe-template-forktospoon-recipe h2{font-size:28px;line-height:36px}.wprm-recipe-template-forktospoon-recipe h3{font-size:22px!important;line-height:28px!important}.wprm-recipe-template-forktospoon-recipe .wprm-recipe-ingredients-header.wprm-header-has-actions>span.ing{flex-grow:1}.wprm-recipe-template-forktospoon-recipe .wprm-recipe-ingredients-header.wprm-header-has-actions>div{margin-left:0}.wprm-recipe-template-forktospoon-recipe .wprm-recipe-ingredients-header.wprm-header-has-actions>div+div{margin-left:3px}}.wprm-recipe-template-forktospoon-recipe .wprm-recipe-ingredients{margin:0;padding:0}.wprm-recipe-template-forktospoon-recipe .wprm-recipe-ingredients li{margin:0 0 8px;padding:0 0 0 40px;list-style:none!important;position:relative;line-height:28px}.wprm-recipe-template-forktospoon-recipe .wprm-recipe-ingredients li input[type=checkbox]+span{position:relative;display:block;position:absolute;top:4px;left:4px;width:20px;height:20px;border:none;box-sizing:border-box;background:var(--fs-white);border:1px solid var(--fs-black);cursor:pointer}.wprm-recipe-template-forktospoon-recipe .wprm-recipe-ingredients li input[type=checkbox]{opacity:0;position:absolute;top:4px;left:4px;width:20px;height:20px;z-index:1}.wprm-recipe-template-forktospoon-recipe .wprm-recipe-ingredients li input[type=checkbox]:focus+span{box-shadow:0 0 3px var(--fs-black)}.wprm-recipe-template-forktospoon-recipe .wprm-recipe-ingredients li input[type=checkbox]:checked+span:after{content:"";display:block;position:absolute;top:2px;left:2px;width:14px;height:14px;background-size:100%;background-repeat:no-repeat;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath fill='%23000' d='M27.241 5.217l-16.44 16.44-6.041-6.041c-0.293-0.293-0.768-0.293-1.061 0l-1.768 1.768c-0.293 0.293-0.293 0.768 0 1.061l8.339 8.339c0.293 0.293 0.768 0.293 1.061 0l18.738-18.738c0.293-0.293 0.293-0.768 0-1.061l-1.768-1.768c-0.293-0.293-0.768-0.293-1.061 0z'%3E%3C/path%3E%3C/svg%3E%0A")}.wprm-recipe-template-forktospoon-recipe .wprm-recipe-ingredients li.strikeout{text-decoration:line-through}.wprm-recipe-template-forktospoon-recipe .wprm-recipe-instructions-header.wprm-header-has-actions{display:flex;flex-wrap:wrap;row-gap:10px;align-items:center}.wprm-recipe-template-forktospoon-recipe .wprm-recipe-instructions-header.wprm-header-has-actions>span.ing{flex-grow:1}.wprm-recipe-template-forktospoon-recipe .wprm-recipe-instructions-header.wprm-header-has-actions button{font-size:16px;line-height:20px;padding:7px 0;width:34px}.wprm-recipe-template-forktospoon-recipe .wprm-recipe-instructions-header.wprm-header-has-actions>div{margin-left:3px}.wprm-recipe-template-forktospoon-recipe .wprm-recipe-instructions-header.wprm-header-has-actions button .cicon{display:block;height:20px;margin:0 auto}.wprm-recipe-template-forktospoon-recipe .wprm-recipe-instructions-container .wprm-recipe-instruction-media{margin:30px 0}.wprm-recipe-template-forktospoon-recipe .wprm-recipe-instructions-container li:last-child .wprm-recipe-instruction-media{margin-bottom:0}.wprm-recipe-template-forktospoon-recipe .wprm-recipe-instructions-container .wprm-recipe-instruction-media>*{vertical-align:bottom}.wprm-recipe-template-forktospoon-recipe ul.wprm-recipe-instructions{padding-left:29px}.wprm-recipe-template-forktospoon-recipe ul.wprm-recipe-instructions>li{margin:0 0 1em;padding-left:11px}.wprm-recipe-template-forktospoon-recipe ul.wprm-recipe-instructions>li:last-child{margin-bottom:0}.wprm-recipe-template-forktospoon-recipe ul.wprm-recipe-instructions>li p{margin:0}.wprm-recipe-template-forktospoon-recipe .wprm-recipe-equipment-container ul{margin:10px 0;padding:0 0 0 1.6em}.wprm-recipe-template-forktospoon-recipe .wprm-recipe-equipment-container li{margin:0;padding:0 0 0 .3125em}.wprm-recipe-template-forktospoon-recipe .wprm-recipe-nutrition-container{font-size:16px;line-height:28px}.wprm-recipe-template-forktospoon-recipe .wprm-nutrition-label-container-simple .wprm-nutrition-label-text-nutrition-unit{font-size:inherit}.wprm-recipe-template-forktospoon-recipe .wprm-nutrition-label-container-simple .wprm-nutrition-label-text-nutrition-container{display:inline-block;margin-right:20px}</style>
<meta name="description" content="Air Fryer Parmesan Tomatoes are amazing! If you are looking for the perfect summer-baked tomato recipe, this one is the one, it's so easy to make." />
<link rel="canonical" href="https://forktospoon.com/air-fryer-parmesan-tomatoes/" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Air Fryer Parmesan Tomatoes - Fork To Spoon" />
<meta property="og:description" content="Air Fryer Parmesan Tomatoes are amazing! If you are looking for the perfect summer-baked tomato recipe, this one is the one, it's so easy to make." />
<meta property="og:url" content="https://forktospoon.com/air-fryer-parmesan-tomatoes/" />
<meta property="og:site_name" content="Fork To Spoon" />
<meta property="article:published_time" content="2021-07-10T23:44:41+00:00" />
<meta property="article:modified_time" content="2023-06-26T17:38:15+00:00" />
<meta property="og:image" content="https://forktospoon.com/wp-content/uploads/2021/07/Air-Fryer-Parmesan-Tomatoes.jpg" />
<meta property="og:image:width" content="940" />
<meta property="og:image:height" content="788" />
<meta property="og:image:type" content="image/jpeg" />
<meta name="author" content="Laurie" />
<meta name="twitter:label1" content="Written by" />
<meta name="twitter:data1" content="Laurie" />
<meta name="twitter:label2" content="Est. reading time" />
<meta name="twitter:data2" content="8 minutes" />
<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"Article","@id":"https://forktospoon.com/air-fryer-parmesan-tomatoes/#article","isPartOf":{"@id":"https://forktospoon.com/air-fryer-parmesan-tomatoes/"},"author":{"name":"Laurie","@id":"https://forktospoon.com/#/schema/person/8840553f0af3b05ae37fa4e6423ce0a8"},"headline":"Air Fryer Parmesan Tomatoes","datePublished":"2021-07-10T23:44:41+00:00","dateModified":"2023-06-26T17:38:15+00:00","wordCount":1572,"commentCount":0,"publisher":{"@id":"https://forktospoon.com/#organization"},"image":{"@id":"https://forktospoon.com/air-fryer-parmesan-tomatoes/#primaryimage"},"thumbnailUrl":"https://forktospoon.com/wp-content/uploads/2021/07/Air-Fryer-Parmesan-Tomatoes.jpg","keywords":["Air Fryer Appetizers","Air Fryer Vegetables","Air Fryer Vegetables"],"articleSection":["Appetizers","Vegetables"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https://forktospoon.com/air-fryer-parmesan-tomatoes/#respond"]}]},{"@type":"WebPage","@id":"https://forktospoon.com/air-fryer-parmesan-tomatoes/","url":"https://forktospoon.com/air-fryer-parmesan-tomatoes/","name":"Air Fryer Parmesan Tomatoes - Fork To Spoon","isPartOf":{"@id":"https://forktospoon.com/#website"},"primaryImageOfPage":{"@id":"https://forktospoon.com/air-fryer-parmesan-tomatoes/#primaryimage"},"image":{"@id":"https://forktospoon.com/air-fryer-parmesan-tomatoes/#primaryimage"},"thumbnailUrl":"https://forktospoon.com/wp-content/uploads/2021/07/Air-Fryer-Parmesan-Tomatoes.jpg","datePublished":"2021-07-10T23:44:41+00:00","dateModified":"2023-06-26T17:38:15+00:00","description":"Air Fryer Parmesan Tomatoes are amazing! If you are looking for the perfect summer-baked tomato recipe, this one is the one, it's so easy to make.","breadcrumb":{"@id":"https://forktospoon.com/air-fryer-parmesan-tomatoes/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://forktospoon.com/air-fryer-parmesan-tomatoes/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https://forktospoon.com/air-fryer-parmesan-tomatoes/#primaryimage","url":"https://forktospoon.com/wp-content/uploads/2021/07/Air-Fryer-Parmesan-Tomatoes.jpg","contentUrl":"https://forktospoon.com/wp-content/uploads/2021/07/Air-Fryer-Parmesan-Tomatoes.jpg","width":940,"height":788,"caption":"Air Fryer Parmesan Tomatoes"},{"@type":"BreadcrumbList","@id":"https://forktospoon.com/air-fryer-parmesan-tomatoes/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://forktospoon.com/"},{"@type":"ListItem","position":2,"name":"Recipes","item":"https://forktospoon.com/category/recipes/"},{"@type":"ListItem","position":3,"name":"Sides","item":"https://forktospoon.com/category/recipes/sides/"},{"@type":"ListItem","position":4,"name":"Vegetables","item":"https://forktospoon.com/category/recipes/sides/vegetables/"},{"@type":"ListItem","position":5,"name":"Air Fryer Parmesan Tomatoes"}]},{"@type":"WebSite","@id":"https://forktospoon.com/#website","url":"https://forktospoon.com/","name":"Fork To Spoon","description":"Your Guide for Everything Air Fryer and Instant Pot","publisher":{"@id":"https://forktospoon.com/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://forktospoon.com/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https://forktospoon.com/#organization","name":"Fork To Spoon","url":"https://forktospoon.com/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https://forktospoon.com/#/schema/logo/image/","url":"https://forktospoon.com/wp-content/uploads/2019/06/logo.png","contentUrl":"https://forktospoon.com/wp-content/uploads/2019/06/logo.png","width":427,"height":427,"caption":"Fork To Spoon"},"image":{"@id":"https://forktospoon.com/#/schema/logo/image/"}},{"@type":"Person","@id":"https://forktospoon.com/#/schema/person/8840553f0af3b05ae37fa4e6423ce0a8","name":"Laurie","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https://forktospoon.com/#/schema/person/image/","url":"https://secure.gravatar.com/avatar/8c80a26cb58e128ccfe666a71afdb637?s=96&d=mm&r=g","contentUrl":"https://secure.gravatar.com/avatar/8c80a26cb58e128ccfe666a71afdb637?s=96&d=mm&r=g","caption":"Laurie"},"sameAs":["granitestatesavers@gmail.com"]},{"@type":"Recipe","name":"Air Fryer Parmesan Tomatoes","author":{"@type":"Person","name":"Fork To Spoon"},"description":"Air Fryer Parmesan Tomatoes are amazing! If you are looking for the perfect summer-baked tomato recipe, this one is the one, and it's so easy to make and so flavorful!","datePublished":"2021-07-10T19:44:41+00:00","image":["https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes.png","https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-500x500.png","https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-500x375.png","https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-480x270.png"],"recipeYield":["6","6 Servings"],"prepTime":"PT10M","cookTime":"PT10M","totalTime":"PT20M","recipeIngredient":["3 large tomatoes (Cut in half)","1 cup bread crumbs","1/4 cup parmesan cheese (grated)","1 teaspoon garlic (minced)","1 tablespoon olive oil","1/2 teaspoon dried basil","1/2 teaspoon dried parsley","1/2 teaspoon dried oregano","1/2 teaspoon dried dill","1 teaspoon salt","1/2 teaspoon black pepper"],"recipeInstructions":[{"@type":"HowToStep","text":"In a small mixing bowl, mix the bread crumbs, parmesan cheese, minced garlic, olive oil, basil, parsley, oregano, dill, salt, and black pepper. Mix well.","name":"In a small mixing bowl, mix the bread crumbs, parmesan cheese, minced garlic, olive oil, basil, parsley, oregano, dill, salt, and black pepper. Mix well.","url":"https://forktospoon.com/air-fryer-parmesan-tomatoes/#wprm-recipe-180103-step-0-0"},{"@type":"HowToStep","text":"Slice your tomatoes in half, and top with the breadcrumb mixture. Set into the air fryer at 330 degrees F, air fryer sitting for 6 to 10 minutes, or until the tomatoes are perfectly roasted.","name":"Slice your tomatoes in half, and top with the breadcrumb mixture. Set into the air fryer at 330 degrees F, air fryer sitting for 6 to 10 minutes, or until the tomatoes are perfectly roasted.","url":"https://forktospoon.com/air-fryer-parmesan-tomatoes/#wprm-recipe-180103-step-0-1"},{"@type":"HowToStep","text":"Plate, serve, and enjoy!","name":"Plate, serve, and enjoy!","url":"https://forktospoon.com/air-fryer-parmesan-tomatoes/#wprm-recipe-180103-step-0-2"}],"aggregateRating":{"@type":"AggregateRating","ratingValue":"5","ratingCount":"1"},"recipeCategory":["Side Dish"],"recipeCuisine":["American"],"keywords":"Air Fryer Parmeasn Tomatoes","nutrition":{"@type":"NutritionInformation","servingSize":"1 Serving","calories":"126 kcal","carbohydrateContent":"17 g","proteinContent":"5 g","fatContent":"5 g","saturatedFatContent":"1 g","cholesterolContent":"3 mg","sodiumContent":"591 mg","fiberContent":"2 g","sugarContent":"4 g","unsaturatedFatContent":"3 g"},"@id":"https://forktospoon.com/air-fryer-parmesan-tomatoes/#recipe","isPartOf":{"@id":"https://forktospoon.com/air-fryer-parmesan-tomatoes/#article"},"mainEntityOfPage":"https://forktospoon.com/air-fryer-parmesan-tomatoes/"}]}</script>
<!-- / Yoast SEO plugin. -->
<link rel='dns-prefetch' href='//scripts.mediavine.com' />
<link rel='dns-prefetch' href='//plausible.io' />
<link rel='dns-prefetch' href='//groot.mailerlite.com' />
<link rel='dns-prefetch' href='//stats.wp.com' />
<link rel='dns-prefetch' href='//fonts.gstatic.com' />
<link rel='dns-prefetch' href='//googleadapis.l.google.com' />
<link rel='dns-prefetch' href='//gstaticadssl.l.google.com' />
<link rel="alternate" type="application/rss+xml" title="Fork To Spoon » Feed" href="https://forktospoon.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="Fork To Spoon » Comments Feed" href="https://forktospoon.com/comments/feed/" />
<link rel="alternate" type="application/rss+xml" title="Fork To Spoon » Air Fryer Parmesan Tomatoes Comments Feed" href="https://forktospoon.com/air-fryer-parmesan-tomatoes/feed/" />
<link rel="alternate" type="application/rss+xml" title="Fork To Spoon » Stories Feed" href="https://forktospoon.com/web-stories/feed/"> <!-- This site uses the Google Analytics by MonsterInsights plugin v8.19 - Using Analytics tracking - https://www.monsterinsights.com/ -->
<script src="//www.googletagmanager.com/gtag/js?id=G-TLPRF9VXM1" data-cfasync="false" data-wpfc-render="false" type="text/javascript" async></script>
<script data-cfasync="false" data-wpfc-render="false" type="text/javascript">
var mi_version = '8.19';
var mi_track_user = true;
var mi_no_track_reason = '';
var disableStrs = [
'ga-disable-G-TLPRF9VXM1',
];
/* Function to detect opted out users */
function __gtagTrackerIsOptedOut() {
for (var index = 0; index < disableStrs.length; index++) {
if (document.cookie.indexOf(disableStrs[index] + '=true') > -1) {
return true;
}
}
return false;
}
/* Disable tracking if the opt-out cookie exists. */
if (__gtagTrackerIsOptedOut()) {
for (var index = 0; index < disableStrs.length; index++) {
window[disableStrs[index]] = true;
}
}
/* Opt-out function */
function __gtagTrackerOptout() {
for (var index = 0; index < disableStrs.length; index++) {
document.cookie = disableStrs[index] + '=true; expires=Thu, 31 Dec 2099 23:59:59 UTC; path=/';
window[disableStrs[index]] = true;
}
}
if ('undefined' === typeof gaOptout) {
function gaOptout() {
__gtagTrackerOptout();
}
}
window.dataLayer = window.dataLayer || [];
window.MonsterInsightsDualTracker = {
helpers: {},
trackers: {},
};
if (mi_track_user) {
function __gtagDataLayer() {
dataLayer.push(arguments);
}
function __gtagTracker(type, name, parameters) {
if (!parameters) {
parameters = {};
}
if (parameters.send_to) {
__gtagDataLayer.apply(null, arguments);
return;
}
if (type === 'event') {
parameters.send_to = monsterinsights_frontend.v4_id;
var hookName = name;
if (typeof parameters['event_category'] !== 'undefined') {
hookName = parameters['event_category'] + ':' + name;
}
if (typeof MonsterInsightsDualTracker.trackers[hookName] !== 'undefined') {
MonsterInsightsDualTracker.trackers[hookName](parameters);
} else {
__gtagDataLayer('event', name, parameters);
}
} else {
__gtagDataLayer.apply(null, arguments);
}
}
__gtagTracker('js', new Date());
__gtagTracker('set', {
'developer_id.dZGIzZG': true,
});
__gtagTracker('config', 'G-TLPRF9VXM1', {"forceSSL":"true","anonymize_ip":"true"} );
window.gtag = __gtagTracker; (function () {
/* https://developers.google.com/analytics/devguides/collection/analyticsjs/ */
/* ga and __gaTracker compatibility shim. */
var noopfn = function () {
return null;
};
var newtracker = function () {
return new Tracker();
};
var Tracker = function () {
return null;
};
var p = Tracker.prototype;
p.get = noopfn;
p.set = noopfn;
p.send = function () {
var args = Array.prototype.slice.call(arguments);
args.unshift('send');
__gaTracker.apply(null, args);
};
var __gaTracker = function () {
var len = arguments.length;
if (len === 0) {
return;
}
var f = arguments[len - 1];
if (typeof f !== 'object' || f === null || typeof f.hitCallback !== 'function') {
if ('send' === arguments[0]) {
var hitConverted, hitObject = false, action;
if ('event' === arguments[1]) {
if ('undefined' !== typeof arguments[3]) {
hitObject = {
'eventAction': arguments[3],
'eventCategory': arguments[2],
'eventLabel': arguments[4],
'value': arguments[5] ? arguments[5] : 1,
}
}
}
if ('pageview' === arguments[1]) {
if ('undefined' !== typeof arguments[2]) {
hitObject = {
'eventAction': 'page_view',
'page_path': arguments[2],
}
}
}
if (typeof arguments[2] === 'object') {
hitObject = arguments[2];
}
if (typeof arguments[5] === 'object') {
Object.assign(hitObject, arguments[5]);
}
if ('undefined' !== typeof arguments[1].hitType) {
hitObject = arguments[1];
if ('pageview' === hitObject.hitType) {
hitObject.eventAction = 'page_view';
}
}
if (hitObject) {
action = 'timing' === arguments[1].hitType ? 'timing_complete' : hitObject.eventAction;
hitConverted = mapArgs(hitObject);
__gtagTracker('event', action, hitConverted);
}
}
return;
}
function mapArgs(args) {
var arg, hit = {};
var gaMap = {
'eventCategory': 'event_category',
'eventAction': 'event_action',
'eventLabel': 'event_label',
'eventValue': 'event_value',
'nonInteraction': 'non_interaction',
'timingCategory': 'event_category',
'timingVar': 'name',
'timingValue': 'value',
'timingLabel': 'event_label',
'page': 'page_path',
'location': 'page_location',
'title': 'page_title',
};
for (arg in args) {
if (!(!args.hasOwnProperty(arg) || !gaMap.hasOwnProperty(arg))) {
hit[gaMap[arg]] = args[arg];
} else {
hit[arg] = args[arg];
}
}
return hit;
}
try {
f.hitCallback();
} catch (ex) {
}
};
__gaTracker.create = newtracker;
__gaTracker.getByName = newtracker;
__gaTracker.getAll = function () {
return [];
};
__gaTracker.remove = noopfn;
__gaTracker.loaded = true;
window['__gaTracker'] = __gaTracker;
})();
} else {
console.log("");
(function () {
function __gtagTracker() {
return null;
}
window['__gtagTracker'] = __gtagTracker;
window['gtag'] = __gtagTracker;
})();
}
</script>
<!-- / Google Analytics by MonsterInsights -->
<style type="text/css"></style>
<style id='wp-block-library-inline-css' type='text/css'></style>
<style id='wp-block-library-theme-inline-css' type='text/css'></style>
<style id='safe-svg-svg-icon-style-inline-css' type='text/css'></style>
<style id='global-styles-inline-css' type='text/css'></style>
<script type='text/javascript' src='https://forktospoon.com/wp-content/plugins/google-analytics-for-wordpress/assets/js/frontend-gtag.min.js?ver=8.19' id='monsterinsights-frontend-script-js' defer></script>
<script data-cfasync="false" data-wpfc-render="false" type="text/javascript" id='monsterinsights-frontend-script-js-extra'>/* <![CDATA[ */
var monsterinsights_frontend = {"js_events_tracking":"true","download_extensions":"doc,pdf,ppt,zip,xls,docx,pptx,xlsx","inbound_paths":"[]","home_url":"https:\/\/forktospoon.com","hash_tracking":"false","v4_id":"G-TLPRF9VXM1"};/* ]]> */
</script>
<script type='text/javascript' src='https://forktospoon.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.0' id='jquery-core-js'></script>
<script type="rocketlazyloadscript" data-rocket-type='text/javascript' data-rocket-src='https://forktospoon.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1' id='jquery-migrate-js' defer></script>
<script type='text/javascript' async="async" data-noptimize="1" data-cfasync="false" src='https://scripts.mediavine.com/tags/fork-to-spoon.js?ver=6.3.1' id='mv-script-wrapper-js'></script>
<script type="rocketlazyloadscript" data-rocket-type='text/javascript' defer data-domain='forktospoon.com' data-api='https://plausible.io/api/event' data-rocket-src='https://plausible.io/js/plausible.outbound-links.js?ver=1.3.4' id='plausible'></script>
<script type="rocketlazyloadscript" id="plausible-analytics-js-after" data-rocket-type="text/javascript">
window.plausible = window.plausible || function() { (window.plausible.q = window.plausible.q || []).push(arguments) }
</script>
<link rel="https://api.w.org/" href="https://forktospoon.com/wp-json/" /><link rel="alternate" type="application/json" href="https://forktospoon.com/wp-json/wp/v2/posts/89112" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://forktospoon.com/xmlrpc.php?rsd" />
<link rel='shortlink' href='https://forktospoon.com/?p=89112' />
<link rel="alternate" type="application/json+oembed" href="https://forktospoon.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fforktospoon.com%2Fair-fryer-parmesan-tomatoes%2F" />
<link rel="alternate" type="text/xml+oembed" href="https://forktospoon.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fforktospoon.com%2Fair-fryer-parmesan-tomatoes%2F&format=xml" />
<style></style>
<style type="text/css"></style><style type="text/css"></style><script type="rocketlazyloadscript" data-minify="1" data-rocket-type="text/javascript" async="" data-rocket-src="https://forktospoon.com/wp-content/cache/min/1/wp-content/plugins/yummly-rich-recipes/js/yrecipe_print.js?ver=1696631081"></script>
<style></style>
<style type="text/css"></style>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png?v=2023">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png?v=2023">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png?v=2023">
<link rel="manifest" href="/site.webmanifest?v=2023">
<link rel="shortcut icon" href="/favicon.ico?v=2023">
<meta name="msapplication-TileColor" content="#1e5da2">
<meta name="theme-color" content="#ffffff">
<script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script>
<script>
window.googletag = window.googletag || {cmd: []};
googletag.cmd.push(function() {
googletag.defineSlot('/18190176,22636329519/MCM_Validation',
[1, 1], 'div-gpt-ad-1614955491295-0').addService(googletag.pubads());
googletag.pubads().enableSingleRequest();
googletag.enableServices();
});
</script>
<div id='div-gpt-ad-1614955491295-0'>
<script data-no-optimize='1'>
googletag.cmd.push(function() {
if (googletag.pubads().isInitialLoadDisabled()) {
googletag.display('div-gpt-ad-1614955491295-0');
googletag.refresh('div-gpt-ad-1614955491295-0');
} else {
googletag.display('div-gpt-ad-1614955491295-0');
}
});
</script>
</div>
<style type="text/css">
</style>
<style type="text/css" id="wp-custom-css"></style>
<noscript><style>.perfmatters-lazy[data-src]{display:none !important;}</style></noscript></head>
<body data-rsssl=1 id="bodyel" class="post-template-default single single-post postid-89112 single-format-standard wp-embed-responsive forktospoon2023">
<div id="fullwrap">
<a class="skip-to-content screen-reader-text" href="#body">Skip to content</a>
<div id="topbar">
<div class="container notop nobot">
<p><a href="#subscribe-popup">Get new family-favorite recipes weekly</a></p>
</div>
</div>
<header id="header">
<div id="header-a">
<div class="container">
<div id="header-b">
<div id="logo"><a href="https://forktospoon.com"><img data-perfmatters-preload src="https://forktospoon.com/wp-content/themes/forktospoon2023/images/logo.svg" width="159" height="80" alt="Fork To Spoon" /></a></div>
<div id="toggles">
<ul>
<li><button class="togglesearch" aria-controls="searchwrap" aria-expanded="false"><svg class="cicon icon-search-solid"><title>Toggle Search</title><use xlink:href="#icon-search-solid"></use></svg></button></li>
<li><button class="togglemenu" aria-controls="menuwrap" aria-expanded="false"><svg class="cicon icon-bars"><title>Toggle Menu</title><use xlink:href="#icon-bars"></use></svg></button></li>
</ul>
</div>
<div id="menuwrap">
<button class="closebtn closemenu" aria-controls="menuwrap"><svg class="cicon icon-xmark"><title>Close Menu</title><use xlink:href="#icon-xmark"></use></svg></button>
<nav id="menu" class="menubar"><ul id="menu-main-menu" class="menu"><li id="menu-item-185373" class="has-mega-menu menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor menu-item-has-children menu-item-185373"><div class="linkwrap"><a href="https://forktospoon.com/category/recipes/">Recipes</a><button class="dropdown-toggle"><svg class="cicon icon-angle-down" aria-hidden="true"><use xlink:href="#icon-angle-down"></use></svg></button></div><div class="submenu megamenu"><div class="megamenu-wrap"><div class="megamenu-cols"><ul class="sub-menu"><li id="menu-item-185391" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-185391"><div class="linkwrap"><span>Method</span><button class="dropdown-toggle"><svg class="cicon icon-angle-down" aria-hidden="true"><use xlink:href="#icon-angle-down"></use></svg></button></div><ul class="sub-menu"><li id="menu-item-185374" class="menu-item menu-item-type-taxonomy menu-item-object-fts_method current-post-ancestor current-menu-parent current-post-parent menu-item-185374"><a href="https://forktospoon.com/method/air-fryer/">Air Fryer</a></li><li id="menu-item-185375" class="menu-item menu-item-type-taxonomy menu-item-object-fts_method menu-item-185375"><a href="https://forktospoon.com/method/blackstone/">Blackstone</a></li><li id="menu-item-185377" class="menu-item menu-item-type-taxonomy menu-item-object-fts_method menu-item-185377"><a href="https://forktospoon.com/method/instant-pot/">Instant Pot</a></li><li id="menu-item-185379" class="menu-item menu-item-type-taxonomy menu-item-object-fts_method menu-item-185379"><a href="https://forktospoon.com/method/ninja-foodi/">Ninja Foodi</a></li><li id="menu-item-185380" class="menu-item menu-item-type-taxonomy menu-item-object-fts_method menu-item-185380"><a href="https://forktospoon.com/method/ninja-foodi-grill/">Ninja Foodi Grill</a></li><li id="menu-item-185378" class="menu-item menu-item-type-taxonomy menu-item-object-fts_method menu-item-185378"><a href="https://forktospoon.com/method/ninja-creami/">Ninja Creami</a></li><li id="menu-item-185381" class="menu-item menu-item-type-taxonomy menu-item-object-fts_method menu-item-185381"><a href="https://forktospoon.com/method/ninja-woodfire/">Ninja Woodfire</a></li><li id="menu-item-185376" class="menu-item menu-item-type-taxonomy menu-item-object-fts_method menu-item-185376"><a href="https://forktospoon.com/method/cooking/">Cooking</a></li></ul></li><li id="menu-item-185392" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-185392"><div class="linkwrap"><span>Course</span><button class="dropdown-toggle"><svg class="cicon icon-angle-down" aria-hidden="true"><use xlink:href="#icon-angle-down"></use></svg></button></div><ul class="sub-menu"><li id="menu-item-185383" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-185383"><a href="https://forktospoon.com/category/recipes/breakfast/">Breakfast</a></li><li id="menu-item-185387" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-185387"><a href="https://forktospoon.com/category/recipes/lunch/">Lunch</a></li><li id="menu-item-185382" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-185382"><a href="https://forktospoon.com/category/recipes/appetizers/">Appetizers</a></li><li id="menu-item-185385" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-185385"><a href="https://forktospoon.com/category/recipes/dinner/">Dinner</a></li><li id="menu-item-185388" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor menu-item-185388"><a href="https://forktospoon.com/category/recipes/sides/">Sides</a></li><li id="menu-item-185384" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-185384"><a href="https://forktospoon.com/category/recipes/dessert/">Dessert</a></li><li id="menu-item-185386" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-185386"><a href="https://forktospoon.com/category/recipes/drinks/">Drinks</a></li><li id="menu-item-185389" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-185389"><a href="https://forktospoon.com/category/recipes/snacks/">Snacks</a></li></ul></li><li id="menu-item-185393" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-185393"><div class="linkwrap"><span>Type</span><button class="dropdown-toggle"><svg class="cicon icon-angle-down" aria-hidden="true"><use xlink:href="#icon-angle-down"></use></svg></button></div><ul class="sub-menu"><li id="menu-item-185390" class="menu-item menu-item-type-taxonomy menu-item-object-fts_type menu-item-185390"><a href="https://forktospoon.com/recipe-type/copycat/">Copycat</a></li></ul></li></ul></li><li id="menu-item-185394" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-185394"><a href="https://forktospoon.com/cookbook/">Cookbook</a></li><li id="menu-item-185396" class="menu-item menu-item-type-post_type_archive menu-item-object-fs_product menu-item-185396"><a href="https://forktospoon.com/shop/">Shop</a></li><li id="menu-item-185395" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-185395"><a href="https://forktospoon.com/about/">About</a></li><li class="search"><form class="searchform" method="get" action="https://forktospoon.com">
<div class="inputs">
<div class="input"><label for="searchinput" class="screen-reader-text">Search</label><input id="searchinput" placeholder="Search" name="s" type="text" /></div>
<button type="submit"><svg class="cicon icon-search-solid"><title>Search</title><use xlink:href="#icon-search-solid"></use></svg></button>
</div>
</form></li></ul></nav>
</div>
<div id="menuoverlay"></div>
</div>
</div>
</div>
<div id="searchwrap" inert>
<div id="searchwrap-a">
<button class="closebtn closesearch" aria-controls="searchwrap"><svg class="cicon icon-xmark"><title>Close Search</title><use xlink:href="#icon-xmark"></use></svg></button>
<h2>Search</h2>
<form class="searchform" method="get" action="https://forktospoon.com">
<div class="inputs">
<div class="input"><label for="searchinput" class="screen-reader-text">Search</label><input id="searchinput" placeholder="Search" name="s" type="text" /></div>
<button type="submit"><svg class="cicon icon-search-solid"><title>Search</title><use xlink:href="#icon-search-solid"></use></svg></button>
</div>
</form> </div>
</div>
</header>
<main id="body">
<div class="bodysection bodysection-white bodysection-breadcrumb">
<div class="container notop nobot">
<div class="breadcrumb"><span><span><a href="https://forktospoon.com/">Home</a></span> <span class="sep">→</span> <span><a href="https://forktospoon.com/category/recipes/">Recipes</a></span> <span class="sep">→</span> <span><a href="https://forktospoon.com/category/recipes/sides/">Sides</a></span> <span class="sep">→</span> <span><a href="https://forktospoon.com/category/recipes/sides/vegetables/">Vegetables</a></span> <span class="sep">→</span> <span class="breadcrumb_last" aria-current="page">Air Fryer Parmesan Tomatoes</span></span></div> </div>
</div>
<div class="bodysection bodysection-yellow">
<div class="container notop nobot">
<div class="postheader">
<h1 class="posttitle">Air Fryer Parmesan Tomatoes</h1>
<div class="postmeta">
<ul>
<li class="sharebuttons">
<ul>
<li><a target="_blank" href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fforktospoon.com%2Fair-fryer-parmesan-tomatoes%2F"><svg class="cicon icon-facebook"><title>Share on Facebook</title><use xlink:href="#icon-facebook"></use></svg></a></li>
<li><a target="_blank" href="https://twitter.com/intent/tweet?text=Air%20Fryer%20Parmesan%20Tomatoes&url=https%3A%2F%2Fforktospoon.com%2Fair-fryer-parmesan-tomatoes%2F"><svg class="cicon icon-twitter"><title>Tweet</title><use xlink:href="#icon-twitter"></use></svg></a></li>
<li><a tabindex="0" target="_blank" href="https://pinterest.com/pin/create/button/?media=https%3A%2F%2Fforktospoon.com%2Fwp-content%2Fuploads%2F2021%2F07%2FAir-Fryer-Pretzel-Bites-48-683x1024-1.jpg&description=Air%20Fryer%20Parmesan%20Tomatoes" data-pin-custom="true"><svg class="cicon icon-pinterest"><title>Pin</title><use xlink:href="#icon-pinterest"></use></svg></a></li>
<li><a target="_blank" href="mailto:?subject=Air%20Fryer%20Parmesan%20Tomatoes&body=Check%20out%20this%20post%20from%20Fork%20To%20Spoon%3A%20https%3A%2F%2Fforktospoon.com%2Fair-fryer-parmesan-tomatoes%2F"><svg class="cicon icon-envelope"><title>Email</title><use xlink:href="#icon-envelope"></use></svg></a></li>
</ul> </li>
<li class="jump"><a class="btn btn-yellow" href="#recipe">Jump to recipe<svg class="cicon icon-arrow-down-solid" aria-hidden="true"><use xlink:href="#icon-arrow-down-solid"></use></svg></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="bodysection bodysection-white">
<div class="container notop nobot">
<div class="mainsection postcols clearfix">
<div class="maincol">
<div class="maincol-a notop nobot">
<div class="postcontent">
<p><strong>Air Fryer Parmesan Tomatoes</strong> are amazing! If you are looking for the perfect summer-baked tomato recipe, this one is the one, and it’s so easy to make and so flavorful!</p>
<figure class="wp-block-image size-large"><a href="https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes.png"><img data-perfmatters-preload decoding="async" fetchpriority="high" width="1024" height="1024" src="https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-1024x1024.png" alt="Parmesan Tomatoes" class="wp-image-180093" srcset="https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-1024x1024.png 1024w, https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-300x300.png 300w, https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-150x150.png 150w, https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-768x768.png 768w, https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-400x400.png 400w, https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-500x500.png 500w, https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-600x600.png 600w, https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-96x96.png 96w, https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes.png 1200w" sizes="(max-width: 800px) calc(100vw - 40px), 760px"></a></figure>
<p>I love the garden’s ripe tomatoes, and they taste so much better than storebought. And with the bounty coming up from everyone’s garden, I wanted to give you the perfect recipe!</p>
<p>Simple but delicious is my motto, and this recipe is no different. </p>
<p>This simple and delicious recipe is made with only a handful of ingredients but packs a great flavor. And with the <strong><a href="https://amzn.to/36uOSUo">air fryer</a></strong> perfectly roasting them up, they will be done in minutes! And no need to preheat the oven. With the air fryer, you can keep your kitchen cool, even in the mid-summer heat.</p>
<p>If you are looking for even more <strong>Air Fryer Summer Vegetables Recipes,</strong> some of my favorites are <a href="https://forktospoon.com/air-fryer-sun-dried-tomatoes/">AIR FRYER SUN-DRIED TOMATOES</a>, <a href="https://forktospoon.com/air-fryer-ricotta-toast-with-roasted-garlic-and-tomatoes/">AIR FRYER RICOTTA TOAST WITH ROASTED GARLIC AND TOMATOES</a><a href="https://forktospoon.com/air-fryer-roasted-cherry-tomatoes-and-red-onions/">, AIR FRYER ROASTED CHERRY TOMATOES</a>, <a href="https://forktospoon.com/air-fryer-air-fried-fried-green-tomatoes/">AIR FRYER FRIED GREEN TOMATOES</a>, and <a href="https://forktospoon.com/air-fryer-zucchini-brownies/">AIR FRYER ZUCCHINI BROWNIES</a>.</p>
<h2 class="wp-block-heading"><strong>Why Roast Tomatoes In Air Fryer</strong><br>Roasting tomatoes in an air fryer has several benefits:</h2>
<ul>
<li><strong>Enhanced Flavor</strong>: Roasting tomatoes intensifies their flavor, bringing out their natural sweetness and creating a deliciously rich, caramelized taste that can’t be achieved through raw or boiled tomatoes.</li>
<li><strong>Time-Efficient</strong>: An air fryer can roast tomatoes faster than a conventional oven, saving you precious time in the kitchen.</li>
<li><strong>Less Oil</strong>: The air fryer’s circulating hot air cooks the tomatoes evenly and gives them a crispy, roasted texture with minimal oil use, making it a healthier choice.</li>
<li><strong>Easy Cleanup</strong>: Cooking with an air fryer usually means less mess. You don’t have to deal with dirty baking sheets or splatters inside your oven.</li>
<li><strong>Versatility</strong>: Air-fried roasted tomatoes can be used in various dishes, including pasta, salads, and sandwiches, or served as a tasty side dish.</li>
</ul>
<p>So, if you’re looking for a quick, simple, and flavorful way to enjoy tomatoes, consider trying air frying.</p>
<h2 class="wp-block-heading"><strong>Ingredients Needed For Air Fryer Parmesan Tomatoes</strong></h2>
<p>Nothing satisfies quite like a home-cooked dish; when it’s a healthy version of a favorite recipe, it makes the experience even better. With the new air fryer craze spreading quickly, now is the perfect time to try out an easy and delicious air fryer Parmesan tomato recipe that is quick and something you can feel good about eating! </p>
<p>This simple dish packs plenty of flavor with minimal work, so get ready to create your newest go-to meal for family dinners or date nights. Read on to discover what ingredients are needed to make this cheesy treat come alive in your kitchen!</p>
<figure class="wp-block-image size-large"><a href="https://forktospoon.com/wp-content/uploads/2021/07/Ingredients-Needed-For-Air-Fryer-Parmesan-Tomatoes.jpg"><img data-perfmatters-preload decoding="async" width="940" height="788" src="https://forktospoon.com/wp-content/uploads/2021/07/Ingredients-Needed-For-Air-Fryer-Parmesan-Tomatoes.jpg" alt="Ingredients Needed For Air Fryer Parmesan Tomatoes" class="wp-image-89114" srcset="https://forktospoon.com/wp-content/uploads/2021/07/Ingredients-Needed-For-Air-Fryer-Parmesan-Tomatoes.jpg 940w, https://forktospoon.com/wp-content/uploads/2021/07/Ingredients-Needed-For-Air-Fryer-Parmesan-Tomatoes-300x251.jpg 300w, https://forktospoon.com/wp-content/uploads/2021/07/Ingredients-Needed-For-Air-Fryer-Parmesan-Tomatoes-768x644.jpg 768w, https://forktospoon.com/wp-content/uploads/2021/07/Ingredients-Needed-For-Air-Fryer-Parmesan-Tomatoes-150x126.jpg 150w" sizes="(max-width: 800px) calc(100vw - 40px), 760px"></a></figure>
<p><strong><em>Remember the step-by-step directions and detailed ingredients list are below in the printable recipe card at the bottom of the post, as well as the detailed ingredient list.</em> </strong></p>
<ul>
<li><strong>Tomatoes</strong></li>
<li><strong>Bread Crumbs</strong></li>
<li><strong>Parmesan Cheese</strong></li>
<li><strong>Minced Garlic</strong></li>
<li><strong>Olive Oil</strong></li>
<li><strong>Seasoning and Spices:</strong> Basil, Parsley, Oregano, Dill, Kosher Salt (or Sea Salt), and Black Pepper</li>
</ul>
<h2 class="wp-block-heading"><strong>How To Make Air Fryer Parmesan Tomatoes</strong></h2>
<p>If you’re looking for an easy and delicious way to get more vegetables in your diet, air fryer parmesan tomatoes are a winning option. They can be ready in minutes as a side dish, snack, or part of a healthy meal. </p>
<p>The combination of juicy tomatoes cooked until golden and lightly crisped with rich Parmesan cheese is simply irresistible! Learn how to make these fantastic air fryer treats by following the simple steps outlined below. So grab your air fryer and let’s get cooking – you won’t believe how deliciously satisfying these savory bites turn out!</p>
<figure class="wp-block-image size-large"><a href="https://forktospoon.com/wp-content/uploads/2021/07/Air-Fryer-Parmesan-Tomatoes-1.jpg"><img decoding="async" width="940" height="788" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='940'%20height='788'%20viewBox='0%200%20940%20788'%3E%3C/svg%3E" alt="Air Fryer Parmesan Tomatoes" class="wp-image-89115 perfmatters-lazy" data-src="https://forktospoon.com/wp-content/uploads/2021/07/Air-Fryer-Parmesan-Tomatoes-1.jpg" data-srcset="https://forktospoon.com/wp-content/uploads/2021/07/Air-Fryer-Parmesan-Tomatoes-1.jpg 940w, https://forktospoon.com/wp-content/uploads/2021/07/Air-Fryer-Parmesan-Tomatoes-1-300x251.jpg 300w, https://forktospoon.com/wp-content/uploads/2021/07/Air-Fryer-Parmesan-Tomatoes-1-768x644.jpg 768w, https://forktospoon.com/wp-content/uploads/2021/07/Air-Fryer-Parmesan-Tomatoes-1-150x126.jpg 150w" data-sizes="(max-width: 800px) calc(100vw - 40px), 760px" /><noscript><img decoding="async" width="940" height="788" src="https://forktospoon.com/wp-content/uploads/2021/07/Air-Fryer-Parmesan-Tomatoes-1.jpg" alt="Air Fryer Parmesan Tomatoes" class="wp-image-89115" srcset="https://forktospoon.com/wp-content/uploads/2021/07/Air-Fryer-Parmesan-Tomatoes-1.jpg 940w, https://forktospoon.com/wp-content/uploads/2021/07/Air-Fryer-Parmesan-Tomatoes-1-300x251.jpg 300w, https://forktospoon.com/wp-content/uploads/2021/07/Air-Fryer-Parmesan-Tomatoes-1-768x644.jpg 768w, https://forktospoon.com/wp-content/uploads/2021/07/Air-Fryer-Parmesan-Tomatoes-1-150x126.jpg 150w" sizes="(max-width: 800px) calc(100vw - 40px), 760px"></noscript></a></figure>
<p>Mix the bread crumbs, parmesan cheese, minced garlic, olive oil, basil, parsley, oregano, dill, salt, and black pepper in a small mixing bowl. Mix well.</p>
<figure class="wp-block-image size-large"><a href="https://forktospoon.com/wp-content/uploads/2021/07/ParmesanTomatoes-5-of-10-1-scaled.jpg"><img decoding="async" width="683" height="1024" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='683'%20height='1024'%20viewBox='0%200%20683%201024'%3E%3C/svg%3E" alt="Air Fryer Parmesan Tomatoes" class="wp-image-89116 perfmatters-lazy" data-src="https://forktospoon.com/wp-content/uploads/2021/07/ParmesanTomatoes-5-of-10-1-683x1024.jpg" data-srcset="https://forktospoon.com/wp-content/uploads/2021/07/ParmesanTomatoes-5-of-10-1-683x1024.jpg 683w, https://forktospoon.com/wp-content/uploads/2021/07/ParmesanTomatoes-5-of-10-1-200x300.jpg 200w, https://forktospoon.com/wp-content/uploads/2021/07/ParmesanTomatoes-5-of-10-1-768x1152.jpg 768w, https://forktospoon.com/wp-content/uploads/2021/07/ParmesanTomatoes-5-of-10-1-1024x1536.jpg 1024w, https://forktospoon.com/wp-content/uploads/2021/07/ParmesanTomatoes-5-of-10-1-150x225.jpg 150w, https://forktospoon.com/wp-content/uploads/2021/07/ParmesanTomatoes-5-of-10-1-1365x2048.jpg 1365w, https://forktospoon.com/wp-content/uploads/2021/07/ParmesanTomatoes-5-of-10-1.jpg 1200w" data-sizes="(max-width: 723px) calc(100vw - 40px), 683px" /><noscript><img decoding="async" width="683" height="1024" src="https://forktospoon.com/wp-content/uploads/2021/07/ParmesanTomatoes-5-of-10-1-683x1024.jpg" alt="Air Fryer Parmesan Tomatoes" class="wp-image-89116" srcset="https://forktospoon.com/wp-content/uploads/2021/07/ParmesanTomatoes-5-of-10-1-683x1024.jpg 683w, https://forktospoon.com/wp-content/uploads/2021/07/ParmesanTomatoes-5-of-10-1-200x300.jpg 200w, https://forktospoon.com/wp-content/uploads/2021/07/ParmesanTomatoes-5-of-10-1-768x1152.jpg 768w, https://forktospoon.com/wp-content/uploads/2021/07/ParmesanTomatoes-5-of-10-1-1024x1536.jpg 1024w, https://forktospoon.com/wp-content/uploads/2021/07/ParmesanTomatoes-5-of-10-1-150x225.jpg 150w, https://forktospoon.com/wp-content/uploads/2021/07/ParmesanTomatoes-5-of-10-1-1365x2048.jpg 1365w, https://forktospoon.com/wp-content/uploads/2021/07/ParmesanTomatoes-5-of-10-1.jpg 1200w" sizes="(max-width: 723px) calc(100vw - 40px), 683px"></noscript></a></figure>
<p>Slice your tomatoes in half, and top with the breadcrumb mixture. Set into the air fryer at 330 degrees F, air fryer sitting for 6 to 10 minutes or until the tomatoes are perfectly roasted.</p>
<figure class="wp-block-image size-large"><a href="https://forktospoon.com/wp-content/uploads/2021/07/ParmesanTomatoes-6-of-10-1-scaled.jpg"><img decoding="async" width="683" height="1024" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='683'%20height='1024'%20viewBox='0%200%20683%201024'%3E%3C/svg%3E" alt="Air Fryer Parmesan Tomatoes" class="wp-image-89117 perfmatters-lazy" data-src="https://forktospoon.com/wp-content/uploads/2021/07/ParmesanTomatoes-6-of-10-1-683x1024.jpg" data-srcset="https://forktospoon.com/wp-content/uploads/2021/07/ParmesanTomatoes-6-of-10-1-683x1024.jpg 683w, https://forktospoon.com/wp-content/uploads/2021/07/ParmesanTomatoes-6-of-10-1-200x300.jpg 200w, https://forktospoon.com/wp-content/uploads/2021/07/ParmesanTomatoes-6-of-10-1-768x1152.jpg 768w, https://forktospoon.com/wp-content/uploads/2021/07/ParmesanTomatoes-6-of-10-1-1024x1536.jpg 1024w, https://forktospoon.com/wp-content/uploads/2021/07/ParmesanTomatoes-6-of-10-1-150x225.jpg 150w, https://forktospoon.com/wp-content/uploads/2021/07/ParmesanTomatoes-6-of-10-1-1365x2048.jpg 1365w, https://forktospoon.com/wp-content/uploads/2021/07/ParmesanTomatoes-6-of-10-1.jpg 1200w" data-sizes="(max-width: 723px) calc(100vw - 40px), 683px" /><noscript><img decoding="async" width="683" height="1024" src="https://forktospoon.com/wp-content/uploads/2021/07/ParmesanTomatoes-6-of-10-1-683x1024.jpg" alt="Air Fryer Parmesan Tomatoes" class="wp-image-89117" srcset="https://forktospoon.com/wp-content/uploads/2021/07/ParmesanTomatoes-6-of-10-1-683x1024.jpg 683w, https://forktospoon.com/wp-content/uploads/2021/07/ParmesanTomatoes-6-of-10-1-200x300.jpg 200w, https://forktospoon.com/wp-content/uploads/2021/07/ParmesanTomatoes-6-of-10-1-768x1152.jpg 768w, https://forktospoon.com/wp-content/uploads/2021/07/ParmesanTomatoes-6-of-10-1-1024x1536.jpg 1024w, https://forktospoon.com/wp-content/uploads/2021/07/ParmesanTomatoes-6-of-10-1-150x225.jpg 150w, https://forktospoon.com/wp-content/uploads/2021/07/ParmesanTomatoes-6-of-10-1-1365x2048.jpg 1365w, https://forktospoon.com/wp-content/uploads/2021/07/ParmesanTomatoes-6-of-10-1.jpg 1200w" sizes="(max-width: 723px) calc(100vw - 40px), 683px"></noscript></a></figure>
<h2 class="wp-block-heading"><strong>Pro Tips For Roasting Tomatoes In Air Fryer</strong></h2>
<p>Here are some pro tips to help you get the best results when making Air Fryer Parmesan Tomatoes:</p>
<ul>
<li><strong>Select the Right Tomatoes</strong>: Use firm, ripe tomatoes for this recipe. Too soft, and they may become mushy; too hard, and they won’t roast properly.</li>
<li><strong>Slice Evenly</strong>: Try to slice your tomatoes evenly to ensure they cook at the same rate.</li>
<li><strong>Season Generously</strong>: Don’t be shy with your seasoning. Tomatoes can handle a good amount of flavor, so feel free to be generous with the Parmesan cheese and spices.</li>
<li><strong>Watch Your Cooking Time</strong>: Every air fryer can vary slightly in temperature, so keep a close eye on your tomatoes to prevent them from burning. They should be done when the cheese is golden and crispy.</li>
<li><strong>Use Freshly Grated Cheese</strong>: If possible, use freshly grated Parmesan cheese as it tends to melt and crisp up better than pre-grated cheese.</li>
<li><strong>Avoid Overcrowding</strong>: Don’t overcrowd the air fryer basket. The tomatoes should be in a single layer to ensure even cooking.</li>
<li><strong>Add a Drizzle of Olive Oil</strong>: A drizzle of olive oil before cooking can help the cheese become extra crispy and flavorful.</li>
</ul>
<p>With these tips in mind, you’re all set to create a delicious, flavorful batch of Air Fryer Parmesan Tomatoes!</p>
<figure class="wp-block-image size-full"><a href="https://forktospoon.com/wp-content/uploads/2023/06/ParmesanTomatoes-6-of-10-1-683x1024-1.jpg"><img decoding="async" width="683" height="1024" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='683'%20height='1024'%20viewBox='0%200%20683%201024'%3E%3C/svg%3E" alt="Here are some pro tips to help you get the best results when making Air Fryer Parmesan Tomatoes:
Select the Right Tomatoes: Use firm, ripe tomatoes for this recipe. Too soft, and they may become mushy; too hard, and they won't roast properly.
Slice Evenly: Try to slice your tomatoes evenly to ensure they cook at the same rate.
Season Generously: Don't be shy with your seasoning. Tomatoes can handle a good amount of flavor, so feel free to be generous with the Parmesan cheese and spices.
Watch Your Cooking Time: Every air fryer can vary slightly in temperature, so keep a close eye on your tomatoes to prevent them from burning. They should be done when the cheese is golden and crispy.
Use Freshly Grated Cheese: If possible, use freshly grated Parmesan cheese as it tends to melt and crisp up better than pre-grated cheese.
Avoid Overcrowding: Don't overcrowd the air fryer basket. The tomatoes should be in a single layer to ensure even cooking.
Add a Drizzle of Olive Oil: A drizzle of olive oil before cooking can help the cheese become extra crispy and flavorful.
With these tips in mind, you're all set to create a delicious, flavorful batch of Air Fryer Parmesan Tomatoes!" class="wp-image-180100 perfmatters-lazy" data-src="https://forktospoon.com/wp-content/uploads/2023/06/ParmesanTomatoes-6-of-10-1-683x1024-1.jpg" data-srcset="https://forktospoon.com/wp-content/uploads/2023/06/ParmesanTomatoes-6-of-10-1-683x1024-1.jpg 683w, https://forktospoon.com/wp-content/uploads/2023/06/ParmesanTomatoes-6-of-10-1-683x1024-1-200x300.jpg 200w, https://forktospoon.com/wp-content/uploads/2023/06/ParmesanTomatoes-6-of-10-1-683x1024-1-150x225.jpg 150w" data-sizes="(max-width: 723px) calc(100vw - 40px), 683px" /><noscript><img decoding="async" width="683" height="1024" src="https://forktospoon.com/wp-content/uploads/2023/06/ParmesanTomatoes-6-of-10-1-683x1024-1.jpg" alt="Here are some pro tips to help you get the best results when making Air Fryer Parmesan Tomatoes:
Select the Right Tomatoes: Use firm, ripe tomatoes for this recipe. Too soft, and they may become mushy; too hard, and they won't roast properly.
Slice Evenly: Try to slice your tomatoes evenly to ensure they cook at the same rate.
Season Generously: Don't be shy with your seasoning. Tomatoes can handle a good amount of flavor, so feel free to be generous with the Parmesan cheese and spices.
Watch Your Cooking Time: Every air fryer can vary slightly in temperature, so keep a close eye on your tomatoes to prevent them from burning. They should be done when the cheese is golden and crispy.
Use Freshly Grated Cheese: If possible, use freshly grated Parmesan cheese as it tends to melt and crisp up better than pre-grated cheese.
Avoid Overcrowding: Don't overcrowd the air fryer basket. The tomatoes should be in a single layer to ensure even cooking.
Add a Drizzle of Olive Oil: A drizzle of olive oil before cooking can help the cheese become extra crispy and flavorful.
With these tips in mind, you're all set to create a delicious, flavorful batch of Air Fryer Parmesan Tomatoes!" class="wp-image-180100" srcset="https://forktospoon.com/wp-content/uploads/2023/06/ParmesanTomatoes-6-of-10-1-683x1024-1.jpg 683w, https://forktospoon.com/wp-content/uploads/2023/06/ParmesanTomatoes-6-of-10-1-683x1024-1-200x300.jpg 200w, https://forktospoon.com/wp-content/uploads/2023/06/ParmesanTomatoes-6-of-10-1-683x1024-1-150x225.jpg 150w" sizes="(max-width: 723px) calc(100vw - 40px), 683px"></noscript></a></figure>
<h2 class="wp-block-heading"><strong>Variations Keto and Low Carb Air Fryer Roasted Tomatoes</strong></h2>
<p>Suppose you want a recipe for a low-carb and KETO-friendly option. You can easily remove the bread crumbs and substitute them for a layer of mozzarella cheese on top. </p>
<p>Roast the tomatoes for a few minutes, then add the cheese mixture. Since the tomatoes will need longer to roast than the mozzarella cheese would need to melt, I would advise that you wait until the tomatoes are roasted before adding the cheese mixture. </p>
<h2 class="wp-block-heading"><strong>How To Serve Roasted Tomatoes</strong></h2>
<p>These make the perfect appetizer, snack, or even a side dish. These go well with so many dishes. Some of my favorite recipes are:</p>
<ul>
<li><a href="https://forktospoon.com/air-fryer-air-fried-country-fried-steak-with-brown-gravy-chicken-fried-steak/">AIR FRYER CHICKEN FRIED STEAK</a></li>
<li><a href="https://forktospoon.com/air-fryer-italian-meatloaf/">AIR FRYER ITALIAN MEATLOAF</a></li>
<li>EASY <a href="https://forktospoon.com/air-fryer-mini-taco-bowls/">AIR FRYER MINI TACO BOWLS</a></li>
<li><a href="https://forktospoon.com/air-fryer-parmesan-breaded-chicken-with-lemon-aioli-sauce/">AIR FRYER PARMESAN CRUSTED CHICKEN</a></li>
<li><a href="https://forktospoon.com/air-fried-air-fryer-buttermilk-fried-chicken/">AIR FRYER BUTTERMILK FRIED CHICKEN</a></li>
<li>EASY <a href="https://forktospoon.com/air-fryer-air-fried-buffalo-chicken-skewers-kebabs/">AIR FRYER BUFFALO CHICKEN KEBABS</a></li>
</ul>
<h2 class="wp-block-heading"><strong>How To Store Leftovers</strong></h2>
<p>If you have any leftover Air Fryer Parmesan Tomatoes, let them cool to room temperature and place them in an airtight container. </p>
<p>Place the container into the refrigerator; they will stay well for 1 to 2 days. You can either reheat them in the microwave or in the Air Fryer Basket, where you should heat them at 350 degrees F, air fryer setting until warmed.</p>
<h2 class="wp-block-heading"><strong>Can I freeze Baked Tomatoes?</strong></h2>
<p>I do not advise freezing and then thawing since the tomatoes will not freeze well, and thawing them out will make them mushy. </p>
<p>So, make a new batch whenever you want them for the best results! The ingredients are available year-round!</p>
<h2 class="wp-block-heading"><strong>Can I use different kinds of cheese for this recipe?</strong></h2>
<p>Absolutely! While Parmesan cheese is recommended for its flavor and its ability to crisp nicely, you can try other types of cheese like mozzarella, cheddar, or feta. Keep in mind the melting and browning characteristics will differ.</p>
<h2 class="wp-block-heading"><strong>What type of tomatoes are best for this recipe?</strong></h2>
<p>Medium-sized ripe tomatoes are best for this recipe. You can use any variety, but beefsteak, Roma, or vine-ripened tomatoes work exceptionally well.</p>
<h2 class="wp-block-heading"><strong>Can I use this recipe with other vegetables?</strong></h2>
<p>Yes, you can use the same method and seasoning to roast other vegetables in your air fryer. Zucchini, eggplant, and bell peppers would all work well.</p>
<h2 class="wp-block-heading"><strong>How do I store leftover Parmesan tomatoes?</strong></h2>
<p>You can store leftovers in an airtight container in the refrigerator for up to 3 days. To reheat, you might want to use the air fryer again to get them crispy, as microwaving could make them soggy.</p>
<h2 class="wp-block-heading"><strong>How can I serve these Parmesan tomatoes?</strong></h2>
<p>These tomatoes make a great side dish with almost any meal. They’re also a great addition to salads and pasta or as a topping for grilled chicken or steak.</p>
<h2 class="wp-block-heading"><strong>Do I have to preheat the air fryer?</strong></h2>
<p>While not always necessary, preheating the air fryer can help achieve even faster cooking.</p>
<h2 class="wp-block-heading"><strong>Can I use fresh herbs instead of dried ones?</strong></h2>
<p>Absolutely. Fresh herbs can provide a more vibrant flavor. If you’re using fresh herbs, you’ll typically want to use about three times the amount of fresh herbs as you would use dried.</p>
<figure class="wp-block-image size-full"><a href="https://forktospoon.com/wp-content/uploads/2023/06/ParmesanTomatoes-6-of-10-1-683x1024-2.jpg"><img decoding="async" width="683" height="1024" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='683'%20height='1024'%20viewBox='0%200%20683%201024'%3E%3C/svg%3E" alt="Air Fryer Parmesan Tomatoes" class="wp-image-180101 perfmatters-lazy" data-src="https://forktospoon.com/wp-content/uploads/2023/06/ParmesanTomatoes-6-of-10-1-683x1024-2.jpg" data-srcset="https://forktospoon.com/wp-content/uploads/2023/06/ParmesanTomatoes-6-of-10-1-683x1024-2.jpg 683w, https://forktospoon.com/wp-content/uploads/2023/06/ParmesanTomatoes-6-of-10-1-683x1024-2-200x300.jpg 200w, https://forktospoon.com/wp-content/uploads/2023/06/ParmesanTomatoes-6-of-10-1-683x1024-2-150x225.jpg 150w" data-sizes="(max-width: 723px) calc(100vw - 40px), 683px" /><noscript><img decoding="async" width="683" height="1024" src="https://forktospoon.com/wp-content/uploads/2023/06/ParmesanTomatoes-6-of-10-1-683x1024-2.jpg" alt="Air Fryer Parmesan Tomatoes" class="wp-image-180101" srcset="https://forktospoon.com/wp-content/uploads/2023/06/ParmesanTomatoes-6-of-10-1-683x1024-2.jpg 683w, https://forktospoon.com/wp-content/uploads/2023/06/ParmesanTomatoes-6-of-10-1-683x1024-2-200x300.jpg 200w, https://forktospoon.com/wp-content/uploads/2023/06/ParmesanTomatoes-6-of-10-1-683x1024-2-150x225.jpg 150w" sizes="(max-width: 723px) calc(100vw - 40px), 683px"></noscript></a></figure>
<h2 class="wp-block-heading"><strong>More Air Fryer Recipes</strong></h2>
<ul>
<li><a href="https://forktospoon.com/afavocadofrenchfries/">AIR FRYER AVOCADO FRENCH FRIES</a></li>
<li><a href="https://forktospoon.com/air-fryer-zucchini-brownies/">AIR FRYER ZUCCHINI BROWNIES</a></li>
<li>EASY <a href="https://forktospoon.com/air-fryer-roasted-cabbage-happy-st-patricks-day/">AIR FRYER FRIED CABBAGE</a></li>
<li><a href="https://forktospoon.com/air-fryer-roasted-broccoli/">AIR FRYER BROCCOLI</a></li>
<li><a href="https://forktospoon.com/air-fryer-trader-joes-cauliflower-pancakes/">AIR FRYER TRADER JOE’S CAULIFLOWER PANCAKES</a></li>
<li>EASY <a href="https://forktospoon.com/air-fryer-breaded-eggplant/">AIR FRYER BREADED EGGPLANT</a></li>
<li><a href="https://forktospoon.com/air-fryer-air-fried-asparagus/">AIR FRYER ROASTED ASPARAGUS</a></li>
<li><a href="https://forktospoon.com/air-fryer-blooming-onion/">AIR FRYER BLOOMING ONION</a></li>
<li>EASY <a href="https://forktospoon.com/air-fryer-roasted-pear-salad/">AIR FRYER ROASTED PEAR SALAD</a></li>
</ul>
<h2 class="wp-block-heading">Don’t Forget To Pin:</h2>
<figure class="wp-block-image size-large"><a href="https://forktospoon.com/wp-content/uploads/2021/07/Air-Fryer-Pretzel-Bites-48.jpg"><img decoding="async" width="683" height="1024" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='683'%20height='1024'%20viewBox='0%200%20683%201024'%3E%3C/svg%3E" alt="Air Fryer Parmesan Tomatoes" class="wp-image-89120 perfmatters-lazy" data-src="https://forktospoon.com/wp-content/uploads/2021/07/Air-Fryer-Pretzel-Bites-48-683x1024.jpg" data-srcset="https://forktospoon.com/wp-content/uploads/2021/07/Air-Fryer-Pretzel-Bites-48-683x1024.jpg 683w, https://forktospoon.com/wp-content/uploads/2021/07/Air-Fryer-Pretzel-Bites-48-200x300.jpg 200w, https://forktospoon.com/wp-content/uploads/2021/07/Air-Fryer-Pretzel-Bites-48-768x1152.jpg 768w, https://forktospoon.com/wp-content/uploads/2021/07/Air-Fryer-Pretzel-Bites-48-150x225.jpg 150w, https://forktospoon.com/wp-content/uploads/2021/07/Air-Fryer-Pretzel-Bites-48-735x1103.jpg 735w, https://forktospoon.com/wp-content/uploads/2021/07/Air-Fryer-Pretzel-Bites-48.jpg 1000w" data-sizes="(max-width: 723px) calc(100vw - 40px), 683px" /><noscript><img decoding="async" width="683" height="1024" src="https://forktospoon.com/wp-content/uploads/2021/07/Air-Fryer-Pretzel-Bites-48-683x1024.jpg" alt="Air Fryer Parmesan Tomatoes" class="wp-image-89120" srcset="https://forktospoon.com/wp-content/uploads/2021/07/Air-Fryer-Pretzel-Bites-48-683x1024.jpg 683w, https://forktospoon.com/wp-content/uploads/2021/07/Air-Fryer-Pretzel-Bites-48-200x300.jpg 200w, https://forktospoon.com/wp-content/uploads/2021/07/Air-Fryer-Pretzel-Bites-48-768x1152.jpg 768w, https://forktospoon.com/wp-content/uploads/2021/07/Air-Fryer-Pretzel-Bites-48-150x225.jpg 150w, https://forktospoon.com/wp-content/uploads/2021/07/Air-Fryer-Pretzel-Bites-48-735x1103.jpg 735w, https://forktospoon.com/wp-content/uploads/2021/07/Air-Fryer-Pretzel-Bites-48.jpg 1000w" sizes="(max-width: 723px) calc(100vw - 40px), 683px"></noscript></a></figure>
<div id="recipe"></div><div id="wprm-recipe-container-180103" class="wprm-recipe-container" data-recipe-id="180103" data-servings="6"><div class="wprm-recipe wprm-recipe-template-forktospoon-recipe"><div class="forktospoon-recipe-wrap notop nobot">
<div class="fts-recipe-top">
<div class="wprm-recipe-image wprm-block-image-normal"><img style="border-width: 0px;border-style: solid;border-color: #666666;" width="160" height="160" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'%20viewBox='0%200%20160%20160'%3E%3C/svg%3E" class="attachment-160x160 size-160x160 perfmatters-lazy" alt="Air Fryer Parmesan Tomatoes" decoding="async" data-src="https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-300x300.png" data-srcset="https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-300x300.png 300w, https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-1024x1024.png 1024w, https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-150x150.png 150w, https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-768x768.png 768w, https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-400x400.png 400w, https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-500x500.png 500w, https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-600x600.png 600w, https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-96x96.png 96w, https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes.png 1200w" data-sizes="(max-width: 200px) calc(100vw - 40px), 160px" /><noscript><img style="border-width: 0px;border-style: solid;border-color: #666666;" width="160" height="160" src="https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-300x300.png" class="attachment-160x160 size-160x160" alt="Air Fryer Parmesan Tomatoes" decoding="async" srcset="https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-300x300.png 300w, https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-1024x1024.png 1024w, https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-150x150.png 150w, https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-768x768.png 768w, https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-400x400.png 400w, https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-500x500.png 500w, https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-600x600.png 600w, https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes-96x96.png 96w, https://forktospoon.com/wp-content/uploads/2023/06/air-fryer-parmesan-tomatoes.png 1200w" sizes="(max-width: 200px) calc(100vw - 40px), 160px"></noscript></div>
<div class="fts-recipe-right">
<h2 class="wprm-recipe-name wprm-block-text-bold">Air Fryer Parmesan Tomatoes</h2>
<style></style><svg xmlns="http://www.w3.org/2000/svg" width="0" height="0" style="display:block;width:0px;height:0px"><defs><lineargradient id="wprm-recipe-user-rating-0-33"><stop offset="0%" stop-opacity="1"></stop><stop offset="33%" stop-opacity="1"></stop><stop offset="33%" stop-opacity="0"></stop><stop offset="100%" stop-opacity="0"></stop></lineargradient></defs><defs><lineargradient id="wprm-recipe-user-rating-0-50"><stop offset="0%" stop-opacity="1"></stop><stop offset="50%" stop-opacity="1"></stop><stop offset="50%" stop-opacity="0"></stop><stop offset="100%" stop-opacity="0"></stop></lineargradient></defs><defs><lineargradient id="wprm-recipe-user-rating-0-66"><stop offset="0%" stop-opacity="1"></stop><stop offset="66%" stop-opacity="1"></stop><stop offset="66%" stop-opacity="0"></stop><stop offset="100%" stop-opacity="0"></stop></lineargradient></defs></svg><div id="wprm-recipe-user-rating-0" class="wprm-recipe-rating wprm-user-rating wprm-recipe-rating-separate wprm-user-rating-not-voted wprm-user-rating-allowed" data-recipe="180103" data-average="5" data-count="1" data-total="5" data-user="0" data-decimals="2"><div class="starwrap"><span class="wprm-rating-star wprm-rating-star-1 wprm-rating-star-full" data-rating="1" data-color="var(--fs-yellow)" role="button" tabindex="0" aria-label="Rate this recipe 1 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="var(--fs-yellow)" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><span class="wprm-rating-star wprm-rating-star-2 wprm-rating-star-full" data-rating="2" data-color="var(--fs-yellow)" role="button" tabindex="0" aria-label="Rate this recipe 2 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="var(--fs-yellow)" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><span class="wprm-rating-star wprm-rating-star-3 wprm-rating-star-full" data-rating="3" data-color="var(--fs-yellow)" role="button" tabindex="0" aria-label="Rate this recipe 3 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="var(--fs-yellow)" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><span class="wprm-rating-star wprm-rating-star-4 wprm-rating-star-full" data-rating="4" data-color="var(--fs-yellow)" role="button" tabindex="0" aria-label="Rate this recipe 4 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="var(--fs-yellow)" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><span class="wprm-rating-star wprm-rating-star-5 wprm-rating-star-full" data-rating="5" data-color="var(--fs-yellow)" role="button" tabindex="0" aria-label="Rate this recipe 5 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="var(--fs-yellow)" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span></div><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-recipe-block-container wprm-recipe-block-container-inline wprm-block-text-normal wprm-recipe-author-container" style=""><span class="wprm-recipe-details-label wprm-block-text-bold wprm-recipe-author-label">Author: </span><span class="wprm-recipe-details wprm-recipe-author wprm-block-text-normal"><a href="https://forktospoon.com" target="_blank">Fork To Spoon</a></span></div>
<div class="wprm-recipe-meta-container wprm-recipe-custom-container wprm-recipe-details-container wprm-recipe-details-container-inline wprm-block-text-normal" style=""><div class="wprm-recipe-block-container wprm-recipe-block-container-inline wprm-block-text-normal wprm-recipe-time-container wprm-recipe-prep-time-container" style=""><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-normal"><span class="wprm-recipe-details wprm-recipe-details-minutes wprm-recipe-prep_time wprm-recipe-prep_time-minutes">10<span class="sr-only screen-reader-text wprm-screen-reader-text"> minutes</span></span> <span class="wprm-recipe-details-unit wprm-recipe-details-minutes wprm-recipe-prep_time-unit wprm-recipe-prep_timeunit-minutes" aria-hidden="true">mins</span></span></div><div class="wprm-recipe-block-container wprm-recipe-block-container-inline wprm-block-text-normal wprm-recipe-time-container wprm-recipe-cook-time-container" style=""><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-normal"><span class="wprm-recipe-details wprm-recipe-details-minutes wprm-recipe-cook_time wprm-recipe-cook_time-minutes">10<span class="sr-only screen-reader-text wprm-screen-reader-text"> minutes</span></span> <span class="wprm-recipe-details-unit wprm-recipe-details-minutes wprm-recipe-cook_time-unit wprm-recipe-cook_timeunit-minutes" aria-hidden="true">mins</span></span></div><div class="wprm-recipe-block-container wprm-recipe-block-container-inline wprm-block-text-normal wprm-recipe-time-container wprm-recipe-custom-time-container" style=""><span class="wprm-recipe-time wprm-block-text-normal"><span class="wprm-recipe-details wprm-recipe-details-minutes wprm-recipe-custom_time wprm-recipe-custom_time-minutes">0<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-custom_time-unit wprm-recipe-custom_timeunit-minutes" aria-hidden="true">mins</span></span></div><div class="wprm-recipe-block-container wprm-recipe-block-container-inline wprm-block-text-normal wprm-recipe-time-container wprm-recipe-total-time-container" style=""><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-normal"><span class="wprm-recipe-details wprm-recipe-details-minutes wprm-recipe-total_time wprm-recipe-total_time-minutes">20<span class="sr-only screen-reader-text wprm-screen-reader-text"> minutes</span></span> <span class="wprm-recipe-details-unit wprm-recipe-details-minutes wprm-recipe-total_time-unit wprm-recipe-total_timeunit-minutes" aria-hidden="true">mins</span></span></div><div class="wprm-recipe-block-container wprm-recipe-block-container-inline wprm-block-text-normal wprm-recipe-servings-container" style=""><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-180103 wprm-recipe-servings-adjustable-tooltip wprm-block-text-normal" data-initial-servings="" data-recipe="180103" aria-label="Adjust recipe servings">6</span> <span class="wprm-recipe-servings-unit wprm-recipe-details-unit wprm-block-text-normal">Servings</span></span></div></div>
</div>
</div>
<div class="fts-recipe-buttons">
<a href="https://forktospoon.com/wprm_print/180103" class="btn btn-black wprm-recipe-print wprm-recipe-link wprm-print-recipe-shortcode wprm-block-text-normal" data-recipe-id="180103" data-template="" target="_blank" rel="nofollow">Print</a>
<div class="sharebuttons"><ul>
<li><a target="_blank" href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fforktospoon.com%2Fair-fryer-parmesan-tomatoes%2F"><svg class="cicon icon-facebook"><title>Share on Facebook</title><use xlink:href="#icon-facebook"></use></svg></a></li>
<li><a target="_blank" href="https://twitter.com/intent/tweet?text=Air%20Fryer%20Parmesan%20Tomatoes&url=https%3A%2F%2Fforktospoon.com%2Fair-fryer-parmesan-tomatoes%2F"><svg class="cicon icon-twitter"><title>Tweet</title><use xlink:href="#icon-twitter"></use></svg></a></li>
<li><a tabindex="0" target="_blank" href="https://pinterest.com/pin/create/button/?media=https%3A%2F%2Fforktospoon.com%2Fwp-content%2Fuploads%2F2021%2F07%2FAir-Fryer-Pretzel-Bites-48-683x1024-1.jpg&description=Air%20Fryer%20Parmesan%20Tomatoes" data-pin-custom="true"><svg class="cicon icon-pinterest"><title>Pin</title><use xlink:href="#icon-pinterest"></use></svg></a></li>
<li><a target="_blank" href="mailto:?subject=Air%20Fryer%20Parmesan%20Tomatoes&body=Check%20out%20this%20post%20from%20Fork%20To%20Spoon%3A%20https%3A%2F%2Fforktospoon.com%2Fair-fryer-parmesan-tomatoes%2F"><svg class="cicon icon-envelope"><title>Email</title><use xlink:href="#icon-envelope"></use></svg></a></li>
</ul></div>
</div>
<div class="wprm-recipe-summary-wrap"><h3>Description</h3><div class="wprm-recipe-summary wprm-block-text-normal"><span style="display: block;"><strong>Air Fryer Parmesan Tomatoes</strong> are amazing! If you are looking for the perfect summer-baked tomato recipe, this one is the one, and it's so easy to make and so flavorful!</span></div></div>
<div class="wprm-recipe-ingredients-container wprm-recipe-ingredients-no-images wprm-recipe-180103-ingredients-container wprm-block-text-normal wprm-ingredient-style-regular wprm-recipe-images-before" data-recipe="180103" data-servings="6"><h3 class="wprm-recipe-header wprm-recipe-ingredients-header wprm-block-text-bold wprm-align-left wprm-header-decoration-none wprm-header-has-actions" style=""><span class="ing">Ingredients</span> </h3><div class="wprm-recipe-ingredient-group"><ul class="wprm-recipe-ingredients"><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="0"><span class="checkbox"><input type="checkbox" autocomplete="off"><span></span></span><span class="wprm-recipe-ingredient-amount">3</span> <span class="wprm-recipe-ingredient-unit">large</span> <span class="wprm-recipe-ingredient-name">tomatoes</span>, <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: disc;" data-uid="1"><span class="checkbox"><input type="checkbox" autocomplete="off"><span></span></span><span class="wprm-recipe-ingredient-amount">1</span> <span class="wprm-recipe-ingredient-unit">cup</span> <span class="wprm-recipe-ingredient-name">bread crumbs</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="2"><span class="checkbox"><input type="checkbox" autocomplete="off"><span></span></span><span class="wprm-recipe-ingredient-amount">1/4</span> <span class="wprm-recipe-ingredient-unit">cup</span> <span class="wprm-recipe-ingredient-name">parmesan cheese</span>, <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-normal">grated</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="3"><span class="checkbox"><input type="checkbox" autocomplete="off"><span></span></span><span class="wprm-recipe-ingredient-amount">1</span> <span class="wprm-recipe-ingredient-unit">teaspoon</span> <span class="wprm-recipe-ingredient-name">garlic</span>, <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-normal">minced</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="4"><span class="checkbox"><input type="checkbox" autocomplete="off"><span></span></span><span class="wprm-recipe-ingredient-amount">1</span> <span class="wprm-recipe-ingredient-unit">tablespoon</span> <span class="wprm-recipe-ingredient-name">olive oil</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="5"><span class="checkbox"><input type="checkbox" autocomplete="off"><span></span></span><span class="wprm-recipe-ingredient-amount">1/2</span> <span class="wprm-recipe-ingredient-unit">teaspoon</span> <span class="wprm-recipe-ingredient-name">dried basil</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="6"><span class="checkbox"><input type="checkbox" autocomplete="off"><span></span></span><span class="wprm-recipe-ingredient-amount">1/2</span> <span class="wprm-recipe-ingredient-unit">teaspoon</span> <span class="wprm-recipe-ingredient-name">dried parsley</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="7"><span class="checkbox"><input type="checkbox" autocomplete="off"><span></span></span><span class="wprm-recipe-ingredient-amount">1/2</span> <span class="wprm-recipe-ingredient-unit">teaspoon</span> <span class="wprm-recipe-ingredient-name">dried oregano</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="8"><span class="checkbox"><input type="checkbox" autocomplete="off"><span></span></span><span class="wprm-recipe-ingredient-amount">1/2</span> <span class="wprm-recipe-ingredient-unit">teaspoon</span> <span class="wprm-recipe-ingredient-name">dried dill</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="9"><span class="checkbox"><input type="checkbox" autocomplete="off"><span></span></span><span class="wprm-recipe-ingredient-amount">1</span> <span class="wprm-recipe-ingredient-unit">teaspoon</span> <span class="wprm-recipe-ingredient-name">salt</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="10"><span class="checkbox"><input type="checkbox" autocomplete="off"><span></span></span><span class="wprm-recipe-ingredient-amount">1/2</span> <span class="wprm-recipe-ingredient-unit">teaspoon</span> <span class="wprm-recipe-ingredient-name">black pepper</span></li></ul></div></div>
<div class="wprm-recipe-instructions-container wprm-recipe-180103-instructions-container wprm-block-text-normal" data-recipe="180103"><h3 class="wprm-recipe-header wprm-recipe-instructions-header wprm-block-text-bold wprm-align-left wprm-header-decoration-none" style="">Instructions</h3><div class="wprm-recipe-instruction-group"><ul class="wprm-recipe-instructions"><li id="wprm-recipe-180103-step-0-0" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text"><span style="display: block;">In a small mixing bowl, mix the bread crumbs, parmesan cheese, minced garlic, olive oil, basil, parsley, oregano, dill, salt, and black pepper. Mix well.</span></div></li><li id="wprm-recipe-180103-step-0-1" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text"><span style="display: block;">Slice your tomatoes in half, and top with the breadcrumb mixture. Set into the air fryer at 330 degrees F, air fryer sitting for 6 to 10 minutes, or until the tomatoes are perfectly roasted.</span></div></li><li id="wprm-recipe-180103-step-0-2" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text"><span style="display: block;">Plate, serve, and enjoy!</span></div></li></ul></div></div>
<div class="wprm-recipe-equipment-container wprm-block-text-normal" data-recipe="180103"><h3 class="wprm-recipe-header wprm-recipe-equipment-header wprm-block-text-bold wprm-align-left wprm-header-decoration-none" style="">Equipment</h3><ul class="wprm-recipe-equipment wprm-recipe-equipment-list"><li class="wprm-recipe-equipment-item" style="list-style-type: disc;"><div class="wprm-recipe-equipment-name">Air Fryer</div></li><li class="wprm-recipe-equipment-item" style="list-style-type: disc;"><div class="wprm-recipe-equipment-name">Cooking Spray</div></li><li class="wprm-recipe-equipment-item" style="list-style-type: disc;"><div class="wprm-recipe-equipment-name">Parchment Paper</div></li></ul></div>
<div class="wprm-recipe-nutrition-container"><h3 class="wprm-recipe-header wprm-recipe-nutrition-header wprm-block-text-bold wprm-align-left wprm-header-decoration-none" style="">Nutrition</h3><div class="wprm-nutrition-label-container wprm-nutrition-label-container-simple wprm-block-text-normal" style="text-align: left;"><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-serving_size"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-bold" style="color: var(--fs-black)">Serving: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: var(--fs-black)">1</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: var(--fs-black)">Serving</span></span><span style="color: var(--fs-black)"></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-calories"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-bold" style="color: var(--fs-black)">Calories: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: var(--fs-black)">126</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: var(--fs-black)">kcal</span></span><span style="color: var(--fs-black)"></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-carbohydrates"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-bold" style="color: var(--fs-black)">Carbohydrates: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: var(--fs-black)">17</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: var(--fs-black)">g</span></span><span style="color: var(--fs-black)"></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-protein"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-bold" style="color: var(--fs-black)">Protein: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: var(--fs-black)">5</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: var(--fs-black)">g</span></span><span style="color: var(--fs-black)"></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-fat"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-bold" style="color: var(--fs-black)">Fat: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: var(--fs-black)">5</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: var(--fs-black)">g</span></span><span style="color: var(--fs-black)"></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-saturated_fat"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-bold" style="color: var(--fs-black)">Saturated Fat: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: var(--fs-black)">1</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: var(--fs-black)">g</span></span><span style="color: var(--fs-black)"></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-polyunsaturated_fat"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-bold" style="color: var(--fs-black)">Polyunsaturated Fat: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: var(--fs-black)">1</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: var(--fs-black)">g</span></span><span style="color: var(--fs-black)"></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-monounsaturated_fat"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-bold" style="color: var(--fs-black)">Monounsaturated Fat: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: var(--fs-black)">2</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: var(--fs-black)">g</span></span><span style="color: var(--fs-black)"></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-cholesterol"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-bold" style="color: var(--fs-black)">Cholesterol: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: var(--fs-black)">3</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: var(--fs-black)">mg</span></span><span style="color: var(--fs-black)"></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-sodium"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-bold" style="color: var(--fs-black)">Sodium: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: var(--fs-black)">591</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: var(--fs-black)">mg</span></span><span style="color: var(--fs-black)"></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-potassium"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-bold" style="color: var(--fs-black)">Potassium: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: var(--fs-black)">266</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: var(--fs-black)">mg</span></span><span style="color: var(--fs-black)"></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-fiber"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-bold" style="color: var(--fs-black)">Fiber: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: var(--fs-black)">2</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: var(--fs-black)">g</span></span><span style="color: var(--fs-black)"></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-sugar"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-bold" style="color: var(--fs-black)">Sugar: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: var(--fs-black)">4</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: var(--fs-black)">g</span></span><span style="color: var(--fs-black)"></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-vitamin_a"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-bold" style="color: var(--fs-black)">Vitamin A: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: var(--fs-black)">800</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: var(--fs-black)">IU</span></span><span style="color: var(--fs-black)"></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-vitamin_c"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-bold" style="color: var(--fs-black)">Vitamin C: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: var(--fs-black)">13</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: var(--fs-black)">mg</span></span><span style="color: var(--fs-black)"></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-calcium"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-bold" style="color: var(--fs-black)">Calcium: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: var(--fs-black)">99</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: var(--fs-black)">mg</span></span><span style="color: var(--fs-black)"></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-iron"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-bold" style="color: var(--fs-black)">Iron: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: var(--fs-black)">1</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: var(--fs-black)">mg</span></span></div></div>
</div></div></div><div class="contentbox contentbox-yellow contentbox-share notop nobot">
<h2>Share this recipe</h2>
<div class="sharebuttons">
<ul>
<li><a target="_blank" href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fforktospoon.com%2Fair-fryer-parmesan-tomatoes%2F"><svg class="cicon icon-facebook"><title>Share on Facebook</title><use xlink:href="#icon-facebook"></use></svg></a></li>
<li><a target="_blank" href="https://twitter.com/intent/tweet?text=Air%20Fryer%20Parmesan%20Tomatoes&url=https%3A%2F%2Fforktospoon.com%2Fair-fryer-parmesan-tomatoes%2F"><svg class="cicon icon-twitter"><title>Tweet</title><use xlink:href="#icon-twitter"></use></svg></a></li>
<li><a tabindex="0" target="_blank" href="https://pinterest.com/pin/create/button/?media=https%3A%2F%2Fforktospoon.com%2Fwp-content%2Fuploads%2F2021%2F07%2FAir-Fryer-Pretzel-Bites-48-683x1024-1.jpg&description=Air%20Fryer%20Parmesan%20Tomatoes" data-pin-custom="true"><svg class="cicon icon-pinterest"><title>Pin</title><use xlink:href="#icon-pinterest"></use></svg></a></li>
<li><a target="_blank" href="mailto:?subject=Air%20Fryer%20Parmesan%20Tomatoes&body=Check%20out%20this%20post%20from%20Fork%20To%20Spoon%3A%20https%3A%2F%2Fforktospoon.com%2Fair-fryer-parmesan-tomatoes%2F"><svg class="cicon icon-envelope"><title>Email</title><use xlink:href="#icon-envelope"></use></svg></a></li>
</ul> </div>
<p>We can’t wait to see what you’ve made! Mention <a href="https://www.instagram.com/forktospoon/" target="_blank" rel="noopener">@forktospoon</a> or tag <a href="https://www.instagram.com/explore/tags/forktospoon/" target="_blank" rel="noopener">#forktospoon</a>!</p>
</div> </div>
<div class="postfooter">
<div class="mainsection catbuttons">
<ul><li><a class="btn" href="https://forktospoon.com/method/air-fryer/">Air Fryer</a></li><li><a class="btn" href="https://forktospoon.com/category/recipes/appetizers/">Appetizers</a></li><li><a class="btn" href="https://forktospoon.com/category/recipes/sides/vegetables/">Vegetables</a></li></ul> </div>
<h2>Try these other recipes</h2>
<div class="mainsection breaknarrow imagegrid imagegrid-vertical imagegrid4-main">
<ul>
<li><div class="li-a">
<div class="gridlink">
<div class="gridimage">
<div class="gridimage-a">
<img width="297" height="396" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='297'%20height='396'%20viewBox='0%200%20297%20396'%3E%3C/svg%3E" class="attachment-post-thumbnail size-post-thumbnail wp-post-image perfmatters-lazy" alt decoding="async" data-src="https://forktospoon.com/wp-content/uploads/2018/07/Save-10-Off-3-Household-Supplies-on-Amazon-_-Gain-Tide-More-2020-05-03T184622.525-297x396.png" data-srcset="https://forktospoon.com/wp-content/uploads/2018/07/Save-10-Off-3-Household-Supplies-on-Amazon-_-Gain-Tide-More-2020-05-03T184622.525-297x396.png 297w, https://forktospoon.com/wp-content/uploads/2018/07/Save-10-Off-3-Household-Supplies-on-Amazon-_-Gain-Tide-More-2020-05-03T184622.525-300x400.png 300w, https://forktospoon.com/wp-content/uploads/2018/07/Save-10-Off-3-Household-Supplies-on-Amazon-_-Gain-Tide-More-2020-05-03T184622.525-406x541.png 406w, https://forktospoon.com/wp-content/uploads/2018/07/Save-10-Off-3-Household-Supplies-on-Amazon-_-Gain-Tide-More-2020-05-03T184622.525-591x788.png 591w, https://forktospoon.com/wp-content/uploads/2018/07/Save-10-Off-3-Household-Supplies-on-Amazon-_-Gain-Tide-More-2020-05-03T184622.525-590x788.png 590w" data-sizes="(max-width:767px) calc(50vw - 30px), 167px" /><noscript><img width="297" height="396" src="https://forktospoon.com/wp-content/uploads/2018/07/Save-10-Off-3-Household-Supplies-on-Amazon-_-Gain-Tide-More-2020-05-03T184622.525-297x396.png" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" decoding="async" sizes="(max-width:767px) calc(50vw - 30px), 167px" srcset="https://forktospoon.com/wp-content/uploads/2018/07/Save-10-Off-3-Household-Supplies-on-Amazon-_-Gain-Tide-More-2020-05-03T184622.525-297x396.png 297w, https://forktospoon.com/wp-content/uploads/2018/07/Save-10-Off-3-Household-Supplies-on-Amazon-_-Gain-Tide-More-2020-05-03T184622.525-300x400.png 300w, https://forktospoon.com/wp-content/uploads/2018/07/Save-10-Off-3-Household-Supplies-on-Amazon-_-Gain-Tide-More-2020-05-03T184622.525-406x541.png 406w, https://forktospoon.com/wp-content/uploads/2018/07/Save-10-Off-3-Household-Supplies-on-Amazon-_-Gain-Tide-More-2020-05-03T184622.525-591x788.png 591w, https://forktospoon.com/wp-content/uploads/2018/07/Save-10-Off-3-Household-Supplies-on-Amazon-_-Gain-Tide-More-2020-05-03T184622.525-590x788.png 590w"></noscript> </div>
</div>
<div class="gridtitle"><a href="https://forktospoon.com/air-fryer-balsamic-bruschetta-easy-appetizer/">Air Fryer Balsamic Bruschetta</a></div> </div>
</div></li><li><div class="li-a">
<div class="gridlink">
<div class="gridimage">
<div class="gridimage-a">
<img width="297" height="396" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='297'%20height='396'%20viewBox='0%200%20297%20396'%3E%3C/svg%3E" class="attachment-post-thumbnail size-post-thumbnail wp-post-image perfmatters-lazy" alt="Air Fryer Salsa" decoding="async" data-src="https://forktospoon.com/wp-content/uploads/2023/02/Air-Fryer-Salsa-297x396.png" data-srcset="https://forktospoon.com/wp-content/uploads/2023/02/Air-Fryer-Salsa-297x396.png 297w, https://forktospoon.com/wp-content/uploads/2023/02/Air-Fryer-Salsa-300x400.png 300w, https://forktospoon.com/wp-content/uploads/2023/02/Air-Fryer-Salsa-640x853.png 640w, https://forktospoon.com/wp-content/uploads/2023/02/Air-Fryer-Salsa-406x541.png 406w, https://forktospoon.com/wp-content/uploads/2023/02/Air-Fryer-Salsa-594x792.png 594w, https://forktospoon.com/wp-content/uploads/2023/02/Air-Fryer-Salsa-812x1083.png 812w" data-sizes="(max-width:767px) calc(50vw - 30px), 167px" /><noscript><img width="297" height="396" src="https://forktospoon.com/wp-content/uploads/2023/02/Air-Fryer-Salsa-297x396.png" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Air Fryer Salsa" decoding="async" sizes="(max-width:767px) calc(50vw - 30px), 167px" srcset="https://forktospoon.com/wp-content/uploads/2023/02/Air-Fryer-Salsa-297x396.png 297w, https://forktospoon.com/wp-content/uploads/2023/02/Air-Fryer-Salsa-300x400.png 300w, https://forktospoon.com/wp-content/uploads/2023/02/Air-Fryer-Salsa-640x853.png 640w, https://forktospoon.com/wp-content/uploads/2023/02/Air-Fryer-Salsa-406x541.png 406w, https://forktospoon.com/wp-content/uploads/2023/02/Air-Fryer-Salsa-594x792.png 594w, https://forktospoon.com/wp-content/uploads/2023/02/Air-Fryer-Salsa-812x1083.png 812w"></noscript> </div>
</div>
<div class="gridtitle"><a href="https://forktospoon.com/air-fryer-salsa/">Air Fryer Salsa</a></div> </div>
</div></li><li><div class="li-a">
<div class="gridlink">
<div class="gridimage">
<div class="gridimage-a">
<img width="297" height="396" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='297'%20height='396'%20viewBox='0%200%20297%20396'%3E%3C/svg%3E" class="attachment-post-thumbnail size-post-thumbnail wp-post-image perfmatters-lazy" alt="Air Fryer Roasted Cherry Tomatoes" decoding="async" data-src="https://forktospoon.com/wp-content/uploads/2021/09/Air-Fryer-Roasted-Cherry-Tomatoes-1-297x396.jpg" data-srcset="https://forktospoon.com/wp-content/uploads/2021/09/Air-Fryer-Roasted-Cherry-Tomatoes-1-297x396.jpg 297w, https://forktospoon.com/wp-content/uploads/2021/09/Air-Fryer-Roasted-Cherry-Tomatoes-1-300x400.jpg 300w, https://forktospoon.com/wp-content/uploads/2021/09/Air-Fryer-Roasted-Cherry-Tomatoes-1-406x541.jpg 406w, https://forktospoon.com/wp-content/uploads/2021/09/Air-Fryer-Roasted-Cherry-Tomatoes-1-591x788.jpg 591w, https://forktospoon.com/wp-content/uploads/2021/09/Air-Fryer-Roasted-Cherry-Tomatoes-1-590x788.jpg 590w" data-sizes="(max-width:767px) calc(50vw - 30px), 167px" /><noscript><img width="297" height="396" src="https://forktospoon.com/wp-content/uploads/2021/09/Air-Fryer-Roasted-Cherry-Tomatoes-1-297x396.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Air Fryer Roasted Cherry Tomatoes" decoding="async" sizes="(max-width:767px) calc(50vw - 30px), 167px" srcset="https://forktospoon.com/wp-content/uploads/2021/09/Air-Fryer-Roasted-Cherry-Tomatoes-1-297x396.jpg 297w, https://forktospoon.com/wp-content/uploads/2021/09/Air-Fryer-Roasted-Cherry-Tomatoes-1-300x400.jpg 300w, https://forktospoon.com/wp-content/uploads/2021/09/Air-Fryer-Roasted-Cherry-Tomatoes-1-406x541.jpg 406w, https://forktospoon.com/wp-content/uploads/2021/09/Air-Fryer-Roasted-Cherry-Tomatoes-1-591x788.jpg 591w, https://forktospoon.com/wp-content/uploads/2021/09/Air-Fryer-Roasted-Cherry-Tomatoes-1-590x788.jpg 590w"></noscript> </div>
</div>
<div class="gridtitle"><a href="https://forktospoon.com/air-fryer-roasted-cherry-tomatoes/">Air Fryer Roasted Cherry Tomatoes</a></div> </div>
</div></li><li><div class="li-a">
<div class="gridlink">
<div class="gridimage">
<div class="gridimage-a">
<img width="297" height="396" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='297'%20height='396'%20viewBox='0%200%20297%20396'%3E%3C/svg%3E" class="attachment-post-thumbnail size-post-thumbnail wp-post-image perfmatters-lazy" alt decoding="async" data-src="https://forktospoon.com/wp-content/uploads/2021/03/Untitled-design-33-297x396.jpg" data-srcset="https://forktospoon.com/wp-content/uploads/2021/03/Untitled-design-33-297x396.jpg 297w, https://forktospoon.com/wp-content/uploads/2021/03/Untitled-design-33-300x400.jpg 300w, https://forktospoon.com/wp-content/uploads/2021/03/Untitled-design-33-406x541.jpg 406w, https://forktospoon.com/wp-content/uploads/2021/03/Untitled-design-33-591x788.jpg 591w, https://forktospoon.com/wp-content/uploads/2021/03/Untitled-design-33-590x788.jpg 590w" data-sizes="(max-width:767px) calc(50vw - 30px), 167px" /><noscript><img width="297" height="396" src="https://forktospoon.com/wp-content/uploads/2021/03/Untitled-design-33-297x396.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" decoding="async" sizes="(max-width:767px) calc(50vw - 30px), 167px" srcset="https://forktospoon.com/wp-content/uploads/2021/03/Untitled-design-33-297x396.jpg 297w, https://forktospoon.com/wp-content/uploads/2021/03/Untitled-design-33-300x400.jpg 300w, https://forktospoon.com/wp-content/uploads/2021/03/Untitled-design-33-406x541.jpg 406w, https://forktospoon.com/wp-content/uploads/2021/03/Untitled-design-33-591x788.jpg 591w, https://forktospoon.com/wp-content/uploads/2021/03/Untitled-design-33-590x788.jpg 590w"></noscript> </div>
</div>
<div class="gridtitle"><a href="https://forktospoon.com/air-fryer-vegetable-veggie-flatbread/">Air Fryer Vegetable (Veggie) Flatbread</a></div> </div>
</div></li> </ul>
</div>
<div id="comments" class="commentsection">
<div class="mainsection addcomment notop nobot">
<div id="respond" class="comment-respond">
<h2 id="reply-title">Add a Comment <small><a rel="nofollow" id="cancel-comment-reply-link" href="/air-fryer-parmesan-tomatoes/#respond" style="display:none;">Cancel reply</a></small></h2><form action="https://forktospoon.com/wp-comments-post.php" method="post" id="commentform" class="comment-form"><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">(required)</span></span></p><div class="comment-form-wprm-rating">
<label for="wprm-comment-rating-820819592">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'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><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="#fbbb29" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"></polygon>
</defs>
<use xlink:href="#wprm-star-empty-0" x="4" y="4"></use>
<use xlink:href="#wprm-star-empty-0" x="36" y="4"></use>
<use xlink:href="#wprm-star-empty-0" x="68" y="4"></use>
<use xlink:href="#wprm-star-empty-0" x="100" y="4"></use>
<use xlink:href="#wprm-star-empty-0" x="132" y="4"></use>
</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="#fbbb29" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"></polygon>
<path class="wprm-star-full" id="wprm-star-full-1" fill="#fbbb29" 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"></path>
</defs>
<use xlink:href="#wprm-star-full-1" x="4" y="4"></use>
<use xlink:href="#wprm-star-empty-1" x="36" y="4"></use>
<use xlink:href="#wprm-star-empty-1" x="68" y="4"></use>
<use xlink:href="#wprm-star-empty-1" x="100" y="4"></use>
<use xlink:href="#wprm-star-empty-1" x="132" y="4"></use>
</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="#fbbb29" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"></polygon>
<path class="wprm-star-full" id="wprm-star-full-2" fill="#fbbb29" 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"></path>
</defs>
<use xlink:href="#wprm-star-full-2" x="4" y="4"></use>
<use xlink:href="#wprm-star-full-2" x="36" y="4"></use>
<use xlink:href="#wprm-star-empty-2" x="68" y="4"></use>
<use xlink:href="#wprm-star-empty-2" x="100" y="4"></use>
<use xlink:href="#wprm-star-empty-2" x="132" y="4"></use>
</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="#fbbb29" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"></polygon>
<path class="wprm-star-full" id="wprm-star-full-3" fill="#fbbb29" 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"></path>
</defs>
<use xlink:href="#wprm-star-full-3" x="4" y="4"></use>
<use xlink:href="#wprm-star-full-3" x="36" y="4"></use>
<use xlink:href="#wprm-star-full-3" x="68" y="4"></use>
<use xlink:href="#wprm-star-empty-3" x="100" y="4"></use>
<use xlink:href="#wprm-star-empty-3" x="132" y="4"></use>
</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="#fbbb29" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"></polygon>
<path class="wprm-star-full" id="wprm-star-full-4" fill="#fbbb29" 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"></path>
</defs>
<use xlink:href="#wprm-star-full-4" x="4" y="4"></use>
<use xlink:href="#wprm-star-full-4" x="36" y="4"></use>
<use xlink:href="#wprm-star-full-4" x="68" y="4"></use>
<use xlink:href="#wprm-star-full-4" x="100" y="4"></use>
<use xlink:href="#wprm-star-empty-4" x="132" y="4"></use>
</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-820819592" 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="#fbbb29" 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"></path>
</defs>
<use xlink:href="#wprm-star-full-5" x="4" y="4"></use>
<use xlink:href="#wprm-star-full-5" x="36" y="4"></use>
<use xlink:href="#wprm-star-full-5" x="68" y="4"></use>
<use xlink:href="#wprm-star-full-5" x="100" y="4"></use>
<use xlink:href="#wprm-star-full-5" x="132" y="4"></use>
</svg></span> </fieldset>
</span>
</div>
<p class="comment-form-comment"><label for="comment">Comment <span class="required">(required)</span></label> <textarea id="comment" name="comment" cols="45" rows="8" maxlength="65525" required="required"></textarea></p><div class="comtwocol"><p class="comment-form-author"><label for="author">Name <span class="required">(required)</span></label> <input id="author" name="author" type="text" value="" size="30" maxlength="245" autocomplete="name" required="required"></p>
<p class="comment-form-email"><label for="email">Email <span class="required">(required)</span></label> <input id="email" name="email" type="text" value="" size="30" maxlength="100" aria-describedby="email-notes" autocomplete="email" required="required"></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 and email in this browser for the next time I comment.</label></p>
<p class="comment-subscription-form"><input type="checkbox" name="subscribe_comments" id="subscribe_comments" value="subscribe" style="width: auto; -moz-appearance: checkbox; -webkit-appearance: checkbox;"> <label class="subscribe-label" id="subscribe-label" for="subscribe_comments">Notify me of follow-up comments by email.</label></p><p class="comment-subscription-form"><input type="checkbox" name="subscribe_blog" id="subscribe_blog" value="subscribe" style="width: auto; -moz-appearance: checkbox; -webkit-appearance: checkbox;"> <label class="subscribe-label" id="subscribe-blog-label" for="subscribe_blog">Notify me of new posts by email.</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="89112" 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="6f1d9417cf"></p><p style="display: none !important;"><label>Δ<textarea name="ak_hp_textarea" cols="45" rows="8" maxlength="100"></textarea></label><input type="hidden" id="ak_js_1" name="ak_js" value="245"><script type="rocketlazyloadscript">document.getElementById( "ak_js_1" ).setAttribute( "value", ( new Date() ).getTime() );</script></p></form> </div><!-- #respond -->
</div>
</div> </div>
</div>
</div>
<aside id="sidebar" class="sidebar notop nobot">
<h2 class="wp-block-heading">Follow</h2>
<div class="socialicons"><ul id="menu-follow" class="menu"><li id="menu-item-185368" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-185368"><a target="_blank" rel="noopener" href="https://www.facebook.com/forktospoon/"><svg class="cicon icon-facebook"><title>Facebook</title><use xlink:href="#icon-facebook"></use></svg></a></li><li id="menu-item-185369" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-185369"><a target="_blank" rel="noopener" href="https://www.instagram.com/forktospoon"><svg class="cicon icon-instagram"><title>Instagram</title><use xlink:href="#icon-instagram"></use></svg></a></li><li id="menu-item-185370" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-185370"><a target="_blank" rel="noopener" href="https://www.pinterest.com/ForkToSpoon/"><svg class="cicon icon-pinterest"><title>Pinterest</title><use xlink:href="#icon-pinterest"></use></svg></a></li><li id="menu-item-185371" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-185371"><a target="_blank" rel="noopener" href="https://www.youtube.com/channel/UCMF1QLW6wzGmKJZxvDLGPJQ"><svg class="cicon icon-youtube"><title>YouTube</title><use xlink:href="#icon-youtube"></use></svg></a></li><li id="menu-item-185372" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-185372"><a target="_blank" rel="noopener" href="https://www.tiktok.com/@forktospoon"><svg class="cicon icon-tiktok"><title>TikTok</title><use xlink:href="#icon-tiktok"></use></svg></a></li></ul></div>
<figure class="wp-block-image size-large"><img decoding="async" width="760" height="937" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='760'%20height='937'%20viewBox='0%200%20760%20937'%3E%3C/svg%3E" alt class="wp-image-185288 perfmatters-lazy" data-src="https://forktospoon.com/wp-content/uploads/2023/08/air-fryer-cookbook-cover-760x937.jpg" data-srcset="https://forktospoon.com/wp-content/uploads/2023/08/air-fryer-cookbook-cover-760x937.jpg 760w, https://forktospoon.com/wp-content/uploads/2023/08/air-fryer-cookbook-cover-380x469.jpg 380w, https://forktospoon.com/wp-content/uploads/2023/08/air-fryer-cookbook-cover-768x947.jpg 768w, https://forktospoon.com/wp-content/uploads/2023/08/air-fryer-cookbook-cover-1246x1536.jpg 1246w, https://forktospoon.com/wp-content/uploads/2023/08/air-fryer-cookbook-cover-1661x2048.jpg 1661w, https://forktospoon.com/wp-content/uploads/2023/08/air-fryer-cookbook-cover-scaled.jpg 1200w, https://forktospoon.com/wp-content/uploads/2023/08/air-fryer-cookbook-cover-150x185.jpg 150w" data-sizes="(max-width: 800px) calc(100vw - 40px), 760px" /><noscript><img decoding="async" width="760" height="937" src="https://forktospoon.com/wp-content/uploads/2023/08/air-fryer-cookbook-cover-760x937.jpg" alt="" class="wp-image-185288" srcset="https://forktospoon.com/wp-content/uploads/2023/08/air-fryer-cookbook-cover-760x937.jpg 760w, https://forktospoon.com/wp-content/uploads/2023/08/air-fryer-cookbook-cover-380x469.jpg 380w, https://forktospoon.com/wp-content/uploads/2023/08/air-fryer-cookbook-cover-768x947.jpg 768w, https://forktospoon.com/wp-content/uploads/2023/08/air-fryer-cookbook-cover-1246x1536.jpg 1246w, https://forktospoon.com/wp-content/uploads/2023/08/air-fryer-cookbook-cover-1661x2048.jpg 1661w, https://forktospoon.com/wp-content/uploads/2023/08/air-fryer-cookbook-cover-scaled.jpg 1200w, https://forktospoon.com/wp-content/uploads/2023/08/air-fryer-cookbook-cover-150x185.jpg 150w" sizes="(max-width: 800px) calc(100vw - 40px), 760px"></noscript></figure>
<div class="subscribebox">
<div class="sb-image"><img width="330" height="187" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='330'%20height='187'%20viewBox='0%200%20330%20187'%3E%3C/svg%3E" class="attachment-fssubscribe size-fssubscribe perfmatters-lazy" alt decoding="async" data-src="https://forktospoon.com/wp-content/uploads/2023/08/ebook-spread-330x187.png" data-srcset="https://forktospoon.com/wp-content/uploads/2023/08/ebook-spread-330x187.png 330w, https://forktospoon.com/wp-content/uploads/2023/08/ebook-spread-380x216.png 380w, https://forktospoon.com/wp-content/uploads/2023/08/ebook-spread-760x432.png 760w, https://forktospoon.com/wp-content/uploads/2023/08/ebook-spread-768x436.png 768w, https://forktospoon.com/wp-content/uploads/2023/08/ebook-spread-480x270.png 480w, https://forktospoon.com/wp-content/uploads/2023/08/ebook-spread-150x85.png 150w, https://forktospoon.com/wp-content/uploads/2023/08/ebook-spread-660x375.png 660w, https://forktospoon.com/wp-content/uploads/2023/08/ebook-spread.png 1200w" data-sizes="(max-width: 370px) calc(100vw - 40px), 330px" /><noscript><img width="330" height="187" src="https://forktospoon.com/wp-content/uploads/2023/08/ebook-spread-330x187.png" class="attachment-fssubscribe size-fssubscribe" alt="" decoding="async" srcset="https://forktospoon.com/wp-content/uploads/2023/08/ebook-spread-330x187.png 330w, https://forktospoon.com/wp-content/uploads/2023/08/ebook-spread-380x216.png 380w, https://forktospoon.com/wp-content/uploads/2023/08/ebook-spread-760x432.png 760w, https://forktospoon.com/wp-content/uploads/2023/08/ebook-spread-768x436.png 768w, https://forktospoon.com/wp-content/uploads/2023/08/ebook-spread-480x270.png 480w, https://forktospoon.com/wp-content/uploads/2023/08/ebook-spread-150x85.png 150w, https://forktospoon.com/wp-content/uploads/2023/08/ebook-spread-660x375.png 660w, https://forktospoon.com/wp-content/uploads/2023/08/ebook-spread.png 1200w" sizes="(max-width: 370px) calc(100vw - 40px), 330px"></noscript></div>
<h2>download my free ebook: 10 of the best air fryer appetizers!</h2>
<div id="mlb2-5000001" class="ml-custom-subscribe ml-form-embedContainer ml-subscribe-form ml-subscribe-form-5000001">
<div class="ml-form-align-center ">
<div class="ml-form-embedWrapper embedForm">
<div class="ml-form-embedBody ml-form-embedBodyDefault row-form">
<form class="subscribeform ml-block-form" action="https://assets.mailerlite.com/jsonp/270764/forms/91536366682245091/subscribe" data-code="" method="post" target="_blank" data-formid="91536366682245091">
<div class="ml-form-formContent">
<div class="ml-form-fieldRow ">
<div class="ml-field-group ml-field-name">
<input id="subscribename" aria-label="name" type="text" class="form-control" data-inputmask="" name="fields[name]" placeholder="First name" autocomplete="given-name">
<label for="subscribename"><span>First name</span></label>
</div>
</div><div class="ml-form-fieldRow ml-last-item">
<div class="ml-field-group ml-field-email ml-validate-email ml-validate-required">
<input required id="subscribeemail" aria-label="email" aria-required="true" type="email" class="form-control" data-inputmask="" name="fields[email]" placeholder="email@example.com" autocomplete="email">
<label for="subscribeemail"><span>Email</span></label>
</div>
</div>
</div>
<input type="hidden" name="ml-submit" value="1">
<div class="ml-form-embedSubmit">
<button type="submit" class="primary">Subscribe</button>
<button disabled style="display: none;" type="button" class="loading">
<div class="ml-form-embedSubmitLoad"></div>
<span class="sr-only">Loading…</span>
</button>
</div>
<input type="hidden" name="anticsrf" value="true">
</form>
</div>
<div class="ml-form-successBody row-success" style="display: none">
<div class="ml-form-successContent">
<h4>Thank you!</h4>
<p>You have successfully joined our subscriber list.</p>
</div>
</div>
</div>
</div>
</div>
<script type="rocketlazyloadscript">
function ml_webform_success_5000001() {
var $ = ml_jQuery || jQuery;
$('.ml-subscribe-form-5000001 .row-success').show();
$('.ml-subscribe-form-5000001 .row-form').hide();
}
//fetch("https://assets.mailerlite.com/jsonp/270764/forms/91536366682245091/track-view")
</script></div>
</aside></div>
</div>
</div>
<div class="bodysection bodysection-yellow"><div class="container notop nobot"><div class="wp-block-media-text mainsection breaknarrow alignwide is-stacked-on-mobile is-style-equal"><figure class="wp-block-media-text__media" style="max-width:610px"><img decoding="async" width="760" height="432" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='760'%20height='432'%20viewBox='0%200%20760%20432'%3E%3C/svg%3E" alt="Free eBook - 10 of the best air fryer appetizers!" class="wp-image-185255 size-full perfmatters-lazy" data-src="https://forktospoon.com/wp-content/uploads/2023/08/ebook-spread-760x432.png" data-srcset="https://forktospoon.com/wp-content/uploads/2023/08/ebook-spread-760x432.png 760w, https://forktospoon.com/wp-content/uploads/2023/08/ebook-spread-380x216.png 380w, https://forktospoon.com/wp-content/uploads/2023/08/ebook-spread-768x436.png 768w, https://forktospoon.com/wp-content/uploads/2023/08/ebook-spread-150x85.png 150w, https://forktospoon.com/wp-content/uploads/2023/08/ebook-spread-330x187.png 330w, https://forktospoon.com/wp-content/uploads/2023/08/ebook-spread-660x375.png 660w, https://forktospoon.com/wp-content/uploads/2023/08/ebook-spread.png 1200w" data-sizes="(max-width:571px) calc(100vw - 40px), 610px" /><noscript><img decoding="async" width="760" height="432" sizes="(max-width:571px) calc(100vw - 40px), 610px" src="https://forktospoon.com/wp-content/uploads/2023/08/ebook-spread-760x432.png" alt="Free eBook - 10 of the best air fryer appetizers!" class="wp-image-185255 size-full" srcset="https://forktospoon.com/wp-content/uploads/2023/08/ebook-spread-760x432.png 760w, https://forktospoon.com/wp-content/uploads/2023/08/ebook-spread-380x216.png 380w, https://forktospoon.com/wp-content/uploads/2023/08/ebook-spread-768x436.png 768w, https://forktospoon.com/wp-content/uploads/2023/08/ebook-spread-150x85.png 150w, https://forktospoon.com/wp-content/uploads/2023/08/ebook-spread-330x187.png 330w, https://forktospoon.com/wp-content/uploads/2023/08/ebook-spread-660x375.png 660w, https://forktospoon.com/wp-content/uploads/2023/08/ebook-spread.png 1200w"></noscript></figure><div class="wp-block-media-text__content">
<h2 class="wp-block-heading">download my free ebook:<br>10 of the best air fryer appetizers!</h2>
<div id="mlb2-5000002" class="ml-custom-subscribe ml-form-embedContainer ml-subscribe-form ml-subscribe-form-5000002">
<div class="ml-form-align-center ">
<div class="ml-form-embedWrapper embedForm">
<div class="ml-form-embedBody ml-form-embedBodyDefault row-form">
<form class="subscribeform ml-block-form" action="https://assets.mailerlite.com/jsonp/270764/forms/91541175364748529/subscribe" data-code="" method="post" target="_blank" data-formid="91541175364748529">
<div class="ml-form-formContent">
<div class="ml-form-fieldRow ">
<div class="ml-field-group ml-field-name">
<input id="subscribename" aria-label="name" type="text" class="form-control" data-inputmask="" name="fields[name]" placeholder="First name" autocomplete="given-name">
<label for="subscribename"><span>First name</span></label>
</div>
</div><div class="ml-form-fieldRow ml-last-item">
<div class="ml-field-group ml-field-email ml-validate-email ml-validate-required">
<input required id="subscribeemail" aria-label="email" aria-required="true" type="email" class="form-control" data-inputmask="" name="fields[email]" placeholder="email@example.com" autocomplete="email">
<label for="subscribeemail"><span>Email</span></label>
</div>
</div>
</div>
<input type="hidden" name="ml-submit" value="1">
<div class="ml-form-embedSubmit">
<button type="submit" class="primary">Subscribe</button>
<button disabled style="display: none;" type="button" class="loading">
<div class="ml-form-embedSubmitLoad"></div>
<span class="sr-only">Loading…</span>
</button>
</div>
<input type="hidden" name="anticsrf" value="true">
</form>
</div>
<div class="ml-form-successBody row-success" style="display: none">
<div class="ml-form-successContent">
<h4>Thank you!</h4>
<p>You have successfully joined our subscriber list.</p>
</div>
</div>
</div>
</div>
</div>
<script type="rocketlazyloadscript">
function ml_webform_success_5000002() {
var $ = ml_jQuery || jQuery;
$('.ml-subscribe-form-5000002 .row-success').show();
$('.ml-subscribe-form-5000002 .row-form').hide();
}
//fetch("https://assets.mailerlite.com/jsonp/270764/forms/91541175364748529/track-view")
</script></div></div></div></div></main>
<footer id="footer">
<div class="container notop nobot">
<div class="ftcols">
<div class="ftcol">
<div class="ftcol-a">
<h2>Recipes</h2><ul id="menu-recipes" class="ftmenu"><li id="menu-item-185355" class="menu-item menu-item-type-taxonomy menu-item-object-fts_method current-post-ancestor current-menu-parent current-post-parent menu-item-185355"><a href="https://forktospoon.com/method/air-fryer/">Air Fryer</a></li><li id="menu-item-185356" class="menu-item menu-item-type-taxonomy menu-item-object-fts_method menu-item-185356"><a href="https://forktospoon.com/method/blackstone/">Blackstone</a></li><li id="menu-item-185358" class="menu-item menu-item-type-taxonomy menu-item-object-fts_method menu-item-185358"><a href="https://forktospoon.com/method/instant-pot/">Instant Pot</a></li><li id="menu-item-185360" class="menu-item menu-item-type-taxonomy menu-item-object-fts_method menu-item-185360"><a href="https://forktospoon.com/method/ninja-foodi/">Ninja Foodi</a></li><li id="menu-item-185361" class="menu-item menu-item-type-taxonomy menu-item-object-fts_method menu-item-185361"><a href="https://forktospoon.com/method/ninja-foodi-grill/">Ninja Foodi Grill</a></li><li id="menu-item-185359" class="menu-item menu-item-type-taxonomy menu-item-object-fts_method menu-item-185359"><a href="https://forktospoon.com/method/ninja-creami/">Ninja Creami</a></li><li id="menu-item-185362" class="menu-item menu-item-type-taxonomy menu-item-object-fts_method menu-item-185362"><a href="https://forktospoon.com/method/ninja-woodfire/">Ninja Woodfire</a></li><li id="menu-item-185357" class="menu-item menu-item-type-taxonomy menu-item-object-fts_method menu-item-185357"><a href="https://forktospoon.com/method/cooking/">Cooking</a></li></ul>
</div>
</div>
<div class="ftcol">
<div class="ftcol-a">
<h2>Resources</h2><ul id="menu-resources" class="ftmenu"><li id="menu-item-185350" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-185350"><a href="https://forktospoon.com/weekly-meal-plan/">Weekly Meal Plan</a></li><li id="menu-item-185351" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-185351"><a href="https://forktospoon.com/category/charts-tips/">Charts & Tips</a></li><li id="menu-item-185352" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-185352"><a href="https://forktospoon.com/cookbook/">Cookbook</a></li><li id="menu-item-185353" class="menu-item menu-item-type-post_type_archive menu-item-object-fs_product menu-item-185353"><a href="https://forktospoon.com/shop/">Shop</a></li><li id="menu-item-185354" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-185354"><a target="_blank" rel="noopener" href="https://www.facebook.com/groups/1522233111383384">Facebook Group</a></li></ul>
</div>
</div>
<div class="ftcol">
<div class="ftcol-a">
<h2>Follow</h2><ul id="menu-follow-1" class="ftmenu"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-185368"><a target="_blank" rel="noopener" href="https://www.facebook.com/forktospoon/">Facebook</a></li><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-185369"><a target="_blank" rel="noopener" href="https://www.instagram.com/forktospoon">Instagram</a></li><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-185370"><a target="_blank" rel="noopener" href="https://www.pinterest.com/ForkToSpoon/">Pinterest</a></li><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-185371"><a target="_blank" rel="noopener" href="https://www.youtube.com/channel/UCMF1QLW6wzGmKJZxvDLGPJQ">YouTube</a></li><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-185372"><a target="_blank" rel="noopener" href="https://www.tiktok.com/@forktospoon">TikTok</a></li></ul>
</div>
</div>
<div class="ftcol ftcol-subscribe">
<div class="ftcol-a">
<h2>Get new recipes each week!</h2>
<div id="mlb2-5000003" class="ml-custom-subscribe ml-form-embedContainer ml-subscribe-form ml-subscribe-form-5000003">
<div class="ml-form-align-center ">
<div class="ml-form-embedWrapper embedForm">
<div class="ml-form-embedBody ml-form-embedBodyDefault row-form">
<form class="subscribeform ml-block-form" action="https://assets.mailerlite.com/jsonp/270764/forms/91536366682245091/subscribe" data-code="" method="post" target="_blank" data-formid="91536366682245091">
<div class="ml-form-formContent">
<div class="ml-form-fieldRow ">
<div class="ml-field-group ml-field-name">
<input id="subscribename" aria-label="name" type="text" class="form-control" data-inputmask="" name="fields[name]" placeholder="First name" autocomplete="given-name">
<label for="subscribename"><span>First name</span></label>
</div>
</div><div class="ml-form-fieldRow ml-last-item">
<div class="ml-field-group ml-field-email ml-validate-email ml-validate-required">
<input required id="subscribeemail" aria-label="email" aria-required="true" type="email" class="form-control" data-inputmask="" name="fields[email]" placeholder="email@example.com" autocomplete="email">
<label for="subscribeemail"><span>Email</span></label>
</div>
</div>
</div>
<input type="hidden" name="ml-submit" value="1">
<div class="ml-form-embedSubmit">
<button type="submit" class="primary">Subscribe</button>
<button disabled="disabled" style="display: none;" type="button" class="loading">
<div class="ml-form-embedSubmitLoad"></div>
<span class="sr-only">Loading...</span>
</button>
</div>
<input type="hidden" name="anticsrf" value="true">
</form>
</div>
<div class="ml-form-successBody row-success" style="display: none">
<div class="ml-form-successContent">
<h4>Thank you!</h4>
<p>You have successfully joined our subscriber list.</p>
</div>
</div>
</div>
</div>
</div>
<script type="rocketlazyloadscript">
function ml_webform_success_5000003() {
var $ = ml_jQuery || jQuery;
$('.ml-subscribe-form-5000003 .row-success').show();
$('.ml-subscribe-form-5000003 .row-form').hide();
}
//fetch("https://assets.mailerlite.com/jsonp/270764/forms/91536366682245091/track-view")
</script> </div>
</div>
</div>
<div class="ftsmall"><ul id="menu-footer-bar" class="menu"><li id="menu-item-185363" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-185363"><span>© 2023 Fork to Spoon</span></li><li id="menu-item-185366" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-185366"><a href="https://forktospoon.com/contact/">Contact</a></li><li id="menu-item-185364" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-185364"><a href="https://forktospoon.com/privacy-policy/">Privacy</a></li><li id="menu-item-185365" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-185365"><a href="https://forktospoon.com/affiliate-policy/">Disclosure</a></li><li id="menu-item-185367" class="right menu-item menu-item-type-custom menu-item-object-custom menu-item-185367"><a target="_blank" rel="nofollow" href="https://www.cre8d-design.com">Site by cre8d</a></li></ul></div>
</div>
</footer>
</div>
<div id="subscribe-popup" class="modal custommodal">
<div class="modal-a">
<h2>Get new family-favorite recipes weekly:</h2>
<div id="mlb2-5000004" class="ml-custom-subscribe ml-form-embedContainer ml-subscribe-form ml-subscribe-form-5000004">
<div class="ml-form-align-center ">
<div class="ml-form-embedWrapper embedForm">
<div class="ml-form-embedBody ml-form-embedBodyDefault row-form">
<form class="subscribeform ml-block-form" action="https://assets.mailerlite.com/jsonp/270764/forms/91536366682245091/subscribe" data-code="" method="post" target="_blank" data-formid="91536366682245091">
<div class="ml-form-formContent">
<div class="ml-form-fieldRow ">
<div class="ml-field-group ml-field-name">
<input id="subscribename" aria-label="name" type="text" class="form-control" data-inputmask="" name="fields[name]" placeholder="First name" autocomplete="given-name">
<label for="subscribename"><span>First name</span></label>
</div>
</div><div class="ml-form-fieldRow ml-last-item">
<div class="ml-field-group ml-field-email ml-validate-email ml-validate-required">
<input required id="subscribeemail" aria-label="email" aria-required="true" type="email" class="form-control" data-inputmask="" name="fields[email]" placeholder="email@example.com" autocomplete="email">
<label for="subscribeemail"><span>Email</span></label>
</div>
</div>
</div>
<input type="hidden" name="ml-submit" value="1">
<div class="ml-form-embedSubmit">
<button type="submit" class="primary">Subscribe</button>
<button disabled="disabled" style="display: none;" type="button" class="loading">
<div class="ml-form-embedSubmitLoad"></div>
<span class="sr-only">Loading...</span>
</button>
</div>
<input type="hidden" name="anticsrf" value="true">
</form>
</div>
<div class="ml-form-successBody row-success" style="display: none">
<div class="ml-form-successContent">
<h4>Thank you!</h4>
<p>You have successfully joined our subscriber list.</p>
</div>
</div>
</div>
</div>
</div>
<script type="rocketlazyloadscript">
function ml_webform_success_5000004() {
var $ = ml_jQuery || jQuery;
$('.ml-subscribe-form-5000004 .row-success').show();
$('.ml-subscribe-form-5000004 .row-form').hide();
}
</script> <button class="closebtn"><svg class="cicon icon-xmark"><title>Close</title><use xlink:href="#icon-xmark"></use></svg></button>
</div>
</div>
<script type="rocketlazyloadscript">window.wprm_recipes = {"recipe-180103":{"id":180103,"type":"food","name":"Air Fryer Parmesan Tomatoes"}}</script> <script type="rocketlazyloadscript" data-rocket-type="text/javascript">
function genesisBlocksShare( url, title, w, h ){
var left = ( window.innerWidth / 2 )-( w / 2 );
var top = ( window.innerHeight / 2 )-( h / 2 );
return window.open(url, title, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=600, height=600, top='+top+', left='+left);
}
</script>
<svg aria-hidden="true" style="position: absolute; width: 0; height: 0; overflow: hidden;" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<symbol id="icon-search-solid" viewBox="0 0 32 32"><path d="M26 13c0 2.869-0.931 5.519-2.5 7.669l8.331 8.331-2.831 2.831-8.331-8.331c-2.15 1.575-4.8 2.5-7.669 2.5-7.181 0-13-5.819-13-13s5.819-13 13-13 13 5.819 13 13zM13 22c4.971 0 9-4.029 9-9s-4.029-9-9-9v0c-4.971 0-9 4.029-9 9s4.029 9 9 9v0z"></path></symbol>
<symbol id="icon-bars" viewBox="0 0 28 32"><path d="M0 5.5c0-0.828 0.672-1.5 1.5-1.5h25c0.831 0 1.5 0.672 1.5 1.5 0 0.831-0.669 1.5-1.5 1.5h-25c-0.828 0-1.5-0.669-1.5-1.5zM0 15.5c0-0.831 0.672-1.5 1.5-1.5h25c0.831 0 1.5 0.669 1.5 1.5s-0.669 1.5-1.5 1.5h-25c-0.828 0-1.5-0.669-1.5-1.5zM26.5 27h-25c-0.828 0-1.5-0.669-1.5-1.5s0.672-1.5 1.5-1.5h25c0.831 0 1.5 0.669 1.5 1.5s-0.669 1.5-1.5 1.5z"></path></symbol>
<symbol id="icon-xmark" viewBox="0 0 20 32"><path d="M19.506 23.438c0.586 0.586 0.586 1.536 0 2.121s-1.536 0.586-2.121 0l-7.385-7.44-7.438 7.438c-0.586 0.586-1.536 0.586-2.121 0s-0.586-1.536 0-2.121l7.44-7.435-7.442-7.494c-0.586-0.586-0.586-1.536 0-2.121s1.536-0.586 2.121 0l7.44 7.496 7.438-7.438c0.586-0.586 1.536-0.586 2.121 0s0.586 1.536 0 2.121l-7.44 7.435 7.387 7.438z"></path></symbol>
<symbol id="icon-angle-down" viewBox="0 0 20 32"><path d="M9.469 21.738l-9.25-9.175c-0.294-0.294-0.294-0.769 0-1.063l1.238-1.238c0.294-0.294 0.769-0.294 1.062 0l7.481 7.406 7.481-7.406c0.294-0.294 0.769-0.294 1.063 0l1.238 1.238c0.294 0.294 0.294 0.769 0 1.063l-9.25 9.175c-0.294 0.294-0.769 0.294-1.063 0z"></path></symbol>
<symbol id="icon-facebook" viewBox="0 0 18 32"><path d="M11.348 32v-14h4.668l0.889-5.791h-5.557v-3.758c0-1.584 0.776-3.129 3.265-3.129h2.526v-4.931c0 0-2.293-0.391-4.484-0.391-4.576 0-7.567 2.774-7.567 7.795v4.414h-5.087v5.791h5.087v14h6.261z"></path></symbol>
<symbol id="icon-twitter" viewBox="0 0 37 32"><path d="M12.268 30.439c13.401 0 20.733-11.1 20.733-20.733 0-0.316 0-0.632-0.023-0.948 1.421-1.038 2.662-2.324 3.655-3.768-1.308 0.564-2.73 0.97-4.196 1.128 1.511-0.902 2.662-2.324 3.204-4.016-1.399 0.835-2.978 1.444-4.625 1.76-1.331-1.421-3.226-2.301-5.324-2.301-4.038 0-7.287 3.271-7.287 7.287 0 0.564 0.068 1.128 0.18 1.669-6.046-0.316-11.438-3.204-15.025-7.625-0.632 1.083-0.993 2.324-0.993 3.677 0 2.527 1.286 4.76 3.249 6.069-1.196-0.045-2.324-0.383-3.294-0.925v0.090c0 3.542 2.504 6.475 5.843 7.152-0.609 0.158-1.263 0.248-1.918 0.248-0.474 0-0.925-0.045-1.376-0.113 0.925 2.888 3.61 4.986 6.813 5.054-2.504 1.963-5.64 3.113-9.047 3.113-0.609 0-1.173-0.023-1.76-0.090 3.226 2.075 7.061 3.271 11.19 3.271z"></path></symbol>
<symbol id="icon-pinterest" viewBox="0 0 26 32"><path d="M5.757 31.512c3.15-4.313 3.037-5.156 4.462-10.8 0.769 1.462 2.756 2.25 4.331 2.25 6.637 0 9.619-6.469 9.619-12.3 0-6.206-5.363-10.256-11.25-10.256-6.412 0-12.75 4.275-12.75 11.194 0 4.4 2.475 6.9 3.975 6.9 0.619 0 0.975-1.725 0.975-2.213 0-0.581-1.481-1.819-1.481-4.238 0-5.025 3.825-8.587 8.775-8.587 4.256 0 7.406 2.419 7.406 6.863 0 3.319-1.331 9.544-5.644 9.544-1.556 0-2.887-1.125-2.887-2.738 0-2.363 1.65-4.65 1.65-7.087 0-4.138-5.869-3.388-5.869 1.613 0 1.050 0.131 2.213 0.6 3.169-0.862 3.712-2.625 9.244-2.625 13.069 0 1.181 0.169 2.344 0.281 3.525 0.213 0.238 0.106 0.212 0.431 0.094z"></path></symbol>
<symbol id="icon-envelope" viewBox="0 0 32 32"><path d="M31.394 11.925c0.244-0.194 0.606-0.012 0.606 0.294v12.781c0 1.656-1.344 3-3 3h-26c-1.656 0-3-1.344-3-3v-12.775c0-0.313 0.356-0.488 0.606-0.294 1.4 1.088 3.256 2.469 9.631 7.1 1.319 0.962 3.544 2.988 5.763 2.975 2.231 0.019 4.5-2.050 5.769-2.975 6.375-4.631 8.225-6.019 9.625-7.106zM16 20c1.45 0.025 3.538-1.825 4.587-2.587 8.294-6.019 8.925-6.544 10.837-8.044 0.363-0.281 0.575-0.719 0.575-1.181v-1.188c0-1.656-1.344-3-3-3h-26c-1.656 0-3 1.344-3 3v1.188c0 0.463 0.212 0.894 0.575 1.181 1.912 1.494 2.544 2.025 10.838 8.044 1.050 0.762 3.138 2.613 4.588 2.587z"></path></symbol>
<symbol id="icon-arrow-down-solid" viewBox="0 0 24 32"><path d="M10.588 29.413c0.781 0.781 2.050 0.781 2.831 0l10-10c0.781-0.781 0.781-2.050 0-2.831s-2.050-0.781-2.831 0l-6.588 6.594v-19.175c0-1.106-0.894-2-2-2s-2 0.894-2 2v19.169l-6.588-6.581c-0.781-0.781-2.050-0.781-2.831 0s-0.781 2.050 0 2.831l10 10z"></path></symbol>
<symbol id="icon-print" viewBox="0 0 32 32"><path d="M28 12v-7.172c0-0.531-0.211-1.039-0.586-1.414l-2.829-2.828c-0.375-0.375-0.884-0.586-1.414-0.586h-17.171c-1.104 0-2 0.896-2 2v10c-2.209 0-4 1.791-4 4v7c0 0.552 0.448 1 1 1h3v6c0 1.104 0.896 2 2 2h20c1.104 0 2-0.896 2-2v-6h3c0.552 0 1-0.448 1-1v-7c0-2.209-1.791-4-4-4zM24 28h-16v-6h16v6zM24 14h-16v-10h12v3c0 0.553 0.448 1 1 1h3v6zM27 18.5c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.671 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5z"></path></symbol>
<symbol id="icon-instagram" viewBox="0 0 32 32"><path d="M22.168 31.444c2.493-0.118 4.701-0.688 6.521-2.514 1.819-1.819 2.389-4.028 2.514-6.521 0.146-2.569 0.146-10.264 0-12.833-0.118-2.493-0.687-4.701-2.514-6.521-1.819-1.819-4.028-2.389-6.521-2.514-2.569-0.146-10.271-0.146-12.84 0-2.486 0.118-4.694 0.687-6.521 2.507s-2.389 4.028-2.514 6.521c-0.146 2.569-0.146 10.271 0 12.84 0.118 2.493 0.688 4.701 2.514 6.521s4.028 2.389 6.521 2.514c2.569 0.146 10.271 0.146 12.84 0zM15.751 28.75c-2.264 0-7.132 0.181-9.174-0.625-1.361-0.542-2.41-1.59-2.958-2.958-0.813-2.049-0.625-6.91-0.625-9.174s-0.181-7.132 0.625-9.174c0.542-1.361 1.59-2.41 2.958-2.958 2.049-0.813 6.91-0.625 9.174-0.625s7.132-0.181 9.174 0.625c1.361 0.542 2.41 1.59 2.958 2.958 0.813 2.049 0.625 6.91 0.625 9.174s0.188 7.132-0.625 9.174c-0.542 1.361-1.59 2.41-2.958 2.958-2.049 0.813-6.91 0.625-9.174 0.625zM24.056 9.549c1.028 0 1.861-0.826 1.861-1.861 0-1.028-0.833-1.861-1.861-1.861s-1.861 0.833-1.861 1.861c0 1.028 0.826 1.861 1.861 1.861zM15.751 23.972c4.417 0 7.979-3.563 7.979-7.979s-3.563-7.979-7.979-7.979c-4.417 0-7.979 3.563-7.979 7.979s3.563 7.979 7.979 7.979zM15.751 21.181c-2.854 0-5.187-2.326-5.187-5.187s2.326-5.188 5.187-5.188c2.861 0 5.188 2.326 5.188 5.188s-2.333 5.187-5.188 5.187z"></path></symbol>
<symbol id="icon-youtube" viewBox="0 0 48 32"><path d="M41.873 31.044c1.958-0.527 3.501-2.014 4.024-3.985 0.842-3.164 0.939-9.373 0.95-10.751v-0.55c-0.011-1.378-0.107-7.587-0.95-10.751-0.523-1.971-2.066-3.523-4.024-4.050-3.187-0.86-14.989-0.947-17.364-0.956h-0.836c-2.375 0.009-14.177 0.097-17.364 0.956-1.958 0.527-3.501 2.079-4.024 4.050-0.842 3.164-0.939 9.373-0.95 10.751l-0.001 0.204c0 0.023 0 0.041 0 0.053v0.018c0 0 0 0.024 0 0.071l0.001 0.204c0.011 1.378 0.107 7.587 0.95 10.751 0.523 1.971 2.066 3.459 4.024 3.985 3.115 0.84 14.457 0.943 17.188 0.956h1.189c2.731-0.013 14.073-0.115 17.188-0.956zM19.436 22.8v-13.535l11.896 6.768-11.896 6.767z"></path></symbol>
<symbol id="icon-tiktok" viewBox="0 0 30 32"><path d="M10.162 32c5.607 0 10.16-4.551 10.162-10.158v-11.173c2.151 1.54 4.798 2.454 7.643 2.454h0.032v-5.463c-0.001 0-0.009-0.005-0.009-0.005-1.544 0-2.98-0.462-4.179-1.255-1.732-1.116-2.977-2.916-3.37-5.015-0.077-0.432-0.117-0.869-0.117-1.322 0-0.021 0-0.042 0-0.064h-5.501v21.842c0 2.575-2.090 4.666-4.665 4.666s-4.665-2.090-4.665-4.665c0-2.575 2.090-4.665 4.665-4.665 0.488 0 0.958 0.075 1.4 0.214v-5.62c-0.46-0.064-0.918-0.096-1.395-0.096-5.609 0-10.162 4.553-10.162 10.162s4.553 10.162 10.162 10.162z"></path></symbol>
</defs>
</svg>
<script type='text/javascript' id='pt-cv-content-views-script-js-extra'>
/* <![CDATA[ */
var PT_CV_PUBLIC = {"_prefix":"pt-cv-","page_to_show":"5","_nonce":"13112c4910","is_admin":"","is_mobile":"","ajaxurl":"https:\/\/forktospoon.com\/wp-admin\/admin-ajax.php","lang":"","loading_image_src":"data:image\/gif;base64,R0lGODlhDwAPALMPAMrKygwMDJOTkz09PZWVla+vr3p6euTk5M7OzuXl5TMzMwAAAJmZmWZmZszMzP\/\/\/yH\/C05FVFNDQVBFMi4wAwEAAAAh+QQFCgAPACwAAAAADwAPAAAEQvDJaZaZOIcV8iQK8VRX4iTYoAwZ4iCYoAjZ4RxejhVNoT+mRGP4cyF4Pp0N98sBGIBMEMOotl6YZ3S61Bmbkm4mAgAh+QQFCgAPACwAAAAADQANAAAENPDJSRSZeA418itN8QiK8BiLITVsFiyBBIoYqnoewAD4xPw9iY4XLGYSjkQR4UAUD45DLwIAIfkEBQoADwAsAAAAAA8ACQAABC\/wyVlamTi3nSdgwFNdhEJgTJoNyoB9ISYoQmdjiZPcj7EYCAeCF1gEDo4Dz2eIAAAh+QQFCgAPACwCAAAADQANAAAEM\/DJBxiYeLKdX3IJZT1FU0iIg2RNKx3OkZVnZ98ToRD4MyiDnkAh6BkNC0MvsAj0kMpHBAAh+QQFCgAPACwGAAAACQAPAAAEMDC59KpFDll73HkAA2wVY5KgiK5b0RRoI6MuzG6EQqCDMlSGheEhUAgqgUUAFRySIgAh+QQFCgAPACwCAAIADQANAAAEM\/DJKZNLND\/kkKaHc3xk+QAMYDKsiaqmZCxGVjSFFCxB1vwy2oOgIDxuucxAMTAJFAJNBAAh+QQFCgAPACwAAAYADwAJAAAEMNAs86q1yaWwwv2Ig0jUZx3OYa4XoRAfwADXoAwfo1+CIjyFRuEho60aSNYlOPxEAAAh+QQFCgAPACwAAAIADQANAAAENPA9s4y8+IUVcqaWJ4qEQozSoAzoIyhCK2NFU2SJk0hNnyEOhKR2AzAAj4Pj4GE4W0bkJQIAOw=="};
var PT_CV_PAGINATION = {"first":"\u00ab","prev":"\u2039","next":"\u203a","last":"\u00bb","goto_first":"Go to first page","goto_prev":"Go to previous page","goto_next":"Go to next page","goto_last":"Go to last page","current_page":"Current page is","goto_page":"Go to page"};
/* ]]> */
</script>
<script type="rocketlazyloadscript" data-minify="1" data-rocket-type='text/javascript' data-rocket-src='https://forktospoon.com/wp-content/cache/min/1/wp-content/plugins/content-views-query-and-display-post-page/public/assets/js/cv.js?ver=1696631081' id='pt-cv-content-views-script-js' defer></script>
<script type="rocketlazyloadscript" data-rocket-type='text/javascript' data-rocket-src='https://forktospoon.com/wp-content/plugins/meyne-blog-post-slider/js/slick.min.js?ver=1.6.0' id='slickjs-js' defer></script>
<script type="rocketlazyloadscript" data-minify="1" data-rocket-type='text/javascript' data-rocket-src='https://forktospoon.com/wp-content/cache/min/1/wp-content/plugins/meyne-blog-post-slider/js/slick-init.js?ver=1696631081' id='slickjs-init-js' defer></script>
<script type="rocketlazyloadscript" data-minify="1" data-rocket-type='text/javascript' data-rocket-src='https://forktospoon.com/wp-content/cache/min/1/wp-content/plugins/genesis-blocks/dist/assets/js/dismiss.js?ver=1696631081' id='genesis-blocks-dismiss-js-js' defer></script>
<script type="rocketlazyloadscript" id="rocket-browser-checker-js-after" data-rocket-type="text/javascript">
"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 type='text/javascript' id='rocket-preload-links-js-extra'>
/* <![CDATA[ */
var RocketPreloadLinksConfig = {"excludeUris":"\/(.*)\/print\/(.*)\/_wp_link_placeholder(.*)\/|\/(.*)\/print\/(.*)\/www.forktospoon.com\/|\/(.*)\/print\/(.*)\/www.forktospoon.com\/|\/(?:.+\/)?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:\/\/forktospoon.com","onHoverDelay":"100","rateThrottle":"3"};
/* ]]> */
</script>
<script type="rocketlazyloadscript" id="rocket-preload-links-js-after" data-rocket-type="text/javascript">
(function() {
"use strict";var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e=function(){function i(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(e,t,n){return t&&i(e.prototype,t),n&&i(e,n),e}}();function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var t=function(){function n(e,t){i(this,n),this.browser=e,this.config=t,this.options=this.browser.options,this.prefetched=new Set,this.eventTime=null,this.threshold=1111,this.numOnHover=0}return e(n,[{key:"init",value:function(){!this.browser.supportsLinkPrefetch()||this.browser.isDataSaverModeOn()||this.browser.isSlowConnection()||(this.regex={excludeUris:RegExp(this.config.excludeUris,"i"),images:RegExp(".("+this.config.imageExt+")$","i"),fileExt:RegExp(".("+this.config.fileExt+")$","i")},this._initListeners(this))}},{key:"_initListeners",value:function(e){-1<this.config.onHoverDelay&&document.addEventListener("mouseover",e.listener.bind(e),e.listenerOptions),document.addEventListener("mousedown",e.listener.bind(e),e.listenerOptions),document.addEventListener("touchstart",e.listener.bind(e),e.listenerOptions)}},{key:"listener",value:function(e){var t=e.target.closest("a"),n=this._prepareUrl(t);if(null!==n)switch(e.type){case"mousedown":case"touchstart":this._addPrefetchLink(n);break;case"mouseover":this._earlyPrefetch(t,n,"mouseout")}}},{key:"_earlyPrefetch",value:function(t,e,n){var i=this,r=setTimeout(function(){if(r=null,0===i.numOnHover)setTimeout(function(){return i.numOnHover=0},1e3);else if(i.numOnHover>i.config.rateThrottle)return;i.numOnHover++,i._addPrefetchLink(e)},this.config.onHoverDelay);t.addEventListener(n,function e(){t.removeEventListener(n,e,{passive:!0}),null!==r&&(clearTimeout(r),r=null)},{passive:!0})}},{key:"_addPrefetchLink",value:function(i){return this.prefetched.add(i.href),new Promise(function(e,t){var n=document.createElement("link");n.rel="prefetch",n.href=i.href,n.onload=e,n.onerror=t,document.head.appendChild(n)}).catch(function(){})}},{key:"_prepareUrl",value:function(e){if(null===e||"object"!==(void 0===e?"undefined":r(e))||!1 in e||-1===["http:","https:"].indexOf(e.protocol))return null;var t=e.href.substring(0,this.config.siteUrl.length),n=this._getPathname(e.href,t),i={original:e.href,protocol:e.protocol,origin:t,pathname:n,href:t+n};return this._isLinkOk(i)?i:null}},{key:"_getPathname",value:function(e,t){var n=t?e.substring(this.config.siteUrl.length):e;return n.startsWith("/")||(n="/"+n),this._shouldAddTrailingSlash(n)?n+"/":n}},{key:"_shouldAddTrailingSlash",value:function(e){return this.config.usesTrailingSlash&&!e.endsWith("/")&&!this.regex.fileExt.test(e)}},{key:"_isLinkOk",value:function(e){return null!==e&&"object"===(void 0===e?"undefined":r(e))&&(!this.prefetched.has(e.href)&&e.origin===this.config.siteUrl&&-1===e.href.indexOf("?")&&-1===e.href.indexOf("#")&&!this.regex.excludeUris.test(e.href)&&!this.regex.images.test(e.href))}}],[{key:"run",value:function(){"undefined"!=typeof RocketPreloadLinksConfig&&new n(new RocketBrowserCompatibilityChecker({capture:!0,passive:!0}),RocketPreloadLinksConfig).init()}}]),n}();t.run();
}());
</script>
<script id="perfmatters-lazy-load-js-before" type="text/javascript">
window.lazyLoadOptions={elements_selector:"img[data-src],.perfmatters-lazy,.perfmatters-lazy-css-bg",thresholds:"200px 0px",class_loading:"pmloading",class_loaded:"pmloaded",callback_loaded:function(element){if(element.tagName==="IFRAME"){if(element.classList.contains("pmloaded")){if(typeof window.jQuery!="undefined"){if(jQuery.fn.fitVids){jQuery(element).parent().fitVids()}}}}}};window.addEventListener("LazyLoad::Initialized",function(e){var lazyLoadInstance=e.detail.instance;});
</script>
<script type='text/javascript' async src='https://forktospoon.com/wp-content/plugins/perfmatters/js/lazyload.min.js?ver=2.1.7' id='perfmatters-lazy-load-js'></script>
<script type="rocketlazyloadscript" data-rocket-type='text/javascript' data-rocket-src='https://forktospoon.com/wp-content/themes/forktospoon2023/jquery.my-menu-aim-2.1.min.js?ver=2.1' id='menu-aim-js' defer></script>
<script type="rocketlazyloadscript" data-rocket-type='text/javascript' data-rocket-src='https://forktospoon.com/wp-content/themes/forktospoon2023/inert-polyfill.min.js?ver=3.111.0' id='inert-polyfill-js' defer></script>
<script type="rocketlazyloadscript" data-rocket-type='text/javascript' data-rocket-src='https://forktospoon.com/wp-content/themes/forktospoon2023/jquery.fitvids.min.js?ver=1.1' id='fitvids-js' defer></script>
<script type="rocketlazyloadscript" data-rocket-type='text/javascript' data-rocket-src='https://forktospoon.com/wp-content/themes/forktospoon2023/intersection-observer.min.js?ver=1.0' id='intersection-observer-js' defer></script>
<script type="rocketlazyloadscript" data-rocket-type='text/javascript' data-rocket-src='https://forktospoon.com/wp-content/themes/forktospoon2023/jquery.timeago.min.js?ver=1.6.7' id='timeago-js' defer></script>
<script type="rocketlazyloadscript" data-rocket-type='text/javascript' data-rocket-src='https://forktospoon.com/wp-content/themes/forktospoon2023/jquery.modal.min.js?ver=0.9.2' id='jquery-modal-js' defer></script>
<script type="rocketlazyloadscript" data-minify="1" data-rocket-type='text/javascript' data-rocket-src='https://forktospoon.com/wp-content/cache/min/1/wp-content/themes/forktospoon2023/jscript.js?ver=1696631081' id='fts-jscript-js' defer></script>
<script type="rocketlazyloadscript" data-minify="1" data-rocket-type='text/javascript' data-rocket-src='https://forktospoon.com/wp-content/cache/min/1/js/w/webforms.min.js?ver=1696631081' id='fts-mailerlite-js' defer></script>
<script type="rocketlazyloadscript" data-rocket-type='text/javascript' data-rocket-src='https://forktospoon.com/wp-includes/js/comment-reply.min.js?ver=6.3.1' id='comment-reply-js' defer></script>
<script defer type='text/javascript' src='https://stats.wp.com/e-202340.js' id='jetpack-stats-js'></script>
<script id="jetpack-stats-js-after" type="text/javascript">
_stq = window._stq || [];
_stq.push([ "view", {v:'ext',blog:'71483571',post:'89112',tz:'-4',srv:'forktospoon.com',j:'1:12.6.2'} ]);
_stq.push([ "clickTrackerInit", "71483571", "89112" ]);
</script>
<script type='text/javascript' id='ivory-search-scripts-js-extra'>
/* <![CDATA[ */
var IvorySearchVars = {"is_analytics_enabled":"1"};
/* ]]> */
</script>
<script type="rocketlazyloadscript" data-rocket-type='text/javascript' data-rocket-src='https://forktospoon.com/wp-content/plugins/add-search-to-menu/public/js/ivory-search.min.js?ver=5.5.2' id='ivory-search-scripts-js' defer></script>
<script type='text/javascript' id='wprm-public-js-extra'>
/* <![CDATA[ */
var wprm_public = {"endpoints":{"analytics":"https:\/\/forktospoon.com\/wp-json\/wp-recipe-maker\/v1\/analytics"},"settings":{"features_comment_ratings":true,"template_color_comment_rating":"#fbbb29","instruction_media_toggle_default":"on","video_force_ratio":false,"analytics_enabled":false,"google_analytics_enabled":false,"print_new_tab":true},"post_id":"89112","home_url":"https:\/\/forktospoon.com\/","print_slug":"wprm_print","permalinks":"\/%postname%\/","ajax_url":"https:\/\/forktospoon.com\/wp-admin\/admin-ajax.php","nonce":"1e5b7ca2b5","api_nonce":"44df286cb8","translations":{"Select a collection":"Select a collection","Select a column":"Select a column","Select a group":"Select a group","Shopping List":"Shopping List","Print":"Print","Print Collection":"Print Collection","Print Recipes":"Print Recipes","Hide Nutrition Facts":"Hide Nutrition Facts","Show Nutrition Facts":"Show Nutrition Facts","Are you sure you want to remove all items from this collection?":"Are you sure you want to remove all items from this collection?","Clear Items":"Clear Items","Description for this collection:":"Description for this collection:","Change Description":"Change Description","Set Description":"Set Description","Save to my Collections":"Save to my Collections","None":"None","Blue":"Blue","Red":"Red","Green":"Green","Yellow":"Yellow","Note":"Note","Color":"Color","Name":"Name","Ingredients":"Ingredients","cup":"cup","olive oil":"olive oil","Add Ingredient":"Add Ingredient","Edit Ingredients":"Edit Ingredients","Text":"Text","Nutrition Facts (per serving)":"Nutrition Facts (per serving)","Add Column":"Add Column","Edit Columns":"Edit Columns","Add Group":"Add Group","Edit Groups":"Edit Groups","Add Item":"Add Item","Remove Items":"Remove Items","Columns & Groups":"Columns & Groups","Remove All Items":"Remove All Items","Stop Removing Items":"Stop Removing Items","Actions":"Actions","Click to add:":"Click to add:","Drag and drop to add:":"Drag and drop to add:","Load more...":"Load more...","Search Recipes":"Search Recipes","Search Ingredients":"Search Ingredients","Add Custom Recipe":"Add Custom Recipe","Add Note":"Add Note","Add from Collection":"Add from Collection","Start typing to search...":"Start typing to search...","Your Collections":"Your Collections","Editing User":"Editing User","Cancel":"Cancel","Go Back":"Go Back","Edit Item":"Edit Item","Change Name":"Change Name","Move Left":"Move Left","Move Right":"Move Right","Duplicate":"Duplicate","Delete Column":"Delete Column","Are you sure you want to delete?":"Are you sure you want to delete?","Click to set name":"Click to set name","Set a new amount for this ingredient:":"Set a new amount for this ingredient:","Set the number of servings":"Set the number of servings","servings":"servings","View Recipe":"View Recipe","Edit Custom Recipe":"Edit Custom Recipe","Edit Note":"Edit Note","Duplicate Item":"Duplicate Item","Change Servings":"Change Servings","Remove Item":"Remove Item","Move Up":"Move Up","Move Down":"Move Down","Delete Group":"Delete Group","Nutrition Facts":"Nutrition Facts","Click to confirm...":"Click to confirm...","Are you sure you want to delete all items in":"Are you sure you want to delete all items in","Stop Editing":"Stop Editing","Recipe":"Recipe","Regenerate Shopping List":"Regenerate Shopping List","Print Shopping List":"Print Shopping List","The link copied to your clipboard will allow others to edit this shopping list.":"The link copied to your clipboard will allow others to edit this shopping list.","Copy this link to allow others to edit this shopping list:":"Copy this link to allow others to edit this shopping list:","Share Edit Link":"Share Edit Link","Save Shopping List":"Save Shopping List","Edit Shopping List":"Edit Shopping List","Generate Shopping List":"Generate Shopping List","Remove All":"Remove All","Shopping List Options":"Shopping List Options","Include ingredient notes":"Include ingredient notes","Preferred Unit System":"Preferred Unit System","Deselect all":"Deselect all","Select all":"Select all","Collection":"Collection","Unnamed":"Unnamed","remove":"remove","There are unsaved changes. Are you sure you want to leave this page?":"There are unsaved changes. Are you sure you want to leave this page?","Make sure to select some recipes for the shopping list first.":"Make sure to select some recipes for the shopping list first.","Are you sure you want to generate a new shopping list for this collection? You will only be able to access this shopping list again with the share link.":"Are you sure you want to generate a new shopping list for this collection? You will only be able to access this shopping list again with the share link.","The shopping list could not be saved. Try again later.":"The shopping list could not be saved. Try again later.","Are you sure you want to remove all recipes from this shopping list?":"Are you sure you want to remove all recipes from this shopping list?","Back":"Back","Make sure to save the shopping list before printing.":"Make sure to save the shopping list before printing.","No recipes have been added to the shopping list yet.":"No recipes have been added to the shopping list yet.","Click the cart icon in the top right to generate the shopping list.":"Click the cart icon in the top right to generate the shopping list.","Select recipes and click the cart icon in the top right to generate the shopping list.":"Select recipes and click the cart icon in the top right to generate the shopping list.","Click the cart icon in the top right to generate a new shopping list.":"Click the cart icon in the top right to generate a new shopping list.","Right click and copy this link to allow others to edit this shopping list.":"Right click and copy this link to allow others to edit this shopping list.","List":"List","Are you sure you want to delete this group, and all of the items in it?":"Are you sure you want to delete this group, and all of the items in it?","Your shopping list is empty.":"Your shopping list is empty.","Group":"Group","Add Collection":"Add Collection","Empty Collection":"Empty Collection","Add Pre-made Collection":"Add Pre-made Collection","Edit Collections":"Edit Collections","Select a collection to add for this user":"Select a collection to add for this user","Add Saved Collection":"Add Saved Collection","Delete":"Delete","Recipes":"Recipes","Decrease serving size by 1":"Decrease serving size by 1","Increase serving size by 1":"Increase serving size by 1","Nothing to add products to yet.":"Nothing to add products to yet.","In recipe":"In recipe","Product":"Product","Amount needed":"Amount needed","Change Product":"Change Product","A name is required for this saved nutrition ingredient.":"A name is required for this saved nutrition ingredient.","Save a new Custom Ingredient":"Save a new Custom Ingredient","Amount":"Amount","Unit":"Unit","Name (required)":"Name (required)","Save for Later & Use":"Save for Later & Use","Use":"Use","Select a saved ingredient":"Select a saved ingredient","Match this equation to get the correct amounts:":"Match this equation to get the correct amounts:","Cancel Calculation":"Cancel Calculation","Go to Next Step":"Go to Next Step","Use These Values":"Use These Values","Nutrition Calculation":"Nutrition Calculation","n\/a":"n\/a","Values of all the checked ingredients will be added together and":"Values of all the checked ingredients will be added together and","divided by":"divided by","the number of servings for this recipe.":"the number of servings for this recipe.","Values of all the checked ingredients will be added together.":"Values of all the checked ingredients will be added together.","API Ingredients":"API Ingredients","Custom Ingredients":"Custom Ingredients","Recipe Nutrition Facts Preview":"Recipe Nutrition Facts Preview","Changes to these values can be made after confirming with the blue button.":"Changes to these values can be made after confirming with the blue button.","Select or search for a saved ingredient":"Select or search for a saved ingredient","No ingredients set for this recipe.":"No ingredients set for this recipe.","Used in Recipe":"Used in Recipe","Used for Calculation":"Used for Calculation","Nutrition Source":"Nutrition Source","Match & Units":"Match & Units","API":"API","Saved\/Custom":"Saved\/Custom","no match found":"no match found","Units n\/a":"Units n\/a","Find a match for:":"Find a match for:","Search":"Search","No ingredients found for":"No ingredients found for","No ingredients found.":"No ingredients found.","Results for":"Results for","Editing Equipment Affiliate Fields":"Editing Equipment Affiliate Fields","The fields you set here will affect all recipes using this equipment.":"The fields you set here will affect all recipes using this equipment.","Regular Links":"Regular Links","Images":"Images","HTML Code":"HTML Code","Images and HTML code only show up when the Equipment block is set to the \"Images\" display style in the Template Editor.":"Images and HTML code only show up when the Equipment block is set to the \"Images\" display style in the Template Editor.","Save Changes":"Save Changes","other recipe(s) affected":"other recipe(s) affected","This can affect other recipes":"This can affect other recipes","Edit Link":"Edit Link","Remove Link":"Remove Link","Are you sure you want to delete this link?":"Are you sure you want to delete this link?","Set Affiliate Link":"Set Affiliate Link","Edit Image":"Edit Image","Remove Image":"Remove Image","Add Image":"Add Image","This feature is only available in":"This feature is only available in","You need to set up this feature on the WP Recipe Maker > Settings > Unit Conversion page first.":"You need to set up this feature on the WP Recipe Maker > Settings > Unit Conversion page first.","Original Unit System for this recipe":"Original Unit System for this recipe","Use Default":"Use Default","First Unit System":"First Unit System","Second Unit System":"Second Unit System","Conversion":"Conversion","Converted":"Converted","Original":"Original","Convert All Automatically":"Convert All Automatically","Convert":"Convert","Keep Unit":"Keep Unit","Automatically":"Automatically","Weight Units":"Weight Units","Volume Units":"Volume Units","Convert...":"Convert...","Ingredient Link Type":"Ingredient Link Type","Global: the same link will be used for every recipe with this ingredient":"Global: the same link will be used for every recipe with this ingredient","Custom: these links will only affect the recipe below":"Custom: these links will only affect the recipe below","Use Global Links":"Use Global Links","Custom Links for this Recipe only":"Custom Links for this Recipe only","Edit Global Links":"Edit Global Links","Affiliate Link":"Affiliate Link","No link set":"No link set","No equipment set for this recipe.":"No equipment set for this recipe.","Regular Link":"Regular Link","Image":"Image","Edit Affiliate Fields":"Edit Affiliate Fields","No HTML set":"No HTML set","Editing Global Ingredient Links":"Editing Global Ingredient Links","All fields are required.":"All fields are required.","Something went wrong. Make sure this key does not exist yet.":"Something went wrong. Make sure this key does not exist yet.","Are you sure you want to close without saving changes?":"Are you sure you want to close without saving changes?","Editing Custom Field":"Editing Custom Field","Creating new Custom Field":"Creating new Custom Field","Type":"Type","Key":"Key","my-custom-field":"my-custom-field","My Custom Field":"My Custom Field","Save":"Save","Editing Product":"Editing Product","Setting Product":"Setting Product","Product ID":"Product ID","No product set yet":"No product set yet","Product Name":"Product Name","Unset Product":"Unset Product","Search for products":"Search for products","No products found":"No products found","A label and key are required.":"A label and key are required.","Editing Nutrient":"Editing Nutrient","Creating new Nutrient":"Creating new Nutrient","Custom":"Custom","Calculated":"Calculated","my-custom-nutrient":"my-custom-nutrient","Label":"Label","My Custom Nutrient":"My Custom Nutrient","mg":"mg","Daily Need":"Daily Need","Calculation":"Calculation","Learn more":"Learn more","Decimal Precision":"Decimal Precision","Order":"Order","Loading...":"Loading...","Editing Nutrition Ingredient":"Editing Nutrition Ingredient","Creating new Nutrition Ingredient":"Creating new Nutrition Ingredient","Are you sure you want to overwrite the existing values?":"Are you sure you want to overwrite the existing values?","Import values from recipe":"Import values from recipe","Cancel import":"Cancel import","Use this recipe":"Use this recipe","Sort:":"Sort:","Filter:":"Filter:","Edit Recipe Submission":"Edit Recipe Submission","Approve Submission":"Approve Submission","Approve Submission & Add to new Post":"Approve Submission & Add to new Post","Delete Recipe Submission":"Delete Recipe Submission","Are you sure you want to delete":"Are you sure you want to delete","ID":"ID","Date":"Date","User":"User","Edit Nutrient":"Edit Nutrient","Delete Custom Nutrient":"Delete Custom Nutrient","Active":"Active","View and edit collections for this user":"View and edit collections for this user","User ID":"User ID","Display Name":"Display Name","Email":"Email","# Collections":"# Collections","Show All":"Show All","Has Saved Collections":"Has Saved Collections","Does not have Saved Collections":"Does not have Saved Collections","# Items in Inbox":"# Items in Inbox","# Items in Collections":"# Items in Collections","Your Custom Fields":"Your Custom Fields","Custom Field":"Custom Field","Custom Fields":"Custom Fields","Custom Nutrition Ingredient":"Custom Nutrition Ingredient","Custom Nutrition":"Custom Nutrition","Custom Nutrient":"Custom Nutrient","Custom Nutrients":"Custom Nutrients","Features":"Features","Saved Collection":"Saved Collection","Saved Collections":"Saved Collections","User Collection":"User Collection","User Collections":"User Collections","Recipe Submissions":"Recipe Submissions","Recipe Submission":"Recipe Submission","Edit Field":"Edit Field","Delete Field":"Delete Field","Edit Custom Ingredient":"Edit Custom Ingredient","Delete Custom Ingredient":"Delete Custom Ingredient","Edit Saved Collection":"Edit Saved Collection","Reload Recipes":"Reload Recipes","Duplicate Saved Collection":"Duplicate Saved Collection","Delete Saved Collection":"Delete Saved Collection","Description":"Description","Default":"Default","Enable to make this a default collection for new users. Does not affect those who have used the collections feature before.":"Enable to make this a default collection for new users. Does not affect those who have used the collections feature before.","Push to All":"Push to All","Enable to push this collection to everyone using the collections feature. Will affect both new and existing users and add this collection to their list.":"Enable to push this collection to everyone using the collections feature. Will affect both new and existing users and add this collection to their list.","Template":"Template","Enable to make this saved collection show up as an option after clicking \"Add Collection\". This would usually be an empty collection with a specific structure like \"Empty Week Plan\".":"Enable to make this saved collection show up as an option after clicking \"Add Collection\". This would usually be an empty collection with a specific structure like \"Empty Week Plan\".","Quick Add":"Quick Add","Enable to make this saved collection show up after clicking on \"Add Pre-made Collection\". Can be used to give users easy access to the meal plans you create.":"Enable to make this saved collection show up after clicking on \"Add Pre-made Collection\". Can be used to give users easy access to the meal plans you create.","What do you want the new order to be?":"What do you want the new order to be?","Save Collection Link":"Save Collection Link","# Items":"# Items"}};
/* ]]> */
</script>
<script data-minify="1" type='text/javascript' src='https://forktospoon.com/wp-content/cache/min/1/wp-content/plugins/wp-recipe-maker/dist/public-modern.js?ver=1696631081' id='wprm-public-js' defer></script>
<script type='text/javascript' id='wprmp-public-js-extra'>
/* <![CDATA[ */
var wprmp_public = {"endpoints":{"private_notes":"https:\/\/forktospoon.com\/wp-json\/wp-recipe-maker\/v1\/private-notes","collections":"https:\/\/forktospoon.com\/wp-json\/wp\/v2\/wprm_collection","collections_helper":"https:\/\/forktospoon.com\/wp-json\/wp-recipe-maker\/v1\/recipe-collections","nutrition":"https:\/\/forktospoon.com\/wp-json\/wp-recipe-maker\/v1\/nutrition"},"settings":{"recipe_template_mode":"modern","features_adjustable_servings":true,"adjustable_servings_round_to_decimals":"2","unit_conversion_remember":true,"unit_conversion_temperature":"none","unit_conversion_system_1_temperature":"F","unit_conversion_system_2_temperature":"C","unit_conversion_advanced_servings_conversion":false,"unit_conversion_system_1_length_unit":"inch","unit_conversion_system_2_length_unit":"cm","fractions_enabled":false,"fractions_use_mixed":true,"fractions_use_symbols":true,"fractions_max_denominator":"8","unit_conversion_system_1_fractions":true,"unit_conversion_system_2_fractions":true,"unit_conversion_enabled":false,"decimal_separator":"point","features_comment_ratings":true,"features_user_ratings":true,"user_ratings_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":"disc","template_instruction_list_style":"decimal","template_color_icon":"#343434","recipe_collections_scroll_to_top":true,"recipe_collections_scroll_to_top_offset":"30"},"timer":{"sound_file":"https:\/\/forktospoon.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"}},"collections":{"default":{"inbox":{"id":0,"name":"Inbox","nbrItems":0,"columns":[{"id":0,"name":"Recipes"}],"groups":[{"id":0,"name":""}],"items":{"0-0":[]}},"user":[]}},"user":"0","add_to_collection":{"access":"everyone","behaviour":"inbox","placement":"bottom","not_logged_in":"hide","not_logged_in_redirect":"","not_logged_in_tooltip":"","collections":{"inbox":"Inbox","user":[]}},"quick_access_shopping_list":{"access":"everyone"}};
/* ]]> */
</script>
<script data-minify="1" type='text/javascript' src='https://forktospoon.com/wp-content/cache/min/1/wp-content/plugins/wp-recipe-maker-premium/dist/public-elite.js?ver=1696631081' id='wprmp-public-js' defer></script>
<script type="rocketlazyloadscript" data-minify="1" defer data-rocket-type='text/javascript' data-rocket-src='https://forktospoon.com/wp-content/cache/min/1/wp-content/plugins/akismet/_inc/akismet-frontend.js?ver=1696631081' id='akismet-frontend-js'></script>
<style type="text/css"></style><script defer src="https://static.cloudflareinsights.com/beacon.min.js/v8b253dfea2ab4077af8c6f58422dfbfd1689876627854" integrity="sha512-bjgnUKX4azu3dLTVtie9u6TKqgx29RBwfj3QXYt5EKfWM/9hPSAI/4qcV5NACjwAo8UtTeWefx6Zq5PHcMm7Tg==" data-cf-beacon='{"rayId":"8128ca5a8fab3b7c","version":"2023.8.0","b":1,"token":"e94a53d306d84a1da1436edf74dfcc6c","si":100}' crossorigin="anonymous"></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@1696678187 -->
|