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 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237
|
<!doctype html>
<html lang="en-US" class="no-js" >
<head><meta charset="UTF-8"><script>if(navigator.userAgent.match(/MSIE|Internet Explorer/i)||navigator.userAgent.match(/Trident\/7\..*?rv:11/i)){var href=document.location.href;if(!href.match(/[?&]nowprocket/)){if(href.indexOf("?")==-1){if(href.indexOf("#")==-1){document.location.href=href+"?nowprocket=1"}else{document.location.href=href.replace("#","?nowprocket=1#")}}else{if(href.indexOf("#")==-1){document.location.href=href+"&nowprocket=1"}else{document.location.href=href.replace("#","&nowprocket=1#")}}}}</script><script>class RocketLazyLoadScripts{constructor(){this.v="1.2.3",this.triggerEvents=["keydown","mousedown","mousemove","touchmove","touchstart","touchend","wheel"],this.userEventHandler=this._triggerListener.bind(this),this.touchStartHandler=this._onTouchStart.bind(this),this.touchMoveHandler=this._onTouchMove.bind(this),this.touchEndHandler=this._onTouchEnd.bind(this),this.clickHandler=this._onClick.bind(this),this.interceptedClicks=[],window.addEventListener("pageshow",t=>{this.persisted=t.persisted}),window.addEventListener("DOMContentLoaded",()=>{this._preconnect3rdParties()}),this.delayedScripts={normal:[],async:[],defer:[]},this.trash=[],this.allJQueries=[]}_addUserInteractionListener(t){if(document.hidden){t._triggerListener();return}this.triggerEvents.forEach(e=>window.addEventListener(e,t.userEventHandler,{passive:!0})),window.addEventListener("touchstart",t.touchStartHandler,{passive:!0}),window.addEventListener("mousedown",t.touchStartHandler),document.addEventListener("visibilitychange",t.userEventHandler)}_removeUserInteractionListener(){this.triggerEvents.forEach(t=>window.removeEventListener(t,this.userEventHandler,{passive:!0})),document.removeEventListener("visibilitychange",this.userEventHandler)}_onTouchStart(t){"HTML"!==t.target.tagName&&(window.addEventListener("touchend",this.touchEndHandler),window.addEventListener("mouseup",this.touchEndHandler),window.addEventListener("touchmove",this.touchMoveHandler,{passive:!0}),window.addEventListener("mousemove",this.touchMoveHandler),t.target.addEventListener("click",this.clickHandler),this._renameDOMAttribute(t.target,"onclick","rocket-onclick"),this._pendingClickStarted())}_onTouchMove(t){window.removeEventListener("touchend",this.touchEndHandler),window.removeEventListener("mouseup",this.touchEndHandler),window.removeEventListener("touchmove",this.touchMoveHandler,{passive:!0}),window.removeEventListener("mousemove",this.touchMoveHandler),t.target.removeEventListener("click",this.clickHandler),this._renameDOMAttribute(t.target,"rocket-onclick","onclick"),this._pendingClickFinished()}_onTouchEnd(t){window.removeEventListener("touchend",this.touchEndHandler),window.removeEventListener("mouseup",this.touchEndHandler),window.removeEventListener("touchmove",this.touchMoveHandler,{passive:!0}),window.removeEventListener("mousemove",this.touchMoveHandler)}_onClick(t){t.target.removeEventListener("click",this.clickHandler),this._renameDOMAttribute(t.target,"rocket-onclick","onclick"),this.interceptedClicks.push(t),t.preventDefault(),t.stopPropagation(),t.stopImmediatePropagation(),this._pendingClickFinished()}_replayClicks(){window.removeEventListener("touchstart",this.touchStartHandler,{passive:!0}),window.removeEventListener("mousedown",this.touchStartHandler),this.interceptedClicks.forEach(t=>{t.target.dispatchEvent(new MouseEvent("click",{view:t.view,bubbles:!0,cancelable:!0}))})}_waitForPendingClicks(){return new Promise(t=>{this._isClickPending?this._pendingClickFinished=t:t()})}_pendingClickStarted(){this._isClickPending=!0}_pendingClickFinished(){this._isClickPending=!1}_renameDOMAttribute(t,e,r){t.hasAttribute&&t.hasAttribute(e)&&(event.target.setAttribute(r,event.target.getAttribute(e)),event.target.removeAttribute(e))}_triggerListener(){this._removeUserInteractionListener(this),"loading"===document.readyState?document.addEventListener("DOMContentLoaded",this._loadEverythingNow.bind(this)):this._loadEverythingNow()}_preconnect3rdParties(){let t=[];document.querySelectorAll("script[type=rocketlazyloadscript]").forEach(e=>{if(e.hasAttribute("src")){let r=new URL(e.src).origin;r!==location.origin&&t.push({src:r,crossOrigin:e.crossOrigin||"module"===e.getAttribute("data-rocket-type")})}}),t=[...new Map(t.map(t=>[JSON.stringify(t),t])).values()],this._batchInjectResourceHints(t,"preconnect")}async _loadEverythingNow(){this.lastBreath=Date.now(),this._delayEventListeners(this),this._delayJQueryReady(this),this._handleDocumentWrite(),this._registerAllDelayedScripts(),this._preloadAllScripts(),await this._loadScriptsFromList(this.delayedScripts.normal),await this._loadScriptsFromList(this.delayedScripts.defer),await this._loadScriptsFromList(this.delayedScripts.async);try{await this._triggerDOMContentLoaded(),await this._triggerWindowLoad()}catch(t){console.error(t)}window.dispatchEvent(new Event("rocket-allScriptsLoaded")),this._waitForPendingClicks().then(()=>{this._replayClicks()}),this._emptyTrash()}_registerAllDelayedScripts(){document.querySelectorAll("script[type=rocketlazyloadscript]").forEach(t=>{t.hasAttribute("data-rocket-src")?t.hasAttribute("async")&&!1!==t.async?this.delayedScripts.async.push(t):t.hasAttribute("defer")&&!1!==t.defer||"module"===t.getAttribute("data-rocket-type")?this.delayedScripts.defer.push(t):this.delayedScripts.normal.push(t):this.delayedScripts.normal.push(t)})}async _transformScript(t){return new Promise((await this._littleBreath(),navigator.userAgent.indexOf("Firefox/")>0||""===navigator.vendor)?e=>{let r=document.createElement("script");[...t.attributes].forEach(t=>{let e=t.nodeName;"type"!==e&&("data-rocket-type"===e&&(e="type"),"data-rocket-src"===e&&(e="src"),r.setAttribute(e,t.nodeValue))}),t.text&&(r.text=t.text),r.hasAttribute("src")?(r.addEventListener("load",e),r.addEventListener("error",e)):(r.text=t.text,e());try{t.parentNode.replaceChild(r,t)}catch(i){e()}}:async e=>{function r(){t.setAttribute("data-rocket-status","failed"),e()}try{let i=t.getAttribute("data-rocket-type"),n=t.getAttribute("data-rocket-src");t.text,i?(t.type=i,t.removeAttribute("data-rocket-type")):t.removeAttribute("type"),t.addEventListener("load",function r(){t.setAttribute("data-rocket-status","executed"),e()}),t.addEventListener("error",r),n?(t.removeAttribute("data-rocket-src"),t.src=n):t.src="data:text/javascript;base64,"+window.btoa(unescape(encodeURIComponent(t.text)))}catch(s){r()}})}async _loadScriptsFromList(t){let e=t.shift();return e&&e.isConnected?(await this._transformScript(e),this._loadScriptsFromList(t)):Promise.resolve()}_preloadAllScripts(){this._batchInjectResourceHints([...this.delayedScripts.normal,...this.delayedScripts.defer,...this.delayedScripts.async],"preload")}_batchInjectResourceHints(t,e){var r=document.createDocumentFragment();t.forEach(t=>{let i=t.getAttribute&&t.getAttribute("data-rocket-src")||t.src;if(i){let n=document.createElement("link");n.href=i,n.rel=e,"preconnect"!==e&&(n.as="script"),t.getAttribute&&"module"===t.getAttribute("data-rocket-type")&&(n.crossOrigin=!0),t.crossOrigin&&(n.crossOrigin=t.crossOrigin),t.integrity&&(n.integrity=t.integrity),r.appendChild(n),this.trash.push(n)}}),document.head.appendChild(r)}_delayEventListeners(t){let e={};function r(t,r){!function t(r){!e[r]&&(e[r]={originalFunctions:{add:r.addEventListener,remove:r.removeEventListener},eventsToRewrite:[]},r.addEventListener=function(){arguments[0]=i(arguments[0]),e[r].originalFunctions.add.apply(r,arguments)},r.removeEventListener=function(){arguments[0]=i(arguments[0]),e[r].originalFunctions.remove.apply(r,arguments)});function i(t){return e[r].eventsToRewrite.indexOf(t)>=0?"rocket-"+t:t}}(t),e[t].eventsToRewrite.push(r)}function i(t,e){let r=t[e];Object.defineProperty(t,e,{get:()=>r||function(){},set(i){t["rocket"+e]=r=i}})}r(document,"DOMContentLoaded"),r(window,"DOMContentLoaded"),r(window,"load"),r(window,"pageshow"),r(document,"readystatechange"),i(document,"onreadystatechange"),i(window,"onload"),i(window,"onpageshow")}_delayJQueryReady(t){let e;function r(r){if(r&&r.fn&&!t.allJQueries.includes(r)){r.fn.ready=r.fn.init.prototype.ready=function(e){return t.domReadyFired?e.bind(document)(r):document.addEventListener("rocket-DOMContentLoaded",()=>e.bind(document)(r)),r([])};let i=r.fn.on;r.fn.on=r.fn.init.prototype.on=function(){if(this[0]===window){function t(t){return t.split(" ").map(t=>"load"===t||0===t.indexOf("load.")?"rocket-jquery-load":t).join(" ")}"string"==typeof arguments[0]||arguments[0]instanceof String?arguments[0]=t(arguments[0]):"object"==typeof arguments[0]&&Object.keys(arguments[0]).forEach(e=>{let r=arguments[0][e];delete arguments[0][e],arguments[0][t(e)]=r})}return i.apply(this,arguments),this},t.allJQueries.push(r)}e=r}r(window.jQuery),Object.defineProperty(window,"jQuery",{get:()=>e,set(t){r(t)}})}async _triggerDOMContentLoaded(){this.domReadyFired=!0,await this._littleBreath(),document.dispatchEvent(new Event("rocket-DOMContentLoaded")),await this._littleBreath(),window.dispatchEvent(new Event("rocket-DOMContentLoaded")),await this._littleBreath(),document.dispatchEvent(new Event("rocket-readystatechange")),await this._littleBreath(),document.rocketonreadystatechange&&document.rocketonreadystatechange()}async _triggerWindowLoad(){await this._littleBreath(),window.dispatchEvent(new Event("rocket-load")),await this._littleBreath(),window.rocketonload&&window.rocketonload(),await this._littleBreath(),this.allJQueries.forEach(t=>t(window).trigger("rocket-jquery-load")),await this._littleBreath();let t=new Event("rocket-pageshow");t.persisted=this.persisted,window.dispatchEvent(t),await this._littleBreath(),window.rocketonpageshow&&window.rocketonpageshow({persisted:this.persisted})}_handleDocumentWrite(){let t=new Map;document.write=document.writeln=function(e){let r=document.currentScript;r||console.error("WPRocket unable to document.write this: "+e);let i=document.createRange(),n=r.parentElement,s=t.get(r);void 0===s&&(s=r.nextSibling,t.set(r,s));let a=document.createDocumentFragment();i.setStart(a,0),a.appendChild(i.createContextualFragment(e)),n.insertBefore(a,s)}}async _littleBreath(){Date.now()-this.lastBreath>45&&(await this._requestAnimFrame(),this.lastBreath=Date.now())}async _requestAnimFrame(){return document.hidden?new Promise(t=>setTimeout(t)):new Promise(t=>requestAnimationFrame(t))}_emptyTrash(){this.trash.forEach(t=>t.remove())}static run(){let t=new RocketLazyLoadScripts;t._addUserInteractionListener(t)}}RocketLazyLoadScripts.run();</script>
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
<meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
<!-- This site is optimized with the Yoast SEO Premium plugin v21.3 (Yoast SEO v21.3) - https://yoast.com/wordpress/plugins/seo/ -->
<title>Buffalo Chicken Chili (easy, dairy free!) - Simply Whisked</title><link rel='preload' href='https://www.simplywhisked.com/wp-content/uploads/2022/09/simply-whisked-downscaled.png' as='image'><link rel="preload" href="https://www.simplywhisked.com/wp-content/uploads/2023/01/new-logo-2.png" as="image" imagesrcset="https://www.simplywhisked.com/wp-content/uploads/2023/01/new-logo-2.png 1500w, https://www.simplywhisked.com/wp-content/uploads/2023/01/new-logo-2-768x154.png 768w" imagesizes="(max-width: 1500px) 100vw, 1500px" /><link rel="preload" href="https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1.jpg" as="image" imagesrcset="https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1.jpg 1200w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1-768x1152.jpg 768w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1-1024x1536.jpg 1024w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1-200x300.jpg 200w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1-610x915.jpg 610w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1-920x1380.jpg 920w" imagesizes="(max-width: 1200px) 100vw, 1200px" /><link rel='preload' href='https://www.simplywhisked.com/wp-content/uploads/2022/04/KindnessMatters.woff2' as='font' type='font/woff2'><link rel="preload" as="style" href="https://www.simplywhisked.com/wp-content/cache/perfmatters/www.simplywhisked.com/fonts/61df43a926d4.google-fonts.css" /><link rel="stylesheet" href="https://www.simplywhisked.com/wp-content/cache/perfmatters/www.simplywhisked.com/fonts/61df43a926d4.google-fonts.css" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://www.simplywhisked.com/wp-content/cache/perfmatters/www.simplywhisked.com/fonts/61df43a926d4.google-fonts.css" /></noscript><style id="rocket-critical-css">.kb-row-layout-wrap{border:0 solid transparent;position:relative}.kb-row-layout-wrap:before{clear:both;content:"";display:table}.kt-row-column-wrap{display:grid;gap:var(--global-row-gutter-md,2rem) var(--global-row-gutter-md,2rem);grid-auto-rows:minmax(min-content,max-content);grid-template-columns:minmax(0,1fr);position:relative;z-index:1}.kt-row-has-bg>.kt-row-column-wrap{padding-left:var(--global-content-edge-padding,15px);padding-right:var(--global-content-edge-padding,15px)}.kt-row-layout-overlay{filter:opacity(100%);height:100%;left:0;opacity:.3;position:absolute;top:0;width:100%;z-index:0}.wp-block-kadence-column{display:flex;flex-direction:column;min-height:0;min-width:0;z-index:1}.kt-inside-inner-col{border:0 solid transparent;position:relative}.wp-block-button__link{box-sizing:border-box;display:inline-block;text-align:center;word-break:break-word}.wp-block-image img{box-sizing:border-box;height:auto;max-width:100%;vertical-align:bottom}.wp-block-image .aligncenter{display:table}.wp-block-image .aligncenter{margin-left:auto;margin-right:auto}.wp-block-image figure{margin:0}ul{box-sizing:border-box}.entry-content{counter-reset:footnotes}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.aligncenter{clear:both}.screen-reader-text{clip:rect(1px,1px,1px,1px);word-wrap:normal!important;border:0;-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block;min-width:0}h1{font-size:2em;margin:0.67em 0}a{background-color:transparent}img{border-style:none}button,input,textarea{font-size:100%;margin:0}button,input{overflow:visible}button{text-transform:none}button,[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}textarea{overflow:auto}[type="checkbox"]{box-sizing:border-box;padding:0}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}:root{--global-gray-400:#CBD5E0;--global-gray-500:#A0AEC0;--global-xs-spacing:1em;--global-sm-spacing:1.5rem;--global-md-spacing:2rem;--global-lg-spacing:2.5em;--global-xl-spacing:3.5em;--global-xxl-spacing:5rem;--global-edge-spacing:1.5rem;--global-boxed-spacing:2rem}h1,h3,h5{padding:0;margin:0}h3 a{color:inherit;text-decoration:none}i{font-style:italic}html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}ul{margin:0 0 1.5em 1.5em;padding:0}ul{list-style:disc}li>ul{margin-bottom:0;margin-left:1.5em}img{display:block;height:auto;max-width:100%}figure{margin:0.5em 0}a{color:var(--global-palette-highlight)}.inner-link-style-normal a:not(.button){text-decoration:underline}.screen-reader-text{clip:rect(1px,1px,1px,1px);position:absolute!important;height:1px;width:1px;overflow:hidden;word-wrap:normal!important}textarea{width:100%}input[type="text"],input[type="email"],input[type="search"],textarea{-webkit-appearance:none;color:var(--global-palette5);border:1px solid var(--global-gray-400);border-radius:3px;padding:0.4em 0.5em;max-width:100%;background:var(--global-palette9);box-shadow:0px 0px 0px -7px rgba(0,0,0,0)}::-webkit-input-placeholder{color:var(--global-palette6)}::-moz-placeholder{color:var(--global-palette6);opacity:1}::placeholder{color:var(--global-palette6)}.search-form{position:relative}.search-form input[type="search"],.search-form input.search-field{padding-right:60px;width:100%}.search-form .search-submit[type="submit"]{top:0;right:0;bottom:0;position:absolute;color:transparent;background:transparent;z-index:2;width:50px;border:0;padding:8px 12px 7px;border-radius:0;box-shadow:none;overflow:hidden}.search-form .kadence-search-icon-wrap{position:absolute;right:0;top:0;height:100%;width:50px;padding:0;text-align:center;background:0 0;z-index:3;color:var(--global-palette6);text-shadow:none;display:flex;align-items:center;justify-content:center}button,.button,.wp-block-button__link,input[type="submit"]{border-radius:3px;background:var(--global-palette-btn-bg);color:var(--global-palette-btn);padding:0.4em 1em;border:0;line-height:1.6;display:inline-block;font-family:inherit;text-decoration:none;box-shadow:0px 0px 0px -7px rgba(0,0,0,0)}button:visited,.button:visited,.wp-block-button__link:visited,input[type="submit"]:visited{background:var(--global-palette-btn-bg);color:var(--global-palette-btn)}.kadence-svg-iconset{display:inline-flex;align-self:center}.kadence-svg-iconset svg{height:1em;width:1em}.kadence-svg-iconset.svg-baseline svg{top:.125em;position:relative}:root .has-theme-palette-3-color{color:var(--global-palette3)}:root .has-theme-palette8-background-color{background-color:var(--global-palette8)}.kt-clear{*zoom:1}.kt-clear::before,.kt-clear::after{content:' ';display:table}.kt-clear::after{clear:both}.content-area{margin:var(--global-xxl-spacing) 0}.entry-content{word-break:break-word}.site-container{margin:0 auto;padding:0 var(--global-content-edge-padding)}.content-bg{background:white}@media screen and (min-width:1025px){.has-sidebar .content-container{display:grid;grid-template-columns:5fr 2fr;grid-gap:var(--global-xl-spacing);justify-content:center}#secondary{grid-column:2;grid-row:1;min-width:0}.has-sidebar .wp-site-blocks .content-container .alignfull{width:unset;max-width:unset;margin-left:0;margin-right:0}}@media screen and (max-width:719px){.vs-sm-false{display:none!important}}#wrapper{overflow:hidden;overflow:clip}.aligncenter{clear:both;display:block;margin-left:auto;margin-right:auto;text-align:center}body.footer-on-bottom #wrapper{min-height:100vh;display:flex;flex-direction:column}body.footer-on-bottom #inner-wrap{flex:1 0 auto}.site-branding{max-height:inherit}.site-branding a.brand{display:flex;flex-direction:row;align-items:center;text-decoration:none;color:inherit;max-height:inherit}.site-branding a.brand img{display:block}.header-navigation ul ul.sub-menu{display:none;position:absolute;top:100%;flex-direction:column;background:#fff;margin-left:0;box-shadow:0 2px 13px rgba(0,0,0,0.1);z-index:1000}.header-navigation ul ul.sub-menu>li:last-child{border-bottom:0}.nav--toggle-sub .dropdown-nav-toggle{display:block;background:transparent;position:absolute;right:0;top:50%;width:0.7em;height:0.7em;font-size:inherit;width:0.9em;height:0.9em;font-size:0.9em;display:inline-flex;line-height:inherit;margin:0;padding:0;border:none;border-radius:0;-webkit-transform:translateY(-50%);transform:translateY(-50%);overflow:visible}.nav--toggle-sub li.menu-item-has-children{position:relative}.nav-drop-title-wrap{position:relative;padding-right:1em;display:block}.header-navigation,.header-menu-container{display:flex}.header-navigation li.menu-item>a{display:block;width:100%;text-decoration:none;color:var(--global-palette4);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.header-navigation ul.sub-menu{display:block;list-style:none;margin:0;padding:0}.header-navigation ul li.menu-item>a{padding:0.6em 0.5em}.header-navigation ul ul li.menu-item>a{padding:1em}.header-navigation ul ul li.menu-item>a{width:200px}.header-navigation .menu{display:flex;flex-wrap:wrap;justify-content:center;align-items:center;list-style:none;margin:0;padding:0}.menu-toggle-open{display:flex;background:transparent;align-items:center;box-shadow:none}.menu-toggle-open .menu-toggle-icon{display:flex}.menu-toggle-open.menu-toggle-style-default{border:0}.wp-site-blocks .menu-toggle-open{box-shadow:none}.mobile-navigation{width:100%}.mobile-navigation a{display:block;width:100%;text-decoration:none;padding:0.6em 0.5em}.mobile-navigation ul{display:block;list-style:none;margin:0;padding:0}.drawer-nav-drop-wrap{display:flex;position:relative}.drawer-nav-drop-wrap a{color:inherit}.drawer-nav-drop-wrap .drawer-sub-toggle{background:transparent;color:inherit;padding:0.5em 0.7em;display:flex;border:0;border-radius:0;box-shadow:none;line-height:normal}.mobile-navigation ul ul{padding-left:1em}.mobile-navigation ul.has-collapse-sub-nav ul.sub-menu{display:none}.popup-drawer{position:fixed;display:none;top:0;bottom:0;left:-99999rem;right:99999rem;z-index:100000}.popup-drawer .drawer-overlay{background-color:rgba(0,0,0,0.4);position:fixed;top:0;right:0;bottom:0;left:0;opacity:0}.popup-drawer .drawer-inner{width:100%;-webkit-transform:translateX(100%);transform:translateX(100%);max-width:90%;right:0;top:0;overflow:auto;background:#090c10;color:#fff;bottom:0;opacity:0;position:fixed;box-shadow:0 0 2rem 0 rgba(0,0,0,0.1);display:flex;flex-direction:column}.popup-drawer .drawer-header{padding:0 1.5em;display:flex;justify-content:flex-end;min-height:calc(1.2em + 24px)}.popup-drawer .drawer-header .drawer-toggle{background:transparent;border:0;font-size:24px;line-height:1;padding:0.6em 0.15em;color:inherit;display:flex;box-shadow:none;border-radius:0}.popup-drawer .drawer-content{padding:0 1.5em 1.5em}.popup-drawer .drawer-header .drawer-toggle{width:1em;position:relative;height:1em;box-sizing:content-box;font-size:24px}.drawer-toggle .toggle-close-bar{width:0.75em;height:0.08em;background:currentColor;-webkit-transform-origin:center center;transform-origin:center center;position:absolute;margin-top:-0.04em;opacity:0;border-radius:0.08em;left:50%;margin-left:-0.375em;top:50%;-webkit-transform:rotate(45deg) translateX(-50%);transform:rotate(45deg) translateX(-50%)}.drawer-toggle .toggle-close-bar:last-child{-webkit-transform:rotate(-45deg) translateX(50%);transform:rotate(-45deg) translateX(50%)}#main-header{display:none}#masthead{position:relative;z-index:11}@media screen and (min-width:1025px){#main-header{display:block}#mobile-header{display:none}}.site-header-row{display:grid;grid-template-columns:auto auto}.site-header-section{display:flex;max-height:inherit}.site-header-item{display:flex;align-items:center;margin-right:10px;max-height:inherit}.site-header-section>.site-header-item:last-child{margin-right:0}.drawer-content .site-header-item{margin-right:0;margin-bottom:10px}.drawer-content .site-header-item:last-child{margin-bottom:0}.site-header-section-right{justify-content:flex-end}.element-social-inner-wrap{display:flex;flex-wrap:wrap;align-items:center;gap:0.3em}a.social-button{width:2em;text-decoration:none;height:2em;display:inline-flex;justify-content:center;align-items:center;margin:0;color:var(--global-palette4);background:var(--global-palette7);border-radius:3px}.social-style-outline .social-button{background:transparent!important;border:2px solid var(--global-palette7)}.search-toggle-open{display:flex;background:transparent;align-items:center;padding:0.5em;box-shadow:none}.search-toggle-open .search-toggle-label{padding-right:5px}.search-toggle-open .search-toggle-icon{display:flex}.search-toggle-open .search-toggle-icon svg.kadence-svg-icon{top:-0.05em;position:relative}.search-toggle-open.search-toggle-style-default{border:0}.popup-drawer-layout-fullwidth .drawer-inner{max-width:none;background:rgba(9,12,16,0.97)}#search-drawer .drawer-inner .drawer-header{position:relative;z-index:100}#search-drawer .drawer-inner .drawer-content{display:flex;justify-content:center;align-items:center;position:absolute;top:0;bottom:0;left:0;right:0;padding:2em}#search-drawer .drawer-inner form{max-width:800px;width:100%;margin:0 auto;display:flex}#search-drawer .drawer-inner form label{flex-grow:2}#search-drawer .drawer-inner form ::-webkit-input-placeholder{color:currentColor;opacity:0.5}#search-drawer .drawer-inner form ::-moz-placeholder{color:currentColor;opacity:0.5}#search-drawer .drawer-inner form :-ms-input-placeholder{color:currentColor;opacity:0.5}#search-drawer .drawer-inner form :-moz-placeholder{color:currentColor;opacity:0.5}#search-drawer .drawer-inner input.search-field{width:100%;background:transparent;color:var(--global-palette6);padding:0.8em 80px 0.8em 0.8em;font-size:20px;border:1px solid currentColor}#search-drawer .drawer-inner .search-submit[type="submit"]{width:70px}#search-drawer .drawer-inner .kadence-search-icon-wrap{color:var(--global-palette6);width:70px}#mobile-drawer{z-index:99999}.wp-block-image{margin-bottom:0}.widget{margin-top:0;margin-bottom:1.5em}.widget-area ul{padding-left:0.5em}.widget-area .widget{margin-left:0;margin-right:0}.entry{box-shadow:0px 15px 25px -10px rgba(0,0,0,0.05);border-radius:.25rem}.content-wrap{position:relative}.kadence-thumbnail-position-behind+.entry{z-index:1;position:relative}@media screen and (max-width:719px){.content-style-boxed .content-bg:not(.loop-entry){margin-left:-1rem;margin-right:-1rem;width:auto}.primary-sidebar{padding-left:0;padding-right:0}}.single-content{margin:var(--global-md-spacing) 0 0}.single-content figure{margin-top:0;margin-bottom:var(--global-md-spacing)}.single-content .wp-block-image{margin-top:0;margin-bottom:0}.single-content figure.wp-block-image{margin-bottom:var(--global-md-spacing)}.entry-content:after{display:table;clear:both;content:''}.wp-site-blocks .post-thumbnail{display:block;height:0;padding-bottom:66.67%;overflow:hidden;position:relative}.wp-site-blocks .post-thumbnail.kadence-thumbnail-ratio-1-2{padding-bottom:50%}.wp-site-blocks .post-thumbnail .post-thumbnail-inner{position:absolute;top:0;bottom:0;left:0;right:0}.wp-site-blocks .post-thumbnail img{flex:1;-o-object-fit:cover;object-fit:cover}.wp-site-blocks .post-thumbnail:not(.kadence-thumbnail-ratio-inherit) img{height:100%;width:100%}.kadence-thumbnail-position-behind{margin-bottom:-4.3em;position:relative;z-index:0}.kadence-breadcrumbs{margin:1em 0;font-size:85%;color:var(--global-palette5)}.kadence-breadcrumbs a{color:inherit}.entry-content-wrap .entry-header .kadence-breadcrumbs:first-child{margin-top:0}.title-align-left{text-align:left}.entry-header{margin-bottom:1em}.alignfull{margin-left:calc(50% - (var(--global-vw, 100vw) / 2));margin-right:calc(50% - (var(--global-vw, 100vw) / 2));max-width:100vw;width:var(--global-vw, 100vw);padding-left:0;padding-right:0;clear:both}.entry-title{word-wrap:break-word}#cancel-comment-reply-link{margin-left:0.8em}.comment-form p{margin:1.5em 0}.comment-form label{display:block;padding-bottom:0.4em}.comment-form .required{color:#d54e21}.primary-sidebar{padding-top:1.5rem;padding-bottom:1.5rem;margin-left:auto;margin-right:auto}@media screen and (min-width:768px){.primary-sidebar{padding-left:0;padding-right:0}}@media screen and (min-width:1025px){.primary-sidebar{padding:0;margin:0}}.kb-buttons-wrap{display:flex;flex-wrap:wrap;gap:var(--global-kb-gap-xs,.5rem)}.kb-button,.kb-buttons-wrap{align-items:center;justify-content:center}.kb-button{display:inline-flex;overflow:hidden;position:relative;text-align:center;z-index:1}.kb-button:before{background:transparent;bottom:0;content:"";left:0;opacity:0;position:absolute;right:0;top:0;z-index:-1}</style>
<meta name="description" content="This easy, buffalo chicken chili recipe is hearty and healthy, and the buffalo flavor gives it just the right amount of spicy zing." />
<link rel="canonical" href="https://www.simplywhisked.com/buffalo-chicken-chili/" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Buffalo Chicken Chili" />
<meta property="og:description" content="This easy, buffalo chicken chili recipe is hearty and healthy, and the buffalo flavor gives it just the right amount of spicy zing." />
<meta property="og:url" content="https://www.simplywhisked.com/buffalo-chicken-chili/" />
<meta property="og:site_name" content="Simply Whisked" />
<meta property="article:publisher" content="http://facebook.com/simplywhisked" />
<meta property="article:published_time" content="2020-10-12T14:00:00+00:00" />
<meta property="article:modified_time" content="2021-11-12T17:32:00+00:00" />
<meta property="og:image" content="https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1.jpg" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="1800" />
<meta property="og:image:type" content="image/jpeg" />
<meta name="author" content="Melissa Belanger" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:creator" content="@simplywhisked" />
<meta name="twitter:site" content="@simplywhisked" />
<meta name="twitter:label1" content="Written by" />
<meta name="twitter:data1" content="Melissa Belanger" />
<meta name="twitter:label2" content="Est. reading time" />
<meta name="twitter:data2" content="4 minutes" />
<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"Article","@id":"https://www.simplywhisked.com/buffalo-chicken-chili/#article","isPartOf":{"@id":"https://www.simplywhisked.com/buffalo-chicken-chili/"},"author":{"name":"Melissa Belanger","@id":"https://www.simplywhisked.com/#/schema/person/1fd843cb7978f14f828d10e531dcfb14"},"headline":"Buffalo Chicken Chili","datePublished":"2020-10-12T14:00:00+00:00","dateModified":"2021-11-12T17:32:00+00:00","wordCount":449,"commentCount":1,"publisher":{"@id":"https://www.simplywhisked.com/#organization"},"image":{"@id":"https://www.simplywhisked.com/buffalo-chicken-chili/#primaryimage"},"thumbnailUrl":"https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1.jpg","articleSection":["Chicken","Chili","Dairy Free","Easy","Egg Free","Fall","Game Day","Gluten Free","Nut Free","Soups","Winter"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https://www.simplywhisked.com/buffalo-chicken-chili/#respond"]}]},{"@type":"WebPage","@id":"https://www.simplywhisked.com/buffalo-chicken-chili/","url":"https://www.simplywhisked.com/buffalo-chicken-chili/","name":"Buffalo Chicken Chili (easy, dairy free!) - Simply Whisked","isPartOf":{"@id":"https://www.simplywhisked.com/#website"},"primaryImageOfPage":{"@id":"https://www.simplywhisked.com/buffalo-chicken-chili/#primaryimage"},"image":{"@id":"https://www.simplywhisked.com/buffalo-chicken-chili/#primaryimage"},"thumbnailUrl":"https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1.jpg","datePublished":"2020-10-12T14:00:00+00:00","dateModified":"2021-11-12T17:32:00+00:00","description":"This easy, buffalo chicken chili recipe is hearty and healthy, and the buffalo flavor gives it just the right amount of spicy zing.","breadcrumb":{"@id":"https://www.simplywhisked.com/buffalo-chicken-chili/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://www.simplywhisked.com/buffalo-chicken-chili/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https://www.simplywhisked.com/buffalo-chicken-chili/#primaryimage","url":"https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1.jpg","contentUrl":"https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1.jpg","width":1200,"height":1800},{"@type":"BreadcrumbList","@id":"https://www.simplywhisked.com/buffalo-chicken-chili/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://www.simplywhisked.com/"},{"@type":"ListItem","position":2,"name":"Soups","item":"https://www.simplywhisked.com/soups/"},{"@type":"ListItem","position":3,"name":"Buffalo Chicken Chili"}]},{"@type":"WebSite","@id":"https://www.simplywhisked.com/#website","url":"https://www.simplywhisked.com/","name":"Simply Whisked","description":"Dairy Free Recipes","publisher":{"@id":"https://www.simplywhisked.com/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://www.simplywhisked.com/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https://www.simplywhisked.com/#organization","name":"Simply Whisked","url":"https://www.simplywhisked.com/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https://www.simplywhisked.com/#/schema/logo/image/","url":"https://www.simplywhisked.com/wp-content/uploads/2023/01/new-logo-2.png","contentUrl":"https://www.simplywhisked.com/wp-content/uploads/2023/01/new-logo-2.png","width":1500,"height":300,"caption":"Simply Whisked"},"image":{"@id":"https://www.simplywhisked.com/#/schema/logo/image/"},"sameAs":["http://facebook.com/simplywhisked","https://twitter.com/simplywhisked","http://instagram.com/simplywhisked","http://pinterest.com/simplywhisked"]},{"@type":"Person","@id":"https://www.simplywhisked.com/#/schema/person/1fd843cb7978f14f828d10e531dcfb14","name":"Melissa Belanger","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https://www.simplywhisked.com/#/schema/person/image/","url":"https://secure.gravatar.com/avatar/ec052bce28b2db5163f58eed82302dcc?s=96&d=mm&r=g","contentUrl":"https://secure.gravatar.com/avatar/ec052bce28b2db5163f58eed82302dcc?s=96&d=mm&r=g","caption":"Melissa Belanger"}},{"@context":"https://schema.org/","@type":"Recipe","name":"Buffalo Chicken Chili","description":"This buffalo chicken chili is a hearty, go-to meal that can be ready pretty quickly. The buffalo flavor is the perfect amount of spicy. Make this for your next football game, everyone will love it!","author":{"@type":"Person","name":"Melissa Belanger","url":"http://Melissa%20Belanger"},"keywords":"easy, dairy free, egg free, healthy, chili, beans, buffalo","image":["https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1-225x225.jpg","https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1-260x195.jpg","https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1-320x180.jpg","https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1.jpg"],"url":"https://www.simplywhisked.com/buffalo-chicken-chili/","recipeIngredient":["2 tablespoons olive oil","1 small onion, chopped (about 1 cup)","2 stalks celery, chopped","6 garlic cloves, minced","1 1/2 – 2 pounds ground chicken","1 cup water (or reduced-sodium broth)","1 15-ounce can petite diced tomatoes","2 15-ounce cans chili beans, with sauce","2 tablespoos chili powder","2 teaspoons ground cumin","2 teaspoons paprika","1 bay leaf","1 teaspoon salt","1/2 teaspoon pepper","1/2 cup buffalo wing sauce"],"recipeInstructions":[{"@type":"HowToStep","text":"In a large stockpot or dutch oven, heat olive oil to medium-high. Add the bell pepper, onion, celery and garlic. Sauté until onions are translucent, about 5 minutes.","url":"https://www.simplywhisked.com/buffalo-chicken-chili/#instruction-step-1"},{"@type":"HowToStep","text":"Add ground chicken. Breaking up the meat as chicken browns, cook until no longer pink, about 5 minutes.","url":"https://www.simplywhisked.com/buffalo-chicken-chili/#instruction-step-2"},{"@type":"HowToStep","text":"Add water, tomatoes, beans, chili powder, cumin, bay leaf, buffalo sauce, and salt & pepper. Bring to a simmer.","url":"https://www.simplywhisked.com/buffalo-chicken-chili/#instruction-step-3"},{"@type":"HowToStep","text":"Cover and allow chili to cook for at least 15 minutes, simmering to desired thickness.","url":"https://www.simplywhisked.com/buffalo-chicken-chili/#instruction-step-4"},{"@type":"HowToStep","text":"Before serving, remove bay leaf and adjust seasoning with salt & pepper, to taste.","url":"https://www.simplywhisked.com/buffalo-chicken-chili/#instruction-step-5"}],"prepTime":"PT15M","cookTime":"PT30M","totalTime":"PT45M","recipeYield":["8","8 - 12 servings"],"recipeCategory":"Soups","cookingMethod":"Stovetop","recipeCuisine":"American","aggregateRating":{"@type":"AggregateRating","reviewCount":"1","ratingValue":"5"},"nutrition":{"servingSize":"1 bowl","calories":"203 calories","sugarContent":"2.5 g","sodiumContent":"620.6 mg","fatContent":"12.2 g","saturatedFatContent":"3.3 g","transFatContent":"0 g","carbohydrateContent":"8.6 g","fiberContent":"1.4 g","proteinContent":"15.8 g","cholesterolContent":"63 mg","@type":"nutritionInformation"},"review":[{"@type":"Review","reviewRating":{"@type":"Rating","ratingValue":"5"},"author":{"@type":"Person","name":"Long"},"datePublished":"2020-12-08","reviewBody":"So good and so easy! My son commented twice on how good they were. Will make again! Thank you!!"}],"datePublished":"2020-10-12","@id":"https://www.simplywhisked.com/buffalo-chicken-chili/#recipe","isPartOf":{"@id":"https://www.simplywhisked.com/buffalo-chicken-chili/#article"},"mainEntityOfPage":"https://www.simplywhisked.com/buffalo-chicken-chili/"}]}</script>
<!-- / Yoast SEO Premium plugin. -->
<link rel='dns-prefetch' href='//scripts.mediavine.com' />
<link rel="alternate" type="application/rss+xml" title="Simply Whisked » Feed" href="https://www.simplywhisked.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="Simply Whisked » Comments Feed" href="https://www.simplywhisked.com/comments/feed/" />
<script type="rocketlazyloadscript">document.documentElement.classList.remove( 'no-js' );</script>
<link rel="alternate" type="application/rss+xml" title="Simply Whisked » Buffalo Chicken Chili Comments Feed" href="https://www.simplywhisked.com/buffalo-chicken-chili/feed/" />
<script>function cpLoadCSS(e,t,n){"use strict";var i=window.document.createElement("link"),o=t||window.document.getElementsByTagName("script")[0];return i.rel="stylesheet",i.href=e,i.media="only x",o.parentNode.insertBefore(i,o),setTimeout(function(){i.media=n||"all"}),i}</script><style>.cp-popup-container .cpro-overlay,.cp-popup-container .cp-popup-wrapper{opacity:0;visibility:hidden;display:none}</style><style>
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 data-minify="1" rel='preload' href='https://www.simplywhisked.com/wp-content/cache/min/1/wp-content/plugins/kadence-blocks/dist/style-blocks-rowlayout.css?ver=1696565781' data-rocket-async="style" as="style" onload="this.onload=null;this.rel='stylesheet'" onerror="this.removeAttribute('data-rocket-async')" media='all' />
<link data-minify="1" rel='preload' href='https://www.simplywhisked.com/wp-content/cache/min/1/wp-content/plugins/kadence-blocks/dist/style-blocks-column.css?ver=1696565781' data-rocket-async="style" as="style" onload="this.onload=null;this.rel='stylesheet'" onerror="this.removeAttribute('data-rocket-async')" media='all' />
<style id='kadence-blocks-advancedheading-inline-css'>
.wp-block-kadence-advancedheading mark{background:transparent;border-style:solid;border-width:0}.wp-block-kadence-advancedheading mark.kt-highlight{color:#f76a0c;}.kb-adv-heading-icon{display: inline-flex;justify-content: center;align-items: center;}.single-content .kadence-advanced-heading-wrapper h1, .single-content .kadence-advanced-heading-wrapper h2, .single-content .kadence-advanced-heading-wrapper h3, .single-content .kadence-advanced-heading-wrapper h4, .single-content .kadence-advanced-heading-wrapper h5, .single-content .kadence-advanced-heading-wrapper h6 {margin: 1.5em 0 .5em;}.single-content .kadence-advanced-heading-wrapper+* { margin-top:0;}
</style>
<link data-minify="1" rel='preload' href='https://www.simplywhisked.com/wp-content/cache/min/1/wp-content/plugins/kadence-blocks/dist/style-blocks-iconlist.css?ver=1696565782' data-rocket-async="style" as="style" onload="this.onload=null;this.rel='stylesheet'" onerror="this.removeAttribute('data-rocket-async')" media='all' />
<link rel='preload' href='https://www.simplywhisked.com/wp-includes/css/dist/block-library/style.min.css?ver=6.3.2' data-rocket-async="style" as="style" onload="this.onload=null;this.rel='stylesheet'" onerror="this.removeAttribute('data-rocket-async')" media='all' />
<link data-minify="1" rel='preload' href='https://www.simplywhisked.com/wp-content/cache/min/1/wp-content/plugins/tasty-links/assets/css/featured-links-block.css?ver=1696565781' data-rocket-async="style" as="style" onload="this.onload=null;this.rel='stylesheet'" onerror="this.removeAttribute('data-rocket-async')" media='all' />
<style id='classic-theme-styles-inline-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>
<script>document.addEventListener('DOMContentLoaded', function(event) { if( typeof cpLoadCSS !== 'undefined' ) { cpLoadCSS('https://www.simplywhisked.com/wp-content/plugins/convertpro/assets/modules/css/cp-popup.min.css?ver=1.7.7', 0, 'all'); } }); </script>
<link rel='preload' href='https://www.simplywhisked.com/wp-content/themes/kadence/assets/css/global.min.css?ver=1.1.46' data-rocket-async="style" as="style" onload="this.onload=null;this.rel='stylesheet'" onerror="this.removeAttribute('data-rocket-async')" media='all' />
<style id='kadence-global-inline-css'>
/* Kadence Base CSS */
:root{--global-palette1:#4d4a4d;--global-palette2:#2a262a;--global-palette3:#2a262a;--global-palette4:#4d4a4d;--global-palette5:#4d4a4d;--global-palette6:#e5e2dc;--global-palette7:#efeae5;--global-palette8:#f9f8f6;--global-palette9:#FFFFFF;--global-palette9rgb:255, 255, 255;--global-palette-highlight:var(--global-palette3);--global-palette-highlight-alt:var(--global-palette4);--global-palette-highlight-alt2:var(--global-palette8);--global-palette-btn-bg:var(--global-palette3);--global-palette-btn-bg-hover:var(--global-palette7);--global-palette-btn:var(--global-palette9);--global-palette-btn-hover:var(--global-palette3);--global-body-font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";--global-heading-font-family:inherit;--global-primary-nav-font-family:inherit;--global-fallback-font:sans-serif;--global-display-fallback-font:sans-serif;--global-content-width:1290px;--global-content-narrow-width:842px;--global-content-edge-padding:1.5rem;--global-content-boxed-padding:2rem;--global-calc-content-width:calc(1290px - var(--global-content-edge-padding) - var(--global-content-edge-padding) );--wp--style--global--content-size:var(--global-calc-content-width);}.wp-site-blocks{--global-vw:calc( 100vw - ( 0.5 * var(--scrollbar-offset)));}body{background:var(--global-palette8);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}body, input, select, optgroup, textarea{font-style:normal;font-weight:400;font-size:20px;line-height:1.6;font-family:var(--global-body-font-family);color:var(--global-palette3);}.content-bg, body.content-style-unboxed .site{background:var(--global-palette9);}h1,h2,h3,h4,h5,h6{font-family:var(--global-heading-font-family);}h1{font-style:normal;font-weight:600;font-size:38px;line-height:1.5;color:var(--global-palette3);}h2{font-style:normal;font-weight:600;font-size:36px;line-height:1.15;letter-spacing:-0.02em;color:var(--global-palette3);}h3{font-style:normal;font-weight:600;font-size:28px;line-height:1.15;color:var(--global-palette3);}h4{font-style:normal;font-weight:600;font-size:22px;line-height:1.5;color:var(--global-palette4);}h5{font-style:normal;font-weight:600;font-size:20px;line-height:1.5;color:var(--global-palette4);}h6{font-style:normal;font-weight:600;font-size:18px;line-height:1.5;color:var(--global-palette5);}.entry-hero h1{font-style:normal;}.entry-hero .kadence-breadcrumbs, .entry-hero .search-form{font-style:normal;}.entry-hero .kadence-breadcrumbs{max-width:1290px;}.site-container, .site-header-row-layout-contained, .site-footer-row-layout-contained, .entry-hero-layout-contained, .comments-area, .alignfull > .wp-block-cover__inner-container, .alignwide > .wp-block-cover__inner-container{max-width:var(--global-content-width);}.content-width-narrow .content-container.site-container, .content-width-narrow .hero-container.site-container{max-width:var(--global-content-narrow-width);}@media all and (min-width: 1520px){.wp-site-blocks .content-container .alignwide{margin-left:-115px;margin-right:-115px;width:unset;max-width:unset;}}@media all and (min-width: 1102px){.content-width-narrow .wp-site-blocks .content-container .alignwide{margin-left:-130px;margin-right:-130px;width:unset;max-width:unset;}}.content-style-boxed .wp-site-blocks .entry-content .alignwide{margin-left:calc( -1 * var( --global-content-boxed-padding ) );margin-right:calc( -1 * var( --global-content-boxed-padding ) );}.content-area{margin-top:3rem;margin-bottom:3rem;}@media all and (max-width: 1024px){.content-area{margin-top:3rem;margin-bottom:3rem;}}@media all and (max-width: 767px){.content-area{margin-top:2rem;margin-bottom:2rem;}}@media all and (max-width: 1024px){:root{--global-content-boxed-padding:2rem;}}@media all and (max-width: 767px){:root{--global-content-edge-padding:0.95rem;--global-content-boxed-padding:1.5rem;}}.entry-content-wrap{padding:2rem;}@media all and (max-width: 1024px){.entry-content-wrap{padding:2rem;}}@media all and (max-width: 767px){.entry-content-wrap{padding:1.5rem;}}.entry.single-entry{box-shadow:0px 15px 15px -10px rgba(0,0,0,0.05);}.entry.loop-entry{box-shadow:0px 15px 15px -10px rgba(0,0,0,0.05);}.loop-entry .entry-content-wrap{padding:2rem;}@media all and (max-width: 1024px){.loop-entry .entry-content-wrap{padding:2rem;}}@media all and (max-width: 767px){.loop-entry .entry-content-wrap{padding:1.5rem;}}.primary-sidebar.widget-area .widget{margin-bottom:1.5em;color:var(--global-palette4);}.primary-sidebar.widget-area .widget-title{font-style:normal;font-weight:700;font-size:18px;line-height:1.5;color:var(--global-palette3);}.primary-sidebar.widget-area{background:var(--global-palette9);padding:25px 25px 25px 25px;}button, .button, .wp-block-button__link, input[type="button"], input[type="reset"], input[type="submit"], .fl-button, .elementor-button-wrapper .elementor-button{font-style:normal;font-weight:600;font-size:14px;letter-spacing:1px;text-transform:uppercase;border-radius:100px;box-shadow:0px 0px 0px -7px rgba(0,0,0,0);}button:hover, button:focus, button:active, .button:hover, .button:focus, .button:active, .wp-block-button__link:hover, .wp-block-button__link:focus, .wp-block-button__link:active, input[type="button"]:hover, input[type="button"]:focus, input[type="button"]:active, input[type="reset"]:hover, input[type="reset"]:focus, input[type="reset"]:active, input[type="submit"]:hover, input[type="submit"]:focus, input[type="submit"]:active, .elementor-button-wrapper .elementor-button:hover, .elementor-button-wrapper .elementor-button:focus, .elementor-button-wrapper .elementor-button:active{box-shadow:0px 15px 25px -7px rgba(0,0,0,0.1);}@media all and (min-width: 1025px){.transparent-header .entry-hero .entry-hero-container-inner{padding-top:0px;}}@media all and (max-width: 1024px){.mobile-transparent-header .entry-hero .entry-hero-container-inner{padding-top:0px;}}@media all and (max-width: 767px){.mobile-transparent-header .entry-hero .entry-hero-container-inner{padding-top:0px;}}body.single .entry-related{background:var(--global-palette8);}.wp-site-blocks .post-title h1{font-style:normal;}.post-hero-section .entry-hero-container-inner{background:var(--global-palette7);}.entry-hero.post-hero-section .entry-header{min-height:338px;}.post-hero-section .hero-section-overlay{background:var(--global-palette8);}.loop-entry.type-post h2.entry-title{font-style:normal;font-size:22px;color:var(--global-palette3);}
/* Kadence Header CSS */
@media all and (max-width: 1024px){.mobile-transparent-header #masthead{position:absolute;left:0px;right:0px;z-index:100;}.kadence-scrollbar-fixer.mobile-transparent-header #masthead{right:var(--scrollbar-offset,0);}.mobile-transparent-header #masthead, .mobile-transparent-header .site-top-header-wrap .site-header-row-container-inner, .mobile-transparent-header .site-main-header-wrap .site-header-row-container-inner, .mobile-transparent-header .site-bottom-header-wrap .site-header-row-container-inner{background:transparent;}.site-header-row-tablet-layout-fullwidth, .site-header-row-tablet-layout-standard{padding:0px;}}@media all and (min-width: 1025px){.transparent-header #masthead{position:absolute;left:0px;right:0px;z-index:100;}.transparent-header.kadence-scrollbar-fixer #masthead{right:var(--scrollbar-offset,0);}.transparent-header #masthead, .transparent-header .site-top-header-wrap .site-header-row-container-inner, .transparent-header .site-main-header-wrap .site-header-row-container-inner, .transparent-header .site-bottom-header-wrap .site-header-row-container-inner{background:transparent;}}.site-branding a.brand img{max-width:350px;}.site-branding a.brand img.svg-logo-image{width:350px;}@media all and (max-width: 767px){.site-branding a.brand img{max-width:70vw;}.site-branding a.brand img.svg-logo-image{width:70vw;}}.site-branding{padding:0px 0px 0px 0px;}#masthead, #masthead .kadence-sticky-header.item-is-fixed:not(.item-at-start):not(.site-header-row-container):not(.site-main-header-wrap), #masthead .kadence-sticky-header.item-is-fixed:not(.item-at-start) > .site-header-row-container-inner{background:#ffffff;}.site-main-header-wrap .site-header-row-container-inner{border-bottom:0px none transparent;}@media all and (max-width: 767px){.site-main-header-wrap .site-header-row-container-inner{border-bottom:2px none var(--global-palette8);}}.site-main-header-wrap .site-header-row-container-inner>.site-container{padding:5px 25px 5px 25px;}@media all and (max-width: 1024px){.site-main-header-wrap .site-header-row-container-inner>.site-container{padding:0px 5px 0px 5px;}}@media all and (max-width: 767px){.site-main-header-wrap .site-header-row-container-inner>.site-container{padding:5px 2px 5px 2px;}}.site-top-header-wrap .site-header-row-container-inner{background:rgba(229,226,220,0.7);}.site-top-header-inner-wrap{min-height:0px;}.site-top-header-wrap .site-header-row-container-inner>.site-container{padding:0px 20px 0px 20px;}@media all and (max-width: 767px){.site-top-header-wrap .site-header-row-container-inner>.site-container{padding:10px 10px 10px 10px;}}.transparent-header #masthead .site-top-header-wrap .site-header-row-container-inner{background:rgba(239,234,229,0.8);}.header-navigation[class*="header-navigation-style-underline"] .header-menu-container.primary-menu-container>ul>li>a:after{width:calc( 100% - 1.2em);}.main-navigation .primary-menu-container > ul > li.menu-item > a{padding-left:calc(1.2em / 2);padding-right:calc(1.2em / 2);padding-top:0.6em;padding-bottom:0.6em;color:var(--global-palette3);}.main-navigation .primary-menu-container > ul > li.menu-item .dropdown-nav-special-toggle{right:calc(1.2em / 2);}.main-navigation .primary-menu-container > ul li.menu-item > a{font-style:normal;font-weight:500;font-size:18px;}.main-navigation .primary-menu-container > ul > li.menu-item > a:hover{color:var(--global-palette2);}.main-navigation .primary-menu-container > ul > li.menu-item.current-menu-item > a{color:var(--global-palette3);}.header-navigation .header-menu-container ul ul.sub-menu, .header-navigation .header-menu-container ul ul.submenu{background:var(--global-palette8);box-shadow:0px 2px 13px 0px rgba(0,0,0,0.1);}.header-navigation .header-menu-container ul ul li.menu-item, .header-menu-container ul.menu > li.kadence-menu-mega-enabled > ul > li.menu-item > a{border-bottom:0px none rgba(255,255,255,0.1);}.header-navigation .header-menu-container ul ul li.menu-item > a{width:200px;padding-top:1em;padding-bottom:1em;color:var(--global-palette2);font-style:normal;font-size:16px;}.header-navigation .header-menu-container ul ul li.menu-item > a:hover{color:var(--global-palette3);background:var(--global-palette6);}.header-navigation .header-menu-container ul ul li.menu-item.current-menu-item > a{color:var(--global-palette8);background:var(--global-palette1);}.mobile-toggle-open-container .menu-toggle-open{color:var(--global-palette2);padding:0em 0em 0em 0em;font-size:14px;}.mobile-toggle-open-container .menu-toggle-open.menu-toggle-style-bordered{border:1px solid currentColor;}.mobile-toggle-open-container .menu-toggle-open .menu-toggle-icon{font-size:30px;}.mobile-toggle-open-container .menu-toggle-open:hover, .mobile-toggle-open-container .menu-toggle-open:focus-visible{color:var(--global-palette4);}.mobile-navigation ul li{font-style:normal;font-weight:600;font-size:14px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";}.mobile-navigation ul li a{padding-top:1em;padding-bottom:1em;}.mobile-navigation ul li > a, .mobile-navigation ul li.menu-item-has-children > .drawer-nav-drop-wrap{color:var(--global-palette3);}.mobile-navigation ul li > a:hover, .mobile-navigation ul li.menu-item-has-children > .drawer-nav-drop-wrap:hover{color:var(--global-palette2);}.mobile-navigation ul li.current-menu-item > a, .mobile-navigation ul li.current-menu-item.menu-item-has-children > .drawer-nav-drop-wrap{color:var(--global-palette2);}.mobile-navigation ul li.menu-item-has-children .drawer-nav-drop-wrap, .mobile-navigation ul li:not(.menu-item-has-children) a{border-bottom:1px solid var(--global-palette3);}.mobile-navigation:not(.drawer-navigation-parent-toggle-true) ul li.menu-item-has-children .drawer-nav-drop-wrap button{border-left:1px solid var(--global-palette3);}#mobile-drawer .drawer-inner, #mobile-drawer.popup-drawer-layout-fullwidth.popup-drawer-animation-slice .pop-portion-bg, #mobile-drawer.popup-drawer-layout-fullwidth.popup-drawer-animation-slice.pop-animated.show-drawer .drawer-inner{background:var(--global-palette8);}#mobile-drawer .drawer-header .drawer-toggle{padding:0.6em 0.15em 0.6em 0.15em;font-size:24px;}#mobile-drawer .drawer-header .drawer-toggle, #mobile-drawer .drawer-header .drawer-toggle:focus{color:var(--global-palette3);}#mobile-drawer .drawer-header .drawer-toggle:hover, #mobile-drawer .drawer-header .drawer-toggle:focus:hover{color:var(--global-palette4);}.header-html{font-style:normal;font-size:14px;letter-spacing:0em;}.header-html a{color:var(--global-palette3);}.header-html a:hover{color:var(--global-palette2);}.header-social-wrap .header-social-inner-wrap{font-size:0.88em;gap:0em;}.header-social-wrap .header-social-inner-wrap .social-button{color:var(--global-palette3);background:var(--global-palette4);border:2px none currentColor;border-radius:0px;}.header-mobile-social-wrap .header-mobile-social-inner-wrap{font-size:0.7em;gap:0.05em;}.header-mobile-social-wrap .header-mobile-social-inner-wrap .social-button{color:var(--global-palette3);background:var(--global-palette8);border:2px none transparent;border-radius:100px;}.search-toggle-open-container .search-toggle-open{background:var(--global-palette2);color:var(--global-palette9);padding:10px 10px 10px 10px;font-style:normal;font-weight:600;font-size:12px;}.search-toggle-open-container .search-toggle-open.search-toggle-style-bordered{border:1px solid currentColor;}.search-toggle-open-container .search-toggle-open .search-toggle-icon{font-size:1.2em;}.search-toggle-open-container .search-toggle-open:hover, .search-toggle-open-container .search-toggle-open:focus{color:var(--global-palette2);background:var(--global-palette6);}#search-drawer .drawer-inner .drawer-content form input.search-field, #search-drawer .drawer-inner .drawer-content form .kadence-search-icon-wrap, #search-drawer .drawer-header{color:var(--global-palette3);}#search-drawer .drawer-inner{background:var(--global-palette8);}.mobile-html{font-style:normal;font-weight:500;font-size:14px;line-height:1.2;letter-spacing:0px;text-transform:none;}.mobile-html a{color:#222222;}
/* Kadence Footer CSS */
.site-middle-footer-wrap .site-footer-row-container-inner{background:var(--global-palette9);border-top:2px solid var(--global-palette8);}.site-middle-footer-inner-wrap{padding-top:30px;padding-bottom:30px;grid-column-gap:30px;grid-row-gap:30px;}.site-middle-footer-inner-wrap .widget{margin-bottom:30px;}.site-middle-footer-inner-wrap .site-footer-section:not(:last-child):after{right:calc(-30px / 2);}.site-bottom-footer-wrap .site-footer-row-container-inner{background:var(--global-palette8);}.site-bottom-footer-inner-wrap{padding-top:30px;padding-bottom:30px;grid-column-gap:30px;}.site-bottom-footer-inner-wrap .widget{margin-bottom:30px;}.site-bottom-footer-inner-wrap .site-footer-section:not(:last-child):after{right:calc(-30px / 2);}.footer-social-wrap .footer-social-inner-wrap{font-size:1em;gap:0.3em;}.site-footer .site-footer-wrap .site-footer-section .footer-social-wrap .footer-social-inner-wrap .social-button{background:var(--global-palette6);border:2px none transparent;border-radius:100px;}#colophon .footer-html{font-style:normal;font-weight:500;font-size:14px;letter-spacing:1.5px;text-transform:uppercase;}#colophon .footer-navigation .footer-menu-container > ul > li > a{padding-left:calc(1.2em / 2);padding-right:calc(1.2em / 2);padding-top:calc(1.36em / 2);padding-bottom:calc(1.36em / 2);color:var(--global-palette5);}#colophon .footer-navigation .footer-menu-container > ul li a{font-style:normal;font-weight:600;font-size:12px;letter-spacing:1px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";text-transform:uppercase;}#colophon .footer-navigation .footer-menu-container > ul li a:hover{color:var(--global-palette-highlight);}#colophon .footer-navigation .footer-menu-container > ul li.current-menu-item > a{color:var(--global-palette3);}
/* Kadence Pro Header CSS */
.header-navigation-dropdown-direction-left ul ul.submenu, .header-navigation-dropdown-direction-left ul ul.sub-menu{right:0px;left:auto;}.rtl .header-navigation-dropdown-direction-right ul ul.submenu, .rtl .header-navigation-dropdown-direction-right ul ul.sub-menu{left:0px;right:auto;}.header-account-button .nav-drop-title-wrap > .kadence-svg-iconset, .header-account-button > .kadence-svg-iconset{font-size:1.2em;}.site-header-item .header-account-button .nav-drop-title-wrap, .site-header-item .header-account-wrap > .header-account-button{display:flex;align-items:center;}.header-account-style-icon_label .header-account-label{padding-left:5px;}.header-account-style-label_icon .header-account-label{padding-right:5px;}.site-header-item .header-account-wrap .header-account-button{text-decoration:none;box-shadow:none;color:inherit;background:transparent;padding:0.6em 0em 0.6em 0em;}.header-mobile-account-wrap .header-account-button .nav-drop-title-wrap > .kadence-svg-iconset, .header-mobile-account-wrap .header-account-button > .kadence-svg-iconset{font-size:1.2em;}.header-mobile-account-wrap .header-account-button .nav-drop-title-wrap, .header-mobile-account-wrap > .header-account-button{display:flex;align-items:center;}.header-mobile-account-wrap.header-account-style-icon_label .header-account-label{padding-left:5px;}.header-mobile-account-wrap.header-account-style-label_icon .header-account-label{padding-right:5px;}.header-mobile-account-wrap .header-account-button{text-decoration:none;box-shadow:none;color:inherit;background:transparent;padding:0.6em 0em 0.6em 0em;}#login-drawer .drawer-inner .drawer-content{display:flex;justify-content:center;align-items:center;position:absolute;top:0px;bottom:0px;left:0px;right:0px;padding:0px;}#loginform p label{display:block;}#login-drawer #loginform{width:100%;}#login-drawer #loginform input{width:100%;}#login-drawer #loginform input[type="checkbox"]{width:auto;}#login-drawer .drawer-inner .drawer-header{position:relative;z-index:100;}#login-drawer .drawer-content_inner.widget_login_form_inner{padding:2em;width:100%;max-width:350px;border-radius:.25rem;background:var(--global-palette9);color:var(--global-palette4);}#login-drawer .lost_password a{color:var(--global-palette6);}#login-drawer .lost_password, #login-drawer .register-field{text-align:center;}#login-drawer .widget_login_form_inner p{margin-top:1.2em;margin-bottom:0em;}#login-drawer .widget_login_form_inner p:first-child{margin-top:0em;}#login-drawer .widget_login_form_inner label{margin-bottom:0.5em;}#login-drawer hr.register-divider{margin:1.2em 0;border-width:1px;}#login-drawer .register-field{font-size:90%;}@media all and (min-width: 1025px){#login-drawer hr.register-divider.hide-desktop{display:none;}#login-drawer p.register-field.hide-desktop{display:none;}}@media all and (max-width: 1024px){#login-drawer hr.register-divider.hide-mobile{display:none;}#login-drawer p.register-field.hide-mobile{display:none;}}@media all and (max-width: 767px){#login-drawer hr.register-divider.hide-mobile{display:none;}#login-drawer p.register-field.hide-mobile{display:none;}}.tertiary-navigation .tertiary-menu-container > ul > li.menu-item > a{padding-left:calc(1.2em / 2);padding-right:calc(1.2em / 2);padding-top:0.6em;padding-bottom:0.6em;color:var(--global-palette5);}.tertiary-navigation .tertiary-menu-container > ul > li.menu-item > a:hover{color:var(--global-palette-highlight);}.tertiary-navigation .tertiary-menu-container > ul > li.menu-item.current-menu-item > a{color:var(--global-palette3);}.quaternary-navigation .quaternary-menu-container > ul > li.menu-item > a{padding-left:calc(1.2em / 2);padding-right:calc(1.2em / 2);padding-top:0.6em;padding-bottom:0.6em;color:var(--global-palette5);}.quaternary-navigation .quaternary-menu-container > ul > li.menu-item > a:hover{color:var(--global-palette-highlight);}.quaternary-navigation .quaternary-menu-container > ul > li.menu-item.current-menu-item > a{color:var(--global-palette3);}#main-header .header-divider{border-right:1px solid var(--global-palette6);height:50%;}#main-header .header-divider2{border-right:1px solid var(--global-palette6);height:50%;}#main-header .header-divider3{border-right:1px solid var(--global-palette6);height:50%;}#mobile-header .header-mobile-divider, #mobile-drawer .header-mobile-divider{border-right:1px solid var(--global-palette6);height:50%;}#mobile-drawer .header-mobile-divider{border-top:1px solid var(--global-palette6);width:50%;}#mobile-header .header-mobile-divider2{border-right:1px solid var(--global-palette6);height:50%;}#mobile-drawer .header-mobile-divider2{border-top:1px solid var(--global-palette6);width:50%;}.header-item-search-bar form ::-webkit-input-placeholder{color:currentColor;opacity:0.5;}.header-item-search-bar form ::placeholder{color:currentColor;opacity:0.5;}.header-search-bar form{max-width:100%;width:240px;}.header-mobile-search-bar form{max-width:calc(100vw - var(--global-sm-spacing) - var(--global-sm-spacing));width:240px;}.header-widget-lstyle-normal .header-widget-area-inner a:not(.button){text-decoration:underline;}.element-contact-inner-wrap{display:flex;flex-wrap:wrap;align-items:center;margin-top:-0.6em;margin-left:calc(-0.6em / 2);margin-right:calc(-0.6em / 2);}.element-contact-inner-wrap .header-contact-item{display:inline-flex;flex-wrap:wrap;align-items:center;margin-top:0.6em;margin-left:calc(0.6em / 2);margin-right:calc(0.6em / 2);}.element-contact-inner-wrap .header-contact-item .kadence-svg-iconset{font-size:1em;}.header-contact-item img{display:inline-block;}.header-contact-item .contact-label{margin-left:0.3em;}.rtl .header-contact-item .contact-label{margin-right:0.3em;margin-left:0px;}.header-mobile-contact-wrap .element-contact-inner-wrap{display:flex;flex-wrap:wrap;align-items:center;margin-top:-0.6em;margin-left:calc(-0.6em / 2);margin-right:calc(-0.6em / 2);}.header-mobile-contact-wrap .element-contact-inner-wrap .header-contact-item{display:inline-flex;flex-wrap:wrap;align-items:center;margin-top:0.6em;margin-left:calc(0.6em / 2);margin-right:calc(0.6em / 2);}.header-mobile-contact-wrap .element-contact-inner-wrap .header-contact-item .kadence-svg-iconset{font-size:1em;}#main-header .header-button2{border:2px none transparent;box-shadow:0px 0px 0px -7px rgba(0,0,0,0);}#main-header .header-button2:hover{box-shadow:0px 15px 25px -7px rgba(0,0,0,0.1);}.mobile-header-button2-wrap .mobile-header-button-inner-wrap .mobile-header-button2{border:2px none transparent;box-shadow:0px 0px 0px -7px rgba(0,0,0,0);}.mobile-header-button2-wrap .mobile-header-button-inner-wrap .mobile-header-button2:hover{box-shadow:0px 15px 25px -7px rgba(0,0,0,0.1);}#widget-drawer.popup-drawer-layout-fullwidth .drawer-content .header-widget2, #widget-drawer.popup-drawer-layout-sidepanel .drawer-inner{max-width:400px;}#widget-drawer.popup-drawer-layout-fullwidth .drawer-content .header-widget2{margin:0 auto;}.widget-toggle-open{display:flex;align-items:center;background:transparent;box-shadow:none;}.widget-toggle-open:hover, .widget-toggle-open:focus{border-color:currentColor;background:transparent;box-shadow:none;}.widget-toggle-open .widget-toggle-icon{display:flex;}.widget-toggle-open .widget-toggle-label{padding-right:5px;}.rtl .widget-toggle-open .widget-toggle-label{padding-left:5px;padding-right:0px;}.widget-toggle-open .widget-toggle-label:empty, .rtl .widget-toggle-open .widget-toggle-label:empty{padding-right:0px;padding-left:0px;}.widget-toggle-open-container .widget-toggle-open{color:var(--global-palette5);padding:0.4em 0.6em 0.4em 0.6em;font-size:14px;}.widget-toggle-open-container .widget-toggle-open.widget-toggle-style-bordered{border:1px solid currentColor;}.widget-toggle-open-container .widget-toggle-open .widget-toggle-icon{font-size:20px;}.widget-toggle-open-container .widget-toggle-open:hover, .widget-toggle-open-container .widget-toggle-open:focus{color:var(--global-palette-highlight);}#widget-drawer .header-widget-2style-normal a:not(.button){text-decoration:underline;}#widget-drawer .header-widget-2style-plain a:not(.button){text-decoration:none;}#widget-drawer .header-widget2 .widget-title{color:var(--global-palette9);}#widget-drawer .header-widget2{color:var(--global-palette8);}#widget-drawer .header-widget2 a:not(.button), #widget-drawer .header-widget2 .drawer-sub-toggle{color:var(--global-palette8);}#widget-drawer .header-widget2 a:not(.button):hover, #widget-drawer .header-widget2 .drawer-sub-toggle:hover{color:var(--global-palette9);}#mobile-secondary-site-navigation ul li{font-size:14px;}#mobile-secondary-site-navigation ul li a{padding-top:1em;padding-bottom:1em;}#mobile-secondary-site-navigation ul li > a, #mobile-secondary-site-navigation ul li.menu-item-has-children > .drawer-nav-drop-wrap{color:var(--global-palette8);}#mobile-secondary-site-navigation ul li.current-menu-item > a, #mobile-secondary-site-navigation ul li.current-menu-item.menu-item-has-children > .drawer-nav-drop-wrap{color:var(--global-palette-highlight);}#mobile-secondary-site-navigation ul li.menu-item-has-children .drawer-nav-drop-wrap, #mobile-secondary-site-navigation ul li:not(.menu-item-has-children) a{border-bottom:1px solid rgba(255,255,255,0.1);}#mobile-secondary-site-navigation:not(.drawer-navigation-parent-toggle-true) ul li.menu-item-has-children .drawer-nav-drop-wrap button{border-left:1px solid rgba(255,255,255,0.1);}
</style>
<link rel='preload' href='https://www.simplywhisked.com/wp-content/themes/kadence/assets/css/header.min.css?ver=1.1.46' data-rocket-async="style" as="style" onload="this.onload=null;this.rel='stylesheet'" onerror="this.removeAttribute('data-rocket-async')" media='all' />
<link rel='preload' href='https://www.simplywhisked.com/wp-content/themes/kadence/assets/css/content.min.css?ver=1.1.46' data-rocket-async="style" as="style" onload="this.onload=null;this.rel='stylesheet'" onerror="this.removeAttribute('data-rocket-async')" media='all' />
<link rel='preload' href='https://www.simplywhisked.com/wp-content/themes/kadence/assets/css/comments.min.css?ver=1.1.46' data-rocket-async="style" as="style" onload="this.onload=null;this.rel='stylesheet'" onerror="this.removeAttribute('data-rocket-async')" media='all' />
<link rel='preload' href='https://www.simplywhisked.com/wp-content/themes/kadence/assets/css/sidebar.min.css?ver=1.1.46' data-rocket-async="style" as="style" onload="this.onload=null;this.rel='stylesheet'" onerror="this.removeAttribute('data-rocket-async')" media='all' />
<link rel='preload' href='https://www.simplywhisked.com/wp-content/themes/kadence/assets/css/footer.min.css?ver=1.1.46' data-rocket-async="style" as="style" onload="this.onload=null;this.rel='stylesheet'" onerror="this.removeAttribute('data-rocket-async')" media='all' />
<style id='kadence-custom-font-css-inline-css'>
@font-face {font-family: "Palmer Lake Script";font-style: normal;font-weight: 400;src:local("palmer lake script"),url("https://www.simplywhisked.com/wp-content/uploads/2023/04/PalmerLakeScript-Regular.woff2") format("woff2"),url("https://www.simplywhisked.com/wp-content/uploads/2023/04/PalmerLakeScript-Regular.woff") format("woff");font-display: swap;}@font-face {font-family: "Fandango";font-style: normal;font-weight: 400;src:local("fandango"),url("https://www.simplywhisked.com/wp-content/uploads/2023/03/Fandango-SVG.woff") format("woff");font-display: swap;}@font-face {font-family: "KindnessMatters";font-style: normal;font-weight: 400;src: url("https://www.simplywhisked.com/wp-content/uploads/2022/04/KindnessMatters.eot");src:local("KindnessMatters"),url("https://www.simplywhisked.com/wp-content/uploads/2022/04/KindnessMatters.eot?#iefix") format("embedded-opentype"),url("https://www.simplywhisked.com/wp-content/uploads/2022/04/KindnessMatters.woff2") format("woff2"),url("https://www.simplywhisked.com/wp-content/uploads/2022/04/KindnessMatters.woff") format("woff");font-display: swap;}
</style>
<style id='kadence-blocks-global-variables-inline-css'>
:root {--global-kb-font-size-sm:clamp(0.8rem, 0.73rem + 0.217vw, 0.9rem);--global-kb-font-size-md:clamp(1.1rem, 0.995rem + 0.326vw, 1.25rem);--global-kb-font-size-lg:clamp(1.75rem, 1.576rem + 0.543vw, 2rem);--global-kb-font-size-xl:clamp(2.25rem, 1.728rem + 1.63vw, 3rem);--global-kb-font-size-xxl:clamp(2.5rem, 1.456rem + 3.26vw, 4rem);--global-kb-font-size-xxxl:clamp(2.75rem, 0.489rem + 7.065vw, 6rem);}
</style>
<style id='kadence_blocks_css-inline-css'>
.kb-row-layout-wrap.wp-block-kadence-rowlayout.kb-row-layout-id62747_dfa4d0-da{margin-bottom:25px;}.kb-row-layout-id62747_dfa4d0-da > .kt-row-column-wrap{padding-top:24px;padding-bottom:25px;grid-template-columns:minmax(0, 1fr);}@media all and (max-width: 767px){.kb-row-layout-id62747_dfa4d0-da > .kt-row-column-wrap{grid-template-columns:minmax(0, 1fr);}}.wp-block-kadence-advancedheading.kt-adv-heading62747_6ed9d4-2e, .wp-block-kadence-advancedheading.kt-adv-heading62747_6ed9d4-2e[data-kb-block="kb-adv-heading62747_6ed9d4-2e"]{font-size:18px;}.wp-block-kadence-iconlist.kt-svg-icon-list-items62747_6ef7fc-11 ul.kt-svg-icon-list:not(.this-prevents-issues):not(.this-stops-third-party-issues):not(.tijsloc){margin-top:15px;margin-right:0px;margin-bottom:10px;margin-left:0px;}.wp-block-kadence-iconlist.kt-svg-icon-list-items62747_6ef7fc-11 ul.kt-svg-icon-list{grid-row-gap:10px;}.kt-svg-icon-list-items62747_6ef7fc-11 ul.kt-svg-icon-list .kt-svg-icon-list-item-wrap, .kt-svg-icon-list-items62747_6ef7fc-11 ul.kt-svg-icon-list .kt-svg-icon-list-item-wrap a{font-size:18px;}@media all and (max-width: 1024px){.wp-block-kadence-iconlist.kt-svg-icon-list-items62747_6ef7fc-11 ul.kt-svg-icon-list{grid-row-gap:10px;}}@media all and (max-width: 767px){.wp-block-kadence-iconlist.kt-svg-icon-list-items62747_6ef7fc-11 ul.kt-svg-icon-list{grid-row-gap:10px;}}.kt-svg-icon-list-item-62747_7d3db9-16 .kt-svg-icon-list-single{font-size:20px !important;}.kt-svg-icon-list-item-62747_ebaac6-0a .kt-svg-icon-list-single{font-size:20px !important;}.kt-svg-icon-list-item-62747_dca045-40 .kt-svg-icon-list-single{font-size:20px !important;}
</style>
<link data-minify="1" rel='preload' href='https://www.simplywhisked.com/wp-content/cache/min/1/wp-content/plugins/imark-interactive-toolkit/frontend/css/inc-frontend-style.css?ver=1696565781' data-rocket-async="style" as="style" onload="this.onload=null;this.rel='stylesheet'" onerror="this.removeAttribute('data-rocket-async')" media='all' />
<link data-minify="1" rel='preload' href='https://www.simplywhisked.com/wp-content/cache/min/1/wp-content/plugins/imark-interactive-toolkit/frontend/css/imp-frontend-style.css?ver=1696565781' data-rocket-async="style" as="style" onload="this.onload=null;this.rel='stylesheet'" onerror="this.removeAttribute('data-rocket-async')" media='all' />
<script async="async" data-noptimize="1" data-cfasync="false" src='https://scripts.mediavine.com/tags/simply-whisked.js?ver=6.3.2' id='mv-script-wrapper-js'></script>
<link rel="https://api.w.org/" href="https://www.simplywhisked.com/wp-json/" /><link rel="alternate" type="application/json" href="https://www.simplywhisked.com/wp-json/wp/v2/posts/11014" /><link rel="alternate" type="application/json+oembed" href="https://www.simplywhisked.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.simplywhisked.com%2Fbuffalo-chicken-chili%2F" />
<link rel="alternate" type="text/xml+oembed" href="https://www.simplywhisked.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.simplywhisked.com%2Fbuffalo-chicken-chili%2F&format=xml" />
<script type="rocketlazyloadscript">
function reveal() {
var reveals = document.querySelectorAll("#imark_newsletter, .not-a-thing");
let bodyElement = document.getElementsByTagName('body')[0];
for (var i = 0; i < reveals.length; i++) {
var windowHeight = window.innerHeight;
var elementTop = reveals[i].getBoundingClientRect().top;
var elementVisible = reveals[i].offsetHeight - 50;
var divID = reveals[i].getAttribute('id');
if (elementTop < windowHeight - elementVisible) {
if(! reveals[i].classList.contains('animate_triggred') ){
bodyElement.classList.add("promote-active");
reveals[i].classList.add("active-promote");
}
}
if ( elementTop < 200 ) {
reveals[i].classList.remove("active-promote");
reveals[i].classList.add("animate_triggred");
bodyElement.classList.remove("promote-active");
}
}
}
var animItem = [];
document.addEventListener("DOMContentLoaded", function(event) {
window.addEventListener("scroll", reveal);
var cookies_disable = 'on';
if( getCookie('promote_disable') == 'wait' && cookies_disable == '' ) {
var reveals = document.querySelectorAll(".imark_newsletter");
reveals[0].classList.add("animate_triggred");
}
// reveal();
});
window.addEventListener("click", function(){
let bodyElement = document.getElementsByTagName('body')[0];
var reveals = document.querySelectorAll("#imark_newsletter, .not-a-thing");
bodyElement.classList.remove("promote-active");
for (var i = 0; i < reveals.length; i++) {
if( reveals[i].classList.contains('active-promote') ){
reveals[i].classList.add("animate_triggred");
}
if( reveals[i].classList.contains('imark_newsletter') ) {
setCookie( 'promote_disable', 'wait', 1 );
}
}
});
function setCookie( cname, cvalue, exdays ) {
const d = new Date();
d.setTime( d.getTime() + (exdays * 24 * 60 * 60 * 1000));
let expires = "expires="+d.toUTCString();
document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
}
function getCookie(cname) {
let name = cname + "=";
let ca = document.cookie.split(';');
for(let i = 0; i < ca.length; i++) {
let c = ca[i];
while (c.charAt(0) == ' ') {
c = c.substring(1);
}
if (c.indexOf(name) == 0) {
return c.substring(name.length, c.length);
}
}
return "";
}
</script><style>
.not-a-thing {
padding: 15px;
}
.not-a-thing.active-promote {
position: relative;
z-index: 999999999999;
box-shadow: 0px 0px 2px 2px #fff;
background: #fff;
}
body.promote-disable .not-a-thing {
position: initial;
z-index: initial;
padding: initial;
background: initial;
box-shadow: initial;
}
body.promote-active article.post:before, body.promote-active article.page:before {
content: "";
background: #000;
left: 0;
right: 0;
top: 0;
bottom: 0;
position: fixed;
width: 100%;
height: 100%;
z-index: 99;
opacity: 0.8;
}
</style><meta name="p:domain_verify" content="e12865e46abfa17975e562b028a4c7ad"/>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-65419364-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){window.dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-65419364-1');
</script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-D9HJ0VXK33"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-D9HJ0VXK33');
</script><style type="text/css">
body{ --tr-star-color:#F2B955;
}
.tasty-recipes-rating-solid.tasty-recipes-clip-10{-webkit-clip-path:polygon(0 0,10% 0,10% 100%,0 100%);clip-path:polygon(0 0,10% 0,10% 100%,0 100%)}.tasty-recipes-rating-solid.tasty-recipes-clip-20{-webkit-clip-path:polygon(0 0,20% 0,20% 100%,0 100%);clip-path:polygon(0 0,20% 0,20% 100%,0 100%)}.tasty-recipes-rating-solid.tasty-recipes-clip-30{-webkit-clip-path:polygon(0 0,30% 0,30% 100%,0 100%);clip-path:polygon(0 0,30% 0,30% 100%,0 100%)}.tasty-recipes-rating-solid.tasty-recipes-clip-40{-webkit-clip-path:polygon(0 0,40% 0,40% 100%,0 100%);clip-path:polygon(0 0,40% 0,40% 100%,0 100%)}.tasty-recipes-rating-solid.tasty-recipes-clip-50{-webkit-clip-path:polygon(0 0,50% 0,50% 100%,0 100%);clip-path:polygon(0 0,50% 0,50% 100%,0 100%)}.tasty-recipes-rating-solid.tasty-recipes-clip-60{-webkit-clip-path:polygon(0 0,60% 0,60% 100%,0 100%);clip-path:polygon(0 0,60% 0,60% 100%,0 100%)}.tasty-recipes-rating-solid.tasty-recipes-clip-70{-webkit-clip-path:polygon(0 0,70% 0,70% 100%,0 100%);clip-path:polygon(0 0,70% 0,70% 100%,0 100%)}.tasty-recipes-rating-solid.tasty-recipes-clip-80{-webkit-clip-path:polygon(0 0,80% 0,80% 100%,0 100%);clip-path:polygon(0 0,80% 0,80% 100%,0 100%)}.tasty-recipes-rating-solid.tasty-recipes-clip-90{-webkit-clip-path:polygon(0 0,90% 0,90% 100%,0 100%);clip-path:polygon(0 0,90% 0,90% 100%,0 100%)}.tasty-recipes-rating-outline{display:inline-block;height:1em;line-height:1;width:1em}.tasty-recipes-rating-outline.tasty-recipes-clip-0 svg{fill:url(#tasty-recipes-clip-0)}.tasty-recipes-rating-outline.tasty-recipes-clip-10 svg{fill:url(#tasty-recipes-clip-10)}.tasty-recipes-rating-outline.tasty-recipes-clip-20 svg{fill:url(#tasty-recipes-clip-20)}.tasty-recipes-rating-outline.tasty-recipes-clip-30 svg{fill:url(#tasty-recipes-clip-30)}.tasty-recipes-rating-outline.tasty-recipes-clip-40 svg{fill:url(#tasty-recipes-clip-40)}.tasty-recipes-rating-outline.tasty-recipes-clip-50 svg{fill:url(#tasty-recipes-clip-50)}.tasty-recipes-rating-outline.tasty-recipes-clip-60 svg{fill:url(#tasty-recipes-clip-60)}.tasty-recipes-rating-outline.tasty-recipes-clip-70 svg{fill:url(#tasty-recipes-clip-70)}.tasty-recipes-rating-outline.tasty-recipes-clip-80 svg{fill:url(#tasty-recipes-clip-80)}.tasty-recipes-rating-outline.tasty-recipes-clip-90 svg{fill:url(#tasty-recipes-clip-90)}.tasty-recipes-rating-outline.tasty-recipes-clip-100 svg{fill:url(#tasty-recipes-clip-100)}.comment-content .tasty-recipes-rating-outline.tasty-recipes-clip-100 svg{fill:currentColor}.tasty-recipes,.tasty-recipes-ratings{--tr-star-size:18px;--tr-star-margin:0px}.tasty-recipes-rating,.tasty-recipes-ratings-buttons{color:#f2b955;color:var(--tr-star-color)}.tasty-recipes-comment-form{border:none;margin:0;padding:0}.tasty-recipes-entry-header div.tasty-recipes-rating p,.tasty-recipes-rating-stars,.tasty-recipes-ratings,.tasty-recipes-ratings-buttons{display:inline-flex;font-size:1.1em;font-size:var(--tr-star-size);gap:.3em;gap:var(--tr-star-margin)}.tasty-recipes-entry-header div.tasty-recipes-rating p span.tasty-recipes-rating,.tasty-recipes-rating-stars span.tasty-recipes-rating,.tasty-recipes-ratings span.tasty-recipes-rating,.tasty-recipes-ratings-buttons span.tasty-recipes-rating{cursor:pointer;display:inline-block;font-size:1.1em;font-size:var(--tr-star-size);margin:0;width:1.1em;width:var(--tr-star-size)}.tasty-recipes-entry-header div.tasty-recipes-rating p{display:flex;justify-content:center}.tasty-recipes-ratings-buttons{flex-direction:row-reverse}.tasty-recipes-ratings-buttons input[type=radio]{clip:auto;display:inline-block!important;width:1.1em!important;width:var(--tr-star-size)!important}.tasty-recipes-ratings-buttons>span{position:relative}.tasty-recipes-ratings-buttons>span i{font-style:normal}.tasty-recipes-ratings-buttons>span .unchecked{display:inline-block}.tasty-recipes-ratings-buttons>input:checked~span .unchecked,.tasty-recipes-ratings-buttons>span .checked{display:none}.tasty-recipes-ratings-buttons>input:checked~span .checked{display:inline-block}@media only screen and (min-width:1024px){.tasty-recipes-ratings-buttons:not(:hover)>input:checked~span .unchecked,.tasty-recipes-ratings-buttons>:hover .unchecked,.tasty-recipes-ratings-buttons>:hover~span .unchecked{display:none}.tasty-recipes-ratings-buttons:not(:hover)>input:checked~span .checked,.tasty-recipes-ratings-buttons>:hover .checked,.tasty-recipes-ratings-buttons>:hover~span .checked{display:inline-block}}.tasty-recipes-ratings-buttons>input{cursor:pointer;height:100%;margin:0;margin-left:calc((var(--tr-star-size) + var(--tr-star-margin))*-1);opacity:0;position:relative;z-index:2}.tasty-recipes-rating a,.tasty-recipes-rating a:link{background:none;outline:none;text-decoration:none}.tasty-recipes-screen-reader{clip:rect(1px,1px,1px,1px);word-wrap:normal!important;border:0;-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.tasty-recipes-rating-link{align-items:center;display:inline-flex}.tasty-recipes-rating-link .rating-label{font-size:80%;padding-left:.4em}.tasty-recipes-selected-minimum-rating .comment-form-comment .required{display:none}.tasty-recipes-has-ratings{text-decoration:none!important}
</style>
<link rel="icon" href="https://www.simplywhisked.com/wp-content/uploads/2023/06/circles-38-150x150.png" sizes="32x32" />
<link rel="icon" href="https://www.simplywhisked.com/wp-content/uploads/2023/06/circles-38.png" sizes="192x192" />
<link rel="apple-touch-icon" href="https://www.simplywhisked.com/wp-content/uploads/2023/06/circles-38.png" />
<meta name="msapplication-TileImage" content="https://www.simplywhisked.com/wp-content/uploads/2023/06/circles-38.png" />
<style id="wp-custom-css">
a:not(.content) {color:#222;}
a:not(.content):hover {text-decoration:underline;}
.kb-splide .splide__arrow {background:#222 !important;opacity:.8 !important; border:none !important;border-radius:100% !important; width:3rem !important;color:#fff !important; top:42% !important;}
.kb-splide .splide__arrow--next {right:-2em !important;}
.kb-splide .splide__arrow--prev {left:-2em !important;}
/* SEARCH */
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button {
color:#fff !important;
padding:15px;
background:#222 !important;
border-radius:50% !important;
}
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
border:0;
border-radius:0;
}
#search-drawer .drawer-inner {
background:#F9F8F6;
color:#2f4359;
}
.wp-block-search .wp-block-search__input {border:0 !important;}
#search-drawer .drawer-inner input.search-field, #search-drawer .drawer-inner input.search-field:focus {color: #222 !important;}
/** Facet WP **/
.fwpl-layout { grid-gap:30px !important; }
.facetwp-checkbox {display:inline-block; background:#F9F8F6 !important;text-align:center;}
.facetwp-counter {display:none;}
.facetwp-checkbox:hover {text-decoration:underline;}
.facetwp-checkbox.checked {background:#4D4A4D !important; color:#fff !important;}
.facetwp-display-value {padding-right:0 !important;}
.facetwp-checkbox:hover
{background:#4D4A4D !important;color:#fff !important;text-decoration:none;}
.facet-post-title, .facet-entry-title a {
line-height:1.4;
padding:15px 0;}
.facet-post-title a {color:#222;font-weight:600;}
.fwpl-result img {width:100%;}
.fwpl-item.el-bdvpmr {padding:10px;}
.fwpl-item.el-bdvpmr a {text-decoration:none;padding:15px 0;}
.fs-label-wrap .fs-label {
text-transform: uppercase;
font-weight: 400;
font-size: 14px;
color: #666;
letter-spacing:1px;
}
.fs-label-wrap {padding:8px; width:100%;}
.category-submenu a, .post-title .entry-taxonomies a, .facetwp-checkbox, .sub-cat a, .diet a, .diet-sidebar a, .diet-index a {font-size:18px !important;
padding:6px 10px !important;
text-transform:uppercase; text-decoration:none;display:inline-block !important;
margin: 5px;
letter-spacing:1px !important;
font-size:12px !important;
font-weight:600 !important;
border-radius:50px;
background:#E5E2DC !important;
color:#2A262A !important;
line-height:1.3;
}
.category-submenu-text {display:none;}
.facetwp-checkbox {font-size:14px !important;}
.diet-sidebar a:hover, .sub-cat a:hover, .diet a:hover, .diet-sidebar a:hover, .diet-index a:hover {
background:#2A262A !important;color:#fff !important;
text-decoration:none !important;
}
.fs-label-wrap {border:0px solid #fff;}
.fs-wrap { width:95% !important;}
.facetwp-facet {margin-bottom:15px !important;text-align:center;}
.diet-sidebar a {margin:5px 5px!important;}
.diet-sidebar {padding:20px 10px;}
.diet p {margin:0; padding:0;}
.title-entry-excerpt p {margin:15px auto 0 !important;font-size:20px;}
.title-entry-excerpt a {color:#222;}
.entry-hero .kadence-breadcrumbs {margin-bottom:0px;}
.category-submenu ul{margin:0 0 10px;}
.sub-cat a { background:#E5E2DC; color:#fff; font-size:14px !important;}
.diet-index a { padding:10px !important; margin-right:5px;}
.diet, .diet a {font-Size:16px;font-weight:500;letter-spacing:0 .5px;}
.sub-cat a:hover, .diet a:hover, .diet-index a:hover {text-decoration:none;}
.diet-index {font-size:14px; }
.sub-cat {text-transform:uppercase;font-weight:500;}
.single .diet {padding:0 !important;}
a.post-more-link {font-weight:400;}
/*STOP*/
a:hover {color:#222;}
.header-html {padding:10px;}
.toc, .warn-ing, .dairy-tip {background:#F9F8F6 !important;}
.entry {border-radius:0;}
.imark_newsletter_content form input {border: 1px solid #fff; }
.loop-entry .entry-summary p, .loop-entry .entry-header .entry-meta {font-size:20px;}
.loop-entry .entry-content-wrap {padding:1.5rem 2rem 1rem;}
.imark_newsletter_content {border-radius:0;border:none;}
::placeholder {color:#999;font-size:18px;}
.poison .kt-btn-wrap .kt-button {margin-bottom:10px !important;}
.sister p, .sister a {color:#222 !important;}
.entry-tags a.tag-link { border:1px solid ;border-radius:50px !important; font-weight:600; font-size:12px !important;letter-spacing:1px;}
.entry-hero-container-inner .entry-header>div p {text-align:left !important; max-width:none !important}
.single-content {margin-top:0;}
.tasty-roundups .tasty-roundups-item .tasty-roundups-content-container .tasty-roundups-button {font-size:14px;font-weight:500;color:#222;background:#E5E2DC !important;}
.post-navigation-sub small {font-weight:600 !important;}
.post-navigation-wrap.entry-content-wrap {margin-bottom:50px;}
h2.entry-related-title {font-size:28px;}
.formkit-submit > span {background:#2A262A !important;color:#fff;border:0 !important;}
.formkit-submit > span:hover {background:#E5E2DC !important;color:#333;}
.formkit-submit > span, .home-browse a {font-weight:600 !important;font-size:16px !important;}
.formkit-form[data-uid="ae0b2f84d4"] h2 {font-weight:600 !important; margin:.2em 0 !important;}
.formkit-form[data-uid="ae0b2f84d4"][data-format="modal"] {max-width:550px;padding:40px;}
.page-id-8843 a {text-decoration:none;color:#222;
}
.page-id-8843 .content-area {background:#F9F8F6;
}
.disclosure {font-weight:600;}
.page-id-8843 a:hover {text-decoration:underline; color:#333;
}
.page-id-8843 .single-content {margin-top:0;}
.page-id-8843 .page-title .kadence-breadcrumbs { margin-bottom:0px !important;}
.search h1 {font-size:38px !important;}
.sister a {text-decoration:underline !important;}
legend {font-weight:500 !important;}
.entry-related-inner-content {padding:0;}
.entry-tags a.tag-link {color:#333;}
.more-link-wrap a {background-image: none !important; }
#block-17 {border:none;background:#fafafa;}
.disclosure a {background:transparent !important;text-decoration:underline !important;}
.primary-sidebar.widget-area .widget-title {margin:10px auto;font-size:18px;font-weight:400;}
.kadence-breadcrumbs, .kadence-breadcrumbs a {text-transform:uppercase;font-weight:500;letter-spacing:1px;color:#333 !important;font-size:14px;text-align:left;}
.post-title .kadence-breadcrumbs, .post-title .kadence-breadcrumbs a {margin-bottom:5px;font-size:14px;color:#333 !important;font-weight:500;}
.site .post-title h1 {line-height:1.2; margin-bottom:12px;}
.site-top-header-wrap .site-header-row-container-inner, .site-top-header-wrap .site-header-row-container-inner a {font-weight:500;text-align:center;}
.post-title .entry-taxonomies .category-style-pill a {color:#333;font-size:13px;padding:8px;border-radius:50px;}
.main-navigation .menu > .menu-item > a {padding:6px 15px;}
/* TASTY RECIPES */
.tasty-recipes {font-size:20px !important;color:#222 !important;}
.comment-form .comment-input-wrap p label, .comment-form p.comment-form-float-label label {color:#333;margin:10px 0 0;=}
.comment-form .required {display:none;}
.tasty-recipes-title {font-size:50px;margin:40px 0 10px !important;font-weight:600;}
.tasty-recipes-quick-links span {display:none;}
.tasty-recipes-image-button-container .tasty-recipes-buttons, .tasty-recipes-quick-links {font-weight:600 !important; letter-spacing:1px !important;margin-bottom:25px;text-decoration:none !important;}
.tasty-recipes-entry-header .tasty-recipes-rating {margin-top:10px !important;}
.tasty-recipes-entry-header .tasty-recipes-rating p:first-child {margin-bottom:5px !important;}
.tasty-recipes-entry-header .tasty-recipes-rating .rating-label {font-weight:400 !important;}
.tasty-recipes-entry-header .tasty-recipes-rating .rating-label {color:#222 !important;}
.tasty-recipes-entry-header .tasty-recipes-rating .rating-label, .tasty-recipes-entry-content .tasty-recipes-other-details ul li .tasty-recipes-label, .tasty-recipes-keywords em, .tasty-recipes-label .tasty-recipes-details strong {font-weight:600 !important;font-style:normal !important;}
.tasty-recipes-image-button-container .tasty-recipes-buttons a, .tasty-recipes-quick-links a { font-weight:600 !important;background:#2A262A !important;background:#E5E2DC !important;color:#222 !important;border:none !important;border-radius:50px !important;font-size:14px !important;text-transform:uppercase;text-decoration:none;margin-right:10px;padding:12px 15px !important;letter-spacing:1px !important;}
.tasty-recipes-entry-header .tasty-recipes-buttons a.button:hover, .tasty-recipes-image-button-container .tasty-recipes-buttons a:hover, .tasty-recipes-quick-links a:hover {background:#2A262A !important;color:#fff !important;text-decoration:none!important;}
.wp-block-wp-tasty-tasty-links-featured {box-shadow:none !important;padding:0 !important;}
.wp-block-wp-tasty-tasty-links-featured .tasty-link-card p, .wp-block-wp-tasty-tasty-links-featured .tasty-link-card a {text-decoration:none; color:#222 !important;background:#fff!important;font-weight:400;margin-top:10px;font-size:18px;text-transform:capitalize;}
.wp-block-wp-tasty-tasty-links-featured .tasty-link-card span a {background:#F9F8F6 !important; padding:8px 8px 8px 12px !important; text-transform:uppercase;font-size:13px;font-weight:600;letter-spacing:1px;border-radius:50px;}
.grill .wp-block-wp-tasty-tasty-links-featured .tasty-link-card {flex:none; text-align:center;}
.formkit-submit {border-radius:50px !important;font-weight:600 !important;}
.tasty-recipes-entry-content .tasty-recipes-other-details ul li .tasty-recipes-label {text-transform:uppercase !important;}
.tasty-recipes-quick-links a {width:100% !important;display:block;border-radius:0 !important;}
/* TASTY */
.tasty-recipes-entry-header {border-top-left-radius:0 !important;
border-top-right-radius:0 !important;padding:1em!important;}
.tasty-recipes-entry-header .tasty-recipes-description-body {font-style:normal!important;}
.tasty-recipes-image {max-height:300px !important;}
.tasty-recipes-entry-header .tasty-recipes-buttons {margin-bottom:1.25em !important;}
.tasty-recipes-entry-content .tasty-recipes-keywords, .tasty-recipes-other-details,.tasty-recipes-entry-content .tasty-recipes-other-details ul, .tasty-recipes-entry-header , .tasty-recipes-entry-content {background:#F9F8F6 !important;border:0 !important;}
.tasty-recipes-entry-content .tasty-recipes-instructions, .tasty-recipes-entry-content .tasty-recipes-equipment {border-top: 2px solid #F9F8F6 !important; padding:1.25em 1em !important;}
.tasty-recipes-entry-content .tasty-recipes-other-details .detail-icon {display:none !important;}
.tasty-recipes-entry-content .tasty-recipes-ingredients {border-top:0 !important;}
.tasty-recipes h3 { margin-bottom:15px !important;text-transform:none !important;}
.tasty-recipes-entry-content .tasty-recipes-notes, .tasty-recipes-entry-content .tasty-recipes-notes p:first-of-type, .tasty-recipes-entry-content .tasty-recipes-notes p {padding:1em 0 !important;background:#F9F8F6 !important;}
.tasty-recipes-rating a, .tasty-recipes-rating a:link {text-decoration:none!important;}
.tasty-recipes-ratings-buttons>span i, .tasty-recipes-ratings-buttons input[type=radio], .tasty-recipes-entry-header div.tasty-recipes-rating p span.tasty-recipes-rating {font-size:25px !important; width:27px !important;}
.tasty-recipes-entry-content .tasty-recipes-instructions p, .tasty-recipes-entry-content .tasty-recipes-notes-body {margin-left:.5em !important;}
.tasty-recipes-entry-content .tasty-recipes-ingredients ul, .tasty-recipes-entry-content .tasty-recipes-ingredients p {margin-left:0em !important;margin-bottom:0 !important;}
.tasty-recipes-entry-content .tasty-recipes-ingredients ul li {font-size:1em !important;line-height:1.3 !important;}
.tasty-recipes-entry-content .tasty-recipes-ingredients ul {margin-bottom:40px !important;}
.tasty-recipes-entry-footer {background: #E5E2DC
!important;}
.tasty-recipes-entry-content .tasty-recipes-notes {padding:1em !important;}
.tasty-recipes-entry-footer h3 {margin-top:0 !important;}
.tasty-recipes-entry-footer {padding: 0 1.25em !important;}
.tasty-recipes-other-details {padding:.5em 1.25em !important; text-align:left;}
.tasty-recipes-entry-content .tasty-recipes-keywords {text-align:left !important; padding:1.25em !important;}
.tasty-recipes-nutrition {margin-bottom:0 !important;}
.tasty-recipes-entry-content .tasty-recipes-nutrition {margin-top:0 !important;}
.tasty-recipes-entry-content .tasty-recipes-keywords {margin-top:0 !important;}
.tasty-recipes-entry-header .tasty-recipes-title {margin:15px auto 0 !important;}
.tasty-recipes-entry-header .tasty-recipes-buttons a.button {background:#2A262A;color:#fff;border-radius:50px;font-size:14px;}
.tasty-recipes-entry-content a {color:#222 !important;}
.tasty-recipes-entry-header .tasty-recipes-buttons a.button:hover {background:#E5E2DC;color:#222;}
.tasty-recipes-instructions, .tasty-recipes-ingredients, .tasty-recipes-nutrition, .tasty-recipes-other-details {border-left:2px solid #F9F8F6 !important;}
.tasty-recipes-instructions, .tasty-recipes-ingredients, .tasty-recipes-nutrition {border-right:2px solid #F9F8F6 !important;}
/* Limoncella Customizations
-------------------------------------------------------------- */
/* More from a category button
--------------------------------------------- */
.more-button .kt-btn-inner-text:before {
content: 'more';
font-style: italic;
font-size: 14px;
margin-right: 5px;
vertical-align: middle;
}
.button.more-button {
background: none;
border: none;
color: var(--global-palette3);
}
.button.more-button:hover:after {
-webkit-transform:scaleX(1);
transform: scaleX(1);
}
.button.more-button:after {
width: calc(100% - 18px);
}
.button.more-button:after {
content: "";
position: absolute;
bottom: 0px;
left: 9px;
width: calc(100% - 18px);
height: 2px;
background-color: var(--global-palette1);
-webkit-transform: scaleX(0);
transform: scaleX(0);
transition: all .25s ease;
}
/* Custom Label Title
--------------------------------------------- */
.label-transform {
transform: rotate(-3deg);
}
/* This adds the numbered elements to the Top 10 lists
--------------------------------------------- */
.top-10 .post .wp-block-post-title {
position: relative;
}
.top-10 .post .wp-block-post-featured-image:after {
content: "1";
display: block;
position: relative;
bottom: 0;
width: 53px;
height: 50px;
border-radius: 50%;
background-color: #222;
color: #fff;
text-align: center;
line-height: 50px;
font-weight: bold;
position: absolute;
bottom: -20px;
left: 40%;opacity:.9;
}
.top-10.white .post .wp-block-post-featured-image:after {
background-color: var(--global-palette9);
color: var(--global-palette5);
}
.top-10.white.bordered .post .wp-block-post-featured-image:after {
border: 1px solid var(--global-palette5);
}
.top-10 .post:nth-child(2) .wp-block-post-featured-image:after,
.top-10 .wp-block-kadence-column:nth-child(2) .post .wp-block-post-featured-image:after {
content: "2";
}
.top-10 .post:nth-child(3) .wp-block-post-featured-image:after,
.top-10 .wp-block-kadence-column:nth-child(3) .post .wp-block-post-featured-image:after {
content: "3";
}
.top-10 .post:nth-child(4) .wp-block-post-featured-image:after,
.top-10 .wp-block-kadence-column:nth-child(4) .post .wp-block-post-featured-image:after {
content: "4";
}
.top-10 .post:nth-child(5) .wp-block-post-featured-image:after,
.top-10 .wp-block-kadence-column:nth-child(5) .post .wp-block-post-featured-image:after {
content: "5";
}
.top-10 .post:nth-child(6) .wp-block-post-featured-image:after,
.top-10 .wp-block-kadence-column:nth-child(6) .post .wp-block-post-featured-image:after {
content: "6";
}
.top-10 .post:nth-child(7) .wp-block-post-featured-image:after,
.top-10 .wp-block-kadence-column:nth-child(7) .post .wp-block-post-featured-image:after {
content: "7";
}
.top-10 .post:nth-child(8) .wp-block-post-featured-image:after,
.top-10 .wp-block-kadence-column:nth-child(8) .post .wp-block-post-featured-image:after {
content: "8";
}
.top-10 .post:nth-child(9) .wp-block-post-featured-image:after,
.top-10 .wp-block-kadence-column:nth-child(9) .post .wp-block-post-featured-image:after {
content: "9";
}
.top-10 .post:nth-child(10) .wp-block-post-featured-image:after,
.top-10 .wp-block-kadence-column:nth-child(10) .post .wp-block-post-featured-image:after {
content: "10";
}
/* Rotate the hover-rotate class on hover
--------------------------------------------- */
.hover-rotate img {
transition: transform .3s ease-in-out;
}
.hover-rotate img:hover {
transform: rotate(5deg);
}
/* Transform images left or right
--------------------------------------------- */
/* Add a class of transform-right to your element and it will rotate 5 degrees to the right */
.transform-right{
position: relative;
transform: rotate(5deg);
}
/* Add a class of transform-left to your element and it will rotate 5 degrees to the left */
.transform-left {
position: relative;
transform: rotate(-5deg);
}
/* Wordpress Block Content
-------------------------------------------------------------- */
/* Menu Block
--------------------------------------------- */
.wp-block-navigation-item {
width: 100%;
}
.wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle,
.wp-block-navigation-item.open-on-hover-click a {
background: #fff !important;
border: 1px solid var(--global-palette5) !important;
border-radius: 5px;
padding: 12px 40px 12px 20px !important;
color: #242424 !important;
letter-spacing: 0;
text-transform: none;
width: 100%;
font-weight: 700;
font-size: 18px;
}
.wp-block-navigation-item .wp-block-navigation-submenu__toggle {
transform: scale(1);
}
.wp-block-navigation__submenu-icon {
background: var(--global-palette1) !important;
border-radius: 50%;
width: 24px !important;
height: 24px !important;
display: flex !important;
align-items: center;
justify-content: center;
margin-left: -32px !important;
z-index: 99;
}
.wp-block-navigation__submenu-icon svg {
width: 12px !important;
height: 12px !important;
color: #fff;
}
.wp-block-navigation__submenu-container {
background-color: var(--global-palette7) !important;
border: none !important;
left: 0 !important;
margin-left: 0 !important;
padding-left: 0 !important;
width: 100% !important;
box-shadow: 0px 0px 6px 0px rgb(0 0 0 / 5%);
}
.wp-block-navigation-item.open-on-hover-click .wp-block-navigation__submenu-container a {
background-color: var(--global-palette7) !important;
border: 0 !important;
border-radius: 0;
font-size: 14px;
padding: 10px 15px;
z-index: 99;
}
.wp-block-navigation-item.open-on-hover-click .wp-block-navigation__submenu-container a:hover {
background-color: var(--global-palette8) !important;
}
.wp-block-navigation__submenu-container li {
font-weight: 700;
font-size: 16px;
color: #242424 !important;
letter-spacing: 0;
text-transform: none;
font-size: 14px;
}
.wp-block-navigation__submenu-container li:hover {
background: var(--global-palette8);
}
.wp-block-navigation__submenu-container li:last-of-type {
border: none;
}
.wp-block-navigation__submenu-container li a {
padding: 10px 15px;
}
@media only screen and (max-width: 767px) {
html, body {max-width: 100% !important; overflow-x:hidden !important;}
body {position: relative;}
.wp-block-navigation .wp-block-navigation-item,
.wp-block-navigation__container{
position: relative;
flex-wrap: wrap !important;
}
.wp-block-navigation .has-child .wp-block-navigation__submenu-container{
display: Block !important;
position: relative !important;
left: auto !important;
top: auto !important;
width: 100% !important;
}
.wp-block-navigation-item .wp-block-navigation-submenu__toggle,
.wp-block-navigation__submenu-container li a{
padding-top: 14px;
padding-bottom: 14px;
}
}
@media (max-width: 440px) {
.wp-block-navigation.no-wrap {
--navigation-layout-wrap: wrap;
}
}
/*MOBILE & FOOTER */
.site-footer-row.site-footer-row-columns-1 {padding:0;}
.site-middle-footer-inner-wrap .widget {margin-bottom:10px;}
@media only screen and (max-width: 1024px) {
@media only screen and (max-width: 767px) {
.entry-content-wrap {1.5rem 0 !important;}
.title-entry-excerpt p {font-size:20px;}
.grill .wp-block-wp-tasty-tasty-links-featured .tasty-link-card {text-align:center;}
.grid-cols, .fwpl-layout.el-e7idkd {display: grid;
grid-column-gap: 15px;
grid-template-columns: repeat(2, 1fr) !important;}
/*.grid-cols {grid-template-columns: 50% 2fr !important;}*/
.fs-wrap {width:40vw!important;}
.kt-mobile-layout-two-grid.kt-v-gutter-default>.wp-block-kadence-column:nth-child(-n+2) {
margin-bottom:0px;
}
.site-header-row-layout-fullwidth>.site-header-row-container-inner>.site-container {padding:10px;}
.site-top-header-wrap .site-header-row-container-inner>.site-container {padding:10px;}
.site .post-title h1 {font-size:46px;}
.single .content-area {margin-top:0;}
}
/* MV CSS */
@media only screen and (max-width: 359px) {
.entry-content-wrap {
padding-left: 10px !important;
padding-right: 10px !important;
}
.entry-content ul li .mv-ad-box {
margin-left: -22px !important;
}
.tasty-recipes {
margin: unset !important;
max-width: 100% !important;
}
.tasty-recipes-ingredients {
padding-left: 0 !important;
padding-right: 0 !important;
border-left: 0 !important;
border-right: 0 !important;
}
.entry-content .tasty-recipes-instructions {
padding-left: 0 !important;
padding-right: 0 !important;
border-left: 0 !important;
border-right: 0 !important;
}
.site-footer h3.wp-block-kadence-advancedheading {
font-size: 60px !important;
}
}
/* END OF CSS */ </style>
<script type="rocketlazyloadscript">
/*! loadCSS rel=preload polyfill. [c]2017 Filament Group, Inc. MIT License */
(function(w){"use strict";if(!w.loadCSS){w.loadCSS=function(){}}
var rp=loadCSS.relpreload={};rp.support=(function(){var ret;try{ret=w.document.createElement("link").relList.supports("preload")}catch(e){ret=!1}
return function(){return ret}})();rp.bindMediaToggle=function(link){var finalMedia=link.media||"all";function enableStylesheet(){link.media=finalMedia}
if(link.addEventListener){link.addEventListener("load",enableStylesheet)}else if(link.attachEvent){link.attachEvent("onload",enableStylesheet)}
setTimeout(function(){link.rel="stylesheet";link.media="only x"});setTimeout(enableStylesheet,3000)};rp.poly=function(){if(rp.support()){return}
var links=w.document.getElementsByTagName("link");for(var i=0;i<links.length;i++){var link=links[i];if(link.rel==="preload"&&link.getAttribute("as")==="style"&&!link.getAttribute("data-loadcss")){link.setAttribute("data-loadcss",!0);rp.bindMediaToggle(link)}}};if(!rp.support()){rp.poly();var run=w.setInterval(rp.poly,500);if(w.addEventListener){w.addEventListener("load",function(){rp.poly();w.clearInterval(run)})}else if(w.attachEvent){w.attachEvent("onload",function(){rp.poly();w.clearInterval(run)})}}
if(typeof exports!=="undefined"){exports.loadCSS=loadCSS}
else{w.loadCSS=loadCSS}}(typeof global!=="undefined"?global:this))
</script><noscript><style>.perfmatters-lazy[data-src]{display:none !important;}</style></noscript><style>.perfmatters-lazy-youtube{position:relative;width:100%;max-width:100%;height:0;padding-bottom:56.23%;overflow:hidden}.perfmatters-lazy-youtube img{position:absolute;top:0;right:0;bottom:0;left:0;display:block;width:100%;max-width:100%;height:auto;margin:auto;border:none;cursor:pointer;transition:.5s all;-webkit-transition:.5s all;-moz-transition:.5s all}.perfmatters-lazy-youtube img:hover{-webkit-filter:brightness(75%)}.perfmatters-lazy-youtube .play{position:absolute;top:50%;left:50%;right:auto;width:68px;height:48px;margin-left:-34px;margin-top:-24px;background:url(https://www.simplywhisked.com/wp-content/plugins/perfmatters/img/youtube.svg) no-repeat;background-position:center;background-size:cover;pointer-events:none}.perfmatters-lazy-youtube iframe{position:absolute;top:0;left:0;width:100%;height:100%;z-index:99}.wp-has-aspect-ratio .wp-block-embed__wrapper{position:relative;}.wp-has-aspect-ratio .perfmatters-lazy-youtube{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;padding-bottom:0}body .perfmatters-lazy-css-bg:not([data-ll-status=entered]),body .perfmatters-lazy-css-bg:not([data-ll-status=entered]) *,body .perfmatters-lazy-css-bg:not([data-ll-status=entered])::before,body .perfmatters-lazy-css-bg:not([data-ll-status=entered])::after{background-image:none!important;will-change:transform;transition:opacity 0.025s ease-in,transform 0.025s ease-in!important;}</style></head>
<body class="post-template-default single single-post postid-11014 single-format-standard wp-custom-logo wp-embed-responsive no-anchor-scroll footer-on-bottom hide-focus-outline link-style-standard has-sidebar content-title-style-normal content-width-normal content-style-boxed content-vertical-padding-show non-transparent-header mobile-non-transparent-header promote-enable-check">
<div id="wrapper" class="site wp-site-blocks">
<a class="skip-link screen-reader-text scroll-ignore" href="#main">Skip to content</a>
<header id="masthead" class="site-header" role="banner" >
<div id="main-header" class="site-header-wrap">
<div class="site-header-inner-wrap">
<div class="site-header-upper-wrap">
<div class="site-header-upper-inner-wrap">
<div class="site-top-header-wrap site-header-row-container site-header-focus-item site-header-row-layout-fullwidth" data-section="kadence_customizer_header_top">
<div class="site-header-row-container-inner">
<div class="site-container">
<div class="site-top-header-inner-wrap site-header-row site-header-row-has-sides site-header-row-no-center">
<div class="site-header-top-section-left site-header-section site-header-section-left">
</div>
<div class="site-header-top-section-right site-header-section site-header-section-right">
<div class="site-header-item site-header-focus-item" data-section="kadence_customizer_header_html">
<div class="header-html inner-link-style-normal"><div class="header-html-inner"><div class="sister-site">Visit my other site: <a href="https://anothercocktailblog.com/">Another Cocktail Blog</a>!</div>
</div></div></div><!-- data-section="header_html" -->
</div>
</div>
</div>
</div>
</div>
<div class="site-main-header-wrap site-header-row-container site-header-focus-item site-header-row-layout-fullwidth" data-section="kadence_customizer_header_main">
<div class="site-header-row-container-inner">
<div class="site-container">
<div class="site-main-header-inner-wrap site-header-row site-header-row-has-sides site-header-row-no-center">
<div class="site-header-main-section-left site-header-section site-header-section-left">
<div class="site-header-item site-header-focus-item" data-section="title_tagline">
<div class="site-branding branding-layout-standard site-brand-logo-only"><a class="brand has-logo-image" href="https://www.simplywhisked.com/" rel="home" aria-label="Simply Whisked"><img data-perfmatters-preload width="1500" height="300" src="https://www.simplywhisked.com/wp-content/uploads/2023/01/new-logo-2.png" class="custom-logo" alt="Simply Whisked" decoding="async" srcset="https://www.simplywhisked.com/wp-content/uploads/2023/01/new-logo-2.png 1500w, https://www.simplywhisked.com/wp-content/uploads/2023/01/new-logo-2-768x154.png 768w" sizes="(max-width: 1500px) 100vw, 1500px" data-pin-nopin="nopin" data-pin-url="https://www.simplywhisked.com/buffalo-chicken-chili/?tp_image_id=63285" /></a></div></div><!-- data-section="title_tagline" -->
</div>
<div class="site-header-main-section-right site-header-section site-header-section-right">
<div class="site-header-item site-header-focus-item site-header-item-main-navigation header-navigation-layout-stretch-false header-navigation-layout-fill-stretch-false" data-section="kadence_customizer_primary_navigation">
<nav id="site-navigation" class="main-navigation header-navigation nav--toggle-sub header-navigation-style-standard header-navigation-dropdown-animation-none" role="navigation" aria-label="Primary Navigation">
<div class="primary-menu-container header-menu-container">
<ul id="primary-menu" class="menu"><li id="menu-item-61780" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-61780"><a href="https://www.simplywhisked.com/">Home</a></li>
<li id="menu-item-12115" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-12115"><a href="https://www.simplywhisked.com/about/">About</a></li>
<li id="menu-item-16094" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-16094"><a href="https://www.simplywhisked.com/recipe-index/"><span class="nav-drop-title-wrap">Recipes<span class="dropdown-nav-toggle"><span class="kadence-svg-iconset svg-baseline"><svg aria-hidden="true" class="kadence-svg-icon kadence-arrow-down-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Expand</title><path d="M5.293 9.707l6 6c0.391 0.391 1.024 0.391 1.414 0l6-6c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z"></path>
</svg></span></span></span></a>
<ul class="sub-menu">
<li id="menu-item-15723" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-15723"><a href="https://www.simplywhisked.com/appetizers/">Appetizers</a></li>
<li id="menu-item-15725" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-15725"><a href="https://www.simplywhisked.com/beverages/">Beverages</a></li>
<li id="menu-item-15726" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-15726"><a href="https://www.simplywhisked.com/breakfast/">Breakfast</a></li>
<li id="menu-item-15734" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-15734"><a href="https://www.simplywhisked.com/desserts/">Desserts</a></li>
<li id="menu-item-15727" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-15727"><a href="https://www.simplywhisked.com/mains/">Mains</a></li>
<li id="menu-item-15728" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-15728"><a href="https://www.simplywhisked.com/salads/">Salads</a></li>
<li id="menu-item-15729" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-15729"><a href="https://www.simplywhisked.com/sandwiches/">Sandwiches</a></li>
<li id="menu-item-15730" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-15730"><a href="https://www.simplywhisked.com/sauces/">Sauces & Condiments</a></li>
<li id="menu-item-15731" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-15731"><a href="https://www.simplywhisked.com/sides/">Sides</a></li>
<li id="menu-item-15733" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-15733"><a href="https://www.simplywhisked.com/soups/">Soups</a></li>
</ul>
</li>
<li id="menu-item-15737" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-15737"><a href="https://www.simplywhisked.com/dairy-free-resources/">Resources</a></li>
</ul> </div>
</nav><!-- #site-navigation -->
</div><!-- data-section="primary_navigation" -->
<div class="site-header-item site-header-focus-item" data-section="kadence_customizer_header_social">
<div class="header-social-wrap"><div class="header-social-inner-wrap element-social-inner-wrap social-show-label-false social-style-outline"><a href="https://facebook.com/simplywhisked/" aria-label="Facebook" target="_blank" rel="noopener noreferrer" class="social-button header-social-item social-link-facebook"><span class="kadence-svg-iconset"><svg class="kadence-svg-icon kadence-facebook-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><title>Facebook</title><path d="M31.997 15.999c0-8.836-7.163-15.999-15.999-15.999s-15.999 7.163-15.999 15.999c0 7.985 5.851 14.604 13.499 15.804v-11.18h-4.062v-4.625h4.062v-3.525c0-4.010 2.389-6.225 6.043-6.225 1.75 0 3.581 0.313 3.581 0.313v3.937h-2.017c-1.987 0-2.607 1.233-2.607 2.498v3.001h4.437l-0.709 4.625h-3.728v11.18c7.649-1.2 13.499-7.819 13.499-15.804z"></path>
</svg></span></a><a href="https://instagram.com/simplywhisked/" aria-label="Instagram" target="_blank" rel="noopener noreferrer" class="social-button header-social-item social-link-instagram"><span class="kadence-svg-iconset"><svg class="kadence-svg-icon kadence-instagram-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><title>Instagram</title><path d="M21.138 0.242c3.767 0.007 3.914 0.038 4.65 0.144 1.52 0.219 2.795 0.825 3.837 1.821 0.584 0.562 0.987 1.112 1.349 1.848 0.442 0.899 0.659 1.75 0.758 3.016 0.021 0.271 0.031 4.592 0.031 8.916s-0.009 8.652-0.030 8.924c-0.098 1.245-0.315 2.104-0.743 2.986-0.851 1.755-2.415 3.035-4.303 3.522-0.685 0.177-1.304 0.26-2.371 0.31-0.381 0.019-4.361 0.024-8.342 0.024s-7.959-0.012-8.349-0.029c-0.921-0.044-1.639-0.136-2.288-0.303-1.876-0.485-3.469-1.784-4.303-3.515-0.436-0.904-0.642-1.731-0.751-3.045-0.031-0.373-0.039-2.296-0.039-8.87 0-2.215-0.002-3.866 0-5.121 0.006-3.764 0.037-3.915 0.144-4.652 0.219-1.518 0.825-2.795 1.825-3.833 0.549-0.569 1.105-0.975 1.811-1.326 0.915-0.456 1.756-0.668 3.106-0.781 0.374-0.031 2.298-0.038 8.878-0.038h5.13zM15.999 4.364v0c-3.159 0-3.555 0.014-4.796 0.070-1.239 0.057-2.084 0.253-2.824 0.541-0.765 0.297-1.415 0.695-2.061 1.342s-1.045 1.296-1.343 2.061c-0.288 0.74-0.485 1.586-0.541 2.824-0.056 1.241-0.070 1.638-0.070 4.798s0.014 3.556 0.070 4.797c0.057 1.239 0.253 2.084 0.541 2.824 0.297 0.765 0.695 1.415 1.342 2.061s1.296 1.046 2.061 1.343c0.74 0.288 1.586 0.484 2.825 0.541 1.241 0.056 1.638 0.070 4.798 0.070s3.556-0.014 4.797-0.070c1.239-0.057 2.085-0.253 2.826-0.541 0.765-0.297 1.413-0.696 2.060-1.343s1.045-1.296 1.343-2.061c0.286-0.74 0.482-1.586 0.541-2.824 0.056-1.241 0.070-1.637 0.070-4.797s-0.015-3.557-0.070-4.798c-0.058-1.239-0.255-2.084-0.541-2.824-0.298-0.765-0.696-1.415-1.343-2.061s-1.295-1.045-2.061-1.342c-0.742-0.288-1.588-0.484-2.827-0.541-1.241-0.056-1.636-0.070-4.796-0.070zM14.957 6.461c0.31-0 0.655 0 1.044 0 3.107 0 3.475 0.011 4.702 0.067 1.135 0.052 1.75 0.241 2.16 0.401 0.543 0.211 0.93 0.463 1.337 0.87s0.659 0.795 0.871 1.338c0.159 0.41 0.349 1.025 0.401 2.16 0.056 1.227 0.068 1.595 0.068 4.701s-0.012 3.474-0.068 4.701c-0.052 1.135-0.241 1.75-0.401 2.16-0.211 0.543-0.463 0.93-0.871 1.337s-0.794 0.659-1.337 0.87c-0.41 0.16-1.026 0.349-2.16 0.401-1.227 0.056-1.595 0.068-4.702 0.068s-3.475-0.012-4.702-0.068c-1.135-0.052-1.75-0.242-2.161-0.401-0.543-0.211-0.931-0.463-1.338-0.87s-0.659-0.794-0.871-1.337c-0.159-0.41-0.349-1.025-0.401-2.16-0.056-1.227-0.067-1.595-0.067-4.703s0.011-3.474 0.067-4.701c0.052-1.135 0.241-1.75 0.401-2.16 0.211-0.543 0.463-0.931 0.871-1.338s0.795-0.659 1.338-0.871c0.41-0.16 1.026-0.349 2.161-0.401 1.073-0.048 1.489-0.063 3.658-0.065v0.003zM16.001 10.024c-3.3 0-5.976 2.676-5.976 5.976s2.676 5.975 5.976 5.975c3.3 0 5.975-2.674 5.975-5.975s-2.675-5.976-5.975-5.976zM16.001 12.121c2.142 0 3.879 1.736 3.879 3.879s-1.737 3.879-3.879 3.879c-2.142 0-3.879-1.737-3.879-3.879s1.736-3.879 3.879-3.879zM22.212 8.393c-0.771 0-1.396 0.625-1.396 1.396s0.625 1.396 1.396 1.396 1.396-0.625 1.396-1.396c0-0.771-0.625-1.396-1.396-1.396v0.001z"></path>
</svg></span></a><a href="https://pinterest.com/simplywhisked/" aria-label="Pinterest" target="_blank" rel="noopener noreferrer" class="social-button header-social-item social-link-pinterest"><span class="kadence-svg-iconset"><svg class="kadence-svg-icon kadence-pinterest-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="28" viewBox="0 0 24 28"><title>Pinterest</title><path d="M19.5 2c2.484 0 4.5 2.016 4.5 4.5v15c0 2.484-2.016 4.5-4.5 4.5h-11.328c0.516-0.734 1.359-2 1.687-3.281 0 0 0.141-0.531 0.828-3.266 0.422 0.797 1.625 1.484 2.906 1.484 3.813 0 6.406-3.484 6.406-8.141 0-3.516-2.984-6.797-7.516-6.797-5.641 0-8.484 4.047-8.484 7.422 0 2.031 0.781 3.844 2.438 4.531 0.266 0.109 0.516 0 0.594-0.297 0.047-0.203 0.172-0.734 0.234-0.953 0.078-0.297 0.047-0.406-0.172-0.656-0.469-0.578-0.781-1.297-0.781-2.344 0-3 2.25-5.672 5.844-5.672 3.187 0 4.937 1.937 4.937 4.547 0 3.422-1.516 6.312-3.766 6.312-1.234 0-2.172-1.031-1.875-2.297 0.359-1.5 1.047-3.125 1.047-4.203 0-0.969-0.516-1.781-1.594-1.781-1.266 0-2.281 1.313-2.281 3.063 0 0 0 1.125 0.375 1.891-1.297 5.5-1.531 6.469-1.531 6.469-0.344 1.437-0.203 3.109-0.109 3.969h-2.859c-2.484 0-4.5-2.016-4.5-4.5v-15c0-2.484 2.016-4.5 4.5-4.5h15z"></path>
</svg></span></a><a href="https://tiktok.com/@simplywhisked/" aria-label="TikTok" target="_blank" rel="noopener noreferrer" class="social-button header-social-item social-link-tiktok"><span class="kadence-svg-iconset"><svg aria-hidden="true" class="kadence-svg-icon kadence-tiktok-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><title>TikTok</title><path d="M16.707 0.027c1.747-0.027 3.48-0.013 5.213-0.027 0.107 2.040 0.84 4.12 2.333 5.56 1.493 1.48 3.6 2.16 5.653 2.387v5.373c-1.92-0.067-3.853-0.467-5.6-1.293-0.76-0.347-1.467-0.787-2.16-1.24-0.013 3.893 0.013 7.787-0.027 11.667-0.107 1.867-0.72 3.72-1.8 5.253-1.747 2.56-4.773 4.227-7.88 4.28-1.907 0.107-3.813-0.413-5.44-1.373-2.693-1.587-4.587-4.493-4.867-7.613-0.027-0.667-0.040-1.333-0.013-1.987 0.24-2.533 1.493-4.96 3.44-6.613 2.213-1.92 5.307-2.84 8.2-2.293 0.027 1.973-0.053 3.947-0.053 5.92-1.32-0.427-2.867-0.307-4.027 0.493-0.84 0.547-1.48 1.387-1.813 2.333-0.28 0.68-0.2 1.427-0.187 2.147 0.32 2.187 2.427 4.027 4.667 3.827 1.493-0.013 2.92-0.88 3.693-2.147 0.253-0.44 0.533-0.893 0.547-1.413 0.133-2.387 0.080-4.76 0.093-7.147 0.013-5.373-0.013-10.733 0.027-16.093z"></path>
</svg></span></a><a href="https://www.youtube.com/c/simplywhisked" aria-label="YouTube" target="_blank" rel="noopener noreferrer" class="social-button header-social-item social-link-youtube"><span class="kadence-svg-iconset"><svg class="kadence-svg-icon kadence-youtube-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 28 28"><title>YouTube</title><path d="M11.109 17.625l7.562-3.906-7.562-3.953v7.859zM14 4.156c5.891 0 9.797 0.281 9.797 0.281 0.547 0.063 1.75 0.063 2.812 1.188 0 0 0.859 0.844 1.109 2.781 0.297 2.266 0.281 4.531 0.281 4.531v2.125s0.016 2.266-0.281 4.531c-0.25 1.922-1.109 2.781-1.109 2.781-1.062 1.109-2.266 1.109-2.812 1.172 0 0-3.906 0.297-9.797 0.297v0c-7.281-0.063-9.516-0.281-9.516-0.281-0.625-0.109-2.031-0.078-3.094-1.188 0 0-0.859-0.859-1.109-2.781-0.297-2.266-0.281-4.531-0.281-4.531v-2.125s-0.016-2.266 0.281-4.531c0.25-1.937 1.109-2.781 1.109-2.781 1.062-1.125 2.266-1.125 2.812-1.188 0 0 3.906-0.281 9.797-0.281v0z"></path>
</svg></span></a></div></div></div><!-- data-section="header_social" -->
<div class="site-header-item site-header-focus-item" data-section="kadence_customizer_header_search">
<div class="search-toggle-open-container">
<button class="search-toggle-open drawer-toggle search-toggle-style-default" aria-label="View Search Form" data-toggle-target="#search-drawer" data-toggle-body-class="showing-popup-drawer-from-full" aria-expanded="false" data-set-focus="#search-drawer .search-field"
>
<span class="search-toggle-label vs-lg-true vs-md-true vs-sm-false">SEARCH</span>
<span class="search-toggle-icon"><span class="kadence-svg-iconset"><svg aria-hidden="true" class="kadence-svg-icon kadence-search-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="26" height="28" viewBox="0 0 26 28"><title>Search</title><path d="M18 13c0-3.859-3.141-7-7-7s-7 3.141-7 7 3.141 7 7 7 7-3.141 7-7zM26 26c0 1.094-0.906 2-2 2-0.531 0-1.047-0.219-1.406-0.594l-5.359-5.344c-1.828 1.266-4.016 1.937-6.234 1.937-6.078 0-11-4.922-11-11s4.922-11 11-11 11 4.922 11 11c0 2.219-0.672 4.406-1.937 6.234l5.359 5.359c0.359 0.359 0.578 0.875 0.578 1.406z"></path>
</svg></span></span>
</button>
</div>
</div><!-- data-section="header_search" -->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="mobile-header" class="site-mobile-header-wrap">
<div class="site-header-inner-wrap">
<div class="site-header-upper-wrap">
<div class="site-header-upper-inner-wrap">
<div class="site-top-header-wrap site-header-focus-item site-header-row-layout-fullwidth site-header-row-tablet-layout-default site-header-row-mobile-layout-default ">
<div class="site-header-row-container-inner">
<div class="site-container">
<div class="site-top-header-inner-wrap site-header-row site-header-row-has-sides site-header-row-no-center">
<div class="site-header-top-section-left site-header-section site-header-section-left">
<div class="site-header-item site-header-focus-item" data-section="kadence_customizer_mobile_html">
<div class="mobile-html inner-link-style-normal"><div class="mobile-html-inner"><div class="sister-site">Visit my other site: <a href="https://anothercocktailblog.com/">Another Cocktail Blog</a>!</div>
</div></div></div><!-- data-section="mobile_html" -->
</div>
<div class="site-header-top-section-right site-header-section site-header-section-right">
<div class="site-header-item site-header-focus-item" data-section="kadence_customizer_mobile_social">
<div class="header-mobile-social-wrap"><div class="header-mobile-social-inner-wrap element-social-inner-wrap social-show-label-false social-style-filled"><a href="https://instagram.com/simplywhisked/" aria-label="Instagram" target="_blank" rel="noopener noreferrer" class="social-button header-social-item social-link-instagram"><span class="kadence-svg-iconset"><svg class="kadence-svg-icon kadence-instagram-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><title>Instagram</title><path d="M21.138 0.242c3.767 0.007 3.914 0.038 4.65 0.144 1.52 0.219 2.795 0.825 3.837 1.821 0.584 0.562 0.987 1.112 1.349 1.848 0.442 0.899 0.659 1.75 0.758 3.016 0.021 0.271 0.031 4.592 0.031 8.916s-0.009 8.652-0.030 8.924c-0.098 1.245-0.315 2.104-0.743 2.986-0.851 1.755-2.415 3.035-4.303 3.522-0.685 0.177-1.304 0.26-2.371 0.31-0.381 0.019-4.361 0.024-8.342 0.024s-7.959-0.012-8.349-0.029c-0.921-0.044-1.639-0.136-2.288-0.303-1.876-0.485-3.469-1.784-4.303-3.515-0.436-0.904-0.642-1.731-0.751-3.045-0.031-0.373-0.039-2.296-0.039-8.87 0-2.215-0.002-3.866 0-5.121 0.006-3.764 0.037-3.915 0.144-4.652 0.219-1.518 0.825-2.795 1.825-3.833 0.549-0.569 1.105-0.975 1.811-1.326 0.915-0.456 1.756-0.668 3.106-0.781 0.374-0.031 2.298-0.038 8.878-0.038h5.13zM15.999 4.364v0c-3.159 0-3.555 0.014-4.796 0.070-1.239 0.057-2.084 0.253-2.824 0.541-0.765 0.297-1.415 0.695-2.061 1.342s-1.045 1.296-1.343 2.061c-0.288 0.74-0.485 1.586-0.541 2.824-0.056 1.241-0.070 1.638-0.070 4.798s0.014 3.556 0.070 4.797c0.057 1.239 0.253 2.084 0.541 2.824 0.297 0.765 0.695 1.415 1.342 2.061s1.296 1.046 2.061 1.343c0.74 0.288 1.586 0.484 2.825 0.541 1.241 0.056 1.638 0.070 4.798 0.070s3.556-0.014 4.797-0.070c1.239-0.057 2.085-0.253 2.826-0.541 0.765-0.297 1.413-0.696 2.060-1.343s1.045-1.296 1.343-2.061c0.286-0.74 0.482-1.586 0.541-2.824 0.056-1.241 0.070-1.637 0.070-4.797s-0.015-3.557-0.070-4.798c-0.058-1.239-0.255-2.084-0.541-2.824-0.298-0.765-0.696-1.415-1.343-2.061s-1.295-1.045-2.061-1.342c-0.742-0.288-1.588-0.484-2.827-0.541-1.241-0.056-1.636-0.070-4.796-0.070zM14.957 6.461c0.31-0 0.655 0 1.044 0 3.107 0 3.475 0.011 4.702 0.067 1.135 0.052 1.75 0.241 2.16 0.401 0.543 0.211 0.93 0.463 1.337 0.87s0.659 0.795 0.871 1.338c0.159 0.41 0.349 1.025 0.401 2.16 0.056 1.227 0.068 1.595 0.068 4.701s-0.012 3.474-0.068 4.701c-0.052 1.135-0.241 1.75-0.401 2.16-0.211 0.543-0.463 0.93-0.871 1.337s-0.794 0.659-1.337 0.87c-0.41 0.16-1.026 0.349-2.16 0.401-1.227 0.056-1.595 0.068-4.702 0.068s-3.475-0.012-4.702-0.068c-1.135-0.052-1.75-0.242-2.161-0.401-0.543-0.211-0.931-0.463-1.338-0.87s-0.659-0.794-0.871-1.337c-0.159-0.41-0.349-1.025-0.401-2.16-0.056-1.227-0.067-1.595-0.067-4.703s0.011-3.474 0.067-4.701c0.052-1.135 0.241-1.75 0.401-2.16 0.211-0.543 0.463-0.931 0.871-1.338s0.795-0.659 1.338-0.871c0.41-0.16 1.026-0.349 2.161-0.401 1.073-0.048 1.489-0.063 3.658-0.065v0.003zM16.001 10.024c-3.3 0-5.976 2.676-5.976 5.976s2.676 5.975 5.976 5.975c3.3 0 5.975-2.674 5.975-5.975s-2.675-5.976-5.975-5.976zM16.001 12.121c2.142 0 3.879 1.736 3.879 3.879s-1.737 3.879-3.879 3.879c-2.142 0-3.879-1.737-3.879-3.879s1.736-3.879 3.879-3.879zM22.212 8.393c-0.771 0-1.396 0.625-1.396 1.396s0.625 1.396 1.396 1.396 1.396-0.625 1.396-1.396c0-0.771-0.625-1.396-1.396-1.396v0.001z"></path>
</svg></span></a><a href="https://tiktok.com/@simplywhisked/" aria-label="TikTok" target="_blank" rel="noopener noreferrer" class="social-button header-social-item social-link-tiktok"><span class="kadence-svg-iconset"><svg aria-hidden="true" class="kadence-svg-icon kadence-tiktok-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><title>TikTok</title><path d="M16.707 0.027c1.747-0.027 3.48-0.013 5.213-0.027 0.107 2.040 0.84 4.12 2.333 5.56 1.493 1.48 3.6 2.16 5.653 2.387v5.373c-1.92-0.067-3.853-0.467-5.6-1.293-0.76-0.347-1.467-0.787-2.16-1.24-0.013 3.893 0.013 7.787-0.027 11.667-0.107 1.867-0.72 3.72-1.8 5.253-1.747 2.56-4.773 4.227-7.88 4.28-1.907 0.107-3.813-0.413-5.44-1.373-2.693-1.587-4.587-4.493-4.867-7.613-0.027-0.667-0.040-1.333-0.013-1.987 0.24-2.533 1.493-4.96 3.44-6.613 2.213-1.92 5.307-2.84 8.2-2.293 0.027 1.973-0.053 3.947-0.053 5.92-1.32-0.427-2.867-0.307-4.027 0.493-0.84 0.547-1.48 1.387-1.813 2.333-0.28 0.68-0.2 1.427-0.187 2.147 0.32 2.187 2.427 4.027 4.667 3.827 1.493-0.013 2.92-0.88 3.693-2.147 0.253-0.44 0.533-0.893 0.547-1.413 0.133-2.387 0.080-4.76 0.093-7.147 0.013-5.373-0.013-10.733 0.027-16.093z"></path>
</svg></span></a><a href="https://www.youtube.com/c/simplywhisked" aria-label="YouTube" target="_blank" rel="noopener noreferrer" class="social-button header-social-item social-link-youtube"><span class="kadence-svg-iconset"><svg class="kadence-svg-icon kadence-youtube-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 28 28"><title>YouTube</title><path d="M11.109 17.625l7.562-3.906-7.562-3.953v7.859zM14 4.156c5.891 0 9.797 0.281 9.797 0.281 0.547 0.063 1.75 0.063 2.812 1.188 0 0 0.859 0.844 1.109 2.781 0.297 2.266 0.281 4.531 0.281 4.531v2.125s0.016 2.266-0.281 4.531c-0.25 1.922-1.109 2.781-1.109 2.781-1.062 1.109-2.266 1.109-2.812 1.172 0 0-3.906 0.297-9.797 0.297v0c-7.281-0.063-9.516-0.281-9.516-0.281-0.625-0.109-2.031-0.078-3.094-1.188 0 0-0.859-0.859-1.109-2.781-0.297-2.266-0.281-4.531-0.281-4.531v-2.125s-0.016-2.266 0.281-4.531c0.25-1.937 1.109-2.781 1.109-2.781 1.062-1.125 2.266-1.125 2.812-1.188 0 0 3.906-0.281 9.797-0.281v0z"></path>
</svg></span></a></div></div></div><!-- data-section="mobile_social" -->
</div>
</div>
</div>
</div>
</div>
<div class="site-main-header-wrap site-header-focus-item site-header-row-layout-fullwidth site-header-row-tablet-layout-default site-header-row-mobile-layout-default ">
<div class="site-header-row-container-inner">
<div class="site-container">
<div class="site-main-header-inner-wrap site-header-row site-header-row-has-sides site-header-row-no-center">
<div class="site-header-main-section-left site-header-section site-header-section-left">
<div class="site-header-item site-header-focus-item" data-section="title_tagline">
<div class="site-branding mobile-site-branding branding-layout-standard branding-tablet-layout-standard site-brand-logo-only branding-mobile-layout-standard site-brand-logo-only"><a class="brand has-logo-image" href="https://www.simplywhisked.com/" rel="home" aria-label="Simply Whisked"><img data-perfmatters-preload width="1500" height="300" src="https://www.simplywhisked.com/wp-content/uploads/2023/01/new-logo-2.png" class="custom-logo" alt="Simply Whisked" decoding="async" srcset="https://www.simplywhisked.com/wp-content/uploads/2023/01/new-logo-2.png 1500w, https://www.simplywhisked.com/wp-content/uploads/2023/01/new-logo-2-768x154.png 768w" sizes="(max-width: 1500px) 100vw, 1500px" data-pin-nopin="nopin" data-pin-url="https://www.simplywhisked.com/buffalo-chicken-chili/?tp_image_id=63285" /></a></div></div><!-- data-section="title_tagline" -->
</div>
<div class="site-header-main-section-right site-header-section site-header-section-right">
<div class="site-header-item site-header-focus-item site-header-item-navgation-popup-toggle" data-section="kadence_customizer_mobile_trigger">
<div class="mobile-toggle-open-container">
<button id="mobile-toggle" class="menu-toggle-open drawer-toggle menu-toggle-style-default" aria-label="Open menu" data-toggle-target="#mobile-drawer" data-toggle-body-class="showing-popup-drawer-from-right" aria-expanded="false" data-set-focus=".menu-toggle-close"
>
<span class="menu-toggle-icon"><span class="kadence-svg-iconset"><svg aria-hidden="true" class="kadence-svg-icon kadence-menu-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Toggle Menu</title><path d="M3 13h18c0.552 0 1-0.448 1-1s-0.448-1-1-1h-18c-0.552 0-1 0.448-1 1s0.448 1 1 1zM3 7h18c0.552 0 1-0.448 1-1s-0.448-1-1-1h-18c-0.552 0-1 0.448-1 1s0.448 1 1 1zM3 19h18c0.552 0 1-0.448 1-1s-0.448-1-1-1h-18c-0.552 0-1 0.448-1 1s0.448 1 1 1z"></path>
</svg></span></span>
</button>
</div>
</div><!-- data-section="mobile_trigger" -->
<div class="site-header-item site-header-focus-item" data-section="kadence_customizer_header_search">
<div class="search-toggle-open-container">
<button class="search-toggle-open drawer-toggle search-toggle-style-default" aria-label="View Search Form" data-toggle-target="#search-drawer" data-toggle-body-class="showing-popup-drawer-from-full" aria-expanded="false" data-set-focus="#search-drawer .search-field"
>
<span class="search-toggle-label vs-lg-true vs-md-true vs-sm-false">SEARCH</span>
<span class="search-toggle-icon"><span class="kadence-svg-iconset"><svg aria-hidden="true" class="kadence-svg-icon kadence-search-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="26" height="28" viewBox="0 0 26 28"><title>Search</title><path d="M18 13c0-3.859-3.141-7-7-7s-7 3.141-7 7 3.141 7 7 7 7-3.141 7-7zM26 26c0 1.094-0.906 2-2 2-0.531 0-1.047-0.219-1.406-0.594l-5.359-5.344c-1.828 1.266-4.016 1.937-6.234 1.937-6.078 0-11-4.922-11-11s4.922-11 11-11 11 4.922 11 11c0 2.219-0.672 4.406-1.937 6.234l5.359 5.359c0.359 0.359 0.578 0.875 0.578 1.406z"></path>
</svg></span></span>
</button>
</div>
</div><!-- data-section="header_search" -->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</header><!-- #masthead -->
<div id="inner-wrap" class="wrap hfeed kt-clear">
<div id="primary" class="content-area">
<div class="content-container site-container">
<main id="main" class="site-main" role="main">
<div class="content-wrap">
<div class="post-thumbnail article-post-thumbnail kadence-thumbnail-position-behind alignfull kadence-thumbnail-ratio-1-2">
<div class="post-thumbnail-inner">
<img data-perfmatters-preload data-pin-description="This easy, buffalo chicken chili recipe is hearty and healthy, and the buffalo flavor gives it just the right amount of spicy zing. Made on the stovetop, it’s perfect for a cozy game day at home, and it holds up in a crockpot for your next big party. Either way, everyone will love it!" width="1200" height="1800" src="https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1.jpg" class="post-top-featured wp-post-image" alt="" decoding="async" srcset="https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1.jpg 1200w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1-768x1152.jpg 768w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1-1024x1536.jpg 1024w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1-200x300.jpg 200w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1-610x915.jpg 610w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1-920x1380.jpg 920w" sizes="(max-width: 1200px) 100vw, 1200px" data-pin-url="https://www.simplywhisked.com/buffalo-chicken-chili/?tp_image_id=51721" /> </div>
</div><!-- .post-thumbnail -->
<article id="post-11014" class="entry content-bg single-entry post-11014 post type-post status-publish format-standard has-post-thumbnail hentry category-chicken category-chili category-dairy-free category-easy category-egg-free category-fall category-game-day category-gluten-free category-nut-free category-soups category-winter mv-content-wrapper">
<div class="entry-content-wrap">
<header class="entry-header post-title title-align-left title-tablet-align-inherit title-mobile-align-inherit">
<nav id="kadence-breadcrumbs" aria-label="Breadcrumbs" class="kadence-breadcrumbs"><div class="kadence-breadcrumb-container"><span><a href="https://www.simplywhisked.com/" title="Home" itemprop="url" class="kadence-bc-home kadence-bc-home-icon" ><span><span class="kadence-svg-iconset svg-baseline"><svg aria-hidden="true" class="kadence-svg-icon kadence-home-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Home</title><path d="M9.984 20.016h-4.969v-8.016h-3l9.984-9 9.984 9h-3v8.016h-4.969v-6h-4.031v6z"></path>
</svg></span></span></a></span> <span class="bc-delimiter">/</span> <span><a href="https://www.simplywhisked.com/soups/" itemprop="url" ><span>Soups</span></a></span> <span class="bc-delimiter">/</span> <span class="kadence-bread-current">Buffalo Chicken Chili</span></div></nav><h1 class="entry-title">Buffalo Chicken Chili</h1><div class="title-entry-excerpt">
<div class="diet">This recipe is: <a style="background:#D0E6E5;" href="https://simplywhisked.com/diet/dairy-free/">dairy free</a><a style="background:#FFE04F;" href="https://simplywhisked.com/diet/egg-free/">egg free</a><a style="background:#F9F2ED;" href="https://simplywhisked.com/diet/gluten-free/">gluten free</a><a style="background:#F9F2ED;" href="https://simplywhisked.com/diet/nut-free/">nut free</a></div>
<p>This buffalo chicken chili is a hearty, go-to meal that can be ready pretty quickly. The buffalo flavor is the perfect amount of spicy. Make this for your next football game, everyone will love it!</p>
</div><!-- .title-entry-excerpt -->
</header><!-- .entry-header -->
<div class="entry-content single-content">
<style style="display: none !important;">
.tasty-recipes-quick-links { text-align:center; }
.tasty-recipes-quick-links a { padding: 0.5rem; }
</style>
<div class="tasty-recipes-quick-links">
<a class="tasty-recipes-jump-link" href="#tasty-recipes-18267-jump-target">Jump to Recipe</a>
</div>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html><body><div class="wp-block-image"><figure class="aligncenter size-full"><img decoding="async" width="1200" height="1800" data-pin-url="https://www.simplywhisked.com/buffalo-chicken-chili/?tp_image_id=51721" data-pin-title="Buffalo Chicken Chili" data-pin-description="This easy, buffalo chicken chili recipe is hearty and healthy, and the buffalo flavor gives it just the right amount of spicy zing. Made on the stovetop, it’s perfect for a cozy game day at home, and it holds up in a crockpot for your next big party. Either way, everyone will love it!" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='1200'%20height='1800'%20viewBox='0%200%201200%201800'%3E%3C/svg%3E" alt="overhead view of a bowl with buffalo chicken chili garnished with jalapenos slices and chili crackers on a countertop next to hot sauce and a spoon" class="wp-image-51721 perfmatters-lazy" data-src="https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1.jpg" data-srcset="https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1.jpg 1200w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1-768x1152.jpg 768w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1-1024x1536.jpg 1024w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1-200x300.jpg 200w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1-610x915.jpg 610w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1-920x1380.jpg 920w" data-sizes="(max-width: 1200px) 100vw, 1200px" /><noscript><img decoding="async" width="1200" height="1800" data-pin-url="https://www.simplywhisked.com/buffalo-chicken-chili/?tp_image_id=51721" data-pin-title="Buffalo Chicken Chili" data-pin-description="This easy, buffalo chicken chili recipe is hearty and healthy, and the buffalo flavor gives it just the right amount of spicy zing. Made on the stovetop, it’s perfect for a cozy game day at home, and it holds up in a crockpot for your next big party. Either way, everyone will love it!" src="https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1.jpg" alt="overhead view of a bowl with buffalo chicken chili garnished with jalapenos slices and chili crackers on a countertop next to hot sauce and a spoon" class="wp-image-51721" srcset="https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1.jpg 1200w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1-768x1152.jpg 768w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1-1024x1536.jpg 1024w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1-200x300.jpg 200w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1-610x915.jpg 610w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1-920x1380.jpg 920w" sizes="(max-width: 1200px) 100vw, 1200px" /></noscript></figure></div>
<h2 class="wp-block-heading" id="h-why-i-love-this-buffalo-chicken-chili-recipe">Why I love this buffalo chicken chili recipe</h2>
<p>I am completely exhausted. I have spent the last few days painting around the clock on only the second room of our house. I don’t know why I thought it would be a good idea to paint all of our trim white, but I was nuts. At least I like the outcome I guess, but it sure it going to take a long time to actually finish the house.</p>
<p>On days like these – and actually most days – chili is my favorite. It’s a great, hearty go-to meal that can be ready pretty quickly. And the wonderful people at OXO sent me some new gadgets that made whipping up this recipe even easier.</p>
<p>I made this one for Superbowl Sunday, and it was perfect. I got it ready before the game and just let it simmer until we were ready to eat at half-time. The buffalo flavor wasn’t too spicy, but you can definitely add more to taste, and the ground chicken makes it so healthy. We absolutely loved it, and I can’t wait to make it again.</p>
<div class="wp-block-image"><figure class="aligncenter size-full"><img decoding="async" width="1200" height="1800" data-pin-url="https://www.simplywhisked.com/buffalo-chicken-chili/?tp_image_id=51720" data-pin-title="Buffalo Chicken Chili" data-pin-description="This easy, buffalo chicken chili recipe is hearty and healthy, and the buffalo flavor gives it just the right amount of spicy zing. Made on the stovetop, it’s perfect for a cozy game day at home, and it holds up in a crockpot for your next big party. Either way, everyone will love it!" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='1200'%20height='1800'%20viewBox='0%200%201200%201800'%3E%3C/svg%3E" alt="close up view of buffalo chicken chili garnished with jalapeños slices and chili crackers" class="wp-image-51720 perfmatters-lazy" data-src="https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-3-1.jpg" data-srcset="https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-3-1.jpg 1200w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-3-1-200x300.jpg 200w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-3-1-610x915.jpg 610w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-3-1-768x1152.jpg 768w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-3-1-1024x1536.jpg 1024w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-3-1-920x1380.jpg 920w" data-sizes="(max-width: 1200px) 100vw, 1200px" /><noscript><img decoding="async" width="1200" height="1800" data-pin-url="https://www.simplywhisked.com/buffalo-chicken-chili/?tp_image_id=51720" data-pin-title="Buffalo Chicken Chili" data-pin-description="This easy, buffalo chicken chili recipe is hearty and healthy, and the buffalo flavor gives it just the right amount of spicy zing. Made on the stovetop, it’s perfect for a cozy game day at home, and it holds up in a crockpot for your next big party. Either way, everyone will love it!" src="https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-3-1.jpg" alt="close up view of buffalo chicken chili garnished with jalapeños slices and chili crackers" class="wp-image-51720" srcset="https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-3-1.jpg 1200w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-3-1-200x300.jpg 200w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-3-1-610x915.jpg 610w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-3-1-768x1152.jpg 768w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-3-1-1024x1536.jpg 1024w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-3-1-920x1380.jpg 920w" sizes="(max-width: 1200px) 100vw, 1200px" /></noscript></figure></div>
<h2 class="wp-block-heading" id="h-here-s-what-you-ll-need-to-make-it">Here’s what you’ll need to make it</h2>
<ul><li><a class="tasty-link" rel="nofollow noopener" target="_blank" data-tasty-links-append-disclosure href="https://www.amazon.com/gp/product/B07P1Z3VS5/ref=as_li_ss_tl?ie=UTF8&th=1&linkCode=ll1&tag=simpwhis-20&linkId=1d82a476f72254d327a49cb8803199bb&language=en_US">Measuring cups</a></li><li><a class="tasty-link" rel="nofollow noopener" target="_blank" data-tasty-links-append-disclosure href="https://www.amazon.com/gp/product/B07NYTTW6P/ref=as_li_ss_tl?ie=UTF8&psc=1&linkCode=ll1&tag=simpwhis-20&linkId=89c646eb03e565a78e88c0fe4082568f&language=en_US">Measuring spoons</a></li><li><a class="tasty-link" rel="nofollow noopener" target="_blank" data-tasty-links-append-disclosure href="https://www.amazon.com/dp/B0076NOG5E/ref=as_li_ss_tl?_encoding=UTF8&th=1&linkCode=ll1&tag=simpwhis-20&linkId=8066d4bf0c681857e93f37a2618c389e&language=en_US">Dutch oven</a></li><li>Ground <a class="tasty-link" rel="nofollow noopener" target="_blank" data-tasty-links-append-disclosure href="https://www.amazon.com/OXO-Good-Grips-Ground-Chopper/dp/B01434TOOQ/ref=as_li_ss_tl?keywords=oxo+meat&qid=1540736570&sr=8-1&ref=sr_1_1&linkCode=ll1&tag=simpwhis-20&linkId=ad26c83c5e927785f8aaf429a6e9d7fa&language=en_US">meat chopper</a></li><li>Ladle</li></ul>
<p><strong>Ingredient notes:</strong> This recipe is made with ground chicken, but if you’re in a pinch, you can easily make it with ground turkey instead. The flavor will still be great, and I’m 99% positive you won’t be able to tell the difference.</p>
<html><body><div class="popout_auto_inserted"><div id="imark_newsletter" class="imark_newsletter left">
<div class="imark_newsletter_content">
<div data-pin-nopin="true" class="image-container">
<img width="1200" height="1800" data-pin-nopin="true" nopin="nopin" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='1200'%20height='1800'%20viewBox='0%200%201200%201800'%3E%3C/svg%3E" alt="Newsletter Signup" class="perfmatters-lazy" data-src="https://www.simplywhisked.com/wp-content/uploads/2021/01/Apple-Cinnamon-Oatmeal-8.jpg" /><noscript><img width="1200" height="1800" data-pin-nopin="true" nopin="nopin" src="https://www.simplywhisked.com/wp-content/uploads/2021/01/Apple-Cinnamon-Oatmeal-8.jpg" alt="Newsletter Signup" /></noscript>
</div>
<div class="form-container">
<span class="form-heading">25 recipes to FALL for this season</span> <p>Get ready to fall in love with chilly weather and shorter days with fresh new recipes for autumn!</p> <form id="" method="post" target="_blank" action="https://app.convertkit.com/forms/5574572/subscriptions">
<div class="fieldset inputs-3">
<label for="field1" class="field_label">First Name</label>
<input id="field1" type="text" name="fields[first_name]" placeholder="First Name">
<label for="field3" class="field_label">Email Address</label>
<input id="field3" type="text" name="email_address" placeholder="Email Address" required>
<input type="submit" class="inc-form-submit" value="Go!">
</div>
<div class="fieldset checkbox">
<input id="accept" type="checkbox" name="accept" required /> <label for="accept">By subscribing, I consent to receiving emails.</label>
</div>
</form>
</div>
</div>
</div>
<style>
.imark_newsletter_content input[type="submit"] {
background-color: #e5e2dc; border-color: #e5e2dc; color: #222222; }
.imark_newsletter_content {
background-color: #f9f8f6; color: #222222; }
.imark_newsletter_content .form-heading {
color: #222222; font-size: 30px; }
.imark_newsletter_content .form-container p {
font-size: 20px; }
.imark_newsletter_content {
border-color: #eeeeee; }
</style></div><script>"use strict";function wprRemoveCPCSS(){var preload_stylesheets=document.querySelectorAll('link[data-rocket-async="style"][rel="preload"]');if(preload_stylesheets&&0<preload_stylesheets.length)for(var stylesheet_index=0;stylesheet_index<preload_stylesheets.length;stylesheet_index++){var media=preload_stylesheets[stylesheet_index].getAttribute("media")||"all";if(window.matchMedia(media).matches)return void setTimeout(wprRemoveCPCSS,200)}var elem=document.getElementById("rocket-critical-css");elem&&"remove"in elem&&elem.remove()}window.addEventListener?window.addEventListener("load",wprRemoveCPCSS):window.attachEvent&&window.attachEvent("onload",wprRemoveCPCSS);</script><noscript><link data-minify="1" rel='stylesheet' id='kadence-blocks-rowlayout-css' href='https://www.simplywhisked.com/wp-content/cache/min/1/wp-content/plugins/kadence-blocks/dist/style-blocks-rowlayout.css?ver=1696565781' media='all' /><link data-minify="1" rel='stylesheet' id='kadence-blocks-column-css' href='https://www.simplywhisked.com/wp-content/cache/min/1/wp-content/plugins/kadence-blocks/dist/style-blocks-column.css?ver=1696565781' media='all' /><link data-minify="1" rel='stylesheet' id='kadence-blocks-iconlist-css' href='https://www.simplywhisked.com/wp-content/cache/min/1/wp-content/plugins/kadence-blocks/dist/style-blocks-iconlist.css?ver=1696565782' media='all' /><link rel='stylesheet' id='wp-block-library-css' href='https://www.simplywhisked.com/wp-includes/css/dist/block-library/style.min.css?ver=6.3.2' media='all' /><link data-minify="1" rel='stylesheet' id='tasty-links-featured-links-block-css' href='https://www.simplywhisked.com/wp-content/cache/min/1/wp-content/plugins/tasty-links/assets/css/featured-links-block.css?ver=1696565781' media='all' /><link rel='stylesheet' id='kadence-global-css' href='https://www.simplywhisked.com/wp-content/themes/kadence/assets/css/global.min.css?ver=1.1.46' media='all' /><link rel='stylesheet' id='kadence-header-css' href='https://www.simplywhisked.com/wp-content/themes/kadence/assets/css/header.min.css?ver=1.1.46' media='all' /><link rel='stylesheet' id='kadence-content-css' href='https://www.simplywhisked.com/wp-content/themes/kadence/assets/css/content.min.css?ver=1.1.46' media='all' /><link rel='stylesheet' id='kadence-comments-css' href='https://www.simplywhisked.com/wp-content/themes/kadence/assets/css/comments.min.css?ver=1.1.46' media='all' /><link rel='stylesheet' id='kadence-sidebar-css' href='https://www.simplywhisked.com/wp-content/themes/kadence/assets/css/sidebar.min.css?ver=1.1.46' media='all' /><link rel='stylesheet' id='kadence-footer-css' href='https://www.simplywhisked.com/wp-content/themes/kadence/assets/css/footer.min.css?ver=1.1.46' media='all' /><link data-minify="1" rel='stylesheet' id='inc-frontend-css' href='https://www.simplywhisked.com/wp-content/cache/min/1/wp-content/plugins/imark-interactive-toolkit/frontend/css/inc-frontend-style.css?ver=1696565781' media='all' /><link data-minify="1" rel='stylesheet' id='imp-frontend-css' href='https://www.simplywhisked.com/wp-content/cache/min/1/wp-content/plugins/imark-interactive-toolkit/frontend/css/imp-frontend-style.css?ver=1696565781' media='all' /><link data-minify="1" rel='stylesheet' id='kadence-blocks-advancedbtn-css' href='https://www.simplywhisked.com/wp-content/cache/min/1/wp-content/plugins/kadence-blocks/dist/style-blocks-advancedbtn.css?ver=1696565781' media='all' /></noscript></body></html><div class="wp-block-image"><figure class="aligncenter size-full"><img decoding="async" width="1200" height="1800" data-pin-url="https://www.simplywhisked.com/buffalo-chicken-chili/?tp_image_id=51724" data-pin-title="Buffalo Chicken Chili" data-pin-description="This easy, buffalo chicken chili recipe is hearty and healthy, and the buffalo flavor gives it just the right amount of spicy zing. Made on the stovetop, it’s perfect for a cozy game day at home, and it holds up in a crockpot for your next big party. Either way, everyone will love it!" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='1200'%20height='1800'%20viewBox='0%200%201200%201800'%3E%3C/svg%3E" alt="overhead view of buffalo chicken chili in a small white bowl garnished with japlapenos slices" class="wp-image-51724 perfmatters-lazy" data-src="https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-7.jpg" data-srcset="https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-7.jpg 1200w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-7-200x300.jpg 200w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-7-610x915.jpg 610w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-7-768x1152.jpg 768w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-7-1024x1536.jpg 1024w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-7-920x1380.jpg 920w" data-sizes="(max-width: 1200px) 100vw, 1200px" /><noscript><img decoding="async" width="1200" height="1800" data-pin-url="https://www.simplywhisked.com/buffalo-chicken-chili/?tp_image_id=51724" data-pin-title="Buffalo Chicken Chili" data-pin-description="This easy, buffalo chicken chili recipe is hearty and healthy, and the buffalo flavor gives it just the right amount of spicy zing. Made on the stovetop, it’s perfect for a cozy game day at home, and it holds up in a crockpot for your next big party. Either way, everyone will love it!" src="https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-7.jpg" alt="overhead view of buffalo chicken chili in a small white bowl garnished with japlapenos slices" class="wp-image-51724" srcset="https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-7.jpg 1200w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-7-200x300.jpg 200w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-7-610x915.jpg 610w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-7-768x1152.jpg 768w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-7-1024x1536.jpg 1024w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-7-920x1380.jpg 920w" sizes="(max-width: 1200px) 100vw, 1200px" /></noscript></figure></div>
<h2 class="wp-block-heading" id="h-how-to-make-buffalo-chicken-chili">How to make buffalo chicken chili</h2>
<p><strong>Sauté the vegetables.</strong> Heat a large pot to medium-high heat and add your oil. Next, add your veggies and sauté them until they start to soften and the onions start to turn translucent.</p>
<p><strong>Brown the chicken.</strong> Add the ground chicken and let it cook, stirring as needed and breaking up the meat as you go. Cook it until the chicken is no longer pink.</p>
<div class="wp-block-image"><figure class="aligncenter size-full"><img decoding="async" width="1200" height="1800" data-pin-url="https://www.simplywhisked.com/buffalo-chicken-chili/?tp_image_id=51718" data-pin-title="Buffalo Chicken Chili" data-pin-description="This easy, buffalo chicken chili recipe is hearty and healthy, and the buffalo flavor gives it just the right amount of spicy zing. Made on the stovetop, it’s perfect for a cozy game day at home, and it holds up in a crockpot for your next big party. Either way, everyone will love it!" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='1200'%20height='1800'%20viewBox='0%200%201200%201800'%3E%3C/svg%3E" alt="overhead view of a large dutch oven with buffalo chicken chili garnished with jalapeños next to a bowl of chili frackers and hot sauce" class="wp-image-51718 perfmatters-lazy" data-src="https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-1-1.jpg" data-srcset="https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-1-1.jpg 1200w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-1-1-200x300.jpg 200w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-1-1-610x915.jpg 610w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-1-1-768x1152.jpg 768w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-1-1-1024x1536.jpg 1024w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-1-1-920x1380.jpg 920w" data-sizes="(max-width: 1200px) 100vw, 1200px" /><noscript><img decoding="async" width="1200" height="1800" data-pin-url="https://www.simplywhisked.com/buffalo-chicken-chili/?tp_image_id=51718" data-pin-title="Buffalo Chicken Chili" data-pin-description="This easy, buffalo chicken chili recipe is hearty and healthy, and the buffalo flavor gives it just the right amount of spicy zing. Made on the stovetop, it’s perfect for a cozy game day at home, and it holds up in a crockpot for your next big party. Either way, everyone will love it!" src="https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-1-1.jpg" alt="overhead view of a large dutch oven with buffalo chicken chili garnished with jalapeños next to a bowl of chili frackers and hot sauce" class="wp-image-51718" srcset="https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-1-1.jpg 1200w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-1-1-200x300.jpg 200w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-1-1-610x915.jpg 610w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-1-1-768x1152.jpg 768w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-1-1-1024x1536.jpg 1024w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-1-1-920x1380.jpg 920w" sizes="(max-width: 1200px) 100vw, 1200px" /></noscript></figure></div>
<p><strong>Simmer the chili. </strong>Add the remaining ingredients to the pot and bring the mixture to a low boil. Simmer for at least 15 minutes.</p>
<p>If you need or want to simmer the chili for longer, add about 1/2 cup of additional water and keep the pot covered, over low heat. Remove the lid for the last 15 minutes of simmer time.</p>
<p>You can also transfer the chili to a <a class="tasty-link" rel="nofollow noopener" target="_blank" data-tasty-links-append-disclosure href="https://www.amazon.com/Crockpot-SCV700-KT-Deisgn-Cooker-Turquoise/dp/B00HDE4PYS/ref=sr_1_4?crid=1RO4U267LFW3U&keywords=crockpot&qid=1643742932&sprefix=crockpot%2Caps%2C128&sr=8-4&th=1">slow cooker</a> for simmer time and let it cook on low for at least 1 hour (or high for 30 minutes).</p>
<div class="wp-block-image"><figure class="aligncenter size-full"><img decoding="async" width="1200" height="1800" data-pin-url="https://www.simplywhisked.com/buffalo-chicken-chili/?tp_image_id=51722" data-pin-title="Buffalo Chicken Chili" data-pin-description="This easy, buffalo chicken chili recipe is hearty and healthy, and the buffalo flavor gives it just the right amount of spicy zing. Made on the stovetop, it’s perfect for a cozy game day at home, and it holds up in a crockpot for your next big party. Either way, everyone will love it!" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='1200'%20height='1800'%20viewBox='0%200%201200%201800'%3E%3C/svg%3E" alt="overhead close up of buffalo chicken chili garnished with jalapeños slices" class="wp-image-51722 perfmatters-lazy" data-src="https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-5-1.jpg" data-srcset="https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-5-1.jpg 1200w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-5-1-200x300.jpg 200w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-5-1-610x915.jpg 610w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-5-1-768x1152.jpg 768w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-5-1-1024x1536.jpg 1024w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-5-1-920x1380.jpg 920w" data-sizes="(max-width: 1200px) 100vw, 1200px" /><noscript><img decoding="async" width="1200" height="1800" data-pin-url="https://www.simplywhisked.com/buffalo-chicken-chili/?tp_image_id=51722" data-pin-title="Buffalo Chicken Chili" data-pin-description="This easy, buffalo chicken chili recipe is hearty and healthy, and the buffalo flavor gives it just the right amount of spicy zing. Made on the stovetop, it’s perfect for a cozy game day at home, and it holds up in a crockpot for your next big party. Either way, everyone will love it!" src="https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-5-1.jpg" alt="overhead close up of buffalo chicken chili garnished with jalapeños slices" class="wp-image-51722" srcset="https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-5-1.jpg 1200w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-5-1-200x300.jpg 200w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-5-1-610x915.jpg 610w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-5-1-768x1152.jpg 768w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-5-1-1024x1536.jpg 1024w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-5-1-920x1380.jpg 920w" sizes="(max-width: 1200px) 100vw, 1200px" /></noscript></figure></div>
<h2 class="wp-block-heading" id="h-more-chicken-recipes">More chicken recipes:</h2>
<ul><li><a href="https://www.simplywhisked.com/buffalo-chicken-meatballs/">Buffalo chicken meatballs</a></li><li><a href="https://www.simplywhisked.com/southwest-stuffed-peppers/">Chicken stuffed peppers</a></li><li><a href="https://www.simplywhisked.com/ground-chicken-tacos-recipe/">Ground chicken tacos</a></li><li><a href="https://www.simplywhisked.com/asian-chicken-wraps/">Peanut chicken wraps</a></li><li><a href="https://www.simplywhisked.com/baked-chicken-wings/">Baked buffalo wings</a></li></ul>
<h2 class="wp-block-heading" id="h-more-chili-recipes-you-ll-love">More chili recipes you’ll love:</h2>
<ul><li><a href="https://www.simplywhisked.com/slow-cooker-white-chicken-chili/">Slow cooker white chicken chili</a> </li><li><a href="https://www.simplywhisked.com/sweet-potato-lentil-chili/">Sweet potato lentil chili</a> </li><li><a href="https://www.simplywhisked.com/quick-and-easy-beer-chili/">Quick and easy beer chili</a> </li><li><a href="https://www.simplywhisked.com/cincinnati-chili/">Cincinnati chili</a></li><li><a href="https://www.simplywhisked.com/white-turkey-chili-recipe/" target="_blank" rel="nofollow noopener noreferrer">White turkey chili</a></li><li><a href="https://www.adashofmegnut.com/pumpkin-apple-cider-turkey-chili/">Pumpkin turkey chili</a></li></ul>
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="1800" data-pin-url="https://www.simplywhisked.com/buffalo-chicken-chili/?tp_image_id=51719" data-pin-title="Buffalo Chicken Chili" data-pin-description="This easy, buffalo chicken chili recipe is hearty and healthy, and the buffalo flavor gives it just the right amount of spicy zing. Made on the stovetop, it’s perfect for a cozy game day at home, and it holds up in a crockpot for your next big party. Either way, everyone will love it!" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='1200'%20height='1800'%20viewBox='0%200%201200%201800'%3E%3C/svg%3E" alt="overhead view of buffalo chicken chili in a large dutch oven " class="wp-image-51719 perfmatters-lazy" data-src="https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-2-1.jpg" data-srcset="https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-2-1.jpg 1200w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-2-1-200x300.jpg 200w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-2-1-610x915.jpg 610w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-2-1-768x1152.jpg 768w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-2-1-1024x1536.jpg 1024w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-2-1-920x1380.jpg 920w" data-sizes="(max-width: 1200px) 100vw, 1200px" /><noscript><img decoding="async" width="1200" height="1800" data-pin-url="https://www.simplywhisked.com/buffalo-chicken-chili/?tp_image_id=51719" data-pin-title="Buffalo Chicken Chili" data-pin-description="This easy, buffalo chicken chili recipe is hearty and healthy, and the buffalo flavor gives it just the right amount of spicy zing. Made on the stovetop, it’s perfect for a cozy game day at home, and it holds up in a crockpot for your next big party. Either way, everyone will love it!" src="https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-2-1.jpg" alt="overhead view of buffalo chicken chili in a large dutch oven " class="wp-image-51719" srcset="https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-2-1.jpg 1200w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-2-1-200x300.jpg 200w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-2-1-610x915.jpg 610w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-2-1-768x1152.jpg 768w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-2-1-1024x1536.jpg 1024w, https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-2-1-920x1380.jpg 920w" sizes="(max-width: 1200px) 100vw, 1200px" /></noscript></figure>
<a class="button tasty-recipes-print-button tasty-recipes-no-print tasty-recipes-print-above-card" href="https://www.simplywhisked.com/buffalo-chicken-chili/print/18267/">Print</a><span class="tasty-recipes-jump-target" id="tasty-recipes-18267-jump-target" style="display:block;padding-top:2px;margin-top:-2px;"></span><div id="tasty-recipes-18267" class="tasty-recipes tasty-recipes-18267 tasty-recipes-display tasty-recipes-has-image">
<style type="text/css" style="display: none !important;">
.tasty-recipes-print-button{background-color:#667;border:none;display:inline-block;padding:.5em 1em;text-decoration:none}body:not(.tasty-recipes-print-view) .tasty-recipes-print-button.tasty-recipes-print-above-card{color:#fff;display:none}body:not(.tasty-recipes-print-view) .tasty-recipes-print-button.tasty-recipes-print-above-card:hover{background-color:#b2b2bb;color:#fff;display:inline-block;padding:.5em 1em;text-decoration:none}.tasty-recipes-image-button-container{display:flex;flex-direction:column;flex-wrap:wrap;float:right;margin-left:10px}body.tasty-recipes-print-view .tasty-recipes-buttons,body.tasty-recipes-print-view .tasty-recipes-cook-mode{display:none}.tasty-recipes-image-button-container .tasty-recipes-buttons{margin-bottom:10px;margin-top:10px}.tasty-recipes-image-button-container .tasty-recipes-button-wrap{box-sizing:border-box;margin-bottom:10px}.tasty-recipes-image-button-container .tasty-recipes-buttons a{background-color:#f9f9f9;border:1px solid #aaa;border-radius:0;color:#aaa;cursor:pointer;display:block;font-size:16px;font-weight:700;line-height:16px;margin-top:0;padding:8px;text-align:center;text-decoration:none;text-transform:uppercase}.tasty-recipes-image-button-container .tasty-recipes-buttons .button:hover{background-color:#aaa;border:1px solid #aaa;color:#fff;opacity:1}.tasty-recipes-image-button-container .tasty-recipes-buttons a:hover{background-color:#979599;text-decoration:none}.tasty-recipes-image-button-container .tasty-recipes-buttons svg{display:none}.tasty-recipes-yield-scale{border:1px solid #979599;border-radius:2px;color:#979599;font-size:.7rem;margin-left:3px;padding:0 4px}.tasty-recipes-units-scale-container{display:flex;flex-wrap:wrap}.tasty-recipes-convert-container{padding:0 1em 1em 0}.tasty-recipes-convert-container .tasty-recipes-convert-label{align-self:center;color:#979599;font-size:.6rem;text-transform:uppercase}.tasty-recipes-convert-container button{background:transparent;border:1px solid #353547;border-radius:2px;color:#353547;letter-spacing:0;margin-left:5px;min-width:34px;padding:2px 4px;text-align:center}.tasty-recipes-convert-container button.tasty-recipes-convert-button-active{background-color:#000;border-color:#000;color:#fff}.tasty-recipes-convert-container button:focus{outline:none}.tasty-recipes-scale-container{display:flex;padding:0 0 1em}.tasty-recipes-scale-container .tasty-recipes-scale-label{align-self:center;color:#979599;font-size:.6rem;text-transform:uppercase}.tasty-recipes-scale-container button{background:transparent;border:1px solid #353547;border-radius:2px;color:#353547;cursor:pointer;letter-spacing:0;margin-left:5px;min-width:34px;padding:2px 4px}.tasty-recipes-scale-container button.tasty-recipes-scale-button-active{background-color:#000;border-color:#000;color:#fff}.tasty-recipes-scale-container button:focus{outline:none}.tasty-recipes-ingredients-header{margin:1em 0}@media only screen and (min-width:520px){.tasty-recipes-ingredients-header{align-items:center;display:flex;flex-wrap:wrap;justify-content:space-between}}.tasty-recipes-ingredients-header .tasty-recipes-ingredients-clipboard-container{align-items:baseline;display:inline-flex}.tasty-recipes-ingredients-header h3{margin:0 10px 10px 0}.tasty-recipes-ingredients-clipboard-container .tasty-recipes-copy-button{background:transparent;border:none;color:#353547;height:24px;padding:0;position:relative;width:24px}.tasty-recipes-ingredients-clipboard-container .tasty-recipes-copy-button:hover{opacity:.5}.tasty-recipes-instructions-header{align-items:baseline;display:flex;flex-wrap:wrap;justify-content:space-between;margin:1em 0}.tasty-recipes-entry-content .tasty-recipes-instructions h3{margin:0 0 1rem}@media only screen and (min-width:520px){.tasty-recipes-entry-content .tasty-recipes-instructions h3{margin:0}}button[name=tasty-recipes-video-toggle]{background:#979599;border:#979599;border-radius:2px;display:inline-block;font-size:14px;height:30px;line-height:20px;margin:0;padding:0;text-align:center;vertical-align:middle;width:86px}button[name=tasty-recipes-video-toggle] span{padding:0 4px;pointer-events:none}button[name=tasty-recipes-video-toggle][aria-checked=false] :last-child,button[name=tasty-recipes-video-toggle][aria-checked=true] :first-child{background:#fff;border-radius:2px;color:#979599;padding:2px 4px}button[name=tasty-recipes-video-toggle][aria-checked=false] :first-child,button[name=tasty-recipes-video-toggle][aria-checked=true] :last-child{color:#fff}label[for=tasty-recipes-video-toggle]{color:#979599;font-size:.6rem;line-height:30px;padding-right:8px;text-transform:uppercase;user-select:none;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;-o-user-select:none;vertical-align:middle}.tasty-recipe-responsive-iframe-container{margin:10px 0}.tasty-recipes-equipment{display:flex;flex-wrap:wrap;justify-content:space-evenly}.tasty-recipes-equipment>h3{flex:0 0 100%}.tasty-recipes-equipment .tasty-link-card{flex:0 0 50%;padding:1.5rem 1rem;text-align:center}@media screen and (min-width:500px){.tasty-recipes-equipment .tasty-link-card{flex:0 0 33%}}.tasty-recipes-equipment .tasty-link-card p{font-size:1em;font-weight:700;margin-bottom:0}.tasty-recipes-equipment .tasty-link-card p a{color:initial}.tasty-recipes-equipment .tasty-link-card span{font-size:.9em}.tasty-recipes .tasty-recipes-nutrition ul{list-style-type:none;margin:0;padding:0}.tasty-recipes .tasty-recipes-nutrition ul:after{clear:both;content:" ";display:block}.tasty-recipes .tasty-recipes-nutrition li{float:left;list-style-type:none;margin-bottom:0;margin-left:0;margin-right:16px}.tasty-recipes-plug{align-items:center;display:flex;flex-wrap:wrap;justify-content:center;margin-bottom:1em;text-align:center}.tasty-recipes-plug a{box-shadow:none;text-decoration:none}.tasty-recipes-plug a img{background:transparent;box-shadow:none;display:inline-block;height:auto;margin:5px 0 0 8px;padding:0;width:150px}.tasty-recipes-footer-content{padding:1.5em;text-align:center}.tasty-recipes-footer-content .tasty-recipes-footer-copy{margin-left:0}.tasty-recipes-footer-content img,.tasty-recipes-footer-content svg{width:60px}.tasty-recipes-entry-content .tasty-recipes-entry-footer h3{font-size:1.25em;margin:0 0 .25em;padding:0}.tasty-recipes-entry-footer p{font-size:.75em;margin:0}.tasty-recipes-entry-footer p a{border-bottom:none;box-shadow:none;text-decoration:underline}.tasty-recipes-flash-message{background-color:#fff;border-radius:4px;box-shadow:0 .3px .4px 0 rgba(0,0,0,.024),0 .9px 1.5px 0 rgba(0,0,0,.05),0 3.5px 6px 0 rgba(0,0,0,.1);color:#313135;display:inline-block;font-size:13px;letter-spacing:0;line-height:1.2em;margin-left:10px;padding:4px 10px}@media screen and (min-width:500px){.tasty-recipes-flash-message{padding:4px 10px}}.tasty-recipes-flash-message p{margin:0;padding:0;text-transform:none}@media screen and (min-width:500px){.tasty-recipes-footer-content{align-items:center;display:flex;justify-content:center;padding:1.5em 0;text-align:left}.tasty-recipes-footer-content .tasty-recipes-footer-copy{margin-left:.8em}}@media print{.tasty-recipes-no-print,.tasty-recipes-no-print *{display:none!important}}[data-tr-ingredient-checkbox]{cursor:pointer;list-style-position:outside;list-style-type:none!important;margin-left:0!important}[data-tr-ingredient-checkbox] .tr-ingredient-checkbox-container{position:relative}[data-tr-ingredient-checkbox] .tr-ingredient-checkbox-container input[type=checkbox]+label{display:inline-block;position:relative;vertical-align:middle}[data-tr-ingredient-checkbox] .tr-ingredient-checkbox-container input[type=checkbox]{clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;position:absolute!important;width:1px}[data-tr-ingredient-checkbox] .tr-ingredient-checkbox-container input[type=checkbox]+label:before{border:1px solid;border-radius:2px;content:"";display:inline-block;height:20px;margin-right:10px;position:relative;width:20px}[data-tr-ingredient-checkbox] .tr-ingredient-checkbox-container input[type=checkbox]:checked+label:after{border-bottom:2px solid;border-left:2px solid;content:"";display:inline-block;height:6px;left:4px;position:absolute;top:4px;transform:rotate(-45deg);width:12px}[data-tr-ingredient-checkbox] .tr-ingredient-checkbox-container input[type=checkbox]:focus+label:before{box-shadow:0 0 8px #5e9ed6;outline:1px solid #5d9dd5}[data-tr-ingredient-checkbox=checked]{opacity:.8;text-decoration:line-through}.tasty-recipes-cook-mode__container{align-items:center;display:flex;line-height:100%}.tasty-recipes-cook-mode__container label{font-size:inherit}.tasty-recipes-cook-mode__switch{display:inline-block;height:17px;margin-right:10px;position:relative;width:30px}.tasty-recipes-cook-mode__switch-slider{background-color:#737373;bottom:0;cursor:pointer;display:block;left:0;opacity:.4;position:absolute;right:0;top:0;transition:.4s}.tasty-recipes-cook-mode__switch-slider:before{background-color:#fff;bottom:2px;content:"";height:13px;left:2px;position:absolute;transition:.4s;width:13px}.tasty-recipes-cook-mode__switch input{display:none}.tasty-recipes-cook-mode__switch input:checked+span{opacity:1}.tasty-recipes-cook-mode__switch input:checked+span:before{transform:translateX(13px)}.tasty-recipes-cook-mode__switch-round{border-radius:34px}.tasty-recipes-cook-mode__switch-round:before{border-radius:50%}.tasty-recipes-cook-mode__label{font-weight:700}@media only screen and (max-width:767px){#shop-with-instacart-v1{transform:scale(.75);transform-origin:top left}}/* 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-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);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}a.button{display:inline-flex;align-items:center;justify-content:center;background-color:#000;color:#fff;border:none;border-radius:3px;font-size:0.813em;padding-left:1em;padding-right:1em;padding-top:0.5em;padding-bottom:0.5em;text-decoration:none;letter-spacing:0.5px;white-space:nowrap}body.foodie-pro a.button:hover{box-shadow:0px 0px 0px 1px rgba(0,0,0,1) inset;color:#000}.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 .tasty-recipes-yield-scale{border:1px solid #000;color:#000}.tasty-recipes-print .tasty-recipes-units-scale-container{display:none}.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-entry-header .tasty-recipes-details .detail-icon{height:1em;margin-top:0.6em}@media only screen and (max-width:520px){.tasty-recipes-entry-header .tasty-recipes-details .detail-icon{height:0.8em;margin-top:0.4em}.tasty-recipes-entry-header .tasty-recipes-details ul li{font-size:0.875em;line-height:1.75em}}.tasty-recipes-entry-content .tasty-recipes-ingredients .tasty-recipes-convert-container button{padding:6px 4px}.tasty-recipes-entry-content .tasty-recipes-ingredients .tasty-recipes-convert-container button{padding:4px}.tasty-recipes-convert-container .tasty-recipes-convert-label,.tasty-recipes-scale-container .tasty-recipes-scale-label,label[for="tasty-recipes-video-toggle"]{font-size:0.75rem;color:#000}button[name="tasty-recipes-video-toggle"]{border:#000;background:#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}.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-ingredients-header .tasty-recipes-ingredients-clipboard-container{align-items:flex-start}.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 ul li .tr-ingredient-checkbox-container label{display:inline-flex}.tasty-recipes-entry-content .tasty-recipes-ingredients ul li[data-tr-ingredient-checkbox]:before{display:none}.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;margin-bottom:1.25em}.tasty-recipes-entry-footer .tasty-recipes-footer-copy,.tasty-recipes-entry-footer .tasty-recipes-footer-copy div p span,.tasty-recipes-entry-footer .tasty-recipes-footer-copy div p span a{color:#fff}.tasty-recipes-entry-footer .tasty-recipes-footer-copy h3{font-size:0.938em;margin:0.125em 0;color:#fff}.tasty-recipes-entry-footer img,.tasty-recipes-entry-footer svg{color:#fff}@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;break-inside:avoid}.tasty-recipes-print-view .tasty-recipes-entry-content,.tasty-recipes-print-view .tasty-recipes-entry-header{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}.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{background-color:#fff;border-top:1px solid #000}.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:0em 0em 0em 1.75em;font-size:0.875em;line-height:1.25em}.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{background-color:#fff;color:inherit;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-recipes-entry-content .tasty-recipes-nutrition{border-top:1px solid #000;background-color:#fff}.tasty-recipes-print-view .tasty-recipes-scale-container,.tasty-recipes-print-view .tasty-recipes-equipment,.tasty-recipes-print-view .tasty-recipes-nutrifox,.tasty-recipes-print-view .tasty-recipe-video-embed,.tasty-recipes-print-view .tasty-recipes-keywords{display:none}.tasty-recipes-print-view .tasty-recipe-video-embed,.tasty-recipes-print .tasty-recipes-entry-header .tasty-recipes-details .detail-icon,.tasty-recipes-print .tasty-recipes-entry-footer img{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-cook-mode__label,.tasty-recipes-cook-mode__helper{font-size:0.875em}.tasty-recipes-cook-mode .tasty-recipes-cook-mode__switch .tasty-recipes-cook-mode__switch-slider{background-color:#000}
</style>
<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"></path></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"></path></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"></path></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"></path></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"></path></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"></path></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"></path></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="1152" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='768'%20height='1152'%20viewBox='0%200%20768%201152'%3E%3C/svg%3E" class="attachment-medium_large size-medium_large perfmatters-lazy" alt data-pin-nopin="nopin" data-pin-url="https://www.simplywhisked.com/buffalo-chicken-chili/?tp_image_id=51721" data-src="https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1-768x1152.jpg" /><noscript><img decoding="async" width="768" height="1152" src="https://www.simplywhisked.com/wp-content/uploads/2016/02/Buffalo-Chicken-Chili-4-1-768x1152.jpg" class="attachment-medium_large size-medium_large" alt="" data-pin-nopin="nopin" data-pin-url="https://www.simplywhisked.com/buffalo-chicken-chili/?tp_image_id=51721"></noscript> </div>
<header class="tasty-recipes-entry-header">
<h2 class="tasty-recipes-title" data-tasty-recipes-customization="h2-color.color h2-transform.text-transform">Buffalo Chicken Chili</h2>
<div class="tasty-recipes-rating">
<a href="#respond">
<p><span class="tasty-recipes-rating tasty-recipes-clip-100 tasty-recipes-rating-solid">★</span><span class="tasty-recipes-rating tasty-recipes-clip-100 tasty-recipes-rating-solid">★</span><span class="tasty-recipes-rating tasty-recipes-clip-100 tasty-recipes-rating-solid">★</span><span class="tasty-recipes-rating tasty-recipes-clip-100 tasty-recipes-rating-solid">★</span><span class="tasty-recipes-rating tasty-recipes-clip-100 tasty-recipes-rating-solid">★</span></p>
<p><span data-tasty-recipes-customization="detail-label-color.color" class="rating-label"><span class="average">5</span> from <span class="count">1</span> review</span></p>
</a>
</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.simplywhisked.com/buffalo-chicken-chili/print/18267/" target="_blank" data-tasty-recipes-customization="button-color.border-color button-color.background button-text-color.color">
<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.simplywhisked.com%2Fbuffalo-chicken-chili%2F" href="https://www.pinterest.com/pin/create/bookmarklet/?url=https%3A%2F%2Fwww.simplywhisked.com%2Fbuffalo-chicken-chili%2F" data-tasty-recipes-customization="button-color.border-color button-color.background button-text-color.color">
<svg viewbox="0 0 24 24" class="svg-print" aria-hidden="true"><use xlink:href="#tasty-recipes-icon-pinterest"></use></svg>
Pin Recipe</a>
<script type="rocketlazyloadscript">
const share_pin_buttons = document.getElementsByClassName( 'share-pin button' );
if ( share_pin_buttons ) {
for ( let share_key = 0; share_key <= share_pin_buttons.length; share_key++ ) {
share_pin_buttons[share_key].addEventListener( 'click', (e) => {
e.stopPropagation();
window.open(e.target.dataset.href,'targetWindow','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=500,height=500');
return false;
} );
}
}
</script>
</div>
</div>
<div class="tasty-recipes-description">
<div class="tasty-recipes-description-body">
<p>This buffalo chicken chili is a hearty, go-to meal that can be ready pretty quickly. The buffalo flavor is the perfect amount of spicy. Make this for your next football game, everyone will love it!</p>
</div>
</div>
<div class="tasty-recipes-details">
<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="http://Melissa%20Belanger">Melissa Belanger</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" data-tasty-recipes-customization="icon-color.color"></use></svg>
Prep Time:</span> <span data-tasty-recipes-customization="detail-value-color.color" class="tasty-recipes-prep-time">15 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" data-tasty-recipes-customization="icon-color.color"></use></svg>
Cook Time:</span> <span data-tasty-recipes-customization="detail-value-color.color" class="tasty-recipes-cook-time">30 minutes</span> </li>
<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">45 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="8">8</span> – <span data-amount="12">12</span> servings <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>
</div>
<div class="tasty-recipes-units-scale-container">
<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>
</div>
</div>
<div data-tasty-recipes-customization="body-color.color">
<ul>
<li><span data-amount="2" data-unit="tablespoon">2 tablespoons</span> olive oil</li>
<li><span data-amount="1">1</span> small onion, chopped (about <span data-amount="1" data-unit="cup">1 cup</span>)</li>
<li><span data-amount="2">2</span> stalks celery, chopped</li>
<li><span data-amount="6">6</span> garlic cloves, minced</li>
<li><span data-amount="1.5">1 1/2</span> – <span data-amount="2">2</span> pounds ground chicken</li>
<li><span data-amount="1" data-unit="cup">1 cup</span> water (or reduced-sodium broth)</li>
<li><span data-amount="1">1</span> 15-ounce can petite diced tomatoes</li>
<li><span data-amount="2">2</span> 15-ounce cans chili beans, with sauce</li>
<li><span data-amount="2">2</span> tablespoos chili powder</li>
<li><span data-amount="2" data-unit="teaspoon">2 teaspoons</span> ground cumin</li>
<li><span data-amount="2" data-unit="teaspoon">2 teaspoons</span> paprika</li>
<li><span data-amount="1">1</span> bay leaf</li>
<li><span data-amount="1" data-unit="teaspoon">1 teaspoon</span> salt</li>
<li><span data-amount="0.5" data-unit="teaspoon">1/2 teaspoon</span> pepper</li>
<li><span data-amount="0.5" data-unit="cup">1/2 cup</span> buffalo wing sauce</li>
</ul>
<!--INSIDE_INGREDIENTS--> </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_6529086142027_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_6529086142027_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 <a class="tasty-link" rel="nofollow noopener" target="_blank" data-tasty-links-append-disclosure href="https://www.amazon.com/Cuisinart-77-412-Classic-Stainless-12-Quart/dp/B0000UV01S?crid=20VJMJ4LP2TFN&dchild=1&keywords=stock+pot&qid=1628802080&sprefix=stock+pot%2Caps%2C267&sr=8-8&linkCode=ll1&tag=pasta0c-20&linkId=f2d4fd70241c04cdb91bb8a30d76b4b6&language=en_US&ref_=as_li_ss_tl">large stockpot</a> or <a class="tasty-link" rel="nofollow noopener" target="_blank" data-tasty-links-append-disclosure href="https://www.amazon.com/dp/B0076NOG5E/ref=as_li_ss_tl?_encoding=UTF8&th=1&linkCode=ll1&tag=simpwhis-20&linkId=8066d4bf0c681857e93f37a2618c389e&language=en_US">dutch oven</a>, heat olive oil to medium-high. Add the bell pepper, onion, celery and garlic. Sauté until onions are translucent, about 5 minutes.</li>
<li id="instruction-step-2">Add ground chicken. Breaking up the meat as chicken browns, cook until no longer pink, about 5 minutes.</li>
<li id="instruction-step-3">Add water, tomatoes, beans, chili powder, cumin, bay leaf, buffalo sauce, and salt & pepper. Bring to a simmer.</li>
<li id="instruction-step-4">Cover and allow chili to cook for at least 15 minutes, simmering to desired thickness.</li>
<li id="instruction-step-5">Before serving, remove bay leaf and adjust seasoning with salt & pepper, to taste.</li>
</ol>
</div>
</div>
<div class="tasty-recipes-other-details" data-tasty-recipes-customization="secondary-color.background-color">
<ul>
<li class="category"><span class="tasty-recipes-label" data-tasty-recipes-customization="detail-label-color.color">Category:</span> <span data-tasty-recipes-customization="detail-value-color.color" class="tasty-recipes-category">Soups</span></li><li class="method"><span class="tasty-recipes-label" data-tasty-recipes-customization="detail-label-color.color">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">Cuisine:</span> <span data-tasty-recipes-customization="detail-value-color.color" class="tasty-recipes-cuisine">American</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 bowl</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">203</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">2.5 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">620.6 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">12.2 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">3.3 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">8.6 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">1.4 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">15.8 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">63 mg</span></li>
</ul>
</div>
<div class="tasty-recipes-keywords" data-tasty-recipes-customization="secondary-color.background-color">
<p data-tasty-recipes-customization="detail-value-color.color"><span class="tasty-recipes-label" data-tasty-recipes-customization="detail-label-color.color">Keywords:</span> easy, dairy free, egg free, healthy, chili, beans, buffalo</p>
</div>
</div>
<footer class="tasty-recipes-entry-footer" data-tasty-recipes-customization="primary-color.background">
<div class="tasty-recipes-footer-content">
<svg viewbox="0 0 24 24" class="svg-instagram" aria-hidden="true" style="color: #222 !important;" data-tasty-recipes-customization="footer-icon-color.color"><use xlink:href="#tasty-recipes-icon-instagram"></use></svg>
<div class="tasty-recipes-footer-copy">
<div style="color: #222 !important;" data-tasty-recipes-customization="footer-description-color.color footer-description.innerHTML"><p>Did you make one of our recipes? Tag us on Instagram @simplywhisked #simplywhisked. We would love to see it.</p>
</div>
</div>
</div>
</footer>
<script type="rocketlazyloadscript">
window.tasty_recipes_min_rating = 4;
(function(){
var bothEquals = function( d1, d2, D ) {
var ret = 0;
if (d1<=D) {
ret++;
}
if (d2<=D) {
ret++;
}
return ret === 2;
};
var frac =function frac(x,D,mixed){var n1=Math.floor(x),d1=1;var n2=n1+1,d2=1;if(x!==n1)while(bothEquals(d1,d2,D)){var m=(n1+n2)/(d1+d2);if(x===m){if(d1+d2<=D){d1+=d2;n1+=n2;d2=D+1}else if(d1>d2)d2=D+1;else d1=D+1;break}else if(x<m){n2=n1+n2;d2=d1+d2}else{n1=n1+n2;d1=d1+d2}}if(d1>D){d1=d2;n1=n2}if(!mixed)return[0,n1,d1];var q=Math.floor(n1/d1);return[q,n1-q*d1,d1]};frac.cont=function cont(x,D,mixed){var sgn=x<0?-1:1;var B=x*sgn;var P_2=0,P_1=1,P=0;var Q_2=1,Q_1=0,Q=0;var A=Math.floor(B);while(Q_1<D){A=Math.floor(B);P=A*P_1+P_2;Q=A*Q_1+Q_2;if(B-A<5e-8)break;B=1/(B-A);P_2=P_1;P_1=P;Q_2=Q_1;Q_1=Q}if(Q>D){if(Q_1>D){Q=Q_2;P=P_2}else{Q=Q_1;P=P_1}}if(!mixed)return[0,sgn*P,Q];var q=Math.floor(sgn*P/Q);return[q,sgn*P-q*Q,Q]};
window.tastyRecipesVulgarFractions = JSON.parse(decodeURIComponent("%7B%22%C2%BC%22%3A%221%2F4%22%2C%22%C2%BD%22%3A%221%2F2%22%2C%22%C2%BE%22%3A%223%2F4%22%2C%22%E2%85%93%22%3A%221%2F3%22%2C%22%E2%85%94%22%3A%222%2F3%22%2C%22%E2%85%95%22%3A%221%2F5%22%2C%22%E2%85%96%22%3A%222%2F5%22%2C%22%E2%85%97%22%3A%223%2F5%22%2C%22%E2%85%98%22%3A%224%2F5%22%2C%22%E2%85%99%22%3A%221%2F6%22%2C%22%E2%85%9A%22%3A%225%2F6%22%2C%22%E2%85%9B%22%3A%221%2F8%22%2C%22%E2%85%9C%22%3A%223%2F8%22%2C%22%E2%85%9D%22%3A%225%2F8%22%2C%22%E2%85%9E%22%3A%227%2F8%22%7D"));
window.tastyRecipesFormatAmount = function(amount, el) {
if ( parseFloat( amount ) === parseInt( amount ) ) {
return amount;
}
var roundType = 'frac';
if (typeof el.dataset.amountShouldRound !== 'undefined') {
if ('false' != el.dataset.amountShouldRound) {
if ( 'number' === el.dataset.amountShouldRound ) {
roundType = 'number';
} else if ('frac' === el.dataset.amountShouldRound) {
roundType = 'frac'
} else if ('vulgar' === el.dataset.amountShouldRound) {
roundType = 'vulgar'
} else {
roundType = 'integer';
}
}
}
if ('number' === roundType) {
amount = Number.parseFloat(amount).toPrecision(2);
} else if ('integer' === roundType) {
amount = Math.round(amount);
} else if ('frac' === roundType || 'vulgar' === roundType) {
var denom = 8;
if (typeof el.dataset.unit !== 'undefined') {
var unit = el.dataset.unit;
if (['cups','cup','c'].includes(unit)) {
denom = 4;
if (0.125 === amount) {
denom = 8;
}
if ("0.1667" === Number.parseFloat( amount ).toPrecision(4)) {
denom = 6;
}
}
if (['tablespoons','tablespoon','tbsp'].includes(unit)) {
denom = 2;
}
if (['teaspoons','teaspoon','tsp'].includes(unit)) {
denom = 8;
}
}
var amountArray = frac.cont( amount, denom, true );
var newAmount = '';
if ( amountArray[1] !== 0 ) {
newAmount = amountArray[1] + '/' + amountArray[2];
if ('vulgar' === roundType) {
Object.keys(window.tastyRecipesVulgarFractions).forEach(function(vulgar) {
if (newAmount === window.tastyRecipesVulgarFractions[vulgar]) {
newAmount = vulgar;
}
});
}
}
if ( newAmount ) {
newAmount = ' ' + newAmount;
}
if ( amountArray[0] ) {
newAmount = amountArray[0] + newAmount;
}
amount = newAmount;
}
return amount;
}
window.tastyRecipesUpdatePrintLink = () => {
const printLinks = document.querySelectorAll( '.tasty-recipes-print-link' );
const printButtons = document.querySelectorAll( '.tasty-recipes-print-button' );
// Use the first print button found as the canonical URL source.
const printButton = document.querySelector( '.tasty-recipes-print-button' );
// If no print button is available, we can't reliably update its href.
if ( ! printButton ) {
return;
}
const printURL = new URL( printButton.href );
const searchParams = new URLSearchParams( printURL.search );
const unitButton = document.querySelector( '.tasty-recipes-convert-button-active' );
const scaleButton = document.querySelector( '.tasty-recipes-scale-button-active' );
let unit = '';
let scale = '';
if ( unitButton ) {
unit = unitButton.dataset.unitType;
searchParams.delete('unit');
searchParams.set( 'unit', unit );
}
if ( scaleButton ) {
scale = scaleButton.dataset.amount;
searchParams.set( 'scale', scale );
}
const paramString = searchParams.toString();
const newURL = '' === paramString ? printURL.href : printURL.origin + printURL.pathname + '?' + paramString;
printLinks.forEach( ( el ) => {
el.href = newURL;
});
printButtons.forEach( ( el ) => {
el.href = newURL;
});
}
// When the document loads, look for unit and scale parameters and setup the recipe card
// to reflect those values.
document.addEventListener( 'DOMContentLoaded', () => {
// Only reflect URL parameters on the print view.
if ( ! window.location.href.includes( '/print/' ) ) {
return;
}
const searchParams = new URLSearchParams( window.location.search );
const unit = searchParams.get( 'unit' );
const scale = searchParams.get( 'scale' );
if ( unit && ( 'metric' === unit || 'usc' === unit ) ) {
document.querySelector( '.tasty-recipes-convert-button[data-unit-type="' + unit + '"]' ).click();
}
if ( scale && Number(scale) > 0 ) {
document.querySelector( '.tasty-recipes-scale-button[data-amount="' + Number(scale) + '"]' ).click();
}
});
}());
(function(){
var buttonClass = 'tasty-recipes-scale-button',
buttonActiveClass = 'tasty-recipes-scale-button-active',
buttons = document.querySelectorAll('.tasty-recipes-scale-button');
if ( ! buttons ) {
return;
}
buttons.forEach(function(button){
button.addEventListener('click', function(event){
event.preventDefault();
var recipe = event.target.closest('.tasty-recipes');
if ( ! recipe ) {
return;
}
var otherButtons = recipe.querySelectorAll('.' + buttonClass);
otherButtons.forEach(function(bt){
bt.classList.remove(buttonActiveClass);
});
button.classList.add(buttonActiveClass);
var scalables = recipe.querySelectorAll('span[data-amount]');
var buttonAmount = parseFloat( button.dataset.amount );
scalables.forEach(function(scalable){
if (typeof scalable.dataset.amountOriginalType === 'undefined'
&& typeof scalable.dataset.nfOriginal === 'undefined') {
if (-1 !== scalable.innerText.indexOf('/')) {
scalable.dataset.amountOriginalType = 'frac';
}
if (-1 !== scalable.innerText.indexOf('.')) {
scalable.dataset.amountOriginalType = 'number';
}
Object.keys(window.tastyRecipesVulgarFractions).forEach(function(vulgar) {
if (-1 !== scalable.innerText.indexOf(vulgar)) {
scalable.dataset.amountOriginalType = 'vulgar';
}
});
if (typeof scalable.dataset.amountOriginalType !== 'undefined') {
scalable.dataset.amountShouldRound = scalable.dataset.amountOriginalType;
}
}
var amount = parseFloat( scalable.dataset.amount ) * buttonAmount;
amount = window.tastyRecipesFormatAmount(amount, scalable);
if ( typeof scalable.dataset.unit !== 'undefined' ) {
if ( ! scalable.classList.contains('nutrifox-quantity') ) {
if ( ! scalable.classList.contains('nutrifox-second-quantity') ) {
amount += ' ' + scalable.dataset.unit;
}
}
}
scalable.innerText = amount;
});
var nonNumerics = recipe.querySelectorAll('[data-has-non-numeric-amount]');
nonNumerics.forEach(function(nonNumeric){
var indicator = nonNumeric.querySelector('span[data-non-numeric-label]');
if ( indicator ) {
nonNumeric.removeChild(indicator);
}
if ( 1 !== buttonAmount ) {
var indicator = document.createElement('span');
indicator.setAttribute('data-non-numeric-label', true);
var text = document.createTextNode(' (x' + buttonAmount + ')');
indicator.appendChild(text);
nonNumeric.appendChild(indicator);
}
});
window.tastyRecipesUpdatePrintLink();
});
});
}());
window.TastyRecipes = window.TastyRecipes || {};
window.TastyRecipes.cookMode = {
wakeLockApi: false,
wakeLock: false,
cookModeSelector: '.tasty-recipes-cook-mode',
init() {
if ("wakeLock" in navigator && "request" in navigator.wakeLock) {
this.wakeLockApi = navigator.wakeLock;
}
const cookModes = document.querySelectorAll(this.cookModeSelector);
if (cookModes.length > 0) {
for (const cookMode of cookModes) {
if (this.wakeLockApi) {
cookMode.querySelector('input[type="checkbox"]').addEventListener("change", event => {
this.checkboxChange(event.target);
}, false);
} else {
cookMode.style.display = "none";
}
}
}
},
checkboxChange(checkbox) {
checkbox.checked ? this.lock() : this.unlock();
},
setCheckboxesState(state) {
const checkboxes = document.querySelectorAll(this.cookModeSelector + ' input[type="checkbox"]');
for (const checkbox of checkboxes) {
checkbox.checked = state;
}
},
async lock() {
try {
this.wakeLock = await this.wakeLockApi.request("screen");
this.wakeLock.addEventListener("release", event => {
this.wakeLock = false;
this.setCheckboxesState(false);
});
this.setCheckboxesState(true);
} catch (error) {
this.setCheckboxesState(false);
}
},
unlock() {
if (this.wakeLock) {
this.wakeLock.release();
this.wakeLock = false;
}
this.setCheckboxesState(false);
}
};
(function(callback) {
if (document.readyState !== "loading") {
callback();
} else {
document.addEventListener("DOMContentLoaded", callback);
}
})(() => {
window.TastyRecipes.cookMode.init();
});
window.TastyRecipes = window.TastyRecipes || {};
window.TastyRecipes.ratings = {
init( min_rating ) {
this.min_rating = min_rating;
this.recipeRatingReflectInRespondSection();
this.addBodyClassBasedOnSelectedRating();
this.backwardCompRespondRatingPosition();
},
recipeRatingReflectInRespondSection() {
const ratings = document.querySelectorAll('.tasty-recipes-no-ratings-buttons [data-rating]');
if (ratings.length <= 0) {
return;
}
for (const rating of ratings) {
rating.addEventListener( 'click', event => {
this.fireRatingInRespond( event.target.dataset.rating );
} );
}
},
fireRatingInRespond( rating ) {
const ratingInput = document.querySelector('.tasty-recipes-rating[value="' + rating + '"]');
if ( ! ratingInput ) {
return;
}
ratingInput.click();
},
addBodyClassBasedOnSelectedRating() {
const ratingInputs = document.querySelectorAll('input.tasty-recipes-rating');
if ( ratingInputs.length <= 0 ) {
return;
}
for ( const ratingInput of ratingInputs ) {
ratingInput.addEventListener( 'click', event => {
let selectedRating = event.target.getAttribute( 'value' );
this.handleBodyClassByRating( selectedRating );
this._toggle_comment_textarea_required( selectedRating );
} );
}
},
handleBodyClassByRating( rating ) {
if ( rating < this.min_rating ) {
document.body.classList.remove( 'tasty-recipes-selected-minimum-rating' );
return;
}
document.body.classList.add( 'tasty-recipes-selected-minimum-rating' );
},
_toggle_comment_textarea_required( rating ) {
const comment_textarea = document.getElementById( 'comment' );
if ( 0 >= comment_textarea.length ) {
return;
}
if ( rating < this.min_rating ) {
comment_textarea.setAttribute( 'required', '' );
return;
}
comment_textarea.removeAttribute('required');
},
backwardCompRespondRatingPosition() {
const ratings_buttons = document.querySelector( '#respond .tasty-recipes-ratings-buttons' );
if ( ratings_buttons.length <= 0 ) {
return;
}
const ratings_buttons_styles = window.getComputedStyle(ratings_buttons);
if ( 'flex' !== ratings_buttons_styles.display ) {
ratings_buttons.style.direction = 'rtl';
}
const rating_spans = ratings_buttons.querySelectorAll( '.tasty-recipes-rating' );
for (const rating_span of rating_spans) {
rating_span.addEventListener( 'click', event => {
if ( rating_span === event.target ) {
return;
}
rating_span.previousElementSibling.click();
} );
}
}
};
(function(callback) {
if (document.readyState !== "loading") {
callback();
} else {
document.addEventListener("DOMContentLoaded", callback);
}
})(() => {
window.TastyRecipes.ratings.init( window.tasty_recipes_min_rating );
});
</script></div><p class="diet">Published: October 12, 2020. Updated: November 12, 2021.</p><noscript><link data-minify="1" rel='stylesheet' id='kadence-blocks-rowlayout-css' href='https://www.simplywhisked.com/wp-content/cache/min/1/wp-content/plugins/kadence-blocks/dist/style-blocks-rowlayout.css?ver=1696565781' media='all' /><link data-minify="1" rel='stylesheet' id='kadence-blocks-column-css' href='https://www.simplywhisked.com/wp-content/cache/min/1/wp-content/plugins/kadence-blocks/dist/style-blocks-column.css?ver=1696565781' media='all' /><link data-minify="1" rel='stylesheet' id='kadence-blocks-iconlist-css' href='https://www.simplywhisked.com/wp-content/cache/min/1/wp-content/plugins/kadence-blocks/dist/style-blocks-iconlist.css?ver=1696565782' media='all' /><link rel='stylesheet' id='wp-block-library-css' href='https://www.simplywhisked.com/wp-includes/css/dist/block-library/style.min.css?ver=6.3.2' media='all' /><link data-minify="1" rel='stylesheet' id='tasty-links-featured-links-block-css' href='https://www.simplywhisked.com/wp-content/cache/min/1/wp-content/plugins/tasty-links/assets/css/featured-links-block.css?ver=1696565781' media='all' /><link rel='stylesheet' id='kadence-global-css' href='https://www.simplywhisked.com/wp-content/themes/kadence/assets/css/global.min.css?ver=1.1.46' media='all' /><link rel='stylesheet' id='kadence-header-css' href='https://www.simplywhisked.com/wp-content/themes/kadence/assets/css/header.min.css?ver=1.1.46' media='all' /><link rel='stylesheet' id='kadence-content-css' href='https://www.simplywhisked.com/wp-content/themes/kadence/assets/css/content.min.css?ver=1.1.46' media='all' /><link rel='stylesheet' id='kadence-comments-css' href='https://www.simplywhisked.com/wp-content/themes/kadence/assets/css/comments.min.css?ver=1.1.46' media='all' /><link rel='stylesheet' id='kadence-sidebar-css' href='https://www.simplywhisked.com/wp-content/themes/kadence/assets/css/sidebar.min.css?ver=1.1.46' media='all' /><link rel='stylesheet' id='kadence-footer-css' href='https://www.simplywhisked.com/wp-content/themes/kadence/assets/css/footer.min.css?ver=1.1.46' media='all' /><link data-minify="1" rel='stylesheet' id='inc-frontend-css' href='https://www.simplywhisked.com/wp-content/cache/min/1/wp-content/plugins/imark-interactive-toolkit/frontend/css/inc-frontend-style.css?ver=1696565781' media='all' /><link data-minify="1" rel='stylesheet' id='imp-frontend-css' href='https://www.simplywhisked.com/wp-content/cache/min/1/wp-content/plugins/imark-interactive-toolkit/frontend/css/imp-frontend-style.css?ver=1696565781' media='all' /><link data-minify="1" rel='stylesheet' id='kadence-blocks-advancedbtn-css' href='https://www.simplywhisked.com/wp-content/cache/min/1/wp-content/plugins/kadence-blocks/dist/style-blocks-advancedbtn.css?ver=1696565781' media='all' /></noscript></body></html>
<span class="cp-load-after-post"></span><!-- [element-56133] -->
<p class="has-text-color has-small-font-size" style="color:#666666;line-height:2">This post contains affiliate links. I may earn commission from qualifying purchases at no additional cost to you. I will never recommend a product I don’t use or trust.</p>
<!-- [/element-56133] --></div><!-- .entry-content -->
<footer class="entry-footer">
</footer><!-- .entry-footer -->
</div>
</article><!-- #post-11014 -->
<nav class="navigation post-navigation" aria-label="Posts">
<h2 class="screen-reader-text">Post navigation</h2>
<div class="nav-links"><div class="nav-previous"><a href="https://www.simplywhisked.com/salted-caramel-apple-crisp/" rel="prev"><div class="post-navigation-sub"><small><span class="kadence-svg-iconset svg-baseline"><svg aria-hidden="true" class="kadence-svg-icon kadence-arrow-left-alt-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="29" height="28" viewBox="0 0 29 28"><title>Previous</title><path d="M28 12.5v3c0 0.281-0.219 0.5-0.5 0.5h-19.5v3.5c0 0.203-0.109 0.375-0.297 0.453s-0.391 0.047-0.547-0.078l-6-5.469c-0.094-0.094-0.156-0.219-0.156-0.359v0c0-0.141 0.063-0.281 0.156-0.375l6-5.531c0.156-0.141 0.359-0.172 0.547-0.094 0.172 0.078 0.297 0.25 0.297 0.453v3.5h19.5c0.281 0 0.5 0.219 0.5 0.5z"></path>
</svg></span>Previous</small></div>Vegan Apple Crisp</a></div><div class="nav-next"><a href="https://www.simplywhisked.com/sugar-cookie-cutouts/" rel="next"><div class="post-navigation-sub"><small>Next<span class="kadence-svg-iconset svg-baseline"><svg aria-hidden="true" class="kadence-svg-icon kadence-arrow-right-alt-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="27" height="28" viewBox="0 0 27 28"><title>Continue</title><path d="M27 13.953c0 0.141-0.063 0.281-0.156 0.375l-6 5.531c-0.156 0.141-0.359 0.172-0.547 0.094-0.172-0.078-0.297-0.25-0.297-0.453v-3.5h-19.5c-0.281 0-0.5-0.219-0.5-0.5v-3c0-0.281 0.219-0.5 0.5-0.5h19.5v-3.5c0-0.203 0.109-0.375 0.297-0.453s0.391-0.047 0.547 0.078l6 5.469c0.094 0.094 0.156 0.219 0.156 0.359v0z"></path>
</svg></span></small></div>No Chill Sugar Cookies</a></div></div>
</nav><!-- Required values for loading comments via ajax -->
<input type="hidden" name="llc_ajax_url" id="llc_ajax_url" value="https://www.simplywhisked.com/wp-admin/admin-ajax.php"/>
<input type="hidden" name="llc_post_id" id="llc_post_id" value="11014"/>
<div id="llc_comments">
<div style="text-align: center;">
<div id="llc-comments-loader" style="display: none;">
<!-- Filter to disable loader element if not needed -->
<!-- Filter to change loader element -->
<img src="data:image/gif;base64,R0lGODlhNgA3APMJAMfHx6KiopycnO7u7rm5ufDw8Obm5rS0tM7Ozv///wAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAJACwAAAAANgA3AAAEwDDJSau9OOvNu/9gKI5kaZ6lcQjCYaAnws4CApMGTb93uOqsQy8EpA1Bxdnx8wMKl51ckXccEIIDjExnWw4CuuxFhc0AwIDRVUcwnWdpYtEENsqBdJ1oTWuX3ixxIAV1MwUxaDhrBIdQjo+QkZKTlJWWHG+CjpkagDWPnpoVhSyPpAEZp6Z6Wn2grmaJkJyXtba3uLm6u5O0iAGiH6G/gSOqeXZ3SsjLIcNusHuyv8G8kb65z7nH26zZ0d/A1uNHEQAh+QQJCgAJACwHAAYALQAvAAAEsjDJSWsdRAgyrP/gNwRa2YVoOmWlRqhw2LZxbc2lrUts++62AqlV8BgOLgPwwuJ4EDhECEACLBMGnEb59C2R2sNnmANqy7fZ8qz5UEtWIBgndlevWS33moLOpHwwR0mBhYaHiImKiyhvcYwJjpFejG8uZG2MmJsBkJuWG5CgVpKQkwGPpqqrrK2ur7A7pXyzdnC0lGNqV5syu2u/XbdXo413gbWxhsmqxa29z8HNuazMMBEAIfkECQoACQAsBwAHAC8ALgAABLAwyUmrBSEAy7v/EiaMG2ieVDaOaGuqqyt3IjnflVji/DkQpMFJ10sMYCPhpybY3YAr2wcZ6EWjIKr1ylpGnTPo10TsFaiFoqwAJaTV8Lh8Tq/bfYfRwXCncREhGWByBlxJTINweYaLWHWGkFWPkYh2jVcHCWV1hYZ8fRQIf6AWBot7pKmqq6ytYYJwm14riS6VWVdFWriOPLuzUjy3ILLCsK6gxarDq7/Nua3Mq8ouEQAh+QQJCgAJACwHAAcALgAuAAAErjDJSasFIQDLu/8JJowbaJ5TNo5oC6qrK3MiOd+UWOJ83+k+CRBUE+xwxSMHxuoxA69Vk/ckSpWzpGno4wa/4LB4TC6bz+gBgTQQZrDhwVN9Na+lxmoZz4/t+1pld3VeYwVzaBUFdwQFiY+QkZJpByMHBpIIfAhWGj0GfQKYP3U4lX0HHno3oVMWqzOtAh6BN6d8qbRvn6GjiZp4nF+FFAanl2C1kLCPzL+lmbs4EQAh+QQJCgAJACwHAAcALQAwAAAEsTDJSasFIQDLu/+YIG5faVaZKJ6smapt3IWjbFchee+8l/eTH0gl0O1oxc9r1VsGlMRnMzpUGW/I6yWjxXKB4LB4TC6bz+g0S5j+ZdtEJPPsdKadb/Sbrf+q/4CBgoOEhRQDBCMDJXw3A06LM3E9iVEEHnY8UTAdmTubc1tWlJuXPn4dBgciBwYcBZBACJsIr5UEBUAGoAKuaqugB3+8oXTEf8Clf7ugvmqzloKqrM4xEQAh+QQJCgAJACwHAAcALQAvAAAErjDJSasFIQDLu/+YIG5faVaZKJ6smapt3IWjbFchee+8l/eTH0gl0O1oxc9r1VsGlMRnMzpUGW/I6yWjxXKB4LB4TC6bz+g0S5j+ZdtEJPPsdKadb/Sbrf+q/4CBgoMlBgciBwaCCFFJfwaNIoo8fBWHkQeUcR2RMDt2HJ1zNqAWl42ZR5sckJGTqhpVqxYDBIgDYIa3HQNOuIC2UQSBncSRgcGzagW+ggXBBAU3EQAh+QQJCgAJACwFAAcALwAuAAAErTDJSauVIARwu/9dJowcaJ6UNo5oa6qrK4erUM74JN5573u7H0bDA9aKMxHpVQv8YCwQ1OmbmpS2HxZ5CQq9wrB4TC6bzz3DYXQwoGlNxLtiaK7c5+DaLjjkj3wxZlOBUWVTe3Z+Zlt1fHiMRENxcxZqbJCVmpucnZ6WBJieA1MDWpIgoU0EPltSfFVNr3axNamKrUcgBaWnGycFqgQFny5gna6eVsqynsnOqDMRACH5BAUKAAkALAYABwAuAC4AAASyMMlJq00gBHC7/1cmjBxonpM2jmgLqqsrh6tQzpVxjIfxiTfcBFEjCWWG4sp3BH52SsGhWQtWojEhjNXBcnHbgAeqnApFxk4yyjxrrBZiEXGc6Xjtun7P7/v/gCYDBHiBHgNhA4YSToRFBItoNliLYZSGYY5VkVUFiYsYbxIFjgQFoKipqqusra6BTnuxP5t1knBXRXphL7p1vLQruC63JrO2oq+cG6/FrcCs0KvOrccuEQA7"> </div>
<!-- Show comments button if "On Click" option is set -->
</div>
</div> </div>
</main><!-- #main -->
<aside id="secondary" role="complementary" class="primary-sidebar widget-area sidebar-slug-sidebar-primary sidebar-link-style-normal">
<div class="sidebar-inner-wrap">
<section id="block-16" class="widget-odd widget-first widget-1 widget widget_block"><link data-minify="1" rel='preload' href='https://www.simplywhisked.com/wp-content/cache/min/1/wp-content/plugins/kadence-blocks/dist/style-blocks-advancedbtn.css?ver=1696565781' data-rocket-async="style" as="style" onload="this.onload=null;this.rel='stylesheet'" onerror="this.removeAttribute('data-rocket-async')" media='all' />
<style>.kb-row-layout-idblock-16_4f48f8-89 > .kt-row-column-wrap{align-content:start;}:where(.kb-row-layout-idblock-16_4f48f8-89 > .kt-row-column-wrap) > .wp-block-kadence-column{justify-content:start;}.kb-row-layout-idblock-16_4f48f8-89 > .kt-row-column-wrap{column-gap:var(--global-kb-gap-md, 2rem);row-gap:var(--global-kb-gap-md, 2rem);padding-top:0px;padding-bottom:25px;grid-template-columns:minmax(0, 1fr);}.kb-row-layout-idblock-16_4f48f8-89 > .kt-row-layout-overlay{opacity:0.30;}@media all and (max-width: 1024px){.kb-row-layout-idblock-16_4f48f8-89 > .kt-row-column-wrap{grid-template-columns:minmax(0, 1fr);}}@media all and (max-width: 767px){.kb-row-layout-idblock-16_4f48f8-89 > .kt-row-column-wrap{grid-template-columns:minmax(0, 1fr);}}</style><div class="kb-row-layout-wrap kb-row-layout-idblock-16_4f48f8-89 alignnone wp-block-kadence-rowlayout"><div class="kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top">
<style>.kadence-columnfab4b1-76 > .kt-inside-inner-col{padding-top:0px;padding-right:0px;padding-bottom:15px;padding-left:0px;}.kadence-columnfab4b1-76 > .kt-inside-inner-col,.kadence-columnfab4b1-76 > .kt-inside-inner-col:before{border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;}.kadence-columnfab4b1-76 > .kt-inside-inner-col:before{opacity:0.3;}.kadence-columnfab4b1-76{position:relative;}</style>
<div class="wp-block-kadence-column kadence-columnfab4b1-76 inner-column-1"><div class="kt-inside-inner-col"><div class="wp-block-image">
<figure class="aligncenter size-full"><img decoding="async" width="400" height="400" data-pin-nopin="nopin" data-pin-url="https://www.simplywhisked.com/buffalo-chicken-chili/?tp_image_id=61951" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='400'%20height='400'%20viewBox='0%200%20400%20400'%3E%3C/svg%3E" alt="Melissa from Simply Whisked" class="wp-image-61951 perfmatters-lazy" data-src="https://www.simplywhisked.com/wp-content/uploads/2022/09/rsz_10019erinjeanphotographysq-scaled-1.jpg" data-srcset="https://www.simplywhisked.com/wp-content/uploads/2022/09/rsz_10019erinjeanphotographysq-scaled-1.jpg 400w, https://www.simplywhisked.com/wp-content/uploads/2022/09/rsz_10019erinjeanphotographysq-scaled-1-150x150.jpg 150w" data-sizes="(max-width: 400px) 100vw, 400px" /><noscript><img decoding="async" width="400" height="400" data-pin-nopin="nopin" data-pin-url="https://www.simplywhisked.com/buffalo-chicken-chili/?tp_image_id=61951" src="https://www.simplywhisked.com/wp-content/uploads/2022/09/rsz_10019erinjeanphotographysq-scaled-1.jpg" alt="Melissa from Simply Whisked" class="wp-image-61951" srcset="https://www.simplywhisked.com/wp-content/uploads/2022/09/rsz_10019erinjeanphotographysq-scaled-1.jpg 400w, https://www.simplywhisked.com/wp-content/uploads/2022/09/rsz_10019erinjeanphotographysq-scaled-1-150x150.jpg 150w" sizes="(max-width: 400px) 100vw, 400px" /></noscript></figure></div>
<style>.wp-block-kadence-advancedheading.kt-adv-headingf4c55f-7c, .wp-block-kadence-advancedheading.kt-adv-headingf4c55f-7c[data-kb-block="kb-adv-headingf4c55f-7c"]{padding-top:10px;padding-bottom:0px;margin-top:10px;text-align:center;font-style:normal;text-transform:none;letter-spacing:0px;}.wp-block-kadence-advancedheading.kt-adv-headingf4c55f-7c mark, .wp-block-kadence-advancedheading.kt-adv-headingf4c55f-7c[data-kb-block="kb-adv-headingf4c55f-7c"] mark{font-style:normal;color:#f76a0c;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;}</style>
<h3 class="kt-adv-headingf4c55f-7c wp-block-kadence-advancedheading" data-kb-block="kb-adv-headingf4c55f-7c">Hi! I'm Melissa.</h3>
<style>.wp-block-kadence-advancedheading.kt-adv-headingadc501-f2, .wp-block-kadence-advancedheading.kt-adv-headingadc501-f2[data-kb-block="kb-adv-headingadc501-f2"]{padding-bottom:0px;margin-top:10px;text-align:center;font-size:var(--global-kb-font-size-sm, 0.9rem);font-style:normal;text-transform:uppercase;letter-spacing:1px;color:#222222;}.wp-block-kadence-advancedheading.kt-adv-headingadc501-f2 mark, .wp-block-kadence-advancedheading.kt-adv-headingadc501-f2[data-kb-block="kb-adv-headingadc501-f2"] mark{font-style:normal;color:#f76a0c;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;}</style>
<h5 class="kt-adv-headingadc501-f2 wp-block-kadence-advancedheading" data-kb-block="kb-adv-headingadc501-f2">I'm so happy you're here!</h5>
<style>.wp-block-kadence-advancedheading.kt-adv-heading2b3e80-d4, .wp-block-kadence-advancedheading.kt-adv-heading2b3e80-d4[data-kb-block="kb-adv-heading2b3e80-d4"]{padding-top:5px;padding-bottom:0px;text-align:center;font-size:18px;font-weight:400;font-style:normal;text-transform:none;}.wp-block-kadence-advancedheading.kt-adv-heading2b3e80-d4 mark, .wp-block-kadence-advancedheading.kt-adv-heading2b3e80-d4[data-kb-block="kb-adv-heading2b3e80-d4"] mark{font-style:normal;color:#f76a0c;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;}@media all and (max-width: 767px){.wp-block-kadence-advancedheading.kt-adv-heading2b3e80-d4, .wp-block-kadence-advancedheading.kt-adv-heading2b3e80-d4[data-kb-block="kb-adv-heading2b3e80-d4"]{font-size:18px;text-align:center!important;}}</style>
<p class="kt-adv-heading2b3e80-d4 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color" data-kb-block="kb-adv-heading2b3e80-d4"><meta charset="utf-8">I create dairy free recipes with simple ingredients because I know how hard living dairy free can be. I believe you can live a completely satisfying life without dairy, and I want to teach you how.</p>
<style>.wp-block-kadence-advancedbtn.kb-btnscabff9-90{gap:var(--global-kb-gap-xs, 0.5rem );justify-content:center;align-items:center;}.kt-btnscabff9-90 .kt-button{font-weight:normal;font-style:normal;}</style>
<div class="wp-block-kadence-advancedbtn kb-buttons-wrap kb-btnscabff9-90"><style>ul.menu .wp-block-kadence-advancedbtn .kb-btnca3722-c8.kb-button{width:initial;}.wp-block-kadence-advancedbtn .kb-btnca3722-c8.kb-button{color:var(--global-palette9, #ffffff);background:var(--global-palette2, #2B6CB0);font-style:normal;font-size:14px;letter-spacing:1.5px;text-transform:uppercase;border-top-left-radius:50px;border-top-right-radius:50px;border-bottom-right-radius:50px;border-bottom-left-radius:50px;border-top:0px solid ;border-right:0px solid ;border-bottom:0px solid ;border-left:0px solid ;}.wp-block-kadence-advancedbtn .kb-btnca3722-c8.kb-button:hover{color:var(--global-palette3, #1A202C);background:var(--global-palette7, #EDF2F7);}@media all and (max-width: 1024px){.wp-block-kadence-advancedbtn .kb-btnca3722-c8.kb-button{border-top:0px solid ;border-right:0px solid ;border-bottom:0px solid ;border-left:0px solid ;}}@media all and (max-width: 767px){.wp-block-kadence-advancedbtn .kb-btnca3722-c8.kb-button{border-top:0px solid ;border-right:0px solid ;border-bottom:0px solid ;border-left:0px solid ;}}</style><a class="kb-button kt-button button kb-btnca3722-c8 kt-btn-size-standard kt-btn-width-type-auto kb-btn-global-inherit kt-btn-has-text-true kt-btn-has-svg-false wp-block-button__link wp-block-kadence-singlebtn" href="https://www.simplywhisked.com/about/"><span class="kt-btn-inner-text">LEARN MORE ABOUT ME</span></a></div>
</div></div>
</div></div></section><section id="block-29" class="widget-even widget-2 widget widget_block"><style>.kb-row-layout-idblock-29_47f057-b1 > .kt-row-column-wrap{align-content:start;}:where(.kb-row-layout-idblock-29_47f057-b1 > .kt-row-column-wrap) > .wp-block-kadence-column{justify-content:start;}.kb-row-layout-idblock-29_47f057-b1 > .kt-row-column-wrap{column-gap:var(--global-kb-gap-md, 2rem);row-gap:var(--global-kb-gap-md, 2rem);padding-top:var(--global-kb-spacing-xs, 1rem);padding-right:var(--global-kb-spacing-xs, 1rem);padding-bottom:var(--global-kb-spacing-xs, 1rem);padding-left:var(--global-kb-spacing-xs, 1rem);grid-template-columns:minmax(0, 1fr);}.kb-row-layout-idblock-29_47f057-b1{background-image:url('https://www.simplywhisked.com/wp-content/uploads/2021/01/Apple-Cinnamon-Oatmeal-8.jpg');background-size:cover;background-position:56.00000000000001% 24%;background-attachment:scroll;background-repeat:no-repeat;}.kb-row-layout-idblock-29_47f057-b1 > .kt-row-layout-overlay{opacity:0.80;background-color:var(--global-palette8, #F7FAFC);}@media all and (max-width: 1024px){.kb-row-layout-idblock-29_47f057-b1 > .kt-row-column-wrap{grid-template-columns:minmax(0, 1fr);}}@media all and (max-width: 767px){.kb-row-layout-idblock-29_47f057-b1 > .kt-row-column-wrap{grid-template-columns:minmax(0, 1fr);}}</style><div class="kb-row-layout-wrap kb-row-layout-idblock-29_47f057-b1 alignnone has-theme-palette8-background-color kt-row-has-bg wp-block-kadence-rowlayout"><div class="kt-row-layout-overlay kt-row-overlay-normal"></div><div class="kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top">
<style>.kadence-columne19e03-5c > .kt-inside-inner-col,.kadence-columne19e03-5c > .kt-inside-inner-col:before{border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;}.kadence-columne19e03-5c > .kt-inside-inner-col:before{opacity:0.3;}.kadence-columne19e03-5c{position:relative;}</style>
<div class="wp-block-kadence-column kadence-columne19e03-5c inner-column-1"><div class="kt-inside-inner-col"><style>.wp-block-kadence-advancedheading.kt-adv-heading964c31-1a, .wp-block-kadence-advancedheading.kt-adv-heading964c31-1a[data-kb-block="kb-adv-heading964c31-1a"]{margin-bottom:15px;text-align:center;font-size:var(--global-kb-font-size-sm, 0.9rem);font-weight:600;font-style:normal;font-family:Barlow;letter-spacing:1.5px;}.wp-block-kadence-advancedheading.kt-adv-heading964c31-1a mark, .wp-block-kadence-advancedheading.kt-adv-heading964c31-1a[data-kb-block="kb-adv-heading964c31-1a"] mark{font-style:normal;color:#f76a0c;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;}</style>
<h6 class="kt-adv-heading964c31-1a wp-block-kadence-advancedheading" data-kb-block="kb-adv-heading964c31-1a">FREE EMAIL SERIES!</h6>
<style>.wp-block-kadence-advancedheading.kt-adv-heading2c413e-3e, .wp-block-kadence-advancedheading.kt-adv-heading2c413e-3e[data-kb-block="kb-adv-heading2c413e-3e"]{margin-bottom:var(--global-kb-spacing-xxs, 0.5rem);text-align:center;font-size:28px;font-style:normal;text-transform:none;}.wp-block-kadence-advancedheading.kt-adv-heading2c413e-3e mark, .wp-block-kadence-advancedheading.kt-adv-heading2c413e-3e[data-kb-block="kb-adv-heading2c413e-3e"] mark{font-style:normal;color:#f76a0c;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;}</style>
<h3 class="kt-adv-heading2c413e-3e wp-block-kadence-advancedheading" data-kb-block="kb-adv-heading2c413e-3e">25 recipes to FALL for this season</h3>
<style>.wp-block-kadence-advancedheading.kt-adv-headingda833b-e1, .wp-block-kadence-advancedheading.kt-adv-headingda833b-e1[data-kb-block="kb-adv-headingda833b-e1"]{padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;text-align:center;font-size:18px;font-weight:500;font-style:normal;font-family:Barlow;text-transform:none;letter-spacing:0.5px;}.wp-block-kadence-advancedheading.kt-adv-headingda833b-e1 mark, .wp-block-kadence-advancedheading.kt-adv-headingda833b-e1[data-kb-block="kb-adv-headingda833b-e1"] mark{font-style:normal;color:#f76a0c;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;}</style>
<p class="kt-adv-headingda833b-e1 wp-block-kadence-advancedheading has-theme-palette-3-color has-text-color" data-kb-block="kb-adv-headingda833b-e1">Get ready to fall in love with chilly weather and shorter days with fresh new recipes for autumn!</p>
<script type="rocketlazyloadscript" data-rocket-src="https://f.convertkit.com/ckjs/ck.5.js" defer></script>
<form action="https://app.convertkit.com/forms/5574572/subscriptions" class="seva-form formkit-form" method="post" data-sv-form="5574572" data-uid="a4c90c7013" data-format="inline" data-version="5" data-options="{"settings":{"after_subscribe":{"action":"message","success_message":"Success! Now check your email to confirm your subscription.","redirect_url":""},"analytics":{"google":null,"fathom":null,"facebook":null,"segment":null,"pinterest":null,"sparkloop":null,"googletagmanager":null},"modal":{"trigger":"timer","scroll_percentage":null,"timer":5,"devices":"all","show_once_every":15},"powered_by":{"show":false,"url":"https://convertkit.com/features/forms?utm_campaign=poweredby&utm_content=form&utm_medium=referral&utm_source=dynamic"},"recaptcha":{"enabled":false},"return_visitor":{"action":"show","custom_content":""},"slide_in":{"display_in":"bottom_right","trigger":"timer","scroll_percentage":null,"timer":5,"devices":"all","show_once_every":15},"sticky_bar":{"display_in":"top","trigger":"timer","scroll_percentage":null,"timer":5,"devices":"all","show_once_every":15}},"version":"5"}" min-width="400 500 600 700 800"><div data-style="clean"><ul class="formkit-alert formkit-alert-error" data-element="errors" data-group="alert"></ul><div data-element="fields" data-stacked="false" class="seva-fields formkit-fields"><div class="formkit-field"><input class="formkit-input" aria-label="First Name" name="fields[first_name]" placeholder="First Name" type="text" style="color: rgb(0, 0, 0); border-color: rgb(227, 227, 227); border-radius: 0px; font-weight: 400;"></div><div class="formkit-field"><input class="formkit-input" name="email_address" aria-label="Email Address" placeholder="Email Address" required="" type="email" style="color: rgb(0, 0, 0); border-color: rgb(227, 227, 227); border-radius: 0px; font-weight: 400;"></div><button data-element="submit" class="formkit-submit formkit-submit" style="color: rgb(255, 255, 255); background-color: rgb(34, 34, 34); border-radius: 50px; font-weight: 700;"><div class="formkit-spinner"><div></div><div></div><div></div></div><span class="">SUBSCRIBE</span></button></div></div><style>.formkit-form[data-uid="a4c90c7013"] *{box-sizing:border-box;}.formkit-form[data-uid="a4c90c7013"]{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}.formkit-form[data-uid="a4c90c7013"] legend{border:none;font-size:inherit;margin-bottom:10px;padding:0;position:relative;display:table;}.formkit-form[data-uid="a4c90c7013"] fieldset{border:0;padding:0.01em 0 0 0;margin:0;min-width:0;}.formkit-form[data-uid="a4c90c7013"] body:not(:-moz-handler-blocked) fieldset{display:table-cell;}.formkit-form[data-uid="a4c90c7013"] h1,.formkit-form[data-uid="a4c90c7013"] h2,.formkit-form[data-uid="a4c90c7013"] h3,.formkit-form[data-uid="a4c90c7013"] h4,.formkit-form[data-uid="a4c90c7013"] h5,.formkit-form[data-uid="a4c90c7013"] h6{color:inherit;font-size:inherit;font-weight:inherit;}.formkit-form[data-uid="a4c90c7013"] h2{font-size:1.5em;margin:1em 0;}.formkit-form[data-uid="a4c90c7013"] h3{font-size:1.17em;margin:1em 0;}.formkit-form[data-uid="a4c90c7013"] p{color:inherit;font-size:inherit;font-weight:inherit;}.formkit-form[data-uid="a4c90c7013"] ol:not([template-default]),.formkit-form[data-uid="a4c90c7013"] ul:not([template-default]),.formkit-form[data-uid="a4c90c7013"] blockquote:not([template-default]){text-align:left;}.formkit-form[data-uid="a4c90c7013"] p:not([template-default]),.formkit-form[data-uid="a4c90c7013"] hr:not([template-default]),.formkit-form[data-uid="a4c90c7013"] blockquote:not([template-default]),.formkit-form[data-uid="a4c90c7013"] ol:not([template-default]),.formkit-form[data-uid="a4c90c7013"] ul:not([template-default]){color:inherit;font-style:initial;}.formkit-form[data-uid="a4c90c7013"] .ordered-list,.formkit-form[data-uid="a4c90c7013"] .unordered-list{list-style-position:outside !important;padding-left:1em;}.formkit-form[data-uid="a4c90c7013"] .list-item{padding-left:0;}.formkit-form[data-uid="a4c90c7013"][data-format="modal"]{display:none;}.formkit-form[data-uid="a4c90c7013"][data-format="slide in"]{display:none;}.formkit-form[data-uid="a4c90c7013"][data-format="sticky bar"]{display:none;}.formkit-sticky-bar .formkit-form[data-uid="a4c90c7013"][data-format="sticky bar"]{display:block;}.formkit-form[data-uid="a4c90c7013"] .formkit-input,.formkit-form[data-uid="a4c90c7013"] .formkit-select,.formkit-form[data-uid="a4c90c7013"] .formkit-checkboxes{width:100%;}.formkit-form[data-uid="a4c90c7013"] .formkit-button,.formkit-form[data-uid="a4c90c7013"] .formkit-submit{border:0;border-radius:5px;color:#ffffff;cursor:pointer;display:inline-block;text-align:center;font-size:15px;font-weight:500;cursor:pointer;margin-bottom:15px;overflow:hidden;padding:0;position:relative;vertical-align:middle;}.formkit-form[data-uid="a4c90c7013"] .formkit-button:hover,.formkit-form[data-uid="a4c90c7013"] .formkit-submit:hover,.formkit-form[data-uid="a4c90c7013"] .formkit-button:focus,.formkit-form[data-uid="a4c90c7013"] .formkit-submit:focus{outline:none;}.formkit-form[data-uid="a4c90c7013"] .formkit-button:hover > span,.formkit-form[data-uid="a4c90c7013"] .formkit-submit:hover > span,.formkit-form[data-uid="a4c90c7013"] .formkit-button:focus > span,.formkit-form[data-uid="a4c90c7013"] .formkit-submit:focus > span{background-color:rgba(0,0,0,0.1);}.formkit-form[data-uid="a4c90c7013"] .formkit-button > span,.formkit-form[data-uid="a4c90c7013"] .formkit-submit > span{display:block;-webkit-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out;padding:12px 24px;}.formkit-form[data-uid="a4c90c7013"] .formkit-input{background:#ffffff;font-size:15px;padding:12px;border:1px solid #e3e3e3;-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;line-height:1.4;margin:0;-webkit-transition:border-color ease-out 300ms;transition:border-color ease-out 300ms;}.formkit-form[data-uid="a4c90c7013"] .formkit-input:focus{outline:none;border-color:#1677be;-webkit-transition:border-color ease 300ms;transition:border-color ease 300ms;}.formkit-form[data-uid="a4c90c7013"] .formkit-input::-webkit-input-placeholder{color:inherit;opacity:0.8;}.formkit-form[data-uid="a4c90c7013"] .formkit-input::-moz-placeholder{color:inherit;opacity:0.8;}.formkit-form[data-uid="a4c90c7013"] .formkit-input:-ms-input-placeholder{color:inherit;opacity:0.8;}.formkit-form[data-uid="a4c90c7013"] .formkit-input::placeholder{color:inherit;opacity:0.8;}.formkit-form[data-uid="a4c90c7013"] [data-group="dropdown"]{position:relative;display:inline-block;width:100%;}.formkit-form[data-uid="a4c90c7013"] [data-group="dropdown"]::before{content:"";top:calc(50% - 2.5px);right:10px;position:absolute;pointer-events:none;border-color:#4f4f4f transparent transparent transparent;border-style:solid;border-width:6px 6px 0 6px;height:0;width:0;z-index:999;}.formkit-form[data-uid="a4c90c7013"] [data-group="dropdown"] select{height:auto;width:100%;cursor:pointer;color:#333333;line-height:1.4;margin-bottom:0;padding:0 6px;-webkit-appearance:none;-moz-appearance:none;appearance:none;font-size:15px;padding:12px;padding-right:25px;border:1px solid #e3e3e3;background:#ffffff;}.formkit-form[data-uid="a4c90c7013"] [data-group="dropdown"] select:focus{outline:none;}.formkit-form[data-uid="a4c90c7013"] [data-group="checkboxes"]{text-align:left;margin:0;}.formkit-form[data-uid="a4c90c7013"] [data-group="checkboxes"] [data-group="checkbox"]{margin-bottom:10px;}.formkit-form[data-uid="a4c90c7013"] [data-group="checkboxes"] [data-group="checkbox"] *{cursor:pointer;}.formkit-form[data-uid="a4c90c7013"] [data-group="checkboxes"] [data-group="checkbox"]:last-of-type{margin-bottom:0;}.formkit-form[data-uid="a4c90c7013"] [data-group="checkboxes"] [data-group="checkbox"] input[type="checkbox"]{display:none;}.formkit-form[data-uid="a4c90c7013"] [data-group="checkboxes"] [data-group="checkbox"] input[type="checkbox"] + label::after{content:none;}.formkit-form[data-uid="a4c90c7013"] [data-group="checkboxes"] [data-group="checkbox"] input[type="checkbox"]:checked + label::after{border-color:#ffffff;content:"";}.formkit-form[data-uid="a4c90c7013"] [data-group="checkboxes"] [data-group="checkbox"] input[type="checkbox"]:checked + label::before{background:#10bf7a;border-color:#10bf7a;}.formkit-form[data-uid="a4c90c7013"] [data-group="checkboxes"] [data-group="checkbox"] label{position:relative;display:inline-block;padding-left:28px;}.formkit-form[data-uid="a4c90c7013"] [data-group="checkboxes"] [data-group="checkbox"] label::before,.formkit-form[data-uid="a4c90c7013"] [data-group="checkboxes"] [data-group="checkbox"] label::after{position:absolute;content:"";display:inline-block;}.formkit-form[data-uid="a4c90c7013"] [data-group="checkboxes"] [data-group="checkbox"] label::before{height:16px;width:16px;border:1px solid #e3e3e3;background:#ffffff;left:0px;top:3px;}.formkit-form[data-uid="a4c90c7013"] [data-group="checkboxes"] [data-group="checkbox"] label::after{height:4px;width:8px;border-left:2px solid #4d4d4d;border-bottom:2px solid #4d4d4d;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);left:4px;top:8px;}.formkit-form[data-uid="a4c90c7013"] .formkit-alert{background:#f9fafb;border:1px solid #e3e3e3;border-radius:5px;-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;list-style:none;margin:25px auto;padding:12px;text-align:center;width:100%;}.formkit-form[data-uid="a4c90c7013"] .formkit-alert:empty{display:none;}.formkit-form[data-uid="a4c90c7013"] .formkit-alert-success{background:#d3fbeb;border-color:#10bf7a;color:#0c905c;}.formkit-form[data-uid="a4c90c7013"] .formkit-alert-error{background:#fde8e2;border-color:#f2643b;color:#ea4110;}.formkit-form[data-uid="a4c90c7013"] .formkit-spinner{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:0px;width:0px;margin:0 auto;position:absolute;top:0;left:0;right:0;width:0px;overflow:hidden;text-align:center;-webkit-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out;}.formkit-form[data-uid="a4c90c7013"] .formkit-spinner > div{margin:auto;width:12px;height:12px;background-color:#fff;opacity:0.3;border-radius:100%;display:inline-block;-webkit-animation:formkit-bouncedelay-formkit-form-data-uid-a4c90c7013- 1.4s infinite ease-in-out both;animation:formkit-bouncedelay-formkit-form-data-uid-a4c90c7013- 1.4s infinite ease-in-out both;}.formkit-form[data-uid="a4c90c7013"] .formkit-spinner > div:nth-child(1){-webkit-animation-delay:-0.32s;animation-delay:-0.32s;}.formkit-form[data-uid="a4c90c7013"] .formkit-spinner > div:nth-child(2){-webkit-animation-delay:-0.16s;animation-delay:-0.16s;}.formkit-form[data-uid="a4c90c7013"] .formkit-submit[data-active] .formkit-spinner{opacity:1;height:100%;width:50px;}.formkit-form[data-uid="a4c90c7013"] .formkit-submit[data-active] .formkit-spinner ~ span{opacity:0;}.formkit-form[data-uid="a4c90c7013"] .formkit-powered-by[data-active="false"]{opacity:0.35;}.formkit-form[data-uid="a4c90c7013"] .formkit-powered-by-convertkit-container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%;z-index:5;margin:10px 0;position:relative;}.formkit-form[data-uid="a4c90c7013"] .formkit-powered-by-convertkit-container[data-active="false"]{opacity:0.35;}.formkit-form[data-uid="a4c90c7013"] .formkit-powered-by-convertkit{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#ffffff;border:1px solid #dde2e7;border-radius:4px;color:#373f45;cursor:pointer;display:block;height:36px;margin:0 auto;opacity:0.95;padding:0;-webkit-text-decoration:none;text-decoration:none;text-indent:100%;-webkit-transition:ease-in-out all 200ms;transition:ease-in-out all 200ms;white-space:nowrap;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:190px;background-repeat:no-repeat;background-position:center;background-image:url("data:image/svg+xml;charset=utf8,%3Csvg width='162' height='20' viewBox='0 0 162 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M83.0561 15.2457C86.675 15.2457 89.4722 12.5154 89.4722 9.14749C89.4722 5.99211 86.8443 4.06563 85.1038 4.06563C82.6801 4.06563 80.7373 5.76407 80.4605 8.28551C80.4092 8.75244 80.0387 9.14403 79.5686 9.14069C78.7871 9.13509 77.6507 9.12841 76.9314 9.13092C76.6217 9.13199 76.3658 8.88106 76.381 8.57196C76.4895 6.38513 77.2218 4.3404 78.618 2.76974C80.1695 1.02445 82.4289 0 85.1038 0C89.5979 0 93.8406 4.07791 93.8406 9.14749C93.8406 14.7608 89.1832 19.3113 83.1517 19.3113C78.8502 19.3113 74.5179 16.5041 73.0053 12.5795C72.9999 12.565 72.9986 12.5492 73.0015 12.534C73.0218 12.4179 73.0617 12.3118 73.1011 12.2074C73.1583 12.0555 73.2143 11.907 73.2062 11.7359L73.18 11.1892C73.174 11.0569 73.2075 10.9258 73.2764 10.8127C73.3452 10.6995 73.4463 10.6094 73.5666 10.554L73.7852 10.4523C73.9077 10.3957 74.0148 10.3105 74.0976 10.204C74.1803 10.0974 74.2363 9.97252 74.2608 9.83983C74.3341 9.43894 74.6865 9.14749 75.0979 9.14749C75.7404 9.14749 76.299 9.57412 76.5088 10.1806C77.5188 13.1 79.1245 15.2457 83.0561 15.2457Z' fill='%23373F45'/%3E%3Cpath d='M155.758 6.91365C155.028 6.91365 154.804 6.47916 154.804 5.98857C154.804 5.46997 154.986 5.06348 155.758 5.06348C156.53 5.06348 156.712 5.46997 156.712 5.98857C156.712 6.47905 156.516 6.91365 155.758 6.91365ZM142.441 12.9304V9.32833L141.415 9.32323V8.90392C141.415 8.44719 141.786 8.07758 142.244 8.07986L142.441 8.08095V6.55306L144.082 6.09057V8.08073H145.569V8.50416C145.569 8.61242 145.548 8.71961 145.506 8.81961C145.465 8.91961 145.404 9.01047 145.328 9.08699C145.251 9.16351 145.16 9.2242 145.06 9.26559C144.96 9.30698 144.853 9.32826 144.745 9.32822H144.082V12.7201C144.082 13.2423 144.378 13.4256 144.76 13.4887C145.209 13.5629 145.583 13.888 145.583 14.343V14.9626C144.029 14.9626 142.441 14.8942 142.441 12.9304Z' fill='%23373F45'/%3E%3Cpath d='M110.058 7.92554C108.417 7.88344 106.396 8.92062 106.396 11.5137C106.396 14.0646 108.417 15.0738 110.058 15.0318C111.742 15.0738 113.748 14.0646 113.748 11.5137C113.748 8.92062 111.742 7.88344 110.058 7.92554ZM110.07 13.7586C108.878 13.7586 108.032 12.8905 108.032 11.461C108.032 10.1013 108.878 9.20569 110.071 9.20569C111.263 9.20569 112.101 10.0995 112.101 11.459C112.101 12.8887 111.263 13.7586 110.07 13.7586Z' fill='%23373F45'/%3E%3Cpath d='M118.06 7.94098C119.491 7.94098 120.978 8.33337 120.978 11.1366V14.893H120.063C119.608 14.893 119.238 14.524 119.238 14.0689V10.9965C119.238 9.66506 118.747 9.16047 117.891 9.16047C117.414 9.16047 116.797 9.52486 116.502 9.81915V14.069C116.502 14.1773 116.481 14.2845 116.44 14.3845C116.398 14.4845 116.337 14.5753 116.261 14.6519C116.184 14.7284 116.093 14.7891 115.993 14.8305C115.893 14.8719 115.786 14.8931 115.678 14.8931H114.847V8.10918H115.773C115.932 8.10914 116.087 8.16315 116.212 8.26242C116.337 8.36168 116.424 8.50033 116.46 8.65577C116.881 8.19328 117.428 7.94098 118.06 7.94098ZM122.854 8.09713C123.024 8.09708 123.19 8.1496 123.329 8.2475C123.468 8.34541 123.574 8.48391 123.631 8.64405L125.133 12.8486L126.635 8.64415C126.692 8.48402 126.798 8.34551 126.937 8.2476C127.076 8.1497 127.242 8.09718 127.412 8.09724H128.598L126.152 14.3567C126.091 14.5112 125.986 14.6439 125.849 14.7374C125.711 14.831 125.549 14.881 125.383 14.8809H124.333L121.668 8.09713H122.854Z' fill='%23373F45'/%3E%3Cpath d='M135.085 14.5514C134.566 14.7616 133.513 15.0416 132.418 15.0416C130.496 15.0416 129.024 13.9345 129.024 11.4396C129.024 9.19701 130.451 7.99792 132.191 7.99792C134.338 7.99792 135.254 9.4378 135.158 11.3979C135.139 11.8029 134.786 12.0983 134.38 12.0983H130.679C130.763 13.1916 131.562 13.7662 132.615 13.7662C133.028 13.7662 133.462 13.7452 133.983 13.6481C134.535 13.545 135.085 13.9375 135.085 14.4985V14.5514ZM133.673 10.949C133.785 9.87621 133.061 9.28752 132.191 9.28752C131.321 9.28752 130.734 9.93979 130.679 10.9489L133.673 10.949Z' fill='%23373F45'/%3E%3Cpath d='M137.345 8.11122C137.497 8.11118 137.645 8.16229 137.765 8.25635C137.884 8.35041 137.969 8.48197 138.005 8.62993C138.566 8.20932 139.268 7.94303 139.759 7.94303C139.801 7.94303 140.068 7.94303 140.489 7.99913V8.7265C140.489 9.11748 140.15 9.4147 139.759 9.4147C139.31 9.4147 138.651 9.5829 138.131 9.8773V14.8951H136.462V8.11112L137.345 8.11122ZM156.6 14.0508V8.09104H155.769C155.314 8.09104 154.944 8.45999 154.944 8.9151V14.8748H155.775C156.23 14.8748 156.6 14.5058 156.6 14.0508ZM158.857 12.9447V9.34254H157.749V8.91912C157.749 8.46401 158.118 8.09506 158.574 8.09506H158.857V6.56739L160.499 6.10479V8.09506H161.986V8.51848C161.986 8.97359 161.617 9.34254 161.161 9.34254H160.499V12.7345C160.499 13.2566 160.795 13.44 161.177 13.503C161.626 13.5774 162 13.9024 162 14.3574V14.977C160.446 14.977 158.857 14.9086 158.857 12.9447ZM98.1929 10.1124C98.2033 6.94046 100.598 5.16809 102.895 5.16809C104.171 5.16809 105.342 5.44285 106.304 6.12953L105.914 6.6631C105.654 7.02011 105.16 7.16194 104.749 6.99949C104.169 6.7702 103.622 6.7218 103.215 6.7218C101.335 6.7218 99.9169 7.92849 99.9068 10.1123C99.9169 12.2959 101.335 13.5201 103.215 13.5201C103.622 13.5201 104.169 13.4717 104.749 13.2424C105.16 13.0799 105.654 13.2046 105.914 13.5615L106.304 14.0952C105.342 14.7819 104.171 15.0566 102.895 15.0566C100.598 15.0566 98.2033 13.2842 98.1929 10.1124ZM147.619 5.21768C148.074 5.21768 148.444 5.58663 148.444 6.04174V9.81968L151.82 5.58131C151.897 5.47733 151.997 5.39282 152.112 5.3346C152.227 5.27638 152.355 5.24607 152.484 5.24611H153.984L150.166 10.0615L153.984 14.8749H152.484C152.355 14.8749 152.227 14.8446 152.112 14.7864C151.997 14.7281 151.897 14.6436 151.82 14.5397L148.444 10.3025V14.0508C148.444 14.5059 148.074 14.8749 147.619 14.8749H146.746V5.21768H147.619Z' fill='%23373F45'/%3E%3Cpath d='M0.773438 6.5752H2.68066C3.56543 6.5752 4.2041 6.7041 4.59668 6.96191C4.99219 7.21973 5.18994 7.62695 5.18994 8.18359C5.18994 8.55859 5.09326 8.87061 4.8999 9.11963C4.70654 9.36865 4.42822 9.52539 4.06494 9.58984V9.63379C4.51611 9.71875 4.84717 9.88721 5.05811 10.1392C5.27197 10.3882 5.37891 10.7266 5.37891 11.1543C5.37891 11.7314 5.17676 12.1841 4.77246 12.5122C4.37109 12.8374 3.81152 13 3.09375 13H0.773438V6.5752ZM1.82373 9.22949H2.83447C3.27393 9.22949 3.59473 9.16064 3.79688 9.02295C3.99902 8.88232 4.1001 8.64502 4.1001 8.31104C4.1001 8.00928 3.99023 7.79102 3.77051 7.65625C3.55371 7.52148 3.20801 7.4541 2.7334 7.4541H1.82373V9.22949ZM1.82373 10.082V12.1167H2.93994C3.37939 12.1167 3.71045 12.0332 3.93311 11.8662C4.15869 11.6963 4.27148 11.4297 4.27148 11.0664C4.27148 10.7324 4.15723 10.4849 3.92871 10.3237C3.7002 10.1626 3.35303 10.082 2.88721 10.082H1.82373Z' fill='%23373F45'/%3E%3Cpath d='M13.011 6.5752V10.7324C13.011 11.207 12.9084 11.623 12.7034 11.9805C12.5012 12.335 12.2068 12.6089 11.8201 12.8022C11.4363 12.9927 10.9763 13.0879 10.4402 13.0879C9.6433 13.0879 9.02368 12.877 8.5813 12.4551C8.13892 12.0332 7.91772 11.4531 7.91772 10.7148V6.5752H8.9724V10.6401C8.9724 11.1704 9.09546 11.5615 9.34155 11.8135C9.58765 12.0654 9.96557 12.1914 10.4753 12.1914C11.4656 12.1914 11.9607 11.6714 11.9607 10.6313V6.5752H13.011Z' fill='%23373F45'/%3E%3Cpath d='M15.9146 13V6.5752H16.9649V13H15.9146Z' fill='%23373F45'/%3E%3Cpath d='M19.9255 13V6.5752H20.9758V12.0991H23.696V13H19.9255Z' fill='%23373F45'/%3E%3Cpath d='M28.2828 13H27.2325V7.47607H25.3428V6.5752H30.1724V7.47607H28.2828V13Z' fill='%23373F45'/%3E%3Cpath d='M41.9472 13H40.8046L39.7148 9.16796C39.6679 9.00097 39.6093 8.76074 39.539 8.44727C39.4687 8.13086 39.4262 7.91113 39.4116 7.78809C39.3823 7.97559 39.3339 8.21875 39.2665 8.51758C39.2021 8.81641 39.1479 9.03905 39.1039 9.18554L38.0405 13H36.8979L36.0673 9.7832L35.2236 6.5752H36.2958L37.2143 10.3193C37.3578 10.9199 37.4604 11.4502 37.5219 11.9102C37.5541 11.6611 37.6025 11.3828 37.6669 11.0752C37.7314 10.7676 37.79 10.5186 37.8427 10.3281L38.8886 6.5752H39.9301L41.0024 10.3457C41.1049 10.6943 41.2133 11.2158 41.3276 11.9102C41.3715 11.4912 41.477 10.958 41.644 10.3105L42.558 6.5752H43.6215L41.9472 13Z' fill='%23373F45'/%3E%3Cpath d='M45.7957 13V6.5752H46.846V13H45.7957Z' fill='%23373F45'/%3E%3Cpath d='M52.0258 13H50.9755V7.47607H49.0859V6.5752H53.9155V7.47607H52.0258V13Z' fill='%23373F45'/%3E%3Cpath d='M61.2312 13H60.1765V10.104H57.2146V13H56.1643V6.5752H57.2146V9.20312H60.1765V6.5752H61.2312V13Z' fill='%23373F45'/%3E%3C/svg%3E");}.formkit-form[data-uid="a4c90c7013"] .formkit-powered-by-convertkit:hover,.formkit-form[data-uid="a4c90c7013"] .formkit-powered-by-convertkit:focus{background-color:#ffffff;-webkit-transform:scale(1.025) perspective(1px);-ms-transform:scale(1.025) perspective(1px);transform:scale(1.025) perspective(1px);opacity:1;}.formkit-form[data-uid="a4c90c7013"] .formkit-powered-by-convertkit[data-variant="dark"],.formkit-form[data-uid="a4c90c7013"] .formkit-powered-by-convertkit[data-variant="light"]{background-color:transparent;border-color:transparent;width:166px;}.formkit-form[data-uid="a4c90c7013"] .formkit-powered-by-convertkit[data-variant="light"]{color:#ffffff;background-image:url("data:image/svg+xml;charset=utf8,%3Csvg width='162' height='20' viewBox='0 0 162 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M83.0561 15.2457C86.675 15.2457 89.4722 12.5154 89.4722 9.14749C89.4722 5.99211 86.8443 4.06563 85.1038 4.06563C82.6801 4.06563 80.7373 5.76407 80.4605 8.28551C80.4092 8.75244 80.0387 9.14403 79.5686 9.14069C78.7871 9.13509 77.6507 9.12841 76.9314 9.13092C76.6217 9.13199 76.3658 8.88106 76.381 8.57196C76.4895 6.38513 77.2218 4.3404 78.618 2.76974C80.1695 1.02445 82.4289 0 85.1038 0C89.5979 0 93.8406 4.07791 93.8406 9.14749C93.8406 14.7608 89.1832 19.3113 83.1517 19.3113C78.8502 19.3113 74.5179 16.5041 73.0053 12.5795C72.9999 12.565 72.9986 12.5492 73.0015 12.534C73.0218 12.4179 73.0617 12.3118 73.1011 12.2074C73.1583 12.0555 73.2143 11.907 73.2062 11.7359L73.18 11.1892C73.174 11.0569 73.2075 10.9258 73.2764 10.8127C73.3452 10.6995 73.4463 10.6094 73.5666 10.554L73.7852 10.4523C73.9077 10.3957 74.0148 10.3105 74.0976 10.204C74.1803 10.0974 74.2363 9.97252 74.2608 9.83983C74.3341 9.43894 74.6865 9.14749 75.0979 9.14749C75.7404 9.14749 76.299 9.57412 76.5088 10.1806C77.5188 13.1 79.1245 15.2457 83.0561 15.2457Z' fill='white'/%3E%3Cpath d='M155.758 6.91365C155.028 6.91365 154.804 6.47916 154.804 5.98857C154.804 5.46997 154.986 5.06348 155.758 5.06348C156.53 5.06348 156.712 5.46997 156.712 5.98857C156.712 6.47905 156.516 6.91365 155.758 6.91365ZM142.441 12.9304V9.32833L141.415 9.32323V8.90392C141.415 8.44719 141.786 8.07758 142.244 8.07986L142.441 8.08095V6.55306L144.082 6.09057V8.08073H145.569V8.50416C145.569 8.61242 145.548 8.71961 145.506 8.81961C145.465 8.91961 145.404 9.01047 145.328 9.08699C145.251 9.16351 145.16 9.2242 145.06 9.26559C144.96 9.30698 144.853 9.32826 144.745 9.32822H144.082V12.7201C144.082 13.2423 144.378 13.4256 144.76 13.4887C145.209 13.5629 145.583 13.888 145.583 14.343V14.9626C144.029 14.9626 142.441 14.8942 142.441 12.9304Z' fill='white'/%3E%3Cpath d='M110.058 7.92554C108.417 7.88344 106.396 8.92062 106.396 11.5137C106.396 14.0646 108.417 15.0738 110.058 15.0318C111.742 15.0738 113.748 14.0646 113.748 11.5137C113.748 8.92062 111.742 7.88344 110.058 7.92554ZM110.07 13.7586C108.878 13.7586 108.032 12.8905 108.032 11.461C108.032 10.1013 108.878 9.20569 110.071 9.20569C111.263 9.20569 112.101 10.0995 112.101 11.459C112.101 12.8887 111.263 13.7586 110.07 13.7586Z' fill='white'/%3E%3Cpath d='M118.06 7.94098C119.491 7.94098 120.978 8.33337 120.978 11.1366V14.893H120.063C119.608 14.893 119.238 14.524 119.238 14.0689V10.9965C119.238 9.66506 118.747 9.16047 117.891 9.16047C117.414 9.16047 116.797 9.52486 116.502 9.81915V14.069C116.502 14.1773 116.481 14.2845 116.44 14.3845C116.398 14.4845 116.337 14.5753 116.261 14.6519C116.184 14.7284 116.093 14.7891 115.993 14.8305C115.893 14.8719 115.786 14.8931 115.678 14.8931H114.847V8.10918H115.773C115.932 8.10914 116.087 8.16315 116.212 8.26242C116.337 8.36168 116.424 8.50033 116.46 8.65577C116.881 8.19328 117.428 7.94098 118.06 7.94098ZM122.854 8.09713C123.024 8.09708 123.19 8.1496 123.329 8.2475C123.468 8.34541 123.574 8.48391 123.631 8.64405L125.133 12.8486L126.635 8.64415C126.692 8.48402 126.798 8.34551 126.937 8.2476C127.076 8.1497 127.242 8.09718 127.412 8.09724H128.598L126.152 14.3567C126.091 14.5112 125.986 14.6439 125.849 14.7374C125.711 14.831 125.549 14.881 125.383 14.8809H124.333L121.668 8.09713H122.854Z' fill='white'/%3E%3Cpath d='M135.085 14.5514C134.566 14.7616 133.513 15.0416 132.418 15.0416C130.496 15.0416 129.024 13.9345 129.024 11.4396C129.024 9.19701 130.451 7.99792 132.191 7.99792C134.338 7.99792 135.254 9.4378 135.158 11.3979C135.139 11.8029 134.786 12.0983 134.38 12.0983H130.679C130.763 13.1916 131.562 13.7662 132.615 13.7662C133.028 13.7662 133.462 13.7452 133.983 13.6481C134.535 13.545 135.085 13.9375 135.085 14.4985V14.5514ZM133.673 10.949C133.785 9.87621 133.061 9.28752 132.191 9.28752C131.321 9.28752 130.734 9.93979 130.679 10.9489L133.673 10.949Z' fill='white'/%3E%3Cpath d='M137.345 8.11122C137.497 8.11118 137.645 8.16229 137.765 8.25635C137.884 8.35041 137.969 8.48197 138.005 8.62993C138.566 8.20932 139.268 7.94303 139.759 7.94303C139.801 7.94303 140.068 7.94303 140.489 7.99913V8.7265C140.489 9.11748 140.15 9.4147 139.759 9.4147C139.31 9.4147 138.651 9.5829 138.131 9.8773V14.8951H136.462V8.11112L137.345 8.11122ZM156.6 14.0508V8.09104H155.769C155.314 8.09104 154.944 8.45999 154.944 8.9151V14.8748H155.775C156.23 14.8748 156.6 14.5058 156.6 14.0508ZM158.857 12.9447V9.34254H157.749V8.91912C157.749 8.46401 158.118 8.09506 158.574 8.09506H158.857V6.56739L160.499 6.10479V8.09506H161.986V8.51848C161.986 8.97359 161.617 9.34254 161.161 9.34254H160.499V12.7345C160.499 13.2566 160.795 13.44 161.177 13.503C161.626 13.5774 162 13.9024 162 14.3574V14.977C160.446 14.977 158.857 14.9086 158.857 12.9447ZM98.1929 10.1124C98.2033 6.94046 100.598 5.16809 102.895 5.16809C104.171 5.16809 105.342 5.44285 106.304 6.12953L105.914 6.6631C105.654 7.02011 105.16 7.16194 104.749 6.99949C104.169 6.7702 103.622 6.7218 103.215 6.7218C101.335 6.7218 99.9169 7.92849 99.9068 10.1123C99.9169 12.2959 101.335 13.5201 103.215 13.5201C103.622 13.5201 104.169 13.4717 104.749 13.2424C105.16 13.0799 105.654 13.2046 105.914 13.5615L106.304 14.0952C105.342 14.7819 104.171 15.0566 102.895 15.0566C100.598 15.0566 98.2033 13.2842 98.1929 10.1124ZM147.619 5.21768C148.074 5.21768 148.444 5.58663 148.444 6.04174V9.81968L151.82 5.58131C151.897 5.47733 151.997 5.39282 152.112 5.3346C152.227 5.27638 152.355 5.24607 152.484 5.24611H153.984L150.166 10.0615L153.984 14.8749H152.484C152.355 14.8749 152.227 14.8446 152.112 14.7864C151.997 14.7281 151.897 14.6436 151.82 14.5397L148.444 10.3025V14.0508C148.444 14.5059 148.074 14.8749 147.619 14.8749H146.746V5.21768H147.619Z' fill='white'/%3E%3Cpath d='M0.773438 6.5752H2.68066C3.56543 6.5752 4.2041 6.7041 4.59668 6.96191C4.99219 7.21973 5.18994 7.62695 5.18994 8.18359C5.18994 8.55859 5.09326 8.87061 4.8999 9.11963C4.70654 9.36865 4.42822 9.52539 4.06494 9.58984V9.63379C4.51611 9.71875 4.84717 9.88721 5.05811 10.1392C5.27197 10.3882 5.37891 10.7266 5.37891 11.1543C5.37891 11.7314 5.17676 12.1841 4.77246 12.5122C4.37109 12.8374 3.81152 13 3.09375 13H0.773438V6.5752ZM1.82373 9.22949H2.83447C3.27393 9.22949 3.59473 9.16064 3.79688 9.02295C3.99902 8.88232 4.1001 8.64502 4.1001 8.31104C4.1001 8.00928 3.99023 7.79102 3.77051 7.65625C3.55371 7.52148 3.20801 7.4541 2.7334 7.4541H1.82373V9.22949ZM1.82373 10.082V12.1167H2.93994C3.37939 12.1167 3.71045 12.0332 3.93311 11.8662C4.15869 11.6963 4.27148 11.4297 4.27148 11.0664C4.27148 10.7324 4.15723 10.4849 3.92871 10.3237C3.7002 10.1626 3.35303 10.082 2.88721 10.082H1.82373Z' fill='white'/%3E%3Cpath d='M13.011 6.5752V10.7324C13.011 11.207 12.9084 11.623 12.7034 11.9805C12.5012 12.335 12.2068 12.6089 11.8201 12.8022C11.4363 12.9927 10.9763 13.0879 10.4402 13.0879C9.6433 13.0879 9.02368 12.877 8.5813 12.4551C8.13892 12.0332 7.91772 11.4531 7.91772 10.7148V6.5752H8.9724V10.6401C8.9724 11.1704 9.09546 11.5615 9.34155 11.8135C9.58765 12.0654 9.96557 12.1914 10.4753 12.1914C11.4656 12.1914 11.9607 11.6714 11.9607 10.6313V6.5752H13.011Z' fill='white'/%3E%3Cpath d='M15.9146 13V6.5752H16.9649V13H15.9146Z' fill='white'/%3E%3Cpath d='M19.9255 13V6.5752H20.9758V12.0991H23.696V13H19.9255Z' fill='white'/%3E%3Cpath d='M28.2828 13H27.2325V7.47607H25.3428V6.5752H30.1724V7.47607H28.2828V13Z' fill='white'/%3E%3Cpath d='M41.9472 13H40.8046L39.7148 9.16796C39.6679 9.00097 39.6093 8.76074 39.539 8.44727C39.4687 8.13086 39.4262 7.91113 39.4116 7.78809C39.3823 7.97559 39.3339 8.21875 39.2665 8.51758C39.2021 8.81641 39.1479 9.03905 39.1039 9.18554L38.0405 13H36.8979L36.0673 9.7832L35.2236 6.5752H36.2958L37.2143 10.3193C37.3578 10.9199 37.4604 11.4502 37.5219 11.9102C37.5541 11.6611 37.6025 11.3828 37.6669 11.0752C37.7314 10.7676 37.79 10.5186 37.8427 10.3281L38.8886 6.5752H39.9301L41.0024 10.3457C41.1049 10.6943 41.2133 11.2158 41.3276 11.9102C41.3715 11.4912 41.477 10.958 41.644 10.3105L42.558 6.5752H43.6215L41.9472 13Z' fill='white'/%3E%3Cpath d='M45.7957 13V6.5752H46.846V13H45.7957Z' fill='white'/%3E%3Cpath d='M52.0258 13H50.9755V7.47607H49.0859V6.5752H53.9155V7.47607H52.0258V13Z' fill='white'/%3E%3Cpath d='M61.2312 13H60.1765V10.104H57.2146V13H56.1643V6.5752H57.2146V9.20312H60.1765V6.5752H61.2312V13Z' fill='white'/%3E%3C/svg%3E");}@-webkit-keyframes formkit-bouncedelay-formkit-form-data-uid-a4c90c7013-{0%,80%,100%{-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);}40%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);}}@keyframes formkit-bouncedelay-formkit-form-data-uid-a4c90c7013-{0%,80%,100%{-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);}40%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);}}.formkit-form[data-uid="a4c90c7013"] blockquote{padding:10px 20px;margin:0 0 20px;border-left:5px solid #e1e1e1;}.formkit-form[data-uid="a4c90c7013"] .seva-custom-content{padding:15px;font-size:16px;color:#fff;mix-blend-mode:difference;}.formkit-form[data-uid="a4c90c7013"] .formkit-modal.guard{max-width:420px;width:100%;} .formkit-form[data-uid="a4c90c7013"]{max-width:700px;}.formkit-form[data-uid="a4c90c7013"] [data-style="clean"]{width:100%;}.formkit-form[data-uid="a4c90c7013"] .formkit-fields{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:0 auto;}.formkit-form[data-uid="a4c90c7013"] .formkit-field,.formkit-form[data-uid="a4c90c7013"] .formkit-submit{margin:0 0 15px 0;-webkit-flex:1 0 100%;-ms-flex:1 0 100%;flex:1 0 100%;}.formkit-form[data-uid="a4c90c7013"] .formkit-powered-by-convertkit-container{margin:0;}.formkit-form[data-uid="a4c90c7013"] .formkit-submit{position:static;}.formkit-form[data-uid="a4c90c7013"][min-width~="700"] [data-style="clean"],.formkit-form[data-uid="a4c90c7013"][min-width~="800"] [data-style="clean"]{padding:10px;}.formkit-form[data-uid="a4c90c7013"][min-width~="700"] .formkit-fields[data-stacked="false"],.formkit-form[data-uid="a4c90c7013"][min-width~="800"] .formkit-fields[data-stacked="false"]{margin-left:-5px;margin-right:-5px;}.formkit-form[data-uid="a4c90c7013"][min-width~="700"] .formkit-fields[data-stacked="false"] .formkit-field,.formkit-form[data-uid="a4c90c7013"][min-width~="800"] .formkit-fields[data-stacked="false"] .formkit-field,.formkit-form[data-uid="a4c90c7013"][min-width~="700"] .formkit-fields[data-stacked="false"] .formkit-submit,.formkit-form[data-uid="a4c90c7013"][min-width~="800"] .formkit-fields[data-stacked="false"] .formkit-submit{margin:0 5px 15px 5px;}.formkit-form[data-uid="a4c90c7013"][min-width~="700"] .formkit-fields[data-stacked="false"] .formkit-field,.formkit-form[data-uid="a4c90c7013"][min-width~="800"] .formkit-fields[data-stacked="false"] .formkit-field{-webkit-flex:100 1 auto;-ms-flex:100 1 auto;flex:100 1 auto;}.formkit-form[data-uid="a4c90c7013"][min-width~="700"] .formkit-fields[data-stacked="false"] .formkit-submit,.formkit-form[data-uid="a4c90c7013"][min-width~="800"] .formkit-fields[data-stacked="false"] .formkit-submit{-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;} </style></form>
</div></div>
</div></div></section><section id="block-17" class="widget-odd widget-3 widget widget_block"><div class="diet-sidebar">
<a style="background:#D0E6E5;" href="https://simplywhisked.com/diet/dairy-free/">dairy free</a><a style="background:#FFE04F;" href="https://simplywhisked.com/diet/egg-free/">egg free</a><a style="background:#F9F2ED;" href="https://simplywhisked.com/diet/gluten-free/">gluten free</a><a style="background:#F9F2ED;" href="https://simplywhisked.com/diet/nut-free/">nut free</a><a style="background:#F9F2ED;" href="https://simplywhisked.com/diet/vegan/">vegan</a><p></p>
<p style="padding:15px;font-size:18px;font-weight:600px;">Recipe key indicates that a recipe is free from allergens or offers alternative ways to make the recipe that is safe for the listed allergens or dietary restrictions. Always double check labels on purchased products to ensure they are safe to consume.</p>
</div></section><section id="block-15" class="widget-even widget-4 widget widget_block widget_text">
<p class="has-theme-palette-3-color has-text-color has-small-font-size">DISCLAIMER: As an Amazon Associate, I earn a commission from qualifying purchases at no added cost to you. Affiliate links will be noted as such, and I will never recommend a product that I don’t use and trust.</p>
</section><section id="block-30" class="widget-odd widget-last widget-5 widget widget_block"><style>.kb-row-layout-idblock-30_6e7fbe-d5 > .kt-row-column-wrap{align-content:start;}:where(.kb-row-layout-idblock-30_6e7fbe-d5 > .kt-row-column-wrap) > .wp-block-kadence-column{justify-content:start;}.kb-row-layout-idblock-30_6e7fbe-d5 > .kt-row-column-wrap{column-gap:var(--global-kb-gap-md, 2rem);row-gap:var(--global-kb-gap-md, 2rem);padding-top:20px;padding-right:20px;padding-bottom:20px;padding-left:10px;grid-template-columns:minmax(0, 1fr);}.kb-row-layout-idblock-30_6e7fbe-d5 > .kt-row-layout-overlay{opacity:0.30;}@media all and (max-width: 1024px){.kb-row-layout-idblock-30_6e7fbe-d5 > .kt-row-column-wrap{grid-template-columns:minmax(0, 1fr);}}@media all and (max-width: 767px){.kb-row-layout-idblock-30_6e7fbe-d5 > .kt-row-column-wrap{padding-bottom:0px;grid-template-columns:minmax(0, 1fr);}}</style><div class="kb-row-layout-wrap kb-row-layout-idblock-30_6e7fbe-d5 alignnone has-theme-palette7-background-color kt-row-has-bg wp-block-kadence-rowlayout"><div class="kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top">
<style>.kadence-column54fdba-2e, .kt-inside-inner-col > .kadence-column54fdba-2e:not(.specificity){margin-bottom:0px;}.kadence-column54fdba-2e > .kt-inside-inner-col{padding-bottom:0px;}.kadence-column54fdba-2e > .kt-inside-inner-col,.kadence-column54fdba-2e > .kt-inside-inner-col:before{border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;}.kadence-column54fdba-2e > .kt-inside-inner-col:before{opacity:0.3;}.kadence-column54fdba-2e{position:relative;}</style>
<div class="wp-block-kadence-column kadence-column54fdba-2e inner-column-1"><div class="kt-inside-inner-col"><style>.wp-block-kadence-advancedheading.kt-adv-headingf6a008-ca, .wp-block-kadence-advancedheading.kt-adv-headingf6a008-ca[data-kb-block="kb-adv-headingf6a008-ca"]{text-align:center;font-style:normal;}.wp-block-kadence-advancedheading.kt-adv-headingf6a008-ca mark, .wp-block-kadence-advancedheading.kt-adv-headingf6a008-ca[data-kb-block="kb-adv-headingf6a008-ca"] mark{font-style:normal;color:#f76a0c;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;}</style>
<h5 class="kt-adv-headingf6a008-ca wp-block-kadence-advancedheading" data-kb-block="kb-adv-headingf6a008-ca">TOP 10 RECIPES</h5>
<ol class="top-10 has-theme-palette-3-color has-text-color" style="font-size:16px">
<li><a href="https://www.simplywhisked.com/baked-hamburgers/" data-type="post" data-id="21374">Baked hamburgers</a></li>
<li><a href="https://www.simplywhisked.com/extra-fluffy-dairy-free-pancakes/" data-type="post" data-id="11946">Dairy free pancakes</a></li>
<li><a href="https://www.simplywhisked.com/asian-chicken-wraps/" data-type="post" data-id="396">Peanut chicken wraps</a></li>
<li><a href="https://www.simplywhisked.com/orange-pork-stir-fry/" data-type="post" data-id="8006">Homemade stir fry sauce</a></li>
<li><a href="https://www.simplywhisked.com/baked-stuffed-pork-chops/" data-type="post" data-id="12606">Baked stuffed pork chops</a></li>
<li><a href="https://www.simplywhisked.com/maple-glazed-salmon/" data-type="post" data-id="46583">Maple glazed salmon</a></li>
<li><a href="https://www.simplywhisked.com/6-ingredient-fish-cakes/" data-type="post" data-id="19049">Fish cakes</a></li>
<li><a href="https://www.simplywhisked.com/dairy-free-alfredo-sauce/" data-type="post" data-id="19346">Dairy free alfredo sauce</a></li>
<li><a href="https://www.simplywhisked.com/easy-dijon-vinaigrette/" data-type="post" data-id="20417">Dijon vinaigrette</a></li>
<li><a href="https://www.simplywhisked.com/tuna-poke/" data-type="post" data-id="50399">Ahi tuna poke</a></li>
</ol>
</div></div>
</div></div></section> </div>
</aside><!-- #secondary -->
</div>
</div><!-- #primary -->
</div><!-- #inner-wrap -->
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="site-footer-wrap">
<div class="site-middle-footer-wrap site-footer-row-container site-footer-focus-item site-footer-row-layout-standard site-footer-row-tablet-layout-default site-footer-row-mobile-layout-default" data-section="kadence_customizer_footer_middle">
<div class="site-footer-row-container-inner">
<div class="site-container">
<div class="site-middle-footer-inner-wrap site-footer-row site-footer-row-columns-4 site-footer-row-column-layout-equal site-footer-row-tablet-column-layout-default site-footer-row-mobile-column-layout-row ft-ro-dir-row ft-ro-collapse-normal ft-ro-t-dir-default ft-ro-m-dir-default ft-ro-lstyle-plain">
<div class="site-footer-middle-section-1 site-footer-section footer-section-inner-items-1">
<div class="footer-widget-area widget-area site-footer-focus-item footer-widget2 content-align-default content-tablet-align-default content-mobile-align-default content-valign-default content-tablet-valign-default content-mobile-valign-default" data-section="sidebar-widgets-footer2">
<div class="footer-widget-area-inner site-info-inner">
<section id="block-26" class="widget-odd widget-first widget-1 widget widget_block widget_media_image"><div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img decoding="async" data-pin-nopin="nopin" data-pin-url="https://www.simplywhisked.com/buffalo-chicken-chili/?tp_image_id=63289" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='249'%20height='123'%20viewBox='0%200%20249%20123'%3E%3C/svg%3E" alt class="wp-image-63289 perfmatters-lazy" style="width:249px;height:123px" width="249" height="123" data-src="https://www.simplywhisked.com/wp-content/uploads/2023/01/stacked-logo-2022-copy.png" /><noscript><img decoding="async" data-pin-nopin="nopin" data-pin-url="https://www.simplywhisked.com/buffalo-chicken-chili/?tp_image_id=63289" src="https://www.simplywhisked.com/wp-content/uploads/2023/01/stacked-logo-2022-copy.png" alt="" class="wp-image-63289" style="width:249px;height:123px" width="249" height="123"/></noscript></figure></div></section><section id="block-28" class="widget-even widget-last widget-2 widget widget_block">
<div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
</section> </div>
</div><!-- .footer-widget2 -->
</div>
<div class="site-footer-middle-section-2 site-footer-section footer-section-inner-items-1">
<div class="footer-widget-area widget-area site-footer-focus-item footer-widget3 content-align-default content-tablet-align-default content-mobile-align-default content-valign-default content-tablet-valign-default content-mobile-valign-default" data-section="sidebar-widgets-footer3">
<div class="footer-widget-area-inner site-info-inner">
<section id="block-31" class="widget-odd widget-last widget-first widget-1 widget widget_block"><style>.kadence-columnc844f5-4f > .kt-inside-inner-col,.kadence-columnc844f5-4f > .kt-inside-inner-col:before{border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;}.kadence-columnc844f5-4f > .kt-inside-inner-col:before{opacity:0.3;}.kadence-columnc844f5-4f{position:relative;}</style>
<div class="wp-block-kadence-column kadence-columnc844f5-4f kvs-md-false kvs-sm-false"><div class="kt-inside-inner-col">
<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><div class="wp-block-group__inner-container"><style>.wp-block-kadence-advancedheading.kt-adv-headingdf32a5-7c, .wp-block-kadence-advancedheading.kt-adv-headingdf32a5-7c[data-kb-block="kb-adv-headingdf32a5-7c"]{margin-bottom:5px;margin-left:8px;text-align:left;font-size:20px;font-style:normal;}.wp-block-kadence-advancedheading.kt-adv-headingdf32a5-7c mark, .wp-block-kadence-advancedheading.kt-adv-headingdf32a5-7c[data-kb-block="kb-adv-headingdf32a5-7c"] mark{font-style:normal;color:#f76a0c;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;}</style>
<h6 class="kt-adv-headingdf32a5-7c wp-block-kadence-advancedheading" data-kb-block="kb-adv-headingdf32a5-7c">Dairy free resources:</h6>
<ul style="font-size:16px">
<li><a href="https://www.simplywhisked.com/are-eggs-dairy-free/" data-type="post" data-id="22951">Are eggs dairy free?</a></li>
<li><a href="https://www.simplywhisked.com/7-dairy-free-substitutes-for-butter/" data-type="post" data-id="16342">Dairy free butter substitutes</a></li>
<li><a href="https://www.simplywhisked.com/hidden-dairy-sources/" data-type="post" data-id="22443">Hidden sources of dairy</a></li>
<li><a href="https://www.simplywhisked.com/kitchen-basics/" data-type="post" data-id="5060">Must have kitchen tools</a></li>
</ul>
</div></div>
</div></div>
</section> </div>
</div><!-- .footer-widget3 -->
</div>
<div class="site-footer-middle-section-3 site-footer-section footer-section-inner-items-1">
<div class="footer-widget-area widget-area site-footer-focus-item footer-widget4 content-align-default content-tablet-align-default content-mobile-align-default content-valign-default content-tablet-valign-default content-mobile-valign-default" data-section="sidebar-widgets-footer4">
<div class="footer-widget-area-inner site-info-inner">
<section id="block-32" class="widget-odd widget-last widget-first widget-1 widget widget_block"><style>.kadence-columna66d08-97 > .kt-inside-inner-col,.kadence-columna66d08-97 > .kt-inside-inner-col:before{border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;}.kadence-columna66d08-97 > .kt-inside-inner-col:before{opacity:0.3;}.kadence-columna66d08-97{position:relative;}</style>
<div class="wp-block-kadence-column kadence-columna66d08-97 kvs-md-false kvs-sm-false"><div class="kt-inside-inner-col">
<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><div class="wp-block-group__inner-container"><style>.wp-block-kadence-advancedheading.kt-adv-heading23de40-09, .wp-block-kadence-advancedheading.kt-adv-heading23de40-09[data-kb-block="kb-adv-heading23de40-09"]{margin-bottom:5px;margin-left:8px;text-align:left;font-size:20px;font-style:normal;}.wp-block-kadence-advancedheading.kt-adv-heading23de40-09 mark, .wp-block-kadence-advancedheading.kt-adv-heading23de40-09[data-kb-block="kb-adv-heading23de40-09"] mark{font-style:normal;color:#f76a0c;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;}</style>
<h6 class="kt-adv-heading23de40-09 wp-block-kadence-advancedheading" data-kb-block="kb-adv-heading23de40-09">Reader favorites:</h6>
<ul style="font-size:16px">
<li><a href="https://www.simplywhisked.com/baked-hamburgers/" data-type="post" data-id="21374">Baked hamburgers</a></li>
<li><a href="https://www.simplywhisked.com/orange-pork-stir-fry/" data-type="post" data-id="8006">Homemade stir fry sauce</a></li>
<li><a href="https://www.simplywhisked.com/extra-fluffy-dairy-free-pancakes/" data-type="post" data-id="11946">Dairy free pancakes</a></li>
<li><a href="https://www.simplywhisked.com/dairy-free-alfredo-sauce/" data-type="post" data-id="19346">Vegan alfredo sauce</a></li>
</ul>
</div></div>
</div></div>
</section> </div>
</div><!-- .footer-widget4 -->
</div>
<div class="site-footer-middle-section-4 site-footer-section footer-section-inner-items-1">
<div class="footer-widget-area widget-area site-footer-focus-item footer-widget5 content-align-default content-tablet-align-default content-mobile-align-default content-valign-default content-tablet-valign-default content-mobile-valign-default" data-section="sidebar-widgets-footer5">
<div class="footer-widget-area-inner site-info-inner">
<section id="block-33" class="widget-odd widget-last widget-first widget-1 widget widget_block"><style>.kadence-columna50fe7-e2 > .kt-inside-inner-col,.kadence-columna50fe7-e2 > .kt-inside-inner-col:before{border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;}.kadence-columna50fe7-e2 > .kt-inside-inner-col:before{opacity:0.3;}.kadence-columna50fe7-e2{position:relative;}</style>
<div class="wp-block-kadence-column kadence-columna50fe7-e2 kvs-md-false kvs-sm-false"><div class="kt-inside-inner-col">
<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><div class="wp-block-group__inner-container"><style>.wp-block-kadence-advancedheading.kt-adv-headingae8e16-d7, .wp-block-kadence-advancedheading.kt-adv-headingae8e16-d7[data-kb-block="kb-adv-headingae8e16-d7"]{margin-bottom:5px;margin-left:8px;text-align:left;font-size:20px;font-style:normal;color:#222222;}.wp-block-kadence-advancedheading.kt-adv-headingae8e16-d7 mark, .wp-block-kadence-advancedheading.kt-adv-headingae8e16-d7[data-kb-block="kb-adv-headingae8e16-d7"] mark{font-style:normal;color:#f76a0c;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;}</style>
<h6 class="kt-adv-headingae8e16-d7 wp-block-kadence-advancedheading" data-kb-block="kb-adv-headingae8e16-d7">Visit our sister sites:</h6>
<ul style="font-size:16px">
<li><a href="https://anothercocktailblog.com/">Another Cocktail Blog</a></li>
<li><a href="https://mustlovepasta.com/">The Pasta Twins</a></li>
<li><a href="https://sparklerecipe.co/">Sparkle Recipe Co.</a></li>
<li><a href="https://marclearnstocook.com/">Marc Learns to Cook</a></li>
</ul>
</div></div>
</div></div>
</section> </div>
</div><!-- .footer-widget5 -->
</div>
</div>
</div>
</div>
</div>
<div class="site-bottom-footer-wrap site-footer-row-container site-footer-focus-item site-footer-row-layout-fullwidth site-footer-row-tablet-layout-default site-footer-row-mobile-layout-default" data-section="kadence_customizer_footer_bottom">
<div class="site-footer-row-container-inner">
<div class="site-container">
<div class="site-bottom-footer-inner-wrap site-footer-row site-footer-row-columns-3 site-footer-row-column-layout-equal site-footer-row-tablet-column-layout-default site-footer-row-mobile-column-layout-row ft-ro-dir-row ft-ro-collapse-normal ft-ro-t-dir-default ft-ro-m-dir-default ft-ro-lstyle-plain">
<div class="site-footer-bottom-section-1 site-footer-section footer-section-inner-items-1">
<div class="footer-widget-area widget-area site-footer-focus-item footer-navigation-wrap content-align-center content-tablet-align-default content-mobile-align-default content-valign-top content-tablet-valign-default content-mobile-valign-default footer-navigation-layout-stretch-false" data-section="kadence_customizer_footer_navigation">
<div class="footer-widget-area-inner footer-navigation-inner">
<nav id="footer-navigation" class="footer-navigation" role="navigation" aria-label="Footer Navigation">
<div class="footer-menu-container">
<ul id="footer-menu" class="menu"><li id="menu-item-9732" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9732"><a href="https://www.simplywhisked.com/faq/">FAQ</a></li>
<li id="menu-item-9228" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9228"><a href="https://www.simplywhisked.com/contact/">Contact</a></li>
<li id="menu-item-17640" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-privacy-policy menu-item-17640"><a rel="privacy-policy" href="https://www.simplywhisked.com/privacy-policy/">Privacy</a></li>
</ul> </div>
</nav><!-- #footer-navigation -->
</div>
</div><!-- data-section="footer_navigation" -->
</div>
<div class="site-footer-bottom-section-2 site-footer-section footer-section-inner-items-1">
<div class="footer-widget-area widget-area site-footer-focus-item footer-social content-align-center content-tablet-align-default content-mobile-align-default content-valign-default content-tablet-valign-default content-mobile-valign-default" data-section="kadence_customizer_footer_social">
<div class="footer-widget-area-inner footer-social-inner">
<div class="footer-social-wrap"><div class="footer-social-inner-wrap element-social-inner-wrap social-show-label-false social-style-filled"><a href="https://facebook.com/simplywhisked/" aria-label="Facebook" target="_blank" rel="noopener noreferrer" class="social-button footer-social-item social-link-facebook"><span class="kadence-svg-iconset"><svg class="kadence-svg-icon kadence-facebook-alt2-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="16" height="28" viewBox="0 0 16 28"><title>Facebook</title><path d="M14.984 0.187v4.125h-2.453c-1.922 0-2.281 0.922-2.281 2.25v2.953h4.578l-0.609 4.625h-3.969v11.859h-4.781v-11.859h-3.984v-4.625h3.984v-3.406c0-3.953 2.422-6.109 5.953-6.109 1.687 0 3.141 0.125 3.563 0.187z"></path>
</svg></span></a><a href="https://instagram.com/simplywhisked/" aria-label="Instagram" target="_blank" rel="noopener noreferrer" class="social-button footer-social-item social-link-instagram"><span class="kadence-svg-iconset"><svg class="kadence-svg-icon kadence-instagram-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><title>Instagram</title><path d="M21.138 0.242c3.767 0.007 3.914 0.038 4.65 0.144 1.52 0.219 2.795 0.825 3.837 1.821 0.584 0.562 0.987 1.112 1.349 1.848 0.442 0.899 0.659 1.75 0.758 3.016 0.021 0.271 0.031 4.592 0.031 8.916s-0.009 8.652-0.030 8.924c-0.098 1.245-0.315 2.104-0.743 2.986-0.851 1.755-2.415 3.035-4.303 3.522-0.685 0.177-1.304 0.26-2.371 0.31-0.381 0.019-4.361 0.024-8.342 0.024s-7.959-0.012-8.349-0.029c-0.921-0.044-1.639-0.136-2.288-0.303-1.876-0.485-3.469-1.784-4.303-3.515-0.436-0.904-0.642-1.731-0.751-3.045-0.031-0.373-0.039-2.296-0.039-8.87 0-2.215-0.002-3.866 0-5.121 0.006-3.764 0.037-3.915 0.144-4.652 0.219-1.518 0.825-2.795 1.825-3.833 0.549-0.569 1.105-0.975 1.811-1.326 0.915-0.456 1.756-0.668 3.106-0.781 0.374-0.031 2.298-0.038 8.878-0.038h5.13zM15.999 4.364v0c-3.159 0-3.555 0.014-4.796 0.070-1.239 0.057-2.084 0.253-2.824 0.541-0.765 0.297-1.415 0.695-2.061 1.342s-1.045 1.296-1.343 2.061c-0.288 0.74-0.485 1.586-0.541 2.824-0.056 1.241-0.070 1.638-0.070 4.798s0.014 3.556 0.070 4.797c0.057 1.239 0.253 2.084 0.541 2.824 0.297 0.765 0.695 1.415 1.342 2.061s1.296 1.046 2.061 1.343c0.74 0.288 1.586 0.484 2.825 0.541 1.241 0.056 1.638 0.070 4.798 0.070s3.556-0.014 4.797-0.070c1.239-0.057 2.085-0.253 2.826-0.541 0.765-0.297 1.413-0.696 2.060-1.343s1.045-1.296 1.343-2.061c0.286-0.74 0.482-1.586 0.541-2.824 0.056-1.241 0.070-1.637 0.070-4.797s-0.015-3.557-0.070-4.798c-0.058-1.239-0.255-2.084-0.541-2.824-0.298-0.765-0.696-1.415-1.343-2.061s-1.295-1.045-2.061-1.342c-0.742-0.288-1.588-0.484-2.827-0.541-1.241-0.056-1.636-0.070-4.796-0.070zM14.957 6.461c0.31-0 0.655 0 1.044 0 3.107 0 3.475 0.011 4.702 0.067 1.135 0.052 1.75 0.241 2.16 0.401 0.543 0.211 0.93 0.463 1.337 0.87s0.659 0.795 0.871 1.338c0.159 0.41 0.349 1.025 0.401 2.16 0.056 1.227 0.068 1.595 0.068 4.701s-0.012 3.474-0.068 4.701c-0.052 1.135-0.241 1.75-0.401 2.16-0.211 0.543-0.463 0.93-0.871 1.337s-0.794 0.659-1.337 0.87c-0.41 0.16-1.026 0.349-2.16 0.401-1.227 0.056-1.595 0.068-4.702 0.068s-3.475-0.012-4.702-0.068c-1.135-0.052-1.75-0.242-2.161-0.401-0.543-0.211-0.931-0.463-1.338-0.87s-0.659-0.794-0.871-1.337c-0.159-0.41-0.349-1.025-0.401-2.16-0.056-1.227-0.067-1.595-0.067-4.703s0.011-3.474 0.067-4.701c0.052-1.135 0.241-1.75 0.401-2.16 0.211-0.543 0.463-0.931 0.871-1.338s0.795-0.659 1.338-0.871c0.41-0.16 1.026-0.349 2.161-0.401 1.073-0.048 1.489-0.063 3.658-0.065v0.003zM16.001 10.024c-3.3 0-5.976 2.676-5.976 5.976s2.676 5.975 5.976 5.975c3.3 0 5.975-2.674 5.975-5.975s-2.675-5.976-5.975-5.976zM16.001 12.121c2.142 0 3.879 1.736 3.879 3.879s-1.737 3.879-3.879 3.879c-2.142 0-3.879-1.737-3.879-3.879s1.736-3.879 3.879-3.879zM22.212 8.393c-0.771 0-1.396 0.625-1.396 1.396s0.625 1.396 1.396 1.396 1.396-0.625 1.396-1.396c0-0.771-0.625-1.396-1.396-1.396v0.001z"></path>
</svg></span></a><a href="https://pinterest.com/simplywhisked/" aria-label="Pinterest" target="_blank" rel="noopener noreferrer" class="social-button footer-social-item social-link-pinterest"><span class="kadence-svg-iconset"><svg class="kadence-svg-icon kadence-pinterest-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="28" viewBox="0 0 24 28"><title>Pinterest</title><path d="M19.5 2c2.484 0 4.5 2.016 4.5 4.5v15c0 2.484-2.016 4.5-4.5 4.5h-11.328c0.516-0.734 1.359-2 1.687-3.281 0 0 0.141-0.531 0.828-3.266 0.422 0.797 1.625 1.484 2.906 1.484 3.813 0 6.406-3.484 6.406-8.141 0-3.516-2.984-6.797-7.516-6.797-5.641 0-8.484 4.047-8.484 7.422 0 2.031 0.781 3.844 2.438 4.531 0.266 0.109 0.516 0 0.594-0.297 0.047-0.203 0.172-0.734 0.234-0.953 0.078-0.297 0.047-0.406-0.172-0.656-0.469-0.578-0.781-1.297-0.781-2.344 0-3 2.25-5.672 5.844-5.672 3.187 0 4.937 1.937 4.937 4.547 0 3.422-1.516 6.312-3.766 6.312-1.234 0-2.172-1.031-1.875-2.297 0.359-1.5 1.047-3.125 1.047-4.203 0-0.969-0.516-1.781-1.594-1.781-1.266 0-2.281 1.313-2.281 3.063 0 0 0 1.125 0.375 1.891-1.297 5.5-1.531 6.469-1.531 6.469-0.344 1.437-0.203 3.109-0.109 3.969h-2.859c-2.484 0-4.5-2.016-4.5-4.5v-15c0-2.484 2.016-4.5 4.5-4.5h15z"></path>
</svg></span></a><a href="https://tiktok.com/@simplywhisked/" aria-label="TikTok" target="_blank" rel="noopener noreferrer" class="social-button footer-social-item social-link-tiktok"><span class="kadence-svg-iconset"><svg aria-hidden="true" class="kadence-svg-icon kadence-tiktok-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><title>TikTok</title><path d="M16.707 0.027c1.747-0.027 3.48-0.013 5.213-0.027 0.107 2.040 0.84 4.12 2.333 5.56 1.493 1.48 3.6 2.16 5.653 2.387v5.373c-1.92-0.067-3.853-0.467-5.6-1.293-0.76-0.347-1.467-0.787-2.16-1.24-0.013 3.893 0.013 7.787-0.027 11.667-0.107 1.867-0.72 3.72-1.8 5.253-1.747 2.56-4.773 4.227-7.88 4.28-1.907 0.107-3.813-0.413-5.44-1.373-2.693-1.587-4.587-4.493-4.867-7.613-0.027-0.667-0.040-1.333-0.013-1.987 0.24-2.533 1.493-4.96 3.44-6.613 2.213-1.92 5.307-2.84 8.2-2.293 0.027 1.973-0.053 3.947-0.053 5.92-1.32-0.427-2.867-0.307-4.027 0.493-0.84 0.547-1.48 1.387-1.813 2.333-0.28 0.68-0.2 1.427-0.187 2.147 0.32 2.187 2.427 4.027 4.667 3.827 1.493-0.013 2.92-0.88 3.693-2.147 0.253-0.44 0.533-0.893 0.547-1.413 0.133-2.387 0.080-4.76 0.093-7.147 0.013-5.373-0.013-10.733 0.027-16.093z"></path>
</svg></span></a><a href="https://www.youtube.com/c/simplywhisked" aria-label="YouTube" target="_blank" rel="noopener noreferrer" class="social-button footer-social-item social-link-youtube"><span class="kadence-svg-iconset"><svg class="kadence-svg-icon kadence-youtube-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 28 28"><title>YouTube</title><path d="M11.109 17.625l7.562-3.906-7.562-3.953v7.859zM14 4.156c5.891 0 9.797 0.281 9.797 0.281 0.547 0.063 1.75 0.063 2.812 1.188 0 0 0.859 0.844 1.109 2.781 0.297 2.266 0.281 4.531 0.281 4.531v2.125s0.016 2.266-0.281 4.531c-0.25 1.922-1.109 2.781-1.109 2.781-1.062 1.109-2.266 1.109-2.812 1.172 0 0-3.906 0.297-9.797 0.297v0c-7.281-0.063-9.516-0.281-9.516-0.281-0.625-0.109-2.031-0.078-3.094-1.188 0 0-0.859-0.859-1.109-2.781-0.297-2.266-0.281-4.531-0.281-4.531v-2.125s-0.016-2.266 0.281-4.531c0.25-1.937 1.109-2.781 1.109-2.781 1.062-1.125 2.266-1.125 2.812-1.188 0 0 3.906-0.281 9.797-0.281v0z"></path>
</svg></span></a></div></div> </div>
</div><!-- data-section="footer_social" -->
</div>
<div class="site-footer-bottom-section-3 site-footer-section footer-section-inner-items-1">
<div class="footer-widget-area site-info site-footer-focus-item content-align-center content-tablet-align-default content-mobile-align-default content-valign-bottom content-tablet-valign-default content-mobile-valign-default" data-section="kadence_customizer_footer_html">
<div class="footer-widget-area-inner site-info-inner">
<div class="footer-html inner-link-style-normal"><div class="footer-html-inner"><p>© 2023 Simply Whisked</p>
</div></div> </div>
</div><!-- .site-info -->
</div>
</div>
</div>
</div>
</div>
</div>
</footer><!-- #colophon -->
</div><!-- #wrapper -->
<script type="rocketlazyloadscript">document.documentElement.style.setProperty('--scrollbar-offset', window.innerWidth - document.documentElement.clientWidth + 'px' );</script>
<div class="tasty-pins-hidden-image-container" style="display:none;"><img width="150" height="150" data-pin-url="https://www.simplywhisked.com/buffalo-chicken-chili/?tp_image_id=51744" data-pin-description="This easy, buffalo chicken chili recipe is hearty and healthy, and the buffalo flavor gives it just the right amount of spicy zing. Made on the stovetop, it’s perfect for a cozy game day at home, and it holds up in a crockpot for your next big party. Either way, everyone will love it!" data-pin-title="Buffalo Chicken Chili" class="tasty-pins-hidden-image skip-lazy a3-notlazy no-lazyload" data-no-lazy="1" src="https://www.simplywhisked.com/wp-content/uploads/2016/02/14-150x150.png" data-pin-media="https://www.simplywhisked.com/wp-content/uploads/2016/02/14.png"></div>
<div class="tasty-pins-hidden-image-container" style="display:none;"><img width="150" height="150" data-pin-url="https://www.simplywhisked.com/buffalo-chicken-chili/?tp_image_id=51743" data-pin-description="This easy, buffalo chicken chili recipe is hearty and healthy, and the buffalo flavor gives it just the right amount of spicy zing. Made on the stovetop, it’s perfect for a cozy game day at home, and it holds up in a crockpot for your next big party. Either way, everyone will love it!" data-pin-title="Buffalo Chicken Chili" class="tasty-pins-hidden-image skip-lazy a3-notlazy no-lazyload" data-no-lazy="1" src="https://www.simplywhisked.com/wp-content/uploads/2016/02/13-150x150.png" data-pin-media="https://www.simplywhisked.com/wp-content/uploads/2016/02/13.png"></div>
<div class="tasty-pins-hidden-image-container" style="display:none;"><img width="150" height="150" data-pin-url="https://www.simplywhisked.com/buffalo-chicken-chili/?tp_image_id=51742" data-pin-description="This easy, buffalo chicken chili recipe is hearty and healthy, and the buffalo flavor gives it just the right amount of spicy zing. Made on the stovetop, it’s perfect for a cozy game day at home, and it holds up in a crockpot for your next big party. Either way, everyone will love it!" data-pin-title="Buffalo Chicken Chili" class="tasty-pins-hidden-image skip-lazy a3-notlazy no-lazyload" data-no-lazy="1" src="https://www.simplywhisked.com/wp-content/uploads/2016/02/12-150x150.png" data-pin-media="https://www.simplywhisked.com/wp-content/uploads/2016/02/12.png"></div>
<div class="tasty-pins-hidden-image-container" style="display:none;"><img width="150" height="150" data-pin-url="https://www.simplywhisked.com/buffalo-chicken-chili/?tp_image_id=51741" data-pin-description="This easy, buffalo chicken chili recipe is hearty and healthy, and the buffalo flavor gives it just the right amount of spicy zing. Made on the stovetop, it’s perfect for a cozy game day at home, and it holds up in a crockpot for your next big party. Either way, everyone will love it!" data-pin-title="Buffalo Chicken Chili" class="tasty-pins-hidden-image skip-lazy a3-notlazy no-lazyload" data-no-lazy="1" src="https://www.simplywhisked.com/wp-content/uploads/2016/02/11-150x150.png" data-pin-media="https://www.simplywhisked.com/wp-content/uploads/2016/02/11.png"></div>
<div class="tasty-pins-hidden-image-container" style="display:none;"><img width="150" height="150" data-pin-url="https://www.simplywhisked.com/buffalo-chicken-chili/?tp_image_id=51740" data-pin-description="This easy, buffalo chicken chili recipe is hearty and healthy, and the buffalo flavor gives it just the right amount of spicy zing. Made on the stovetop, it’s perfect for a cozy game day at home, and it holds up in a crockpot for your next big party. Either way, everyone will love it!" data-pin-title="Buffalo Chicken Chili" class="tasty-pins-hidden-image skip-lazy a3-notlazy no-lazyload" data-no-lazy="1" src="https://www.simplywhisked.com/wp-content/uploads/2016/02/10-150x150.png" data-pin-media="https://www.simplywhisked.com/wp-content/uploads/2016/02/10.png"></div>
<div class="tasty-pins-hidden-image-container" style="display:none;"><img width="150" height="150" data-pin-url="https://www.simplywhisked.com/buffalo-chicken-chili/?tp_image_id=51739" data-pin-description="This easy, buffalo chicken chili recipe is hearty and healthy, and the buffalo flavor gives it just the right amount of spicy zing. Made on the stovetop, it’s perfect for a cozy game day at home, and it holds up in a crockpot for your next big party. Either way, everyone will love it!" data-pin-title="Buffalo Chicken Chili" class="tasty-pins-hidden-image skip-lazy a3-notlazy no-lazyload" data-no-lazy="1" src="https://www.simplywhisked.com/wp-content/uploads/2016/02/9-150x150.png" data-pin-media="https://www.simplywhisked.com/wp-content/uploads/2016/02/9.png"></div>
<div class="tasty-pins-hidden-image-container" style="display:none;"><img width="150" height="150" data-pin-url="https://www.simplywhisked.com/buffalo-chicken-chili/?tp_image_id=51738" data-pin-description="This easy, buffalo chicken chili recipe is hearty and healthy, and the buffalo flavor gives it just the right amount of spicy zing. Made on the stovetop, it’s perfect for a cozy game day at home, and it holds up in a crockpot for your next big party. Either way, everyone will love it!" data-pin-title="Buffalo Chicken Chili" class="tasty-pins-hidden-image skip-lazy a3-notlazy no-lazyload" data-no-lazy="1" src="https://www.simplywhisked.com/wp-content/uploads/2016/02/8-150x150.png" data-pin-media="https://www.simplywhisked.com/wp-content/uploads/2016/02/8.png"></div>
<div class="tasty-pins-hidden-image-container" style="display:none;"><img width="150" height="150" data-pin-url="https://www.simplywhisked.com/buffalo-chicken-chili/?tp_image_id=51737" data-pin-description="This easy, buffalo chicken chili recipe is hearty and healthy, and the buffalo flavor gives it just the right amount of spicy zing. Made on the stovetop, it’s perfect for a cozy game day at home, and it holds up in a crockpot for your next big party. Either way, everyone will love it!" data-pin-title="Buffalo Chicken Chili" class="tasty-pins-hidden-image skip-lazy a3-notlazy no-lazyload" data-no-lazy="1" src="https://www.simplywhisked.com/wp-content/uploads/2016/02/7-150x150.png" data-pin-media="https://www.simplywhisked.com/wp-content/uploads/2016/02/7.png"></div>
<div class="tasty-pins-hidden-image-container" style="display:none;"><img width="150" height="150" data-pin-url="https://www.simplywhisked.com/buffalo-chicken-chili/?tp_image_id=51736" data-pin-description="This easy, buffalo chicken chili recipe is hearty and healthy, and the buffalo flavor gives it just the right amount of spicy zing. Made on the stovetop, it’s perfect for a cozy game day at home, and it holds up in a crockpot for your next big party. Either way, everyone will love it!" data-pin-title="Buffalo Chicken Chili" class="tasty-pins-hidden-image skip-lazy a3-notlazy no-lazyload" data-no-lazy="1" src="https://www.simplywhisked.com/wp-content/uploads/2016/02/6-150x150.png" data-pin-media="https://www.simplywhisked.com/wp-content/uploads/2016/02/6.png"></div>
<div class="tasty-pins-hidden-image-container" style="display:none;"><img width="150" height="150" data-pin-url="https://www.simplywhisked.com/buffalo-chicken-chili/?tp_image_id=51735" data-pin-description="This easy, buffalo chicken chili recipe is hearty and healthy, and the buffalo flavor gives it just the right amount of spicy zing. Made on the stovetop, it’s perfect for a cozy game day at home, and it holds up in a crockpot for your next big party. Either way, everyone will love it!" data-pin-title="Buffalo Chicken Chili" class="tasty-pins-hidden-image skip-lazy a3-notlazy no-lazyload" data-no-lazy="1" src="https://www.simplywhisked.com/wp-content/uploads/2016/02/5-150x150.png" data-pin-media="https://www.simplywhisked.com/wp-content/uploads/2016/02/5.png"></div>
<div class="tasty-pins-hidden-image-container" style="display:none;"><img width="150" height="150" data-pin-url="https://www.simplywhisked.com/buffalo-chicken-chili/?tp_image_id=51734" data-pin-description="This easy, buffalo chicken chili recipe is hearty and healthy, and the buffalo flavor gives it just the right amount of spicy zing. Made on the stovetop, it’s perfect for a cozy game day at home, and it holds up in a crockpot for your next big party. Either way, everyone will love it!" data-pin-title="Buffalo Chicken Chili" class="tasty-pins-hidden-image skip-lazy a3-notlazy no-lazyload" data-no-lazy="1" src="https://www.simplywhisked.com/wp-content/uploads/2016/02/4-150x150.png" data-pin-media="https://www.simplywhisked.com/wp-content/uploads/2016/02/4.png"></div>
<div class="tasty-pins-hidden-image-container" style="display:none;"><img width="150" height="150" data-pin-url="https://www.simplywhisked.com/buffalo-chicken-chili/?tp_image_id=51732" data-pin-description="This easy, buffalo chicken chili recipe is hearty and healthy, and the buffalo flavor gives it just the right amount of spicy zing. Made on the stovetop, it’s perfect for a cozy game day at home, and it holds up in a crockpot for your next big party. Either way, everyone will love it!" data-pin-title="Buffalo Chicken Chili" class="tasty-pins-hidden-image skip-lazy a3-notlazy no-lazyload" data-no-lazy="1" src="https://www.simplywhisked.com/wp-content/uploads/2016/02/2-150x150.png" data-pin-media="https://www.simplywhisked.com/wp-content/uploads/2016/02/2.png"></div>
<div class="tasty-pins-hidden-image-container" style="display:none;"><img width="150" height="150" data-pin-url="https://www.simplywhisked.com/buffalo-chicken-chili/?tp_image_id=51730" data-pin-description="This easy, buffalo chicken chili recipe is hearty and healthy, and the buffalo flavor gives it just the right amount of spicy zing. Made on the stovetop, it’s perfect for a cozy game day at home, and it holds up in a crockpot for your next big party. Either way, everyone will love it!" data-pin-title="Buffalo Chicken Chili" class="tasty-pins-hidden-image skip-lazy a3-notlazy no-lazyload" data-no-lazy="1" src="https://www.simplywhisked.com/wp-content/uploads/2016/02/1-150x150.png" data-pin-media="https://www.simplywhisked.com/wp-content/uploads/2016/02/1.png"></div>
<div class="tasty-pins-hidden-image-container" style="display:none;"><img width="150" height="150" data-pin-url="https://www.simplywhisked.com/buffalo-chicken-chili/?tp_image_id=51733" data-pin-description="This easy, buffalo chicken chili recipe is hearty and healthy, and the buffalo flavor gives it just the right amount of spicy zing. Made on the stovetop, it’s perfect for a cozy game day at home, and it holds up in a crockpot for your next big party. Either way, everyone will love it!" data-pin-title="Buffalo Chicken Chili" class="tasty-pins-hidden-image skip-lazy a3-notlazy no-lazyload" data-no-lazy="1" src="https://www.simplywhisked.com/wp-content/uploads/2016/02/3-150x150.png" data-pin-media="https://www.simplywhisked.com/wp-content/uploads/2016/02/3.png"></div>
<div class="cpro-onload cp-popup-global cp-custom-cls-manual_trigger_64986 " data-class-id="64986" data-inactive-time='60' ></div>
<div id="cp_popup_id_64986" class="cp-popup-container cp-popup-live-wrap cp_style_64986 cp-module-slide_in " data-style="cp_style_64986" data-module-type="slide_in" data-class-id="64986" data-styleslug="summer-countdown-2">
<div class="cp-popup-wrapper cp-auto " >
<div class="cp-popup cpro-animate-container ">
<form class="cpro-form" method="post">
<input type='hidden' class='panel-settings' data-style_id= '64986' data-section='configure' value='{"enable_custom_cookies":"","enable_cookies_class":"","enable_adblock_detection":"","enable_visitors":"","visitor_type":"first-time","referrer_type":"hide-from","hide_custom_cookies":"","hide_cookies_class":"","show_for_logged_in":"1","hide_on_device":"","cookies_enabled":"1","conversion_cookie":"90","closed_cookie":"1","cookies_enabled_submit":"","enable_cookies_class_submit":"","conversion_cookie_submit":"90","cookies_enabled_closed":"","enable_cookies_class_closed":"","closed_cookie_new":"30"}' ><input type='hidden' class='panel-rulesets' data-style_id= '64986' data-section='configure' value='[{"name":"Ruleset 1","autoload_on_duration":true,"load_on_duration":1,"autoload_on_no_page_visit":false,"load_on_no_page_visit":1,"load_on_page_visit_type":"is-more-than","cp_show_note_page_view":"","modal_exit_intent":false,"autoload_on_scroll":false,"show_after_within_scroll_info":"","load_after_scroll":75,"close_after_scroll":0,"inactivity":false,"inactivity_link":"","enable_after_post":false,"enable_custom_scroll":false,"enable_scroll_class":"","on_scroll_txt":"","show_cta_info":"","enable_custom_cookies":false,"enable_cookies_class":"","on_cookie_txt":"","hide_cta_link":"","enable_adblock_detection":false,"all_visitor_info":"","enable_visitors":"","visitor_type":"first-time","enable_referrer":"","referrer_type":"hide-from","display_to":"","hide_from":"","enable_scheduler":false,"enable_scheduler_txt":"","start_date":"","end_date":"","custom_cls_text_head":"","enable_custom_class":false,"copy_link_code_button":"Copy Link Code","copy_link_cls_code_button":"","custom_class":"","custom_cls_text":""}]' ><style id='cp_popup_style_64986' type='text/css'>.cp_style_64986 .cp-popup-content {font-family:Verdana;font-style:Normal;font-weight:Normal;}.cp_style_64986 .cp-popup-content{ border-style:none;border-color:#e1e1e1;border-width:1px 1px 1px 1px;border-radius:0px 0px 0px 0px;}.cp_style_64986 #panel-1-64986 .cp-target:hover { }.cp_style_64986 #panel-1-64986 { }.cp_style_64986 .cp-popup-content { background-color:rgba(255,255,255,0.7);background-blend-mode: overlay;background-repeat :no-repeat;background-position :center;background-size :cover;width:400px;height:475px;}@media ( max-width: 767px ) {.cp_style_64986 .cp-popup-content{ border-style:none;border-color:#e1e1e1;border-width:1px 1px 1px 1px;border-radius:0px 0px 0px 0px;}.cp_style_64986 #panel-1-64986 .cp-target:hover { }.cp_style_64986 #panel-1-64986 { }.cp_style_64986 .cp-popup-content { background-color:rgba(255,255,255,0.75);background-blend-mode: overlay;background-repeat :repeat;background-position :center;background-size :cover;width:320px;height:380px;}}.cp_style_64986 #toggle-64986 .cp-target { }.cp_style_64986 #toggle-64986 .cp-target:hover { }.cp_style_64986 .cp-open-toggle{ font-size:16px;}.cp_style_64986 .cp-open-toggle{ color:#fff;}.cp_style_64986 .cp-open-toggle{ background-color:#000;}.cp_style_64986 .cp-open-toggle{ }.cp_style_64986 .cp-open-toggle{ }.cp_style_64986 .cp-open-toggle{ }.cp_style_64986 .cp-open-toggle{ width:350px;}.cp_style_64986 .cp-open-toggle{ line-height:50px;height:50px;}.cp_style_64986 #toggle-64986 { }@media ( max-width: 767px ) {.cp_style_64986 #toggle-64986 .cp-target { }.cp_style_64986 #toggle-64986 .cp-target:hover { }.cp_style_64986 .cp-open-toggle{ font-size:13px;}.cp_style_64986 .cp-open-toggle{ color:#fff;}.cp_style_64986 .cp-open-toggle{ background-color:#000;}.cp_style_64986 .cp-open-toggle{ }.cp_style_64986 .cp-open-toggle{ }.cp_style_64986 .cp-open-toggle{ }.cp_style_64986 .cp-open-toggle{ width:280px;}.cp_style_64986 .cp-open-toggle{ line-height:40px;height:40px;}.cp_style_64986 #toggle-64986 { }}.cp_style_64986 .cp-popup .cpro-form .cp-form-input-field{ font-family:Barlow;font-style:Inherit;font-weight:Inherit;font-size:15px;letter-spacing:0px;text-align:center;color:#a3a3a3;background-color:#ffffff;border-style:solid;border-width:0px 0px 0px 0px;border-radius:0px 0px 0px 0px;border-color:#b2b2b2;active-border-color:#666;padding:0px 0px 0px 0px;text-transform:none;}.cp_style_64986 #form_field-64986 .cp-target:hover { }.cp_style_64986 #form_field-64986 placeholder { color:#a3a3a3;}.cp_style_64986 .cp-popup .cpro-form .cp-form-input-field input[type='radio'], .cp_style_64986 .cp-popup .cpro-form .cp-form-input-field input[type='checkbox'] {color:#a3a3a3;background-color:#ffffff;}.cp_style_64986 .cp-popup .cpro-form .cp-form-input-field:focus {border-color: #666;}.cp_style_64986 .cp-popup .cpro-form .cp-form-input-field::-webkit-input-placeholder {color:#a3a3a3;}.cp_style_64986 .cp-popup .cpro-form .cp-form-input-field::-moz-placeholder {color:#a3a3a3;}.cp_style_64986 .cp-popup .cpro-form .pika-lendar table tbody button:hover { background :#a3a3a3;}.cp_style_64986 .cp-popup .cpro-form .pika-lendar table tbody .is-selected .pika-button { background :#a3a3a3;box-shadow : inset 0 1px 3px #a3a3a3;}.cp_style_64986 #form_field-64986 { }@media ( max-width: 767px ) {.cp_style_64986 .cp-popup .cpro-form .cp-form-input-field{ font-family:Barlow;font-style:Inherit;font-weight:Inherit;font-size:12px;letter-spacing:0px;text-align:center;color:#a3a3a3;background-color:#ffffff;border-style:solid;border-width:0px 0px 0px 0px;border-radius:0px 0px 0px 0px;border-color:#b2b2b2;active-border-color:#666;padding:0px 0px 0px 0px;text-transform:none;}.cp_style_64986 #form_field-64986 .cp-target:hover { }.cp_style_64986 #form_field-64986 placeholder { color:#a3a3a3;}.cp_style_64986 .cp-popup .cpro-form .cp-form-input-field input[type='radio'], .cp_style_64986 .cp-popup .cpro-form .cp-form-input-field input[type='checkbox'] {color:#a3a3a3;background-color:#ffffff;}.cp_style_64986 .cp-popup .cpro-form .cp-form-input-field:focus {border-color: #666;}.cp_style_64986 .cp-popup .cpro-form .cp-form-input-field::-webkit-input-placeholder {color:#a3a3a3;}.cp_style_64986 .cp-popup .cpro-form .cp-form-input-field::-moz-placeholder {color:#a3a3a3;}.cp_style_64986 .cp-popup .cpro-form .pika-lendar table tbody button:hover { background :#a3a3a3;}.cp_style_64986 .cp-popup .cpro-form .pika-lendar table tbody .is-selected .pika-button { background :#a3a3a3;box-shadow : inset 0 1px 3px #a3a3a3;}.cp_style_64986 #form_field-64986 { }}.cp_style_64986 #cp_heading-1-64986 .cp-target { font-family:Averia Serif Libre;font-style:700;font-weight:700;font-size:16px;line-height:1.2;letter-spacing:0;text-align:center;color:#ffffff;width:169px;height:21px;}.cp_style_64986 #cp_heading-1-64986 .cp-target:hover { }.cp_style_64986 #cp_heading-1-64986 .cp-rotate-wrap{ transform:rotate( 0deg);}.cp_style_64986 #cp_heading-1-64986 { left: 115.5px;top: 37px;z-index:5;}@media ( max-width: 767px ) {.cp_style_64986 #cp_heading-1-64986 .cp-target { font-family:Averia Serif Libre;font-style:700;font-weight:700;font-size:13px;line-height:1.2;letter-spacing:0;text-align:center;color:#ffffff;width:135px;height:17px;}.cp_style_64986 #cp_heading-1-64986 .cp-target:hover { }.cp_style_64986 #cp_heading-1-64986 .cp-rotate-wrap{ transform:rotate( 0deg);}.cp_style_64986 #cp_heading-1-64986 { left: 92px;top: 30px;z-index:5;}}.cp_style_64986 #cp_close_image-1-64986 .cp-target { width:18px;height:19px;}.cp_style_64986 #cp_close_image-1-64986 .cp-target:hover { }.cp_style_64986 #cp_close_image-1-64986 .cp-target { border-style:none;}.cp_style_64986 #cp_close_image-1-64986 .cp-target ~ .cp-field-shadow { border-style:none;}.cp_style_64986 #cp_close_image-1-64986 .cp-target { border-color:#757575;}.cp_style_64986 #cp_close_image-1-64986 .cp-target ~ .cp-field-shadow { border-color:#757575;}.cp_style_64986 #cp_close_image-1-64986 .cp-target { border-width:1px 1px 1px 1px;}.cp_style_64986 #cp_close_image-1-64986 .cp-target ~ .cp-field-shadow { border-width:1px 1px 1px 1px;}.cp_style_64986 #cp_close_image-1-64986 .cp-target { border-radius:0px 0px 0px 0px;}.cp_style_64986 #cp_close_image-1-64986 .cp-target ~ .cp-field-shadow { border-radius:0px 0px 0px 0px;}.cp_style_64986 #cp_close_image-1-64986 .cp-target > .cp-close-link { border-radius:0px 0px 0px 0px;}.cp_style_64986 #cp_close_image-1-64986 .cp-target > .cp-close-image { border-radius:0px 0px 0px 0px;}.cp_style_64986 #cp_close_image-1-64986 .cp-target { }.cp_style_64986 #cp_close_image-1-64986 .cp-target ~ .cp-field-shadow { }.cp_style_64986 #cp_close_image-1-64986 .cp-rotate-wrap{ transform:rotate( 0deg);}.cp_style_64986 #cp_close_image-1-64986 .cp-target:hover { }.cp_style_64986 #cp_close_image-1-64986 .cp-target:hover ~ .cp-field-shadow { }.cp_style_64986 #cp_close_image-1-64986 { left: 368.76px;top: 14px;z-index:10;}@media ( max-width: 767px ) {.cp_style_64986 #cp_close_image-1-64986 .cp-target { width:14px;height:15px;}.cp_style_64986 #cp_close_image-1-64986 .cp-target:hover { }.cp_style_64986 #cp_close_image-1-64986 .cp-target { border-style:none;}.cp_style_64986 #cp_close_image-1-64986 .cp-target ~ .cp-field-shadow { border-style:none;}.cp_style_64986 #cp_close_image-1-64986 .cp-target { border-color:#757575;}.cp_style_64986 #cp_close_image-1-64986 .cp-target ~ .cp-field-shadow { border-color:#757575;}.cp_style_64986 #cp_close_image-1-64986 .cp-target { border-width:1px 1px 1px 1px;}.cp_style_64986 #cp_close_image-1-64986 .cp-target ~ .cp-field-shadow { border-width:1px 1px 1px 1px;}.cp_style_64986 #cp_close_image-1-64986 .cp-target { border-radius:0px 0px 0px 0px;}.cp_style_64986 #cp_close_image-1-64986 .cp-target ~ .cp-field-shadow { border-radius:0px 0px 0px 0px;}.cp_style_64986 #cp_close_image-1-64986 .cp-target > .cp-close-link { border-radius:0px 0px 0px 0px;}.cp_style_64986 #cp_close_image-1-64986 .cp-target > .cp-close-image { border-radius:0px 0px 0px 0px;}.cp_style_64986 #cp_close_image-1-64986 .cp-target { }.cp_style_64986 #cp_close_image-1-64986 .cp-target ~ .cp-field-shadow { }.cp_style_64986 #cp_close_image-1-64986 .cp-rotate-wrap{ transform:rotate( 0deg);}.cp_style_64986 #cp_close_image-1-64986 .cp-target:hover { }.cp_style_64986 #cp_close_image-1-64986 .cp-target:hover ~ .cp-field-shadow { }.cp_style_64986 #cp_close_image-1-64986 { left: 295px;top: 11px;z-index:10;}}.cp_style_64986 #cp_heading-2-64986 .cp-target { font-family:Averia Serif Libre;font-style:Normal;font-weight:Normal;font-size:36px;line-height:1.1;letter-spacing:0;text-align:center;color:#000000;width:354px;height:83px;}.cp_style_64986 #cp_heading-2-64986 .cp-target:hover { }.cp_style_64986 #cp_heading-2-64986 .cp-rotate-wrap{ transform:rotate( 0deg);}.cp_style_64986 #cp_heading-2-64986 { left: 23px;top: 78px;z-index:13;}@media ( max-width: 767px ) {.cp_style_64986 #cp_heading-2-64986 .cp-target { font-family:Averia Serif Libre;font-style:Normal;font-weight:Normal;font-size:29px;line-height:1.1;letter-spacing:0;text-align:center;color:#000000;width:283px;height:66px;}.cp_style_64986 #cp_heading-2-64986 .cp-target:hover { }.cp_style_64986 #cp_heading-2-64986 .cp-rotate-wrap{ transform:rotate( 0deg);}.cp_style_64986 #cp_heading-2-64986 { left: 18px;top: 62px;z-index:13;}}.cp_style_64986 #cp_email-1-64986 .cp-target { width:312px;height:50px;}.cp_style_64986 #cp_email-1-64986 .cp-target:hover { }.cp_style_64986 #cp_email-1-64986 { left: 44px;top: 326.5px;z-index:12;}@media ( max-width: 767px ) {.cp_style_64986 #cp_email-1-64986 .cp-target { width:250px;height:40px;}.cp_style_64986 #cp_email-1-64986 .cp-target:hover { }.cp_style_64986 #cp_email-1-64986 { left: 35px;top: 261px;z-index:12;}}.cp_style_64986 #cp_shape-0-64986 .cp-target { fill:#222222;stroke-width:2;width:174px;height:31px;}.cp_style_64986 #cp_shape-0-64986 .cp-target:hover { fill:#222222;}.cp_style_64986 #cp_shape-0-64986 .cp-target { }.cp_style_64986 #cp_shape-0-64986 .cp-target ~ .cp-field-shadow { }.cp_style_64986 #cp_shape-0-64986 { }.cp_style_64986 #cp_shape-0-64986 .cp-rotate-wrap{ transform:rotate( 0deg);}.cp_style_64986 #cp_shape-0-64986 { }.cp_style_64986 #cp_shape-0-64986 { left: 113px;top: 31px;z-index:4;}@media ( max-width: 767px ) {.cp_style_64986 #cp_shape-0-64986 .cp-target { fill:#222222;stroke-width:2;width:139px;height:25px;}.cp_style_64986 #cp_shape-0-64986 .cp-target:hover { fill:#222222;}.cp_style_64986 #cp_shape-0-64986 .cp-target { }.cp_style_64986 #cp_shape-0-64986 .cp-target ~ .cp-field-shadow { }.cp_style_64986 #cp_shape-0-64986 { }.cp_style_64986 #cp_shape-0-64986 .cp-rotate-wrap{ transform:rotate( 0deg);}.cp_style_64986 #cp_shape-0-64986 { }.cp_style_64986 #cp_shape-0-64986 { left: 90px;top: 25px;z-index:4;}}.cp_style_64986 #cp_sub_heading-0-64986 .cp-target { font-family:Barlow;font-style:600;font-weight:600;font-size:18px;line-height:1.4;letter-spacing:0px;text-align:center;color:#222222;width:293px;height:75px;}.cp_style_64986 #cp_sub_heading-0-64986 .cp-target:hover { }.cp_style_64986 #cp_sub_heading-0-64986 .cp-rotate-wrap{ transform:rotate( 0deg);}.cp_style_64986 #cp_sub_heading-0-64986 { left: 53.5px;top: 167px;z-index:14;}@media ( max-width: 767px ) {.cp_style_64986 #cp_sub_heading-0-64986 .cp-target { font-family:Barlow;font-style:600;font-weight:600;font-size:14px;line-height:1.3;letter-spacing:0px;text-align:center;color:#222222;width:234px;height:60px;}.cp_style_64986 #cp_sub_heading-0-64986 .cp-target:hover { }.cp_style_64986 #cp_sub_heading-0-64986 .cp-rotate-wrap{ transform:rotate( 0deg);}.cp_style_64986 #cp_sub_heading-0-64986 { left: 43px;top: 134px;z-index:14;}}.cp_style_64986 #cp_text-0-64986 .cp-target { width:313px;height:51px;}.cp_style_64986 #cp_text-0-64986 .cp-target:hover { }.cp_style_64986 #cp_text-0-64986 { left: 44px;top: 263.5px;z-index:16;}@media ( max-width: 767px ) {.cp_style_64986 #cp_text-0-64986 .cp-target { width:250px;height:41px;}.cp_style_64986 #cp_text-0-64986 .cp-target:hover { }.cp_style_64986 #cp_text-0-64986 { left: 35px;top: 211px;z-index:16;}}.cp_style_64986 #cp_button-0-64986 .cp-target { font-family:Barlow;font-style:600;font-weight:600;font-size:14px;letter-spacing:.5px;text-align:center;color:#fff;background:#222222;width:180px;height:46px;padding:0px 15px 0px 15px;}.cp_style_64986 #cp_button-0-64986 .cp-target:hover { color:#222222;background:#e5e2dc;}.cp_style_64986 #cp_button-0-64986 .cp-target { border-style:none;}.cp_style_64986 #cp_button-0-64986 .cp-target ~ .cp-field-shadow { border-style:none;}.cp_style_64986 #cp_button-0-64986 .cp-target { border-color:#757575;}.cp_style_64986 #cp_button-0-64986 .cp-target ~ .cp-field-shadow { border-color:#757575;}.cp_style_64986 #cp_button-0-64986 .cp-target { border-width:1px 1px 1px 1px;}.cp_style_64986 #cp_button-0-64986 .cp-target ~ .cp-field-shadow { border-width:1px 1px 1px 1px;}.cp_style_64986 #cp_button-0-64986 .cp-target { border-radius:50px 50px 50px 50px;}.cp_style_64986 #cp_button-0-64986 .cp-target ~ .cp-field-shadow { border-radius:50px 50px 50px 50px;}.cp_style_64986 #cp_button-0-64986 .cp-target > .cp-close-link { border-radius:50px 50px 50px 50px;}.cp_style_64986 #cp_button-0-64986 .cp-target > .cp-close-image { border-radius:50px 50px 50px 50px;}.cp_style_64986 #cp_button-0-64986 .cp-target { }.cp_style_64986 #cp_button-0-64986 .cp-target ~ .cp-field-shadow { }.cp_style_64986 #cp_button-0-64986 .cp-rotate-wrap{ transform:rotate( 0deg);}.cp_style_64986 #cp_button-0-64986 .cp-target:hover { }.cp_style_64986 #cp_button-0-64986 .cp-target:hover ~ .cp-field-shadow { }.cp_style_64986 #cp_button-0-64986 { left: 110px;top: 396px;z-index:18;}@media ( max-width: 767px ) {.cp_style_64986 #cp_button-0-64986 .cp-target { font-family:Barlow;font-style:600;font-weight:600;font-size:11px;letter-spacing:.5px;text-align:center;color:#fff;background:#222222;width:144px;height:37px;padding:0px 15px 0px 15px;}.cp_style_64986 #cp_button-0-64986 .cp-target:hover { color:#222222;background:#e5e2dc;}.cp_style_64986 #cp_button-0-64986 .cp-target { border-style:none;}.cp_style_64986 #cp_button-0-64986 .cp-target ~ .cp-field-shadow { border-style:none;}.cp_style_64986 #cp_button-0-64986 .cp-target { border-color:#757575;}.cp_style_64986 #cp_button-0-64986 .cp-target ~ .cp-field-shadow { border-color:#757575;}.cp_style_64986 #cp_button-0-64986 .cp-target { border-width:1px 1px 1px 1px;}.cp_style_64986 #cp_button-0-64986 .cp-target ~ .cp-field-shadow { border-width:1px 1px 1px 1px;}.cp_style_64986 #cp_button-0-64986 .cp-target { border-radius:50px 50px 50px 50px;}.cp_style_64986 #cp_button-0-64986 .cp-target ~ .cp-field-shadow { border-radius:50px 50px 50px 50px;}.cp_style_64986 #cp_button-0-64986 .cp-target > .cp-close-link { border-radius:50px 50px 50px 50px;}.cp_style_64986 #cp_button-0-64986 .cp-target > .cp-close-image { border-radius:50px 50px 50px 50px;}.cp_style_64986 #cp_button-0-64986 .cp-target { }.cp_style_64986 #cp_button-0-64986 .cp-target ~ .cp-field-shadow { }.cp_style_64986 #cp_button-0-64986 .cp-rotate-wrap{ transform:rotate( 0deg);}.cp_style_64986 #cp_button-0-64986 .cp-target:hover { }.cp_style_64986 #cp_button-0-64986 .cp-target:hover ~ .cp-field-shadow { }.cp_style_64986 #cp_button-0-64986 { left: 88px;top: 317px;z-index:18;}}@media ( max-width: 767px ) {.cp_style_64986 .cp-invisible-on-mobile {display: none !important;}}</style>
<div class="cp-popup-content cpro-active-step cp-img-lazy cp-bg-lazy cp-slide_in center-left cp-panel-1" data-entry-animation = "cp-fadeIn" data-cp-src="["53617|https://www.simplywhisked.com/wp-content/uploads/2021/01/Apple-Cinnamon-Oatmeal-8.jpg|full","53617|https://www.simplywhisked.com/wp-content/uploads/2021/01/Apple-Cinnamon-Oatmeal-8.jpg|full"]" data-overlay-click ="1" data-title="Recipes to FALL for" data-module-type="slide_in" data-step="1" data-width="400" data-mobile-width="320" data-height="475" data-mobile-height="380" data-mobile-break-pt="767" data-popup-position="center left" data-mobile-responsive="yes">
<div class="cpro-form-container">
<div id="cp_heading-1-64986" class="cp-field-html-data cp-none cp_has_editor" data-type="cp_heading" ><div class="cp-rotate-wrap"><div class="cp-target cp-field-element cp-heading tinymce" name="cp_heading-1"><p>FREE EMAIL BONUS!</p></div></div>
</div><div id="cp_close_image-1-64986" class="cp-field-html-data cp-none cp-image-ratio cp-close-field cp-close-image-wrap" data-type="cp_close_image" data-field-title="Close Image" data-action="close" >
<div class="cp-rotate-wrap">
<div class="cp-image-main"><img data-pin-nopin="nopin" width="18" height="19" data-cp-src="https://www.simplywhisked.com/wp-content/plugins/convertpro/assets/admin/img/close6.png" class="cp-target cp-field-element cp-close-image cp-img-lazy" alt="" name="cp_close_image-1" value="" src="">
<div class="cp-field-shadow"></div>
</div>
</div>
</div><div id="cp_heading-2-64986" class="cp-field-html-data cp-none cp_has_editor" data-type="cp_heading" ><div class="cp-rotate-wrap"><div class="cp-target cp-field-element cp-heading tinymce" name="cp_heading-2"><p>25 recipes to FALL for this season.</p></div></div>
</div><div id="cp_email-1-64986" class="cp-field-html-data cp-none" data-type="cp_email" >
<input type="email" class="cp-target cp-field-element cp-form-input-field cp-form-field cp-email cp-form-field cp-email-field" aria-label="Email Address" placeholder="Email Address" name="param[email]" value="" required="required" data-email-error-msg="Please enter a valid email address." autocomplete="on" />
</div><div id="cp_shape-0-64986" class="cp-field-html-data cp-shapes-wrap cp-none" data-type="cp_shape" data-action="none" data-success-message="Thank You for Subscribing!" data-step="1" data-get-param="false">
<div class="cp-shape-container">
<div class="cp-shape-tooltip"></div>
<label class="cp-shape-label">
<div class="cp-rotate-wrap"><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="30" height="30" viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve" preserveAspectRatio="none" fill="#222222" class="cp-target">
<path d="M0,0h100v100H0V0z"/>
</svg>
</div>
<div class="cp-field-shadow"></div>
</label>
</div>
</div><div id="cp_sub_heading-0-64986" class="cp-field-html-data cp-none cp_has_editor" data-type="cp_sub_heading" data-field-title="Subheading" ><div class="cp-rotate-wrap"><div class="cp-target cp-field-element cp-sub-heading tinymce" name="{{name}}"><p>Get ready to fall in love with chilly weather and shorter days with some fresh new recipes!</p></div></div>
</div><div id="cp_text-0-64986" class="cp-field-html-data cp-none" data-type="cp_text" data-field-title="Text" >
<input type="text" class="cp-target cp-field-element cp-text cp-form-field cp-form-input-field cp-text-field" aria-label="First Name" placeholder="First Name" name="param[textfield_5542]" value="" access_cp_pro autocomplete="on" />
</div><div id="cp_button-0-64986" class="cp-field-html-data cp-none" data-type="cp_button" data-action="submit" data-step="1" >
<div class="cp-rotate-wrap"><button type="submit" class=" cp-target cp-field-element cp-button cp-button-field" data-success-message="Thank You for Subscribing!" data-get-param="false">YES. I WANT THIS!</button>
<div class="cp-btn-tooltip"></div>
</div></div> </div>
</div><!-- .cp-popup-content -->
<input type="hidden" name="param[date]" value="October 13, 2023" />
<input type="hidden" name="action" value="cp_v2_add_subscriber" />
<input type="hidden" name="style_id" value="64986" />
</form>
</div>
</div><!-- .cp-popup-wrapper -->
</div><!-- Modal popup container -->
<div id="mobile-drawer" class="popup-drawer popup-drawer-layout-sidepanel popup-drawer-animation-fade popup-drawer-side-right" data-drawer-target-string="#mobile-drawer"
>
<div class="drawer-overlay" data-drawer-target-string="#mobile-drawer"></div>
<div class="drawer-inner">
<div class="drawer-header">
<button class="menu-toggle-close drawer-toggle" aria-label="Close menu" data-toggle-target="#mobile-drawer" data-toggle-body-class="showing-popup-drawer-from-right" aria-expanded="false" data-set-focus=".menu-toggle-open"
>
<span class="toggle-close-bar"></span>
<span class="toggle-close-bar"></span>
</button>
</div>
<div class="drawer-content mobile-drawer-content content-align-left content-valign-top">
<div class="site-header-item site-header-focus-item site-header-item-mobile-navigation mobile-navigation-layout-stretch-false" data-section="kadence_customizer_mobile_navigation">
<nav id="mobile-site-navigation" class="mobile-navigation drawer-navigation drawer-navigation-parent-toggle-false" role="navigation" aria-label="Primary Mobile Navigation">
<div class="mobile-menu-container drawer-menu-container">
<ul id="mobile-menu" class="menu has-collapse-sub-nav"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-61780"><a href="https://www.simplywhisked.com/">Home</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-12115"><a href="https://www.simplywhisked.com/about/">About</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-16094"><div class="drawer-nav-drop-wrap"><a href="https://www.simplywhisked.com/recipe-index/">Recipes</a><button class="drawer-sub-toggle" data-toggle-duration="10" data-toggle-target="#mobile-menu .menu-item-16094 > .sub-menu" aria-expanded="false"><span class="screen-reader-text">Expand child menu</span><span class="kadence-svg-iconset"><svg aria-hidden="true" class="kadence-svg-icon kadence-arrow-down-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Expand</title><path d="M5.293 9.707l6 6c0.391 0.391 1.024 0.391 1.414 0l6-6c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z"></path>
</svg></span></button></div>
<ul class="sub-menu">
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-15723"><a href="https://www.simplywhisked.com/appetizers/">Appetizers</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-15725"><a href="https://www.simplywhisked.com/beverages/">Beverages</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-15726"><a href="https://www.simplywhisked.com/breakfast/">Breakfast</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-15734"><a href="https://www.simplywhisked.com/desserts/">Desserts</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-15727"><a href="https://www.simplywhisked.com/mains/">Mains</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-15728"><a href="https://www.simplywhisked.com/salads/">Salads</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-15729"><a href="https://www.simplywhisked.com/sandwiches/">Sandwiches</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-15730"><a href="https://www.simplywhisked.com/sauces/">Sauces & Condiments</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-15731"><a href="https://www.simplywhisked.com/sides/">Sides</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-15733"><a href="https://www.simplywhisked.com/soups/">Soups</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-15737"><a href="https://www.simplywhisked.com/dairy-free-resources/">Resources</a></li>
</ul> </div>
</nav><!-- #site-navigation -->
</div><!-- data-section="mobile_navigation" -->
</div>
</div>
</div>
<script type="rocketlazyloadscript" data-rocket-src='https://www.simplywhisked.com/wp-includes/js/comment-reply.min.js?ver=6.3.2' id='comment-reply-js' defer></script>
<script id='kadence-navigation-js-extra'>
var kadenceConfig = {"screenReader":{"expand":"Expand child menu","expandOf":"Expand child menu of","collapse":"Collapse child menu","collapseOf":"Collapse child menu of"},"breakPoints":{"desktop":"1024","tablet":768},"scrollOffset":"0"};
</script>
<script type="rocketlazyloadscript" data-rocket-src='https://www.simplywhisked.com/wp-content/themes/kadence/assets/js/navigation-lite.min.js?ver=1.1.46' id='kadence-navigation-js' async></script>
<script id="perfmatters-lazy-load-js-before">
window.lazyLoadOptions={elements_selector:"img[data-src],.perfmatters-lazy,.perfmatters-lazy-css-bg",thresholds:"50px 0px",class_loading:"pmloading",class_loaded:"pmloaded",callback_loaded:function(element){if(element.tagName==="IFRAME"){if(element.classList.contains("pmloaded")){if(typeof window.jQuery!="undefined"){if(jQuery.fn.fitVids){jQuery(element).parent().fitVids()}}}}}};window.addEventListener("LazyLoad::Initialized",function(e){var lazyLoadInstance=e.detail.instance;});function perfmattersLazyLoadYouTube(e){var t=document.createElement("iframe"),r="ID?";r+=0===e.dataset.query.length?"":e.dataset.query+"&",r+="autoplay=1",t.setAttribute("src",r.replace("ID",e.dataset.src)),t.setAttribute("frameborder","0"),t.setAttribute("allowfullscreen","1"),t.setAttribute("allow","accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"),e.replaceChild(t,e.firstChild)}
</script>
<script async src='https://www.simplywhisked.com/wp-content/plugins/perfmatters/js/lazyload.min.js?ver=2.1.6' id='perfmatters-lazy-load-js'></script>
<script src='https://www.simplywhisked.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.0' id='jquery-core-js'></script>
<script id='lazy-load-for-comments-js-extra'>
var llcstrings = {"loading_error":"Error occurred while loading comments. Please reload this page."};
</script>
<script type="rocketlazyloadscript" data-rocket-src='https://www.simplywhisked.com/wp-content/plugins/lazy-load-for-comments/public/js/llc_scroll.min.js?ver=1.0.10' id='lazy-load-for-comments-js' defer></script>
<script type="rocketlazyloadscript" data-minify="1" data-rocket-src='https://www.simplywhisked.com/wp-content/cache/min/1/wp-content/plugins/tasty-pins/assets/js/savepin.js?ver=1696565781' id='tasty-pins-frontend-js' defer></script>
<script id='cp-popup-script-js-extra'>
var cp_ajax = {"url":"https:\/\/www.simplywhisked.com\/wp-admin\/admin-ajax.php","ajax_nonce":"65853c4dcc","assets_url":"https:\/\/www.simplywhisked.com\/wp-content\/plugins\/convertpro\/assets\/","not_connected_to_mailer":"This form is not connected with any mailer service! Please contact web administrator.","timer_labels":"Years,Months,Weeks,Days,Hours,Minutes,Seconds","timer_labels_singular":"Year,Month,Week,Day,Hour,Minute,Second","image_on_ready":"1","cpro_mx_valid":"0","invalid_email_id":"Invalid Email Address!"};
var cp_pro = {"inactive_time":"60"};
var cp_pro_url_cookie = {"days":"30"};
var cp_v2_ab_tests = {"cp_v2_ab_tests_object":[]};
</script>
<script type="rocketlazyloadscript" defer="defer" data-rocket-src='https://www.simplywhisked.com/wp-content/plugins/convertpro/assets/modules/js/cp-popup.min.js?ver=1.7.7' id='cp-popup-script-js'></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript">
jQuery(document).on( "cp_after_form_submit", function( e, element, response
, style_slug ) {
if( false == response.data.error ) {
if( 'undefined' !== typeof response.data['cfox_data'] ) {
var form_data = JSON.parse( response.data['cfox_data'] );
form_data.overwrite_tags = false;
if( 'undefined' !== typeof convertfox ) {
convertfox.identify( form_data );
}
}
}
});
</script>
<div id="search-drawer" class="popup-drawer popup-drawer-layout-fullwidth" data-drawer-target-string="#search-drawer"
>
<div class="drawer-overlay" data-drawer-target-string="#search-drawer"></div>
<div class="drawer-inner">
<div class="drawer-header">
<button class="search-toggle-close drawer-toggle" aria-label="Close search" data-toggle-target="#search-drawer" data-toggle-body-class="showing-popup-drawer-from-full" aria-expanded="false" data-set-focus=".search-toggle-open"
>
<span class="kadence-svg-iconset"><svg class="kadence-svg-icon kadence-close-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Toggle Menu Close</title><path d="M5.293 6.707l5.293 5.293-5.293 5.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5.293-5.293 5.293 5.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-5.293-5.293 5.293-5.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z"></path>
</svg></span> </button>
</div>
<div class="drawer-content">
<form role="search" method="get" class="search-form" action="https://www.simplywhisked.com/">
<label>
<span class="screen-reader-text">Search for:</span>
<input type="search" class="search-field" placeholder="Search …" value="" name="s" />
</label>
<input type="submit" class="search-submit" value="Search" />
<div class="kadence-search-icon-wrap"><span class="kadence-svg-iconset"><svg aria-hidden="true" class="kadence-svg-icon kadence-search-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="26" height="28" viewBox="0 0 26 28"><title>Search</title><path d="M18 13c0-3.859-3.141-7-7-7s-7 3.141-7 7 3.141 7 7 7 7-3.141 7-7zM26 26c0 1.094-0.906 2-2 2-0.531 0-1.047-0.219-1.406-0.594l-5.359-5.344c-1.828 1.266-4.016 1.937-6.234 1.937-6.078 0-11-4.922-11-11s4.922-11 11-11 11 4.922 11 11c0 2.219-0.672 4.406-1.937 6.234l5.359 5.359c0.359 0.359 0.578 0.875 0.578 1.406z"></path>
</svg></span></div></form> </div>
</div>
</div>
<noscript><link data-minify="1" rel='stylesheet' id='kadence-blocks-rowlayout-css' href='https://www.simplywhisked.com/wp-content/cache/min/1/wp-content/plugins/kadence-blocks/dist/style-blocks-rowlayout.css?ver=1696565781' media='all' /><link data-minify="1" rel='stylesheet' id='kadence-blocks-column-css' href='https://www.simplywhisked.com/wp-content/cache/min/1/wp-content/plugins/kadence-blocks/dist/style-blocks-column.css?ver=1696565781' media='all' /><link data-minify="1" rel='stylesheet' id='kadence-blocks-iconlist-css' href='https://www.simplywhisked.com/wp-content/cache/min/1/wp-content/plugins/kadence-blocks/dist/style-blocks-iconlist.css?ver=1696565782' media='all' /><link rel='stylesheet' id='wp-block-library-css' href='https://www.simplywhisked.com/wp-includes/css/dist/block-library/style.min.css?ver=6.3.2' media='all' /><link data-minify="1" rel='stylesheet' id='tasty-links-featured-links-block-css' href='https://www.simplywhisked.com/wp-content/cache/min/1/wp-content/plugins/tasty-links/assets/css/featured-links-block.css?ver=1696565781' media='all' /><link rel='stylesheet' id='kadence-global-css' href='https://www.simplywhisked.com/wp-content/themes/kadence/assets/css/global.min.css?ver=1.1.46' media='all' /><link rel='stylesheet' id='kadence-header-css' href='https://www.simplywhisked.com/wp-content/themes/kadence/assets/css/header.min.css?ver=1.1.46' media='all' /><link rel='stylesheet' id='kadence-content-css' href='https://www.simplywhisked.com/wp-content/themes/kadence/assets/css/content.min.css?ver=1.1.46' media='all' /><link rel='stylesheet' id='kadence-comments-css' href='https://www.simplywhisked.com/wp-content/themes/kadence/assets/css/comments.min.css?ver=1.1.46' media='all' /><link rel='stylesheet' id='kadence-sidebar-css' href='https://www.simplywhisked.com/wp-content/themes/kadence/assets/css/sidebar.min.css?ver=1.1.46' media='all' /><link rel='stylesheet' id='kadence-footer-css' href='https://www.simplywhisked.com/wp-content/themes/kadence/assets/css/footer.min.css?ver=1.1.46' media='all' /><link data-minify="1" rel='stylesheet' id='inc-frontend-css' href='https://www.simplywhisked.com/wp-content/cache/min/1/wp-content/plugins/imark-interactive-toolkit/frontend/css/inc-frontend-style.css?ver=1696565781' media='all' /><link data-minify="1" rel='stylesheet' id='imp-frontend-css' href='https://www.simplywhisked.com/wp-content/cache/min/1/wp-content/plugins/imark-interactive-toolkit/frontend/css/imp-frontend-style.css?ver=1696565781' media='all' /><link data-minify="1" rel='stylesheet' id='kadence-blocks-advancedbtn-css' href='https://www.simplywhisked.com/wp-content/cache/min/1/wp-content/plugins/kadence-blocks/dist/style-blocks-advancedbtn.css?ver=1696565781' media='all' /></noscript></body>
</html>
<!-- This website is like a Rocket, isn't it? Performance optimized by WP Rocket. Learn more: https://wp-rocket.me - Debug: cached@1697187937 -->
|