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 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985
|
<!doctype html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="https://gmpg.org/xfn/11">
<script data-no-optimize="1" data-cfasync="false">!function(){"use strict";const t={adt_ei:{identityApiKey:"plainText",source:"url",type:"plaintext",priority:1},adt_eih:{identityApiKey:"sha256",source:"urlh",type:"hashed",priority:2},sh_kit:{identityApiKey:"sha256",source:"urlhck",type:"hashed",priority:3}},e=Object.keys(t);function i(t){return function(t){const e=t.match(/((?=([a-z0-9._!#$%+^&*()[\]<>-]+))\2@[a-z0-9._-]+\.[a-z0-9._-]+)/gi);return e?e[0]:""}(function(t){return t.replace(/\s/g,"")}(t.toLowerCase()))}!async function(){const n=new URL(window.location.href),o=n.searchParams;let a=null;const r=Object.entries(t).sort(([,t],[,e])=>t.priority-e.priority).map(([t])=>t);for(const e of r){const n=o.get(e),r=t[e];if(!n||!r)continue;const c=decodeURIComponent(n),d="plaintext"===r.type&&i(c),s="hashed"===r.type&&c;if(d||s){a={value:c,config:r};break}}if(a){const{value:t,config:e}=a;window.adthrive=window.adthrive||{},window.adthrive.cmd=window.adthrive.cmd||[],window.adthrive.cmd.push(function(){window.adthrive.identityApi({source:e.source,[e.identityApiKey]:t},({success:i,data:n})=>{i?window.adthrive.log("info","Plugin","detectEmails",`Identity API called with ${e.type} email: ${t}`,n):window.adthrive.log("warning","Plugin","detectEmails",`Failed to call Identity API with ${e.type} email: ${t}`,n)})})}!function(t,e){const i=new URL(e);t.forEach(t=>i.searchParams.delete(t)),history.replaceState(null,"",i.toString())}(e,n)}()}();
</script><meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
<style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style>
<style data-no-optimize="1" data-cfasync="false">
.adthrive-ad {
margin-top: 10px;
margin-bottom: 10px;
text-align: center;
overflow-x: visible;
clear: both;
line-height: 0;
}
.adthrive-device-desktop .adthrive-recipe,
.adthrive-device-tablet .adthrive-recipe {
float: right;
clear: right;
margin-left: 10px;
}
/* White Background For Mobile Sticky Video Player */
.adthrive-collapse-mobile-background {
background-color: #fff!important;
}
.adthrive-top-collapse-close > svg > * {
stroke: black;
font-family: sans-serif;
}
.adthrive-top-collapse-wrapper-video-title,
.adthrive-top-collapse-wrapper-bar a a.adthrive-learn-more-link {
color: black!important;
}
/* END White Background For Mobile Sticky Video Player */
/* for sticky SB9 */
.adthrive-sidebar.adthrive-stuck {
margin-top: 90px;
}
/* for dynamic sticky sidebar ads */
.adthrive-sticky-sidebar > div {
top: 90px!important;
}
/* To correct sticky sidebar ads not sticking */
body.single.adthrive-device-desktop .main-wrap {
overflow-x: visible!important;
}
/* END To correct sticky sidebar ads not sticking */</style>
<script data-no-optimize="1" data-cfasync="false">
window.adthriveCLS = {
enabledLocations: ['Content', 'Recipe'],
injectedSlots: [],
injectedFromPlugin: true,
branch: '78c96d1',bucket: 'prod', };
window.adthriveCLS.siteAds = {"betaTester":false,"targeting":[{"value":"6398e2906adaf54dcddbee8e","key":"siteId"},{"value":"6398e290660fdf4dcd66568d","key":"organizationId"},{"value":"How To Cook Recipes","key":"siteName"},{"value":"AdThrive Edge","key":"service"},{"value":"on","key":"bidding"},{"value":["Food"],"key":"verticals"}],"siteUrl":"https://www.howtocook.recipes","siteId":"6398e2906adaf54dcddbee8e","siteName":"How To Cook Recipes","breakpoints":{"tablet":768,"desktop":1024},"cloudflare":null,"adUnits":[{"sequence":1,"thirdPartyAdUnitName":null,"targeting":[{"value":["Sidebar"],"key":"location"}],"devices":["desktop"],"name":"Sidebar_1","sticky":false,"location":"Sidebar","dynamic":{"pageSelector":"","spacing":0,"max":1,"lazyMax":null,"enable":true,"lazy":false,"elementSelector":".sidebar .widget","skip":0,"classNames":[],"position":"afterend","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[160,600],[336,280],[320,50],[300,600],[250,250],[1,1],[320,100],[300,1050],[300,50],[300,420],[300,250]],"priority":299,"autosize":true},{"sequence":9,"thirdPartyAdUnitName":null,"targeting":[{"value":["Sidebar"],"key":"location"},{"value":true,"key":"sticky"}],"devices":["desktop"],"name":"Sidebar_9","sticky":true,"location":"Sidebar","dynamic":{"pageSelector":"","spacing":0,"max":1,"lazyMax":null,"enable":true,"lazy":false,"elementSelector":".sidebar","skip":0,"classNames":[],"position":"beforeend","every":1,"enabled":true},"stickyOverlapSelector":".main-footer","adSizes":[[160,600],[336,280],[320,50],[300,600],[250,250],[1,1],[320,100],[300,1050],[300,50],[300,420],[300,250]],"priority":291,"autosize":true},{"sequence":null,"thirdPartyAdUnitName":null,"targeting":[{"value":["Content"],"key":"location"}],"devices":["desktop","tablet","phone"],"name":"Content","sticky":false,"location":"Content","dynamic":{"pageSelector":"body.home","spacing":0,"max":1,"lazyMax":3,"enable":true,"lazy":true,"elementSelector":".page-content > div","skip":0,"classNames":[],"position":"afterend","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[728,90],[336,280],[320,50],[468,60],[970,90],[250,250],[1,1],[320,100],[970,250],[1,2],[300,50],[300,300],[552,334],[728,250],[300,250]],"priority":199,"autosize":true},{"sequence":null,"thirdPartyAdUnitName":null,"targeting":[{"value":["Content"],"key":"location"}],"devices":["desktop"],"name":"Content","sticky":false,"location":"Content","dynamic":{"pageSelector":"body.single, body.page:not(.home)","spacing":0.85,"max":4,"lazyMax":95,"enable":true,"lazy":true,"elementSelector":".entry-content > .wpb_wrapper > *:not(h2):not(h3)","skip":4,"classNames":[],"position":"afterend","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[728,90],[336,280],[320,50],[468,60],[970,90],[250,250],[1,1],[320,100],[970,250],[1,2],[300,50],[300,300],[552,334],[728,250],[300,250]],"priority":199,"autosize":true},{"sequence":null,"thirdPartyAdUnitName":null,"targeting":[{"value":["Content"],"key":"location"}],"devices":["tablet","phone"],"name":"Content","sticky":false,"location":"Content","dynamic":{"pageSelector":"body.single, body.page:not(.home)","spacing":0.85,"max":3,"lazyMax":96,"enable":true,"lazy":true,"elementSelector":".entry-content > .wpb_wrapper > *:not(h2):not(h3)","skip":4,"classNames":[],"position":"afterend","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[728,90],[336,280],[320,50],[468,60],[970,90],[250,250],[1,1],[320,100],[970,250],[1,2],[300,50],[300,300],[552,334],[728,250],[300,250]],"priority":199,"autosize":true},{"sequence":1,"thirdPartyAdUnitName":null,"targeting":[{"value":["Recipe"],"key":"location"}],"devices":["desktop","tablet"],"name":"Recipe_1","sticky":false,"location":"Recipe","dynamic":{"pageSelector":"","spacing":0.6,"max":4,"lazyMax":95,"enable":true,"lazy":true,"elementSelector":".wprm-recipe-equipment-container li, .wprm-recipe-ingredients-container li, .wprm-recipe-instructions-container li, .wprm-recipe-notes-container li, wprm-recipe-notes-container span, .wprm-recipe-notes-container p, .wprm-nutrition-label-container","skip":0,"classNames":[],"position":"beforebegin","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[320,50],[250,250],[1,1],[320,100],[1,2],[300,50],[320,300],[300,390],[300,250]],"priority":-101,"autosize":true},{"sequence":5,"thirdPartyAdUnitName":null,"targeting":[{"value":["Recipe"],"key":"location"}],"devices":["phone"],"name":"Recipe_5","sticky":false,"location":"Recipe","dynamic":{"pageSelector":"","spacing":0,"max":1,"lazyMax":0,"enable":true,"lazy":false,"elementSelector":".wprm-recipe-ingredients-container","skip":0,"classNames":[],"position":"beforebegin","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[320,50],[250,250],[1,1],[320,100],[1,2],[300,50],[320,300],[300,390],[300,250]],"priority":-105,"autosize":true},{"sequence":1,"thirdPartyAdUnitName":null,"targeting":[{"value":["Recipe"],"key":"location"}],"devices":["phone"],"name":"Recipe_1","sticky":false,"location":"Recipe","dynamic":{"pageSelector":"","spacing":0.7,"max":0,"lazyMax":98,"enable":true,"lazy":true,"elementSelector":".wprm-recipe-ingredients-container, .wprm-recipe-instructions-container li, .wprm-recipe-notes-container li, .wprm-recipe-notes-container span, .wprm-recipe-notes-container p, .wprm-nutrition-label-container","skip":0,"classNames":[],"position":"afterend","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[320,50],[250,250],[1,1],[320,100],[1,2],[300,50],[320,300],[300,390],[300,250]],"priority":-101,"autosize":true},{"sequence":null,"thirdPartyAdUnitName":null,"targeting":[{"value":["Below Post"],"key":"location"}],"devices":["desktop","tablet","phone"],"name":"Below_Post","sticky":false,"location":"Below Post","dynamic":{"pageSelector":"","spacing":0.8,"max":0,"lazyMax":10,"enable":true,"lazy":true,"elementSelector":".related-posts, .comments-list > li, .comment-respond","skip":0,"classNames":[],"position":"afterend","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[728,90],[336,280],[320,50],[468,60],[250,250],[1,1],[320,100],[300,250],[970,250],[728,250]],"priority":99,"autosize":true},{"sequence":null,"thirdPartyAdUnitName":null,"targeting":[{"value":["Footer"],"key":"location"},{"value":true,"key":"sticky"}],"devices":["desktop","phone","tablet"],"name":"Footer","sticky":true,"location":"Footer","dynamic":{"pageSelector":"","spacing":0,"max":1,"lazyMax":null,"enable":true,"lazy":false,"elementSelector":"body","skip":0,"classNames":[],"position":"beforeend","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[320,50],[320,100],[728,90],[970,90],[468,60],[1,1],[300,50]],"priority":-1,"autosize":true},{"sequence":1,"thirdPartyAdUnitName":null,"targeting":[{"value":["Sidebar"],"key":"location"}],"devices":["desktop"],"name":"Sidebar_1","sticky":false,"location":"Sidebar","dynamic":{"pageSelector":"","spacing":0,"max":1,"lazyMax":null,"enable":true,"lazy":false,"elementSelector":".elementor-element-8adfeaa > .elementor-element-da769cb","skip":0,"classNames":[],"position":"afterend","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[160,600],[336,280],[320,50],[300,600],[250,250],[1,1],[320,100],[300,1050],[300,50],[300,420],[300,250]],"priority":299,"autosize":true},{"sequence":9,"thirdPartyAdUnitName":null,"targeting":[{"value":["Sidebar"],"key":"location"},{"value":true,"key":"sticky"}],"devices":["desktop"],"name":"Sidebar_9","sticky":true,"location":"Sidebar","dynamic":{"pageSelector":"","spacing":0,"max":1,"lazyMax":null,"enable":true,"lazy":false,"elementSelector":".elementor-element-8adfeaa","skip":0,"classNames":[],"position":"beforeend","every":1,"enabled":true},"stickyOverlapSelector":".main-footer","adSizes":[[160,600],[336,280],[320,50],[300,600],[250,250],[1,1],[320,100],[300,1050],[300,50],[300,420],[300,250]],"priority":291,"autosize":true},{"sequence":null,"thirdPartyAdUnitName":null,"targeting":[{"value":["Content"],"key":"location"}],"devices":["desktop","tablet","phone"],"name":"Content","sticky":false,"location":"Content","dynamic":{"pageSelector":"body.home","spacing":0,"max":1,"lazyMax":3,"enable":true,"lazy":true,"elementSelector":".elementor-5297 > div","skip":2,"classNames":[],"position":"afterend","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[728,90],[336,280],[320,50],[468,60],[970,90],[250,250],[1,1],[320,100],[970,250],[1,2],[300,50],[300,300],[552,334],[728,250],[300,250]],"priority":199,"autosize":true},{"sequence":null,"thirdPartyAdUnitName":null,"targeting":[{"value":["Content"],"key":"location"}],"devices":["desktop"],"name":"Content","sticky":false,"location":"Content","dynamic":{"pageSelector":"body.single, body.page:not(.home)","spacing":0.85,"max":4,"lazyMax":95,"enable":true,"lazy":true,"elementSelector":".post-content > *:not(h2):not(h3)","skip":4,"classNames":[],"position":"afterend","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[728,90],[336,280],[320,50],[468,60],[970,90],[250,250],[1,1],[320,100],[970,250],[1,2],[300,50],[300,300],[552,334],[728,250],[300,250]],"priority":199,"autosize":true},{"sequence":null,"thirdPartyAdUnitName":null,"targeting":[{"value":["Content"],"key":"location"}],"devices":["tablet","phone"],"name":"Content","sticky":false,"location":"Content","dynamic":{"pageSelector":"body.single, body.page:not(.home)","spacing":0.85,"max":3,"lazyMax":96,"enable":true,"lazy":true,"elementSelector":".post-content > *:not(h2):not(h3)","skip":4,"classNames":[],"position":"afterend","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[728,90],[336,280],[320,50],[468,60],[970,90],[250,250],[1,1],[320,100],[970,250],[1,2],[300,50],[300,300],[552,334],[728,250],[300,250]],"priority":199,"autosize":true},{"sequence":null,"thirdPartyAdUnitName":null,"targeting":[{"value":["Below Post"],"key":"location"}],"devices":["desktop","tablet","phone"],"name":"Below_Post","sticky":false,"location":"Below Post","dynamic":{"pageSelector":"","spacing":0.8,"max":0,"lazyMax":10,"enable":true,"lazy":true,"elementSelector":".elementor-widget-post-comments , .comments-list > li, .comment-respond","skip":0,"classNames":[],"position":"afterend","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[728,90],[336,280],[320,50],[468,60],[250,250],[1,1],[320,100],[300,250],[970,250],[728,250]],"priority":99,"autosize":true}],"adDensityLayout":{"mobile":{"adDensity":0.24,"onePerViewport":false},"pageOverrides":[],"desktop":{"adDensity":0.22,"onePerViewport":false}},"adDensityEnabled":true,"siteExperiments":[],"adTypes":{"sponsorTileDesktop":true,"interscrollerDesktop":true,"nativeBelowPostDesktop":true,"miniscroller":true,"largeFormatsMobile":true,"nativeMobileContent":true,"inRecipeRecommendationMobile":true,"nativeMobileRecipe":true,"sponsorTileMobile":true,"expandableCatalogAdsMobile":true,"frameAdsMobile":true,"outstreamMobile":true,"nativeHeaderMobile":true,"frameAdsDesktop":true,"inRecipeRecommendationDesktop":true,"expandableFooterDesktop":true,"nativeDesktopContent":true,"outstreamDesktop":true,"animatedFooter":true,"skylineHeader":false,"expandableFooter":true,"nativeDesktopSidebar":true,"videoFootersMobile":true,"videoFootersDesktop":true,"interscroller":true,"nativeDesktopRecipe":true,"nativeHeaderDesktop":true,"nativeBelowPostMobile":true,"expandableCatalogAdsDesktop":true,"largeFormatsDesktop":true},"adOptions":{"theTradeDesk":true,"rtbhouse":true,"undertone":true,"sidebarConfig":{"dynamicStickySidebar":{"minHeight":2100,"enabled":true,"blockedSelectors":[]}},"footerCloseButton":true,"teads":true,"seedtag":true,"pmp":true,"thirtyThreeAcross":true,"sharethrough":true,"optimizeVideoPlayersForEarnings":true,"removeVideoTitleWrapper":true,"pubMatic":true,"infiniteScroll":false,"longerVideoAdPod":true,"yahoossp":false,"spa":false,"stickyContainerConfig":{"recipeDesktop":{"minHeight":null,"enabled":false},"blockedSelectors":[],"stickyHeaderSelectors":[],"content":{"minHeight":null,"enabled":false},"recipeMobile":{"minHeight":null,"enabled":false}},"sonobi":true,"gatedPrint":{"siteEmailServiceProviderId":null,"defaultOptIn":false,"enabled":false,"newsletterPromptEnabled":false},"yieldmo":true,"footerSelector":"","consentMode":{"enabled":false,"customVendorList":""},"amazonUAM":true,"gamMCMEnabled":true,"gamMCMChildNetworkCode":"22858321641","rubicon":true,"conversant":true,"openx":true,"customCreativeEnabled":true,"secColor":"#000000","unruly":true,"mediaGrid":true,"bRealTime":true,"adInViewTime":null,"gumgum":true,"comscoreFooter":true,"desktopInterstitial":true,"amx":true,"footerCloseButtonDesktop":false,"ozone":true,"isAutoOptimized":true,"adform":true,"comscoreTAL":true,"targetaff":false,"bgColor":"#FFFFFF","advancePlaylistOptions":{"playlistPlayer":{"enabled":true},"relatedPlayer":{"enabled":true,"applyToFirst":true}},"kargo":true,"liveRampATS":true,"footerCloseButtonMobile":false,"interstitialBlockedPageSelectors":"","prioritizeShorterVideoAds":true,"allowSmallerAdSizes":true,"comscore":"Food","blis":true,"wakeLock":{"desktopEnabled":true,"mobileValue":15,"mobileEnabled":true,"desktopValue":30},"mobileInterstitial":true,"tripleLift":true,"sensitiveCategories":["alc","ast","cbd","conl","cosm","dat","drg","gamc","gamv","pol","rel","sst","ssr","srh","ske","tob","wtl"],"liveRamp":true,"adthriveEmailIdentity":true,"criteo":true,"nativo":true,"infiniteScrollOptions":{"selector":"","heightThreshold":0},"siteAttributes":{"mobileHeaderSelectors":[],"desktopHeaderSelectors":[]},"dynamicContentSlotLazyLoading":true,"clsOptimizedAds":true,"ogury":true,"verticals":["Food"],"inImage":false,"stackadapt":true,"usCMP":{"defaultOptIn":false,"enabled":false,"regions":[]},"advancePlaylist":true,"medianet":true,"delayLoading":false,"inImageZone":null,"appNexus":true,"rise":true,"liveRampId":"","infiniteScrollRefresh":false,"indexExchange":true},"siteAdsProfiles":[],"thirdPartySiteConfig":{"partners":{"discounts":[]}},"featureRollouts":{"erp":{"featureRolloutId":19,"data":null,"enabled":false}},"videoPlayers":{"contextual":{"autoplayCollapsibleEnabled":false,"overrideEmbedLocation":false,"defaultPlayerType":"static"},"videoEmbed":"wordpress","footerSelector":"","contentSpecificPlaylists":[],"players":[{"playlistId":"cvSKjJpp","pageSelector":"","devices":["mobile","desktop"],"description":"","skip":0,"title":"Stationary related player - desktop and mobile","type":"stationaryRelated","enabled":true,"formattedType":"Stationary Related","elementSelector":"","id":4081030,"position":"","saveVideoCloseState":false,"shuffle":false,"adPlayerTitle":"Stationary related player - desktop and mobile","playerId":"HTznQQV0"},{"playlistId":"cvSKjJpp","pageSelector":"body.single, body.page:not(.home)","devices":["desktop"],"description":"","skip":2,"title":"","type":"stickyPlaylist","enabled":true,"formattedType":"Sticky Playlist","elementSelector":".elementor-widget-theme-post-content > *:not(h2):not(h3),\n\n.entry-content > .wpb_wrapper > *:not(h2):not(h3)","id":4081032,"position":"afterend","saveVideoCloseState":false,"shuffle":false,"adPlayerTitle":"MY LATEST VIDEOS","mobileHeaderSelector":null,"playerId":"HTznQQV0"},{"playlistId":"cvSKjJpp","pageSelector":"body.single, body.page:not(.home)","devices":["mobile"],"mobileLocation":"top-center","description":"","skip":2,"title":"","type":"stickyPlaylist","enabled":true,"formattedType":"Sticky Playlist","elementSelector":".elementor-widget-theme-post-content > *:not(h2):not(h3),\n\n.entry-content > .wpb_wrapper > *:not(h2):not(h3)","id":4081031,"position":"afterend","saveVideoCloseState":false,"shuffle":false,"adPlayerTitle":"MY LATEST VIDEOS","mobileHeaderSelector":".top-bar-content ","playerId":"HTznQQV0"}],"partners":{"theTradeDesk":true,"unruly":true,"mediaGrid":true,"undertone":true,"gumgum":true,"seedtag":true,"amx":true,"ozone":true,"adform":true,"pmp":true,"kargo":true,"connatix":true,"stickyOutstream":{"desktop":{"enabled":true},"blockedPageSelectors":"","mobileLocation":"bottom-left","allowOnHomepage":true,"mobile":{"enabled":true},"saveVideoCloseState":false,"mobileHeaderSelector":".top-bar-content ","allowForPageWithStickyPlayer":{"enabled":true}},"sharethrough":true,"blis":true,"tripleLift":true,"pubMatic":true,"criteo":true,"yahoossp":false,"nativo":true,"stackadapt":true,"yieldmo":true,"amazonUAM":true,"medianet":true,"rubicon":true,"appNexus":true,"rise":true,"openx":true,"indexExchange":true}}};</script>
<script data-no-optimize="1" data-cfasync="false">
(function(w, d) {
w.adthrive = w.adthrive || {};
w.adthrive.cmd = w.adthrive.cmd || [];
w.adthrive.plugin = 'adthrive-ads-3.10.0';
w.adthrive.host = 'ads.adthrive.com';
w.adthrive.integration = 'plugin';
var commitParam = (w.adthriveCLS && w.adthriveCLS.bucket !== 'prod' && w.adthriveCLS.branch) ? '&commit=' + w.adthriveCLS.branch : '';
var s = d.createElement('script');
s.async = true;
s.referrerpolicy='no-referrer-when-downgrade';
s.src = 'https://' + w.adthrive.host + '/sites/6398e2906adaf54dcddbee8e/ads.min.js?referrer=' + w.encodeURIComponent(w.location.href) + commitParam + '&cb=' + (Math.floor(Math.random() * 100) + 1) + '';
var n = d.getElementsByTagName('script')[0];
n.parentNode.insertBefore(s, n);
})(window, document);
</script>
<link rel="dns-prefetch" href="https://ads.adthrive.com/"><link rel="preconnect" href="https://ads.adthrive.com/"><link rel="preconnect" href="https://ads.adthrive.com/" crossorigin>
<!-- This site is optimized with the Yoast SEO plugin v26.4 - https://yoast.com/wordpress/plugins/seo/ -->
<title>Classic Chocolate Cake Recipe (step-by-step video) | How To Cook.Recipes</title><style id="perfmatters-used-css">:where(.wp-block-button__link){border-radius:9999px;box-shadow:none;padding:calc(.667em + 2px) calc(1.333em + 2px);text-decoration:none;}:root :where(.wp-block-button .wp-block-button__link.is-style-outline),:root :where(.wp-block-button.is-style-outline>.wp-block-button__link){border:2px solid;padding:.667em 1.333em;}:root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-text-color)),:root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-text-color)){color:currentColor;}:root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-background)),:root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background)){background-color:initial;background-image:none;}:where(.wp-block-columns){margin-bottom:1.75em;}:where(.wp-block-columns.has-background){padding:1.25em 2.375em;}:where(.wp-block-post-comments input[type=submit]){border:none;}:where(.wp-block-cover-image:not(.has-text-color)),:where(.wp-block-cover:not(.has-text-color)){color:#fff;}:where(.wp-block-cover-image.is-light:not(.has-text-color)),:where(.wp-block-cover.is-light:not(.has-text-color)){color:#000;}:root :where(.wp-block-cover h1:not(.has-text-color)),:root :where(.wp-block-cover h2:not(.has-text-color)),:root :where(.wp-block-cover h3:not(.has-text-color)),:root :where(.wp-block-cover h4:not(.has-text-color)),:root :where(.wp-block-cover h5:not(.has-text-color)),:root :where(.wp-block-cover h6:not(.has-text-color)),:root :where(.wp-block-cover p:not(.has-text-color)){color:inherit;}:where(.wp-block-file){margin-bottom:1.5em;}:where(.wp-block-file__button){border-radius:2em;display:inline-block;padding:.5em 1em;}:where(.wp-block-file__button):is(a):active,:where(.wp-block-file__button):is(a):focus,:where(.wp-block-file__button):is(a):hover,:where(.wp-block-file__button):is(a):visited{box-shadow:none;color:#fff;opacity:.85;text-decoration:none;}:where(.wp-block-group.wp-block-group-is-layout-constrained){position:relative;}.wp-block-image>a,.wp-block-image>figure>a{display:inline-block;}.wp-block-image img{box-sizing:border-box;height:auto;max-width:100%;vertical-align:bottom;}.wp-block-image[style*=border-radius] img,.wp-block-image[style*=border-radius]>a{border-radius:inherit;}.wp-block-image :where(figcaption){margin-bottom:1em;margin-top:.5em;}.wp-block-image figure{margin:0;}@keyframes show-content-image{0%{visibility:hidden;}99%{visibility:hidden;}to{visibility:visible;}}@keyframes turn-on-visibility{0%{opacity:0;}to{opacity:1;}}@keyframes turn-off-visibility{0%{opacity:1;visibility:visible;}99%{opacity:0;visibility:visible;}to{opacity:0;visibility:hidden;}}@keyframes lightbox-zoom-in{0%{transform:translate(calc(( -100vw + var(--wp--lightbox-scrollbar-width) ) / 2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale));}to{transform:translate(-50%,-50%) scale(1);}}@keyframes lightbox-zoom-out{0%{transform:translate(-50%,-50%) scale(1);visibility:visible;}99%{visibility:visible;}to{transform:translate(calc(( -100vw + var(--wp--lightbox-scrollbar-width) ) / 2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale));visibility:hidden;}}:where(.wp-block-latest-comments:not([style*=line-height] .wp-block-latest-comments__comment)){line-height:1.1;}:where(.wp-block-latest-comments:not([style*=line-height] .wp-block-latest-comments__comment-excerpt p)){line-height:1.8;}:root :where(.wp-block-latest-posts.is-grid){padding:0;}:root :where(.wp-block-latest-posts.wp-block-latest-posts__list){padding-left:0;}ol,ul{box-sizing:border-box;}:root :where(.wp-block-list.has-background){padding:1.25em 2.375em;}:where(.wp-block-navigation.has-background .wp-block-navigation-item a:not(.wp-element-button)),:where(.wp-block-navigation.has-background .wp-block-navigation-submenu a:not(.wp-element-button)){padding:.5em 1em;}:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item a:not(.wp-element-button)),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu a:not(.wp-element-button)),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu button.wp-block-navigation-item__content),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-pages-list__item button.wp-block-navigation-item__content){padding:.5em 1em;}@keyframes overlay-menu__fade-in-animation{0%{opacity:0;transform:translateY(.5em);}to{opacity:1;transform:translateY(0);}}:root :where(p.has-background){padding:1.25em 2.375em;}:where(p.has-text-color:not(.has-link-color)) a{color:inherit;}:where(.wp-block-post-comments-form) input:not([type=submit]),:where(.wp-block-post-comments-form) textarea{border:1px solid #949494;font-family:inherit;font-size:1em;}:where(.wp-block-post-comments-form) input:where(:not([type=submit]):not([type=checkbox])),:where(.wp-block-post-comments-form) textarea{padding:calc(.667em + 2px);}:where(.wp-block-post-excerpt){box-sizing:border-box;margin-bottom:var(--wp--style--block-gap);margin-top:var(--wp--style--block-gap);}:where(.wp-block-preformatted.has-background){padding:1.25em 2.375em;}.wp-block-query-title,.wp-block-query-total,.wp-block-quote{box-sizing:border-box;}.wp-block-quote{overflow-wrap:break-word;}.wp-block-quote>cite{display:block;}:where(.wp-block-search__button){border:1px solid #ccc;padding:6px 10px;}:where(.wp-block-search__input){font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;text-transform:inherit;}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper){border:1px solid #949494;box-sizing:border-box;padding:4px;}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) :where(.wp-block-search__button){padding:4px 8px;}.wp-block-separator{border:none;border-top:2px solid;}:root :where(.wp-block-separator.is-style-dots){height:auto;line-height:1;text-align:center;}:root :where(.wp-block-separator.is-style-dots):before{color:currentColor;content:"···";font-family:serif;font-size:1.5em;letter-spacing:2em;padding-left:2em;}:root :where(.wp-block-site-logo.is-style-rounded){border-radius:9999px;}:root :where(.wp-block-social-links .wp-social-link a){padding:.25em;}:root :where(.wp-block-social-links.is-style-logos-only .wp-social-link a){padding:0;}:root :where(.wp-block-social-links.is-style-pill-shape .wp-social-link a){padding-left:.6666666667em;padding-right:.6666666667em;}:root :where(.wp-block-tag-cloud.is-style-outline){display:flex;flex-wrap:wrap;gap:1ch;}:root :where(.wp-block-tag-cloud.is-style-outline a){border:1px solid;font-size:unset !important;margin-right:0;padding:1ch 2ch;text-decoration:none !important;}:root :where(.wp-block-table-of-contents){box-sizing:border-box;}:where(.wp-block-term-description){box-sizing:border-box;margin-bottom:var(--wp--style--block-gap);margin-top:var(--wp--style--block-gap);}:where(pre.wp-block-verse){font-family:inherit;}a[data-fn].fn{counter-increment:footnotes;display:inline-flex;font-size:smaller;text-decoration:none;text-indent:-9999999px;vertical-align:super;}a[data-fn].fn:after{content:"[" counter(footnotes) "]";float:left;text-indent:0;}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px;}.screen-reader-text{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal !important;}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000;}html :where(.has-border-color){border-style:solid;}html :where([style*=border-top-color]){border-top-style:solid;}html :where([style*=border-right-color]){border-right-style:solid;}html :where([style*=border-bottom-color]){border-bottom-style:solid;}html :where([style*=border-left-color]){border-left-style:solid;}html :where([style*=border-width]){border-style:solid;}html :where([style*=border-top-width]){border-top-style:solid;}html :where([style*=border-right-width]){border-right-style:solid;}html :where([style*=border-bottom-width]){border-bottom-style:solid;}html :where([style*=border-left-width]){border-left-style:solid;}html :where(img[class*=wp-image-]){height:auto;max-width:100%;}:where(figure){margin:0 0 1em;}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px);}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px;}}html{line-height:1.15;-webkit-text-size-adjust:100%;}*,:after,:before{box-sizing:border-box;}body{background-color:#fff;color:#333;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-size:1rem;font-weight:400;line-height:1.5;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}h1,h2,h3,h4,h5,h6{color:inherit;font-family:inherit;font-weight:500;line-height:1.2;margin-block-end:1rem;margin-block-start:.5rem;}h1{font-size:2.5rem;}h2{font-size:2rem;}h3{font-size:1.75rem;}h4{font-size:1.5rem;}h5{font-size:1.25rem;}h6{font-size:1rem;}p{margin-block-end:.9rem;margin-block-start:0;}hr{box-sizing:content-box;height:0;overflow:visible;}a{background-color:transparent;color:#c36;text-decoration:none;}a:active,a:hover{color:#336;}a:not([href]):not([tabindex]),a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none;}a:not([href]):not([tabindex]):focus{outline:0;}b,strong{font-weight:bolder;}small{font-size:80%;}img{border-style:none;height:auto;max-width:100%;}[hidden],template{display:none;}@media print{*,:after,:before{background:transparent !important;box-shadow:none !important;color:#000 !important;text-shadow:none !important;}a,a:visited{text-decoration:underline;}a[href]:after{content:" (" attr(href) ")";}a[href^="#"]:after,a[href^="javascript:"]:after{content:"";}blockquote,pre{-moz-column-break-inside:avoid;border:1px solid #ccc;break-inside:avoid;}img,tr{-moz-column-break-inside:avoid;break-inside:avoid;}h2,h3,p{orphans:3;widows:3;}h2,h3{-moz-column-break-after:avoid;break-after:avoid;}}label{display:inline-block;line-height:1;vertical-align:middle;}button,input,optgroup,select,textarea{font-family:inherit;font-size:1rem;line-height:1.5;margin:0;}input[type=date],input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],select,textarea{border:1px solid #666;border-radius:3px;padding:.5rem 1rem;transition:all .3s;width:100%;}input[type=date]:focus,input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,select:focus,textarea:focus{border-color:#333;}button,input{overflow:visible;}button,select{text-transform:none;}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;width:auto;}[type=button],[type=submit],button{background-color:transparent;border:1px solid #c36;border-radius:3px;color:#c36;display:inline-block;font-size:1rem;font-weight:400;padding:.5rem 1rem;text-align:center;transition:all .3s;-webkit-user-select:none;-moz-user-select:none;user-select:none;white-space:nowrap;}[type=button]:focus:not(:focus-visible),[type=submit]:focus:not(:focus-visible),button:focus:not(:focus-visible){outline:none;}[type=button]:focus,[type=button]:hover,[type=submit]:focus,[type=submit]:hover,button:focus,button:hover{background-color:#c36;color:#fff;text-decoration:none;}[type=button]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer;}fieldset{padding:.35em .75em .625em;}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal;}textarea{overflow:auto;resize:vertical;}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0;}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto;}[type=search]{-webkit-appearance:textfield;outline-offset:-2px;}[type=search]::-webkit-search-decoration{-webkit-appearance:none;}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit;}dd,dl,dt,li,ol,ul{background:transparent;border:0;font-size:100%;margin-block-end:0;margin-block-start:0;outline:0;vertical-align:baseline;}.comments-area a,.page-content a{text-decoration:underline;}.screen-reader-text{clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;position:absolute !important;width:1px;word-wrap:normal !important;}.screen-reader-text:focus{background-color:#eee;clip:auto !important;clip-path:none;color:#333;display:block;font-size:1rem;height:auto;left:5px;line-height:normal;padding:12px 24px;text-decoration:none;top:5px;width:auto;z-index:100000;}#comments .comment-list{font-size:.9em;list-style:none;margin:0;padding:0;}#comments .comment,#comments .pingback{position:relative;}#comments .comment .comment-body,#comments .pingback .comment-body{border-block-end:1px solid #ccc;display:flex;flex-direction:column;padding-block-end:30px;padding-block-start:30px;padding-inline-end:0;padding-inline-start:60px;}#comments .comment .avatar,#comments .pingback .avatar{border-radius:50%;left:0;margin-inline-end:10px;position:absolute;}body.rtl #comments .comment .avatar,body.rtl #comments .pingback .avatar,html[dir=rtl] #comments .comment .avatar,html[dir=rtl] #comments .pingback .avatar{left:auto;right:0;}#comments .comment-meta{display:flex;justify-content:space-between;margin-block-end:.9rem;}#comments .comment-metadata,#comments .reply{font-size:11px;line-height:1;}@media (min-width:768px){#comments .comment-author,#comments .comment-metadata{line-height:1;}}@media (max-width:767px){#comments .comment .comment-body{padding:30px 0;}#comments .comment .avatar{float:left;position:inherit;}body.rtl #comments .comment .avatar,html[dir=rtl] #comments .comment .avatar{float:right;}}:root{--direction-multiplier:1;}body.rtl,html[dir=rtl]{--direction-multiplier:-1;}.elementor-screen-only,.screen-reader-text,.screen-reader-text span,.ui-helper-hidden-accessible{height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;top:-10000em;width:1px;clip:rect(0,0,0,0);border:0;}.elementor *,.elementor :after,.elementor :before{box-sizing:border-box;}.elementor a{box-shadow:none;text-decoration:none;}.elementor hr{background-color:transparent;margin:0;}.elementor img{border:none;border-radius:0;box-shadow:none;height:auto;max-width:100%;}.elementor .elementor-widget:not(.elementor-widget-text-editor):not(.elementor-widget-theme-post-content) figure{margin:0;}.elementor embed,.elementor iframe,.elementor object,.elementor video{border:none;line-height:1;margin:0;max-width:100%;width:100%;}.elementor-element{--flex-direction:initial;--flex-wrap:initial;--justify-content:initial;--align-items:initial;--align-content:initial;--gap:initial;--flex-basis:initial;--flex-grow:initial;--flex-shrink:initial;--order:initial;--align-self:initial;align-self:var(--align-self);flex-basis:var(--flex-basis);flex-grow:var(--flex-grow);flex-shrink:var(--flex-shrink);order:var(--order);}.elementor-element:where(.e-con-full,.elementor-widget){align-content:var(--align-content);align-items:var(--align-items);flex-direction:var(--flex-direction);flex-wrap:var(--flex-wrap);gap:var(--row-gap) var(--column-gap);justify-content:var(--justify-content);}.elementor-align-right{text-align:right;}.elementor-align-left{text-align:left;}.elementor-align-center .elementor-button,.elementor-align-left .elementor-button,.elementor-align-right .elementor-button{width:auto;}:root{--page-title-display:block;}.elementor-page-title,h1.entry-title{display:var(--page-title-display);}@keyframes eicon-spin{0%{transform:rotate(0deg);}to{transform:rotate(359deg);}}.elementor-widget{position:relative;}.elementor-widget:not(:last-child){margin-bottom:var(--kit-widget-spacing,20px);}.elementor-widget:not(:last-child).elementor-absolute,.elementor-widget:not(:last-child).elementor-widget__width-auto,.elementor-widget:not(:last-child).elementor-widget__width-initial{margin-bottom:0;}.elementor-column{display:flex;min-height:1px;position:relative;}@media (min-width:768px){.elementor-column.elementor-col-10,.elementor-column[data-col="10"]{width:10%;}.elementor-column.elementor-col-11,.elementor-column[data-col="11"]{width:11.111%;}.elementor-column.elementor-col-12,.elementor-column[data-col="12"]{width:12.5%;}.elementor-column.elementor-col-14,.elementor-column[data-col="14"]{width:14.285%;}.elementor-column.elementor-col-16,.elementor-column[data-col="16"]{width:16.666%;}.elementor-column.elementor-col-20,.elementor-column[data-col="20"]{width:20%;}.elementor-column.elementor-col-25,.elementor-column[data-col="25"]{width:25%;}.elementor-column.elementor-col-30,.elementor-column[data-col="30"]{width:30%;}.elementor-column.elementor-col-33,.elementor-column[data-col="33"]{width:33.333%;}.elementor-column.elementor-col-40,.elementor-column[data-col="40"]{width:40%;}.elementor-column.elementor-col-50,.elementor-column[data-col="50"]{width:50%;}.elementor-column.elementor-col-60,.elementor-column[data-col="60"]{width:60%;}.elementor-column.elementor-col-66,.elementor-column[data-col="66"]{width:66.666%;}.elementor-column.elementor-col-70,.elementor-column[data-col="70"]{width:70%;}.elementor-column.elementor-col-75,.elementor-column[data-col="75"]{width:75%;}.elementor-column.elementor-col-80,.elementor-column[data-col="80"]{width:80%;}.elementor-column.elementor-col-83,.elementor-column[data-col="83"]{width:83.333%;}.elementor-column.elementor-col-90,.elementor-column[data-col="90"]{width:90%;}.elementor-column.elementor-col-100,.elementor-column[data-col="100"]{width:100%;}}@media (max-width:767px){.elementor-column{width:100%;}}.elementor-grid{display:grid;grid-column-gap:var(--grid-column-gap);grid-row-gap:var(--grid-row-gap);}.elementor-grid .elementor-grid-item{min-width:0;}.elementor-grid-0 .elementor-grid{display:inline-block;margin-bottom:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap);}.elementor-grid-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-bottom:var(--grid-row-gap);word-break:break-word;}.elementor-grid-1 .elementor-grid{grid-template-columns:repeat(1,1fr);}.elementor-grid-5 .elementor-grid{grid-template-columns:repeat(5,1fr);}@media (max-width:1024px){.elementor-grid-tablet-1 .elementor-grid{grid-template-columns:repeat(1,1fr);}.elementor-grid-tablet-2 .elementor-grid{grid-template-columns:repeat(2,1fr);}}@media (max-width:767px){.elementor-grid-mobile-1 .elementor-grid{grid-template-columns:repeat(1,1fr);}}@media (min-width:1025px){#elementor-device-mode:after{content:"desktop";}}@media (min-width:-1){#elementor-device-mode:after{content:"widescreen";}}@media (max-width:-1){#elementor-device-mode:after{content:"laptop";content:"tablet_extra";}}@media (max-width:1024px){#elementor-device-mode:after{content:"tablet";}}@media (max-width:-1){#elementor-device-mode:after{content:"mobile_extra";}}@media (max-width:767px){#elementor-device-mode:after{content:"mobile";}}@media (prefers-reduced-motion:no-preference){html{scroll-behavior:smooth;}}.e-con{--border-radius:0;--border-top-width:0px;--border-right-width:0px;--border-bottom-width:0px;--border-left-width:0px;--border-style:initial;--border-color:initial;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--content-width:min(100%,var(--container-max-width,1140px));--width:100%;--min-height:initial;--height:auto;--text-align:initial;--margin-top:0px;--margin-right:0px;--margin-bottom:0px;--margin-left:0px;--padding-top:var(--container-default-padding-top,10px);--padding-right:var(--container-default-padding-right,10px);--padding-bottom:var(--container-default-padding-bottom,10px);--padding-left:var(--container-default-padding-left,10px);--position:relative;--z-index:revert;--overflow:visible;--gap:var(--widgets-spacing,20px);--row-gap:var(--widgets-spacing-row,20px);--column-gap:var(--widgets-spacing-column,20px);--overlay-mix-blend-mode:initial;--overlay-opacity:1;--overlay-transition:.3s;--e-con-grid-template-columns:repeat(3,1fr);--e-con-grid-template-rows:repeat(2,1fr);border-radius:var(--border-radius);height:var(--height);min-height:var(--min-height);min-width:0;overflow:var(--overflow);position:var(--position);width:var(--width);z-index:var(--z-index);--flex-wrap-mobile:wrap;margin-block-end:var(--margin-block-end);margin-block-start:var(--margin-block-start);margin-inline-end:var(--margin-inline-end);margin-inline-start:var(--margin-inline-start);padding-inline-end:var(--padding-inline-end);padding-inline-start:var(--padding-inline-start);}.e-con:where(:not(.e-div-block-base)){transition:background var(--background-transition,.3s),border var(--border-transition,.3s),box-shadow var(--border-transition,.3s),transform var(--e-con-transform-transition-duration,.4s);}.e-con{--margin-block-start:var(--margin-top);--margin-block-end:var(--margin-bottom);--margin-inline-start:var(--margin-left);--margin-inline-end:var(--margin-right);--padding-inline-start:var(--padding-left);--padding-inline-end:var(--padding-right);--padding-block-start:var(--padding-top);--padding-block-end:var(--padding-bottom);--border-block-start-width:var(--border-top-width);--border-block-end-width:var(--border-bottom-width);--border-inline-start-width:var(--border-left-width);--border-inline-end-width:var(--border-right-width);}.e-con.e-flex{--flex-direction:column;--flex-basis:auto;--flex-grow:0;--flex-shrink:1;flex:var(--flex-grow) var(--flex-shrink) var(--flex-basis);}.e-con-full,.e-con>.e-con-inner{padding-block-end:var(--padding-block-end);padding-block-start:var(--padding-block-start);text-align:var(--text-align);}.e-con-full.e-flex,.e-con.e-flex>.e-con-inner{flex-direction:var(--flex-direction);}.e-con,.e-con>.e-con-inner{display:var(--display);}.e-con.e-grid{--grid-justify-content:start;--grid-align-content:start;--grid-auto-flow:row;}.e-con.e-grid,.e-con.e-grid>.e-con-inner{align-content:var(--grid-align-content);align-items:var(--align-items);grid-auto-flow:var(--grid-auto-flow);grid-template-columns:var(--e-con-grid-template-columns);grid-template-rows:var(--e-con-grid-template-rows);justify-content:var(--grid-justify-content);justify-items:var(--justify-items);}.e-con-boxed.e-flex{align-content:normal;align-items:normal;flex-direction:column;flex-wrap:nowrap;justify-content:normal;}.e-con-boxed.e-grid{grid-template-columns:1fr;grid-template-rows:1fr;justify-items:legacy;}.e-con-boxed{gap:initial;text-align:initial;}.e-con.e-flex>.e-con-inner{align-content:var(--align-content);align-items:var(--align-items);align-self:auto;flex-basis:auto;flex-grow:1;flex-shrink:1;flex-wrap:var(--flex-wrap);justify-content:var(--justify-content);}.e-con.e-grid>.e-con-inner{align-items:var(--align-items);justify-items:var(--justify-items);}.e-con>.e-con-inner{gap:var(--row-gap) var(--column-gap);height:100%;margin:0 auto;max-width:var(--content-width);padding-inline-end:0;padding-inline-start:0;width:100%;}:is(.elementor-section-wrap,[data-elementor-id])>.e-con{--margin-left:auto;--margin-right:auto;max-width:min(100%,var(--width));}.e-con .elementor-widget.elementor-widget{margin-block-end:0;}.e-con:before,.e-con>.elementor-background-slideshow:before,.e-con>.elementor-motion-effects-container>.elementor-motion-effects-layer:before,:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container:before{border-block-end-width:var(--border-block-end-width);border-block-start-width:var(--border-block-start-width);border-color:var(--border-color);border-inline-end-width:var(--border-inline-end-width);border-inline-start-width:var(--border-inline-start-width);border-radius:var(--border-radius);border-style:var(--border-style);content:var(--background-overlay);display:block;height:max(100% + var(--border-top-width) + var(--border-bottom-width),100%);left:calc(0px - var(--border-left-width));mix-blend-mode:var(--overlay-mix-blend-mode);opacity:var(--overlay-opacity);position:absolute;top:calc(0px - var(--border-top-width));transition:var(--overlay-transition,.3s);width:max(100% + var(--border-left-width) + var(--border-right-width),100%);}.e-con:before{transition:background var(--overlay-transition,.3s),border-radius var(--border-transition,.3s),opacity var(--overlay-transition,.3s);}.e-con>.elementor-background-slideshow,:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container{border-block-end-width:var(--border-block-end-width);border-block-start-width:var(--border-block-start-width);border-color:var(--border-color);border-inline-end-width:var(--border-inline-end-width);border-inline-start-width:var(--border-inline-start-width);border-radius:var(--border-radius);border-style:var(--border-style);height:max(100% + var(--border-top-width) + var(--border-bottom-width),100%);left:calc(0px - var(--border-left-width));top:calc(0px - var(--border-top-width));width:max(100% + var(--border-left-width) + var(--border-right-width),100%);}@media (max-width:767px){:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container.elementor-hidden-mobile{display:none;}}:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container:before{z-index:1;}:is(.e-con,.e-con>.e-con-inner)>.elementor-background-slideshow:before{z-index:2;}.e-con .elementor-widget{min-width:0;}.e-con>.e-con-inner>.elementor-widget>.elementor-widget-container,.e-con>.elementor-widget>.elementor-widget-container{height:100%;}.e-con.e-con>.e-con-inner>.elementor-widget,.elementor.elementor .e-con>.elementor-widget{max-width:100%;}.e-con .elementor-widget:not(:last-child){--kit-widget-spacing:0px;}@media (max-width:767px){.e-con.e-flex{--width:100%;--flex-wrap:var(--flex-wrap-mobile);}}.elementor-form-fields-wrapper{display:flex;flex-wrap:wrap;}.elementor-field-group{align-items:center;flex-wrap:wrap;}.elementor-field-group.elementor-field-type-submit{align-items:flex-end;}.elementor-field-group .elementor-field-textual{background-color:transparent;border:1px solid #69727d;color:#1f2124;flex-grow:1;max-width:100%;vertical-align:middle;width:100%;}.elementor-field-group .elementor-field-textual:focus{box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);outline:0;}.elementor-field-group .elementor-field-textual::-moz-placeholder{color:inherit;font-family:inherit;opacity:.6;}.elementor-field-group .elementor-field-textual::placeholder{color:inherit;font-family:inherit;opacity:.6;}.elementor-field-label{cursor:pointer;}.elementor-field-textual{border-radius:3px;font-size:15px;line-height:1.4;min-height:40px;padding:5px 14px;}.elementor-field-textual.elementor-size-md{border-radius:4px;font-size:16px;min-height:47px;padding:6px 16px;}.elementor-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:100%;}.elementor-form .elementor-button{border:none;padding-block-end:0;padding-block-start:0;}.elementor-form .elementor-button-content-wrapper,.elementor-form .elementor-button>span{display:flex;flex-direction:row;gap:5px;justify-content:center;}.elementor-form .elementor-button.elementor-size-sm{min-height:40px;}.elementor-form .elementor-button.elementor-size-md{min-height:47px;}.elementor-element:where(:not(.e-con)):where(:not(.e-div-block-base)) .elementor-widget-container,.elementor-element:where(:not(.e-con)):where(:not(.e-div-block-base)):not(:has(.elementor-widget-container)){transition:background .3s,border .3s,border-radius .3s,box-shadow .3s,transform var(--e-transform-transition-duration,.4s);}.elementor-heading-title{line-height:1;margin:0;padding:0;}.elementor-button{background-color:#69727d;border-radius:3px;color:#fff;display:inline-block;font-size:15px;line-height:1;padding:12px 24px;fill:#fff;text-align:center;transition:all .3s;}.elementor-button:focus,.elementor-button:hover,.elementor-button:visited{color:#fff;}.elementor-button-content-wrapper{display:flex;flex-direction:row;gap:5px;justify-content:center;}.elementor-button-icon{align-items:center;display:flex;}.elementor-button-icon svg{height:auto;width:1em;}.elementor-button-icon .e-font-icon-svg{height:1em;}.elementor-button-text{display:inline-block;}.elementor-button.elementor-size-md{border-radius:4px;font-size:16px;padding:15px 30px;}.elementor-button span{text-decoration:inherit;}.elementor-view-stacked .elementor-icon{background-color:#69727d;color:#fff;padding:.5em;fill:#fff;}.elementor-icon{color:#69727d;display:inline-block;font-size:50px;line-height:1;text-align:center;transition:all .3s;}.elementor-icon:hover{color:#69727d;}.elementor-icon i,.elementor-icon svg{display:block;height:1em;position:relative;width:1em;}.elementor-icon i:before,.elementor-icon svg:before{left:50%;position:absolute;transform:translateX(-50%);}.elementor-shape-rounded .elementor-icon{border-radius:10%;}.elementor-shape-circle .elementor-icon{border-radius:50%;}.animated{animation-duration:1.25s;}.animated.animated-slow{animation-duration:2s;}.animated.animated-fast{animation-duration:.75s;}.animated.infinite{animation-iteration-count:infinite;}.animated.reverse{animation-direction:reverse;animation-fill-mode:forwards;}@media (prefers-reduced-motion:reduce){.animated{animation:none !important;}}@media (max-width:767px){.elementor .elementor-hidden-mobile,.elementor .elementor-hidden-phone{display:none;}}@media (min-width:768px) and (max-width:1024px){.elementor .elementor-hidden-tablet{display:none;}}@media (min-width:1025px) and (max-width:99999px){.elementor .elementor-hidden-desktop{display:none;}}.elementor-widget-image{text-align:center;}.elementor-widget-image a{display:inline-block;}.elementor-widget-image a img[src$=".svg"]{width:48px;}.elementor-widget-image img{display:inline-block;vertical-align:middle;}.elementor-widget-search{--e-search-white:#fff;--e-search-light-grey:#cdcdcd;--e-search-medium-grey:#515962;--e-search-dark-grey:#2d2d2d;--e-search-black:#000;--e-search-dark-red:#c36;--e-search-dark-purple:#336;--e-search-input-color:var(--e-search-medium-grey);--e-search-input-border-color:var(--e-search-light-grey);--e-search-input-border-radius:0;--e-search-input-gap:4px;--e-search-input-padding:16px;--e-search-input-padding-inline-start:16px;--e-search-input-padding-inline-end:16px;--e-search-input-padding-block-start:16px;--e-search-input-padding-block-end:16px;--e-search-input-transition:.3s;--e-search-placeholder-color:var(--e-search-medium-grey);--e-search-icon-label-color:var(--e-search-medium-grey);--e-search-icon-label-size:24px;--e-search-icon-label-absolute-width:initial;--e-search-icon-clear-color:var(--e-search-light-grey);--e-search-icon-clear-size:12px;--e-search-icon-clear-absolute-width:initial;--e-search-icon-clear-transition:.3s;--e-search-submit-color:var(--e-search-white);--e-search-submit-background-color:var(--e-search-dark-grey);--e-search-submit-border-color:none;--e-search-submit-border-type:none;--e-search-submit-border-radius:0;--e-search-submit-border-width:0px;--e-search-submit-padding:24px;--e-search-submit-margin-inline-start:8px;--e-search-submit-button-width:initial;--e-search-submit-button-flex-direction:row;--e-search-submit-hover-transition:.3s;--e-search-pagination-numbers-padding-left:8px;--e-search-pagination-numbers-padding-right:8px;--e-search-icon-submit-color:var(--e-search-white);--e-search-submit-icon-gap:8px;--e-search-submit-icon-margin-inline-start:0px;--e-search-submit-icon-margin-inline-end:var(--e-search-submit-icon-gap);--e-search-icon-submit-size:24px;--e-search-submit-transition:.3s;--e-search-results-background-color:var(--e-search-white);--e-search-results-border-color:var(--e-search-light-grey);--e-search-results-border-type:solid;--e-search-results-border-width:1px;--e-search-results-border-radius:0px;--e-search-results-padding:16px;--e-search-results-width:100%;--e-search-results-columns:1;--e-search-results-max-height:initial;--e-search-input-and-results-gap:8px;--e-search-results-transition:.3s;--e-search-loop-item-equal-height:initial;--e-search-results-grid-auto-rows:initial;--e-search-results-inset-inline-start:initial;--e-search-results-inset-inline-end:initial;--e-search-results-transform:initial;--e-search-results-default-gap:16px;--e-search-results-column-gap:var(--e-search-results-default-gap);--e-search-results-row-gap:var(--e-search-results-default-gap);--e-search-pagination-inset-inline-start:initial;--e-search-pagination-inline-end:initial;--e-search-pagination-transform:initial;--e-search-pagination-border-radius:0px;--e-search-pagination-background-color:var(--e-search-black);--e-search-pagination-text-align:center;--e-search-pagination-justify-content:center;--e-search-pagination-color:var(--e-search-dark-red);--e-search-pagination-hover:var(--e-search-dark-purple);--e-search-pagination-current:var(--e-search-black);--e-search-pagination-page-numbers-gap:10px;--e-search-pagination-block-end-spacing:0px;--e-search-pagination-block-start-spacing:0px;--e-search-pagination-vertical-position:column;--e-search-nothing-found-padding-block-start:0;--e-search-nothing-found-padding-block-end:0;--e-search-nothing-found-results-columns:1;--e-search-nothing-found-message-color:var(--e-search-medium-grey);--e-search-nothing-found-message-alignment:center;--e-search-loader-icon-color:var(--e-search-black);--e-search-loader-icon-size:34px;}.elementor-widget-search .e-search-form{display:flex;}.elementor-widget-search .e-search-label{display:flex;position:relative;z-index:10;}.elementor-widget-search .e-search-label>i,.elementor-widget-search .e-search-label>svg{inset-block-start:50%;inset-inline-start:var(--e-search-input-padding-inline-start);position:absolute;transform:translateY(-50%);transition:width 0s,height 0s;}.elementor-widget-search .e-search-label>i:is(i),.elementor-widget-search .e-search-label>svg:is(i){color:var(--e-search-icon-label-color);font-size:var(--e-search-icon-label-size);}.elementor-widget-search .e-search-label>i:is(svg),.elementor-widget-search .e-search-label>svg:is(svg){fill:var(--e-search-icon-label-color);height:var(--e-search-icon-label-size);width:auto;}.elementor-widget-search .e-search-input-wrapper{display:flex;flex:1;flex-direction:column;position:relative;}.elementor-widget-search .e-search-input-wrapper>i,.elementor-widget-search .e-search-input-wrapper>svg{cursor:pointer;inset-block-start:50%;inset-inline-end:var(--e-search-input-padding-inline-end);position:absolute;transform:translateY(-50%);transition:color var(--e-search-icon-clear-transition),fill var(--e-search-icon-clear-transition),width 0s,height 0s;}.elementor-widget-search .e-search-input-wrapper>i:is(i),.elementor-widget-search .e-search-input-wrapper>svg:is(i){color:var(--e-search-icon-clear-color);font-size:var(--e-search-icon-clear-size);}.elementor-widget-search .e-search-input-wrapper>i:is(svg),.elementor-widget-search .e-search-input-wrapper>svg:is(svg){fill:var(--e-search-icon-clear-color);height:var(--e-search-icon-clear-size);width:auto;}.elementor-widget-search .e-search-input{--e-search-icons-min-height:max(var(--e-search-icon-clear-size),var(--e-search-icon-label-size));border-color:var(--e-search-input-border-color);border-radius:var(--e-search-input-border-radius);color:var(--e-search-input-color);height:100%;min-height:calc(var(--e-search-input-padding-block-end) + var(--e-search-input-padding-block-start) + var(--e-search-icons-min-height));padding-block-end:var(--e-search-input-padding-block-end);padding-block-start:var(--e-search-input-padding-block-start);padding-inline-end:calc(var(--e-search-input-padding-inline-end) + var(--e-search-icon-clear-absolute-width) + var(--e-search-input-gap));padding-inline-start:calc(var(--e-search-input-padding-inline-start) + var(--e-search-icon-label-absolute-width) + var(--e-search-input-gap));transition:padding-inline 0s;}.elementor-widget-search .e-search-input::-moz-placeholder{color:var(--e-search-placeholder-color);}.elementor-widget-search .e-search-input::placeholder{color:var(--e-search-placeholder-color);}.elementor-widget-search .e-search-input:focus{outline:none;transition:var(--e-search-input-transition);}.elementor-widget-search .e-search-input::-ms-clear,.elementor-widget-search .e-search-input::-ms-reveal{display:none;height:0;width:0;}.elementor-widget-search .e-search-input::-webkit-search-cancel-button,.elementor-widget-search .e-search-input::-webkit-search-decoration,.elementor-widget-search .e-search-input::-webkit-search-results-button,.elementor-widget-search .e-search-input::-webkit-search-results-decoration{display:none;}.elementor-widget-search .e-search-results-container{background-color:var(--e-search-results-background-color);border-radius:var(--e-search-results-border-radius);display:flex;height:-moz-fit-content;height:fit-content;inset-block-start:calc(100% + var(--e-search-input-and-results-gap));inset-inline-end:var(--e-search-results-inset-inline-end);inset-inline-start:var(--e-search-results-inset-inline-start);position:absolute;transform:var(--e-search-results-transform);width:var(--e-search-results-width);z-index:2000;}.elementor-widget-search .e-search-results-container>div{border:var(--e-search-results-border-type) var(--e-search-results-border-width) var(--e-search-results-border-color);border-radius:var(--e-search-results-border-radius);max-height:var(--e-search-results-max-height);overflow:auto;padding:var(--e-search-results-padding);width:100%;}.elementor-widget-search .e-search-results-container>div:empty{display:none;}.elementor-widget-search .e-search-results-container>div .e-loop-item .elementor-section-wrap>.e-con,.elementor-widget-search .e-search-results-container>div .e-loop-item>.e-con,.elementor-widget-search .e-search-results-container>div .e-loop-item>.elementor-section,.elementor-widget-search .e-search-results-container>div .e-loop-item>.elementor-section>.elementor-container{height:var(--e-search-loop-item-equal-height);}.elementor-widget-search .e-search-results{display:none;}.elementor-widget-search .e-search .e-search-submit{align-items:center;background-color:var(--e-search-submit-background-color);border-color:var(--e-search-submit-border-color);border-radius:var(--e-search-submit-border-radius);border-style:var(--e-search-submit-border-type);border-width:var(--e-search-submit-border-width);color:var(--e-search-submit-color);display:flex;flex-direction:var(--e-search-submit-button-flex-direction);font-size:var(--e-search-form-submit-icon-size);margin-inline-start:var(--e-search-submit-margin-inline-start);padding:var(--e-search-submit-padding);transition:var(--e-search-submit-hover-transition);width:var(--e-search-submit-button-width);}.elementor-widget-search .e-search .e-search-submit:focus{transition:--e-search-submit-transition;}.elementor-widget-search .e-search .e-search-submit:focus:not(:focus-visible){outline:none;}.elementor-widget-search .e-search .e-search-submit>i,.elementor-widget-search .e-search .e-search-submit>svg{margin-inline-end:var(--e-search-submit-icon-margin-inline-end);margin-inline-start:var(--e-search-submit-icon-margin-inline-start);transition:inherit;}.elementor-widget-search .e-search .e-search-submit>i:is(i),.elementor-widget-search .e-search .e-search-submit>svg:is(i){color:var(--e-search-icon-submit-color);font-size:var(--e-search-icon-submit-size);}.elementor-widget-search .e-search .e-search-submit>i:is(svg),.elementor-widget-search .e-search .e-search-submit>svg:is(svg){fill:var(--e-search-icon-submit-color);height:var(--e-search-icon-submit-size);width:auto;}.elementor-widget-search .e-search-input-wrapper,.elementor-widget-search .e-search-label *{transition:var(--e-search-input-transition);}.elementor-widget-search .hidden{opacity:0;visibility:hidden;}.elementor-widget-search .hide-loader .e-search-results{display:flex;flex-direction:var(--e-search-pagination-vertical-position);}@keyframes rotate{0%{transform:rotate(0deg);}to{transform:rotate(1turn);}}.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-0:not(:has(.elementor-widget-container)),.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0:not(:has(.elementor-widget-container)),.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0:not(:has(.elementor-widget-container)){font-size:0;line-height:1;}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid;}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center);}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);height:calc(var(--icon-size,25px) + 2 * var(--icon-padding,.5em));line-height:var(--icon-size,25px);width:calc(var(--icon-size,25px) + 2 * var(--icon-padding,.5em));}.elementor-social-icon{--e-social-icon-icon-color:#fff;align-items:center;background-color:#69727d;cursor:pointer;display:inline-flex;justify-content:center;text-align:center;}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color);}.elementor-social-icon:last-child{margin:0;}.elementor-social-icon:hover{color:#fff;opacity:.9;}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998;}.elementor-social-icon-instagram{background-color:#262626;}.elementor-social-icon-pinterest{background-color:#bd081c;}.elementor-social-icon-youtube{background-color:#cd201f;}.elementor-widget-archive-posts:after,.elementor-widget-posts:after{display:none;}.elementor-post__thumbnail__link{transition:none;}.elementor-posts-container:not(.elementor-posts-masonry){align-items:stretch;}.elementor-posts-container .elementor-post{margin:0;padding:0;}.elementor-posts-container .elementor-post__thumbnail{overflow:hidden;}.elementor-posts-container .elementor-post__thumbnail img{display:block;max-height:none;max-width:none;transition:filter .3s;width:100%;}.elementor-posts-container .elementor-post__thumbnail__link{display:block;position:relative;width:100%;}.elementor-posts-container.elementor-has-item-ratio .elementor-post__thumbnail{inset:0;}.elementor-posts-container.elementor-has-item-ratio .elementor-post__thumbnail img{height:auto;left:calc(50% + 1px);position:absolute;top:calc(50% + 1px);transform:scale(1.01) translate(-50%,-50%);}.elementor-posts-container.elementor-has-item-ratio .elementor-post__thumbnail.elementor-fit-height img{height:100%;width:auto;}.elementor-posts .elementor-post{flex-direction:column;transition-duration:.25s;transition-property:background,border,box-shadow;}.elementor-posts .elementor-post__title{font-size:18px;margin:0;}.elementor-posts .elementor-post__text{display:var(--item-display,block);flex-direction:column;flex-grow:1;}.elementor-posts .elementor-post__thumbnail{position:relative;}.elementor-posts--skin-classic .elementor-post{overflow:hidden;}.elementor-posts--align-left .elementor-post{text-align:left;}.elementor-posts--thumbnail-top .elementor-post__thumbnail__link{margin-bottom:20px;}.elementor-posts--thumbnail-top .elementor-post__text{width:100%;}.elementor-posts--thumbnail-top.elementor-posts--align-left .elementor-post__thumbnail__link{margin-right:auto;}.elementor-posts .elementor-post{display:flex;}.elementor-portfolio.elementor-has-item-ratio{transition:height .5s;}.elementor-portfolio.elementor-has-item-ratio .elementor-post__thumbnail{background-color:rgba(0,0,0,.1);position:absolute;}.elementor-portfolio.elementor-has-item-ratio .elementor-post__thumbnail__link{padding-bottom:56.25%;}.elementor-widget-n-menu{--n-menu-direction:column;--n-menu-wrapper-display:flex;--n-menu-heading-justify-content:initial;--n-menu-title-color-normal:#1f2124;--n-menu-title-color-active:#58d0f5;--n-menu-icon-color:var(--n-menu-title-color-normal);--n-menu-icon-color-active:var(--n-menu-title-color-active);--n-menu-icon-color-hover:var(--n-menu-title-color-hover);--n-menu-title-normal-color-dropdown:var(--n-menu-title-color-normal);--n-menu-title-active-color-dropdown:var(--n-menu-title-color-active);--n-menu-title-hover-color-fallback:#1f2124;--n-menu-title-font-size:1rem;--n-menu-title-justify-content:initial;--n-menu-title-flex-grow:initial;--n-menu-title-justify-content-mobile:initial;--n-menu-title-space-between:0px;--n-menu-title-distance-from-content:0px;--n-menu-title-color-hover:#1f2124;--n-menu-title-padding:.5rem 1rem;--n-menu-title-transition:.3s;--n-menu-title-line-height:1.5;--n-menu-title-order:initial;--n-menu-title-direction:initial;--n-menu-title-align-items:center;--n-menu-toggle-align:center;--n-menu-toggle-icon-wrapper-animation-duration:500ms;--n-menu-toggle-icon-hover-duration:500ms;--n-menu-toggle-icon-size:20px;--n-menu-toggle-icon-color:#1f2124;--n-menu-toggle-icon-color-hover:var(--n-menu-toggle-icon-color);--n-menu-toggle-icon-color-active:var(--n-menu-toggle-icon-color);--n-menu-toggle-icon-border-radius:initial;--n-menu-toggle-icon-padding:initial;--n-menu-toggle-icon-distance-from-dropdown:0px;--n-menu-icon-align-items:center;--n-menu-icon-order:initial;--n-menu-icon-gap:5px;--n-menu-dropdown-icon-gap:5px;--n-menu-dropdown-indicator-size:initial;--n-menu-dropdown-indicator-rotate:initial;--n-menu-dropdown-indicator-space:initial;--n-menu-dropdown-indicator-color-normal:initial;--n-menu-dropdown-indicator-color-hover:initial;--n-menu-dropdown-indicator-color-active:initial;--n-menu-dropdown-content-max-width:initial;--n-menu-dropdown-content-box-border-color:#fff;--n-menu-dropdown-content-box-border-inline-start-width:medium;--n-menu-dropdown-content-box-border-block-end-width:medium;--n-menu-dropdown-content-box-border-block-start-width:medium;--n-menu-dropdown-content-box-border-inline-end-width:medium;--n-menu-dropdown-content-box-border-style:none;--n-menu-dropdown-headings-height:0px;--n-menu-divider-border-width:var(--n-menu-divider-width,2px);--n-menu-open-animation-duration:500ms;--n-menu-heading-overflow-x:initial;--n-menu-heading-wrap:wrap;--stretch-width:100%;--stretch-left:initial;--stretch-right:initial;}.elementor-widget-n-menu .e-n-menu{display:flex;flex-direction:column;position:relative;}.elementor-widget-n-menu .e-n-menu-wrapper{display:var(--n-menu-wrapper-display);flex-direction:column;}.elementor-widget-n-menu .e-n-menu-heading{display:flex;flex-direction:row;flex-wrap:var(--n-menu-heading-wrap);justify-content:var(--n-menu-heading-justify-content);margin:initial;overflow-x:var(--n-menu-heading-overflow-x);padding:initial;row-gap:var(--n-menu-title-space-between);-ms-overflow-style:none;scrollbar-width:none;}.elementor-widget-n-menu .e-n-menu-heading::-webkit-scrollbar{display:none;}.elementor-widget-n-menu .e-n-menu-heading>.e-con,.elementor-widget-n-menu .e-n-menu-heading>.e-n-menu-item>.e-con{display:none;}.elementor-widget-n-menu .e-n-menu-item{display:flex;list-style:none;margin-block:initial;padding-block:initial;}.elementor-widget-n-menu .e-n-menu-item .e-n-menu-title{position:relative;}.elementor-widget-n-menu .e-n-menu-item:not(:last-of-type) .e-n-menu-title:after{align-self:center;border-color:var(--n-menu-divider-color,#000);border-inline-start-style:var(--n-menu-divider-style,solid);border-inline-start-width:var(--n-menu-divider-border-width);content:var(--n-menu-divider-content,none);height:var(--n-menu-divider-height,35%);inset-inline-end:calc(var(--n-menu-title-space-between) / 2 * -1 - var(--n-menu-divider-border-width) / 2);position:absolute;}.elementor-widget-n-menu .e-n-menu-content{background-color:transparent;display:flex;flex-direction:column;min-width:0;z-index:2147483620;}.elementor-widget-n-menu .e-n-menu-content>.e-con{animation-duration:var(--n-menu-open-animation-duration);max-width:calc(100% - var(--margin-inline-start,var(--margin-left)) - var(--margin-inline-end,var(--margin-right)));}:where(.elementor-widget-n-menu .e-n-menu-content>.e-con){background-color:#fff;}.elementor-widget-n-menu .e-n-menu-content>.e-con:not(.e-active){display:none;}.elementor-widget-n-menu .e-n-menu-title{align-items:center;border:#fff;color:var(--n-menu-title-color-normal);display:flex;flex-direction:row;flex-grow:var(--n-menu-title-flex-grow);font-weight:500;gap:var(--n-menu-dropdown-indicator-space);justify-content:var(--n-menu-title-justify-content);margin:initial;padding:var(--n-menu-title-padding);-webkit-user-select:none;-moz-user-select:none;user-select:none;white-space:nowrap;}.elementor-widget-n-menu .e-n-menu-title-container{align-items:var(--n-menu-title-align-items);align-self:var(--n-menu-icon-align-items);display:flex;flex-direction:var(--n-menu-title-direction);gap:var(--n-menu-icon-gap);justify-content:var(--n-menu-title-justify-content);}.elementor-widget-n-menu .e-n-menu-title-container.e-link{cursor:pointer;}.elementor-widget-n-menu .e-n-menu-title-container:not(.e-link),.elementor-widget-n-menu .e-n-menu-title-container:not(.e-link) *{cursor:default;}.elementor-widget-n-menu .e-n-menu-title-text{align-items:center;display:flex;font-size:var(--n-menu-title-font-size);line-height:var(--n-menu-title-line-height);transition:all var(--n-menu-title-transition);}.elementor-widget-n-menu .e-n-menu-title .e-n-menu-dropdown-icon{align-self:var(--n-menu-icon-align-items);background-color:initial;border:initial;color:inherit;display:flex;flex-direction:column;height:calc(var(--n-menu-title-font-size) * var(--n-menu-title-line-height));justify-content:center;margin-inline-start:var(--n-menu-dropdown-icon-gap);padding:initial;position:relative;text-align:center;transform:var(--n-menu-dropdown-indicator-rotate);transition:all var(--n-menu-title-transition);-webkit-user-select:none;-moz-user-select:none;user-select:none;width:-moz-fit-content;width:fit-content;}.elementor-widget-n-menu .e-n-menu-title .e-n-menu-dropdown-icon span svg{height:var(--n-menu-dropdown-indicator-size,var(--n-menu-title-font-size));transition:all var(--n-menu-title-transition);width:var(--n-menu-dropdown-indicator-size,var(--n-menu-title-font-size));}.elementor-widget-n-menu .e-n-menu-title .e-n-menu-dropdown-icon[aria-expanded=false] .e-n-menu-dropdown-icon-opened{display:none;}.elementor-widget-n-menu .e-n-menu-title .e-n-menu-dropdown-icon[aria-expanded=false] .e-n-menu-dropdown-icon-closed{display:flex;}.elementor-widget-n-menu .e-n-menu-title .e-n-menu-dropdown-icon[aria-expanded=true] .e-n-menu-dropdown-icon-closed{display:none;}.elementor-widget-n-menu .e-n-menu-title .e-n-menu-dropdown-icon[aria-expanded=true] .e-n-menu-dropdown-icon-opened{display:flex;}.elementor-widget-n-menu .e-n-menu-title .e-n-menu-dropdown-icon:focus:not(:focus-visible){outline:none;}.elementor-widget-n-menu .e-n-menu-title:not(.e-current):not(:hover) .e-n-menu-title-container .e-n-menu-title-text{color:var(--n-menu-title-color-normal);}.elementor-widget-n-menu .e-n-menu-title:not(.e-current):not(:hover) .e-n-menu-dropdown-icon svg{fill:var(--n-menu-dropdown-indicator-color-normal,var(--n-menu-title-color-normal));}.elementor-widget-n-menu .e-n-menu-title:hover:not(.e-current) .e-n-menu-title-container:not(.e-link){cursor:default;}.elementor-widget-n-menu .e-n-menu-title:hover:not(.e-current) svg{fill:var(--n-menu-title-color-hover,var(--n-menu-title-hover-color-fallback));}.elementor-widget-n-menu .e-n-menu-title:hover:not(.e-current),.elementor-widget-n-menu .e-n-menu-title:hover:not(.e-current) a{color:var(--n-menu-title-color-hover);}.elementor-widget-n-menu .e-n-menu-title:hover:not(.e-current) .e-n-menu-dropdown-icon svg{fill:var(--n-menu-dropdown-indicator-color-hover,var(--n-menu-title-color-hover));}.elementor-widget-n-menu .e-n-menu-toggle{align-self:var(--n-menu-toggle-align);background-color:initial;border:initial;color:inherit;display:none;padding:initial;position:relative;-webkit-user-select:none;-moz-user-select:none;user-select:none;z-index:1000;}.elementor-widget-n-menu .e-n-menu-toggle:focus:not(:focus-visible){outline:none;}.elementor-widget-n-menu .e-n-menu-toggle svg{fill:var(--n-menu-toggle-icon-color);height:auto;transition:all var(--n-menu-toggle-icon-hover-duration);width:var(--n-menu-toggle-icon-size);}.elementor-widget-n-menu .e-n-menu-toggle span{align-items:center;border-radius:var(--n-menu-toggle-icon-border-radius);display:flex;justify-content:center;padding:var(--n-menu-toggle-icon-padding);text-align:center;}.elementor-widget-n-menu .e-n-menu-toggle span.e-close{height:100%;inset:0;opacity:0;position:absolute;width:100%;}.elementor-widget-n-menu .e-n-menu-toggle span.e-close svg{height:100%;-o-object-fit:contain;object-fit:contain;}.elementor-widget-n-menu .e-n-menu-toggle [class^=elementor-animation-]{animation-duration:var(--n-menu-toggle-icon-wrapper-animation-duration);transition-duration:var(--n-menu-toggle-icon-wrapper-animation-duration);}.elementor-widget-n-menu .e-n-menu-toggle:hover svg{fill:var(--n-menu-toggle-icon-color-hover);}.elementor-widget-n-menu .e-n-menu-toggle[aria-expanded=true] .e-open{opacity:0;}.elementor-widget-n-menu .e-n-menu-toggle[aria-expanded=true] .e-close{opacity:1;}.elementor-widget-n-menu .e-n-menu-toggle[aria-expanded=true] svg{fill:var(--n-menu-toggle-icon-color-active);}.elementor-widget-n-menu .e-n-menu:not([data-layout=dropdown]) .e-n-menu-item:not(:last-child){margin-inline-end:var(--n-menu-title-space-between);}.elementor-widget-n-menu .e-n-menu:not([data-layout=dropdown]) .e-n-menu-content{left:var(--stretch-left);position:absolute;right:var(--stretch-right);width:var(--stretch-width);}.elementor-widget-n-menu .e-n-menu:not([data-layout=dropdown]):not(.content-above) .e-active.e-n-menu-content{padding-block-start:var(--n-menu-title-distance-from-content);top:100%;}.elementor-widget-n-menu .e-n-menu[data-layout=dropdown]{gap:0;}.elementor-widget-n-menu .e-n-menu[data-layout=dropdown] .e-n-menu-wrapper{animation:hide-scroll .3s backwards;background-color:transparent;border-block-end:var(--n-menu-dropdown-content-box-border-width-block-end);border-block-start:var(--n-menu-dropdown-content-box-border-width-block-start);border-inline-end:var(--n-menu-dropdown-content-box-border-width-inline-end);border-inline-start:var(--n-menu-dropdown-content-box-border-width-inline-start);border-color:var(--n-menu-dropdown-content-box-border-color);border-radius:var(--n-menu-dropdown-content-box-border-radius);border-style:var(--n-menu-dropdown-content-box-border-style);flex-direction:column;left:var(--stretch-left);margin-block-start:var(--n-menu-toggle-icon-distance-from-dropdown);max-height:var(--n-menu-dropdown-content-box-height);min-width:0;overflow-x:hidden;overflow-y:auto;position:absolute;right:var(--stretch-right);top:100%;transition:max-height .3s;width:var(--stretch-width);z-index:2147483640;}.elementor-widget-n-menu .e-n-menu[data-layout=dropdown] .e-n-menu-item{display:flex;flex-direction:column;width:var(--stretch-width);}.elementor-widget-n-menu .e-n-menu[data-layout=dropdown] .e-n-menu-title{background-color:#fff;flex-wrap:wrap;justify-content:var(--n-menu-title-justify-content-mobile);white-space:normal;width:auto;}.elementor-widget-n-menu .e-n-menu[data-layout=dropdown] .e-n-menu-title:not(.e-current) .e-n-menu-title-container .e-n-menu-title-text{color:var(--n-menu-title-normal-color-dropdown);}.elementor-widget-n-menu .e-n-menu[data-layout=dropdown] .e-n-menu-title:not(.e-current) .e-n-menu-dropdown-icon svg{fill:var(--n-menu-dropdown-indicator-color-normal,var(--n-menu-title-normal-color-dropdown));}.elementor-widget-n-menu .e-n-menu[data-layout=dropdown] .e-n-menu-content{overflow:hidden;width:var(--stretch-width);--n-menu-dropdown-content-max-width:initial;}.elementor-widget-n-menu .e-n-menu[data-layout=dropdown] .e-n-menu-content>.e-con{margin-block-start:var(--n-menu-title-distance-from-content);width:var(--width);}.elementor-widget-n-menu .e-n-menu[data-layout=dropdown] .e-n-menu-content>.e-con-inner{max-width:var(--content-width);}.elementor-widget-n-menu .e-n-menu[data-layout=dropdown] .e-n-menu-toggle[aria-expanded=true]+.e-n-menu-wrapper{--n-menu-wrapper-display:flex;}@media (max-width:767px){.elementor.elementor .elementor-widget-n-menu.e-n-menu-mobile{--n-menu-wrapper-display:none;}.elementor.elementor .elementor-widget-n-menu.e-n-menu-mobile .e-n-menu-toggle{display:flex;}}@keyframes hide-scroll{0%,to{overflow:hidden;}}.e-con-inner>.elementor-widget-n-menu,.e-con>.elementor-widget-n-menu{--flex-grow:var(--container-widget-flex-grow);}[data-core-v316-plus=true] .elementor-widget-n-menu .e-n-menu .e-n-menu-content>.e-con{--padding-top:initial;--padding-right:initial;--padding-bottom:initial;--padding-left:initial;}.elementor-sticky--active{z-index:99;}.e-con.elementor-sticky--active{z-index:var(--z-index,99);}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit;}.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container,.elementor-widget:not(:has(.elementor-widget-container)) .elementor-widget-container{overflow:hidden;}.elementor-widget .elementor-icon-list-items.elementor-inline-items{display:flex;flex-wrap:wrap;margin-inline:-8px;}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-inline-item{word-break:break-word;}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-inline:8px;}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{border-width:0;border-inline-start-width:1px;border-style:solid;height:100%;inset-inline-end:-8px;inset-inline-start:auto;position:relative;width:auto;}.elementor-widget .elementor-icon-list-items{list-style-type:none;margin:0;padding:0;}.elementor-widget .elementor-icon-list-item{margin:0;padding:0;position:relative;}.elementor-widget .elementor-icon-list-item:after{inset-block-end:0;position:absolute;width:100%;}.elementor-widget .elementor-icon-list-item,.elementor-widget .elementor-icon-list-item a{align-items:var(--icon-vertical-align,center);display:flex;font-size:inherit;}.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text{align-self:center;padding-inline-start:5px;}.elementor-widget .elementor-icon-list-icon{display:flex;inset-block-start:var(--icon-vertical-offset,initial);position:relative;}.elementor-widget .elementor-icon-list-icon svg{height:var(--e-icon-list-icon-size,1em);width:var(--e-icon-list-icon-size,1em);}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon{text-align:var(--e-icon-list-icon-align);}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg{margin:var(--e-icon-list-icon-margin,0 calc(var(--e-icon-list-icon-size,1em) * .25) 0 0);}.elementor-widget.elementor-list-item-link-full_width a{width:100%;}.elementor-widget.elementor-align-left .elementor-icon-list-item,.elementor-widget.elementor-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left;}.elementor-widget.elementor-align-left .elementor-inline-items{justify-content:flex-start;}.elementor-widget.elementor-align-right .elementor-icon-list-item,.elementor-widget.elementor-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right;}.elementor-widget.elementor-align-right .elementor-icon-list-items{justify-content:flex-end;}.elementor-widget:not(.elementor-align-right) .elementor-icon-list-item:after{inset-inline-start:0;}.elementor-widget:not(.elementor-align-left) .elementor-icon-list-item:after{inset-inline-end:0;}@media (min-width:-1){.elementor-widget:not(.elementor-widescreen-align-right) .elementor-icon-list-item:after{inset-inline-start:0;}.elementor-widget:not(.elementor-widescreen-align-left) .elementor-icon-list-item:after{inset-inline-end:0;}}@media (max-width:-1){.elementor-widget:not(.elementor-laptop-align-right) .elementor-icon-list-item:after{inset-inline-start:0;}.elementor-widget:not(.elementor-laptop-align-left) .elementor-icon-list-item:after{inset-inline-end:0;}.elementor-widget:not(.elementor-tablet_extra-align-right) .elementor-icon-list-item:after{inset-inline-start:0;}.elementor-widget:not(.elementor-tablet_extra-align-left) .elementor-icon-list-item:after{inset-inline-end:0;}}@media (max-width:1024px){.elementor-widget:not(.elementor-tablet-align-right) .elementor-icon-list-item:after{inset-inline-start:0;}.elementor-widget:not(.elementor-tablet-align-left) .elementor-icon-list-item:after{inset-inline-end:0;}}@media (max-width:-1){.elementor-widget:not(.elementor-mobile_extra-align-right) .elementor-icon-list-item:after{inset-inline-start:0;}.elementor-widget:not(.elementor-mobile_extra-align-left) .elementor-icon-list-item:after{inset-inline-end:0;}}@media (max-width:767px){.elementor-widget:not(.elementor-mobile-align-right) .elementor-icon-list-item:after{inset-inline-start:0;}.elementor-widget:not(.elementor-mobile-align-left) .elementor-icon-list-item:after{inset-inline-end:0;}}#left-area ul.elementor-icon-list-items,.elementor .elementor-element ul.elementor-icon-list-items,.elementor-edit-area .elementor-element ul.elementor-icon-list-items{padding:0;}.e-form__buttons{flex-wrap:wrap;}.e-form__buttons,.e-form__buttons__wrapper{display:flex;}.elementor-form .elementor-button .elementor-button-content-wrapper{align-items:center;}.elementor-form .elementor-button .elementor-button-text{white-space:normal;}.elementor-form .elementor-button svg{height:auto;}.elementor-form .elementor-button .e-font-icon-svg{height:1em;}.elementor-form .elementor-button .elementor-button-content-wrapper{gap:5px;}.elementor-form .elementor-button .elementor-button-icon,.elementor-form .elementor-button .elementor-button-text{flex-grow:unset;order:unset;}.elementor-widget-breadcrumbs{font-size:.85em;}.elementor-widget-breadcrumbs p{margin-bottom:0;}.elementor-share-buttons--color-official .elementor-share-btn:hover{filter:saturate(1.5) brightness(1.2);}.elementor-share-buttons--color-official.elementor-share-buttons--skin-flat .elementor-share-btn_email,.elementor-share-buttons--color-official.elementor-share-buttons--skin-gradient .elementor-share-btn_email{background-color:#ea4335;}.elementor-share-buttons--color-official.elementor-share-buttons--skin-flat .elementor-share-btn_facebook,.elementor-share-buttons--color-official.elementor-share-buttons--skin-gradient .elementor-share-btn_facebook{background-color:#3b5998;}.elementor-share-buttons--color-official.elementor-share-buttons--skin-flat .elementor-share-btn_linkedin,.elementor-share-buttons--color-official.elementor-share-buttons--skin-gradient .elementor-share-btn_linkedin{background-color:#0077b5;}.elementor-share-buttons--color-official.elementor-share-buttons--skin-flat .elementor-share-btn_pinterest,.elementor-share-buttons--color-official.elementor-share-buttons--skin-gradient .elementor-share-btn_pinterest{background-color:#bd081c;}.elementor-share-buttons--color-official.elementor-share-buttons--skin-flat .elementor-share-btn_twitter,.elementor-share-buttons--color-official.elementor-share-buttons--skin-gradient .elementor-share-btn_twitter{background-color:#1da1f2;}.elementor-share-buttons--color-official.elementor-share-buttons--skin-flat .elementor-share-btn_whatsapp,.elementor-share-buttons--color-official.elementor-share-buttons--skin-gradient .elementor-share-btn_whatsapp{background-color:#25d366;}.elementor-share-buttons--skin-gradient{--direction-multiplier:1;}.elementor-share-buttons--skin-gradient .elementor-share-btn__text,.elementor-share-buttons--skin-gradient.elementor-share-buttons--view-icon .elementor-share-btn__icon{background-image:linear-gradient(calc(90deg * var(--direction-multiplier,1)),rgba(0,0,0,.12),transparent);}.elementor-share-buttons--skin-flat .elementor-share-btn,.elementor-share-buttons--skin-gradient .elementor-share-btn{background-color:var(--e-share-buttons-primary-color,#ea4335);}.elementor-share-buttons--skin-flat .elementor-share-btn__icon,.elementor-share-buttons--skin-flat .elementor-share-btn__text,.elementor-share-buttons--skin-gradient .elementor-share-btn__icon,.elementor-share-buttons--skin-gradient .elementor-share-btn__text{color:var(--e-share-buttons-secondary-color,#fff);}.elementor-share-buttons--skin-flat .elementor-share-btn__icon svg,.elementor-share-buttons--skin-flat .elementor-share-btn__text svg,.elementor-share-buttons--skin-gradient .elementor-share-btn__icon svg,.elementor-share-buttons--skin-gradient .elementor-share-btn__text svg{fill:var(--e-share-buttons-secondary-color,#fff);}.elementor-share-buttons--view-icon .elementor-share-btn,.elementor-share-buttons--view-text .elementor-share-btn{justify-content:center;}.elementor-share-buttons--view-icon .elementor-share-btn__icon,.elementor-share-buttons--view-icon .elementor-share-btn__text,.elementor-share-buttons--view-text .elementor-share-btn__icon,.elementor-share-buttons--view-text .elementor-share-btn__text{flex-grow:1;justify-content:center;}.elementor-share-buttons--shape-rounded .elementor-share-btn{border-radius:.5em;}.elementor-share-btn{align-items:center;cursor:pointer;display:flex;font-size:10px;height:4.5em;justify-content:flex-start;overflow:hidden;transition-duration:.2s;transition-property:filter,background-color,border-color;}.elementor-share-btn__icon,.elementor-share-btn__text{transition-duration:.2s;transition-property:color,background-color;}.elementor-share-btn__icon{align-items:center;align-self:stretch;display:flex;justify-content:center;position:relative;width:4.5em;}.elementor-share-btn__icon svg{height:var(--e-share-buttons-icon-size,1.7em);width:var(--e-share-buttons-icon-size,1.7em);}.elementor-widget-share-buttons{text-align:var(--alignment,inherit);-moz-text-align-last:var(--alignment,inherit);text-align-last:var(--alignment,inherit);}.elementor-widget-share-buttons.elementor-grid-0 .elementor-widget-container,.elementor-widget-share-buttons.elementor-grid-0:not(:has(.elementor-widget-container)){font-size:0;}@font-face{font-family:swiper-icons;src:url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");font-weight:400;font-style:normal;}:root{--swiper-theme-color:#007aff;}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box;}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0);}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;}:root{--swiper-navigation-size:44px;}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg);}100%{transform:rotate(360deg);}}.elementor-element,.elementor-lightbox{--swiper-theme-color:#000;--swiper-navigation-size:44px;--swiper-pagination-bullet-size:6px;--swiper-pagination-bullet-horizontal-gap:6px;}.elementor-element .swiper .swiper-slide figure,.elementor-lightbox .swiper .swiper-slide figure{line-height:0;}.elementor-element .swiper .elementor-swiper-button,.elementor-element .swiper~.elementor-swiper-button,.elementor-lightbox .swiper .elementor-swiper-button,.elementor-lightbox .swiper~.elementor-swiper-button{color:hsla(0,0%,93%,.9);cursor:pointer;display:inline-flex;font-size:25px;position:absolute;top:50%;transform:translateY(-50%);z-index:1;}.elementor-element .swiper .elementor-swiper-button svg,.elementor-element .swiper~.elementor-swiper-button svg,.elementor-lightbox .swiper .elementor-swiper-button svg,.elementor-lightbox .swiper~.elementor-swiper-button svg{fill:hsla(0,0%,93%,.9);height:1em;width:1em;}.elementor-element .swiper .elementor-swiper-button-prev,.elementor-element .swiper~.elementor-swiper-button-prev,.elementor-lightbox .swiper .elementor-swiper-button-prev,.elementor-lightbox .swiper~.elementor-swiper-button-prev{left:10px;}.elementor-element .swiper .elementor-swiper-button-next,.elementor-element .swiper~.elementor-swiper-button-next,.elementor-lightbox .swiper .elementor-swiper-button-next,.elementor-lightbox .swiper~.elementor-swiper-button-next{right:10px;}.e-loop-item *{word-break:break-word;}[class*=elementor-widget-loop] .elementor-page-title,[class*=elementor-widget-loop] .product_title.entry-title{display:initial;}.elementor-widget-loop-carousel{--swiper-pagination-size:0;--swiper-pagination-spacing:10px;--swiper-slides-gap:10px;--swiper-offset-size:0;height:-moz-fit-content;height:fit-content;--swiper-padding-bottom:calc(var(--swiper-pagination-size) + var(--swiper-pagination-spacing));--arrow-prev-top-align:50%;--arrow-prev-top-position:0px;--arrow-prev-caption-spacing:15px;--arrow-next-top-align:50%;--arrow-next-top-position:0px;--arrow-next-caption-spacing:15px;--arrow-prev-left-align:0px;--arrow-prev-left-position:0px;--arrow-next-right-align:0px;--arrow-next-right-position:0px;--arrow-next-translate-x:0px;--arrow-next-translate-y:0px;--arrow-prev-translate-x:0px;--arrow-prev-translate-y:0px;--dots-vertical-position:100%;--dots-vertical-offset:0px;--dots-horizontal-position:50%;--dots-horizontal-offset:0px;--dots-horizontal-transform:-50%;--dots-vertical-transform:-100%;--fraction-vertical-position:100%;--fraction-vertical-offset:0px;--fraction-horizontal-position:50%;--fraction-horizontal-offset:0px;--fraction-horizontal-transform:-50%;--fraction-vertical-transform:-100%;--direction-multiplier:1;}.elementor-widget-loop-carousel .swiper-container:not(.swiper-container-initialized)>.swiper-wrapper,.elementor-widget-loop-carousel .swiper:not(.swiper-initialized)>.swiper-wrapper{gap:var(--swiper-slides-gap);overflow:hidden;}.elementor-widget-loop-carousel .swiper-wrapper .swiper-slide a.e-con{display:var(--display);}.elementor-widget-loop-carousel .elementor-swiper-button.elementor-swiper-button-next,.elementor-widget-loop-carousel .elementor-swiper-button.elementor-swiper-button-prev{border-style:var(--arrow-normal-border-type);color:var(--arrow-normal-color,hsla(0,0%,93%,.9));font-size:var(--arrow-size,25px);transition-duration:.25s;z-index:2;}.elementor-widget-loop-carousel .elementor-swiper-button.elementor-swiper-button-next svg,.elementor-widget-loop-carousel .elementor-swiper-button.elementor-swiper-button-prev svg{fill:var(--arrow-normal-color,hsla(0,0%,93%,.9));}.elementor-widget-loop-carousel .elementor-swiper-button.elementor-swiper-button-next:hover,.elementor-widget-loop-carousel .elementor-swiper-button.elementor-swiper-button-prev:hover{border-style:var(--arrow-hover-border-type);color:var(--arrow-hover-color,hsla(0,0%,93%,.9));}.elementor-widget-loop-carousel .elementor-swiper-button.elementor-swiper-button-next:hover svg,.elementor-widget-loop-carousel .elementor-swiper-button.elementor-swiper-button-prev:hover svg{fill:var(--arrow-hover-color,hsla(0,0%,93%,.9));}.elementor-widget-loop-carousel.elementor-element :is(.swiper,.swiper-container)~.elementor-swiper-button-next{right:calc(var(--arrow-next-right-align) + var(--arrow-next-right-position));top:calc(var(--arrow-next-top-align) + var(--arrow-next-top-position) - var(--arrow-next-caption-spacing));transform:translate(var(--arrow-next-translate-x),var(--arrow-next-translate-y));}.elementor-widget-loop-carousel.elementor-element :is(.swiper,.swiper-container)~.elementor-swiper-button-prev{left:calc(var(--arrow-prev-left-align) + var(--arrow-prev-left-position));top:calc(var(--arrow-prev-top-align) + var(--arrow-prev-top-position) - var(--arrow-prev-caption-spacing));transform:translate(var(--arrow-prev-translate-x),var(--arrow-prev-translate-y));}[data-elementor-type=popup] .elementor-section-wrap:not(:empty)+#elementor-add-new-section,[data-elementor-type=popup]:not(.elementor-edit-area){display:none;}.elementor-popup-modal.dialog-type-lightbox{background-color:transparent;display:flex;pointer-events:none;-webkit-user-select:auto;-moz-user-select:auto;user-select:auto;}.elementor-popup-modal .dialog-buttons-wrapper,.elementor-popup-modal .dialog-header{display:none;}.elementor-popup-modal .dialog-close-button{display:none;inset-inline-end:20px;margin-top:0;opacity:1;pointer-events:all;top:20px;z-index:9999;}.elementor-popup-modal .dialog-close-button svg{fill:#1f2124;height:1em;width:1em;}.elementor-popup-modal .dialog-widget-content{background-color:#fff;border-radius:0;box-shadow:none;max-height:100%;max-width:100%;overflow:visible;pointer-events:all;width:auto;}.elementor-popup-modal .dialog-message{display:flex;max-height:100vh;max-width:100vw;overflow:auto;padding:0;width:640px;}.elementor-popup-modal .elementor{width:100%;}.elementor-widget-n-tabs{--n-tabs-color-accent-fallback:#61ce70;--n-tabs-color-secondary-fallback:#54595f;--n-tabs-default-padding-block:15px;--n-tabs-default-padding-inline:35px;--n-tabs-background-color:transparent;--n-tabs-display:flex;--n-tabs-direction:column;--n-tabs-gap:10px;--n-tabs-heading-display:flex;--n-tabs-heading-direction:row;--n-tabs-heading-grow:initial;--n-tabs-heading-justify-content:center;--n-tabs-heading-width:initial;--n-tabs-heading-overflow-x:initial;--n-tabs-heading-wrap:nowrap;--n-tabs-border-width:1px;--n-tabs-border-color:#d5d8dc;--n-tabs-content-display:flex;--n-tabs-title-color:var(--e-global-color-secondary,var(--n-tabs-color-secondary-fallback));--n-tabs-title-color-hover:#fff;--n-tabs-title-color-active:#fff;--n-tabs-title-background-color:#f1f2f3;--n-tabs-title-background-color-hover:var(--e-global-color-accent,var(--n-tabs-color-accent-fallback));--n-tabs-title-background-color-active:var(--e-global-color-accent,var(--n-tabs-color-accent-fallback));--n-tabs-title-width:initial;--n-tabs-title-height:initial;--n-tabs-title-font-size:1rem;--n-tabs-title-white-space:initial;--n-tabs-title-justify-content-toggle:initial;--n-tabs-title-align-items-toggle:center;--n-tabs-title-justify-content:center;--n-tabs-title-align-items:center;--n-tabs-title-text-align:center;--n-tabs-title-direction:row;--n-tabs-title-gap:10px;--n-tabs-title-flex-grow:0;--n-tabs-title-flex-basis:content;--n-tabs-title-flex-shrink:initial;--n-tabs-title-order:initial;--n-tabs-title-padding-top:var(--n-tabs-default-padding-block);--n-tabs-title-padding-bottom:var(--n-tabs-default-padding-block);--n-tabs-title-padding-left:var(--n-tabs-default-padding-inline);--n-tabs-title-padding-right:var(--n-tabs-default-padding-inline);--n-tabs-title-border-radius:initial;--n-tabs-title-transition:.3s;--n-tabs-icon-color:var(--e-global-color-secondary,var(--n-tabs-color-secondary-fallback));--n-tabs-icon-color-hover:var(--n-tabs-title-color-hover);--n-tabs-icon-color-active:#fff;--n-tabs-icon-gap:5px;max-width:100%;width:100%;--n-tabs-title-padding-inline-start:var(--n-tabs-title-padding-left);--n-tabs-title-padding-inline-end:var(--n-tabs-title-padding-right);--n-tabs-title-padding-block-start:var(--n-tabs-title-padding-top);--n-tabs-title-padding-block-end:var(--n-tabs-title-padding-bottom);}.elementor-widget-n-tabs .e-n-tabs{display:var(--n-tabs-display);flex-direction:var(--n-tabs-direction);gap:var(--n-tabs-gap);min-width:0;text-align:start;}.elementor-widget-n-tabs .e-n-tabs-heading{display:var(--n-tabs-heading-display);flex-basis:var(--n-tabs-heading-width);flex-direction:var(--n-tabs-heading-direction);flex-shrink:0;flex-wrap:var(--n-tabs-heading-wrap);gap:var(--n-tabs-title-gap);justify-content:var(--n-tabs-heading-justify-content);overflow-x:var(--n-tabs-heading-overflow-x);-ms-overflow-style:none;scrollbar-width:none;}.elementor-widget-n-tabs .e-n-tabs-heading::-webkit-scrollbar{display:none;}.elementor-widget-n-tabs .e-n-tabs-content{display:var(--n-tabs-content-display);flex-grow:1;min-width:0;}.elementor-widget-n-tabs .e-n-tabs-content>.e-con:not(.e-active){display:none;}.elementor-widget-n-tabs .e-n-tabs:not(.e-activated)>.e-n-tabs-content>.e-con:first-child{display:flex;}.elementor-widget-n-tabs .e-n-tab-title{align-items:var(--n-tabs-title-align-items-toggle,var(--n-tabs-title-align-items));background-color:initial;border-radius:var(--n-tabs-title-border-radius);border-style:none;border-width:var(--n-tabs-border-width);display:flex;flex-basis:var(--n-tabs-title-flex-basis);flex-direction:var(--n-tabs-title-direction);flex-grow:var(--n-tabs-title-flex-grow);flex-shrink:var(--n-tabs-title-flex-shrink);gap:var(--n-tabs-icon-gap);height:var(--n-tabs-title-height);justify-content:var(--n-tabs-title-justify-content-toggle,var(--n-tabs-title-justify-content));padding-block-end:var(--n-tabs-title-padding-block-end);padding-block-start:var(--n-tabs-title-padding-block-start);padding-inline-end:var(--n-tabs-title-padding-inline-end);padding-inline-start:var(--n-tabs-title-padding-inline-start);position:relative;transition:background var(--n-tabs-title-transition),color var(--n-tabs-title-transition),border var(--n-tabs-title-transition),box-shadow var(--n-tabs-title-transition),text-shadow var(--n-tabs-title-transition),stroke var(--n-tabs-title-transition),stroke-width var(--n-tabs-title-transition),-webkit-text-stroke-width var(--n-tabs-title-transition),-webkit-text-stroke-color var(--n-tabs-title-transition),transform var(--n-tabs-title-transition);-webkit-user-select:none;-moz-user-select:none;user-select:none;white-space:var(--n-tabs-title-white-space);width:var(--n-tabs-title-width);}.elementor-widget-n-tabs .e-n-tab-title:focus:not(:focus-visible){outline:none;}.elementor-widget-n-tabs .e-n-tab-title span i,.elementor-widget-n-tabs .e-n-tab-title span svg{transition:color var(--n-tabs-title-transition),fill var(--n-tabs-title-transition);}.elementor-widget-n-tabs .e-n-tab-title-text{align-items:center;display:flex;font-size:var(--n-tabs-title-font-size);text-align:var(--n-tabs-title-text-align);}.elementor-widget-n-tabs .e-n-tab-title[aria-selected=false]{background-color:var(--n-tabs-title-background-color);}.elementor-widget-n-tabs .e-n-tab-title[aria-selected=false],.elementor-widget-n-tabs .e-n-tab-title[aria-selected=false] a{color:var(--n-tabs-title-color);}.elementor-widget-n-tabs .e-n-tab-title[aria-selected=true],.elementor-widget-n-tabs .e-n-tab-title[aria-selected=true] a{color:var(--n-tabs-title-color-active);}.elementor-widget-n-tabs .e-n-tab-title[aria-selected=true][class*=elementor-animation-]:active,.elementor-widget-n-tabs .e-n-tab-title[aria-selected=true][class*=elementor-animation-]:focus,.elementor-widget-n-tabs .e-n-tab-title[aria-selected=true][class*=elementor-animation-]:hover{animation:initial;transform:none;}.elementor-widget-n-tabs [data-touch-mode=false] .e-n-tab-title[aria-selected=false]:hover,.elementor-widget-n-tabs [data-touch-mode=false] .e-n-tab-title[aria-selected=false]:hover a{color:var(--n-tabs-title-color-hover);}.elementor-widget-n-tabs [data-touch-mode=true] .e-n-tab-title[aria-selected=false]:hover,.elementor-widget-n-tabs [data-touch-mode=true] .e-n-tab-title[aria-selected=false]:hover a{color:var(--n-tabs-title-color-active);}.elementor-widget-n-tabs [data-touch-mode=true] .e-n-tab-title[aria-selected=false]:hover[class*=elementor-animation-]:active,.elementor-widget-n-tabs [data-touch-mode=true] .e-n-tab-title[aria-selected=false]:hover[class*=elementor-animation-]:focus,.elementor-widget-n-tabs [data-touch-mode=true] .e-n-tab-title[aria-selected=false]:hover[class*=elementor-animation-]:hover{animation:initial;transform:none;}.elementor .elementor-element.elementor-widget-n-tabs:not(:has(>.elementor-widget-container))>.e-n-tabs[data-touch-mode=false]>.e-n-tabs-heading .e-n-tab-title[aria-selected=false]:hover,.elementor .elementor-element.elementor-widget-n-tabs>.elementor-widget-container>.e-n-tabs[data-touch-mode=false]>.e-n-tabs-heading .e-n-tab-title[aria-selected=false]:hover{background-color:var(--n-tabs-title-background-color-hover);background-image:none;}.elementor .elementor-element.elementor-widget-n-tabs:not(:has(>.elementor-widget-container))>.e-n-tabs>.e-n-tabs-heading .e-n-tab-title[aria-selected=true],.elementor .elementor-element.elementor-widget-n-tabs:not(:has(>.elementor-widget-container))>.e-n-tabs[data-touch-mode=true]>.e-n-tabs-heading .e-n-tab-title[aria-selected=false]:hover,.elementor .elementor-element.elementor-widget-n-tabs>.elementor-widget-container>.e-n-tabs>.e-n-tabs-heading .e-n-tab-title[aria-selected=true],.elementor .elementor-element.elementor-widget-n-tabs>.elementor-widget-container>.e-n-tabs[data-touch-mode=true]>.e-n-tabs-heading .e-n-tab-title[aria-selected=false]:hover{background-color:var(--n-tabs-title-background-color-active);background-image:none;}@media (max-width:767px){.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-mobile{--n-tabs-direction:column;--n-tabs-heading-display:contents;--n-tabs-content-display:contents;}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-mobile .e-n-tabs{gap:0;}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-mobile .e-n-tabs-content>.e-con{order:var(--n-tabs-title-order);}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-mobile .e-n-tab-title{order:var(--n-tabs-title-order);width:auto;}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-mobile .e-n-tab-title:not(:first-child){margin-block-start:var(--n-tabs-title-gap);}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-mobile .e-n-tab-title[aria-selected=true]{margin-block-end:var(--n-tabs-gap);}}:root{--comment-rating-star-color:#343434;}.wprm-comment-rating svg path{fill:var(--comment-rating-star-color);}.wprm-comment-rating svg polygon{stroke:var(--comment-rating-star-color);}.wprm-comment-rating .wprm-rating-star-full svg path{stroke:var(--comment-rating-star-color);fill:var(--comment-rating-star-color);}.wprm-comment-ratings-container svg .wprm-star-full{fill:var(--comment-rating-star-color);}.wprm-comment-ratings-container svg .wprm-star-empty{stroke:var(--comment-rating-star-color);}body:not(:hover) fieldset.wprm-comment-ratings-container:focus-within span{outline:1px solid #4d90fe;}.comment-form-wprm-rating{margin-bottom:20px;margin-top:5px;text-align:left;}.comment-form-wprm-rating .wprm-rating-stars{display:inline-block;vertical-align:middle;}fieldset.wprm-comment-ratings-container{background:none;border:0;display:inline-block;margin:0;padding:0;position:relative;}fieldset.wprm-comment-ratings-container legend{left:0;opacity:0;position:absolute;}fieldset.wprm-comment-ratings-container br{display:none;}fieldset.wprm-comment-ratings-container input[type=radio]{border:0;cursor:pointer;float:left;height:16px;margin:0 !important;min-height:0;min-width:0;opacity:0;padding:0 !important;width:16px;}fieldset.wprm-comment-ratings-container input[type=radio]:first-child{margin-left:-16px;}fieldset.wprm-comment-ratings-container span{font-size:0;height:16px;left:0;opacity:0;pointer-events:none;position:absolute;top:0;width:80px;}fieldset.wprm-comment-ratings-container span svg{height:100% !important;width:100% !important;}fieldset.wprm-comment-ratings-container input:checked+span,fieldset.wprm-comment-ratings-container input:hover+span{opacity:1;}fieldset.wprm-comment-ratings-container input:hover+span~span{display:none;}:root{--wprm-popup-font-size:16px;--wprm-popup-background:#fff;--wprm-popup-title:#000;--wprm-popup-content:#444;--wprm-popup-button-background:#5a822b;--wprm-popup-button-text:#fff;}.wprm-popup-modal{display:none;}.wprm-popup-modal__overlay{align-items:center;background:rgba(0,0,0,.6);bottom:0;display:flex;justify-content:center;left:0;position:fixed;right:0;top:0;z-index:2147483646;}.wprm-popup-modal__container{background-color:var(--wprm-popup-background);border-radius:4px;box-sizing:border-box;font-size:var(--wprm-popup-font-size);max-height:100vh;max-width:100%;overflow-y:auto;padding:30px;}.wprm-popup-modal__header{align-items:center;display:flex;justify-content:space-between;margin-bottom:10px;}.wprm-popup-modal__title{box-sizing:border-box;color:var(--wprm-popup-title);font-size:1.2em;font-weight:600;line-height:1.25;margin-bottom:0;margin-top:0;}.wprm-popup-modal__header .wprm-popup-modal__close{background:transparent;border:0;cursor:pointer;width:18px;}.wprm-popup-modal__header .wprm-popup-modal__close:before{color:var(--wprm-popup-title);content:"✕";font-size:var(--wprm-popup-font-size);}.wprm-popup-modal__content{color:var(--wprm-popup-content);line-height:1.5;}.wprm-popup-modal__content p{font-size:1em;line-height:1.5;}.wprm-popup-modal__footer{margin-top:20px;}.wprm-popup-modal__btn{-webkit-appearance:button;background-color:var(--wprm-popup-button-background);border-radius:.25em;border-style:none;border-width:0;color:var(--wprm-popup-button-text);cursor:pointer;font-size:1em;line-height:1.15;margin:0;overflow:visible;padding:.5em 1em;text-transform:none;will-change:transform;-moz-osx-font-smoothing:grayscale;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:translateZ(0);transform:translateZ(0);transition:-webkit-transform .25s ease-out;transition:transform .25s ease-out;transition:transform .25s ease-out,-webkit-transform .25s ease-out;}.wprm-popup-modal__btn:focus,.wprm-popup-modal__btn:hover{-webkit-transform:scale(1.05);transform:scale(1.05);}@keyframes wprmPopupModalFadeIn{0%{opacity:0;}to{opacity:1;}}@keyframes wprmPopupModalFadeOut{0%{opacity:1;}to{opacity:0;}}@keyframes wprmPopupModalSlideIn{0%{transform:translateY(15%);}to{transform:translateY(0);}}@keyframes wprmPopupModalSlideOut{0%{transform:translateY(0);}to{transform:translateY(-10%);}}.wprm-popup-modal[aria-hidden=false] .wprm-popup-modal__overlay{animation:wprmPopupModalFadeIn .3s cubic-bezier(0,0,.2,1);}.wprm-popup-modal[aria-hidden=false] .wprm-popup-modal__container{animation:wprmPopupModalSlideIn .3s cubic-bezier(0,0,.2,1);}.wprm-popup-modal[aria-hidden=true] .wprm-popup-modal__overlay{animation:wprmPopupModalFadeOut .3s cubic-bezier(0,0,.2,1);}.wprm-popup-modal[aria-hidden=true] .wprm-popup-modal__container{animation:wprmPopupModalSlideOut .3s cubic-bezier(0,0,.2,1);}.wprm-popup-modal .wprm-popup-modal__container,.wprm-popup-modal .wprm-popup-modal__overlay{will-change:transform;}[data-tippy-root]{max-width:calc(100vw - 10px);}img.wprm-comment-rating{display:block;margin:5px 0;}img.wprm-comment-rating+br{display:none;}.wprm-rating-star svg{display:inline;height:16px;margin:0;vertical-align:middle;width:16px;}.wprm-loader{animation:wprmSpin 1s ease-in-out infinite;-webkit-animation:wprmSpin 1s ease-in-out infinite;border:2px solid hsla(0,0%,78%,.3);border-radius:50%;border-top-color:#444;display:inline-block;height:10px;width:10px;}@keyframes wprmSpin{to{-webkit-transform:rotate(1turn);}}@-webkit-keyframes wprmSpin{to{-webkit-transform:rotate(1turn);}}.wprm-recipe-container{outline:none;}.wprm-recipe{overflow:hidden;zoom:1;clear:both;text-align:left;}.wprm-recipe *{box-sizing:border-box;}.wprm-recipe ol,.wprm-recipe ul{-webkit-margin-before:0;-webkit-margin-after:0;-webkit-padding-start:0;margin:0;padding:0;}.wprm-recipe li{font-size:1em;margin:0 0 0 32px;padding:0;}.wprm-recipe p{font-size:1em;margin:0;padding:0;}.wprm-recipe li,.wprm-recipe li.wprm-recipe-instruction{list-style-position:outside;}.wprm-recipe li:before{display:none;}.wprm-recipe h1,.wprm-recipe h2,.wprm-recipe h3,.wprm-recipe h4,.wprm-recipe h5,.wprm-recipe h6{clear:none;font-variant:normal;letter-spacing:normal;margin:0;padding:0;text-transform:none;}.wprm-recipe a.wprm-recipe-link,.wprm-recipe a.wprm-recipe-link:hover{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}body:not(.wprm-print) .wprm-recipe p:first-letter{color:inherit;font-family:inherit;font-size:inherit;line-height:inherit;margin:inherit;padding:inherit;}.wprm-screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute !important;width:1px;word-wrap:normal !important;}.wprm-call-to-action.wprm-call-to-action-simple{align-items:center;display:flex;gap:20px;justify-content:center;margin-top:10px;padding:5px 10px;}.wprm-call-to-action.wprm-call-to-action-simple .wprm-call-to-action-icon{font-size:2.2em;margin:5px 0;}.wprm-call-to-action.wprm-call-to-action-simple .wprm-call-to-action-icon svg{margin-top:0;}.wprm-call-to-action.wprm-call-to-action-simple .wprm-call-to-action-text-container{margin:5px 0;}.wprm-call-to-action.wprm-call-to-action-simple .wprm-call-to-action-text-container .wprm-call-to-action-header{display:block;font-size:1.3em;font-weight:700;}@media (max-width:450px){.wprm-call-to-action.wprm-call-to-action-simple{flex-wrap:wrap;}.wprm-call-to-action.wprm-call-to-action-simple .wprm-call-to-action-text-container{text-align:center;}}.wprm-meta-container-custom-color{--wprm-meta-container-block-color:inherit;--wprm-meta-container-label-color:inherit;--wprm-meta-container-link-color:inherit;}.wprm-meta-container-custom-color .wprm-recipe-block-container{color:var(--wprm-meta-container-block-color);}.wprm-meta-container-custom-color .wprm-recipe-block-container .wprm-recipe-details-label{color:var(--wprm-meta-container-label-color);}.wprm-meta-container-custom-color .wprm-recipe-block-container * a,.wprm-meta-container-custom-color .wprm-recipe-block-container a{color:var(--wprm-meta-container-link-color);}.wprm-recipe-block-container-inline{display:inline-block;margin-right:1.2em;}.wprm-recipe-details-container-inline{--wprm-meta-container-separator-color:#aaa;}.wprm-recipe-details-container-inline .wprm-recipe-block-container-inline{display:inline-block;margin-right:1.2em;}.wprm-recipe-details-container-inline.wprm-inline-separator .wprm-recipe-block-container-inline{margin-right:0;}.wprm-recipe-details-container-inline.wprm-inline-separator .wprm-recipe-block-container-inline:not(:last-child):after{color:var(--wprm-meta-container-separator-color);white-space:nowrap;}.wprm-recipe-details-container-inline.wprm-inline-separator-long-line .wprm-recipe-block-container-inline:not(:last-child):after,.wprm-recipe-details-container-inline.wprm-inline-separator-short-line .wprm-recipe-block-container-inline:not(:last-child):after{background-color:var(--wprm-meta-container-separator-color);content:"";display:inline-block;height:1em;margin:0 .8em;vertical-align:middle;width:1px;}.wprm-recipe-details-container-inline{display:inline;}.wprm-recipe-details-unit{font-size:.8em;}@media only screen and (max-width:600px){.wprm-recipe-details-unit{font-size:1em;}}.wprm-header-decoration-icon-line,.wprm-header-decoration-line,.wprm-header-decoration-spacer,.wprm-icon-decoration-line{align-items:center;display:flex;flex-wrap:wrap;}.wprm-header-decoration-icon-line.wprm-align-left .wprm-decoration-line,.wprm-header-decoration-line.wprm-align-left .wprm-decoration-line,.wprm-header-decoration-spacer.wprm-align-left .wprm-decoration-line,.wprm-icon-decoration-line.wprm-align-left .wprm-decoration-line{margin-left:15px;}.wprm-header-decoration-icon-line.wprm-align-center .wprm-decoration-line:first-child,.wprm-header-decoration-icon-line.wprm-align-right .wprm-decoration-line,.wprm-header-decoration-line.wprm-align-center .wprm-decoration-line:first-child,.wprm-header-decoration-line.wprm-align-right .wprm-decoration-line,.wprm-header-decoration-spacer.wprm-align-center .wprm-decoration-line:first-child,.wprm-header-decoration-spacer.wprm-align-right .wprm-decoration-line,.wprm-icon-decoration-line.wprm-align-center .wprm-decoration-line:first-child,.wprm-icon-decoration-line.wprm-align-right .wprm-decoration-line{margin-right:15px;}.wprm-header-decoration-icon-line.wprm-align-center .wprm-decoration-line:last-child,.wprm-header-decoration-line.wprm-align-center .wprm-decoration-line:last-child,.wprm-header-decoration-spacer.wprm-align-center .wprm-decoration-line:last-child,.wprm-icon-decoration-line.wprm-align-center .wprm-decoration-line:last-child{margin-left:15px;}.wprm-decoration-line{border:0;border-bottom:1px solid #000;flex:auto;height:1px;}.wprm-expandable-container,.wprm-expandable-container-separated{--wprm-expandable-text-color:#333;--wprm-expandable-button-color:#fff;--wprm-expandable-border-color:#333;--wprm-expandable-border-radius:0px;--wprm-expandable-vertical-padding:5px;--wprm-expandable-horizontal-padding:5px;}.wprm-expandable-container a.wprm-expandable-button,.wprm-expandable-container button.wprm-expandable-button,.wprm-expandable-container-separated a.wprm-expandable-button,.wprm-expandable-container-separated button.wprm-expandable-button{color:var(--wprm-expandable-text-color);}.wprm-expandable-container button.wprm-expandable-button,.wprm-expandable-container-separated button.wprm-expandable-button{background-color:var(--wprm-expandable-button-color);border-color:var(--wprm-expandable-border-color);border-radius:var(--wprm-expandable-border-radius);padding:var(--wprm-expandable-vertical-padding) var(--wprm-expandable-horizontal-padding);}.wprm-expandable-container-separated.wprm-expandable-collapsed .wprm-expandable-button-hide,.wprm-expandable-container-separated.wprm-expandable-collapsed .wprm-expandable-content,.wprm-expandable-container-separated.wprm-expandable-expanded .wprm-expandable-button-show,.wprm-expandable-container.wprm-expandable-collapsed .wprm-expandable-button-hide,.wprm-expandable-container.wprm-expandable-collapsed .wprm-expandable-content,.wprm-expandable-container.wprm-expandable-expanded .wprm-expandable-button-show{display:none;}.wprm-block-text-normal{font-style:normal;font-weight:400;text-transform:none;}.wprm-block-text-light-bold{font-weight:500 !important;}.wprm-block-text-semi-bold{font-weight:600 !important;}.wprm-block-text-bold{font-weight:700 !important;}.wprm-align-left{text-align:left;}.wprm-align-center{text-align:center;}.wprm-align-right{text-align:right;}.wprm-align-middle{align-items:center;}.wprm-recipe-header .wprm-recipe-icon:not(.wprm-collapsible-icon){margin-right:10px;}.wprm-recipe-header .wprm-recipe-icon.wprm-collapsible-icon{margin-left:10px;}.wprm-recipe-header .wprm-recipe-adjustable-servings-container,.wprm-recipe-header .wprm-recipe-media-toggle-container,.wprm-recipe-header .wprm-unit-conversion-container{font-size:16px;font-style:normal;font-weight:400;opacity:1;text-transform:none;}.wprm-recipe-header .wprm-header-toggle{float:right;}.wprm-recipe-header .wprm-header-toggle a.wprm-expandable-button{color:#333;cursor:pointer;text-decoration:none;}.wprm-recipe-icon svg{display:inline;height:1.3em;margin-top:-.15em;overflow:visible;vertical-align:middle;width:1.3em;}.wprm-interactivity-container{display:flex;gap:10px;margin:10px 20px 0;}.wprm-internal-container{background-color:#fff;border:0 solid #fff;border-radius:20px;padding:20px;}.wprm-internal-container ul li{margin-left:16px;}.wprm-internal-container .wprm-internal-container-toggle+.wprm-recipe-ingredient-group .wprm-recipe-group-name,.wprm-internal-container .wprm-internal-container-toggle+.wprm-recipe-instruction-group .wprm-recipe-group-name,.wprm-internal-container .wprm-recipe-ingredient-group:first-child .wprm-recipe-group-name,.wprm-internal-container .wprm-recipe-instruction-group:first-child .wprm-recipe-group-name{margin-top:0 !important;}.wprm-recipe-image img{display:block;margin:0 auto;}.wprm-recipe-ingredients-container .wprm-recipe-ingredient-group-name{margin-top:.8em !important;}.wprm-recipe-ingredients-container .wprm-recipe-ingredient-notes-faded{opacity:.7;}.wprm-recipe-instructions-container .wprm-recipe-instruction-text{font-size:1em;}.wprm-layout-container{--wprm-layout-container-text-color:inherit;--wprm-layout-container-background-color:inherit;background-color:var(--wprm-layout-container-background-color);color:var(--wprm-layout-container-text-color);}.wprm-layout-column-container{display:flex;flex-wrap:nowrap;}.wprm-layout-column{--wprm-layout-column-text-color:inherit;--wprm-layout-column-background-color:inherit;background-color:var(--wprm-layout-column-background-color);color:var(--wprm-layout-column-text-color);}.wprm-padding-40{padding:40px;}.wprm-column-gap-10{column-gap:10px;}.wprm-column-gap-40{column-gap:40px;}.wprm-row-gap-20{row-gap:20px;}.wprm-layout-column{flex:auto;}.wprm-column-width-33{flex:1 1 33.33%;}.wprm-column-width-40{flex:1 1 40%;}.wprm-column-width-66{flex:1 1 66.66%;}.wprm-column-width-80{flex:1 1 80%;}.wprm-recipe-link{cursor:pointer;text-decoration:none;}.wprm-recipe-link.wprm-recipe-link-inline-button{display:inline-block;margin:0 5px 5px 0;}.wprm-recipe-link.wprm-recipe-link-button,.wprm-recipe-link.wprm-recipe-link-inline-button,.wprm-recipe-link.wprm-recipe-link-wide-button{border-style:solid;border-width:1px;padding:5px;}.wprm-nutrition-label-container-grouped{display:flex;flex-wrap:wrap;justify-content:flex-start;}.wprm-nutrition-label-container-grouped .wprm-nutrition-label-text-nutrition-container{white-space:nowrap;}.wprm-recipe-rating{white-space:nowrap;}.wprm-recipe-rating svg{height:1.1em;margin-top:-.15em !important;margin:0;vertical-align:middle;width:1.1em;}.wprm-recipe-rating.wprm-recipe-rating-inline{align-items:center;display:inline-flex;}.wprm-recipe-rating.wprm-recipe-rating-inline .wprm-recipe-rating-details{display:inline-block;margin-left:10px;}.wprm-recipe-rating .wprm-recipe-rating-details{font-size:.8em;}.wprm-spacer{background:none !important;display:block !important;font-size:0;height:10px;line-height:0;width:100%;}.wprm-spacer+.wprm-spacer{display:none !important;}.wprm-recipe-instruction-text .wprm-spacer,.wprm-recipe-notes .wprm-spacer,.wprm-recipe-summary .wprm-spacer{display:block !important;}.wprm-toggle-switch-container{align-items:center;display:flex;margin:10px 0;}.wprm-toggle-switch-container label{cursor:pointer;flex-shrink:0;font-size:1em;margin:0;}.wprm-toggle-switch{align-items:center;display:inline-flex;position:relative;}.wprm-toggle-switch input{height:0;margin:0;min-width:0;opacity:0;padding:0;width:0;}.wprm-toggle-switch .wprm-toggle-switch-slider{align-items:center;cursor:pointer;display:inline-flex;gap:5px;position:relative;-webkit-transition:.4s;transition:.4s;--switch-height:28px;height:var(--switch-height);--knob-size:calc(var(--switch-height) * .8);--switch-off-color:#ccc;--switch-off-text:#333;--switch-off-knob:#fff;--switch-on-color:#333;--switch-on-text:#fff;--switch-on-knob:#fff;background-color:var(--switch-off-color);}.wprm-toggle-switch .wprm-toggle-switch-slider:before{background-color:var(--switch-off-knob);content:"";height:var(--knob-size);left:calc(var(--knob-size) / 5);position:absolute;-webkit-transition:.4s;transition:.4s;width:var(--knob-size);}.wprm-toggle-switch input:checked+.wprm-toggle-switch-slider{background-color:var(--switch-on-color);}.wprm-toggle-switch input:focus+.wprm-toggle-switch-slider{box-shadow:0 0 0 3px rgba(0,0,0,.12);}.wprm-toggle-switch input:checked+.wprm-toggle-switch-slider:before{background-color:var(--switch-on-knob);left:calc(100% - var(--knob-size) - var(--knob-size) / 5);}.wprm-toggle-switch-inside .wprm-toggle-switch-text{display:grid;}.wprm-toggle-switch-inside .wprm-toggle-switch-text .wprm-toggle-switch-off,.wprm-toggle-switch-inside .wprm-toggle-switch-text .wprm-toggle-switch-on{align-items:center;color:#fff;display:flex;font-size:calc(var(--switch-height) * .5);gap:5px;grid-area:1/1;opacity:0;transition:opacity .4s;white-space:nowrap;}.wprm-toggle-switch-inside .wprm-toggle-switch-text .wprm-toggle-switch-off .wprm-recipe-icon,.wprm-toggle-switch-inside .wprm-toggle-switch-text .wprm-toggle-switch-on .wprm-recipe-icon{align-items:center;display:inline-flex;margin-right:0;}.wprm-toggle-switch-inside .wprm-toggle-switch-text .wprm-toggle-switch-off .wprm-recipe-icon svg,.wprm-toggle-switch-inside .wprm-toggle-switch-text .wprm-toggle-switch-on .wprm-recipe-icon svg{margin-top:0;}.wprm-toggle-switch-inside .wprm-toggle-switch-slider{padding:5px 10px;padding-left:calc(var(--knob-size) + var(--knob-size) / 5 + 5px);padding-right:10px;}.wprm-toggle-switch-inside .wprm-toggle-switch-slider .wprm-toggle-switch-off{color:var(--switch-off-text);opacity:1;}.wprm-toggle-switch-inside .wprm-toggle-switch-slider .wprm-toggle-switch-on{color:var(--switch-on-text);opacity:0;}.wprm-toggle-switch-inside input:checked+.wprm-toggle-switch-slider{padding-left:10px;padding-right:calc(var(--knob-size) + var(--knob-size) / 5 + 5px);}.wprm-toggle-switch-inside input:checked+.wprm-toggle-switch-slider .wprm-toggle-switch-off{opacity:0;}.wprm-toggle-switch-inside input:checked+.wprm-toggle-switch-slider .wprm-toggle-switch-on{opacity:1;}.wprm-toggle-switch-rounded .wprm-toggle-switch-slider{border-radius:999px;}.wprm-toggle-switch-rounded .wprm-toggle-switch-slider:before{border-radius:50%;}.wprm-toggle-container button.wprm-toggle{border:none;border-radius:0;box-shadow:none;cursor:pointer;display:inline-block;font-size:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;text-decoration:none;text-transform:inherit;white-space:nowrap;}.wprm-toggle-container button.wprm-toggle:focus{outline:none;}@keyframes wprmtimerblink{50%{opacity:.5;}}.wprm-user-rating.wprm-user-rating-allowed .wprm-rating-star{cursor:pointer;}.wprm-popup-modal-user-rating .wprm-popup-modal__container{max-width:500px;width:95%;}.wprm-popup-modal-user-rating #wprm-user-ratings-modal-message{display:none;}.wprm-popup-modal-user-rating .wprm-user-ratings-modal-recipe-name{margin:5px auto;max-width:350px;text-align:center;}.wprm-popup-modal-user-rating .wprm-user-ratings-modal-stars-container{margin-bottom:5px;text-align:center;}.wprm-popup-modal-user-rating input,.wprm-popup-modal-user-rating textarea{box-sizing:border-box;}.wprm-popup-modal-user-rating textarea{border:1px solid #cecece;border-radius:4px;display:block;font-family:inherit;font-size:.9em;line-height:1.5;margin:0;min-height:75px;padding:10px;resize:vertical;width:100%;}.wprm-popup-modal-user-rating textarea:focus::placeholder{color:transparent;}.wprm-popup-modal-user-rating .wprm-user-rating-modal-field{align-items:center;display:flex;margin-top:10px;}.wprm-popup-modal-user-rating .wprm-user-rating-modal-field label{margin-right:10px;min-width:70px;width:auto;}.wprm-popup-modal-user-rating .wprm-user-rating-modal-field input{border:1px solid #cecece;border-radius:4px;display:block;flex:1;font-size:.9em;line-height:1.5;margin:0;padding:5px 10px;width:100%;}.wprm-popup-modal-user-rating button{margin-right:5px;}.wprm-popup-modal-user-rating button:disabled,.wprm-popup-modal-user-rating button[disabled]{cursor:not-allowed;opacity:.5;}.wprm-popup-modal-user-rating #wprm-user-rating-modal-errors{color:darkred;display:inline-block;font-size:.8em;}.wprm-popup-modal-user-rating #wprm-user-rating-modal-errors div,.wprm-popup-modal-user-rating #wprm-user-rating-modal-thank-you,.wprm-popup-modal-user-rating #wprm-user-rating-modal-waiting{display:none;}fieldset.wprm-user-ratings-modal-stars{background:none;border:0;display:inline-block;margin:0;padding:0;position:relative;}fieldset.wprm-user-ratings-modal-stars legend{left:0;opacity:0;position:absolute;}fieldset.wprm-user-ratings-modal-stars br{display:none;}fieldset.wprm-user-ratings-modal-stars input[type=radio]{border:0;cursor:pointer;float:left;height:16px;margin:0 !important;min-height:0;min-width:0;opacity:0;padding:0 !important;width:16px;}fieldset.wprm-user-ratings-modal-stars input[type=radio]:first-child{margin-left:-16px;}fieldset.wprm-user-ratings-modal-stars span{font-size:0;height:16px;left:0;opacity:0;pointer-events:none;position:absolute;top:0;width:80px;}fieldset.wprm-user-ratings-modal-stars span svg{height:100% !important;width:100% !important;}fieldset.wprm-user-ratings-modal-stars input:checked+span,fieldset.wprm-user-ratings-modal-stars input:hover+span{opacity:1;}fieldset.wprm-user-ratings-modal-stars input:hover+span~span{display:none;}.wprm-user-rating-summary{align-items:center;display:flex;}.wprm-user-rating-summary .wprm-user-rating-summary-stars{margin-right:10px;}.wprm-user-rating-summary .wprm-user-rating-summary-details{margin-top:2px;}.wprm-popup-modal-user-rating-summary .wprm-popup-modal-user-rating-summary-error{display:none;}.wprm-popup-modal-user-rating-summary .wprm-popup-modal-user-rating-summary-ratings{max-height:500px;overflow-y:scroll;}@supports (-webkit-touch-callout:none){.wprm-popup-modal-user-rating .wprm-user-rating-modal-field input,.wprm-popup-modal-user-rating textarea{font-size:16px;}}.wprm-recipe-equipment-container,.wprm-recipe-ingredients-container,.wprm-recipe-instructions-container,ul.wprm-advanced-list.wprm-advanced-list-reset{counter-reset:wprm-advanced-list-counter;}.wprm-checkbox-container{margin-left:-16px;}.wprm-checkbox-container input[type=checkbox]{margin:0 !important;opacity:0;width:16px !important;}.wprm-checkbox-container label.wprm-checkbox-label{display:inline !important;left:0;margin:0 !important;padding-left:26px;position:relative;}.wprm-checkbox-container label:after,.wprm-checkbox-container label:before{content:"";display:inline-block;position:absolute;}.wprm-checkbox-container label:before{border:1px solid;height:18px;left:0;top:0;width:18px;}.wprm-checkbox-container label:after{border-bottom:2px solid;border-left:2px solid;height:5px;left:5px;top:5px;transform:rotate(-45deg);width:9px;}.wprm-checkbox-container input[type=checkbox]+label:after{content:none;}.wprm-checkbox-container input[type=checkbox]:checked+label:after{content:"";}.wprm-checkbox-container input[type=checkbox]:focus+label:before{outline:5px auto #3b99fc;}.wprm-recipe-equipment li,.wprm-recipe-ingredients li,.wprm-recipe-instructions li{position:relative;}.wprm-recipe-equipment li .wprm-checkbox-container,.wprm-recipe-ingredients li .wprm-checkbox-container,.wprm-recipe-instructions li .wprm-checkbox-container{display:inline-block;left:-32px;line-height:.9em;position:absolute;top:.25em;}.wprm-private-notes-container:not(.wprm-private-notes-container-disabled){cursor:pointer;}.wprm-private-notes-container .wprm-private-notes-input,.wprm-private-notes-container .wprm-private-notes-user,.wprm-private-notes-container.wprm-private-notes-has-notes .wprm-private-notes-placeholder{display:none;}.wprm-private-notes-container .wprm-private-notes-user{white-space:pre-wrap;}.wprm-private-notes-container .wprm-private-notes-input{box-sizing:border-box;height:100px;overflow:hidden;padding:5px;resize:none;width:100%;}input[type=number].wprm-recipe-servings{display:inline;margin:0;padding:5px;width:60px;}.elementor-widget-loop-grid{scroll-margin-top:var(--auto-scroll-offset,initial);}.elementor-widget-loop-grid .elementor-grid{grid-column-gap:var(--grid-column-gap,30px);grid-row-gap:var(--grid-row-gap,30px);}.elementor-loop-container:not(.elementor-posts-masonry){align-items:stretch;}@keyframes loadingOpacityAnimation{0%,to{opacity:1;}50%{opacity:.6;}}.elementor-widget-image-box .elementor-image-box-content{width:100%;}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex;}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{flex-direction:row;text-align:start;}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center;}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-bottom:15px;margin-left:auto !important;margin-right:auto !important;}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block;}.elementor-widget-image-box .elementor-image-box-img img{display:block;line-height:0;}.elementor-widget-image-box .elementor-image-box-title a{color:inherit;}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center;}</style><link rel="preload" data-rocket-preload as="image" href="https://www.howtocook.recipes/wp-content/uploads/2020/12/Best-chocolate-cake-recipe.jpg" fetchpriority="high">
<link rel="canonical" href="https://www.howtocook.recipes/classic-chocolate-cake-recipe/" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="recipe" />
<meta property="og:title" content="Classic Chocolate Cake Recipe (step-by-step video) | How To Cook.Recipes" />
<meta property="og:description" content="Two layers of rich homemade chocolate cake and chocolate buttercream frosting are the perfect way to impress. My kids ask for this for birthdays and on the holidays too. And even though my husband says he isn’t into sweets, you can catch him sneaking slices of this classic chocolate cake recipe. Best Chocolate Cake Recipe […]" />
<meta property="og:url" content="https://www.howtocook.recipes/classic-chocolate-cake-recipe/" />
<meta property="og:site_name" content="How To Cook.Recipes" />
<meta property="article:published_time" content="2020-11-29T16:16:54+00:00" />
<meta property="article:modified_time" content="2025-10-06T20:13:16+00:00" />
<meta property="og:image" content="https://www.howtocook.recipes/wp-content/uploads/2020/12/Chocolate-cake-recipe.jpg" />
<meta property="og:image:width" content="500" />
<meta property="og:image:height" content="500" />
<meta property="og:image:type" content="image/jpeg" />
<meta name="author" content="Megan Miller" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:label1" content="Written by" />
<meta name="twitter:data1" content="Megan Miller" />
<meta name="twitter:label2" content="Est. reading time" />
<meta name="twitter:data2" content="9 minutes" />
<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"Article","@id":"https://www.howtocook.recipes/classic-chocolate-cake-recipe/#article","isPartOf":{"@id":"https://www.howtocook.recipes/classic-chocolate-cake-recipe/"},"author":{"name":"Megan Miller","@id":"https://www.howtocook.recipes/#/schema/person/b1d19009b83d120f432c46da74576ff3"},"headline":"Classic Chocolate Cake Recipe","datePublished":"2020-11-29T16:16:54+00:00","dateModified":"2025-10-06T20:13:16+00:00","wordCount":1592,"commentCount":0,"publisher":{"@id":"https://www.howtocook.recipes/#organization"},"image":{"@id":"https://www.howtocook.recipes/classic-chocolate-cake-recipe/#primaryimage"},"thumbnailUrl":"https://www.howtocook.recipes/wp-content/uploads/2020/12/Chocolate-cake-recipe.jpg","keywords":["cake","chocolate","dessert"],"articleSection":["Desserts"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https://www.howtocook.recipes/classic-chocolate-cake-recipe/#respond"]}]},{"@type":"WebPage","@id":"https://www.howtocook.recipes/classic-chocolate-cake-recipe/","url":"https://www.howtocook.recipes/classic-chocolate-cake-recipe/","name":"Classic Chocolate Cake Recipe (step-by-step video) | How To Cook.Recipes","isPartOf":{"@id":"https://www.howtocook.recipes/#website"},"primaryImageOfPage":{"@id":"https://www.howtocook.recipes/classic-chocolate-cake-recipe/#primaryimage"},"image":{"@id":"https://www.howtocook.recipes/classic-chocolate-cake-recipe/#primaryimage"},"thumbnailUrl":"https://www.howtocook.recipes/wp-content/uploads/2020/12/Chocolate-cake-recipe.jpg","datePublished":"2020-11-29T16:16:54+00:00","dateModified":"2025-10-06T20:13:16+00:00","breadcrumb":{"@id":"https://www.howtocook.recipes/classic-chocolate-cake-recipe/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://www.howtocook.recipes/classic-chocolate-cake-recipe/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https://www.howtocook.recipes/classic-chocolate-cake-recipe/#primaryimage","url":"https://www.howtocook.recipes/wp-content/uploads/2020/12/Chocolate-cake-recipe.jpg","contentUrl":"https://www.howtocook.recipes/wp-content/uploads/2020/12/Chocolate-cake-recipe.jpg","width":500,"height":500,"caption":"Chocolate cake recipe"},{"@type":"BreadcrumbList","@id":"https://www.howtocook.recipes/classic-chocolate-cake-recipe/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"How to Cook","item":"https://www.howtocook.recipes/"},{"@type":"ListItem","position":2,"name":"Desserts","item":"https://www.howtocook.recipes/category/desserts/"},{"@type":"ListItem","position":3,"name":"Classic Chocolate Cake Recipe"}]},{"@type":"WebSite","@id":"https://www.howtocook.recipes/#website","url":"https://www.howtocook.recipes/","name":"How To Cook.Recipes","description":"","publisher":{"@id":"https://www.howtocook.recipes/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://www.howtocook.recipes/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https://www.howtocook.recipes/#organization","name":"How To Cook.Recipes","url":"https://www.howtocook.recipes/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https://www.howtocook.recipes/#/schema/logo/image/","url":"https://www.howtocook.recipes/wp-content/uploads/2020/08/logo2.png","contentUrl":"https://www.howtocook.recipes/wp-content/uploads/2020/08/logo2.png","width":250,"height":250,"caption":"How To Cook.Recipes"},"image":{"@id":"https://www.howtocook.recipes/#/schema/logo/image/"}},{"@type":"Person","@id":"https://www.howtocook.recipes/#/schema/person/b1d19009b83d120f432c46da74576ff3","name":"Megan Miller","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https://www.howtocook.recipes/#/schema/person/image/","url":"https://secure.gravatar.com/avatar/c874e3cc7983bd78c04739b91fa2922e088764193e8c27dcd806c5cfc8e44efa?s=96&d=mm&r=g","contentUrl":"https://secure.gravatar.com/avatar/c874e3cc7983bd78c04739b91fa2922e088764193e8c27dcd806c5cfc8e44efa?s=96&d=mm&r=g","caption":"Megan Miller"},"description":"I’m a mom of two, food and wine lover, and recipe creation enthusiast. Good food brings families together. Which is why I’m devoted to sharing my best recipes that are simple enough for even the beginner cook that your family will love!","sameAs":["https://www.pinterest.com/HowToCook_Recipes/"],"url":"https://www.howtocook.recipes/author/howtocookrecip/"},{"@type":"Recipe","name":"Classic Chocolate Cake Recipe","author":{"@id":"https://www.howtocook.recipes/#/schema/person/b1d19009b83d120f432c46da74576ff3"},"description":"This family favorite chocolate cake recipe makes the best chocolate cake I've EVER had! It has a silky soft textured chocolate frosting with super moist light cake that comes out perfect every time! The chocolate combination is incredible and always has people asking me for the recipe. Here you go!","datePublished":"2020-11-29T16:16:54+00:00","image":["https://www.howtocook.recipes/wp-content/uploads/2020/12/Chocolate-cake-recipe.jpg","https://www.howtocook.recipes/wp-content/uploads/2020/12/Chocolate-cake-recipe-500x500.jpg","https://www.howtocook.recipes/wp-content/uploads/2020/12/Chocolate-cake-recipe-500x375.jpg","https://www.howtocook.recipes/wp-content/uploads/2020/12/Chocolate-cake-recipe-480x270.jpg"],"recipeYield":["14","14 servings"],"prepTime":"PT20M","cookTime":"PT30M","totalTime":"PT50M","recipeIngredient":["2 cups all-purpose flour","2 1/4 cups sugar","2 tsp baking powder","1 tsp salt","1 1/2 tsp baking soda","3/4 cocoa powder (unsweetened)","1/2 cup vegetable oil","1 1/8 cup buttermilk","2 eggs","3 tsp vanilla extract","1 cup hot water","1 cup cocoa powder (unsweetened)","2 cups butter (softened)","5 cups confectioners sugar","1/2 cup heavy cream","2 1/2 tsp vanilla extract"],"recipeInstructions":[{"@type":"HowToStep","text":"Grease two 9-inch cake pans and preheat oven to 350F.","name":"Grease two 9-inch cake pans and preheat oven to 350F.","url":"https://www.howtocook.recipes/classic-chocolate-cake-recipe/#wprm-recipe-5969-step-0-0"},{"@type":"HowToStep","text":"Then, add the flour, sugar, cocoa powder, baking powder, baking soda and teaspoon of salt to a large bowl and stir thoroughly. Next, add the milk, vegetable oil, eggs, and vanilla to your dry ingredient mixture. Combine together with a whisk or hand mixer on medium speed until thoroughly mixed. Once the mixture is thoroughly combined, slowly pour in your hot water until the batter is combined.","name":"Then, add the flour, sugar, cocoa powder, baking powder, baking soda and teaspoon of salt to a large bowl and stir thoroughly. Next, add the milk, vegetable oil, eggs, and vanilla to your dry ingredient mixture. Combine together with a whisk or hand mixer on medium speed until thoroughly mixed. Once the mixture is thoroughly combined, slowly pour in your hot water until the batter is combined.","url":"https://www.howtocook.recipes/classic-chocolate-cake-recipe/#wprm-recipe-5969-step-0-1"},{"@type":"HowToStep","text":"Pour even amounts of cake batter into the two prepared cake pans and bake for 30 to 35 minutes. Allow to cool thoroughly before frosting.","name":"Pour even amounts of cake batter into the two prepared cake pans and bake for 30 to 35 minutes. Allow to cool thoroughly before frosting.","url":"https://www.howtocook.recipes/classic-chocolate-cake-recipe/#wprm-recipe-5969-step-0-2"},{"@type":"HowToSection","name":"Chocolate Buttercream Frosting","itemListElement":[{"@type":"HowToStep","text":"In a large bowl, cream together the cocoa powder and butter until thoroughly combined.","name":"In a large bowl, cream together the cocoa powder and butter until thoroughly combined.","url":"https://www.howtocook.recipes/classic-chocolate-cake-recipe/#wprm-recipe-5969-step-1-0"},{"@type":"HowToStep","text":"Then, in small batches of 1 cup, add in the confectioner’s sugar with about 1-2 tablespoons of cream and mix on high speed with a hand mixer. Repeat this until you have added all of your cream and confectioner’s sugar, then add the vanilla extract and combined thoroughly.","name":"Then, in small batches of 1 cup, add in the confectioner’s sugar with about 1-2 tablespoons of cream and mix on high speed with a hand mixer. Repeat this until you have added all of your cream and confectioner’s sugar, then add the vanilla extract and combined thoroughly.","url":"https://www.howtocook.recipes/classic-chocolate-cake-recipe/#wprm-recipe-5969-step-1-1"}]}],"aggregateRating":{"@type":"AggregateRating","ratingValue":"5","ratingCount":"1"},"recipeCategory":["Dessert"],"recipeCuisine":["American"],"nutrition":{"@type":"NutritionInformation","calories":"541 kcal","carbohydrateContent":"106 g","proteinContent":"12 g","fatContent":"31 g","saturatedFatContent":"11 g","cholesterolContent":"37 mg","sodiumContent":"407 mg","fiberContent":"3 g","sugarContent":"33 g","servingSize":"1 serving"},"@id":"https://www.howtocook.recipes/classic-chocolate-cake-recipe/#recipe","isPartOf":{"@id":"https://www.howtocook.recipes/classic-chocolate-cake-recipe/#article"},"mainEntityOfPage":"https://www.howtocook.recipes/classic-chocolate-cake-recipe/"}]}</script>
<!-- / Yoast SEO plugin. -->
<link rel="alternate" type="application/rss+xml" title="How To Cook.Recipes » Feed" href="https://www.howtocook.recipes/feed/" />
<link rel="alternate" type="application/rss+xml" title="How To Cook.Recipes » Comments Feed" href="https://www.howtocook.recipes/comments/feed/" />
<link rel="alternate" type="application/rss+xml" title="How To Cook.Recipes » Classic Chocolate Cake Recipe Comments Feed" href="https://www.howtocook.recipes/classic-chocolate-cake-recipe/feed/" />
<script type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1">(()=>{"use strict";const e=[400,500,600,700,800,900],t=e=>`wprm-min-${e}`,n=e=>`wprm-max-${e}`,s=new Set,o="ResizeObserver"in window,r=o?new ResizeObserver((e=>{for(const t of e)c(t.target)})):null,i=.5/(window.devicePixelRatio||1);function c(s){const o=s.getBoundingClientRect().width||0;for(let r=0;r<e.length;r++){const c=e[r],a=o<=c+i;o>c+i?s.classList.add(t(c)):s.classList.remove(t(c)),a?s.classList.add(n(c)):s.classList.remove(n(c))}}function a(e){s.has(e)||(s.add(e),r&&r.observe(e),c(e))}!function(e=document){e.querySelectorAll(".wprm-recipe").forEach(a)}();if(new MutationObserver((e=>{for(const t of e)for(const e of t.addedNodes)e instanceof Element&&(e.matches?.(".wprm-recipe")&&a(e),e.querySelectorAll?.(".wprm-recipe").forEach(a))})).observe(document.documentElement,{childList:!0,subtree:!0}),!o){let e=0;addEventListener("resize",(()=>{e&&cancelAnimationFrame(e),e=requestAnimationFrame((()=>s.forEach(c)))}),{passive:!0})}})();</script> <!-- This site uses the Google Analytics by ExactMetrics plugin v8.10.1 - Using Analytics tracking - https://www.exactmetrics.com/ -->
<script src="//www.googletagmanager.com/gtag/js?id=G-G5RJX323H7" data-cfasync="false" data-wpfc-render="false" async type="pmdelayedscript" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1"></script>
<script data-cfasync="false" data-wpfc-render="false" type="pmdelayedscript" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1">
var em_version = '8.10.1';
var em_track_user = true;
var em_no_track_reason = '';
var ExactMetricsDefaultLocations = {"page_location":"https:\/\/www.howtocook.recipes\/classic-chocolate-cake-recipe\/","page_referrer":"https:\/\/www.howtocook.recipes\/"};
ExactMetricsDefaultLocations.page_location = window.location.href;
if ( typeof ExactMetricsPrivacyGuardFilter === 'function' ) {
var ExactMetricsLocations = (typeof ExactMetricsExcludeQuery === 'object') ? ExactMetricsPrivacyGuardFilter( ExactMetricsExcludeQuery ) : ExactMetricsPrivacyGuardFilter( ExactMetricsDefaultLocations );
} else {
var ExactMetricsLocations = (typeof ExactMetricsExcludeQuery === 'object') ? ExactMetricsExcludeQuery : ExactMetricsDefaultLocations;
}
var disableStrs = [
'ga-disable-G-G5RJX323H7',
];
/* Function to detect opted out users */
function __gtagTrackerIsOptedOut() {
for (var index = 0; index < disableStrs.length; index++) {
if (document.cookie.indexOf(disableStrs[index] + '=true') > -1) {
return true;
}
}
return false;
}
/* Disable tracking if the opt-out cookie exists. */
if (__gtagTrackerIsOptedOut()) {
for (var index = 0; index < disableStrs.length; index++) {
window[disableStrs[index]] = true;
}
}
/* Opt-out function */
function __gtagTrackerOptout() {
for (var index = 0; index < disableStrs.length; index++) {
document.cookie = disableStrs[index] + '=true; expires=Thu, 31 Dec 2099 23:59:59 UTC; path=/';
window[disableStrs[index]] = true;
}
}
if ('undefined' === typeof gaOptout) {
function gaOptout() {
__gtagTrackerOptout();
}
}
window.dataLayer = window.dataLayer || [];
window.ExactMetricsDualTracker = {
helpers: {},
trackers: {},
};
if (em_track_user) {
function __gtagDataLayer() {
dataLayer.push(arguments);
}
function __gtagTracker(type, name, parameters) {
if (!parameters) {
parameters = {};
}
if (parameters.send_to) {
__gtagDataLayer.apply(null, arguments);
return;
}
if (type === 'event') {
parameters.send_to = exactmetrics_frontend.v4_id;
var hookName = name;
if (typeof parameters['event_category'] !== 'undefined') {
hookName = parameters['event_category'] + ':' + name;
}
if (typeof ExactMetricsDualTracker.trackers[hookName] !== 'undefined') {
ExactMetricsDualTracker.trackers[hookName](parameters);
} else {
__gtagDataLayer('event', name, parameters);
}
} else {
__gtagDataLayer.apply(null, arguments);
}
}
__gtagTracker('js', new Date());
__gtagTracker('set', {
'developer_id.dNDMyYj': true,
});
if ( ExactMetricsLocations.page_location ) {
__gtagTracker('set', ExactMetricsLocations);
}
__gtagTracker('config', 'G-G5RJX323H7', {"forceSSL":"true","link_attribution":"true"} );
window.gtag = __gtagTracker; (function () {
/* https://developers.google.com/analytics/devguides/collection/analyticsjs/ */
/* ga and __gaTracker compatibility shim. */
var noopfn = function () {
return null;
};
var newtracker = function () {
return new Tracker();
};
var Tracker = function () {
return null;
};
var p = Tracker.prototype;
p.get = noopfn;
p.set = noopfn;
p.send = function () {
var args = Array.prototype.slice.call(arguments);
args.unshift('send');
__gaTracker.apply(null, args);
};
var __gaTracker = function () {
var len = arguments.length;
if (len === 0) {
return;
}
var f = arguments[len - 1];
if (typeof f !== 'object' || f === null || typeof f.hitCallback !== 'function') {
if ('send' === arguments[0]) {
var hitConverted, hitObject = false, action;
if ('event' === arguments[1]) {
if ('undefined' !== typeof arguments[3]) {
hitObject = {
'eventAction': arguments[3],
'eventCategory': arguments[2],
'eventLabel': arguments[4],
'value': arguments[5] ? arguments[5] : 1,
}
}
}
if ('pageview' === arguments[1]) {
if ('undefined' !== typeof arguments[2]) {
hitObject = {
'eventAction': 'page_view',
'page_path': arguments[2],
}
}
}
if (typeof arguments[2] === 'object') {
hitObject = arguments[2];
}
if (typeof arguments[5] === 'object') {
Object.assign(hitObject, arguments[5]);
}
if ('undefined' !== typeof arguments[1].hitType) {
hitObject = arguments[1];
if ('pageview' === hitObject.hitType) {
hitObject.eventAction = 'page_view';
}
}
if (hitObject) {
action = 'timing' === arguments[1].hitType ? 'timing_complete' : hitObject.eventAction;
hitConverted = mapArgs(hitObject);
__gtagTracker('event', action, hitConverted);
}
}
return;
}
function mapArgs(args) {
var arg, hit = {};
var gaMap = {
'eventCategory': 'event_category',
'eventAction': 'event_action',
'eventLabel': 'event_label',
'eventValue': 'event_value',
'nonInteraction': 'non_interaction',
'timingCategory': 'event_category',
'timingVar': 'name',
'timingValue': 'value',
'timingLabel': 'event_label',
'page': 'page_path',
'location': 'page_location',
'title': 'page_title',
'referrer' : 'page_referrer',
};
for (arg in args) {
if (!(!args.hasOwnProperty(arg) || !gaMap.hasOwnProperty(arg))) {
hit[gaMap[arg]] = args[arg];
} else {
hit[arg] = args[arg];
}
}
return hit;
}
try {
f.hitCallback();
} catch (ex) {
}
};
__gaTracker.create = newtracker;
__gaTracker.getByName = newtracker;
__gaTracker.getAll = function () {
return [];
};
__gaTracker.remove = noopfn;
__gaTracker.loaded = true;
window['__gaTracker'] = __gaTracker;
})();
} else {
console.log("");
(function () {
function __gtagTracker() {
return null;
}
window['__gtagTracker'] = __gtagTracker;
window['gtag'] = __gtagTracker;
})();
}
</script>
<!-- / Google Analytics by ExactMetrics -->
<link rel="stylesheet" id="wp-block-library-css" media="all" data-pmdelayedstyle="https://www.howtocook.recipes/wp-includes/css/dist/block-library/style.min.css?ver=6.8.3">
<style id='global-styles-inline-css'>
:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:root { --wp--style--global--content-size: 800px;--wp--style--global--wide-size: 1200px; }:where(body) { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.wp-site-blocks) > * { margin-block-start: 24px; margin-block-end: 0; }:where(.wp-site-blocks) > :first-child { margin-block-start: 0; }:where(.wp-site-blocks) > :last-child { margin-block-end: 0; }:root { --wp--style--block-gap: 24px; }:root :where(.is-layout-flow) > :first-child{margin-block-start: 0;}:root :where(.is-layout-flow) > :last-child{margin-block-end: 0;}:root :where(.is-layout-flow) > *{margin-block-start: 24px;margin-block-end: 0;}:root :where(.is-layout-constrained) > :first-child{margin-block-start: 0;}:root :where(.is-layout-constrained) > :last-child{margin-block-end: 0;}:root :where(.is-layout-constrained) > *{margin-block-start: 24px;margin-block-end: 0;}:root :where(.is-layout-flex){gap: 24px;}:root :where(.is-layout-grid){gap: 24px;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){text-decoration: underline;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;line-height: inherit;padding: calc(0.667em + 2px) calc(1.333em + 2px);text-decoration: none;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
</style>
<link rel="stylesheet" id="hello-elementor-css" media="all" data-pmdelayedstyle="https://www.howtocook.recipes/wp-content/themes/hello-elementor/assets/css/reset.css?ver=3.4.4">
<link rel="stylesheet" id="hello-elementor-theme-style-css" media="all" data-pmdelayedstyle="https://www.howtocook.recipes/wp-content/themes/hello-elementor/assets/css/theme.css?ver=3.4.4">
<link rel="stylesheet" id="hello-elementor-header-footer-css" media="all" data-pmdelayedstyle="https://www.howtocook.recipes/wp-content/themes/hello-elementor/assets/css/header-footer.css?ver=3.4.4">
<link rel="stylesheet" id="elementor-frontend-css" media="all" data-pmdelayedstyle="https://www.howtocook.recipes/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=3.32.4">
<link rel="stylesheet" id="widget-menu-anchor-css" media="all" data-pmdelayedstyle="https://www.howtocook.recipes/wp-content/plugins/elementor/assets/css/widget-menu-anchor.min.css?ver=3.32.4">
<link rel="stylesheet" id="widget-image-css" media="all" data-pmdelayedstyle="https://www.howtocook.recipes/wp-content/plugins/elementor/assets/css/widget-image.min.css?ver=3.32.4">
<link rel="stylesheet" id="widget-search-css" media="all" data-pmdelayedstyle="https://www.howtocook.recipes/wp-content/plugins/elementor-pro/assets/css/widget-search.min.css?ver=3.32.2">
<link rel="stylesheet" id="widget-social-icons-css" media="all" data-pmdelayedstyle="https://www.howtocook.recipes/wp-content/plugins/elementor/assets/css/widget-social-icons.min.css?ver=3.32.4">
<link rel="stylesheet" id="e-apple-webkit-css" media="all" data-pmdelayedstyle="https://www.howtocook.recipes/wp-content/plugins/elementor/assets/css/conditionals/apple-webkit.min.css?ver=3.32.4">
<link rel="stylesheet" id="widget-posts-css" media="all" data-pmdelayedstyle="https://www.howtocook.recipes/wp-content/plugins/elementor-pro/assets/css/widget-posts.min.css?ver=3.32.2">
<link rel="stylesheet" id="widget-mega-menu-css" media="all" data-pmdelayedstyle="https://www.howtocook.recipes/wp-content/plugins/elementor-pro/assets/css/widget-mega-menu.min.css?ver=3.32.2">
<link rel="stylesheet" id="e-sticky-css" media="all" data-pmdelayedstyle="https://www.howtocook.recipes/wp-content/plugins/elementor-pro/assets/css/modules/sticky.min.css?ver=3.32.2">
<link rel="stylesheet" id="widget-heading-css" media="all" data-pmdelayedstyle="https://www.howtocook.recipes/wp-content/plugins/elementor/assets/css/widget-heading.min.css?ver=3.32.4">
<link rel="stylesheet" id="widget-icon-list-css" media="all" data-pmdelayedstyle="https://www.howtocook.recipes/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css?ver=3.32.4">
<link rel="stylesheet" id="widget-form-css" media="all" data-pmdelayedstyle="https://www.howtocook.recipes/wp-content/plugins/elementor-pro/assets/css/widget-form.min.css?ver=3.32.2">
<link rel="stylesheet" id="widget-breadcrumbs-css" media="all" data-pmdelayedstyle="https://www.howtocook.recipes/wp-content/plugins/elementor-pro/assets/css/widget-breadcrumbs.min.css?ver=3.32.2">
<link rel="stylesheet" id="widget-share-buttons-css" media="all" data-pmdelayedstyle="https://www.howtocook.recipes/wp-content/plugins/elementor-pro/assets/css/widget-share-buttons.min.css?ver=3.32.2">
<link rel="stylesheet" id="swiper-css" media="all" data-pmdelayedstyle="https://www.howtocook.recipes/wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.min.css?ver=8.4.5">
<link rel="stylesheet" id="e-swiper-css" media="all" data-pmdelayedstyle="https://www.howtocook.recipes/wp-content/plugins/elementor/assets/css/conditionals/e-swiper.min.css?ver=3.32.4">
<link rel="stylesheet" id="widget-loop-common-css" media="all" data-pmdelayedstyle="https://www.howtocook.recipes/wp-content/plugins/elementor-pro/assets/css/widget-loop-common.min.css?ver=3.32.2">
<link rel="stylesheet" id="widget-loop-carousel-css" media="all" data-pmdelayedstyle="https://www.howtocook.recipes/wp-content/plugins/elementor-pro/assets/css/widget-loop-carousel.min.css?ver=3.32.2">
<link rel="stylesheet" id="e-popup-css" media="all" data-pmdelayedstyle="https://www.howtocook.recipes/wp-content/plugins/elementor-pro/assets/css/conditionals/popup.min.css?ver=3.32.2">
<link rel='stylesheet' id='elementor-post-9409-css' href='https://www.howtocook.recipes/wp-content/uploads/elementor/css/post-9409.css?ver=1763580751' media='all' />
<link rel='stylesheet' id='elementor-post-9716-css' href='https://www.howtocook.recipes/wp-content/uploads/elementor/css/post-9716.css?ver=1763580752' media='all' />
<link rel='stylesheet' id='elementor-post-10003-css' href='https://www.howtocook.recipes/wp-content/uploads/elementor/css/post-10003.css?ver=1763580752' media='all' />
<link rel='stylesheet' id='elementor-post-10066-css' href='https://www.howtocook.recipes/wp-content/uploads/elementor/css/post-10066.css?ver=1763580752' media='all' />
<link rel='stylesheet' id='elementor-post-11558-css' href='https://www.howtocook.recipes/wp-content/uploads/elementor/css/post-11558.css?ver=1763580754' media='all' />
<link rel="stylesheet" id="hello-elementor-child-style-css" media="all" data-pmdelayedstyle="https://www.howtocook.recipes/wp-content/themes/how-to-cook/style.css?ver=2.0.0">
<link rel='stylesheet' id='elementor-gf-sourcesanspro-css' href='https://www.howtocook.recipes/wp-content/cache/perfmatters/www.howtocook.recipes/fonts/2941aa5420d3.google-fonts.min.css' media='all' />
<link rel='stylesheet' id='elementor-gf-inter-css' href='https://www.howtocook.recipes/wp-content/cache/perfmatters/www.howtocook.recipes/fonts/a8ab3950680d.google-fonts.min.css' media='all' />
<link rel='stylesheet' id='elementor-gf-dancingscript-css' href='https://www.howtocook.recipes/wp-content/cache/perfmatters/www.howtocook.recipes/fonts/659759666e24.google-fonts.min.css' media='all' />
<script src="https://www.howtocook.recipes/wp-content/plugins/google-analytics-dashboard-for-wp/assets/js/frontend-gtag.min.js?ver=8.10.1" id="exactmetrics-frontend-script-js" async data-wp-strategy="async" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1"></script>
<script data-cfasync="false" data-wpfc-render="false" id="exactmetrics-frontend-script-js-extra" type="pmdelayedscript" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1">var exactmetrics_frontend = {"js_events_tracking":"true","download_extensions":"doc,pdf,ppt,zip,xls,docx,pptx,xlsx","inbound_paths":"[{\"path\":\"\\\/go\\\/\",\"label\":\"affiliate\"},{\"path\":\"\\\/recommend\\\/\",\"label\":\"affiliate\"}]","home_url":"https:\/\/www.howtocook.recipes","hash_tracking":"false","v4_id":"G-G5RJX323H7"};</script>
<script src="https://www.howtocook.recipes/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1"></script>
<link rel="https://api.w.org/" href="https://www.howtocook.recipes/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://www.howtocook.recipes/wp-json/wp/v2/posts/5904" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.howtocook.recipes/xmlrpc.php?rsd" />
<link rel='shortlink' href='https://www.howtocook.recipes/?p=5904' />
<style type="text/css"> .tippy-box[data-theme~="wprm"] { background-color: #333333; color: #FFFFFF; } .tippy-box[data-theme~="wprm"][data-placement^="top"] > .tippy-arrow::before { border-top-color: #333333; } .tippy-box[data-theme~="wprm"][data-placement^="bottom"] > .tippy-arrow::before { border-bottom-color: #333333; } .tippy-box[data-theme~="wprm"][data-placement^="left"] > .tippy-arrow::before { border-left-color: #333333; } .tippy-box[data-theme~="wprm"][data-placement^="right"] > .tippy-arrow::before { border-right-color: #333333; } .tippy-box[data-theme~="wprm"] a { color: #FFFFFF; } .wprm-comment-rating svg { width: 18px !important; height: 18px !important; } img.wprm-comment-rating { width: 90px !important; height: 18px !important; } body { --comment-rating-star-color: #343434; } body { --wprm-popup-font-size: 16px; } body { --wprm-popup-background: #ffffff; } body { --wprm-popup-title: #000000; } body { --wprm-popup-content: #444444; } body { --wprm-popup-button-background: #444444; } body { --wprm-popup-button-text: #ffffff; }</style><style type="text/css">.wprm-glossary-term {color: #5A822B;text-decoration: underline;cursor: help;}</style><meta name="generator" content="Elementor 3.32.4; features: e_font_icon_svg; settings: css_print_method-external, google_font-enabled, font_display-swap">
<noscript><style>.lazyload[data-src]{display:none !important;}</style></noscript><style>.lazyload{background-image:none !important;}.lazyload:before{background-image:none !important;}</style><link rel="icon" href="https://www.howtocook.recipes/wp-content/uploads/2020/08/test1-150x150.png" sizes="32x32" />
<link rel="icon" href="https://www.howtocook.recipes/wp-content/uploads/2020/08/test1.png" sizes="192x192" />
<link rel="apple-touch-icon" href="https://www.howtocook.recipes/wp-content/uploads/2020/08/test1.png" />
<meta name="msapplication-TileImage" content="https://www.howtocook.recipes/wp-content/uploads/2020/08/test1.png" />
<script data-no-optimize='1' data-cfasync='false' id='comscore-loader-78c96d1'>(function(){window.adthriveCLS.buildDate=`2025-11-18`;let e=new class{info(e,t,...n){this.call(console.info,e,t,...n)}warn(e,t,...n){this.call(console.warn,e,t,...n)}error(e,t,...n){this.call(console.error,e,t,...n),this.sendErrorLogToCommandQueue(e,t,...n)}event(e,t,...n){var r;((r=window.adthriveCLS)==null?void 0:r.bucket)===`debug`&&this.info(e,t)}sendErrorLogToCommandQueue(e,t,...n){window.adthrive=window.adthrive||{},window.adthrive.cmd=window.adthrive.cmd||[],window.adthrive.cmd.push(()=>{window.adthrive.logError!==void 0&&typeof window.adthrive.logError==`function`&&window.adthrive.logError(e,t,n)})}call(e,t,n,...r){let i=[`%c${t}::${n} `],a=[`color: #999; font-weight: bold;`];r.length>0&&typeof r[0]==`string`&&i.push(r.shift()),a.push(...r);try{Function.prototype.apply.call(e,console,[i.join(``),...a])}catch(e){console.error(e);return}}};function t(e){"@babel/helpers - typeof";return t=typeof Symbol==`function`&&typeof Symbol.iterator==`symbol`?function(e){return typeof e}:function(e){return e&&typeof Symbol==`function`&&e.constructor===Symbol&&e!==Symbol.prototype?`symbol`:typeof e},t(e)}function n(e,n){if(t(e)!=`object`||!e)return e;var r=e[Symbol.toPrimitive];if(r!==void 0){var i=r.call(e,n||`default`);if(t(i)!=`object`)return i;throw TypeError(`@@toPrimitive must return a primitive value.`)}return(n===`string`?String:Number)(e)}function r(e){var r=n(e,`string`);return t(r)==`symbol`?r:r+``}function i(e,t,n){return(t=r(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var a=class{constructor(){i(this,`name`,void 0),i(this,`disable`,void 0),i(this,`gdprPurposes`,void 0)}};function o(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function s(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]==null?{}:arguments[t];t%2?o(Object(n),!0).forEach(function(t){i(e,t,n[t])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):o(Object(n)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))})}return e}let c=[`mcmpfreqrec`],l=new class extends a{constructor(...e){super(...e),i(this,`name`,`BrowserStorage`),i(this,`disable`,!1),i(this,`gdprPurposes`,[1]),i(this,`_sessionStorageHandlerQueue`,[]),i(this,`_localStorageHandlerQueue`,[]),i(this,`_cookieHandlerQueue`,[]),i(this,`_gdpr`,void 0),i(this,`_shouldQueue`,!1)}init(e){this._gdpr=e.gdpr===`true`,this._shouldQueue=this._gdpr}clearQueue(e){this._gdpr&&this._hasStorageConsent()===!1||(e&&(this._shouldQueue=!1,this._sessionStorageHandlerQueue.forEach(e=>{this.setSessionStorage(e.key,e.value)}),this._localStorageHandlerQueue.forEach(e=>{if(e.key===`adthrive_abgroup`){let t=Object.keys(e.value)[0],n=e.value[t],r=e.value[`${t}_weight`];this.getOrSetABGroupLocalStorageValue(t,n,r,{value:24,unit:`hours`})}else e.expiry?e.type===`internal`?this.setExpirableInternalLocalStorage(e.key,e.value,{expiry:e.expiry,resetOnRead:e.resetOnRead}):this.setExpirableExternalLocalStorage(e.key,e.value,{expiry:e.expiry,resetOnRead:e.resetOnRead}):e.type===`internal`?this.setInternalLocalStorage(e.key,e.value):this.setExternalLocalStorage(e.key,e.value)}),this._cookieHandlerQueue.forEach(e=>{e.type===`internal`?this.setInternalCookie(e.key,e.value):this.setExternalCookie(e.key,e.value)})),this._sessionStorageHandlerQueue=[],this._localStorageHandlerQueue=[],this._cookieHandlerQueue=[])}readInternalCookie(e){return this._verifyInternalKey(e),this._readCookie(e)}readExternalCookie(e){return this._readCookie(e)}readExternalCookieList(e){return this._readCookieList(e)}getAllCookies(){return this._getCookies()}readInternalLocalStorage(e){return this._verifyInternalKey(e),this._readFromLocalStorage(e)}readExternalLocalStorage(e){return this._readFromLocalStorage(e)}readSessionStorage(e){let t=(window.sessionStorage.getItem(e));if(!t)return null;try{return JSON.parse(t)}catch(e){return t}}deleteCookie(e){document.cookie=`${e}=; SameSite=None; Secure; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/`}deleteLocalStorage(e){window.localStorage.removeItem(e)}deleteSessionStorage(e){window.sessionStorage.removeItem(e)}_hasStorageConsent(){if(typeof window.__cmp==`function`)try{let e=(window.__cmp(`getCMPData`));if(!e||!e.purposeConsents)return;let t=e.purposeConsents[1];return t===!0?!0:t===!1||t==null?!1:void 0}catch(e){return}}setInternalCookie(e,t,n){this.disable||(this._verifyInternalKey(e),this._setCookieValue(`internal`,e,t,n))}setExternalCookie(e,t,n){this.disable||this._setCookieValue(`external`,e,t,n)}setInternalLocalStorage(e,t){if(!this.disable)if(this._verifyInternalKey(e),this._gdpr&&this._shouldQueue){let n={key:e,value:t,type:`internal`};this._localStorageHandlerQueue.push(n)}else{let n=typeof t==`string`?t:JSON.stringify(t);window.localStorage.setItem(e,n)}}setExternalLocalStorage(e,t){if(!this.disable)if(this._gdpr&&this._shouldQueue){let n={key:e,value:t,type:`external`};this._localStorageHandlerQueue.push(n)}else{let n=typeof t==`string`?t:JSON.stringify(t);window.localStorage.setItem(e,n)}}setExpirableInternalLocalStorage(e,t,n){if(!this.disable){this._verifyInternalKey(e);try{var r,i;let a=(r=n==null?void 0:n.expiry)==null?{value:400,unit:`days`}:r,o=(i=n==null?void 0:n.resetOnRead)==null?!1:i;if(this._gdpr&&this._shouldQueue){let n={key:e,value:t,type:`internal`,expires:this._getExpiryDate(a),expiry:a,resetOnRead:o};this._localStorageHandlerQueue.push(n)}else{let n={value:t,type:`internal`,expires:this._getExpiryDate(a),expiry:a,resetOnRead:o};window.localStorage.setItem(e,JSON.stringify(n))}}catch(e){console.error(e)}}}setExpirableExternalLocalStorage(e,t,n){if(!this.disable)try{var r,i;let a=(r=n==null?void 0:n.expiry)==null?{value:400,unit:`days`}:r,o=(i=n==null?void 0:n.resetOnRead)==null?!1:i;if(this._gdpr&&this._shouldQueue){let n={key:e,value:JSON.stringify(t),type:`external`,expires:this._getExpiryDate(a),expiry:a,resetOnRead:o};this._localStorageHandlerQueue.push(n)}else{let n={value:t,type:`external`,expires:this._getExpiryDate(a),expiry:a,resetOnRead:o};window.localStorage.setItem(e,JSON.stringify(n))}}catch(e){console.error(e)}}setSessionStorage(e,t){if(!this.disable)if(this._gdpr&&this._shouldQueue){let n={key:e,value:t};this._sessionStorageHandlerQueue.push(n)}else{let n=typeof t==`string`?t:JSON.stringify(t);window.sessionStorage.setItem(e,n)}}getOrSetABGroupLocalStorageValue(e,t,n,r,i=!0){let a=`adthrive_abgroup`,o=(this.readInternalLocalStorage(a));if(o!==null){var c;let t=o[e],n=(c=o[`${e}_weight`])==null?null:c;if(this._isValidABGroupLocalStorageValue(t))return[t,n]}let l=(s(s({},o),{},{[e]:t,[`${e}_weight`]:n}));return r?this.setExpirableInternalLocalStorage(a,l,{expiry:r,resetOnRead:i}):this.setInternalLocalStorage(a,l),[t,n]}_isValidABGroupLocalStorageValue(e){return e!=null&&!(typeof e==`number`&&isNaN(e))}_getExpiryDate({value:e,unit:t}){let n=new Date;return t===`milliseconds`?n.setTime(n.getTime()+e):t==`seconds`?n.setTime(n.getTime()+e*1e3):t===`minutes`?n.setTime(n.getTime()+e*60*1e3):t===`hours`?n.setTime(n.getTime()+e*60*60*1e3):t===`days`?n.setTime(n.getTime()+e*24*60*60*1e3):t===`months`&&n.setTime(n.getTime()+e*30*24*60*60*1e3),n.toUTCString()}_resetExpiry(e){return e.expires=this._getExpiryDate(e.expiry),e}_readCookie(e){let t=(document.cookie.split(`; `).find(t=>t.split(`=`)[0]===e));if(!t)return null;let n=(t.split(`=`))[1];if(n)try{return JSON.parse(decodeURIComponent(n))}catch(e){return decodeURIComponent(n)}return null}_readCookieList(e){let t;for(let n of document.cookie.split(`;`)){let[r,...i]=(n.split(`=`));r.trim()===e&&(t=i.join(`=`).trim())}return t&&JSON.parse(t)||[]}_getCookies(){let e=[];return document.cookie.split(`;`).forEach(t=>{let[n,r]=t.split(`=`).map(e=>e.trim());e.push({name:n,value:r})}),e}_readFromLocalStorage(e){let t=(window.localStorage.getItem(e));if(!t)return null;try{let r=(JSON.parse(t)),i=r.expires&&(new Date().getTime())>=(new Date(r.expires).getTime());if(e===`adthrive_abgroup`&&r.created)return window.localStorage.removeItem(e),null;if(r.resetOnRead&&r.expires&&!i){var n;let t=(this._resetExpiry(r));return window.localStorage.setItem(e,JSON.stringify(r)),(n=t.value)==null?t:n}else if(i)return window.localStorage.removeItem(e),null;if(Object.prototype.hasOwnProperty.call(r,`value`))try{return JSON.parse(r.value)}catch(e){return r.value}else return r}catch(e){return t}}_setCookieValue(e,t,n,r){try{if(this._gdpr&&this._shouldQueue){let r={key:t,value:n,type:e};this._cookieHandlerQueue.push(r)}else{var i,a,o;let e=(this._getExpiryDate((i=r==null?void 0:r.expiry)==null?{value:400,unit:`days`}:i)),s=(a=r==null?void 0:r.sameSite)==null?`None`:a,c=(o=r==null?void 0:r.secure)==null?!0:o,l=typeof n==`object`?JSON.stringify(n):n;document.cookie=`${t}=${l}; SameSite=${s}; ${c?`Secure;`:``} expires=${e}; path=/`}}catch(e){}}_verifyInternalKey(e){let t=(e.startsWith(`adthrive_`)),n=(e.startsWith(`adt_`));if(!t&&!n&&!c.includes(e))throw Error(`When reading an internal cookie, the key must start with "adthrive_" or "adt_" or be part of the allowed legacy keys.`)}},u=(e,t)=>{let n=document.getElementsByTagName(`script`)[0];n&&n.parentNode&&!t?n.parentNode.insertBefore(e,n):document.body.appendChild(e)},d=(e,t=!1,n=!1,r=!1)=>new Promise((i,a)=>{let o=document.createElement(`script`);o.addEventListener(`error`,()=>a(Error(`Failed to import script ${e}`))),o.addEventListener(`load`,()=>i(o)),o.type=`text/javascript`,o.src=e,o.defer=n,o.async=r,u(o,t)}),f=()=>{let e=Math.max(document.documentElement.clientWidth||0,window.innerWidth||0),t=Math.max(document.documentElement.clientHeight||0,window.innerHeight||0);return{width:e,height:t}},p=()=>{let e=new RegExp(`python,apis,googleweblight,spider,crawler,curl,wget,ia_archiver,insights,baidu,bot,monitor,scraper,A6-Indexer,addthis,admantx,agentslug,alexa,anderspink,apache-httpclient,apachebench,apis-google,appengine-google,ask jeeves,asynchttpclient,awe.sm,baidu,barkrowler,biglotron,bingpreview,brandverify,bubing,butterfly,buzztalk,cf-uc,chatgpt,check_http,cloudflare,cmradar/0.1,coldfusion,comodo ssl checker,convera,copypants,crowsnest,curl,dap/nethttp,daumoa,deepseek,deepseekbot,developers.google.com/+/web/snippet/,digitalpersona fingerprint software,drupact,duckduck,elb-healthchecker,embedly,eoaagent,europarchive,eventmachine httpclient,evrinid,exaleadcloudview,ezooms,ez publish,facebookexternalhit,feedburner,feedfetcher-google,findlink,findthatfile,flipboardproxy,garlik,genieo,getprismatic.com,ghost,gigablast,go http package,google( page speed insights| web preview|google-site-verification|-structured-data-testing-tool|-structureddatatestingtool),gpt,gptbot,hatena,headless,heritrix,htmlparser,http(_request2|client|s|unit),httrack,hubspot,ichiro,icoreservice,idmarch,in(agist|sieve|stapaper),ips-agent,jack,jakarta commons,java,jetslide,jobseeker,js-kit,kimengi,knows.is,kraken,laconica,libwww,lighthouse,linode,lipperhey,longurl,ltx71,lwp-trivial,mappydata,mastodon,mediapartners-google,megaindex.ru,metauri,mfe_expand,mixnode,mon(tastic|tools),moreover,mrchrome,nberta,net(craft|researchserver|state|vibes),newrelicpinger,newspaper,newsme,ning,nightmare,nmap,nutch,online-domain-tools,openai,paessler,page(peek|sinventory|thing),panopta,peerindex,phantomjs,pingdom,plukkie,proximic,pu_in,publiclibraryarchive.org,python-(httplib2|requests|urllib),quanti,queryseeker,quicklook,qwanti,re-animator,readability,rebelmouse,relateiq,riddler,rssmicro,ruby,scrapy,seo-audit,seodiver,seokicks,shopwiki,shortlinktranslate,siege,sincera,sistrix,site24x7,siteexplorer,skypeuripreview,slack,slurp,socialrank,sogou,spinn3r,squider,statuscake,stripe,summify,teeraid,teoma,test certificate info,tineye,traackr,ttd-content,tweetedtimes,twikle,twitjobsearch,twitmunin,twurly,typhoeus,unwindfetch,uptim(e|ia),uptm.io,vagabondo,vb project,vigil,vkshare,wappalyzer,watchsumo,webceo,webdatascout,webmon,webscout,wesee,wget,whatsapp,whatweb,wikido,wordpress,wormly,wotbox,xenu link sleuth,xing-contenttabreceiver,yandex,yanga,yeti,yff35,yourls,zelist.ro,zibb,^Mozilla/5\\.0$,Viv/2`.split(`,`).join(`|`),`i`),t=window.navigator.userAgent.toLowerCase();return e.test(t)};var m=class{constructor(){i(this,`runTests`,()=>{let e=!1;return window&&document&&(e=[`webdriver`in window,`_Selenium_IDE_Recorder`in window,`callSelenium`in window,`_selenium`in window,`__webdriver_script_fn`in document,`__driver_evaluate`in document,`__webdriver_evaluate`in document,`__selenium_evaluate`in document,`__fxdriver_evaluate`in document,`__driver_unwrapped`in document,`__webdriver_unwrapped`in document,`__selenium_unwrapped`in document,`__fxdriver_unwrapped`in document,`__webdriver_script_func`in document,document.documentElement.getAttribute(`selenium`)!==null,document.documentElement.getAttribute(`webdriver`)!==null,document.documentElement.getAttribute(`driver`)!==null].some(e=>e)),e})}isSelenium(){return this.runTests()}};let h=()=>{if(navigator&&navigator.userAgent&&p())return`uav`},g=()=>{let e=f();if(e.width>5e3||e.height>5e3)return`vpv`},_=()=>{if(new m().isSelenium())return`selenium`},v=()=>{let e=[g(),h(),_()].filter(e=>!!e);return e.length?e:void 0},y=()=>l.readExternalCookie(`usprivacy`)===`1YYY`;v()||y()||(()=>{let e=`unknown`;return typeof Intl<`u`&&typeof Intl.DateTimeFormat==`function`&&typeof Intl.DateTimeFormat().resolvedOptions==`function`&&(e=Intl.DateTimeFormat().resolvedOptions().timeZone||`unknown`),e.startsWith(`America/`)})()&&(()=>{let t=`6035453`,n=y()?`0`:`1`,r=s({c1:`2`,c2:t,cs_fpid:l.readExternalCookie(`_pubcid`)||l.readExternalLocalStorage(`_pubcid`),cs_fpit:`o`,cs_fpdm:`*null`,cs_fpdt:`*null`,options:{enableFirstPartyCookie:!0}},{cs_ucfr:n||`0`});window._comscore=window._comscore||[],window._comscore.push(r);let i=`https://sb.scorecardresearch.com/cs/${t}/beacon.js`;d(i).catch(t=>{e.error(`ComscoreTrackerComponent`,`init`,`Error during Comscore beacon.js import: `,t)})})()})();</script><script data-no-optimize='1' data-cfasync='false' id='cls-disable-ads-78c96d1'>var cls_disable_ads=(function(exports){window.adthriveCLS.buildDate=`2025-11-18`;let t=new class{info(e,t,...n){this.call(console.info,e,t,...n)}warn(e,t,...n){this.call(console.warn,e,t,...n)}error(e,t,...n){this.call(console.error,e,t,...n),this.sendErrorLogToCommandQueue(e,t,...n)}event(e,t,...n){var r;((r=window.adthriveCLS)==null?void 0:r.bucket)===`debug`&&this.info(e,t)}sendErrorLogToCommandQueue(e,t,...n){window.adthrive=window.adthrive||{},window.adthrive.cmd=window.adthrive.cmd||[],window.adthrive.cmd.push(()=>{window.adthrive.logError!==void 0&&typeof window.adthrive.logError==`function`&&window.adthrive.logError(e,t,n)})}call(e,t,n,...r){let i=[`%c${t}::${n} `],a=[`color: #999; font-weight: bold;`];r.length>0&&typeof r[0]==`string`&&i.push(r.shift()),a.push(...r);try{Function.prototype.apply.call(e,console,[i.join(``),...a])}catch(e){console.error(e);return}}},n=()=>window.adthriveCLS,r={Below_Post_1:`Below_Post_1`,Below_Post:`Below_Post`,Content:`Content`,Content_1:`Content_1`,Content_2:`Content_2`,Content_3:`Content_3`,Content_4:`Content_4`,Content_5:`Content_5`,Content_6:`Content_6`,Content_7:`Content_7`,Content_8:`Content_8`,Content_9:`Content_9`,Recipe:`Recipe`,Recipe_1:`Recipe_1`,Recipe_2:`Recipe_2`,Recipe_3:`Recipe_3`,Recipe_4:`Recipe_4`,Recipe_5:`Recipe_5`,Native_Recipe:`Native_Recipe`,Footer_1:`Footer_1`,Footer:`Footer`,Header_1:`Header_1`,Header_2:`Header_2`,Header:`Header`,Sidebar_1:`Sidebar_1`,Sidebar_2:`Sidebar_2`,Sidebar_3:`Sidebar_3`,Sidebar_4:`Sidebar_4`,Sidebar_5:`Sidebar_5`,Sidebar_9:`Sidebar_9`,Sidebar:`Sidebar`,Interstitial_1:`Interstitial_1`,Interstitial:`Interstitial`,Video_StickyOutstream_1:`Video_StickyOutstream_1`,Video_StickyOutstream:`Video_StickyOutstream`,Video_StickyInstream:`Video_StickyInstream`,Sponsor_Tile:`Sponsor_Tile`},i=e=>{let t=window.location.href;return e.some(e=>new RegExp(e,`i`).test(t))};function a(e){"@babel/helpers - typeof";return a=typeof Symbol==`function`&&typeof Symbol.iterator==`symbol`?function(e){return typeof e}:function(e){return e&&typeof Symbol==`function`&&e.constructor===Symbol&&e!==Symbol.prototype?`symbol`:typeof e},a(e)}function o(e,t){if(a(e)!=`object`||!e)return e;var n=e[Symbol.toPrimitive];if(n!==void 0){var r=n.call(e,t||`default`);if(a(r)!=`object`)return r;throw TypeError(`@@toPrimitive must return a primitive value.`)}return(t===`string`?String:Number)(e)}function s(e){var t=o(e,`string`);return a(t)==`symbol`?t:t+``}function c(e,t,n){return(t=s(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var l=class{constructor(e){this.adthrive=e,c(this,`all`,!1),c(this,`content`,!1),c(this,`recipe`,!1),c(this,`video`,!1),c(this,`locations`,new Set),c(this,`reasons`,new Set),(this.urlHasEmail(window.location.href)||this.urlHasEmail(window.document.referrer))&&(this.all=!0,this.reasons.add(`all_email`));try{this.checkCommandQueue(),document.querySelector(`.tag-novideo`)!==null&&(this.video=!0,this.locations.add(`Video`),this.reasons.add(`video_tag`))}catch(e){t.error(`ClsDisableAds`,`checkCommandQueue`,e)}}checkCommandQueue(){this.adthrive&&this.adthrive.cmd&&this.adthrive.cmd.forEach(e=>{let t=e.toString(),n=this.extractAPICall(t,`disableAds`);n&&this.disableAllAds(this.extractPatterns(n));let r=this.extractAPICall(t,`disableContentAds`);r&&this.disableContentAds(this.extractPatterns(r));let i=this.extractAPICall(t,`disablePlaylistPlayers`);i&&this.disablePlaylistPlayers(this.extractPatterns(i))})}extractPatterns(e){let t=e.match(/["'](.*?)['"]/g);if(t!==null)return t.map(e=>e.replace(/["']/g,``))}extractAPICall(e,t){let n=RegExp(t+`\\((.*?)\\)`,`g`),r=e.match(n);return r===null?!1:r[0]}disableAllAds(e){(!e||i(e))&&(this.all=!0,this.reasons.add(`all_page`))}disableContentAds(e){(!e||i(e))&&(this.content=!0,this.recipe=!0,this.locations.add(r.Content),this.locations.add(r.Recipe),this.reasons.add(`content_plugin`))}disablePlaylistPlayers(e){(!e||i(e))&&(this.video=!0,this.locations.add(`Video`),this.reasons.add(`video_page`))}urlHasEmail(e){return e?/([A-Z0-9._%+-]+(@|%(25)*40)[A-Z0-9.-]+\.[A-Z]{2,})/i.exec(e)!==null:!1}};let u=n();return u&&(u.disableAds=new l(window.adthrive)),exports.ClsDisableAds=l,exports})({});</script><meta name="generator" content="WP Rocket 3.18.3" data-wpr-features="wpr_oci" /></head>
<body class="wp-singular post-template-default single single-post postid-5904 single-format-standard wp-custom-logo wp-embed-responsive wp-theme-hello-elementor wp-child-theme-how-to-cook hello-elementor-default elementor-default elementor-kit-9409 elementor-page-10066">
<a class="skip-link screen-reader-text" href="#content">Skip to content</a>
<header data-elementor-type="header" data-elementor-id="9716" class="elementor elementor-9716 elementor-location-header" data-elementor-post-type="elementor_library">
<div class="elementor-element elementor-element-bdccf42 e-flex e-con-boxed e-con e-parent" data-id="bdccf42" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-10cd5c4 elementor-widget elementor-widget-menu-anchor" data-id="10cd5c4" data-element_type="widget" data-widget_type="menu-anchor.default">
<div class="elementor-menu-anchor" id="top"></div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-46e7eda e-flex e-con-boxed e-con e-parent" data-id="46e7eda" data-element_type="container" id="headersec" data-settings="{"background_background":"classic","sticky":"top","sticky_effects_offset":50,"sticky_on":["desktop","tablet","mobile"],"sticky_offset":0,"sticky_anchor_link_offset":0}">
<div class="e-con-inner">
<div class="elementor-element elementor-element-81dff49 e-con-full regcol e-flex e-con e-child" data-id="81dff49" data-element_type="container">
<div class="elementor-element elementor-element-dd40174 e-con-full e-flex e-con e-child" data-id="dd40174" data-element_type="container">
<div class="elementor-element elementor-element-43b7cab elementor-widget elementor-widget-theme-site-logo elementor-widget-image" data-id="43b7cab" data-element_type="widget" id="logo" data-widget_type="theme-site-logo.default">
<a href="https://www.howtocook.recipes">
<img width="250" height="250" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPoAAAD6AQAAAACgl2eQAAAAAnRSTlMAAHaTzTgAAAAeSURBVGje7cEBAQAAAIIg/69uSEABAAAAAAAAAL8GIDoAAeprBV8AAAAASUVORK5CYII=" class="attachment-full size-full wp-image-4818 lazyload" alt="" data-src="https://www.howtocook.recipes/wp-content/uploads/2020/08/logo2.png" decoding="async" data-srcset="https://www.howtocook.recipes/wp-content/uploads/2020/08/logo2.png 250w, https://www.howtocook.recipes/wp-content/uploads/2020/08/logo2-150x150.png 150w, https://www.howtocook.recipes/wp-content/uploads/2020/08/logo2-175x175.png 175w" data-sizes="auto" data-eio-rwidth="250" data-eio-rheight="250" /><noscript><img width="250" height="250" src="https://www.howtocook.recipes/wp-content/uploads/2020/08/logo2.png" class="attachment-full size-full wp-image-4818" alt="" srcset="https://www.howtocook.recipes/wp-content/uploads/2020/08/logo2.png 250w, https://www.howtocook.recipes/wp-content/uploads/2020/08/logo2-150x150.png 150w, https://www.howtocook.recipes/wp-content/uploads/2020/08/logo2-175x175.png 175w" sizes="(max-width: 250px) 100vw, 250px" data-eio="l" /></noscript> </a>
</div>
</div>
<div class="elementor-element elementor-element-919a9e8 e-con-full e-flex e-con e-child" data-id="919a9e8" data-element_type="container">
<div class="elementor-element elementor-element-50b52f6 e-con-full elementor-hidden-mobile e-flex e-con e-child" data-id="50b52f6" data-element_type="container" id="header-utility">
<div class="elementor-element elementor-element-d5e3b9c e-con-full e-flex e-con e-child" data-id="d5e3b9c" data-element_type="container">
<div class="elementor-element elementor-element-7d0ed79 elementor-widget__width-initial elementor-hidden-mobile elementor-widget elementor-widget-search" data-id="7d0ed79" data-element_type="widget" data-settings="{"submit_trigger":"key_enter","pagination_type_options":"none"}" data-widget_type="search.default">
<search class="e-search hidden" role="search">
<form class="e-search-form" action="https://www.howtocook.recipes" method="get">
<label class="e-search-label" for="search-7d0ed79">
<span class="elementor-screen-only">
Search </span>
<svg aria-hidden="true" class="e-font-icon-svg e-fas-search" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z"></path></svg> </label>
<div class="e-search-input-wrapper">
<input id="search-7d0ed79" placeholder="Type to start searching..." class="e-search-input" type="search" name="s" value="" autocomplete="on" role="combobox" aria-autocomplete="list" aria-expanded="false" aria-controls="results-7d0ed79" aria-haspopup="listbox">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-times" viewBox="0 0 352 512" xmlns="http://www.w3.org/2000/svg"><path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"></path></svg> <output id="results-7d0ed79" class="e-search-results-container hide-loader" aria-live="polite" aria-atomic="true" aria-label="Results for search" tabindex="0">
<div class="e-search-results"></div>
</output>
</div>
<button class="e-search-submit elementor-screen-only " type="submit" aria-label="Search">
</button>
<input type="hidden" name="e_search_props" value="7d0ed79-9716">
</form>
</search>
</div>
<div class="elementor-element elementor-element-a67b792 e-grid-align-right elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="a67b792" data-element_type="widget" data-widget_type="social-icons.default">
<div class="elementor-social-icons-wrapper elementor-grid" role="list">
<span class="elementor-grid-item" role="listitem">
<a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-a8775ce" href="https://www.facebook.com/Howtocook.recipe/" target="_blank">
<span class="elementor-screen-only">Facebook</span>
<svg aria-hidden="true" class="e-font-icon-svg e-fab-facebook" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.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.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z"></path></svg> </a>
</span>
<span class="elementor-grid-item" role="listitem">
<a class="elementor-icon elementor-social-icon elementor-social-icon-instagram elementor-repeater-item-27d7605" href="https://www.instagram.com/howtocook_recipes/" target="_blank">
<span class="elementor-screen-only">Instagram</span>
<svg aria-hidden="true" class="e-font-icon-svg e-fab-instagram" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path 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></svg> </a>
</span>
<span class="elementor-grid-item" role="listitem">
<a class="elementor-icon elementor-social-icon elementor-social-icon-pinterest elementor-repeater-item-04232df" href="https://www.pinterest.com/HowToCook_Recipes/" target="_blank">
<span class="elementor-screen-only">Pinterest</span>
<svg aria-hidden="true" class="e-font-icon-svg e-fab-pinterest" viewBox="0 0 496 512" xmlns="http://www.w3.org/2000/svg"><path 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></svg> </a>
</span>
<span class="elementor-grid-item" role="listitem">
<a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-0e38430" href="https://www.youtube.com/channel/UC_qgSLUu0rapURdICKUW0Kg/" target="_blank">
<span class="elementor-screen-only">Youtube</span>
<svg aria-hidden="true" class="e-font-icon-svg e-fab-youtube" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"></path></svg> </a>
</span>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-079415f e-con-full e-flex e-con e-child" data-id="079415f" data-element_type="container">
<div class="elementor-element elementor-element-997c7cb elementor-view-stacked elementor-hidden-desktop elementor-hidden-tablet elementor-shape-circle elementor-widget elementor-widget-icon" data-id="997c7cb" data-element_type="widget" data-widget_type="icon.default">
<div class="elementor-icon-wrapper">
<a class="elementor-icon" href="#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjExNTU4IiwidG9nZ2xlIjpmYWxzZX0%3D">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-search" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z"></path></svg> </a>
</div>
</div>
<div class="elementor-element elementor-element-53cbc39 e-n-menu-mobile e-full_width e-n-menu-layout-horizontal elementor-widget elementor-widget-n-menu" data-id="53cbc39" data-element_type="widget" data-settings="{"menu_items":[{"item_title":"Home","_id":"38a6ca5","item_dropdown_content":"","item_link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"item_icon":{"value":"","library":""},"item_icon_active":null,"element_id":""},{"_id":"0a616a6","item_title":"Meals & Courses","item_dropdown_content":"yes","item_link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"item_icon":{"value":"","library":""},"item_icon_active":null,"element_id":""},{"item_title":"Recipes & Cuisine","_id":"7f3d0e0","item_dropdown_content":"yes","item_link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"item_icon":{"value":"","library":""},"item_icon_active":null,"element_id":""},{"_id":"e6fb70a","item_title":"Meat","item_dropdown_content":"yes","item_link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"item_icon":{"value":"","library":""},"item_icon_active":null,"element_id":""},{"_id":"2c257c8","item_title":"Featured","item_dropdown_content":"yes","item_link":{"url":"","is_external":"","nofollow":"","custom_attributes":""},"item_icon":{"value":"","library":""},"item_icon_active":null,"element_id":""},{"item_title":"Learn","_id":"d4cedd2","item_link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"item_dropdown_content":"yes","item_icon":{"value":"","library":""},"item_icon_active":null,"element_id":""},{"_id":"255dbe0","item_title":"About","item_dropdown_content":"yes","item_link":{"url":"https:\/\/www.howtocook.recipes\/about-me\/","is_external":"","nofollow":"","custom_attributes":""},"item_icon":{"value":"","library":""},"item_icon_active":null,"element_id":""}],"item_position_horizontal":"end","item_position_horizontal_mobile":"start","horizontal_scroll_tablet":"disable","horizontal_scroll_mobile":"disable","breakpoint_selector":"mobile","menu_item_title_distance_from_content":{"unit":"px","size":20,"sizes":[]},"menu_item_title_distance_from_content_mobile":{"unit":"px","size":0,"sizes":[]},"content_width":"full_width","item_layout":"horizontal","open_on":"hover","horizontal_scroll":"disable","menu_item_title_distance_from_content_tablet":{"unit":"px","size":"","sizes":[]}}" data-widget_type="mega-menu.default">
<nav class="e-n-menu" data-widget-number="878" aria-label="Menu">
<button class="e-n-menu-toggle" id="menu-toggle-878" aria-haspopup="true" aria-expanded="false" aria-controls="menubar-878" aria-label="Menu Toggle">
<span class="e-n-menu-toggle-icon e-open">
<svg class="e-font-icon-svg e-eicon-menu-bar" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M104 333H896C929 333 958 304 958 271S929 208 896 208H104C71 208 42 237 42 271S71 333 104 333ZM104 583H896C929 583 958 554 958 521S929 458 896 458H104C71 458 42 487 42 521S71 583 104 583ZM104 833H896C929 833 958 804 958 771S929 708 896 708H104C71 708 42 737 42 771S71 833 104 833Z"></path></svg> </span>
<span class="e-n-menu-toggle-icon e-close">
<svg class="e-font-icon-svg e-eicon-close" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M742 167L500 408 258 167C246 154 233 150 217 150 196 150 179 158 167 167 154 179 150 196 150 212 150 229 154 242 171 254L408 500 167 742C138 771 138 800 167 829 196 858 225 858 254 829L496 587 738 829C750 842 767 846 783 846 800 846 817 842 829 829 842 817 846 804 846 783 846 767 842 750 829 737L588 500 833 258C863 229 863 200 833 171 804 137 775 137 742 167Z"></path></svg> </span>
</button>
<div class="e-n-menu-wrapper" id="menubar-878" aria-labelledby="menu-toggle-878">
<ul class="e-n-menu-heading">
<li class="e-n-menu-item">
<div id="e-n-menu-title-8781" class="e-n-menu-title">
<div class="e-n-menu-title-container"> <span class="e-n-menu-title-text">
Home </span>
</div> </div>
</li>
<li class="e-n-menu-item">
<div id="e-n-menu-title-8782" class="e-n-menu-title">
<div class="e-n-menu-title-container"> <span class="e-n-menu-title-text">
Meals & Courses </span>
</div> <button id="e-n-menu-dropdown-icon-8782" class="e-n-menu-dropdown-icon e-focus" data-tab-index="2" aria-haspopup="true" aria-expanded="false" aria-controls="e-n-menu-content-8782" >
<span class="e-n-menu-dropdown-icon-opened">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-caret-up" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M288.662 352H31.338c-17.818 0-26.741-21.543-14.142-34.142l128.662-128.662c7.81-7.81 20.474-7.81 28.284 0l128.662 128.662c12.6 12.599 3.676 34.142-14.142 34.142z"></path></svg> <span class="elementor-screen-only">Close Meals & Courses</span>
</span>
<span class="e-n-menu-dropdown-icon-closed">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-caret-down" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z"></path></svg> <span class="elementor-screen-only">Open Meals & Courses</span>
</span>
</button>
</div>
<div class="e-n-menu-content">
<div id="e-n-menu-content-8782" data-tab-index="2" aria-labelledby="e-n-menu-dropdown-icon-8782" class="elementor-element elementor-element-f8d9597 e-con-full e-flex e-con e-child" data-id="f8d9597" data-element_type="container">
<div class="elementor-element elementor-element-59a333b e-flex e-con-boxed e-con e-child" data-id="59a333b" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-64ff34e e-con-full regcol e-flex e-con e-child" data-id="64ff34e" data-element_type="container">
<div class="elementor-element elementor-element-8d3c914 elementor-widget elementor-widget-template" data-id="8d3c914" data-element_type="widget" data-widget_type="template.default">
<div class="elementor-widget-container">
<div class="elementor-template">
<div data-elementor-type="container" data-elementor-id="11480" class="elementor elementor-11480" data-elementor-post-type="elementor_library">
<div class="elementor-element elementor-element-7d433e8b e-con-full e-flex e-con e-parent" data-id="7d433e8b" data-element_type="container">
<div class="elementor-element elementor-element-df6cda6 menuTabs e-n-tabs-mobile elementor-widget elementor-widget-n-tabs" data-id="df6cda6" data-element_type="widget" data-widget_type="nested-tabs.default">
<div class="e-n-tabs" data-widget-number="234278310" aria-label="Tabs. Open items with Enter or Space, close with Escape and navigate using the Arrow keys.">
<div class="e-n-tabs-heading" role="tablist">
<button id="e-n-tab-title-2342783101" class="e-n-tab-title" aria-selected="true" data-tab-index="1" role="tab" tabindex="0" aria-controls="e-n-tab-content-2342783101" style="--n-tabs-title-order: 1;">
<span class="e-n-tab-title-text">
Breakfast </span>
</button>
<button id="e-n-tab-title-2342783102" class="e-n-tab-title" aria-selected="false" data-tab-index="2" role="tab" tabindex="-1" aria-controls="e-n-tab-content-2342783102" style="--n-tabs-title-order: 2;">
<span class="e-n-tab-title-text">
Appetizers </span>
</button>
<button id="e-n-tab-title-2342783103" class="e-n-tab-title" aria-selected="false" data-tab-index="3" role="tab" tabindex="-1" aria-controls="e-n-tab-content-2342783103" style="--n-tabs-title-order: 3;">
<span class="e-n-tab-title-text">
Soup </span>
</button>
<button id="e-n-tab-title-2342783104" class="e-n-tab-title" aria-selected="false" data-tab-index="4" role="tab" tabindex="-1" aria-controls="e-n-tab-content-2342783104" style="--n-tabs-title-order: 4;">
<span class="e-n-tab-title-text">
Desserts </span>
</button>
<button id="e-n-tab-title-2342783105" class="e-n-tab-title" aria-selected="false" data-tab-index="5" role="tab" tabindex="-1" aria-controls="e-n-tab-content-2342783105" style="--n-tabs-title-order: 5;">
<span class="e-n-tab-title-text">
Beverages </span>
</button>
</div>
<div class="e-n-tabs-content">
<div id="e-n-tab-content-2342783101" role="tabpanel" aria-labelledby="e-n-tab-title-2342783101" data-tab-index="1" style="--n-tabs-title-order: 1;" class="e-active elementor-element elementor-element-647ab14f e-con-full e-flex e-con e-child" data-id="647ab14f" data-element_type="container">
<div class="elementor-element elementor-element-005c835 e-con-full itemtypebox e-flex e-con e-child" data-id="005c835" data-element_type="container">
<div class="elementor-element elementor-element-63652d2 e-con-full e-flex e-con e-child" data-id="63652d2" data-element_type="container">
<div class="elementor-element elementor-element-1479505 recipeslist elementor-widget elementor-widget-text-editor" data-id="1479505" data-element_type="widget" data-widget_type="text-editor.default">
<ul>
<li><a href="https://www.howtocook.recipes/easy-banana-bread-recipe/">Easy Banana Bread Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-bread-pudding-recipe/">Homemade Bread Pudding Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-pumpkin-bread-recipe/">Homemade Pumpkin Bread Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-zucchini-bread-recipe/">Homemade Zucchini Bread Recipe</a></li>
<li><a href="https://www.howtocook.recipes/best-homemade-pancake-recipe/">Best Homemade Pancake Recipe</a></li>
<li><a href="https://www.howtocook.recipes/best-homemade-french-toast-recipe/">Best Homemade French Toast Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-waffle-recipe/">Classic Waffle Recipe</a></li>
<li><a href="https://www.howtocook.recipes/perfect-crepe-recipe/">Perfect Crepe Recipe</a></li>
<li><a href="https://www.howtocook.recipes/the-best-homemade-donut-recipe/">The BEST Homemade Donut Recipe</a></li>
<li><a href="https://www.howtocook.recipes/how-to-cook-bacon-in-the-oven/">How to Cook Bacon in the Oven</a></li>
<li><a href="https://www.howtocook.recipes/homemade-cinnamon-roll-recipe/">Homemade Cinnamon Roll Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-frittata-recipe/">Homemade Frittata Recipe</a></li>
<li><a href="https://www.howtocook.recipes/perfect-avocado-toast-recipe/">Perfect Avocado Toast Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-quiche-recipe/">Classic Quiche Recipe</a></li>
<li><a href="https://www.howtocook.recipes/the-perfect-hard-boiled-egg-recipe/">The PERFECT Hard Boiled Egg Recipe</a></li>
<li><a href="https://www.howtocook.recipes/poached-eggs-recipe/">Poached Eggs Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-breakfast-casserole-recipe/">Homemade Breakfast Casserole Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-overnight-oats-recipe/">Homemade Overnight Oats Recipe</a></li>
<li><a href="https://www.howtocook.recipes/creamy-cracker-barrel-hashbrown-casserole-recipe/">Creamy Cracker Barrel Hashbrown Casserole Recipe</a></li>
</ul> </div>
</div>
<div class="elementor-element elementor-element-6ac251e e-con-full e-flex e-con e-child" data-id="6ac251e" data-element_type="container">
<div class="elementor-element elementor-element-d8fe143 elementor-widget elementor-widget-image" data-id="d8fe143" data-element_type="widget" data-widget_type="image.default">
<img width="300" height="300" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAEsAQAAAABRBrPYAAAAAnRSTlMAAHaTzTgAAAAiSURBVGje7cExAQAAAMKg9U9tCj+gAAAAAAAAAAAAAAB4GS20AAH/6QlrAAAAAElFTkSuQmCC" class="attachment-medium size-medium wp-image-5343 lazyload" alt="waffle recipe" data-src="https://www.howtocook.recipes/wp-content/uploads/2020/09/waffle-recipe-300x300.jpg" decoding="async" data-srcset="https://www.howtocook.recipes/wp-content/uploads/2020/09/waffle-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2020/09/waffle-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2020/09/waffle-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2020/09/waffle-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2020/09/waffle-recipe-450x450.jpg 450w" data-sizes="auto" data-eio-rwidth="300" data-eio-rheight="300" /><noscript><img width="300" height="300" src="https://www.howtocook.recipes/wp-content/uploads/2020/09/waffle-recipe-300x300.jpg" class="attachment-medium size-medium wp-image-5343" alt="waffle recipe" srcset="https://www.howtocook.recipes/wp-content/uploads/2020/09/waffle-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2020/09/waffle-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2020/09/waffle-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2020/09/waffle-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2020/09/waffle-recipe-450x450.jpg 450w" sizes="(max-width: 300px) 100vw, 300px" data-eio="l" /></noscript> </div>
</div>
</div>
</div>
<div id="e-n-tab-content-2342783102" role="tabpanel" aria-labelledby="e-n-tab-title-2342783102" data-tab-index="2" style="--n-tabs-title-order: 2;" class=" elementor-element elementor-element-77a79928 e-con-full e-flex e-con e-child" data-id="77a79928" data-element_type="container">
<div class="elementor-element elementor-element-abcc5d1 e-con-full itemtypebox e-flex e-con e-child" data-id="abcc5d1" data-element_type="container">
<div class="elementor-element elementor-element-d27c36a e-con-full e-flex e-con e-child" data-id="d27c36a" data-element_type="container">
<div class="elementor-element elementor-element-f2183f1 recipeslist elementor-widget elementor-widget-text-editor" data-id="f2183f1" data-element_type="widget" data-widget_type="text-editor.default">
<ul><li><a href="https://www.howtocook.recipes/best-guacamole-recipe/">Best Guacamole Recipe</a></li><li><a href="https://www.howtocook.recipes/best-homemade-meatball-recipe/">Best Homemade Meatball Recipe</a></li><li><a href="https://www.howtocook.recipes/classic-bruschetta-recipe/">Classic Bruschetta Recipe</a></li><li><a href="https://www.howtocook.recipes/classic-hummus-recipe/">Classic Hummus Recipe</a></li><li><a href="https://www.howtocook.recipes/baked-chicken-wings-recipe/">Baked Chicken Wings Recipe</a></li><li><a href="https://www.howtocook.recipes/crockpot-buffalo-chicken-dip-recipe/">Crockpot Buffalo Chicken Dip Recipe</a></li><li><a href="https://www.howtocook.recipes/classic-bruschetta-recipe/">Classic Bruschetta Recipe</a></li><li><a href="https://www.howtocook.recipes/homemade-deviled-egg-recipe/">Homemade Deviled Egg Recipe</a></li><li><a href="https://www.howtocook.recipes/falafel-recipe/">The Best Falafel Recipe</a></li><li><a href="https://www.howtocook.recipes/classic-quesadilla-recipe/">Classic Quesadilla Recipe</a></li><li><a href="https://www.howtocook.recipes/salsa-recipe/">Homemade Salsa Recipe</a></li><li><a href="https://www.howtocook.recipes/pico-de-gallo-recipe/">Pico De Gallo Recipe</a></li><li><a href="https://www.howtocook.recipes/pico-de-gallo-recipe/">Pico De Gallo Recipe</a></li><li><a href="https://www.howtocook.recipes/classic-tartar-sauce-recipe/">Classic Tartar Sauce Recipe</a></li><li><a href="https://www.howtocook.recipes/homemade-bbq-sauce-recipe/">Homemade BBQ Sauce Recipe</a></li><li><a href="https://www.howtocook.recipes/authentic-chimichurri-recipe/">Authentic Chimichurri Recipe</a></li><li><a href="https://www.howtocook.recipes/traditional-homemade-gravy-recipe/">Traditional Homemade Gravy Recipe</a></li><li><a href="https://www.howtocook.recipes/perfect-taco-seasoning-recipe/">Perfect Taco Seasoning Recipe</a></li></ul> </div>
</div>
<div class="elementor-element elementor-element-dfc567f e-con-full e-flex e-con e-child" data-id="dfc567f" data-element_type="container">
<div class="elementor-element elementor-element-640eb89 elementor-widget elementor-widget-image" data-id="640eb89" data-element_type="widget" data-widget_type="image.default">
<img width="300" height="300" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAEsAQAAAABRBrPYAAAAAnRSTlMAAHaTzTgAAAAiSURBVGje7cExAQAAAMKg9U9tCj+gAAAAAAAAAAAAAAB4GS20AAH/6QlrAAAAAElFTkSuQmCC" class="attachment-medium size-medium wp-image-5370 lazyload" alt="Hummus recipe" data-src="https://www.howtocook.recipes/wp-content/uploads/2020/09/hummus-recipe-300x300.jpg" decoding="async" data-srcset="https://www.howtocook.recipes/wp-content/uploads/2020/09/hummus-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2020/09/hummus-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2020/09/hummus-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2020/09/hummus-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2020/09/hummus-recipe-450x450.jpg 450w" data-sizes="auto" data-eio-rwidth="300" data-eio-rheight="300" /><noscript><img width="300" height="300" src="https://www.howtocook.recipes/wp-content/uploads/2020/09/hummus-recipe-300x300.jpg" class="attachment-medium size-medium wp-image-5370" alt="Hummus recipe" srcset="https://www.howtocook.recipes/wp-content/uploads/2020/09/hummus-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2020/09/hummus-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2020/09/hummus-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2020/09/hummus-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2020/09/hummus-recipe-450x450.jpg 450w" sizes="(max-width: 300px) 100vw, 300px" data-eio="l" /></noscript> </div>
</div>
</div>
</div>
<div id="e-n-tab-content-2342783103" role="tabpanel" aria-labelledby="e-n-tab-title-2342783103" data-tab-index="3" style="--n-tabs-title-order: 3;" class=" elementor-element elementor-element-2e2236e7 e-con-full e-flex e-con e-child" data-id="2e2236e7" data-element_type="container">
<div class="elementor-element elementor-element-0a2bd4c e-con-full itemtypebox e-flex e-con e-child" data-id="0a2bd4c" data-element_type="container">
<div class="elementor-element elementor-element-6dd76cd e-con-full e-flex e-con e-child" data-id="6dd76cd" data-element_type="container">
<div class="elementor-element elementor-element-2e6a389 recipeslist elementor-widget elementor-widget-text-editor" data-id="2e6a389" data-element_type="widget" data-widget_type="text-editor.default">
<ul>
<li><a href="https://www.howtocook.recipes/homemade-chicken-noodle-soup-recipe/">Homemade Chicken Noodle Soup Recipe</a></li>
<li><a href="https://www.howtocook.recipes/french-onion-soup-recipe/">French Onion Soup Recipe</a></li>
<li><a href="https://www.howtocook.recipes/cozy-chicken-soup-recipe/">Cozy Chicken Soup Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-potato-soup-recipe/">Homemade Potato Soup Recipe</a></li>
<li><a href="https://www.howtocook.recipes/crockpot-potato-soup-recipe/">Crockpot Potato Soup Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-split-pea-soup-recipe/">Homemade Split Pea Soup Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-tomato-soup-recipe/">Homemade Tomato Soup Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-lentil-soup-recipe/">Homemade Lentil Soup Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-vegetable-soup-recipe/">Homemade Vegetable Soup Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-taco-soup-recipe/">Classic Taco Soup Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-pho-recipe/">Classic Pho Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-clam-chowder-recipe/">Classic Clam Chowder Recipe</a></li>
</ul>
</div>
</div>
<div class="elementor-element elementor-element-bb8a67f e-con-full e-flex e-con e-child" data-id="bb8a67f" data-element_type="container">
<div class="elementor-element elementor-element-0721572 elementor-widget elementor-widget-image" data-id="0721572" data-element_type="widget" data-widget_type="image.default">
<img width="500" height="500" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAfQAAAH0AQAAAADjreInAAAAAnRSTlMAAHaTzTgAAAA1SURBVHja7cExAQAAAMKg9U/tYQ2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG59AAABgyKozQAAAABJRU5ErkJggg==" class="attachment-medium_large size-medium_large wp-image-8161 lazyload" alt="Split pea soup recipe" data-src="https://www.howtocook.recipes/wp-content/uploads/2021/11/Split-pea-soup-recipe.jpg" decoding="async" data-srcset="https://www.howtocook.recipes/wp-content/uploads/2021/11/Split-pea-soup-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2021/11/Split-pea-soup-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2021/11/Split-pea-soup-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2021/11/Split-pea-soup-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2021/11/Split-pea-soup-recipe-450x450.jpg 450w" data-sizes="auto" data-eio-rwidth="500" data-eio-rheight="500" /><noscript><img width="500" height="500" src="https://www.howtocook.recipes/wp-content/uploads/2021/11/Split-pea-soup-recipe.jpg" class="attachment-medium_large size-medium_large wp-image-8161" alt="Split pea soup recipe" srcset="https://www.howtocook.recipes/wp-content/uploads/2021/11/Split-pea-soup-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2021/11/Split-pea-soup-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2021/11/Split-pea-soup-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2021/11/Split-pea-soup-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2021/11/Split-pea-soup-recipe-450x450.jpg 450w" sizes="(max-width: 500px) 100vw, 500px" data-eio="l" /></noscript> </div>
</div>
</div>
</div>
<div id="e-n-tab-content-2342783104" role="tabpanel" aria-labelledby="e-n-tab-title-2342783104" data-tab-index="4" style="--n-tabs-title-order: 4;" class=" elementor-element elementor-element-36e2fa5a e-con-full e-flex e-con e-child" data-id="36e2fa5a" data-element_type="container">
<div class="elementor-element elementor-element-295b848 e-con-full itemtypebox singlecolitems e-flex e-con e-child" data-id="295b848" data-element_type="container">
<div class="elementor-element elementor-element-925396e e-con-full e-grid e-con e-child" data-id="925396e" data-element_type="container">
<div class="elementor-element elementor-element-9080031 e-con-full e-flex e-con e-child" data-id="9080031" data-element_type="container">
<div class="elementor-element elementor-element-efc17bd e-con-full e-flex e-con e-child" data-id="efc17bd" data-element_type="container">
<div class="elementor-element elementor-element-f1c11f1 elementor-widget elementor-widget-heading" data-id="f1c11f1" data-element_type="widget" data-widget_type="heading.default">
<h4 class="elementor-heading-title elementor-size-default">Cookies</h4> </div>
<div class="elementor-element elementor-element-ede4c1e recipeslist elementor-widget elementor-widget-text-editor" data-id="ede4c1e" data-element_type="widget" data-widget_type="text-editor.default">
<ul>
<li><a href="https://www.howtocook.recipes/classic-sugar-cookie-recipe/">Classic Sugar Cookie Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-chocolate-chip-cookie-recipe/">Classic Chocolate Chip Cookie Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-peanut-butter-cookie-recipe/">Classic Peanut Butter Cookie Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-oatmeal-cookie-recipe/">Homemade Oatmeal Cookie Recipe</a></li>
<li><a href="https://www.howtocook.recipes/easy-sugar-cookie-recipe-with-icing/">Easy Sugar Cookie Recipe with Icing</a></li>
<li><a href="https://www.howtocook.recipes/browned-butter-chocolate-chip-cookie-recipe/">Browned Butter Chocolate Chip Cookie Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-macaron-recipe/">Classic Macaron Recipe</a></li>
<li><a href="https://www.howtocook.recipes/traditional-snickerdoodle-recipe/">Traditional Snickerdoodle Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-royal-icing-recipe/">Homemade Royal Icing Recipe</a></li>
</ul>
</div>
</div>
</div>
<div class="elementor-element elementor-element-2cc08e6 e-con-full e-flex e-con e-child" data-id="2cc08e6" data-element_type="container">
<div class="elementor-element elementor-element-1b3fcdb elementor-widget elementor-widget-heading" data-id="1b3fcdb" data-element_type="widget" data-widget_type="heading.default">
<h4 class="elementor-heading-title elementor-size-default">Cakes</h4> </div>
<div class="elementor-element elementor-element-65e016a recipeslist elementor-widget elementor-widget-text-editor" data-id="65e016a" data-element_type="widget" data-widget_type="text-editor.default">
<ul>
<li style="list-style-type: none;">
<li><a href="https://www.howtocook.recipes/classic-homemade-cheesecake-recipe/">Classic Homemade Cheesecake Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-chocolate-cake-recipe/">Classic Chocolate Cake Recipe</a></li>
<li><a href="https://www.howtocook.recipes/perfect-carrot-cake-recipe/">Perfect Carrot Cake Recipe</a></li>
<li><a href="https://www.howtocook.recipes/easy-birthday-cake-recipe/">Easy Birthday Cake Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-strawberry-shortcake-recipe/">Homemade Strawberry Shortcake Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-funnel-cake-recipe/">Homemade Funnel Cake Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-pound-cake-recipe/">Homemade Pound Cake Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-red-velvet-cake-recipe/">Classic Red Velvet Cake Recipe</a></li>
</ul> </div>
</div>
<div class="elementor-element elementor-element-e669933 e-con-full e-flex e-con e-child" data-id="e669933" data-element_type="container">
<div class="elementor-element elementor-element-6e6995d e-con-full e-flex e-con e-child" data-id="6e6995d" data-element_type="container">
<div class="elementor-element elementor-element-fddf6ae elementor-widget elementor-widget-heading" data-id="fddf6ae" data-element_type="widget" data-widget_type="heading.default">
<h4 class="elementor-heading-title elementor-size-default">Pie</h4> </div>
<div class="elementor-element elementor-element-09cdd73 recipeslist elementor-widget elementor-widget-text-editor" data-id="09cdd73" data-element_type="widget" data-widget_type="text-editor.default">
<ul>
<li><a href="https://www.howtocook.recipes/classic-apple-pie-recipe/">Classic Apple Pie Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-pumpkin-pie-recipe/">Classic Pumpkin Pie Recipe</a></li>
<li><a href="https://www.howtocook.recipes/perfect-pecan-pie-recipe/">Perfect Pecan Pie Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-key-lime-pie-recipe/">Homemade Key Lime Pie Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-sweet-potato-pie-recipe/">Classic Sweet Potato Pie Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-peach-pie-recipe/">Homemade Peach Pie Recipe</a></li>
<li><a href="https://www.howtocook.recipes/buttery-flaky-pie-crust-recipe/">Buttery Flaky Pie Crust Recipe</a></li>
</ul>
</div>
</div>
</div>
<div class="elementor-element elementor-element-f596d0a e-con-full e-flex e-con e-child" data-id="f596d0a" data-element_type="container">
<div class="elementor-element elementor-element-f9c863e elementor-widget elementor-widget-heading" data-id="f9c863e" data-element_type="widget" data-widget_type="heading.default">
<h4 class="elementor-heading-title elementor-size-default">More Desserts</h4> </div>
<div class="elementor-element elementor-element-818953b recipeslist elementor-widget elementor-widget-text-editor" data-id="818953b" data-element_type="widget" data-widget_type="text-editor.default">
<ul><li><a href="https://www.howtocook.recipes/best-brownie-recipe-from-scratch/">Best Brownie Recipe from Scratch</a></li><li><a href="https://www.howtocook.recipes/best-classic-fudge-recipe/">The Best Classic Fudge Recipe</a></li><li><a href="https://www.howtocook.recipes/classic-apple-crisp-recipe/">Classic Apple Crisp Recipe</a></li><li><a href="https://www.howtocook.recipes/classic-creme-brulee-recipe/">Classic Creme Brulee Recipe</a></li><li><a href="https://www.howtocook.recipes/homemade-bread-pudding-recipe/">Homemade Bread Pudding Recipe</a></li><li><a href="https://www.howtocook.recipes/homemade-peach-cobbler-recipe/">Homemade Peach Cobbler Recipe</a></li><li><a href="https://www.howtocook.recipes/classic-tiramisu-recipe/">Classic Tiramisu Recipe</a></li><li><a href="https://www.howtocook.recipes/classic-flan-recipe/">Classic Flan Recipe</a></li><li><a href="https://www.howtocook.recipes/homemade-lemon-curd-recipe/">Homemade Lemon Curd Recipe</a></li></ul> </div>
</div>
</div>
</div>
</div>
<div id="e-n-tab-content-2342783105" role="tabpanel" aria-labelledby="e-n-tab-title-2342783105" data-tab-index="5" style="--n-tabs-title-order: 5;" class=" elementor-element elementor-element-5dc950e4 e-con-full e-flex e-con e-child" data-id="5dc950e4" data-element_type="container">
<div class="elementor-element elementor-element-50c632a e-con-full itemtypebox e-flex e-con e-child" data-id="50c632a" data-element_type="container">
<div class="elementor-element elementor-element-acdde5e e-con-full e-flex e-con e-child" data-id="acdde5e" data-element_type="container">
<div class="elementor-element elementor-element-30df319 recipeslist elementor-widget elementor-widget-text-editor" data-id="30df319" data-element_type="widget" data-widget_type="text-editor.default">
<ul>
<li><a href="https://www.howtocook.recipes/homemade-hot-chocolate-recipe/">Homemade Hot Chocolate Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-eggnog-recipe/">Homemade Eggnog Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-lemonade-recipe/">Homemade Lemonade Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-horchata-recipe/">Homemade Horchata Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-coquito-recipe/">Classic Coquito Recipe</a></li>
<li><a href="https://www.howtocook.recipes/how-to-make-buttermilk/">How to Make Buttermilk</a></li>
<li><a href="https://www.howtocook.recipes/classic-mojito-recipe/">Classic Mojito Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-moscow-mule-recipe/">Classic Moscow Mule Recipe</a></li>
</ul>
</div>
</div>
<div class="elementor-element elementor-element-06bbb33 e-con-full e-flex e-con e-child" data-id="06bbb33" data-element_type="container">
<div class="elementor-element elementor-element-f4d8798 elementor-widget elementor-widget-image" data-id="f4d8798" data-element_type="widget" data-widget_type="image.default">
<img width="300" height="300" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAEsAQAAAABRBrPYAAAAAnRSTlMAAHaTzTgAAAAiSURBVGje7cExAQAAAMKg9U9tCj+gAAAAAAAAAAAAAAB4GS20AAH/6QlrAAAAAElFTkSuQmCC" class="attachment-medium size-medium wp-image-7963 lazyload" alt="Hot chocolate recipe" data-src="https://www.howtocook.recipes/wp-content/uploads/2021/10/Hot-chocolate-recipe-300x300.jpg" decoding="async" data-srcset="https://www.howtocook.recipes/wp-content/uploads/2021/10/Hot-chocolate-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2021/10/Hot-chocolate-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2021/10/Hot-chocolate-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2021/10/Hot-chocolate-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2021/10/Hot-chocolate-recipe-450x450.jpg 450w" data-sizes="auto" data-eio-rwidth="300" data-eio-rheight="300" /><noscript><img width="300" height="300" src="https://www.howtocook.recipes/wp-content/uploads/2021/10/Hot-chocolate-recipe-300x300.jpg" class="attachment-medium size-medium wp-image-7963" alt="Hot chocolate recipe" srcset="https://www.howtocook.recipes/wp-content/uploads/2021/10/Hot-chocolate-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2021/10/Hot-chocolate-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2021/10/Hot-chocolate-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2021/10/Hot-chocolate-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2021/10/Hot-chocolate-recipe-450x450.jpg 450w" sizes="(max-width: 300px) 100vw, 300px" data-eio="l" /></noscript> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</li>
<li class="e-n-menu-item">
<div id="e-n-menu-title-8783" class="e-n-menu-title">
<div class="e-n-menu-title-container"> <span class="e-n-menu-title-text">
Recipes & Cuisine </span>
</div> <button id="e-n-menu-dropdown-icon-8783" class="e-n-menu-dropdown-icon e-focus" data-tab-index="3" aria-haspopup="true" aria-expanded="false" aria-controls="e-n-menu-content-8783" >
<span class="e-n-menu-dropdown-icon-opened">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-caret-up" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M288.662 352H31.338c-17.818 0-26.741-21.543-14.142-34.142l128.662-128.662c7.81-7.81 20.474-7.81 28.284 0l128.662 128.662c12.6 12.599 3.676 34.142-14.142 34.142z"></path></svg> <span class="elementor-screen-only">Close Recipes & Cuisine</span>
</span>
<span class="e-n-menu-dropdown-icon-closed">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-caret-down" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z"></path></svg> <span class="elementor-screen-only">Open Recipes & Cuisine</span>
</span>
</button>
</div>
<div class="e-n-menu-content">
<div id="e-n-menu-content-8783" data-tab-index="3" aria-labelledby="e-n-menu-dropdown-icon-8783" class="elementor-element elementor-element-562d823 e-con-full e-flex e-con e-child" data-id="562d823" data-element_type="container">
<div class="elementor-element elementor-element-56b086e e-flex e-con-boxed e-con e-child" data-id="56b086e" data-element_type="container" data-settings="{"background_background":"classic"}">
<div class="e-con-inner">
<div class="elementor-element elementor-element-fffc369 e-con-full regcol e-flex e-con e-child" data-id="fffc369" data-element_type="container">
<div class="elementor-element elementor-element-39a6e65 elementor-widget elementor-widget-template" data-id="39a6e65" data-element_type="widget" data-widget_type="template.default">
<div class="elementor-widget-container">
<div class="elementor-template">
<div data-elementor-type="container" data-elementor-id="11472" class="elementor elementor-11472" data-elementor-post-type="elementor_library">
<div class="elementor-element elementor-element-c584065 e-con-full e-flex e-con e-parent" data-id="c584065" data-element_type="container">
<div class="elementor-element elementor-element-f53c019 menuTabs e-n-tabs-mobile elementor-widget elementor-widget-n-tabs" data-id="f53c019" data-element_type="widget" data-widget_type="nested-tabs.default">
<div class="e-n-tabs" data-widget-number="257146905" aria-label="Tabs. Open items with Enter or Space, close with Escape and navigate using the Arrow keys.">
<div class="e-n-tabs-heading" role="tablist">
<button id="e-n-tab-title-2571469051" class="e-n-tab-title" aria-selected="true" data-tab-index="1" role="tab" tabindex="0" aria-controls="e-n-tab-content-2571469051" style="--n-tabs-title-order: 1;">
<span class="e-n-tab-title-text">
Meatloaf Recipes </span>
</button>
<button id="e-n-tab-title-2571469052" class="e-n-tab-title" aria-selected="false" data-tab-index="2" role="tab" tabindex="-1" aria-controls="e-n-tab-content-2571469052" style="--n-tabs-title-order: 2;">
<span class="e-n-tab-title-text">
Main Dishes </span>
</button>
<button id="e-n-tab-title-2571469053" class="e-n-tab-title" aria-selected="false" data-tab-index="3" role="tab" tabindex="-1" aria-controls="e-n-tab-content-2571469053" style="--n-tabs-title-order: 3;">
<span class="e-n-tab-title-text">
Chili Recipes </span>
</button>
<button id="e-n-tab-title-2571469054" class="e-n-tab-title" aria-selected="false" data-tab-index="4" role="tab" tabindex="-1" aria-controls="e-n-tab-content-2571469054" style="--n-tabs-title-order: 4;">
<span class="e-n-tab-title-text">
Sides </span>
</button>
<button id="e-n-tab-title-2571469055" class="e-n-tab-title" aria-selected="false" data-tab-index="5" role="tab" tabindex="-1" aria-controls="e-n-tab-content-2571469055" style="--n-tabs-title-order: 5;">
<span class="e-n-tab-title-text">
Italian </span>
</button>
</div>
<div class="e-n-tabs-content">
<div id="e-n-tab-content-2571469051" role="tabpanel" aria-labelledby="e-n-tab-title-2571469051" data-tab-index="1" style="--n-tabs-title-order: 1;" class="e-active elementor-element elementor-element-53df55e e-con-full e-flex e-con e-child" data-id="53df55e" data-element_type="container">
<div class="elementor-element elementor-element-68738cb e-con-full itemtypebox e-flex e-con e-child" data-id="68738cb" data-element_type="container">
<div class="elementor-element elementor-element-698a495 e-con-full e-flex e-con e-child" data-id="698a495" data-element_type="container">
<div class="elementor-element elementor-element-1cfff83 recipeslist elementor-widget elementor-widget-text-editor" data-id="1cfff83" data-element_type="widget" data-widget_type="text-editor.default">
<ul>
<li><a href="https://www.howtocook.recipes/matts-classic-meatloaf-recipe/">Best Easy Meatloaf Recipe</a></li>
<li><a href="https://www.howtocook.recipes/best-classic-meatloaf-recipe/">Meatloaf Temp and Cook Time</a></li>
<li><a href="https://www.howtocook.recipes/category/meatloaf-recipes/">All Meatloaf Recipes</a></li>
<li><a href="https://www.howtocook.recipes/how-long-to-cook-meatloaf/">How Long to Cook Meatloaf</a></li>
<li><a href="https://www.howtocook.recipes/the-temperature-at-which-meatloaf-is-done/">The Temperature at Which Meatloaf is Done</a></li>
<li><a href="https://www.howtocook.recipes/why-meatloaf-falls-apart-and-crumbles/">Why Meatloaf Falls Apart and Crumbles</a></li>
<li><a href="https://www.howtocook.recipes/keto-meatloaf-recipe/">Keto Meatloaf Recipe</a></li>
<li><a href="https://www.howtocook.recipes/do-you-cook-meatloaf-at-350-or-400/">Do You Cook Meatloaf At 350 Or 400?</a></li>
<li><a href="https://www.howtocook.recipes/how-to-make-meatloaf-without-eggs/">How to Make Meatloaf Without Eggs</a></li>
<li><a href="https://www.howtocook.recipes/do-you-cook-meatloaf-at-350-or-375/">Do You Cook Meatloaf At 350 Or 375?</a></li>
<li><a href="https://www.howtocook.recipes/whats-the-proper-meatloaf-cooking-temperature/">What’s the Proper Meatloaf Cooking Temperature?</a></li>
<li><a href="https://www.howtocook.recipes/what-can-i-put-on-top-of-meatloaf-instead-of-ketchup/">What Can I Put on Top of Meatloaf Instead of Ketchup?</a></li>
<li><a href="https://www.howtocook.recipes/meatloaf-recipe-with-oatmeal/">Meatloaf Recipe with Oatmeal</a></li>
<li><a href="https://www.howtocook.recipes/how-many-eggs-are-in-meatloaf/">How Many Eggs Are in Meatloaf?</a></li>
<li><a href="https://www.howtocook.recipes/can-meatloaf-be-made-ahead-of-time/">Can Meatloaf Be Made Ahead of Time?</a></li>
<li><a href="https://www.howtocook.recipes/do-you-cover-meatloaf-while-cooking-it/">Do You Cover Meatloaf While Cooking It?</a></li>
<li><a href="https://www.howtocook.recipes/how-much-breadcrumbs-go-in-meatloaf-and-why-do-you-need-them/">How Much Breadcrumbs Go in Meatloaf, and Why Do You Need Them?</a></li>
<li><a href="https://www.howtocook.recipes/cooking-meatloaf-on-a-traeger-or-other-wood-pellet-grill/">Cooking Meatloaf on a Traeger or Other Wood Pellet Grill</a></li>
<li><a href="https://www.howtocook.recipes/classic-turkey-meatloaf-recipe/">Classic Turkey Meatloaf Recipe</a></li>
<li><a href="https://www.howtocook.recipes/diabetic-meatloaf-recipe/">Diabetic Meatloaf Recipe</a></li>
</ul>
</div>
</div>
<div class="elementor-element elementor-element-624f302 e-con-full e-flex e-con e-child" data-id="624f302" data-element_type="container">
<div class="elementor-element elementor-element-2725c2b elementor-widget elementor-widget-image" data-id="2725c2b" data-element_type="widget" data-widget_type="image.default">
<img width="500" height="500" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAfQAAAH0AQAAAADjreInAAAAAnRSTlMAAHaTzTgAAAA1SURBVHja7cExAQAAAMKg9U/tYQ2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG59AAABgyKozQAAAABJRU5ErkJggg==" class="attachment-medium_large size-medium_large wp-image-9035 lazyload" alt="Meatloaf recipe" data-src="https://www.howtocook.recipes/wp-content/uploads/2022/07/Meatloaf-recipe.jpg" decoding="async" data-srcset="https://www.howtocook.recipes/wp-content/uploads/2022/07/Meatloaf-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2022/07/Meatloaf-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2022/07/Meatloaf-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2022/07/Meatloaf-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2022/07/Meatloaf-recipe-450x450.jpg 450w" data-sizes="auto" data-eio-rwidth="500" data-eio-rheight="500" /><noscript><img width="500" height="500" src="https://www.howtocook.recipes/wp-content/uploads/2022/07/Meatloaf-recipe.jpg" class="attachment-medium_large size-medium_large wp-image-9035" alt="Meatloaf recipe" srcset="https://www.howtocook.recipes/wp-content/uploads/2022/07/Meatloaf-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2022/07/Meatloaf-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2022/07/Meatloaf-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2022/07/Meatloaf-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2022/07/Meatloaf-recipe-450x450.jpg 450w" sizes="(max-width: 500px) 100vw, 500px" data-eio="l" /></noscript> </div>
</div>
</div>
</div>
<div id="e-n-tab-content-2571469052" role="tabpanel" aria-labelledby="e-n-tab-title-2571469052" data-tab-index="2" style="--n-tabs-title-order: 2;" class=" elementor-element elementor-element-0297609 e-con-full e-flex e-con e-child" data-id="0297609" data-element_type="container">
<div class="elementor-element elementor-element-2f65f39 e-con-full itemtypebox e-flex e-con e-child" data-id="2f65f39" data-element_type="container">
<div class="elementor-element elementor-element-7d4ad22 e-con-full e-flex e-con e-child" data-id="7d4ad22" data-element_type="container">
<div class="elementor-element elementor-element-64ef03e recipeslist elementor-widget elementor-widget-text-editor" data-id="64ef03e" data-element_type="widget" data-widget_type="text-editor.default">
<ul>
<li><a href="https://www.howtocook.recipes/what-secret-ingredient-will-deepen-the-flavor-of-your-chili/">What Secret Ingredient Will Deepen the Flavor of Your Chili?</a></li>
<li><a href="https://www.howtocook.recipes/what-is-the-best-bean-combination-for-chili/">What Is the Best Bean Combination for Chili?</a></li>
<li><a href="https://www.howtocook.recipes/why-put-carrots-in-chili/">Why Put Carrots in Chili?</a></li>
<li><a href="https://www.howtocook.recipes/why-chili-causes-gas/">Why Chili Causes Gas</a></li>
<li><a href="https://www.howtocook.recipes/what-makes-chili-more-flavorful/">What Makes Chili More Flavorful?</a></li>
<li><a href="https://www.howtocook.recipes/what-is-considered-traditional-chili/">What Is Considered Traditional Chili?</a></li>
<li><a href="https://www.howtocook.recipes/what-liquid-is-best-for-chili/">What Liquid Is Best for Chili?</a></li>
<li><a href="https://www.howtocook.recipes/what-is-different-about-texas-style-chili/">What Is Different About Texas-Style Chili?</a></li>
<li><a href="https://www.howtocook.recipes/what-cut-of-beef-is-best-for-chili/">What Cut of Beef Is Best for Chili?</a></li>
<li><a href="https://www.howtocook.recipes/the-ultimate-chili-ideas-for-your-next-dinner/">The Ultimate Chili Ideas for Your Next Dinner</a></li>
<li><a href="https://www.howtocook.recipes/whats-the-difference-between-cowboy-chili-and-regular-chili/">What’s the Difference Between Cowboy Chili and Regular Chili?</a></li>
<li><a href="https://www.howtocook.recipes/what-chili-is-gluten-free-where-to-get-safe-chili/">What Chili Is Gluten-Free? Where to Get Safe Chili</a></li>
<li><a href="https://www.howtocook.recipes/what-are-the-different-styles-of-chili/">What Are the Different Styles of Chili?</a></li>
<li><a href="https://www.howtocook.recipes/how-to-prep-fresh-beans-for-chili-a-step-by-step-guide/">How to Prep Fresh Beans for Chili: A Step-by-Step Guide</a></li>
<li><a href="https://www.howtocook.recipes/how-chili-is-rated/">How Chili is Rated</a></li>
<li><a href="https://www.howtocook.recipes/crowd-pleasing-chili-ideas/">Crowd-Pleasing Chili Ideas</a></li>
<li><a href="https://www.howtocook.recipes/how-to-make-homemade-chili-seasoning/">How to Make Homemade Chili Seasoning</a></li>
<li><a href="https://www.howtocook.recipes/healthier-options-for-chili-recipes/">Healthier Options for Chili Recipes</a></li>
<li><a href="https://www.howtocook.recipes/do-you-cook-ground-beef-before-putting-it-in-chili/">Do You Cook Ground Beef Before Putting it in Chili?</a></li>
<li><a href="https://www.howtocook.recipes/do-you-boil-the-beans-before-putting-them-in-chili/">Do You Boil the Beans Before Putting Them in Chili?</a></li>
</ul>
</div>
</div>
<div class="elementor-element elementor-element-4eee52b e-con-full e-flex e-con e-child" data-id="4eee52b" data-element_type="container">
<div class="elementor-element elementor-element-1df62c6 elementor-widget elementor-widget-image" data-id="1df62c6" data-element_type="widget" data-widget_type="image.default">
<img width="640" height="360" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAoAAAAFoAQAAAADvSXf8AAAAAnRSTlMAAHaTzTgAAAAySURBVHja7cEBDQAAAMKg90/t7AEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADdx6AABMM5UuwAAAABJRU5ErkJggg==" class="attachment-medium_large size-medium_large wp-image-11548 lazyload" alt="" data-src="https://www.howtocook.recipes/wp-content/uploads/2025/10/main-dish.jpg" decoding="async" data-srcset="https://www.howtocook.recipes/wp-content/uploads/2025/10/main-dish.jpg 640w, https://www.howtocook.recipes/wp-content/uploads/2025/10/main-dish-300x169.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2025/10/main-dish-480x270.jpg 480w" data-sizes="auto" data-eio-rwidth="640" data-eio-rheight="360" /><noscript><img width="640" height="360" src="https://www.howtocook.recipes/wp-content/uploads/2025/10/main-dish.jpg" class="attachment-medium_large size-medium_large wp-image-11548" alt="" srcset="https://www.howtocook.recipes/wp-content/uploads/2025/10/main-dish.jpg 640w, https://www.howtocook.recipes/wp-content/uploads/2025/10/main-dish-300x169.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2025/10/main-dish-480x270.jpg 480w" sizes="(max-width: 640px) 100vw, 640px" data-eio="l" /></noscript> </div>
</div>
</div>
</div>
<div id="e-n-tab-content-2571469053" role="tabpanel" aria-labelledby="e-n-tab-title-2571469053" data-tab-index="3" style="--n-tabs-title-order: 3;" class=" elementor-element elementor-element-783bfd3 e-con-full e-flex e-con e-child" data-id="783bfd3" data-element_type="container">
<div class="elementor-element elementor-element-6d0494a e-con-full itemtypebox e-flex e-con e-child" data-id="6d0494a" data-element_type="container">
<div class="elementor-element elementor-element-da84c17 e-con-full e-flex e-con e-child" data-id="da84c17" data-element_type="container">
<div class="elementor-element elementor-element-13599d4 recipeslist elementor-widget elementor-widget-text-editor" data-id="13599d4" data-element_type="widget" data-widget_type="text-editor.default">
<ul>
<li><a href="https://www.howtocook.recipes/matts-classic-meatloaf-recipe/">Best Easy Meatloaf Recipe</a></li>
<li><a href="https://www.howtocook.recipes/best-classic-meatloaf-recipe/">Meatloaf Temp and Cook Time</a></li>
<li><a href="https://www.howtocook.recipes/category/meatloaf-recipes/">All Meatloaf Recipes</a></li>
<li><a href="https://www.howtocook.recipes/how-long-to-cook-meatloaf/">How Long to Cook Meatloaf</a></li>
<li><a href="https://www.howtocook.recipes/the-temperature-at-which-meatloaf-is-done/">The Temperature at Which Meatloaf is Done</a></li>
<li><a href="https://www.howtocook.recipes/why-meatloaf-falls-apart-and-crumbles/">Why Meatloaf Falls Apart and Crumbles</a></li>
<li><a href="https://www.howtocook.recipes/keto-meatloaf-recipe/">Keto Meatloaf Recipe</a></li>
<li><a href="https://www.howtocook.recipes/do-you-cook-meatloaf-at-350-or-400/">Do You Cook Meatloaf At 350 Or 400?</a></li>
<li><a href="https://www.howtocook.recipes/how-to-make-meatloaf-without-eggs/">How to Make Meatloaf Without Eggs</a></li>
<li><a href="https://www.howtocook.recipes/do-you-cook-meatloaf-at-350-or-375/">Do You Cook Meatloaf At 350 Or 375?</a></li>
<li><a href="https://www.howtocook.recipes/whats-the-proper-meatloaf-cooking-temperature/">What’s the Proper Meatloaf Cooking Temperature?</a></li>
<li><a href="https://www.howtocook.recipes/what-can-i-put-on-top-of-meatloaf-instead-of-ketchup/">What Can I Put on Top of Meatloaf Instead of Ketchup?</a></li>
<li><a href="https://www.howtocook.recipes/meatloaf-recipe-with-oatmeal/">Meatloaf Recipe with Oatmeal</a></li>
<li><a href="https://www.howtocook.recipes/how-many-eggs-are-in-meatloaf/">How Many Eggs Are in Meatloaf?</a></li>
<li><a href="https://www.howtocook.recipes/can-meatloaf-be-made-ahead-of-time/">Can Meatloaf Be Made Ahead of Time?</a></li>
<li><a href="https://www.howtocook.recipes/do-you-cover-meatloaf-while-cooking-it/">Do You Cover Meatloaf While Cooking It?</a></li>
<li><a href="https://www.howtocook.recipes/how-much-breadcrumbs-go-in-meatloaf-and-why-do-you-need-them/">How Much Breadcrumbs Go in Meatloaf, and Why Do You Need Them?</a></li>
<li><a href="https://www.howtocook.recipes/cooking-meatloaf-on-a-traeger-or-other-wood-pellet-grill/">Cooking Meatloaf on a Traeger or Other Wood Pellet Grill</a></li>
<li><a href="https://www.howtocook.recipes/classic-turkey-meatloaf-recipe/">Classic Turkey Meatloaf Recipe</a></li>
<li><a href="https://www.howtocook.recipes/diabetic-meatloaf-recipe/">Diabetic Meatloaf Recipe</a></li>
</ul>
</div>
</div>
<div class="elementor-element elementor-element-6df8ff4 e-con-full e-flex e-con e-child" data-id="6df8ff4" data-element_type="container">
<div class="elementor-element elementor-element-105184d elementor-widget elementor-widget-image" data-id="105184d" data-element_type="widget" data-widget_type="image.default">
<img width="500" height="500" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAfQAAAH0AQAAAADjreInAAAAAnRSTlMAAHaTzTgAAAA1SURBVHja7cExAQAAAMKg9U/tYQ2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG59AAABgyKozQAAAABJRU5ErkJggg==" class="attachment-medium_large size-medium_large wp-image-9638 lazyload" alt="Vegan-chili-recipe" data-src="https://www.howtocook.recipes/wp-content/uploads/2024/11/Vegan-chili-recipe.jpg" decoding="async" data-srcset="https://www.howtocook.recipes/wp-content/uploads/2024/11/Vegan-chili-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2024/11/Vegan-chili-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2024/11/Vegan-chili-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2024/11/Vegan-chili-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2024/11/Vegan-chili-recipe-450x450.jpg 450w" data-sizes="auto" data-eio-rwidth="500" data-eio-rheight="500" /><noscript><img width="500" height="500" src="https://www.howtocook.recipes/wp-content/uploads/2024/11/Vegan-chili-recipe.jpg" class="attachment-medium_large size-medium_large wp-image-9638" alt="Vegan-chili-recipe" srcset="https://www.howtocook.recipes/wp-content/uploads/2024/11/Vegan-chili-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2024/11/Vegan-chili-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2024/11/Vegan-chili-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2024/11/Vegan-chili-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2024/11/Vegan-chili-recipe-450x450.jpg 450w" sizes="(max-width: 500px) 100vw, 500px" data-eio="l" /></noscript> </div>
</div>
</div>
</div>
<div id="e-n-tab-content-2571469054" role="tabpanel" aria-labelledby="e-n-tab-title-2571469054" data-tab-index="4" style="--n-tabs-title-order: 4;" class=" elementor-element elementor-element-7f7bd02 e-flex e-con-boxed e-con e-child" data-id="7f7bd02" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-1d4f34f e-con-full itemtypebox singlecolitems e-flex e-con e-child" data-id="1d4f34f" data-element_type="container">
<div class="elementor-element elementor-element-f81f755 e-con-full e-flex e-con e-child" data-id="f81f755" data-element_type="container">
<div class="elementor-element elementor-element-3c2a5fb e-con-full e-grid e-con e-child" data-id="3c2a5fb" data-element_type="container">
<div class="elementor-element elementor-element-6373ef4 e-con-full e-flex e-con e-child" data-id="6373ef4" data-element_type="container">
<div class="elementor-element elementor-element-9a0e7b8 e-con-full e-flex e-con e-child" data-id="9a0e7b8" data-element_type="container">
<div class="elementor-element elementor-element-5fd9b34 elementor-widget elementor-widget-heading" data-id="5fd9b34" data-element_type="widget" data-widget_type="heading.default">
<h4 class="elementor-heading-title elementor-size-default">Veggies</h4> </div>
<div class="elementor-element elementor-element-7d8cad7 recipeslist elementor-widget elementor-widget-text-editor" data-id="7d8cad7" data-element_type="widget" data-widget_type="text-editor.default">
<ul><li><a href="https://www.howtocook.recipes/roasted-broccoli-recipe/">Roasted Broccoli Recipe</a></li><li><a href="https://www.howtocook.recipes/crispy-roasted-brussel-sprouts-recipe/">Crispy Roasted Brussel Sprouts Recipe</a></li><li><a href="https://www.howtocook.recipes/classic-green-bean-recipe/">Classic Green Bean Recipe</a></li><li><a href="https://www.howtocook.recipes/classic-green-bean-casserole/">Classic Green Bean Casserole</a></li><li><a href="https://www.howtocook.recipes/asparagus-recipe/">Roasted Asparagus Recipe</a></li><li><a href="https://www.howtocook.recipes/roasted-cauliflower-recipe/">Roasted Cauliflower Recipe</a></li><li><a href="https://www.howtocook.recipes/classic-boiled-corn-on-the-cob-recipe/">Classic Boiled Corn on the Cob Recipe</a></li><li><a href="https://www.howtocook.recipes/classic-grilled-corn-on-the-cob-recipe/">Classic Grilled Corn on the Cob Recipe</a></li><li><a href="https://www.howtocook.recipes/roasted-butternut-squash-recipe/">Roasted Butternut Squash Recipe</a></li></ul> </div>
</div>
</div>
<div class="elementor-element elementor-element-5f2644f e-con-full e-flex e-con e-child" data-id="5f2644f" data-element_type="container">
<div class="elementor-element elementor-element-491cced elementor-widget elementor-widget-heading" data-id="491cced" data-element_type="widget" data-widget_type="heading.default">
<h4 class="elementor-heading-title elementor-size-default">Potatoes</h4> </div>
<div class="elementor-element elementor-element-cd1b2db recipeslist elementor-widget elementor-widget-text-editor" data-id="cd1b2db" data-element_type="widget" data-widget_type="text-editor.default">
<ul>
<li><a href="https://www.howtocook.recipes/the-perfect-baked-potato-recipe/">The PERFECT Baked Potato Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-mashed-potatoes-recipe/">Classic Mashed Potatoes Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-scalloped-potatoes-recipe/">Classic Scalloped Potatoes Recipe</a></li>
<li><a href="https://www.howtocook.recipes/roasted-potatoes-recipe/">Roasted Potatoes Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-sweet-potato-casserole-recipe/">Homemade Sweet Potato Casserole Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-tater-tot-casserole-recipe/">Homemade Tater Tot Casserole Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-ratatouille-recipe/">Homemade Ratatouille Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-coleslaw-recipe/">Classic Coleslaw Recipe</a></li>
</ul>
</div>
</div>
<div class="elementor-element elementor-element-85364a0 e-con-full e-flex e-con e-child" data-id="85364a0" data-element_type="container">
<div class="elementor-element elementor-element-b3fcedf e-con-full e-flex e-con e-child" data-id="b3fcedf" data-element_type="container">
<div class="elementor-element elementor-element-a8670b3 elementor-widget elementor-widget-heading" data-id="a8670b3" data-element_type="widget" data-widget_type="heading.default">
<h4 class="elementor-heading-title elementor-size-default">Bread</h4> </div>
<div class="elementor-element elementor-element-66e218f recipeslist elementor-widget elementor-widget-text-editor" data-id="66e218f" data-element_type="widget" data-widget_type="text-editor.default">
<ul><li><a href="https://www.howtocook.recipes/best-classic-cornbread-recipe/">Best Classic Cornbread Recipe</a></li><li><a href="https://www.howtocook.recipes/perfect-biscuit-recipe/">Perfect Biscuit Recipe</a></li><li><a href="https://www.howtocook.recipes/classic-garlic-bread-recipe/">Classic Garlic Bread Recipe</a></li><li><a href="https://www.howtocook.recipes/homemade-naan-recipe/">Homemade Naan Recipe</a></li></ul> </div>
</div>
<div class="elementor-element elementor-element-b159d4f e-con-full e-flex e-con e-child" data-id="b159d4f" data-element_type="container">
<div class="elementor-element elementor-element-21b8f3e elementor-widget elementor-widget-heading" data-id="21b8f3e" data-element_type="widget" data-widget_type="heading.default">
<h4 class="elementor-heading-title elementor-size-default">Salad</h4> </div>
<div class="elementor-element elementor-element-4ab35fb recipeslist elementor-widget elementor-widget-text-editor" data-id="4ab35fb" data-element_type="widget" data-widget_type="text-editor.default">
<ul>
<li><a href="https://www.howtocook.recipes/perfect-potato-salad-recipe/">Perfect Potato Salad Recipe</a></li>
<li><a href="https://www.howtocook.recipes/egg-salad-recipe/">Egg Salad Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-fruit-salad-recipe/">Classic Fruit Salad Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-pasta-salad-recipe/">Classic Pasta Salad Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-taco-salad-recipe/">Classic Taco Salad Recipe</a></li>
<li><a href="https://www.howtocook.recipes/summer-cucumber-salad-recipe/">Summer Cucumber Salad Recipe</a></li>
</ul>
</div>
</div>
</div>
<div class="elementor-element elementor-element-ec7a650 e-con-full e-flex e-con e-child" data-id="ec7a650" data-element_type="container">
<div class="elementor-element elementor-element-b61e502 recipeslist elementor-widget elementor-widget-text-editor" data-id="b61e502" data-element_type="widget" data-widget_type="text-editor.default">
<ul>
<li><a href="https://www.howtocook.recipes/classic-homemade-mac-and-cheese-recipe/">Classic Homemade Mac and Cheese Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-stuffing-recipe/">Homemade Stuffing Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-red-beans-and-rice-recipe/">Homemade Red Beans and Rice Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-cranberry-sauce-recipe/">Homemade Cranberry Sauce Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-baked-beans-recipe/">Classic Baked Beans Recipe</a></li>
<li><a class="" href="https://www.howtocook.recipes/classic-fried-rice-recipe/">Classic Fried Rice Recipe</a></li>
<li><a class="" href="https://www.howtocook.recipes/traditional-mexican-rice-recipe/">Traditional Mexican Rice Recipe</a></li>
<li><a class="" href="https://www.howtocook.recipes/homemade-ratatouille-recipe//">Homemade Ratatouille Recipe</a></li>
<li><a class="" href="https://www.howtocook.recipes/classic-coleslaw-recipe/">Classic Coleslaw Recipe</a></li>
</ul> </div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="e-n-tab-content-2571469055" role="tabpanel" aria-labelledby="e-n-tab-title-2571469055" data-tab-index="5" style="--n-tabs-title-order: 5;" class=" elementor-element elementor-element-2859bba e-flex e-con-boxed e-con e-child" data-id="2859bba" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-244b553 e-con-full itemtypebox e-flex e-con e-child" data-id="244b553" data-element_type="container">
<div class="elementor-element elementor-element-e505c7a e-con-full e-flex e-con e-child" data-id="e505c7a" data-element_type="container">
<div class="elementor-element elementor-element-147eefa recipeslist elementor-widget elementor-widget-text-editor" data-id="147eefa" data-element_type="widget" data-widget_type="text-editor.default">
<ul>
<!-- Sauces -->
<li><a href="https://www.howtocook.recipes/classic-spaghetti-sauce-recipe/">Classic Spaghetti Sauce Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-alfredo-sauce-recipe/">Classic Alfredo Sauce Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-pesto-recipe/">Homemade Pesto Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-pizza-sauce-recipe/">Homemade Pizza Sauce Recipe</a></li>
<!-- Pasta & Italian dishes -->
<li><a href="https://www.howtocook.recipes/best-homemade-lasagna-recipe/">Best Homemade Lasagna Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-gnocchi-recipe/">Homemade Gnocchi Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-risotto-recipe/">Classic Risotto Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-orzo-recipe/">Homemade Orzo Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-carbonara-recipe/">Homemade Carbonara Recipe</a></li>
<!-- Chicken -->
<li><a href="https://www.howtocook.recipes/homemade-chicken-parmesan-recipe/">Homemade Chicken Parmesan Recipe</a></li>
<li><a href="https://www.howtocook.recipes/authentic-chicken-marsala-recipe/">Authentic Chicken Marsala Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-chicken-alfredo-recipe/">Classic Chicken Alfredo Recipe</a></li>
<!-- Other Italian / main dishes -->
<li><a href="https://www.howtocook.recipes/authentic-pizza-dough-recipe/">Authentic Pizza Dough Recipe</a></li>
<li><a href="https://www.howtocook.recipes/perfect-polenta-recipe/">The PERFECT Polenta Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-beef-stroganoff-recipe/">Classic Beef Stroganoff Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-stromboli-recipe/">Homemade Stromboli Recipe</a></li>
</ul>
</div>
</div>
<div class="elementor-element elementor-element-c91d3a7 e-con-full e-flex e-con e-child" data-id="c91d3a7" data-element_type="container">
<div class="elementor-element elementor-element-469fbd3 elementor-widget elementor-widget-image" data-id="469fbd3" data-element_type="widget" data-widget_type="image.default">
<img width="500" height="500" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAfQAAAH0AQAAAADjreInAAAAAnRSTlMAAHaTzTgAAAA1SURBVHja7cExAQAAAMKg9U/tYQ2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG59AAABgyKozQAAAABJRU5ErkJggg==" class="attachment-medium_large size-medium_large wp-image-7121 lazyload" alt="chicken alfredo recipe" data-src="https://www.howtocook.recipes/wp-content/uploads/2021/05/Chicken-alfredo-recipe.jpg" decoding="async" data-srcset="https://www.howtocook.recipes/wp-content/uploads/2021/05/Chicken-alfredo-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2021/05/Chicken-alfredo-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2021/05/Chicken-alfredo-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2021/05/Chicken-alfredo-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2021/05/Chicken-alfredo-recipe-450x450.jpg 450w" data-sizes="auto" data-eio-rwidth="500" data-eio-rheight="500" /><noscript><img width="500" height="500" src="https://www.howtocook.recipes/wp-content/uploads/2021/05/Chicken-alfredo-recipe.jpg" class="attachment-medium_large size-medium_large wp-image-7121" alt="chicken alfredo recipe" srcset="https://www.howtocook.recipes/wp-content/uploads/2021/05/Chicken-alfredo-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2021/05/Chicken-alfredo-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2021/05/Chicken-alfredo-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2021/05/Chicken-alfredo-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2021/05/Chicken-alfredo-recipe-450x450.jpg 450w" sizes="(max-width: 500px) 100vw, 500px" data-eio="l" /></noscript> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</li>
<li class="e-n-menu-item">
<div id="e-n-menu-title-8784" class="e-n-menu-title">
<div class="e-n-menu-title-container"> <span class="e-n-menu-title-text">
Meat </span>
</div> <button id="e-n-menu-dropdown-icon-8784" class="e-n-menu-dropdown-icon e-focus" data-tab-index="4" aria-haspopup="true" aria-expanded="false" aria-controls="e-n-menu-content-8784" >
<span class="e-n-menu-dropdown-icon-opened">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-caret-up" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M288.662 352H31.338c-17.818 0-26.741-21.543-14.142-34.142l128.662-128.662c7.81-7.81 20.474-7.81 28.284 0l128.662 128.662c12.6 12.599 3.676 34.142-14.142 34.142z"></path></svg> <span class="elementor-screen-only">Close Meat</span>
</span>
<span class="e-n-menu-dropdown-icon-closed">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-caret-down" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z"></path></svg> <span class="elementor-screen-only">Open Meat</span>
</span>
</button>
</div>
<div class="e-n-menu-content">
<div id="e-n-menu-content-8784" data-tab-index="4" aria-labelledby="e-n-menu-dropdown-icon-8784" class="elementor-element elementor-element-e6a400f e-con-full e-flex e-con e-child" data-id="e6a400f" data-element_type="container">
<div class="elementor-element elementor-element-7c6d850 e-flex e-con-boxed e-con e-child" data-id="7c6d850" data-element_type="container" data-settings="{"background_background":"classic"}">
<div class="e-con-inner">
<div class="elementor-element elementor-element-8f970b0 e-con-full regcol e-flex e-con e-child" data-id="8f970b0" data-element_type="container">
<div class="elementor-element elementor-element-d038fa4 elementor-widget elementor-widget-template" data-id="d038fa4" data-element_type="widget" data-widget_type="template.default">
<div class="elementor-widget-container">
<div class="elementor-template">
<div data-elementor-type="container" data-elementor-id="11531" class="elementor elementor-11531" data-elementor-post-type="elementor_library">
<div class="elementor-element elementor-element-6368bdb1 e-con-full e-flex e-con e-parent" data-id="6368bdb1" data-element_type="container">
<div class="elementor-element elementor-element-3ae0948d menuTabs e-n-tabs-mobile elementor-widget elementor-widget-n-tabs" data-id="3ae0948d" data-element_type="widget" data-widget_type="nested-tabs.default">
<div class="e-n-tabs" data-widget-number="987796621" aria-label="Tabs. Open items with Enter or Space, close with Escape and navigate using the Arrow keys.">
<div class="e-n-tabs-heading" role="tablist">
<button id="e-n-tab-title-9877966211" class="e-n-tab-title" aria-selected="true" data-tab-index="1" role="tab" tabindex="0" aria-controls="e-n-tab-content-9877966211" style="--n-tabs-title-order: 1;">
<span class="e-n-tab-title-text">
Chicken </span>
</button>
<button id="e-n-tab-title-9877966212" class="e-n-tab-title" aria-selected="false" data-tab-index="2" role="tab" tabindex="-1" aria-controls="e-n-tab-content-9877966212" style="--n-tabs-title-order: 2;">
<span class="e-n-tab-title-text">
Beef </span>
</button>
<button id="e-n-tab-title-9877966213" class="e-n-tab-title" aria-selected="false" data-tab-index="3" role="tab" tabindex="-1" aria-controls="e-n-tab-content-9877966213" style="--n-tabs-title-order: 3;">
<span class="e-n-tab-title-text">
Pork </span>
</button>
<button id="e-n-tab-title-9877966214" class="e-n-tab-title" aria-selected="false" data-tab-index="4" role="tab" tabindex="-1" aria-controls="e-n-tab-content-9877966214" style="--n-tabs-title-order: 4;">
<span class="e-n-tab-title-text">
Turkey </span>
</button>
<button id="e-n-tab-title-9877966215" class="e-n-tab-title" aria-selected="false" data-tab-index="5" role="tab" tabindex="-1" aria-controls="e-n-tab-content-9877966215" style="--n-tabs-title-order: 5;">
<span class="e-n-tab-title-text">
Seafood </span>
</button>
</div>
<div class="e-n-tabs-content">
<div id="e-n-tab-content-9877966211" role="tabpanel" aria-labelledby="e-n-tab-title-9877966211" data-tab-index="1" style="--n-tabs-title-order: 1;" class="e-active elementor-element elementor-element-2f9dfb1c e-con-full e-flex e-con e-child" data-id="2f9dfb1c" data-element_type="container">
<div class="elementor-element elementor-element-1685487f e-con-full itemtypebox e-flex e-con e-child" data-id="1685487f" data-element_type="container">
<div class="elementor-element elementor-element-598a2275 e-con-full e-flex e-con e-child" data-id="598a2275" data-element_type="container">
<div class="elementor-element elementor-element-115f193 recipeslist elementor-widget elementor-widget-text-editor" data-id="115f193" data-element_type="widget" data-widget_type="text-editor.default">
<ul>
<li><a href="https://www.howtocook.recipes/chicken-pot-pie-recipe/">Chicken Pot Pie Recipe</a></li>
<li><a href="https://www.howtocook.recipes/easy-chicken-salad-recipe/">Easy Chicken Salad Recipe</a></li>
<li><a href="https://www.howtocook.recipes/fried-chicken-recipe/">The Perfect Fried Chicken Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-roast-chicken-recipe/">Classic Roast Chicken Recipe</a></li>
<li><a href="https://www.howtocook.recipes/authentic-chicken-enchilada-recipe/">Authentic Chicken Enchilada Recipe</a></li>
<li><a href="https://www.howtocook.recipes/grilled-chicken-breast-recipe-with-marinade/">Grilled Chicken Breast Recipe with Marinade</a></li>
<li><a href="https://www.howtocook.recipes/authentic-orange-chicken-recipe/">Authentic Orange Chicken Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-chicken-and-dumplings-recipe/">Classic Chicken and Dumplings Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-white-chicken-chili-recipe/">Classic White Chicken Chili Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-baked-chicken-breast-recipe/">Classic Baked Chicken Breast Recipe</a></li>
<li><a href="https://www.howtocook.recipes/baked-chicken-thigh-recipe/">Baked Chicken Thigh Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-chicken-curry-recipe/">Homemade Chicken Curry Recipe</a></li>
<li><a href="https://www.howtocook.recipes/baked-chicken-wings-recipe/">Baked Chicken Wings Recipe</a></li>
<li><a href="https://www.howtocook.recipes/stir-fry-recipe/">Easy Stir Fry Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-kung-pao-chicken-recipe/">Classic Kung Pao Chicken Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-chicken-fajitas-recipe/">Classic Chicken Fajitas Recipe</a></li>
<li><a href="https://www.howtocook.recipes/chicken-and-rice-casserole-recipe/">Chicken and Rice Casserole Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-chicken-chow-mein-recipe/">Classic Chicken Chow Mein Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-pad-thai-recipe/">Homemade Pad Thai Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-lo-mein-recipe/">Classic Lo Mein Recipe</a></li>
</ul>
</div>
</div>
<div class="elementor-element elementor-element-7e57b5c6 e-con-full e-flex e-con e-child" data-id="7e57b5c6" data-element_type="container">
<div class="elementor-element elementor-element-61ad8e3f elementor-widget elementor-widget-image" data-id="61ad8e3f" data-element_type="widget" data-widget_type="image.default">
<img width="300" height="169" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAACpAQAAAAC5DD0HAAAAAnRSTlMAAHaTzTgAAAAdSURBVFjD7cExAQAAAMKg9U9tDQ+gAAAAAAAAODIZvwABaHHdTQAAAABJRU5ErkJggg==" class="attachment-medium size-medium wp-image-6551 lazyload" alt="How to cook chicken marsala" data-src="https://www.howtocook.recipes/wp-content/uploads/2021/03/How-to-cook-chicken-marsala-step-3-300x169.jpg" decoding="async" data-srcset="https://www.howtocook.recipes/wp-content/uploads/2021/03/How-to-cook-chicken-marsala-step-3-300x169.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2021/03/How-to-cook-chicken-marsala-step-3-480x270.jpg 480w, https://www.howtocook.recipes/wp-content/uploads/2021/03/How-to-cook-chicken-marsala-step-3-175x98.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2021/03/How-to-cook-chicken-marsala-step-3-450x253.jpg 450w, https://www.howtocook.recipes/wp-content/uploads/2021/03/How-to-cook-chicken-marsala-step-3.jpg 750w" data-sizes="auto" data-eio-rwidth="300" data-eio-rheight="169" /><noscript><img width="300" height="169" src="https://www.howtocook.recipes/wp-content/uploads/2021/03/How-to-cook-chicken-marsala-step-3-300x169.jpg" class="attachment-medium size-medium wp-image-6551" alt="How to cook chicken marsala" srcset="https://www.howtocook.recipes/wp-content/uploads/2021/03/How-to-cook-chicken-marsala-step-3-300x169.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2021/03/How-to-cook-chicken-marsala-step-3-480x270.jpg 480w, https://www.howtocook.recipes/wp-content/uploads/2021/03/How-to-cook-chicken-marsala-step-3-175x98.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2021/03/How-to-cook-chicken-marsala-step-3-450x253.jpg 450w, https://www.howtocook.recipes/wp-content/uploads/2021/03/How-to-cook-chicken-marsala-step-3.jpg 750w" sizes="(max-width: 300px) 100vw, 300px" data-eio="l" /></noscript> </div>
</div>
</div>
</div>
<div id="e-n-tab-content-9877966212" role="tabpanel" aria-labelledby="e-n-tab-title-9877966212" data-tab-index="2" style="--n-tabs-title-order: 2;" class=" elementor-element elementor-element-155cef0c e-con-full e-flex e-con e-child" data-id="155cef0c" data-element_type="container">
<div class="elementor-element elementor-element-1fabaf2e e-con-full itemtypebox e-flex e-con e-child" data-id="1fabaf2e" data-element_type="container">
<div class="elementor-element elementor-element-356c5c22 e-con-full e-flex e-con e-child" data-id="356c5c22" data-element_type="container">
<div class="elementor-element elementor-element-344d6dc5 recipeslist elementor-widget elementor-widget-text-editor" data-id="344d6dc5" data-element_type="widget" data-widget_type="text-editor.default">
<ul>
<li><a href="https://www.howtocook.recipes/homemade-chicken-noodle-soup-recipe/">Homemade Chicken Noodle Soup Recipe</a></li>
<li><a href="https://www.howtocook.recipes/french-onion-soup-recipe/">French Onion Soup Recipe</a></li>
<li><a href="https://www.howtocook.recipes/cozy-chicken-soup-recipe/">Cozy Chicken Soup Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-potato-soup-recipe/">Homemade Potato Soup Recipe</a></li>
<li><a href="https://www.howtocook.recipes/crockpot-potato-soup-recipe/">Crockpot Potato Soup Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-split-pea-soup-recipe/">Homemade Split Pea Soup Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-tomato-soup-recipe/">Homemade Tomato Soup Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-lentil-soup-recipe/">Homemade Lentil Soup Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-vegetable-soup-recipe/">Homemade Vegetable Soup Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-taco-soup-recipe/">Classic Taco Soup Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-pho-recipe/">Classic Pho Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-clam-chowder-recipe/">Classic Clam Chowder Recipe</a></li>
</ul>
</div>
</div>
<div class="elementor-element elementor-element-733b23ae e-con-full e-flex e-con e-child" data-id="733b23ae" data-element_type="container">
<div class="elementor-element elementor-element-67ebe0e elementor-widget elementor-widget-image" data-id="67ebe0e" data-element_type="widget" data-widget_type="image.default">
<img width="300" height="300" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAEsAQAAAABRBrPYAAAAAnRSTlMAAHaTzTgAAAAiSURBVGje7cExAQAAAMKg9U9tCj+gAAAAAAAAAAAAAAB4GS20AAH/6QlrAAAAAElFTkSuQmCC" class="attachment-medium size-medium wp-image-6641 lazyload" alt="Prime rib recipe" data-src="https://www.howtocook.recipes/wp-content/uploads/2021/03/Prime-rib-recipe-300x300.jpg" decoding="async" data-srcset="https://www.howtocook.recipes/wp-content/uploads/2021/03/Prime-rib-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2021/03/Prime-rib-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2021/03/Prime-rib-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2021/03/Prime-rib-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2021/03/Prime-rib-recipe-450x450.jpg 450w" data-sizes="auto" data-eio-rwidth="300" data-eio-rheight="300" /><noscript><img width="300" height="300" src="https://www.howtocook.recipes/wp-content/uploads/2021/03/Prime-rib-recipe-300x300.jpg" class="attachment-medium size-medium wp-image-6641" alt="Prime rib recipe" srcset="https://www.howtocook.recipes/wp-content/uploads/2021/03/Prime-rib-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2021/03/Prime-rib-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2021/03/Prime-rib-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2021/03/Prime-rib-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2021/03/Prime-rib-recipe-450x450.jpg 450w" sizes="(max-width: 300px) 100vw, 300px" data-eio="l" /></noscript> </div>
</div>
</div>
</div>
<div id="e-n-tab-content-9877966213" role="tabpanel" aria-labelledby="e-n-tab-title-9877966213" data-tab-index="3" style="--n-tabs-title-order: 3;" class=" elementor-element elementor-element-41699907 e-con-full e-flex e-con e-child" data-id="41699907" data-element_type="container">
<div class="elementor-element elementor-element-16f963f5 e-con-full itemtypebox e-flex e-con e-child" data-id="16f963f5" data-element_type="container">
<div class="elementor-element elementor-element-3bd32765 e-con-full e-flex e-con e-child" data-id="3bd32765" data-element_type="container">
<div class="elementor-element elementor-element-99169c6 recipeslist elementor-widget elementor-widget-text-editor" data-id="99169c6" data-element_type="widget" data-widget_type="text-editor.default">
<ul>
<li><a href="https://www.howtocook.recipes/perfect-pork-tenderloin-recipe/">Perfect Pork Tenderloin Recipe</a></li>
<li><a href="https://www.howtocook.recipes/perfect-pulled-pork-recipe/">Perfect Pulled Pork Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-honey-baked-ham-recipe/">Homemade Honey Baked Ham Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-pork-chop-recipe/">Classic Pork Chop Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-pork-roast-recipe/">Classic Pork Roast Recipe</a></li>
<li><a href="https://www.howtocook.recipes/authentic-carnitas-recipe/">Authentic Carnitas Recipe</a></li>
</ul>
</div>
</div>
<div class="elementor-element elementor-element-70d9555 e-con-full e-flex e-con e-child" data-id="70d9555" data-element_type="container">
<div class="elementor-element elementor-element-62442754 elementor-widget elementor-widget-image" data-id="62442754" data-element_type="widget" data-widget_type="image.default">
<img width="640" height="427" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAoAAAAGrAQAAAAB4NRvmAAAAAnRSTlMAAHaTzTgAAAA4SURBVHja7cExAQAAAMKg9U/tbQegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AyHGwABJ2xdRQAAAABJRU5ErkJggg==" class="attachment-medium_large size-medium_large wp-image-9221 lazyload" alt="How to cook Pork Tenderloin" data-src="https://www.howtocook.recipes/wp-content/uploads/2024/08/how-to-cook-pork-tenderloin.jpg" decoding="async" data-srcset="https://www.howtocook.recipes/wp-content/uploads/2024/08/how-to-cook-pork-tenderloin.jpg 640w, https://www.howtocook.recipes/wp-content/uploads/2024/08/how-to-cook-pork-tenderloin-300x200.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2024/08/how-to-cook-pork-tenderloin-175x117.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2024/08/how-to-cook-pork-tenderloin-450x300.jpg 450w, https://www.howtocook.recipes/wp-content/uploads/2024/08/how-to-cook-pork-tenderloin-263x175.jpg 263w" data-sizes="auto" data-eio-rwidth="640" data-eio-rheight="427" /><noscript><img width="640" height="427" src="https://www.howtocook.recipes/wp-content/uploads/2024/08/how-to-cook-pork-tenderloin.jpg" class="attachment-medium_large size-medium_large wp-image-9221" alt="How to cook Pork Tenderloin" srcset="https://www.howtocook.recipes/wp-content/uploads/2024/08/how-to-cook-pork-tenderloin.jpg 640w, https://www.howtocook.recipes/wp-content/uploads/2024/08/how-to-cook-pork-tenderloin-300x200.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2024/08/how-to-cook-pork-tenderloin-175x117.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2024/08/how-to-cook-pork-tenderloin-450x300.jpg 450w, https://www.howtocook.recipes/wp-content/uploads/2024/08/how-to-cook-pork-tenderloin-263x175.jpg 263w" sizes="(max-width: 640px) 100vw, 640px" data-eio="l" /></noscript> </div>
</div>
</div>
</div>
<div id="e-n-tab-content-9877966214" role="tabpanel" aria-labelledby="e-n-tab-title-9877966214" data-tab-index="4" style="--n-tabs-title-order: 4;" class=" elementor-element elementor-element-677b0a3d e-con-full e-flex e-con e-child" data-id="677b0a3d" data-element_type="container">
<div class="elementor-element elementor-element-1969bdd0 e-con-full itemtypebox e-flex e-con e-child" data-id="1969bdd0" data-element_type="container">
<div class="elementor-element elementor-element-24ab4b3f e-con-full e-flex e-con e-child" data-id="24ab4b3f" data-element_type="container">
<div class="elementor-element elementor-element-73fa62ee recipeslist elementor-widget elementor-widget-text-editor" data-id="73fa62ee" data-element_type="widget" data-widget_type="text-editor.default">
<ul>
<li><a href="https://www.howtocook.recipes/classic-turkey-burger-recipe/">Classic Turkey Burger Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-ground-turkey-recipe/">Homemade Ground Turkey Recipe</a></li>
<li><a href="https://www.howtocook.recipes/easy-traditional-turkey-recipe/">Easy Traditional Turkey Recipe</a></li>
</ul>
</div>
</div>
<div class="elementor-element elementor-element-16f87a e-con-full e-flex e-con e-child" data-id="16f87a" data-element_type="container">
<div class="elementor-element elementor-element-5ce94ca1 elementor-widget elementor-widget-image" data-id="5ce94ca1" data-element_type="widget" data-widget_type="image.default">
<img width="750" height="422" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAu4AAAGmAQAAAAALhTz7AAAAAnRSTlMAAHaTzTgAAAA+SURBVHja7cExAQAAAMKg9U9tCj+gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAvwGcmgABBZ8R+wAAAABJRU5ErkJggg==" class="attachment-medium_large size-medium_large wp-image-5981 lazyload" alt="How do I keep my turkey moist" data-src="https://www.howtocook.recipes/wp-content/uploads/2020/12/How-do-I-keep-my-turkey-moist-step-4.jpg" decoding="async" data-srcset="https://www.howtocook.recipes/wp-content/uploads/2020/12/How-do-I-keep-my-turkey-moist-step-4.jpg 750w, https://www.howtocook.recipes/wp-content/uploads/2020/12/How-do-I-keep-my-turkey-moist-step-4-300x169.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2020/12/How-do-I-keep-my-turkey-moist-step-4-480x270.jpg 480w, https://www.howtocook.recipes/wp-content/uploads/2020/12/How-do-I-keep-my-turkey-moist-step-4-175x98.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2020/12/How-do-I-keep-my-turkey-moist-step-4-450x253.jpg 450w" data-sizes="auto" data-eio-rwidth="750" data-eio-rheight="422" /><noscript><img width="750" height="422" src="https://www.howtocook.recipes/wp-content/uploads/2020/12/How-do-I-keep-my-turkey-moist-step-4.jpg" class="attachment-medium_large size-medium_large wp-image-5981" alt="How do I keep my turkey moist" srcset="https://www.howtocook.recipes/wp-content/uploads/2020/12/How-do-I-keep-my-turkey-moist-step-4.jpg 750w, https://www.howtocook.recipes/wp-content/uploads/2020/12/How-do-I-keep-my-turkey-moist-step-4-300x169.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2020/12/How-do-I-keep-my-turkey-moist-step-4-480x270.jpg 480w, https://www.howtocook.recipes/wp-content/uploads/2020/12/How-do-I-keep-my-turkey-moist-step-4-175x98.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2020/12/How-do-I-keep-my-turkey-moist-step-4-450x253.jpg 450w" sizes="(max-width: 750px) 100vw, 750px" data-eio="l" /></noscript> </div>
</div>
</div>
</div>
<div id="e-n-tab-content-9877966215" role="tabpanel" aria-labelledby="e-n-tab-title-9877966215" data-tab-index="5" style="--n-tabs-title-order: 5;" class=" elementor-element elementor-element-67987927 e-con-full e-flex e-con e-child" data-id="67987927" data-element_type="container">
<div class="elementor-element elementor-element-d3db5eb e-con-full itemtypebox e-flex e-con e-child" data-id="d3db5eb" data-element_type="container">
<div class="elementor-element elementor-element-3a7f143 e-con-full e-flex e-con e-child" data-id="3a7f143" data-element_type="container">
<div class="elementor-element elementor-element-68da510 recipeslist elementor-widget elementor-widget-text-editor" data-id="68da510" data-element_type="widget" data-widget_type="text-editor.default">
<ul>
<li><a href="https://www.howtocook.recipes/classic-new-orleans-gumbo-recipe/">Classic New Orleans Gumbo Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-maryland-crab-cake-recipe/">Classic Maryland Crab Cake Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-baked-salmon-recipe/">Classic Baked Salmon Recipe</a></li>
<li><a href="https://www.howtocook.recipes/perfect-shrimp-scampi-recipe/">Perfect Shrimp Scampi Recipe</a></li>
<li><a href="https://www.howtocook.recipes/tuna-noodle-casserole-recipe/">Tuna Noodle Casserole Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-tuna-salad-recipe/">Classic Tuna Salad Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-tilapia-recipe/">Homemade Tilapia Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-seared-scallops-recipe/">Classic Seared Scallops Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-mahi-mahi-recipe/">Homemade Mahi Mahi Recipe</a></li>
<li><a href="https://www.howtocook.recipes/authentic-paella-recipe/">Authentic Paella Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-ceviche-recipe/">Homemade Ceviche Recipe</a></li>
<li><a href="https://www.howtocook.recipes/shrimp-taco-recipe/">Shrimp Taco Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-jambalaya-recipe/">Classic Jambalaya Recipe</a></li>
<li><a href="https://www.howtocook.recipes/easy-fish-taco-recipe/">Easy Fish Taco Recipe</a></li>
</ul>
</div>
</div>
<div class="elementor-element elementor-element-f76f7d4 e-con-full e-flex e-con e-child" data-id="f76f7d4" data-element_type="container">
<div class="elementor-element elementor-element-6d1599e elementor-widget elementor-widget-image" data-id="6d1599e" data-element_type="widget" data-widget_type="image.default">
<img width="500" height="500" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAfQAAAH0AQAAAADjreInAAAAAnRSTlMAAHaTzTgAAAA1SURBVHja7cExAQAAAMKg9U/tYQ2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG59AAABgyKozQAAAABJRU5ErkJggg==" class="attachment-medium_large size-medium_large wp-image-5776 lazyload" alt="Baked salmon recipe" data-src="https://www.howtocook.recipes/wp-content/uploads/2020/11/Baked-salmon-recipe.jpg" decoding="async" data-srcset="https://www.howtocook.recipes/wp-content/uploads/2020/11/Baked-salmon-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2020/11/Baked-salmon-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2020/11/Baked-salmon-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2020/11/Baked-salmon-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2020/11/Baked-salmon-recipe-450x450.jpg 450w" data-sizes="auto" data-eio-rwidth="500" data-eio-rheight="500" /><noscript><img width="500" height="500" src="https://www.howtocook.recipes/wp-content/uploads/2020/11/Baked-salmon-recipe.jpg" class="attachment-medium_large size-medium_large wp-image-5776" alt="Baked salmon recipe" srcset="https://www.howtocook.recipes/wp-content/uploads/2020/11/Baked-salmon-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2020/11/Baked-salmon-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2020/11/Baked-salmon-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2020/11/Baked-salmon-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2020/11/Baked-salmon-recipe-450x450.jpg 450w" sizes="(max-width: 500px) 100vw, 500px" data-eio="l" /></noscript> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</li>
<li class="e-n-menu-item">
<div id="e-n-menu-title-8785" class="e-n-menu-title">
<div class="e-n-menu-title-container"> <span class="e-n-menu-title-text">
Featured </span>
</div> <button id="e-n-menu-dropdown-icon-8785" class="e-n-menu-dropdown-icon e-focus" data-tab-index="5" aria-haspopup="true" aria-expanded="false" aria-controls="e-n-menu-content-8785" >
<span class="e-n-menu-dropdown-icon-opened">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-caret-up" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M288.662 352H31.338c-17.818 0-26.741-21.543-14.142-34.142l128.662-128.662c7.81-7.81 20.474-7.81 28.284 0l128.662 128.662c12.6 12.599 3.676 34.142-14.142 34.142z"></path></svg> <span class="elementor-screen-only">Close Featured</span>
</span>
<span class="e-n-menu-dropdown-icon-closed">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-caret-down" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z"></path></svg> <span class="elementor-screen-only">Open Featured</span>
</span>
</button>
</div>
<div class="e-n-menu-content">
<div id="e-n-menu-content-8785" data-tab-index="5" aria-labelledby="e-n-menu-dropdown-icon-8785" class="elementor-element elementor-element-144330d e-con-full e-flex e-con e-child" data-id="144330d" data-element_type="container">
<div class="elementor-element elementor-element-3882623 e-flex e-con-boxed e-con e-child" data-id="3882623" data-element_type="container" data-settings="{"background_background":"classic"}">
<div class="e-con-inner">
<div class="elementor-element elementor-element-e5b6c99 e-con-full regcol e-flex e-con e-child" data-id="e5b6c99" data-element_type="container">
<div class="elementor-element elementor-element-29220b5 elementor-grid-5 elementor-posts--align-left elementor-grid-tablet-2 elementor-grid-mobile-1 elementor-posts--thumbnail-top elementor-widget elementor-widget-posts" data-id="29220b5" data-element_type="widget" data-settings="{"classic_columns":"5","classic_row_gap":{"unit":"rem","size":1.5,"sizes":[]},"classic_row_gap_tablet":{"unit":"rem","size":"","sizes":[]},"classic_row_gap_mobile":{"unit":"rem","size":"","sizes":[]},"classic_columns_tablet":"2","classic_columns_mobile":"1"}" data-widget_type="posts.classic">
<div class="elementor-widget-container">
<div class="elementor-posts-container elementor-posts elementor-posts--skin-classic elementor-grid" role="list">
<article class="elementor-post elementor-grid-item post-8554 post type-post status-publish format-standard has-post-thumbnail hentry category-chili-recipes tag-featured tag-popular" role="listitem">
<a class="elementor-post__thumbnail__link" href="https://www.howtocook.recipes/homemade-chile-relleno-recipe/" tabindex="-1" >
<div class="elementor-post__thumbnail"><img width="300" height="300" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAEsAQAAAABRBrPYAAAAAnRSTlMAAHaTzTgAAAAiSURBVGje7cExAQAAAMKg9U9tCj+gAAAAAAAAAAAAAAB4GS20AAH/6QlrAAAAAElFTkSuQmCC" class="attachment-medium size-medium wp-image-8538 lazyload" alt="chile relleno recipe" data-src="https://www.howtocook.recipes/wp-content/uploads/2022/04/Chile-relleno-recipe-300x300.jpg" decoding="async" data-eio-rwidth="300" data-eio-rheight="300" /><noscript><img width="300" height="300" src="https://www.howtocook.recipes/wp-content/uploads/2022/04/Chile-relleno-recipe-300x300.jpg" class="attachment-medium size-medium wp-image-8538" alt="chile relleno recipe" data-eio="l" /></noscript></div>
</a>
<div class="elementor-post__text">
<div class="elementor-post__title">
<a href="https://www.howtocook.recipes/homemade-chile-relleno-recipe/" >
Homemade Chile Relleno Recipe </a>
</div>
</div>
</article>
<article class="elementor-post elementor-grid-item post-9492 post type-post status-publish format-standard has-post-thumbnail hentry category-chili-recipes tag-featured tag-popular" role="listitem">
<a class="elementor-post__thumbnail__link" href="https://www.howtocook.recipes/classic-white-chicken-chili-recipe-2/" tabindex="-1" >
<div class="elementor-post__thumbnail"><img width="300" height="300" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAEsAQAAAABRBrPYAAAAAnRSTlMAAHaTzTgAAAAiSURBVGje7cExAQAAAMKg9U9tCj+gAAAAAAAAAAAAAAB4GS20AAH/6QlrAAAAAElFTkSuQmCC" class="attachment-medium size-medium wp-image-9563 lazyload" alt="White chicken chili recipe" data-src="https://www.howtocook.recipes/wp-content/uploads/2022/04/White-chicken-chili-recipe-300x300.jpg" decoding="async" data-eio-rwidth="300" data-eio-rheight="300" /><noscript><img width="300" height="300" src="https://www.howtocook.recipes/wp-content/uploads/2022/04/White-chicken-chili-recipe-300x300.jpg" class="attachment-medium size-medium wp-image-9563" alt="White chicken chili recipe" data-eio="l" /></noscript></div>
</a>
<div class="elementor-post__text">
<div class="elementor-post__title">
<a href="https://www.howtocook.recipes/classic-white-chicken-chili-recipe-2/" >
Classic White Chicken Chili Recipe </a>
</div>
</div>
</article>
<article class="elementor-post elementor-grid-item post-9493 post type-post status-publish format-standard has-post-thumbnail hentry category-chili-recipes tag-featured tag-popular" role="listitem">
<a class="elementor-post__thumbnail__link" href="https://www.howtocook.recipes/classic-turkey-chili-recipe/" tabindex="-1" >
<div class="elementor-post__thumbnail"><img width="300" height="300" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAEsAQAAAABRBrPYAAAAAnRSTlMAAHaTzTgAAAAiSURBVGje7cExAQAAAMKg9U9tCj+gAAAAAAAAAAAAAAB4GS20AAH/6QlrAAAAAElFTkSuQmCC" class="attachment-medium size-medium wp-image-9564 lazyload" alt="turkey chili recipe" data-src="https://www.howtocook.recipes/wp-content/uploads/2022/04/Turkey-chili-recipe-300x300.jpg" decoding="async" data-eio-rwidth="300" data-eio-rheight="300" /><noscript><img width="300" height="300" src="https://www.howtocook.recipes/wp-content/uploads/2022/04/Turkey-chili-recipe-300x300.jpg" class="attachment-medium size-medium wp-image-9564" alt="turkey chili recipe" data-eio="l" /></noscript></div>
</a>
<div class="elementor-post__text">
<div class="elementor-post__title">
<a href="https://www.howtocook.recipes/classic-turkey-chili-recipe/" >
Classic Turkey Chili Recipe </a>
</div>
</div>
</article>
<article class="elementor-post elementor-grid-item post-9494 post type-post status-publish format-standard has-post-thumbnail hentry category-chili-recipes category-meatless-chili tag-featured tag-popular" role="listitem">
<a class="elementor-post__thumbnail__link" href="https://www.howtocook.recipes/homemade-vegetarian-chili-recipe/" tabindex="-1" >
<div class="elementor-post__thumbnail"><img width="300" height="300" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAEsAQAAAABRBrPYAAAAAnRSTlMAAHaTzTgAAAAiSURBVGje7cExAQAAAMKg9U9tCj+gAAAAAAAAAAAAAAB4GS20AAH/6QlrAAAAAElFTkSuQmCC" class="attachment-medium size-medium wp-image-9566 lazyload" alt="Vegetarian chili recipe" data-src="https://www.howtocook.recipes/wp-content/uploads/2022/04/Vegetarian-chili-recipe-300x300.jpg" decoding="async" data-eio-rwidth="300" data-eio-rheight="300" /><noscript><img width="300" height="300" src="https://www.howtocook.recipes/wp-content/uploads/2022/04/Vegetarian-chili-recipe-300x300.jpg" class="attachment-medium size-medium wp-image-9566" alt="Vegetarian chili recipe" data-eio="l" /></noscript></div>
</a>
<div class="elementor-post__text">
<div class="elementor-post__title">
<a href="https://www.howtocook.recipes/homemade-vegetarian-chili-recipe/" >
Homemade Vegetarian Chili Recipe </a>
</div>
</div>
</article>
<article class="elementor-post elementor-grid-item post-9490 post type-post status-publish format-standard has-post-thumbnail hentry category-chili-recipes tag-featured tag-popular" role="listitem">
<a class="elementor-post__thumbnail__link" href="https://www.howtocook.recipes/classic-chili-recipe/" tabindex="-1" >
<div class="elementor-post__thumbnail"><img width="300" height="300" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAEsAQAAAABRBrPYAAAAAnRSTlMAAHaTzTgAAAAiSURBVGje7cExAQAAAMKg9U9tCj+gAAAAAAAAAAAAAAB4GS20AAH/6QlrAAAAAElFTkSuQmCC" class="attachment-medium size-medium wp-image-9560 lazyload" alt="Chili recipe" data-src="https://www.howtocook.recipes/wp-content/uploads/2022/04/Chili-recipe-300x300.jpg" decoding="async" data-eio-rwidth="300" data-eio-rheight="300" /><noscript><img width="300" height="300" src="https://www.howtocook.recipes/wp-content/uploads/2022/04/Chili-recipe-300x300.jpg" class="attachment-medium size-medium wp-image-9560" alt="Chili recipe" data-eio="l" /></noscript></div>
</a>
<div class="elementor-post__text">
<div class="elementor-post__title">
<a href="https://www.howtocook.recipes/classic-chili-recipe/" >
Classic Chili Recipe </a>
</div>
</div>
</article>
<article class="elementor-post elementor-grid-item post-9033 post type-post status-publish format-standard has-post-thumbnail hentry category-meatloaf-recipes tag-featured tag-turkey-meatloaf" role="listitem">
<a class="elementor-post__thumbnail__link" href="https://www.howtocook.recipes/classic-turkey-meatloaf-recipe/" tabindex="-1" >
<div class="elementor-post__thumbnail"><img width="300" height="300" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAEsAQAAAABRBrPYAAAAAnRSTlMAAHaTzTgAAAAiSURBVGje7cExAQAAAMKg9U9tCj+gAAAAAAAAAAAAAAB4GS20AAH/6QlrAAAAAElFTkSuQmCC" class="attachment-medium size-medium wp-image-9015 lazyload" alt="Turkey meatloaf recipe" data-src="https://www.howtocook.recipes/wp-content/uploads/2022/06/Turkey-meatloaf-recipe-300x300.jpg" decoding="async" data-eio-rwidth="300" data-eio-rheight="300" /><noscript><img width="300" height="300" src="https://www.howtocook.recipes/wp-content/uploads/2022/06/Turkey-meatloaf-recipe-300x300.jpg" class="attachment-medium size-medium wp-image-9015" alt="Turkey meatloaf recipe" data-eio="l" /></noscript></div>
</a>
<div class="elementor-post__text">
<div class="elementor-post__title">
<a href="https://www.howtocook.recipes/classic-turkey-meatloaf-recipe/" >
Classic Turkey Meatloaf Recipe </a>
</div>
</div>
</article>
<article class="elementor-post elementor-grid-item post-9047 post type-post status-publish format-standard has-post-thumbnail hentry category-meatloaf-recipes tag-featured" role="listitem">
<a class="elementor-post__thumbnail__link" href="https://www.howtocook.recipes/matts-classic-meatloaf-recipe/" tabindex="-1" >
<div class="elementor-post__thumbnail"><img width="300" height="300" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAEsAQAAAABRBrPYAAAAAnRSTlMAAHaTzTgAAAAiSURBVGje7cExAQAAAMKg9U9tCj+gAAAAAAAAAAAAAAB4GS20AAH/6QlrAAAAAElFTkSuQmCC" class="attachment-medium size-medium wp-image-9035 lazyload" alt="Meatloaf recipe" data-src="https://www.howtocook.recipes/wp-content/uploads/2022/07/Meatloaf-recipe-300x300.jpg" decoding="async" data-eio-rwidth="300" data-eio-rheight="300" /><noscript><img width="300" height="300" src="https://www.howtocook.recipes/wp-content/uploads/2022/07/Meatloaf-recipe-300x300.jpg" class="attachment-medium size-medium wp-image-9035" alt="Meatloaf recipe" data-eio="l" /></noscript></div>
</a>
<div class="elementor-post__text">
<div class="elementor-post__title">
<a href="https://www.howtocook.recipes/matts-classic-meatloaf-recipe/" >
Matt’s Classic Meatloaf Recipe </a>
</div>
</div>
</article>
<article class="elementor-post elementor-grid-item post-9048 post type-post status-publish format-standard has-post-thumbnail hentry category-meatloaf-recipes tag-featured" role="listitem">
<a class="elementor-post__thumbnail__link" href="https://www.howtocook.recipes/meatloaf-recipe-with-oatmeal/" tabindex="-1" >
<div class="elementor-post__thumbnail"><img width="300" height="300" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAEsAQAAAABRBrPYAAAAAnRSTlMAAHaTzTgAAAAiSURBVGje7cExAQAAAMKg9U9tCj+gAAAAAAAAAAAAAAB4GS20AAH/6QlrAAAAAElFTkSuQmCC" class="attachment-medium size-medium wp-image-9049 lazyload" alt="Meatloaf recipe with oatmeal" data-src="https://www.howtocook.recipes/wp-content/uploads/2022/07/Meatloaf-recipe-with-oatmeal-300x300.jpg" decoding="async" data-eio-rwidth="300" data-eio-rheight="300" /><noscript><img width="300" height="300" src="https://www.howtocook.recipes/wp-content/uploads/2022/07/Meatloaf-recipe-with-oatmeal-300x300.jpg" class="attachment-medium size-medium wp-image-9049" alt="Meatloaf recipe with oatmeal" data-eio="l" /></noscript></div>
</a>
<div class="elementor-post__text">
<div class="elementor-post__title">
<a href="https://www.howtocook.recipes/meatloaf-recipe-with-oatmeal/" >
Meatloaf Recipe with Oatmeal </a>
</div>
</div>
</article>
<article class="elementor-post elementor-grid-item post-9077 post type-post status-publish format-standard has-post-thumbnail hentry category-meatloaf-recipes tag-featured" role="listitem">
<a class="elementor-post__thumbnail__link" href="https://www.howtocook.recipes/meatloaf-recipe-and-gravy/" tabindex="-1" >
<div class="elementor-post__thumbnail"><img width="300" height="300" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAEsAQAAAABRBrPYAAAAAnRSTlMAAHaTzTgAAAAiSURBVGje7cExAQAAAMKg9U9tCj+gAAAAAAAAAAAAAAB4GS20AAH/6QlrAAAAAElFTkSuQmCC" class="attachment-medium size-medium wp-image-9060 lazyload" alt="Meatloaf recipe and gravy" data-src="https://www.howtocook.recipes/wp-content/uploads/2022/07/Meatloaf-recipe-and-gravy-300x300.jpg" decoding="async" data-eio-rwidth="300" data-eio-rheight="300" /><noscript><img width="300" height="300" src="https://www.howtocook.recipes/wp-content/uploads/2022/07/Meatloaf-recipe-and-gravy-300x300.jpg" class="attachment-medium size-medium wp-image-9060" alt="Meatloaf recipe and gravy" data-eio="l" /></noscript></div>
</a>
<div class="elementor-post__text">
<div class="elementor-post__title">
<a href="https://www.howtocook.recipes/meatloaf-recipe-and-gravy/" >
Meatloaf Recipe and Gravy </a>
</div>
</div>
</article>
<article class="elementor-post elementor-grid-item post-5710 post type-post status-publish format-standard has-post-thumbnail hentry category-main-dishes tag-featured tag-main-dish tag-seafood" role="listitem">
<a class="elementor-post__thumbnail__link" href="https://www.howtocook.recipes/classic-new-orleans-gumbo-recipe/" tabindex="-1" >
<div class="elementor-post__thumbnail"><img width="300" height="300" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAEsAQAAAABRBrPYAAAAAnRSTlMAAHaTzTgAAAAiSURBVGje7cExAQAAAMKg9U9tCj+gAAAAAAAAAAAAAAB4GS20AAH/6QlrAAAAAElFTkSuQmCC" class="attachment-medium size-medium wp-image-5695 lazyload" alt="Gumbo recipe" data-src="https://www.howtocook.recipes/wp-content/uploads/2020/11/gumbo-recipe-300x300.jpg" decoding="async" data-eio-rwidth="300" data-eio-rheight="300" /><noscript><img width="300" height="300" src="https://www.howtocook.recipes/wp-content/uploads/2020/11/gumbo-recipe-300x300.jpg" class="attachment-medium size-medium wp-image-5695" alt="Gumbo recipe" data-eio="l" /></noscript></div>
</a>
<div class="elementor-post__text">
<div class="elementor-post__title">
<a href="https://www.howtocook.recipes/classic-new-orleans-gumbo-recipe/" >
Classic New Orleans Gumbo Recipe </a>
</div>
</div>
</article>
<article class="elementor-post elementor-grid-item post-4897 post type-post status-publish format-standard has-post-thumbnail hentry category-main-dishes tag-comfort-food tag-featured tag-ground-beef tag-main-dish" role="listitem">
<a class="elementor-post__thumbnail__link" href="https://www.howtocook.recipes/the-best-traditional-chili-recipe/" tabindex="-1" >
<div class="elementor-post__thumbnail"><img width="300" height="300" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAEsAQAAAABRBrPYAAAAAnRSTlMAAHaTzTgAAAAiSURBVGje7cExAQAAAMKg9U9tCj+gAAAAAAAAAAAAAAB4GS20AAH/6QlrAAAAAElFTkSuQmCC" class="attachment-medium size-medium wp-image-5192 lazyload" alt="Chili recipe" data-src="https://www.howtocook.recipes/wp-content/uploads/2020/09/Chili-recipe-300x300.jpg" decoding="async" data-eio-rwidth="300" data-eio-rheight="300" /><noscript><img width="300" height="300" src="https://www.howtocook.recipes/wp-content/uploads/2020/09/Chili-recipe-300x300.jpg" class="attachment-medium size-medium wp-image-5192" alt="Chili recipe" data-eio="l" /></noscript></div>
</a>
<div class="elementor-post__text">
<div class="elementor-post__title">
<a href="https://www.howtocook.recipes/the-best-traditional-chili-recipe/" >
The Best Traditional Chili Recipe </a>
</div>
</div>
</article>
<article class="elementor-post elementor-grid-item post-4941 post type-post status-publish format-standard has-post-thumbnail hentry category-main-dishes tag-featured tag-italian tag-main-dish tag-pasta" role="listitem">
<a class="elementor-post__thumbnail__link" href="https://www.howtocook.recipes/best-homemade-lasagna-recipe/" tabindex="-1" >
<div class="elementor-post__thumbnail"><img width="300" height="300" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAEsAQAAAABRBrPYAAAAAnRSTlMAAHaTzTgAAAAiSURBVGje7cExAQAAAMKg9U9tCj+gAAAAAAAAAAAAAAB4GS20AAH/6QlrAAAAAElFTkSuQmCC" class="attachment-medium size-medium wp-image-5172 lazyload" alt="Lasagna recipe" data-src="https://www.howtocook.recipes/wp-content/uploads/2020/09/Lasagna-recipe-300x300.jpg" decoding="async" data-eio-rwidth="300" data-eio-rheight="300" /><noscript><img width="300" height="300" src="https://www.howtocook.recipes/wp-content/uploads/2020/09/Lasagna-recipe-300x300.jpg" class="attachment-medium size-medium wp-image-5172" alt="Lasagna recipe" data-eio="l" /></noscript></div>
</a>
<div class="elementor-post__text">
<div class="elementor-post__title">
<a href="https://www.howtocook.recipes/best-homemade-lasagna-recipe/" >
Best Homemade Lasagna Recipe </a>
</div>
</div>
</article>
<article class="elementor-post elementor-grid-item post-4885 post type-post status-publish format-standard has-post-thumbnail hentry category-breakfast tag-bread tag-breakfast tag-featured" role="listitem">
<a class="elementor-post__thumbnail__link" href="https://www.howtocook.recipes/easy-banana-bread-recipe/" tabindex="-1" >
<div class="elementor-post__thumbnail"><img width="300" height="300" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAEsAQAAAABRBrPYAAAAAnRSTlMAAHaTzTgAAAAiSURBVGje7cExAQAAAMKg9U9tCj+gAAAAAAAAAAAAAAB4GS20AAH/6QlrAAAAAElFTkSuQmCC" class="attachment-medium size-medium wp-image-8217 lazyload" alt="Banana bread recipe" data-src="https://www.howtocook.recipes/wp-content/uploads/2021/11/Banana-bread-recipe-300x300.jpg" decoding="async" data-eio-rwidth="300" data-eio-rheight="300" /><noscript><img width="300" height="300" src="https://www.howtocook.recipes/wp-content/uploads/2021/11/Banana-bread-recipe-300x300.jpg" class="attachment-medium size-medium wp-image-8217" alt="Banana bread recipe" data-eio="l" /></noscript></div>
</a>
<div class="elementor-post__text">
<div class="elementor-post__title">
<a href="https://www.howtocook.recipes/easy-banana-bread-recipe/" >
Easy Banana Bread Recipe </a>
</div>
</div>
</article>
<article class="elementor-post elementor-grid-item post-4829 post type-post status-publish format-standard has-post-thumbnail hentry category-main-dishes category-meatloaf-recipes tag-comfort-food tag-featured tag-ground-beef tag-main-dish" role="listitem">
<a class="elementor-post__thumbnail__link" href="https://www.howtocook.recipes/best-classic-meatloaf-recipe/" tabindex="-1" >
<div class="elementor-post__thumbnail"><img width="300" height="300" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAEsAQAAAABRBrPYAAAAAnRSTlMAAHaTzTgAAAAiSURBVGje7cExAQAAAMKg9U9tCj+gAAAAAAAAAAAAAAB4GS20AAH/6QlrAAAAAElFTkSuQmCC" class="attachment-medium size-medium wp-image-7850 lazyload" alt="Meatloaf recipe" data-src="https://www.howtocook.recipes/wp-content/uploads/2021/09/meatloaf-recipe-300x300.jpg" decoding="async" data-eio-rwidth="300" data-eio-rheight="300" /><noscript><img width="300" height="300" src="https://www.howtocook.recipes/wp-content/uploads/2021/09/meatloaf-recipe-300x300.jpg" class="attachment-medium size-medium wp-image-7850" alt="Meatloaf recipe" data-eio="l" /></noscript></div>
</a>
<div class="elementor-post__text">
<div class="elementor-post__title">
<a href="https://www.howtocook.recipes/best-classic-meatloaf-recipe/" >
The Best Classic Meatloaf Recipe </a>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</li>
<li class="e-n-menu-item">
<div id="e-n-menu-title-8786" class="e-n-menu-title e-anchor">
<a class="e-n-menu-title-container e-focus e-link" href="#" aria-current="page"> <span class="e-n-menu-title-text">
Learn </span>
</a> <button id="e-n-menu-dropdown-icon-8786" class="e-n-menu-dropdown-icon e-focus" data-tab-index="6" aria-haspopup="true" aria-expanded="false" aria-controls="e-n-menu-content-8786" >
<span class="e-n-menu-dropdown-icon-opened">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-caret-up" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M288.662 352H31.338c-17.818 0-26.741-21.543-14.142-34.142l128.662-128.662c7.81-7.81 20.474-7.81 28.284 0l128.662 128.662c12.6 12.599 3.676 34.142-14.142 34.142z"></path></svg> <span class="elementor-screen-only">Close Learn</span>
</span>
<span class="e-n-menu-dropdown-icon-closed">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-caret-down" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z"></path></svg> <span class="elementor-screen-only">Open Learn</span>
</span>
</button>
</div>
<div class="e-n-menu-content">
<div id="e-n-menu-content-8786" data-tab-index="6" aria-labelledby="e-n-menu-dropdown-icon-8786" class="elementor-element elementor-element-4034661 e-con-full e-flex e-con e-child" data-id="4034661" data-element_type="container">
<div class="elementor-element elementor-element-95ef910 e-con-full e-flex e-con e-child" data-id="95ef910" data-element_type="container">
<div class="elementor-element elementor-element-11bc2a9 e-con-full regcol e-flex e-con e-child" data-id="11bc2a9" data-element_type="container">
<div class="elementor-element elementor-element-1ef5a46 e-con-full e-flex e-con e-child" data-id="1ef5a46" data-element_type="container">
<div class="elementor-element elementor-element-fb0e848 recipeslist elementor-widget elementor-widget-text-editor" data-id="fb0e848" data-element_type="widget" data-widget_type="text-editor.default">
<ul>
<li><a href="https://www.howtocook.recipes/fried-rice/">How To Cook Fried Rice</a></li>
<li><a href="https://www.howtocook.recipes/potato-soup/">How To Cook Potato Soup</a></li>
<li><a href="https://www.howtocook.recipes/bread-pudding/">How To Cook Bread Pudding</a></li>
<li><a href="https://www.howtocook.recipes/polenta/">How To Cook Polenta</a></li>
<li><a href="https://www.howtocook.recipes/turkey/">How To Cook Turkey</a></li>
<li><a href="https://www.howtocook.recipes/asparagus/">How To Cook Asparagus</a></li>
<li><a href="https://www.howtocook.recipes/honey-baked-ham/">How To Cook Honey Baked Ham</a></li>
<li><a href="https://www.howtocook.recipes/scallops/">How To Cook Scallops</a></li>
<li><a href="https://www.howtocook.recipes/quiche/">How To Cook Quiche</a></li>
<li><a href="https://www.howtocook.recipes/brisket/">How To Cook Brisket</a></li>
</ul> </div>
</div>
<div class="elementor-element elementor-element-a8f7973 e-con-full e-flex e-con e-child" data-id="a8f7973" data-element_type="container">
<div class="elementor-element elementor-element-e478a45 recipeslist elementor-widget elementor-widget-text-editor" data-id="e478a45" data-element_type="widget" data-widget_type="text-editor.default">
<ul>
<li><a href="https://www.howtocook.recipes/french-toast/">How To Cook French Toast</a></li>
<li><a href="https://www.howtocook.recipes/meatloaf/">How To Cook Meatloaf</a></li>
<li><a href="https://www.howtocook.recipes/mahi-mahi/">How To Cook Mahi Mahi</a></li>
<li><a href="https://www.howtocook.recipes/ground-turkey/">How To Cook Ground Turkey</a></li>
<li><a href="https://www.howtocook.recipes/pork-tenderloin/">How To Cook Pork Tenderloin</a></li>
<li><a href="https://www.howtocook.recipes/chop-suey/">How To Cook Chop Suey</a></li>
<li><a href="https://www.howtocook.recipes/apple-pie/">How To Cook Apple Pie</a></li>
<li><a href="https://www.howtocook.recipes/lasagna/">How To Cook Lasagna</a></li>
<li><a href="https://www.howtocook.recipes/prime-rib/">How To Cook Prime Rib</a></li>
<li><a href="https://www.howtocook.recipes/baked-potato/">How To Cook Baked Potato</a></li>
</ul> </div>
</div>
</div>
</div>
</div>
</div>
</li>
<li class="e-n-menu-item">
<div id="e-n-menu-title-8787" class="e-n-menu-title">
<a class="e-n-menu-title-container e-focus e-link" href="https://www.howtocook.recipes/about-me/"> <span class="e-n-menu-title-text">
About </span>
</a> <button id="e-n-menu-dropdown-icon-8787" class="e-n-menu-dropdown-icon e-focus" data-tab-index="7" aria-haspopup="true" aria-expanded="false" aria-controls="e-n-menu-content-8787" >
<span class="e-n-menu-dropdown-icon-opened">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-caret-up" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M288.662 352H31.338c-17.818 0-26.741-21.543-14.142-34.142l128.662-128.662c7.81-7.81 20.474-7.81 28.284 0l128.662 128.662c12.6 12.599 3.676 34.142-14.142 34.142z"></path></svg> <span class="elementor-screen-only">Close About</span>
</span>
<span class="e-n-menu-dropdown-icon-closed">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-caret-down" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z"></path></svg> <span class="elementor-screen-only">Open About</span>
</span>
</button>
</div>
<div class="e-n-menu-content">
</div>
</li>
</ul>
</div>
</nav>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<div data-elementor-type="single-post" data-elementor-id="10066" class="elementor elementor-10066 elementor-location-single post-5904 post type-post status-publish format-standard has-post-thumbnail hentry category-desserts tag-cake tag-chocolate tag-dessert" data-elementor-post-type="elementor_library">
<div class="elementor-element elementor-element-f676452 e-flex e-con-boxed e-con e-parent" data-id="f676452" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-2855bc0 e-con-full regcol e-flex e-con e-child" data-id="2855bc0" data-element_type="container">
<div class="elementor-element elementor-element-dd3c0e0 elementor-align-left elementor-widget elementor-widget-global elementor-global-10011 elementor-widget-breadcrumbs" data-id="dd3c0e0" data-element_type="widget" data-widget_type="breadcrumbs.default">
<nav id="breadcrumbs"><span><span><a href="https://www.howtocook.recipes/">How to Cook</a></span> » <span><a href="https://www.howtocook.recipes/category/desserts/">Desserts</a></span> » <span class="breadcrumb_last" aria-current="page">Classic Chocolate Cake Recipe</span></span></nav> </div>
<div class="elementor-element elementor-element-98c972d e-con-full e-flex e-con e-child" data-id="98c972d" data-element_type="container">
<div class="elementor-element elementor-element-1b9b81d e-con-full e-flex e-con e-child" data-id="1b9b81d" data-element_type="container">
<div class="elementor-element elementor-element-6228924 elementor-widget elementor-widget-heading" data-id="6228924" data-element_type="widget" data-widget_type="heading.default">
<h1 class="elementor-heading-title elementor-size-default">Classic Chocolate Cake Recipe</h1> </div>
<div class="elementor-element elementor-element-3355f74 e-con-full e-flex e-con e-child" data-id="3355f74" data-element_type="container">
<div class="elementor-element elementor-element-b14cef9 elementor-widget elementor-widget-shortcode" data-id="b14cef9" data-element_type="widget" data-widget_type="shortcode.default">
<div class="elementor-shortcode"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAOgAAADmAQAAAAD32PSlAAAAAnRSTlMAAHaTzTgAAAAeSURBVFjD7cEBDQAAAMKg909tDjegAAAAAAAA4NsAGvQAARSXj9oAAAAASUVORK5CYII=" class="author-pic lazyload" data-src="https://www.howtocook.recipes/wp-content/uploads/2020/08/profile-photo.png" decoding="async" width="232" height="230" data-eio-rwidth="232" data-eio-rheight="230"><noscript><img src="https://www.howtocook.recipes/wp-content/uploads/2020/08/profile-photo.png" class="author-pic" data-eio="l"></noscript></div>
</div>
<div class="elementor-element elementor-element-8ae46de e-con-full e-flex e-con e-child" data-id="8ae46de" data-element_type="container">
<div class="elementor-element elementor-element-e908fa1 e-con-full e-flex e-con e-child" data-id="e908fa1" data-element_type="container">
<div class="elementor-element elementor-element-41948a9 elementor-icon-list--layout-inline elementor-align-left elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="41948a9" data-element_type="widget" data-widget_type="icon-list.default">
<ul class="elementor-icon-list-items elementor-inline-items">
<li class="elementor-icon-list-item elementor-inline-item">
<span class="elementor-icon-list-text">by <u>Megan Miller</u></span>
</li>
<li class="elementor-icon-list-item elementor-inline-item">
<span class="elementor-icon-list-text">October 6, 2025</span>
</li>
</ul>
</div>
</div>
<div class="elementor-element elementor-element-8c11ef7 e-con-full e-flex e-con e-child" data-id="8c11ef7" data-element_type="container">
<div class="elementor-element elementor-element-87aea89 elementor-widget elementor-widget-shortcode" data-id="87aea89" data-element_type="widget" data-widget_type="shortcode.default">
<div class="elementor-shortcode"><style>#wprm-recipe-user-rating-0 .wprm-rating-star.wprm-rating-star-full svg * { fill: var( --e-global-color-6eed346 ); }#wprm-recipe-user-rating-0 .wprm-rating-star.wprm-rating-star-33 svg * { fill: url(#wprm-recipe-user-rating-0-33); }#wprm-recipe-user-rating-0 .wprm-rating-star.wprm-rating-star-50 svg * { fill: url(#wprm-recipe-user-rating-0-50); }#wprm-recipe-user-rating-0 .wprm-rating-star.wprm-rating-star-66 svg * { fill: url(#wprm-recipe-user-rating-0-66); }linearGradient#wprm-recipe-user-rating-0-33 stop { stop-color: var( --e-global-color-6eed346 ); }linearGradient#wprm-recipe-user-rating-0-50 stop { stop-color: var( --e-global-color-6eed346 ); }linearGradient#wprm-recipe-user-rating-0-66 stop { stop-color: var( --e-global-color-6eed346 ); }</style><svg xmlns="http://www.w3.org/2000/svg" width="0" height="0" style="display:block;width:0px;height:0px"><defs><linearGradient id="wprm-recipe-user-rating-0-33"><stop offset="0%" stop-opacity="1" /><stop offset="33%" stop-opacity="1" /><stop offset="33%" stop-opacity="0" /><stop offset="100%" stop-opacity="0" /></linearGradient></defs><defs><linearGradient id="wprm-recipe-user-rating-0-50"><stop offset="0%" stop-opacity="1" /><stop offset="50%" stop-opacity="1" /><stop offset="50%" stop-opacity="0" /><stop offset="100%" stop-opacity="0" /></linearGradient></defs><defs><linearGradient id="wprm-recipe-user-rating-0-66"><stop offset="0%" stop-opacity="1" /><stop offset="66%" stop-opacity="1" /><stop offset="66%" stop-opacity="0" /><stop offset="100%" stop-opacity="0" /></linearGradient></defs></svg><div id="wprm-recipe-user-rating-0" class="wprm-recipe-rating wprm-recipe-rating-recipe-5969 wprm-user-rating wprm-recipe-rating-inline wprm-user-rating-not-voted wprm-user-rating-allowed" data-recipe="5969" data-average="5" data-count="1" data-total="5" data-user="0" data-decimals="2"data-modal-uid="user-rating"><span class="wprm-rating-star wprm-rating-star-1 wprm-rating-star-full" data-rating="1" data-color="var( --e-global-color-6eed346 )" role="button" tabindex="0" aria-label="Rate this recipe 1 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg width="16px" height="16px" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="var( --e-global-color-6eed346 )" stroke-width="2" stroke-linejoin="round" d="M11.99,1.94c-.35,0-.67.19-.83.51l-2.56,5.2c-.11.24-.34.4-.61.43l-5.75.83c-.35.05-.64.3-.74.64-.11.34,0,.7.22.94l4.16,4.05c.19.19.27.45.22.7l-.98,5.72c-.06.35.1.7.37.9.29.21.66.24.98.08l5.14-2.71h0c.24-.13.51-.13.75,0l5.14,2.71c.32.16.69.13.98-.08.29-.21.43-.56.37-.9l-.98-5.72h0c-.05-.26.05-.53.22-.7l4.16-4.05h0c.26-.24.34-.61.22-.94s-.4-.58-.74-.64l-5.75-.83c-.26-.03-.48-.21-.61-.43l-2.56-5.2c-.16-.32-.48-.53-.83-.51,0,0-.02,0-.02,0Z"/></svg></span><span class="wprm-rating-star wprm-rating-star-2 wprm-rating-star-full" data-rating="2" data-color="var( --e-global-color-6eed346 )" role="button" tabindex="0" aria-label="Rate this recipe 2 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg width="16px" height="16px" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="var( --e-global-color-6eed346 )" stroke-width="2" stroke-linejoin="round" d="M11.99,1.94c-.35,0-.67.19-.83.51l-2.56,5.2c-.11.24-.34.4-.61.43l-5.75.83c-.35.05-.64.3-.74.64-.11.34,0,.7.22.94l4.16,4.05c.19.19.27.45.22.7l-.98,5.72c-.06.35.1.7.37.9.29.21.66.24.98.08l5.14-2.71h0c.24-.13.51-.13.75,0l5.14,2.71c.32.16.69.13.98-.08.29-.21.43-.56.37-.9l-.98-5.72h0c-.05-.26.05-.53.22-.7l4.16-4.05h0c.26-.24.34-.61.22-.94s-.4-.58-.74-.64l-5.75-.83c-.26-.03-.48-.21-.61-.43l-2.56-5.2c-.16-.32-.48-.53-.83-.51,0,0-.02,0-.02,0Z"/></svg></span><span class="wprm-rating-star wprm-rating-star-3 wprm-rating-star-full" data-rating="3" data-color="var( --e-global-color-6eed346 )" role="button" tabindex="0" aria-label="Rate this recipe 3 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg width="16px" height="16px" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="var( --e-global-color-6eed346 )" stroke-width="2" stroke-linejoin="round" d="M11.99,1.94c-.35,0-.67.19-.83.51l-2.56,5.2c-.11.24-.34.4-.61.43l-5.75.83c-.35.05-.64.3-.74.64-.11.34,0,.7.22.94l4.16,4.05c.19.19.27.45.22.7l-.98,5.72c-.06.35.1.7.37.9.29.21.66.24.98.08l5.14-2.71h0c.24-.13.51-.13.75,0l5.14,2.71c.32.16.69.13.98-.08.29-.21.43-.56.37-.9l-.98-5.72h0c-.05-.26.05-.53.22-.7l4.16-4.05h0c.26-.24.34-.61.22-.94s-.4-.58-.74-.64l-5.75-.83c-.26-.03-.48-.21-.61-.43l-2.56-5.2c-.16-.32-.48-.53-.83-.51,0,0-.02,0-.02,0Z"/></svg></span><span class="wprm-rating-star wprm-rating-star-4 wprm-rating-star-full" data-rating="4" data-color="var( --e-global-color-6eed346 )" role="button" tabindex="0" aria-label="Rate this recipe 4 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg width="16px" height="16px" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="var( --e-global-color-6eed346 )" stroke-width="2" stroke-linejoin="round" d="M11.99,1.94c-.35,0-.67.19-.83.51l-2.56,5.2c-.11.24-.34.4-.61.43l-5.75.83c-.35.05-.64.3-.74.64-.11.34,0,.7.22.94l4.16,4.05c.19.19.27.45.22.7l-.98,5.72c-.06.35.1.7.37.9.29.21.66.24.98.08l5.14-2.71h0c.24-.13.51-.13.75,0l5.14,2.71c.32.16.69.13.98-.08.29-.21.43-.56.37-.9l-.98-5.72h0c-.05-.26.05-.53.22-.7l4.16-4.05h0c.26-.24.34-.61.22-.94s-.4-.58-.74-.64l-5.75-.83c-.26-.03-.48-.21-.61-.43l-2.56-5.2c-.16-.32-.48-.53-.83-.51,0,0-.02,0-.02,0Z"/></svg></span><span class="wprm-rating-star wprm-rating-star-5 wprm-rating-star-full" data-rating="5" data-color="var( --e-global-color-6eed346 )" role="button" tabindex="0" aria-label="Rate this recipe 5 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg width="16px" height="16px" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="var( --e-global-color-6eed346 )" stroke-width="2" stroke-linejoin="round" d="M11.99,1.94c-.35,0-.67.19-.83.51l-2.56,5.2c-.11.24-.34.4-.61.43l-5.75.83c-.35.05-.64.3-.74.64-.11.34,0,.7.22.94l4.16,4.05c.19.19.27.45.22.7l-.98,5.72c-.06.35.1.7.37.9.29.21.66.24.98.08l5.14-2.71h0c.24-.13.51-.13.75,0l5.14,2.71c.32.16.69.13.98-.08.29-.21.43-.56.37-.9l-.98-5.72h0c-.05-.26.05-.53.22-.7l4.16-4.05h0c.26-.24.34-.61.22-.94s-.4-.58-.74-.64l-5.75-.83c-.26-.03-.48-.21-.61-.43l-2.56-5.2c-.16-.32-.48-.53-.83-.51,0,0-.02,0-.02,0Z"/></svg></span><div class="wprm-recipe-rating-details wprm-block-text-normal"><span class="wprm-recipe-rating-average">5</span> from 1 vote</div></div></div>
</div>
<div class="elementor-element elementor-element-033429f elementor-widget elementor-widget-heading" data-id="033429f" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-heading-title elementor-size-default"><a href="#comments">No comments</a></div> </div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-1caba77 e-con-full e-flex e-con e-child" data-id="1caba77" data-element_type="container">
<div class="elementor-element elementor-element-bb64468 elementor-align-right elementor-widget elementor-widget-button" data-id="bb64468" data-element_type="widget" data-widget_type="button.default">
<a class="elementor-button elementor-button-link elementor-size-sm" href="#recipe">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-icon">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-chevron-down" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z"></path></svg> </span>
<span class="elementor-button-text">Jump to Recipe</span>
</span>
</a>
</div>
<div class="elementor-element elementor-element-0b1c1fa elementor-widget elementor-widget-shortcode" data-id="0b1c1fa" data-element_type="widget" data-widget_type="shortcode.default">
<div class="elementor-shortcode"><a href="https://www.howtocook.recipes/my-favorites/" style="color: #333333;background-color: #734060;border-color: #734060;border-radius: 100px;padding: 8px 8px;" class="wprm-recipe-not-in-collection wprm-recipe-add-to-collection-recipe wprm-recipe-add-to-collection wprm-recipe-link wprm-block-text-light-bold wprm-recipe-add-to-collection-inline-button wprm-recipe-link-inline-button wprm-color-accent" data-recipe-id="5969" data-recipe="{"type":"recipe","recipeId":5969,"name":"Classic Chocolate Cake Recipe","image":"https:\/\/www.howtocook.recipes\/wp-content\/uploads\/2020\/12\/Chocolate-cake-recipe-300x300.jpg","servings":14,"servingsUnit":"servings","parent_id":"5904","parent_url":"https:\/\/www.howtocook.recipes\/classic-chocolate-cake-recipe\/"}" aria-label="Add to Collection"><span class="wprm-recipe-icon wprm-recipe-add-to-collection-icon wprm-recipe-not-in-collection"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><g class="nc-icon-wrapper" stroke-width="1" fill="#ffffff" stroke="#ffffff"><path fill="none" stroke="#ffffff" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M11.5,0.5 C9.982,0.5,8.678,1.355,8,2.601C7.322,1.355,6.018,0.5,4.5,0.5c-2.209,0-4,1.791-4,4c0,4,7.5,11,7.5,11s7.5-7,7.5-11 C15.5,2.291,13.709,0.5,11.5,0.5z" data-cap="butt"/> </g></svg></span> </a><a href="https://www.howtocook.recipes/my-favorites/" style="color: #333333;background-color: #734060;border-color: #734060;border-radius: 100px;padding: 8px 8px;display: none;" class="wprm-recipe-in-collection wprm-recipe-add-to-collection-recipe wprm-recipe-add-to-collection wprm-recipe-link wprm-block-text-light-bold wprm-recipe-add-to-collection-inline-button wprm-recipe-link-inline-button wprm-color-accent" data-recipe-id="5969" data-text-added="" aria-label="Go to Collections"><span class="wprm-recipe-icon wprm-recipe-add-to-collection-icon wprm-recipe-in-collection"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><g class="nc-icon-wrapper" fill="#ffffff"><path fill="#ffffff" d="M11.6,0C10.1,0,8.8,0.8,8,2C7.2,0.8,5.9,0,4.4,0C2,0,0,2,0,4.4c0,4.4,8,10.9,8,10.9s8-6.5,8-10.9 C16,2,14,0,11.6,0z"/></g></svg></span> </a></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-bae77f4 e-flex e-con-boxed e-con e-parent" data-id="bae77f4" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-2509025 e-con-full regcol e-flex e-con e-child" data-id="2509025" data-element_type="container">
<div class="elementor-element elementor-element-8ced607 e-con-full e-flex e-con e-child" data-id="8ced607" data-element_type="container">
<div class="elementor-element elementor-element-ef4319f e-con-full e-flex e-con e-child" data-id="ef4319f" data-element_type="container">
<div class="elementor-element elementor-element-9f3019b post-content elementor-widget elementor-widget-theme-post-content" data-id="9f3019b" data-element_type="widget" data-widget_type="theme-post-content.default">
<p>Two layers of rich homemade chocolate cake and chocolate buttercream frosting are the perfect way to impress. My kids ask for this for birthdays and on the holidays too. And even though my husband says he isn’t into sweets, you can catch him sneaking slices of this <strong>classic chocolate cake recipe</strong>.</p>
<figure class="wp-block-image"><img fetchpriority="high" decoding="async" src="https://www.howtocook.recipes/wp-content/uploads/2020/12/Best-chocolate-cake-recipe.jpg" alt="Best chocolate cake recipe" class="wp-image-4845"/><div class="disclaimer-text"><p><em>This post may contain affiliate links. Please read my <a href="https://www.howtocook.recipes/disclosure-and-privacy-policy" target="_blank" rel="noopener">Disclosure Policy</a></em></p></div></figure>
<p></p>
<h2 class="wp-block-heading"><strong>Best Chocolate Cake Recipe</strong></h2>
<p>What makes a homemade chocolate cake the best of all? It’s the moist texture of the cake layers itself. This cake turns out perfectly every time. And that chocolate cake frosting? Oh man! You will be licking the spatula before the kids can come in and ask for it!</p>
<figure class="wp-block-image"><img decoding="async" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAu4AAAGmAQAAAAALhTz7AAAAAnRSTlMAAHaTzTgAAAA+SURBVHja7cExAQAAAMKg9U9tCj+gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAvwGcmgABBZ8R+wAAAABJRU5ErkJggg==" alt="Ingredients for making chocolate cake" class="wp-image-4845 lazyload" data-src="https://www.howtocook.recipes/wp-content/uploads/2020/12/Ingredients-for-making-chocolate-cake.jpg" width="750" height="422" data-eio-rwidth="750" data-eio-rheight="422" /><noscript><img decoding="async" src="https://www.howtocook.recipes/wp-content/uploads/2020/12/Ingredients-for-making-chocolate-cake.jpg" alt="Ingredients for making chocolate cake" class="wp-image-4845" data-eio="l" /></noscript></figure>
<p></p>
<h3 class="wp-block-heading"><strong>Chocolate Cake Ingredients<br></strong></h3>
<ul class="wp-block-list list-style-ingredients">
<li><strong>All-purpose flour</strong> – the base of your cake foundation (can be gluten-free!)</li>
<li><strong>Baking powder</strong> – gives your cake a leavening boost</li>
<li><strong>Buttermilk</strong> – for a nice tang</li>
<li><strong>Baking soda</strong> – this is going to react with the buttermilk to make it rise</li>
<li><strong>Cocoa powder</strong> – um, hello chocolate cake and frosting!</li>
<li><strong>Vanilla extract</strong> – balances the sweetness</li>
<li><strong>Sugar</strong> – well, it IS a cake!</li>
<li><strong>Vegetable oil</strong> – makes the cake moist</li>
<li><strong>Eggs</strong> – binds it all together</li>
<li><strong>Butter</strong> – can’t have buttercream without it</li>
<li><strong>Confectioner’s sugar</strong> – for the buttercream frosting</li>
</ul>
<figure class="wp-block-image"><img decoding="async" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAu4AAAGmAQAAAAALhTz7AAAAAnRSTlMAAHaTzTgAAAA+SURBVHja7cExAQAAAMKg9U9tCj+gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAvwGcmgABBZ8R+wAAAABJRU5ErkJggg==" alt="Chocolate cake frosting ingredients" class="wp-image-4845 lazyload" data-src="https://www.howtocook.recipes/wp-content/uploads/2020/12/Chocolate-cake-frosting-ingredients.jpg" width="750" height="422" data-eio-rwidth="750" data-eio-rheight="422" /><noscript><img decoding="async" src="https://www.howtocook.recipes/wp-content/uploads/2020/12/Chocolate-cake-frosting-ingredients.jpg" alt="Chocolate cake frosting ingredients" class="wp-image-4845" data-eio="l" /></noscript></figure>
<p></p>
<h3 class="wp-block-heading"><strong>Chocolate Buttercream Frosting Ingredients<br></strong></h3>
<ul class="wp-block-list list-style-ingredients">
<li><strong>Cocoa powder</strong> – necessary to keep authentic chocolate flavor.</li>
<li><strong>Vanilla extract</strong> – balances the sweetness.</li>
<li><strong>Heavy whipping cream</strong> – adding in that thick creamy texture goodness.</li>
<li><strong>Butter</strong> – can’t have buttercream without it.</li>
<li><strong>Confectioner’s sugar</strong> – powdered sugar keeps the frosting sweet and light. A must for any chocolate cake frosting recipe.</li>
</ul>
<figure class="wp-block-image"><img decoding="async" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAu4AAAGmAQAAAAALhTz7AAAAAnRSTlMAAHaTzTgAAAA+SURBVHja7cExAQAAAMKg9U9tCj+gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAvwGcmgABBZ8R+wAAAABJRU5ErkJggg==" alt="Easy chocolate cake recipe" class="wp-image-4845 lazyload" data-src="https://www.howtocook.recipes/wp-content/uploads/2020/12/Easy-chocolate-cake-recipe-step-1.jpg" width="750" height="422" data-eio-rwidth="750" data-eio-rheight="422" /><noscript><img decoding="async" src="https://www.howtocook.recipes/wp-content/uploads/2020/12/Easy-chocolate-cake-recipe-step-1.jpg" alt="Easy chocolate cake recipe" class="wp-image-4845" data-eio="l" /></noscript></figure>
<p></p>
<h3 class="wp-block-heading"><strong>Easy Chocolate Cake Recipe</strong></h3>
<p>I once used boxed mixes to make my cakes. That all changed when I saw what kind of junk was in it. Sure, cake isn’t healthy, but when you make a homemade chocolate cake recipe from wholesome ingredients, it is a much better way to celebrate a special occasion. And guess what? It only takes 20 minutes to prep it. That’s nothing!</p>
<blockquote class="wp-block-quote modern-quote is-layout-flow wp-block-quote-is-layout-flow">
<p>Happiness is eating chocolate cake together.<br><cite>Anonymous</cite></p>
</blockquote>
<figure class="wp-block-image"><img decoding="async" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAu4AAAGmAQAAAAALhTz7AAAAAnRSTlMAAHaTzTgAAAA+SURBVHja7cExAQAAAMKg9U9tCj+gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAvwGcmgABBZ8R+wAAAABJRU5ErkJggg==" alt="How do you make chocolate cake from scratch" class="wp-image-4845 lazyload" data-src="https://www.howtocook.recipes/wp-content/uploads/2020/12/How-do-you-make-chocolate-cake-from-scratch-step-2.jpg" width="750" height="422" data-eio-rwidth="750" data-eio-rheight="422" /><noscript><img decoding="async" src="https://www.howtocook.recipes/wp-content/uploads/2020/12/How-do-you-make-chocolate-cake-from-scratch-step-2.jpg" alt="How do you make chocolate cake from scratch" class="wp-image-4845" data-eio="l" /></noscript></figure>
<p></p>
<h3 class="wp-block-heading"><strong>How do you Make Super Moist Chocolate Cake from Scratch</strong></h3>
<p>Making a moist chocolate cake recipe from scratch involves greasing 2 cake pans. Then you’ll make the cake batter and pour it evenly into both cake pans. Let it bake and cool, then make the frosting and frost it up. And now you can celebrate with a slice of perfection!</p>
<figure class="wp-block-image"><img decoding="async" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAu4AAAGmAQAAAAALhTz7AAAAAnRSTlMAAHaTzTgAAAA+SURBVHja7cExAQAAAMKg9U9tCj+gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAvwGcmgABBZ8R+wAAAABJRU5ErkJggg==" alt="How to make chocolate cake super moist" class="wp-image-4845 lazyload" data-src="https://www.howtocook.recipes/wp-content/uploads/2020/12/How-to-make-chocolate-cake-super-moist-step-3.jpg" width="750" height="422" data-eio-rwidth="750" data-eio-rheight="422" /><noscript><img decoding="async" src="https://www.howtocook.recipes/wp-content/uploads/2020/12/How-to-make-chocolate-cake-super-moist-step-3.jpg" alt="How to make chocolate cake super moist" class="wp-image-4845" data-eio="l" /></noscript></figure>
<p></p>
<h3 class="wp-block-heading"><strong>Expert Tips and Tricks for the Perfect Chocolate Cake Every Time</strong></h3>
<p>When learning how to make chocolate cake step by step these tips will help you out:</p>
<ul class="wp-block-list list-style-tips">
<li><strong>Use quality cocoa</strong> – Seriously, it makes all the difference in the world. All cocoa is not created equal!</li>
<li><strong>Don’t open the oven until it’s finished</strong> – I know, tempting, but leave the cake layers alone until your oven timer dings.</li>
<li><strong>Use vegetable oil in the cake</strong> – Trust! It leaves it super-moist inside, just like you want it to be! My husband jokes even the crumbs are moist!</li>
</ul>
<figure class="wp-block-image"><img decoding="async" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAu4AAAGmAQAAAAALhTz7AAAAAnRSTlMAAHaTzTgAAAA+SURBVHja7cExAQAAAMKg9U9tCj+gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAvwGcmgABBZ8R+wAAAABJRU5ErkJggg==" alt="How long to bake chocolate cake" class="wp-image-4845 lazyload" data-src="https://www.howtocook.recipes/wp-content/uploads/2020/12/How-long-to-bake-chocolate-cake-step-4.jpg" width="750" height="422" data-eio-rwidth="750" data-eio-rheight="422" /><noscript><img decoding="async" src="https://www.howtocook.recipes/wp-content/uploads/2020/12/How-long-to-bake-chocolate-cake-step-4.jpg" alt="How long to bake chocolate cake" class="wp-image-4845" data-eio="l" /></noscript></figure>
<p></p>
<h3 class="wp-block-heading"><strong>How do you Make Chocolate Cake Super Moist</strong></h3>
<p>And yes, as I just mentioned, if you want your cake super-moist, you need to use vegetable oil in the batter. The butter in this recipe is for making the buttercream. I promise making a moist chocolate cake recipe with oil will give you the right texture that won’t be dry and crumbly!</p>
<h3 class="wp-block-heading"><strong>What is the secret to super moist cake?</strong></h3>
<p>In this chocolate cake recipe, the secret to getting it so moist inside is using oil. Oil always makes for a moist cake that doesn’t get dry and crumbly.</p>
<figure class="wp-block-image"><img decoding="async" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAu4AAAGmAQAAAAALhTz7AAAAAnRSTlMAAHaTzTgAAAA+SURBVHja7cExAQAAAMKg9U9tCj+gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAvwGcmgABBZ8R+wAAAABJRU5ErkJggg==" alt="Best frosting and toppings for chocolate cake" class="wp-image-4845 lazyload" data-src="https://www.howtocook.recipes/wp-content/uploads/2020/12/Best-frosting-and-toppings-for-chocolate-cake-step-5.jpg" width="750" height="422" data-eio-rwidth="750" data-eio-rheight="422" /><noscript><img decoding="async" src="https://www.howtocook.recipes/wp-content/uploads/2020/12/Best-frosting-and-toppings-for-chocolate-cake-step-5.jpg" alt="Best frosting and toppings for chocolate cake" class="wp-image-4845" data-eio="l" /></noscript></figure>
<p></p>
<h3 class="wp-block-heading"><strong>What kind of chocolate is used for cake?</strong></h3>
<p>This simple chocolate cake recipe uses unsweetened cocoa powder. It helps make the perfect cake in taste and texture. Choose unsweetened as there will be plenty of sugar added in to sweeten it to perfection!</p>
<figure class="wp-block-image"><img decoding="async" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAu4AAAGmAQAAAAALhTz7AAAAAnRSTlMAAHaTzTgAAAA+SURBVHja7cExAQAAAMKg9U9tCj+gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAvwGcmgABBZ8R+wAAAABJRU5ErkJggg==" alt="What ingredients make cake moist" class="wp-image-4845 lazyload" data-src="https://www.howtocook.recipes/wp-content/uploads/2020/12/What-ingredients-make-cake-moist-step-6.jpg" width="750" height="422" data-eio-rwidth="750" data-eio-rheight="422" /><noscript><img decoding="async" src="https://www.howtocook.recipes/wp-content/uploads/2020/12/What-ingredients-make-cake-moist-step-6.jpg" alt="What ingredients make cake moist" class="wp-image-4845" data-eio="l" /></noscript></figure>
<p></p>
<h3 class="wp-block-heading"><strong>What ingredients make a cake moist?</strong></h3>
<p>Some people use sour cream, but this recipe gets plenty of tang from the buttermilk. Instead, for a super moist chocolate cake recipe I recommend using vegetable oil to help your cake maintain that moist and heavenly texture.</p>
<h3 class="wp-block-heading"><strong>Why do you add boiling water to chocolate cake?</strong></h3>
<p>Adding hot or boiling water to your batter helps dissolve the cocoa powder. This gives it more flavor with fewer lumps for a wonderful taste and texture.</p>
<figure class="wp-block-image"><img decoding="async" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAu4AAAGmAQAAAAALhTz7AAAAAnRSTlMAAHaTzTgAAAA+SURBVHja7cExAQAAAMKg9U9tCj+gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAvwGcmgABBZ8R+wAAAABJRU5ErkJggg==" alt="How to store chocolate cake" class="wp-image-4845 lazyload" data-src="https://www.howtocook.recipes/wp-content/uploads/2020/12/How-to-store-chocolate-cake-step-7.jpg" width="750" height="422" data-eio-rwidth="750" data-eio-rheight="422" /><noscript><img decoding="async" src="https://www.howtocook.recipes/wp-content/uploads/2020/12/How-to-store-chocolate-cake-step-7.jpg" alt="How to store chocolate cake" class="wp-image-4845" data-eio="l" /></noscript></figure>
<p></p>
<h3 class="wp-block-heading"><strong>What’s different between chocolate cake and chocolate fudge cake?</strong></h3>
<p>With chocolate cake, you get a lighter texture. Meanwhile, chocolate fudge cake is much more dense.</p>
<h3 class="wp-block-heading"><strong>What is the difference between German chocolate cake and regular chocolate cake?</strong></h3>
<p>Let’s forget the topping of the German chocolate cake which is a coconut-pecan frosting and just focus on the actual cake. The biggest difference is that in German chocolate cake, it uses a sweetened cocoa that is more subtle in flavor. Regular chocolate cake tends to taste more sugary off the bat.</p>
<h3 class="wp-block-heading"><strong>Can you make gluten-free chocolate cake?</strong></h3>
<p>You bet you can! All you need to do is sub the all-purpose flour for a gluten-free version. Check your labels because some having binding agents in them, which is what you want for this. If it doesn’t have a binding agent, you’ll also need xanthan gum to help hold your cake together.</p>
<figure class="wp-block-image"><img decoding="async" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAu4AAAGmAQAAAAALhTz7AAAAAnRSTlMAAHaTzTgAAAA+SURBVHja7cExAQAAAMKg9U9tCj+gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAvwGcmgABBZ8R+wAAAABJRU5ErkJggg==" alt="What is the difference between chocolate cake and chocolate fudge cake" class="wp-image-4845 lazyload" data-src="https://www.howtocook.recipes/wp-content/uploads/2020/12/What-is-the-difference-between-chocolate-cake-and-chocolate-fudge-cake-step-8.jpg" width="750" height="422" data-eio-rwidth="750" data-eio-rheight="422" /><noscript><img decoding="async" src="https://www.howtocook.recipes/wp-content/uploads/2020/12/What-is-the-difference-between-chocolate-cake-and-chocolate-fudge-cake-step-8.jpg" alt="What is the difference between chocolate cake and chocolate fudge cake" class="wp-image-4845" data-eio="l" /></noscript></figure>
<p></p>
<h3 class="wp-block-heading"><strong>How Long to Bake Chocolate Cake</strong></h3>
<p>At 350F, you’re going to bake your chocolate cake layers for 30 to 35 minutes. Again, refrain from opening the oven door to take a peek. When done, you can use a toothpick to pierce the middle and make sure there is no wet cake batter stuck to the toothpick.</p>
<figure class="wp-block-image"><img decoding="async" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAu4AAAGmAQAAAAALhTz7AAAAAnRSTlMAAHaTzTgAAAA+SURBVHja7cExAQAAAMKg9U9tCj+gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAvwGcmgABBZ8R+wAAAABJRU5ErkJggg==" alt="Can you make gluten free chocolate cake" class="wp-image-4845 lazyload" data-src="https://www.howtocook.recipes/wp-content/uploads/2020/12/Can-you-make-gluten-free-chocolate-cake-step-9.jpg" width="750" height="422" data-eio-rwidth="750" data-eio-rheight="422" /><noscript><img decoding="async" src="https://www.howtocook.recipes/wp-content/uploads/2020/12/Can-you-make-gluten-free-chocolate-cake-step-9.jpg" alt="Can you make gluten free chocolate cake" class="wp-image-4845" data-eio="l" /></noscript></figure>
<p></p>
<h3 class="wp-block-heading"><strong>Why is my chocolate cake not dark enough?</strong></h3>
<p>Your measurements might be off. Make sure you’re measuring everything precisely in baking as it’s a science. For example, if you don’t measure out enough sugar, you will not get a dark enough color.</p>
<h3 class="wp-block-heading"><strong>What is the best frosting for chocolate cake?</strong></h3>
<p>Chocolate buttercream frosting is the best match for chocolate cake. This recipe shows you how to make it yourself which tastes so much better than that store-bought stuff.</p>
<p>However, for birthdays, it’s sometimes decorative roses or sprinkles. Other times, the kids want Oreos on top. You honestly can’t go wrong with classic chocolate cake icing, sprinkles, or piping on pretty designs.</p>
<figure class="wp-block-image"><img decoding="async" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAu4AAAGmAQAAAAALhTz7AAAAAnRSTlMAAHaTzTgAAAA+SURBVHja7cExAQAAAMKg9U9tCj+gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAvwGcmgABBZ8R+wAAAABJRU5ErkJggg==" alt="What kind of chocolate is used for cake" class="wp-image-4845 lazyload" data-src="https://www.howtocook.recipes/wp-content/uploads/2020/12/What-kind-of-chocolate-is-used-for-cake-step-10.jpg" width="750" height="422" data-eio-rwidth="750" data-eio-rheight="422" /><noscript><img decoding="async" src="https://www.howtocook.recipes/wp-content/uploads/2020/12/What-kind-of-chocolate-is-used-for-cake-step-10.jpg" alt="What kind of chocolate is used for cake" class="wp-image-4845" data-eio="l" /></noscript></figure>
<p></p>
<h3 class="wp-block-heading"><strong>How to Store Chocolate Cake</strong></h3>
<p>This chocolate cake has a buttercream frosting which means it needs to be refrigerated. Cover it well with plastic wrap and you can enjoy it for up to a week.</p>
<figure class="wp-block-image"><img decoding="async" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAu4AAAGmAQAAAAALhTz7AAAAAnRSTlMAAHaTzTgAAAA+SURBVHja7cExAQAAAMKg9U9tCj+gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAvwGcmgABBZ8R+wAAAABJRU5ErkJggg==" alt="Moist chocolate cake" class="wp-image-4845 lazyload" data-src="https://www.howtocook.recipes/wp-content/uploads/2020/12/Moist-chocolate-cake.jpg" width="750" height="422" data-eio-rwidth="750" data-eio-rheight="422" /><noscript><img decoding="async" src="https://www.howtocook.recipes/wp-content/uploads/2020/12/Moist-chocolate-cake.jpg" alt="Moist chocolate cake" class="wp-image-4845" data-eio="l" /></noscript></figure>
<p></p>
<h3 class="wp-block-heading"><strong>Can you Freeze Chocolate Cake?</strong></h3>
<p>Yes, you can freeze chocolate cake. Wrap it well with aluminum foil or plastic freezer wrap and it will keep for between 4 to 6 months.</p>
<h3 class="wp-block-heading"><strong>How to Thaw Frozen Chocolate Cake?</strong></h3>
<p>It can take several hours to thaw out a frozen cake. You can put it in the fridge overnight and it should be ready for you the next day. Or you can leave it out and wait for it to come up to room temperature.</p>
<hr class="wp-block-separator has-alpha-channel-opacity"/>
<h2 class="wp-block-heading"><strong>Watch How To Make Chocolate Cake (Video)</strong></h2>
<p><iframe loading="lazy" width="560" height="315" frameborder="0" allowfullscreen="allowfullscreen" data-src="https://www.youtube.com/embed/pvuoMLZjoTU" class="lazyload"></iframe></p>
<div id="recipe"></div><div id="wprm-recipe-container-5969" class="wprm-recipe-container" data-recipe-id="5969" data-servings="14"><div class="wprm-recipe wprm-recipe-template-htc"><div class="wprm-layout-container wprm-padding-40">
<div class="wprm-layout-column-container wprm-align-middle wprm-column-gap-10 wprm-column-rows-recipe-500">
<div class="wprm-layout-column wprm-column-width-80">
<h2 class="wprm-recipe-name wprm-block-text-bold">Classic Chocolate Cake Recipe</h2>
<div class="wprm-recipe-summary wprm-block-text-normal"><span style="display: block;">This family favorite chocolate cake recipe makes the best chocolate cake I've EVER had! It has a silky soft textured chocolate frosting with super moist light cake that comes out perfect every time! The chocolate combination is incredible and always has people asking me for the recipe. Here you go!</span></div>
</div>
<div class="wprm-layout-column wprm-column-width-40 wprm-align-right" style="--wprm-layout-column-text-color: var(--glacier-accent-color);">
<div class="wprm-recipe-image wprm-block-image-rounded"><img decoding="async" style="border-width: 0px;border-style: solid;border-color: #666666;border-radius: 0px;" width="150" height="150" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJYAAACWAQAAAAAUekxPAAAAAnRSTlMAAHaTzTgAAAAaSURBVEjH7cExAQAAAMKg9U9tDQ+gAACAdwMLuAABXZHjmQAAAABJRU5ErkJggg==" class="attachment-150x150 size-150x150 lazyload" alt="Chocolate cake recipe" data-src="https://www.howtocook.recipes/wp-content/uploads/2020/12/Chocolate-cake-recipe-150x150.jpg" data-srcset="https://www.howtocook.recipes/wp-content/uploads/2020/12/Chocolate-cake-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2020/12/Chocolate-cake-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2020/12/Chocolate-cake-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2020/12/Chocolate-cake-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2020/12/Chocolate-cake-recipe-450x450.jpg 450w" data-sizes="auto" data-eio-rwidth="150" data-eio-rheight="150" /><noscript><img decoding="async" style="border-width: 0px;border-style: solid;border-color: #666666;border-radius: 0px;" width="150" height="150" src="https://www.howtocook.recipes/wp-content/uploads/2020/12/Chocolate-cake-recipe-150x150.jpg" class="attachment-150x150 size-150x150" alt="Chocolate cake recipe" srcset="https://www.howtocook.recipes/wp-content/uploads/2020/12/Chocolate-cake-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2020/12/Chocolate-cake-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2020/12/Chocolate-cake-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2020/12/Chocolate-cake-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2020/12/Chocolate-cake-recipe-450x450.jpg 450w" sizes="(max-width: 150px) 100vw, 150px" data-eio="l" /></noscript></div>
</div>
</div>
<div class="wprm-layout-column-container wprm-column-gap-40 wprm-column-rows-recipe-500 wprm-row-gap-20 glacier-meta">
<div class="wprm-layout-column wprm-column-width-33 wprm-align-center">
<style>#wprm-recipe-user-rating-1 .wprm-rating-star.wprm-rating-star-full svg * { fill: var(--glacier-interactivity-color); }#wprm-recipe-user-rating-1 .wprm-rating-star.wprm-rating-star-33 svg * { fill: url(#wprm-recipe-user-rating-1-33); }#wprm-recipe-user-rating-1 .wprm-rating-star.wprm-rating-star-50 svg * { fill: url(#wprm-recipe-user-rating-1-50); }#wprm-recipe-user-rating-1 .wprm-rating-star.wprm-rating-star-66 svg * { fill: url(#wprm-recipe-user-rating-1-66); }linearGradient#wprm-recipe-user-rating-1-33 stop { stop-color: var(--glacier-interactivity-color); }linearGradient#wprm-recipe-user-rating-1-50 stop { stop-color: var(--glacier-interactivity-color); }linearGradient#wprm-recipe-user-rating-1-66 stop { stop-color: var(--glacier-interactivity-color); }</style><svg xmlns="http://www.w3.org/2000/svg" width="0" height="0" style="display:block;width:0px;height:0px"><defs><linearGradient id="wprm-recipe-user-rating-1-33"><stop offset="0%" stop-opacity="1" /><stop offset="33%" stop-opacity="1" /><stop offset="33%" stop-opacity="0" /><stop offset="100%" stop-opacity="0" /></linearGradient></defs><defs><linearGradient id="wprm-recipe-user-rating-1-50"><stop offset="0%" stop-opacity="1" /><stop offset="50%" stop-opacity="1" /><stop offset="50%" stop-opacity="0" /><stop offset="100%" stop-opacity="0" /></linearGradient></defs><defs><linearGradient id="wprm-recipe-user-rating-1-66"><stop offset="0%" stop-opacity="1" /><stop offset="66%" stop-opacity="1" /><stop offset="66%" stop-opacity="0" /><stop offset="100%" stop-opacity="0" /></linearGradient></defs></svg><div id="wprm-recipe-user-rating-1" class="wprm-recipe-rating wprm-recipe-rating-recipe-5969 wprm-user-rating wprm-recipe-rating-separate wprm-user-rating-not-voted wprm-user-rating-allowed" data-recipe="5969" data-average="5" data-count="1" data-total="5" data-user="0" data-decimals="1"data-modal-uid="user-rating"><span class="wprm-rating-star wprm-rating-star-1 wprm-rating-star-full" data-rating="1" data-color="var(--glacier-interactivity-color)" role="button" tabindex="0" aria-label="Rate this recipe 1 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1.5em;padding: 2px;padding-left: 0;"><svg width="16px" height="16px" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="var(--glacier-interactivity-color)" stroke-width="2" stroke-linejoin="round" d="M11.99,1.94c-.35,0-.67.19-.83.51l-2.56,5.2c-.11.24-.34.4-.61.43l-5.75.83c-.35.05-.64.3-.74.64-.11.34,0,.7.22.94l4.16,4.05c.19.19.27.45.22.7l-.98,5.72c-.06.35.1.7.37.9.29.21.66.24.98.08l5.14-2.71h0c.24-.13.51-.13.75,0l5.14,2.71c.32.16.69.13.98-.08.29-.21.43-.56.37-.9l-.98-5.72h0c-.05-.26.05-.53.22-.7l4.16-4.05h0c.26-.24.34-.61.22-.94s-.4-.58-.74-.64l-5.75-.83c-.26-.03-.48-.21-.61-.43l-2.56-5.2c-.16-.32-.48-.53-.83-.51,0,0-.02,0-.02,0Z"/></svg></span><span class="wprm-rating-star wprm-rating-star-2 wprm-rating-star-full" data-rating="2" data-color="var(--glacier-interactivity-color)" role="button" tabindex="0" aria-label="Rate this recipe 2 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1.5em;padding: 2px;"><svg width="16px" height="16px" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="var(--glacier-interactivity-color)" stroke-width="2" stroke-linejoin="round" d="M11.99,1.94c-.35,0-.67.19-.83.51l-2.56,5.2c-.11.24-.34.4-.61.43l-5.75.83c-.35.05-.64.3-.74.64-.11.34,0,.7.22.94l4.16,4.05c.19.19.27.45.22.7l-.98,5.72c-.06.35.1.7.37.9.29.21.66.24.98.08l5.14-2.71h0c.24-.13.51-.13.75,0l5.14,2.71c.32.16.69.13.98-.08.29-.21.43-.56.37-.9l-.98-5.72h0c-.05-.26.05-.53.22-.7l4.16-4.05h0c.26-.24.34-.61.22-.94s-.4-.58-.74-.64l-5.75-.83c-.26-.03-.48-.21-.61-.43l-2.56-5.2c-.16-.32-.48-.53-.83-.51,0,0-.02,0-.02,0Z"/></svg></span><span class="wprm-rating-star wprm-rating-star-3 wprm-rating-star-full" data-rating="3" data-color="var(--glacier-interactivity-color)" role="button" tabindex="0" aria-label="Rate this recipe 3 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1.5em;padding: 2px;"><svg width="16px" height="16px" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="var(--glacier-interactivity-color)" stroke-width="2" stroke-linejoin="round" d="M11.99,1.94c-.35,0-.67.19-.83.51l-2.56,5.2c-.11.24-.34.4-.61.43l-5.75.83c-.35.05-.64.3-.74.64-.11.34,0,.7.22.94l4.16,4.05c.19.19.27.45.22.7l-.98,5.72c-.06.35.1.7.37.9.29.21.66.24.98.08l5.14-2.71h0c.24-.13.51-.13.75,0l5.14,2.71c.32.16.69.13.98-.08.29-.21.43-.56.37-.9l-.98-5.72h0c-.05-.26.05-.53.22-.7l4.16-4.05h0c.26-.24.34-.61.22-.94s-.4-.58-.74-.64l-5.75-.83c-.26-.03-.48-.21-.61-.43l-2.56-5.2c-.16-.32-.48-.53-.83-.51,0,0-.02,0-.02,0Z"/></svg></span><span class="wprm-rating-star wprm-rating-star-4 wprm-rating-star-full" data-rating="4" data-color="var(--glacier-interactivity-color)" role="button" tabindex="0" aria-label="Rate this recipe 4 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1.5em;padding: 2px;"><svg width="16px" height="16px" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="var(--glacier-interactivity-color)" stroke-width="2" stroke-linejoin="round" d="M11.99,1.94c-.35,0-.67.19-.83.51l-2.56,5.2c-.11.24-.34.4-.61.43l-5.75.83c-.35.05-.64.3-.74.64-.11.34,0,.7.22.94l4.16,4.05c.19.19.27.45.22.7l-.98,5.72c-.06.35.1.7.37.9.29.21.66.24.98.08l5.14-2.71h0c.24-.13.51-.13.75,0l5.14,2.71c.32.16.69.13.98-.08.29-.21.43-.56.37-.9l-.98-5.72h0c-.05-.26.05-.53.22-.7l4.16-4.05h0c.26-.24.34-.61.22-.94s-.4-.58-.74-.64l-5.75-.83c-.26-.03-.48-.21-.61-.43l-2.56-5.2c-.16-.32-.48-.53-.83-.51,0,0-.02,0-.02,0Z"/></svg></span><span class="wprm-rating-star wprm-rating-star-5 wprm-rating-star-full" data-rating="5" data-color="var(--glacier-interactivity-color)" role="button" tabindex="0" aria-label="Rate this recipe 5 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1.5em;padding: 2px;padding-right: 0;"><svg width="16px" height="16px" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="var(--glacier-interactivity-color)" stroke-width="2" stroke-linejoin="round" d="M11.99,1.94c-.35,0-.67.19-.83.51l-2.56,5.2c-.11.24-.34.4-.61.43l-5.75.83c-.35.05-.64.3-.74.64-.11.34,0,.7.22.94l4.16,4.05c.19.19.27.45.22.7l-.98,5.72c-.06.35.1.7.37.9.29.21.66.24.98.08l5.14-2.71h0c.24-.13.51-.13.75,0l5.14,2.71c.32.16.69.13.98-.08.29-.21.43-.56.37-.9l-.98-5.72h0c-.05-.26.05-.53.22-.7l4.16-4.05h0c.26-.24.34-.61.22-.94s-.4-.58-.74-.64l-5.75-.83c-.26-.03-.48-.21-.61-.43l-2.56-5.2c-.16-.32-.48-.53-.83-.51,0,0-.02,0-.02,0Z"/></svg></span><div class="wprm-recipe-rating-details wprm-block-text-normal"><span class="wprm-recipe-rating-average">5</span> from 1 vote</div></div>
<div class="wprm-spacer" style="height: 20px;"></div>
<a href="https://www.howtocook.recipes/wprm_print/classic-chocolate-cake-recipe" style="color: #333333;background-color: #ffffff;border-color: #333333;border-radius: 50px;padding: 5px 15px;" class="wprm-recipe-print wprm-recipe-link wprm-print-recipe-shortcode wprm-block-text-semi-bold wprm-recipe-print-inline-button wprm-recipe-link-inline-button wprm-color-accent" data-recipe-id="5969" data-template="" target="_blank" rel="nofollow"><span class="wprm-recipe-icon wprm-recipe-print-icon"><svg width="16" height="16" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18.5 7V5.2C18.5 4.0799 18.5 3.51984 18.282 3.09202C18.0903 2.71569 17.7843 2.40973 17.408 2.21799C16.9802 2 16.4201 2 15.3 2H9.7C8.5799 2 8.01984 2 7.59202 2.21799C7.21569 2.40973 6.90973 2.71569 6.71799 3.09202C6.5 3.51984 6.5 4.0799 6.5 5.2V7M6.5 18C5.57003 18 5.10504 18 4.72354 17.8978C3.68827 17.6204 2.87962 16.8117 2.60222 15.7765C2.5 15.395 2.5 14.93 2.5 14V11.8C2.5 10.1198 2.5 9.27976 2.82698 8.63803C3.1146 8.07354 3.57354 7.6146 4.13803 7.32698C4.77976 7 5.61984 7 7.3 7H17.7C19.3802 7 20.2202 7 20.862 7.32698C21.4265 7.6146 21.8854 8.07354 22.173 8.63803C22.5 9.27976 22.5 10.1198 22.5 11.8V14C22.5 14.93 22.5 15.395 22.3978 15.7765C22.1204 16.8117 21.3117 17.6204 20.2765 17.8978C19.895 18 19.43 18 18.5 18M15.5 10.5H18.5M9.7 22H15.3C16.4201 22 16.9802 22 17.408 21.782C17.7843 21.5903 18.0903 21.2843 18.282 20.908C18.5 20.4802 18.5 19.9201 18.5 18.8V17.2C18.5 16.0799 18.5 15.5198 18.282 15.092C18.0903 14.7157 17.7843 14.4097 17.408 14.218C16.9802 14 16.4201 14 15.3 14H9.7C8.5799 14 8.01984 14 7.59202 14.218C7.21569 14.4097 6.90973 14.7157 6.71799 15.092C6.5 15.5198 6.5 16.0799 6.5 17.2V18.8C6.5 19.9201 6.5 20.4802 6.71799 20.908C6.90973 21.2843 7.21569 21.5903 7.59202 21.782C8.01984 22 8.57989 22 9.7 22Z" stroke="#333333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg></span> Print</a>
<a href="https://www.howtocook.recipes/my-favorites/" style="color: #333333;background-color: #ffffff;border-color: #333333;border-radius: 50px;padding: 5px 15px;" class="wprm-recipe-not-in-collection wprm-recipe-add-to-collection-recipe wprm-recipe-add-to-collection wprm-recipe-link wprm-block-text-semi-bold wprm-recipe-add-to-collection-inline-button wprm-recipe-link-inline-button wprm-color-accent" data-recipe-id="5969" data-recipe="{"type":"recipe","recipeId":5969,"name":"Classic Chocolate Cake Recipe","image":"https:\/\/www.howtocook.recipes\/wp-content\/uploads\/2020\/12\/Chocolate-cake-recipe-300x300.jpg","servings":14,"servingsUnit":"servings","parent_id":"5904","parent_url":"https:\/\/www.howtocook.recipes\/classic-chocolate-cake-recipe\/"}"><span class="wprm-recipe-icon wprm-recipe-add-to-collection-icon wprm-recipe-not-in-collection"><?xml version="1.0" encoding="UTF-8"?>
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="0 0 16 16">
<!-- Generator: Adobe Illustrator 30.0.0, SVG Export Plug-In . SVG Version: 2.1.1 Build 4) -->
<defs>
<style>
.st0, .st1 {
fill: none;
}
.st1 {
stroke: #333333;
stroke-linecap: round;
stroke-linejoin: round;
stroke-width: 1.14px;
}
.st2 {
clip-path: url(#clippath);
}
</style>
<clipPath id="clippath">
<rect class="st0" x="1.12" y="1.23" width="13.02" height="13.54"/>
</clipPath>
</defs>
<g class="st2">
<path class="st1" d="M12.27,13.61l-3.77-2.92c-.3-.23-.73-.23-1.03,0l-3.77,2.92c-.54.42-1.34.05-1.34-.62V3.26c0-.44.37-.79.82-.79h9.62c.46,0,.82.36.82.79v9.74c0,.67-.8,1.04-1.34.62h0Z"/>
</g>
</svg></span> Save</a><a href="https://www.howtocook.recipes/my-favorites/" style="color: #333333;background-color: #ffffff;border-color: #333333;border-radius: 50px;padding: 5px 15px;display: none;" class="wprm-recipe-in-collection wprm-recipe-add-to-collection-recipe wprm-recipe-add-to-collection wprm-recipe-link wprm-block-text-semi-bold wprm-recipe-add-to-collection-inline-button wprm-recipe-link-inline-button wprm-color-accent" data-recipe-id="5969" data-text-added="">Go to Collections</a>
</div>
<div class="wprm-layout-column wprm-column-width-66 wprm-align-rows-center">
<div class="wprm-recipe-meta-container wprm-recipe-times-container wprm-recipe-details-container wprm-recipe-details-container-inline wprm-block-text-semi-bold wprm-inline-separator wprm-inline-separator-short-line wprm-meta-container-custom-color" style="--wprm-meta-container-separator-color: var(--glacier-text-color);--wprm-meta-container-block-color: var(--glacier-accent-color);--wprm-meta-container-label-color: var(--glacier-text-color);"><div class="wprm-recipe-block-container wprm-recipe-block-container-inline wprm-block-text-semi-bold wprm-recipe-time-container wprm-recipe-prep-time-container" style=""><span class="wprm-recipe-details-label wprm-block-text-normal wprm-recipe-time-label wprm-recipe-prep-time-label">Prep </span><span class="wprm-recipe-time wprm-block-text-semi-bold"><span class="wprm-recipe-details wprm-recipe-details-minutes wprm-recipe-prep_time wprm-recipe-prep_time-minutes">20<span class="sr-only screen-reader-text wprm-screen-reader-text"> minutes</span></span> <span class="wprm-recipe-details-unit wprm-recipe-details-minutes wprm-recipe-prep_time-unit wprm-recipe-prep_timeunit-minutes" aria-hidden="true">mins</span></span></div><div class="wprm-recipe-block-container wprm-recipe-block-container-inline wprm-block-text-semi-bold wprm-recipe-time-container wprm-recipe-cook-time-container" style=""><span class="wprm-recipe-details-label wprm-block-text-normal wprm-recipe-time-label wprm-recipe-cook-time-label">Cook </span><span class="wprm-recipe-time wprm-block-text-semi-bold"><span class="wprm-recipe-details wprm-recipe-details-minutes wprm-recipe-cook_time wprm-recipe-cook_time-minutes">30<span class="sr-only screen-reader-text wprm-screen-reader-text"> minutes</span></span> <span class="wprm-recipe-details-unit wprm-recipe-details-minutes wprm-recipe-cook_time-unit wprm-recipe-cook_timeunit-minutes" aria-hidden="true">mins</span></span></div><div class="wprm-recipe-block-container wprm-recipe-block-container-inline wprm-block-text-semi-bold wprm-recipe-time-container wprm-recipe-total-time-container" style=""><span class="wprm-recipe-details-label wprm-block-text-normal wprm-recipe-time-label wprm-recipe-total-time-label">Total </span><span class="wprm-recipe-time wprm-block-text-semi-bold"><span class="wprm-recipe-details wprm-recipe-details-minutes wprm-recipe-total_time wprm-recipe-total_time-minutes">50<span class="sr-only screen-reader-text wprm-screen-reader-text"> minutes</span></span> <span class="wprm-recipe-details-unit wprm-recipe-details-minutes wprm-recipe-total_time-unit wprm-recipe-total_timeunit-minutes" aria-hidden="true">mins</span></span></div></div>
<div class="wprm-spacer" style="height: 20px;"></div>
<div class="wprm-spacer" style="height: 20px;"></div>
<div class="wprm-recipe-meta-container wprm-recipe-custom-container wprm-recipe-details-container wprm-recipe-details-container-inline wprm-block-text-normal wprm-inline-separator wprm-inline-separator-short-line wprm-meta-container-custom-color" style="--wprm-meta-container-separator-color: var(--glacier-text-color);--wprm-meta-container-block-color: var(--glacier-accent-color);--wprm-meta-container-label-color: var(--glacier-text-color);"><div class="wprm-recipe-block-container wprm-recipe-block-container-inline wprm-block-text-normal wprm-recipe-nutrition-container wprm-recipe-calories-container" style=""><span class="wprm-recipe-details-label wprm-block-text-normal wprm-recipe-nutrition-label wprm-recipe-calories-label">Calories </span><span class="wprm-recipe-details wprm-recipe-nutrition wprm-recipe-calories wprm-block-text-normal">541</span></div><div class="wprm-recipe-block-container wprm-recipe-block-container-inline wprm-block-text-normal wprm-recipe-servings-container" style=""><span class="wprm-recipe-details-label wprm-block-text-normal wprm-recipe-servings-label">Servings </span><span class="wprm-recipe-servings-with-unit"><span class="wprm-recipe-servings wprm-recipe-details wprm-recipe-servings-5969 wprm-recipe-servings-adjustable-tooltip wprm-block-text-normal" data-recipe="5969" aria-label="Adjust recipe servings">14</span> <span class="wprm-recipe-servings-unit wprm-recipe-details-unit wprm-block-text-normal">servings</span></span></div><div class="wprm-recipe-block-container wprm-recipe-block-container-inline wprm-block-text-normal wprm-recipe-tag-container wprm-recipe-course-container" style=""><span class="wprm-recipe-details-label wprm-block-text-normal wprm-recipe-tag-label wprm-recipe-course-label">Course </span><span class="wprm-recipe-course wprm-block-text-normal">Dessert</span></div><div class="wprm-recipe-block-container wprm-recipe-block-container-inline wprm-block-text-normal wprm-recipe-tag-container wprm-recipe-cuisine-container" style=""><span class="wprm-recipe-details-label wprm-block-text-normal wprm-recipe-tag-label wprm-recipe-cuisine-label">Cuisine </span><span class="wprm-recipe-cuisine wprm-block-text-normal">American</span></div></div>
</div>
</div>
</div>
<div id="recipe-5969-ingredients" class="wprm-recipe-ingredients-container wprm-recipe-ingredients-no-images wprm-recipe-5969-ingredients-container wprm-block-text-normal wprm-ingredient-style-regular wprm-recipe-images-before" data-recipe="5969" data-servings="14" style="--wprm-list-checkbox-border-radius: 16px;"><h3 class="wprm-recipe-header wprm-recipe-ingredients-header wprm-block-text-bold wprm-align-left wprm-header-decoration-icon-line wprm-expandable-container-separated wprm-expandable-expanded" style="padding: 16px 20px;background-color: var(--glacier-header-background);"><span class="wprm-recipe-icon" aria-hidden="true"><svg width="31" height="28" viewBox="0 0 31 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8.71411 20.0009H8.2301C4.237 20.0009 1 16.7141 1 12.6596V9.23425H4.37375C6.54076 9.23425 8.48526 10.2024 9.81019 11.7359" stroke="var(--glacier-header-text)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9.05349 17.4437L5.2002 13.5311" stroke="var(--glacier-header-text)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M22.6527 12.5222L21.892 6.78699H10.4669L9.81046 11.7359L9.05343 17.4437L8.71438 20.0009L8.22473 23.6923C8.10256 24.6127 8.80743 25.4312 9.72211 25.4312H20.0572" stroke="var(--glacier-header-text)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M28.9943 21.6611C27.7469 25.2807 24.4455 27.4014 21.6204 26.3977C18.7955 25.394 17.5166 21.6459 18.764 18.0263C20.0114 14.4067 24.1379 10.1396 26.9631 11.1433C29.7879 12.147 30.2417 18.0413 28.9943 21.6611Z" stroke="var(--glacier-header-text)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9.45264 6.78675V3.61664C9.45264 2.17162 10.6063 1 12.0296 1H20.3286C21.7517 1 22.9056 2.17138 22.9056 3.61664V6.78675" stroke="var(--glacier-header-text)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg></span>Ingredients<div class="wprm-decoration-line" style="border-color: var(--glacier-header-text);"></div><div class="wprm-header-toggle"><a role="button" aria-expanded="false" class="wprm-expandable-button wprm-expandable-button-show" style="color: var(--glacier-header-text)" aria-label="Show Section"><span class="wprm-recipe-icon wprm-collapsible-icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><g class="nc-icon-wrapper" stroke-width="1" fill="none" stroke="var(--glacier-header-text)" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"><polyline points="3.5,9.5 8,5 12.5,9.5 "></polyline></g></svg></span> </a><a role="button" aria-expanded="true" class="wprm-expandable-button wprm-expandable-button-hide" style="color: var(--glacier-header-text)" aria-label="Hide Section"><span class="wprm-recipe-icon wprm-collapsible-icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><g class="nc-icon-wrapper" stroke-width="1" fill="none" stroke="var(--glacier-header-text)" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"><polyline points="3.5,6.5 8,11 12.5,6.5 "></polyline></g></svg></span> </a></div></h3><div class="wprm-interactivity-container wprm-interactivity-container-ingredients-before" style="justify-content: center;gap: 4px;margin: 10px 20px -10px;"><div class="wprm-recipe-adjustable-servings-container wprm-recipe-adjustable-servings-5969-container wprm-toggle-container wprm-block-text-normal" style="background-color: #ffffff;border-color: #333333;color: #333333;border-radius: 5px;"><button class="wprm-recipe-adjustable-servings wprm-toggle wprm-toggle-active" data-multiplier="1" data-servings="14" data-recipe="5969" style="background-color: #333333;color: #ffffff;" aria-label="Adjust servings by 1x">1x</button><button class="wprm-recipe-adjustable-servings wprm-toggle" data-multiplier="2" data-servings="14" data-recipe="5969" style="background-color: #333333;color: #ffffff;border-left: 1px solid #333333;" aria-label="Adjust servings by 2x">2x</button><button class="wprm-recipe-adjustable-servings wprm-toggle" data-multiplier="3" data-servings="14" data-recipe="5969" style="background-color: #333333;color: #ffffff;border-left: 1px solid #333333;" aria-label="Adjust servings by 3x">3x</button></div></div><div class="wprm-internal-container wprm-internal-container-ingredients" style="background-color: var(--glacier-background);"><div class="wprm-recipe-ingredient-group"><ul class="wprm-recipe-ingredients"><li class="wprm-recipe-ingredient" style="list-style-type: none;margin-left: 32px;"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-0" class="wprm-checkbox" aria-label=" 2 cups all-purpose flour"><label for="wprm-checkbox-0" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">2</span> <span class="wprm-recipe-ingredient-unit">cups</span> <span class="wprm-recipe-ingredient-name">all-purpose flour</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;margin-left: 32px;"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-1" class="wprm-checkbox" aria-label=" 2 1/4 cups sugar"><label for="wprm-checkbox-1" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">2 1/4</span> <span class="wprm-recipe-ingredient-unit">cups</span> <span class="wprm-recipe-ingredient-name">sugar</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;margin-left: 32px;"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-2" class="wprm-checkbox" aria-label=" 2 tsp baking powder"><label for="wprm-checkbox-2" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">2</span> <span class="wprm-recipe-ingredient-unit">tsp</span> <span class="wprm-recipe-ingredient-name">baking powder</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;margin-left: 32px;"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-3" class="wprm-checkbox" aria-label=" 1 tsp salt"><label for="wprm-checkbox-3" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">1</span> <span class="wprm-recipe-ingredient-unit">tsp</span> <span class="wprm-recipe-ingredient-name">salt</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;margin-left: 32px;"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-4" class="wprm-checkbox" aria-label=" 1 1/2 tsp baking soda"><label for="wprm-checkbox-4" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">1 1/2</span> <span class="wprm-recipe-ingredient-unit">tsp</span> <span class="wprm-recipe-ingredient-name">baking soda</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;margin-left: 32px;"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-5" class="wprm-checkbox" aria-label=" 3/4 cocoa powder unsweetened"><label for="wprm-checkbox-5" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">3/4</span> <span class="wprm-recipe-ingredient-name">cocoa powder</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-faded">unsweetened</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;margin-left: 32px;"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-6" class="wprm-checkbox" aria-label=" 1/2 cup vegetable oil"><label for="wprm-checkbox-6" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">1/2</span> <span class="wprm-recipe-ingredient-unit">cup</span> <span class="wprm-recipe-ingredient-name">vegetable oil</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;margin-left: 32px;"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-7" class="wprm-checkbox" aria-label=" 1 1/8 cup buttermilk"><label for="wprm-checkbox-7" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">1 1/8</span> <span class="wprm-recipe-ingredient-unit">cup</span> <span class="wprm-recipe-ingredient-name">buttermilk</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;margin-left: 32px;"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-8" class="wprm-checkbox" aria-label=" 2 eggs"><label for="wprm-checkbox-8" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">2</span> <span class="wprm-recipe-ingredient-name">eggs</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;margin-left: 32px;"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-9" class="wprm-checkbox" aria-label=" 3 tsp vanilla extract"><label for="wprm-checkbox-9" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">3</span> <span class="wprm-recipe-ingredient-unit">tsp</span> <span class="wprm-recipe-ingredient-name">vanilla extract</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;margin-left: 32px;"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-10" class="wprm-checkbox" aria-label=" 1 cup hot water"><label for="wprm-checkbox-10" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">1</span> <span class="wprm-recipe-ingredient-unit">cup</span> <span class="wprm-recipe-ingredient-name">hot water</span></li></ul></div><div class="wprm-recipe-ingredient-group"><div class="wprm-recipe-group-name wprm-recipe-ingredient-group-name wprm-block-text-bold">Chocolate Buttercream Frosting</div><div class="wprm-spacer" style="height: 20px;"></div><ul class="wprm-recipe-ingredients"><li class="wprm-recipe-ingredient" style="list-style-type: none;margin-left: 32px;"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-11" class="wprm-checkbox" aria-label=" 1 cup cocoa powder unsweetened"><label for="wprm-checkbox-11" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">1</span> <span class="wprm-recipe-ingredient-unit">cup</span> <span class="wprm-recipe-ingredient-name">cocoa powder</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-faded">unsweetened</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;margin-left: 32px;"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-12" class="wprm-checkbox" aria-label=" 2 cups butter softened"><label for="wprm-checkbox-12" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">2</span> <span class="wprm-recipe-ingredient-unit">cups</span> <span class="wprm-recipe-ingredient-name">butter</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-faded">softened</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;margin-left: 32px;"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-13" class="wprm-checkbox" aria-label=" 5 cups confectioners sugar"><label for="wprm-checkbox-13" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">5</span> <span class="wprm-recipe-ingredient-unit">cups</span> <span class="wprm-recipe-ingredient-name">confectioners sugar</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;margin-left: 32px;"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-14" class="wprm-checkbox" aria-label=" 1/2 cup heavy cream"><label for="wprm-checkbox-14" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">1/2</span> <span class="wprm-recipe-ingredient-unit">cup</span> <span class="wprm-recipe-ingredient-name">heavy cream</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;margin-left: 32px;"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-15" class="wprm-checkbox" aria-label=" 2 1/2 tsp vanilla extract"><label for="wprm-checkbox-15" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">2 1/2</span> <span class="wprm-recipe-ingredient-unit">tsp</span> <span class="wprm-recipe-ingredient-name">vanilla extract</span></li></ul></div></div></div>
<div id="recipe-5969-equipment" class="wprm-recipe-equipment-container wprm-block-text-normal" data-recipe="5969" style="--wprm-list-checkbox-size: 14px;--wprm-list-checkbox-top-position: 2px;--wprm-list-checkbox-border-radius: 14px;"><h3 class="wprm-recipe-header wprm-recipe-equipment-header wprm-block-text-bold wprm-align-left wprm-header-decoration-icon-line wprm-expandable-container-separated wprm-expandable-expanded" style="padding: 16px 20px;background-color: var(--glacier-header-background);"><span class="wprm-recipe-icon" aria-hidden="true"><svg width="28" height="30" viewBox="0 0 28 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M26.1589 26.663C26.3678 27.8846 25.4269 29.0001 24.1876 29.0001H3.37099C2.13171 29.0001 1.19074 27.8846 1.3996 26.6631L4.53582 8.32088C4.70006 7.36032 5.53271 6.65796 6.50721 6.65796H21.0511C22.0256 6.65796 22.8582 7.3603 23.0225 8.32086L26.1589 26.663Z" stroke="var(--glacier-header-text)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M6.09888 5.88283V2.7022C6.09888 1.76221 6.86081 1 7.80108 1H19.758C20.6979 1 21.4602 1.76193 21.4602 2.7022V5.88283" stroke="var(--glacier-header-text)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M18.6253 18.1981H18.6132" stroke="var(--glacier-header-text)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16.25 12.5186H16.2379" stroke="var(--glacier-header-text)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M13.8752 18.1981H13.8631" stroke="var(--glacier-header-text)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M11.5 12.5186H11.4879" stroke="var(--glacier-header-text)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9.12406 18.1981H9.11307" stroke="var(--glacier-header-text)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16.2197 23.7571H16.2076" stroke="var(--glacier-header-text)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M20.9577 23.7571H20.9456" stroke="var(--glacier-header-text)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M11.4821 23.7571H11.47" stroke="var(--glacier-header-text)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M6.74347 23.7571H6.73248" stroke="var(--glacier-header-text)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg></span>Equipment<div class="wprm-decoration-line" style="border-color: var(--glacier-header-text);"></div><div class="wprm-header-toggle"><a role="button" aria-expanded="false" class="wprm-expandable-button wprm-expandable-button-show" style="color: var(--glacier-header-text)" aria-label="Show Section"><span class="wprm-recipe-icon wprm-collapsible-icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><g class="nc-icon-wrapper" stroke-width="1" fill="none" stroke="var(--glacier-header-text)" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"><polyline points="3.5,9.5 8,5 12.5,9.5 "></polyline></g></svg></span> </a><a role="button" aria-expanded="true" class="wprm-expandable-button wprm-expandable-button-hide" style="color: var(--glacier-header-text)" aria-label="Hide Section"><span class="wprm-recipe-icon wprm-collapsible-icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><g class="nc-icon-wrapper" stroke-width="1" fill="none" stroke="var(--glacier-header-text)" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"><polyline points="3.5,6.5 8,11 12.5,6.5 "></polyline></g></svg></span> </a></div></h3><div class="wprm-internal-container wprm-internal-container-equipment" style="background-color: var(--glacier-background);"><ul class="wprm-recipe-equipment wprm-recipe-equipment-list"><li class="wprm-recipe-equipment-item" style="list-style-type: none;margin-left: 32px;"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-16" class="wprm-checkbox" aria-label="Large mixing bowl"><label for="wprm-checkbox-16" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><div class="wprm-recipe-equipment-name"><a href="https://amzn.to/3fhWwpz" class="wprm-recipe-equipment-link" target="_blank">Large mixing bowl</a></div></li><li class="wprm-recipe-equipment-item" style="list-style-type: none;margin-left: 32px;"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-17" class="wprm-checkbox" aria-label="Electric hand mixer"><label for="wprm-checkbox-17" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><div class="wprm-recipe-equipment-name"><a href="https://amzn.to/3GnNEux" class="wprm-recipe-equipment-link" target="_blank">Electric hand mixer</a></div></li><li class="wprm-recipe-equipment-item" style="list-style-type: none;margin-left: 32px;"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-18" class="wprm-checkbox" aria-label="Rubber spatula"><label for="wprm-checkbox-18" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><div class="wprm-recipe-equipment-name"><a href="https://amzn.to/3GnPzPL" class="wprm-recipe-equipment-link" target="_blank">Rubber spatula</a></div></li><li class="wprm-recipe-equipment-item" style="list-style-type: none;margin-left: 32px;"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-19" class="wprm-checkbox" aria-label="Cake pan"><label for="wprm-checkbox-19" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><div class="wprm-recipe-equipment-name"><a href="https://amzn.to/3K6yzQc" class="wprm-recipe-equipment-link" target="_blank">Cake pan</a></div></li></ul></div></div>
<div id="recipe-5969-instructions" class="wprm-recipe-instructions-container wprm-recipe-5969-instructions-container wprm-block-text-normal" data-recipe="5969"><h3 class="wprm-recipe-header wprm-recipe-instructions-header wprm-block-text-bold wprm-align-left wprm-header-decoration-icon-line wprm-expandable-container-separated wprm-expandable-expanded" style="padding: 16px 20px;background-color: var(--glacier-header-background);"><span class="wprm-recipe-icon" aria-hidden="true"><svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20.28 26.2H8.52C6.16772 26.2 4.99172 26.2 4.0932 25.7422C3.30276 25.3396 2.66044 24.697 2.2578 23.9068C1.8 23.0083 1.8 21.8323 1.8 19.48V7.72C1.8 5.36772 1.8 4.19172 2.2578 3.2932C2.66044 2.50304 3.30304 1.86044 4.0932 1.4578C4.99172 1 6.16772 1 8.52 1H20.28C22.6323 1 23.8083 1 24.7068 1.4578C25.497 1.86044 26.1396 2.50304 26.5422 3.2932C27 4.19172 27 5.36772 27 7.72V19.48C27 21.8323 27 23.0083 26.5422 23.9068C26.1396 24.6972 25.497 25.3396 24.7068 25.7422C23.8083 26.2 22.6323 26.2 20.28 26.2Z" stroke="var(--glacier-header-text)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M27 8.9552H1.8" stroke="var(--glacier-header-text)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M6.76609 13.6001H21.9062V21.3586H6.76609V13.6001Z" stroke="var(--glacier-header-text)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M21.9131 5.18335H21.8991" stroke="var(--glacier-header-text)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M17.1836 5.18335H17.1696" stroke="var(--glacier-header-text)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg></span>Method<div class="wprm-decoration-line" style="border-color: var(--glacier-header-text);"></div><div class="wprm-header-toggle"><a role="button" aria-expanded="false" class="wprm-expandable-button wprm-expandable-button-show" style="color: var(--glacier-header-text)" aria-label="Show Section"><span class="wprm-recipe-icon wprm-collapsible-icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><g class="nc-icon-wrapper" stroke-width="1" fill="none" stroke="var(--glacier-header-text)" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"><polyline points="3.5,9.5 8,5 12.5,9.5 "></polyline></g></svg></span> </a><a role="button" aria-expanded="true" class="wprm-expandable-button wprm-expandable-button-hide" style="color: var(--glacier-header-text)" aria-label="Hide Section"><span class="wprm-recipe-icon wprm-collapsible-icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><g class="nc-icon-wrapper" stroke-width="1" fill="none" stroke="var(--glacier-header-text)" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"><polyline points="3.5,6.5 8,11 12.5,6.5 "></polyline></g></svg></span> </a></div></h3><div class="wprm-interactivity-container wprm-interactivity-container-instructions-before" style="justify-content: center;margin: 10px 0px 0px;"><div class="wprm-prevent-sleep wprm-toggle-switch-container" style="display:none;"><label id="wprm-toggle-switch-138698439" class="wprm-toggle-switch wprm-toggle-switch-rounded wprm-toggle-switch-inside"><input type="checkbox" id="wprm-prevent-sleep-checkbox-138698439" class="wprm-prevent-sleep-checkbox" /><span class="wprm-toggle-switch-slider" style="--switch-on-color: var(--glacier-interactivity-color);"><span class="wprm-toggle-switch-text"><span class="wprm-toggle-switch-off">Prevent Sleep Mode</span><span class="wprm-toggle-switch-on">Prevent Sleep Mode</span></span></span></label></div></div><div class="wprm-internal-container wprm-internal-container-instructions" style="background-color: var(--glacier-background);"><div class="wprm-recipe-instruction-group"><ol class="wprm-recipe-instructions"><li id="wprm-recipe-5969-step-0-0" class="wprm-recipe-instruction" style="list-style-type: decimal;margin-left: 20px;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 10px;"><span style="display: block;">Grease two 9-inch cake pans and preheat oven to 350F.</span></div></li><li id="wprm-recipe-5969-step-0-1" class="wprm-recipe-instruction" style="list-style-type: decimal;margin-left: 20px;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 10px;"><span style="display: block;">Then, add the flour, sugar, cocoa powder, baking powder, baking soda and teaspoon of salt to a large bowl and stir thoroughly. Next, add the milk, vegetable oil, eggs, and vanilla to your dry ingredient mixture. Combine together with a whisk or hand mixer on medium speed until thoroughly mixed. Once the mixture is thoroughly combined, slowly pour in your hot water until the batter is combined.</span></div></li><li id="wprm-recipe-5969-step-0-2" class="wprm-recipe-instruction" style="list-style-type: decimal;margin-left: 20px;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 10px;"><span style="display: block;">Pour even amounts of cake batter into the two prepared cake pans and bake for 30 to 35 minutes. Allow to cool thoroughly before frosting.</span></div></li></ol></div><div class="wprm-recipe-instruction-group"><div class="wprm-recipe-group-name wprm-recipe-instruction-group-name wprm-block-text-bold">Chocolate Buttercream Frosting</div><div class="wprm-spacer" style="height: 5px;"></div><ol class="wprm-recipe-instructions"><li id="wprm-recipe-5969-step-1-0" class="wprm-recipe-instruction" style="list-style-type: decimal;margin-left: 20px;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 10px;"><span style="display: block;">In a large bowl, cream together the cocoa powder and butter until thoroughly combined.</span></div></li><li id="wprm-recipe-5969-step-1-1" class="wprm-recipe-instruction" style="list-style-type: decimal;margin-left: 20px;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 10px;"><span style="display: block;">Then, in small batches of 1 cup, add in the confectioner’s sugar with about 1-2 tablespoons of cream and mix on high speed with a hand mixer. Repeat this until you have added all of your cream and confectioner’s sugar, then add the vanilla extract and combined thoroughly.</span></div></li></ol></div></div></div>
<h3 class="wprm-recipe-header wprm-recipe-nutrition-header wprm-block-text-bold wprm-align-left wprm-header-decoration-icon-line wprm-expandable-container-separated wprm-expandable-expanded" style="padding: 16px 20px;background-color: var(--glacier-header-background);"><span class="wprm-recipe-icon" aria-hidden="true"><svg width="20" height="30" viewBox="0 0 20 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18.8873 21.6797C18.8873 23.8034 18.147 25.7541 16.9106 27.2878C16.0358 28.3728 14.7134 29.0001 13.3199 29.0001H6.58493C5.23094 29.0001 3.93232 28.4169 3.06771 27.376C1.7431 25.7801 0.958729 23.7242 1.00168 21.5068C1.05141 18.9141 2.20309 16.5926 4.00805 14.99C5.49767 13.6676 6.2696 11.7101 6.1385 9.72203C6.13285 9.63839 6.13059 9.55362 6.13059 9.46886C6.13059 7.3644 7.83721 5.65552 9.94393 5.65552C12.0506 5.65552 13.7573 7.3644 13.7573 9.46886C13.7573 9.57623 13.7527 9.68247 13.7437 9.78758C13.5798 11.7779 14.4467 13.6981 15.9307 15.0352C17.7458 16.6717 18.8873 19.0418 18.8873 21.6797Z" stroke="var(--glacier-header-text)" stroke-width="2" stroke-miterlimit="10"/>
<path d="M5.4277 1C5.4277 1 9.94517 2.19577 9.94517 5.65535" stroke="var(--glacier-header-text)" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round"/>
</svg></span>Nutrition<div class="wprm-decoration-line" style="border-color: var(--glacier-header-text);"></div><div class="wprm-header-toggle"><a role="button" aria-expanded="false" class="wprm-expandable-button wprm-expandable-button-show" style="color: var(--glacier-header-text)" aria-label="Show Section"><span class="wprm-recipe-icon wprm-collapsible-icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><g class="nc-icon-wrapper" stroke-width="1" fill="none" stroke="var(--glacier-header-text)" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"><polyline points="3.5,9.5 8,5 12.5,9.5 "></polyline></g></svg></span> </a><a role="button" aria-expanded="true" class="wprm-expandable-button wprm-expandable-button-hide" style="color: var(--glacier-header-text)" aria-label="Hide Section"><span class="wprm-recipe-icon wprm-collapsible-icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><g class="nc-icon-wrapper" stroke-width="1" fill="none" stroke="var(--glacier-header-text)" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"><polyline points="3.5,6.5 8,11 12.5,6.5 "></polyline></g></svg></span> </a></div></h3><div class="wprm-nutrition-label-container wprm-nutrition-label-container-grouped wprm-block-text-normal" style="text-align: left;"><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-calories"style="flex-basis: 250px"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-normal" style="color: #333333">Calories</span><span class="wprm-nutrition-label-text-nutrition-value" style="color: var(--glacier-accent-color)">541</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: var(--glacier-accent-color)">kcal</span></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-carbohydrates"style="flex-basis: 250px"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-normal" style="color: #333333">Carbohydrates</span><span class="wprm-nutrition-label-text-nutrition-value" style="color: var(--glacier-accent-color)">106</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: var(--glacier-accent-color)">g</span></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-protein"style="flex-basis: 250px"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-normal" style="color: #333333">Protein</span><span class="wprm-nutrition-label-text-nutrition-value" style="color: var(--glacier-accent-color)">12</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: var(--glacier-accent-color)">g</span></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-fat"style="flex-basis: 250px"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-normal" style="color: #333333">Fat</span><span class="wprm-nutrition-label-text-nutrition-value" style="color: var(--glacier-accent-color)">31</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: var(--glacier-accent-color)">g</span></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-saturated_fat"style="flex-basis: 250px"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-normal" style="color: #333333">Saturated Fat</span><span class="wprm-nutrition-label-text-nutrition-value" style="color: var(--glacier-accent-color)">11</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: var(--glacier-accent-color)">g</span></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-cholesterol"style="flex-basis: 250px"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-normal" style="color: #333333">Cholesterol</span><span class="wprm-nutrition-label-text-nutrition-value" style="color: var(--glacier-accent-color)">37</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: var(--glacier-accent-color)">mg</span></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-sodium"style="flex-basis: 250px"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-normal" style="color: #333333">Sodium</span><span class="wprm-nutrition-label-text-nutrition-value" style="color: var(--glacier-accent-color)">407</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: var(--glacier-accent-color)">mg</span></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-potassium"style="flex-basis: 250px"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-normal" style="color: #333333">Potassium</span><span class="wprm-nutrition-label-text-nutrition-value" style="color: var(--glacier-accent-color)">181</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: var(--glacier-accent-color)">mg</span></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-fiber"style="flex-basis: 250px"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-normal" style="color: #333333">Fiber</span><span class="wprm-nutrition-label-text-nutrition-value" style="color: var(--glacier-accent-color)">3</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: var(--glacier-accent-color)">g</span></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-sugar"style="flex-basis: 250px"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-normal" style="color: #333333">Sugar</span><span class="wprm-nutrition-label-text-nutrition-value" style="color: var(--glacier-accent-color)">33</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: var(--glacier-accent-color)">g</span></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-vitamin_a"style="flex-basis: 250px"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-normal" style="color: #333333">Vitamin A</span><span class="wprm-nutrition-label-text-nutrition-value" style="color: var(--glacier-accent-color)">210</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: var(--glacier-accent-color)">IU</span></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-vitamin_c"style="flex-basis: 250px"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-normal" style="color: #333333">Vitamin C</span><span class="wprm-nutrition-label-text-nutrition-value" style="color: var(--glacier-accent-color)">1</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: var(--glacier-accent-color)">mg</span></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-calcium"style="flex-basis: 250px"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-normal" style="color: #333333">Calcium</span><span class="wprm-nutrition-label-text-nutrition-value" style="color: var(--glacier-accent-color)">126</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: var(--glacier-accent-color)">mg</span></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-iron"style="flex-basis: 250px"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-normal" style="color: #333333">Iron</span><span class="wprm-nutrition-label-text-nutrition-value" style="color: var(--glacier-accent-color)">4</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: var(--glacier-accent-color)">mg</span></span></div>
<div id="recipe-video"></div>
<h3 class="wprm-recipe-header wprm-recipe-private-notes-header wprm-block-text-bold wprm-align-left wprm-header-decoration-icon-line wprm-expandable-container-separated wprm-expandable-expanded" style="padding: 16px 20px;background-color: var(--glacier-header-background);"><span class="wprm-recipe-icon" aria-hidden="true"><svg width="25" height="23" viewBox="0 0 25 23" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M11.0178 3.44104C11.492 3.37093 11.9811 3.33333 12.4848 3.33333C18.4407 3.33333 22.3489 8.58898 23.6619 10.6679C23.8208 10.9196 23.9002 11.0453 23.9447 11.2395C23.9781 11.3852 23.978 11.6152 23.9447 11.7609C23.9001 11.9549 23.8202 12.0816 23.6601 12.3349C23.3102 12.8884 22.7769 13.6666 22.0703 14.5106M6.32941 5.33421C3.807 7.04532 2.09456 9.42263 1.309 10.6662C1.14937 10.9189 1.06955 11.0452 1.02507 11.2392C0.991655 11.385 0.991644 11.6148 1.02503 11.7606C1.06951 11.9546 1.14896 12.0804 1.30786 12.3321C2.62084 14.4111 6.52902 19.6667 12.4848 19.6667C14.8863 19.6667 16.9549 18.8122 18.6546 17.656M1.98486 1L22.9848 22M10.01 9.02513C9.37661 9.65853 8.98486 10.5335 8.98486 11.5C8.98486 13.433 10.5519 15 12.4848 15C13.4513 15 14.3263 14.6082 14.9597 13.9748" stroke="var(--glacier-header-text)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg></span>Private Notes<div class="wprm-decoration-line" style="border-color: var(--glacier-header-text);"></div><div class="wprm-header-toggle"><a role="button" aria-expanded="false" class="wprm-expandable-button wprm-expandable-button-show" style="color: var(--glacier-header-text)" aria-label="Show Section"><span class="wprm-recipe-icon wprm-collapsible-icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><g class="nc-icon-wrapper" stroke-width="1" fill="none" stroke="var(--glacier-header-text)" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"><polyline points="3.5,9.5 8,5 12.5,9.5 "></polyline></g></svg></span> </a><a role="button" aria-expanded="true" class="wprm-expandable-button wprm-expandable-button-hide" style="color: var(--glacier-header-text)" aria-label="Hide Section"><span class="wprm-recipe-icon wprm-collapsible-icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><g class="nc-icon-wrapper" stroke-width="1" fill="none" stroke="var(--glacier-header-text)" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"><polyline points="3.5,6.5 8,11 12.5,6.5 "></polyline></g></svg></span> </a></div></h3><div class="wprm-private-notes-container wprm-block-text-normal" data-recipe="5969"><div class="wprm-private-notes-placeholder"><a href="#" role="button">Click here to add your own private notes.</a></div><div class="wprm-private-notes-user"></div><textarea class="wprm-private-notes-input" aria-label="Your own private notes about this recipe"></textarea></div>
<div class="wprm-call-to-action wprm-call-to-action-simple" style="color: #ffffff;background-color: #000000;margin: 20px;padding-top: 30px;padding-bottom: 30px;"><span class="wprm-recipe-icon wprm-call-to-action-icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><g class="nc-icon-wrapper" stroke-width="1" fill="#ffffff" stroke="#ffffff"><path fill="none" stroke="#ffffff" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M11.5,0.5 C9.982,0.5,8.678,1.355,8,2.601C7.322,1.355,6.018,0.5,4.5,0.5c-2.209,0-4,1.791-4,4c0,4,7.5,11,7.5,11s7.5-7,7.5-11 C15.5,2.291,13.709,0.5,11.5,0.5z" data-cap="butt"/> </g></svg></span> <span class="wprm-call-to-action-text-container"><span class="wprm-call-to-action-header" style="color: #ffffff;">Tried this recipe?</span><span class="wprm-call-to-action-text"><a href="#comment" target="_self" style="color: #ffffff">Let us know</a> how it was!</span></span></div></div></div>
<h3 class="wp-block-heading">More chocolate cake recipes:</h3>
<ul class="wp-block-list list-style-similar">
<li><a href="https://www.cordonbleu.edu/news/chocolate-genoa-cake-recipe/en" target="_blank" rel="noopener noreferrer">Chocolate Genoa Cake</a></li>
<li><a href="https://www.escoffier.edu/blog/recipes/flourless-chocolate-cake/" target="_blank" rel="noopener noreferrer">Flourless Chocolate Cake</a></li>
<li><a href="https://www.ice.edu/blog/peanut-butter-and-jelly-chocolate-cake" target="_blank" rel="noopener noreferrer">Peanut Butter and Jelly Chocolate Cake</a></li>
<li><a href="http://www-scf.usc.edu/~eunbyuak/itp104/howto.html" target="_blank" rel="noopener noreferrer">Making Chocolate Cake</a></li>
</ul>
<div class="howtocook-recipes-sets">
<div class="howtocook-recipes-outer">
<div class="howtocook-recipes-inner">
<h5>Classic Recipes</h5>
<ul>
<li><a href="https://www.howtocook.recipes/classic-pot-roast-recipe/">Soul Food Pot Roast</a></li>
<li><a href="https://www.howtocook.recipes/best-classic-meatloaf-recipe/">Meatloaf Temp And Time</a></li>
<li><a href="https://www.howtocook.recipes/authentic-carnitas-recipe/">Authentic Mexican Carnitas Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-waffle-recipe/">Make Waffle Mix</a></li>
<li><a href="https://www.howtocook.recipes/classic-maryland-crab-cake-recipe/">Baked Crab Cake Recipe</a></li>
<li><a href="https://www.howtocook.recipes/classic-alfredo-sauce-recipe/">Fettuccine Sauce From Scratch</a></li>
<li><a href="https://www.howtocook.recipes/classic-homemade-cheesecake-recipe/">Easy Homemade Cheesecake Recipe</a></li>
<li><a href="https://www.howtocook.recipes/authentic-chicken-enchilada-recipe/">Authentic Mexican Enchilada Recipe</a></li>
</ul>
</div>
<div class="howtocook-recipes-inner">
<h5>Perfect Recipes</h5>
<ul>
<li><a href="https://www.howtocook.recipes/perfect-pork-tenderloin-recipe/">Perfect Pork Tenderloin</a></li>
<li><a href="https://www.howtocook.recipes/the-perfect-baked-potato-recipe/">Temp And Time Baked Potato</a></li>
<li><a href="https://www.howtocook.recipes/perfect-avocado-toast-recipe/">Easy Avocado Toast</a></li>
<li><a href="https://www.howtocook.recipes/perfect-goulash-recipe/">Goulash Videos</a></li>
<li><a href="https://www.howtocook.recipes/perfect-crepe-recipe/">Classic Crepe Recipe</a></li>
<li><a href="https://www.howtocook.recipes/the-perfect-hard-boiled-egg-recipe/">No Fail Hard Boiled Eggs</a></li>
<li><a href="https://www.howtocook.recipes/best-brownie-recipe-from-scratch/">Bake From Scratch Brownies</a></li>
<li><a href="https://www.howtocook.recipes/the-best-traditional-chili-recipe/">How To Make Homemade Chili From Scratch</a></li>
</ul>
</div>
<div class="howtocook-recipes-inner">
<h5>Homemade Recipes</h5>
<ul>
<li><a href="https://www.howtocook.recipes/easy-banana-bread-recipe/">Quick And Easy Banana Bread Recipe</a></li>
<li><a href="https://www.howtocook.recipes/homemade-ground-turkey-recipe/">How To Cook Ground Turkey</a></li>
<li><a href="https://www.howtocook.recipes/homemade-chicken-parmesan-recipe/">Homemade Chicken Parmesan</a></li>
<li><a href="https://www.howtocook.recipes/easy-chicken-salad-recipe/">How Do You Make Chicken Salad From Scratch</a></li>
<li><a href="https://www.howtocook.recipes/best-homemade-meatball-recipe/">How To Make Meatballs Step By Step</a></li>
<li><a href="https://www.howtocook.recipes/best-homemade-pancake-recipe/">How To Make Pancakes Step By Step</a></li>
<li><a href="https://www.howtocook.recipes/best-homemade-lasagna-recipe/">How Long Does It Take To Cook Lasagna</a></li>
<li><a href="https://www.howtocook.recipes/homemade-honey-baked-ham-recipe/">Can You Freeze Honey Baked Ham</a></li>
</ul>
</div>
<div class="howtocook-recipes-inner">
<h5>Easy Recipes</h5>
<ul>
<li><a href="https://www.howtocook.recipes/roasted-potatoes-recipe/">How To Soak Potatoes</a></li>
<li><a href="https://www.howtocook.recipes/asparagus-recipe/">Best Way To Prepare Asparagus</a></li>
<li><a href="https://www.howtocook.recipes/how-to-make-buttermilk/">Can You Make Homemade Buttermilk</a></li>
<li><a href="https://www.howtocook.recipes/">Learning To Cook Recipes</a></li>
<li><a href="https://www.howtocook.recipes/stir-fry-recipe/">Homemade Stir Fry</a></li>
<li><a href="https://www.howtocook.recipes/buttery-flaky-pie-crust-recipe/">Buttery Flaky Pie Crust</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-98235bf e-con-full e-flex e-con e-child" data-id="98235bf" data-element_type="container">
<div class="elementor-element elementor-element-544b858 e-con-full e-flex e-con e-child" data-id="544b858" data-element_type="container">
<div class="elementor-element elementor-element-4e1cc60 e-con-full e-flex e-con e-child" data-id="4e1cc60" data-element_type="container">
<div class="elementor-element elementor-element-de9a9a9 elementor-widget elementor-widget-heading" data-id="de9a9a9" data-element_type="widget" data-widget_type="heading.default">
<h2 class="elementor-heading-title elementor-size-default">Tagged as</h2> </div>
<div class="elementor-element elementor-element-22fe224 e-con-full e-flex e-con e-child" data-id="22fe224" data-element_type="container">
<div class="elementor-element elementor-element-bf51156 elementor-widget elementor-widget-heading" data-id="bf51156" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-heading-title elementor-size-default"><a href="https://www.howtocook.recipes/category/desserts/" rel="tag">Desserts</a></div> </div>
<div class="elementor-element elementor-element-a2437cc elementor-widget elementor-widget-heading" data-id="a2437cc" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-heading-title elementor-size-default"><a href="https://www.howtocook.recipes/tag/cake/" rel="tag">cake</a><a href="https://www.howtocook.recipes/tag/chocolate/" rel="tag">chocolate</a><a href="https://www.howtocook.recipes/tag/dessert/" rel="tag">dessert</a></div> </div>
</div>
</div>
<div class="elementor-element elementor-element-58c98dc e-con-full e-flex e-con e-child" data-id="58c98dc" data-element_type="container">
<div class="elementor-element elementor-element-90afaf6 elementor-widget elementor-widget-heading" data-id="90afaf6" data-element_type="widget" data-widget_type="heading.default">
<h6 class="elementor-heading-title elementor-size-default">Share this recipe:</h6> </div>
<div class="elementor-element elementor-element-013abef elementor-share-buttons--view-icon elementor-share-buttons--shape-rounded elementor-share-buttons--skin-gradient elementor-grid-0 elementor-share-buttons--color-official elementor-widget elementor-widget-share-buttons" data-id="013abef" data-element_type="widget" data-widget_type="share-buttons.default">
<div class="elementor-grid" role="list">
<div class="elementor-grid-item" role="listitem">
<div class="elementor-share-btn elementor-share-btn_facebook" role="button" tabindex="0" aria-label="Share on facebook">
<span class="elementor-share-btn__icon">
<svg aria-hidden="true" class="e-font-icon-svg e-fab-facebook" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.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.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z"></path></svg> </span>
</div>
</div>
<div class="elementor-grid-item" role="listitem">
<div class="elementor-share-btn elementor-share-btn_twitter" role="button" tabindex="0" aria-label="Share on twitter">
<span class="elementor-share-btn__icon">
<svg aria-hidden="true" class="e-font-icon-svg e-fab-twitter" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"></path></svg> </span>
</div>
</div>
<div class="elementor-grid-item" role="listitem">
<div class="elementor-share-btn elementor-share-btn_linkedin" role="button" tabindex="0" aria-label="Share on linkedin">
<span class="elementor-share-btn__icon">
<svg aria-hidden="true" class="e-font-icon-svg e-fab-linkedin" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z"></path></svg> </span>
</div>
</div>
<div class="elementor-grid-item" role="listitem">
<div class="elementor-share-btn elementor-share-btn_pinterest" role="button" tabindex="0" aria-label="Share on pinterest">
<span class="elementor-share-btn__icon">
<svg aria-hidden="true" class="e-font-icon-svg e-fab-pinterest" viewBox="0 0 496 512" xmlns="http://www.w3.org/2000/svg"><path 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></svg> </span>
</div>
</div>
<div class="elementor-grid-item" role="listitem">
<div class="elementor-share-btn elementor-share-btn_email" role="button" tabindex="0" aria-label="Share on email">
<span class="elementor-share-btn__icon">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-envelope" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"></path></svg> </span>
</div>
</div>
<div class="elementor-grid-item" role="listitem">
<div class="elementor-share-btn elementor-share-btn_whatsapp" role="button" tabindex="0" aria-label="Share on whatsapp">
<span class="elementor-share-btn__icon">
<svg aria-hidden="true" class="e-font-icon-svg e-fab-whatsapp" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"></path></svg> </span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-a230ca0 e-con-full e-flex e-con e-child" data-id="a230ca0" data-element_type="container">
<div class="elementor-element elementor-element-d4a0d33 comment-data elementor-widget elementor-widget-post-comments" data-id="d4a0d33" data-element_type="widget" data-widget_type="post-comments.theme_comments">
<section id="comments" class="comments-area">
<div class="wprm-user-rating-summary">
<div class="wprm-user-rating-summary-stars"><style>#wprm-recipe-user-rating-2 .wprm-rating-star.wprm-rating-star-full svg * { fill: #343434; }#wprm-recipe-user-rating-2 .wprm-rating-star.wprm-rating-star-33 svg * { fill: url(#wprm-recipe-user-rating-2-33); }#wprm-recipe-user-rating-2 .wprm-rating-star.wprm-rating-star-50 svg * { fill: url(#wprm-recipe-user-rating-2-50); }#wprm-recipe-user-rating-2 .wprm-rating-star.wprm-rating-star-66 svg * { fill: url(#wprm-recipe-user-rating-2-66); }linearGradient#wprm-recipe-user-rating-2-33 stop { stop-color: #343434; }linearGradient#wprm-recipe-user-rating-2-50 stop { stop-color: #343434; }linearGradient#wprm-recipe-user-rating-2-66 stop { stop-color: #343434; }</style><svg xmlns="http://www.w3.org/2000/svg" width="0" height="0" style="display:block;width:0px;height:0px"><defs><linearGradient id="wprm-recipe-user-rating-2-33"><stop offset="0%" stop-opacity="1" /><stop offset="33%" stop-opacity="1" /><stop offset="33%" stop-opacity="0" /><stop offset="100%" stop-opacity="0" /></linearGradient></defs><defs><linearGradient id="wprm-recipe-user-rating-2-50"><stop offset="0%" stop-opacity="1" /><stop offset="50%" stop-opacity="1" /><stop offset="50%" stop-opacity="0" /><stop offset="100%" stop-opacity="0" /></linearGradient></defs><defs><linearGradient id="wprm-recipe-user-rating-2-66"><stop offset="0%" stop-opacity="1" /><stop offset="66%" stop-opacity="1" /><stop offset="66%" stop-opacity="0" /><stop offset="100%" stop-opacity="0" /></linearGradient></defs></svg><div id="wprm-recipe-user-rating-2" class="wprm-recipe-rating wprm-recipe-rating-recipe-summary wprm-user-rating"><span class="wprm-rating-star wprm-rating-star-1 wprm-rating-star-full" data-rating="1" data-color="#343434" style="font-size: 18px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#343434" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"/></g></svg></span><span class="wprm-rating-star wprm-rating-star-2 wprm-rating-star-full" data-rating="2" data-color="#343434" style="font-size: 18px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#343434" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"/></g></svg></span><span class="wprm-rating-star wprm-rating-star-3 wprm-rating-star-full" data-rating="3" data-color="#343434" style="font-size: 18px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#343434" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"/></g></svg></span><span class="wprm-rating-star wprm-rating-star-4 wprm-rating-star-full" data-rating="4" data-color="#343434" style="font-size: 18px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#343434" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"/></g></svg></span><span class="wprm-rating-star wprm-rating-star-5 wprm-rating-star-full" data-rating="5" data-color="#343434" style="font-size: 18px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#343434" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"/></g></svg></span></div></div>
<div class="wprm-user-rating-summary-details">
5 from 1 vote (<a href="#" role="button" class="wprm-user-rating-summary-details-no-comments" data-modal-uid="2" data-recipe-id="5969" data-post-id="5904">1 rating without comment</a>)
</div>
</div>
<div id="respond" class="comment-respond">
<h2 id="reply-title" class="comment-reply-title">Leave a Reply <small><a rel="nofollow" id="cancel-comment-reply-link" href="/classic-chocolate-cake-recipe/#respond" style="display:none;">Cancel reply</a></small></h2><form action="https://www.howtocook.recipes/wp-comments-post.php?wpe-comment-post=howtocookrecip" method="post" id="commentform" class="comment-form"><p class="comment-notes"><span id="email-notes">Your email address will not be published.</span> <span class="required-field-message">Required fields are marked <span class="required">*</span></span></p><p class="comment-form-comment"><label for="comment">Comment <span class="required">*</span></label> <textarea id="comment" name="comment" cols="45" rows="8" maxlength="65525" required></textarea></p><div class="comment-form-wprm-rating">
<label for="wprm-comment-rating-1763858762">Recipe Rating</label> <span class="wprm-rating-stars">
<fieldset class="wprm-comment-ratings-container" data-original-rating="0" data-current-rating="0">
<legend>Recipe Rating</legend>
<input aria-label="Don't rate this recipe" name="wprm-comment-rating" value="0" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="margin-left: -21px !important; width: 24px !important; height: 24px !important;" checked="checked"><span aria-hidden="true" style="width: 120px !important; height: 24px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="106.666666667px" height="16px" viewBox="0 0 160 32">
<defs>
<path class="wprm-star-empty" id="wprm-star-0" fill="none" stroke="#343434" stroke-width="2" stroke-linejoin="round" d="M11.99,1.94c-.35,0-.67.19-.83.51l-2.56,5.2c-.11.24-.34.4-.61.43l-5.75.83c-.35.05-.64.3-.74.64-.11.34,0,.7.22.94l4.16,4.05c.19.19.27.45.22.7l-.98,5.72c-.06.35.1.7.37.9.29.21.66.24.98.08l5.14-2.71h0c.24-.13.51-.13.75,0l5.14,2.71c.32.16.69.13.98-.08.29-.21.43-.56.37-.9l-.98-5.72h0c-.05-.26.05-.53.22-.7l4.16-4.05h0c.26-.24.34-.61.22-.94s-.4-.58-.74-.64l-5.75-.83c-.26-.03-.48-.21-.61-.43l-2.56-5.2c-.16-.32-.48-.53-.83-.51,0,0-.02,0-.02,0Z"/>
</defs>
<use xlink:href="#wprm-star-0" x="4" y="4" />
<use xlink:href="#wprm-star-0" x="36" y="4" />
<use xlink:href="#wprm-star-0" x="68" y="4" />
<use xlink:href="#wprm-star-0" x="100" y="4" />
<use xlink:href="#wprm-star-0" x="132" y="4" />
</svg></span><br><input aria-label="Rate this recipe 1 out of 5 stars" name="wprm-comment-rating" value="1" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 24px !important; height: 24px !important;"><span aria-hidden="true" style="width: 120px !important; height: 24px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="106.666666667px" height="16px" viewBox="0 0 160 32">
<defs>
<path class="wprm-star-empty" id="wprm-star-empty-1" fill="none" stroke="#343434" stroke-width="2" stroke-linejoin="round" d="M11.99,1.94c-.35,0-.67.19-.83.51l-2.56,5.2c-.11.24-.34.4-.61.43l-5.75.83c-.35.05-.64.3-.74.64-.11.34,0,.7.22.94l4.16,4.05c.19.19.27.45.22.7l-.98,5.72c-.06.35.1.7.37.9.29.21.66.24.98.08l5.14-2.71h0c.24-.13.51-.13.75,0l5.14,2.71c.32.16.69.13.98-.08.29-.21.43-.56.37-.9l-.98-5.72h0c-.05-.26.05-.53.22-.7l4.16-4.05h0c.26-.24.34-.61.22-.94s-.4-.58-.74-.64l-5.75-.83c-.26-.03-.48-.21-.61-.43l-2.56-5.2c-.16-.32-.48-.53-.83-.51,0,0-.02,0-.02,0Z"/>
<path class="wprm-star-full" id="wprm-star-full-1" fill="#343434" stroke="#343434" stroke-width="2" stroke-linejoin="round" d="M11.99,1.94c-.35,0-.67.19-.83.51l-2.56,5.2c-.11.24-.34.4-.61.43l-5.75.83c-.35.05-.64.3-.74.64-.11.34,0,.7.22.94l4.16,4.05c.19.19.27.45.22.7l-.98,5.72c-.06.35.1.7.37.9.29.21.66.24.98.08l5.14-2.71h0c.24-.13.51-.13.75,0l5.14,2.71c.32.16.69.13.98-.08.29-.21.43-.56.37-.9l-.98-5.72h0c-.05-.26.05-.53.22-.7l4.16-4.05h0c.26-.24.34-.61.22-.94s-.4-.58-.74-.64l-5.75-.83c-.26-.03-.48-.21-.61-.43l-2.56-5.2c-.16-.32-.48-.53-.83-.51,0,0-.02,0-.02,0Z"/>
</defs>
<use xlink:href="#wprm-star-full-1" x="4" y="4" />
<use xlink:href="#wprm-star-empty-1" x="36" y="4" />
<use xlink:href="#wprm-star-empty-1" x="68" y="4" />
<use xlink:href="#wprm-star-empty-1" x="100" y="4" />
<use xlink:href="#wprm-star-empty-1" x="132" y="4" />
</svg></span><br><input aria-label="Rate this recipe 2 out of 5 stars" name="wprm-comment-rating" value="2" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 24px !important; height: 24px !important;"><span aria-hidden="true" style="width: 120px !important; height: 24px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="106.666666667px" height="16px" viewBox="0 0 160 32">
<defs>
<path class="wprm-star-empty" id="wprm-star-empty-2" fill="none" stroke="#343434" stroke-width="2" stroke-linejoin="round" d="M11.99,1.94c-.35,0-.67.19-.83.51l-2.56,5.2c-.11.24-.34.4-.61.43l-5.75.83c-.35.05-.64.3-.74.64-.11.34,0,.7.22.94l4.16,4.05c.19.19.27.45.22.7l-.98,5.72c-.06.35.1.7.37.9.29.21.66.24.98.08l5.14-2.71h0c.24-.13.51-.13.75,0l5.14,2.71c.32.16.69.13.98-.08.29-.21.43-.56.37-.9l-.98-5.72h0c-.05-.26.05-.53.22-.7l4.16-4.05h0c.26-.24.34-.61.22-.94s-.4-.58-.74-.64l-5.75-.83c-.26-.03-.48-.21-.61-.43l-2.56-5.2c-.16-.32-.48-.53-.83-.51,0,0-.02,0-.02,0Z"/>
<path class="wprm-star-full" id="wprm-star-full-2" fill="#343434" stroke="#343434" stroke-width="2" stroke-linejoin="round" d="M11.99,1.94c-.35,0-.67.19-.83.51l-2.56,5.2c-.11.24-.34.4-.61.43l-5.75.83c-.35.05-.64.3-.74.64-.11.34,0,.7.22.94l4.16,4.05c.19.19.27.45.22.7l-.98,5.72c-.06.35.1.7.37.9.29.21.66.24.98.08l5.14-2.71h0c.24-.13.51-.13.75,0l5.14,2.71c.32.16.69.13.98-.08.29-.21.43-.56.37-.9l-.98-5.72h0c-.05-.26.05-.53.22-.7l4.16-4.05h0c.26-.24.34-.61.22-.94s-.4-.58-.74-.64l-5.75-.83c-.26-.03-.48-.21-.61-.43l-2.56-5.2c-.16-.32-.48-.53-.83-.51,0,0-.02,0-.02,0Z"/>
</defs>
<use xlink:href="#wprm-star-full-2" x="4" y="4" />
<use xlink:href="#wprm-star-full-2" x="36" y="4" />
<use xlink:href="#wprm-star-empty-2" x="68" y="4" />
<use xlink:href="#wprm-star-empty-2" x="100" y="4" />
<use xlink:href="#wprm-star-empty-2" x="132" y="4" />
</svg></span><br><input aria-label="Rate this recipe 3 out of 5 stars" name="wprm-comment-rating" value="3" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 24px !important; height: 24px !important;"><span aria-hidden="true" style="width: 120px !important; height: 24px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="106.666666667px" height="16px" viewBox="0 0 160 32">
<defs>
<path class="wprm-star-empty" id="wprm-star-empty-3" fill="none" stroke="#343434" stroke-width="2" stroke-linejoin="round" d="M11.99,1.94c-.35,0-.67.19-.83.51l-2.56,5.2c-.11.24-.34.4-.61.43l-5.75.83c-.35.05-.64.3-.74.64-.11.34,0,.7.22.94l4.16,4.05c.19.19.27.45.22.7l-.98,5.72c-.06.35.1.7.37.9.29.21.66.24.98.08l5.14-2.71h0c.24-.13.51-.13.75,0l5.14,2.71c.32.16.69.13.98-.08.29-.21.43-.56.37-.9l-.98-5.72h0c-.05-.26.05-.53.22-.7l4.16-4.05h0c.26-.24.34-.61.22-.94s-.4-.58-.74-.64l-5.75-.83c-.26-.03-.48-.21-.61-.43l-2.56-5.2c-.16-.32-.48-.53-.83-.51,0,0-.02,0-.02,0Z"/>
<path class="wprm-star-full" id="wprm-star-full-3" fill="#343434" stroke="#343434" stroke-width="2" stroke-linejoin="round" d="M11.99,1.94c-.35,0-.67.19-.83.51l-2.56,5.2c-.11.24-.34.4-.61.43l-5.75.83c-.35.05-.64.3-.74.64-.11.34,0,.7.22.94l4.16,4.05c.19.19.27.45.22.7l-.98,5.72c-.06.35.1.7.37.9.29.21.66.24.98.08l5.14-2.71h0c.24-.13.51-.13.75,0l5.14,2.71c.32.16.69.13.98-.08.29-.21.43-.56.37-.9l-.98-5.72h0c-.05-.26.05-.53.22-.7l4.16-4.05h0c.26-.24.34-.61.22-.94s-.4-.58-.74-.64l-5.75-.83c-.26-.03-.48-.21-.61-.43l-2.56-5.2c-.16-.32-.48-.53-.83-.51,0,0-.02,0-.02,0Z"/>
</defs>
<use xlink:href="#wprm-star-full-3" x="4" y="4" />
<use xlink:href="#wprm-star-full-3" x="36" y="4" />
<use xlink:href="#wprm-star-full-3" x="68" y="4" />
<use xlink:href="#wprm-star-empty-3" x="100" y="4" />
<use xlink:href="#wprm-star-empty-3" x="132" y="4" />
</svg></span><br><input aria-label="Rate this recipe 4 out of 5 stars" name="wprm-comment-rating" value="4" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 24px !important; height: 24px !important;"><span aria-hidden="true" style="width: 120px !important; height: 24px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="106.666666667px" height="16px" viewBox="0 0 160 32">
<defs>
<path class="wprm-star-empty" id="wprm-star-empty-4" fill="none" stroke="#343434" stroke-width="2" stroke-linejoin="round" d="M11.99,1.94c-.35,0-.67.19-.83.51l-2.56,5.2c-.11.24-.34.4-.61.43l-5.75.83c-.35.05-.64.3-.74.64-.11.34,0,.7.22.94l4.16,4.05c.19.19.27.45.22.7l-.98,5.72c-.06.35.1.7.37.9.29.21.66.24.98.08l5.14-2.71h0c.24-.13.51-.13.75,0l5.14,2.71c.32.16.69.13.98-.08.29-.21.43-.56.37-.9l-.98-5.72h0c-.05-.26.05-.53.22-.7l4.16-4.05h0c.26-.24.34-.61.22-.94s-.4-.58-.74-.64l-5.75-.83c-.26-.03-.48-.21-.61-.43l-2.56-5.2c-.16-.32-.48-.53-.83-.51,0,0-.02,0-.02,0Z"/>
<path class="wprm-star-full" id="wprm-star-full-4" fill="#343434" stroke="#343434" stroke-width="2" stroke-linejoin="round" d="M11.99,1.94c-.35,0-.67.19-.83.51l-2.56,5.2c-.11.24-.34.4-.61.43l-5.75.83c-.35.05-.64.3-.74.64-.11.34,0,.7.22.94l4.16,4.05c.19.19.27.45.22.7l-.98,5.72c-.06.35.1.7.37.9.29.21.66.24.98.08l5.14-2.71h0c.24-.13.51-.13.75,0l5.14,2.71c.32.16.69.13.98-.08.29-.21.43-.56.37-.9l-.98-5.72h0c-.05-.26.05-.53.22-.7l4.16-4.05h0c.26-.24.34-.61.22-.94s-.4-.58-.74-.64l-5.75-.83c-.26-.03-.48-.21-.61-.43l-2.56-5.2c-.16-.32-.48-.53-.83-.51,0,0-.02,0-.02,0Z"/>
</defs>
<use xlink:href="#wprm-star-full-4" x="4" y="4" />
<use xlink:href="#wprm-star-full-4" x="36" y="4" />
<use xlink:href="#wprm-star-full-4" x="68" y="4" />
<use xlink:href="#wprm-star-full-4" x="100" y="4" />
<use xlink:href="#wprm-star-empty-4" x="132" y="4" />
</svg></span><br><input aria-label="Rate this recipe 5 out of 5 stars" name="wprm-comment-rating" value="5" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" id="wprm-comment-rating-1763858762" style="width: 24px !important; height: 24px !important;"><span aria-hidden="true" style="width: 120px !important; height: 24px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="106.666666667px" height="16px" viewBox="0 0 160 32">
<defs>
<path class="wprm-star-full" id="wprm-star-5" fill="#343434" stroke="#343434" stroke-width="2" stroke-linejoin="round" d="M11.99,1.94c-.35,0-.67.19-.83.51l-2.56,5.2c-.11.24-.34.4-.61.43l-5.75.83c-.35.05-.64.3-.74.64-.11.34,0,.7.22.94l4.16,4.05c.19.19.27.45.22.7l-.98,5.72c-.06.35.1.7.37.9.29.21.66.24.98.08l5.14-2.71h0c.24-.13.51-.13.75,0l5.14,2.71c.32.16.69.13.98-.08.29-.21.43-.56.37-.9l-.98-5.72h0c-.05-.26.05-.53.22-.7l4.16-4.05h0c.26-.24.34-.61.22-.94s-.4-.58-.74-.64l-5.75-.83c-.26-.03-.48-.21-.61-.43l-2.56-5.2c-.16-.32-.48-.53-.83-.51,0,0-.02,0-.02,0Z"/>
</defs>
<use xlink:href="#wprm-star-5" x="4" y="4" />
<use xlink:href="#wprm-star-5" x="36" y="4" />
<use xlink:href="#wprm-star-5" x="68" y="4" />
<use xlink:href="#wprm-star-5" x="100" y="4" />
<use xlink:href="#wprm-star-5" x="132" y="4" />
</svg></span> </fieldset>
</span>
</div>
<p class="comment-form-author"><label for="author">Name <span class="required">*</span></label> <input id="author" name="author" type="text" value="" size="30" maxlength="245" autocomplete="name" required /></p>
<p class="comment-form-email"><label for="email">Email <span class="required">*</span></label> <input id="email" name="email" type="email" value="" size="30" maxlength="100" aria-describedby="email-notes" autocomplete="email" required /></p>
<p class="comment-form-url"><label for="url">Website</label> <input id="url" name="url" type="url" value="" size="30" maxlength="200" autocomplete="url" /></p>
<p class="comment-form-cookies-consent"><input id="wp-comment-cookies-consent" name="wp-comment-cookies-consent" type="checkbox" value="yes" /> <label for="wp-comment-cookies-consent">Save my name, email, and website in this browser for the next time I comment.</label></p>
<p class="form-submit"><input name="submit" type="submit" id="submit" class="submit" value="Post Comment" /> <input type='hidden' name='comment_post_ID' value='5904' id='comment_post_ID' />
<input type='hidden' name='comment_parent' id='comment_parent' value='0' />
</p></form> </div><!-- #respond -->
</section>
</div>
</div>
</div>
<div class="elementor-element elementor-element-a60fb6d e-con-full e-flex e-con e-child" data-id="a60fb6d" data-element_type="container">
<div class="elementor-element elementor-element-27f53bb elementor-widget elementor-widget-template" data-id="27f53bb" data-element_type="widget" data-widget_type="template.default">
<div class="elementor-widget-container">
<div class="elementor-template">
<div data-elementor-type="container" data-elementor-id="10118" class="elementor elementor-10118" data-elementor-post-type="elementor_library">
<div class="elementor-element elementor-element-2cf2f56 e-con-full e-flex e-con e-parent" data-id="2cf2f56" data-element_type="container">
<div class="elementor-element elementor-element-8adfeaa e-con-full e-flex e-con e-child" data-id="8adfeaa" data-element_type="container">
<div class="elementor-element elementor-element-da769cb elementor-widget elementor-widget-template" data-id="da769cb" data-element_type="widget" data-widget_type="template.default">
<div class="elementor-widget-container">
<div class="elementor-template">
<div data-elementor-type="container" data-elementor-id="10026" class="elementor elementor-10026" data-elementor-post-type="elementor_library">
<div class="elementor-element elementor-element-3717c0b e-con-full e-flex e-con e-parent" data-id="3717c0b" data-element_type="container" data-settings="{"background_background":"classic"}">
<div class="elementor-element elementor-element-6ac5eca elementor-widget elementor-widget-heading" data-id="6ac5eca" data-element_type="widget" data-widget_type="heading.default">
<h2 class="elementor-heading-title elementor-size-default">Hi, I’m Megan Miller!</h2> </div>
<div class="elementor-element elementor-element-e85c960 elementor-widget elementor-widget-image" data-id="e85c960" data-element_type="widget" data-widget_type="image.default">
<img width="232" height="230" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAOgAAADmAQAAAAD32PSlAAAAAnRSTlMAAHaTzTgAAAAeSURBVFjD7cEBDQAAAMKg909tDjegAAAAAAAA4NsAGvQAARSXj9oAAAAASUVORK5CYII=" class="attachment-medium size-medium wp-image-5035 lazyload" alt="" data-src="https://www.howtocook.recipes/wp-content/uploads/2020/08/profile-photo.png" decoding="async" data-srcset="https://www.howtocook.recipes/wp-content/uploads/2020/08/profile-photo.png 232w, https://www.howtocook.recipes/wp-content/uploads/2020/08/profile-photo-150x150.png 150w, https://www.howtocook.recipes/wp-content/uploads/2020/08/profile-photo-175x173.png 175w" data-sizes="auto" data-eio-rwidth="232" data-eio-rheight="230" /><noscript><img width="232" height="230" src="https://www.howtocook.recipes/wp-content/uploads/2020/08/profile-photo.png" class="attachment-medium size-medium wp-image-5035" alt="" srcset="https://www.howtocook.recipes/wp-content/uploads/2020/08/profile-photo.png 232w, https://www.howtocook.recipes/wp-content/uploads/2020/08/profile-photo-150x150.png 150w, https://www.howtocook.recipes/wp-content/uploads/2020/08/profile-photo-175x173.png 175w" sizes="(max-width: 232px) 100vw, 232px" data-eio="l" /></noscript> </div>
<div class="elementor-element elementor-element-c7ceb72 e-grid-align-left e-grid-align-tablet-center elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="c7ceb72" data-element_type="widget" data-widget_type="social-icons.default">
<div class="elementor-social-icons-wrapper elementor-grid" role="list">
<span class="elementor-grid-item" role="listitem">
<a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-fc03ade" href="https://www.facebook.com/howtocook_recipes/" target="_blank">
<span class="elementor-screen-only">Facebook</span>
<svg aria-hidden="true" class="e-font-icon-svg e-fab-facebook" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.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.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z"></path></svg> </a>
</span>
<span class="elementor-grid-item" role="listitem">
<a class="elementor-icon elementor-social-icon elementor-social-icon-instagram elementor-repeater-item-17a8936" href="https://www.instagram.com/howtocook_recipes/" target="_blank">
<span class="elementor-screen-only">Instagram</span>
<svg aria-hidden="true" class="e-font-icon-svg e-fab-instagram" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path 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></svg> </a>
</span>
<span class="elementor-grid-item" role="listitem">
<a class="elementor-icon elementor-social-icon elementor-social-icon-pinterest elementor-repeater-item-ca3c115" href="https://www.pinterest.com/HowToCook_Recipes/" target="_blank">
<span class="elementor-screen-only">Pinterest</span>
<svg aria-hidden="true" class="e-font-icon-svg e-fab-pinterest" viewBox="0 0 496 512" xmlns="http://www.w3.org/2000/svg"><path 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></svg> </a>
</span>
<span class="elementor-grid-item" role="listitem">
<a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-cda987f" href="https://www.youtube.com/channel/UC_qgSLUu0rapURdICKUW0Kg/" target="_blank">
<span class="elementor-screen-only">Youtube</span>
<svg aria-hidden="true" class="e-font-icon-svg e-fab-youtube" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"></path></svg> </a>
</span>
</div>
</div>
<div class="elementor-element elementor-element-55c9581 elementor-widget elementor-widget-text-editor" data-id="55c9581" data-element_type="widget" data-widget_type="text-editor.default">
<p>I’m a mom of two, food and wine lover, and recipe creation enthusiast. Good food brings families together. Which is why I’m devoted to sharing my best recipes your family will LOVE!</p> </div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-0d51bcb e-con-full e-flex e-con e-child" data-id="0d51bcb" data-element_type="container">
<div class="elementor-element elementor-element-6298536 elementor-widget elementor-widget-heading" data-id="6298536" data-element_type="widget" data-widget_type="heading.default">
<h2 class="elementor-heading-title elementor-size-default">Readers Favorite</h2> </div>
<div class="elementor-element elementor-element-c843634 elementor-grid-1 elementor-grid-tablet-1 elementor-grid-mobile-1 elementor-widget elementor-widget-loop-grid" data-id="c843634" data-element_type="widget" data-settings="{"template_id":"10050","columns":1,"row_gap":{"unit":"px","size":16,"sizes":[]},"columns_tablet":1,"_skin":"post","columns_mobile":"1","edit_handle_selector":"[data-elementor-type=\"loop-item\"]","row_gap_tablet":{"unit":"px","size":"","sizes":[]},"row_gap_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="loop-grid.post">
<div class="elementor-widget-container">
<div class="elementor-loop-container elementor-grid" role="list">
<style id="loop-10050">.elementor-10050 .elementor-element.elementor-element-a663f87{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-image-box .elementor-image-box-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-widget-image-box:has(:hover) .elementor-image-box-title,
.elementor-widget-image-box:has(:focus) .elementor-image-box-title{color:var( --e-global-color-primary );}.elementor-widget-image-box .elementor-image-box-description{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );line-height:var( --e-global-typography-text-line-height );color:var( --e-global-color-text );}.elementor-10050 .elementor-element.elementor-element-b9b7bd9 .elementor-image-box-wrapper{text-align:left;}.elementor-10050 .elementor-element.elementor-element-b9b7bd9.elementor-position-right .elementor-image-box-img{margin-left:20px;}.elementor-10050 .elementor-element.elementor-element-b9b7bd9.elementor-position-left .elementor-image-box-img{margin-right:20px;}.elementor-10050 .elementor-element.elementor-element-b9b7bd9.elementor-position-top .elementor-image-box-img{margin-bottom:20px;}.elementor-10050 .elementor-element.elementor-element-b9b7bd9 .elementor-image-box-title{margin-bottom:0px;font-family:var( --e-global-typography-04dc914-font-family ), Sans-serif;font-size:var( --e-global-typography-04dc914-font-size );font-weight:var( --e-global-typography-04dc914-font-weight );line-height:var( --e-global-typography-04dc914-line-height );}.elementor-10050 .elementor-element.elementor-element-b9b7bd9 .elementor-image-box-wrapper .elementor-image-box-img{width:150px;}.elementor-10050 .elementor-element.elementor-element-b9b7bd9 .elementor-image-box-img img{height:100px;object-fit:cover;object-position:center center;transition-duration:0.3s;}.elementor-10050 .elementor-element.elementor-element-b9b7bd9:has(:hover) .elementor-image-box-title,
.elementor-10050 .elementor-element.elementor-element-b9b7bd9:has(:focus) .elementor-image-box-title{color:var( --e-global-color-accent );}@media(max-width:1024px){.elementor-widget-image-box .elementor-image-box-description{font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );}.elementor-10050 .elementor-element.elementor-element-b9b7bd9.elementor-position-right .elementor-image-box-img{margin-left:0px;}.elementor-10050 .elementor-element.elementor-element-b9b7bd9.elementor-position-left .elementor-image-box-img{margin-right:0px;}.elementor-10050 .elementor-element.elementor-element-b9b7bd9.elementor-position-top .elementor-image-box-img{margin-bottom:0px;}.elementor-10050 .elementor-element.elementor-element-b9b7bd9 .elementor-image-box-wrapper .elementor-image-box-img{width:100px;}.elementor-10050 .elementor-element.elementor-element-b9b7bd9 .elementor-image-box-img img{height:75px;object-fit:cover;}.elementor-10050 .elementor-element.elementor-element-b9b7bd9 .elementor-image-box-title{font-size:var( --e-global-typography-04dc914-font-size );line-height:var( --e-global-typography-04dc914-line-height );}}@media(max-width:767px){.elementor-widget-image-box .elementor-image-box-description{font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );}.elementor-10050 .elementor-element.elementor-element-b9b7bd9 .elementor-image-box-img{margin-bottom:0px;}.elementor-10050 .elementor-element.elementor-element-b9b7bd9 .elementor-image-box-wrapper .elementor-image-box-img{width:100px;}.elementor-10050 .elementor-element.elementor-element-b9b7bd9 .elementor-image-box-img img{height:100px;}.elementor-10050 .elementor-element.elementor-element-b9b7bd9 .elementor-image-box-title{font-size:var( --e-global-typography-04dc914-font-size );line-height:var( --e-global-typography-04dc914-line-height );}}</style> <div data-elementor-type="loop-item" data-elementor-id="10050" class="elementor elementor-10050 e-loop-item e-loop-item-8554 post-8554 post type-post status-publish format-standard has-post-thumbnail hentry category-chili-recipes tag-featured tag-popular" data-elementor-post-type="elementor_library" data-custom-edit-handle="1">
<div class="elementor-element elementor-element-a663f87 e-con-full e-flex e-con e-parent" data-id="a663f87" data-element_type="container">
<div class="elementor-element elementor-element-b9b7bd9 elementor-position-left elementor-vertical-align-middle elementor-position-left elementor-vertical-align-middle elementor-widget elementor-widget-image-box" data-id="b9b7bd9" data-element_type="widget" data-widget_type="image-box.default">
<div class="elementor-image-box-wrapper"><figure class="elementor-image-box-img"><a href="https://www.howtocook.recipes/homemade-chile-relleno-recipe/" tabindex="-1"><img width="150" height="150" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJYAAACWAQAAAAAUekxPAAAAAnRSTlMAAHaTzTgAAAAaSURBVEjH7cExAQAAAMKg9U9tDQ+gAACAdwMLuAABXZHjmQAAAABJRU5ErkJggg==" class="attachment-thumbnail size-thumbnail wp-image-8538 lazyload" alt="chile relleno recipe" data-src="https://www.howtocook.recipes/wp-content/uploads/2022/04/Chile-relleno-recipe-150x150.jpg" decoding="async" data-eio-rwidth="150" data-eio-rheight="150" /><noscript><img width="150" height="150" src="https://www.howtocook.recipes/wp-content/uploads/2022/04/Chile-relleno-recipe-150x150.jpg" class="attachment-thumbnail size-thumbnail wp-image-8538" alt="chile relleno recipe" data-eio="l" /></noscript></a></figure><div class="elementor-image-box-content"><div class="elementor-image-box-title"><a href="https://www.howtocook.recipes/homemade-chile-relleno-recipe/">Homemade Chile Relleno Recipe</a></div></div></div> </div>
</div>
</div>
<div data-elementor-type="loop-item" data-elementor-id="10050" class="elementor elementor-10050 e-loop-item e-loop-item-9492 post-9492 post type-post status-publish format-standard has-post-thumbnail hentry category-chili-recipes tag-featured tag-popular" data-elementor-post-type="elementor_library" data-custom-edit-handle="1">
<div class="elementor-element elementor-element-a663f87 e-con-full e-flex e-con e-parent" data-id="a663f87" data-element_type="container">
<div class="elementor-element elementor-element-b9b7bd9 elementor-position-left elementor-vertical-align-middle elementor-position-left elementor-vertical-align-middle elementor-widget elementor-widget-image-box" data-id="b9b7bd9" data-element_type="widget" data-widget_type="image-box.default">
<div class="elementor-image-box-wrapper"><figure class="elementor-image-box-img"><a href="https://www.howtocook.recipes/classic-white-chicken-chili-recipe-2/" tabindex="-1"><img width="150" height="150" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJYAAACWAQAAAAAUekxPAAAAAnRSTlMAAHaTzTgAAAAaSURBVEjH7cExAQAAAMKg9U9tDQ+gAACAdwMLuAABXZHjmQAAAABJRU5ErkJggg==" class="attachment-thumbnail size-thumbnail wp-image-9563 lazyload" alt="White chicken chili recipe" data-src="https://www.howtocook.recipes/wp-content/uploads/2022/04/White-chicken-chili-recipe-150x150.jpg" decoding="async" data-eio-rwidth="150" data-eio-rheight="150" /><noscript><img width="150" height="150" src="https://www.howtocook.recipes/wp-content/uploads/2022/04/White-chicken-chili-recipe-150x150.jpg" class="attachment-thumbnail size-thumbnail wp-image-9563" alt="White chicken chili recipe" data-eio="l" /></noscript></a></figure><div class="elementor-image-box-content"><div class="elementor-image-box-title"><a href="https://www.howtocook.recipes/classic-white-chicken-chili-recipe-2/">Classic White Chicken Chili Recipe</a></div></div></div> </div>
</div>
</div>
<div data-elementor-type="loop-item" data-elementor-id="10050" class="elementor elementor-10050 e-loop-item e-loop-item-9493 post-9493 post type-post status-publish format-standard has-post-thumbnail hentry category-chili-recipes tag-featured tag-popular" data-elementor-post-type="elementor_library" data-custom-edit-handle="1">
<div class="elementor-element elementor-element-a663f87 e-con-full e-flex e-con e-parent" data-id="a663f87" data-element_type="container">
<div class="elementor-element elementor-element-b9b7bd9 elementor-position-left elementor-vertical-align-middle elementor-position-left elementor-vertical-align-middle elementor-widget elementor-widget-image-box" data-id="b9b7bd9" data-element_type="widget" data-widget_type="image-box.default">
<div class="elementor-image-box-wrapper"><figure class="elementor-image-box-img"><a href="https://www.howtocook.recipes/classic-turkey-chili-recipe/" tabindex="-1"><img width="150" height="150" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJYAAACWAQAAAAAUekxPAAAAAnRSTlMAAHaTzTgAAAAaSURBVEjH7cExAQAAAMKg9U9tDQ+gAACAdwMLuAABXZHjmQAAAABJRU5ErkJggg==" class="attachment-thumbnail size-thumbnail wp-image-9564 lazyload" alt="turkey chili recipe" data-src="https://www.howtocook.recipes/wp-content/uploads/2022/04/Turkey-chili-recipe-150x150.jpg" decoding="async" data-eio-rwidth="150" data-eio-rheight="150" /><noscript><img width="150" height="150" src="https://www.howtocook.recipes/wp-content/uploads/2022/04/Turkey-chili-recipe-150x150.jpg" class="attachment-thumbnail size-thumbnail wp-image-9564" alt="turkey chili recipe" data-eio="l" /></noscript></a></figure><div class="elementor-image-box-content"><div class="elementor-image-box-title"><a href="https://www.howtocook.recipes/classic-turkey-chili-recipe/">Classic Turkey Chili Recipe</a></div></div></div> </div>
</div>
</div>
<div data-elementor-type="loop-item" data-elementor-id="10050" class="elementor elementor-10050 e-loop-item e-loop-item-9494 post-9494 post type-post status-publish format-standard has-post-thumbnail hentry category-chili-recipes category-meatless-chili tag-featured tag-popular" data-elementor-post-type="elementor_library" data-custom-edit-handle="1">
<div class="elementor-element elementor-element-a663f87 e-con-full e-flex e-con e-parent" data-id="a663f87" data-element_type="container">
<div class="elementor-element elementor-element-b9b7bd9 elementor-position-left elementor-vertical-align-middle elementor-position-left elementor-vertical-align-middle elementor-widget elementor-widget-image-box" data-id="b9b7bd9" data-element_type="widget" data-widget_type="image-box.default">
<div class="elementor-image-box-wrapper"><figure class="elementor-image-box-img"><a href="https://www.howtocook.recipes/homemade-vegetarian-chili-recipe/" tabindex="-1"><img width="150" height="150" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJYAAACWAQAAAAAUekxPAAAAAnRSTlMAAHaTzTgAAAAaSURBVEjH7cExAQAAAMKg9U9tDQ+gAACAdwMLuAABXZHjmQAAAABJRU5ErkJggg==" class="attachment-thumbnail size-thumbnail wp-image-9566 lazyload" alt="Vegetarian chili recipe" data-src="https://www.howtocook.recipes/wp-content/uploads/2022/04/Vegetarian-chili-recipe-150x150.jpg" decoding="async" data-eio-rwidth="150" data-eio-rheight="150" /><noscript><img width="150" height="150" src="https://www.howtocook.recipes/wp-content/uploads/2022/04/Vegetarian-chili-recipe-150x150.jpg" class="attachment-thumbnail size-thumbnail wp-image-9566" alt="Vegetarian chili recipe" data-eio="l" /></noscript></a></figure><div class="elementor-image-box-content"><div class="elementor-image-box-title"><a href="https://www.howtocook.recipes/homemade-vegetarian-chili-recipe/">Homemade Vegetarian Chili Recipe</a></div></div></div> </div>
</div>
</div>
<div data-elementor-type="loop-item" data-elementor-id="10050" class="elementor elementor-10050 e-loop-item e-loop-item-9490 post-9490 post type-post status-publish format-standard has-post-thumbnail hentry category-chili-recipes tag-featured tag-popular" data-elementor-post-type="elementor_library" data-custom-edit-handle="1">
<div class="elementor-element elementor-element-a663f87 e-con-full e-flex e-con e-parent" data-id="a663f87" data-element_type="container">
<div class="elementor-element elementor-element-b9b7bd9 elementor-position-left elementor-vertical-align-middle elementor-position-left elementor-vertical-align-middle elementor-widget elementor-widget-image-box" data-id="b9b7bd9" data-element_type="widget" data-widget_type="image-box.default">
<div class="elementor-image-box-wrapper"><figure class="elementor-image-box-img"><a href="https://www.howtocook.recipes/classic-chili-recipe/" tabindex="-1"><img width="150" height="150" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJYAAACWAQAAAAAUekxPAAAAAnRSTlMAAHaTzTgAAAAaSURBVEjH7cExAQAAAMKg9U9tDQ+gAACAdwMLuAABXZHjmQAAAABJRU5ErkJggg==" class="attachment-thumbnail size-thumbnail wp-image-9560 lazyload" alt="Chili recipe" data-src="https://www.howtocook.recipes/wp-content/uploads/2022/04/Chili-recipe-150x150.jpg" decoding="async" data-eio-rwidth="150" data-eio-rheight="150" /><noscript><img width="150" height="150" src="https://www.howtocook.recipes/wp-content/uploads/2022/04/Chili-recipe-150x150.jpg" class="attachment-thumbnail size-thumbnail wp-image-9560" alt="Chili recipe" data-eio="l" /></noscript></a></figure><div class="elementor-image-box-content"><div class="elementor-image-box-title"><a href="https://www.howtocook.recipes/classic-chili-recipe/">Classic Chili Recipe</a></div></div></div> </div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-9671747 e-con-full e-flex e-con e-child" data-id="9671747" data-element_type="container" data-settings="{"background_background":"classic"}">
<div class="elementor-element elementor-element-7440be5 elementor-widget elementor-widget-heading" data-id="7440be5" data-element_type="widget" data-widget_type="heading.default">
<h3 class="elementor-heading-title elementor-size-default">Never miss a recipe</h3> </div>
<div class="elementor-element elementor-element-328fb1a elementor-button-align-stretch elementor-widget elementor-widget-form" data-id="328fb1a" data-element_type="widget" data-settings="{"step_next_label":"Next","step_previous_label":"Previous","button_width":"100","step_type":"number_text","step_icon_shape":"circle"}" data-widget_type="form.default">
<form class="elementor-form" method="post" name="Newsletter" aria-label="Newsletter">
<input type="hidden" name="post_id" value="10118"/>
<input type="hidden" name="form_id" value="328fb1a"/>
<input type="hidden" name="referer_title" value="Classic Chocolate Cake Recipe (step-by-step video) | How To Cook.Recipes" />
<input type="hidden" name="queried_id" value="5904"/>
<div class="elementor-form-fields-wrapper elementor-labels-">
<div class="elementor-field-type-email elementor-field-group elementor-column elementor-field-group-email elementor-col-100 elementor-field-required">
<label for="form-field-email" class="elementor-field-label elementor-screen-only">
Email </label>
<input size="1" type="email" name="form_fields[email]" id="form-field-email" class="elementor-field elementor-size-md elementor-field-textual" placeholder="Your email address" required="required">
</div>
<div class="elementor-field-group elementor-column elementor-field-type-submit elementor-col-100 e-form__buttons">
<button class="elementor-button elementor-size-md" type="submit" id="subscribebutton">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">Subscribe</span>
</span>
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-e4cced3 regularpad e-flex e-con-boxed e-con e-parent" data-id="e4cced3" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-46651c1 e-con-full regcol e-flex e-con e-child" data-id="46651c1" data-element_type="container">
<div class="elementor-element elementor-element-3245752 e-con-full e-flex e-con e-child" data-id="3245752" data-element_type="container">
<div class="elementor-element elementor-element-8ce831f e-con-full e-flex e-con e-child" data-id="8ce831f" data-element_type="container">
<div class="elementor-element elementor-element-01c0c37 elementor-widget elementor-widget-heading" data-id="01c0c37" data-element_type="widget" data-widget_type="heading.default">
<h2 class="elementor-heading-title elementor-size-default">Related <span class="cursive">Receipes</span></h2> </div>
</div>
<div class="elementor-element elementor-element-80debcb elementor-arrows-position-inside elementor-widget elementor-widget-loop-carousel" data-id="80debcb" data-element_type="widget" data-settings="{"template_id":"9776","slides_to_show":"4","image_spacing_custom":{"unit":"px","size":20,"sizes":[]},"_skin":"post","slides_to_show_tablet":"2","slides_to_show_mobile":"1","slides_to_scroll":"1","edit_handle_selector":".elementor-loop-container","infinite":"yes","speed":500,"offset_sides":"none","arrows":"yes","image_spacing_custom_tablet":{"unit":"px","size":"","sizes":[]},"image_spacing_custom_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="loop-carousel.post">
<div class="swiper elementor-loop-container elementor-grid" role="list" dir="ltr">
<div class="swiper-wrapper" aria-live="polite">
<style id="loop-9776">.elementor-9776 .elementor-element.elementor-element-b6746ba{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:flex-end;--align-items:center;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-widget-theme-post-featured-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );line-height:var( --e-global-typography-text-line-height );}.elementor-9776 .elementor-element.elementor-element-6f88df6{--display:flex;--justify-content:flex-start;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-9776 .elementor-element.elementor-element-6c2c2bd .elementor-heading-title{font-family:var( --e-global-typography-7a00f63-font-family ), Sans-serif;font-size:var( --e-global-typography-7a00f63-font-size );font-weight:var( --e-global-typography-7a00f63-font-weight );text-transform:var( --e-global-typography-7a00f63-text-transform );letter-spacing:var( --e-global-typography-7a00f63-letter-spacing );color:var( --e-global-color-f3c0287 );}.elementor-widget-theme-post-title .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-9776 .elementor-element.elementor-element-706af03{text-align:center;}.elementor-9776 .elementor-element.elementor-element-706af03 .elementor-heading-title{font-family:var( --e-global-typography-3653db9-font-family ), Sans-serif;font-size:var( --e-global-typography-3653db9-font-size );font-weight:var( --e-global-typography-3653db9-font-weight );line-height:var( --e-global-typography-3653db9-line-height );color:var( --e-global-color-f3c0287 );}@media(max-width:1024px){.elementor-widget-theme-post-featured-image .widget-image-caption{font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );}.elementor-9776 .elementor-element.elementor-element-6c2c2bd .elementor-heading-title{font-size:var( --e-global-typography-7a00f63-font-size );letter-spacing:var( --e-global-typography-7a00f63-letter-spacing );}.elementor-9776 .elementor-element.elementor-element-706af03 .elementor-heading-title{font-size:var( --e-global-typography-3653db9-font-size );line-height:var( --e-global-typography-3653db9-line-height );}}@media(max-width:767px){.elementor-widget-theme-post-featured-image .widget-image-caption{font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );}.elementor-9776 .elementor-element.elementor-element-6c2c2bd .elementor-heading-title{font-size:var( --e-global-typography-7a00f63-font-size );letter-spacing:var( --e-global-typography-7a00f63-letter-spacing );}.elementor-9776 .elementor-element.elementor-element-706af03 .elementor-heading-title{font-size:var( --e-global-typography-3653db9-font-size );line-height:var( --e-global-typography-3653db9-line-height );}}</style> <div data-elementor-type="loop-item" data-elementor-id="9776" class="elementor elementor-9776 swiper-slide e-loop-item e-loop-item-8649 post-8649 post type-post status-publish format-standard has-post-thumbnail hentry category-desserts tag-dessert" data-elementor-post-type="elementor_library" role="group" aria-roledescription="slide" data-custom-edit-handle="1">
<a class="elementor-element elementor-element-b6746ba e-con-full recipe-card e-flex e-con e-parent" data-id="b6746ba" data-element_type="container" href="https://www.howtocook.recipes/classic-red-velvet-cake-recipe/">
<div class="elementor-element elementor-element-70bae5d elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image" data-id="70bae5d" data-element_type="widget" data-widget_type="theme-post-featured-image.default">
<img width="500" height="500" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAfQAAAH0AQAAAADjreInAAAAAnRSTlMAAHaTzTgAAAA1SURBVHja7cExAQAAAMKg9U/tYQ2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG59AAABgyKozQAAAABJRU5ErkJggg==" class="attachment-medium_large size-medium_large wp-image-8630 lazyload" alt="Red velvet cake recipe" data-src="https://www.howtocook.recipes/wp-content/uploads/2022/04/Red-velvet-cake-recipe.jpg" decoding="async" data-srcset="https://www.howtocook.recipes/wp-content/uploads/2022/04/Red-velvet-cake-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2022/04/Red-velvet-cake-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2022/04/Red-velvet-cake-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2022/04/Red-velvet-cake-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2022/04/Red-velvet-cake-recipe-450x450.jpg 450w" data-sizes="auto" data-eio-rwidth="500" data-eio-rheight="500" /><noscript><img width="500" height="500" src="https://www.howtocook.recipes/wp-content/uploads/2022/04/Red-velvet-cake-recipe.jpg" class="attachment-medium_large size-medium_large wp-image-8630" alt="Red velvet cake recipe" srcset="https://www.howtocook.recipes/wp-content/uploads/2022/04/Red-velvet-cake-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2022/04/Red-velvet-cake-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2022/04/Red-velvet-cake-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2022/04/Red-velvet-cake-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2022/04/Red-velvet-cake-recipe-450x450.jpg 450w" sizes="(max-width: 500px) 100vw, 500px" data-eio="l" /></noscript> </div>
<div class="elementor-element elementor-element-6f88df6 e-con-full card-data boxpad e-flex e-con e-child" data-id="6f88df6" data-element_type="container">
<div class="elementor-element elementor-element-6c2c2bd elementor-widget elementor-widget-heading" data-id="6c2c2bd" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-heading-title elementor-size-default">Desserts</div> </div>
<div class="elementor-element elementor-element-706af03 elementor-widget elementor-widget-theme-post-title elementor-page-title elementor-widget-heading" data-id="706af03" data-element_type="widget" data-widget_type="theme-post-title.default">
<h3 class="elementor-heading-title elementor-size-default">Classic Red Velvet Cake Recipe</h3> </div>
</div>
</a>
</div>
<div data-elementor-type="loop-item" data-elementor-id="9776" class="elementor elementor-9776 swiper-slide e-loop-item e-loop-item-8614 post-8614 post type-post status-publish format-standard has-post-thumbnail hentry category-desserts tag-dessert" data-elementor-post-type="elementor_library" role="group" aria-roledescription="slide" data-custom-edit-handle="1">
<a class="elementor-element elementor-element-b6746ba e-con-full recipe-card e-flex e-con e-parent" data-id="b6746ba" data-element_type="container" href="https://www.howtocook.recipes/classic-baklava-recipe/">
<div class="elementor-element elementor-element-70bae5d elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image" data-id="70bae5d" data-element_type="widget" data-widget_type="theme-post-featured-image.default">
<img width="500" height="500" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAfQAAAH0AQAAAADjreInAAAAAnRSTlMAAHaTzTgAAAA1SURBVHja7cExAQAAAMKg9U/tYQ2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG59AAABgyKozQAAAABJRU5ErkJggg==" class="attachment-medium_large size-medium_large wp-image-8591 lazyload" alt="Baklava recipe" data-src="https://www.howtocook.recipes/wp-content/uploads/2022/03/Baklava-recipe.jpg" decoding="async" data-srcset="https://www.howtocook.recipes/wp-content/uploads/2022/03/Baklava-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2022/03/Baklava-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2022/03/Baklava-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2022/03/Baklava-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2022/03/Baklava-recipe-450x450.jpg 450w" data-sizes="auto" data-eio-rwidth="500" data-eio-rheight="500" /><noscript><img width="500" height="500" src="https://www.howtocook.recipes/wp-content/uploads/2022/03/Baklava-recipe.jpg" class="attachment-medium_large size-medium_large wp-image-8591" alt="Baklava recipe" srcset="https://www.howtocook.recipes/wp-content/uploads/2022/03/Baklava-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2022/03/Baklava-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2022/03/Baklava-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2022/03/Baklava-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2022/03/Baklava-recipe-450x450.jpg 450w" sizes="(max-width: 500px) 100vw, 500px" data-eio="l" /></noscript> </div>
<div class="elementor-element elementor-element-6f88df6 e-con-full card-data boxpad e-flex e-con e-child" data-id="6f88df6" data-element_type="container">
<div class="elementor-element elementor-element-6c2c2bd elementor-widget elementor-widget-heading" data-id="6c2c2bd" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-heading-title elementor-size-default">Desserts</div> </div>
<div class="elementor-element elementor-element-706af03 elementor-widget elementor-widget-theme-post-title elementor-page-title elementor-widget-heading" data-id="706af03" data-element_type="widget" data-widget_type="theme-post-title.default">
<h3 class="elementor-heading-title elementor-size-default">Classic Baklava Recipe</h3> </div>
</div>
</a>
</div>
<div data-elementor-type="loop-item" data-elementor-id="9776" class="elementor elementor-9776 swiper-slide e-loop-item e-loop-item-8544 post-8544 post type-post status-publish format-standard has-post-thumbnail hentry category-desserts category-dips tag-dessert" data-elementor-post-type="elementor_library" role="group" aria-roledescription="slide" data-custom-edit-handle="1">
<a class="elementor-element elementor-element-b6746ba e-con-full recipe-card e-flex e-con e-parent" data-id="b6746ba" data-element_type="container" href="https://www.howtocook.recipes/homemade-lemon-curd-recipe/">
<div class="elementor-element elementor-element-70bae5d elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image" data-id="70bae5d" data-element_type="widget" data-widget_type="theme-post-featured-image.default">
<img width="500" height="500" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAfQAAAH0AQAAAADjreInAAAAAnRSTlMAAHaTzTgAAAA1SURBVHja7cExAQAAAMKg9U/tYQ2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG59AAABgyKozQAAAABJRU5ErkJggg==" class="attachment-medium_large size-medium_large wp-image-8555 lazyload" alt="Lemon curd recipe" data-src="https://www.howtocook.recipes/wp-content/uploads/2022/02/Lemon-curd-recipe.jpg" decoding="async" data-srcset="https://www.howtocook.recipes/wp-content/uploads/2022/02/Lemon-curd-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2022/02/Lemon-curd-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2022/02/Lemon-curd-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2022/02/Lemon-curd-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2022/02/Lemon-curd-recipe-450x450.jpg 450w" data-sizes="auto" data-eio-rwidth="500" data-eio-rheight="500" /><noscript><img width="500" height="500" src="https://www.howtocook.recipes/wp-content/uploads/2022/02/Lemon-curd-recipe.jpg" class="attachment-medium_large size-medium_large wp-image-8555" alt="Lemon curd recipe" srcset="https://www.howtocook.recipes/wp-content/uploads/2022/02/Lemon-curd-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2022/02/Lemon-curd-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2022/02/Lemon-curd-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2022/02/Lemon-curd-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2022/02/Lemon-curd-recipe-450x450.jpg 450w" sizes="(max-width: 500px) 100vw, 500px" data-eio="l" /></noscript> </div>
<div class="elementor-element elementor-element-6f88df6 e-con-full card-data boxpad e-flex e-con e-child" data-id="6f88df6" data-element_type="container">
<div class="elementor-element elementor-element-6c2c2bd elementor-widget elementor-widget-heading" data-id="6c2c2bd" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-heading-title elementor-size-default">Desserts</div> </div>
<div class="elementor-element elementor-element-706af03 elementor-widget elementor-widget-theme-post-title elementor-page-title elementor-widget-heading" data-id="706af03" data-element_type="widget" data-widget_type="theme-post-title.default">
<h3 class="elementor-heading-title elementor-size-default">Homemade Lemon Curd Recipe</h3> </div>
</div>
</a>
</div>
<div data-elementor-type="loop-item" data-elementor-id="9776" class="elementor elementor-9776 swiper-slide e-loop-item e-loop-item-8515 post-8515 post type-post status-publish format-standard has-post-thumbnail hentry category-desserts tag-dessert" data-elementor-post-type="elementor_library" role="group" aria-roledescription="slide" data-custom-edit-handle="1">
<a class="elementor-element elementor-element-b6746ba e-con-full recipe-card e-flex e-con e-parent" data-id="b6746ba" data-element_type="container" href="https://www.howtocook.recipes/homemade-funnel-cake-recipe/">
<div class="elementor-element elementor-element-70bae5d elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image" data-id="70bae5d" data-element_type="widget" data-widget_type="theme-post-featured-image.default">
<img width="500" height="500" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAfQAAAH0AQAAAADjreInAAAAAnRSTlMAAHaTzTgAAAA1SURBVHja7cExAQAAAMKg9U/tYQ2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG59AAABgyKozQAAAABJRU5ErkJggg==" class="attachment-medium_large size-medium_large wp-image-8503 lazyload" alt="Funnel cake recipe" data-src="https://www.howtocook.recipes/wp-content/uploads/2022/02/Funnel-cake-recipe.jpg" decoding="async" data-srcset="https://www.howtocook.recipes/wp-content/uploads/2022/02/Funnel-cake-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2022/02/Funnel-cake-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2022/02/Funnel-cake-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2022/02/Funnel-cake-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2022/02/Funnel-cake-recipe-450x450.jpg 450w" data-sizes="auto" data-eio-rwidth="500" data-eio-rheight="500" /><noscript><img width="500" height="500" src="https://www.howtocook.recipes/wp-content/uploads/2022/02/Funnel-cake-recipe.jpg" class="attachment-medium_large size-medium_large wp-image-8503" alt="Funnel cake recipe" srcset="https://www.howtocook.recipes/wp-content/uploads/2022/02/Funnel-cake-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2022/02/Funnel-cake-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2022/02/Funnel-cake-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2022/02/Funnel-cake-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2022/02/Funnel-cake-recipe-450x450.jpg 450w" sizes="(max-width: 500px) 100vw, 500px" data-eio="l" /></noscript> </div>
<div class="elementor-element elementor-element-6f88df6 e-con-full card-data boxpad e-flex e-con e-child" data-id="6f88df6" data-element_type="container">
<div class="elementor-element elementor-element-6c2c2bd elementor-widget elementor-widget-heading" data-id="6c2c2bd" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-heading-title elementor-size-default">Desserts</div> </div>
<div class="elementor-element elementor-element-706af03 elementor-widget elementor-widget-theme-post-title elementor-page-title elementor-widget-heading" data-id="706af03" data-element_type="widget" data-widget_type="theme-post-title.default">
<h3 class="elementor-heading-title elementor-size-default">Homemade Funnel Cake Recipe</h3> </div>
</div>
</a>
</div>
<div data-elementor-type="loop-item" data-elementor-id="9776" class="elementor elementor-9776 swiper-slide e-loop-item e-loop-item-8468 post-8468 post type-post status-publish format-standard has-post-thumbnail hentry category-desserts tag-dessert tag-pie" data-elementor-post-type="elementor_library" role="group" aria-roledescription="slide" data-custom-edit-handle="1">
<a class="elementor-element elementor-element-b6746ba e-con-full recipe-card e-flex e-con e-parent" data-id="b6746ba" data-element_type="container" href="https://www.howtocook.recipes/classic-sweet-potato-pie-recipe/">
<div class="elementor-element elementor-element-70bae5d elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image" data-id="70bae5d" data-element_type="widget" data-widget_type="theme-post-featured-image.default">
<img width="500" height="500" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAfQAAAH0AQAAAADjreInAAAAAnRSTlMAAHaTzTgAAAA1SURBVHja7cExAQAAAMKg9U/tYQ2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG59AAABgyKozQAAAABJRU5ErkJggg==" class="attachment-medium_large size-medium_large wp-image-8469 lazyload" alt="Sweet potato pie recipe" data-src="https://www.howtocook.recipes/wp-content/uploads/2022/02/Sweet-potato-pie-recipe.jpg" decoding="async" data-srcset="https://www.howtocook.recipes/wp-content/uploads/2022/02/Sweet-potato-pie-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2022/02/Sweet-potato-pie-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2022/02/Sweet-potato-pie-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2022/02/Sweet-potato-pie-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2022/02/Sweet-potato-pie-recipe-450x450.jpg 450w" data-sizes="auto" data-eio-rwidth="500" data-eio-rheight="500" /><noscript><img width="500" height="500" src="https://www.howtocook.recipes/wp-content/uploads/2022/02/Sweet-potato-pie-recipe.jpg" class="attachment-medium_large size-medium_large wp-image-8469" alt="Sweet potato pie recipe" srcset="https://www.howtocook.recipes/wp-content/uploads/2022/02/Sweet-potato-pie-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2022/02/Sweet-potato-pie-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2022/02/Sweet-potato-pie-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2022/02/Sweet-potato-pie-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2022/02/Sweet-potato-pie-recipe-450x450.jpg 450w" sizes="(max-width: 500px) 100vw, 500px" data-eio="l" /></noscript> </div>
<div class="elementor-element elementor-element-6f88df6 e-con-full card-data boxpad e-flex e-con e-child" data-id="6f88df6" data-element_type="container">
<div class="elementor-element elementor-element-6c2c2bd elementor-widget elementor-widget-heading" data-id="6c2c2bd" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-heading-title elementor-size-default">Desserts</div> </div>
<div class="elementor-element elementor-element-706af03 elementor-widget elementor-widget-theme-post-title elementor-page-title elementor-widget-heading" data-id="706af03" data-element_type="widget" data-widget_type="theme-post-title.default">
<h3 class="elementor-heading-title elementor-size-default">Classic Sweet Potato Pie Recipe</h3> </div>
</div>
</a>
</div>
<div data-elementor-type="loop-item" data-elementor-id="9776" class="elementor elementor-9776 swiper-slide e-loop-item e-loop-item-8343 post-8343 post type-post status-publish format-standard has-post-thumbnail hentry category-cookies category-desserts tag-cookies tag-dessert" data-elementor-post-type="elementor_library" role="group" aria-roledescription="slide" data-custom-edit-handle="1">
<a class="elementor-element elementor-element-b6746ba e-con-full recipe-card e-flex e-con e-parent" data-id="b6746ba" data-element_type="container" href="https://www.howtocook.recipes/homemade-oatmeal-cookie-recipe/">
<div class="elementor-element elementor-element-70bae5d elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image" data-id="70bae5d" data-element_type="widget" data-widget_type="theme-post-featured-image.default">
<img width="500" height="500" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAfQAAAH0AQAAAADjreInAAAAAnRSTlMAAHaTzTgAAAA1SURBVHja7cExAQAAAMKg9U/tYQ2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG59AAABgyKozQAAAABJRU5ErkJggg==" class="attachment-medium_large size-medium_large wp-image-8344 lazyload" alt="Oatmeal cookies recipe" data-src="https://www.howtocook.recipes/wp-content/uploads/2022/01/Oatmeal-cookies-recipe.jpg" decoding="async" data-srcset="https://www.howtocook.recipes/wp-content/uploads/2022/01/Oatmeal-cookies-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2022/01/Oatmeal-cookies-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2022/01/Oatmeal-cookies-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2022/01/Oatmeal-cookies-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2022/01/Oatmeal-cookies-recipe-450x450.jpg 450w" data-sizes="auto" data-eio-rwidth="500" data-eio-rheight="500" /><noscript><img width="500" height="500" src="https://www.howtocook.recipes/wp-content/uploads/2022/01/Oatmeal-cookies-recipe.jpg" class="attachment-medium_large size-medium_large wp-image-8344" alt="Oatmeal cookies recipe" srcset="https://www.howtocook.recipes/wp-content/uploads/2022/01/Oatmeal-cookies-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2022/01/Oatmeal-cookies-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2022/01/Oatmeal-cookies-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2022/01/Oatmeal-cookies-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2022/01/Oatmeal-cookies-recipe-450x450.jpg 450w" sizes="(max-width: 500px) 100vw, 500px" data-eio="l" /></noscript> </div>
<div class="elementor-element elementor-element-6f88df6 e-con-full card-data boxpad e-flex e-con e-child" data-id="6f88df6" data-element_type="container">
<div class="elementor-element elementor-element-6c2c2bd elementor-widget elementor-widget-heading" data-id="6c2c2bd" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-heading-title elementor-size-default">Cookies</div> </div>
<div class="elementor-element elementor-element-706af03 elementor-widget elementor-widget-theme-post-title elementor-page-title elementor-widget-heading" data-id="706af03" data-element_type="widget" data-widget_type="theme-post-title.default">
<h3 class="elementor-heading-title elementor-size-default">Homemade Oatmeal Cookie Recipe</h3> </div>
</div>
</a>
</div>
<div data-elementor-type="loop-item" data-elementor-id="9776" class="elementor elementor-9776 swiper-slide e-loop-item e-loop-item-8265 post-8265 post type-post status-publish format-standard has-post-thumbnail hentry category-desserts tag-dessert" data-elementor-post-type="elementor_library" role="group" aria-roledescription="slide" data-custom-edit-handle="1">
<a class="elementor-element elementor-element-b6746ba e-con-full recipe-card e-flex e-con e-parent" data-id="b6746ba" data-element_type="container" href="https://www.howtocook.recipes/classic-buttercream-frosting-recipe/">
<div class="elementor-element elementor-element-70bae5d elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image" data-id="70bae5d" data-element_type="widget" data-widget_type="theme-post-featured-image.default">
<img width="500" height="500" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAfQAAAH0AQAAAADjreInAAAAAnRSTlMAAHaTzTgAAAA1SURBVHja7cExAQAAAMKg9U/tYQ2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG59AAABgyKozQAAAABJRU5ErkJggg==" class="attachment-medium_large size-medium_large wp-image-8266 lazyload" alt="Buttercream frosting recipe" data-src="https://www.howtocook.recipes/wp-content/uploads/2022/01/Buttercream-frosting-recipe.jpg" decoding="async" data-srcset="https://www.howtocook.recipes/wp-content/uploads/2022/01/Buttercream-frosting-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2022/01/Buttercream-frosting-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2022/01/Buttercream-frosting-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2022/01/Buttercream-frosting-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2022/01/Buttercream-frosting-recipe-450x450.jpg 450w" data-sizes="auto" data-eio-rwidth="500" data-eio-rheight="500" /><noscript><img width="500" height="500" src="https://www.howtocook.recipes/wp-content/uploads/2022/01/Buttercream-frosting-recipe.jpg" class="attachment-medium_large size-medium_large wp-image-8266" alt="Buttercream frosting recipe" srcset="https://www.howtocook.recipes/wp-content/uploads/2022/01/Buttercream-frosting-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2022/01/Buttercream-frosting-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2022/01/Buttercream-frosting-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2022/01/Buttercream-frosting-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2022/01/Buttercream-frosting-recipe-450x450.jpg 450w" sizes="(max-width: 500px) 100vw, 500px" data-eio="l" /></noscript> </div>
<div class="elementor-element elementor-element-6f88df6 e-con-full card-data boxpad e-flex e-con e-child" data-id="6f88df6" data-element_type="container">
<div class="elementor-element elementor-element-6c2c2bd elementor-widget elementor-widget-heading" data-id="6c2c2bd" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-heading-title elementor-size-default">Desserts</div> </div>
<div class="elementor-element elementor-element-706af03 elementor-widget elementor-widget-theme-post-title elementor-page-title elementor-widget-heading" data-id="706af03" data-element_type="widget" data-widget_type="theme-post-title.default">
<h3 class="elementor-heading-title elementor-size-default">Classic Buttercream Frosting Recipe</h3> </div>
</div>
</a>
</div>
<div data-elementor-type="loop-item" data-elementor-id="9776" class="elementor elementor-9776 swiper-slide e-loop-item e-loop-item-8263 post-8263 post type-post status-publish format-standard has-post-thumbnail hentry category-desserts tag-dessert" data-elementor-post-type="elementor_library" role="group" aria-roledescription="slide" data-custom-edit-handle="1">
<a class="elementor-element elementor-element-b6746ba e-con-full recipe-card e-flex e-con e-parent" data-id="b6746ba" data-element_type="container" href="https://www.howtocook.recipes/classic-creme-brulee-recipe/">
<div class="elementor-element elementor-element-70bae5d elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image" data-id="70bae5d" data-element_type="widget" data-widget_type="theme-post-featured-image.default">
<img width="500" height="500" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAfQAAAH0AQAAAADjreInAAAAAnRSTlMAAHaTzTgAAAA1SURBVHja7cExAQAAAMKg9U/tYQ2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG59AAABgyKozQAAAABJRU5ErkJggg==" class="attachment-medium_large size-medium_large wp-image-8249 lazyload" alt="Creme brulee recipe" data-src="https://www.howtocook.recipes/wp-content/uploads/2022/01/Creme-brulee-recipe.jpg" decoding="async" data-srcset="https://www.howtocook.recipes/wp-content/uploads/2022/01/Creme-brulee-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2022/01/Creme-brulee-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2022/01/Creme-brulee-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2022/01/Creme-brulee-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2022/01/Creme-brulee-recipe-450x450.jpg 450w" data-sizes="auto" data-eio-rwidth="500" data-eio-rheight="500" /><noscript><img width="500" height="500" src="https://www.howtocook.recipes/wp-content/uploads/2022/01/Creme-brulee-recipe.jpg" class="attachment-medium_large size-medium_large wp-image-8249" alt="Creme brulee recipe" srcset="https://www.howtocook.recipes/wp-content/uploads/2022/01/Creme-brulee-recipe.jpg 500w, https://www.howtocook.recipes/wp-content/uploads/2022/01/Creme-brulee-recipe-300x300.jpg 300w, https://www.howtocook.recipes/wp-content/uploads/2022/01/Creme-brulee-recipe-150x150.jpg 150w, https://www.howtocook.recipes/wp-content/uploads/2022/01/Creme-brulee-recipe-175x175.jpg 175w, https://www.howtocook.recipes/wp-content/uploads/2022/01/Creme-brulee-recipe-450x450.jpg 450w" sizes="(max-width: 500px) 100vw, 500px" data-eio="l" /></noscript> </div>
<div class="elementor-element elementor-element-6f88df6 e-con-full card-data boxpad e-flex e-con e-child" data-id="6f88df6" data-element_type="container">
<div class="elementor-element elementor-element-6c2c2bd elementor-widget elementor-widget-heading" data-id="6c2c2bd" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-heading-title elementor-size-default">Desserts</div> </div>
<div class="elementor-element elementor-element-706af03 elementor-widget elementor-widget-theme-post-title elementor-page-title elementor-widget-heading" data-id="706af03" data-element_type="widget" data-widget_type="theme-post-title.default">
<h3 class="elementor-heading-title elementor-size-default">Classic Creme Brulee Recipe</h3> </div>
</div>
</a>
</div>
</div>
</div>
<div class="elementor-swiper-button elementor-swiper-button-prev" role="button" tabindex="0" aria-label="Previous">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-chevron-left" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z"></path></svg> </div>
<div class="elementor-swiper-button elementor-swiper-button-next" role="button" tabindex="0" aria-label="Next">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-chevron-right" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z"></path></svg> </div>
</div>
</div>
</div>
</div>
</div>
</div>
<footer data-elementor-type="footer" data-elementor-id="10003" class="elementor elementor-10003 elementor-location-footer" data-elementor-post-type="elementor_library">
<div class="elementor-element elementor-element-8e4c8b9 e-flex e-con-boxed e-con e-parent" data-id="8e4c8b9" data-element_type="container" data-settings="{"background_background":"classic"}">
<div class="e-con-inner">
<div class="elementor-element elementor-element-e2fe37e e-con-full regcol e-grid e-con e-child" data-id="e2fe37e" data-element_type="container">
<div class="elementor-element elementor-element-e29345b e-con-full e-flex e-con e-child" data-id="e29345b" data-element_type="container">
<div class="elementor-element elementor-element-3292c9c elementor-widget elementor-widget-heading" data-id="3292c9c" data-element_type="widget" data-widget_type="heading.default">
<h3 class="elementor-heading-title elementor-size-default">Useful Links</h3> </div>
<div class="elementor-element elementor-element-ee09069 e-con-full e-flex e-con e-child" data-id="ee09069" data-element_type="container">
<div class="elementor-element elementor-element-d2135dc elementor-align-left elementor-widget__width-inherit elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="d2135dc" data-element_type="widget" data-widget_type="icon-list.default">
<ul class="elementor-icon-list-items">
<li class="elementor-icon-list-item">
<a href="https://www.howtocook.recipes/">
<span class="elementor-icon-list-icon">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z"></path></svg> </span>
<span class="elementor-icon-list-text">Home</span>
</a>
</li>
<li class="elementor-icon-list-item">
<a href="https://www.howtocook.recipes/about-me/">
<span class="elementor-icon-list-icon">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z"></path></svg> </span>
<span class="elementor-icon-list-text">About Me</span>
</a>
</li>
<li class="elementor-icon-list-item">
<a href="https://www.howtocook.recipes/library/">
<span class="elementor-icon-list-icon">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z"></path></svg> </span>
<span class="elementor-icon-list-text">Library</span>
</a>
</li>
<li class="elementor-icon-list-item">
<a href="https://www.howtocook.recipes/faq/">
<span class="elementor-icon-list-icon">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z"></path></svg> </span>
<span class="elementor-icon-list-text">FAQ</span>
</a>
</li>
<li class="elementor-icon-list-item">
<a href="https://www.howtocook.recipes/disclosure-and-privacy-policy/">
<span class="elementor-icon-list-icon">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z"></path></svg> </span>
<span class="elementor-icon-list-text">Disclosure & Privacy Policy</span>
</a>
</li>
<li class="elementor-icon-list-item">
<a href="https://www.howtocook.recipes/contact/">
<span class="elementor-icon-list-icon">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z"></path></svg> </span>
<span class="elementor-icon-list-text">Contact</span>
</a>
</li>
</ul>
</div>
<div class="elementor-element elementor-element-9a6a814 elementor-align-left elementor-widget__width-inherit elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="9a6a814" data-element_type="widget" data-widget_type="icon-list.default">
<ul class="elementor-icon-list-items">
<li class="elementor-icon-list-item">
<a href="https://howlongtocook.org/">
<span class="elementor-icon-list-icon">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z"></path></svg> </span>
<span class="elementor-icon-list-text">How Long To Cook</span>
</a>
</li>
<li class="elementor-icon-list-item">
<a href="https://www.howlongtobake.org/">
<span class="elementor-icon-list-icon">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z"></path></svg> </span>
<span class="elementor-icon-list-text">How Long To Bake</span>
</a>
</li>
<li class="elementor-icon-list-item">
<a href="https://www.kulickspancakerecipes.com/">
<span class="elementor-icon-list-icon">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z"></path></svg> </span>
<span class="elementor-icon-list-text">Pancake Recipes</span>
</a>
</li>
<li class="elementor-icon-list-item">
<a href="https://www.kulickscookierecipes.com/">
<span class="elementor-icon-list-icon">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z"></path></svg> </span>
<span class="elementor-icon-list-text">Cookie Recipes</span>
</a>
</li>
<li class="elementor-icon-list-item">
<a href="https://www.kulickspierecipes.com/">
<span class="elementor-icon-list-icon">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z"></path></svg> </span>
<span class="elementor-icon-list-text">Pie Recipes</span>
</a>
</li>
<li class="elementor-icon-list-item">
<a href="https://www.kulicksfrenchtoastrecipes.com/">
<span class="elementor-icon-list-icon">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z"></path></svg> </span>
<span class="elementor-icon-list-text">French Toast Recipes</span>
</a>
</li>
<li class="elementor-icon-list-item">
<a href="https://www.chili-recipe.net/">
<span class="elementor-icon-list-icon">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z"></path></svg> </span>
<span class="elementor-icon-list-text">Chili Recipes</span>
</a>
</li>
<li class="elementor-icon-list-item">
<a href="https://www.meatloaf.pro/">
<span class="elementor-icon-list-icon">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z"></path></svg> </span>
<span class="elementor-icon-list-text">Meatloaf Recipes</span>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="elementor-element elementor-element-d53751b e-con-full e-flex e-con e-child" data-id="d53751b" data-element_type="container">
<div class="elementor-element elementor-element-151e40a elementor-widget elementor-widget-heading" data-id="151e40a" data-element_type="widget" data-widget_type="heading.default">
<h3 class="elementor-heading-title elementor-size-default">Newsletter</h3> </div>
<div class="elementor-element elementor-element-ba6e15b elementor-button-align-stretch elementor-widget elementor-widget-form" data-id="ba6e15b" data-element_type="widget" data-settings="{"step_next_label":"Next","step_previous_label":"Previous","button_width":"40","step_type":"number_text","step_icon_shape":"circle"}" data-widget_type="form.default">
<form class="elementor-form" method="post" name="Newsletter" aria-label="Newsletter">
<input type="hidden" name="post_id" value="10003"/>
<input type="hidden" name="form_id" value="ba6e15b"/>
<input type="hidden" name="referer_title" value="Classic Chocolate Cake Recipe (step-by-step video) | How To Cook.Recipes" />
<input type="hidden" name="queried_id" value="5904"/>
<div class="elementor-form-fields-wrapper elementor-labels-">
<div class="elementor-field-type-email elementor-field-group elementor-column elementor-field-group-email elementor-col-60 elementor-field-required">
<label for="form-field-email" class="elementor-field-label elementor-screen-only">
Email </label>
<input size="1" type="email" name="form_fields[email]" id="form-field-email" class="elementor-field elementor-size-md elementor-field-textual" placeholder="Your email address" required="required">
</div>
<div class="elementor-field-group elementor-column elementor-field-type-submit elementor-col-40 e-form__buttons">
<button class="elementor-button elementor-size-md" type="submit">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">Subscribe</span>
</span>
</button>
</div>
</div>
</form>
</div>
<div class="elementor-element elementor-element-11532e6 e-grid-align-left elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="11532e6" data-element_type="widget" data-widget_type="social-icons.default">
<div class="elementor-social-icons-wrapper elementor-grid" role="list">
<span class="elementor-grid-item" role="listitem">
<a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-a8775ce" href="https://www.facebook.com/Howtocook.recipe/" target="_blank">
<span class="elementor-screen-only">Facebook</span>
<svg aria-hidden="true" class="e-font-icon-svg e-fab-facebook" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.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.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z"></path></svg> </a>
</span>
<span class="elementor-grid-item" role="listitem">
<a class="elementor-icon elementor-social-icon elementor-social-icon-instagram elementor-repeater-item-27d7605" href="https://www.instagram.com/howtocook_recipes/" target="_blank">
<span class="elementor-screen-only">Instagram</span>
<svg aria-hidden="true" class="e-font-icon-svg e-fab-instagram" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path 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></svg> </a>
</span>
<span class="elementor-grid-item" role="listitem">
<a class="elementor-icon elementor-social-icon elementor-social-icon-pinterest elementor-repeater-item-04232df" href="https://www.pinterest.com/HowToCook_Recipes/" target="_blank">
<span class="elementor-screen-only">Pinterest</span>
<svg aria-hidden="true" class="e-font-icon-svg e-fab-pinterest" viewBox="0 0 496 512" xmlns="http://www.w3.org/2000/svg"><path 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></svg> </a>
</span>
<span class="elementor-grid-item" role="listitem">
<a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-0e38430" href="https://www.youtube.com/channel/UC_qgSLUu0rapURdICKUW0Kg/" target="_blank">
<span class="elementor-screen-only">Youtube</span>
<svg aria-hidden="true" class="e-font-icon-svg e-fab-youtube" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"></path></svg> </a>
</span>
</div>
</div>
<div class="elementor-element elementor-element-6b9b25c elementor-widget elementor-widget-heading" data-id="6b9b25c" data-element_type="widget" data-widget_type="heading.default">
<span class="elementor-heading-title elementor-size-default">© 2025 All Rights Reserved By howtocook.recipes</span> </div>
</div>
</div>
</div>
</div>
</footer>
<script data-no-optimize='1' data-cfasync='false' id='cls-insertion-78c96d1'>(function(){window.adthriveCLS.buildDate=`2025-11-18`;let e={Below_Post_1:`Below_Post_1`,Below_Post:`Below_Post`,Content:`Content`,Content_1:`Content_1`,Content_2:`Content_2`,Content_3:`Content_3`,Content_4:`Content_4`,Content_5:`Content_5`,Content_6:`Content_6`,Content_7:`Content_7`,Content_8:`Content_8`,Content_9:`Content_9`,Recipe:`Recipe`,Recipe_1:`Recipe_1`,Recipe_2:`Recipe_2`,Recipe_3:`Recipe_3`,Recipe_4:`Recipe_4`,Recipe_5:`Recipe_5`,Native_Recipe:`Native_Recipe`,Footer_1:`Footer_1`,Footer:`Footer`,Header_1:`Header_1`,Header_2:`Header_2`,Header:`Header`,Sidebar_1:`Sidebar_1`,Sidebar_2:`Sidebar_2`,Sidebar_3:`Sidebar_3`,Sidebar_4:`Sidebar_4`,Sidebar_5:`Sidebar_5`,Sidebar_9:`Sidebar_9`,Sidebar:`Sidebar`,Interstitial_1:`Interstitial_1`,Interstitial:`Interstitial`,Video_StickyOutstream_1:`Video_StickyOutstream_1`,Video_StickyOutstream:`Video_StickyOutstream`,Video_StickyInstream:`Video_StickyInstream`,Sponsor_Tile:`Sponsor_Tile`},t=[`siteId`,`siteName`,`adOptions`,`breakpoints`,`adUnits`],n=(e,n=t)=>{if(!e)return window.adthriveCLS&&(window.adthriveCLS.disabled=!0),!1;for(let t=0;t<n.length;t++)if(!e[n[t]])return window.adthriveCLS&&(window.adthriveCLS.disabled=!0),!1;return!0},r=()=>window.adthriveCLS;function i(e){"@babel/helpers - typeof";return i=typeof Symbol==`function`&&typeof Symbol.iterator==`symbol`?function(e){return typeof e}:function(e){return e&&typeof Symbol==`function`&&e.constructor===Symbol&&e!==Symbol.prototype?`symbol`:typeof e},i(e)}function a(e,t){if(i(e)!=`object`||!e)return e;var n=e[Symbol.toPrimitive];if(n!==void 0){var r=n.call(e,t||`default`);if(i(r)!=`object`)return r;throw TypeError(`@@toPrimitive must return a primitive value.`)}return(t===`string`?String:Number)(e)}function o(e){var t=a(e,`string`);return i(t)==`symbol`?t:t+``}function s(e,t,n){return(t=o(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var c=class{constructor(){s(this,`_clsGlobalData`,r())}get enabled(){return!!this._clsGlobalData&&!!this._clsGlobalData.siteAds&&n(this._clsGlobalData.siteAds)}get error(){return!!(this._clsGlobalData&&this._clsGlobalData.error)}set siteAds(e){this._clsGlobalData.siteAds=e}get siteAds(){return this._clsGlobalData.siteAds}set disableAds(e){this._clsGlobalData.disableAds=e}get disableAds(){return this._clsGlobalData.disableAds}get enabledLocations(){return[e.Below_Post,e.Content,e.Recipe,e.Sidebar]}get injectedFromPlugin(){return this._clsGlobalData.injectedFromPlugin}set injectedFromPlugin(e){this._clsGlobalData.injectedFromPlugin=e}get injectedFromSiteAds(){return this._clsGlobalData.injectedFromSiteAds}set injectedFromSiteAds(e){this._clsGlobalData.injectedFromSiteAds=e}setInjectedSlots(e){this._clsGlobalData.injectedSlots=this._clsGlobalData.injectedSlots||[],this._clsGlobalData.injectedSlots.push(e)}get injectedSlots(){return this._clsGlobalData.injectedSlots}setInjectedVideoSlots(e){this._clsGlobalData.injectedVideoSlots=this._clsGlobalData.injectedVideoSlots||[],this._clsGlobalData.injectedVideoSlots.push(e)}get injectedVideoSlots(){return this._clsGlobalData.injectedVideoSlots}setExperiment(e,t,n=!1){this._clsGlobalData.experiments=this._clsGlobalData.experiments||{},this._clsGlobalData.siteExperiments=this._clsGlobalData.siteExperiments||{};let r=n?this._clsGlobalData.siteExperiments:this._clsGlobalData.experiments;r[e]=t}getExperiment(e,t=!1){let n=t?this._clsGlobalData.siteExperiments:this._clsGlobalData.experiments;return n&&n[e]}setWeightedChoiceExperiment(e,t,n=!1){this._clsGlobalData.experimentsWeightedChoice=this._clsGlobalData.experimentsWeightedChoice||{},this._clsGlobalData.siteExperimentsWeightedChoice=this._clsGlobalData.siteExperimentsWeightedChoice||{};let r=n?this._clsGlobalData.siteExperimentsWeightedChoice:this._clsGlobalData.experimentsWeightedChoice;r[e]=t}getWeightedChoiceExperiment(e,t=!1){var n,r;let i=t?(n=this._clsGlobalData)==null?void 0:n.siteExperimentsWeightedChoice:(r=this._clsGlobalData)==null?void 0:r.experimentsWeightedChoice;return i&&i[e]}get bucket(){return this._clsGlobalData.bucket}set videoDisabledFromPlugin(e){this._clsGlobalData.videoDisabledFromPlugin=e}get videoDisabledFromPlugin(){return this._clsGlobalData.videoDisabledFromPlugin}set targetDensityLog(e){this._clsGlobalData.targetDensityLog=e}get targetDensityLog(){return this._clsGlobalData.targetDensityLog}get removeVideoTitleWrapper(){return this._clsGlobalData.siteAds.adOptions.removeVideoTitleWrapper}};let l=e=>{let t={};return function(...n){let r=JSON.stringify(n);if(t[r])return t[r];let i=e.apply(this,n);return t[r]=i,i}},u=l(()=>{let e=navigator.userAgent,t=/Tablet|iPad|Playbook|Nook|webOS|Kindle|Android (?!.*Mobile).*Safari|CrOS/i.test(e);return/Mobi|iP(hone|od)|Opera Mini/i.test(e)&&!t});var d=class{static getScrollTop(){return(window.pageYOffset||document.documentElement.scrollTop)-(document.documentElement.clientTop||0)}static getScrollBottom(){let e=window.innerHeight||document.documentElement.clientHeight||document.body.clientHeight||0;return this.getScrollTop()+e}static shufflePlaylist(e){let t=e.length,n,r;for(;t!==0;)r=Math.floor(Math.random()*e.length),--t,n=e[t],e[t]=e[r],e[r]=n;return e}static isMobileLandscape(){return window.matchMedia(`(orientation: landscape) and (max-height: 480px)`).matches}static playerViewable(e){let t=e.getBoundingClientRect();return this.isMobileLandscape()?window.innerHeight>t.top+t.height/2&&t.top+t.height/2>0:window.innerHeight>t.top+t.height/2}static createQueryString(e){return Object.keys(e).map(t=>`${t}=${e[t]}`).join(`&`)}static createEncodedQueryString(e){return Object.keys(e).map(t=>`${t}=${encodeURIComponent(e[t])}`).join(`&`)}static setMobileLocation(e,t=!1){e=e||`bottom-right`;let n=t?`raptive-player-sticky`:`adthrive-collapse`;return e===`top-left`?e=`${n}-top-left`:e===`top-right`?e=`${n}-top-right`:e===`bottom-left`?e=`${n}-bottom-left`:e===`bottom-right`?e=`${n}-bottom-right`:e===`top-center`&&(e=`adthrive-collapse-${u()?`top-center`:`bottom-right`}`),e}static addMaxResolutionQueryParam(e){let t=`max_resolution=${u()?`320`:`1280`}`,[n,r]=String(e).split(`?`),i=r?r+`&${t}`:t;return`${n}?${i}`}};let f=(e,t)=>e==null||e!==e?t:e;var p=class{constructor(e){this._clsOptions=e,s(this,`relatedSettings`,void 0),s(this,`players`,void 0),s(this,`removeVideoTitleWrapper`,void 0),s(this,`footerSelector`,void 0),this.removeVideoTitleWrapper=f(this._clsOptions.siteAds.adOptions.removeVideoTitleWrapper,!1);let t=this._clsOptions.siteAds.videoPlayers;this.footerSelector=f(t&&t.footerSelector,``),this.players=f(t&&t.players.map(e=>(e.mobileLocation=d.setMobileLocation(e.mobileLocation),e)),[]),this.relatedSettings=t&&t.contextual}},m=class{constructor(e){s(this,`mobileStickyPlayerOnPage`,!1),s(this,`collapsiblePlayerOnPage`,!1),s(this,`playlistPlayerAdded`,!1),s(this,`relatedPlayerAdded`,!1),s(this,`collapseSettings`,void 0),s(this,`footerSelector`,``),s(this,`removeVideoTitleWrapper`,!1),s(this,`desktopCollapseSettings`,void 0),s(this,`mobileCollapseSettings`,void 0),s(this,`relatedSettings`,void 0),s(this,`playerId`,void 0),s(this,`playlistId`,void 0),s(this,`desktopRelatedCollapseSettings`,void 0),s(this,`mobileRelatedCollapseSettings`,void 0),s(this,`collapsePlayerId`,void 0),s(this,`players`,void 0),s(this,`videoAdOptions`,void 0),this.videoAdOptions=new p(e),this.players=this.videoAdOptions.players,this.relatedSettings=this.videoAdOptions.relatedSettings,this.removeVideoTitleWrapper=this.videoAdOptions.removeVideoTitleWrapper,this.footerSelector=this.videoAdOptions.footerSelector}};navigator.vendor;let h=navigator.userAgent,g=l(e=>/Chrom|Applechromium/.test(e||h)),_=l(()=>/WebKit/.test(h)),v=l(()=>g()?`chromium`:_()?`webkit`:`other`),y=e=>{let t=e.clientWidth;if(getComputedStyle){let n=getComputedStyle(e,null);t-=parseFloat(n.paddingLeft||`0`)+parseFloat(n.paddingRight||`0`)}return t};var b=class{},ee=class extends b{constructor(e){super(),this._probability=e}get(){if(this._probability<0||this._probability>1)throw Error(`Invalid probability: ${this._probability}`);return Math.random()<this._probability}},te=class{constructor(){s(this,`_featureRollouts`,{}),s(this,`_checkedFeatureRollouts`,new Map),s(this,`_enabledFeatureRolloutIds`,[])}get siteFeatureRollouts(){return this._featureRollouts}_isRolloutEnabled(e){if(this._doesRolloutExist(e)){let t=this._featureRollouts[e],n=t.enabled,r=t.data;if(this._doesRolloutHaveConfig(e)&&this._isFeatureRolloutConfigType(r)){let e=r.pct_enabled?r.pct_enabled/100:1;n=n&&new ee(e).get()}return n}return!1}isRolloutEnabled(e){var t;let n=(t=this._checkedFeatureRollouts.get(e))==null?this._isRolloutEnabled(e):t;return this._checkedFeatureRollouts.get(e)===void 0&&this._checkedFeatureRollouts.set(e,n),n}_doesRolloutExist(e){return this._featureRollouts&&!!this._featureRollouts[e]}_doesRolloutHaveConfig(e){return this._doesRolloutExist(e)&&`data`in this._featureRollouts[e]}_isFeatureRolloutConfigType(e){return typeof e==`object`&&!!e&&!!Object.keys(e).length}getSiteRolloutConfig(e){var t;let n=this.isRolloutEnabled(e),r=(t=this._featureRollouts[e])==null?void 0:t.data;return n&&this._doesRolloutHaveConfig(e)&&this._isFeatureRolloutConfigType(r)?r:{}}get enabledFeatureRolloutIds(){return this._enabledFeatureRolloutIds}},ne=class extends te{constructor(e){super(),this._featureRollouts=e,this._setEnabledFeatureRolloutIds()}_setEnabledFeatureRolloutIds(){Object.entries(this._featureRollouts).forEach(([e,t])=>{this.isRolloutEnabled(e)&&t.featureRolloutId!==void 0&&this._enabledFeatureRolloutIds.push(t.featureRolloutId)})}},x;let re=new ne(window.adthriveCLS&&window.adthriveCLS.siteAds&&`featureRollouts`in window.adthriveCLS.siteAds?(x=window.adthriveCLS.siteAds.featureRollouts)==null?{}:x:{}),ie=[[728,90],[300,250],[300,600],[320,50],[970,250],[160,600],[300,1050],[336,280],[970,90],[300,50],[320,100],[468,60],[250,250],[120,240],[1,1],[300,300],[300,420],[728,250],[320,300],[300,390]],S=new Map([[e.Footer,1],[e.Header,2],[e.Sidebar,3],[e.Content,4],[e.Recipe,5],[`Sidebar_sticky`,6],[`Below Post`,7]]),C=e=>ie.filter(([t,n])=>e.some(([e,r])=>t===e&&n===r)),ae=(t,[n,r],i)=>{let{location:a,sequence:o}=t;if(a===e.Footer)return!(i===`phone`&&n===320&&r===100);if(a===e.Header)return!0;if(a===e.Recipe)return!(u()&&i===`phone`&&(n===300&&r===390||n===320&&r===300));if(a===e.Sidebar){let e=t.adSizes.some(([,e])=>e<=300),n=!!o&&o<=5,i=r>300;return i&&!e||o===9?!0:n?i?t.sticky:!0:!i}else return!0},oe=(t,n)=>{let{location:r,sticky:i}=t;if(r===e.Recipe&&n){let{recipeMobile:e,recipeDesktop:t}=n;if(u()&&e!=null&&e.enabled||!u()&&t!=null&&t.enabled)return!0}return r===e.Footer||i},se=(t,n)=>{let r=n.adUnits,i=re.isRolloutEnabled(`enable-250px-max-ad-height`);return r.filter(e=>e.dynamic!==void 0&&e.dynamic.enabled).map(r=>{let a=r.location.replace(/\s+/g,`_`),o=a===`Sidebar`?0:2;return a===e.Content&&i&&g()&&(r.adSizes=r.adSizes.filter(e=>e[1]<=250)),{auctionPriority:S.get(a)||8,location:a,sequence:f(r.sequence,1),thirdPartyAdUnitName:r.thirdPartyAdUnitName||``,sizes:C(r.adSizes).filter(e=>ae(r,e,t)),devices:r.devices,pageSelector:f(r.dynamic.pageSelector,``).trim(),elementSelector:f(r.dynamic.elementSelector,``).trim(),position:f(r.dynamic.position,`beforebegin`),max:Math.floor(f(r.dynamic.max,0)),spacing:f(r.dynamic.spacing,0),skip:Math.floor(f(r.dynamic.skip,0)),every:Math.max(Math.floor(f(r.dynamic.every,1)),1),classNames:r.dynamic.classNames||[],sticky:oe(r,n.adOptions.stickyContainerConfig),stickyOverlapSelector:f(r.stickyOverlapSelector,``).trim(),autosize:r.autosize,special:f(r.targeting,[]).filter(e=>e.key===`special`).reduce((e,t)=>e.concat(...t.value),[]),lazy:f(r.dynamic.lazy,!1),lazyMax:f(r.dynamic.lazyMax,o),lazyMaxDefaulted:r.dynamic.lazyMax===0?!1:!r.dynamic.lazyMax,name:r.name}})},w=(t,n)=>{let r=y(n),i=t.sticky&&t.location===e.Sidebar;return t.sizes.filter(e=>{let n=t.autosize?e[0]<=r||e[0]<=320:!0,a=i?e[1]<=window.innerHeight-100:!0;return n&&a})},ce=(e,t)=>e.devices.includes(t),le=e=>e.pageSelector.length===0||document.querySelector(e.pageSelector)!==null,T=new class{info(e,t,...n){this.call(console.info,e,t,...n)}warn(e,t,...n){this.call(console.warn,e,t,...n)}error(e,t,...n){this.call(console.error,e,t,...n),this.sendErrorLogToCommandQueue(e,t,...n)}event(e,t,...n){var r;((r=window.adthriveCLS)==null?void 0:r.bucket)===`debug`&&this.info(e,t)}sendErrorLogToCommandQueue(e,t,...n){window.adthrive=window.adthrive||{},window.adthrive.cmd=window.adthrive.cmd||[],window.adthrive.cmd.push(()=>{window.adthrive.logError!==void 0&&typeof window.adthrive.logError==`function`&&window.adthrive.logError(e,t,n)})}call(e,t,n,...r){let i=[`%c${t}::${n} `],a=[`color: #999; font-weight: bold;`];r.length>0&&typeof r[0]==`string`&&i.push(r.shift()),a.push(...r);try{Function.prototype.apply.call(e,console,[i.join(``),...a])}catch(e){console.error(e);return}}},E={Desktop:`desktop`,Mobile:`mobile`},ue=e=>{let t=document.body,n=`adthrive-device-${e}`;if(!t.classList.contains(n))try{t.classList.add(n)}catch(e){T.error(`BodyDeviceClassComponent`,`init`,{message:e.message});let t=`classList`in document.createElement(`_`);T.error(`BodyDeviceClassComponent`,`init.support`,{support:t})}},D=e=>`adthrive-${e.location.replace(`_`,`-`).toLowerCase()}`,O=e=>`${D(e)}-${e.sequence}`,de=(e,t)=>{let n=window.innerWidth;return n>=t?`desktop`:n>=e?`tablet`:`phone`},fe=e=>{let t=e.offsetHeight,n=e.offsetWidth,r=e.getBoundingClientRect(),i=document.body,a=document.documentElement,o=window.pageYOffset||a.scrollTop||i.scrollTop,s=window.pageXOffset||a.scrollLeft||i.scrollLeft,c=a.clientTop||i.clientTop||0,l=a.clientLeft||i.clientLeft||0,u=Math.round(r.top+o-c),d=Math.round(r.left+s-l);return{top:u,left:d,bottom:u+t,right:d+n,width:n,height:t}},pe=(e=document)=>(e===document?document.body:e).getBoundingClientRect().top,me=e=>e.includes(`,`)?e.split(`,`):[e],he=(e=document)=>{let t=e.querySelectorAll(`article`);if(t.length===0)return null;let n=Array.from(t).reduce((e,t)=>t.offsetHeight>e.offsetHeight?t:e);return n&&n.offsetHeight>window.innerHeight*1.5?n:null},ge=(e,t,n=document)=>{let r=he(n),i=r?[r]:[],a=[];e.forEach(e=>{let r=Array.from(n.querySelectorAll(e.elementSelector)).slice(0,e.skip);me(e.elementSelector).forEach(o=>{let s=n.querySelectorAll(o);for(let n=0;n<s.length;n++){let o=s[n];if(t.map.some(({el:e})=>e.isEqualNode(o)))continue;let c=o&&o.parentElement;c&&c!==document.body?i.push(c):i.push(o),r.indexOf(o)===-1&&a.push({dynamicAd:e,element:o})}})});let o=pe(n),s=a.sort((e,t)=>e.element.getBoundingClientRect().top-o-(t.element.getBoundingClientRect().top-o));return[i,s]},_e=(e,t,n=document)=>{let[r,i]=ge(e,t,n);return r.length===0?[null,i]:[Array.from(r).reduce((e,t)=>t.offsetHeight>e.offsetHeight?t:e)||document.body,i]},ve=(e,t=`div #comments, section .comments`)=>{let n=e.querySelector(t);return n?e.offsetHeight-n.offsetHeight:e.offsetHeight},k=()=>{let e=document.body,t=document.documentElement;return Math.max(e.scrollHeight,e.offsetHeight,t.clientHeight,t.scrollHeight,t.offsetHeight)},A=()=>{let e=document.body,t=document.documentElement;return Math.max(e.scrollWidth,e.offsetWidth,t.clientWidth,t.scrollWidth,t.offsetWidth)};function j(e,t){t===void 0&&(t={});var n=t.insertAt;if(!(!e||typeof document>`u`)){var r=document.head||document.getElementsByTagName(`head`)[0],i=document.createElement(`style`);i.type=`text/css`,n===`top`&&r.firstChild?r.insertBefore(i,r.firstChild):r.appendChild(i),i.styleSheet?i.styleSheet.cssText=e:i.appendChild(document.createTextNode(e))}}var M=j;let N=e=>M(`
.adthrive-device-phone .adthrive-sticky-content {
height: 450px !important;
margin-bottom: 100px !important;
}
.adthrive-content.adthrive-sticky {
position: -webkit-sticky;
position: sticky !important;
top: 42px !important;
margin-top: 42px !important;
}
.adthrive-content.adthrive-sticky:after {
content: "— Advertisement. Scroll down to continue. —";
font-size: 10pt;
margin-top: 5px;
margin-bottom: 5px;
display:block;
color: #888;
}
.adthrive-sticky-container {
position: relative;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
min-height:${e||400}px;
margin: 10px 0 10px 0;
background-color: #FAFAFA;
padding-bottom:0px;
}
`),P=e=>{M(`
.adthrive-recipe.adthrive-sticky {
position: -webkit-sticky;
position: sticky !important;
top: 42px !important;
margin-top: 42px !important;
}
.adthrive-recipe-sticky-container {
position: relative;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
min-height:${e||400}px !important;
margin: 10px 0 10px 0;
background-color: #FAFAFA;
padding-bottom:0px;
}
`)},F=e=>e.some(e=>document.querySelector(e)!==null),ye=e=>/^[-_a-zA-Z]+[-_a-zA-Z0-9]*$/.test(e),be=(e,t,n)=>{let r=e=>e?!!(e.classList.contains(`adthrive-ad`)||e.id.includes(`_${n}_`)):!1;switch(t){case`beforebegin`:return r(e.previousElementSibling);case`afterend`:return r(e.nextElementSibling);case`afterbegin`:return r(e.firstElementChild);case`beforeend`:return r(e.lastElementChild);default:return!1}};function I(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function L(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]==null?{}:arguments[t];t%2?I(Object(n),!0).forEach(function(t){s(e,t,n[t])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):I(Object(n)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))})}return e}let R=e=>{try{return{valid:!0,elements:document.querySelectorAll(e)}}catch(e){return L({valid:!1},e)}},z=e=>e===``?{valid:!0}:R(e),xe=(e,t)=>Math.random()*(t-e)+e;var B=class e extends b{constructor(e=[],t){super(),this._choices=e,this._default=t}static fromArray(t,n){return new e(t.map(([e,t])=>({choice:e,weight:t})),n)}addChoice(e,t){this._choices.push({choice:e,weight:t})}get(){let e=xe(0,100),t=0;for(let{choice:n,weight:r}of this._choices)if(t+=r,t>=e)return n;return this._default}get totalWeight(){return this._choices.reduce((e,{weight:t})=>e+t,0)}};let V={AdDensity:`addensity`,AdLayout:`adlayout`,FooterCloseButton:`footerclose`,Interstitial:`interstitial`,RemoveVideoTitleWrapper:`removevideotitlewrapper`,StickyOutstream:`stickyoutstream`,StickyOutstreamOnStickyPlayer:`sospp`,VideoAdvancePlaylistRelatedPlayer:`videoadvanceplaylistrp`,MobileStickyPlayerPosition:`mspp`};var Se=class{constructor(){s(this,`name`,void 0),s(this,`disable`,void 0),s(this,`gdprPurposes`,void 0)}};let Ce=[`mcmpfreqrec`],H=new class extends Se{constructor(...e){super(...e),s(this,`name`,`BrowserStorage`),s(this,`disable`,!1),s(this,`gdprPurposes`,[1]),s(this,`_sessionStorageHandlerQueue`,[]),s(this,`_localStorageHandlerQueue`,[]),s(this,`_cookieHandlerQueue`,[]),s(this,`_gdpr`,void 0),s(this,`_shouldQueue`,!1)}init(e){this._gdpr=e.gdpr===`true`,this._shouldQueue=this._gdpr}clearQueue(e){this._gdpr&&this._hasStorageConsent()===!1||(e&&(this._shouldQueue=!1,this._sessionStorageHandlerQueue.forEach(e=>{this.setSessionStorage(e.key,e.value)}),this._localStorageHandlerQueue.forEach(e=>{if(e.key===`adthrive_abgroup`){let t=Object.keys(e.value)[0],n=e.value[t],r=e.value[`${t}_weight`];this.getOrSetABGroupLocalStorageValue(t,n,r,{value:24,unit:`hours`})}else e.expiry?e.type===`internal`?this.setExpirableInternalLocalStorage(e.key,e.value,{expiry:e.expiry,resetOnRead:e.resetOnRead}):this.setExpirableExternalLocalStorage(e.key,e.value,{expiry:e.expiry,resetOnRead:e.resetOnRead}):e.type===`internal`?this.setInternalLocalStorage(e.key,e.value):this.setExternalLocalStorage(e.key,e.value)}),this._cookieHandlerQueue.forEach(e=>{e.type===`internal`?this.setInternalCookie(e.key,e.value):this.setExternalCookie(e.key,e.value)})),this._sessionStorageHandlerQueue=[],this._localStorageHandlerQueue=[],this._cookieHandlerQueue=[])}readInternalCookie(e){return this._verifyInternalKey(e),this._readCookie(e)}readExternalCookie(e){return this._readCookie(e)}readExternalCookieList(e){return this._readCookieList(e)}getAllCookies(){return this._getCookies()}readInternalLocalStorage(e){return this._verifyInternalKey(e),this._readFromLocalStorage(e)}readExternalLocalStorage(e){return this._readFromLocalStorage(e)}readSessionStorage(e){let t=(window.sessionStorage.getItem(e));if(!t)return null;try{return JSON.parse(t)}catch(e){return t}}deleteCookie(e){document.cookie=`${e}=; SameSite=None; Secure; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/`}deleteLocalStorage(e){window.localStorage.removeItem(e)}deleteSessionStorage(e){window.sessionStorage.removeItem(e)}_hasStorageConsent(){if(typeof window.__cmp==`function`)try{let e=(window.__cmp(`getCMPData`));if(!e||!e.purposeConsents)return;let t=e.purposeConsents[1];return t===!0?!0:t===!1||t==null?!1:void 0}catch(e){return}}setInternalCookie(e,t,n){this.disable||(this._verifyInternalKey(e),this._setCookieValue(`internal`,e,t,n))}setExternalCookie(e,t,n){this.disable||this._setCookieValue(`external`,e,t,n)}setInternalLocalStorage(e,t){if(!this.disable)if(this._verifyInternalKey(e),this._gdpr&&this._shouldQueue){let n={key:e,value:t,type:`internal`};this._localStorageHandlerQueue.push(n)}else{let n=typeof t==`string`?t:JSON.stringify(t);window.localStorage.setItem(e,n)}}setExternalLocalStorage(e,t){if(!this.disable)if(this._gdpr&&this._shouldQueue){let n={key:e,value:t,type:`external`};this._localStorageHandlerQueue.push(n)}else{let n=typeof t==`string`?t:JSON.stringify(t);window.localStorage.setItem(e,n)}}setExpirableInternalLocalStorage(e,t,n){if(!this.disable){this._verifyInternalKey(e);try{var r,i;let a=(r=n==null?void 0:n.expiry)==null?{value:400,unit:`days`}:r,o=(i=n==null?void 0:n.resetOnRead)==null?!1:i;if(this._gdpr&&this._shouldQueue){let n={key:e,value:t,type:`internal`,expires:this._getExpiryDate(a),expiry:a,resetOnRead:o};this._localStorageHandlerQueue.push(n)}else{let n={value:t,type:`internal`,expires:this._getExpiryDate(a),expiry:a,resetOnRead:o};window.localStorage.setItem(e,JSON.stringify(n))}}catch(e){console.error(e)}}}setExpirableExternalLocalStorage(e,t,n){if(!this.disable)try{var r,i;let a=(r=n==null?void 0:n.expiry)==null?{value:400,unit:`days`}:r,o=(i=n==null?void 0:n.resetOnRead)==null?!1:i;if(this._gdpr&&this._shouldQueue){let n={key:e,value:JSON.stringify(t),type:`external`,expires:this._getExpiryDate(a),expiry:a,resetOnRead:o};this._localStorageHandlerQueue.push(n)}else{let n={value:t,type:`external`,expires:this._getExpiryDate(a),expiry:a,resetOnRead:o};window.localStorage.setItem(e,JSON.stringify(n))}}catch(e){console.error(e)}}setSessionStorage(e,t){if(!this.disable)if(this._gdpr&&this._shouldQueue){let n={key:e,value:t};this._sessionStorageHandlerQueue.push(n)}else{let n=typeof t==`string`?t:JSON.stringify(t);window.sessionStorage.setItem(e,n)}}getOrSetABGroupLocalStorageValue(e,t,n,r,i=!0){let a=`adthrive_abgroup`,o=(this.readInternalLocalStorage(a));if(o!==null){var s;let t=o[e],n=(s=o[`${e}_weight`])==null?null:s;if(this._isValidABGroupLocalStorageValue(t))return[t,n]}let c=(L(L({},o),{},{[e]:t,[`${e}_weight`]:n}));return r?this.setExpirableInternalLocalStorage(a,c,{expiry:r,resetOnRead:i}):this.setInternalLocalStorage(a,c),[t,n]}_isValidABGroupLocalStorageValue(e){return e!=null&&!(typeof e==`number`&&isNaN(e))}_getExpiryDate({value:e,unit:t}){let n=new Date;return t===`milliseconds`?n.setTime(n.getTime()+e):t==`seconds`?n.setTime(n.getTime()+e*1e3):t===`minutes`?n.setTime(n.getTime()+e*60*1e3):t===`hours`?n.setTime(n.getTime()+e*60*60*1e3):t===`days`?n.setTime(n.getTime()+e*24*60*60*1e3):t===`months`&&n.setTime(n.getTime()+e*30*24*60*60*1e3),n.toUTCString()}_resetExpiry(e){return e.expires=this._getExpiryDate(e.expiry),e}_readCookie(e){let t=(document.cookie.split(`; `).find(t=>t.split(`=`)[0]===e));if(!t)return null;let n=(t.split(`=`))[1];if(n)try{return JSON.parse(decodeURIComponent(n))}catch(e){return decodeURIComponent(n)}return null}_readCookieList(e){let t;for(let n of document.cookie.split(`;`)){let[r,...i]=(n.split(`=`));r.trim()===e&&(t=i.join(`=`).trim())}return t&&JSON.parse(t)||[]}_getCookies(){let e=[];return document.cookie.split(`;`).forEach(t=>{let[n,r]=t.split(`=`).map(e=>e.trim());e.push({name:n,value:r})}),e}_readFromLocalStorage(e){let t=(window.localStorage.getItem(e));if(!t)return null;try{let r=(JSON.parse(t)),i=r.expires&&(new Date().getTime())>=(new Date(r.expires).getTime());if(e===`adthrive_abgroup`&&r.created)return window.localStorage.removeItem(e),null;if(r.resetOnRead&&r.expires&&!i){var n;let t=(this._resetExpiry(r));return window.localStorage.setItem(e,JSON.stringify(r)),(n=t.value)==null?t:n}else if(i)return window.localStorage.removeItem(e),null;if(Object.prototype.hasOwnProperty.call(r,`value`))try{return JSON.parse(r.value)}catch(e){return r.value}else return r}catch(e){return t}}_setCookieValue(e,t,n,r){try{if(this._gdpr&&this._shouldQueue){let r={key:t,value:n,type:e};this._cookieHandlerQueue.push(r)}else{var i,a,o;let e=(this._getExpiryDate((i=r==null?void 0:r.expiry)==null?{value:400,unit:`days`}:i)),s=(a=r==null?void 0:r.sameSite)==null?`None`:a,c=(o=r==null?void 0:r.secure)==null?!0:o,l=typeof n==`object`?JSON.stringify(n):n;document.cookie=`${t}=${l}; SameSite=${s}; ${c?`Secure;`:``} expires=${e}; path=/`}}catch(e){}}_verifyInternalKey(e){let t=(e.startsWith(`adthrive_`)),n=(e.startsWith(`adt_`));if(!t&&!n&&!Ce.includes(e))throw Error(`When reading an internal cookie, the key must start with "adthrive_" or "adt_" or be part of the allowed legacy keys.`)}},we=e=>{let t=5381,n=e.length;for(;n;)t=t*33^e.charCodeAt(--n);return t>>>0},Te=e=>we(e).toString(16),Ee=e=>{if(e===null)return null;let t=e.map(({choice:e})=>e);return Te(JSON.stringify(t))},De=(e,t)=>{var n,r;return(n=(r=e.find(({choice:e})=>e===t))==null?void 0:r.weight)==null?null:n},Oe=e=>e!=null&&!(typeof e==`number`&&isNaN(e)),U=()=>(e,t,n)=>{let r=n.value;r&&(n.value=function(...e){let t=Ee(this._choices),n=this._expConfigABGroup?this._expConfigABGroup:this.abgroup,i=n?n.toLowerCase():this.key?this.key.toLowerCase():``,a=t?`${i}_${t}`:i,o=this.localStoragePrefix?`${this.localStoragePrefix}-${a}`:a,s=`config`in window.adthrive?window.adthrive.config.gdpr.enabled:window.adthrive.gdpr===`true`;if([V.AdLayout,V.AdDensity].includes(i)&&s)return r.apply(this,e);let c=H.readInternalLocalStorage(`adthrive_branch`);(c&&c.enabled)===!1&&H.deleteLocalStorage(o);let l=(()=>r.apply(this,e))(),u=De(this._choices,l),[d,f]=H.getOrSetABGroupLocalStorageValue(o,l,u,{value:24,unit:`hours`});return this._stickyResult=d,this._stickyWeight=f,d})},ke=(e=window.location.search)=>{let t=e.indexOf(`?`)===0?1:0;return e.slice(t).split(`&`).reduce((e,t)=>{let[n,r]=t.split(`=`);return e.set(n,r),e},new Map)},Ae=e=>{let t={},n=ke().get(e);if(n)try{let r=decodeURIComponent(n).replace(/\+/g,``);t=JSON.parse(r),T.event(`ExperimentOverridesUtil`,`getExperimentOverrides`,e,t)}catch(e){e instanceof URIError}return t},je=(e,t)=>typeof e==typeof t,Me=(e,t)=>{let n=e.adDensityEnabled,r=e.adDensityLayout.pageOverrides.find(e=>!!document.querySelector(e.pageSelector)&&(e[t].onePerViewport||typeof e[t].adDensity==`number`));return n?!r:!0},Ne=e=>{var t;let n=(t=e.videoPlayers)==null||(t=t.partners)==null||(t=t.stickyOutstream)==null?void 0:t.blockedPageSelectors;return n?!document.querySelector(n):!0},Pe=e=>{let t=e.adOptions.interstitialBlockedPageSelectors;return t?!document.querySelector(t):!0},Fe=(e,t,n)=>{switch(t){case V.AdDensity:return Me(e,n);case V.StickyOutstream:return Ne(e);case V.Interstitial:return Pe(e);default:return!0}},Ie=e=>e.length===1,Le=e=>{let t=e.reduce((e,t)=>t.weight?t.weight+e:e,0);return e.length>0&&e.every(e=>{let t=e.value,n=e.weight;return!!(t!=null&&!(typeof t==`number`&&isNaN(t))&&n)})&&t===100},Re=(e,t)=>{if(!e)return!1;let n=!!e.enabled,r=e.dateStart==null||Date.now()>=e.dateStart,i=e.dateEnd==null||Date.now()<=e.dateEnd,a=e.selector===null||e.selector!==``&&!!document.querySelector(e.selector),o=e.platform===`mobile`&&t===`mobile`,s=e.platform===`desktop`&&t===`desktop`,c=e.platform===null||e.platform===`all`||o||s,l=e.experimentType===`bernoulliTrial`?Ie(e.variants):Le(e.variants);return l||T.error(`SiteTest`,`validateSiteExperiment`,`experiment presented invalid choices for key:`,e.key,e.variants),n&&r&&i&&a&&c&&l};var W=class{constructor(e){var t,n;s(this,`siteExperiments`,[]),s(this,`_clsOptions`,void 0),s(this,`_device`,void 0),this._clsOptions=e,this._device=u()?`mobile`:`desktop`,this.siteExperiments=(t=(n=this._clsOptions.siteAds.siteExperiments)==null?void 0:n.filter(e=>{let t=e.key,n=Re(e,this._device),r=Fe(this._clsOptions.siteAds,t,this._device);return n&&r}))==null?[]:t}getSiteExperimentByKey(e){let t=this.siteExperiments.filter(t=>t.key.toLowerCase()===e.toLowerCase())[0],n=Ae(`at_site_features`),r=je(t!=null&&t.variants[1]?t==null?void 0:t.variants[1].value:t==null?void 0:t.variants[0].value,n[e]);return t&&n[e]&&r&&(t.variants=[{displayName:`test`,value:n[e],weight:100,id:0}]),t}},ze=class{constructor(){s(this,`experimentConfig`,void 0)}get enabled(){return this.experimentConfig!==void 0}_isValidResult(e,t=()=>!0){return t()&&Oe(e)}},G=class extends ze{constructor(...e){super(...e),s(this,`_resultValidator`,()=>!0)}_isValidResult(e){return super._isValidResult(e,()=>this._resultValidator(e)||e===`control`)}run(){if(!this.enabled)return T.error(`CLSWeightedChoiceSiteExperiment`,`run`,`() => %o`,`No experiment config found. Defaulting to control.`),`control`;if(!this._mappedChoices||this._mappedChoices.length===0)return T.error(`CLSWeightedChoiceSiteExperiment`,`run`,`() => %o`,`No experiment variants found. Defaulting to control.`),`control`;let e=new B(this._mappedChoices).get();return this._isValidResult(e)?e:(T.error(`CLSWeightedChoiceSiteExperiment`,`run`,`() => %o`,`Invalid result from experiment choices. Defaulting to control.`),`control`)}};function K(e,t,n,r){var i=arguments.length,a=i<3?t:r===null?r=Object.getOwnPropertyDescriptor(t,n):r,o;if(typeof Reflect==`object`&&typeof Reflect.decorate==`function`)a=Reflect.decorate(e,t,n,r);else for(var s=e.length-1;s>=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a}var q=class extends G{constructor(e){super(),s(this,`_choices`,[]),s(this,`_mappedChoices`,[]),s(this,`_result`,``),s(this,`_clsSiteExperiments`,void 0),s(this,`_resultValidator`,e=>typeof e==`string`),s(this,`key`,V.AdLayout),s(this,`abgroup`,V.AdLayout),this._clsSiteExperiments=new W(e),this.experimentConfig=this._clsSiteExperiments.getSiteExperimentByKey(this.key),this.enabled&&this.experimentConfig&&(this._choices=this.experimentConfig.variants,this._mappedChoices=this._mapChoices(),this._result=this.run(),e.setWeightedChoiceExperiment(this.abgroup,this._result,!0))}get result(){return this._result}run(){if(!this.enabled)return T.error(`CLSAdLayoutSiteExperiment`,`run`,`() => %o`,`No experiment config found. Defaulting to empty class name.`),``;let e=new B(this._mappedChoices).get();return this._isValidResult(e)?e:(T.error(`CLSAdLayoutSiteExperiment`,`run`,`() => %o`,`Invalid result from experiment choices. Defaulting to empty class name.`),``)}_mapChoices(){return this._choices.map(({weight:e,value:t})=>({weight:e,choice:t}))}};K([U()],q.prototype,`run`,null);var J=class extends G{constructor(e){super(),s(this,`_choices`,[]),s(this,`_mappedChoices`,[]),s(this,`_result`,`control`),s(this,`_clsSiteExperiments`,void 0),s(this,`_resultValidator`,e=>typeof e==`number`),s(this,`key`,V.AdDensity),s(this,`abgroup`,V.AdDensity),this._clsSiteExperiments=new W(e),this.experimentConfig=this._clsSiteExperiments.getSiteExperimentByKey(this.key),this.enabled&&this.experimentConfig&&(this._choices=this.experimentConfig.variants,this._mappedChoices=this._mapChoices(),this._result=this.run(),e.setWeightedChoiceExperiment(this.abgroup,this._result,!0))}get result(){return this._result}run(){if(!this.enabled)return T.error(`CLSTargetAdDensitySiteExperiment`,`run`,`() => %o`,`No experiment config found. Defaulting to control.`),`control`;let e=new B(this._mappedChoices).get();return this._isValidResult(e)?e:(T.error(`CLSTargetAdDensitySiteExperiment`,`run`,`() => %o`,`Invalid result from experiment choices. Defaulting to control.`),`control`)}_mapChoices(){return this._choices.map(({weight:e,value:t})=>({weight:e,choice:typeof t==`number`?(t||0)/100:`control`}))}};K([U()],J.prototype,`run`,null);let Y=`250px`;var Be=class{constructor(t,n){this._clsOptions=t,this._adInjectionMap=n,s(this,`_recipeCount`,0),s(this,`_mainContentHeight`,0),s(this,`_mainContentDiv`,null),s(this,`_totalAvailableElements`,[]),s(this,`_minDivHeight`,250),s(this,`_densityDevice`,E.Desktop),s(this,`_pubLog`,{onePerViewport:!1,targetDensity:0,targetDensityUnits:0,combinedMax:0}),s(this,`_densityMax`,.99),s(this,`_smallerIncrementAttempts`,0),s(this,`_absoluteMinimumSpacingByDevice`,250),s(this,`_usedAbsoluteMinimum`,!1),s(this,`_infPageEndOffset`,0),s(this,`locationMaxLazySequence`,new Map([[e.Recipe,5]])),s(this,`locationToMinHeight`,{Below_Post:Y,Content:Y,Recipe:Y,Sidebar:Y}),s(this,`_device`,void 0),s(this,`_clsTargetAdDensitySiteExperiment`,void 0);let{tablet:r,desktop:i}=this._clsOptions.siteAds.breakpoints;this._device=de(r,i),this._clsTargetAdDensitySiteExperiment=this._clsOptions.siteAds.siteExperiments?new J(this._clsOptions):null}start(){try{var e;ue(this._device);let n=new q(this._clsOptions);if(n.enabled){let e=n.result,t=e.startsWith(`.`)?e.substring(1):e;if(ye(t))try{document.body.classList.add(t)}catch(e){T.error(`ClsDynamicAdsInjector`,`start`,`Uncaught CSS Class error: ${e}`)}else T.error(`ClsDynamicAdsInjector`,`start`,`Invalid class name: ${t}`)}let r=se(this._device,this._clsOptions.siteAds).filter(e=>this._locationEnabled(e)).filter(e=>ce(e,this._device)).filter(e=>le(e)),i=this.inject(r),a=this._clsOptions.siteAds.adOptions.stickyContainerConfig;if(!(a==null||(e=a.content)==null)&&e.enabled&&!F(a.blockedSelectors||[])){var t;N(a==null||(t=a.content)==null?void 0:t.minHeight)}i.forEach(e=>this._clsOptions.setInjectedSlots(e))}catch(e){T.error(`ClsDynamicAdsInjector`,`start`,e)}}inject(t,n=document){this._densityDevice=this._device===`desktop`?E.Desktop:E.Mobile,this._overrideDefaultAdDensitySettingsWithSiteExperiment();let r=this._clsOptions.siteAds,i=f(r.adDensityEnabled,!0),a=r.adDensityLayout&&i,o=t.filter(t=>a?t.location!==e.Content:t),s=t.filter(t=>a?t.location===e.Content:null);return this._capturePreSlotInsertionPageAreaMeasurement(),[...o.length?this._injectNonDensitySlots(o,n):[],...s.length?this._injectDensitySlots(s,n):[]]}_injectNonDensitySlots(t,n=document){var r;let i=[],a=[],o=!1;if(t.some(t=>t.location===e.Recipe&&t.sticky)&&!F(((r=this._clsOptions.siteAds.adOptions.stickyContainerConfig)==null?void 0:r.blockedSelectors)||[])){var s,c;let e=this._clsOptions.siteAds.adOptions.stickyContainerConfig,t=this._device===`phone`?e==null||(s=e.recipeMobile)==null?void 0:s.minHeight:e==null||(c=e.recipeDesktop)==null?void 0:c.minHeight;P(t),o=!0}for(let e of t)this._insertNonDensityAds(e,i,a,n);return o||a.forEach(({location:e,element:t})=>{t.style.minHeight=this.locationToMinHeight[e]}),i}_injectDensitySlots(e,t=document){try{this._calculateMainContentHeightAndAllElements(e,t),this._capturePreSlotInsertionMainContentMeasurement()}catch(e){return[]}let{onePerViewport:n,targetAll:r,targetDensityUnits:i,combinedMax:a,numberOfUnits:o}=this._getDensitySettings(e,t);return this._absoluteMinimumSpacingByDevice=n?window.innerHeight:this._absoluteMinimumSpacingByDevice,o?(this._adInjectionMap.filterUsed(),this._findElementsForAds(o,n,r,a,i,t),this._insertAds()):[]}_overrideDefaultAdDensitySettingsWithSiteExperiment(){var e;if((e=this._clsTargetAdDensitySiteExperiment)!=null&&e.enabled){let e=this._clsTargetAdDensitySiteExperiment.result;typeof e==`number`&&(this._clsOptions.siteAds.adDensityEnabled=!0,this._clsOptions.siteAds.adDensityLayout[this._densityDevice].adDensity=e)}}_getDensitySettings(e,t=document){let n=this._clsOptions.siteAds.adDensityLayout,r=this._determineOverrides(n.pageOverrides),i=r.length?r[0]:n[this._densityDevice],a=i.adDensity,o=i.onePerViewport,s=this._shouldTargetAllEligible(a),c=this._getTargetDensityUnits(a,s),l=this._getCombinedMax(e,t),u=Math.min(this._totalAvailableElements.length,c,...l>0?[l]:[]);return this._pubLog={onePerViewport:o,targetDensity:a,targetDensityUnits:c,combinedMax:l},{onePerViewport:o,targetAll:s,targetDensityUnits:c,combinedMax:l,numberOfUnits:u}}_determineOverrides(e){return e.filter(e=>{let t=z(e.pageSelector);return e.pageSelector===``||t.elements&&t.elements.length}).map(e=>e[this._densityDevice])}_shouldTargetAllEligible(e){return e===this._densityMax}_getTargetDensityUnits(e,t){return t?this._totalAvailableElements.length:Math.floor(e*this._mainContentHeight/(1-e)/this._minDivHeight)-this._recipeCount}_getCombinedMax(e,t=document){return f(e.filter(e=>{let n;try{n=t.querySelector(e.elementSelector)}catch(e){}return n}).map(e=>Number(e.max)+Number(e.lazyMaxDefaulted?0:e.lazyMax)).sort((e,t)=>t-e)[0],0)}_elementLargerThanMainContent(e){return e.offsetHeight>=this._mainContentHeight&&this._totalAvailableElements.length>1}_elementDisplayNone(e){let t=window.getComputedStyle(e,null).display;return t&&t===`none`||e.style.display===`none`}_isBelowMaxes(e,t){return this._adInjectionMap.map.length<e&&this._adInjectionMap.map.length<t}_findElementsForAds(e,t,n,r,i,a=document){this._clsOptions.targetDensityLog={onePerViewport:t,combinedMax:r,targetDensityUnits:i,targetDensityPercentage:this._pubLog.targetDensity,mainContentHeight:this._mainContentHeight,recipeCount:this._recipeCount,numberOfEls:this._totalAvailableElements.length};let o=e=>{for(let{dynamicAd:t,element:o}of this._totalAvailableElements){if(this._logDensityInfo(o,t.elementSelector,e),!n&&this._elementLargerThanMainContent(o)||this._elementDisplayNone(o))continue;if(this._isBelowMaxes(r,i))this._checkElementSpacing({dynamicAd:t,element:o,insertEvery:e,targetAll:n,target:a});else break}!this._usedAbsoluteMinimum&&this._smallerIncrementAttempts<5&&(++this._smallerIncrementAttempts,o(this._getSmallerIncrement(e)))},s=this._getInsertEvery(e,t,i);o(s)}_getSmallerIncrement(e){let t=e*.6;return t<=this._absoluteMinimumSpacingByDevice&&(t=this._absoluteMinimumSpacingByDevice,this._usedAbsoluteMinimum=!0),t}_insertNonDensityAds(t,n,r,i=document){let a=0,o=0,s=0;t.spacing>0&&(a=window.innerHeight*t.spacing,o=a);let c=this._repeatDynamicAds(t),l=this.getElements(t.elementSelector,i);t.skip;for(let u=t.skip;u<l.length&&!(s+1>c.length);u+=t.every){let d=l[u];if(a>0){let{bottom:e}=fe(d);if(e<=o)continue;o=e+a}let f=c[s],p=`${f.location}_${f.sequence}`;n.some(e=>e.name===p)&&(s+=1);let m=this.getDynamicElementId(f),h=D(t),g=O(t),_=t.location===e.Sidebar&&t.sticky&&t.sequence&&t.sequence<=5?`adthrive-sticky-sidebar`:``,v=t.location===e.Recipe&&t.sticky?`adthrive-recipe-sticky-container`:``,y=[_,v,h,g,...t.classNames];if(be(d,t.position,t.location)&&t.location===e.Recipe)continue;let b=this.addAd(d,m,t.position,y);if(b){let a=w(f,b);if(a.length){let o={clsDynamicAd:t,dynamicAd:f,element:b,sizes:a,name:p,infinite:i!==document};n.push(o),r.push({location:f.location,element:b}),t.location===e.Recipe&&++this._recipeCount,s+=1}d=b}}}_insertAds(){let e=[],t=0;return this._adInjectionMap.filterUsed(),this._adInjectionMap.map.forEach(({el:n,dynamicAd:r,target:i},a)=>{let o=Number(r.sequence)+a,s=r.max,c=r.lazy&&o>s;r.sequence=o,r.lazy=c;let l=this._addContentAd(n,r,i);l&&(r.used=!0,e.push(l),++t)}),e}_getInsertEvery(e,t,n){let r=this._absoluteMinimumSpacingByDevice;return this._moreAvailableElementsThanUnitsToInject(n,e)?(this._usedAbsoluteMinimum=!1,r=this._useWiderSpacing(n,e)):(this._usedAbsoluteMinimum=!0,r=this._useSmallestSpacing(t)),t&&window.innerHeight>r?window.innerHeight:r}_useWiderSpacing(e,t){return this._mainContentHeight/Math.min(e,t)}_useSmallestSpacing(e){return e&&window.innerHeight>this._absoluteMinimumSpacingByDevice?window.innerHeight:this._absoluteMinimumSpacingByDevice}_moreAvailableElementsThanUnitsToInject(e,t){return this._totalAvailableElements.length>e||this._totalAvailableElements.length>t}_logDensityInfo(e,t,n){let{onePerViewport:r,targetDensity:i,targetDensityUnits:a,combinedMax:o}=this._pubLog;this._totalAvailableElements.length}_checkElementSpacing({dynamicAd:e,element:t,insertEvery:n,targetAll:r,target:i=document}){(this._isFirstAdInjected()||this._hasProperSpacing(t,e,r,n))&&this._markSpotForContentAd(t,L({},e),i)}_isFirstAdInjected(){return!this._adInjectionMap.map.length}_markSpotForContentAd(e,t,n=document){let r=t.position===`beforebegin`||t.position===`afterbegin`;this._adInjectionMap.addSorted(e,this._getElementCoords(e,r),t,n)}_hasProperSpacing(t,n,r,i){let a=n.position===`beforebegin`||n.position===`afterbegin`,o=n.position===`beforeend`||n.position===`afterbegin`,s=r||this._isElementFarEnoughFromOtherAdElements(t,i,a),c=o||this._isElementNotInRow(t,a),l=t.id.indexOf(`AdThrive_${e.Below_Post}`)===-1;return s&&c&&l}_isElementFarEnoughFromOtherAdElements(e,t,n){let r=this._getElementCoords(e,n),[i,a]=this._adInjectionMap.findNeighborIndices(r),o=i===null?void 0:this._adInjectionMap.map[i].coords,s=a===null?void 0:this._adInjectionMap.map[a].coords;return(o===void 0||r-t>o)&&(s===void 0||r+t<s)}_isElementNotInRow(e,t){let n=e.previousElementSibling,r=e.nextElementSibling,i=t?!n&&r||n&&e.tagName!==n.tagName?r:n:r;return i&&e.getBoundingClientRect().height===0?!0:i?e.getBoundingClientRect().top!==i.getBoundingClientRect().top:!0}_calculateMainContentHeightAndAllElements(e,t=document){let[n,r]=_e(e,this._adInjectionMap,t);if(!n)throw Error(`No main content element found`);this._mainContentDiv=n,this._totalAvailableElements=r,this._mainContentHeight=ve(this._mainContentDiv)}_capturePreSlotInsertionMainContentMeasurement(){window.adthriveCLS&&(window.adthriveCLS.preSlotInsertionMeasurements?window.adthriveCLS.preSlotInsertionMeasurements.mainContentHeight=this._mainContentHeight:window.adthriveCLS.preSlotInsertionMeasurements={mainContentHeight:this._mainContentHeight})}_capturePreSlotInsertionPageAreaMeasurement(){if(window.adthriveCLS){let e=k()*A();window.adthriveCLS.preSlotInsertionMeasurements?window.adthriveCLS.preSlotInsertionMeasurements.totalPageArea=e:window.adthriveCLS.preSlotInsertionMeasurements={totalPageArea:e}}}_getElementCoords(e,t=!1){let n=e.getBoundingClientRect();return(t?n.top:n.bottom)+window.scrollY}_addContentAd(e,t,n=document){var r;let i=null,a=D(t),o=O(t),s=this._clsOptions.siteAds.adOptions.stickyContainerConfig,c=s==null||(r=s.content)==null?void 0:r.enabled,l=c?`adthrive-sticky-container`:``,u=this.addAd(e,this.getDynamicElementId(t),t.position,[l,a,o,...t.classNames]);if(u){let e=w(t,u);if(e.length){var d;(!c||!(!(s==null||(d=s.content)==null)&&d.minHeight))&&(u.style.minHeight=this.locationToMinHeight[t.location]);let r=`${t.location}_${t.sequence}`;i={clsDynamicAd:t,dynamicAd:t,element:u,sizes:e,name:r,infinite:n!==document}}}return i}getDynamicElementId(e){return`AdThrive_${e.location}_${e.sequence}_${this._device}`}getElements(e,t=document){return t.querySelectorAll(e)}addAd(e,t,n,r=[]){if(!document.getElementById(t)){let i=`<div id="${t}" class="adthrive-ad ${r.join(` `)}"></div>`;e.insertAdjacentHTML(n,i)}return document.getElementById(t)}_repeatDynamicAds(t){let n=[],r=t.location===e.Recipe?99:this.locationMaxLazySequence.get(t.location),i=t.lazy?f(r,0):0,a=t.max,o=t.lazyMax,s=i===0&&t.lazy?a+o:Math.min(Math.max(i-t.sequence+1,0),a+o),c=Math.max(a,s);for(let e=0;e<c;e++){let r=Number(t.sequence)+e,i=t.lazy&&e>=a,o=r;t.name===`Recipe_1`&&r>=5&&(o=r+1),n.push(L(L({},t),{},{sequence:o,lazy:i}))}return n}_locationEnabled(e){let t=this._clsOptions.enabledLocations.includes(e.location),n=this._clsOptions.disableAds&&this._clsOptions.disableAds.all||document.body.classList.contains(`adthrive-disable-all`),r=!document.body.classList.contains(`adthrive-disable-content`)&&!this._clsOptions.disableAds.reasons.has(`content_plugin`);return t&&!n&&r}},Ve=class{constructor(){s(this,`_map`,[])}add(e,t,n,r=document){this._map.push({el:e,coords:t,dynamicAd:n,target:r})}addSorted(e,t,n,r=document){let i=this._upperBoundIndex(t);this._map.splice(i,0,{el:e,coords:t,dynamicAd:n,target:r})}get map(){return this._map}sort(){this._map.sort(({coords:e},{coords:t})=>e-t)}filterUsed(){this._map=this._map.filter(({dynamicAd:e})=>!e.used)}findNeighborIndices(e){let t=this._upperBoundIndex(e),n=t-1>=0?t-1:null,r=t<this._map.length?t:null;return[n,r]}_upperBoundIndex(e){let t=0,n=this._map.length;for(;t<n;){let r=t+n>>>1;this._map[r].coords<=e?t=r+1:n=r}return t}reset(){this._map=[]}},He=class extends Ve{};let X=l((e=navigator.userAgent)=>/Windows NT|Macintosh/i.test(e)),Ue=()=>{let e=u()?`mobile`:`tablet`;return X(h)?`desktop`:e},Z=e=>{let t=v(),n=Ue(),r=e.siteAdsProfiles,i=null;if(r&&r.length)for(let e of r){let r=e.targeting.device,a=e.targeting.browserEngine,o=r&&r.length&&r.includes(n),s=a&&a.length&&a.includes(t);o&&s&&(i=e)}return i},We=e=>{let t=Z(e);if(t){let e=t.profileId;document.body.classList.add(`raptive-profile-${e}`)}},Q={Video_Collapse_Autoplay_SoundOff:`Video_Collapse_Autoplay_SoundOff`,Video_Individual_Autoplay_SOff:`Video_Individual_Autoplay_SOff`,Video_Coll_SOff_Smartphone:`Video_Coll_SOff_Smartphone`,Video_In_Post_ClicktoPlay_SoundOn:`Video_In-Post_ClicktoPlay_SoundOn`,Video_Collapse_Autoplay_SoundOff_15s:`Video_Collapse_Autoplay_SoundOff_15s`,Video_Individual_Autoplay_SOff_15s:`Video_Individual_Autoplay_SOff_15s`,Video_Coll_SOff_Smartphone_15s:`Video_Coll_SOff_Smartphone_15s`,Video_In_Post_ClicktoPlay_SoundOn_15s:`Video_In-Post_ClicktoPlay_SoundOn_15s`};var Ge=class{get enabled(){return!0}};function Ke(e,t){if(e==null)return{};var n={};for(var r in e)if({}.hasOwnProperty.call(e,r)){if(t.includes(r))continue;n[r]=e[r]}return n}function $(e,t){if(e==null)return{};var n,r,i=Ke(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.includes(n)||{}.propertyIsEnumerable.call(e,n)&&(i[n]=e[n])}return i}let qe=[`valid`,`elements`],Je=[`valid`,`elements`];var Ye=class extends Ge{constructor(e,t,n){super(),this._videoConfig=e,this._component=t,this._context=n,s(this,`_potentialPlayerMap`,void 0),s(this,`_device`,void 0),s(this,`_stickyRelatedOnPage`,!1),s(this,`_relatedMediaIds`,[]),this._device=X()?`desktop`:`mobile`,this._potentialPlayerMap=this.setPotentialPlayersMap()}setPotentialPlayersMap(){let e=this._videoConfig.players||[],t=this._filterPlayerMap();return t.stationaryRelated=e.filter(e=>e.type===`stationaryRelated`&&e.enabled),this._potentialPlayerMap=t,this._potentialPlayerMap}_filterPlayerMap(){let e=this._videoConfig.players,t={stickyRelated:[],stickyPlaylist:[],stationaryRelated:[]};return e&&e.length?e.filter(e=>{var t;return(t=e.devices)==null?void 0:t.includes(this._device)}).reduce((e,t)=>(e[t.type]||(T.event(this._component,`constructor`,`Unknown Video Player Type detected`,t.type),e[t.type]=[]),t.enabled&&e[t.type].push(t),e),t):t}_checkPlayerSelectorOnPage(e){for(let t of this._potentialPlayerMap[e]){let e=this._getPlacementElement(t);if(e)return{player:t,playerElement:e}}return{player:null,playerElement:null}}_getOverrideElement(e,t,n){if(e&&t){let r=document.createElement(`div`);t.insertAdjacentElement(e.position,r),n=r}else{let{player:e,playerElement:t}=this._checkPlayerSelectorOnPage(`stickyPlaylist`);if(e&&t){let r=document.createElement(`div`);t.insertAdjacentElement(e.position,r),n=r}}return n}_shouldOverrideElement(e){let t=e.getAttribute(`override-embed`);return t===`true`||t===`false`?t===`true`:this._videoConfig.relatedSettings?this._videoConfig.relatedSettings.overrideEmbedLocation:!1}_checkPageSelector(e,t,n=[]){return e&&t&&n.length===0?(window.location.pathname!==`/`&&T.event(`VideoUtils`,`getPlacementElement`,Error(`PSNF: ${e} does not exist on the page`)),!1):!0}_getElementSelector(e,t,n){return t&&t.length>n?t[n]:(T.event(`VideoUtils`,`getPlacementElement`,Error(`ESNF: ${e} does not exist on the page`)),null)}_getPlacementElement(e){let{pageSelector:t,elementSelector:n,skip:r}=e,i=z(t),{valid:a,elements:o}=i,s=$(i,qe),c=R(n),{valid:l,elements:u}=c,d=$(c,Je);return t!==``&&!a?(T.error(`VideoUtils`,`getPlacementElement`,Error(`${t} is not a valid selector`),s),null):l?this._checkPageSelector(t,a,o)&&this._getElementSelector(n,u,r)||null:(T.error(`VideoUtils`,`getPlacementElement`,Error(`${n} is not a valid selector`),d),null)}_getEmbeddedPlayerType(e){let t=e.getAttribute(`data-player-type`);return(!t||t===`default`)&&(t=this._videoConfig.relatedSettings?this._videoConfig.relatedSettings.defaultPlayerType:`static`),this._stickyRelatedOnPage&&(t=`static`),t}_getMediaId(e){let t=e.getAttribute(`data-video-id`);return t?(this._relatedMediaIds.push(t),t):!1}_createRelatedPlayer(e,t,n,r){t===`collapse`?this._createCollapsePlayer(e,n):t===`static`&&this._createStaticPlayer(e,n,r)}_createCollapsePlayer(e,t){let{player:n,playerElement:r}=this._checkPlayerSelectorOnPage(`stickyRelated`),i=n||this._potentialPlayerMap.stationaryRelated[0];i&&i.playerId?(this._shouldOverrideElement(t)&&(t=this._getOverrideElement(n,r,t)),t=document.querySelector(`#cls-video-container-${e} > div`)||t,this._createStickyRelatedPlayer(L(L({},i),{},{mediaId:e}),t)):T.error(this._component,`_createCollapsePlayer`,`No video player found`)}_createStaticPlayer(e,t,n){if(this._potentialPlayerMap.stationaryRelated.length&&this._potentialPlayerMap.stationaryRelated[0].playerId){let r=this._potentialPlayerMap.stationaryRelated[0];this._createStationaryRelatedPlayer(L(L({},r),{},{mediaOrPlaylistId:e}),t,n)}else T.error(this._component,`_createStaticPlayer`,`No video player found`)}_shouldRunAutoplayPlayers(){return!!(this._isVideoAllowedOnPage()&&(this._potentialPlayerMap.stickyRelated.length||this._potentialPlayerMap.stickyPlaylist.length))}_setPlaylistMediaIdWhenStationaryOnPage(e,t){if(this._potentialPlayerMap.stationaryRelated.length&&this._potentialPlayerMap.stationaryRelated[0].playerId&&e&&e.length){let n=e[0].getAttribute(`data-video-id`);return n?L(L({},t),{},{mediaId:n}):t}return t}_determineAutoplayPlayers(e){let t=this._component,n=t===`VideoManagerComponent`,r=this._context;if(this._stickyRelatedOnPage){T.event(t,`stickyRelatedOnPage`,n&&{device:r&&r.device,isDesktop:this._device}||{});return}let{playerElement:i}=this._checkPlayerSelectorOnPage(`stickyPlaylist`),{player:a}=this._checkPlayerSelectorOnPage(`stickyPlaylist`);a&&a.playerId&&i?(a=this._setPlaylistMediaIdWhenStationaryOnPage(e,a),this._createPlaylistPlayer(a,i)):Math.random()<.01&&setTimeout(()=>{T.event(t,`noStickyPlaylist`,n&&{vendor:`none`,device:r&&r.device,isDesktop:this._device}||{})},1e3)}_initializeRelatedPlayers(e){let t=new Map;for(let n=0;n<e.length;n++){let r=e[n],i=r.offsetParent,a=this._getEmbeddedPlayerType(r),o=this._getMediaId(r);if(i&&o){let e=(t.get(o)||0)+1;t.set(o,e),this._createRelatedPlayer(o,a,r,e)}}}},Xe=class extends Ye{constructor(e,t){super(e,`ClsVideoInsertion`),this._videoConfig=e,this._clsOptions=t,s(this,`_IN_POST_SELECTOR`,`.adthrive-video-player`),s(this,`_WRAPPER_BAR_HEIGHT`,36),s(this,`_playersAddedFromPlugin`,[]),t.removeVideoTitleWrapper&&(this._WRAPPER_BAR_HEIGHT=0)}init(){this._initializePlayers()}_wrapVideoPlayerWithCLS(e,t,n=0){if(e.parentNode){let r=e.offsetWidth*(9/16),i=this._createGenericCLSWrapper(r,t,n);return e.parentNode.insertBefore(i,e),i.appendChild(e),i}return null}_createGenericCLSWrapper(e,t,n){let r=document.createElement(`div`);return r.id=`cls-video-container-${t}`,r.className=`adthrive`,r.style.minHeight=`${e+n}px`,r}_getTitleHeight(){let e=document.createElement(`h3`);e.style.margin=`10px 0`,e.innerText=`Title`,e.style.visibility=`hidden`,document.body.appendChild(e);let t=window.getComputedStyle(e),n=parseInt(t.height,10),r=parseInt(t.marginTop,10),i=parseInt(t.marginBottom,10);return document.body.removeChild(e),Math.min(n+i+r,50)}_initializePlayers(){let e=document.querySelectorAll(this._IN_POST_SELECTOR);e.length&&this._initializeRelatedPlayers(e),this._shouldRunAutoplayPlayers()&&this._determineAutoplayPlayers(e)}_createStationaryRelatedPlayer(e,t,n){let r=this._device===`mobile`?[400,225]:[640,360],i=Q.Video_In_Post_ClicktoPlay_SoundOn;if(t&&e.mediaOrPlaylistId){let a=`${e.mediaOrPlaylistId}_${n}`,o=this._wrapVideoPlayerWithCLS(t,a);this._playersAddedFromPlugin.push(e.mediaOrPlaylistId),o&&this._clsOptions.setInjectedVideoSlots({playerId:e.playerId,playerName:i,playerSize:r,element:o,type:`stationaryRelated`})}}_createStickyRelatedPlayer(e,t){let n=this._device===`mobile`?[400,225]:[640,360],r=Q.Video_Individual_Autoplay_SOff;if(this._stickyRelatedOnPage=!0,this._videoConfig.mobileStickyPlayerOnPage=this._device===`mobile`,this._videoConfig.collapsiblePlayerOnPage=!0,t&&e.position&&e.mediaId){let i=document.createElement(`div`);t.insertAdjacentElement(e.position,i);let a=this._getTitleHeight(),o=this._wrapVideoPlayerWithCLS(i,e.mediaId,this._WRAPPER_BAR_HEIGHT+a);this._playersAddedFromPlugin.push(e.mediaId),o&&this._clsOptions.setInjectedVideoSlots({playlistId:e.playlistId,playerId:e.playerId,playerSize:n,playerName:r,element:i,type:`stickyRelated`})}}_createPlaylistPlayer(e,t){let n=e.playlistId,r=this._device===`mobile`?Q.Video_Coll_SOff_Smartphone:Q.Video_Collapse_Autoplay_SoundOff,i=this._device===`mobile`?[400,225]:[640,360];this._videoConfig.mobileStickyPlayerOnPage=!0,this._videoConfig.collapsiblePlayerOnPage=!0;let a=document.createElement(`div`);t.insertAdjacentElement(e.position,a);let o=this._WRAPPER_BAR_HEIGHT;e.title&&(o+=this._getTitleHeight());let s=this._wrapVideoPlayerWithCLS(a,n,o);this._playersAddedFromPlugin.push(`playlist-${n}`),s&&this._clsOptions.setInjectedVideoSlots({playlistId:e.playlistId,playerId:e.playerId,playerSize:i,playerName:r,element:a,type:`stickyPlaylist`})}_isVideoAllowedOnPage(){let e=this._clsOptions.disableAds;if(e&&e.video){let t=``;e.reasons.has(`video_tag`)?t=`video tag`:e.reasons.has(`video_plugin`)?t=`video plugin`:e.reasons.has(`video_page`)&&(t=`command queue`);let n=t?`ClsVideoInsertionMigrated`:`ClsVideoInsertion`;return T.error(n,`isVideoAllowedOnPage`,Error(`DBP: Disabled by publisher via ${t||`other`}`)),!1}return!this._clsOptions.videoDisabledFromPlugin}};try{(()=>{let e=new c;!e||!e.enabled||(e.siteAds&&We(e.siteAds),new Be(e,new He).start(),new Xe(new m(e),e).init())})()}catch(e){T.error(`CLS`,`pluginsertion-iife`,e),window.adthriveCLS&&(window.adthriveCLS.injectedFromPlugin=!1)}})();</script><script data-no-optimize="1" data-cfasync="false">(function () {var clsElements = document.querySelectorAll("script[id^='cls-']"); window.adthriveCLS && clsElements && clsElements.length === 0 ? window.adthriveCLS.injectedFromPlugin = false : ""; })();</script><script type="speculationrules">
{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"\/*"},{"not":{"href_matches":["\/wp-*.php","\/wp-admin\/*","\/wp-content\/uploads\/*","\/wp-content\/*","\/wp-content\/plugins\/*","\/wp-content\/themes\/how-to-cook\/*","\/wp-content\/themes\/hello-elementor\/*","\/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
</script>
<script type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1">window.wprm_recipes = {"recipe-5969":{"type":"food","name":"Classic Chocolate Cake Recipe","slug":"wprm-classic-chocolate-cake-recipe","image_url":"https:\/\/www.howtocook.recipes\/wp-content\/uploads\/2020\/12\/Chocolate-cake-recipe.jpg","rating":{"count":1,"total":5,"average":5,"type":{"comment":0,"no_comment":0,"user":1},"user":0},"ingredients":[{"amount":"2","unit":"cups","name":"all-purpose flour","notes":"","id":215,"type":"ingredient","uid":0,"unit_systems":{"unit-system-1":{"amount":"2","unit":"cups","unitParsed":"cups"}}},{"amount":"2 1\/4","unit":"cups","name":"sugar","notes":"","id":218,"type":"ingredient","uid":1,"unit_systems":{"unit-system-1":{"amount":"2 1\/4","unit":"cups","unitParsed":"cups"}}},{"amount":"2","unit":"tsp","name":"baking powder","notes":"","id":398,"type":"ingredient","uid":2,"unit_systems":{"unit-system-1":{"amount":"2","unit":"tsp","unitParsed":"tsp"}}},{"amount":"1","unit":"tsp","name":"salt","notes":"","id":217,"type":"ingredient","uid":3,"unit_systems":{"unit-system-1":{"amount":"1","unit":"tsp","unitParsed":"tsp"}}},{"amount":"1 1\/2","unit":"tsp","name":"baking soda","notes":"","id":283,"type":"ingredient","uid":4,"unit_systems":{"unit-system-1":{"amount":"1 1\/2","unit":"tsp","unitParsed":"tsp"}}},{"amount":"3\/4","unit":"","name":"cocoa powder","notes":"unsweetened","id":923,"type":"ingredient","uid":5,"unit_systems":{"unit-system-1":{"amount":"3\/4","unit":"","unitParsed":""}}},{"amount":"1\/2","unit":"cup","name":"vegetable oil","notes":"","id":2118,"type":"ingredient","uid":6,"unit_systems":{"unit-system-1":{"amount":"1\/2","unit":"cup","unitParsed":"cup"}}},{"amount":"1 1\/8","unit":"cup","name":"buttermilk","notes":"","id":1328,"type":"ingredient","uid":7,"unit_systems":{"unit-system-1":{"amount":"1 1\/8","unit":"cup","unitParsed":"cup"}}},{"amount":"2","unit":"","name":"eggs","notes":"","id":226,"type":"ingredient","uid":8,"unit_systems":{"unit-system-1":{"amount":"2","unit":"","unitParsed":""}}},{"amount":"3","unit":"tsp","name":"vanilla extract","notes":"","id":287,"type":"ingredient","uid":9,"unit_systems":{"unit-system-1":{"amount":"3","unit":"tsp","unitParsed":"tsp"}}},{"amount":"1","unit":"cup","name":"hot water","notes":"","id":2772,"type":"ingredient","uid":10,"unit_systems":{"unit-system-1":{"amount":"1","unit":"cup","unitParsed":"cup"}}},{"amount":"1","unit":"cup","name":"cocoa powder","notes":"unsweetened","id":923,"type":"ingredient","uid":12,"unit_systems":{"unit-system-1":{"amount":"1","unit":"cup","unitParsed":"cup"}}},{"amount":"2","unit":"cups","name":"butter","notes":"softened","id":285,"type":"ingredient","uid":13,"unit_systems":{"unit-system-1":{"amount":"2","unit":"cups","unitParsed":"cups"}}},{"amount":"5","unit":"cups","name":"confectioners sugar","notes":"","id":1147,"type":"ingredient","uid":14,"unit_systems":{"unit-system-1":{"amount":"5","unit":"cups","unitParsed":"cups"}}},{"amount":"1\/2","unit":"cup","name":"heavy cream","notes":"","id":2723,"type":"ingredient","uid":15,"unit_systems":{"unit-system-1":{"amount":"1\/2","unit":"cup","unitParsed":"cup"}}},{"amount":"2 1\/2","unit":"tsp","name":"vanilla extract","notes":"","id":287,"type":"ingredient","uid":16,"unit_systems":{"unit-system-1":{"amount":"2 1\/2","unit":"tsp","unitParsed":"tsp"}}}],"originalServings":"14","originalServingsParsed":14,"currentServings":"14","currentServingsParsed":14,"currentServingsFormatted":"14","currentServingsMultiplier":1,"originalSystem":1,"currentSystem":1,"unitSystems":[1],"originalAdvancedServings":{"shape":"round","unit":"inch","diameter":0,"width":0,"length":0,"height":0},"currentAdvancedServings":{"shape":"round","unit":"inch","diameter":0,"width":0,"length":0,"height":0},"collection":{"type":"recipe","recipeId":5969,"name":"Classic Chocolate Cake Recipe","image":"https:\/\/www.howtocook.recipes\/wp-content\/uploads\/2020\/12\/Chocolate-cake-recipe-300x300.jpg","servings":14,"servingsUnit":"servings","parent_id":"5904","parent_url":"https:\/\/www.howtocook.recipes\/classic-chocolate-cake-recipe\/"}}}</script> <div data-elementor-type="popup" data-elementor-id="11558" class="elementor elementor-11558 elementor-location-popup" data-elementor-settings="{"a11y_navigation":"yes","triggers":[],"timing":[]}" data-elementor-post-type="elementor_library">
<div class="elementor-element elementor-element-d413e2b e-con-full e-flex e-con e-parent" data-id="d413e2b" data-element_type="container">
<div class="elementor-element elementor-element-93e1398 elementor-widget elementor-widget-heading" data-id="93e1398" data-element_type="widget" data-widget_type="heading.default">
<h3 class="elementor-heading-title elementor-size-default">Search Recipes</h3> </div>
<div class="elementor-element elementor-element-5031890 elementor-widget elementor-widget-search" data-id="5031890" data-element_type="widget" data-settings="{"submit_trigger":"click_submit","pagination_type_options":"none"}" data-widget_type="search.default">
<search class="e-search hidden" role="search">
<form class="e-search-form" action="https://www.howtocook.recipes" method="get">
<label class="e-search-label" for="search-5031890">
<span class="elementor-screen-only">
Search </span>
</label>
<div class="e-search-input-wrapper">
<input id="search-5031890" placeholder="Type to start searching..." class="e-search-input" type="search" name="s" value="" autocomplete="off" role="combobox" aria-autocomplete="list" aria-expanded="false" aria-controls="results-5031890" aria-haspopup="listbox">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-times" viewBox="0 0 352 512" xmlns="http://www.w3.org/2000/svg"><path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"></path></svg> <output id="results-5031890" class="e-search-results-container hide-loader" aria-live="polite" aria-atomic="true" aria-label="Results for search" tabindex="0">
<div class="e-search-results"></div>
</output>
</div>
<button class="e-search-submit " type="submit">
<span class="">
Search </span>
</button>
<input type="hidden" name="e_search_props" value="5031890-11558">
</form>
</search>
</div>
</div>
</div>
<link rel='stylesheet' id='elementor-post-11480-css' href='https://www.howtocook.recipes/wp-content/uploads/elementor/css/post-11480.css?ver=1763580754' media='all' />
<link rel="stylesheet" id="widget-nested-tabs-css" media="all" data-pmdelayedstyle="https://www.howtocook.recipes/wp-content/plugins/elementor/assets/css/widget-nested-tabs.min.css?ver=3.32.4">
<link rel='stylesheet' id='elementor-post-11472-css' href='https://www.howtocook.recipes/wp-content/uploads/elementor/css/post-11472.css?ver=1763580756' media='all' />
<link rel='stylesheet' id='elementor-post-11531-css' href='https://www.howtocook.recipes/wp-content/uploads/elementor/css/post-11531.css?ver=1763580757' media='all' />
<link rel="stylesheet" id="wprm-public-css" media="all" data-pmdelayedstyle="https://www.howtocook.recipes/wp-content/plugins/wp-recipe-maker/dist/public-modern.css?ver=10.1.1">
<link rel="stylesheet" id="wprmp-public-css" media="all" data-pmdelayedstyle="https://www.howtocook.recipes/wp-content/plugins/wp-recipe-maker-premium/dist/public-elite.css?ver=9.8.0">
<link rel='stylesheet' id='elementor-post-10118-css' href='https://www.howtocook.recipes/wp-content/uploads/elementor/css/post-10118.css?ver=1763580757' media='all' />
<link rel="stylesheet" id="widget-loop-grid-css" media="all" data-pmdelayedstyle="https://www.howtocook.recipes/wp-content/plugins/elementor-pro/assets/css/widget-loop-grid.min.css?ver=3.32.2">
<link rel='stylesheet' id='elementor-post-10026-css' href='https://www.howtocook.recipes/wp-content/uploads/elementor/css/post-10026.css?ver=1763580757' media='all' />
<link rel="stylesheet" id="widget-image-box-css" media="all" data-pmdelayedstyle="https://www.howtocook.recipes/wp-content/plugins/elementor/assets/css/widget-image-box.min.css?ver=3.32.4">
<script id="eio-lazy-load-js-before" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1">
var eio_lazy_vars = {"exactdn_domain":"","skip_autoscale":0,"bg_min_dpr":1.1,"threshold":0,"use_dpr":1};
</script>
<script src="https://www.howtocook.recipes/wp-content/plugins/ewww-image-optimizer/includes/lazysizes.min.js?ver=830" id="eio-lazy-load-js" async data-wp-strategy="async"></script>
<script src="https://www.howtocook.recipes/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js?ver=3.32.4" id="elementor-webpack-runtime-js" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1"></script>
<script src="https://www.howtocook.recipes/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=3.32.4" id="elementor-frontend-modules-js" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1"></script>
<script src="https://www.howtocook.recipes/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3" id="jquery-ui-core-js" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1"></script>
<script id="elementor-frontend-js-before" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1">
var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":false},"i18n":{"shareOnFacebook":"Share on Facebook","shareOnTwitter":"Share on Twitter","pinIt":"Pin it","download":"Download","downloadImage":"Download image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Play Video","previous":"Previous","next":"Next","close":"Close","a11yCarouselPrevSlideMessage":"Previous slide","a11yCarouselNextSlideMessage":"Next slide","a11yCarouselFirstSlideMessage":"This is the first slide","a11yCarouselLastSlideMessage":"This is the last slide","a11yCarouselPaginationBulletMessage":"Go to slide"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"hasCustomBreakpoints":false},"version":"3.32.4","is_static":false,"experimentalFeatures":{"e_font_icon_svg":true,"container":true,"e_optimized_markup":true,"nested-elements":true,"home_screen":true,"global_classes_should_enforce_capabilities":true,"cloud-library":true,"e_opt_in_v4_page":true,"import-export-customization":true,"mega-menu":true,"e_pro_variables":true},"urls":{"assets":"https:\/\/www.howtocook.recipes\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/www.howtocook.recipes\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/www.howtocook.recipes\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"bbaa9471e4"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":5904,"title":"Classic%20Chocolate%20Cake%20Recipe%20%28step-by-step%20video%29%20%7C%20How%20To%20Cook.Recipes","excerpt":"","featuredImage":"https:\/\/www.howtocook.recipes\/wp-content\/uploads\/2020\/12\/Chocolate-cake-recipe.jpg"}};
</script>
<script src="https://www.howtocook.recipes/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=3.32.4" id="elementor-frontend-js" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1"></script>
<script src="https://www.howtocook.recipes/wp-includes/js/imagesloaded.min.js?ver=5.0.0" id="imagesloaded-js" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1"></script>
<script src="https://www.howtocook.recipes/wp-content/plugins/elementor-pro/assets/lib/sticky/jquery.sticky.min.js?ver=3.32.2" id="e-sticky-js" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1"></script>
<script id="wprm-public-js-extra" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1">
var wprm_public = {"user":"0","endpoints":{"analytics":"https:\/\/www.howtocook.recipes\/wp-json\/wp-recipe-maker\/v1\/analytics","integrations":"https:\/\/www.howtocook.recipes\/wp-json\/wp-recipe-maker\/v1\/integrations","manage":"https:\/\/www.howtocook.recipes\/wp-json\/wp-recipe-maker\/v1\/manage","utilities":"https:\/\/www.howtocook.recipes\/wp-json\/wp-recipe-maker\/v1\/utilities"},"settings":{"jump_output_hash":true,"features_comment_ratings":true,"template_color_comment_rating":"#343434","instruction_media_toggle_default":"on","video_force_ratio":false,"analytics_enabled":false,"google_analytics_enabled":false,"print_new_tab":true,"print_recipe_identifier":"slug"},"post_id":"5904","home_url":"https:\/\/www.howtocook.recipes\/","print_slug":"wprm_print","permalinks":"\/%postname%\/","ajax_url":"https:\/\/www.howtocook.recipes\/wp-admin\/admin-ajax.php","nonce":"35445910b0","api_nonce":"765eb18032","translations":{"Select a collection":"Select a collection","Select a column":"Select a column","Select a group":"Select a group","Open the shopping list":"Open the shopping list","Shopping List":"Shopping List","Print this collection":"Print this collection","Print recipes in this collection":"Print recipes in this collection","Print":"Print","Print Collection":"Print Collection","Print Recipes":"Print Recipes","Hide Nutrition Facts":"Hide Nutrition Facts","Show Nutrition Facts":"Show Nutrition Facts","Share This Collection":"Share This Collection","Shared Collection":"Shared Collection","Copy Share Link":"Copy Share Link","The link copied to your clipboard will allow others to access (but not edit) this collection.":"The link copied to your clipboard will allow others to access (but not edit) this collection.","Stop Sharing Collection":"Stop Sharing Collection","Start Sharing Collection":"Start Sharing Collection","Change Collection Structure":"Change Collection Structure","Are you sure you want to remove all items from this collection?":"Are you sure you want to remove all items from this collection?","Clear all items in this collection":"Clear all items in this collection","Clear Items":"Clear Items","Description for this collection:":"Description for this collection:","Change the description for this collection":"Change the description for this collection","Set a description for this collection":"Set a description for this collection","Change Description":"Change Description","Set Description":"Set Description","Something went wrong. Please try again.":"Something went wrong. Please try again.","Save to my Collections":"Save to my Collections","None":"None","Blue":"Blue","Red":"Red","Green":"Green","Yellow":"Yellow","Note":"Note","Color":"Color","Name":"Name","Ingredients":"Ingredients","cup":"cup","olive oil":"olive oil","Add Ingredient":"Add Ingredient","Edit Ingredients":"Edit Ingredients","Text":"Text","Nutrition Facts (per serving)":"Nutrition Facts (per serving)","Add Column":"Add Column","Edit Columns":"Edit Columns","Add Group":"Add Group","Edit Groups":"Edit Groups","Add Item":"Add Item","Remove Items":"Remove Items","Columns & Groups":"Columns & Groups","Remove All Items":"Remove All Items","Stop Removing Items":"Stop Removing Items","Actions":"Actions","Click to add:":"Click to add:","Drag and drop to add:":"Drag and drop to add:","Load more...":"Load more...","Search Recipes":"Search Recipes","Search Ingredients":"Search Ingredients","Add Custom Recipe":"Add Custom Recipe","Add Note":"Add Note","Add from Collection":"Add from Collection","Start typing to search...":"Start typing to search...","Your Collections":"Your Collections","Editing User":"Editing User","Shared Collection:":"Shared Collection:","Cancel":"Cancel","Go Back":"Go Back","Edit Item":"Edit Item","Change Name":"Change Name","Move Left":"Move Left","Move Right":"Move Right","Duplicate":"Duplicate","Delete Column":"Delete Column","Are you sure you want to delete?":"Are you sure you want to delete?","Add a column to this collection":"Add a column to this collection","Click to set name":"Click to set name","Set a new amount for this ingredient:":"Set a new amount for this ingredient:","Change ingredient amount":"Change ingredient amount","Set the number of servings":"Set the number of servings","Set serving size":"Set serving size","servings":"servings","View Recipe":"View Recipe","Edit Custom Recipe":"Edit Custom Recipe","Edit Note":"Edit Note","Duplicate Item":"Duplicate Item","Change Servings":"Change Servings","Do not mark as leftovers":"Do not mark as leftovers","Mark as leftovers":"Mark as leftovers","Remove Item":"Remove Item","Edit Recipe":"Edit Recipe","Make sure to \"Reload Recipes in Collection\" after saving the collection to see these changes reflected.":"Make sure to \"Reload Recipes in Collection\" after saving the collection to see these changes reflected.","Add item to this collection group":"Add item to this collection group","Leftovers":"Leftovers","Decrease serving size by one":"Decrease serving size by one","Increase serving size by one":"Increase serving size by one","Description":"Description","Columns":"Columns","Groups":"Groups","Collection Items":"Collection Items","Clear All Items":"Clear All Items","Done":"Done","Add to Collection":"Add to Collection","Close":"Close","Move Up":"Move Up","Move Down":"Move Down","Delete Group":"Delete Group","Nutrition Facts":"Nutrition Facts","Something went wrong. Please contact support.":"Something went wrong. Please contact support.","Click to confirm...":"Click to confirm...","Are you sure you want to delete all items in":"Are you sure you want to delete all items in","Delete":"Delete","Stop Editing":"Stop Editing","Recipe":"Recipe","Regenerate this shopping list":"Regenerate this shopping list","Regenerate Shopping List":"Regenerate Shopping List","Print this shpopping list":"Print this shpopping list","Print recipes in this shopping list":"Print recipes in this shopping list","Print Shopping List":"Print Shopping List","The link copied to your clipboard will allow others to edit this shopping list.":"The link copied to your clipboard will allow others to edit this shopping list.","Copy this link to allow others to edit this shopping list:":"Copy this link to allow others to edit this shopping list:","Share Edit Link":"Share Edit Link","Stop editing this shopping list":"Stop editing this shopping list","Start editing this shopping list":"Start editing this shopping list","Edit Shopping List":"Edit Shopping List","Shop this list with Instacart":"Shop this list with Instacart","Shop with Instacart":"Shop with Instacart","Generate a shopping list for these recipes":"Generate a shopping list for these recipes","Generate Shopping List":"Generate Shopping List","Remove all recipes from this shopping list":"Remove all recipes from this shopping list","Remove All":"Remove All","Shopping List Options":"Shopping List Options","Include ingredient notes":"Include ingredient notes","Preferred Unit System":"Preferred Unit System","Deselect all":"Deselect all","Select all":"Select all","Collection":"Collection","Unnamed":"Unnamed","remove":"remove","Something went wrong. Please try again later.":"Something went wrong. Please try again later.","Make sure to select some recipes for the shopping list first.":"Make sure to select some recipes for the shopping list first.","Are you sure you want to generate a new shopping list for this collection? You will only be able to access this shopping list again with the share link.":"Are you sure you want to generate a new shopping list for this collection? You will only be able to access this shopping list again with the share link.","Are you sure you want to remove all recipes from this shopping list?":"Are you sure you want to remove all recipes from this shopping list?","Back":"Back","No recipes have been added to the shopping list yet.":"No recipes have been added to the shopping list yet.","Click the cart icon in the top right to generate the shopping list.":"Click the cart icon in the top right to generate the shopping list.","Select recipes and click the cart icon in the top right to generate the shopping list.":"Select recipes and click the cart icon in the top right to generate the shopping list.","Click the cart icon in the top right to generate a new shopping list.":"Click the cart icon in the top right to generate a new shopping list.","Changes to the collection have been made since this shopping list was generated.":"Changes to the collection have been made since this shopping list was generated.","Regenerate the shopping list to include these changes.":"Regenerate the shopping list to include these changes.","Ignore this warning":"Ignore this warning","Ignore":"Ignore","Right click and copy this link to allow others to edit this shopping list.":"Right click and copy this link to allow others to edit this shopping list.","Delete this ingredient from the shopping list":"Delete this ingredient from the shopping list","List":"List","Are you sure you want to delete this group, and all of the items in it?":"Are you sure you want to delete this group, and all of the items in it?","Delete this shopping list group":"Delete this shopping list group","Your shopping list is empty.":"Your shopping list is empty.","Group":"Group","Add a new collection":"Add a new collection","Add Collection":"Add Collection","Empty Collection":"Empty Collection","Add Pre-made Collection":"Add Pre-made Collection","Edit Collections":"Edit Collections","Select a collection to add for this user":"Select a collection to add for this user","Add Saved Collection":"Add Saved Collection","Change collection name":"Change collection name","Go to Shopping List":"Go to Shopping List","Recipes":"Recipes","Shared collection not found.":"Shared collection not found.","No data found.":"No data found.","Metric":"Metric","Average":"Average","Median":"Median","Maximum (1 user)":"Maximum (1 user)","Total (all users)":"Total (all users)","Sort:":"Sort:","Filter:":"Filter:","Recipe Name":"Recipe Name","# Users":"# Users","# Added":"# Added","Last 31 Days":"Last 31 Days","Last 7 Days":"Last 7 Days","Collections Usage":"Collections Usage","Recipes used in Collections":"Recipes used in Collections","Number of users that have this recipe in one of their collections at least once":"Number of users that have this recipe in one of their collections at least once","Total times that this recipe can be found in a collection (could be multiple times per user)":"Total times that this recipe can be found in a collection (could be multiple times per user)","Last X Days":"Last X Days","Total times that this recipe can be found in a collection, having been added to that collection during this timeframe":"Total times that this recipe can be found in a collection, having been added to that collection during this timeframe","Decrease serving size by 1":"Decrease serving size by 1","Increase serving size by 1":"Increase serving size by 1","Select Amazon Product":"Select Amazon Product","Change Amazon Product":"Change Amazon Product","Find Amazon Product:":"Find Amazon Product:","Search":"Search","Error":"Error","No products found for":"No products found for","No products found.":"No products found.","Results for":"Results for","Current Product":"Current Product","Select Product":"Select Product","Nothing to add products to yet.":"Nothing to add products to yet.","In recipe":"In recipe","Product":"Product","Amount needed":"Amount needed","Change Product":"Change Product","A name is required for this saved nutrition ingredient.":"A name is required for this saved nutrition ingredient.","Save a new Custom Ingredient":"Save a new Custom Ingredient","Amount":"Amount","Unit":"Unit","Name (required)":"Name (required)","Save for Later & Use":"Save for Later & Use","Use":"Use","Select a saved ingredient":"Select a saved ingredient","Match this equation to get the correct amounts:":"Match this equation to get the correct amounts:","Cancel Calculation":"Cancel Calculation","Go to Next Step":"Go to Next Step","Use These Values":"Use These Values","Nutrition Calculation":"Nutrition Calculation","Experiencing issues?":"Experiencing issues?","Check the API Status":"Check the API Status","n\/a":"n\/a","Values of all the checked ingredients will be added together and":"Values of all the checked ingredients will be added together and","divided by":"divided by","the number of servings for this recipe.":"the number of servings for this recipe.","Values of all the checked ingredients will be added together.":"Values of all the checked ingredients will be added together.","API Ingredients":"API Ingredients","Custom Ingredients":"Custom Ingredients","Recipe Nutrition Facts Preview":"Recipe Nutrition Facts Preview","Changes to these values can be made after confirming with the blue button.":"Changes to these values can be made after confirming with the blue button.","Select or search for a saved ingredient":"Select or search for a saved ingredient","No ingredients set for this recipe.":"No ingredients set for this recipe.","Used in Recipe":"Used in Recipe","Used for Calculation":"Used for Calculation","Nutrition Source":"Nutrition Source","Match & Units":"Match & Units","API":"API","Saved\/Custom":"Saved\/Custom","no match found":"no match found","Units n\/a":"Units n\/a","Find a match for:":"Find a match for:","No ingredients found for":"No ingredients found for","No ingredients found.":"No ingredients found.","Editing Equipment Affiliate Fields":"Editing Equipment Affiliate Fields","The fields you set here will affect all recipes using this equipment.":"The fields you set here will affect all recipes using this equipment.","Regular Links":"Regular Links","Images":"Images","HTML Code":"HTML Code","Images and HTML code only show up when the Equipment block is set to the \"Images\" display style in the Template Editor.":"Images and HTML code only show up when the Equipment block is set to the \"Images\" display style in the Template Editor.","Save Changes":"Save Changes","other recipe(s) affected":"other recipe(s) affected","This can affect other recipes":"This can affect other recipes","Edit Link":"Edit Link","Remove Link":"Remove Link","Are you sure you want to delete this link?":"Are you sure you want to delete this link?","Set Affiliate Link":"Set Affiliate Link","Edit Image":"Edit Image","Remove Image":"Remove Image","Add Image":"Add Image","This feature is only available in":"This feature is only available in","You need to set up this feature on the WP Recipe Maker > Settings > Unit Conversion page first.":"You need to set up this feature on the WP Recipe Maker > Settings > Unit Conversion page first.","Original Unit System for this recipe":"Original Unit System for this recipe","Use Default":"Use Default","First Unit System":"First Unit System","Second Unit System":"Second Unit System","Conversion":"Conversion","Converted":"Converted","Original":"Original","Convert All Automatically":"Convert All Automatically","Convert":"Convert","Keep Unit":"Keep Unit","Automatically":"Automatically","Weight Units":"Weight Units","Volume Units":"Volume Units","Convert...":"Convert...","Ingredient Link Type":"Ingredient Link Type","Global: the same link will be used for every recipe with this ingredient":"Global: the same link will be used for every recipe with this ingredient","Custom: these links will only affect the recipe below":"Custom: these links will only affect the recipe below","Use Global Links":"Use Global Links","Custom Links for this Recipe only":"Custom Links for this Recipe only","Edit Global Links":"Edit Global Links","Affiliate Link":"Affiliate Link","No link set":"No link set","No equipment set for this recipe.":"No equipment set for this recipe.","Regular Link":"Regular Link","Image":"Image","Edit Affiliate Fields":"Edit Affiliate Fields","No HTML set":"No HTML set","Editing Global Ingredient Links":"Editing Global Ingredient Links","All fields are required.":"All fields are required.","Something went wrong. Make sure this key does not exist yet.":"Something went wrong. Make sure this key does not exist yet.","Are you sure you want to close without saving changes?":"Are you sure you want to close without saving changes?","Editing Custom Field":"Editing Custom Field","Creating new Custom Field":"Creating new Custom Field","Type":"Type","Key":"Key","my-custom-field":"my-custom-field","My Custom Field":"My Custom Field","Save":"Save","Editing Product":"Editing Product","Setting Product":"Setting Product","Product ID":"Product ID","No product set yet":"No product set yet","Product Name":"Product Name","Unset Product":"Unset Product","Search for products":"Search for products","No products found":"No products found","A label and key are required.":"A label and key are required.","Editing Nutrient":"Editing Nutrient","Creating new Nutrient":"Creating new Nutrient","Custom":"Custom","Calculated":"Calculated","my-custom-nutrient":"my-custom-nutrient","Label":"Label","My Custom Nutrient":"My Custom Nutrient","mg":"mg","Daily Need":"Daily Need","Calculation":"Calculation","Learn more":"Learn more","Decimal Precision":"Decimal Precision","Order":"Order","Loading...":"Loading...","Editing Nutrition Ingredient":"Editing Nutrition Ingredient","Creating new Nutrition Ingredient":"Creating new Nutrition Ingredient","Are you sure you want to overwrite the existing values?":"Are you sure you want to overwrite the existing values?","Import values from recipe":"Import values from recipe","Cancel import":"Cancel import","Use this recipe":"Use this recipe","Edit Recipe Submission":"Edit Recipe Submission","Approve Submission":"Approve Submission","Approve Submission & Add to new Post":"Approve Submission & Add to new Post","Delete Recipe Submission":"Delete Recipe Submission","Are you sure you want to delete":"Are you sure you want to delete","ID":"ID","Date":"Date","User":"User","Edit Nutrient":"Edit Nutrient","Delete Custom Nutrient":"Delete Custom Nutrient","Active":"Active","View and edit collections for this user":"View and edit collections for this user","User ID":"User ID","Display Name":"Display Name","Email":"Email","# Collections":"# Collections","Show All":"Show All","Has Saved Collections":"Has Saved Collections","Does not have Saved Collections":"Does not have Saved Collections","# Items in Inbox":"# Items in Inbox","# Items in Collections":"# Items in Collections","Your Custom Fields":"Your Custom Fields","Custom Field":"Custom Field","Custom Fields":"Custom Fields","Custom Nutrition Ingredient":"Custom Nutrition Ingredient","Custom Nutrition":"Custom Nutrition","Custom Nutrient":"Custom Nutrient","Custom Nutrients":"Custom Nutrients","Features":"Features","Saved Collection":"Saved Collection","Saved Collections":"Saved Collections","User Collection":"User Collection","User Collections":"User Collections","Recipe Submissions":"Recipe Submissions","Recipe Submission":"Recipe Submission","Edit Field":"Edit Field","Delete Field":"Delete Field","Edit Custom Ingredient":"Edit Custom Ingredient","Delete Custom Ingredient":"Delete Custom Ingredient","Edit Saved Collection":"Edit Saved Collection","Reload Recipes":"Reload Recipes","Duplicate Saved Collection":"Duplicate Saved Collection","Delete Saved Collection":"Delete Saved Collection","Category":"Category","Change Category":"Change Category","What do you want to be the category group for":"What do you want to be the category group for","Default":"Default","Enable to make this a default collection for new users. Does not affect those who have used the collections feature before.":"Enable to make this a default collection for new users. Does not affect those who have used the collections feature before.","Push to All":"Push to All","Enable to push this collection to everyone using the collections feature. Will affect both new and existing users and add this collection to their list.":"Enable to push this collection to everyone using the collections feature. Will affect both new and existing users and add this collection to their list.","Template":"Template","Enable to make this saved collection show up as an option after clicking \"Add Collection\". This would usually be an empty collection with a specific structure like \"Empty Week Plan\".":"Enable to make this saved collection show up as an option after clicking \"Add Collection\". This would usually be an empty collection with a specific structure like \"Empty Week Plan\".","Quick Add":"Quick Add","Enable to make this saved collection show up after clicking on \"Add Pre-made Collection\". Can be used to give users easy access to the meal plans you create.":"Enable to make this saved collection show up after clicking on \"Add Pre-made Collection\". Can be used to give users easy access to the meal plans you create.","What do you want the new order to be?":"What do you want the new order to be?","Save Collection Link":"Save Collection Link","# Items":"# Items"},"version":{"free":"10.1.1","elite":"9.8.0"}};
</script>
<script src="https://www.howtocook.recipes/wp-content/plugins/wp-recipe-maker/dist/public-modern.js?ver=10.1.1" id="wprm-public-js" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1"></script>
<script id="wprmp-public-js-extra" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1">
var wprmp_public = {"user":"0","endpoints":{"private_notes":"https:\/\/www.howtocook.recipes\/wp-json\/wp-recipe-maker\/v1\/private-notes","user_rating":"https:\/\/www.howtocook.recipes\/wp-json\/wp-recipe-maker\/v1\/user-rating","collections":"https:\/\/www.howtocook.recipes\/wp-json\/wp\/v2\/wprm_collection","collections_helper":"https:\/\/www.howtocook.recipes\/wp-json\/wp-recipe-maker\/v1\/recipe-collections","nutrition":"https:\/\/www.howtocook.recipes\/wp-json\/wp-recipe-maker\/v1\/nutrition"},"settings":{"recipe_template_mode":"modern","features_adjustable_servings":true,"adjustable_servings_url":false,"adjustable_servings_url_param":"servings","adjustable_servings_round_to_decimals":"2","unit_conversion_remember":true,"unit_conversion_temperature":"none","unit_conversion_temperature_precision":"round_5","unit_conversion_system_1_temperature":"F","unit_conversion_system_2_temperature":"C","unit_conversion_advanced_servings_conversion":false,"unit_conversion_system_1_length_unit":"inch","unit_conversion_system_2_length_unit":"cm","fractions_enabled":false,"fractions_use_mixed":true,"fractions_use_symbols":true,"fractions_max_denominator":"8","unit_conversion_system_1_fractions":true,"unit_conversion_system_2_fractions":true,"unit_conversion_enabled":false,"decimal_separator":"point","features_comment_ratings":true,"features_user_ratings":true,"user_ratings_type":"modal","user_ratings_force_comment_scroll_to_smooth":true,"user_ratings_modal_title":"Rate This Recipe","user_ratings_thank_you_title":"Thank You!","user_ratings_thank_you_message_with_comment":"","user_ratings_problem_message":"<p>There was a problem rating this recipe. Please try again later.<\/p>","user_ratings_force_comment_scroll_to":"","user_ratings_open_url_parameter":"rate","user_ratings_require_comment":true,"user_ratings_require_name":true,"user_ratings_require_email":true,"user_ratings_comment_suggestions_enabled":"never","rating_details_zero":"No ratings yet","rating_details_one":"%average% from 1 vote","rating_details_multiple":"%average% from %votes% votes","rating_details_user_voted":"(Your vote: %user%)","rating_details_user_not_voted":"(Click on the stars to vote!)","servings_changer_display":"tooltip_slider","template_ingredient_list_style":"disc","template_instruction_list_style":"decimal","template_color_icon":"#343434","recipe_collections_scroll_to_top":true,"recipe_collections_scroll_to_top_offset":"30"},"timer":{"sound_file":"https:\/\/www.howtocook.recipes\/wp-content\/plugins\/wp-recipe-maker-premium\/assets\/sounds\/alarm.mp3","text":{"start_timer":"Click to Start Timer"},"icons":{"pause":"<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\"><g ><path fill=\"#fffefe\" d=\"M9,2H4C3.4,2,3,2.4,3,3v18c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1V3C10,2.4,9.6,2,9,2z\"\/><path fill=\"#fffefe\" d=\"M20,2h-5c-0.6,0-1,0.4-1,1v18c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1V3C21,2.4,20.6,2,20,2z\"\/><\/g><\/svg>","play":"<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\"><g ><path fill=\"#fffefe\" d=\"M6.6,2.2C6.3,2,5.9,1.9,5.6,2.1C5.2,2.3,5,2.6,5,3v18c0,0.4,0.2,0.7,0.6,0.9C5.7,22,5.8,22,6,22c0.2,0,0.4-0.1,0.6-0.2l12-9c0.3-0.2,0.4-0.5,0.4-0.8s-0.1-0.6-0.4-0.8L6.6,2.2z\"\/><\/g><\/svg>","close":"<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\"><g ><path fill=\"#fffefe\" d=\"M22.7,4.3l-3-3c-0.4-0.4-1-0.4-1.4,0L12,7.6L5.7,1.3c-0.4-0.4-1-0.4-1.4,0l-3,3c-0.4,0.4-0.4,1,0,1.4L7.6,12l-6.3,6.3c-0.4,0.4-0.4,1,0,1.4l3,3c0.4,0.4,1,0.4,1.4,0l6.3-6.3l6.3,6.3c0.2,0.2,0.5,0.3,0.7,0.3s0.5-0.1,0.7-0.3l3-3c0.4-0.4,0.4-1,0-1.4L16.4,12l6.3-6.3C23.1,5.3,23.1,4.7,22.7,4.3z\"\/><\/g><\/svg>"}},"recipe_submission":{"max_file_size":52428800,"text":{"image_size":"The file is too large. Maximum size:"}},"collections":{"default":{"inbox":{"id":0,"name":"Inbox","nbrItems":0,"columns":[{"id":0,"name":"Recipes"}],"groups":[{"id":0,"name":""}],"items":{"0-0":[]},"created":1763586779},"user":[]}},"add_to_collection":{"access":"everyone","behaviour":"inbox","choice":"choose_column_group","placement":"bottom","not_logged_in":"hide","not_logged_in_redirect":"","not_logged_in_tooltip":"","collections":{"inbox":"Inbox","user":[]}},"quick_access_shopping_list":{"access":"everyone"}};
</script>
<script src="https://www.howtocook.recipes/wp-content/plugins/wp-recipe-maker-premium/dist/public-elite.js?ver=9.8.0" id="wprmp-public-js" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1"></script>
<script src="https://www.howtocook.recipes/wp-includes/js/comment-reply.min.js?ver=6.8.3" id="comment-reply-js" async data-wp-strategy="async" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1"></script>
<script src="https://www.howtocook.recipes/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.min.js?ver=3.32.2" id="elementor-pro-webpack-runtime-js" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1"></script>
<script src="https://www.howtocook.recipes/wp-includes/js/dist/hooks.min.js?ver=4d63a3d491d11ffd8ac6" id="wp-hooks-js" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1"></script>
<script src="https://www.howtocook.recipes/wp-includes/js/dist/i18n.min.js?ver=5e580eb46a90c2b997e6" id="wp-i18n-js" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1"></script>
<script id="wp-i18n-js-after" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1">
wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );
</script>
<script id="elementor-pro-frontend-js-before" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1">
var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/www.howtocook.recipes\/wp-admin\/admin-ajax.php","nonce":"8f4a73a90d","urls":{"assets":"https:\/\/www.howtocook.recipes\/wp-content\/plugins\/elementor-pro\/assets\/","rest":"https:\/\/www.howtocook.recipes\/wp-json\/"},"settings":{"lazy_load_background_images":false},"popup":{"hasPopUps":true},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"},"x-twitter":{"title":"X"},"threads":{"title":"Threads"}},"facebook_sdk":{"lang":"en_US","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/www.howtocook.recipes\/wp-content\/plugins\/elementor-pro\/modules\/lottie\/assets\/animations\/default.json"}};
</script>
<script src="https://www.howtocook.recipes/wp-content/plugins/elementor-pro/assets/js/frontend.min.js?ver=3.32.2" id="elementor-pro-frontend-js" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1"></script>
<script src="https://www.howtocook.recipes/wp-content/plugins/elementor-pro/assets/js/elements-handlers.min.js?ver=3.32.2" id="pro-elements-handlers-js" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1"></script>
<script type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1">
jQuery(function($){
// Replace .menuTabs with your Tabs widget's selector
var $tabs = $('.menuTabs');
// For Elementor Tabs widget
$tabs.find('.e-n-tab-title').each(function(){
var $title = $(this);
$title.off('click'); // remove default click handler if needed
$title.on('mouseenter', function(){
if (!$title.hasClass('elementor-active')) {
$title.trigger('click'); // simulate click on hover
}
});
});
});
</script>
<div id="wprm-popup-modal-user-rating" class="wprm-popup-modal wprm-popup-modal-user-rating" data-type="user-rating" aria-hidden="true">
<div class="wprm-popup-modal__overlay" tabindex="-1">
<div class="wprm-popup-modal__container" role="dialog" aria-modal="true" aria-labelledby="wprm-popup-modal-user-rating-title">
<header class="wprm-popup-modal__header">
<h2 class="wprm-popup-modal__title" id="wprm-popup-modal-user-rating-title">
Rate This Recipe </h2>
<button class="wprm-popup-modal__close" aria-label="Close" data-micromodal-close></button>
</header>
<div class="wprm-popup-modal__content" id="wprm-popup-modal-user-rating-content">
<form id="wprm-user-ratings-modal-stars-form" onsubmit="window.WPRecipeMaker.userRatingModal.submit( this ); return false;">
<div class="wprm-user-ratings-modal-recipe-name"></div>
<div class="wprm-user-ratings-modal-stars-container">
<fieldset class="wprm-user-ratings-modal-stars">
<legend>Your vote:</legend>
<input aria-label="Don't rate this recipe" name="wprm-user-rating-stars" value="0" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="margin-left: -31px !important; width: 34px !important; height: 34px !important;" checked="checked"><span aria-hidden="true" style="width: 170px !important; height: 34px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="97.1428571429px" height="16px" viewBox="0 0 145.714285714 29.1428571429">
<defs>
<polygon class="wprm-modal-star-empty" id="wprm-modal-star-empty-0" fill="none" stroke="#FFD700" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
</defs>
<use xlink:href="#wprm-modal-star-empty-0" x="2.57142857143" y="2.57142857143" />
<use xlink:href="#wprm-modal-star-empty-0" x="31.7142857143" y="2.57142857143" />
<use xlink:href="#wprm-modal-star-empty-0" x="60.8571428571" y="2.57142857143" />
<use xlink:href="#wprm-modal-star-empty-0" x="90" y="2.57142857143" />
<use xlink:href="#wprm-modal-star-empty-0" x="119.142857143" y="2.57142857143" />
</svg></span><br><input aria-label="Rate this recipe 1 out of 5 stars" name="wprm-user-rating-stars" value="1" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 34px !important; height: 34px !important;"><span aria-hidden="true" style="width: 170px !important; height: 34px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="97.1428571429px" height="16px" viewBox="0 0 145.714285714 29.1428571429">
<defs>
<polygon class="wprm-modal-star-empty" id="wprm-modal-star-empty-1" fill="none" stroke="#FFD700" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
<path class="wprm-modal-star-full" id="wprm-modal-star-full-1" fill="#FFD700" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
</defs>
<use xlink:href="#wprm-modal-star-full-1" x="2.57142857143" y="2.57142857143" />
<use xlink:href="#wprm-modal-star-empty-1" x="31.7142857143" y="2.57142857143" />
<use xlink:href="#wprm-modal-star-empty-1" x="60.8571428571" y="2.57142857143" />
<use xlink:href="#wprm-modal-star-empty-1" x="90" y="2.57142857143" />
<use xlink:href="#wprm-modal-star-empty-1" x="119.142857143" y="2.57142857143" />
</svg></span><br><input aria-label="Rate this recipe 2 out of 5 stars" name="wprm-user-rating-stars" value="2" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 34px !important; height: 34px !important;"><span aria-hidden="true" style="width: 170px !important; height: 34px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="97.1428571429px" height="16px" viewBox="0 0 145.714285714 29.1428571429">
<defs>
<polygon class="wprm-modal-star-empty" id="wprm-modal-star-empty-2" fill="none" stroke="#FFD700" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
<path class="wprm-modal-star-full" id="wprm-modal-star-full-2" fill="#FFD700" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
</defs>
<use xlink:href="#wprm-modal-star-full-2" x="2.57142857143" y="2.57142857143" />
<use xlink:href="#wprm-modal-star-full-2" x="31.7142857143" y="2.57142857143" />
<use xlink:href="#wprm-modal-star-empty-2" x="60.8571428571" y="2.57142857143" />
<use xlink:href="#wprm-modal-star-empty-2" x="90" y="2.57142857143" />
<use xlink:href="#wprm-modal-star-empty-2" x="119.142857143" y="2.57142857143" />
</svg></span><br><input aria-label="Rate this recipe 3 out of 5 stars" name="wprm-user-rating-stars" value="3" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 34px !important; height: 34px !important;"><span aria-hidden="true" style="width: 170px !important; height: 34px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="97.1428571429px" height="16px" viewBox="0 0 145.714285714 29.1428571429">
<defs>
<polygon class="wprm-modal-star-empty" id="wprm-modal-star-empty-3" fill="none" stroke="#FFD700" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
<path class="wprm-modal-star-full" id="wprm-modal-star-full-3" fill="#FFD700" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
</defs>
<use xlink:href="#wprm-modal-star-full-3" x="2.57142857143" y="2.57142857143" />
<use xlink:href="#wprm-modal-star-full-3" x="31.7142857143" y="2.57142857143" />
<use xlink:href="#wprm-modal-star-full-3" x="60.8571428571" y="2.57142857143" />
<use xlink:href="#wprm-modal-star-empty-3" x="90" y="2.57142857143" />
<use xlink:href="#wprm-modal-star-empty-3" x="119.142857143" y="2.57142857143" />
</svg></span><br><input aria-label="Rate this recipe 4 out of 5 stars" name="wprm-user-rating-stars" value="4" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 34px !important; height: 34px !important;"><span aria-hidden="true" style="width: 170px !important; height: 34px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="97.1428571429px" height="16px" viewBox="0 0 145.714285714 29.1428571429">
<defs>
<polygon class="wprm-modal-star-empty" id="wprm-modal-star-empty-4" fill="none" stroke="#FFD700" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
<path class="wprm-modal-star-full" id="wprm-modal-star-full-4" fill="#FFD700" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
</defs>
<use xlink:href="#wprm-modal-star-full-4" x="2.57142857143" y="2.57142857143" />
<use xlink:href="#wprm-modal-star-full-4" x="31.7142857143" y="2.57142857143" />
<use xlink:href="#wprm-modal-star-full-4" x="60.8571428571" y="2.57142857143" />
<use xlink:href="#wprm-modal-star-full-4" x="90" y="2.57142857143" />
<use xlink:href="#wprm-modal-star-empty-4" x="119.142857143" y="2.57142857143" />
</svg></span><br><input aria-label="Rate this recipe 5 out of 5 stars" name="wprm-user-rating-stars" value="5" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 34px !important; height: 34px !important;"><span aria-hidden="true" style="width: 170px !important; height: 34px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="97.1428571429px" height="16px" viewBox="0 0 145.714285714 29.1428571429">
<defs>
<path class="wprm-modal-star-full" id="wprm-modal-star-full-5" fill="#FFD700" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
</defs>
<use xlink:href="#wprm-modal-star-full-5" x="2.57142857143" y="2.57142857143" />
<use xlink:href="#wprm-modal-star-full-5" x="31.7142857143" y="2.57142857143" />
<use xlink:href="#wprm-modal-star-full-5" x="60.8571428571" y="2.57142857143" />
<use xlink:href="#wprm-modal-star-full-5" x="90" y="2.57142857143" />
<use xlink:href="#wprm-modal-star-full-5" x="119.142857143" y="2.57142857143" />
</svg></span> </fieldset>
</div>
<textarea name="wprm-user-rating-comment" class="wprm-user-rating-modal-comment" placeholder="Share your thoughts! What did you like about this recipe?" oninput="window.WPRecipeMaker.userRatingModal.checkFields();" aria-label="Comment"></textarea>
<input type="hidden" name="wprm-user-rating-recipe-id" value="" />
<div class="wprm-user-rating-modal-comment-meta">
<div class="wprm-user-rating-modal-field">
<label for="wprm-user-rating-name">Name *</label>
<input type="text" id="wprm-user-rating-name" name="wprm-user-rating-name" value="" placeholder="" /> </div>
<div class="wprm-user-rating-modal-field">
<label for="wprm-user-rating-email">Email *</label>
<input type="email" id="wprm-user-rating-email" name="wprm-user-rating-email" value="" placeholder="" />
</div> </div>
<footer class="wprm-popup-modal__footer">
<button type="submit" class="wprm-popup-modal__btn wprm-user-rating-modal-submit-comment">Rate and Review Recipe</button>
<div id="wprm-user-rating-modal-errors">
<div id="wprm-user-rating-modal-error-rating">A rating is required</div>
<div id="wprm-user-rating-modal-error-name">A name is required</div>
<div id="wprm-user-rating-modal-error-email">An email is required</div>
</div>
<div id="wprm-user-rating-modal-waiting">
<div class="wprm-loader"></div>
</div>
</footer>
</form>
<div id="wprm-user-ratings-modal-message"></div> </div>
</div>
</div>
</div><div id="wprm-popup-modal-2" class="wprm-popup-modal wprm-popup-modal-user-rating-summary" data-type="user-rating-summary" aria-hidden="true">
<div class="wprm-popup-modal__overlay" tabindex="-1">
<div class="wprm-popup-modal__container" role="dialog" aria-modal="true" aria-labelledby="wprm-popup-modal-2-title">
<header class="wprm-popup-modal__header">
<h2 class="wprm-popup-modal__title" id="wprm-popup-modal-2-title">
Recipe Ratings without Comment </h2>
<button class="wprm-popup-modal__close" aria-label="Close" data-micromodal-close></button>
</header>
<div class="wprm-popup-modal__content" id="wprm-popup-modal-2-content">
<div class="wprm-loader"></div>
<div class="wprm-popup-modal-user-rating-summary-ratings"></div>
<div class="wprm-popup-modal-user-rating-summary-error">Something went wrong. Please try again.</div> </div>
</div>
</div>
</div><style type="text/css">.wprm-recipe-name {
color: #1a1a1a !important;
}
.wprm-recipe-container ul li{
margin-bottom: 10px
}
.wprm-nutrition-label-container, .wprm-private-notes-container{
padding: 20px
}
.wprm-nutrition-label-text-nutrition-label{
margin-right: 10px;
}
.wprm-nutrition-label-container ul{
display: flex;
gap: 8px
}
.wprm-recipe-template-htc a{
font-weight: 600;
text-decoration: underline
}
.wprm-recipe-template-htc {
margin: 20px auto;
--glacier-background: #F7F7F7; /*wprm_background type=color*/
background-color: var(--glacier-background);
font-family: inherit; /*wprm_main_font_family type=font*/
font-size: 18px; /*wprm_main_font_size type=font_size*/
line-height: 1.55em; /*wprm_main_line_height type=font_size*/
--glacier-text-color: #333333; /*wprm_main_text type=color*/
color: var(--glacier-text-color);
max-width: 1600px; /*wprm_max_width type=size*/
--glacier-interactivity-color: #734060; /*wprm_interactivity_color type=color*/
--glacier-accent-color: #734060; /*wprm_accent_color type=color*/
--glacier-header-text: #ffffff; /*wprm_header_text type=color*/
--glacier-header-background: #734060; /*wprm_header_background_text type=color*/
}
.wprm-recipe-template-htc a {
color: #734060; /*wprm_link type=color*/
}
.wprm-recipe-template-htc p, .wprm-recipe-template-htc li {
font-family: inherit; /*wprm_main_font_family type=font*/
font-size: 1em;
line-height: 1.55em; /*wprm_main_line_height type=font_size*/
}
.wprm-recipe-template-htc li {
margin: 0 0 0 32px;
padding: 0;
}
.rtl .wprm-recipe-template-htc li {
margin: 0 32px 0 0;
}
.wprm-recipe-template-htc ol, .wprm-recipe-template-htc ul {
margin: 0;
padding: 0;
}
.wprm-recipe-template-htc br {
display: none;
}
.wprm-recipe-template-htc .wprm-recipe-name,
.wprm-recipe-template-htc .wprm-recipe-header {
font-family: inherit; /*wprm_header_font_family type=font*/
color: var(--glacier-header-text);
line-height: 1.3em; /*wprm_header_line_height type=font_size*/
}
.wprm-recipe-template-htc .wprm-recipe-header * {
font-family: inherit; /*wprm_main_font_family type=font*/
}
.wprm-recipe-template-htc h1,
.wprm-recipe-template-htc h2,
.wprm-recipe-template-htc h3,
.wprm-recipe-template-htc h4,
.wprm-recipe-template-htc h5,
.wprm-recipe-template-htc h6 {
font-family: inherit; /*wprm_header_font_family type=font*/
color: #ffffff; /*wprm_header_text type=color*/
line-height: 1.3em; /*wprm_header_line_height type=font_size*/
margin: 0;
padding: 0;
}
.wprm-recipe-template-htc h1 {
font-size: 42px; /*wprm_h1_size type=font_size*/
}
.wprm-recipe-template-htc h2 {
font-size: 32px; /*wprm_h2_size type=font_size*/
}
.wprm-recipe-template-htc h3 {
font-size: 22px; /*wprm_h3_size type=font_size*/
}
.wprm-recipe-template-htc h4 {
font-size: 1em; /*wprm_h4_size type=font_size*/
}
.wprm-recipe-template-htc h5 {
font-size: 1em; /*wprm_h5_size type=font_size*/
}
.wprm-recipe-template-htc h6 {
font-size: 1em; /*wprm_h6_size type=font_size*/
}
.wprm-recipe-template-htc.wprm-min-500 .glacier-meta {
margin-top: 40px;
}
.wprm-recipe-template-htc.wprm-min-500 .glacier-meta .wprm-layout-column:first-child {
border-right: 1px solid var(--glacier-text-color);
padding-right: 20px;
margin-right: -20px;
}</style><script>!function(e){const r={"Europe/Brussels":"gdpr","Europe/Sofia":"gdpr","Europe/Prague":"gdpr","Europe/Copenhagen":"gdpr","Europe/Berlin":"gdpr","Europe/Tallinn":"gdpr","Europe/Dublin":"gdpr","Europe/Athens":"gdpr","Europe/Madrid":"gdpr","Africa/Ceuta":"gdpr","Europe/Paris":"gdpr","Europe/Zagreb":"gdpr","Europe/Rome":"gdpr","Asia/Nicosia":"gdpr","Europe/Nicosia":"gdpr","Europe/Riga":"gdpr","Europe/Vilnius":"gdpr","Europe/Luxembourg":"gdpr","Europe/Budapest":"gdpr","Europe/Malta":"gdpr","Europe/Amsterdam":"gdpr","Europe/Vienna":"gdpr","Europe/Warsaw":"gdpr","Europe/Lisbon":"gdpr","Atlantic/Madeira":"gdpr","Europe/Bucharest":"gdpr","Europe/Ljubljana":"gdpr","Europe/Bratislava":"gdpr","Europe/Helsinki":"gdpr","Europe/Stockholm":"gdpr","Europe/London":"gdpr","Europe/Vaduz":"gdpr","Atlantic/Reykjavik":"gdpr","Europe/Oslo":"gdpr","Europe/Istanbul":"gdpr","Europe/Zurich":"gdpr"},p=(()=>{const e=Intl.DateTimeFormat().resolvedOptions().timeZone;return r[e]||null})();if(null===p||"gdpr"!==p){const r="__adblocker";if(-1===e.cookie.indexOf(r)){const p=new XMLHttpRequest;p.open("GET","https://ads.adthrive.com/abd/abd.js",!0),p.onreadystatechange=function(){if(XMLHttpRequest.DONE===p.readyState)if(200===p.status){const r=e.createElement("script");r.innerHTML=p.responseText,e.getElementsByTagName("head")[0].appendChild(r)}else{const p=new Date;p.setTime(p.getTime()+3e5),e.cookie=r+"=true; expires="+p.toUTCString()+"; path=/"}},p.send()}}}(document);</script><script type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1" data-rocketlazyloadscript="1">!function(){function e(){var e=document.cookie.match("(^|[^;]+)\\s*__adblocker\\s*=\\s*([^;]+)");return e&&e.pop()}function t(){var e=document.createElement("script");e.async=!0,e.id="Tqgkgu",e.setAttribute("data-sdk","l/1.1.15"),e.setAttribute("data-cfasync","false"),e.src="https://html-load.com/loader.min.js",e.charset="UTF-8",e.setAttribute("data","kfpvgbrkab9r4a5rkrqrkwagrw6rzrv8rxag0asrka5abaoagrxa5srxrxabasrkrvabaoaxrx0asrkabrxfaba1raa5a5asrkr9wa1agrw6rzr9rkaia8"),e.setAttribute("onload","(async()=>{let e='html-load.com';const t=window,a=document,r=e=>new Promise((t=>{const a=.1*e,r=e+Math.floor(2*Math.random()*a)-a;setTimeout(t,r)})),o=t.addEventListener.bind(t),n=t.postMessage.bind(t),s=btoa,i='message',l=location,c=Math.random;try{const t=()=>new Promise(((e,t)=>{let a=c().toString(),r=c().toString();o(i,(e=>e.data===a&&n(r,'*'))),o(i,(t=>t.data===r&&e())),n(a,'*'),setTimeout((()=>{t(Error('Timeout'))}),1231)})),a=async()=>{try{let e=!1;const a=c().toString();if(o(i,(t=>{t.data===a+'_as_res'&&(e=!0)})),n(a+'_as_req','*'),await t(),await r(500),e)return!0}catch(e){}return!1},s=[100,500,1e3];for(let o=0;o<=s.length&&!await a();o++){if(o===s.length-1)throw'Failed to load website properly since '+e+' is tainted. Please allow '+e;await r(s[o])}}catch(d){try{const e=a.querySelector('script#Tqgkgu').getAttribute('onerror');t[s(l.hostname+'_show_bfa')]=d,await new Promise(((t,r)=>{o('message',(e=>{'as_modal_loaded'===e.data&&t()})),setTimeout((()=>r(d)),3e3);const n=a.createElement('script');n.innerText=e,a.head.appendChild(n),n.remove()}))}catch(m){(t=>{const a='https://report.error-report.com/modal';try{confirm('There was a problem loading the page. Please click OK to learn more.')?l.href=a+'?url='+s(l.href)+'&error='+s(t)+'&domain='+e:l.reload()}catch(d){location.href=a+'?eventId=&error=Vml0YWwgQVBJIGJsb2NrZWQ%3D&domain='+e}})(d)}}})();"),e.setAttribute("onerror","(async()=>{const e=window,t=document;let r=JSON.parse(atob('WyJodG1sLWxvYWQuY29tIiwiZmIuaHRtbC1sb2FkLmNvbSIsImQzN2o4cGZ4dTJpb2dpLmNsb3VkZnJvbnQubmV0IiwiY29udGVudC1sb2FkZXIuY29tIiwiZmIuY29udGVudC1sb2FkZXIuY29tIl0=')),o=r[0];const a='addEventListener',n='setAttribute',s='getAttribute',i=location,l=clearInterval,c='as_retry',d=i.hostname,h=e.addEventListener.bind(e),m=btoa,u='https://report.error-report.com/modal',b=e=>{try{confirm('There was a problem loading the page. Please click OK to learn more.')?i.href=u+'?url='+m(i.href)+'&error='+m(e)+'&domain='+o:i.reload()}catch(t){location.href=u+'?eventId=&error=Vml0YWwgQVBJIGJsb2NrZWQ%3D&domain='+o}},p=async e=>{try{localStorage.setItem(i.host+'_fa_'+m('last_bfa_at'),Date.now().toString())}catch(p){}setInterval((()=>t.querySelectorAll('link,style').forEach((e=>e.remove()))),100);const r=await fetch('https://error-report.com/report?type=loader_light&url='+m(i.href)+'&error='+m(e),{method:'POST'}).then((e=>e.text())),a=new Promise((e=>{h('message',(t=>{'as_modal_loaded'===t.data&&e()}))}));let s=t.createElement('iframe');s.src=u+'?url='+m(i.href)+'&eventId='+r+'&error='+m(e)+'&domain='+o,s[n]('style','width:100vw;height:100vh;z-index:2147483647;position:fixed;left:0;top:0;');const c=e=>{'close-error-report'===e.data&&(s.remove(),removeEventListener('message',c))};h('message',c),t.body.appendChild(s);const d=setInterval((()=>{if(!t.contains(s))return l(d);(()=>{const e=s.getBoundingClientRect();return'none'!==getComputedStyle(s).display&&0!==e.width&&0!==e.height})()||(l(d),b(e))}),1e3);await new Promise(((t,r)=>{a.then(t),setTimeout((()=>r(e)),3e3)}))},f=m(d+'_show_bfa');if(e[f])p(e[f]);else try{if(void 0===e[c]&&(e[c]=0),e[c]>=r.length)throw'Failed to load website properly since '+o+' is blocked. Please allow '+o;if((()=>{const t=e=>{let t=0;for(let r=0,o=e.length;o>r;r++)t=(t<<5)-t+e.charCodeAt(r),t|=0;return t},r=Date.now(),o=r-r%864e5,a=o-864e5,n=o+864e5,s='loader-check',i='as_'+t(s+'_'+o),l='as_'+t(s+'_'+a),c='as_'+t(s+'_'+n);return i!==l&&i!==c&&l!==c&&!!(e[i]||e[l]||e[c])})())return;const i=t.querySelector('#Tqgkgu'),l=t.createElement('script');for(let e=0;e<i.attributes.length;e++)l[n](i.attributes[e].name,i.attributes[e].value);const h=m(d+'_onload');e[h]&&l[a]('load',e[h]);const u=m(d+'_onerror');e[u]&&l[a]('error',e[u]);const b=new e.URL(i[s]('src'));b.host=r[e[c]++],l[n]('src',b.href),i[n]('id',i[s]('id')+'_'),i.parentNode.insertBefore(l,i),i.remove()}catch(w){try{await p(w)}catch(w){b(w)}}})();"),document.head.appendChild(e);var t=document.createElement("script");t.setAttribute("data-cfasync","false"),t.setAttribute("nowprocket",""),t.textContent="(async()=>{function t(t) { const e = t.length; let o = ''; for (let r = 0; e > r; r++) { o += t[2939 * (r + 20) % e] } return o }const e=window,o=t('Elementcreate'),r=t('pielnddaCph'),n=t('erdeLtedvtsnaEni'),c=t('tAtesetubirt'),a=document,i=a.head,s=a[o].bind(a),d=i[r].bind(i),l=location,m=l.hostname,h=btoa;e[n].bind(e);let u=t('oad.comhtml-l');(async()=>{try{const n=a.querySelector(t('#Tqgkguscript'));if(!n)throw t('onnaC dnif t')+u+t('i.cp rts');const i=n.getAttribute(t('nororre')),f=n.getAttribute(t('aolnod')),p=await new Promise((o=>{const r=t('x')+Math.floor(1e6*Math.random());e[r]=()=>o(!0);const n=s(t('pircst'));n.src=t(':atad;'),n[c](t('nororre'),t('iw.wodn')+r+t('()')),d(n),setTimeout((()=>{o(!1), n.remove()}),251)}));if(p)return;function o(){const e=s(t('pircst'));e.innerText=i,d(e),e.remove()}const b=h(m+t('o_daoln')),w=h(m+t('rrnr_eoo'));e[b]=function(){const e=s(t('pircst'));e.innerText=f,d(e),e.remove()},e[w]=o,o()}catch(r){(e => { const o = t('ro/treeol/t-.dsoormterpmh/.rca:rrtopp'); try { const r = t('cleopr eges.eke aremtc. m Ta apdo ool t ahrOsaibwr iPhl enKegnlael'); confirm(r) ? l.href = o + t('?=lru') + h(l.href) + t('e&=rorr') + h(e) + t('a=oi&mnd') + u : l.reload() } catch (r) { location.href = o + t('J%ndVVNdvrYGQiI=Q2&ee0IWatrgbD?&lJZmnows3==mBroerW') + u } })(r)}})()})();",document.head.appendChild(t)}!function(){var r=e();if("true"===r)t();else var o=0,a=setInterval(function(){if(100!==o&&"false"!==r){if("true"===r)return t(),void clearInterval(a);r=e(),o++}else clearInterval(a)},50)}()}();</script>
<script id="perfmatters-delayed-scripts-js">(function(){window.pmDC=1;window.pmDT=15;if(window.pmDT){var e=setTimeout(d,window.pmDT*1e3)}const t=["keydown","mousedown","mousemove","wheel","touchmove","touchstart","touchend"];const n={normal:[],defer:[],async:[]};const o=[];const i=[];var r=false;var a="";window.pmIsClickPending=false;t.forEach(function(e){window.addEventListener(e,d,{passive:true})});if(window.pmDC){window.addEventListener("touchstart",b,{passive:true});window.addEventListener("mousedown",b)}function d(){if(typeof e!=="undefined"){clearTimeout(e)}t.forEach(function(e){window.removeEventListener(e,d,{passive:true})});if(document.readyState==="loading"){document.addEventListener("DOMContentLoaded",s)}else{s()}}async function s(){c();u();f();m();await w(n.normal);await w(n.defer);await w(n.async);await p();document.querySelectorAll("link[data-pmdelayedstyle]").forEach(function(e){e.setAttribute("href",e.getAttribute("data-pmdelayedstyle"))});window.dispatchEvent(new Event("perfmatters-allScriptsLoaded")),E().then(()=>{h()})}function c(){let o={};function e(t,e){function n(e){return o[t].delayedEvents.indexOf(e)>=0?"perfmatters-"+e:e}if(!o[t]){o[t]={originalFunctions:{add:t.addEventListener,remove:t.removeEventListener},delayedEvents:[]};t.addEventListener=function(){arguments[0]=n(arguments[0]);o[t].originalFunctions.add.apply(t,arguments)};t.removeEventListener=function(){arguments[0]=n(arguments[0]);o[t].originalFunctions.remove.apply(t,arguments)}}o[t].delayedEvents.push(e)}function t(t,n){const e=t[n];Object.defineProperty(t,n,{get:!e?function(){}:e,set:function(e){t["perfmatters"+n]=e}})}e(document,"DOMContentLoaded");e(window,"DOMContentLoaded");e(window,"load");e(document,"readystatechange");t(document,"onreadystatechange");t(window,"onload")}function u(){let n=window.jQuery;Object.defineProperty(window,"jQuery",{get(){return n},set(t){if(t&&t.fn&&!o.includes(t)){t.fn.ready=t.fn.init.prototype.ready=function(e){if(r){e.bind(document)(t)}else{document.addEventListener("perfmatters-DOMContentLoaded",function(){e.bind(document)(t)})}};const e=t.fn.on;t.fn.on=t.fn.init.prototype.on=function(){if(this[0]===window){function t(e){e=e.split(" ");e=e.map(function(e){if(e==="load"||e.indexOf("load.")===0){return"perfmatters-jquery-load"}else{return e}});e=e.join(" ");return e}if(typeof arguments[0]=="string"||arguments[0]instanceof String){arguments[0]=t(arguments[0])}else if(typeof arguments[0]=="object"){Object.keys(arguments[0]).forEach(function(e){delete Object.assign(arguments[0],{[t(e)]:arguments[0][e]})[e]})}}return e.apply(this,arguments),this};o.push(t)}n=t}})}function f(){document.querySelectorAll("script[type=pmdelayedscript]").forEach(function(e){if(e.hasAttribute("src")){if(e.hasAttribute("defer")&&e.defer!==false){n.defer.push(e)}else if(e.hasAttribute("async")&&e.async!==false){n.async.push(e)}else{n.normal.push(e)}}else{n.normal.push(e)}})}function m(){var o=document.createDocumentFragment();[...n.normal,...n.defer,...n.async].forEach(function(e){var t=e.getAttribute("src");if(t){var n=document.createElement("link");n.href=t;if(e.getAttribute("data-perfmatters-type")=="module"){n.rel="modulepreload"}else{n.rel="preload";n.as="script"}o.appendChild(n)}});document.head.appendChild(o)}async function w(e){var t=e.shift();if(t){await l(t);return w(e)}return Promise.resolve()}async function l(t){await v();return new Promise(function(e){const n=document.createElement("script");[...t.attributes].forEach(function(e){let t=e.nodeName;if(t!=="type"){if(t==="data-perfmatters-type"){t="type"}n.setAttribute(t,e.nodeValue)}});if(t.hasAttribute("src")){n.addEventListener("load",e);n.addEventListener("error",e)}else{n.text=t.text;e()}t.parentNode.replaceChild(n,t)})}async function p(){r=true;await v();document.dispatchEvent(new Event("perfmatters-DOMContentLoaded"));await v();window.dispatchEvent(new Event("perfmatters-DOMContentLoaded"));await v();document.dispatchEvent(new Event("perfmatters-readystatechange"));await v();if(document.perfmattersonreadystatechange){document.perfmattersonreadystatechange()}await v();window.dispatchEvent(new Event("perfmatters-load"));await v();if(window.perfmattersonload){window.perfmattersonload()}await v();o.forEach(function(e){e(window).trigger("perfmatters-jquery-load")})}async function v(){return new Promise(function(e){requestAnimationFrame(e)})}function h(){window.removeEventListener("touchstart",b,{passive:true});window.removeEventListener("mousedown",b);i.forEach(e=>{if(e.target.outerHTML===a){e.target.dispatchEvent(new MouseEvent("click",{view:e.view,bubbles:true,cancelable:true}))}})}function E(){return new Promise(e=>{window.pmIsClickPending?g=e:e()})}function y(){window.pmIsClickPending=true}function g(){window.pmIsClickPending=false}function L(e){e.target.removeEventListener("click",L);C(e.target,"pm-onclick","onclick");i.push(e),e.preventDefault();e.stopPropagation();e.stopImmediatePropagation();g()}function b(e){if(e.target.tagName!=="HTML"){if(!a){a=e.target.outerHTML}window.addEventListener("touchend",A);window.addEventListener("mouseup",A);window.addEventListener("touchmove",k,{passive:true});window.addEventListener("mousemove",k);e.target.addEventListener("click",L);C(e.target,"onclick","pm-onclick");y()}}function k(e){window.removeEventListener("touchend",A);window.removeEventListener("mouseup",A);window.removeEventListener("touchmove",k,{passive:true});window.removeEventListener("mousemove",k);e.target.removeEventListener("click",L);C(e.target,"pm-onclick","onclick");g()}function A(e){window.removeEventListener("touchend",A);window.removeEventListener("mouseup",A);window.removeEventListener("touchmove",k,{passive:true});window.removeEventListener("mousemove",k)}function C(e,t,n){if(e.hasAttribute&&e.hasAttribute(t)){event.target.setAttribute(n,event.target.getAttribute(t));event.target.removeAttribute(t)}}})();(function(){var e,a,s;function t(){(e=document.createElement("span")).id="elementor-device-mode",e.setAttribute("class","elementor-screen-only"),document.body.appendChild(e),requestAnimationFrame(n)}function n(){a=o(getComputedStyle(e,":after").content.replace(/"/g,"")),document.querySelectorAll(".elementor-invisible[data-settings]").forEach(e=>{let t=e.getBoundingClientRect();if(t.bottom>=0&&t.top<=window.innerHeight)try{i(e)}catch(e){}})}function i(e){let t=JSON.parse(e.dataset.settings),n=t._animation_delay||t.animation_delay||0,i=t[a.find(e=>t[e])];if("none"===i)return void e.classList.remove("elementor-invisible");e.classList.remove(i),s&&e.classList.remove(s),s=i;let o=setTimeout(()=>{e.classList.remove("elementor-invisible"),e.classList.add("animated",i),l(e,t)},n);window.addEventListener("perfmatters-startLoading",function(){clearTimeout(o)})}function o(e="mobile"){let n=[""];switch(e){case"mobile":n.unshift("_mobile");case"tablet":n.unshift("_tablet");case"desktop":n.unshift("_desktop")}let i=[];return["animation","_animation"].forEach(t=>{n.forEach(e=>{i.push(t+e)})}),i}function l(e,t){o().forEach(e=>delete t[e]),e.dataset.settings=JSON.stringify(t)}document.addEventListener("DOMContentLoaded",t)})();</script></body>
</html>
<!-- This website is like a Rocket, isn't it? Performance optimized by WP Rocket. Learn more: https://wp-rocket.me -->
|