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 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537
|
<!DOCTYPE html>
<html lang="en-US">
<head><meta charset="UTF-8" /><script>if(navigator.userAgent.match(/MSIE|Internet Explorer/i)||navigator.userAgent.match(/Trident\/7\..*?rv:11/i)){var href=document.location.href;if(!href.match(/[?&]nowprocket/)){if(href.indexOf("?")==-1){if(href.indexOf("#")==-1){document.location.href=href+"?nowprocket=1"}else{document.location.href=href.replace("#","?nowprocket=1#")}}else{if(href.indexOf("#")==-1){document.location.href=href+"&nowprocket=1"}else{document.location.href=href.replace("#","&nowprocket=1#")}}}}</script><script>(()=>{class RocketLazyLoadScripts{constructor(){this.v="2.0.4",this.userEvents=["keydown","keyup","mousedown","mouseup","mousemove","mouseover","mouseout","touchmove","touchstart","touchend","touchcancel","wheel","click","dblclick","input"],this.attributeEvents=["onblur","onclick","oncontextmenu","ondblclick","onfocus","onmousedown","onmouseenter","onmouseleave","onmousemove","onmouseout","onmouseover","onmouseup","onmousewheel","onscroll","onsubmit"]}async t(){this.i(),this.o(),/iP(ad|hone)/.test(navigator.userAgent)&&this.h(),this.u(),this.l(this),this.m(),this.k(this),this.p(this),this._(),await Promise.all([this.R(),this.L()]),this.lastBreath=Date.now(),this.S(this),this.P(),this.D(),this.O(),this.M(),await this.C(this.delayedScripts.normal),await this.C(this.delayedScripts.defer),await this.C(this.delayedScripts.async),await this.T(),await this.F(),await this.j(),await this.A(),window.dispatchEvent(new Event("rocket-allScriptsLoaded")),this.everythingLoaded=!0,this.lastTouchEnd&&await new Promise(t=>setTimeout(t,500-Date.now()+this.lastTouchEnd)),this.I(),this.H(),this.U(),this.W()}i(){this.CSPIssue=sessionStorage.getItem("rocketCSPIssue"),document.addEventListener("securitypolicyviolation",t=>{this.CSPIssue||"script-src-elem"!==t.violatedDirective||"data"!==t.blockedURI||(this.CSPIssue=!0,sessionStorage.setItem("rocketCSPIssue",!0))},{isRocket:!0})}o(){window.addEventListener("pageshow",t=>{this.persisted=t.persisted,this.realWindowLoadedFired=!0},{isRocket:!0}),window.addEventListener("pagehide",()=>{this.onFirstUserAction=null},{isRocket:!0})}h(){let t;function e(e){t=e}window.addEventListener("touchstart",e,{isRocket:!0}),window.addEventListener("touchend",function i(o){o.changedTouches[0]&&t.changedTouches[0]&&Math.abs(o.changedTouches[0].pageX-t.changedTouches[0].pageX)<10&&Math.abs(o.changedTouches[0].pageY-t.changedTouches[0].pageY)<10&&o.timeStamp-t.timeStamp<200&&(window.removeEventListener("touchstart",e,{isRocket:!0}),window.removeEventListener("touchend",i,{isRocket:!0}),"INPUT"===o.target.tagName&&"text"===o.target.type||(o.target.dispatchEvent(new TouchEvent("touchend",{target:o.target,bubbles:!0})),o.target.dispatchEvent(new MouseEvent("mouseover",{target:o.target,bubbles:!0})),o.target.dispatchEvent(new PointerEvent("click",{target:o.target,bubbles:!0,cancelable:!0,detail:1,clientX:o.changedTouches[0].clientX,clientY:o.changedTouches[0].clientY})),event.preventDefault()))},{isRocket:!0})}q(t){this.userActionTriggered||("mousemove"!==t.type||this.firstMousemoveIgnored?"keyup"===t.type||"mouseover"===t.type||"mouseout"===t.type||(this.userActionTriggered=!0,this.onFirstUserAction&&this.onFirstUserAction()):this.firstMousemoveIgnored=!0),"click"===t.type&&t.preventDefault(),t.stopPropagation(),t.stopImmediatePropagation(),"touchstart"===this.lastEvent&&"touchend"===t.type&&(this.lastTouchEnd=Date.now()),"click"===t.type&&(this.lastTouchEnd=0),this.lastEvent=t.type,t.composedPath&&t.composedPath()[0].getRootNode()instanceof ShadowRoot&&(t.rocketTarget=t.composedPath()[0]),this.savedUserEvents.push(t)}u(){this.savedUserEvents=[],this.userEventHandler=this.q.bind(this),this.userEvents.forEach(t=>window.addEventListener(t,this.userEventHandler,{passive:!1,isRocket:!0})),document.addEventListener("visibilitychange",this.userEventHandler,{isRocket:!0})}U(){this.userEvents.forEach(t=>window.removeEventListener(t,this.userEventHandler,{passive:!1,isRocket:!0})),document.removeEventListener("visibilitychange",this.userEventHandler,{isRocket:!0}),this.savedUserEvents.forEach(t=>{(t.rocketTarget||t.target).dispatchEvent(new window[t.constructor.name](t.type,t))})}m(){const t="return false",e=Array.from(this.attributeEvents,t=>"data-rocket-"+t),i="["+this.attributeEvents.join("],[")+"]",o="[data-rocket-"+this.attributeEvents.join("],[data-rocket-")+"]",s=(e,i,o)=>{o&&o!==t&&(e.setAttribute("data-rocket-"+i,o),e["rocket"+i]=new Function("event",o),e.setAttribute(i,t))};new MutationObserver(t=>{for(const n of t)"attributes"===n.type&&(n.attributeName.startsWith("data-rocket-")||this.everythingLoaded?n.attributeName.startsWith("data-rocket-")&&this.everythingLoaded&&this.N(n.target,n.attributeName.substring(12)):s(n.target,n.attributeName,n.target.getAttribute(n.attributeName))),"childList"===n.type&&n.addedNodes.forEach(t=>{if(t.nodeType===Node.ELEMENT_NODE)if(this.everythingLoaded)for(const i of[t,...t.querySelectorAll(o)])for(const t of i.getAttributeNames())e.includes(t)&&this.N(i,t.substring(12));else for(const e of[t,...t.querySelectorAll(i)])for(const t of e.getAttributeNames())this.attributeEvents.includes(t)&&s(e,t,e.getAttribute(t))})}).observe(document,{subtree:!0,childList:!0,attributeFilter:[...this.attributeEvents,...e]})}I(){this.attributeEvents.forEach(t=>{document.querySelectorAll("[data-rocket-"+t+"]").forEach(e=>{this.N(e,t)})})}N(t,e){const i=t.getAttribute("data-rocket-"+e);i&&(t.setAttribute(e,i),t.removeAttribute("data-rocket-"+e))}k(t){Object.defineProperty(HTMLElement.prototype,"onclick",{get(){return this.rocketonclick||null},set(e){this.rocketonclick=e,this.setAttribute(t.everythingLoaded?"onclick":"data-rocket-onclick","this.rocketonclick(event)")}})}S(t){function e(e,i){let o=e[i];e[i]=null,Object.defineProperty(e,i,{get:()=>o,set(s){t.everythingLoaded?o=s:e["rocket"+i]=o=s}})}e(document,"onreadystatechange"),e(window,"onload"),e(window,"onpageshow");try{Object.defineProperty(document,"readyState",{get:()=>t.rocketReadyState,set(e){t.rocketReadyState=e},configurable:!0}),document.readyState="loading"}catch(t){console.log("WPRocket DJE readyState conflict, bypassing")}}l(t){this.originalAddEventListener=EventTarget.prototype.addEventListener,this.originalRemoveEventListener=EventTarget.prototype.removeEventListener,this.savedEventListeners=[],EventTarget.prototype.addEventListener=function(e,i,o){o&&o.isRocket||!t.B(e,this)&&!t.userEvents.includes(e)||t.B(e,this)&&!t.userActionTriggered||e.startsWith("rocket-")||t.everythingLoaded?t.originalAddEventListener.call(this,e,i,o):(t.savedEventListeners.push({target:this,remove:!1,type:e,func:i,options:o}),"mouseenter"!==e&&"mouseleave"!==e||t.originalAddEventListener.call(this,e,t.savedUserEvents.push,o))},EventTarget.prototype.removeEventListener=function(e,i,o){o&&o.isRocket||!t.B(e,this)&&!t.userEvents.includes(e)||t.B(e,this)&&!t.userActionTriggered||e.startsWith("rocket-")||t.everythingLoaded?t.originalRemoveEventListener.call(this,e,i,o):t.savedEventListeners.push({target:this,remove:!0,type:e,func:i,options:o})}}J(t,e){this.savedEventListeners=this.savedEventListeners.filter(i=>{let o=i.type,s=i.target||window;return e!==o||t!==s||(this.B(o,s)&&(i.type="rocket-"+o),this.$(i),!1)})}H(){EventTarget.prototype.addEventListener=this.originalAddEventListener,EventTarget.prototype.removeEventListener=this.originalRemoveEventListener,this.savedEventListeners.forEach(t=>this.$(t))}$(t){t.remove?this.originalRemoveEventListener.call(t.target,t.type,t.func,t.options):this.originalAddEventListener.call(t.target,t.type,t.func,t.options)}p(t){let e;function i(e){return t.everythingLoaded?e:e.split(" ").map(t=>"load"===t||t.startsWith("load.")?"rocket-jquery-load":t).join(" ")}function o(o){function s(e){const s=o.fn[e];o.fn[e]=o.fn.init.prototype[e]=function(){return this[0]===window&&t.userActionTriggered&&("string"==typeof arguments[0]||arguments[0]instanceof String?arguments[0]=i(arguments[0]):"object"==typeof arguments[0]&&Object.keys(arguments[0]).forEach(t=>{const e=arguments[0][t];delete arguments[0][t],arguments[0][i(t)]=e})),s.apply(this,arguments),this}}if(o&&o.fn&&!t.allJQueries.includes(o)){const e={DOMContentLoaded:[],"rocket-DOMContentLoaded":[]};for(const t in e)document.addEventListener(t,()=>{e[t].forEach(t=>t())},{isRocket:!0});o.fn.ready=o.fn.init.prototype.ready=function(i){function s(){parseInt(o.fn.jquery)>2?setTimeout(()=>i.bind(document)(o)):i.bind(document)(o)}return"function"==typeof i&&(t.realDomReadyFired?!t.userActionTriggered||t.fauxDomReadyFired?s():e["rocket-DOMContentLoaded"].push(s):e.DOMContentLoaded.push(s)),o([])},s("on"),s("one"),s("off"),t.allJQueries.push(o)}e=o}t.allJQueries=[],o(window.jQuery),Object.defineProperty(window,"jQuery",{get:()=>e,set(t){o(t)}})}P(){const t=new Map;document.write=document.writeln=function(e){const i=document.currentScript,o=document.createRange(),s=i.parentElement;let n=t.get(i);void 0===n&&(n=i.nextSibling,t.set(i,n));const c=document.createDocumentFragment();o.setStart(c,0),c.appendChild(o.createContextualFragment(e)),s.insertBefore(c,n)}}async R(){return new Promise(t=>{this.userActionTriggered?t():this.onFirstUserAction=t})}async L(){return new Promise(t=>{document.addEventListener("DOMContentLoaded",()=>{this.realDomReadyFired=!0,t()},{isRocket:!0})})}async j(){return this.realWindowLoadedFired?Promise.resolve():new Promise(t=>{window.addEventListener("load",t,{isRocket:!0})})}M(){this.pendingScripts=[];this.scriptsMutationObserver=new MutationObserver(t=>{for(const e of t)e.addedNodes.forEach(t=>{"SCRIPT"!==t.tagName||t.noModule||t.isWPRocket||this.pendingScripts.push({script:t,promise:new Promise(e=>{const i=()=>{const i=this.pendingScripts.findIndex(e=>e.script===t);i>=0&&this.pendingScripts.splice(i,1),e()};t.addEventListener("load",i,{isRocket:!0}),t.addEventListener("error",i,{isRocket:!0}),setTimeout(i,1e3)})})})}),this.scriptsMutationObserver.observe(document,{childList:!0,subtree:!0})}async F(){await this.X(),this.pendingScripts.length?(await this.pendingScripts[0].promise,await this.F()):this.scriptsMutationObserver.disconnect()}D(){this.delayedScripts={normal:[],async:[],defer:[]},document.querySelectorAll("script[type$=rocketlazyloadscript]").forEach(t=>{t.hasAttribute("data-rocket-src")?t.hasAttribute("async")&&!1!==t.async?this.delayedScripts.async.push(t):t.hasAttribute("defer")&&!1!==t.defer||"module"===t.getAttribute("data-rocket-type")?this.delayedScripts.defer.push(t):this.delayedScripts.normal.push(t):this.delayedScripts.normal.push(t)})}async _(){await this.L();let t=[];document.querySelectorAll("script[type$=rocketlazyloadscript][data-rocket-src]").forEach(e=>{let i=e.getAttribute("data-rocket-src");if(i&&!i.startsWith("data:")){i.startsWith("//")&&(i=location.protocol+i);try{const o=new URL(i).origin;o!==location.origin&&t.push({src:o,crossOrigin:e.crossOrigin||"module"===e.getAttribute("data-rocket-type")})}catch(t){}}}),t=[...new Map(t.map(t=>[JSON.stringify(t),t])).values()],this.Y(t,"preconnect")}async G(t){if(await this.K(),!0!==t.noModule||!("noModule"in HTMLScriptElement.prototype))return new Promise(e=>{let i;function o(){(i||t).setAttribute("data-rocket-status","executed"),e()}try{if(navigator.userAgent.includes("Firefox/")||""===navigator.vendor||this.CSPIssue)i=document.createElement("script"),[...t.attributes].forEach(t=>{let e=t.nodeName;"type"!==e&&("data-rocket-type"===e&&(e="type"),"data-rocket-src"===e&&(e="src"),i.setAttribute(e,t.nodeValue))}),t.text&&(i.text=t.text),t.nonce&&(i.nonce=t.nonce),i.hasAttribute("src")?(i.addEventListener("load",o,{isRocket:!0}),i.addEventListener("error",()=>{i.setAttribute("data-rocket-status","failed-network"),e()},{isRocket:!0}),setTimeout(()=>{i.isConnected||e()},1)):(i.text=t.text,o()),i.isWPRocket=!0,t.parentNode.replaceChild(i,t);else{const i=t.getAttribute("data-rocket-type"),s=t.getAttribute("data-rocket-src");i?(t.type=i,t.removeAttribute("data-rocket-type")):t.removeAttribute("type"),t.addEventListener("load",o,{isRocket:!0}),t.addEventListener("error",i=>{this.CSPIssue&&i.target.src.startsWith("data:")?(console.log("WPRocket: CSP fallback activated"),t.removeAttribute("src"),this.G(t).then(e)):(t.setAttribute("data-rocket-status","failed-network"),e())},{isRocket:!0}),s?(t.fetchPriority="high",t.removeAttribute("data-rocket-src"),t.src=s):t.src="data:text/javascript;base64,"+window.btoa(unescape(encodeURIComponent(t.text)))}}catch(i){t.setAttribute("data-rocket-status","failed-transform"),e()}});t.setAttribute("data-rocket-status","skipped")}async C(t){const e=t.shift();return e?(e.isConnected&&await this.G(e),this.C(t)):Promise.resolve()}O(){this.Y([...this.delayedScripts.normal,...this.delayedScripts.defer,...this.delayedScripts.async],"preload")}Y(t,e){this.trash=this.trash||[];let i=!0;var o=document.createDocumentFragment();t.forEach(t=>{const s=t.getAttribute&&t.getAttribute("data-rocket-src")||t.src;if(s&&!s.startsWith("data:")){const n=document.createElement("link");n.href=s,n.rel=e,"preconnect"!==e&&(n.as="script",n.fetchPriority=i?"high":"low"),t.getAttribute&&"module"===t.getAttribute("data-rocket-type")&&(n.crossOrigin=!0),t.crossOrigin&&(n.crossOrigin=t.crossOrigin),t.integrity&&(n.integrity=t.integrity),t.nonce&&(n.nonce=t.nonce),o.appendChild(n),this.trash.push(n),i=!1}}),document.head.appendChild(o)}W(){this.trash.forEach(t=>t.remove())}async T(){try{document.readyState="interactive"}catch(t){}this.fauxDomReadyFired=!0;try{await this.K(),this.J(document,"readystatechange"),document.dispatchEvent(new Event("rocket-readystatechange")),await this.K(),document.rocketonreadystatechange&&document.rocketonreadystatechange(),await this.K(),this.J(document,"DOMContentLoaded"),document.dispatchEvent(new Event("rocket-DOMContentLoaded")),await this.K(),this.J(window,"DOMContentLoaded"),window.dispatchEvent(new Event("rocket-DOMContentLoaded"))}catch(t){console.error(t)}}async A(){try{document.readyState="complete"}catch(t){}try{await this.K(),this.J(document,"readystatechange"),document.dispatchEvent(new Event("rocket-readystatechange")),await this.K(),document.rocketonreadystatechange&&document.rocketonreadystatechange(),await this.K(),this.J(window,"load"),window.dispatchEvent(new Event("rocket-load")),await this.K(),window.rocketonload&&window.rocketonload(),await this.K(),this.allJQueries.forEach(t=>t(window).trigger("rocket-jquery-load")),await this.K(),this.J(window,"pageshow");const t=new Event("rocket-pageshow");t.persisted=this.persisted,window.dispatchEvent(t),await this.K(),window.rocketonpageshow&&window.rocketonpageshow({persisted:this.persisted})}catch(t){console.error(t)}}async K(){Date.now()-this.lastBreath>45&&(await this.X(),this.lastBreath=Date.now())}async X(){return document.hidden?new Promise(t=>setTimeout(t)):new Promise(t=>requestAnimationFrame(t))}B(t,e){return e===document&&"readystatechange"===t||(e===document&&"DOMContentLoaded"===t||(e===window&&"DOMContentLoaded"===t||(e===window&&"load"===t||e===window&&"pageshow"===t)))}static run(){(new RocketLazyLoadScripts).t()}}RocketLazyLoadScripts.run()})();</script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="profile" href="https://gmpg.org/xfn/11" />
<meta name='robots' content='noindex, follow' />
<style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style>
<!-- This site is optimized with the Yoast SEO Premium plugin v26.0 (Yoast SEO v26.0) - https://yoast.com/wordpress/plugins/seo/ -->
<title>Vegan Panna Cotta with Strawberry Sauce - Clean Eating Kitchen</title>
<meta name="description" content="For a creamy and decadent dessert that is completely plant-based, try this Vegan Panna Cotta recipe served with Strawberry Sauce." />
<meta name="author" content="Carrie Forrest, MBA, MPH, CHN" />
<meta name="twitter:label1" content="Written by" />
<meta name="twitter:data1" content="Carrie Forrest, MBA, MPH, CHN" />
<meta name="twitter:label2" content="Est. reading time" />
<meta name="twitter:data2" content="28 minutes" />
<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"Article","@id":"https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#article","isPartOf":{"@id":"https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/"},"author":{"name":"Carrie Forrest, MBA, MPH, CHN","@id":"https://www.cleaneatingkitchen.com/#/schema/person/36b0bf3e742836f1cc88d791c6f98fb9"},"headline":"Vegan Panna Cotta with Strawberry Sauce","datePublished":"2023-06-07T20:48:00+00:00","dateModified":"2023-06-07T20:50:15+00:00","wordCount":782,"commentCount":8,"publisher":{"@id":"https://www.cleaneatingkitchen.com/#organization"},"image":{"@id":"https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#primaryimage"},"thumbnailUrl":"https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero.jpg","articleSection":["Desserts","Valentine's Day Recipes","Vegan Recipes"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#respond"]}]},{"@type":["WebPage","FAQPage"],"@id":"https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/","url":"https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/","name":"Vegan Panna Cotta with Strawberry Sauce - Clean Eating Kitchen","isPartOf":{"@id":"https://www.cleaneatingkitchen.com/#website"},"primaryImageOfPage":{"@id":"https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#primaryimage"},"image":{"@id":"https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#primaryimage"},"thumbnailUrl":"https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero.jpg","datePublished":"2023-06-07T20:48:00+00:00","dateModified":"2023-06-07T20:50:15+00:00","description":"For a creamy and decadent dessert that is completely plant-based, try this Vegan Panna Cotta recipe served with Strawberry Sauce.","breadcrumb":{"@id":"https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#breadcrumb"},"mainEntity":[{"@id":"https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#faq-question-1638244328651"},{"@id":"https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#faq-question-1638654948859"},{"@id":"https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#faq-question-1686170730206"}],"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#primaryimage","url":"https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero.jpg","contentUrl":"https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero.jpg","width":1400,"height":934,"caption":"vegan panna cotta with strawberry sauce"},{"@type":"BreadcrumbList","@id":"https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://www.cleaneatingkitchen.com/"},{"@type":"ListItem","position":2,"name":"Recipe Index","item":"https://www.cleaneatingkitchen.com/recipes/"},{"@type":"ListItem","position":3,"name":"Desserts","item":"https://www.cleaneatingkitchen.com/category/recipe-dessert/"},{"@type":"ListItem","position":4,"name":"Vegan Panna Cotta with Strawberry Sauce"}]},{"@type":"WebSite","@id":"https://www.cleaneatingkitchen.com/#website","url":"https://www.cleaneatingkitchen.com/","name":"Clean Eating Kitchen","description":"Easy Recipes. Gluten Free & Dairy Free.","publisher":{"@id":"https://www.cleaneatingkitchen.com/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://www.cleaneatingkitchen.com/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https://www.cleaneatingkitchen.com/#organization","name":"Clean Eating Kitchen","url":"https://www.cleaneatingkitchen.com/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https://www.cleaneatingkitchen.com/#/schema/logo/image/","url":"https://www.cleaneatingkitchen.com/wp-content/uploads/2019/05/new-logo-square-e1558827136911.jpg","contentUrl":"https://www.cleaneatingkitchen.com/wp-content/uploads/2019/05/new-logo-square-e1558827136911.jpg","width":650,"height":650,"caption":"Clean Eating Kitchen"},"image":{"@id":"https://www.cleaneatingkitchen.com/#/schema/logo/image/"},"sameAs":["https://www.facebook.com/Cleaneatingcarrie/","https://www.instagram.com/cleaneatingcarrie/","https://www.pinterest.com/cleaneatingkitchen/","https://www.youtube.com/cleaneatingkitchen"]},{"@type":"Person","@id":"https://www.cleaneatingkitchen.com/#/schema/person/36b0bf3e742836f1cc88d791c6f98fb9","name":"Carrie Forrest, MBA, MPH, CHN","sameAs":["https://www.cleaneatingkitchen.com"]},{"@type":"Question","@id":"https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#faq-question-1638244328651","position":1,"url":"https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#faq-question-1638244328651","name":"How should I store panna cotta?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"Always store panna cotta in the refrigerator. For best results, eat the panna cotta within 2 days of making it. It's also best to top with strawberry sauce right before serving. ","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Question","@id":"https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#faq-question-1638654948859","position":2,"url":"https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#faq-question-1638654948859","name":"What is agar agar powder?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"Agar is a product derived from red algae. Similar to gelatin, it helps to set and thicken custards, but without any animal products.","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Question","@id":"https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#faq-question-1686170730206","position":3,"url":"https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#faq-question-1686170730206","name":"Can I use soy milk instead of coconut milk?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"I have not tested this recipe using any other plant-based milk or nut milks other than full fat coconut milk. You will not get as rich of a dessert or a creamy panna cotta using soy milk or almond milk.","inLanguage":"en-US"},"inLanguage":"en-US"},{"@context":"https://schema.org/","@type":"Recipe","name":"Vegan Panna Cotta with Strawberry Sauce","description":"For a creamy and decadent dessert that is completely plant-based, try this Vegan Panna Cotta recipe served with Strawberry Sauce. This coconut-based dessert is reminiscent of the authentic Italian version made with cream.","author":{"@type":"Person","name":"Carrie Forrest, MPH in Nutrition","url":"https://www.cleaneatingkitchen.com/about/"},"keywords":"vegan panna cotta, coconut milk vegan panna cotta, non dairy panna cotta, coconut panna cotta","image":["https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero-225x225.jpg","https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero-260x195.jpg","https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero-320x180.jpg","https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero.jpg"],"url":"https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/","recipeIngredient":["For the panna cotta:","1 13.5-ounce can full-fat coconut milk","¼ cup sugar","2 teaspoons agar agar powder","1 teaspoon vanilla extract","For the strawberry sauce:","1 cup frozen strawberries","¼ cup water","1 tablespoon sugar","1 teaspoon lemon juice"],"recipeInstructions":[{"@type":"HowToStep","text":"In a medium saucepan over medium heat, combine the coconut milk, ¼ cup of sugar, agar agar powder, and vanilla extract. Whisk the ingredients to ensure that the powder and sugar get completely dissolved.","url":"https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#instruction-step-1"},{"@type":"HowToStep","text":"Bring the mixture to a boil, reduce the heat to low, and simmer the mixture for at least 3 minutes. This ensures that the agar agar powder gets activated.","url":"https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#instruction-step-2"},{"@type":"HowToStep","text":"Then, remove the saucepan from the heat and pour the mixture into four small bowls, parfait glasses, or ramekins. Do your best to divide the mixture evenly between the containers.","url":"https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#instruction-step-3"},{"@type":"HowToStep","text":"Place the bowls into the refrigerator for at least 2 hours to set.","url":"https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#instruction-step-4"},{"@type":"HowToStep","text":"When you are ready to serve the panna cotta, make the strawberry sauce. In a small saucepan, combine the frozen strawberries, water, 1 tablespoon of sugar, and lemon juice.","url":"https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#instruction-step-5"},{"@type":"HowToStep","text":"While the mixture comes up to a simmer, use the back of a serving spoon to gently smash the frozen strawberries. Let the strawberries cook for a few minutes, or until they are completely soft. Remove the saucepan from the heat.","url":"https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#instruction-step-6"},{"@type":"HowToStep","text":"Serve the panna cotta in the bowls or molds, with a spoonful of the strawberry sauce on top of each one.","url":"https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#instruction-step-7"},{"@type":"HowToStep","text":"You can also remove the panna cotta from the molds to a plate for serving.","url":"https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#instruction-step-8"},{"@type":"HowToStep","text":"Enjoy immediately.","url":"https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#instruction-step-9"}],"prepTime":"PT10M","cookTime":"PT15M","totalTime":"PT2H25M","recipeYield":"4","recipeCategory":"Dessert","cookingMethod":"Stovetop","recipeCuisine":"Italian","suitableForDiet":"VeganDiet","aggregateRating":{"@type":"AggregateRating","reviewCount":"7","ratingValue":"5"},"nutrition":{"servingSize":"1/4 of recipe","calories":"265 calories","sugarContent":"17.6 g","sodiumContent":"13.7 mg","fatContent":"20.5 g","saturatedFatContent":"18.1 g","transFatContent":"0 g","carbohydrateContent":"21.5 g","fiberContent":"0.8 g","proteinContent":"2.2 g","cholesterolContent":"0 mg","@type":"nutritionInformation"},"review":[{"@type":"Review","reviewRating":{"@type":"Rating","ratingValue":"5"},"author":{"@type":"Person","name":"Maribel"},"datePublished":"2019-01-07","reviewBody":"Easy to prepare and yummy!\r\nThanks Carrie for sharing this recipe!"},{"@type":"Review","reviewRating":{"@type":"Rating","ratingValue":"5"},"author":{"@type":"Person","name":"Lisa | Garlic & Zest"},"datePublished":"2019-07-22","reviewBody":"I love a good panna cotta -- and coconut is one of my favorite flavors. I think I've got all the ingredients, too! This is happening!"},{"@type":"Review","reviewRating":{"@type":"Rating","ratingValue":"5"},"author":{"@type":"Person","name":"Raia"},"datePublished":"2019-07-22","reviewBody":"I've never tried making panna cotta before, it doesn't sound too hard!That cookbook sounds amazing, too!"},{"@type":"Review","reviewRating":{"@type":"Rating","ratingValue":"5"},"author":{"@type":"Person","name":"Jessica Formicola"},"datePublished":"2019-07-22","reviewBody":"I've never made my own panna cotta, and now I can't wait to try! It looks so creamy and delicious!"},{"@type":"Review","reviewRating":{"@type":"Rating","ratingValue":"5"},"author":{"@type":"Person","name":"Andrea Metlika"},"datePublished":"2019-07-22","reviewBody":"I didn't know panna cotta could be dairy free. This is a fabulous recipe."},{"@type":"Review","reviewRating":{"@type":"Rating","ratingValue":"5"},"author":{"@type":"Person","name":"Suzy"},"datePublished":"2019-07-22","reviewBody":"I didn't realize how easy this would be to make! Love that there are only a few ingredients! Delicious!"},{"@type":"Review","reviewRating":{"@type":"Rating","ratingValue":"5"},"author":{"@type":"Person","name":"Carrie"},"datePublished":"2021-12-22","reviewBody":"Such a yummy holiday dessert!"}],"datePublished":"2023-06-07","@id":"https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#recipe","isPartOf":{"@id":"https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#article"},"mainEntityOfPage":"https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/"}]}</script>
<!-- / Yoast SEO Premium plugin. -->
<!-- Hubbub v.2.26.2 https://morehubbub.com/ -->
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Vegan Panna Cotta with Strawberry Sauce" />
<meta property="og:description" content="For a creamy and decadent dessert that is completely plant-based, try this Vegan Panna Cotta recipe served with Strawberry Sauce. This coconut-based dessert is reminiscent of the Italian version." />
<meta property="og:url" content="https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/" />
<meta property="og:site_name" content="Clean Eating Kitchen" />
<meta property="og:updated_time" content="2023-06-07T13:50:15+00:00" />
<meta property="article:published_time" content="2023-06-07T13:48:00+00:00" />
<meta property="article:modified_time" content="2023-06-07T13:50:15+00:00" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Vegan Panna Cotta with Strawberry Sauce" />
<meta name="twitter:description" content="For a creamy and decadent dessert that is completely plant-based, try this Vegan Panna Cotta recipe served with Strawberry Sauce. This coconut-based dessert is reminiscent of the Italian version." />
<meta class="flipboard-article" content="For a creamy and decadent dessert that is completely plant-based, try this Vegan Panna Cotta recipe served with Strawberry Sauce. This coconut-based dessert is reminiscent of the Italian version." />
<meta property="og:image" content="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero.jpg" />
<meta name="twitter:image" content="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero.jpg" />
<meta property="og:image:width" content="1400" />
<meta property="og:image:height" content="934" />
<!-- Hubbub v.2.26.2 https://morehubbub.com/ -->
<link rel='dns-prefetch' href='//scripts.mediavine.com' />
<link rel="alternate" type="application/rss+xml" title="Clean Eating Kitchen » Vegan Panna Cotta with Strawberry Sauce Comments Feed" href="https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/feed/" />
<style>
.share {text-align: center;margin: 0px 0 10px;}
.dpsp-shortcode-wrapper {display: inline-block;float: none;vertical-align: middle;}
.tasty-recipes-quick-links {display: inline-block;vertical-align: middle;}
.share .tasty-recipes-quick-links {position: relative;top: -10px;}
</style><style id='wp-emoji-styles-inline-css' type='text/css'>
img.wp-smiley, img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 0.07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='wp-block-library-css' href='https://www.cleaneatingkitchen.com/wp-includes/css/dist/block-library/style.min.css?ver=6.8.3' type='text/css' media='all' />
<style id='classic-theme-styles-inline-css' type='text/css'>
/*! This file is auto-generated */
.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
</style>
<link data-minify="1" rel='stylesheet' id='tasty-links-featured-links-block-css' href='https://www.cleaneatingkitchen.com/wp-content/cache/min/1/wp-content/plugins/tasty-links/assets/css/featured-links-block.css?ver=1759168352' type='text/css' media='all' />
<style id='global-styles-inline-css' type='text/css'>
:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #161a19;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--pink: #de2668;--wp--preset--color--lightpink: #fce9f0;--wp--preset--color--green: #83c545;--wp--preset--color--lightgreen: #ecf6e3;--wp--preset--color--lightgray: #f3f4f3;--wp--preset--color--medgray: #e3e4e3;--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, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
</style>
<link data-minify="1" rel='stylesheet' id='custom-easy-table-of-contents-css' href='https://www.cleaneatingkitchen.com/wp-content/cache/min/1/wp-content/plugins/custom-table-of-contents/public/css/custom-easy-table-of-contents-public.css?ver=1759168352' type='text/css' media='all' />
<link rel='stylesheet' id='YSFA-css' href='https://www.cleaneatingkitchen.com/wp-content/plugins/faq-schema-block-to-accordion/assets/css/style.min.css?ver=1.0.5' type='text/css' media='all' />
<link data-minify="1" rel='stylesheet' id='tbfni-fontello-css' href='https://www.cleaneatingkitchen.com/wp-content/cache/min/1/wp-content/plugins/tbf-new-tab-icon/app/lib/fontello/css/fontello.css?ver=1759168352' type='text/css' media='all' />
<link data-minify="1" rel='stylesheet' id='tbfni-css-css' href='https://www.cleaneatingkitchen.com/wp-content/cache/min/1/wp-content/plugins/tbf-new-tab-icon/app/css/tbf-new-tab-icon.css?ver=1759168352' type='text/css' media='all' />
<style id='ez-toc-style-inline-css' type='text/css'>
#ez-toc-container{background:#f9f9f9;border:1px solid #aaa;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05);display:table;margin-bottom:1em;padding:10px 20px 10px 10px;position:relative;width:auto}div.ez-toc-widget-container{padding:0;position:relative}#ez-toc-container.ez-toc-light-blue{background:#edf6ff}#ez-toc-container.ez-toc-white{background:#fff}#ez-toc-container.ez-toc-black{background:#000}#ez-toc-container.ez-toc-transparent{background:none}div.ez-toc-widget-container ul{display:block}div.ez-toc-widget-container li{border:none;padding:0}div.ez-toc-widget-container ul.ez-toc-list{padding:10px}#ez-toc-container ul ul,.ez-toc div.ez-toc-widget-container ul ul{margin-left:1.5em}#ez-toc-container li,#ez-toc-container ul{padding:0}#ez-toc-container li,#ez-toc-container ul,#ez-toc-container ul li,div.ez-toc-widget-container,div.ez-toc-widget-container li{background:0 0;list-style:none;line-height:1.6;margin:0;overflow:hidden;z-index:1}#ez-toc-container .ez-toc-title{text-align:left;line-height:1.45;margin:0;padding:0}.ez-toc-title-container{display:table;width:100%}.ez-toc-title,.ez-toc-title-toggle{display:inline;text-align:left;vertical-align:middle}.ez-toc-btn,.ez-toc-glyphicon{display:inline-block;font-weight:400}#ez-toc-container.ez-toc-black a,#ez-toc-container.ez-toc-black a:visited,#ez-toc-container.ez-toc-black p.ez-toc-title{color:#fff}#ez-toc-container div.ez-toc-title-container+ul.ez-toc-list{margin-top:1em}.ez-toc-wrap-left{margin:0 auto 1em 0!important}.ez-toc-wrap-left-text{float:left}.ez-toc-wrap-right{margin:0 0 1em auto!important}.ez-toc-wrap-right-text{float:right}#ez-toc-container a{color:#444;box-shadow:none;text-decoration:none;text-shadow:none;display:inline-flex;align-items:stretch;flex-wrap:nowrap}#ez-toc-container a:visited{color:#9f9f9f}#ez-toc-container a:hover{text-decoration:underline}#ez-toc-container a.ez-toc-toggle{display:flex;align-items:center}.ez-toc-widget-container ul.ez-toc-list li::before{content:' ';position:absolute;left:0;right:0;height:30px;line-height:30px;z-index:-1}.ez-toc-widget-container ul.ez-toc-list li.active{background-color:#ededed}.ez-toc-widget-container li.active>a{font-weight:900}.ez-toc-btn{padding:6px 12px;margin-bottom:0;font-size:14px;line-height:1.428571429;text-align:center;white-space:nowrap;vertical-align:middle;cursor:pointer;background-image:none;border:1px solid transparent;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.ez-toc-btn:focus{outline:#333 dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.ez-toc-btn:focus,.ez-toc-btn:hover{color:#333;text-decoration:none}.ez-toc-btn.active,.ez-toc-btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.ez-toc-btn-default{color:#333;background-color:#fff;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);text-shadow:0 1px 0 #fff;background-image:-webkit-gradient(linear,left 0,left 100%,from(#fff),to(#e0e0e0));background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-moz-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:linear-gradient(to bottom,#fff 0,#e0e0e0 100%);background-repeat:repeat-x;border-color:#ccc}.ez-toc-btn-default.active,.ez-toc-btn-default:active,.ez-toc-btn-default:focus,.ez-toc-btn-default:hover{color:#333;background-color:#ebebeb;border-color:#adadad}.ez-toc-btn-default.active,.ez-toc-btn-default:active{background-image:none;background-color:#e0e0e0;border-color:#dbdbdb}.ez-toc-btn-sm,.ez-toc-btn-xs{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.ez-toc-btn-xs{padding:1px 5px}.ez-toc-btn-default:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.active,.ez-toc-btn:active{background-image:none}.ez-toc-btn-default:focus,.ez-toc-btn-default:hover{background-color:#e0e0e0;background-position:0 -15px}.ez-toc-pull-right{float:right!important;margin-left:10px}#ez-toc-container label.cssicon,#ez-toc-widget-container label.cssicon{height:30px}.ez-toc-glyphicon{position:relative;top:1px;font-family:'Glyphicons Halflings';-webkit-font-smoothing:antialiased;font-style:normal;line-height:1;-moz-osx-font-smoothing:grayscale}.ez-toc-glyphicon:empty{width:1em}.ez-toc-toggle i.ez-toc-glyphicon,label.cssicon .ez-toc-glyphicon:empty{font-size:16px;margin-left:2px}#ez-toc-container input,.ez-toc-toggle #item{position:absolute;left:-999em}#ez-toc-container input[type=checkbox]:checked+nav,#ez-toc-widget-container input[type=checkbox]:checked+nav{opacity:0;max-height:0;border:none;display:none}#ez-toc-container .ez-toc-js-icon-con,#ez-toc-container label{position:relative;cursor:pointer;display:initial}#ez-toc-container .ez-toc-js-icon-con,#ez-toc-container .ez-toc-toggle label,.ez-toc-cssicon{float:right;position:relative;font-size:16px;padding:0;border:1px solid #999191;border-radius:5px;cursor:pointer;left:10px;width:35px}div#ez-toc-container .ez-toc-title{display:initial}.ez-toc-wrap-center{margin:0 auto 1em!important}#ez-toc-container a.ez-toc-toggle{color:#444;background:inherit;border:inherit}#ez-toc-container .eztoc-toggle-hide-by-default,.eztoc-hide,label.cssiconcheckbox{display:none}.ez-toc-widget-container ul li a{padding-left:10px;display:inline-flex;align-items:stretch;flex-wrap:nowrap}.ez-toc-widget-container ul.ez-toc-list li{height:auto!important}.ez-toc-icon-toggle-span{display:flex;align-items:center;width:35px;height:30px;justify-content:center;direction:ltr}.eztoc_no_heading_found{background-color:#ff0;padding-left:10px}.term-description .ez-toc-title-container p:nth-child(2){width:50px;float:right;margin:0}.ez-toc-container-direction {direction: ltr;}.ez-toc-counter ul{counter-reset: item ;}.ez-toc-counter nav ul li a::before {content: counters(item, '.', decimal) '. ';display: inline-block;counter-increment: item;flex-grow: 0;flex-shrink: 0;margin-right: .2em; float: left; }.ez-toc-widget-direction {direction: ltr;}.ez-toc-widget-container ul{counter-reset: item ;}.ez-toc-widget-container nav ul li a::before {content: counters(item, '.', decimal) '. ';display: inline-block;counter-increment: item;flex-grow: 0;flex-shrink: 0;margin-right: .2em; float: left; }div#ez-toc-container .ez-toc-title {font-size: 120%;}div#ez-toc-container .ez-toc-title {font-weight: 500;}div#ez-toc-container ul li , div#ez-toc-container ul li a {font-size: 95%;}div#ez-toc-container ul li , div#ez-toc-container ul li a {font-weight: 500;}div#ez-toc-container nav ul ul li {font-size: 90%;}div#ez-toc-container {width: 100%;}
</style>
<link data-minify="1" rel='stylesheet' id='font-awesome-subset-css' href='https://www.cleaneatingkitchen.com/wp-content/cache/min/1/wp-content/themes/cleaneatingkitchen2022/fontawesome-subset/css/all.css?ver=1759168352' type='text/css' media='all' />
<link data-minify="1" rel='stylesheet' id='dpsp-frontend-style-pro-css' href='https://www.cleaneatingkitchen.com/wp-content/cache/min/1/wp-content/plugins/social-pug/assets/dist/style-frontend-pro.css?ver=1759168352' type='text/css' media='all' />
<style id='dpsp-frontend-style-pro-inline-css' type='text/css'>
@media screen and ( max-width : 720px ) {
.dpsp-content-wrapper.dpsp-hide-on-mobile,
.dpsp-share-text.dpsp-hide-on-mobile {
display: none;
}
.dpsp-has-spacing .dpsp-networks-btns-wrapper li {
margin:0 2% 10px 0;
}
.dpsp-network-btn.dpsp-has-label:not(.dpsp-has-count) {
max-height: 40px;
padding: 0;
justify-content: center;
}
.dpsp-content-wrapper.dpsp-size-small .dpsp-network-btn.dpsp-has-label:not(.dpsp-has-count){
max-height: 32px;
}
.dpsp-content-wrapper.dpsp-size-large .dpsp-network-btn.dpsp-has-label:not(.dpsp-has-count){
max-height: 46px;
}
}
@media screen and ( max-width : 720px ) {
aside#dpsp-floating-sidebar.dpsp-hide-on-mobile.opened {
display: none;
}
}
@media screen and ( max-width : 720px ) {
aside#dpsp-floating-sidebar.dpsp-hide-on-mobile.opened {
display: none;
}
}
</style>
<link data-minify="1" rel='stylesheet' id='custom-style-css' href='https://www.cleaneatingkitchen.com/wp-content/cache/min/1/wp-content/themes/cleaneatingkitchen2022/style.css?ver=1759168352' type='text/css' media='all' />
<link data-minify="1" rel='stylesheet' id='responsive-style-css' href='https://www.cleaneatingkitchen.com/wp-content/cache/min/1/wp-content/themes/cleaneatingkitchen2022/responsive.css?ver=1759168352' type='text/css' media='all' />
<link data-minify="1" rel='stylesheet' id='cmh-style-css' href='https://www.cleaneatingkitchen.com/wp-content/cache/min/1/wp-content/themes/cleaneatingkitchen2022/mobile-header/mobile-header-style.css?ver=1759168352' type='text/css' media='all' />
<style id='rocket-lazyload-inline-css' type='text/css'>
.rll-youtube-player{position:relative;padding-bottom:56.23%;height:0;overflow:hidden;max-width:100%;}.rll-youtube-player:focus-within{outline: 2px solid currentColor;outline-offset: 5px;}.rll-youtube-player iframe{position:absolute;top:0;left:0;width:100%;height:100%;z-index:100;background:0 0}.rll-youtube-player img{bottom:0;display:block;left:0;margin:auto;max-width:100%;width:100%;position:absolute;right:0;top:0;border:none;height:auto;-webkit-transition:.4s all;-moz-transition:.4s all;transition:.4s all}.rll-youtube-player img:hover{-webkit-filter:brightness(75%)}.rll-youtube-player .play{height:100%;width:100%;left:0;top:0;position:absolute;background:url(https://www.cleaneatingkitchen.com/wp-content/plugins/wp-rocket/assets/img/youtube.png) no-repeat center;background-color: transparent !important;cursor:pointer;border:none;}
</style>
<link data-minify="1" rel='stylesheet' id='tasty-recipes-pro-snap-css' href='https://www.cleaneatingkitchen.com/wp-content/cache/min/1/wp-content/plugins/tasty-recipes/templates/designs/snap/tasty-recipes.css?ver=1759168352' type='text/css' media='all' />
<style id='tasty-recipes-before-inline-css' type='text/css'>
body{--tr-star-color:#F2B955;--tr-radius:3px}
</style>
<link data-minify="1" rel='stylesheet' id='tasty-recipes-main-css' href='https://www.cleaneatingkitchen.com/wp-content/cache/min/1/wp-content/plugins/tasty-recipes-lite/assets/dist/recipe.css?ver=1759168352' type='text/css' media='all' />
<style id='tasty-recipes-main-inline-css' type='text/css'>
/* Snap recipe card styles. */ .tasty-recipes-image{max-height:650px;display:flex;align-items:center;overflow:hidden;margin-bottom:-30px;z-index:1}.tasty-recipes-image img{object-fit:cover;width:100%}.tasty-recipes-entry-header{position:relative;display:flex;flex-direction:column;align-items:center;background-color:#fff;border:1px solid #dadada;border-bottom:0;border-top-left-radius:30px;border-top-right-radius:30px;padding:1.25em;z-index:2}.tasty-recipes-entry-header .tasty-recipes-title{font-size:2em;margin:0.313em 0;text-align:center}.tasty-recipes-rating-solid,.tasty-recipes-rating-outline{width:1.5em}.tasty-recipes-rating a{text-decoration:none}.tasty-recipes-entry-header .tasty-recipes-rating{text-align:center;color:#000;color:var(--tr-star-color,#000);line-height:1em}.tasty-recipes-entry-header .tasty-recipes-rating p{margin:0}.tasty-recipes-entry-header .tasty-recipes-rating .rating-label,.tasty-recipes-rating-link .rating-label{font-style:italic;font-size:0.75em}.tasty-recipes-entry-header .tasty-recipes-buttons{display:flex;margin-top:1em;margin-bottom:1em}.tasty-recipes-entry-header .tasty-recipes-button-wrap{box-sizing:border-box}.tasty-recipes-print-button{margin-right:1.25em}.tasty-recipes-quick-links a.button,.tasty-recipes a.button{display:inline-flex;align-items:center;justify-content:center;background-color:#000;background-color:var(--tr-button-color,#000);color:#fff;color:var(--tr-button-text-color,#fff);border-color:var(--tr-button-color,#000);font-size:0.813em;padding-left:1em;padding-right:1em;padding-top:0.5em;padding-bottom:0.5em;letter-spacing:0.5px;white-space:nowrap}.tasty-recipes-quick-links a.button{display:inline-block}body.foodie-pro .tasty-recipes-quick-links a.button:hover,body.foodie-pro .tasty-recipes a.button:hover{box-shadow:0px 0px 0px 1px rgba(0,0,0,1) inset;color:#000;background-color:#fff}.tasty-recipes-entry-header .tasty-recipes-buttons .svg-print,.tasty-recipes-entry-header .tasty-recipes-buttons .svg-pinterest,.tasty-recipes-entry-header .tasty-recipes-buttons .svg-heart-regular,.tasty-recipes-entry-header .tasty-recipes-buttons .svg-heart-solid{height:1.25em;margin-right:0.375em;margin-bottom:0;background:none;display:inline-block;box-shadow:none;vertical-align:middle}.tasty-recipes-entry-header .tasty-recipes-description-body{font-size:0.938em;font-style:italic;line-height:1.5em}.tasty-recipes-entry-header .tasty-recipes-description-body p:first-of-type{margin:0}.tasty-recipes-entry-header .tasty-recipes-description-body p{margin:1em 0}.tasty-recipes-entry-header .tasty-recipes-details{font-size:0.875em;margin-top:0.875em}.tasty-recipes-entry-header .tasty-recipes-details .tasty-recipes-label{font-weight:bold}.tasty-recipes-entry-header .tasty-recipes-details ul{list-style-type:none;margin:0}.tasty-recipes-entry-header .tasty-recipes-details ul li{display:inline-block;margin-left:0.5em;margin-right:0.5em;font-size:1em;line-height:1em}.tasty-recipes-details ul li:before,.tasty-recipes-other-details ul li:before{content:unset}.tasty-recipes-entry-header .tasty-recipes-details .detail-icon{height:1em;margin-top:0;vertical-align:bottom;display:inline-block}@media only screen and (max-width:520px){.tasty-recipes-entry-header .tasty-recipes-details .detail-icon{height:0.8em}.tasty-recipes-entry-header .tasty-recipes-details ul li{font-size:0.875em;line-height:1.75em}}label[for="tasty-recipes-video-toggle"]{font-size:0.75rem;color:#000;color:var(--tr-h3-color,#000)}button[name="tasty-recipes-video-toggle"]{border:#000;border-color:var(--tr-button-color,#000);background:#000;background:var(--tr-button-color,#000)}button[name="tasty-recipes-video-toggle"][aria-checked="false"] :last-child,button[name="tasty-recipes-video-toggle"][aria-checked="true"] :first-child{color:#000;color:var(--tr-button-color,#000)}.tasty-recipes-entry-content .tasty-recipes-ingredients,.tasty-recipes-entry-content .tasty-recipes-instructions,.tasty-recipes-entry-content .tasty-recipes-equipment{background-color:#fff;border-top:1px solid #dadada;padding:1.25em}.tasty-recipes-entry-content .tasty-recipes-ingredients-header,.tasty-recipes-entry-content .tasty-recipes-instructions-header,.tasty-recipes-entry-content .tasty-recipes-notes h3,.tasty-recipes-entry-content .tasty-recipes-nutrition h3,.tasty-recipes-entry-content .tasty-recipes-equipment h3{margin:0}.tasty-recipes-entry-content .tasty-recipes-ingredients-header h3,.tasty-recipes-entry-content .tasty-recipes-instructions-header h3,.tasty-recipes-entry-content .tasty-recipes-notes h3,.tasty-recipes-entry-content .tasty-recipes-nutrition h3,.tasty-recipes-entry-content .tasty-recipes-equipment h3{text-transform:uppercase;margin-bottom:1em;font-size:1.25em}.tasty-recipes-entry-content .tasty-recipes-ingredients h4,.tasty-recipes-entry-content .tasty-recipes-ingredients p,.tasty-recipes-entry-content .tasty-recipes-instructions h4,.tasty-recipes-entry-content .tasty-recipes-instructions p{margin:1.25em 0}.tasty-recipes-entry-content .tasty-recipes-ingredients h4:first-child,.tasty-recipes-entry-content .tasty-recipes-ingredients p:first-child,.tasty-recipes-entry-content .tasty-recipes-instructions h4:first-child,.tasty-recipes-entry-content .tasty-recipes-instructions p:first-child{margin-top:0}.tasty-recipes-entry-content .tasty-recipes-ingredients ul,.tasty-recipes-entry-content .tasty-recipes-instructions ul,.tasty-recipes-entry-header .tasty-recipes-description-body ul{list-style-type:none;margin:0 1.25em;margin-bottom:0.625em;padding:0}.tasty-recipes-entry-content .tasty-recipes-instructions p{margin:0 1.75em;margin-bottom:0.625em}.tasty-recipes-entry-content .tasty-recipes-ingredients p,.tasty-recipes-entry-content .tasty-recipes-instructions p,.tasty-recipes-entry-content .tasty-recipes-ingredients ul li,.tasty-recipes-entry-content .tasty-recipes-instructions ul li,.tasty-recipes-entry-content .tasty-recipes-ingredients ol li,.tasty-recipes-entry-content .tasty-recipes-instructions ol li{font-size:0.875em}.tasty-recipes-entry-content .tasty-recipes-ingredients ul li,.tasty-recipes-entry-content .tasty-recipes-instructions ul li,.tasty-recipes-entry-header .tasty-recipes-description-body ul li{margin-bottom:0.625em;list-style-type:none;position:relative;margin-left:2em;line-height:1.46em}.tasty-recipes-entry-content .tasty-recipes-ingredients ul li:before,.tasty-recipes-entry-content .tasty-recipes-instructions ul li:before,.tasty-recipes-entry-header .tasty-recipes-description-body ul li:before{border-radius:50%;height:0.5em;width:0.5em;display:block;content:"\2022";left:-1.5em;position:absolute}.tasty-recipes-entry-content .tasty-recipes-ingredients ol,.tasty-recipes-entry-content .tasty-recipes-instructions ol,.tasty-recipes-entry-header .tasty-recipes-description-body ol{counter-reset:li;margin:0 1.25em;padding:0;margin-bottom:0.625em}.tasty-recipes-entry-content .tasty-recipes-ingredients ol>li,.tasty-recipes-entry-content .tasty-recipes-instructions ol>li,.tasty-recipes-entry-header .tasty-recipes-description-body ol>li{list-style-type:none;position:relative;margin-bottom:1em;margin-left:2em;line-height:1.46}.tasty-recipes-entry-content .tasty-recipes-ingredients ol>li:before,.tasty-recipes-entry-content .tasty-recipes-instructions ol>li:before,.tasty-recipes-entry-header .tasty-recipes-description-body ol>li:before{content:counter(li);counter-increment:li;position:absolute;background-color:#000;border-radius:50%;height:1.75em;width:1.75em;color:#fff;left:-2em;top:0;transform:translateX(-50%);font-size:0.85em;display:flex;justify-content:center;align-content:center;flex-wrap:nowrap;font-variant-numeric:lining-nums;align-items:center;flex-direction:row}.tasty-recipes-entry-content .tasty-recipes-ingredients li li,.tasty-recipes-entry-content .tasty-recipes-instructions li li{margin-top:0.625em}.tasty-recipes-entry-content .tasty-recipes-ingredients li ul,.tasty-recipes-entry-content .tasty-recipes-ingredients li ol,.tasty-recipes-entry-content .tasty-recipes-instructions li ul,.tasty-recipes-entry-content .tasty-recipes-instructions li ol{margin-bottom:0}@media only screen and (max-width:520px){.tasty-recipes-entry-content .tasty-recipes-ingredients ol,.tasty-recipes-entry-content .tasty-recipes-instructions ol{margin-left:0}}/* Equipments section */ .tasty-recipes-entry-content .tasty-recipes-equipment .tasty-link-card{padding:0em 0rem 1rem}.tasty-recipes-entry-content .tasty-recipes-equipment .tasty-link-card .tasty-link{font-weight:500}/* Notes section */ .tasty-recipes-entry-content .tasty-recipes-notes{background-color:#edf0f2;padding:1.25em}.tasty-recipes-entry-content .tasty-recipes-notes h3{margin-top:0}.tasty-recipes-entry-content .tasty-recipes-notes-body{margin:0 1.25em}.tasty-recipes-entry-content .tasty-recipes-notes ol{counter-reset:li;margin-left:0;padding:0;margin-bottom:0.625em;padding:0.625em 1.5em 0.625em 0em;background-color:#fff;border-radius:5px}.tasty-recipes-entry-content .tasty-recipes-notes ol li{padding-left:2.25em;position:relative;margin-bottom:0.625em;margin-left:0;list-style-type:none;font-size:0.875em;line-height:1.46em}.tasty-recipes-entry-content .tasty-recipes-notes p{padding:0.625em 1.5em 0em 2.25em;margin:0 auto;background-color:#fff;position:relative;margin-left:0;list-style-type:none;font-size:0.875em;line-height:1.46em}.tasty-recipes-print .tasty-recipes-entry-content .tasty-recipes-notes p{margin-bottom:0.625em}.tasty-recipes-entry-content .tasty-recipes-notes p:first-of-type{border-top-left-radius:5px;border-top-right-radius:5px}.tasty-recipes-entry-content .tasty-recipes-notes p:last-of-type{border-bottom-right-radius:5px;border-bottom-left-radius:5px;padding-bottom:0.625em;margin-bottom:0.625em}.tasty-recipes-entry-content .tasty-recipes-notes ul{margin-left:0;padding:0;margin-bottom:0;padding:0.625em 1.5em 0.625em 0em;background-color:#fff;border-radius:5px}.tasty-recipes-entry-content .tasty-recipes-notes ul li{position:relative;padding-left:2.25em;margin-bottom:0.625em;margin-left:0;list-style-type:none;font-size:0.875em;line-height:1.46em}.tasty-recipes-entry-content .tasty-recipes-notes ol li:last-child,.tasty-recipes-entry-content .tasty-recipes-notes ul li:last-child{margin-bottom:0}.tasty-recipes-entry-content .tasty-recipes-notes ul li:before{content:"\2022";display:block;position:absolute;left:1.25em;transform:translateX(-50%)}.tasty-recipes-entry-content .tasty-recipes-notes ol>li:before{content:counter(li) ".";counter-increment:li;position:absolute;left:1.25em;transform:translateX(-50%);text-align:center}/* Nutrifox - nutrition */ .tasty-recipes-entry-content .tasty-recipes-nutrifox{display:flex}.tasty-recipes-entry-content .tasty-recipes-nutrition{padding:1.25em;background-color:#fff}.tasty-recipes-entry-content .tasty-recipes-nutrition ul{font-size:0.75em}/* Keywords */ .tasty-recipes-entry-content .tasty-recipes-keywords{background-color:#edf0f2;text-align:center;font-size:0.75em;padding:1.25em 2.5em}.tasty-recipes-entry-content .tasty-recipes-keywords .tasty-recipes-label{font-weight:bold}.tasty-recipes-entry-content .tasty-recipes-keywords p{margin:0}/* Other Details */ .tasty-recipes-other-details{background-color:#edf0f2;padding:0 1.25em 1.25em}.tasty-recipes-entry-content .tasty-recipes-other-details ul{display:flex;flex-wrap:wrap;justify-content:center;font-size:0.75em;list-style:none;margin:0;padding-left:0px}.tasty-recipes-other-details ul li{margin:0 0.5rem;list-style:none}.tasty-recipes-other-details ul li,.tasty-recipes-entry-content .tasty-recipes-other-details ul li{font-size:1em;line-height:2.5em}.tasty-recipes-entry-content{border-right:1px solid #dadada;border-left:1px solid #dadada;display:flex;flex-direction:column}.tasty-recipes-entry-content .tasty-recipes-other-details ul li .tasty-recipes-label{font-style:italic}.tasty-recipes-other-details .detail-icon,.tasty-recipes-entry-content .tasty-recipes-other-details .detail-icon{vertical-align:top;margin-right:0.2em;display:inline-block;height:1em;margin-top:0.8em}@media only screen and (max-width:520px){.tasty-recipes-other-details .detail-icon,.tasty-recipes-entry-content .tasty-recipes-other-details .detail-icon{height:0.8em;margin-top:0.4em}.tasty-recipes-other-details ul li,.tasty-recipes-entry-content .tasty-recipes-other-details ul li{font-size:0.875em;line-height:1.75em}}.tasty-recipes-entry-footer{background-color:#000;background-color:var(--tr-primary-color,#000);margin-bottom:1.25em}@media only screen and (max-width:520px){.tasty-recipes-entry-content .tasty-recipes-ingredients ol>li:before,.tasty-recipes-entry-content .tasty-recipes-instructions ol>li:before,.tasty-recipes-entry-header .tasty-recipes-description-body ol>li:before{height:1.5em;width:1.5em;top:0.25em;font-size:0.685em}.tasty-recipes-entry-content .tasty-recipes-ingredients ul li:before,.tasty-recipes-entry-content .tasty-recipes-instructions ul li:before,.tasty-recipes-entry-header .tasty-recipes-description-body ul li:before{left:-1.25em}.tasty-recipes-entry-content .tasty-recipes-notes-body{margin:0}.tasty-recipes-entry-content .tasty-recipes-ingredients ul li,.tasty-recipes-entry-content .tasty-recipes-instructions ul li,.tasty-recipes-entry-header .tasty-recipes-description-body ul li{margin-left:0}.tasty-recipes-entry-content .tasty-recipes-ingredients ol>li,.tasty-recipes-entry-content .tasty-recipes-instructions ol>li,.tasty-recipes-entry-header .tasty-recipes-description-body ol>li{margin-left:1.65em}.tasty-recipes-entry-content .tasty-recipes-ingredients ol>li:before,.tasty-recipes-entry-content .tasty-recipes-instructions ol>li:before,.tasty-recipes-entry-header .tasty-recipes-description-body ol>li:before{left:-1.65em}}@media only screen and (max-width:428px){.tasty-recipes-instructions-header{flex-direction:column}.tasty-recipes-entry-content .tasty-recipes-instructions-header h3{margin-bottom:0.25em}.tasty-recipes-video-toggle-container{margin-bottom:1em}}.tasty-recipe-responsive-iframe-container{margin:0px}/* Print card */ @media print{.tasty-recipes-print-view .tasty-recipes{margin:0}}body.tasty-recipes-print-view{font-size:0.75em;background-color:#fff;line-height:1.25em}.tasty-recipes-print-view .tasty-recipes{padding:0;border:1px solid #dadada}.tasty-recipes-print-view .tasty-recipes-entry-content,.tasty-recipes-print-view .tasty-recipes-entry-header{border-radius:0;border:none}/* Fix page break in Safari */ .tasty-recipes-print-view .tasty-recipes-entry-content{display:block}.tasty-recipes-print-view .tasty-recipes-image{max-height:160px;margin-bottom:30px}.tasty-recipes-print-view .tasty-recipes-entry-content .tasty-recipes-ingredients ul,.tasty-recipes-print-view .tasty-recipes-entry-content .tasty-recipes-instructions ul,.tasty-recipes-print-view .tasty-recipes-entry-header .tasty-recipes-description-body ul{margin:0}.tasty-recipes-print-view .tasty-recipes-entry-content .tasty-recipes-ingredients ul li,.tasty-recipes-print-view .tasty-recipes-entry-content .tasty-recipes-instructions ul li,.tasty-recipes-print-view .tasty-recipes-entry-header .tasty-recipes-description-body ul li{margin-bottom:0.25em;margin-left:1.5em;line-height:1.25em}.tasty-recipes-print-view .tasty-recipes-entry-content .tasty-recipes-ingredients ol>li,.tasty-recipes-print-view .tasty-recipes-entry-content .tasty-recipes-instructions ol>li,.tasty-recipes-print-view .tasty-recipes-entry-header .tasty-recipes-description-body ol>li{margin-bottom:0.75em;margin-left:0.6em;line-height:1.25}.tasty-recipes-print-view .tasty-recipes-entry-content .tasty-recipes-notes-body{margin:0}.tasty-recipes-print-view .tasty-recipes-entry-content .tasty-recipes-instructions p{margin-left:2em}.tasty-recipes-print-view .tasty-recipes-entry-content .tasty-recipes-notes p,.tasty-recipes-print-view .tasty-recipes-entry-content .tasty-recipes-notes ul li,.tasty-recipes-print-view .tasty-recipes-entry-content .tasty-recipes-notes ol li{padding:0}.tasty-recipes-print-view .tasty-recipes-entry-content .tasty-recipes-notes ol>li:before{left:0.5em}.tasty-recipes-print-view .tasty-recipes-entry-content .tasty-recipes-notes p:before,.tasty-recipes-print-view .tasty-recipes-entry-content .tasty-recipes-notes ul li:before{left:0.25em}.tasty-recipes-print-view .tasty-recipes-other-details{padding:0}.tasty-recipes-print-view .tasty-recipes-entry-content .tasty-recipes-other-details ul{justify-content:flex-start;padding:1.25em;padding-top:0}.tasty-recipes-print-view .tasty-recipe-video-embed,.tasty-recipes-print .tasty-recipes-entry-header .tasty-recipes-details .detail-icon{display:none}.tasty-recipes-print .tasty-recipes-entry-header .tasty-recipes-details ul{padding-left:0}.tasty-recipes-print .tasty-recipes-entry-header .tasty-recipes-details{margin-top:0.5em}.tasty-recipes-print .tasty-recipes-entry-header .tasty-recipes-title{margin-bottom:0.5em}.tasty-recipes-print .tasty-recipes-source-link{text-align:center}.tasty-recipes-print .tasty-recipes-entry-header .tasty-recipes-description-body p:first-of-type{margin-top:0.5em}.tasty-recipes{background-color:#83c545}.tasty-recipes-entry-header{background-color:#fff;border-radius:0!important;border:none;width:auto;margin:-20% 1.25em 1.25em;padding:1.25em}.tasty-recipes-entry-header h2.tasty-recipes-title{margin:0 0 15px}.tasty-recipes-entry-content h3{text-transform:none!important;font-size:24px}.tasty-recipes-entry-header span.tasty-recipes-rating{color:#de2668}.tasty-recipes-entry-header .tasty-recipes-rating .rating-label{color:#686a69;font-weight:normal;font-size:12px;display:block;margin:0}.tasty-recipes-entry-header span.tasty-recipes-rating{margin:0!important;font-size:20px;line-height:1.3}.tasty-recipes-entry-header .tasty-recipes-details{font-size:13px;line-height:20px;font-weight:bold;font-family:"Futura",Arial,Helvetica,Geneva,sans-serif;text-transform:uppercase;letter-spacing:.1em;color:#686a69}.tasty-recipes-entry-header .tasty-recipes-details ul{list-style-type:none;margin:0;line-height:24px}.tasty-recipes-entry-header .tasty-recipes-details ul li{display:inline-block;margin:0 12px 0 0;padding:0;line-height:20px}.tasty-recipes-entry-header .tasty-recipes-details ul li:before{display:none}.tasty-recipes-entry-header .tasty-recipes-details ul li a{text-decoration:underline;border:none!important;box-shadow:none!important}.tasty-recipes-entry-header .tasty-recipes-details .detail-icon{vertical-align:middle!important;margin-top:-4px;margin-right:5px;display:inline-block;fill:#161a19}.tasty-recipes-entry-header .tasty-recipes-details .tasty-recipes-label{font-family:"-apple-system","BlinkMacSystemFont","segoe ui","Roboto","Oxygen-Sans","Ubuntu","Cantarell","helvetica neue",sans-serif;font-weight:normal;text-transform:lowercase;letter-spacing:normal;font-size:110%}.tasty-recipes-entry-header .tasty-recipes-details .tasty-recipes-yield-scale{background-color:#de2569;border:1px solid #de2569;color:#fff;padding:0;width:28px;height:28px;line-height:26px;letter-spacing:normal;display:inline-block;text-align:center;border-radius:50%}.tasty-recipes-scale-container button.tasty-recipes-scale-button,.tasty-recipes-entry-content .tasty-recipes-ingredients .tasty-recipes-convert-container button{font-weight:bold;font-family:"Futura",Arial,Helvetica,Geneva,sans-serif;text-transform:uppercase;font-size:12px;padding:0;width:32px;height:32px;min-width:28px;line-height:30px;letter-spacing:normal;display:inline-block;text-align:center;border-radius:50%;color:#686a69;border-color:#e3e4e3}.tasty-recipes-scale-container button.tasty-recipes-scale-button-active,.tasty-recipes-convert-container button.tasty-recipes-convert-button-active{background-color:#de2569;border-color:#de2569;color:#ffffff!important}.tasty-recipes-scale-container .tasty-recipes-scale-label,.tasty-recipes-convert-container,.tasty-recipes-convert-container .tasty-recipes-convert-label{font-family:"Futura";font-weight:bold;color:#686a69}.tasty-recipes-entry-header .tasty-recipes-description{text-align:center;margin-bottom:15px}.tasty-recipes-entry-content{}.tasty-recipes-entry-header .tasty-recipes-buttons{text-align:center;width:100%;justify-content:center;gap:3%;margin:25px 0}.tasty-recipes-entry-header .tasty-recipes-button-wrap{text-align:center;flex-basis:48%;max-width:180px}.tasty-recipes-entry-header .tasty-recipes-buttons a{font-family:"Futura",Arial,Helvetica,Geneva,sans-serif;text-transform:uppercase;font-weight:bold;letter-spacing:.1em;font-size:14px;line-height:30px;width:100%;height:auto;padding:5px 14px 10px 8px;margin:0;text-align:center;display:inline-block;color:#FFF!important;background-color:#de2569;text-decoration:none;border-radius:0!important;border-bottom:none!important;box-shadow:none!important;position:relative}.tasty-recipes-entry-header .tasty-recipes-buttons a:after{content:"";display:block;border:2px solid #161a19;position:absolute;top:-4px;left:-4px;right:3px;bottom:3px}.tasty-recipes-entry-header a img{box-shadow:none;-webkit-box-shadow:none;display:inline-block;vertical-align:middle;line-height:30px;margin:7px 5px 0 0}.tasty-recipes-entry-header .tasty-recipes-buttons a:hover{background-color:#83c545;text-decoration:none}@media only screen and (max-width:450px){.tasty-recipes-entry-header .tasty-recipes-buttons{gap:15px;flex-wrap:wrap}.tasty-recipes-entry-header .tasty-recipes-button-wrap{flex-basis:100%}}.tasty-recipes-entry-content{border:2px solid #f3f4f3;border-top:none}.tasty-recipes-entry-content h3{text-transform:none}.tasty-recipes-entry-content h4{}.tasty-recipes-entry-content hr{border:2px solid #f3f4f3;border-bottom:none;margin-top:25px;margin-bottom:25px}.tasty-recipes-entry-content .tasty-recipes-ingredients,.tasty-recipes-entry-content .tasty-recipes-instructions,.tasty-recipes-entry-content .tasty-recipes-equipment{background-color:#fff;border-top:2px solid #f3f4f3;padding:1.25em}.tasty-recipes-entry-content .tasty-recipes-ingredients ul,.tasty-recipes-entry-content .tasty-recipes-instructions ul{list-style-type:none;margin-left:0;padding:0}.tasty-recipes-entry-content .tasty-recipes-ingredients ul li,.tasty-recipes-entry-content .tasty-recipes-instructions ul li{margin-left:25px}.tasty-recipes-entry-content .tasty-recipes-ingredients ul li:before,.tasty-recipes-entry-content .tasty-recipes-instructions ul li:before{background-color:#de2668;content:"";left:5px;top:10px}.tasty-recipes-entry-content .tasty-recipes-ingredients ol,.tasty-recipes-entry-content .tasty-recipes-instructions ol{counter-reset:li;margin-left:0;padding:0}.tasty-recipes-entry-content .tasty-recipes-ingredients ol li,.tasty-recipes-entry-content .tasty-recipes-instructions ol li{list-style-type:none;position:relative;margin-bottom:25px;margin-left:35px;line-height:1.7}.tasty-recipes-entry-content .tasty-recipes-ingredients ol li:before,.tasty-recipes-entry-content .tasty-recipes-instructions ol li:before{content:counter(li);counter-increment:li;position:absolute;background-color:#83c545;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;height:26px;width:26px;color:#161a19!important;left:-26px;top:4px;transform:translateX(-50%);line-height:24px;font-size:13px;text-align:center;font-weight:bold;font-family:Futura}.tasty-recipes-entry-content .tasty-recipes-notes ul,.tasty-recipes-entry-content .tasty-recipes-notes ol{list-style-type:none;margin-left:15px;padding:0}.tasty-recipes-entry-content .tasty-recipes-notes ul li,.tasty-recipes-entry-content .tasty-recipes-notes ol li{margin-left:0;margin-bottom:10px;font-size:88%;line-height:1.6}.tasty-recipes-entry-content .tasty-recipes-notes ul li:before,.tasty-recipes-entry-content .tasty-recipes-notes ol li:before{background-color:transparent;height:auto;border-radius:none;color:#de2668;font-weight:normal;margin:0 5px 0 -20px;width:15px;font-weight:bold;font-style:normal!important;display:inline-block;content:"\f004";position:relative;top:0;left:0;font-size:15px;font-family:"Font Awesome 5 Pro"}.tasty-recipes-entry-content .tasty-recipes-notes{padding:0 25px 25px;background-color:#fff;border-top:2px solid #f3f4f3}.tasty-recipes-entry-content .tasty-recipes-notes-body{padding:0;margin:0}.tasty-recipes-entry-content .tasty-recipes-notes h3{margin-top:15px;margin-bottom:15px}.tasty-recipes-entry-content .tasty-recipes-notes h4{margin:20px 0 15px}.tasty-recipes-entry-content .tasty-recipes-notes p,.tasty-recipes-entry-content .tasty-recipes-notes ul,.tasty-recipes-entry-content .tasty-recipes-notes ol{-webkit-clip-path:none;clip-path:none}.tasty-recipes-entry-content .tasty-recipes-notes p,.tasty-recipes-entry-content .tasty-recipes-notes ul li,.tasty-recipes-entry-content .tasty-recipes-notes ol li{padding:0}.tasty-recipes-entry-content .tasty-recipes-notes ul li,.tasty-recipes-entry-content .tasty-recipes-notes ol li{padding-left:20px}.tasty-recipes-entry-content .tasty-recipes-other-details{background-color:#fff;padding:15px 25px;color:#747676;border-top:2px solid #f3f4f3;border-bottom:2px solid #f3f4f3;text-align:center;line-height:1.2}.tasty-recipes-entry-content .tasty-recipes-other-details *{color:#747676}.tasty-recipes-entry-content .tasty-recipes-other-details .detail-icon{display:none}.tasty-recipes-entry-content .tasty-recipes-other-details ul{margin:0;text-align:center;display:block}.tasty-recipes-entry-content .tasty-recipes-other-details ul li{margin:0 5px;display:inline-block;float:none;padding:0;line-height:1.6;font-size:13px}.tasty-recipes-entry-content .tasty-recipes-other-details ul li:before{display:none}.tasty-recipes-entry-content .tasty-recipes-keywords{background-color:#fff;padding:25px;display:none}.tasty-recipes-entry-content .tasty-recipes-keywords p{font-size:0.7em;font-style:italic;color:#747676;margin-bottom:0}.tasty-recipes-entry-content .tasty-recipes-keywords p span{font-weight:bold}.span_content .tasty-recipes-nutrition ul li:before{display:none}/* Print view styles */ body.tasty-recipes-print-view{font-size:15px;background-color:#fff;line-height:1.4}.tasty-recipes-print-text-size-small .tasty-recipes{font-size:12px}.tasty-recipes-print-text-size-large .tasty-recipes{font-size:16px}.tasty-recipes-entry-content .tasty-recipes-ingredients p,.tasty-recipes-entry-content .tasty-recipes-instructions p,.tasty-recipes-entry-content .tasty-recipes-ingredients ul li,.tasty-recipes-entry-content .tasty-recipes-instructions ul li,.tasty-recipes-entry-content .tasty-recipes-ingredients ol li,.tasty-recipes-entry-content .tasty-recipes-instructions ol li{font-size:1em}.tasty-recipes-print-view{background-color:#fff}.tasty-recipes-print .tasty-recipes-entry-header{background-color:#fff;margin:0}.tasty-recipes-print-view .tasty-recipes-entry-content .tasty-recipes-ingredients ul li,.tasty-recipes-print-view .tasty-recipes-entry-content .tasty-recipes-instructions ul li,.tasty-recipes-print-view .tasty-recipes-entry-content .tasty-recipes-notes ul li,.tasty-recipes-print-view .tasty-recipes-entry-content .tasty-recipes-notes ol li{list-style-type:disc;padding:0}.tasty-recipes-print-view .tasty-recipes-entry-content .tasty-recipes-ingredients ol li,.tasty-recipes-print-view .tasty-recipes-entry-content .tasty-recipes-instructions ol li{list-style-type:decimal;margin:0 0 10px 15px}.tasty-recipes-print-view .tasty-recipes-entry-content .tasty-recipes-ingredients ul li:before,.tasty-recipes-print-view .tasty-recipes-entry-content .tasty-recipes-instructions ul li:before,.tasty-recipes-print-view .tasty-recipes-entry-content .tasty-recipes-ingredients ol li:before,.tasty-recipes-print-view .tasty-recipes-entry-content .tasty-recipes-instructions ol li:before,.tasty-recipes-print-view .tasty-recipes-entry-content .tasty-recipes-notes ol li:before{display:none}.tasty-recipes-print-view .tasty-recipes-entry-content .tasty-recipes-notes{background-color:#fff;border-top:2px solid #f3f4f3}
</style>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-content/plugins/custom-table-of-contents/public/js/custom-easy-table-of-contents-public.js?ver=1.4.3" id="custom-easy-table-of-contents-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js" data-rocket-defer defer></script>
<script type="text/javascript" async="async" fetchpriority="high" data-noptimize="1" data-cfasync="false" src="https://scripts.mediavine.com/tags/carrie-on-living.js?ver=6.8.3" id="mv-script-wrapper-js"></script>
<link rel="https://api.w.org/" href="https://www.cleaneatingkitchen.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://www.cleaneatingkitchen.com/wp-json/wp/v2/posts/24730" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.cleaneatingkitchen.com/xmlrpc.php?rsd" />
<link rel='shortlink' href='https://www.cleaneatingkitchen.com/?p=24730' />
<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://www.cleaneatingkitchen.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.cleaneatingkitchen.com%2Fpaleo-easy-coconut-panna-cotta%2F" />
<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://www.cleaneatingkitchen.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.cleaneatingkitchen.com%2Fpaleo-easy-coconut-panna-cotta%2F&format=xml" />
<style>
body #ez-toc-container {
border: 1px solid #de2569;
background: #f8f8f8;
}
body #ez-toc-container p.ez-toc-title {
border-bottom: 1px solid #de2569;
color: #131313;
}
body #ez-toc-container ul {
color: #131313;
}
body div#ez-toc-container ul li a,
body div#ez-toc-container ul li a:visited,
body div#ez-toc-container ul li a:hover {
color: #131313;
}
body #ez-toc-container .toc-toggle-lt button {
background: #de2569;
color: #ffffff;
}
#ez-toc-container ul li.ez-toc-heading-level-2,
#ez-toc-container ul li.insert-heading-level-2 {
display: none;
}
#ez-toc-container ul li.ez-toc-heading-level-3,
#ez-toc-container ul li.insert-heading-level-3 {
display: none;
}
#ez-toc-container ul li.ez-toc-heading-level-4,
#ez-toc-container ul li.insert-heading-level-4 {
display: none;
}
#ez-toc-container ul li.ez-toc-heading-level-5,
#ez-toc-container ul li.insert-heading-level-5 {
display: none;
}
#ez-toc-container ul li.ez-toc-heading-level-6,
#ez-toc-container ul li.insert-heading-level-6 {
display: none;
}
#ez-toc-container ul li.ez-toc-heading-level-2:nth-child(1),
#ez-toc-container ul li.insert-heading-level-2:nth-child(1) {
display: list-item;
}
#ez-toc-container ul li.ez-toc-heading-level-3:nth-child(1),
#ez-toc-container ul li.insert-heading-level-3:nth-child(1) {
display: list-item;
}
#ez-toc-container ul li.ez-toc-heading-level-4:nth-child(1),
#ez-toc-container ul li.insert-heading-level-4:nth-child(1) {
display: list-item;
}
#ez-toc-container ul li.ez-toc-heading-level-5:nth-child(1),
#ez-toc-container ul li.insert-heading-level-5:nth-child(1) {
display: list-item;
}
#ez-toc-container ul li.ez-toc-heading-level-6:nth-child(1),
#ez-toc-container ul li.insert-heading-level-6:nth-child(1) {
display: list-item;
}
#ez-toc-container ul li.ez-toc-heading-level-2:nth-child(2),
#ez-toc-container ul li.insert-heading-level-2:nth-child(2) {
display: list-item;
}
#ez-toc-container ul li.ez-toc-heading-level-3:nth-child(2),
#ez-toc-container ul li.insert-heading-level-3:nth-child(2) {
display: list-item;
}
#ez-toc-container ul li.ez-toc-heading-level-4:nth-child(2),
#ez-toc-container ul li.insert-heading-level-4:nth-child(2) {
display: list-item;
}
#ez-toc-container ul li.ez-toc-heading-level-5:nth-child(2),
#ez-toc-container ul li.insert-heading-level-5:nth-child(2) {
display: list-item;
}
#ez-toc-container ul li.ez-toc-heading-level-6:nth-child(2),
#ez-toc-container ul li.insert-heading-level-6:nth-child(2) {
display: list-item;
}
#ez-toc-container ul li.ez-toc-heading-level-2:nth-child(3),
#ez-toc-container ul li.insert-heading-level-2:nth-child(3) {
display: list-item;
}
#ez-toc-container ul li.ez-toc-heading-level-3:nth-child(3),
#ez-toc-container ul li.insert-heading-level-3:nth-child(3) {
display: list-item;
}
#ez-toc-container ul li.ez-toc-heading-level-4:nth-child(3),
#ez-toc-container ul li.insert-heading-level-4:nth-child(3) {
display: list-item;
}
#ez-toc-container ul li.ez-toc-heading-level-5:nth-child(3),
#ez-toc-container ul li.insert-heading-level-5:nth-child(3) {
display: list-item;
}
#ez-toc-container ul li.ez-toc-heading-level-6:nth-child(3),
#ez-toc-container ul li.insert-heading-level-6:nth-child(3) {
display: list-item;
}</style> <style>
:root {
--mv-create-radius: 0;
}
</style>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-5KMLKMQWGN"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-5KMLKMQWGN', { 'anonymize_ip': true });
</script>
<script type="application/ld+json" class="ez-toc-schema-markup-output">{"@context":"https:\/\/schema.org","@graph":[{"@context":"https:\/\/schema.org","@type":"SiteNavigationElement","@id":"#ez-toc","name":"Why You Need This Recipe","url":"https:\/\/www.cleaneatingkitchen.com\/paleo-easy-coconut-panna-cotta\/#why-you-need-this-recipe"},{"@context":"https:\/\/schema.org","@type":"SiteNavigationElement","@id":"#ez-toc","name":"Key Ingredients","url":"https:\/\/www.cleaneatingkitchen.com\/paleo-easy-coconut-panna-cotta\/#key-ingredients"},{"@context":"https:\/\/schema.org","@type":"SiteNavigationElement","@id":"#ez-toc","name":"Recipe Steps","url":"https:\/\/www.cleaneatingkitchen.com\/paleo-easy-coconut-panna-cotta\/#recipe-steps"},{"@context":"https:\/\/schema.org","@type":"SiteNavigationElement","@id":"#ez-toc","name":"Recipe Tips","url":"https:\/\/www.cleaneatingkitchen.com\/paleo-easy-coconut-panna-cotta\/#recipe-tips"},{"@context":"https:\/\/schema.org","@type":"SiteNavigationElement","@id":"#ez-toc","name":"Recipe FAQs","url":"https:\/\/www.cleaneatingkitchen.com\/paleo-easy-coconut-panna-cotta\/#recipe-faqs"},{"@context":"https:\/\/schema.org","@type":"SiteNavigationElement","@id":"#ez-toc","name":"More Vegan Dessert Recipes You Might Like","url":"https:\/\/www.cleaneatingkitchen.com\/paleo-easy-coconut-panna-cotta\/#more-vegan-dessert-recipes-you-might-like"},{"@context":"https:\/\/schema.org","@type":"SiteNavigationElement","@id":"#ez-toc","name":"Don’t Miss These Strawberry Desserts","url":"https:\/\/www.cleaneatingkitchen.com\/paleo-easy-coconut-panna-cotta\/#dont-miss-these-strawberry-desserts"},{"@context":"https:\/\/schema.org","@type":"SiteNavigationElement","@id":"#ez-toc","name":"Vegan Panna Cotta with Strawberry Sauce","url":"https:\/\/www.cleaneatingkitchen.com\/paleo-easy-coconut-panna-cotta\/#vegan-panna-cotta-with-strawberry-sauce"}]}</script><meta name="hubbub-info" description="Hubbub Pro 2.26.2"> <style type="text/css" id="wp-custom-css">
/*toc*/
body #ez-toc-container .toc-toggle-lt {
width: calc(100% + 61px);
}
/* Mediavine CSS */
@media only screen and (max-width: 414px) {
.wrapper {
padding-left: 10px !important;
padding-right: 10px !important;
}
}
@media only screen and (max-width: 399px) {
.tasty-recipes {
margin-left: unset !important;
margin-right: unset !important;
}
}
@media only screen and (max-width: 359px) {
.tasty-recipes-instructions, .tasty-recipes-ingredients {
padding-left: 0px !important;
padding-right: 0px !important;
}
.tasty-recipes-entry-content {
border-left: 0px !important;
border-right: 0px !important;
}
}
/* End Mediavine CSS */
/* NP Added H1 to homepage - 1/12/2023 CTM */
.home-h1 h1,
.home-featured-block h2 {
display: none;
}
/* NP Adjusted FAQ Hover - 2/21/2024 CTM */
.schema-faq a {
background-color: #fff;
}
.schema-faq a:hover {
background-color: #de2668;
box-shadow: none;
}
/* NP fix for FAQ about page - CD 4.8.25*/
.page-id-7 .schema-faq a:hover {
background-color: #a32452;
box-shadow: none;
color: white;
}
.schema-faq .schema-faq-question {
font-size: 16px;
}
/* Hide recipe footer */
.tasty-recipes-entry-footer {
display: none !important;
} </style>
<noscript><style id="rocket-lazyload-nojs-css">.rll-youtube-player, [data-lazy-src]{display:none !important;}</style></noscript>
<!--Favicon-->
<link rel="apple-touch-icon" sizes="180x180" href="https://www.cleaneatingkitchen.com/wp-content/themes/cleaneatingkitchen2022/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.cleaneatingkitchen.com/wp-content/themes/cleaneatingkitchen2022/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.cleaneatingkitchen.com/wp-content/themes/cleaneatingkitchen2022/favicon/favicon-16x16.png">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="theme-color" content="#ffffff">
<meta name="p:domain_verify" content="2bcc92a1f8034b86a39d907907fad0bf" />
<meta name="google-site-verification" content="IyNFgIl-DHXcLS6GsSvBUif3hOWHjZQQhy2kvhZOr8k" />
<link rel="preload" as="image" href="https://www.cleaneatingkitchen.com/wp-content/themes/cleaneatingkitchen2022/mobile-header/logo-mobile.png" media="(max-width: 800px)">
<link rel="preload" as="image" href="https://www.cleaneatingkitchen.com/wp-content/themes/cleaneatingkitchen2022/images/logo@2x.png" media="(min-width: 800.1px)">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-41384213-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-41384213-1', { 'anonymize_ip': true });
</script>
<!--Mailchimp Script -->
<script type="rocketlazyloadscript" id="mcjs">!function(c,h,i,m,p){m=c.createElement(h),p=c.getElementsByTagName(h)[0],m.async=1,m.src=i,p.parentNode.insertBefore(m,p)}(document,"script","https://chimpstatic.com/mcjs-connected/js/users/7c6b9a1d7b331f85b8c69b8c2/ed7bf8b660c72633f04e766a3.js");</script>
<meta name="generator" content="WP Rocket 3.19.4" data-wpr-features="wpr_delay_js wpr_defer_js wpr_lazyload_images wpr_lazyload_iframes wpr_image_dimensions wpr_minify_css wpr_preload_links wpr_desktop" /></head>
<body class="wp-singular post-template-default single single-post postid-24730 single-format-standard wp-theme-cleaneatingkitchen2022 has-grow-sidebar">
<div data-rocket-location-hash="4b295403a7b959d00e35c7629cb85b6b" id="cmh" class="layout-middle text-dark">
<div data-rocket-location-hash="1107b315a389cf10142033d01d53b804" id="cmtb" style="background-color: rgba(255,2552,255, 0.95);">
<div data-rocket-location-hash="909be4e00bb622a79d6ad90bfc7669ca" id="cmfw">
<form role="search" method="get" class="search-form" action="https://www.cleaneatingkitchen.com/">
<div class="spacer"></div>
<input type="search" class="search-field"
placeholder="Search"
value="" name="s"
aria-label="Search" />
<button type="submit" class="btn btn-success search-submit">
<i class="far fa-search"><span class="screen-reader-text">Submit</span></i>
</button>
</form> </div>
<a href="https://www.cleaneatingkitchen.com/" id="custom-mobile-logo-link">
<img width="332" height="80" src="https://www.cleaneatingkitchen.com/wp-content/themes/cleaneatingkitchen2022/mobile-header/logo-mobile.png" alt="Clean Eating Kitchen" />
</a>
<div data-rocket-location-hash="73972d5f686fd8dffcb2a4e467d00512" id="cmhb">
<div id="mt">
<span></span>
</div>
</div>
<div data-rocket-location-hash="9f44cd111dafb1b89ee87de1adf8796d" id="cms">
<i class="far fa-search"></i>
<i class="far fa-times"></i>
</div>
</div>
<div data-rocket-location-hash="ae557f054da39cbc05bb2ba14956fd86" id="cmmc" style="background-color: rgba(255,2552,255, 0.95);">
<ul id="custom-mobile-menu" class="custom-mobile-menu"><li id="menu-item-18418" class="bold menu-item menu-item-type-post_type menu-item-object-page menu-item-18418"><a href="https://www.cleaneatingkitchen.com/start-here/">Start Here</a></li>
<li id="menu-item-11081" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-11081"><a href="https://www.cleaneatingkitchen.com/about/">About</a>
<ul class="sub-menu">
<li id="menu-item-11083" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-11083"><a href="https://www.cleaneatingkitchen.com/about/">About Carrie</a></li>
<li id="menu-item-21391" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-21391"><a href="https://www.cleaneatingkitchen.com/about/what-is-clean-eating/">What is Clean Eating?</a></li>
<li id="menu-item-93156" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-93156"><a href="https://www.cleaneatingkitchen.com/about/faq/">Clean Eating FAQs</a></li>
<li id="menu-item-11101" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-11101"><a href="https://www.cleaneatingkitchen.com/contact/">Contact</a></li>
</ul>
</li>
<li id="menu-item-28723" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-28723"><a href="https://www.cleaneatingkitchen.com/recipes/">Recipes</a></li>
<li id="menu-item-89330" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-89330"><a href="https://www.cleaneatingkitchen.com/category/clean-eating-basics/">Clean Eating Basics</a></li>
<li id="menu-item-86726" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-86726"><a>Support</a>
<ul class="sub-menu">
<li id="menu-item-77287" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-77287"><a href="https://www.cleaneatingkitchen.com/jumpstart/">Sugar-Free Challenge</a></li>
<li id="menu-item-77286" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-77286"><a href="https://www.cleaneatingkitchen.com/clean-eating-jumpstart/">Clean Eating Mini-Course</a></li>
<li id="menu-item-86727" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-86727"><a target="_blank" href="https://www.amazon.com/shop/cleaneatingcarrie">Amazon Storefront</a></li>
</ul>
</li>
<li id="menu-item-95868" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-95868"><a href="https://www.cleaneatingkitchen.com/category/holiday-recipes/halloween-recipes/">Halloween Recipes</a></li>
</ul>
<div data-rocket-location-hash="3d70da90d6f7ca4db81154b7085a77e5" id="cmwa">
<div id="custom_html-7" class="widget_text widget-odd widget-last widget-first widget-1 social widget_custom_html"><div class="textwidget custom-html-widget"><a href="http://feeds.feedburner.com/carrieonvegan" title="RSS Feed" target="_blank" aria-label="RSS Feed">
<i class="fa fa-rss"></i>
</a>
<a href="https://www.facebook.com/Cleaneatingcarrie/" title="Facebook" target="_blank" aria-label="Facebook Profile Page">
<i class="fab fa-facebook-f"></i>
</a>
<a href="https://www.instagram.com/cleaneatingcarrie" title="Instagram" target="_blank" aria-label="Instagram Profile Page">
<i class="fab fa-instagram"></i>
</a>
<a href="https://www.pinterest.com/cleaneatingkitchen" title="Pinterest" target="_blank" aria-label="Pinterest Profile Page">
<i class="fab fa-pinterest-p"></i>
</a>
<a href="https://www.youtube.com/cleaneatingkitchen" title="YouTube" target="_blank" aria-label="YouTube Profile Page">
<i class="fab fa-youtube"></i>
</a></div></div> </div>
</div>
</div>
<div data-rocket-location-hash="b1b2090bc730638295ea69e460ad99a3" id="skip"><a href="#content">Skip to Main Content</a></div>
<div id="page_wrap" class="container row">
<div class="top-bar">
<div class="wrap">
<nav id="main" class="main-nav">
<ul id="mainmenu" class="mainmenu">
<li class="bold menu-item menu-item-type-post_type menu-item-object-page menu-item-18418"><a href="https://www.cleaneatingkitchen.com/start-here/">Start Here</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-11081"><a href="https://www.cleaneatingkitchen.com/about/">About</a>
<ul class="sub-menu">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-11083"><a href="https://www.cleaneatingkitchen.com/about/">About Carrie</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-21391"><a href="https://www.cleaneatingkitchen.com/about/what-is-clean-eating/">What is Clean Eating?</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-93156"><a href="https://www.cleaneatingkitchen.com/about/faq/">Clean Eating FAQs</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-11101"><a href="https://www.cleaneatingkitchen.com/contact/">Contact</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-28723"><a href="https://www.cleaneatingkitchen.com/recipes/">Recipes</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-89330"><a href="https://www.cleaneatingkitchen.com/category/clean-eating-basics/">Clean Eating Basics</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-86726"><a>Support</a>
<ul class="sub-menu">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-77287"><a href="https://www.cleaneatingkitchen.com/jumpstart/">Sugar-Free Challenge</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-77286"><a href="https://www.cleaneatingkitchen.com/clean-eating-jumpstart/">Clean Eating Mini-Course</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-86727"><a target="_blank" href="https://www.amazon.com/shop/cleaneatingcarrie">Amazon Storefront</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-95868"><a href="https://www.cleaneatingkitchen.com/category/holiday-recipes/halloween-recipes/">Halloween Recipes</a></li>
</ul>
</nav>
</div>
</div>
<div class="header">
<div class="wrap">
<div class="social">
<a href="http://feeds.feedburner.com/carrieonvegan" title="RSS Feed" target="_blank" aria-label="RSS Feed">
<i class="fa fa-rss"></i>
</a>
<a href="https://www.facebook.com/Cleaneatingcarrie/" title="Facebook" target="_blank" aria-label="Facebook Profile Page">
<i class="fab fa-facebook-f"></i>
</a>
<a href="https://www.instagram.com/cleaneatingcarrie" title="Instagram" target="_blank" aria-label="Instagram Profile Page">
<i class="fab fa-instagram"></i>
</a>
<a href="https://www.pinterest.com/cleaneatingkitchen" title="Pinterest" target="_blank" aria-label="Pinterest Profile Page">
<i class="fab fa-pinterest-p"></i>
</a>
<a href="https://www.youtube.com/cleaneatingkitchen" title="YouTube" target="_blank" aria-label="YouTube Profile Page">
<i class="fab fa-youtube"></i>
</a>
<a href="https://www.tiktok.com/@cleaneatingcarrie" title="TikTok" target="_blank" aria-label="TikTok Profile Page">
<i class="fab fa-tiktok"></i>
</a>
</div>
<div class="logo">
<a href="https://www.cleaneatingkitchen.com/" title="Clean Eating Kitchen" rel="home">
<img src="https://www.cleaneatingkitchen.com/wp-content/themes/cleaneatingkitchen2022/images/logo@2x.png"
srcset="https://www.cleaneatingkitchen.com/wp-content/themes/cleaneatingkitchen2022/images/logo.png 1x,
https://www.cleaneatingkitchen.com/wp-content/themes/cleaneatingkitchen2022/images/logo@2x.png 2x"
alt="Clean Eating Kitchen Logo"
width="332" height="80" data-pin-nopin="true" />
</a>
</div>
<div class="header-search">
<form role="search" method="get" class="search-form" action="https://www.cleaneatingkitchen.com/">
<div class="spacer"></div>
<input type="search" class="search-field"
placeholder="Search"
value="" name="s"
aria-label="Search" />
<button type="submit" class="btn btn-success search-submit">
<i class="far fa-search"><span class="screen-reader-text">Submit</span></i>
</button>
</form> </div>
<div class="clear"></div>
</div>
</div> <!--end .header-->
<div class="wrapper">
<div id="content" class="span_content">
<article class="post single-post-content">
<div class="breadcrumb"><div class="wrap"><span><span><a href="https://www.cleaneatingkitchen.com/">Home</a></span> » <span><a href="https://www.cleaneatingkitchen.com/recipes/">Recipe Index</a></span> » <span><a href="https://www.cleaneatingkitchen.com/category/recipe-dessert/">Desserts</a></span> » <span class="breadcrumb_last" aria-current="page">Vegan Panna Cotta with Strawberry Sauce</span></span></div></div>
<h1 class="post-title">Vegan Panna Cotta with Strawberry Sauce</h1>
<div class="post-meta">
<em>by</em> <a href="/about/">Carrie Forrest, MBA, MPH, CHN</a>
<em>on</em>
<!-- show new and old dates -->
Jun 7, 2023 </div>
<div class="share">
<div class="tasty-recipes-quick-links"><a href="#tasty-recipes-58006" class="tasty-recipes-jump-link">Jump To Recipe</a> </div> <div class="tasty-rating"><a href="#respond" class="respond"><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="1"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full" /></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="2"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full" /></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="3"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full" /></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="4"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full" /></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="5"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full" /></svg></span> <span class="rating-label"><em><span class="count">7</span> reviews</em></span></a></div> </div>
<div class="disclosure disclosure-top">This post may contain affiliate links which won’t change your price but will share some commission.</div>
<div class="post-content">
<div class="dpsp-post-pinterest-image-hidden" style="display: none;"><img width="250" height="250" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20250%20250'%3E%3C/svg%3E" data-pin-media="https://www.cleaneatingkitchen.com/wp-content/uploads/2018/07/vegan-panna-cotta-pin.jpg" data-pin-title="Vegan Panna Cotta with Strawberry Sauce" data-pin-description="For a creamy and decadent dessert that is completely plant-based, try this Vegan Panna Cotta recipe served with Strawberry Sauce. This coconut-based dessert is reminiscent of the authentic Italian version made with cream." class="dpsp-post-pinterest-image-hidden-inner dpsp-post-pinterest-image-hidden-single" data-lazy-src="https://www.cleaneatingkitchen.com/wp-content/uploads/2018/07/vegan-panna-cotta-pin-250x250.jpg" /><noscript><img width="250" height="250" src="https://www.cleaneatingkitchen.com/wp-content/uploads/2018/07/vegan-panna-cotta-pin-250x250.jpg" data-pin-media="https://www.cleaneatingkitchen.com/wp-content/uploads/2018/07/vegan-panna-cotta-pin.jpg" data-pin-title="Vegan Panna Cotta with Strawberry Sauce" data-pin-description="For a creamy and decadent dessert that is completely plant-based, try this Vegan Panna Cotta recipe served with Strawberry Sauce. This coconut-based dessert is reminiscent of the authentic Italian version made with cream." class="dpsp-post-pinterest-image-hidden-inner dpsp-post-pinterest-image-hidden-single" loading="lazy" /></noscript></div><span id="dpsp-post-content-markup" data-image-pin-it="true"></span>
<p>For a creamy and decadent dessert that is completely plant-based, try this <strong>Vegan Panna Cotta recipe</strong> served with Strawberry Sauce. This coconut-based creamy dessert is reminiscent of the authentic Italian version made with heavy cream.</p>
<figure class="wp-block-image size-full"><img decoding="async" width="1366" height="2048" data-pin-nopin="true" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201366%202048'%3E%3C/svg%3E" alt="vegan panna cotta with strawberry sauce" class="wp-image-57988" data-lazy-srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero-2-scaled.jpg 1366w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero-2-300x450.jpg 300w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero-2-700x1050.jpg 700w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero-2-768x1151.jpg 768w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero-2-1024x1536.jpg 1024w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero-2-150x225.jpg 150w" data-lazy-sizes="(max-width: 1366px) 100vw, 1366px" data-lazy-src="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero-2-scaled.jpg" /><noscript><img decoding="async" width="1366" height="2048" data-pin-nopin="true" src="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero-2-scaled.jpg" alt="vegan panna cotta with strawberry sauce" class="wp-image-57988" srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero-2-scaled.jpg 1366w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero-2-300x450.jpg 300w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero-2-700x1050.jpg 700w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero-2-768x1151.jpg 768w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero-2-1024x1536.jpg 1024w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero-2-150x225.jpg 150w" sizes="(max-width: 1366px) 100vw, 1366px" /></noscript></figure>
<div class="wp-block-group"><div class="wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained">
<p>Traditional panna cotta or “cooked cream” is made with sweetened dairy cream that’s set with gelatin and then chilled. It’s often paired with sweet, ripe fruit like mango or a sweet sauce. </p>
<p>It’s delightfully simple to make but looks upscale and fancy. Vegan panna cotta is just as luscious and creamy as the dairy-full version. The cream is replaced with full-fat coconut milk and is set with agar agar powder, a vegan alternative to gelatin. </p>
<p>My favorite way to serve coconut milk panna cotta is with homemade strawberry sauce. Not only does it look beautiful, but it’s sweet and tasty too! This vegan panna cotta recipe is dairy-free, gluten-free, vegan, and entirely plant-based.</p>
</div></div>
<div id="ez-toc-container" class="ez-toc-v2_0_76 counter-hierarchy ez-toc-counter ez-toc-grey ez-toc-container-direction">
<div class="ez-toc-title-container"><span class="ez-toc-title" style="cursor:inherit">Table of Contents</span>
</div><nav><ul class='ez-toc-list ez-toc-list-level-1 ' ><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class="ez-toc-link ez-toc-heading-1" href="#why_you_need_this_recipe">Why You Need This Recipe</a></li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class="ez-toc-link ez-toc-heading-2" href="#key_ingredients">Key Ingredients</a></li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class="ez-toc-link ez-toc-heading-3" href="#recipe_steps">Recipe Steps</a></li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class="ez-toc-link ez-toc-heading-4" href="#recipe_tips">Recipe Tips</a></li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class="ez-toc-link ez-toc-heading-5" href="#recipe_faqs">Recipe FAQs</a></li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class="ez-toc-link ez-toc-heading-6" href="#more_vegan_dessert_recipes_you_might_like">More Vegan Dessert Recipes You Might Like</a></li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class="ez-toc-link ez-toc-heading-7" href="#dont_miss_these_strawberry_desserts">Don’t Miss These Strawberry Desserts</a></li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class="ez-toc-link ez-toc-heading-8" href="#vegan_panna_cotta_with_strawberry_sauce">Recipe: Vegan Panna Cotta with Strawberry Sauce</a></li></ul></nav><div class="toc-toggle-lt" onclick = "toggleViewMoreTOCLt(this)" aria-label="Expand table of contents"><button><span class="view-more">View more</span><span class="view-less" style="display:none">View less</span></button></div></div>
<h2 class="wp-block-heading" id="h-why-you-need-this-recipe"><span class="ez-toc-section" id="why_you_need_this_recipe"></span>Why You Need This Recipe<span class="ez-toc-section-end"></span></h2>
<ul class="wp-block-list">
<li>Full-fat coconut milk or coconut cream gives it a creamy texture without any dairy. </li>
<li>Perfect for entertaining, impress guests with this beautiful vegan coconut panna cotta. </li>
<li>It’s an easy, no-bake dessert that takes less than 10 minutes to prep. </li>
</ul>
<h2 class="wp-block-heading" id="h-key-ingredients"><span class="ez-toc-section" id="key_ingredients"></span>Key Ingredients<span class="ez-toc-section-end"></span></h2>
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="1800" data-pin-nopin="true" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%201800'%3E%3C/svg%3E" alt="ingredients for vegan panna cotta" class="wp-image-57990" data-lazy-srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-ingredients.jpg 1200w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-ingredients-300x450.jpg 300w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-ingredients-700x1050.jpg 700w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-ingredients-768x1152.jpg 768w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-ingredients-1024x1536.jpg 1024w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-ingredients-150x225.jpg 150w" data-lazy-sizes="(max-width: 1200px) 100vw, 1200px" data-lazy-src="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-ingredients.jpg" /><noscript><img decoding="async" width="1200" height="1800" data-pin-nopin="true" src="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-ingredients.jpg" alt="ingredients for vegan panna cotta" class="wp-image-57990" srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-ingredients.jpg 1200w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-ingredients-300x450.jpg 300w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-ingredients-700x1050.jpg 700w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-ingredients-768x1152.jpg 768w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-ingredients-1024x1536.jpg 1024w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-ingredients-150x225.jpg 150w" sizes="(max-width: 1200px) 100vw, 1200px" /></noscript></figure>
<ul class="wp-block-list">
<li><strong>Full-fat coconut milk</strong> – Use full-fat coconut milk from the can, not the kind from the carton. This is what gives the panna cotta its luscious texture and replaces cream or whole milk as part of the main ingredients.</li>
<li><strong>Sugar</strong> – Sugar sweetens both the custard and the sauce. You can use light agave or maple syrup if you prefer a natural sweetener. </li>
<li><strong>Agar agar powder</strong> – Agar agar powder is a thickener derived from algae that makes a great vegan substitute for gelatin. I used this product in my recipe for <a href="https://www.cleaneatingkitchen.com/vegan-gummies-with-hemp-oil/" data-wpel-link="internal">Vegan Gummies</a>. If you don’t have it, see my article on <a href="https://www.cleaneatingkitchen.com/substitutes-for-agar-agar/" data-wpel-link="internal">agar agar substitutes</a>.</li>
<li><strong>Vanilla </strong>– Vanilla adds a wonderful flavor to the panna cotta. You can also use vanilla bean powder instead. </li>
<li><strong>Strawberries</strong> – Fresh or frozen strawberries both work, but frozen are more affordable and last longer. You can use raspberries in their place if you prefer. </li>
<li><strong>Lemon juice</strong> – Lemon makes the bright flavors of the fruit pop! I always add lemon juice to fruit sauces and purees. </li>
</ul>
<p>Please <strong>see the recipe card at the end of this post </strong>for the exact ingredients and measurements. </p>
<h2 class="wp-block-heading" id="h-recipe-steps"><span class="ez-toc-section" id="recipe_steps"></span>Recipe Steps<span class="ez-toc-section-end"></span></h2>
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="2000" data-pin-nopin="true" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%202000'%3E%3C/svg%3E" alt="how to make coconut milk panna cotta" class="wp-image-57996" data-lazy-srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-process.jpg 1200w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-process-300x500.jpg 300w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-process-700x1167.jpg 700w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-process-768x1280.jpg 768w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-process-922x1536.jpg 922w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-process-150x250.jpg 150w" data-lazy-sizes="(max-width: 1200px) 100vw, 1200px" data-lazy-src="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-process.jpg" /><noscript><img decoding="async" width="1200" height="2000" data-pin-nopin="true" src="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-process.jpg" alt="how to make coconut milk panna cotta" class="wp-image-57996" srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-process.jpg 1200w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-process-300x500.jpg 300w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-process-700x1167.jpg 700w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-process-768x1280.jpg 768w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-process-922x1536.jpg 922w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-process-150x250.jpg 150w" sizes="(max-width: 1200px) 100vw, 1200px" /></noscript></figure>
<div class="wp-block-group"><div class="wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained">
<h3 class="wp-block-heading" id="h-step-one">Step One</h3>
<p>In a medium saucepan over medium heat, combine the coconut milk, 1/4 cup of sugar, agar agar powder, and vanilla. Whisk together well. </p>
<p>Please <strong>see the recipe card at the end of this post </strong>for the exact ingredients and measurements. </p>
<h3 class="wp-block-heading" id="h-step-two">Step Two</h3>
<p>Bring the mixture to a boil then reduce the heat to low, and let it simmer for 3 minutes. This activates the agar agar powder.</p>
<h3 class="wp-block-heading" id="h-step-three">Step Three</h3>
<p>Remove the saucepan from the heat and carefully pour the mixture evenly into four ramekins. Place the ramekins into the refrigerator for at least 2 hours to set.</p>
<h3 class="wp-block-heading" id="h-step-four">Step Four</h3>
<p>When you’re ready to serve the panna cotta, make the strawberry sauce. In a small saucepan, combine the frozen strawberries, water, 1 tablespoon of sugar, and lemon juice. </p>
<p>While the mixture comes to a simmer, use the back of a serving spoon to smash the strawberries. Once the strawberries are soft after a couple of minutes, remove the saucepan from the heat. </p>
</div></div>
<figure class="wp-block-image size-full"><img decoding="async" width="1366" height="2048" data-pin-nopin="true" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201366%202048'%3E%3C/svg%3E" alt="strawberry sauce in a pot" class="wp-image-59629" data-lazy-srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/12/making-strawberry-sauce-scaled.jpg 1366w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/12/making-strawberry-sauce-300x450.jpg 300w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/12/making-strawberry-sauce-700x1050.jpg 700w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/12/making-strawberry-sauce-768x1151.jpg 768w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/12/making-strawberry-sauce-1024x1536.jpg 1024w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/12/making-strawberry-sauce-150x225.jpg 150w" data-lazy-sizes="(max-width: 1366px) 100vw, 1366px" data-lazy-src="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/12/making-strawberry-sauce-scaled.jpg" /><noscript><img decoding="async" width="1366" height="2048" data-pin-nopin="true" src="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/12/making-strawberry-sauce-scaled.jpg" alt="strawberry sauce in a pot" class="wp-image-59629" srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/12/making-strawberry-sauce-scaled.jpg 1366w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/12/making-strawberry-sauce-300x450.jpg 300w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/12/making-strawberry-sauce-700x1050.jpg 700w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/12/making-strawberry-sauce-768x1151.jpg 768w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/12/making-strawberry-sauce-1024x1536.jpg 1024w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/12/making-strawberry-sauce-150x225.jpg 150w" sizes="(max-width: 1366px) 100vw, 1366px" /></noscript></figure>
<div class="wp-block-group"><div class="wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained">
<p>Serve the panna cotta topped with fresh strawberry sauce. Enjoy after it has set. </p>
<p>I hope you agree that this is one of your new favorite vegan desserts. It is a great make-ahead dessert for dinner parties or other special events. </p>
</div></div>
<figure class="wp-block-image size-full"><img decoding="async" width="1365" height="2048" data-pin-nopin="true" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201365%202048'%3E%3C/svg%3E" alt="photo of panna cotta with a bite taken out of it" class="wp-image-59628" data-lazy-srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/12/panna-cotta-texture-scaled.jpg 1365w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/12/panna-cotta-texture-300x450.jpg 300w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/12/panna-cotta-texture-700x1050.jpg 700w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/12/panna-cotta-texture-768x1152.jpg 768w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/12/panna-cotta-texture-1024x1536.jpg 1024w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/12/panna-cotta-texture-150x225.jpg 150w" data-lazy-sizes="(max-width: 1365px) 100vw, 1365px" data-lazy-src="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/12/panna-cotta-texture-scaled.jpg" /><noscript><img decoding="async" width="1365" height="2048" data-pin-nopin="true" src="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/12/panna-cotta-texture-scaled.jpg" alt="photo of panna cotta with a bite taken out of it" class="wp-image-59628" srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/12/panna-cotta-texture-scaled.jpg 1365w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/12/panna-cotta-texture-300x450.jpg 300w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/12/panna-cotta-texture-700x1050.jpg 700w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/12/panna-cotta-texture-768x1152.jpg 768w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/12/panna-cotta-texture-1024x1536.jpg 1024w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/12/panna-cotta-texture-150x225.jpg 150w" sizes="(max-width: 1365px) 100vw, 1365px" /></noscript></figure>
<h2 class="wp-block-heading" id="h-recipe-tips"><span class="ez-toc-section" id="recipe_tips"></span>Recipe Tips<span class="ez-toc-section-end"></span></h2>
<ul class="wp-block-list">
<li>Be sure to use <a href="https://amzn.to/3kmc1yX" target="_blank" rel="noopener nofollow external" data-wpel-link="external">agar agar powder</a>, not agar flakes.</li>
<li>You can use coconut sugar instead of white cane sugar, but it will turn your panna cotta a light tan color as opposed to white. Maple syrup or agave nectar work too. </li>
<li>The total cook time includes a couple of hours of set time in the refrigerator.</li>
<li>You can substitute the strawberries with frozen raspberries, if you prefer.</li>
</ul>
<h2 class="wp-block-heading" id="h-recipe-faqs"><span class="ez-toc-section" id="recipe_faqs"></span>Recipe FAQs<span class="ez-toc-section-end"></span></h2>
<div class="schema-faq wp-block-yoast-faq-block"><div class="schema-faq-section" id="faq-question-1638244328651"><strong class="schema-faq-question">How should I store panna cotta? </strong> <p class="schema-faq-answer">Always store panna cotta in the refrigerator. For best results, eat the panna cotta within 2 days of making it. It’s also best to top with strawberry sauce right before serving. </p> </div> <div class="schema-faq-section" id="faq-question-1638654948859"><strong class="schema-faq-question">What is agar agar powder?</strong> <p class="schema-faq-answer">Agar is a product derived from red algae. Similar to gelatin, it helps to set and thicken custards, but without any animal products.</p> </div> <div class="schema-faq-section" id="faq-question-1686170730206"><strong class="schema-faq-question">Can I use soy milk instead of coconut milk?</strong> <p class="schema-faq-answer">I have not tested this recipe using any other plant-based milk or nut milks other than full fat coconut milk. You will not get as rich of a dessert or a creamy panna cotta using soy milk or almond milk.</p> </div> </div>
<figure class="wp-block-image size-full"><img decoding="async" width="1365" height="2048" data-pin-nopin="true" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201365%202048'%3E%3C/svg%3E" alt="a spoonful of vegan panna cotta" class="wp-image-57999" data-lazy-srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-serving-scaled.jpg 1365w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-serving-300x450.jpg 300w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-serving-700x1050.jpg 700w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-serving-768x1152.jpg 768w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-serving-1024x1536.jpg 1024w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-serving-150x225.jpg 150w" data-lazy-sizes="(max-width: 1365px) 100vw, 1365px" data-lazy-src="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-serving-scaled.jpg" /><noscript><img decoding="async" width="1365" height="2048" data-pin-nopin="true" src="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-serving-scaled.jpg" alt="a spoonful of vegan panna cotta" class="wp-image-57999" srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-serving-scaled.jpg 1365w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-serving-300x450.jpg 300w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-serving-700x1050.jpg 700w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-serving-768x1152.jpg 768w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-serving-1024x1536.jpg 1024w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-serving-150x225.jpg 150w" sizes="(max-width: 1365px) 100vw, 1365px" /></noscript></figure>
<h2 class="wp-block-heading" id="h-more-vegan-dessert-recipes-you-might-like"><span class="ez-toc-section" id="more_vegan_dessert_recipes_you_might_like"></span>More Vegan Dessert Recipes You Might Like<span class="ez-toc-section-end"></span></h2>
<ul class="wp-block-list">
<li><a href="https://www.cleaneatingkitchen.com/vegan-mug-cake/" data-wpel-link="internal">Vegan Vanilla Cake in a Mug</a></li>
<li><a href="https://www.cleaneatingkitchen.com/coco-chop-fruit-salad/" data-wpel-link="internal">Healthy Ambrosia Salad</a></li>
<li><a href="https://www.cleaneatingkitchen.com/best-vegan-creamers/" data-wpel-link="internal"></a><a href="https://www.cleaneatingkitchen.com/homemade-chocolate-raspberry-hearts/" data-wpel-link="internal">Dark Chocolate Raspberry Hearts</a></li>
<li><a href="https://www.cleaneatingkitchen.com/black-bean-brownies/" data-wpel-link="internal">Vegan Black Bean Brownies</a></li>
<li><a href="https://www.cleaneatingkitchen.com/peanut-butter-protein-bites/" data-wpel-link="internal">Double Chocolate Almond Butter Energy Balls</a></li>
<li><a href="https://www.cleaneatingkitchen.com/homemade-peppermint-patties/" data-wpel-link="internal">Peppermint Patties</a></li>
</ul>
<div class="featured-posts-block has-white-background-color has-background">
<h2 class="block-title"><span class="ez-toc-section" id="dont_miss_these_strawberry_desserts"></span>Don’t Miss These Strawberry Desserts<span class="ez-toc-section-end"></span></h2>
<div class="items items-4-col">
<div class="item">
<a href="https://www.cleaneatingkitchen.com/vegan-strawberry-cheesecake-smoothie/" data-wpel-link="internal">
<img decoding="async" width="250" height="250" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20250%20250'%3E%3C/svg%3E" class="attachment-thumbnail size-thumbnail wp-post-image" alt="" data-pin-nopin="true" data-lazy-srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/Strawberry-Cheesecake-Smoothie-hero-250x250.jpg 250w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/Strawberry-Cheesecake-Smoothie-hero-500x500.jpg 500w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/Strawberry-Cheesecake-Smoothie-hero-322x322.jpg 322w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/Strawberry-Cheesecake-Smoothie-hero-644x644.jpg 644w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/Strawberry-Cheesecake-Smoothie-hero-150x150.jpg 150w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/Strawberry-Cheesecake-Smoothie-hero-96x96.jpg 96w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/Strawberry-Cheesecake-Smoothie-hero-225x225.jpg 225w" data-lazy-sizes="(max-width: 250px) 100vw, 250px" data-lazy-src="https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/Strawberry-Cheesecake-Smoothie-hero-250x250.jpg" /><noscript><img decoding="async" width="250" height="250" src="https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/Strawberry-Cheesecake-Smoothie-hero-250x250.jpg" class="attachment-thumbnail size-thumbnail wp-post-image" alt="" data-pin-nopin="true" srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/Strawberry-Cheesecake-Smoothie-hero-250x250.jpg 250w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/Strawberry-Cheesecake-Smoothie-hero-500x500.jpg 500w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/Strawberry-Cheesecake-Smoothie-hero-322x322.jpg 322w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/Strawberry-Cheesecake-Smoothie-hero-644x644.jpg 644w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/Strawberry-Cheesecake-Smoothie-hero-150x150.jpg 150w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/Strawberry-Cheesecake-Smoothie-hero-96x96.jpg 96w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/Strawberry-Cheesecake-Smoothie-hero-225x225.jpg 225w" sizes="(max-width: 250px) 100vw, 250px" /></noscript>
<h3 class="title">Vegan Strawberry Cheesecake Smoothie (6 Ingredients)</h3>
</a>
</div>
<div class="item">
<a href="https://www.cleaneatingkitchen.com/strawberry-vanilla-bean-nice-cream/" data-wpel-link="internal">
<img decoding="async" width="250" height="250" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20250%20250'%3E%3C/svg%3E" class="attachment-thumbnail size-thumbnail wp-post-image" alt="" data-pin-nopin="true" data-lazy-srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2018/06/vegan-strawberry-nice-cream-6-250x250.jpg 250w, https://www.cleaneatingkitchen.com/wp-content/uploads/2018/06/vegan-strawberry-nice-cream-6-500x500.jpg 500w, https://www.cleaneatingkitchen.com/wp-content/uploads/2018/06/vegan-strawberry-nice-cream-6-322x322.jpg 322w, https://www.cleaneatingkitchen.com/wp-content/uploads/2018/06/vegan-strawberry-nice-cream-6-644x644.jpg 644w, https://www.cleaneatingkitchen.com/wp-content/uploads/2018/06/vegan-strawberry-nice-cream-6-150x150.jpg 150w, https://www.cleaneatingkitchen.com/wp-content/uploads/2018/06/vegan-strawberry-nice-cream-6-225x225.jpg 225w" data-lazy-sizes="(max-width: 250px) 100vw, 250px" data-lazy-src="https://www.cleaneatingkitchen.com/wp-content/uploads/2018/06/vegan-strawberry-nice-cream-6-250x250.jpg" /><noscript><img decoding="async" width="250" height="250" src="https://www.cleaneatingkitchen.com/wp-content/uploads/2018/06/vegan-strawberry-nice-cream-6-250x250.jpg" class="attachment-thumbnail size-thumbnail wp-post-image" alt="" data-pin-nopin="true" srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2018/06/vegan-strawberry-nice-cream-6-250x250.jpg 250w, https://www.cleaneatingkitchen.com/wp-content/uploads/2018/06/vegan-strawberry-nice-cream-6-500x500.jpg 500w, https://www.cleaneatingkitchen.com/wp-content/uploads/2018/06/vegan-strawberry-nice-cream-6-322x322.jpg 322w, https://www.cleaneatingkitchen.com/wp-content/uploads/2018/06/vegan-strawberry-nice-cream-6-644x644.jpg 644w, https://www.cleaneatingkitchen.com/wp-content/uploads/2018/06/vegan-strawberry-nice-cream-6-150x150.jpg 150w, https://www.cleaneatingkitchen.com/wp-content/uploads/2018/06/vegan-strawberry-nice-cream-6-225x225.jpg 225w" sizes="(max-width: 250px) 100vw, 250px" /></noscript>
<h3 class="title">Vegan Strawberry Ice Cream</h3>
</a>
</div>
<div class="item">
<a href="https://www.cleaneatingkitchen.com/peanut-butter-banana-smoothie/" data-wpel-link="internal">
<img decoding="async" width="250" height="250" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20250%20250'%3E%3C/svg%3E" class="attachment-thumbnail size-thumbnail wp-post-image" alt="" data-pin-nopin="true" data-lazy-srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2022/05/Strawberry-Banana-Peanut-Butter-Smoothie-hero-250x250.jpg 250w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/05/Strawberry-Banana-Peanut-Butter-Smoothie-hero-500x500.jpg 500w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/05/Strawberry-Banana-Peanut-Butter-Smoothie-hero-322x322.jpg 322w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/05/Strawberry-Banana-Peanut-Butter-Smoothie-hero-644x644.jpg 644w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/05/Strawberry-Banana-Peanut-Butter-Smoothie-hero-150x150.jpg 150w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/05/Strawberry-Banana-Peanut-Butter-Smoothie-hero-96x96.jpg 96w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/05/Strawberry-Banana-Peanut-Butter-Smoothie-hero-225x225.jpg 225w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/05/Strawberry-Banana-Peanut-Butter-Smoothie-hero-200x200.jpg 200w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/05/Strawberry-Banana-Peanut-Butter-Smoothie-hero-320x320.jpg 320w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/05/Strawberry-Banana-Peanut-Butter-Smoothie-hero-480x480.jpg 480w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/05/Strawberry-Banana-Peanut-Butter-Smoothie-hero-720x720.jpg 720w" data-lazy-sizes="(max-width: 250px) 100vw, 250px" data-lazy-src="https://www.cleaneatingkitchen.com/wp-content/uploads/2022/05/Strawberry-Banana-Peanut-Butter-Smoothie-hero-250x250.jpg" /><noscript><img decoding="async" width="250" height="250" src="https://www.cleaneatingkitchen.com/wp-content/uploads/2022/05/Strawberry-Banana-Peanut-Butter-Smoothie-hero-250x250.jpg" class="attachment-thumbnail size-thumbnail wp-post-image" alt="" data-pin-nopin="true" srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2022/05/Strawberry-Banana-Peanut-Butter-Smoothie-hero-250x250.jpg 250w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/05/Strawberry-Banana-Peanut-Butter-Smoothie-hero-500x500.jpg 500w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/05/Strawberry-Banana-Peanut-Butter-Smoothie-hero-322x322.jpg 322w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/05/Strawberry-Banana-Peanut-Butter-Smoothie-hero-644x644.jpg 644w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/05/Strawberry-Banana-Peanut-Butter-Smoothie-hero-150x150.jpg 150w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/05/Strawberry-Banana-Peanut-Butter-Smoothie-hero-96x96.jpg 96w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/05/Strawberry-Banana-Peanut-Butter-Smoothie-hero-225x225.jpg 225w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/05/Strawberry-Banana-Peanut-Butter-Smoothie-hero-200x200.jpg 200w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/05/Strawberry-Banana-Peanut-Butter-Smoothie-hero-320x320.jpg 320w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/05/Strawberry-Banana-Peanut-Butter-Smoothie-hero-480x480.jpg 480w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/05/Strawberry-Banana-Peanut-Butter-Smoothie-hero-720x720.jpg 720w" sizes="(max-width: 250px) 100vw, 250px" /></noscript>
<h3 class="title">Strawberry Banana Peanut Butter Smoothie</h3>
</a>
</div>
<div class="item">
<a href="https://www.cleaneatingkitchen.com/strawberry-zucchini-smoothie/" data-wpel-link="internal">
<img decoding="async" width="250" height="250" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20250%20250'%3E%3C/svg%3E" class="attachment-thumbnail size-thumbnail wp-post-image" alt="" data-pin-nopin="true" data-lazy-srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2022/06/Zucchini-Strawberry-Smoothie-hero-250x250.jpg 250w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/06/Zucchini-Strawberry-Smoothie-hero-500x500.jpg 500w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/06/Zucchini-Strawberry-Smoothie-hero-322x322.jpg 322w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/06/Zucchini-Strawberry-Smoothie-hero-644x644.jpg 644w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/06/Zucchini-Strawberry-Smoothie-hero-150x150.jpg 150w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/06/Zucchini-Strawberry-Smoothie-hero-96x96.jpg 96w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/06/Zucchini-Strawberry-Smoothie-hero-225x225.jpg 225w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/06/Zucchini-Strawberry-Smoothie-hero-200x200.jpg 200w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/06/Zucchini-Strawberry-Smoothie-hero-320x320.jpg 320w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/06/Zucchini-Strawberry-Smoothie-hero-480x480.jpg 480w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/06/Zucchini-Strawberry-Smoothie-hero-720x720.jpg 720w" data-lazy-sizes="(max-width: 250px) 100vw, 250px" data-lazy-src="https://www.cleaneatingkitchen.com/wp-content/uploads/2022/06/Zucchini-Strawberry-Smoothie-hero-250x250.jpg" /><noscript><img decoding="async" width="250" height="250" src="https://www.cleaneatingkitchen.com/wp-content/uploads/2022/06/Zucchini-Strawberry-Smoothie-hero-250x250.jpg" class="attachment-thumbnail size-thumbnail wp-post-image" alt="" data-pin-nopin="true" srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2022/06/Zucchini-Strawberry-Smoothie-hero-250x250.jpg 250w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/06/Zucchini-Strawberry-Smoothie-hero-500x500.jpg 500w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/06/Zucchini-Strawberry-Smoothie-hero-322x322.jpg 322w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/06/Zucchini-Strawberry-Smoothie-hero-644x644.jpg 644w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/06/Zucchini-Strawberry-Smoothie-hero-150x150.jpg 150w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/06/Zucchini-Strawberry-Smoothie-hero-96x96.jpg 96w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/06/Zucchini-Strawberry-Smoothie-hero-225x225.jpg 225w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/06/Zucchini-Strawberry-Smoothie-hero-200x200.jpg 200w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/06/Zucchini-Strawberry-Smoothie-hero-320x320.jpg 320w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/06/Zucchini-Strawberry-Smoothie-hero-480x480.jpg 480w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/06/Zucchini-Strawberry-Smoothie-hero-720x720.jpg 720w" sizes="(max-width: 250px) 100vw, 250px" /></noscript>
<h3 class="title">Zucchini Strawberry Smoothie (Dairy-Free)</h3>
</a>
</div>
</div>
</div>
<div class="wp-block-group"><div class="wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained">
<p><em>I hope you make this recipe! If you do, please <a href="#commentform">leave a comment</a> and a starred review below.</em></p>
<p><em>And, consider following me on social media so we can stay connected. I’m on <a href="https://www.facebook.com/Cleaneatingcarrie/" data-wpel-link="external" rel="external noopener">Facebook</a>, <a href="https://www.pinterest.com/cleaneatingkitchen/" data-wpel-link="external" rel="external noopener">Pinterest</a>, <a href="https://www.instagram.com/cleaneatingcarrie/" data-wpel-link="external" rel="external noopener">Instagram</a>, and <a href="https://www.youtube.com/channel/UCDF9Mm65XQYaTCSmNa_BH_A" data-wpel-link="external" rel="external noopener">YouTube!</a></em></p>
</div></div>
<svg aria-hidden="true" style="position: absolute;width: 0;height: 0;overflow: hidden" xmlns="http://www.w3.org/2000/svg">
<defs>
<symbol viewbox="9 9 46 42" id="wpt-star-full">
<path d="m46.3 52-14.4-9.5-14.4 9.4L22 35.3 8.7 24.5l17.1-.9 6.2-16 6 16 17.2 1-13.4 10.7z" />
</symbol>
</defs>
</svg>
<a class="button tasty-recipes-print-button tasty-recipes-no-print tasty-recipes-print-above-card" href="https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/print/58006/" data-wpel-link="internal">Print</a><span class="tasty-recipes-jump-target" id="tasty-recipes-58006-jump-target" style="display:block;padding-top:2px;margin-top:-2px;"></span><div id="tasty-recipes-58006" data-tr-id="58006" class="tasty-recipes tasty-recipes-58006 tasty-recipes-display tasty-recipes-has-image">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none"><defs><symbol id="tasty-recipes-icon-clock" width="24" height="24" viewBox="0 0 24 24"><title>clock</title><desc>clock icon</desc><path d="M22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12.5 8H11v6l4.75 2.85.75-1.23-4-2.37V8zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" fill="currentColor" /></symbol><symbol id="tasty-recipes-icon-cutlery" width="24" height="24" viewBox="0 0 24 24"><title>cutlery</title><desc>cutlery icon</desc><path d="M11 9H9V2H7v7H5V2H3v7c0 2.12 1.66 3.84 3.75 3.97V22h2.5v-9.03C11.34 12.84 13 11.12 13 9V2h-2v7zm5-3v8h2.5v8H21V2c-2.76 0-5 2.24-5 4z" fill="currentColor" /></symbol><symbol id="tasty-recipes-icon-flag" width="24" height="24" viewBox="0 0 24 24"><title>flag</title><desc>flag icon</desc><path d="M14.4 6L14 4H5v17h2v-7h5.6l.4 2h7V6z" fill="currentColor" /></symbol><symbol id="tasty-recipes-icon-folder" width="24" height="24" viewBox="0 0 24 24"><title>folder</title><desc>folder icon</desc><path d="M10 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-2-2z" fill="currentColor" /></symbol><symbol id="tasty-recipes-icon-instagram" viewBox="0 0 448 512"><title>instagram</title><desc>instagram icon</desc><path fill="currentColor" d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path></symbol><symbol id="tasty-recipes-icon-pinterest" viewBox="0 0 496 512"><title>pinterest</title><desc>pinterest icon</desc><path fill="currentColor" d="M496 256c0 137-111 248-248 248-25.6 0-50.2-3.9-73.4-11.1 10.1-16.5 25.2-43.5 30.8-65 3-11.6 15.4-59 15.4-59 8.1 15.4 31.7 28.5 56.8 28.5 74.8 0 128.7-68.8 128.7-154.3 0-81.9-66.9-143.2-152.9-143.2-107 0-163.9 71.8-163.9 150.1 0 36.4 19.4 81.7 50.3 96.1 4.7 2.2 7.2 1.2 8.3-3.3.8-3.4 5-20.3 6.9-28.1.6-2.5.3-4.7-1.7-7.1-10.1-12.5-18.3-35.3-18.3-56.6 0-54.7 41.4-107.6 112-107.6 60.9 0 103.6 41.5 103.6 100.9 0 67.1-33.9 113.6-78 113.6-24.3 0-42.6-20.1-36.7-44.8 7-29.5 20.5-61.3 20.5-82.6 0-19-10.2-34.9-31.4-34.9-24.9 0-44.9 25.7-44.9 60.2 0 22 7.4 36.8 7.4 36.8s-24.5 103.8-29 123.2c-5 21.4-3 51.6-.9 71.2C65.4 450.9 0 361.1 0 256 0 119 111 8 248 8s248 111 248 248z"></path></symbol><symbol id="tasty-recipes-icon-facebook" viewBox="0 0 448 512"><title>facebook</title><desc>facebook icon</desc><path fill="currentColor" d="M400 32H48A48 48 0 0 0 0 80v352a48 48 0 0 0 48 48h137.25V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.27c-30.81 0-40.42 19.12-40.42 38.73V256h68.78l-11 71.69h-57.78V480H400a48 48 0 0 0 48-48V80a48 48 0 0 0-48-48z" /></symbol><symbol id="tasty-recipes-icon-print" width="24" height="24" viewBox="0 0 24 24"><title>print</title><desc>print icon</desc><path d="M19 8H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zm-3 11H8v-5h8v5zm3-7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1-9H6v4h12V3z" fill="currentColor" /></symbol><symbol id="tasty-recipes-icon-squares" width="24" height="24" viewBox="0 0 24 24"><title>squares</title><desc>squares icon</desc><path d="M22 9V7h-2V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2v-2h-2V9h2zm-4 10H4V5h14v14zM6 13h5v4H6zm6-6h4v3h-4zM6 7h5v5H6zm6 4h4v6h-4z" fill="currentColor" /></symbol><symbol id="tasty-recipes-icon-heart-regular" viewBox="0 0 512 512"><title>heart</title><desc>heart icon</desc><path fill="currentColor" d="M458.4 64.3C400.6 15.7 311.3 23 256 79.3 200.7 23 111.4 15.6 53.6 64.3-21.6 127.6-10.6 230.8 43 285.5l175.4 178.7c10 10.2 23.4 15.9 37.6 15.9 14.3 0 27.6-5.6 37.6-15.8L469 285.6c53.5-54.7 64.7-157.9-10.6-221.3zm-23.6 187.5L259.4 430.5c-2.4 2.4-4.4 2.4-6.8 0L77.2 251.8c-36.5-37.2-43.9-107.6 7.3-150.7 38.9-32.7 98.9-27.8 136.5 10.5l35 35.7 35-35.7c37.8-38.5 97.8-43.2 136.5-10.6 51.1 43.1 43.5 113.9 7.3 150.8z"></path></symbol><symbol id="tasty-recipes-icon-heart-solid" viewBox="0 0 512 512"><title>heart solid</title><desc>heart solid icon</desc><path fill="currentColor" d="M462.3 62.6C407.5 15.9 326 24.3 275.7 76.2L256 96.5l-19.7-20.3C186.1 24.3 104.5 15.9 49.7 62.6c-62.8 53.6-66.1 149.8-9.9 207.9l193.5 199.8c12.5 12.9 32.8 12.9 45.3 0l193.5-199.8c56.3-58.1 53-154.3-9.8-207.9z"></path></symbol></defs></svg> <div class="tasty-recipes-image">
<img decoding="async" width="768" height="512" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20768%20512'%3E%3C/svg%3E" class="attachment-medium_large size-medium_large" alt="vegan panna cotta with strawberry sauce" data-pin-nopin="true" data-lazy-srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero-768x512.jpg 768w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero-300x200.jpg 300w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero-700x467.jpg 700w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero-150x100.jpg 150w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero.jpg 1400w" data-lazy-sizes="(max-width: 768px) 100vw, 768px" data-lazy-src="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero-768x512.jpg" /><noscript><img decoding="async" width="768" height="512" src="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero-768x512.jpg" class="attachment-medium_large size-medium_large" alt="vegan panna cotta with strawberry sauce" data-pin-nopin="true" srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero-768x512.jpg 768w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero-300x200.jpg 300w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero-700x467.jpg 700w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero-150x100.jpg 150w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/11/vegan-panna-cotta-with-strawberry-sauce-hero.jpg 1400w" sizes="(max-width: 768px) 100vw, 768px" /></noscript> </div>
<header class="tasty-recipes-entry-header">
<h2 class="tasty-recipes-title" data-tasty-recipes-customization="h2-color.color h2-transform.text-transform"><span class="ez-toc-section" id="vegan_panna_cotta_with_strawberry_sauce"></span>Vegan Panna Cotta with Strawberry Sauce<span class="ez-toc-section-end"></span></h2>
<div class="tasty-recipes-rating" >
<p><span class="tasty-recipes-ratings-buttons tasty-recipes-no-ratings-buttons" data-tr-default-rating="5"> <span class="tasty-recipes-rating" data-tr-checked="1"> <i class="checked" data-rating="5"> <span class="tasty-recipes-rating-solid" data-tr-clip="100"> <svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full" /></svg> </span> <span class="tasty-recipes-screen-reader"> 5 Stars </span> </i> </span> <span class="tasty-recipes-rating"> <i class="checked" data-rating="4"> <span class="tasty-recipes-rating-solid" data-tr-clip="100"> <svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full" /></svg> </span> <span class="tasty-recipes-screen-reader"> 4 Stars </span> </i> </span> <span class="tasty-recipes-rating"> <i class="checked" data-rating="3"> <span class="tasty-recipes-rating-solid" data-tr-clip="100"> <svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full" /></svg> </span> <span class="tasty-recipes-screen-reader"> 3 Stars </span> </i> </span> <span class="tasty-recipes-rating"> <i class="checked" data-rating="2"> <span class="tasty-recipes-rating-solid" data-tr-clip="100"> <svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full" /></svg> </span> <span class="tasty-recipes-screen-reader"> 2 Stars </span> </i> </span> <span class="tasty-recipes-rating"> <i class="checked" data-rating="1"> <span class="tasty-recipes-rating-solid" data-tr-clip="100"> <svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full" /></svg> </span> <span class="tasty-recipes-screen-reader"> 1 Star </span> </i> </span></span></p>
<p><span data-tasty-recipes-customization="detail-label-color.color" class="rating-label"><span class="average">5</span> from <span class="count">7</span> reviews</span></p>
</div>
<div class="tasty-recipes-buttons">
<div class="tasty-recipes-button-wrap">
<a class="button tasty-recipes-print-button tasty-recipes-no-print" href="https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/print/58006/" target="_blank" data-tasty-recipes-customization="" data-wpel-link="internal">
<svg viewBox="0 0 24 24" class="svg-print" aria-hidden="true"><use xlink:href="#tasty-recipes-icon-print"></use></svg>
Print Recipe</a>
</div>
<div class="tasty-recipes-button-wrap">
<a class="share-pin button" data-pin-custom="true" data-href="https://www.pinterest.com/pin/create/bookmarklet/?url=https%3A%2F%2Fwww.cleaneatingkitchen.com%2Fpaleo-easy-coconut-panna-cotta%2F" data-tasty-recipes-customization="" data-wpel-link="internal">
<svg viewBox="0 0 24 24" class="svg-print" aria-hidden="true"><use xlink:href="#tasty-recipes-icon-pinterest"></use></svg>
Pin Recipe</a>
</div>
</div>
<div class="tasty-recipes-description">
<div class="tasty-recipes-description-body">
<p>For a creamy and decadent dessert that is completely plant-based, try this Vegan Panna Cotta recipe served with Strawberry Sauce. This coconut-based dessert is reminiscent of the authentic Italian version made with cream.</p>
</div>
</div>
<div class="tasty-recipes-details">
<ul>
<li class="total-time"><span class="tasty-recipes-label" data-tasty-recipes-customization="detail-label-color.color">
<svg viewBox="0 0 24 24" class="detail-icon" aria-hidden="true"><use xlink:href="#tasty-recipes-icon-clock" data-tasty-recipes-customization="icon-color.color"></use></svg>
Total Time:</span> <span data-tasty-recipes-customization="detail-value-color.color" class="tasty-recipes-total-time">2 hours, 25 minutes</span> </li>
<li class="yield"><span class="tasty-recipes-label" data-tasty-recipes-customization="detail-label-color.color">
<svg viewBox="0 0 24 24" class="detail-icon" aria-hidden="true"><use xlink:href="#tasty-recipes-icon-cutlery" data-tasty-recipes-customization="icon-color.color"></use></svg>
Yield:</span> <span data-tasty-recipes-customization="detail-value-color.color" class="tasty-recipes-yield"><span data-amount="4">4</span> <span class="tasty-recipes-yield-scale"><span data-amount="1">1</span>x</span></span> </li>
</ul>
</div>
</header>
<div class="tasty-recipes-entry-content">
<div class="tasty-recipes-ingredients">
<div class="tasty-recipes-ingredients-header">
<div class="tasty-recipes-ingredients-clipboard-container">
<h3 data-tasty-recipes-customization="h3-color.color h3-transform.text-transform">Ingredients</h3>
<button aria-label="Copy ingredients to clipboard" class="tasty-recipes-copy-button" data-text="Copy ingredients" data-success="Copied!"><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-labelledby="copyIconTitle copyIconDesc">
<title id="copyIconTitle">Copy to clipboard</title>
<desc id="copyIconDesc">Copy to clipboard</desc>
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7v8a2 2 0 002 2h6M8 7V5a2 2 0 012-2h4.586a1 1 0 01.707.293l4.414 4.414a1 1 0 01.293.707V15a2 2 0 01-2 2h-2M8 7H6a2 2 0 00-2 2v10a2 2 0 002 2h8a2 2 0 002-2v-2" />
</svg>
</button> </div>
<div class="tasty-recipes-units-scale-container"><span class="tasty-recipes-convert-container">
<span class="tasty-recipes-convert-label">Units</span>
<button class="tasty-recipes-convert-button tasty-recipes-convert-button-active" data-unit-type="usc" type="button">US</button><button class="tasty-recipes-convert-button" data-unit-type="metric" type="button">M</button>
</span><span class="tasty-recipes-scale-container">
<span class="tasty-recipes-scale-label">Scale</span>
<button class="tasty-recipes-scale-button tasty-recipes-scale-button-active" data-amount="1" type="button">1x</button><button class="tasty-recipes-scale-button" data-amount="2" type="button">2x</button><button class="tasty-recipes-scale-button" data-amount="3" type="button">3x</button>
</span>
</span></div> </div>
<div data-tasty-recipes-customization="body-color.color">
<ul>
<li><strong><em>For the panna cotta:</em></strong></li>
<li>1 <span class="nutrifox-quantity" data-nf-original="usc" data-nf-usc="13.5" data-nf-metric="406.25" data-unit="ounce" data-nf-usc-unit="ounce" data-nf-metric-unit="ml" data-nf-food-id="3664" data-nf-food-description="Nuts, coconut milk, canned (liquid expressed from grated meat and water)" data-amount="13.5">13.5</span>–<span class="nutrifox-unit" data-nf-original="usc" data-nf-usc="ounce" data-nf-metric="ml" data-nf-food-id="3664" data-nf-food-description="Nuts, coconut milk, canned (liquid expressed from grated meat and water)">ounce</span> can <span class="nutrifox-name">full-fat coconut milk</span></li>
<li><span class="nutrifox-quantity" data-nf-original="usc" data-nf-usc="0.25" data-nf-metric="50" data-unit="cup" data-nf-usc-unit="cup" data-nf-metric-unit="gram" data-nf-food-id="6319" data-nf-food-description="Sugars, granulated" data-amount="0.25">1/4</span> <span class="nutrifox-unit" data-nf-original="usc" data-nf-usc="cup" data-nf-metric="gram" data-nf-food-id="6319" data-nf-food-description="Sugars, granulated">cup</span> <span class="nutrifox-name">sugar</span></li>
<li><span data-amount="2" data-unit="teaspoon">2 teaspoons</span> agar agar powder</li>
<li><span data-amount="1" data-unit="teaspoon">1 teaspoon</span> vanilla extract</li>
<li><strong><em>For the strawberry sauce:</em></strong></li>
<li><span class="nutrifox-quantity" data-nf-original="usc" data-nf-usc="1" data-nf-metric="152" data-unit="cup" data-nf-usc-unit="cup" data-nf-metric-unit="gram" data-nf-food-id="2385" data-nf-food-description="Strawberries, raw" data-amount="1">1</span> <span class="nutrifox-unit" data-nf-original="usc" data-nf-usc="cup" data-nf-metric="gram" data-nf-food-id="2385" data-nf-food-description="Strawberries, raw">cup</span> frozen <span class="nutrifox-name">strawberries</span></li>
<li><span class="nutrifox-quantity" data-nf-original="usc" data-nf-usc="0.25" data-nf-metric="62.5" data-unit="cup" data-nf-usc-unit="cup" data-nf-metric-unit="ml" data-nf-food-id="4384" data-nf-food-description="Beverages, water, tap, drinking" data-amount="0.25">1/4</span> <span class="nutrifox-unit" data-nf-original="usc" data-nf-usc="cup" data-nf-metric="ml" data-nf-food-id="4384" data-nf-food-description="Beverages, water, tap, drinking">cup</span> <span class="nutrifox-name">water</span></li>
<li><span data-amount="1" data-unit="tablespoon">1 tablespoon</span> sugar</li>
<li><span data-amount="1" data-unit="teaspoon">1 teaspoon</span> lemon juice</li>
</ul> </div>
<div class="tasty-recipes-cook-mode">
<div class="tasty-recipes-cook-mode__container">
<label class="tasty-recipes-cook-mode__switch">
<input type="checkbox" id="tasty_recipes_68de5abb274d5_cookmode">
<span class="tasty-recipes-cook-mode__switch-slider tasty-recipes-cook-mode__switch-round"
data-tasty-recipes-customization="button-color.background button-text-color.color"></span>
</label>
<label for="tasty_recipes_68de5abb274d5_cookmode">
<span class="tasty-recipes-cook-mode__label">Cook Mode</span>
<span class="tasty-recipes-cook-mode__helper">
Prevent your screen from going dark </span>
</label>
</div>
</div>
</div>
<div class="tasty-recipes-instructions">
<div class="tasty-recipes-instructions-header">
<h3 data-tasty-recipes-customization="h3-color.color h3-transform.text-transform">Instructions</h3>
</div>
<div data-tasty-recipes-customization="body-color.color">
<ol>
<li id="instruction-step-1">In a medium saucepan over medium heat, combine the coconut milk, ¼ cup of sugar, agar agar powder, and vanilla extract. Whisk the ingredients to ensure that the powder and sugar get completely dissolved.</li>
<li id="instruction-step-2">Bring the mixture to a boil, reduce the heat to low, and simmer the mixture for at least 3 minutes. This ensures that the agar agar powder gets activated.</li>
<li id="instruction-step-3">Then, remove the saucepan from the heat and pour the mixture into four small bowls, parfait glasses, or ramekins. Do your best to divide the mixture evenly between the containers.</li>
<li id="instruction-step-4">Place the bowls into the refrigerator for at least 2 hours to set.</li>
<li id="instruction-step-5">When you are ready to serve the panna cotta, make the strawberry sauce. In a small saucepan, combine the frozen strawberries, water, 1 tablespoon of sugar, and lemon juice.</li>
<li id="instruction-step-6">While the mixture comes up to a simmer, use the back of a serving spoon to gently smash the frozen strawberries. Let the strawberries cook for a few minutes, or until they are completely soft. Remove the saucepan from the heat.</li>
<li id="instruction-step-7">Serve the panna cotta in the bowls or molds, with a spoonful of the strawberry sauce on top of each one.</li>
<li id="instruction-step-8">You can also remove the panna cotta from the molds to a plate for serving.</li>
<li id="instruction-step-9">Enjoy immediately.</li>
</ol>
</div>
</div>
<div class="tasty-recipes-notes" data-tasty-recipes-customization="secondary-color.background-color">
<h3 data-tasty-recipes-customization="h3-color.color h3-transform.text-transform">Notes</h3>
<div class="tasty-recipes-notes-body" data-tasty-recipes-customization="body-color.color">
<ol>
<li>Be sure to use agar agar powder, not agar flakes.</li>
<li>You can use coconut sugar instead of white sugar, but it will turn your panna cotta a light tan color as opposed to white.</li>
<li>The total cook time includes 2 hours of set time in the refrigerator.</li>
<li>You can substitute the strawberries with frozen raspberries, if you prefer.</li>
</ol>
</div>
</div>
<div class="tasty-recipes-other-details" data-tasty-recipes-customization="secondary-color.background-color">
<ul>
<li class="author"><span class="tasty-recipes-label" data-tasty-recipes-customization="detail-label-color.color">Author:</span> <a data-tasty-recipes-customization="detail-value-color.color" class="tasty-recipes-author-name" href="https://www.cleaneatingkitchen.com/about/" data-wpel-link="internal">Carrie Forrest, MPH in Nutrition</a></li><li class="prep-time"><span class="tasty-recipes-label" data-tasty-recipes-customization="detail-label-color.color"><svg viewBox="0 0 24 24" class="detail-icon" aria-hidden="true"><use xlink:href="#tasty-recipes-icon-clock"></use></svg>Prep Time:</span> <span data-tasty-recipes-customization="detail-value-color.color" class="tasty-recipes-prep-time">10 minutes</span></li><li class="cook-time"><span class="tasty-recipes-label" data-tasty-recipes-customization="detail-label-color.color"><svg viewBox="0 0 24 24" class="detail-icon" aria-hidden="true"><use xlink:href="#tasty-recipes-icon-clock"></use></svg>Cook Time:</span> <span data-tasty-recipes-customization="detail-value-color.color" class="tasty-recipes-cook-time">15 minutes</span></li><li class="category"><span class="tasty-recipes-label" data-tasty-recipes-customization="detail-label-color.color"><svg viewBox="0 0 24 24" class="detail-icon" aria-hidden="true"><use xlink:href="#tasty-recipes-icon-folder"></use></svg>Category:</span> <span data-tasty-recipes-customization="detail-value-color.color" class="tasty-recipes-category">Dessert</span></li><li class="method"><span class="tasty-recipes-label" data-tasty-recipes-customization="detail-label-color.color"><svg viewBox="0 0 24 24" class="detail-icon" aria-hidden="true"><use xlink:href="#tasty-recipes-icon-squares"></use></svg>Method:</span> <span data-tasty-recipes-customization="detail-value-color.color" class="tasty-recipes-method">Stovetop</span></li><li class="cuisine"><span class="tasty-recipes-label" data-tasty-recipes-customization="detail-label-color.color"><svg viewBox="0 0 24 24" class="detail-icon" aria-hidden="true"><use xlink:href="#tasty-recipes-icon-flag"></use></svg>Cuisine:</span> <span data-tasty-recipes-customization="detail-value-color.color" class="tasty-recipes-cuisine">Italian</span></li><li class="diet"><span class="tasty-recipes-label" data-tasty-recipes-customization="detail-label-color.color"><svg viewBox="0 0 24 24" class="detail-icon" aria-hidden="true"><use xlink:href="#tasty-recipes-icon-heart-regular"></use></svg>Diet:</span> <span data-tasty-recipes-customization="detail-value-color.color" class="tasty-recipes-diet">Vegan</span></li> </ul>
</div>
<div class="tasty-recipes-nutrition">
<h3 data-tasty-recipes-customization="h3-color.color h3-transform.text-transform">Nutrition</h3>
<ul>
<li><strong class="tasty-recipes-label" data-tasty-recipes-customization="body-color.color">Serving Size:</strong> <span data-tasty-recipes-customization="body-color.color" class="tasty-recipes-serving-size">1/4 of recipe</span></li>
<li><strong class="tasty-recipes-label" data-tasty-recipes-customization="body-color.color">Calories:</strong> <span data-tasty-recipes-customization="body-color.color" class="tasty-recipes-calories">265</span></li>
<li><strong class="tasty-recipes-label" data-tasty-recipes-customization="body-color.color">Sugar:</strong> <span data-tasty-recipes-customization="body-color.color" class="tasty-recipes-sugar">17.6 g</span></li>
<li><strong class="tasty-recipes-label" data-tasty-recipes-customization="body-color.color">Sodium:</strong> <span data-tasty-recipes-customization="body-color.color" class="tasty-recipes-sodium">13.7 mg</span></li>
<li><strong class="tasty-recipes-label" data-tasty-recipes-customization="body-color.color">Fat:</strong> <span data-tasty-recipes-customization="body-color.color" class="tasty-recipes-fat">20.5 g</span></li>
<li><strong class="tasty-recipes-label" data-tasty-recipes-customization="body-color.color">Saturated Fat:</strong> <span data-tasty-recipes-customization="body-color.color" class="tasty-recipes-saturated-fat">18.1 g</span></li>
<li><strong class="tasty-recipes-label" data-tasty-recipes-customization="body-color.color">Carbohydrates:</strong> <span data-tasty-recipes-customization="body-color.color" class="tasty-recipes-carbohydrates">21.5 g</span></li>
<li><strong class="tasty-recipes-label" data-tasty-recipes-customization="body-color.color">Fiber:</strong> <span data-tasty-recipes-customization="body-color.color" class="tasty-recipes-fiber">0.8 g</span></li>
<li><strong class="tasty-recipes-label" data-tasty-recipes-customization="body-color.color">Protein:</strong> <span data-tasty-recipes-customization="body-color.color" class="tasty-recipes-protein">2.2 g</span></li>
<li><strong class="tasty-recipes-label" data-tasty-recipes-customization="body-color.color">Cholesterol:</strong> <span data-tasty-recipes-customization="body-color.color" class="tasty-recipes-cholesterol">0 mg</span></li>
</ul>
</div>
</div>
<footer class="tasty-recipes-entry-footer" data-tasty-recipes-customization="primary-color.background">
<div class="tasty-recipes-footer-content">
<div class="tasty-recipes-footer-content"><div class="tasty-recipes-footer-copy"></div></div> </div>
</footer>
</div>
<p><em>Don’t forget to <a href="http://eepurl.com/bhuYxL" data-wpel-link="external" rel="external noopener">join my newsletter list</a> to get exclusive clean eating recipes and tips. The newsletter is 100% free with no spam; unsubscribe anytime. </em></p>
<p class="has-lightgreen-background-color has-background"><strong><em>About the Author</em></strong>: Carrie Forrest has a master’s degree in public health with a specialty in nutrition and is a certified holistic nutritionist. She is a top wellness and food blogger with over 5 million annual visitors to her site. Carrie has an incredible story of <a href="https://www.cleaneatingkitchen.com/about/" data-wpel-link="internal">recovery from chronic illness</a> and is passionate about helping other women transform their health. Send her a message through her <a href="https://www.cleaneatingkitchen.com/contact/" data-wpel-link="internal">contact form</a>.</p>
</div>
<div class="disclosure disclosure-bottom">This post may contain affiliate links which won’t change your price but will share some commission. We are participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for us to earn fees by linking to Amazon.com and affiliated sites.</div>
<div class="post-meta meta-bottom meta-centered">
<em>filed under:</em> <a href="https://www.cleaneatingkitchen.com/category/recipe-dessert/" rel="category tag">Desserts</a>, <a href="https://www.cleaneatingkitchen.com/category/holiday-recipes/valentines-day-recipes/" rel="category tag">Valentine's Day Recipes</a>, <a href="https://www.cleaneatingkitchen.com/category/vegan-recipes/" rel="category tag">Vegan Recipes</a>
<p><span class="ccount"><a href="https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#comments">8 <em>Comments</em></a></span> <span class="spacer">/</span> <a href="#respond">Leave a Comment »</a>
</p>
</div>
</article> <!-- end .post -->
<div class="post-nav">
<div class="nav-previous"><a href="https://www.cleaneatingkitchen.com/kiwi-juice/"><em>« Previous Post</em>Kiwi Juice Recipe (Blender or Food Processor)</a></div>
<div class="nav-next"><a href="https://www.cleaneatingkitchen.com/instant-pot-chicken-cacciatore/"><em>Next Post »</i>
</em>Keto Chicken Cacciatore (Instant Pot or Stovetop)</a></div>
</div>
<div class="inner-post">
<div id="acf_widget_47308-3" class="widget-odd widget-last widget-first widget-1 subscribe widget acf_widget_47308 Acf_Widget_47308 "><div class="optin-content">
<h2 class="block-title">
Get My Clean Eating Quick Start Guide: </h2>
<div class="form">
<form action="https://cleaneatingkitchen.us5.list-manage.com/subscribe/post?u=7c6b9a1d7b331f85b8c69b8c2&id=93809fbfd0" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate email-form" target="_blank" novalidate="">
<div class="email-input-container">
<div class="spacer"></div>
<input type="email" value="" name="EMAIL" class="required email-input" id="mce-EMAIL" placeholder="email address" aria-label="email address">
</div>
<button type="submit" class="email-submit" name="subscribe" id="mc-embedded-subscribe">
<span>Subscribe</span> <i class="far fa-arrow-right"></i>
</button>
<div id="mce-responses" class="clear">
<div class="response" id="mce-error-response" style="display:none"></div>
<div class="response" id="mce-success-response" style="display:none"></div>
</div> <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
<div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_7c6b9a1d7b331f85b8c69b8c2_93809fbfd0" tabindex="-1" value=""></div>
</form>
</div>
</div></div></div>
<div id="comments" class="comments-area">
<div id="respond" class="comment-respond">
<h3 id="reply-title" class="comment-reply-title">Leave a Reply <small><a rel="nofollow" id="cancel-comment-reply-link" href="/paleo-easy-coconut-panna-cotta/#respond" style="display:none;">Cancel reply</a></small></h3><form action="https://www.cleaneatingkitchen.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">*</span></span></p> <fieldset class="tasty-recipes-ratings tasty-recipes-comment-form">
<legend>Recipe rating</legend>
<span class="tasty-recipes-ratings-buttons " data-tr-default-rating="0" > <input aria-label="Rate this recipe 5 stars" type="radio" name="tasty-recipes-rating" class="tasty-recipes-rating" id="tasty_recipes_rating_input_68de5abb6369e" value="5"> <span class="tasty-recipes-rating" > <i class="checked" data-rating="5"> <span class="tasty-recipes-rating-solid" data-tr-clip="0"> <svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full" /></svg> </span> <span class="tasty-recipes-screen-reader"> 5 Stars </span> </i> </span> <input aria-label="Rate this recipe 4 stars" type="radio" name="tasty-recipes-rating" class="tasty-recipes-rating" id="tasty_recipes_rating_input_68de5abb6374d" value="4"> <span class="tasty-recipes-rating" > <i class="checked" data-rating="4"> <span class="tasty-recipes-rating-solid" data-tr-clip="0"> <svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full" /></svg> </span> <span class="tasty-recipes-screen-reader"> 4 Stars </span> </i> </span> <input aria-label="Rate this recipe 3 stars" type="radio" name="tasty-recipes-rating" class="tasty-recipes-rating" id="tasty_recipes_rating_input_68de5abb637c5" value="3"> <span class="tasty-recipes-rating" > <i class="checked" data-rating="3"> <span class="tasty-recipes-rating-solid" data-tr-clip="0"> <svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full" /></svg> </span> <span class="tasty-recipes-screen-reader"> 3 Stars </span> </i> </span> <input aria-label="Rate this recipe 2 stars" type="radio" name="tasty-recipes-rating" class="tasty-recipes-rating" id="tasty_recipes_rating_input_68de5abb63836" value="2"> <span class="tasty-recipes-rating" > <i class="checked" data-rating="2"> <span class="tasty-recipes-rating-solid" data-tr-clip="0"> <svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full" /></svg> </span> <span class="tasty-recipes-screen-reader"> 2 Stars </span> </i> </span> <input aria-label="Rate this recipe 1 star" type="radio" name="tasty-recipes-rating" class="tasty-recipes-rating" id="tasty_recipes_rating_input_68de5abb638ae" value="1"> <span class="tasty-recipes-rating" > <i class="checked" data-rating="1"> <span class="tasty-recipes-rating-solid" data-tr-clip="0"> <svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full" /></svg> </span> <span class="tasty-recipes-screen-reader"> 1 Star </span> </i> </span></span> </fieldset>
<p class="comment-form-comment"><label for="comment">Comment <span class="required">*</span></label> <textarea autocomplete="new-password" id="a5c9f12f21" name="a5c9f12f21" cols="45" rows="8" maxlength="65525" required="required"></textarea><textarea id="comment" aria-label="hp-comment" aria-hidden="true" name="comment" autocomplete="new-password" style="padding:0 !important;clip:rect(1px, 1px, 1px, 1px) !important;position:absolute !important;white-space:nowrap !important;height:1px !important;width:1px !important;overflow:hidden !important;" tabindex="-1"></textarea><script type="rocketlazyloadscript" data-noptimize>document.getElementById("comment").setAttribute( "id", "adfb852bfd90bc5834b55551fb451403" );document.getElementById("a5c9f12f21").setAttribute( "id", "comment" );</script></p><p class="comment-form-author"><label for="author">Name <span class="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">*</span></label> <input id="email" name="email" type="text" value="" size="30" maxlength="100" aria-describedby="email-notes" autocomplete="email" required="required" /></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='24730' id='comment_post_ID' />
<input type='hidden' name='comment_parent' id='comment_parent' value='0' />
</p></form> </div><!-- #respond -->
<div class="sep"></div>
<h3 id="comments">
8 comments on “Vegan Panna Cotta with Strawberry Sauce” </h3>
<ol id="comment-list" class="comment-list">
<li class="comment even thread-even depth-1" id="li-comment-494218">
<div id="comment-494218" class="comment nopin">
<div class="post-meta comment-meta">
<strong>Carrie</strong> —
<a href="https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#comment-494218">
<time pubdate datetime="2021-12-22T14:16:38-08:00">
December 22, 2021 @ 2:16 pm </time>
</a>
<a rel="nofollow" class="comment-reply-link" href="#comment-494218" data-commentid="494218" data-postid="24730" data-belowelement="comment-494218" data-respondelement="respond" data-replyto="Reply to Carrie" aria-label="Reply to Carrie">Reply</a> </div><!-- .comment-meta -->
<div class="comment-content"><p>Such a yummy holiday dessert!</p>
<p class="tasty-recipes-ratings"><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="1"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="2"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="3"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="4"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="5"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span></p>
</div>
</div><!-- #comment-## -->
</li><!-- #comment-## -->
<li class="comment odd alt thread-odd thread-alt depth-1" id="li-comment-478577">
<div id="comment-478577" class="comment nopin">
<div class="post-meta comment-meta">
<strong>Suzy</strong> —
<a href="https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#comment-478577">
<time pubdate datetime="2019-07-22T08:03:46-07:00">
July 22, 2019 @ 8:03 am </time>
</a>
<a rel="nofollow" class="comment-reply-link" href="#comment-478577" data-commentid="478577" data-postid="24730" data-belowelement="comment-478577" data-respondelement="respond" data-replyto="Reply to Suzy" aria-label="Reply to Suzy">Reply</a> </div><!-- .comment-meta -->
<div class="comment-content"><p>I didn’t realize how easy this would be to make! Love that there are only a few ingredients! Delicious!</p>
<p class="tasty-recipes-ratings"><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="1"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="2"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="3"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="4"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="5"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span></p>
</div>
</div><!-- #comment-## -->
</li><!-- #comment-## -->
<li class="comment even thread-even depth-1" id="li-comment-478576">
<div id="comment-478576" class="comment nopin">
<div class="post-meta comment-meta">
<strong>Andrea Metlika</strong> —
<a href="https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#comment-478576">
<time pubdate datetime="2019-07-22T07:54:02-07:00">
July 22, 2019 @ 7:54 am </time>
</a>
<a rel="nofollow" class="comment-reply-link" href="#comment-478576" data-commentid="478576" data-postid="24730" data-belowelement="comment-478576" data-respondelement="respond" data-replyto="Reply to Andrea Metlika" aria-label="Reply to Andrea Metlika">Reply</a> </div><!-- .comment-meta -->
<div class="comment-content"><p>I didn’t know panna cotta could be dairy free. This is a fabulous recipe.</p>
<p class="tasty-recipes-ratings"><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="1"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="2"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="3"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="4"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="5"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span></p>
</div>
</div><!-- #comment-## -->
</li><!-- #comment-## -->
<li class="comment odd alt thread-odd thread-alt depth-1" id="li-comment-478575">
<div id="comment-478575" class="comment nopin">
<div class="post-meta comment-meta">
<strong>Jessica Formicola</strong> —
<a href="https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#comment-478575">
<time pubdate datetime="2019-07-22T07:51:42-07:00">
July 22, 2019 @ 7:51 am </time>
</a>
<a rel="nofollow" class="comment-reply-link" href="#comment-478575" data-commentid="478575" data-postid="24730" data-belowelement="comment-478575" data-respondelement="respond" data-replyto="Reply to Jessica Formicola" aria-label="Reply to Jessica Formicola">Reply</a> </div><!-- .comment-meta -->
<div class="comment-content"><p>I’ve never made my own panna cotta, and now I can’t wait to try! It looks so creamy and delicious!</p>
<p class="tasty-recipes-ratings"><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="1"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="2"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="3"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="4"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="5"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span></p>
</div>
</div><!-- #comment-## -->
</li><!-- #comment-## -->
<li class="comment even thread-even depth-1" id="li-comment-478574">
<div id="comment-478574" class="comment nopin">
<div class="post-meta comment-meta">
<strong>Raia</strong> —
<a href="https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#comment-478574">
<time pubdate datetime="2019-07-22T07:44:09-07:00">
July 22, 2019 @ 7:44 am </time>
</a>
<a rel="nofollow" class="comment-reply-link" href="#comment-478574" data-commentid="478574" data-postid="24730" data-belowelement="comment-478574" data-respondelement="respond" data-replyto="Reply to Raia" aria-label="Reply to Raia">Reply</a> </div><!-- .comment-meta -->
<div class="comment-content"><p>I’ve never tried making panna cotta before, it doesn’t sound too hard!That cookbook sounds amazing, too!</p>
<p class="tasty-recipes-ratings"><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="1"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="2"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="3"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="4"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="5"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span></p>
</div>
</div><!-- #comment-## -->
</li><!-- #comment-## -->
<li class="comment odd alt thread-odd thread-alt depth-1" id="li-comment-478573">
<div id="comment-478573" class="comment nopin">
<div class="post-meta comment-meta">
<strong>Lisa | Garlic & Zest</strong> —
<a href="https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#comment-478573">
<time pubdate datetime="2019-07-22T06:20:49-07:00">
July 22, 2019 @ 6:20 am </time>
</a>
<a rel="nofollow" class="comment-reply-link" href="#comment-478573" data-commentid="478573" data-postid="24730" data-belowelement="comment-478573" data-respondelement="respond" data-replyto="Reply to Lisa | Garlic & Zest" aria-label="Reply to Lisa | Garlic & Zest">Reply</a> </div><!-- .comment-meta -->
<div class="comment-content"><p>I love a good panna cotta — and coconut is one of my favorite flavors. I think I’ve got all the ingredients, too! This is happening!</p>
<p class="tasty-recipes-ratings"><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="1"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="2"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="3"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="4"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="5"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span></p>
</div>
</div><!-- #comment-## -->
</li><!-- #comment-## -->
<li class="comment even thread-even depth-1" id="li-comment-471281">
<div id="comment-471281" class="comment nopin">
<div class="post-meta comment-meta">
<strong>Maribel</strong> —
<a href="https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#comment-471281">
<time pubdate datetime="2019-01-07T00:29:18-08:00">
January 7, 2019 @ 12:29 am </time>
</a>
<a rel="nofollow" class="comment-reply-link" href="#comment-471281" data-commentid="471281" data-postid="24730" data-belowelement="comment-471281" data-respondelement="respond" data-replyto="Reply to Maribel" aria-label="Reply to Maribel">Reply</a> </div><!-- .comment-meta -->
<div class="comment-content"><p>Easy to prepare and yummy!<br />
Thanks Carrie for sharing this recipe!</p>
<p class="tasty-recipes-ratings"><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="1"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="2"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="3"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="4"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="5"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span></p>
</div>
</div><!-- #comment-## -->
</li><!-- #comment-## -->
<li class="comment odd alt thread-odd thread-alt depth-1" id="li-comment-470228">
<div id="comment-470228" class="comment nopin">
<div class="post-meta comment-meta">
<strong>kylie</strong> —
<a href="https://www.cleaneatingkitchen.com/paleo-easy-coconut-panna-cotta/#comment-470228">
<time pubdate datetime="2018-12-18T05:22:30-08:00">
December 18, 2018 @ 5:22 am </time>
</a>
<a rel="nofollow" class="comment-reply-link" href="#comment-470228" data-commentid="470228" data-postid="24730" data-belowelement="comment-470228" data-respondelement="respond" data-replyto="Reply to kylie" aria-label="Reply to kylie">Reply</a> </div><!-- .comment-meta -->
<div class="comment-content"><p>Hello, thanks for making your receipt printable! Im going to try it today…</p>
</div>
</div><!-- #comment-## -->
</li><!-- #comment-## -->
</ol><!-- .comment-list -->
</div><!-- #comments -->
</div> <!-- end #content -->
<div class="sidebar row span_6 clr span_sidebar">
<div class="topsidebar">
<div id="acf_widget_47224-3" class="widget-odd widget-first widget-1 about widget acf_widget_47224 Acf_Widget_47224 "><div class="about">
<div class="about-content">
<div class="image">
<a href="/about/" target="_self" title="More About Me"><img width="700" height="600" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20700%20600'%3E%3C/svg%3E" class="attachment-large size-large" alt="carrie with mug in kitchen." data-pin-nopin="true" decoding="async" data-lazy-srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2022/10/carrie-with-mug-homepage-2-700x600.jpg 700w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/10/carrie-with-mug-homepage-2-300x257.jpg 300w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/10/carrie-with-mug-homepage-2-768x658.jpg 768w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/10/carrie-with-mug-homepage-2-150x129.jpg 150w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/10/carrie-with-mug-homepage-2.jpg 1089w" data-lazy-sizes="(max-width: 700px) 100vw, 700px" data-lazy-src="https://www.cleaneatingkitchen.com/wp-content/uploads/2022/10/carrie-with-mug-homepage-2-700x600.jpg" /><noscript><img width="700" height="600" src="https://www.cleaneatingkitchen.com/wp-content/uploads/2022/10/carrie-with-mug-homepage-2-700x600.jpg" class="attachment-large size-large" alt="carrie with mug in kitchen." data-pin-nopin="true" decoding="async" srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2022/10/carrie-with-mug-homepage-2-700x600.jpg 700w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/10/carrie-with-mug-homepage-2-300x257.jpg 300w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/10/carrie-with-mug-homepage-2-768x658.jpg 768w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/10/carrie-with-mug-homepage-2-150x129.jpg 150w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/10/carrie-with-mug-homepage-2.jpg 1089w" sizes="(max-width: 700px) 100vw, 700px" /></noscript></a> </div>
<div class="caption">
<h2 class="block-title">
Welcome! </h2>
<p>I’m Carrie, a certified holistic nutritionist with a master’s degree in public health. As a blogger and cookbook author, I’m passionate about sharing recipes and tips to help you feel your best.</p>
<div class="more"><a href="/about/" target="_self" class="more-link">More About Me <i class="far fa-arrow-right"></i></a></div>
<div class="social"><a href="http://feeds.feedburner.com/carrieonvegan" title="RSS Feed" target="_blank" aria-label="RSS Feed">
<i class="fa fa-rss"></i>
</a>
<a href="https://www.facebook.com/Cleaneatingcarrie/" title="Facebook" target="_blank" aria-label="Facebook Profile Page">
<i class="fab fa-facebook-f"></i>
</a>
<a href="https://www.instagram.com/cleaneatingcarrie" title="Instagram" target="_blank" aria-label="Instagram Profile Page">
<i class="fab fa-instagram"></i>
</a>
<a href="https://www.pinterest.com/cleaneatingkitchen" title="Pinterest" target="_blank" aria-label="Pinterest Profile Page">
<i class="fab fa-pinterest-p"></i>
</a>
<a href="https://www.youtube.com/cleaneatingkitchen" title="YouTube" target="_blank" aria-label="YouTube Profile Page">
<i class="fab fa-youtube"></i>
</a></div>
</div>
</div>
<div class="book-content">
<div class="image">
<a href="https://amzn.to/3PzLzQF" target="_blank" title="Buy Now"><img width="529" height="511" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20529%20511'%3E%3C/svg%3E" class="attachment-full size-full" alt="Cookbook cover mockups" data-pin-nopin="true" decoding="async" data-lazy-srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/cookbooks.png 529w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/cookbooks-300x290.png 300w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/cookbooks-150x145.png 150w" data-lazy-sizes="(max-width: 529px) 100vw, 529px" data-lazy-src="https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/cookbooks.png" /><noscript><img width="529" height="511" src="https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/cookbooks.png" class="attachment-full size-full" alt="Cookbook cover mockups" data-pin-nopin="true" decoding="async" srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/cookbooks.png 529w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/cookbooks-300x290.png 300w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/cookbooks-150x145.png 150w" sizes="(max-width: 529px) 100vw, 529px" /></noscript></a> </div>
<div class="caption">
<h2 class="block-title">
My Cookbooks </h2>
<div class="more"><a href="https://amzn.to/3PzLzQF" target="_blank" class="more-link">Buy Now <i class="far fa-arrow-right"></i></a></div>
</div>
</div>
</div></div><div id="search-4" class="widget-even widget-2 widget widget_search"><h2 class="widget-title">Find a Recipe:</h2><form role="search" method="get" class="search-form" action="https://www.cleaneatingkitchen.com/">
<div class="spacer"></div>
<input type="search" class="search-field"
placeholder="Search"
value="" name="s"
aria-label="Search" />
<button type="submit" class="btn btn-success search-submit">
<i class="far fa-search"><span class="screen-reader-text">Submit</span></i>
</button>
</form></div><div id="category-posts-11" class="widget-odd widget-3 widget widget_category-posts"><h2 class="widget-title">Halloween Recipes</h2><div class='items items-4-col category-posts'>
<div class="item">
<a href="https://www.cleaneatingkitchen.com/sweet-potato-jack-o-lanterns/" rel="bookmark" class="block">
<img width="250" height="250" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20250%20250'%3E%3C/svg%3E" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" data-pin-nopin="true" decoding="async" data-lazy-srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/sweet-potato-jack-o-lanterns-hero-250x250.jpg 250w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/sweet-potato-jack-o-lanterns-hero-500x500.jpg 500w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/sweet-potato-jack-o-lanterns-hero-322x322.jpg 322w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/sweet-potato-jack-o-lanterns-hero-644x644.jpg 644w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/sweet-potato-jack-o-lanterns-hero-150x150.jpg 150w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/sweet-potato-jack-o-lanterns-hero-96x96.jpg 96w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/sweet-potato-jack-o-lanterns-hero-225x225.jpg 225w" data-lazy-sizes="(max-width: 250px) 100vw, 250px" data-lazy-src="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/sweet-potato-jack-o-lanterns-hero-250x250.jpg" /><noscript><img width="250" height="250" src="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/sweet-potato-jack-o-lanterns-hero-250x250.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" data-pin-nopin="true" decoding="async" srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/sweet-potato-jack-o-lanterns-hero-250x250.jpg 250w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/sweet-potato-jack-o-lanterns-hero-500x500.jpg 500w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/sweet-potato-jack-o-lanterns-hero-322x322.jpg 322w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/sweet-potato-jack-o-lanterns-hero-644x644.jpg 644w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/sweet-potato-jack-o-lanterns-hero-150x150.jpg 150w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/sweet-potato-jack-o-lanterns-hero-96x96.jpg 96w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/sweet-potato-jack-o-lanterns-hero-225x225.jpg 225w" sizes="(max-width: 250px) 100vw, 250px" /></noscript> <h3 class="title"><span class="inline">Sweet Potato Jack O’-Lanterns</span></h3>
</a>
</div>
<div class="item">
<a href="https://www.cleaneatingkitchen.com/vegan-pumpkin-chocolate-chip-cookies/" rel="bookmark" class="block">
<img width="250" height="250" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20250%20250'%3E%3C/svg%3E" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" data-pin-nopin="true" decoding="async" data-lazy-srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2020/09/vegan-pumpkin-chocolate-chip-cookies-250x250.jpg 250w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/09/vegan-pumpkin-chocolate-chip-cookies-500x500.jpg 500w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/09/vegan-pumpkin-chocolate-chip-cookies-322x322.jpg 322w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/09/vegan-pumpkin-chocolate-chip-cookies-644x644.jpg 644w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/09/vegan-pumpkin-chocolate-chip-cookies-150x150.jpg 150w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/09/vegan-pumpkin-chocolate-chip-cookies-96x96.jpg 96w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/09/vegan-pumpkin-chocolate-chip-cookies-225x225.jpg 225w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/09/vegan-pumpkin-chocolate-chip-cookies-200x200.jpg 200w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/09/vegan-pumpkin-chocolate-chip-cookies-320x320.jpg 320w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/09/vegan-pumpkin-chocolate-chip-cookies-480x480.jpg 480w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/09/vegan-pumpkin-chocolate-chip-cookies-720x720.jpg 720w" data-lazy-sizes="(max-width: 250px) 100vw, 250px" data-lazy-src="https://www.cleaneatingkitchen.com/wp-content/uploads/2020/09/vegan-pumpkin-chocolate-chip-cookies-250x250.jpg" /><noscript><img width="250" height="250" src="https://www.cleaneatingkitchen.com/wp-content/uploads/2020/09/vegan-pumpkin-chocolate-chip-cookies-250x250.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" data-pin-nopin="true" decoding="async" srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2020/09/vegan-pumpkin-chocolate-chip-cookies-250x250.jpg 250w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/09/vegan-pumpkin-chocolate-chip-cookies-500x500.jpg 500w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/09/vegan-pumpkin-chocolate-chip-cookies-322x322.jpg 322w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/09/vegan-pumpkin-chocolate-chip-cookies-644x644.jpg 644w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/09/vegan-pumpkin-chocolate-chip-cookies-150x150.jpg 150w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/09/vegan-pumpkin-chocolate-chip-cookies-96x96.jpg 96w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/09/vegan-pumpkin-chocolate-chip-cookies-225x225.jpg 225w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/09/vegan-pumpkin-chocolate-chip-cookies-200x200.jpg 200w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/09/vegan-pumpkin-chocolate-chip-cookies-320x320.jpg 320w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/09/vegan-pumpkin-chocolate-chip-cookies-480x480.jpg 480w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/09/vegan-pumpkin-chocolate-chip-cookies-720x720.jpg 720w" sizes="(max-width: 250px) 100vw, 250px" /></noscript> <h3 class="title"><span class="inline">Vegan Pumpkin Chocolate Chip Cookies</span></h3>
</a>
</div>
<div class="item">
<a href="https://www.cleaneatingkitchen.com/cinnamon-sweet-potato-bread/" rel="bookmark" class="block">
<img width="250" height="250" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20250%20250'%3E%3C/svg%3E" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" data-pin-nopin="true" decoding="async" data-lazy-srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2019/11/cinnamon-sweet-potato-bread-4a-250x250.jpg 250w, https://www.cleaneatingkitchen.com/wp-content/uploads/2019/11/cinnamon-sweet-potato-bread-4a-500x500.jpg 500w, https://www.cleaneatingkitchen.com/wp-content/uploads/2019/11/cinnamon-sweet-potato-bread-4a-322x322.jpg 322w, https://www.cleaneatingkitchen.com/wp-content/uploads/2019/11/cinnamon-sweet-potato-bread-4a-644x644.jpg 644w, https://www.cleaneatingkitchen.com/wp-content/uploads/2019/11/cinnamon-sweet-potato-bread-4a-150x150.jpg 150w, https://www.cleaneatingkitchen.com/wp-content/uploads/2019/11/cinnamon-sweet-potato-bread-4a-96x96.jpg 96w, https://www.cleaneatingkitchen.com/wp-content/uploads/2019/11/cinnamon-sweet-potato-bread-4a-225x225.jpg 225w" data-lazy-sizes="(max-width: 250px) 100vw, 250px" data-lazy-src="https://www.cleaneatingkitchen.com/wp-content/uploads/2019/11/cinnamon-sweet-potato-bread-4a-250x250.jpg" /><noscript><img width="250" height="250" src="https://www.cleaneatingkitchen.com/wp-content/uploads/2019/11/cinnamon-sweet-potato-bread-4a-250x250.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" data-pin-nopin="true" decoding="async" srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2019/11/cinnamon-sweet-potato-bread-4a-250x250.jpg 250w, https://www.cleaneatingkitchen.com/wp-content/uploads/2019/11/cinnamon-sweet-potato-bread-4a-500x500.jpg 500w, https://www.cleaneatingkitchen.com/wp-content/uploads/2019/11/cinnamon-sweet-potato-bread-4a-322x322.jpg 322w, https://www.cleaneatingkitchen.com/wp-content/uploads/2019/11/cinnamon-sweet-potato-bread-4a-644x644.jpg 644w, https://www.cleaneatingkitchen.com/wp-content/uploads/2019/11/cinnamon-sweet-potato-bread-4a-150x150.jpg 150w, https://www.cleaneatingkitchen.com/wp-content/uploads/2019/11/cinnamon-sweet-potato-bread-4a-96x96.jpg 96w, https://www.cleaneatingkitchen.com/wp-content/uploads/2019/11/cinnamon-sweet-potato-bread-4a-225x225.jpg 225w" sizes="(max-width: 250px) 100vw, 250px" /></noscript> <h3 class="title"><span class="inline">Gluten-Free Sweet Potato Bread</span></h3>
</a>
</div>
<div class="item">
<a href="https://www.cleaneatingkitchen.com/air-fryer-pumpkin-seeds/" rel="bookmark" class="block">
<img width="250" height="250" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20250%20250'%3E%3C/svg%3E" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" data-pin-nopin="true" decoding="async" data-lazy-srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/air-fried-pumpkin-seeds-hero-1-250x250.jpg 250w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/air-fried-pumpkin-seeds-hero-1-500x500.jpg 500w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/air-fried-pumpkin-seeds-hero-1-322x322.jpg 322w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/air-fried-pumpkin-seeds-hero-1-644x644.jpg 644w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/air-fried-pumpkin-seeds-hero-1-150x150.jpg 150w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/air-fried-pumpkin-seeds-hero-1-96x96.jpg 96w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/air-fried-pumpkin-seeds-hero-1-200x200.jpg 200w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/air-fried-pumpkin-seeds-hero-1-320x320.jpg 320w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/air-fried-pumpkin-seeds-hero-1-480x480.jpg 480w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/air-fried-pumpkin-seeds-hero-1-720x720.jpg 720w" data-lazy-sizes="(max-width: 250px) 100vw, 250px" data-lazy-src="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/air-fried-pumpkin-seeds-hero-1-250x250.jpg" /><noscript><img width="250" height="250" src="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/air-fried-pumpkin-seeds-hero-1-250x250.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" data-pin-nopin="true" decoding="async" srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/air-fried-pumpkin-seeds-hero-1-250x250.jpg 250w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/air-fried-pumpkin-seeds-hero-1-500x500.jpg 500w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/air-fried-pumpkin-seeds-hero-1-322x322.jpg 322w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/air-fried-pumpkin-seeds-hero-1-644x644.jpg 644w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/air-fried-pumpkin-seeds-hero-1-150x150.jpg 150w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/air-fried-pumpkin-seeds-hero-1-96x96.jpg 96w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/air-fried-pumpkin-seeds-hero-1-200x200.jpg 200w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/air-fried-pumpkin-seeds-hero-1-320x320.jpg 320w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/air-fried-pumpkin-seeds-hero-1-480x480.jpg 480w, https://www.cleaneatingkitchen.com/wp-content/uploads/2021/09/air-fried-pumpkin-seeds-hero-1-720x720.jpg 720w" sizes="(max-width: 250px) 100vw, 250px" /></noscript> <h3 class="title"><span class="inline">Air Fryer Pumpkin Seeds</span></h3>
</a>
</div>
</div>
<div class="more"><a href="https://www.cleaneatingkitchen.com/category/holiday-recipes/halloween-recipes/" class="more-link">More Halloween Recipes <i class="far fa-arrow-right"></i></a></div></div><div id="category-posts-8" class="widget-even widget-last widget-4 widget widget_category-posts"><h2 class="widget-title">Popular Recipes & Articles</h2><div class='items items-4-col category-posts'>
<div class="item">
<a href="https://www.cleaneatingkitchen.com/cant-be-beet-juice/" rel="bookmark" class="block">
<img width="250" height="250" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20250%20250'%3E%3C/svg%3E" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" data-pin-nopin="true" decoding="async" data-lazy-srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2020/01/beet-juice-recipe-5-250x250.jpg 250w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/01/beet-juice-recipe-5-500x500.jpg 500w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/01/beet-juice-recipe-5-322x322.jpg 322w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/01/beet-juice-recipe-5-644x644.jpg 644w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/01/beet-juice-recipe-5-150x150.jpg 150w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/01/beet-juice-recipe-5-225x225.jpg 225w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/01/beet-juice-recipe-5-200x200.jpg 200w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/01/beet-juice-recipe-5-320x320.jpg 320w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/01/beet-juice-recipe-5-480x480.jpg 480w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/01/beet-juice-recipe-5-720x720.jpg 720w" data-lazy-sizes="(max-width: 250px) 100vw, 250px" data-lazy-src="https://www.cleaneatingkitchen.com/wp-content/uploads/2020/01/beet-juice-recipe-5-250x250.jpg" /><noscript><img width="250" height="250" src="https://www.cleaneatingkitchen.com/wp-content/uploads/2020/01/beet-juice-recipe-5-250x250.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" data-pin-nopin="true" decoding="async" srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2020/01/beet-juice-recipe-5-250x250.jpg 250w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/01/beet-juice-recipe-5-500x500.jpg 500w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/01/beet-juice-recipe-5-322x322.jpg 322w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/01/beet-juice-recipe-5-644x644.jpg 644w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/01/beet-juice-recipe-5-150x150.jpg 150w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/01/beet-juice-recipe-5-225x225.jpg 225w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/01/beet-juice-recipe-5-200x200.jpg 200w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/01/beet-juice-recipe-5-320x320.jpg 320w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/01/beet-juice-recipe-5-480x480.jpg 480w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/01/beet-juice-recipe-5-720x720.jpg 720w" sizes="(max-width: 250px) 100vw, 250px" /></noscript> <h3 class="title"><span class="inline">Beet Juice Recipe (Juicer or Blender)</span></h3>
</a>
</div>
<div class="item">
<a href="https://www.cleaneatingkitchen.com/celery-juice-recipe/" rel="bookmark" class="block">
<img width="250" height="250" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20250%20250'%3E%3C/svg%3E" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" data-pin-nopin="true" decoding="async" data-lazy-srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2020/07/two-glasses-of-celery-juice-250x250.jpg 250w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/07/two-glasses-of-celery-juice-500x500.jpg 500w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/07/two-glasses-of-celery-juice-322x322.jpg 322w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/07/two-glasses-of-celery-juice-644x644.jpg 644w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/07/two-glasses-of-celery-juice-150x150.jpg 150w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/07/two-glasses-of-celery-juice-96x96.jpg 96w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/07/two-glasses-of-celery-juice-225x225.jpg 225w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/07/two-glasses-of-celery-juice-200x200.jpg 200w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/07/two-glasses-of-celery-juice-320x320.jpg 320w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/07/two-glasses-of-celery-juice-480x480.jpg 480w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/07/two-glasses-of-celery-juice-720x720.jpg 720w" data-lazy-sizes="(max-width: 250px) 100vw, 250px" data-lazy-src="https://www.cleaneatingkitchen.com/wp-content/uploads/2020/07/two-glasses-of-celery-juice-250x250.jpg" /><noscript><img width="250" height="250" src="https://www.cleaneatingkitchen.com/wp-content/uploads/2020/07/two-glasses-of-celery-juice-250x250.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" data-pin-nopin="true" decoding="async" srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2020/07/two-glasses-of-celery-juice-250x250.jpg 250w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/07/two-glasses-of-celery-juice-500x500.jpg 500w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/07/two-glasses-of-celery-juice-322x322.jpg 322w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/07/two-glasses-of-celery-juice-644x644.jpg 644w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/07/two-glasses-of-celery-juice-150x150.jpg 150w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/07/two-glasses-of-celery-juice-96x96.jpg 96w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/07/two-glasses-of-celery-juice-225x225.jpg 225w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/07/two-glasses-of-celery-juice-200x200.jpg 200w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/07/two-glasses-of-celery-juice-320x320.jpg 320w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/07/two-glasses-of-celery-juice-480x480.jpg 480w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/07/two-glasses-of-celery-juice-720x720.jpg 720w" sizes="(max-width: 250px) 100vw, 250px" /></noscript> <h3 class="title"><span class="inline">Celery Juice Recipe (Juicer or Blender)</span></h3>
</a>
</div>
<div class="item">
<a href="https://www.cleaneatingkitchen.com/sugar-detox-tips-sugar-free/" rel="bookmark" class="block">
<img width="250" height="250" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20250%20250'%3E%3C/svg%3E" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" data-pin-nopin="true" decoding="async" data-lazy-srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2020/04/detox-sign-surrounded-by-veggies-250x250.jpg 250w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/04/detox-sign-surrounded-by-veggies-500x500.jpg 500w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/04/detox-sign-surrounded-by-veggies-322x322.jpg 322w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/04/detox-sign-surrounded-by-veggies-644x644.jpg 644w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/04/detox-sign-surrounded-by-veggies-150x150.jpg 150w" data-lazy-sizes="(max-width: 250px) 100vw, 250px" data-lazy-src="https://www.cleaneatingkitchen.com/wp-content/uploads/2020/04/detox-sign-surrounded-by-veggies-250x250.jpg" /><noscript><img width="250" height="250" src="https://www.cleaneatingkitchen.com/wp-content/uploads/2020/04/detox-sign-surrounded-by-veggies-250x250.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" data-pin-nopin="true" decoding="async" srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2020/04/detox-sign-surrounded-by-veggies-250x250.jpg 250w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/04/detox-sign-surrounded-by-veggies-500x500.jpg 500w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/04/detox-sign-surrounded-by-veggies-322x322.jpg 322w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/04/detox-sign-surrounded-by-veggies-644x644.jpg 644w, https://www.cleaneatingkitchen.com/wp-content/uploads/2020/04/detox-sign-surrounded-by-veggies-150x150.jpg 150w" sizes="(max-width: 250px) 100vw, 250px" /></noscript> <h3 class="title"><span class="inline">10+ Sugar Detox Tips (No Withdrawal)</span></h3>
</a>
</div>
<div class="item">
<a href="https://www.cleaneatingkitchen.com/vegetable-detox-juice/" rel="bookmark" class="block">
<img width="250" height="250" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20250%20250'%3E%3C/svg%3E" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" data-pin-nopin="true" decoding="async" data-lazy-srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2022/02/green-detox-juice-20-250x250.jpg 250w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/02/green-detox-juice-20-500x500.jpg 500w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/02/green-detox-juice-20-322x322.jpg 322w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/02/green-detox-juice-20-644x644.jpg 644w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/02/green-detox-juice-20-150x150.jpg 150w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/02/green-detox-juice-20-96x96.jpg 96w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/02/green-detox-juice-20-225x225.jpg 225w" data-lazy-sizes="(max-width: 250px) 100vw, 250px" data-lazy-src="https://www.cleaneatingkitchen.com/wp-content/uploads/2022/02/green-detox-juice-20-250x250.jpg" /><noscript><img width="250" height="250" src="https://www.cleaneatingkitchen.com/wp-content/uploads/2022/02/green-detox-juice-20-250x250.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" data-pin-nopin="true" decoding="async" srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2022/02/green-detox-juice-20-250x250.jpg 250w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/02/green-detox-juice-20-500x500.jpg 500w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/02/green-detox-juice-20-322x322.jpg 322w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/02/green-detox-juice-20-644x644.jpg 644w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/02/green-detox-juice-20-150x150.jpg 150w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/02/green-detox-juice-20-96x96.jpg 96w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/02/green-detox-juice-20-225x225.jpg 225w" sizes="(max-width: 250px) 100vw, 250px" /></noscript> <h3 class="title"><span class="inline">Green Veggie Detox Juice</span></h3>
</a>
</div>
<div class="item">
<a href="https://www.cleaneatingkitchen.com/soft-foods-after-oral-surgery/" rel="bookmark" class="block">
<img width="250" height="250" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20250%20250'%3E%3C/svg%3E" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" data-pin-nopin="true" decoding="async" data-lazy-srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2023/10/Cleaning-Eating-Kitchen-Instant-Pot-Carrot-Ginger-Soup-23-250x250.jpg 250w, https://www.cleaneatingkitchen.com/wp-content/uploads/2023/10/Cleaning-Eating-Kitchen-Instant-Pot-Carrot-Ginger-Soup-23-500x500.jpg 500w, https://www.cleaneatingkitchen.com/wp-content/uploads/2023/10/Cleaning-Eating-Kitchen-Instant-Pot-Carrot-Ginger-Soup-23-322x322.jpg 322w, https://www.cleaneatingkitchen.com/wp-content/uploads/2023/10/Cleaning-Eating-Kitchen-Instant-Pot-Carrot-Ginger-Soup-23-644x644.jpg 644w, https://www.cleaneatingkitchen.com/wp-content/uploads/2023/10/Cleaning-Eating-Kitchen-Instant-Pot-Carrot-Ginger-Soup-23-150x150.jpg 150w, https://www.cleaneatingkitchen.com/wp-content/uploads/2023/10/Cleaning-Eating-Kitchen-Instant-Pot-Carrot-Ginger-Soup-23-96x96.jpg 96w" data-lazy-sizes="(max-width: 250px) 100vw, 250px" data-lazy-src="https://www.cleaneatingkitchen.com/wp-content/uploads/2023/10/Cleaning-Eating-Kitchen-Instant-Pot-Carrot-Ginger-Soup-23-250x250.jpg" /><noscript><img width="250" height="250" src="https://www.cleaneatingkitchen.com/wp-content/uploads/2023/10/Cleaning-Eating-Kitchen-Instant-Pot-Carrot-Ginger-Soup-23-250x250.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" data-pin-nopin="true" decoding="async" srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2023/10/Cleaning-Eating-Kitchen-Instant-Pot-Carrot-Ginger-Soup-23-250x250.jpg 250w, https://www.cleaneatingkitchen.com/wp-content/uploads/2023/10/Cleaning-Eating-Kitchen-Instant-Pot-Carrot-Ginger-Soup-23-500x500.jpg 500w, https://www.cleaneatingkitchen.com/wp-content/uploads/2023/10/Cleaning-Eating-Kitchen-Instant-Pot-Carrot-Ginger-Soup-23-322x322.jpg 322w, https://www.cleaneatingkitchen.com/wp-content/uploads/2023/10/Cleaning-Eating-Kitchen-Instant-Pot-Carrot-Ginger-Soup-23-644x644.jpg 644w, https://www.cleaneatingkitchen.com/wp-content/uploads/2023/10/Cleaning-Eating-Kitchen-Instant-Pot-Carrot-Ginger-Soup-23-150x150.jpg 150w, https://www.cleaneatingkitchen.com/wp-content/uploads/2023/10/Cleaning-Eating-Kitchen-Instant-Pot-Carrot-Ginger-Soup-23-96x96.jpg 96w" sizes="(max-width: 250px) 100vw, 250px" /></noscript> <h3 class="title"><span class="inline">31 Soft Food Ideas & Recipes (When You Can’t Chew)</span></h3>
</a>
</div>
<div class="item">
<a href="https://www.cleaneatingkitchen.com/foods-that-cleanse-the-liver/" rel="bookmark" class="block">
<img width="250" height="250" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20250%20250'%3E%3C/svg%3E" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" data-pin-nopin="true" decoding="async" data-lazy-srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2022/10/healthy-foods-to-support-liver-250x250.jpg 250w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/10/healthy-foods-to-support-liver-500x500.jpg 500w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/10/healthy-foods-to-support-liver-322x322.jpg 322w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/10/healthy-foods-to-support-liver-644x644.jpg 644w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/10/healthy-foods-to-support-liver-150x150.jpg 150w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/10/healthy-foods-to-support-liver-96x96.jpg 96w" data-lazy-sizes="(max-width: 250px) 100vw, 250px" data-lazy-src="https://www.cleaneatingkitchen.com/wp-content/uploads/2022/10/healthy-foods-to-support-liver-250x250.jpg" /><noscript><img width="250" height="250" src="https://www.cleaneatingkitchen.com/wp-content/uploads/2022/10/healthy-foods-to-support-liver-250x250.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" data-pin-nopin="true" decoding="async" srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2022/10/healthy-foods-to-support-liver-250x250.jpg 250w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/10/healthy-foods-to-support-liver-500x500.jpg 500w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/10/healthy-foods-to-support-liver-322x322.jpg 322w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/10/healthy-foods-to-support-liver-644x644.jpg 644w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/10/healthy-foods-to-support-liver-150x150.jpg 150w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/10/healthy-foods-to-support-liver-96x96.jpg 96w" sizes="(max-width: 250px) 100vw, 250px" /></noscript> <h3 class="title"><span class="inline">13 Foods That Support the Liver Naturally</span></h3>
</a>
</div>
</div>
<div class="more"><a href="https://www.cleaneatingkitchen.com/category/reader-favorites/" class="more-link">More Popular Recipes & Articles <i class="far fa-arrow-right"></i></a></div></div> </div>
<div class="clear"></div>
</div><!-- end #sidebar -->
</div> <!-- end #wrapper -->
<div class="clear"></div>
<div class="sub-footer">
<div id="media_image-1" class="widget-odd widget-first widget-1 press press-desktop home-section footer-section widget widget_media_image"><div class="wrap"><h2 class="block-title">As Seen On…</h2><img width="1900" height="250" src="https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/press.png" class="image wp-image-73557 attachment-full size-full" alt="Press media logos" style="max-width: 100%; height: auto;" title="As Seen On..." decoding="async" srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/press.png 1900w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/press-300x39.png 300w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/press-700x92.png 700w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/press-768x101.png 768w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/press-1536x202.png 1536w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/press-150x20.png 150w" sizes="(max-width: 1900px) 100vw, 1900px" /></div></div><div id="media_image-2" class="widget-even widget-last widget-2 press press-mobile home-section footer-section widget widget_media_image"><div class="wrap"><h2 class="block-title">As Seen On…</h2><img width="1228" height="381" src="https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/press-mobile.png" class="image wp-image-73558 attachment-full size-full" alt="Press media logos" style="max-width: 100%; height: auto;" title="As Seen On..." decoding="async" srcset="https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/press-mobile.png 1228w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/press-mobile-300x93.png 300w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/press-mobile-700x217.png 700w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/press-mobile-768x238.png 768w, https://www.cleaneatingkitchen.com/wp-content/uploads/2022/07/press-mobile-150x47.png 150w" sizes="(max-width: 1228px) 100vw, 1228px" /></div></div> </div>
<div class="footer">
<div class="wrap">
<div id="custom_html-6" class="widget_text widget-odd widget-first widget-1 subscribe footer-widget widget widget_custom_html"><h2 class="block-title">Subscribe Now</h2><div class="textwidget custom-html-widget"><p>
get my clean eating quick start guide:
</p>
<form action="https://cleaneatingkitchen.us5.list-manage.com/subscribe/post?u=7c6b9a1d7b331f85b8c69b8c2&id=93809fbfd0" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate email-form" target="_blank" novalidate="">
<input type="email" value="" name="EMAIL" class="required email-input" id="mce-EMAIL" placeholder="email address" aria-label="email address">
<button type="submit" class="email-submit" name="subscribe" id="mc-embedded-subscribe" aria-label="Subscribe"><i class="far fa-arrow-right"></i>
</button>
<div id="mce-responses" class="clear">
<div class="response" id="mce-error-response" style="display:none"></div>
<div class="response" id="mce-success-response" style="display:none"></div>
</div> <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
<div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_7c6b9a1d7b331f85b8c69b8c2_93809fbfd0" tabindex="-1" value=""></div>
</form></div></div><div id="nav_menu-4" class="widget-even widget-2 footer-widget widget widget_nav_menu"><h2 class="block-title">Connect</h2><div class="menu-footer-3-container"><ul id="menu-footer-3" class="menu"><li id="menu-item-37779" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-37779"><a target="_blank" href="https://www.facebook.com/Cleaneatingcarrie/">Facebook</a></li>
<li id="menu-item-37780" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-37780"><a target="_blank" href="https://www.youtube.com/channel/UCDF9Mm65XQYaTCSmNa_BH_A">YouTube</a></li>
<li id="menu-item-37781" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-37781"><a target="_blank" href="http://instagram.com/cleaneatingcarrie">Instagram</a></li>
<li id="menu-item-37782" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-37782"><a target="_blank" href="http://www.pinterest.com/cleaneatingkitchen/">Pinterest</a></li>
<li id="menu-item-37783" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-37783"><a target="_blank" href="http://eepurl.com/bhuYxL">Newsletter</a></li>
</ul></div></div><div id="nav_menu-5" class="widget-odd widget-3 footer-widget widget widget_nav_menu"><h2 class="block-title">Browse</h2><div class="menu-footer-2-container"><ul id="menu-footer-2" class="menu"><li id="menu-item-37774" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-37774"><a href="https://www.cleaneatingkitchen.com/recipes/">Recipes</a></li>
<li id="menu-item-37777" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-37777"><a href="https://www.cleaneatingkitchen.com/category/clean-eating-basics/">Clean Eating Basics</a></li>
<li id="menu-item-37778" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-37778"><a href="https://www.cleaneatingkitchen.com/jumpstart/">30 Day Sugar Free Challenge</a></li>
<li id="menu-item-62368" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-62368"><a href="https://www.cleaneatingkitchen.com/category/womens-health/">Women’s Health</a></li>
<li id="menu-item-63964" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-63964"><a href="https://www.cleaneatingkitchen.com/podcast/">Podcast</a></li>
</ul></div></div><div id="nav_menu-6" class="widget-even widget-last widget-4 footer-widget widget widget_nav_menu"><h2 class="block-title">Info</h2><div class="menu-footer-1-container"><ul id="menu-footer-1" class="menu"><li id="menu-item-37769" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-37769"><a href="https://www.cleaneatingkitchen.com/about/">About</a></li>
<li id="menu-item-50763" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-50763"><a href="https://www.cleaneatingkitchen.com/about/what-is-clean-eating/">What is Clean Eating?</a></li>
<li id="menu-item-37771" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-37771"><a href="https://www.cleaneatingkitchen.com/contact/">Contact</a></li>
<li id="menu-item-37772" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-37772"><a href="https://www.cleaneatingkitchen.com/privacy-policy/">Privacy & Comment Policy</a></li>
<li id="menu-item-37773" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-37773"><a href="https://www.cleaneatingkitchen.com/disclaimer/">Disclaimer & Accessibility</a></li>
</ul></div></div>
<div class="copyright">
<div class="logo">
<a href="https://www.cleaneatingkitchen.com/" title="Home" rel="home">
<img width="25" height="30" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2025%2030'%3E%3C/svg%3E" alt="Heart Icon" class="alignleft" data-lazy-src="https://www.cleaneatingkitchen.com/wp-content/themes/cleaneatingkitchen2022/images/icon.png"/><noscript><img width="25" height="30" src="https://www.cleaneatingkitchen.com/wp-content/themes/cleaneatingkitchen2022/images/icon.png" alt="Heart Icon" class="alignleft"/></noscript>
</a>
</div>
©2025 Clean Eating Kitchen.
<br/><em>Design by <a href="http://www.purrdesign.com" target="_blank" rel="nofollow">Purr</a>.</em>
</div>
<div class="clear"></div>
</div>
</div>
<div id="mv-grow-data" data-settings='{"floatingSidebar":{"stopSelector":false},"general":{"contentSelector":false,"show_count":{"content":false,"sidebar":true,"pop_up":false,"sticky_bar":false},"isTrellis":false,"license_last4":"3768"},"post":{"ID":24730,"categories":[{"ID":6},{"ID":7415},{"ID":1800}]},"shareCounts":{"facebook":15,"pinterest":233,"reddit":0,"twitter":0},"shouldRun":true,"buttonSVG":{"share":{"height":32,"width":26,"paths":["M20.8 20.8q1.984 0 3.392 1.376t1.408 3.424q0 1.984-1.408 3.392t-3.392 1.408-3.392-1.408-1.408-3.392q0-0.192 0.032-0.448t0.032-0.384l-8.32-4.992q-1.344 1.024-2.944 1.024-1.984 0-3.392-1.408t-1.408-3.392 1.408-3.392 3.392-1.408q1.728 0 2.944 0.96l8.32-4.992q0-0.128-0.032-0.384t-0.032-0.384q0-1.984 1.408-3.392t3.392-1.408 3.392 1.376 1.408 3.424q0 1.984-1.408 3.392t-3.392 1.408q-1.664 0-2.88-1.024l-8.384 4.992q0.064 0.256 0.064 0.832 0 0.512-0.064 0.768l8.384 4.992q1.152-0.96 2.88-0.96z"]},"facebook":{"height":32,"width":18,"paths":["M17.12 0.224v4.704h-2.784q-1.536 0-2.080 0.64t-0.544 1.92v3.392h5.248l-0.704 5.28h-4.544v13.568h-5.472v-13.568h-4.544v-5.28h4.544v-3.904q0-3.328 1.856-5.152t4.96-1.824q2.624 0 4.064 0.224z"]},"pinterest":{"height":32,"width":23,"paths":["M0 10.656q0-1.92 0.672-3.616t1.856-2.976 2.72-2.208 3.296-1.408 3.616-0.448q2.816 0 5.248 1.184t3.936 3.456 1.504 5.12q0 1.728-0.32 3.36t-1.088 3.168-1.792 2.656-2.56 1.856-3.392 0.672q-1.216 0-2.4-0.576t-1.728-1.568q-0.16 0.704-0.48 2.016t-0.448 1.696-0.352 1.28-0.48 1.248-0.544 1.12-0.832 1.408-1.12 1.536l-0.224 0.096-0.16-0.192q-0.288-2.816-0.288-3.36 0-1.632 0.384-3.68t1.184-5.152 0.928-3.616q-0.576-1.152-0.576-3.008 0-1.504 0.928-2.784t2.368-1.312q1.088 0 1.696 0.736t0.608 1.824q0 1.184-0.768 3.392t-0.8 3.36q0 1.12 0.8 1.856t1.952 0.736q0.992 0 1.824-0.448t1.408-1.216 0.992-1.696 0.672-1.952 0.352-1.984 0.128-1.792q0-3.072-1.952-4.8t-5.12-1.728q-3.552 0-5.952 2.304t-2.4 5.856q0 0.8 0.224 1.536t0.48 1.152 0.48 0.832 0.224 0.544q0 0.48-0.256 1.28t-0.672 0.8q-0.032 0-0.288-0.032-0.928-0.288-1.632-0.992t-1.088-1.696-0.576-1.92-0.192-1.92z"]},"email":{"height":32,"width":28,"paths":["M18.56 17.408l8.256 8.544h-25.248l8.288-8.448 4.32 4.064zM2.016 6.048h24.32l-12.16 11.584zM20.128 15.936l8.224-7.744v16.256zM0 24.448v-16.256l8.288 7.776z"]},"sms":{"height":32,"width":32,"paths":["M23.8.4h-15.6C3.9.4.4,3.8.4,8.2v10.9c0,4.3,3.5,7.8,7.8,7.8h2.3c.4,0,1,.3,1.3.6l2.3,3.1c1,1.4,2.7,1.4,3.8,0l2.3-3.1c.3-.4.8-.6,1.3-.6h2.3c4.3,0,7.8-3.5,7.8-7.8v-10.9c0-4.3-3.5-7.8-7.8-7.8ZM5.3,12.4c.1.1.3.2.6.3l1.4.4c.7.2,1.3.5,1.7,1.1.4.5.6,1.1.6,1.8s-.1,1.2-.4,1.6c-.3.4-.7.8-1.2,1s-1.2.3-1.9.3-.9,0-1.3-.2-.8-.3-1.2-.5-.6-.5-.9-.7c-.2-.3-.4-.6-.4-.9l2.5-.7c0,.2.2.4.4.6.2.2.5.2.8.3.3,0,.5,0,.7-.2.2-.1.3-.3.3-.6s0-.3-.2-.4c-.1-.1-.3-.2-.5-.3l-1.4-.4c-.5-.1-.9-.3-1.3-.6s-.6-.6-.8-1c-.2-.4-.3-.8-.3-1.3,0-.9.3-1.7.9-2.2s1.5-.8,2.6-.8,1.1,0,1.6.2c.5.2.9.4,1.2.7s.6.8.8,1.3l-2.5.7c0-.2-.2-.4-.3-.5-.2-.2-.4-.3-.8-.3s-.5,0-.7.2-.3.3-.3.6,0,.3.2.4ZM21.1,18.7h-2.5v-5.7l-2.6,3.7-2.6-3.7v5.7h-2.5v-9.6h2.8l2.3,3.4,2.3-3.4h2.8v9.6ZM25.4,12.4c.1.1.3.2.6.3l1.4.4c.7.2,1.3.5,1.7,1.1s.6,1.1.6,1.8-.1,1.2-.4,1.6c-.3.4-.7.8-1.2,1-.5.2-1.2.3-1.9.3s-.9,0-1.3-.2c-.4-.1-.8-.3-1.2-.5s-.6-.5-.9-.7c-.2-.3-.4-.6-.4-.9l2.5-.7c0,.2.2.4.4.6.2.2.5.2.8.3.3,0,.5,0,.7-.2.2-.1.3-.3.3-.6s0-.3-.2-.4c-.1-.1-.3-.2-.5-.3l-1.4-.4c-.5-.1-.9-.3-1.3-.6s-.6-.6-.8-1c-.2-.4-.3-.8-.3-1.3,0-.9.3-1.7.9-2.2s1.5-.8,2.6-.8,1.1,0,1.6.2c.5.2.9.4,1.2.7.3.3.6.8.8,1.3l-2.5.7c0-.2-.2-.4-.3-.5s-.4-.3-.8-.3-.5,0-.7.2-.3.3-.3.6,0,.3.2.4Z"]},"reddit":{"height":32,"width":32,"paths":["M0 15.616q0-0.736 0.288-1.408t0.768-1.184 1.152-0.8 1.472-0.288q1.376 0 2.368 0.928 1.888-1.184 4.32-1.888t5.184-0.8l2.56-7.296 6.272 1.504q0.288-0.832 1.056-1.344t1.696-0.544q1.248 0 2.144 0.864t0.896 2.144-0.896 2.112-2.112 0.864-2.144-0.864-0.896-2.112l-5.248-1.248-2.144 5.92q2.688 0.128 5.024 0.864t4.128 1.824q1.056-0.928 2.432-0.928 0.736 0 1.44 0.288t1.184 0.8 0.768 1.184 0.288 1.408q0 0.992-0.48 1.824t-1.28 1.312q0.128 0.544 0.128 1.12 0 1.92-1.12 3.712t-3.104 3.104-4.576 2.048-5.632 0.768q-2.944 0-5.568-0.768t-4.576-2.048-3.104-3.104-1.12-3.712q0-0.32 0.064-0.64 0-0.288 0.064-0.544-0.768-0.512-1.216-1.28t-0.48-1.792zM2.752 19.872q0 1.76 1.024 3.264t2.816 2.688 4.224 1.824 5.152 0.672 5.12-0.672 4.224-1.824 2.848-2.688 1.024-3.264-1.024-3.328-2.848-2.72-4.224-1.792-5.12-0.672-5.152 0.672-4.224 1.792-2.816 2.72-1.024 3.328zM9.12 18.144q0-0.896 0.704-1.6t1.6-0.672 1.6 0.672 0.672 1.6-0.672 1.568-1.6 0.672-1.6-0.672-0.704-1.568zM10.816 23.424q0.384-0.32 1.056 0.256 0.192 0.192 0.416 0.32t0.448 0.224 0.416 0.16 0.448 0.096 0.416 0.096 0.448 0.096 0.448 0.064 0.48 0.032 0.544 0.032q2.432-0.128 4.256-1.12 0.672-0.64 1.12-0.256 0.32 0.576-0.384 1.12-1.856 1.44-4.992 1.44-3.36-0.064-4.864-1.44-0.832-0.608-0.256-1.12zM18.56 18.112q0-0.928 0.672-1.6t1.6-0.64 1.632 0.64 0.672 1.6-0.672 1.6-1.632 0.672-1.6-0.672-0.672-1.6z"]}},"saveThis":{"spotlight":"","successMessage":"","consent":"","consentForMailingList":"","position":"","mailingListService":""},"utmParams":[],"pinterest":{"pinDescriptionSource":"post_pinterest_description","pinDescription":"For a creamy and decadent dessert that is completely plant-based, try this Vegan Panna Cotta recipe served with Strawberry Sauce. This coconut-based dessert is reminiscent of the authentic Italian version made with cream.","pinTitle":"Vegan Panna Cotta with Strawberry Sauce","pinImageURL":"https:\/\/www.cleaneatingkitchen.com\/wp-content\/uploads\/2018\/07\/vegan-panna-cotta-pin.jpg","pinnableImages":"all_images","postImageHidden":"yes","postImageHiddenMultiple":"yes","lazyLoadCompatibility":null,"buttonPosition":"top-left","buttonShape":"rectangular","showButtonLabel":null,"buttonLabelText":"","buttonShareBehavior":"all_images","hoverButtonShareBehavior":"hover_image","minimumImageWidth":"300","minimumImageHeight":"300","showImageOverlay":"yes","alwaysShowMobile":null,"alwaysShowDesktop":null,"postTypeDisplay":["post"],"imagePinIt":"1","hasContent":"1","shareURL":"https:\/\/www.cleaneatingkitchen.com\/paleo-easy-coconut-panna-cotta\/","bypassClasses":["mv-grow-bypass","no_pin"],"bypassDenyClasses":["dpsp-post-pinterest-image-hidden-inner","mv-create-pinterest"],"ignoreSelectors":[".mv-list-img-container"],"hoverButtonIgnoreClasses":["lazyloaded","lazyload","lazy","loading","loaded","td-animation-stack","ezlazyloaded","penci-lazy","ut-lazy","ut-image-loaded","ut-animated-image","skip-lazy"],"disableIframes":null}}'></div><aside id="dpsp-floating-sidebar" aria-label="social sharing sidebar" class="dpsp-shape-rounded dpsp-size-small dpsp-has-buttons-count dpsp-hide-on-mobile dpsp-position-left dpsp-button-style-8 dpsp-no-animation" data-trigger-scroll="false">
<ul class="dpsp-networks-btns-wrapper dpsp-networks-btns-share dpsp-networks-btns-sidebar dpsp-has-button-icon-animation">
<li class="dpsp-network-list-item dpsp-network-list-item-facebook">
<a rel="nofollow noopener" href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fwww.cleaneatingkitchen.com%2Fpaleo-easy-coconut-panna-cotta%2F&t=Vegan%20Panna%20Cotta%20with%20Strawberry%20Sauce" class="dpsp-network-btn dpsp-facebook dpsp-has-count dpsp-first dpsp-has-label-mobile" target="_blank" aria-label="Share on Facebook" title="Share on Facebook"> <span class="dpsp-network-icon "><span class="dpsp-network-icon-inner"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 18 32"><path d="M17.12 0.224v4.704h-2.784q-1.536 0-2.080 0.64t-0.544 1.92v3.392h5.248l-0.704 5.28h-4.544v13.568h-5.472v-13.568h-4.544v-5.28h4.544v-3.904q0-3.328 1.856-5.152t4.96-1.824q2.624 0 4.064 0.224z"></path></svg></span></span>
<span class="dpsp-network-count">15</span></a></li>
<li class="dpsp-network-list-item dpsp-network-list-item-pinterest">
<button data-href="#" class="dpsp-network-btn dpsp-pinterest dpsp-has-count dpsp-has-label-mobile" aria-label="Save to Pinterest" title="Save to Pinterest"> <span class="dpsp-network-icon "><span class="dpsp-network-icon-inner"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 23 32"><path d="M0 10.656q0-1.92 0.672-3.616t1.856-2.976 2.72-2.208 3.296-1.408 3.616-0.448q2.816 0 5.248 1.184t3.936 3.456 1.504 5.12q0 1.728-0.32 3.36t-1.088 3.168-1.792 2.656-2.56 1.856-3.392 0.672q-1.216 0-2.4-0.576t-1.728-1.568q-0.16 0.704-0.48 2.016t-0.448 1.696-0.352 1.28-0.48 1.248-0.544 1.12-0.832 1.408-1.12 1.536l-0.224 0.096-0.16-0.192q-0.288-2.816-0.288-3.36 0-1.632 0.384-3.68t1.184-5.152 0.928-3.616q-0.576-1.152-0.576-3.008 0-1.504 0.928-2.784t2.368-1.312q1.088 0 1.696 0.736t0.608 1.824q0 1.184-0.768 3.392t-0.8 3.36q0 1.12 0.8 1.856t1.952 0.736q0.992 0 1.824-0.448t1.408-1.216 0.992-1.696 0.672-1.952 0.352-1.984 0.128-1.792q0-3.072-1.952-4.8t-5.12-1.728q-3.552 0-5.952 2.304t-2.4 5.856q0 0.8 0.224 1.536t0.48 1.152 0.48 0.832 0.224 0.544q0 0.48-0.256 1.28t-0.672 0.8q-0.032 0-0.288-0.032-0.928-0.288-1.632-0.992t-1.088-1.696-0.576-1.92-0.192-1.92z"></path></svg></span></span>
<span class="dpsp-network-count">233</span></button></li>
<li class="dpsp-network-list-item dpsp-network-list-item-email">
<a rel="nofollow noopener" href="mailto:?subject=Vegan%20Panna%20Cotta%20with%20Strawberry%20Sauce&body=https%3A%2F%2Fwww.cleaneatingkitchen.com%2Fpaleo-easy-coconut-panna-cotta%2F" class="dpsp-network-btn dpsp-email dpsp-no-label dpsp-has-label-mobile" target="_blank" aria-label="Send over email" title="Send over email"> <span class="dpsp-network-icon "><span class="dpsp-network-icon-inner"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 28 32"><path d="M18.56 17.408l8.256 8.544h-25.248l8.288-8.448 4.32 4.064zM2.016 6.048h24.32l-12.16 11.584zM20.128 15.936l8.224-7.744v16.256zM0 24.448v-16.256l8.288 7.776z"></path></svg></span></span>
</a></li>
<li class="dpsp-network-list-item dpsp-network-list-item-sms">
<a rel="nofollow noopener" href="sms:?&body=Vegan%20Panna%20Cotta%20with%20Strawberry%20Sauce%20https%3A%2F%2Fwww.cleaneatingkitchen.com%2Fpaleo-easy-coconut-panna-cotta%2F" class="dpsp-network-btn dpsp-sms dpsp-no-label dpsp-has-label-mobile" target="_blank" aria-label="Share on SMS" title="Share on SMS"> <span class="dpsp-network-icon "><span class="dpsp-network-icon-inner"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M23.8.4h-15.6C3.9.4.4,3.8.4,8.2v10.9c0,4.3,3.5,7.8,7.8,7.8h2.3c.4,0,1,.3,1.3.6l2.3,3.1c1,1.4,2.7,1.4,3.8,0l2.3-3.1c.3-.4.8-.6,1.3-.6h2.3c4.3,0,7.8-3.5,7.8-7.8v-10.9c0-4.3-3.5-7.8-7.8-7.8ZM5.3,12.4c.1.1.3.2.6.3l1.4.4c.7.2,1.3.5,1.7,1.1.4.5.6,1.1.6,1.8s-.1,1.2-.4,1.6c-.3.4-.7.8-1.2,1s-1.2.3-1.9.3-.9,0-1.3-.2-.8-.3-1.2-.5-.6-.5-.9-.7c-.2-.3-.4-.6-.4-.9l2.5-.7c0,.2.2.4.4.6.2.2.5.2.8.3.3,0,.5,0,.7-.2.2-.1.3-.3.3-.6s0-.3-.2-.4c-.1-.1-.3-.2-.5-.3l-1.4-.4c-.5-.1-.9-.3-1.3-.6s-.6-.6-.8-1c-.2-.4-.3-.8-.3-1.3,0-.9.3-1.7.9-2.2s1.5-.8,2.6-.8,1.1,0,1.6.2c.5.2.9.4,1.2.7s.6.8.8,1.3l-2.5.7c0-.2-.2-.4-.3-.5-.2-.2-.4-.3-.8-.3s-.5,0-.7.2-.3.3-.3.6,0,.3.2.4ZM21.1,18.7h-2.5v-5.7l-2.6,3.7-2.6-3.7v5.7h-2.5v-9.6h2.8l2.3,3.4,2.3-3.4h2.8v9.6ZM25.4,12.4c.1.1.3.2.6.3l1.4.4c.7.2,1.3.5,1.7,1.1s.6,1.1.6,1.8-.1,1.2-.4,1.6c-.3.4-.7.8-1.2,1-.5.2-1.2.3-1.9.3s-.9,0-1.3-.2c-.4-.1-.8-.3-1.2-.5s-.6-.5-.9-.7c-.2-.3-.4-.6-.4-.9l2.5-.7c0,.2.2.4.4.6.2.2.5.2.8.3.3,0,.5,0,.7-.2.2-.1.3-.3.3-.6s0-.3-.2-.4c-.1-.1-.3-.2-.5-.3l-1.4-.4c-.5-.1-.9-.3-1.3-.6s-.6-.6-.8-1c-.2-.4-.3-.8-.3-1.3,0-.9.3-1.7.9-2.2s1.5-.8,2.6-.8,1.1,0,1.6.2c.5.2.9.4,1.2.7.3.3.6.8.8,1.3l-2.5.7c0-.2-.2-.4-.3-.5s-.4-.3-.8-.3-.5,0-.7.2-.3.3-.3.6,0,.3.2.4Z"></path></svg></span></span>
</a></li>
</ul></aside>
<link data-minify="1" rel='stylesheet' id='tasty-recipes-pro-main-css' href='https://www.cleaneatingkitchen.com/wp-content/cache/min/1/wp-content/plugins/tasty-recipes/assets/dist/recipe.css?ver=1759168363' type='text/css' media='all' />
<link data-minify="1" rel='stylesheet' id='tasty-recipes-pro-block-editor-style-css' href='https://www.cleaneatingkitchen.com/wp-content/cache/min/1/wp-content/plugins/tasty-recipes/assets/dist/block-editor.css?ver=1759168363' type='text/css' media='all' />
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-content/plugins/faq-schema-block-to-accordion/assets/js/YSFA-JS.min.js?ver=1.0.5" id="YSFA-js-js" data-rocket-defer defer></script>
<script type="text/javascript" id="wpil-frontend-script-js-extra">
/* <![CDATA[ */
var wpilFrontend = {"ajaxUrl":"\/wp-admin\/admin-ajax.php","postId":"24730","postType":"post","openInternalInNewTab":"0","openExternalInNewTab":"0","disableClicks":"0","openLinksWithJS":"0","trackAllElementClicks":"0","clicksI18n":{"imageNoText":"Image in link: No Text","imageText":"Image Title: ","noText":"No Anchor Text Found"}};
/* ]]> */
</script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-content/plugins/link-whisper/js/frontend.min.js?ver=1757948979" id="wpil-frontend-script-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-content/plugins/tasty-recipes/assets/js/cook-mode.js?ver=3.16.2" id="tasty-recipes-cook-mode-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" id="rocket-browser-checker-js-after">
/* <![CDATA[ */
"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":"\/web-stories\/|\/(?:.+\/)?feed(?:\/(?:.+\/?)?)?$|\/(?:.+\/)?embed\/|\/(index.php\/)?(.*)wp-json(\/.*|$)|\/refer\/|\/go\/|\/recommend\/|\/recommends\/","usesTrailingSlash":"1","imageExt":"jpg|jpeg|gif|png|tiff|bmp|webp|avif|pdf|doc|docx|xls|xlsx|php","fileExt":"jpg|jpeg|gif|png|tiff|bmp|webp|avif|pdf|doc|docx|xls|xlsx|php|html|htm","siteUrl":"https:\/\/www.cleaneatingkitchen.com","onHoverDelay":"100","rateThrottle":"3"};
/* ]]> */
</script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" id="rocket-preload-links-js-after">
/* <![CDATA[ */
(function() {
"use strict";var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e=function(){function i(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(e,t,n){return t&&i(e.prototype,t),n&&i(e,n),e}}();function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var t=function(){function n(e,t){i(this,n),this.browser=e,this.config=t,this.options=this.browser.options,this.prefetched=new Set,this.eventTime=null,this.threshold=1111,this.numOnHover=0}return e(n,[{key:"init",value:function(){!this.browser.supportsLinkPrefetch()||this.browser.isDataSaverModeOn()||this.browser.isSlowConnection()||(this.regex={excludeUris:RegExp(this.config.excludeUris,"i"),images:RegExp(".("+this.config.imageExt+")$","i"),fileExt:RegExp(".("+this.config.fileExt+")$","i")},this._initListeners(this))}},{key:"_initListeners",value:function(e){-1<this.config.onHoverDelay&&document.addEventListener("mouseover",e.listener.bind(e),e.listenerOptions),document.addEventListener("mousedown",e.listener.bind(e),e.listenerOptions),document.addEventListener("touchstart",e.listener.bind(e),e.listenerOptions)}},{key:"listener",value:function(e){var t=e.target.closest("a"),n=this._prepareUrl(t);if(null!==n)switch(e.type){case"mousedown":case"touchstart":this._addPrefetchLink(n);break;case"mouseover":this._earlyPrefetch(t,n,"mouseout")}}},{key:"_earlyPrefetch",value:function(t,e,n){var i=this,r=setTimeout(function(){if(r=null,0===i.numOnHover)setTimeout(function(){return i.numOnHover=0},1e3);else if(i.numOnHover>i.config.rateThrottle)return;i.numOnHover++,i._addPrefetchLink(e)},this.config.onHoverDelay);t.addEventListener(n,function e(){t.removeEventListener(n,e,{passive:!0}),null!==r&&(clearTimeout(r),r=null)},{passive:!0})}},{key:"_addPrefetchLink",value:function(i){return this.prefetched.add(i.href),new Promise(function(e,t){var n=document.createElement("link");n.rel="prefetch",n.href=i.href,n.onload=e,n.onerror=t,document.head.appendChild(n)}).catch(function(){})}},{key:"_prepareUrl",value:function(e){if(null===e||"object"!==(void 0===e?"undefined":r(e))||!1 in e||-1===["http:","https:"].indexOf(e.protocol))return null;var t=e.href.substring(0,this.config.siteUrl.length),n=this._getPathname(e.href,t),i={original:e.href,protocol:e.protocol,origin:t,pathname:n,href:t+n};return this._isLinkOk(i)?i:null}},{key:"_getPathname",value:function(e,t){var n=t?e.substring(this.config.siteUrl.length):e;return n.startsWith("/")||(n="/"+n),this._shouldAddTrailingSlash(n)?n+"/":n}},{key:"_shouldAddTrailingSlash",value:function(e){return this.config.usesTrailingSlash&&!e.endsWith("/")&&!this.regex.fileExt.test(e)}},{key:"_isLinkOk",value:function(e){return null!==e&&"object"===(void 0===e?"undefined":r(e))&&(!this.prefetched.has(e.href)&&e.origin===this.config.siteUrl&&-1===e.href.indexOf("?")&&-1===e.href.indexOf("#")&&!this.regex.excludeUris.test(e.href)&&!this.regex.images.test(e.href))}}],[{key:"run",value:function(){"undefined"!=typeof RocketPreloadLinksConfig&&new n(new RocketBrowserCompatibilityChecker({capture:!0,passive:!0}),RocketPreloadLinksConfig).init()}}]),n}();t.run();
}());
/* ]]> */
</script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-content/themes/cleaneatingkitchen2022/js/custom.js?ver=1.0.0" id="custom-js-js" data-rocket-defer defer></script>
<script type="text/javascript" id="dpsp-frontend-js-pro-js-extra">
/* <![CDATA[ */
var dpsp_ajax_send_save_this_email = {"ajax_url":"https:\/\/www.cleaneatingkitchen.com\/wp-admin\/admin-ajax.php","dpsp_token":"74ba32afce"};
/* ]]> */
</script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" id="dpsp-frontend-js-pro-js-before">
/* <![CDATA[ */
var dpsp_pin_button_data = {"pin_description_source":"post_pinterest_description","pinterest_pinnable_images":"all_images","pinterest_button_share_behavior":"all_images","post_pinterest_image_hidden":"yes","post_multiple_hidden_pinterest_images":"yes","button_position":"top_left","button_shape":"rectangular","minimum_image_width":"300","minimum_image_height":"300","button_text_label":"","show_image_overlay":"yes","button_share_behavior":"hover_image","post_type_display":["post"],"pinterest_title":"Vegan Panna Cotta with Strawberry Sauce","pinterest_description":"For a creamy and decadent dessert that is completely plant-based, try this Vegan Panna Cotta recipe served with Strawberry Sauce. This coconut-based dessert is reminiscent of the authentic Italian version made with cream.","pinterest_image_url":"https:\/\/www.cleaneatingkitchen.com\/wp-content\/uploads\/2018\/07\/vegan-panna-cotta-pin.jpg"}
/* ]]> */
</script>
<script type="text/javascript" async data-noptimize data-cfasync="false" src="https://www.cleaneatingkitchen.com/wp-content/plugins/social-pug/assets/dist/front-end-pro.js?ver=2.26.2" id="dpsp-frontend-js-pro-js"></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-includes/js/comment-reply.min.js?ver=6.8.3" id="comment-reply-js" async="async" data-wp-strategy="async"></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-content/themes/cleaneatingkitchen2022/mobile-header/mobile-header-scripts.js?ver=1.0.0" id="cmh-scripts-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-content/plugins/tasty-recipes/assets/js/copy-ingredients.js?ver=1.0" id="tasty-recipes-copy-ingredients-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-content/plugins/tasty-recipes/assets/js/pin-button.js?ver=3.16.2" id="tasty-recipes-pin-button-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" id="tasty-recipes-js-before">
/* <![CDATA[ */
window.trCommon={"ajaxurl":"https:\/\/www.cleaneatingkitchen.com\/wp-admin\/admin-ajax.php","ratingNonce":"","postId":24730};
/* ]]> */
</script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-content/plugins/tasty-recipes-lite/assets/dist/recipe-js.build.js?ver=1.1.2" id="tasty-recipes-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-content/plugins/tasty-recipes/assets/js/frac.js?ver=3.16.2" id="tasty-recipes-fraction-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-content/plugins/tasty-recipes/assets/js/convert-buttons.js?ver=3.16.2" id="tasty-recipes-convert-buttons-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-content/plugins/tasty-recipes/assets/js/scale-buttons.js?ver=3.16.2" id="tasty-recipes-scale-buttons-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-includes/js/dist/vendor/react.min.js?ver=18.3.1.1" id="react-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-includes/js/dist/vendor/react-jsx-runtime.min.js?ver=18.3.1" id="react-jsx-runtime-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-includes/js/dist/vendor/react-dom.min.js?ver=18.3.1.1" id="react-dom-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-includes/js/dist/dom-ready.min.js?ver=f77871ff7694fffea381" id="wp-dom-ready-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-includes/js/dist/hooks.min.js?ver=4d63a3d491d11ffd8ac6" id="wp-hooks-js"></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-includes/js/dist/i18n.min.js?ver=5e580eb46a90c2b997e6" id="wp-i18n-js"></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" id="wp-i18n-js-after">
/* <![CDATA[ */
wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );
/* ]]> */
</script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-includes/js/dist/a11y.min.js?ver=3156534cc54473497e14" id="wp-a11y-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-includes/js/dist/deprecated.min.js?ver=e1f84915c5e8ae38964c" id="wp-deprecated-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-includes/js/dist/dom.min.js?ver=80bd57c84b45cf04f4ce" id="wp-dom-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-includes/js/dist/escape-html.min.js?ver=6561a406d2d232a6fbd2" id="wp-escape-html-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-includes/js/dist/element.min.js?ver=a4eeeadd23c0d7ab1d2d" id="wp-element-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-includes/js/dist/is-shallow-equal.min.js?ver=e0f9f1d78d83f5196979" id="wp-is-shallow-equal-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-includes/js/dist/keycodes.min.js?ver=034ff647a54b018581d3" id="wp-keycodes-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-includes/js/dist/priority-queue.min.js?ver=9c21c957c7e50ffdbf48" id="wp-priority-queue-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-includes/js/dist/compose.min.js?ver=84bcf832a5c99203f3db" id="wp-compose-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-includes/js/dist/vendor/moment.min.js?ver=2.30.1" id="moment-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" id="moment-js-after">
/* <![CDATA[ */
moment.updateLocale( 'en_US', {"months":["January","February","March","April","May","June","July","August","September","October","November","December"],"monthsShort":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"weekdays":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"weekdaysShort":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"week":{"dow":1},"longDateFormat":{"LT":"g:i a","LTS":null,"L":null,"LL":"F j, Y","LLL":"F j, Y g:i a","LLLL":null}} );
/* ]]> */
</script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-includes/js/dist/date.min.js?ver=85ff222add187a4e358f" id="wp-date-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" id="wp-date-js-after">
/* <![CDATA[ */
wp.date.setSettings( {"l10n":{"locale":"en_US","months":["January","February","March","April","May","June","July","August","September","October","November","December"],"monthsShort":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"weekdays":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"weekdaysShort":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"meridiem":{"am":"am","pm":"pm","AM":"AM","PM":"PM"},"relative":{"future":"%s from now","past":"%s ago","s":"a second","ss":"%d seconds","m":"a minute","mm":"%d minutes","h":"an hour","hh":"%d hours","d":"a day","dd":"%d days","M":"a month","MM":"%d months","y":"a year","yy":"%d years"},"startOfWeek":1},"formats":{"time":"g:i a","date":"F j, Y","datetime":"F j, Y g:i a","datetimeAbbreviated":"M j, Y g:i a"},"timezone":{"offset":-7,"offsetFormatted":"-7","string":"America\/Los_Angeles","abbr":"PDT"}} );
/* ]]> */
</script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-includes/js/dist/html-entities.min.js?ver=2cd3358363e0675638fb" id="wp-html-entities-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-includes/js/dist/primitives.min.js?ver=aef2543ab60c8c9bb609" id="wp-primitives-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-includes/js/dist/private-apis.min.js?ver=0f8478f1ba7e0eea562b" id="wp-private-apis-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-includes/js/dist/redux-routine.min.js?ver=8bb92d45458b29590f53" id="wp-redux-routine-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-includes/js/dist/data.min.js?ver=fe6c4835cd00e12493c3" id="wp-data-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" id="wp-data-js-after">
/* <![CDATA[ */
( function() {
var userId = 0;
var storageKey = "WP_DATA_USER_" + userId;
wp.data
.use( wp.data.plugins.persistence, { storageKey: storageKey } );
} )();
/* ]]> */
</script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-includes/js/dist/rich-text.min.js?ver=74178fc8c4d67d66f1a8" id="wp-rich-text-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-includes/js/dist/warning.min.js?ver=ed7c8b0940914f4fe44b" id="wp-warning-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-includes/js/dist/components.min.js?ver=865f2ec3b5f5195705e0" id="wp-components-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript" data-rocket-src="https://www.cleaneatingkitchen.com/wp-content/plugins/tasty-recipes/assets/dist/block-editor.build.js?ver=696d1443d639d916cc9f" id="tasty-recipes-pro-block-editor-js" data-rocket-defer defer></script>
<script>window.lazyLoadOptions=[{elements_selector:"img[data-lazy-src],.rocket-lazyload,iframe[data-lazy-src]",data_src:"lazy-src",data_srcset:"lazy-srcset",data_sizes:"lazy-sizes",class_loading:"lazyloading",class_loaded:"lazyloaded",threshold:300,callback_loaded:function(element){if(element.tagName==="IFRAME"&&element.dataset.rocketLazyload=="fitvidscompatible"){if(element.classList.contains("lazyloaded")){if(typeof window.jQuery!="undefined"){if(jQuery.fn.fitVids){jQuery(element).parent().fitVids()}}}}}},{elements_selector:".rocket-lazyload",data_src:"lazy-src",data_srcset:"lazy-srcset",data_sizes:"lazy-sizes",class_loading:"lazyloading",class_loaded:"lazyloaded",threshold:300,}];window.addEventListener('LazyLoad::Initialized',function(e){var lazyLoadInstance=e.detail.instance;if(window.MutationObserver){var observer=new MutationObserver(function(mutations){var image_count=0;var iframe_count=0;var rocketlazy_count=0;mutations.forEach(function(mutation){for(var i=0;i<mutation.addedNodes.length;i++){if(typeof mutation.addedNodes[i].getElementsByTagName!=='function'){continue}
if(typeof mutation.addedNodes[i].getElementsByClassName!=='function'){continue}
images=mutation.addedNodes[i].getElementsByTagName('img');is_image=mutation.addedNodes[i].tagName=="IMG";iframes=mutation.addedNodes[i].getElementsByTagName('iframe');is_iframe=mutation.addedNodes[i].tagName=="IFRAME";rocket_lazy=mutation.addedNodes[i].getElementsByClassName('rocket-lazyload');image_count+=images.length;iframe_count+=iframes.length;rocketlazy_count+=rocket_lazy.length;if(is_image){image_count+=1}
if(is_iframe){iframe_count+=1}}});if(image_count>0||iframe_count>0||rocketlazy_count>0){lazyLoadInstance.update()}});var b=document.getElementsByTagName("body")[0];var config={childList:!0,subtree:!0};observer.observe(b,config)}},!1)</script><script data-no-minify="1" async src="https://www.cleaneatingkitchen.com/wp-content/plugins/wp-rocket/assets/js/lazyload/17.8.3/lazyload.min.js"></script><script>function lazyLoadThumb(e,alt,l){var t='<img data-lazy-src="https://i.ytimg.com/vi/ID/hqdefault.jpg" alt="" width="480" height="360"><noscript><img src="https://i.ytimg.com/vi/ID/hqdefault.jpg" alt="" width="480" height="360"></noscript>',a='<button class="play" aria-label="Play Youtube video"></button>';if(l){t=t.replace('data-lazy-','');t=t.replace('loading="lazy"','');t=t.replace(/<noscript>.*?<\/noscript>/g,'');}t=t.replace('alt=""','alt="'+alt+'"');return t.replace("ID",e)+a}function lazyLoadYoutubeIframe(){var e=document.createElement("iframe"),t="ID?autoplay=1";t+=0===this.parentNode.dataset.query.length?"":"&"+this.parentNode.dataset.query;e.setAttribute("src",t.replace("ID",this.parentNode.dataset.src)),e.setAttribute("frameborder","0"),e.setAttribute("allowfullscreen","1"),e.setAttribute("allow","accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"),this.parentNode.parentNode.replaceChild(e,this.parentNode)}document.addEventListener("DOMContentLoaded",function(){var exclusions=["logo"];var e,t,p,u,l,a=document.getElementsByClassName("rll-youtube-player");for(t=0;t<a.length;t++)(e=document.createElement("div")),(u='https://i.ytimg.com/vi/ID/hqdefault.jpg'),(u=u.replace('ID',a[t].dataset.id)),(l=exclusions.some(exclusion=>u.includes(exclusion))),e.setAttribute("data-id",a[t].dataset.id),e.setAttribute("data-query",a[t].dataset.query),e.setAttribute("data-src",a[t].dataset.src),(e.innerHTML=lazyLoadThumb(a[t].dataset.id,a[t].dataset.alt,l)),a[t].appendChild(e),(p=e.querySelector(".play")),(p.onclick=lazyLoadYoutubeIframe)});</script>
</div>
<script>var rocket_beacon_data = {"ajax_url":"https:\/\/www.cleaneatingkitchen.com\/wp-admin\/admin-ajax.php","nonce":"e8301c3b8d","url":"https:\/\/www.cleaneatingkitchen.com\/paleo-easy-coconut-panna-cotta","is_mobile":false,"width_threshold":1600,"height_threshold":700,"delay":500,"debug":null,"status":{"atf":true,"lrc":true,"preload_fonts":true,"preconnect_external_domain":true},"elements":"img, video, picture, p, main, div, li, svg, section, header, span","lrc_threshold":1800,"preload_fonts_exclusions":["api.fontshare.com","cdn.fontshare.com"],"processed_extensions":["woff2","woff","ttf"],"external_font_exclusions":[],"preconnect_external_domain_elements":["link","script","iframe"],"preconnect_external_domain_exclusions":["static.cloudflareinsights.com","rel=\"profile\"","rel=\"preconnect\"","rel=\"dns-prefetch\"","rel=\"icon\""]}</script><script data-name="wpr-wpr-beacon" src='https://www.cleaneatingkitchen.com/wp-content/plugins/wp-rocket/assets/js/wpr-beacon.min.js' async></script></body></html>
<!-- This website is like a Rocket, isn't it? Performance optimized by WP Rocket. Learn more: https://wp-rocket.me -->
|