THE WHITE QUEEN: alice in wonderland inspired css template - CSS ONLY
BY MAUVE07
This is step 6. Make sure you've already done steps 1 to 4! Copy everything! Otherwise it might not work.
link to full tutorial
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 | <!-- ♖♘♗♕ FOLLOW BUTTONS ♔♗♘♖-->
<style>
/* removes old follow button text + styles it*/
.pp-uc-follow-button span {
font-size: 0;
width: auto;
font-family: cinzel;
text-transform: uppercase;
}
/* adds new follow button text */
.pp-uc-follow-button span::after {
margin-top: 1px;
content: "Welcome, my champion";
font-size: initial;
}
/* adds new unfollow button text */
.pp-uc-follow-button[data-following="true"] span::after {
margin-top: 1px;
content: "Farewell, Wonderland";
font-size: initial;
}
/* styles the actual button */
.profile-uc-follow-button {
width: 320px;
color: #395886;
font-size: initial;
border-radius: 0;
background: rgb(0, 0, 0, 0);
background-color: rgb(214, 222, 238, 0.5);
border: 1px solid #395886;
font-weight: 800
}
/* centers the follow and options buttons */
.css-1aq5geu {
justify-content: center;
z-index: 10;
}
/* styles the options menu */
.pp-uc-options-menu {
border-radius: 0;
background-color: rgb(214, 222, 238, 0.5);
border: 1px solid #395886;
font-family: cinzel;
color: #395886;
font-weight: 800
}
/* this makes sure the options menu appears on top of everything else */
.pp-uc-background {
z-index: 2;
}
/* removes the default follow buttons animations */
.profile-uc-follow-button::before {
display: none;
}
/* adds a hover effect to the follow button */
.profile-uc-follow-button:hover {
background-color: rgba(140, 174, 221, 0.7);
border-radius: 1px;
transition: background-color 0.3s ease;
}
/* styles the options menu dropdown */
.css-1f9crt2 {
background: #395886;
border: 1px solid #D5DEEF;
border-radius: 1px;
box-shadow: none;
transition: background 500ms;
font-family: cinzel !important;
text-transform: uppercase;
}
/* gives margins and padding to the options menu */
.pp-uc-options-menu span {
margin-top: 1px;
margin-left: 1px;
}
/* removes the old options menu background */
.pp-uc-options-menu-item {
background: transparent !important;
}
</style>
<!-- ♖♘♗♕ YOUR HOME MENU DROPDOWN CONTAINER ♔♗♘♖ -->
<style>
/* styles the general background of your dropdown */
.profile-top-bar-app-menu-list {
border-radius: 0;
background: #395886;
box-shadow: inset 0 0 0 2px #395886, inset 0 0 0 5px #D5DEEF;
padding: 7px;
}
/* styles the text */
.chakra-menu__menuitem {
font-family: cinzel;
color: #D5DEEF
}
/* gives the text a hover effect */
.chakra-menu__menuitem:hover {
font-family: cinzel;
color: #628ECB
}
</style>
<!-- ♖♘♗♕ ABOUT ME SECTION ♔♗♘♖ -->
<style>
/* formats the page in a top-down layout */
.profile-page-flex {
display: flex;
flex-direction: column;
gap: 10px;
}
/* makes sure your profile stuff is layed out top-down */
.profile-info-hstack {
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
}
/* makes sure your user card takes up the entire viewport width */
.profile-uc-background-flex {
width: 100% !important;
max-width: 100% !important;
}
/* removes the background colour from your about-me section */
.profile-uc-background-flex,
.profile-background-box-1,
.profile-background-box-2,
.profile-background-box-3,
.profile-info-wrapper-box {
background: rgba(0, 0, 0, 0) !important;
}
/* removes the hover effect */
.profile-uc-background-flex:hover {
box-shadow: none;
}
/* random line between the quote and the dropdowns I decided to add */
.separator {
border: 1px solid #8AAEE0;
width: 100%;
margin-top: 20px;
}
/* styles the 'welcome to the domain of the white queen/king/monarch' */
.title h1 {
color: #B1C9EF;
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
font-family: cinzel;
text-align: center;
text-wrap: nowrap;
animation-name: title;
animation-delay: 0.8s;
animation-duration: 1.5s;
animation-timing-function: ease;
opacity: 0;
animation-fill-mode: forwards;
font-size: 30px
}
/* animates it */
@keyframes title {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* styles the 'long ive the king/queen/monarch section' */
.quote {
width: 100%;
justify-content: center;
text-align: center;
position: relative;
font-family: cinzel;
font-size: 20px;
font-weight: 500;
color: #B1C9EF;
}
/* PFP SECTION */
/* sizes your pfp container*/
.pp-uc-avatar-container {
width: 90%;
height: 800px !important;
}
/* animates your pfp falling */
@keyframes fall-pfp {
from {
opacity: 0;
transform: translateX(-50%) translateY(-1200px);
}
to {
opacity: 1;
transform: translateX(-50%) translateY(0);
}
}
/* filter and sizes your pfp, adjust the filter to fit your pfp! (I used a very bright filter because my photo is dark, so if it's too bright just lower the 'brightness' value!) */
.pp-uc-avatar-container img {
position: absolute;
width: 25%;
left: 50%;
top: 100px;
height: 500px;
border-radius: 1px;
border: 10px solid #B1C9EF;
z-index: 1;
opacity: 0;
animation: fall-pfp 1.5s ease 0.6s forwards;
filter:
saturate(0.2) grayscale(0.8) brightness(2) contrast(0.8);
}
/* adds a blue sheen to your pfp */
.pp-uc-avatar-container::after {
content: "";
position: absolute;
z-index: 2;
width: 25%;
left: 50% !important;
top: 100px !important;
height: 500px;
opacity: 0;
inset: 0;
background: rgba(0, 106, 255, 0.3);
mix-blend-mode: soft-light;
pointer-events: none;
animation: fall-pfp 1.5s ease 0.6s forwards;
}
/* styles my credit box */
.credit-box {
position: absolute;
top: 75px;
left: 50%;
transform: translateX(-50%);
font-family: cinzel;
animation: fall-pfp 1.5s ease 0.6s forwards;
opacity: 0;
color: #B1C9EF;
z-index: 2;
font-size: 12px
}
/* styles the 'Mauve07' link */
.credit-box a {
color: #D5DEEF
}
/* gives that a hover effect */
.credit-box a:hover {
color: #F0F3FA
}
/* END PFP SECTION */
/* GENERAL ABOUT ME SECTION */
/* styles your about me section tiles */
.abt-me-section {
color: #F0F3FA;
border: 1px solid #8AAEE0;
left: 50%;
transform: translateX(-50%);
position: relative;
width: 80%;
padding: 15px;
background: rgba(0, 0, 0, 0.2);
margin-top: 25px;
transition: background 0.3s ease;
}
/* gives it a hover effect */
details.abt-me-section:not([open]):has(h1:hover) {
background: #395886
}
/* styles the heading after you uncollapse the dropdown */
details.abt-me-section[open] h1 {
color: #F0F3FA;
border: 1px solid white;
width: fit-content;
top: -17px;
position: absolute;
background: #395886;
padding: 7px;
left: 15px
}
/* styles the headings in each of the dropdowns */
.abt-me-section h1 {
font-family: cinzel;
font-size: 20px;
}
/* hides the ugly triangle in the dropdown */
.abt-me-section summary::-webkit-details-marker {
display: none;
}
/* hides the triangle for safari */
.abt-me-section summary::marker {
content: ''
}
/* adds padding for when the dropdown is open */
details.abt-me-section[open] {
padding-top: 35px;
margin-top: 40px;
}
/* styles the text inside the dropdown container */
.abt-me-section p {
font-family: DM Serif Text;
font-size: 15px;
font-weight: 100 !important
}
/* END GENERAL ABOUT ME SECTION */
/* FAVS SECTION */
/* wrapper of your favs container */
.all-favs-wrapper {
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: center
}
/* styles the individual tiles of your favs container */
.fav-container {
position: relative;
display: grid;
grid-template-columns: auto 1fr auto;
align-items: center;
width: fit-content;
padding-left: 5px;
padding-right: 5px;
border: 2px solid #395886;
background: #D5DEEF;
color: #395886;
transition: all 0.5s ease;
}
/* gives your favs container a hover effect */
.fav-container:hover {
border: 2px solid #B1C9EF;
background: #395886;
color: #B1C9EF;
transition: all 0.5s ease
}
/* gives the flower svg in your favs container a hover effect */
.fav-container:hover .flower {
background: #B1C9EF;
transition: all 0.5s ease
}
/* styles the text inside your favs container */
.fav-container h2 {
margin: 5px;
margin-top: 2px;
font-size: 25px;
font-family: cinzel;
white-space: nowrap;
max-width: 80vw;
text-overflow: ellipsis;
overflow: hidden;
}
/* this is the flower svg. all the numbers are needed for it to work so make sure you don't delete any of them */
.flower {
position: absolute;
width: 386.6px;
height: 255.339px;
background: #395886;
clip-path: path('M 385.773 52.501 v -0.612 c -31.824 -52.02 -107.712 -77.112 -143.82 -16.524 c -2.448 -2.448 -4.896 -4.284 -7.344 -6.12 c -20.809 -13.464 -50.184 -10.404 -64.26 10.404 c -11.016 -4.284 -24.48 -3.06 -34.884 1.836 c -12.24 5.508 -22.644 18.972 -25.092 33.048 c -27.54 -8.568 -46.512 -1.836 -70.38 15.3 c -23.256 16.524 -31.824 41.004 -39.78 67.321 c -1.224 4.284 3.06 7.956 6.732 6.731 c 33.048 -8.567 67.32 14.076 99.144 6.12 c 9.18 12.853 30.6 16.524 40.392 3.061 c 3.672 15.3 28.764 23.256 42.84 25.092 c 3.06 0.612 6.12 0.612 9.18 0 c -5.508 63.647 89.964 59.976 130.968 54.468 c 3.061 -0.612 3.673 -4.284 2.448 -6.732 c -17.748 -35.495 -35.496 -70.38 -72.216 -88.128 c 5.508 -7.956 9.792 -16.523 11.628 -22.031 c 3.061 -8.569 3.061 -18.973 0.612 -28.153 c 15.912 1.836 30.6 -1.836 42.228 -13.464 c 6.12 -6.732 10.404 -14.688 16.524 -21.42 c 14.688 -15.912 32.436 -14.688 51.408 -12.852 C 386.385 59.845 387.609 54.949 385.773 52.501 z M 369.249 40.873 c -16.523 -3.672 -34.271 -4.896 -52.02 -2.448 c 1.224 -1.836 2.447 -3.672 3.06 -5.508 c 0.612 -2.448 -2.448 -4.284 -4.284 -2.448 c -1.836 1.836 -3.672 4.284 -5.508 6.12 c -2.448 1.836 -4.896 3.672 -7.344 4.896 l 0 0 c -12.853 3.672 -25.092 9.792 -35.496 18.36 c 0 0 0 0 -0.612 0 c 0.612 -2.448 1.836 -5.508 3.061 -7.956 c 1.836 -3.06 3.672 -6.12 4.284 -9.18 c 0.611 -1.836 -1.225 -3.06 -3.061 -2.448 c -7.344 3.06 -11.016 14.076 -12.24 20.808 c -0.611 1.836 0.612 3.672 2.448 4.284 c -1.224 1.224 -1.836 2.448 -3.06 3.06 c -0.612 -9.792 -6.12 -20.808 -12.853 -29.376 C 285.405 -2.579 331.917 5.989 369.249 40.873 z M 13.677 151.034 C 13.677 151.034 13.065 151.034 13.677 151.034 c 6.732 -20.809 15.3 -39.781 34.884 -53.245 s 37.332 -19.584 60.588 -18.36 c -0.612 7.956 1.224 16.524 6.12 23.256 c -6.732 0.612 -13.464 2.448 -19.584 4.284 c -0.612 -0.612 -1.224 -1.224 -2.448 -1.224 c -8.568 -1.224 -17.748 -1.836 -26.316 -3.06 c -3.06 -0.612 -3.672 4.284 -0.612 4.896 c 5.508 1.224 11.628 1.836 17.136 3.06 c -9.792 3.672 -19.584 7.956 -29.376 12.852 c -1.224 -1.225 -3.06 -1.836 -4.896 -2.448 c -4.896 -1.224 -9.792 0 -14.076 1.836 c -3.672 1.225 -2.448 6.733 1.836 5.508 c 3.06 -0.612 5.508 -1.836 8.568 -1.224 c 0.612 0 1.224 0 1.836 0 C 35.097 134.509 24.081 142.465 13.677 151.034 L 13.677 151.034 z M 101.805 161.438 c -17.136 -3.061 -34.272 -4.896 -51.408 -8.568 c -11.628 -2.448 -22.644 -3.061 -34.272 -1.836 c 12.24 -7.344 25.092 -13.464 37.332 -18.973 c 0 1.225 0 1.837 0 3.061 c -0.612 1.836 -1.836 2.448 -3.672 3.06 c -2.448 1.225 -1.224 5.509 1.224 5.509 c 6.732 0 7.956 -7.956 6.12 -12.853 c 10.404 -4.285 20.808 -8.568 31.212 -12.853 c -0.612 4.896 -0.612 10.404 1.836 14.077 c 1.224 3.06 6.12 2.447 6.732 -0.612 c 0.612 -3.672 0 -5.508 -0.612 -9.18 c -0.612 -2.448 -0.612 -4.285 -0.612 -6.732 c 6.732 -2.448 12.852 -4.896 19.584 -7.344 C 102.417 120.433 96.297 143.69 101.805 161.438 z M 204.621 196.933 c 9.792 -2.447 18.972 -7.956 22.032 -16.523 c 2.448 5.508 5.508 11.628 9.18 17.136 c -3.06 5.508 -3.672 12.853 -2.448 18.972 c 0.612 3.061 4.896 3.061 4.284 0 c -0.611 -4.283 -0.611 -9.792 1.225 -14.075 c 6.119 8.567 13.464 16.523 22.031 23.256 c 1.225 6.12 1.836 12.24 3.672 17.748 c 0 0.611 0 0.611 0.612 1.224 C 237.058 239.162 212.577 226.921 204.621 196.933 z M 320.901 244.057 c -16.524 1.836 -34.272 2.448 -51.408 0.612 c 1.224 -0.612 1.836 -1.836 1.224 -3.672 c -0.611 -3.672 -1.224 -7.344 -1.836 -10.404 c 14.688 9.181 31.212 15.3 48.96 14.076 c 2.448 0 3.061 -3.672 0.612 -4.284 c -14.688 -4.283 -28.152 -9.18 -40.392 -15.912 c 3.06 0 6.119 0 9.792 -0.611 c 3.06 -0.612 1.836 -4.896 -0.612 -4.896 c -6.732 0 -13.464 0 -19.584 -0.611 c -9.18 -6.12 -17.136 -12.853 -24.48 -21.421 c 3.673 -3.06 9.792 -3.06 13.465 0.612 c 1.836 1.836 4.283 -0.612 3.672 -2.448 c -3.672 -6.731 -12.853 -7.344 -18.973 -3.06 c -0.611 0 -0.611 0.612 -1.224 1.224 c -3.672 -4.283 -6.732 -9.18 -9.792 -14.688 c -0.612 -0.612 -1.224 -0.612 -1.836 -0.612 c 0 -1.224 0.612 -1.836 0.612 -3.06 c 8.567 3.672 17.748 -1.225 25.092 -9.181 C 286.629 179.797 305.602 212.234 320.901 244.057 z M 262.761 125.942 c -1.224 5.508 -5.508 17.749 -12.239 27.541 c -3.061 -0.612 -4.896 3.06 -4.284 5.508 c -5.508 6.731 -11.628 10.403 -17.748 8.567 c -0.612 0 -1.225 0 -1.225 0 c -1.836 -1.836 -5.508 -1.836 -6.119 1.836 c -4.896 15.912 -18.36 21.421 -34.272 18.36 c -11.016 -2.448 -36.72 -9.18 -36.108 -23.868 c 0 -2.447 -3.672 -3.06 -4.284 -0.611 c 0 0.611 0 0.611 0 1.224 c -0.612 0 -1.224 0 -1.836 0.612 c -16.524 11.628 -33.66 4.283 -33.66 -17.137 c 0 -14.688 4.284 -31.212 15.3 -42.228 c 1.836 -1.836 -0.612 -4.896 -2.448 -3.672 c 0 0 -0.612 0 -0.612 0.612 c -4.896 -17.136 -7.344 -33.66 7.344 -47.124 c 6.732 -6.732 15.912 -10.404 25.092 -10.404 c 8.568 0 26.316 4.284 26.316 15.3 c -0.612 0 -0.612 0.612 -1.224 0.612 c -0.612 0.612 0 1.836 0.612 2.448 l 0 0 c -0.612 1.224 1.224 1.836 1.836 0.612 c 0.612 -0.612 0.612 -1.224 0.612 -1.836 c 17.136 -11.016 35.497 1.224 43.452 17.748 c 7.345 15.912 5.509 32.436 -5.508 45.9 l -0.611 -0.612 c -3.061 -1.836 -6.732 1.836 -4.896 4.896 c 6.732 11.017 2.448 23.257 -10.404 26.316 c -7.956 1.836 -25.704 -1.836 -32.436 -9.792 l 0 0 c 1.224 -2.448 -0.612 -4.896 -3.06 -5.508 l 0 0 c 0 -1.836 -3.06 -1.225 -3.06 0.612 l 0 0 c -4.284 1.224 -7.956 3.06 -13.464 2.447 c -5.508 -0.611 -10.404 -3.06 -13.464 -7.956 c -6.12 -9.792 1.836 -26.316 12.24 -29.988 c 1.224 -0.612 1.224 -2.448 -0.612 -2.448 c -0.612 0 -1.224 0 -1.836 0 c 1.224 -0.612 2.448 -2.448 1.224 -4.284 c -5.508 -8.568 -3.672 -21.42 6.732 -25.092 c 5.508 -1.836 11.016 -1.224 15.912 1.224 c 2.448 1.224 16.524 12.24 9.792 14.076 c -1.224 0.612 -0.612 1.836 0 1.836 c 1.224 0 1.836 0 2.448 0 c -0.612 0.612 -1.224 1.224 -1.224 2.448 c -1.224 2.448 2.448 4.896 3.672 2.448 c 6.12 -9.18 20.808 -4.896 18.36 6.732 c -1.225 4.284 -3.061 7.956 -6.732 9.792 c -4.284 2.448 -9.18 1.836 -14.076 1.836 c -1.836 0 -3.06 2.448 -1.224 3.672 c 5.508 4.896 14.688 4.284 21.42 1.225 c 7.344 -3.672 11.016 -12.24 8.568 -20.196 c -1.836 -6.732 -6.732 -12.24 -13.464 -12.852 c -3.061 -0.612 -6.732 0 -9.792 1.224 c 0.612 -3.672 -0.612 -7.956 -3.672 -11.628 c -6.732 -7.344 -17.136 -11.628 -26.928 -10.404 c -17.136 2.448 -28.764 25.704 -12.852 37.332 h 0.612 c -7.344 0.612 -13.464 3.672 -17.748 11.016 c -4.284 7.344 -4.896 17.137 -1.224 25.093 c 6.12 11.628 28.152 20.808 39.168 10.403 c 7.344 12.853 29.988 18.36 42.229 14.076 c 13.464 -4.896 22.644 -22.644 14.075 -34.271 c 17.137 -14.077 18.973 -39.781 5.509 -57.529 c -9.792 -12.852 -31.212 -24.48 -46.512 -15.3 c 0.612 -6.12 -3.06 -11.628 -8.568 -15.3 c 12.24 -15.3 34.272 -21.42 52.02 -10.404 c 12.853 8.568 32.437 37.332 19.584 52.02 c -0.612 0.612 -0.612 1.224 -0.612 2.448 c 0 0.612 0 1.836 0.612 2.448 C 259.701 98.401 265.209 110.641 262.761 125.942 z M 331.917 56.785 c -23.868 17.136 -23.868 46.512 -61.2 45.9 h -0.611 c -3.061 -7.956 -9.181 -14.076 -17.748 -17.748 c 1.836 -1.836 3.06 -3.672 4.284 -6.12 c 4.283 -4.284 7.955 -7.956 12.239 -11.016 c 6.12 0.612 12.24 0.612 18.36 -1.836 c 3.06 -1.224 1.836 -5.508 -1.224 -4.896 c -2.448 0.612 -5.509 0.612 -7.956 0.612 c 9.18 -5.508 18.972 -8.568 29.376 -11.016 c 2.447 1.224 4.896 2.448 7.344 3.672 c 1.836 0.612 3.06 -2.448 1.224 -3.06 c -0.611 -0.612 -1.224 -1.224 -1.836 -1.836 c 17.136 -3.06 35.496 -2.448 54.468 -2.448 c 2.448 0 3.061 -2.448 3.061 -3.672 c 2.448 2.448 4.896 4.896 7.344 7.344 C 362.518 48.217 345.381 46.993 331.917 56.785 z');
}
/* positions the flower svgs */
.flower-wrapper {
position: relative;
transform: rotateY(180deg);
width: calc(386.6px*0.1);
height: calc(255.339px*0.1);
}
/* positions the left flower specifically (and makes it a lot smaller) */
.flower-wrapper.left .flower {
top: 0;
left: 0;
transform: scale(0.1);
transform-origin: top left;
}
/* right flower */
.flower-wrapper.right .flower {
top: 0;
left: 0;
transform-origin: top left;
transform: rotateY(180deg) scale(0.1) translateX(-100%);
}
/* media queries for scaling down the fav creator tile on mobile */
@media (max-width: 600px) {
.fav-container h2 {
font-size: 15px;
}
.flower-wrapper {
width: calc(386.6px*0.07);
height: calc(255.339px*0.07);
}
.flower-wrapper.left .flower {
top: 0;
left: 0;
transform: scale(0.07);
transform-origin: top left;
}
.flower-wrapper.right .flower {
top: 0;
left: 0;
transform-origin: top left;
transform: rotateY(180deg) scale(0.07) translateX(-100%);
}
}
/* END FAVS SECTION */
/* FRIENDS CONTAINER */
/* styles the friends container */
.friend {
width: 200px;
height: 300px;
border: 2px solid #8AAEE0;
flex: 0 0 auto;
position: relative;
text-align: center;
}
/* styles the name of the friend */
.friend h2 {
position: absolute;
bottom: 10px;
font-size: 30px !important;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
color: #395886;
background: #8AAEE0;
width: 100%;
font-family: cinzel;
}
/* makes sure all your friends' photo fits nicely and adds a grey filter */
.friend img {
width: 100%;
height: 100%;
object-fit: cover;
filter: grayscale(100%) brightness(200%);
}
/* removes the filter on hover */
.friend img:hover {
filter: none
}
/* aligns your friends horizontally */
.friends-wrapper {
display: flex;
flex-wrap: nowrap;
gap: 15px;
overflow-x: auto;
overflow-y: hidden;
justify-content: flex-start;
mask-image: linear-gradient(to right,
transparent,
black 5%,
black 95%,
transparent);
padding-bottom: 15px;
}
/* styles the scrollbar */
.friends-wrapper::-webkit-scrollbar {
height: 15px;
}
.friends-wrapper::-webkit-scrollbar-thumb {
background-color: #395886;
border-radius: 4px;
}
.friends-wrapper::-webkit-scrollbar-track {
background: #D5DEEF;
border-radius: 4px;
}
.friends-wrapper::-webkit-scrollbar-thumb:hover {
background-color: #628ECB;
}
/* END FRIEND SECTION */
/* RANDOM DETAILS SECTION */
/* aligns all your details (followers, badges, etc) */
.profile-info-stack-inner-flex,
.profile-followers-count,
.css-hjkukh,
.profile-member-since-box {
justify-content: center;
text-align: center;
}
/* styles your username */
.profile-info-stack-inner-flex h2 {
font-family: cinzel decorative;
font-size: 100px;
color: #D5DEEF;
}
/* media queries for username styling on other screen sizez */
@media (max-width: 600px) {
.abt-me-section h1 {
font-family: cinzel;
font-size: 15px;
}
.abt-me-section {
width: 90%;
}
.profile-info-stack-inner-flex h2 {
font-size: 80px;
}
}
@media (max-width: 460px) {
.abt-me-section h1 {
font-family: cinzel;
font-size: 12px;
}
.profile-info-stack-inner-flex h2 {
font-size: 60px;
}
}
/* styles the followers count */
.profile-followers-count {
color: #D5DEEF;
font-family: cinzel;
font-weight: 400;
font-size: 25px;
}
/* changes the text of the followers count */
.profile-followers-count span:nth-child(2) {
font-size: 0;
}
.profile-followers-count span:nth-child(2):after {
content: 'roses in the white court';
font-size: 25px;
}
/* makes your badges a solid colour */
.css-hjkukh>* {
filter: brightness(0) invert(90%) sepia(13%) saturate(368%) hue-rotate(189deg) brightness(96%) contrast(95%);
}
/* styles the member since box */
.profile-member-since-box {
color: #D5DEEF;
font-family: cinzel;
font-weight: 400;
font-size: 15px;
}
/* END RANDOM DETAILS SECTION */
/* CHESSBOARD SECTION */
/* this animation applies to all chesspieces to the left of the pfp */
@keyframes fall-left {
from {
opacity: 0;
transform: scale(0.4) translateX(-50%) translateY(-1200px);
}
to {
opacity: 1;
transform: scale(0.4) translateX(-50%) translateY(0);
}
}
/* this animation applies to all the chesspieces to the right of the pfp */
@keyframes fall-right {
from {
opacity: 0;
transform: scale(0.4) translateX(-50%) scaleX(-1) translateY(-1200px);
}
to {
opacity: 1;
transform: scale(0.4) translateX(-50%) translateY(0) scaleX(-1);
}
}
/* CHESSBOARD BOARD SECTION */
/* styles the chessboard perspective*/
.board-wrap {
position: absolute;
width: 100%;
height: 425px;
perspective: 325px;
top: 550px;
z-index: 0;
}
/* styles the actual tiles in the board */
.board {
position: absolute;
inset: 0;
transform: rotateX(40deg) scale(2.5);
transform-origin: bottom center;
background:
conic-gradient(#395886 0deg 90deg,
#D5DEEF 90deg 180deg,
#395886 180deg 270deg,
#D5DEEF 270deg 360deg);
background-size: 25% 50%;
-webkit-mask-image: linear-gradient(to top,
transparent 0%,
black 50%);
mask-image: linear-gradient(to top,
transparent 20%,
black 50%);
}
/* gives the board a shadow */
.board::after {
content: "";
position: absolute;
inset: 0;
background:
linear-gradient(to top,
rgba(0, 0, 0, 0.0),
rgba(0, 0, 0, 0.45));
pointer-events: none;
}
/* END BOARD SECTION */
/* CHESSPIECES SECTION */
/* positions the top row of chesspieces */
.grid-top {
width: 90%;
height: 600px;
position: absolute;
top: 0px;
left: 50%;
transform: translateX(-50%);
display: grid;
grid-template-columns: 1fr 1fr 1fr 2fr 1fr 1fr 1fr;
}
/* gives all the top pieces position relative */
.grid-top>* {
position: relative;
}
/* styles for the bishop */
.bishop {
width: 249.266px;
height: 673.61px;
z-index: 7;
background: #B1C9EF;
position: absolute;
clip-path: path('M124.8,669.175h-.334c-18.893,0-37.193-.435-54.394-1.293-13.759-.687-26.848-1.644-38.9-2.845C10.59,662.985.1,660.918,0,660.9V644.816l24.532-10.21-.018-.012a86.6,86.6,0,0,1-9.4-8.327A51.464,51.464,0,0,1,8.5,618.092a19.107,19.107,0,0,1-3.3-8.846,9.557,9.557,0,0,1,3.251-7.825c3.586-3.331,8.919-5.716,15.094-8.479,16.181-7.238,38.34-17.151,54.721-53.679,5.192-11.578,9.025-33.138,11.393-64.081,1.894-24.754,2.86-55.535,2.872-91.488.019-61.2-2.779-116.943-2.807-117.5l-.016,0a116.467,116.467,0,0,1-13.948.864,69.216,69.216,0,0,1-13.924-1.23c-5-1.045-8.7-2.75-10.99-5.068a9.619,9.619,0,0,1-2.835-7.122,23.445,23.445,0,0,1,2.105-10.12,13.675,13.675,0,0,1,4.531-5.317,13.968,13.968,0,0,1,7.47-2.4h.111s0-.006-.006-.014a26.056,26.056,0,0,1-1.035-4.294c-.317-2.155-.393-5.084,1.041-6.8,1.634-1.953,5.185-2.363,7.877-2.363a26.543,26.543,0,0,1,3.23.192v-12.3l-.632-.146a49.31,49.31,0,0,1-7.281-2.024c-1.962-.824-2.977-1.824-3.195-3.148-.448-2.727-.113-4.8.994-6.16a4.309,4.309,0,0,1,2.877-1.546l-.009-.026c-.456-1.568-4.551-15.807-7.874-32.59a243.262,243.262,0,0,1-4.033-27.558c-.783-9.918-.419-17.763,1.08-23.316,1.214-4.5,4.089-9.6,8.544-15.181A136.385,136.385,0,0,1,79,82.837c11.458-10.313,24.733-20.024,34.426-27.114l.033-.024c1.659-1.214,3.227-2.361,4.659-3.418a18.976,18.976,0,1,1,13.282.181c1.374,1.014,2.866,2.1,4.444,3.259,8.4,6.142,18.847,13.787,28.851,22.253a141.807,141.807,0,0,1-3.043,14.933c-4.318,16.358-12.368,30.654-18.837,42.141-3.953,7.02-7.366,13.082-8.958,17.912a14.242,14.242,0,0,0-.887,6.332,6.278,6.278,0,0,0,2.724,4.429,5.939,5.939,0,0,0,3.5,1.13c5.063,0,11.645-5.98,18.535-16.838,6.813-10.738,13.209-25.076,18.007-40.372,1.5-4.774,2.97-9.9,4.378-15.24a86.1,86.1,0,0,1,8.84,10.888A36.389,36.389,0,0,1,194,113.715c1.5,5.553,1.862,13.4,1.08,23.316a243.265,243.265,0,0,1-4.033,27.559c-3.5,17.669-7.84,32.468-7.883,32.616a4.309,4.309,0,0,1,2.878,1.546c1.107,1.361,1.441,3.434.993,6.16-.217,1.324-1.232,2.325-3.194,3.148a49.3,49.3,0,0,1-7.281,2.024l-.632.146v12.3s.006,0,.017,0a27.333,27.333,0,0,1,3.213-.189c2.691,0,6.242.41,7.876,2.363,1.435,1.715,1.358,4.643,1.042,6.8a25.8,25.8,0,0,1-1.042,4.309h.111a13.969,13.969,0,0,1,7.47,2.4,13.675,13.675,0,0,1,4.531,5.317,23.442,23.442,0,0,1,2.106,10.12,9.618,9.618,0,0,1-2.835,7.121c-2.291,2.318-5.989,4.024-10.99,5.069a69.224,69.224,0,0,1-13.924,1.23,115.007,115.007,0,0,1-13.964-.867c-.027.534-2.826,56.265-2.807,117.5.011,35.952.977,66.733,2.872,91.488,2.368,30.943,6.2,52.5,11.393,64.081,16.381,36.529,38.541,46.441,54.721,53.679,6.175,2.762,11.508,5.148,15.094,8.479a9.556,9.556,0,0,1,3.251,7.825,19.107,19.107,0,0,1-3.3,8.846,51.469,51.469,0,0,1-6.615,8.175,86.434,86.434,0,0,1-9.422,8.339l24.533,10.211V660.9l-.009,0c-.445.086-11.122,2.138-31.162,4.136-12.055,1.2-25.143,2.159-38.9,2.845C162,668.74,143.7,669.175,124.8,669.175ZM124.8,669.175h-.334c-18.893,0-37.193-.435-54.394-1.293-13.759-.687-26.848-1.644-38.9-2.845C10.59,662.985.1,660.918,0,660.9V644.816l24.532-10.21-.018-.012a86.6,86.6,0,0,1-9.4-8.327A51.464,51.464,0,0,1,8.5,618.092a19.107,19.107,0,0,1-3.3-8.846,9.557,9.557,0,0,1,3.251-7.825c3.586-3.331,8.919-5.716,15.094-8.479,16.181-7.238,38.34-17.151,54.721-53.679,5.192-11.578,9.025-33.138,11.393-64.081,1.894-24.754,2.86-55.535,2.872-91.488.019-61.2-2.779-116.943-2.807-117.5l-.016,0a116.467,116.467,0,0,1-13.948.864,69.216,69.216,0,0,1-13.924-1.23c-5-1.045-8.7-2.75-10.99-5.068a9.619,9.619,0,0,1-2.835-7.122,23.445,23.445,0,0,1,2.105-10.12,13.675,13.675,0,0,1,4.531-5.317,13.968,13.968,0,0,1,7.47-2.4h.111s0-.006-.006-.014a26.056,26.056,0,0,1-1.035-4.294c-.317-2.155-.393-5.084,1.041-6.8,1.634-1.953,5.185-2.363,7.877-2.363a26.543,26.543,0,0,1,3.23.192v-12.3l-.632-.146a49.31,49.31,0,0,1-7.281-2.024c-1.962-.824-2.977-1.824-3.195-3.148-.448-2.727-.113-4.8.994-6.16a4.309,4.309,0,0,1,2.877-1.546l-.009-.026c-.456-1.568-4.551-15.807-7.874-32.59a243.262,243.262,0,0,1-4.033-27.558c-.783-9.918-.419-17.763,1.08-23.316,1.214-4.5,4.089-9.6,8.544-15.181A136.385,136.385,0,0,1,79,82.837c11.458-10.313,24.733-20.024,34.426-27.114l.033-.024c1.659-1.214,3.227-2.361,4.659-3.418a18.976,18.976,0,1,1,13.282.181c1.374,1.014,2.866,2.1,4.444,3.259,8.4,6.142,18.847,13.787,28.851,22.253a141.807,141.807,0,0,1-3.043,14.933c-4.318,16.358-12.368,30.654-18.837,42.141-3.953,7.02-7.366,13.082-8.958,17.912a14.242,14.242,0,0,0-.887,6.332,6.278,6.278,0,0,0,2.724,4.429,5.939,5.939,0,0,0,3.5,1.13c5.063,0,11.645-5.98,18.535-16.838,6.813-10.738,13.209-25.076,18.007-40.372,1.5-4.774,2.97-9.9,4.378-15.24a86.1,86.1,0,0,1,8.84,10.888A36.389,36.389,0,0,1,194,113.715c1.5,5.553,1.862,13.4,1.08,23.316a243.265,243.265,0,0,1-4.033,27.559c-3.5,17.669-7.84,32.468-7.883,32.616a4.309,4.309,0,0,1,2.878,1.546c1.107,1.361,1.441,3.434.993,6.16-.217,1.324-1.232,2.325-3.194,3.148a49.3,49.3,0,0,1-7.281,2.024l-.632.146v12.3s.006,0,.017,0a27.333,27.333,0,0,1,3.213-.189c2.691,0,6.242.41,7.876,2.363,1.435,1.715,1.358,4.643,1.042,6.8a25.8,25.8,0,0,1-1.042,4.309h.111a13.969,13.969,0,0,1,7.47,2.4,13.675,13.675,0,0,1,4.531,5.317,23.442,23.442,0,0,1,2.106,10.12,9.618,9.618,0,0,1-2.835,7.121c-2.291,2.318-5.989,4.024-10.99,5.069a69.224,69.224,0,0,1-13.924,1.23,115.007,115.007,0,0,1-13.964-.867c-.027.534-2.826,56.265-2.807,117.5.011,35.952.977,66.733,2.872,91.488,2.368,30.943,6.2,52.5,11.393,64.081,16.381,36.529,38.541,46.441,54.721,53.679,6.175,2.762,11.508,5.148,15.094,8.479a9.556,9.556,0,0,1,3.251,7.825,19.107,19.107,0,0,1-3.3,8.846,51.469,51.469,0,0,1-6.615,8.175,86.434,86.434,0,0,1-9.422,8.339l24.533,10.211V660.9l-.009,0c-.445.086-11.122,2.138-31.162,4.136-12.055,1.2-25.143,2.159-38.9,2.845C162,668.74,143.7,669.175,124.8,669.175Z')
}
/* positions the right bishop */
.grid-top-r3 .bishop {
bottom: 0;
right: 50%;
transform-origin: bottom right;
animation: fall-right 1.5s ease 0.4s forwards;
opacity: 0;
}
/* positions the left bishop */
.grid-top-l3 .bishop {
bottom: 0;
left: 50%;
opacity: 0;
transform-origin: bottom left;
animation: fall-left 1.5s ease 0.4s forwards;
}
/* styles for the knight */
.knight {
width: 251.266px;
height: 482.989px;
z-index: 7;
background: #B1C9EF;
position: absolute;
clip-path: path('M125.132,481.267h-.66C41.64,481.267,0,472.989,0,472.989V456.908L24.532,446.7s-28.872-21.3-16.081-33.185C20.6,402.232,52.1,402.1,74.74,358.649q-3.833-1.38-7.613-2.9C32.541,341.788,16.854,326.1,16.854,326.1s39.713-42.028,64.232-79.919,33.844-71.643,33.844-71.643L58.11,160.58v18.9s-8.924,6.177-21.493,0-13.587-11.117-19.763-24.7,0-29.645,0-29.645,28.9-10.624,50.273-38.663S81.086,42,81.086,42h51.879V0l41.257,42a120.787,120.787,0,0,1,32.116,32.116c13.989,20.783,18.034,21.37,23.84,51.016s9.882,151.439,0,186.89c-8.481,30.427-28.52,45.112-51.21,52.8,22.283,37.319,51.305,37.972,62.847,48.691,12.791,11.88-16.081,33.185-16.081,33.185l24.532,10.21v16.081s-41.638,8.278-124.461,8.278Z');
}
/* positions the right knight */
.grid-top-r2 .knight {
bottom: 0;
right: 50%;
transform-origin: bottom right;
animation: fall-right 1.5s ease 0.2s forwards;
opacity: 0;
}
/* positions the left knight */
.grid-top-l2 .knight {
bottom: 0;
left: 50%;
transform-origin: bottom left;
animation: fall-left 1.5s ease 0.2s forwards;
opacity: 0;
}
/* styles for the rook */
.rook {
width: 251.266px;
height: 377.416px;
z-index: 7;
background: #B1C9EF;
position: absolute;
clip-path: path('M125.133,376.415v0h-.672C41.638,376.415,0,368.137,0,368.137V352.056l24.532-10.21S-4.34,320.54,8.451,308.66c5.975-5.549,16.638-8.4,28.623-15.041,7.536-19.491,24.746-66.76,31.518-108.368a318.005,318.005,0,0,0,1.653-87.446H66.633a9.008,9.008,0,0,1-8.714-11.26C53.045,85.655,44.69,81.9,39.887,67.187,32.81,45.5,33.449,0,33.449,0H75.607V43.009h22.6V0h52.855V43.009h22.6V0h42.159s.638,45.5-6.439,67.187c-4.8,14.717-13.158,18.468-18.032,19.359a9.008,9.008,0,0,1-8.714,11.26H180.02a318,318,0,0,0,1.653,87.446c6.772,41.608,23.981,88.877,31.518,108.368,11.986,6.639,22.649,9.492,28.624,15.041,12.791,11.88-16.081,33.185-16.081,33.185l24.532,10.21v16.081s-41.64,8.278-124.473,8.279Z')
}
/* positions the right rook */
.grid-top-r1 .rook {
bottom: 0;
right: 50%;
transform-origin: bottom right;
animation: fall-right 1.5s ease 0s forwards;
opacity: 0;
}
/* positions the left rook */
.grid-top-l1 .rook {
bottom: 0;
left: 50%;
transform-origin: bottom left;
animation: fall-left 1.5s ease 0s forwards;
opacity: 0;
}
/* positions the bottom row of chesspieces */
.grid-bottom {
width: 110%;
height: 600px;
position: absolute;
top: 50px;
left: 50%;
transform: translateX(-50%);
display: grid;
grid-template-columns: repeat(8, 1fr);
z-index: 2;
}
/* gives all the bottom pieces position relative */
.grid-bottom>* {
position: relative;
}
/* styles for the pawn */
.pawn {
width: 249.266px;
height: 327.69px;
z-index: 7;
background: #D5DEEF;
position: absolute;
clip-path: path('M124.632,327.69C41.689,327.7,0,319.412,0,319.412V303.33l24.532-10.211s-28.872-21.3-16.081-33.184,47.052-11.4,69.815-62.157c5.777-12.884,9.36-40.886,11.488-72.047-5.353-.019-10.355-.071-14.154-.177-15.008-.419-11.758-9.172-10.382-11.061.929-1.274,9.942-6.219,18.355-9.826a60.579,60.579,0,1,1,82.465.585c8,3.536,16.132,8.034,17.011,9.24,1.376,1.889,4.627,10.643-10.382,11.061-3.562.1-8.182.151-13.155.173,2.128,31.161,5.711,59.167,11.488,72.051,22.763,50.759,57.024,50.277,69.815,62.157s-16.082,33.184-16.082,33.184l24.533,10.211v16.082s-41.641,8.278-124.474,8.278Z');
bottom: 0;
left: 50%;
transform-origin: bottom left;
}
/* this section breaks the pawns into pairs that fall at different times */
.grid-bottom-item:nth-child(1) .pawn,
.grid-bottom-item:nth-child(8) .pawn {
opacity: 0;
animation: fall-left 1.5s ease 0s forwards;
}
.grid-bottom-item:nth-child(2) .pawn,
.grid-bottom-item:nth-child(7) .pawn {
opacity: 0;
animation: fall-left 1.5s ease 0.2s forwards;
}
.grid-bottom-item:nth-child(3) .pawn,
.grid-bottom-item:nth-child(6) .pawn {
opacity: 0;
animation: fall-left 1.5s ease 0.4s forwards;
}
.grid-bottom-item:nth-child(4) .pawn,
.grid-bottom-item:nth-child(5) .pawn {
opacity: 0;
animation: fall-left 1.5s ease 0.6s forwards;
}
/* END CHESSPIECES SECTION */
/* END CHESSBOARD SECTION */
/* some media queries to make sure everything looks good on other screen sizes. The chesspieces falling animation is too big for phones so it won't show there */
@media (max-width: 1300px) {
.grid-top,
.grid-bottom {
display: none;
}
.pp-uc-avatar-container img,
.pp-uc-avatar-container::after {
width: 40%;
}
}
@media (max-width: 768px) {
.pp-uc-avatar-container img,
.pp-uc-avatar-container::after {
width: 80%;
animation: fall-pfp 1.5s ease forwards;
}
.title h1 {
font-size: 0;
}
.title h1::after {
content: 'welcome, alice';
font-size: 30px;
}
}
@media (max-width: 460px) {
.pp-uc-avatar-container img,
.pp-uc-avatar-container::after {
width: 90%;
}
}
</style>
<!-- ♖♘♗♕ MINI SEARCH SECTION ♔♗♘♖ -->
<style>
/* TOP BAR SECTION */
/* styles the wrapper of the 'the board is set' text */
.profile-tabs-wrapper {
width: 100%;
margin: auto;
background-color: rgb(0, 0, 0, 0);
border-color: #8AAEE0;
flex-shrink: 1;
min-width: 0px !important;
}
/* removes the original text and positions it */
.profile-tabs-button {
font-size: 0px;
width: 100%;
margin: auto;
color: #395886 !important;
flex-shrink: 1;
}
/* adds the new custom text */
.profile-tabs-button::after {
font-size: 20px;
content: 'THE BOARD IS SET. WANNA PLAY?';
font-family: cinzel;
color: #D5DEEF;
overflow: hidden;
white-space: nowrap;
}
/* shortens the text for when the screen is too small */
@media (max-width: 450px) {
.profile-tabs-button::after {
content: 'THE BOARD IS SET.';
}
}
/* removes the cursor effect (since the button is useless) */
.profile-tabs-wrapper button {
cursor: default;
}
/* styles the glowing blue bar directly beneath it */
.profile-tabs-indicator {
width: 100% !important;
background: #8AAEE0;
box-shadow: 0 0 8px #8AAEE0;
}
/* END TOP BAR SECTION */
/* NUMBER OF CHARACTERS */
/* fixes the general layout of the indicator */
.profile-badge-flex-outer {
border: none;
background-color: rgb(0, 0, 0, 0);
background: none;
box-shadow: none;
font-size: 20px;
font-family: cinzel;
text-transform: uppercase;
color: #D5DEEF;
}
/* makes sure the font size for the number of chars doesn't change for smaller screens */
.pp-pg-total-count {
font-size: 20px !important;
}
/* removes the hover effect */
.profile-badge-flex-outer:hover {
color: #D5DEEF;
}
/* removes the original 'characters' text */
.profile-badge-total-text {
font-size: 0px;
}
/* adds the new custom text */
.profile-badge-total-text:after {
font-size: 20px;
content: 'pieces on the chessboard';
}
/* changes text to 'pieces' for smaller screens */
@media (max-width: 600px) {
.profile-badge-total-text:after {
content: 'pieces';
}
}
/* moves the whole thing up slightly so it actually fits */
.character-list-pagination-box {
align-self: flex-start;
position: relative;
top: 5px;
}
/* END NUMBER OF CHARS */
/* SEARCH BAR */
/* makes search bar take up entire width */
.profile-filters-flex-outer {
width: 100%;
}
.profile-filters-flex-inner-hassearchfilter {
height: 40px;
flex-grow: 1;
}
/* makes sure the search text doesn't show when you don't click on the search bar */
.profile-character-search-input {
font-size: 0;
caret-color: transparent;
}
/* shows it when you click on the search bar */
.profile-character-search-input:focus {
font-size: 15px;
caret-color: white;
}
/* styles the general search input box */
.profile-character-search-input {
position: relative;
overflow: hidden;
width: 100%;
border-radius: 1px;
border: 3px solid #395886;
min-width: 0px;
caret-color: white;
}
/* removes the old placeholder text */
.profile-character-search-input::placeholder {
opacity: 0;
}
/* adds the new custom placeholder text */
.profile-character-search-input-group::after {
content: "pick your piece..." !important;
position: absolute;
left: 1rem;
top: 50%;
transform: translateY(-50%);
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
pointer-events: none;
font-size: 19px;
padding-top: 4px;
font-family: cinzel;
font-weight: 600;
font-style: normal;
color: #395886;
display: block;
width: 100%;
}
/* styles the background of the search bar */
.pp-fl-search-input {
outline: none;
box-shadow: none;
border: 3px solid #395886;
background: rgba(240, 243, 250, 0.5);
border-radius: 0;
}
/* fixes the old hover effect */
.pp-fl-search-input:is(:hover, :focus) {
outline: none;
box-shadow: none;
border: 3px solid #395886;
background: rgba(240, 243, 250, 0.8);
border-radius: 0;
}
/* END SEARCH BAR */
/* FILTER SECTION */
/* styles the filter button */
.profile-filter-button {
border: 3px solid #395886;
background: rgba(240, 243, 250, 0.5);
border-radius: 0;
}
/* recolours the filter svg */
.profile-filter-button svg {
filter: brightness(0%) invert(32%) sepia(42%) saturate(747%) hue-rotate(177deg) brightness(85%) contrast(83%);
stroke-width: 1;
}
/* gives it a hover effect */
.profile-filter-button:hover {
background: rgba(240, 243, 250, 0.8);
}
/* styles the filters popup box */
.css-1dljitb {
border: 1px solid #F0F3FA;
border-radius: 1px;
background-color: #395886 !important;
}
/* styles the heading of the filters popup */
.css-dcyl1x,
.profile-filter-modal-body-tags-flex-box h2 {
font-family: cinzel
}
/* styles each of the little individual tags */
._collapsedContainer_1lgbq_78 button {
border: 1px solid #F0F3FA;
display: flex;
align-items: center;
justify-content: center;
border-radius: 4px;
transition: border-color 0.3s;
cursor: default;
font-family: Alegreya Sans SC;
filter: grayscale(100%) brightness(0%) invert(80%) sepia(16%) saturate(691%) hue-rotate(185deg) brightness(97%) contrast(92%);
}
/* gives the individual tags a hover effect */
._collapsedContainer_1lgbq_78 button:hover {
filter: none;
transition: border-color 0.3s;
border: 1px solid #F0F3FA;
border-color: color-mix(in srgb, #F0F3FA 60%, transparent);
color: #F0F3FA;
}
/* removes the background of the filters arrow buttons */
._expandButton_1lgbq_153,
._navigationButton_1lgbq_104,
.css-lyo4r5 {
background-color: rgb(0, 0, 0, 0) !important;
}
/* colours the arrow icon */
._expandButton_1lgbq_153 svg,
._navigationButton_1lgbq_104 svg,
.css-lyo4r5 svg {
filter: brightness(0%) invert(100%);
}
/* adjusts the left gradient */
._gradientLeft_1lgbq_19 {
background: linear-gradient(270deg, transparent 0%, #395886 50%, #395886 50%, #395886 100%);
}
/* adjusts the right gradient */
._gradientRight_1lgbq_36 {
background: linear-gradient(90deg, transparent 0%, #395886 50%, #395886 50%, #395886 100%);
}
/* END FILTER SECTION */
/* SORT DROPDOWN */
/* styles the collapsed sort dropdown */
:is(.default, .dark, .transparent, .css-b62m3t-container) .react-select__control {
outline: none;
box-shadow: none;
border-radius: 0 !important;
border: 3px solid #395886 !important;
font-family: cinzel;
text-transform: uppercase;
font-weight: 600;
color: #395886;
z-index: 0;
}
/* styles the collapsed sort dropdown */
.transparent .react-select__control {
background: rgba(240, 243, 250, 0.5) !important;
}
/* gives the collapsed sort dropdown a hover effect */
:is(.default, .dark, .transparent, .css-b62m3t-container) .react-select__control:hover {
outline: none;
box-shadow: none;
border-radius: 0 !important;
border: 3px solid #395886 !important;
background: rgba(240, 243, 250, 0.7) !important;
}
/* styles the text colour */
:is(.default, .dark, .transparent, .css-b62m3t-container) .react-select__single-value {
color: #395886;
}
/* removes the line between the dropdown word and the arrow */
:is(.default, .dark, .transparent, .css-b62m3t-container) .react-select__indicator-separator {
display: none;
}
/* styles the arrow */
:is(.default, .dark, .transparent, .css-b62m3t-container) svg {
color: #395886;
transition: 500ms;
}
/* gives the arrow a rotating animation */
:is(.default, .dark, .transparent, .css-b62m3t-container):has(.css-qr46ko) svg {
transform: rotateX(180deg);
}
/* gives the uncollapsed menu a background colour */
:is(.default, .dark, .transparent, .css-b62m3t-container) .react-select__menu {
width: auto;
text-align: center;
background: #F0F3FA;
border-radius: 0;
}
/* removes a very annoying grey border that sometimes shows up */
.react-select__menu {
border: none !important;
}
/* gives the uncollapsed dropdown section a border */
.css-qr46ko {
border: 3px solid #395886 !important;
outline: 0;
width: auto;
padding: 0;
box-shadow: none;
}
.css-13cymwt-control:active {
outline: none;
box-shadow: none;
border-radius: 0 !important;
border: 0px !important;
background: rgba(240, 243, 250, 0.7) !important;
}
/* styles the options inside the uncollapsed dropdown */
:is(.default, .dark, .transparent, .css-b62m3t-container) .react-select__option {
font-family: cinzel;
text-transform: uppercase;
font-weight: 500;
border-bottom: 1px solid #395886;
color: #395886;
}
/* gives the options inside a hover effect */
:is(.default, .dark, .transparent, .css-b62m3t-container) .react-select__option:hover {
background: #D5DEEF;
transition: 500ms;
color: #395886;
}
/* styles the focused item inside the dropdown */
:is(.default, .dark,
.transparent, .css-b62m3t-container) .react-select__option--is-focused {
background: #F0F3FA;
transition: 500ms;
}
/* styles the selected item inside the dropdown */
:is(.default, .dark, .transparent, .css-b62m3t-container) .react-select__option--is-selected {
background: #8AAEE0;
transition: 500ms;
}
/* END SORT DROPDOWN SECTION */
</style>
<!--♖♘♗♕ BOT CARDS ♔♗♘♖ -->
<style>
/* general cards overall container layout */
.pp-cc-list-container {
display: grid;
grid-template-columns: repeat(auto-fit, 350px);
justify-content: center;
position: relative;
gap: 30px;
}
/* individual cards general layout */
.profile-character-card-wrapper {
height: 350px;
padding-left: 100px;
padding-right: 100px;
}
/* removes event bot card decorations */
.css-nip9dx img,
.css-xrg4vd img,
.css-1awld45,
.css-1cui3us,
.css-5v5qgx img,
.css-1wqmh16,
.css-effh3d,
.css-8828od,
.css-1henxb,
.css-w89cv5,
.css-1utqofo {
display: none;
}
/* moves the card you are hovering to the top when you hover it */
.pp-cc-wrapper:hover {
z-index: 10;
}
/* removes your creator name and the star line */
.profile-character-card-creator-name-link,
.profile-character-card-star-line {
display: none;
}
/* bot image positioning */
.profile-character-card-avatar-aspect-ratio {
top: 50px;
height: 300px;
overflow: visible;
width: 150px;
justify-self: center;
border: 3px solid #b2c9ed;
position: absolute;
}
/* makes gives image a general filter (feel free to adjust!) */
.profile-character-card-avatar-aspect-ratio img {
filter:
saturate(0.2) grayscale(0.8) brightness(1.9) contrast(0.8);
border-radius: 0;
}
/* gives image a blue filter (feel free to adjust!) */
.profile-character-card-avatar-aspect-ratio::after {
content: "";
position: absolute;
inset: 0;
background: rgba(0, 106, 255, 0.2);
mix-blend-mode: soft-light;
pointer-events: none;
}
/* removes filter on hover */
.pp-cc-wrapper:hover .profile-character-card-avatar-aspect-ratio img {
filter: none;
}
/* DECORATIONS */
/* gets rid of the ugly original background + positions this wrapper */
.pp-cc-gradient-2 {
top: 50px;
width: 150px;
background: none !important;
overflow: visible;
}
/* adds pawn svg + positions it */
.pp-cc-gradient-2::before {
content: '';
width: 100px;
height: 300px;
position: absolute;
z-index: 0;
left: -100px;
background: #B1C9EF;
display: block;
transition: all 0.3s ease;
clip-path: path('M 93.861 300 c -5.311 0 -9.7 -0.076 -13.816 -0.24 c -4.956 -0.2 -9.466 -0.522 -13.786 -0.993 l -1.244 -0.132 c -49.637 -5.29 -49.637 -5.29 -62.591 -21.1 a 10.3 10.3 0 0 1 -2.006 -4.179 a 21.769 21.769 0 0 1 -0.354 -4.667 c 0 -0.682 0 -0.682 -0.008 -1.378 c 0 -1.088 -0.005 -2.03 0 -2.88 c 0 -1.292 -0.011 -2.578 -0.024 -3.665 s -0.011 -2.209 -0.011 -3.192 v -0.337 c 0 -0.215 -0.006 -0.43 -0.009 -0.647 v -0.062 l 0 -0.2 q 0 -0.2 -0.006 -0.412 a 10.838 10.838 0 0 1 2.77 -7.638 l 0.634 -0.6 l 0.642 -0.624 a 1.418 1.418 0 0 1 1.3 -0.44 l -0.2 -0.435 l 0 -0.01 l -0.028 -0.06 l -0.135 -0.288 l -0.093 -0.2 l -0.27 -0.577 l -0.336 -0.718 l -0.6 -1.286 a 11.455 11.455 0 0 1 -1.008 -3.991 A 10.407 10.407 0 0 1 3.2 234.971 a 18.033 18.033 0 0 1 2.764 -4.342 A 27.214 27.214 0 0 1 9.719 227.071 l 1.011 -0.819 a 115.754 115.754 0 0 1 10.87 -7.323 c 5.157 -3.007 9.137 -4.532 11.829 -4.532 c -0.164 -0.463 -0.342 -0.961 -0.616 -1.72 l -0.16 -0.445 l -0.238 -0.662 a 15.646 15.646 0 0 0 -0.949 -2.209 a 15.151 15.151 0 0 1 -1.335 -4.072 a 13.592 13.592 0 0 1 0.014 -4.289 a 8.7 8.7 0 0 1 1.824 -2.9 l 0.363 -0.479 l 0.109 -0.144 a 23.346 23.346 0 0 1 7.814 -5.347 a 39.993 39.993 0 0 1 9.117 -2.9 l 0.835 -0.187 a 4.58 4.58 0 0 0 0.73 -1.449 c 0.364 -0.527 0.745 -1.06 1.162 -1.629 c 7.174 -10.139 10.64 -22.222 12.858 -31.616 l 0.065 -0.276 l 0.052 -0.219 l 0.062 -0.261 a 128.3 128.3 0 0 0 2.808 -16.059 c 0.046 -0.44 0.091 -0.881 0.138 -1.334 c 0.576 -6.013 0.638 -12.163 0.7 -18.11 v 0 c 0.009 -0.951 0.019 -1.935 0.031 -2.914 l -1.176 -0.145 a 12.2 12.2 0 0 1 -2.989 -0.8 l -0.524 -0.216 l -0.164 -0.068 l -0.168 -0.069 l -0.217 -0.094 l -0.028 -0.012 l -0.135 -0.058 l -0.021 -0.009 l -0.39 -0.167 l -0.094 -0.04 l -0.925 -0.394 a 44.3 44.3 0 0 1 -8.529 -4.7 a 23.452 23.452 0 0 1 -3.66 -3.263 a 15.729 15.729 0 0 1 -2.639 -3.981 a 9.915 9.915 0 0 1 0.319 -6.944 c 3.832 -5.349 11.015 -7.141 17.352 -8.722 l 0.009 0 l 0.024 -0.006 c 1 -0.249 1.937 -0.483 2.86 -0.73 l -0.5 -0.4 a 46.885 46.885 0 0 1 -6.17 -6.242 a 48.981 48.981 0 0 1 -4.974 -7.333 a 47.371 47.371 0 0 1 -3.547 -8.1 a 42.939 42.939 0 0 1 -1.89 -8.554 a 69.287 69.287 0 0 1 -0.17 -9.389 a 39.08 39.08 0 0 1 1.562 -9.224 l 0.231 -0.783 a 46.777 46.777 0 0 1 9.2 -16.846 a 52.72 52.72 0 0 1 15.008 -12.063 a 46.436 46.436 0 0 1 10.214 -3.984 l 0.693 -0.2 a 44.456 44.456 0 0 1 12.187 -1.637 l 0.434 0 v 4.472 c -0.2 0 -0.405 0 -0.619 0 a 41.28 41.28 0 0 0 -8.163 0.795 l -0.253 0.055 l -0.631 0.138 a 45.794 45.794 0 0 0 -13.28 5.106 a 42.99 42.99 0 0 0 -10.971 9.01 l -0.426 0.506 l -0.125 0.149 l -0.368 0.437 a 40.573 40.573 0 0 0 -4.139 5.784 c -5.867 10.457 -7.5 21.986 -4.59 32.464 l 0.317 1.065 A 42.787 42.787 0 0 0 64.4 74.798 l 0.207 0.247 l 0.048 0.057 l 0.036 0.043 l 0.037 0.044 l 0.044 0.053 l 0.073 0.087 l 0.02 0.024 l 0.3 0.353 a 34.481 34.481 0 0 0 4.621 4.742 l 0.851 0.69 a 45.711 45.711 0 0 0 13.458 7.723 a 73.155 73.155 0 0 0 15.155 3.678 l 0.751 0.108 v 0.172 a 36.678 36.678 0 0 1 -5.7 0.318 l -1.366 0 h -0.485 a 44.5 44.5 0 0 1 -10.648 -0.992 l -0.2 -0.049 l -0.113 -0.028 l -0.105 -0.026 l -0.514 -0.128 h -0.006 a 24.07 24.07 0 0 1 -4.807 -1.542 l -0.333 -0.2 l -0.008 0 l -0.029 -0.017 l -0.008 0 a 5.18 5.18 0 0 0 -2.764 -1 c -0.073 0 -0.152 0 -0.234 0.007 l -0.369 0.079 l -0.009 0 l -0.1 0.021 l -0.158 0.034 l -0.191 0.041 l -0.121 0.026 l -0.586 0.122 l -0.016 0 l -0.177 0.036 l -0.289 0.06 l -1.13 0.249 c -0.811 0.165 -1.691 0.321 -2.542 0.472 h 0 c -5.071 0.9 -11.382 2.026 -14.235 6.045 a 5.145 5.145 0 0 0 0.73 3.983 c 6.68 7.23 16.742 10.157 26.62 12.243 l 0.9 0.182 a 67.874 67.874 0 0 0 7.646 1.1 c 2.444 0.215 4.968 0.32 7.714 0.32 H 96.7 c 1.18 -0.008 2.167 -0.013 3.147 -0.015 H 100 v 5.406 l -0.968 0 h -0.969 c -0.64 0 -1.517 0 -2.378 0 H 94.127 c -0.926 0 -1.809 -0.016 -2.7 -0.048 a 8.677 8.677 0 0 0 -2.948 -0.394 h -0.188 l -0.2 0 l -0.18 0 H 87.86 l -0.329 0 h 0 c -0.944 0.006 -1.817 0.013 -2.667 0.022 c -0.048 1.315 -0.081 2.219 -0.112 3.024 c -0.024 0.633 -0.024 0.633 -0.048 1.254 a 90.244 90.244 0 0 1 -0.794 9.292 a 79.89 79.89 0 0 1 -1.818 9.143 l -0.087 0.332 l -0.129 0.493 a 96.6 96.6 0 0 1 -5.361 16.136 c -0.008 -0.142 -0.021 -0.306 -0.042 -0.562 v 0 l -0.194 -0.1 l -0.192 -0.1 c 0.055 -0.339 0.112 -0.668 0.17 -0.98 a 135.679 135.679 0 0 0 2.5 -25.9 c 0 -0.35 0 -0.691 0 -1.031 c 0 -0.593 0 -1.172 0 -1.661 A 74.487 74.487 0 0 0 78.3 118.071 c -0.365 -0.362 -0.365 -0.362 -1.2 -0.556 l -0.241 -0.046 l -0.772 -0.145 c -0.7 -0.133 -1.272 -0.241 -1.8 -0.339 c -0.04 1.651 -0.076 3.062 -0.112 4.439 q -0.022 0.847 -0.044 1.695 l 0 0.135 a 132.111 132.111 0 0 1 -1.072 14.666 l -0.057 0.421 l -0.023 0.168 l -0.064 0.473 l 0 0.026 l -0.151 1.116 c -0.13 0.958 -0.281 2.09 -0.417 3.228 a 93.4 93.4 0 0 1 -2.554 13.388 c -0.275 1.017 -0.6 2.219 -0.909 3.428 c -0.813 3.194 -1.741 6.3 -2.758 9.231 c -1.055 3.04 -2.244 6 -3.534 8.808 a 89.432 89.432 0 0 1 -4.415 8.4 a 87.022 87.022 0 0 1 -5.4 8 l -0.344 0.448 l -0.261 0.34 l -0.131 0.171 c 0.533 0.564 1.129 1.156 1.824 1.81 a 45.261 45.261 0 0 0 8.718 4.172 a 66.257 66.257 0 0 0 9.838 2.647 a 96.337 96.337 0 0 0 10.5 1.391 c 3.358 0.268 6.964 0.4 10.715 0.4 c 2.053 0 4.2 -0.041 6.369 -0.121 v 4.943 a 165.946 165.946 0 0 1 -30.576 -3.1 l -0.232 -0.048 l -0.2 -0.041 l -0.544 -0.112 a 84.279 84.279 0 0 1 -9.2 -2.35 a 47.054 47.054 0 0 1 -8.688 -3.761 a 11.34 11.34 0 0 1 -1.97 -1.67 a 4.593 4.593 0 0 1 -1.109 -2.277 c 0.032 -0.476 0.032 -0.476 0.064 -0.942 l 0.017 -0.319 c 0.011 -0.211 0.022 -0.42 0.033 -0.629 v -0.011 l 0.064 -0.716 l -0.444 0.056 l -0.112 0.014 l -0.234 0.03 l -0.062 0.008 l -0.1 0.012 c -3.628 0.709 -8.6 3.134 -11.087 6.4 a 7.154 7.154 0 0 0 -0.021 2.078 a 5.171 5.171 0 0 0 0.75 1.905 a 87.8 87.8 0 0 0 6.549 6.362 a 22.956 22.956 0 0 0 6.432 3.836 a 54.2 54.2 0 0 0 9.9 2.6 c 4.139 0.781 9.346 1.568 16.941 2.664 c -0.692 0.1 -0.823 0.151 -1.556 0.871 l -0.562 0 l -0.561 0 c -0.578 0 -1.164 0.012 -1.732 0.019 h -0.068 c -0.923 0.012 -1.878 0.024 -2.827 0.024 a 44.785 44.785 0 0 1 -8.226 -0.614 l -0.291 -0.062 l -0.625 -0.133 l -0.024 -0.005 c -0.844 -0.159 -1.669 -0.316 -2.474 -0.487 l -0.057 -0.013 l -0.707 -0.157 a 68.263 68.263 0 0 1 -7.594 -2.178 c -0.815 -0.287 -1.559 -0.542 -2.274 -0.781 l -0.915 -0.3 l -0.742 -0.246 l -0.557 -0.185 v 0.724 c 0.557 0.505 1.158 1.044 1.784 1.557 l 0.347 0.278 l 0.08 0.064 l 0.009 0.008 l 0.332 0.266 C 54 225.211 63.262 228.837 76.071 230.877 l 1.131 0.175 a 116.439 116.439 0 0 0 15.946 1.425 l 0.389 0.007 h 0.052 l 0.308 0.006 h 0 l 0.446 0.008 c 1.617 0.038 3.222 0.057 4.772 0.057 l 0.881 0 v 4.039 H 98.655 l -1.314 0 c -4.611 0 -8.342 -0.079 -11.74 -0.249 c -4.25 -0.212 -8.074 -0.57 -11.689 -1.1 l -0.312 -0.049 l -0.353 -0.055 l -0.445 -0.07 a 125.648 125.648 0 0 1 -16.558 -3.83 l -0.134 -0.039 l -0.874 -0.257 l -0.056 -0.017 c -0.7 -0.2 -1.386 -0.408 -2.053 -0.61 l -0.073 -0.025 l -0.951 -0.323 l -0.414 -0.138 l -0.141 -0.047 l -0.419 -0.139 a 5.941 5.941 0 0 0 -1.65 -0.414 a 7.517 7.517 0 0 0 -2.146 1.448 a 14.482 14.482 0 0 1 -1.7 1.471 a 56.35 56.35 0 0 0 -9.282 8.668 l 0.071 0.062 l 0.583 0.508 l 0.873 0.765 c 1.174 1.027 2.345 2.13 3.579 3.372 l -0.178 -0.073 l -0.093 -0.038 l -0.108 -0.045 l -0.087 -0.036 l -0.379 -0.156 a 48.855 48.855 0 0 1 -8.3 -4.422 a 22.777 22.777 0 0 1 -3.688 -3.1 a 12.44 12.44 0 0 1 -2.489 -3.718 a 70.22 70.22 0 0 1 13.138 -10.424 l 0.166 -0.1 l 0.218 -0.133 l 0.227 -0.138 l 0.113 -0.069 c -0.328 -0.321 -0.665 -0.656 -1.095 -1.086 l -0.221 -0.238 l -0.04 -0.043 l -0.206 -0.222 l -0.053 -0.057 l -0.081 -0.087 l -0.2 -0.216 l -0.036 -0.038 l -0.137 -0.145 l -0.134 -0.142 l -0.118 -0.124 a 7.86 7.86 0 0 0 -1.322 -1.222 a 3.749 3.749 0 0 0 -1.419 -0.3 a 6.162 6.162 0 0 0 -2.474 0.715 l -0.8 0.377 c -0.653 0.3 -1.329 0.6 -1.965 0.891 l -0.011 0.005 h 0 c -3.175 1.434 -6.457 2.917 -9.56 4.684 a 34.3 34.3 0 0 0 -8.332 6.324 l -0.336 0.39 l -0.066 0.077 l -0.2 0.233 a 15.493 15.493 0 0 0 -2.189 2.9 a 6.693 6.693 0 0 0 1.054 5.024 l 0.86 1.132 a 17.062 17.062 0 0 0 2.659 2.952 l 0.331 0.246 l 0.075 0.056 l 0.227 0.169 l 0.02 0.015 l 0.246 0.183 a 52.907 52.907 0 0 0 15.52 9.071 l 0.522 0.2 l 0.014 0.006 l 0.359 0.138 c 4.776 1.842 9 3.289 12.925 4.421 a 91.562 91.562 0 0 0 13.35 2.881 l 0.03 0 h 0.007 c 0.944 0.122 1.919 0.248 2.866 0.459 c 3.543 0.841 3.543 0.841 13.738 1.921 l 0.857 0.09 a 232.808 232.808 0 0 0 24.418 1.178 H 100 v 6.132 h -0.327 c -1.014 0 -1.917 0 -2.758 0 c -1.122 0 -2.255 0.012 -3.413 0.02 h -0.116 c -1.558 0.011 -3.169 0.023 -4.765 0.023 A 114.455 114.455 0 0 1 69.728 270.871 A 35.907 35.907 0 0 0 64.8 270.341 a 46.328 46.328 0 0 1 -6.072 -0.687 L 57.5 269.435 l -0.668 -0.118 c -5.761 -1.013 -11.718 -2.061 -17.457 -3.631 l -0.352 -0.1 l -0.045 -0.012 l -0.21 -0.058 h 0 l -0.233 -0.065 c -2.352 -0.651 -4.448 -1.268 -6.406 -1.888 l -0.326 -0.1 l -0.116 -0.037 l -0.448 -0.143 a 79.253 79.253 0 0 1 -11.351 -4.43 a 38.048 38.048 0 0 1 -5.273 -3.165 a 24.409 24.409 0 0 1 -4.374 -4.015 l -0.513 -0.613 l -0.12 -0.143 l -0.256 -0.307 h -0.032 a 2.382 2.382 0 0 0 -1.7 0.369 a 13.239 13.239 0 0 0 -1.918 2.528 a 4.808 4.808 0 0 0 -0.385 2.069 a 6.319 6.319 0 0 0 0.522 2.073 c 5.736 8.513 5.846 8.676 27.615 15.528 h 0 v 0 l 0.171 0.677 l 0.022 0.089 l 0.034 0.134 l 0.06 0.24 l 0.048 0.192 h -1.487 A 79.924 79.924 0 0 1 16.49 270.071 c -1.787 -0.751 -3.2 -1.282 -4.582 -1.72 c 0 1.082 0 1.082 1.459 3.621 c 7.975 10.943 22.955 15.129 36.37 18.194 l 1.157 0.264 l 0.045 0.01 a 155.932 155.932 0 0 0 23.8 3.6 c 6.961 0.553 14.387 0.8 24.078 0.81 H 100 v 5.139 h -0.5 c -1.271 0 -2.552 0 -4.156 0.007 Z');
}
/* adds rose svg + positions it */
.pp-cc-gradient-2::after {
content: '';
display: initial;
width: 100px;
height: 300px;
position: absolute;
z-index: 0;
right: -100px;
background: #B1C9EF;
display: block;
transition: all 0.3s ease;
clip-path: path('M 0 300 h 0 V 284.191 a 16.616 16.616 0 0 0 1.676 -0.175 a 35.829 35.829 0 0 0 13.967 -4.914 l 1.378 -0.905 l -1.378 -0.387 c -0.765 -0.216 -2.139 -0.678 -3.063 -1.03 l -1.684 -0.64 l 1.262 -0.028 a 32.481 32.481 0 0 0 10.18 -2.434 c 6.479 -2.625 10.652 -4.048 14.142 -4.048 a 15.774 15.774 0 0 1 7.5 2.188 a 42.067 42.067 0 0 0 4.4 2.045 l 1.034 0.3 l -0.205 -1.324 c -0.572 -3.7 -3.051 -9.325 -5.767 -13.074 c -1.65 -2.279 -7.828 -9.033 -8.263 -9.033 c -0.138 0 -2.687 1.345 -5.682 3 c -9.541 5.267 -19.183 9.167 -25.162 10.179 a 33.294 33.294 0 0 1 -4.334 0.394 v -5.1 a 15.1 15.1 0 0 0 4 0.652 c 0.4 0.018 0.785 0.027 1.139 0.027 c 3.12 0 5.507 -0.646 9.124 -2.469 c 3.852 -1.941 6.826 -4.134 12.727 -9.388 c 4.989 -4.441 7.59 -6.264 9.94 -6.967 c 1.083 -0.324 11.338 -2.028 12.329 -2.049 a 0.107 0.107 0 0 0 0.1 -0.063 c 0.111 -0.245 -0.336 -1.131 -0.976 -1.935 a 19.7 19.7 0 0 0 -6.642 -4.651 c -4.012 -1.766 -6.065 -2.152 -21.969 -4.125 c -2.947 -0.367 -5.772 -0.733 -6.433 -0.833 L 12.12 227.224 l 0.1 1.578 a 3.833 3.833 0 0 1 -2.452 4.315 a 7.133 7.133 0 0 1 -4.079 0.826 a 18.717 18.717 0 0 1 -5.692 -0.945 v -3.537 a 26.664 26.664 0 0 0 5.434 0.912 c 1.052 0.055 1.766 0.08 2.312 0.08 c 1.231 0 1.826 -0.12 2.122 -0.427 a 1.23 1.23 0 0 0 0.259 -0.922 c -0.01 -1.58 -1.4 -3.758 -5.508 -8.631 c -1.522 -1.805 -3.076 -3.835 -4.619 -6.033 V 182.684 a 95.6 95.6 0 0 0 10.435 8.2 A 72.358 72.358 0 0 0 32.184 201.024 a 20.343 20.343 0 0 0 5.973 0.729 h 0.486 c 2.719 0 3.073 -0.106 4.287 -0.844 c 1.839 -1.118 3.109 -2.768 6.47 -8.407 a 75 75 0 0 0 5.343 -10.318 c 1.063 -2.693 1.448 -4.725 1.178 -6.211 a 10.625 10.625 0 0 0 -1.23 -3.15 s -0.006 0 -0.012 0 A 28.324 28.324 0 0 0 51.53 174.324 c -4.433 2.3 -5.455 2.662 -13.675 4.816 c -7.27 1.907 -13.714 3.924 -15.322 4.8 l -0.827 0.448 l 1.182 0.742 c 0.658 0.412 2.882 1.678 4.858 2.763 a 23.872 23.872 0 0 1 3.114 1.865 s -0.005 0.006 -0.014 0.006 a 0.168 0.168 0 0 1 -0.036 -0.006 a 72.711 72.711 0 0 1 -17.1 -7.084 a 86.636 86.636 0 0 1 -12.465 -8.342 c -0.408 -0.313 -0.826 -0.629 -1.24 -0.941 v -5.8 l 2.462 2.541 a 91.661 91.661 0 0 0 7.815 7.413 c 1.593 1.082 5.884 2.823 6.957 2.823 a 0.24 0.24 0 0 0 0.217 -0.134 c 0.378 -0.663 -0.48 -3.522 -1.8 -6 A 177.211 177.211 0 0 1 5.33 151.486 a 150.271 150.271 0 0 1 -5.335 -18.2 V 97.955 c 0.605 -0.409 1.489 -1.023 2.49 -1.729 c 8.054 -5.683 15.3 -8.108 24.216 -8.108 a 61.117 61.117 0 0 1 7.316 0.471 a 11.617 11.617 0 0 1 2.654 0.41 c 0 0.062 -0.349 0.121 -0.969 0.221 c -5.077 0.823 -7.018 2 -12.981 7.889 c -2.631 2.6 -6.108 6.029 -7.726 7.625 c -2.5 2.464 -3.129 3.3 -4.213 5.593 c -2.185 4.629 -3.062 9.428 -3.129 17.116 c -0.021 2.5 -0.082 3.571 -0.2 3.571 c -0.142 0 -0.382 -1.539 -0.826 -5.313 a 157.749 157.749 0 0 1 -0.9 -16.324 l 0.11 -1.107 l -0.446 0.994 c -0.81 1.807 -1.678 7.23 -2.019 12.615 c -0.555 8.747 0.2 16.319 2.179 21.9 a 13.65 13.65 0 0 0 0.891 2.142 a 0.069 0.069 0 0 0 0.053 0.025 c 0.456 0 2.269 -4.233 4.408 -10.295 c 3.7 -10.484 5.961 -16.31 8.07 -20.78 a 58.439 58.439 0 0 1 7.331 -11.858 a 37.7 37.7 0 0 1 11.467 -10.08 c 2.179 -1.275 2.711 -2 2.369 -3.231 a 5.88 5.88 0 0 0 -3.45 -3.748 a 24.773 24.773 0 0 0 -10.546 -2.034 a 28.267 28.267 0 0 0 -10.63 1.875 a 29.354 29.354 0 0 0 -7.438 4.659 a 9.311 9.311 0 0 1 -1.31 1.13 a 0.009 0.009 0 0 1 -0.007 -0.007 a 95.731 95.731 0 0 1 4.7 -9.088 a 44.466 44.466 0 0 1 3.794 -4.845 c 2.235 -2.48 3.013 -3.665 2.777 -4.228 c -0.11 -0.261 -0.459 -0.387 -1.065 -0.387 a 10.73 10.73 0 0 0 -1.694 0.18 a 11.042 11.042 0 0 0 -6.82 3.546 c -1.763 1.951 -3.055 4.781 -4.767 10.439 c -1.559 5.15 -2.731 8.285 -3.688 9.864 V 76.224 c 2.731 -1.332 5.177 -2.456 6.384 -2.936 a 37.42 37.42 0 0 1 13.2 -2.21 c 0.184 0 0.381 0 0.6 0 a 24.033 24.033 0 0 1 2.921 0.12 a 0.751 0.751 0 0 1 -0.27 0.036 c -0.815 0.057 -2.1 0.178 -2.844 0.281 l -0.013 0 c -0.666 0.093 -1 0.14 -1.129 0.324 c -0.109 0.157 -0.07 0.408 0.022 0.915 c 0.261 1.434 -1.02 4.339 -3.342 7.581 c -1.033 1.441 -1.479 2.113 -1.4 2.286 c 0.016 0.034 0.052 0.05 0.11 0.05 a 0.824 0.824 0 0 0 0.213 -0.04 a 43.078 43.078 0 0 1 8.658 -0.779 c 0.575 0 1.1 0.012 1.557 0.036 c 6.417 0.332 11.647 2.021 14.347 4.634 a 7.066 7.066 0 0 1 2.612 4.751 l 0.2 1.456 l 2.484 0.093 l 2.483 0.091 l 0.98 -4.054 c 0.541 -2.235 1.39 -5.475 1.891 -7.222 a 20.111 20.111 0 0 0 0.709 -8.9 a 14.619 14.619 0 0 0 -2.982 -5.439 c -2.081 -2.35 -3.994 -3.395 -9.746 -5.322 c -6.216 -2.083 -10.69 -3.746 -14.506 -5.394 a 14.241 14.241 0 0 0 -5.665 -1.374 a 11.556 11.556 0 0 0 -6.548 2.267 c -2 1.323 -6.5 5.922 -10.937 11.185 V 60.097 a 30.152 30.152 0 0 0 7.512 -4.78 c 3.4 -3.036 4.815 -3.733 7.574 -3.733 h 0.1 c 2.835 0.018 4.945 0.691 10.261 3.275 c 3.883 1.886 7.869 3.421 8.886 3.421 a 0.321 0.321 0 0 0 0.223 -0.056 c 0.311 -0.323 -0.485 -5.658 -1.136 -7.611 c -2.166 -6.518 -7.5 -11.439 -15.031 -13.857 a 19.479 19.479 0 0 0 -5.6 -0.724 a 20.593 20.593 0 0 0 -5.107 0.58 A 31.45 31.45 0 0 0 0 39.724 v -1.46 c 0.625 -0.315 1.307 -0.66 2.028 -1.027 a 63.228 63.228 0 0 0 8.973 -5.118 c 1.668 -1.309 2 -2.305 2 -3.488 c -0.012 -2.735 -2.054 -5.553 -5.2 -7.18 a 30.113 30.113 0 0 0 -7.795 -2.2 V 17.76 c 4.429 0.93 7.074 1.808 9.132 3.028 a 16.075 16.075 0 0 1 5.529 5.867 c 2.415 3.882 3.942 5.621 8.6 9.794 c 8.636 7.736 11.6 11.883 13.806 19.292 c 0.913 3.071 1.039 3.3 2.254 4.1 a 33.041 33.041 0 0 0 3.89 1.969 a 10.777 10.777 0 0 0 5.773 1.151 l 3.169 0.025 L 53.43 65.505 a 25.564 25.564 0 0 0 6.511 8.36 c 2.544 2.119 5.4 3.978 6.12 3.978 a 0.181 0.181 0 0 0 0.133 -0.042 c 0.475 -0.5 1.527 -6.644 1.522 -8.884 c -0.013 -6.327 -1.82 -9.588 -10.739 -19.383 C 44.842 36.212 41.93 32.168 34.683 18.624 a 25.2 25.2 0 0 0 -7.362 -9.048 c -6.3 -4.948 -12.4 -7.224 -21.787 -8.119 l -2.3 -0.218 l 2.246 2.346 a 24.508 24.508 0 0 1 5 7.017 a 5.59 5.59 0 0 1 0.748 1.944 a 0.031 0.031 0 0 1 -0.029 0.017 c -0.107 0 -0.418 -0.393 -0.876 -1.107 a 31.047 31.047 0 0 0 -9.745 -8.6 c -0.2 -0.1 -0.392 -0.2 -0.581 -0.294 V 0 a 136.431 136.431 0 0 1 17.966 2.077 c 5.975 1.295 10.2 3.526 13.285 7.023 c 2.36 2.673 3.237 4.14 5.867 9.812 c 4.922 10.616 7.049 13.509 18.968 25.8 c 9.313 9.6 11.233 11.891 12.839 15.306 c 2.448 5.21 2.461 11.386 0.035 17.389 l -0.853 2.111 l 3.1 2.153 a 66.133 66.133 0 0 1 11.839 11.692 a 34.943 34.943 0 0 0 5.509 5.378 c 4.472 3.519 7.367 6.624 8.605 9.226 a 10.1 10.1 0 0 1 1.137 5.2 c 0.161 4.146 -0.537 6.62 -3.738 13.238 c -1.417 2.931 -2.817 6.131 -3.121 7.134 l -0.557 1.831 l 1.892 6.886 a 232.075 232.075 0 0 1 5.869 27.328 a 160.062 160.062 0 0 1 1.288 17.977 c 0.18 7.17 0.014 13.009 -0.445 15.62 c -0.735 4.182 -2.125 7.009 -4.647 9.451 c -1.9 1.838 -3.606 2.85 -8.7 5.16 c -1.682 0.764 -2.619 1.742 -5.568 5.818 a 39.018 39.018 0 0 1 -6.429 7 c -3.071 2.331 -8.351 3.337 -17.655 3.363 l -5.871 0.018 L 50.785 236.324 c 0.137 1.877 0.069 2.5 -0.347 3.152 c -0.685 1.08 -5.489 4.751 -10.281 7.858 c -2.069 1.342 -3.852 2.511 -3.894 2.554 s 2.355 2.621 4.6 4.975 a 70.741 70.741 0 0 1 10.791 13.933 c 2.39 4.047 4.786 8.944 4.5 9.193 a 42.3 42.3 0 0 1 -4.369 1.248 c -18.426 4.665 -33.848 10.673 -43.424 16.918 a 23.688 23.688 0 0 1 -8.363 3.843 Z M 89.548 138.994 h 0 c -0.061 0 -0.1 0.152 -0.172 0.492 c -0.089 0.431 -0.316 2.129 -0.515 3.866 a 63.02 63.02 0 0 1 -2.783 12.457 c -0.549 1.574 -2.663 6.266 -4.712 10.459 c -5.321 10.889 -8.665 15.931 -14.31 21.578 a 53.323 53.323 0 0 1 -9.669 7.76 l -1.96 1.187 l 3.006 0.2 l 0.588 0.04 l 0.032 0 c 2.416 0.163 3.415 0.231 3.431 0.371 c 0.011 0.09 -0.379 0.215 -0.97 0.4 l -0.227 0.073 c -0.94 0.305 -3.688 1.057 -6.127 1.676 a 60.048 60.048 0 0 0 -9.809 3.028 c -0.881 0.391 -1.272 0.584 -1.309 0.79 c -0.022 0.117 0.069 0.24 0.236 0.411 c 0.388 0.4 1.447 0.539 5.15 0.666 l 4.661 0.157 l -3.064 0.388 c -1.69 0.214 -4.5 0.546 -6.271 0.739 s -4.726 0.7 -6.586 1.139 c -1.888 0.436 -4.709 0.97 -6.289 1.191 l -2.911 0.4 l 1.379 0.4 a 60.867 60.867 0 0 0 16.541 2.5 l 6.586 0.207 l -3.216 0.411 c -6.436 0.823 -11.508 1.041 -28.564 1.232 c -9.718 0.11 -17.354 0.256 -17.384 0.332 c 0 0.073 0.849 1.211 1.855 2.486 a 16.2 16.2 0 0 0 3.141 3.118 c 1.889 1.133 6.959 2.78 13.231 4.3 C 35.43 226.587 38.143 227.324 40.677 228.41 c 2.743 1.174 6.205 3.345 7.265 4.555 a 2.076 2.076 0 0 0 0.8 0.654 a 0.038 0.038 0 0 0 0.032 -0.019 c 0.187 -0.276 -0.785 -3.527 -2.538 -8.483 c -0.824 -2.334 -1.495 -4.377 -1.495 -4.554 c 0 -0.018 0.006 -0.027 0.02 -0.027 a 7.43 7.43 0 0 1 1.336 1.609 a 22.13 22.13 0 0 0 16.564 8.844 c 0.626 0.035 1.189 0.052 1.723 0.052 a 14.81 14.81 0 0 0 7.506 -1.851 a 19.366 19.366 0 0 0 7.513 -7.212 a 15.657 15.657 0 0 1 6.1 -5.989 c 3.441 -2.106 5.12 -3.874 5.615 -5.913 c 0.564 -2.324 -0.344 -5.216 -3.133 -9.983 c -0.851 -1.454 -2.444 -3.888 -3.551 -5.425 a 27.071 27.071 0 0 1 -2.013 -3.032 a 0.016 0.016 0 0 1 0.019 -0.018 a 9.259 9.259 0 0 1 1.742 1.361 c 2.353 2.107 9.477 7.044 10.164 7.044 c 0.431 0 0.668 -0.607 1.207 -3.091 A 64.5 64.5 0 0 0 97.13 185.124 a 97.934 97.934 0 0 0 -0.794 -19.015 c -0.678 -4.466 -5.017 -22.306 -6.359 -26.148 C 89.749 139.305 89.63 138.994 89.548 138.994 Z m -37.3 -72.458 a 0.017 0.017 0 0 0 -0.013 0.007 a 1.917 1.917 0 0 0 0.091 0.68 c 0.483 2.315 0.212 8.869 -0.493 11.885 c -1.512 6.484 -2.79 13.338 -2.579 13.838 a 8.258 8.258 0 0 0 2.308 0.577 a 26.724 26.724 0 0 1 9.183 2.956 a 16.328 16.328 0 0 1 5.792 5.72 c 1.713 2.731 2.6 5.495 3.81 11.829 c 0.11 0.581 0.41 0.727 1.891 0.917 l 1.761 0.229 l -1.454 0.437 l -1.453 0.439 v 2.764 a 69.52 69.52 0 0 0 1.4 12.634 a 37.018 37.018 0 0 0 1.531 4.065 a 11.073 11.073 0 0 1 1.044 3.554 c 0 1.653 -1.1 3.915 -3.358 6.915 c -2.833 3.761 -3.623 5.595 -4.454 10.327 a 35.923 35.923 0 0 1 -1.362 5.571 c -0.82 1.925 -3.278 4.545 -7.307 7.786 c -2.39 1.923 -3.106 2.667 -2.946 3.058 l 0.059 0.145 c 1.436 3.514 1.436 3.514 1.416 7.341 v 0.162 a 23.194 23.194 0 0 1 -0.653 6.338 A 26 26 0 0 1 53.471 194.324 a 4.9 4.9 0 0 0 -0.815 1.569 a 0.023 0.023 0 0 0 0.022 0.013 a 63.8 63.8 0 0 0 7.362 -4.687 a 78.874 78.874 0 0 0 10.241 -10.162 c 5.149 -6.522 9.627 -15.385 12.95 -25.63 c 0.751 -2.318 2.183 -7.792 3.194 -12.2 c 2.288 -9.985 2.968 -12.317 4.849 -16.634 c 3.7 -8.485 3.977 -13.231 1.153 -19.532 a 30.451 30.451 0 0 0 -6.627 -8.728 a 60.718 60.718 0 0 1 -5.069 -5.74 c -4.269 -5.416 -6.978 -7.96 -11.148 -10.469 c -11.215 -6.748 -13.379 -8.619 -16.543 -14.3 C 52.538 66.915 52.316 66.536 52.245 66.536 Z M 26.577 174.831 a 69.6 69.6 0 0 0 -7.182 1.608 c -0.254 0.074 -0.383 0.794 -0.383 2.141 c 0 2.033 0 2.033 0.961 2.231 a 3.472 3.472 0 0 0 0.695 0.066 a 5.65 5.65 0 0 0 3.466 -1.269 a 13.59 13.59 0 0 0 2.528 -4.637 a 0.178 0.178 0 0 0 -0.03 -0.13 C 26.63 174.834 26.609 174.831 26.577 174.831 Z M 7.072 148.605 s -0.006 0 -0.006 0.007 c 0 0.139 0.529 1.694 1.179 3.467 a 26.95 26.95 0 0 0 6.6 10.733 c 5.324 5.508 12.451 9.448 21.181 11.71 a 18.682 18.682 0 0 0 4.739 0.688 c 3.248 0 6.372 -1.072 11.939 -4.1 c 10.584 -5.75 12.629 -8.1 12.154 -13.958 a 12.115 12.115 0 0 0 -0.327 -2.366 a 0.179 0.179 0 0 0 -0.136 -0.064 c -0.335 0 -1.114 0.863 -4.034 4.295 c -1.866 2.194 -4.1 4.614 -4.982 5.395 c -3.186 2.83 -10.59 5.765 -15.236 6.039 c -0.423 0.025 -0.834 0.038 -1.221 0.038 c -2.987 0 -5.6 -0.725 -9.309 -2.584 c -5.645 -2.826 -10.744 -7.007 -18.187 -14.912 A 60 60 0 0 0 7.072 148.605 Z m 18.832 10.813 a 37.253 37.253 0 0 0 16.352 4.161 a 21.4 21.4 0 0 0 5.424 -0.642 c 5.681 -1.5 9.945 -4.581 16.895 -12.219 c 4.342 -4.773 5.767 -6.742 6.353 -8.778 c 0.639 -2.231 0.579 -3.623 -0.282 -6.478 c -1.566 -5.188 -1.714 -6.108 -2.639 -16.418 c -0.437 -4.874 -1.624 -11.075 -2.593 -13.541 c -2.692 -6.859 -10.414 -10.79 -21.744 -11.068 c -0.235 -0.006 -0.428 -0.009 -0.608 -0.009 a 6.764 6.764 0 0 0 -3.833 1.15 a 43.309 43.309 0 0 0 -7.784 5.212 l -0.581 0.665 l 5.943 0.032 l 5.945 0.034 l -3.675 0.6 a 39.4 39.4 0 0 0 -10.262 2.738 l -1.685 0.832 l 3.37 0.246 c 7.008 0.505 14.717 2.464 17.931 4.556 a 20.807 20.807 0 0 1 6.951 7.618 a 21.373 21.373 0 0 1 2.527 10.1 a 24.951 24.951 0 0 1 -1.893 9.45 a 30.765 30.765 0 0 1 -5.552 8.726 c -2.005 2.256 -2.044 2.331 -2.044 4.057 c 0 2 -0.463 3.1 -2.066 4.939 c -2.229 2.554 -6.3 3.96 -11.465 3.96 a 36.944 36.944 0 0 1 -12.966 -2.561 a 1.491 1.491 0 0 0 -0.4 -0.115 c -0.028 0 -0.045 0.007 -0.048 0.021 a 20.23 20.23 0 0 0 4.431 2.734 v 0 Z m -10.794 -7.858 c -0.013 0 -0.021 0 -0.022 0.008 c -0.011 0.033 0.134 0.152 0.464 0.408 a 27.183 27.183 0 0 0 3.724 1.787 a 40.987 40.987 0 0 0 10.515 2.9 a 20.1 20.1 0 0 0 2.7 0.17 c 5.812 0 12.365 -1.926 13.229 -3.888 c 0.2 -0.455 0.252 -0.748 0.16 -0.9 a 0.3 0.3 0 0 0 -0.279 -0.12 a 3.108 3.108 0 0 0 -1.089 0.335 c -3.7 1.651 -5.374 1.941 -11.175 1.941 h -0.7 c -5.842 -0.025 -6.372 -0.079 -11.334 -1.165 c -2.869 -0.629 -5.48 -1.241 -5.82 -1.363 A 1.918 1.918 0 0 0 15.111 151.56 Z m 9.118 -19 a 1.738 1.738 0 0 0 -0.835 0.433 c -1.562 1.131 -2.839 4.563 -2.847 7.652 a 10.632 10.632 0 0 0 3.452 8.178 a 13.347 13.347 0 0 0 9.1 3.125 a 18.582 18.582 0 0 0 9.045 -2.143 a 23.521 23.521 0 0 0 10.725 -10.791 c 3.394 -7.2 3.439 -14.981 0.125 -21.339 c -1.747 -3.35 -2.777 -4.571 -4.795 -5.68 a 15.6 15.6 0 0 0 -7.464 -1.687 a 29.555 29.555 0 0 0 -19.542 8.092 c -2 1.947 -3.125 3.585 -5.009 7.3 c -0.825 1.629 -1.45 2.9 -1.454 2.948 c 0.059 0 1.6 -1.3 3.59 -3.034 c 4.433 -3.854 7.581 -6.088 10.526 -7.47 c 3.35 -1.574 5.32 -2.187 7.025 -2.187 c 2.518 0 4.432 1.474 6.888 4.021 a 18.859 18.859 0 0 1 3.714 5.087 c 2.033 4.112 2.392 5.558 2.4 9.668 c 0 3.448 -0.049 3.744 -0.87 5.278 a 15.135 15.135 0 0 1 -6.121 5.959 a 18.08 18.08 0 0 1 -8.6 2.278 a 15.156 15.156 0 0 1 -2.47 -0.2 c -3.668 -0.61 -5.714 -1.886 -6.084 -3.795 a 21.772 21.772 0 0 1 0.418 -4.413 c 0.6 -3.551 0.555 -4.878 -0.211 -6.454 C 24.656 132.813 24.488 132.557 24.23 132.557 Z m 5.085 -2.89 a 2.135 2.135 0 0 0 -1.754 0.928 c -0.948 1.276 -1.129 3.651 -0.474 6.2 a 11.113 11.113 0 0 0 4.432 6.848 a 5.081 5.081 0 0 0 2.817 0.89 a 6.34 6.34 0 0 0 4.695 -2.493 c 2.178 -2.5 2.478 -4.176 1.4 -7.8 a 13.632 13.632 0 0 0 -6.454 -8.273 a 6.879 6.879 0 0 0 -4.136 -0.891 c -2.249 0 -2.591 0.081 -3.328 0.784 c -0.875 0.843 -1.367 1.849 -1.168 2.392 c 0.055 0.148 0.508 0.234 1.243 0.234 c 0.249 0 0.529 -0.01 0.831 -0.03 c 0.406 -0.027 0.7 -0.039 0.939 -0.039 a 5.107 5.107 0 0 1 2.862 0.929 a 8.186 8.186 0 0 1 4.046 5.036 c 0.924 2.516 0.678 5.17 -0.613 6.6 a 1.3 1.3 0 0 1 -0.965 0.511 c -0.5 0 -1.05 -0.372 -1.671 -1.137 a 8.389 8.389 0 0 1 -1.819 -8.05 c 0.323 -1.234 0.449 -1.971 0.186 -2.328 c -0.159 -0.218 -0.464 -0.309 -1.05 -0.313 h -0.017 Z M 35.23 120.224 a 3.789 3.789 0 0 0 -0.719 0.063 l -1.025 0.2 l 1.77 1.873 a 31.149 31.149 0 0 1 3.343 4.509 a 20.552 20.552 0 0 1 1.9 3.985 c 0.227 0.926 0.405 1.286 0.634 1.286 c 0.183 0 0.412 -0.239 0.767 -0.8 c 0.406 -0.642 0.537 -1.461 0.52 -3.248 c -0.027 -2.967 -0.889 -5.046 -2.636 -6.358 A 8.46 8.46 0 0 0 35.23 120.224 Z M 18.837 98.149 a 1.392 1.392 0 0 0 -0.513 0.136 c -0.387 0.169 -2.964 0.875 -5.744 1.575 c -4.918 1.236 -9.107 2.454 -9.147 2.659 a 0.013 0.013 0 0 0 0.005 0.015 a 0.707 0.707 0 0 0 0.186 0.011 c 0.465 0 1.8 -0.066 3.442 -0.192 A 31.149 31.149 0 0 0 12.73 101.424 c 2.289 -0.711 6.279 -2.729 6.279 -3.176 C 19.012 98.186 18.95 98.149 18.837 98.149 Z M 53.99 211.395 a 0.391 0.391 0 0 1 -0.28 -0.089 a 0.068 0.068 0 0 1 -0.025 -0.074 c 0.023 -0.058 0.159 -0.094 0.353 -0.094 l 0.074 0 c 0.118 0.007 0.318 0.027 0.328 0.084 c 0.005 0.031 -0.044 0.068 -0.143 0.109 A 0.835 0.835 0 0 1 53.99 211.395 Z m -1.4 -85.462 c -0.119 0 -0.374 -0.557 -0.8 -1.753 c -1.365 -3.8 -3.132 -6.5 -5.25 -8.017 c -0.757 -0.542 -1.212 -1 -1.159 -1.179 c 0.013 -0.044 0.061 -0.067 0.141 -0.067 a 1.7 1.7 0 0 1 0.542 0.143 a 13.919 13.919 0 0 0 2.433 0.5 c 2.531 0.328 2.881 0.935 3.741 6.494 c 0.39 2.52 0.509 3.711 0.385 3.861 A 0.038 0.038 0 0 1 52.593 125.934 Z');
}
/* gives rose an inwards gliding animation on hover */
.pp-cc-wrapper:hover .pp-cc-gradient-2::before {
left: 0px;
opacity: 0;
transition: all 0.3s ease;
}
/* gives pawn an animation too */
.pp-cc-wrapper:hover .pp-cc-gradient-2::after {
right: 0px;
opacity: 0;
transition: all 0.3s ease;
}
/* positions the link component */
.profile-character-card-stack-link-component-box {
position: relative;
z-index: 1;
justify-content: center;
text-align: center;
width: 100%;
}
/* positions the third ugly gradient */
.pp-cc-gradient-3 {
background: none;
width: 0;
height: 0;
}
/* adds a black shadow behind the card on hover so it's more readable */
.pp-cc-wrapper:hover .pp-cc-gradient-3 {
pointer-events: none;
position: absolute;
overflow: visible;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 450px;
height: 500px;
background: rgba(12, 18, 29, 0.7);
z-index: -1;
border-radius: 300px;
box-shadow: 0 0 100px 100px rgba(12, 18, 29, 0.7);
outline: 0;
border: 0;
transition: width 0.3s, height 0.3s;
}
/* styles your bot name */
.profile-character-card-name-box {
font-family: cinzel;
font-size: 20px;
color: #D5DEEF;
position: absolute;
left: 50%;
transform: translateX(-50%);
transition: margin-top 0.3s ease;
max-width: 200%;
}
/* styles the first ugly gradient box */
.pp-cc-gradient-1 {
margin-top: 20px;
width: 100%;
height: 100% !important;
background: none !important;
}
/* this is the bottom vine decoration */
.pp-cc-gradient-1::before {
content: '';
position: absolute;
width: 350px;
height: 80px;
top: 0px;
background: #B1C9EF;
transition: all 0.3s ease;
opacity: 0;
clip-path: path('M 277.97 74.773 a 26.953 26.953 0 0 1 -6.308 -12.744 a 1.531 1.531 0 0 1 -0.012 -0.455 c -5.309 -2.073 -10.518 -4.453 -15.692 -6.943 a 20.09 20.09 0 0 1 2.36 5.511 a 1.321 1.321 0 0 1 -1.5 1.7 a 44.906 44.906 0 0 1 -10.829 -4.668 a 19.716 19.716 0 0 1 0.42 7.527 c -0.178 1.331 -1.678 1.14 -2.227 0.329 c -3 -4.423 -8.009 -6.12 -10.866 -10.755 a 19.54 19.54 0 0 1 -2.683 -11.925 c -2.7 -1.221 -5.411 -2.409 -8.156 -3.5 c -12.739 -5.068 -31.6 -9.406 -44.647 -3.241 a 28.832 28.832 0 0 1 10.5 22.069 c 0.013 1.125 -1.618 1.419 -1.761 0.271 c -1.293 -10.41 -5.618 -16.949 -11.566 -20.778 c -5.952 3.828 -10.285 10.37 -11.579 20.784 c -0.141 1.148 -1.773 0.852 -1.761 -0.272 a 28.822 28.822 0 0 1 10.51 -22.079 c -13.047 -6.165 -31.913 -1.828 -44.652 3.239 c -2.743 1.092 -5.456 2.281 -8.156 3.5 a 19.531 19.531 0 0 1 -2.682 11.925 c -2.859 4.636 -7.871 6.33 -10.867 10.756 c -0.549 0.812 -2.051 1 -2.227 -0.329 a 19.718 19.718 0 0 1 0.42 -7.529 a 44.875 44.875 0 0 1 -10.828 4.669 a 1.322 1.322 0 0 1 -1.5 -1.7 a 20.02 20.02 0 0 1 2.362 -5.511 c -5.174 2.49 -10.384 4.868 -15.693 6.944 a 1.534 1.534 0 0 1 -0.012 0.455 a 26.956 26.956 0 0 1 -6.308 12.742 c -1.544 1.7 -6.143 6.7 -8.524 4.807 c -1.338 -1.06 -1.066 -3.374 -0.361 -5.6 A 23.266 23.266 0 0 1 51 78.359 c -0.982 0.079 -1.391 -1.193 -1.035 -2.046 a 21.693 21.693 0 0 1 5.985 -8.342 a 75.562 75.562 0 0 1 -17.085 1.174 a 1.161 1.161 0 0 1 -0.171 0.261 a 30.407 30.407 0 0 1 -30.97 7.561 a 1.6 1.6 0 0 1 -0.581 -2.5 a 28.357 28.357 0 0 1 15.22 -9.192 a 35.082 35.082 0 0 1 -4.96 -2.769 c -4.951 -3.366 -6.909 -7.447 -7.1 -11.825 c -8.14 -2.528 -11.843 -14.317 -9.716 -22.853 a 1.178 1.178 0 0 1 1.772 -0.818 a 26.058 26.058 0 0 1 5.57 6.056 a 16.878 16.878 0 0 1 2.72 -8.9 a 1.015 1.015 0 0 1 1.687 -0.247 a 19.9 19.9 0 0 1 3.891 8.482 c 1.659 -3.064 3.4 -6.007 4.812 -8.69 c -7.253 -3.246 -10.438 -13.938 -8.133 -21.971 c 0.165 -0.572 0.736 -1.049 1.284 -0.825 a 14.244 14.244 0 0 1 7.192 6.2 c 2.062 -3.392 5.156 -6.093 8.37 -7.07 a 1.172 1.172 0 0 1 1.422 1.23 c -0.49 4.915 2.049 9.255 0.244 14.1 c -1.408 3.782 -4.473 6.744 -7.38 9.016 a 0.8 0.8 0 0 1 -0.486 0.167 c -2.119 4.323 -4.833 8.234 -7.049 12.475 c -0.024 0.349 -0.029 0.7 -0.072 1.047 a 0.9 0.9 0 0 1 -0.9 0.864 c -0.057 0.119 -0.125 0.229 -0.179 0.351 c -3.739 8.236 -2.2 14.754 2.5 19.139 a 28.253 28.253 0 0 1 -0.739 -8.005 a 1.143 1.143 0 0 1 1.687 -1.1 a 19.478 19.478 0 0 1 6.516 5.353 a 55.983 55.983 0 0 1 -0.736 -10.1 a 1.308 1.308 0 0 1 1.942 -1.262 c 6.4 4.421 13.057 13.277 10.315 22.18 a 72.4 72.4 0 0 0 23.27 -1.552 c 1.54 -0.335 3.07 -0.715 4.59 -1.126 c -6.059 -0.9 -11.636 -5.023 -15.231 -10.831 a 1.516 1.516 0 0 1 1.13 -2.237 c 9.608 -1.347 18.918 1.879 26.216 9.022 c 5.739 -2.244 11.369 -4.858 16.956 -7.6 c -9.883 1.365 -20.863 -2.734 -24.015 -14.211 c -7.874 2.55 -12.7 -7.8 -14.59 -14.724 a 1.151 1.151 0 0 1 0.981 -1.462 c 3.655 -0.5 7.536 1.216 10.309 4.155 a 19.383 19.383 0 0 1 8.307 -10.039 a 1.147 1.147 0 0 1 1.722 0.793 a 25.682 25.682 0 0 1 -4.4 20.447 c 2.291 6.954 6.837 10.149 12.156 11.506 a 13.273 13.273 0 0 1 -3.082 -6.809 c -0.14 -0.933 0.47 -1.7 1.321 -1.5 a 29.221 29.221 0 0 1 7.342 2.634 a 42.933 42.933 0 0 1 -3.4 -10.419 a 1.351 1.351 0 0 1 1.534 -1.74 c 6.883 1.714 14.118 8.076 15.469 16.326 a 1.791 1.791 0 0 1 0 0.213 c 3.749 -1.893 7.5 -3.778 11.266 -5.578 c 15.506 -7.41 33.71 -15.626 50.825 -11.4 a 30.823 30.823 0 0 1 9.5 4.159 a 30.782 30.782 0 0 1 9.5 -4.152 c 17.116 -4.224 35.32 3.992 50.826 11.4 c 3.767 1.8 7.516 3.687 11.264 5.58 a 1.419 1.419 0 0 1 0 -0.214 c 1.351 -8.248 8.586 -14.612 15.469 -16.326 a 1.353 1.353 0 0 1 1.535 1.742 a 42.945 42.945 0 0 1 -3.406 10.418 a 29.373 29.373 0 0 1 7.342 -2.633 c 0.851 -0.2 1.461 0.565 1.321 1.5 a 13.279 13.279 0 0 1 -3.082 6.808 c 5.321 -1.357 9.865 -4.552 12.156 -11.506 a 25.682 25.682 0 0 1 -4.4 -20.445 a 1.148 1.148 0 0 1 1.722 -0.793 a 19.369 19.369 0 0 1 8.307 10.037 c 2.773 -2.937 6.653 -4.654 10.309 -4.155 a 1.151 1.151 0 0 1 0.981 1.462 c -1.885 6.928 -6.716 17.273 -14.589 14.725 c -3.151 11.477 -14.133 15.576 -24.015 14.211 c 5.586 2.743 11.216 5.358 16.955 7.6 c 7.3 -7.145 16.611 -10.372 26.216 -9.022 a 1.517 1.517 0 0 1 1.131 2.236 c -3.6 5.81 -9.173 9.929 -15.232 10.832 c 1.518 0.411 3.047 0.792 4.59 1.127 a 72.437 72.437 0 0 0 23.27 1.552 c -2.742 -8.9 3.912 -17.759 10.316 -22.181 a 1.307 1.307 0 0 1 1.941 1.263 a 56.333 56.333 0 0 1 -0.736 10.1 a 19.492 19.492 0 0 1 6.516 -5.353 a 1.144 1.144 0 0 1 1.688 1.1 a 28.3 28.3 0 0 1 -0.74 8 c 4.7 -4.385 6.236 -10.905 2.5 -19.138 c -0.055 -0.12 -0.124 -0.232 -0.18 -0.352 a 0.9 0.9 0 0 1 -0.9 -0.863 c -0.041 -0.351 -0.048 -0.7 -0.07 -1.047 c -2.216 -4.239 -4.931 -8.152 -7.049 -12.476 a 0.786 0.786 0 0 1 -0.486 -0.167 c -2.907 -2.271 -5.972 -5.234 -7.381 -9.016 c -1.8 -4.849 0.734 -9.188 0.245 -14.1 a 1.169 1.169 0 0 1 1.422 -1.228 c 3.213 0.974 6.308 3.677 8.37 7.069 a 14.252 14.252 0 0 1 7.192 -6.2 c 0.547 -0.221 1.12 0.258 1.282 0.827 c 2.307 8.033 -0.878 18.725 -8.132 21.971 c 1.415 2.682 3.151 5.626 4.812 8.689 a 19.865 19.865 0 0 1 3.891 -8.481 a 1.015 1.015 0 0 1 1.687 0.246 a 16.891 16.891 0 0 1 2.72 8.9 a 26.059 26.059 0 0 1 5.57 -6.057 a 1.179 1.179 0 0 1 1.772 0.819 c 2.127 8.534 -1.577 20.324 -9.716 22.853 c -0.192 4.378 -2.151 8.459 -7.1 11.823 a 34.593 34.593 0 0 1 -4.961 2.77 a 28.37 28.37 0 0 1 15.221 9.193 a 1.6 1.6 0 0 1 -0.582 2.5 a 30.407 30.407 0 0 1 -30.968 -7.561 a 1.147 1.147 0 0 1 -0.171 -0.261 a 75.868 75.868 0 0 1 -17.085 -1.174 a 21.7 21.7 0 0 1 5.987 8.342 c 0.357 0.853 -0.054 2.125 -1.035 2.044 a 23.253 23.253 0 0 1 -12.143 -4.386 c 0.7 2.229 0.975 4.541 -0.361 5.6 a 1.946 1.946 0 0 1 -1.248 0.421 C 282.76 80 279.275 76.21 277.97 74.773 Z M 73.911 63.227 a 19.72 19.72 0 0 0 -6.1 6.128 c -0.622 1.013 -3.666 6.965 -2.237 7.451 c 0.7 0.239 3.357 -2.466 3.8 -2.9 a 22.638 22.638 0 0 0 3.145 -3.787 a 25.764 25.764 0 0 0 3.288 -7.572 C 75.179 62.781 74.545 63 73.911 63.227 Z m 203.563 6.888 a 22.541 22.541 0 0 0 3.145 3.789 c 0.448 0.434 3.1 3.139 3.8 2.9 c 1.429 -0.487 -1.613 -6.438 -2.237 -7.452 a 19.724 19.724 0 0 0 -6.1 -6.128 c -0.635 -0.224 -1.27 -0.448 -1.9 -0.68 A 25.646 25.646 0 0 0 277.474 70.115 Z m 37.447 -1.317 c 7.31 5.582 15.559 7.864 24.261 5.914 a 26.2 26.2 0 0 0 -16.823 -7.458 A 46.589 46.589 0 0 1 314.921 68.8 Z m -304.106 5.911 c 8.7 1.953 16.953 -0.329 24.262 -5.914 a 46.152 46.152 0 0 1 -7.44 -1.544 A 26.218 26.218 0 0 0 10.815 74.709 Z m 275.295 -4.561 c 3.554 2.462 6.855 4.418 10.841 5.2 a 24.539 24.539 0 0 0 -7.067 -8.186 c -2.763 -0.6 -5.454 -1.292 -8.005 -2.049 a 20.683 20.683 0 0 1 2.939 4.151 c 0.117 0.215 0.26 0.489 0.408 0.79 a 0.942 0.942 0 0 1 0.363 -0.076 A 0.9 0.9 0 0 1 286.11 70.148 Z m -226 -2.989 a 24.568 24.568 0 0 0 -7.067 8.186 c 3.986 -0.778 7.287 -2.735 10.841 -5.2 a 0.887 0.887 0 0 1 0.884 -0.1 c 0.153 -0.3 0.294 -0.575 0.408 -0.79 a 20.683 20.683 0 0 1 2.939 -4.151 C 65.564 65.866 62.874 66.557 60.111 67.159 Z m 255.5 -2.5 c 6.234 -3.005 7.186 -10.449 7.246 -17.342 C 318.1 51.312 313.531 57.926 315.608 64.661 Z m -281.218 0 c 2.077 -6.736 -2.493 -13.349 -7.246 -17.342 C 27.2 54.212 28.153 61.656 34.39 64.661 Z m -12.134 -3.18 c 0.681 0.349 1.382 0.681 2.121 0.977 c 0.952 0.378 1.914 0.708 2.881 1.016 c -1.689 -4.727 -4.124 -8.492 -7.969 -11 C 19.247 56.071 19.723 59.321 22.256 61.481 Z m 300.483 1.99 c 0.968 -0.306 1.93 -0.637 2.88 -1.015 c 0.741 -0.293 1.441 -0.625 2.121 -0.976 c 2.533 -2.159 3.009 -5.412 2.968 -9.007 C 326.863 54.978 324.426 58.743 322.738 63.471 Z m -84.83 -7.619 c 2.044 1.907 4.311 3.314 6.26 5.234 a 16.845 16.845 0 0 0 -1.447 -6.1 c -0.438 -0.325 -0.9 -0.611 -1.328 -0.957 a 1.6 1.6 0 0 1 -0.3 -2.064 a 52.369 52.369 0 0 0 -6.48 -7.786 c -0.537 -0.255 -1.08 -0.491 -1.618 -0.742 A 16.186 16.186 0 0 0 237.908 55.853 Z M 115.386 44.175 a 52.506 52.506 0 0 0 -6.48 7.786 a 1.6 1.6 0 0 1 -0.3 2.064 c -0.426 0.345 -0.889 0.629 -1.328 0.957 a 16.839 16.839 0 0 0 -1.447 6.1 c 1.949 -1.92 4.216 -3.329 6.26 -5.234 A 16.186 16.186 0 0 0 117 43.432 C 116.466 43.684 115.924 43.922 115.386 44.175 Z m 160.71 15.689 q 0.994 0.36 1.995 0.706 c 7.291 0.538 14.053 -1.839 18.761 -8.065 q -0.827 -0.047 -1.645 -0.046 A 28.714 28.714 0 0 0 276.1 59.864 Z M 53.147 52.5 c 4.705 6.226 11.47 8.6 18.76 8.063 c 0.667 -0.229 1.332 -0.461 1.995 -0.7 A 28.7 28.7 0 0 0 54.8 52.458 Q 53.976 52.458 53.147 52.5 Z m 45.391 -0.078 a 16.553 16.553 0 0 0 -3.748 5.927 a 52.476 52.476 0 0 0 10.954 -5.694 a 28.8 28.8 0 0 1 4.045 -5.788 C 106.034 48.712 102.289 50.579 98.538 52.427 Z m 145.714 0.232 a 52.368 52.368 0 0 0 10.953 5.694 a 16.55 16.55 0 0 0 -3.746 -5.929 c -3.751 -1.848 -7.5 -3.717 -11.251 -5.555 A 29.037 29.037 0 0 1 244.252 52.659 Z M 87.4 48.23 a 48.643 48.643 0 0 0 8.768 0.188 a 13.215 13.215 0 0 1 -3.862 -2.875 c -0.032 -0.033 -0.057 -0.072 -0.087 -0.1 a 0.7 0.7 0 0 1 -0.794 0.109 c -2.64 -1.142 -5.12 -2.424 -7.795 -3.33 A 11.684 11.684 0 0 0 87.4 48.23 Z m 170.293 -2.688 a 13.15 13.15 0 0 1 -3.861 2.874 a 48.281 48.281 0 0 0 8.767 -0.187 a 11.67 11.67 0 0 0 3.768 -6.012 c -2.672 0.906 -5.153 2.187 -7.794 3.329 a 0.7 0.7 0 0 1 -0.793 -0.108 C 257.749 45.47 257.724 45.508 257.693 45.541 Z M 10.156 48.3 c -0.416 -7.014 -2.871 -13.232 -7.646 -17.693 C 1.417 38.036 4.927 44.066 10.156 48.3 Z m 329.687 0 c 5.227 -4.231 8.737 -10.261 7.644 -17.694 C 342.713 35.063 340.26 41.283 339.844 48.3 Z m -91.084 -1.131 a 1.111 1.111 0 0 1 -0.125 0.206 c 0.545 0.276 1.091 0.549 1.636 0.824 a 3.1 3.1 0 0 1 -0.516 -0.625 a 0.947 0.947 0 0 1 0 -0.89 l 0.237 -0.362 c 0.458 -0.695 1.446 -0.311 1.269 0.606 c 0.1 -0.521 3.548 -2.052 4.115 -2.591 a 14.327 14.327 0 0 0 2.9 -4.042 a 32.666 32.666 0 0 0 2.347 -7.062 C 254.749 35.533 251.3 40.625 248.76 47.165 Z M 100 46.319 c 0.078 0.121 0.158 0.24 0.237 0.362 a 0.947 0.947 0 0 1 0 0.89 a 3.02 3.02 0 0 1 -0.516 0.625 c 0.545 -0.276 1.091 -0.549 1.636 -0.824 a 1.111 1.111 0 0 1 -0.125 -0.206 c -2.542 -6.543 -5.989 -11.635 -11.86 -13.935 a 33.064 33.064 0 0 0 2.347 7.062 a 14.328 14.328 0 0 0 2.9 4.042 c 0.569 0.539 4.013 2.069 4.115 2.591 a 0.733 0.733 0 0 1 0.659 -0.963 A 0.732 0.732 0 0 1 100 46.319 Z m 235.707 -10.161 a 52.757 52.757 0 0 1 2.486 5.829 a 27 27 0 0 1 2.244 -6.149 a 18.558 18.558 0 0 0 -2.055 -9.034 A 18.2 18.2 0 0 0 335.709 36.158 Z m -326.15 -0.32 a 27.056 27.056 0 0 1 2.244 6.149 a 52.42 52.42 0 0 1 2.486 -5.829 a 18.179 18.179 0 0 0 -2.674 -9.354 A 18.554 18.554 0 0 0 9.559 35.838 Z m 274.847 -8.271 c 0.01 0.038 0.024 0.075 0.035 0.115 a 1.245 1.245 0 0 1 -1.038 1.621 a 17.148 17.148 0 0 0 -1.657 6.054 c 5.849 -0.71 8.648 -6.434 10.669 -12.361 A 9.759 9.759 0 0 0 284.406 27.567 Z m -216.154 7.791 A 17.224 17.224 0 0 0 66.6 29.3 a 1.245 1.245 0 0 1 -1.038 -1.621 c 0.011 -0.04 0.024 -0.076 0.035 -0.115 A 9.76 9.76 0 0 0 57.583 23 C 59.6 28.924 62.4 34.648 68.252 35.358 Z m 210.622 -0.976 a 1.1 1.1 0 0 1 0.839 -0.06 a 13.165 13.165 0 0 1 2.093 -7.155 a 17.42 17.42 0 0 0 -6.3 -9.026 A 25.209 25.209 0 0 0 278.874 34.382 Z m -207.751 0 a 25.209 25.209 0 0 0 3.365 -16.24 a 17.417 17.417 0 0 0 -6.3 9.027 a 13.17 13.17 0 0 1 2.093 7.153 a 1.145 1.145 0 0 1 0.347 -0.054 A 1.117 1.117 0 0 1 71.124 34.379 Z m -47.8 -12.334 c 2.535 -2.417 5.467 -4.874 6.415 -8.634 c 0.863 -3.425 -0.618 -6.878 -0.827 -10.366 a 12.158 12.158 0 0 0 -6.358 6.6 c 0.112 0.3 0.236 0.583 0.336 0.893 a 0.9 0.9 0 0 1 -1.03 1.23 c -0.774 3.43 0.054 6.51 0.676 10.093 a 1.132 1.132 0 0 1 0.141 -0.009 A 1.172 1.172 0 0 1 23.324 22.045 Z m 296.937 -8.635 c 0.946 3.759 3.878 6.216 6.414 8.634 a 1.172 1.172 0 0 1 0.789 -0.187 c 0.62 -3.581 1.447 -6.66 0.675 -10.094 a 0.9 0.9 0 0 1 -1.029 -1.228 c 0.1 -0.311 0.223 -0.6 0.334 -0.893 a 12.152 12.152 0 0 0 -6.358 -6.6 C 320.878 6.531 319.4 9.984 320.261 13.41 Z m 9.467 -4.22 a 13.184 13.184 0 0 1 0.117 11.4 a 18.933 18.933 0 0 0 5.492 -16.968 A 11.9 11.9 0 0 0 329.728 9.19 Z m -309.573 11.4 a 13.167 13.167 0 0 1 0.115 -11.4 a 11.89 11.89 0 0 0 -5.608 -5.57 A 18.92 18.92 0 0 0 20.155 20.588 Z')
}
/* this is the top vine decoration */
.pp-cc-gradient-1::after {
content: '';
position: absolute;
width: 350px;
height: 80px;
bottom: 0px;
background: #B1C9EF;
transition: all 0.3s ease;
opacity: 0;
clip-path: path('M 248.312 52.161 a 4.34 4.34 90 0 1 7.858 -1.707 c 0.836 1.22 -1.046 2.711 -2.007 1.6 q -2.3 -1.926 -2.479 0.791 q -1.223 1.433 0.2 2.457 a 3.722 3.722 90 0 0 3.568 1.77 c 3.488 -0.256 4.627 -3.753 3.845 -6.74 a 12.646 12.646 90 0 0 -4.946 -6.735 c -6.911 -0.677 -13.77 -1.69 -20.65 -2.8 a 33.474 33.474 90 0 1 4.276 4.779 c 1.5 2.032 5.78 7.4 3.773 10.186 c -2.109 2.93 -6.369 -1.706 -7.8 -3.2 a 27.238 27.238 90 0 1 -6.71 -12.51 a 1.385 1.385 90 0 1 -0.015 -0.315 l -3.06 -0.507 c -3.834 -0.636 -7.687 -1.145 -11.512 -1.432 a 12.135 12.135 90 0 1 3.422 6.761 c 0.63 4.643 -2.767 9.1 -7.49 8.809 c -3.885 -0.239 -7.386 -4.019 -6.645 -8.141 c 0.629 -3.506 5.028 -5.55 7.225 -2.238 a 1.279 1.279 90 0 1 -1.709 1.763 c -2.874 -1.844 -3.282 2.627 -1.476 4.412 a 4.4 4.4 90 0 0 6.98 -1.2 c 1.873 -3.874 -1.168 -7.9 -4.16 -10.37 c -11.7 -0.363 -22.929 1.861 -32.076 10.17 q 0.918 1.166 1.776 2.458 c 0.657 0.993 -0.846 2.166 -1.6 1.263 q -0.926 -1.086 -1.886 -2.069 q -0.968 0.991 -1.9 2.083 c -0.756 0.889 -2.26 -0.283 -1.6 -1.263 q 0.862 -1.3 1.787 -2.473 c -9.15 -8.32 -20.381 -10.545 -32.091 -10.183 c -2.992 2.473 -6.033 6.5 -4.16 10.37 a 4.4 4.4 90 0 0 6.98 1.2 c 1.806 -1.785 1.4 -6.254 -1.476 -4.412 a 1.279 1.279 90 0 1 -1.709 -1.764 c 2.2 -3.312 6.6 -1.268 7.225 2.238 c 0.739 4.122 -2.762 7.9 -6.645 8.141 c -4.723 0.291 -8.12 -4.166 -7.49 -8.809 a 12.134 12.134 90 0 1 3.422 -6.761 c -3.825 0.287 -7.679 0.8 -11.512 1.434 c -1.023 0.171 -2.04 0.336 -3.06 0.506 a 1.378 1.378 90 0 1 -0.015 0.315 a 27.226 27.226 90 0 1 -6.71 12.51 c -1.43 1.492 -5.689 6.129 -7.8 3.2 c -2.007 -2.786 2.269 -8.154 3.773 -10.185 a 33.424 33.424 90 0 1 4.276 -4.78 c -6.878 1.106 -13.738 2.122 -20.65 2.8 a 12.65 12.65 90 0 0 -4.946 6.735 c -0.782 2.988 0.357 6.486 3.845 6.74 a 3.722 3.722 90 0 0 3.568 -1.77 q 1.422 -1.023 0.194 -2.456 q -0.186 -2.716 -2.478 -0.791 c -0.962 1.112 -2.843 -0.379 -2.007 -1.6 a 4.34 4.34 90 0 1 7.858 1.707 c 0.917 4.364 -3.137 7.962 -7.134 7.837 c -4.638 -0.147 -7.729 -4.886 -6.762 -9.408 a 13.555 13.555 90 0 1 3.668 -6.621 c -3.511 0.27 -7.04 0.448 -10.6 0.488 c -2.332 0.027 -4.834 0.044 -7.451 0.019 a 1.091 1.091 90 0 1 -0.123 0.3 a 24.693 24.693 90 0 1 -19.736 10.759 a 1.437 1.437 90 0 1 -1.189 -2.141 a 23.486 23.486 90 0 1 9.035 -9.4 c -8.006 -0.6 -16.294 -1.885 -23.648 -4.593 c -4.234 0.1 -8.732 0.687 -11.249 4.575 c -1.491 2.3 -1.663 5.5 0.419 7.519 c 1.486 1.442 3.222 1.4 5.05 0.579 q 0.454 -0.249 0.9 -0.5 q 2.161 -0.9 0.857 -3.811 c -0.985 0.969 -2.36 -0.254 -1.806 -1.437 c 2.114 -4.518 7.517 0.019 5.7 4.2 c -1.792 4.127 -8.038 6.355 -11.682 3.694 c -3.97 -2.9 -4.116 -8.55 -1.226 -12.267 a 12.387 12.387 90 0 1 8.391 -4.527 a 36.814 36.814 90 0 1 -8.592 -5.735 c -6.579 4.6 -14.809 -1.475 -19.927 -6.053 a 1.106 1.106 90 0 1 0.463 -1.81 a 18.366 18.366 90 0 1 14.38 1.89 a 29.769 29.769 90 0 1 -3.294 -6.879 c -6.042 1.734 -12.973 -1.88 -15.992 -7.355 a 1.235 1.235 90 0 1 0.7 -1.78 a 13.715 13.715 90 0 1 8.789 1.025 a 15.729 15.729 90 0 1 1.1 -10.055 a 1.285 1.285 90 0 1 1.78 -0.481 a 17.353 17.353 90 0 1 6.541 17.546 a 1.114 1.114 90 0 1 -0.591 0.821 a 35.83 35.83 90 0 0 4.184 6.493 A 13.436 13.436 90 0 1 24.331 14 a 1.132 1.132 90 0 1 1.777 -0.237 a 18.575 18.575 90 0 1 5.348 18.936 a 41.569 41.569 90 0 0 6.971 3.41 a 8.75 8.75 90 0 1 -1.076 -5.831 c 0.872 -5.109 5.95 -8.663 10.849 -7.285 c 4.1 1.155 8.948 7 5.571 11.292 a 4.707 4.707 90 0 1 -8.38 -3.46 a 1.164 1.164 90 0 1 2.328 0 q 0.048 2.9 3.348 2.422 a 3.548 3.548 90 0 0 0.486 -4.421 A 6.721 6.721 90 0 0 49.1 26.3 a 5.911 5.911 90 0 0 -6.545 0.221 c -4.442 3.166 -3.042 8.573 0.669 11.125 a 96.374 96.374 90 0 0 17.2 2.835 c 1.747 0.153 3.5 0.252 5.245 0.358 a 15.71 15.71 90 0 1 -6.183 -14.161 c 0.088 -0.774 0.785 -1.67 1.664 -1.308 c 5.848 2.4 14.785 7.9 12.2 15.8 c 5.924 0.143 11.85 0.061 17.763 -0.3 c -5.124 -2.83 -6.13 -12.2 0.53 -14.789 c 3.125 -1.216 7.123 -0.052 7.946 3.6 c 0.666 2.947 -0.975 6.219 -4.019 6.535 c -1.373 0.141 -1.557 -2.042 -0.316 -2.4 a 2.946 2.946 90 0 0 1.572 -4.343 c -1.159 -1.808 -3.84 -1.378 -5.3 -0.3 a 5.8 5.8 90 0 0 -1.871 6.163 c 0.813 2.862 3.309 4.026 5.965 4.337 a 1.055 1.055 90 0 1 0.859 0.792 c 0.232 -0.02 0.463 -0.051 0.694 -0.072 l 0 0 a 0.866 0.866 90 0 1 0.363 -0.036 c 4.5 -0.416 8.987 -0.949 13.455 -1.665 c 1.216 -0.2 2.463 -0.406 3.726 -0.621 a 22.565 22.565 90 0 1 -13.538 -13.231 a 1.359 1.359 90 0 1 1.273 -1.722 a 23.127 23.127 90 0 1 18.99 12.329 a 1.282 1.282 90 0 1 -0.146 1.5 a 173.92 173.92 90 0 1 17.981 -2.291 c -3.856 -3.46 -4.694 -10.624 0.262 -14.145 a 6.751 6.751 90 0 1 9.573 1.781 a 5.98 5.98 90 0 1 -2.681 8.515 c -1.32 0.569 -2.046 -1.58 -0.937 -2.291 a 3.388 3.388 90 0 0 -1.154 -6.306 c -2.458 -0.467 -4.655 1.506 -5.372 3.82 c -1.084 3.5 1.038 6.733 3.9 8.468 c 12.1 -0.273 23.709 2.114 32.134 11.269 c 8.424 -9.144 20.026 -11.528 32.121 -11.255 c 2.86 -1.735 4.981 -4.969 3.9 -8.469 c -0.717 -2.313 -2.914 -4.285 -5.372 -3.818 a 3.388 3.388 90 0 0 -1.154 6.306 c 1.11 0.712 0.384 2.861 -0.937 2.29 a 5.978 5.978 90 0 1 -2.681 -8.513 a 6.748 6.748 90 0 1 9.573 -1.781 c 4.957 3.521 4.118 10.685 0.262 14.145 a 173.853 173.853 90 0 1 17.981 2.29 a 1.282 1.282 90 0 1 -0.146 -1.5 a 23.126 23.126 90 0 1 18.99 -12.328 a 1.359 1.359 90 0 1 1.273 1.722 a 22.565 22.565 90 0 1 -13.538 13.23 c 1.262 0.215 2.51 0.425 3.726 0.621 c 4.468 0.717 8.956 1.25 13.455 1.666 a 0.83 0.83 90 0 1 0.364 0.036 l 0.006 0 c 0.232 0.02 0.461 0.052 0.694 0.072 a 1.053 1.053 90 0 1 0.858 -0.792 c 2.656 -0.313 5.151 -1.478 5.965 -4.337 a 5.8 5.8 90 0 0 -1.871 -6.163 c -1.457 -1.075 -4.138 -1.505 -5.3 0.3 a 2.945 2.945 90 0 0 1.572 4.343 c 1.238 0.358 1.054 2.543 -0.316 2.4 c -3.043 -0.315 -4.685 -3.587 -4.02 -6.535 c 0.821 -3.656 4.82 -4.82 7.946 -3.6 c 6.661 2.591 5.654 11.958 0.53 14.789 c 5.912 0.362 11.839 0.444 17.762 0.3 c -2.588 -7.9 6.348 -13.392 12.2 -15.8 c 0.88 -0.362 1.577 0.534 1.664 1.307 a 15.71 15.71 90 0 1 -6.183 14.162 c 1.75 -0.107 3.5 -0.205 5.245 -0.358 a 96.577 96.577 90 0 0 17.2 -2.835 c 3.711 -2.553 5.111 -7.959 0.671 -11.125 a 5.905 5.905 90 0 0 -6.543 -0.221 a 6.741 6.741 90 0 0 -2.45 2.521 a 3.545 3.545 90 0 0 0.486 4.42 q 3.3 0.478 3.348 -2.421 a 1.164 1.164 90 0 1 2.328 0 a 4.707 4.707 90 0 1 -8.38 3.46 c -3.379 -4.289 1.47 -10.139 5.571 -11.292 c 4.9 -1.378 9.977 2.176 10.849 7.285 a 8.742 8.742 90 0 1 -1.076 5.831 a 41.744 41.744 90 0 0 6.97 -3.41 a 18.575 18.575 90 0 1 5.348 -18.936 a 1.131 1.131 90 0 1 1.777 0.237 a 13.44 13.44 90 0 1 1.675 11.053 a 35.927 35.927 90 0 0 4.184 -6.493 a 1.114 1.114 90 0 1 -0.591 -0.821 a 17.355 17.355 90 0 1 6.541 -17.547 a 1.286 1.286 90 0 1 1.78 0.482 a 15.712 15.712 90 0 1 1.1 10.055 a 13.715 13.715 90 0 1 8.789 -1.025 a 1.233 1.233 90 0 1 0.7 1.779 c -3.02 5.474 -9.949 9.09 -15.992 7.356 a 29.8 29.8 90 0 1 -3.294 6.879 a 18.368 18.368 90 0 1 14.38 -1.89 a 1.105 1.105 90 0 1 0.463 1.81 c -5.115 4.577 -13.348 10.654 -19.926 6.053 a 36.843 36.843 90 0 1 -8.592 5.735 a 12.383 12.383 90 0 1 8.391 4.525 c 2.89 3.716 2.744 9.37 -1.226 12.269 c -3.643 2.662 -9.888 0.433 -11.682 -3.7 c -1.815 -4.179 3.586 -8.716 5.7 -4.2 c 0.554 1.183 -0.823 2.406 -1.806 1.437 q -1.306 2.911 0.857 3.811 c 0.3 0.166 0.6 0.333 0.9 0.5 c 1.827 0.816 3.564 0.865 5.05 -0.579 c 2.082 -2.019 1.91 -5.218 0.419 -7.519 c -2.517 -3.888 -7.015 -4.479 -11.249 -4.575 c -7.355 2.708 -15.643 4 -23.648 4.591 a 23.471 23.471 90 0 1 9.033 9.4 a 1.437 1.437 90 0 1 -1.189 2.141 a 24.7 24.7 90 0 1 -19.737 -10.759 a 1.173 1.173 90 0 1 -0.121 -0.3 c -2.616 0.023 -5.119 0.008 -7.452 -0.019 c -3.558 -0.04 -7.086 -0.219 -10.6 -0.489 a 13.567 13.567 90 0 1 3.67 6.621 c 0.966 4.522 -2.124 9.262 -6.763 9.407 c -0.068 0 -0.136 0 -0.2 0 C 251.315 60 247.409 56.45 248.312 52.161 Z m -14.877 -4.533 a 23.027 23.027 90 0 0 3.158 3.7 a 10.836 10.836 90 0 0 2.114 1.78 c 1.506 0.781 0.655 0.073 0.065 -1.169 a 34.549 34.549 90 0 0 -8.414 -10.753 A 24.259 24.259 90 0 0 233.435 47.628 Z m -122.21 4.311 c -0.591 1.242 -1.441 1.951 0.065 1.168 a 10.671 10.671 90 0 0 2.115 -1.78 a 22.927 22.927 90 0 0 3.157 -3.7 a 24.275 24.275 90 0 0 3.079 -6.44 A 34.559 34.559 90 0 0 111.225 51.939 Z m 168.607 -7.518 a 23.011 23.011 90 0 0 13.993 8.03 a 20.572 20.572 90 0 0 -11.085 -8.12 Q 281.271 44.386 279.832 44.421 Z m -223.661 8.03 a 23 23 90 0 0 13.993 -8.03 c -0.958 -0.023 -1.927 -0.051 -2.908 -0.09 A 20.565 20.565 90 0 0 56.171 52.451 Z m 14.449 -11.359 l 0.186 0 c 1.09 -6.534 -3.663 -10.076 -8.764 -12.409 A 13.86 13.86 90 0 0 70.62 41.093 Z m 208.569 0 l 0.188 -0.006 a 13.857 13.857 90 0 0 8.577 -12.4 C 282.854 31.021 278.1 34.564 279.188 41.1 Z m -48.4 -4.3 a 1.235 1.235 90 0 1 -0.275 0.332 a 21.5 21.5 90 0 0 14.8 -11 A 20.518 20.518 90 0 0 230.791 36.8 Z m -111.311 0.332 a 1.337 1.337 90 0 1 -0.276 -0.332 a 20.511 20.511 90 0 0 -14.52 -10.672 A 21.5 21.5 90 0 0 119.48 37.129 Z m 201.228 -5.829 c 0.3 -0.214 0.584 -0.45 0.877 -0.673 a 0.648 0.648 90 0 1 0.128 -0.181 c 3.869 -3.686 5.2 -9.194 2.772 -13.947 C 320.719 20.623 319.661 25.849 320.708 31.3 Z m -292.421 -0.854 a 0.674 0.674 90 0 1 0.128 0.181 c 0.292 0.223 0.577 0.459 0.877 0.673 c 1.043 -5.45 -0.015 -10.677 -3.776 -14.8 C 23.083 21.252 24.418 26.76 28.287 30.446 Z m 299.418 0.195 c 5.386 1.5 10.242 -1.571 14.606 -5.165 a 16.463 16.463 90 0 0 -2.609 -0.21 A 16.3 16.3 90 0 0 327.705 30.641 Z m -320.019 -5.165 c 4.363 3.593 9.22 6.668 14.607 5.163 a 16.3 16.3 90 0 0 -12 -5.374 A 16.45 16.45 90 0 0 7.686 25.476 Z m 331.9 -12.347 a 11.148 11.148 90 0 1 -2.708 3.88 a 14.693 14.693 90 0 0 9.854 -5.3 a 11.6 11.6 90 0 0 -1.426 -0.089 A 11.741 11.741 90 0 0 339.589 13.129 Z M 3.261 11.7 a 14.7 14.7 90 0 0 9.854 5.3 a 11.168 11.168 90 0 1 -2.71 -3.88 a 11.724 11.724 90 0 0 -5.717 -1.513 A 11.608 11.608 90 0 0 3.261 11.7 Z m 12.725 5.063 a 1.2 1.2 90 0 1 0.722 -0.382 a 14.509 14.509 90 0 0 -4.319 -12.835 C 10.806 8.376 12.691 13.041 15.986 16.768 Z m 317.3 -0.383 a 1.212 1.212 90 0 1 0.722 0.381 c 3.3 -3.727 5.18 -8.39 3.6 -13.216 A 14.5 14.5 90 0 0 333.289 16.384 Z')
}
/* adds the transition animation for the top vine decoration on hover */
.pp-cc-wrapper:hover .pp-cc-gradient-1::after {
bottom: -65px;
opacity: 1;
transition: all 0.3s ease;
}
/* adds the transition animation for the bottom vine decoration on hover */
.pp-cc-wrapper:hover .pp-cc-gradient-1::before {
top: -80px;
opacity: 1;
transition: all 0.3s ease;
}
/* ENDS DECORATION SECTION */
/* DESCRIPTION SECTION */
/* positions the description box */
.profile-character-card-description-box {
width: 150px;
opacity: 0;
right: 0px;
visibility: hidden;
transition:
opacity 0.3s ease,
right 0.3s ease;
}
/* gives the description box an animation on hover */
.pp-cc-wrapper:hover .profile-character-card-description-box {
position: absolute;
top: 50px;
right: -150px;
height: 300px;
background: #8AAEE0;
z-index: 2;
overflow-y: scroll;
opacity: 1;
visibility: visible;
transition:
opacity 0.3s ease,
right 0.3s ease;
animation: hover-pointer 0.4s;
transition-delay: 0.1s
}
/* makes it so that the chakra description box only appears after the normal description box has finished sliding. This makes sure the chakra box is always positioned correctly */
@keyframes hover-pointer {
0% {
pointer-events: none;
}
99% {
pointer-events: none;
}
100% {
pointer-events: auto;
}
}
/* defines the height of the text box and adds some padding */
.profile-character-card-description-markdown-container {
height: 300px !important;
padding-top: 10px;
padding-bottom: 10px;
}
/* styles the description text */
.profile-character-card-description-markdown-container p,
.profile-character-card-description-markdown-container span {
font-family: DM Serif Text !important;
font-size: 13px !important;
text-align: left;
font-weight: 100 !important;
color: #395886 !important;
text-align: left !important;
}
/* EXTENDED DESCRIPTIONS BOX */
/* removes the arrow icon */
.chakra-tooltip__arrow-wrapper,
.chakra-tooltip__arrow {
display: none;
}
/* styles and positions the extended descriptions box */
.css-1nfaq08 {
display: block;
border: 0;
max-width: 9999999999px !important;
border-radius: 0px;
background-color: rgba(59, 88, 132, 0.9);
font-size: 14px;
text-align: center !important;
align-content: center !important;
overflow: hidden;
width: 450px;
height: auto;
position: absolute !important;
transform: translate(-50%, -100%) translateX(-150px) !important
}
/* styles the text inside the extended descriptions box */
.css-1nfaq08 p,
.css-1nfaq08 p span {
display: block;
position: relative;
box-shadow: none;
z-index: 5;
padding: 0;
margin: 0;
font-family: DM Serif Text;
font-weight: 100;
color: #f0f3fa !important;
text-align: center !important;
font-size: 15px !important;
letter-spacing: 0.5px;
}
/* ok so I genuinely don't remember what this is for but I'm gonna keep it just in case (because it has a bunch of styles) */
.css-ataym9 {
background-color: #3b5884;
color: #bebebe;
font-family: DM Serif Text;
font-weight: 400;
padding-top: 3px;
text-align: center !important;
box-shadow: 0 0 15px #3b5884;
}
/* END EXTENDED DESCRIPTIONS BOX */
/* END DESCRIPTION SECTION */
/* TAGS SECTION */
/* positions tags container */
.profile-character-card-tags {
display: initial;
z-index: 2;
top: 50px;
width: 150px;
height: 300px;
background: rgba(59, 88, 132, 0.9);
position: absolute;
padding: 0;
display: flex;
flex-direction: column;
align-items: flex-end;
justify-content: flex-start;
left: 0px;
opacity: 0;
transition: all 0.3s ease;
}
/* makes the tags container slide out when it's hovered */
.pp-cc-wrapper:hover .profile-character-card-tags {
display: flex;
left: -150px;
opacity: 1;
animation: hover-pointer 0.4s;
transition-delay: 0.1s
}
/* sizes the tags container appropriately */
.profile-character-card-tags ul {
width: 100%;
padding: 0;
margin: 0;
list-style: none;
display: flex;
flex-direction: column;
align-items: flex-end;
}
/* makes sure all the tags take up the entire width */
.profile-character-card-tags li {
width: 100%;
}
/* styles all the individual tags */
.profile-character-card-tags li>*,
.pp-cc-tags-item {
width: 100%;
justify-content: center;
margin: 0;
text-align: center;
font-size: 13px;
background: #8AAEE0;
border-radius: 1px;
border: none;
color: #395886;
font-family: DM serif text;
}
/* gives the tags ellipses when they're too long */
.pp-cc-tags-item {
max-width: 100%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
display: block;
text-align: center;
}
/* gives the tags a hover effect */
.pp-cc-tags-item:hover {
border: 0;
background: #658ec8;
}
/* END TAGS SECTION */
/* adjusts the width and positions of the description and the tags boxes for smaller screen sizes */
@media (max-width: 450px) {
.profile-character-card-description-box {
width: 100px !important;
}
.pp-cc-wrapper:hover .profile-character-card-description-box {
right: -100px;
}
.profile-character-card-tags {
width: 100px;
}
.pp-cc-wrapper:hover .profile-character-card-tags {
left: -100px;
}
}
/* removes the ugly black background */
.profile-character-card-wrapper,
.profile-character-card-wrapper:hover {
background: none;
box-shadow: none;
}
/* removes the number of chats background */
.pp-cc-ribbon-wrap {
background: none;
box-shadow: none !important;
clip-path: none;
}
/* defines the width of the number of chats box */
.profile-character-card-stats-box,
.profile-character-card-stats-box .css-1baulvz,
.profile-character-card-ribbon {
position: absolute;
left: 0;
width: 150px;
}
/* styles and positions the number of chats text */
.profile-character-card-chats-hstack {
transform: translateY(5px);
width: 150px;
margin: 0;
justify-content: center;
font-family: cinzel;
font-weight: 100;
}
/* removes the text bubble emoji */
.profile-character-card-chats-hstack svg {
display: none;
}
/* adds 'moves' to after the number of chats */
.profile-character-card-chats-hstack span::after {
content: ' moves'
}
/* styles and positions the number of tokens text */
.profile-character-card-box p {
font-family: cinzel;
transform: translateY(-5px);
}
</style>
<!--♖♘♗♕ TOP BAR & MOBILE MENU ♔♗♘♖ -->
<style>
/* wrapper of the header bar */
.profile-top-bar-flex-outer {
height: 80px;
}
/* styles and positions the actual header bar */
.profile-top-bar {
height: 60px;
width: calc(100vw - 20px);
margin-top: 1vh;
margin-left: 1vh;
background-color: #B1C9EF;
border: 5px solid #D5DEEF;
}
/* makes the top bar look good on mobile */
@media (max-width: 768px) {
.profile-top-bar {
background-color: #395886
}
.pp-mnb-container {
height: 60px;
width: calc(100vw - 20px);
margin-top: -1vh;
margin-left: 1vh;
background-color: #395886;
border: 5px solid #D5DEEF;
}
.pp-mnb-container>* {
transform: scale(1.2) translateY(4px);
}
}
/* LOGO */
/* removes the original janitor logo */
.profile-top-bar-logo-name,
.profile-top-bar-logo-sub-name {
font-size: 0;
}
/* adds new logo 'welcome to wonderland' */
.profile-top-bar-logo-name::after {
font-size: 2rem;
content: 'WELCOME TO WONDERLAND';
color: #395886;
font-family: "Grenze Gotisch", serif;
font-weight: 400;
}
/* gives the logo a dark blue hover effect */
.glow-logo:hover {
color: #395886;
text-shadow: 0 0 15px #628ECB;
}
/* makes sure the logo is in one row */
.profile-top-bar-logo-box {
margin-left: 0px;
width: 400px;
flex-shrink: 0;
overflow: hidden;
}
/* END LOGO */
/* SEARCH BAR */
/* removes the old search placeholder */
#search-input::placeholder {
opacity: 0;
}
/* styles the search bar */
.pp-top-bar-search {
position: relative;
overflow: hidden;
width: 100%;
border-radius: 1px;
border: 3px solid #D5DEEF;
}
/* styles the stuff inside the search bar + adds a new placeholder */
.pp-top-bar-search::after {
content: "BEYOND THE PALACE WALLS...";
position: absolute;
top: 50%;
transform: translateY(-50%);
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
pointer-events: none;
font-size: 15px;
padding-top: 3px;
font-family: cinzel;
font-weight: 600;
font-style: italic;
color: #395886;
text-decoration: none;
transition: opacity 200ms ease-in-out;
display: block;
}
/* styles the search icon svg */
.pp-top-bar-search-icon svg {
filter: brightness(0%) invert(32%) sepia(11%) saturate(2400%) hue-rotate(177deg) brightness(95%) contrast(89%);
}
/* makes sure the placeholder is invisible when you click on the search bar */
.pp-top-bar-search:focus-within::after,
.pp-top-bar-search:has(#search-input:not(:placeholder-shown))::after {
opacity: 0;
}
/* END SEARCH BAR */
/* MISCELLANEOUS */
/* login and register buttons */
.profile-top-bar-auth-buttons a {
color: #395886;
}
/* gives the login and register button a hover effect */
.profile-top-bar-auth-buttons a:hover {
color: #F0F3FA;
text-shadow: 0 0 15px #395886;
}
/* create a character button */
.pp-top-bar-right a {
color: #395886;
font-family: dm serif text;
letter-spacing: 0.2px;
font-weight: 100;
background-color: rgb(0, 0, 0, 0);
}
/* create a character hover effect */
.pp-top-bar-right a:hover {
color: #F0F3FA;
background-color: rgb(0, 0, 0, 0);
text-shadow: 0 0 15px #395886;
}
/* removes old hover effect */
.glow-on-hover::before,
.glow-on-hover::after {
display: none;
}
/* number of notifs circle */
._notificationsBadge_fdp8b_41 {
opacity: 0;
background: #395886;
box-shadow: none;
border: none;
color: #F0F3FA;
text-shadow: 0 0 15px #D5DEEF;
}
/* notifs bell icon */
._notificationIcon_fdp8b_31 {
filter: brightness(0%) invert(32%) sepia(11%) saturate(2400%) hue-rotate(177deg) brightness(95%) contrast(89%);
}
/* removes old icon hover effect */
._notificationsButton_fdp8b_7:hover {
background: none;
}
/* makes number of notifs appear on hover */
._notificationsButton_fdp8b_7:hover ._notificationsBadge_fdp8b_41 {
opacity: 1;
transition: opacity 0.2s ease-in-out 0s;
}
/* makes your top right pfp grey */
.profile-top-bar-app-menu {
filter: grayscale(100%) brightness(150%);
}
/* END MISC SECTION */
</style>
<!--♖♘♗♕ NOTIFICATIONS BOX ♔♗♘♖ -->
<!-- so this is the notifications section. it's so annoying omg. If you don't like the design, just delete this section, paste @tigerdropped's template and work from there! Nothing here will be labelled since I won't be able to explain it very well.-->
<style>
[class*="notificationsContainer"] {}
[class*="notificationsPopover"] {
max-width: 400px;
background: #3b5884;
border: 0;
box-shadow: 0 0 0 5px #D5DEEF, 0 0 0 8px #395886;
border-radius: 0px;
}
@media only screen and (max-width: 768px),
only screen and (max-width: 480px) {
[class*="notificationsPopover"] {
top: 3rem;
}
}
[class*="notificationsPopover"]::before {
content: unset;
}
[class*="_loadingState_"] {}
[class*="_loadingSpinner_"] {
border: 3px solid #f9f9f940;
border-top: 3px solid #f9f9f9;
}
[class*="_loadingMessage_"] {
color: #f9f9f9;
font-family: 'DM Sans';
}
[class*="_emptyState_"] {
font: 400 1rem Poppins, sans-serif;
color: #f9f9f980
}
[class*="_emptyState_"]::first-letter {
text-transform: uppercase;
}
[class*="popoverHeader"] {
padding: 1rem;
border-bottom: 1px solid #f9f9f980;
background: unset;
box-shadow: unset;
}
[class*="popoverTitle"] {
font: 200 2rem/0.7 cinzel;
color: #f9f9f9;
letter-spacing: unset;
text-transform: capitalize;
}
[class*="headerActions"] {
gap: 0.25rem;
}
[class*="headerActions"] button {
width: 2rem;
height: 2rem;
padding: 0.375rem;
font-size: 1.5rem;
background: none;
border-color: unset;
box-shadow: unset;
color: #f9f9f9;
border: 0;
border-radius: 999px;
transition: all 500ms;
}
[class*="headerActions"] button:hover {
background: none;
color: #8AAEE0;
box-shadow: unset;
}
button[class*="closeButton"] {
padding: 0.25rem;
font-size: 2rem;
}
button[class*="closeButton"]:hover {}
[class*="modalOverlay"] {
background: #11111180;
backdrop-filter: blur(8px);
animation: unset;
}
[class*="modalContainer"] {
max-width: 400px;
}
[class*="modalContent"] {
border-radius: 0px;
box-shadow: unset;
border: unset;
min-width: 300px;
overflow: hidden;
animation: unset;
background: #3b5884;
border: 0;
box-shadow: 0 0 0 5px #D5DEEF, 0 0 0 8px #395886;
}
[class*="modalHeader"] {
padding: 1rem;
border-bottom: 1px solid #f9f9f980;
}
[class*="modalTitle"] {
font: 200 1.5rem/0.7 cinzel, serif;
color: #f9f9f9;
letter-spacing: unset;
}
[class*="modalTitle"]::first-letter {
text-transform: uppercase;
}
[class*="modalTitle"]::after {
content: "?";
}
[class*="modalClose"] {
width: 2rem;
height: 2rem;
padding: 0.25rem;
font-size: 2rem;
border-color: unset;
box-shadow: unset;
color: #D5DEEF;
border-radius: 999px;
transition: all 500ms;
}
[class*="modalClose"]:hover {
color: #8AAEE0;
transform: scale(1.05);
background: none;
}
[class*="modalBody"] {
padding: 1rem;
}
[class*="modalWarning_"] {
color: #8AAEE0;
border: 1px solid;
background: unset;
border-radius: 0;
padding: 0.5rem 0.625rem;
gap: 0.5rem;
align-items: center;
}
[class*="modalWarningIcon"] {
margin: 0;
color: #8AAEE0;
font-size: 1rem;
}
[class*="modalWarningText"] {
color: #f9f9f9;
font: 300 0.875rem/0.7 DM Serif Text, sans-serif;
}
[class*="modalFooter"] {
padding: 0 1rem 1rem 1rem;
border: unset;
gap: 0.75rem;
}
[class*="modalContent"] [class*="modalFooter"] button[type="button"][class*="modalButton"] {
height: auto;
padding: 0.75rem;
font: 900 1rem/0.7 cinzel;
background: #395886;
border-color: unset;
box-shadow: unset;
color: #B1C9EF;
border: 1px solid;
border-radius: 0;
transition: all 500ms;
width: 50%;
}
[class*="modalContent"] [class*="modalFooter"] button[type="button"][class*="modalButton"]::first-letter {
text-transform: uppercase;
}
[class*="modalContent"] [class*="modalFooter"] button[type="button"][class*="modalButton"]:hover {
color: #ffffff;
border: 1px solid #ffffff;
box-shadow: unset;
transform: unset;
}
[class*="modalContent"] [class*="modalFooter"] button[type="button"][class*="modalButton"][class*="secondary"] {}
[class*="modalContent"] [class*="modalFooter"] button[type="button"][class*="modalButton"][class*="secondary"]:hover {}
[class*="modalContent"] [class*="modalFooter"] button[type="button"][class*="modalButton"][class*="danger"] {
color: #fe7171;
}
[class*="modalContent"] [class*="modalFooter"] button[type="button"][class*="modalButton"][class*="danger"]:hover {
color: #ef4444;
border: 1px solid #ef4444;
}
[class*="notificationsList"] {
max-height: 550px;
}
[class*="notificationsList"]::-webkit-scrollbar {}
[class*="notificationsList"]::-webkit-scrollbar-thumb {
background: #f9f9f9;
}
[class*="notificationsList"]::-webkit-scrollbar-track {}
#root [class*="notificationItem"] {
background: unset;
padding: 0.5rem;
gap: 0.5rem;
border-bottom: 1px solid #f9f9f980;
align-items: center;
transition: unset;
}
#root [class*="notificationItem"]:last-child,
#root [class*="notificationItem"]:nth-last-child(2):has(+ [class*="loadMoreWrapper"]) {
border-bottom: unset;
}
[class*="unreadIndicator"] {
width: 3px;
background: #F0F3FA;
box-shadow: unset;
border-radius: unset;
}
[class*="avatarSection"] {
display: contents;
}
[class*="avatarContainer"] {
min-width: 5rem;
height: auto;
aspect-ratio: 1;
transition: transform 500ms, filter 500ms;
}
[class*="characterAvatar"] {
width: 4rem;
height: auto;
aspect-ratio: 1;
border-radius: 0;
object-position: top;
border: unset;
}
[class*="userAvatar"] {
bottom: 0;
right: 0;
min-width: unset;
width: 2rem;
aspect-ratio: 1;
height: auto;
object-position: top;
border-radius: 999px;
box-shadow: unset;
border: unset;
}
[class*="notificationItem"]:hover *:is([class*="characterAvatar"], [class*="userAvatar"]),
a[class*="avatarContainer"]:hover {
box-shadow: unset;
transform: unset;
}
a[class*="avatarContainer"]:hover {
transform: scale(1.05);
filter: drop-shadow(0 0 0.5rem #f9f9f940);
}
[class*="contentWrapper"] [class*="content"] {
display: contents;
}
[class*="contentWrapper"] {
flex-flow: column;
padding: 0.5rem 0.75rem;
gap: 0.5rem;
border-radius: 1rem;
}
[class*="contentWrapperUnread"] {
background: #f9f9f908;
}
[class*="contentWrapper"]:hover {
background: #f9f9f916;
}
[class*="notificationItem"]:not(:has([class*="unreadIndicator"])) *:is([class*="avatarContainer"], [class*="contentWrapper"]) {
filter: grayscale(0.75) opacity(0.5);
}
[class*="_subject_"] {
font: 600 0.875rem cinzel, sans-serif;
color: #D5DEEF;
}
[class*="subjectUnread"] {
background-color: #F0F3FA;
}
[class*="_body_"] {
font: 400 0.75rem 'Poppins', sans-serif;
color: #f9f9f9;
}
[class*="subjectUnread"]+[class*="_body_"] {}
[class*="_timestamp_"] {
font: 400 0.75rem DM Serif Text, sans-serif;
color: #f9f9f980;
}
[class*="subjectUnread"]~[class*="_timestamp_"] {}
[class*="archiveSection"] {
padding: 1rem;
top: unset;
bottom: 0;
}
[class*="notificationItem"]:hover [class*="archiveSection"] {}
[class*="archiveButton"] {
width: 2rem;
height: 2rem;
padding: 0.25rem;
font-size: 1rem;
background: none;
border-color: unset;
box-shadow: unset;
color: #F0F3FA;
border: 0;
border-radius: 999px;
transition: all 500ms;
}
[class*="archiveButton"]:hover {
background: none;
color: #8AAEE0;
box-shadow: unset;
transform: scale(1.05);
}
[class*="loadMoreWrapper"] {
padding: 0.5rem;
border-top: 1px solid #f9f9f980;
}
[class*="loadMoreButton"] {
width: 100%;
height: auto;
padding: 0.75rem 0.875rem;
font: 600 1rem/0.7 cinzel, sans-serif;
background: #395886;
border-color: unset;
box-shadow: unset;
color: #D5DEEF;
border: 1px solid;
border-radius: 0;
transition: all 500ms;
}
[class*="loadMoreButton"]::first-letter {
text-transform: uppercase;
}
#root [class*="loadMoreButton"]:hover {
background: #628ECB;
color: #D5DEEF;
border: 1px solid #D5DEEF;
box-shadow: unset;
transform: unset;
}
</style>
|