QUEEN OF HEARTS: alice in wonderland inspired css template - CSS ONLY
BY MAUVE07
This is step 5. Make sure you've already done steps 1 to 4! Copy everything! Otherwise it might not work.
link to full tutorial
COMPLETED CSS CODE BELOW
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 | <!-- here is the css! -->
<style>
/* this section is my attempt to make janitor always load the profile page without needing to refresh 10 million times. It doesn't work perfectly but I think it helps. */
html body {
all: revert;
margin: 0;
overflow: hidden;
animation: unlockScroll 0s forwards 6s;
/* delete this line if you want to remove the initial loading screen */
}
@keyframes unlockScroll {
to {
overflow: auto;
}
}
html body * {
box-sizing: border-box;
}
/* end section */
/* ♠ ♦ ♣ ♥ header section ♥ ♣ ♦ ♠ */
/* defines dimensions of the header wrapper */
.profile-top-bar-flex-outer {
height: 80px;
}
/* styles your actual header border */
.profile-top-bar {
height: 60px;
width: calc(100vw - 20px);
margin-top: 1vh;
margin-left: 1vh;
background-color: #000000;
border: 5px solid #520000;
}
/* logo section */
/* removes the 'Janitor beta' logo */
.profile-top-bar-logo-name,
.profile-top-bar-logo-sub-name {
font-size: 0;
}
/* styles the 'welcome to wonderland' text */
.profile-top-bar-logo-name::after {
font-size: 2rem;
content: 'WELCOME TO WONDERLAND';
color: #bd0000;
font-family: "Grenze Gotisch", serif;
font-weight: 400;
}
/* makes 'welcome to wonderland' glow when you hover it */
.glow-logo:hover {
color: #e60000;
text-shadow: 0 0 15px #bd0000;
}
/* defines the dimensions of the logo box */
.profile-top-bar-logo-box {
margin-left: 0px;
width: 400px;
flex-shrink: 0;
overflow: hidden;
}
/* end logo section */
/* search bar section */
/* removes the original search input placeholder text */
#search-input::placeholder {
opacity: 0;
}
/* styles the border of your search box */
.pp-top-bar-search {
position: relative;
overflow: hidden;
width: 100%;
border-radius: 1px;
border: 3px solid #520000;
}
/* styles the new placeholder text inside the search input box */
.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: 20px;
padding-top: 3px;
font-family: "Jim Nightshade", serif;
font-weight: 400;
font-style: italic;
color: #bd0000;
text-decoration: none;
transition: opacity 200ms ease-in-out;
display: block;
}
/* styles the search icon */
.pp-top-bar-search-icon svg {
filter: brightness(0%) saturate(100%) invert(20%) sepia(74%) saturate(7476%) hue-rotate(357deg) brightness(77%) contrast(116%);
}
/* removes the placeholder text when you tap 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 section */
/* miscellaneous header items section */
/* styles the 'log in' and 'register' buttons when logged out */
.profile-top-bar-auth-buttons a {
color: #bd0000;
}
/* styles the glow when you hover the 'log in' and 'register' buttons */
.profile-top-bar-auth-buttons a:hover {
color: #e60000;
text-shadow: 0 0 15px #bd0000;
}
/* styles the 'create a character' button */
.pp-top-bar-right a {
color: #bd0000;
background-color: rgb(0, 0, 0, 0)
}
/* makes the 'create a character' button glow when you hover it */
.pp-top-bar-right a:hover {
color: #e60000;
background-color: rgb(0, 0, 0, 0);
text-shadow: 0 0 15px #bd0000;
}
/* removes the original hover effects of 'create a character' */
.glow-on-hover::before,
.glow-on-hover::after {
display: none;
}
/* styles the bell notif icon's wrapper */
._notificationsBadge_fdp8b_41 {
opacity: 0;
background: #420000;
box-shadow: none;
border: none;
color: #e60000;
text-shadow: 0 0 15px #bd0000;
}
/* changes the notif icon to red */
._notificationIcon_fdp8b_31 {
filter: brightness(0%) invert(17%) sepia(45%) saturate(7144%) hue-rotate(354deg) brightness(74%) contrast(128%);
}
/* removes the original hover effects */
._notificationsButton_fdp8b_7:hover {
background: none;
}
/* makes the number of notifs appear when on hover */
._notificationsButton_fdp8b_7:hover ._notificationsBadge_fdp8b_41 {
opacity: 1;
transition: opacity 0.2s ease-in-out 0s;
}
/* ♠ ♦ ♣ ♥ end header section ♥ ♣ ♦ ♠ */
/* ♠ ♦ ♣ ♥ pfp section ♥ ♣ ♦ ♠ */
/* makes the background box transparent */
.profile-uc-background-flex {
background: rgb(0, 0, 0, 0);
display: flex;
justify-content: center;
min-width: 0;
flex: 0 0 auto;
}
/* makes the shadow effect when you hover disappear */
.pp-uc-background:hover {
box-shadow: none;
}
/* gets rid of the other background boxes */
.profile-background-box-1,
.profile-background-box-2,
.profile-background-box-3 {
display: none;
}
/* styles the front of your flip card */
.profile-avatar-container {
position: relative;
display: inline-block;
overflow: hidden;
padding: 60px;
background-color: black;
border-radius: 60px;
border: 5px solid #bd0000;
box-shadow: 0 0 50px rgba(70, 0, 0, 0.9);
width: 450px;
}
/* styles your profile picture */
.profile-avatar-container img {
display: block;
width: 320px;
height: 600px;
object-position: top;
display: block;
}
/* adds the gradient to your profile picture */
.profile-avatar-container::after {
content: '';
position: absolute;
top: 60px;
left: 60px;
right: 60px;
bottom: 60px;
pointer-events: none;
background:
linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100px),
linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100px),
linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100px),
linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100px);
background-repeat: no-repeat;
background-size: 100% 100px, 100% 100px, 100px 100%, 100px 100%;
background-position: top, bottom, left, right;
}
/* moves your edit profile buttons */
.css-9qctsi {
left: 10px;
width: 10px;
}
/* colors your Q/K/A symbol and heart emoji */
.profile-symbol {
color: #bd0000
}
/* styles your Q/K/A symbol */
.profile-symbol h1 {
position: absolute;
font-size: 90px;
font-family: 'Berkshire Swash'
}
/* styles your heart symbol */
.profile-symbol h2 {
font-size: 100px;
position: absolute;
}
/* adjusts the placement of your top Q/K/A symbol */
.profile-symbol-top h1 {
top: 30px;
left: 40px;
}
/* adjusts your bottom Q/K/A symbol */
.profile-symbol-bottom h1 {
bottom: 30px;
right: 40px;
transform: rotate(180deg);
}
/* adjusts the placement of your top heart emoji */
.profile-symbol-top h2 {
top: 120px;
left: 43px;
}
/* adjusts your bottom heart emoji */
.profile-symbol-bottom h2 {
bottom: 120px;
right: 43px;
transform: rotate(180deg);
}
/* adjusts the placement of the top svg decoration */
.top-right-decoration-component {
content: '';
width: 800px;
height: 800px;
z-index: 7;
background: #bd0000;
position: absolute;
transform-origin: 470px 407px;
transform: translate(-470px, -407px) rotate(90deg) scale(80%) translate(0px, calc(-450px/0.8)) translate(50px, 50px);
}
/* adjusts the bottom svg decoration */
.bottom-left-decoration-component {
content: '';
width: 800px;
height: 800px;
z-index: 7;
background: #bd0000;
position: absolute;
transform-origin: 470px 407px;
transform: translate(-470px, -407px) rotate(-90deg) scale(80%) translate(calc(-730px/0.8), 0px) translate(50px, 50px);
}
/* okay I know you're thinking 'wtf is this' and probably going to delete it. DON'T!! It's the paths of your top right and bottom left svgs. Don't delete any of these numbers or it probably won't work. */
.trd1 {
clip-path: path('M481.239,417.865c0,0,1.616,0.438,3.522,2.018c0.94,0.814,2.135,1.744,3.545,2.742 c1.359,1.082,3.085,2.012,4.85,3.184c1.878,0.961,3.831,2.205,6.092,3.037c1.117,0.441,2.272,0.891,3.45,1.35 c1.216,0.297,2.456,0.598,3.722,0.908c2.507,0.693,5.371,0.99,8.156,1.588c2.828,0.539,5.689,1.182,8.551,1.978 c2.816,0.94,5.762,1.768,8.304,3.682c2.492,1.822,4.825,4.377,5.082,7.744c0.249,3.592-2.12,6.225-4.521,7.461 c-2.401,1.332-5.327,1.563-7.544,0.441c-1.111-0.476-2.041-1.377-2.662-2.098c-0.728-0.926-1.169-1.881-1.383-2.869 c-0.368-1.988,0.214-3.764,1.065-4.914c0.816-1.188,1.928-1.881,2.904-1.975c0.986-0.088,1.49,0.32,1.49,0.268l-0.818,1.516 c-0.018,0.039-0.133-0.127-0.524-0.123c-0.388-0.008-1.18,0.314-1.83,1.203c-0.652,0.852-1.148,2.229-0.854,3.732 c0.171,0.738,0.561,1.498,1.057,2.127c0.684,0.738,1.294,1.328,2.214,1.672c1.71,0.748,4.029,0.463,5.855-0.746 c1.862-1.135,3.19-3.385,2.846-5.324c0.044-0.273-0.332-1.244-0.48-1.564c-0.344-0.492-0.673-0.98-0.977-1.494 c-0.264-0.535-0.84-0.869-1.24-1.32c-0.402-0.459-0.897-0.836-1.479-1.146c-2.083-1.465-4.761-2.387-7.4-3.248 c-2.706-0.781-5.476-1.432-8.232-1.982c-2.778-0.633-5.513-0.896-8.225-1.699c-1.363-0.377-2.709-0.709-4-1.111 c-1.233-0.527-2.448-1.041-3.624-1.545c-2.373-0.969-4.384-2.328-6.315-3.406c-1.805-1.287-3.516-2.381-4.864-3.574 c-1.404-1.113-2.579-2.141-3.502-3.037C481.576,419.58,481.239,417.865,481.239,417.865L481.239,417.865z');
}
.trd2 {
clip-path: path('M499.996,429.83c0-0.004,4.746-0.543,13.075-1.014c4.163-0.217,9.234-0.404,15.083-0.307 c1.469,0.094,2.983,0.191,4.543,0.293c1.563,0.109,3.197,0.543,4.86,0.82c1.722,0.442,3.154,1.068,4.808,1.609 c1.588,0.76,3.302,1.498,4.883,2.475c1.486,1.125,3.207,2.033,4.474,3.559c0.68,0.705,1.367,1.418,2.054,2.139 c0.543,0.828,1.097,1.668,1.65,2.51c2.206,3.396,3.522,7.367,4.514,11.438c0.637,2.021,0.716,4.133,1.142,6.238 c0.388,2.131,0.611,4.254,0.807,6.391c0.42,4.316,0.713,8.645,1.458,12.924c1.352,8.565,4.955,16.725,11.577,22.436 c3.237,2.879,7.028,5.393,10.865,6.488c4.001,1.213,8.309,1.342,12.504,0.584c8.392-1.65,16.228-6.938,21.108-14.092 c4.944-7.221,6.803-16.299,5.172-24.609c-1.435-8.326-7.161-15.445-14.464-17.773l-1.357-0.445 c-0.304-0.088-0.94-0.186-1.389-0.279l-1.483-0.277l-1.342-0.07c-1.765-0.166-3.613,0.139-5.288,0.584 c-3.359,1.029-6.065,3.402-7.766,6.238c-3.28,5.758-3.317,12.977,0.069,17.162c3.367,4.301,8.742,5.486,12.409,4.662 c3.787-0.875,5.99-3.35,7.003-5.139c0.636-0.836,0.835-1.668,1.106-2.139c0.232-0.492,0.351-0.752,0.351-0.752l1.613,0.6 c0,0-0.123,0.283-0.376,0.832c-0.297,0.529-0.514,1.418-1.212,2.381c-1.117,1.988-3.653,4.934-8.095,5.982 c-4.322,0.984-10.297-0.355-14.345-5.193c-0.994-1.104-1.888-2.836-2.311-4.193c-0.568-1.645-0.741-3.258-0.847-4.994 c-0.061-3.43,0.72-7.068,2.561-10.41c1.87-3.299,5.039-6.228,9.035-7.545c2.011-0.586,4.076-0.969,6.275-0.824l1.643,0.072 l1.482,0.246c0.539,0.102,0.904,0.131,1.588,0.289l1.559,0.471c4.163,1.273,8.059,3.869,10.984,7.371 c2.967,3.494,4.963,7.813,6.073,12.369c2.189,9.108,0.709,19.51-4.344,28.119c-5.14,8.607-13.896,15.375-24.193,17.484 c-5.107,1.113-10.591,0.875-15.603-0.807c-5.223-1.74-9.419-4.66-12.97-8.182c-3.574-3.523-6.46-7.76-8.355-12.279 c-1.892-4.533-2.872-9.25-3.328-13.795c-0.918-9.107-0.574-17.67-2.209-25.479c-1.491-7.805-5.31-14.555-11.108-18.223 c-1.425-0.918-2.926-1.602-4.383-2.357c-1.574-0.557-3.209-1.283-4.623-1.664c-1.533-0.275-2.966-0.713-4.477-0.854 c-1.509-0.131-2.974-0.26-4.395-0.383c-5.726-0.238-10.764-0.152-14.897,0.082c-8.291,0.428-13,0.938-13,0.938L499.996,429.83 z');
}
.trd3 {
clip-path: path('M588.878,463.539c0,0-0.242,0.826-0.521,2.518c-0.242,1.676-0.586,4.16-0.488,7.314c0.09,3.147,0.611,6.951,1.913,11.082c1.335,4.061,3.548,8.637,6.999,12.484c3.45,3.91,8.181,7.43,13.784,9.502c5.584,2.08,12.033,2.58,18.211,0.752c1.529-0.477,3.053-1.066,4.528-1.797c0.698-0.373,1.544-0.777,2.104-1.164l2.257-1.455c2.619-1.932,5.122-4.209,7.107-6.994c4.04-5.537,5.61-12.768,6.001-20.006c0.491-7.266-0.583-14.754,0.072-22.24c0.557-7.43,2.817-14.775,6.923-20.648c3.866-5.824,9.845-10.877,16.772-11.209c3.395-0.174,6.73,0.99,9.219,2.934c2.587,1.963,4.152,4.922,4.536,7.865c0.864,5.982-2.854,11.467-7.433,13.072c-2.243,0.875-4.543,1.117-6.644,0.734c-2.098-0.379-3.885-1.473-5.057-2.824c-2.416-2.764-2.387-6.049-1.714-7.863c0.329-0.941,0.763-1.584,1.081-1.99c0.34-0.391,0.514-0.586,0.514-0.586l1.219,1.215c0,0-0.134,0.152-0.393,0.439c-0.239,0.299-0.568,0.777-0.832,1.479c-0.528,1.35-0.626,3.979,1.313,6.271c1.826,2.348,5.936,3.4,9.997,1.816c4.008-1.426,7.245-6.279,6.456-11.553c-0.361-2.582-1.743-5.141-3.989-6.822c-2.265-1.736-5.18-2.719-8.188-2.553c-3.01,0.174-6.029,1.397-8.638,3.299c-2.637,1.865-4.807,4.455-6.745,7.277c-3.936,5.613-5.914,12.607-6.182,19.795c-0.452,7.176,0.897,14.543,0.84,22.182c-0.004,7.539-1.273,15.607-5.653,22.252c-2.134,3.295-4.901,6.156-8.065,8.471l-2.239,1.49c-0.915,0.629-1.679,0.992-2.532,1.469c-1.692,0.867-3.454,1.584-5.244,2.17c-7.22,2.381-14.956,1.627-21.271-0.912c-6.361-2.51-11.599-6.502-15.404-11.066c-3.769-4.709-5.83-9.709-7.096-14.295c-1.252-4.594-1.411-8.764-1.223-12.123c0.191-3.363,0.724-5.961,1.215-7.693c0.471-1.719,0.865-2.649,0.865-2.649L588.878,463.539z');
}
.trd4 {
clip-path: path('M577.828,415.629c0,0-0.438-0.426-1.425-1.164c-0.973-0.709-2.488-1.715-4.594-2.484c-2.079-0.793-4.843-1.248-7.754-0.34c-2.854,0.93-5.831,3.207-7.675,6.525c-1.899,3.258-2.836,7.617-1.736,11.801c0.535,2.076,1.525,4.088,2.991,5.809c1.504,1.68,3.385,3.082,5.516,4.148c0.882,0.287,2.405,1.074,3.385,1.074c1.057,0.24,2.239,0.225,3.447,0.182c2.405-0.238,4.847-0.861,7.256-1.822c4.832-1.867,9.624-4.486,14.785-6.49c5.15-1.988,10.852-3.287,16.516-2.777l0.531,0.029c0.499,0.059,0.416,0.072,0.658,0.115l0.97,0.207l1.945,0.412c1.346,0.467,2.785,1.082,4.095,1.707c1.161,0.793,2.412,1.49,3.469,2.383c0.987,0.959,2.098,1.816,2.958,2.857c3.592,4.076,5.885,8.834,7.256,13.477c1.346,4.656,2.119,9.213,2.127,13.43c0.159,4.223-0.318,8.078-0.872,11.455c-0.698,3.357-1.446,6.258-2.344,8.559c-0.738,2.365-1.675,4.072-2.214,5.283c-0.56,1.197-0.86,1.838-0.86,1.838l-3.961-2.137c0,0,0.286-0.586,0.814-1.676c0.506-1.103,1.406-2.65,2.108-4.814c0.864-2.1,1.588-4.766,2.286-7.855c0.561-3.109,1.066-6.67,0.977-10.576c0.065-3.906-0.597-8.115-1.755-12.398c-1.175-4.279-3.215-8.602-6.289-12.195c-0.734-0.934-1.675-1.654-2.511-2.512c-0.893-0.781-1.935-1.359-2.897-2.068c-1.042-0.488-2.015-0.955-3.129-1.402l-1.935-0.441l-0.969-0.225c-0.087-0.014-0.492-0.115-0.318-0.068l-0.471-0.029c-4.987-0.527-10.138,0.518-15.082,2.336c-4.97,1.826-9.755,4.352-14.891,6.246c-2.554,0.971-5.284,1.65-8.08,1.875c-1.407,0.027-2.814,0.035-4.286-0.326c-0.767-0.109-1.414-0.301-1.982-0.553c-0.644-0.266-1.074-0.373-1.896-0.768c-2.387-1.24-4.539-2.883-6.261-4.879c-1.674-2.037-2.803-4.428-3.389-6.852c-1.187-4.889-0.025-9.787,2.174-13.451c2.189-3.736,5.556-6.268,8.959-7.324c3.473-1.02,6.691-0.404,8.978,0.508c2.332,0.904,3.949,2.01,4.998,2.807c1.042,0.787,1.57,1.322,1.57,1.322L577.828,415.629z');
}
.trd5 {
clip-path: path('M637.681,504.209c0,0,0.611-0.199,1.501-0.627c0.908-0.43,2.38-1.182,4.084-2.314c0.846-0.59,1.815-1.193,2.817-1.941c0.977-0.785,2.036-1.635,3.161-2.547c1.172-0.861,2.214-2.033,3.425-3.133c1.176-1.139,2.475-2.264,3.639-3.649c2.428-2.666,5.057-5.553,7.506-8.908c2.6-3.217,5.06-6.822,7.656-10.605c2.558-3.775,5.024-7.707,7.617-11.783c1.259-2.033,2.717-4.041,4.102-6.063c1.632-1.873,3.038-3.965,4.908-5.613l2.67-2.598c0.918-0.832,1.905-1.563,2.856-2.344c1.899-1.563,3.813-3.086,5.81-4.428c1.956-1.373,3.892-2.744,5.805-4.102c1.888-1.395,3.809-2.748,5.299-4.289c3.129-2.973,5.668-6.734,5.628-10.496c-0.123-1.855-0.897-3.523-2.087-4.803c-1.219-1.273-2.861-1.982-4.435-2.322c-1.616-0.348-3.165,0.043-4.445,0.641c-0.611,0.488-1.117,0.672-1.652,1.342c-0.601,0.574-0.984,1.127-1.346,1.656c-1.522,2.242-1.501,4.766-0.456,6.234c0.977,1.545,2.5,1.932,3.324,1.852c0.871-0.115,1.255-0.469,1.273-0.418l0.9,1.461c-0.019-0.063-0.605,0.502-2.019,0.688c-1.367,0.158-3.609-0.484-4.973-2.611c-0.673-1.027-1.122-2.389-1.067-3.867c0.068-1.478,0.601-2.967,1.469-4.352c0.47-0.701,0.979-1.392,1.522-1.916c0.441-0.59,1.382-1.209,2.098-1.723c1.675-0.838,3.704-1.301,5.704-0.896c1.964,0.395,3.968,1.256,5.516,2.836c1.522,1.576,2.557,3.746,2.717,6.109c0.05,4.785-2.857,8.9-6.189,12.16c-1.696,1.746-3.573,3.078-5.443,4.494c-1.909,1.375-3.845,2.768-5.794,4.176c-1.975,1.344-3.827,2.85-5.66,4.383c-0.919,0.77-1.885,1.494-2.76,2.305l-2.536,2.514c-1.79,1.59-3.1,3.605-4.64,5.396c-1.328,1.996-2.709,3.906-3.954,5.961c-2.514,4.035-5.03,8.119-7.563,11.92c-2.531,3.77-5.01,7.477-7.646,10.801c-2.463,3.436-5.132,6.424-7.603,9.18c-1.179,1.428-2.517,2.611-3.722,3.805c-1.244,1.143-2.304,2.355-3.516,3.273c-1.179,0.959-2.275,1.863-3.287,2.695c-1.05,0.795-2.076,1.449-2.977,2.082c-1.826,1.238-3.342,2.041-4.492,2.586c-1.172,0.559-1.722,0.732-1.722,0.732L637.681,504.209z');
}
.trd6 {
clip-path: path('M535.725,447.603c0.021,0.014,0.191,0.065,0.756,0.399c0.578,0.297,1.262,0.773,2.076,1.373c0.82,0.615,1.735,1.434,2.737,2.406c0.923,1.027,2.055,2.127,2.991,3.523c0.492,0.684,1.038,1.373,1.537,2.123c0.449,0.781,0.919,1.584,1.4,2.408c1.041,1.613,1.736,3.494,2.611,5.359c0.879,1.889,1.518,3.799,2.318,5.76c0.781,1.938,1.573,3.906,2.369,5.873c0.86,1.928,1.721,3.855,2.567,5.754c0.966,1.828,1.842,3.68,2.825,5.375c1.063,1.643,1.964,3.332,3.045,4.764c1.114,1.404,2.084,2.807,3.122,3.971c1.096,1.115,2.104,2.131,2.991,3.039c0.89,0.908,1.858,1.473,2.557,2.055c1.447,1.107,2.282,1.744,2.282,1.744l-0.918,1.461c0,0-0.891-0.633-2.445-1.736c-0.76-0.586-1.791-1.154-2.756-2.076c-0.966-0.912-2.063-1.947-3.248-3.074c-1.136-1.18-2.192-2.605-3.411-4.037c-1.176-1.461-2.167-3.164-3.327-4.844c-1.086-1.725-2.048-3.584-3.11-5.443c-0.927-1.906-1.878-3.844-2.822-5.783c-0.867-1.961-1.746-3.924-2.604-5.855c-0.85-1.902-1.599-3.893-2.484-5.605c-0.883-1.723-1.588-3.473-2.604-4.912c-0.464-0.746-0.923-1.469-1.36-2.17c-0.474-0.67-0.99-1.266-1.454-1.871c-0.89-1.24-1.921-2.154-2.752-3.033c-0.897-0.807-1.704-1.484-2.392-1.961c-0.705-0.484-1.236-0.824-1.559-0.977c-0.297-0.182-0.637-0.305-0.607-0.301L535.725,447.603z');
}
.trd7 {
clip-path: path('M576.378,485.435c0,0-1.722,2.287-1.023,13.383c0,0-6.477-5.533-5.096-12.883c1.381-7.357,8.029-11.43,8.029-11.43s-0.694,4.352,1.743,8.492c2.438,4.147,5.541,8.971,3.581,13.158c-1.968,4.193-4.721,5.412-4.721,5.412S575.644,491.506,576.378,485.435z');
}
.trd8 {
clip-path: path('M661.556,465.102c0,0-1.809,0.463-5.975,6.436c0,0-1.06-5.477,2.637-8.678c3.707-3.205,8.774-2.574,8.774-2.574s-2.134,1.945-2.575,5.057c-0.438,3.117-0.817,6.85-3.526,8.195c-2.713,1.346-4.615,0.846-4.615,0.846S658.71,467.908,661.556,465.102z');
}
.trd9 {
clip-path: path('M586.4,448.088c0,0-0.456-1.801,2.753-8.254c0,0-5.26,1.682-6.283,6.416c-1.023,4.734,1.921,8.84,1.921,8.84s0.684-2.773,3.176-4.637c2.495-1.859,5.559-3.961,5.443-6.951c-0.123-2.994-1.458-4.412-1.458-4.412S587.485,444.275,586.4,448.088z');
}
.trd10 {
clip-path: path('M640.498,481.914c0,0,2.04,1.486,4.258,11.023c0,0,4.051-6.307,1.034-12.156c-3.027-5.844-9.664-7.6-9.664-7.6s1.689,3.498,0.68,7.604c-1.002,4.109-2.395,8.963,0.318,11.994c2.709,3.037,5.338,3.367,5.338,3.367S642.661,486.84,640.498,481.914z');
}
.trd11 {
clip-path: path('M526.49,442.734c1.02,1.018,1.02,2.662,0.004,3.676c-1.014,1.02-2.662,1.02-3.679,0c-1.017-1.014-1.017-2.658,0-3.676C523.832,441.719,525.48,441.719,526.49,442.734z');
}
.trd12 {
clip-path: path('M578.852,414.219c1.016,1.014,1.016,2.666,0.003,3.68c-1.017,1.016-2.665,1.016-3.679,0c-1.012-1.014-1.012-2.666,0.004-3.68C576.19,413.207,577.839,413.207,578.852,414.219z');
}
.trd13 {
clip-path: path('M613.357,469.627c1.017,1.016,1.017,2.666,0,3.678c-1.017,1.018-2.666,1.018-3.683,0c-1.013-1.012-1.013-2.662,0.004-3.678C610.691,468.613,612.341,468.613,613.357,469.627z');
}
.trd14 {
clip-path: path('M672.414,433.303c1.017,1.012,1.017,2.662,0.004,3.674c-1.013,1.018-2.662,1.018-3.679,0c-1.013-1.012-1.013-2.662,0-3.674C669.756,432.285,671.405,432.281,672.414,433.303z');
}
.trd15 {
clip-path: path('M707.32,420.715c1.02,1.02,1.02,2.67,0.004,3.682c-1.013,1.014-2.658,1.014-3.679,0c-1.013-1.012-1.013-2.662,0.004-3.682C704.666,419.703,706.311,419.703,707.32,420.715z');
}
.trd16 {
clip-path: path('M682.769,456.031c1.465,1.465,1.465,3.842,0,5.303c-1.462,1.469-3.838,1.469-5.307,0c-1.457-1.461-1.457-3.838,0-5.303C678.932,454.57,681.308,454.57,682.769,456.031z');
}
.trd17 {
clip-path: path('M646.998,462.881c1.461,1.465,1.461,3.842,0,5.303c-1.465,1.461-3.841,1.461-5.299,0c-1.469-1.461-1.469-3.842,0-5.303C643.157,461.42,645.533,461.42,646.998,462.881z');
}
.trd18 {
clip-path: path('M646.466,453.824c1.086,1.086,1.082,2.848,0,3.936c-1.088,1.086-2.843,1.086-3.934,0c-1.081-1.088-1.081-2.85,0-3.936C643.62,452.736,645.378,452.736,646.466,453.824z');
}
.trd19 {
clip-path: path('M647.382,446.518c0.875,0.877,0.875,2.297,0,3.174c-0.876,0.875-2.301,0.875-3.176,0c-0.872-0.877-0.872-2.297,0-3.174C645.081,445.643,646.506,445.643,647.382,446.518z');
}
.trd20 {
clip-path: path('M648.213,440.355c0.586,0.578,0.586,1.522,0,2.105c-0.578,0.582-1.519,0.582-2.104,0c-0.582-0.584-0.582-1.527,0-2.105C646.69,439.77,647.635,439.77,648.213,440.355z');
}
.trd21 {
clip-path: path('M650.119,435.406c0.395,0.391,0.391,1.027,0,1.418c-0.387,0.398-1.03,0.398-1.421,0c-0.398-0.391-0.398-1.027,0-1.418C649.089,435.014,649.732,435.014,650.119,435.406z');
}
.trd22 {
clip-path: path('M567.86,435.451c-0.015-0.022,0.199,0.188,0.477,0.365c0.174,0.098,0.665,0.297,1.291,0.271c1.251,0.022,3.277-1.043,3.936-3.4c0.347-1.113,0.423-2.59,0.039-3.859c-0.368-1.27-1.204-2.586-2.412-3.482c-1.197-0.912-2.724-1.469-4.275-1.447c-1.559-0.008-3.078,0.654-4.308,1.699l-0.843,0.803l-0.839,1.049c-0.398,0.623-0.789,1.311-1.009,2.063c-0.467,1.473-0.409,3.049,0.083,4.479c0.459,1.432,1.309,2.709,2.253,3.695c0.926,0.93,2.195,1.588,3.303,2.025c2.333,0.896,4.51,1.068,5.996,1.1c0.749,0.016,1.335-0.014,1.722-0.039c0.369-0.037,0.575-0.055,0.575-0.055l0.322,2.561c0,0-0.257,0.021-0.734,0.059c-0.456,0.021-1.117,0.043-1.953,0.014c-1.664-0.072-4.095-0.289-6.832-1.397c-1.393-0.603-2.804-1.33-4.069-2.639c-1.187-1.277-2.166-2.826-2.724-4.645c-0.586-1.795-0.64-3.9,0.011-5.824c0.304-0.961,0.811-1.848,1.418-2.719l0.875-1.053c0.431-0.438,0.756-0.705,1.14-1.06c1.537-1.27,3.563-2.111,5.599-2.068c2.029,0.014,3.954,0.77,5.43,1.945c1.497,1.176,2.51,2.785,2.969,4.504c0.445,1.738,0.315,3.32-0.137,4.795c-0.463,1.451-1.342,2.666-2.388,3.404c-1.038,0.744-2.17,1.057-3.117,1.063c-0.962,0-1.686-0.246-2.229-0.6c-0.423-0.297-0.524-0.428-0.546-0.434L567.86,435.451z');
}
.trd23 {
clip-path: path('M568.157,437.482c1.743,0.432,3.501-0.629,3.932-2.371c0.43-1.744-0.634-3.502-2.381-3.928c-1.732-0.428-3.497,0.635-3.92,2.371C565.354,435.299,566.421,437.057,568.157,437.482z');
}
.trd24 {
clip-path: path('M481.239,417.865c0,0,1.711,0.332,3.465,2.229c0.9,0.926,1.928,2.098,3.046,3.5c1.189,1.35,2.285,3.06,3.569,4.865c1.085,1.935,2.441,3.939,3.411,6.314c0.499,1.18,1.016,2.393,1.544,3.629c0.401,1.287,0.732,2.633,1.11,3.992c0.803,2.713,1.067,5.451,1.696,8.225c0.558,2.76,1.204,5.535,1.985,8.24c0.861,2.633,1.787,5.316,3.245,7.4l0.51,0.82l0.64,0.654c0.456,0.398,0.781,0.977,1.32,1.246c0.514,0.295,1.002,0.629,1.494,0.969c0.326,0.152,1.287,0.527,1.563,0.484c1.942,0.34,4.191-0.984,5.332-2.846c1.207-1.828,1.489-4.146,0.737-5.863c-0.344-0.908-0.933-1.523-1.671-2.203c-0.629-0.496-1.392-0.891-2.123-1.061c-1.509-0.289-2.887,0.203-3.732,0.854c-0.891,0.652-1.212,1.443-1.205,1.83c0,0.391,0.163,0.508,0.119,0.529l-1.516,0.816c0.059,0-0.351-0.506-0.264-1.49c0.091-0.977,0.785-2.086,1.971-2.904c1.15-0.857,2.927-1.436,4.92-1.066c0.987,0.217,1.941,0.654,2.864,1.381c0.727,0.623,1.628,1.553,2.098,2.662c1.122,2.215,0.893,5.145-0.438,7.545c-1.233,2.402-3.874,4.768-7.462,4.522c-3.371-0.252-5.917-2.59-7.747-5.078c-1.909-2.543-2.738-5.49-3.679-8.31c-0.799-2.852-1.443-5.723-1.979-8.551c-0.597-2.777-0.89-5.65-1.591-8.15c-0.304-1.266-0.608-2.514-0.904-3.728c-0.46-1.176-0.911-2.322-1.349-3.443c-0.829-2.264-2.08-4.217-3.043-6.094c-1.172-1.766-2.098-3.49-3.179-4.852c-1.005-1.41-1.932-2.6-2.745-3.543C481.674,419.482,481.239,417.865,481.239,417.865L481.239,417.865z');
}
.trd25 {
clip-path: path('M494.911,436.797c0,0-0.514,4.709-0.94,12.992c-0.238,4.137-0.326,9.172-0.083,14.904c0.126,1.422,0.253,2.883,0.387,4.391c0.142,1.508,0.575,2.945,0.854,4.478c0.376,1.414,1.103,3.049,1.66,4.621c0.76,1.459,1.443,2.963,2.358,4.385c3.671,5.797,10.416,9.617,18.226,11.107c7.806,1.635,16.366,1.295,25.474,2.213c4.547,0.457,9.269,1.434,13.795,3.324c4.528,1.893,8.76,4.785,12.279,8.359c3.526,3.549,6.441,7.74,8.182,12.967c1.686,5.01,1.924,10.5,0.81,15.603c-2.108,10.297-8.879,19.057-17.483,24.193c-8.608,5.057-19.011,6.531-28.114,4.348c-4.561-1.115-8.88-3.111-12.37-6.072c-3.504-2.934-6.105-6.826-7.379-10.988l-0.473-1.56c-0.156-0.68-0.186-1.049-0.279-1.584l-0.253-1.486l-0.072-1.639c-0.145-2.199,0.246-4.26,0.828-6.279c1.316-3.996,4.246-7.164,7.542-9.027c3.342-1.852,6.981-2.629,10.412-2.568c1.736,0.105,3.35,0.275,4.995,0.848c1.357,0.42,3.085,1.316,4.192,2.314c4.836,4.043,6.178,10.02,5.19,14.338c-1.041,4.445-3.988,6.98-5.982,8.098c-0.958,0.697-1.848,0.916-2.372,1.211c-0.554,0.25-0.835,0.377-0.835,0.377l-0.602-1.613c0,0,0.258-0.119,0.756-0.348c0.464-0.273,1.295-0.477,2.131-1.105c1.798-1.014,4.268-3.221,5.14-7.01c0.828-3.66-0.361-9.035-4.658-12.406c-4.188-3.387-11.404-3.35-17.166-0.072c-2.832,1.703-5.204,4.412-6.239,7.77c-0.445,1.678-0.748,3.521-0.582,5.287l0.068,1.346l0.282,1.478c0.091,0.453,0.188,1.094,0.278,1.393l0.441,1.354c2.329,7.303,9.447,13.027,17.777,14.467c8.308,1.633,17.393-0.223,24.609-5.176c7.15-4.879,12.445-12.717,14.088-21.103c0.759-4.203,0.637-8.504-0.583-12.508c-1.088-3.834-3.609-7.629-6.488-10.865c-5.707-6.619-13.867-10.221-22.433-11.582c-4.281-0.744-8.611-1.033-12.923-1.453c-2.138-0.195-4.261-0.42-6.391-0.807c-2.105-0.428-4.222-0.504-6.243-1.139c-4.065-0.992-8.037-2.316-11.437-4.518c-0.839-0.555-1.679-1.104-2.507-1.65c-0.719-0.691-1.435-1.375-2.141-2.051c-1.526-1.266-2.435-2.988-3.559-4.475c-0.977-1.588-1.715-3.301-2.475-4.887c-0.546-1.648-1.164-3.088-1.605-4.811c-0.279-1.662-0.717-3.295-0.825-4.857c-0.101-1.559-0.195-3.074-0.289-4.543c-0.102-5.848,0.087-10.918,0.311-15.086c0.463-8.326,1.002-13.07,1.002-13.07L494.911,436.797z');
}
.trd26 {
clip-path: path('M526.352,523.877c0,0,0.93-0.391,2.648-0.867c1.732-0.484,4.33-1.022,7.693-1.217c3.356-0.18,7.53-0.025,12.12,1.23c4.59,1.266,9.585,3.328,14.298,7.096c4.565,3.807,8.558,9.035,11.067,15.408c2.536,6.309,3.288,14.049,0.908,21.268c-0.582,1.791-1.299,3.545-2.17,5.238c-0.482,0.854-0.84,1.623-1.462,2.531l-1.493,2.236c-2.315,3.176-5.176,5.941-8.471,8.072c-6.648,4.387-14.722,5.652-22.255,5.652c-7.632,0.059-15.003-1.291-22.18-0.838c-7.183,0.264-14.182,2.246-19.795,6.182c-2.82,1.938-5.41,4.108-7.277,6.748c-1.902,2.606-3.125,5.621-3.299,8.631c-0.162,3.012,0.815,5.932,2.551,8.195c1.682,2.246,4.235,3.627,6.821,3.986c5.276,0.791,10.128-2.445,11.552-6.453c1.588-4.063,0.532-8.174-1.811-9.996c-2.297-1.94-4.923-1.846-6.271-1.318c-0.706,0.262-1.183,0.594-1.48,0.836c-0.289,0.258-0.438,0.391-0.438,0.391l-1.219-1.219c0,0,0.206-0.174,0.59-0.514c0.404-0.318,1.049-0.748,1.985-1.078c1.815-0.672,5.103-0.701,7.862,1.711c1.357,1.168,2.449,2.963,2.829,5.06c0.38,2.105,0.138,4.398-0.737,6.641c-1.604,4.58-7.094,8.297-13.072,7.436c-2.94-0.383-5.898-1.949-7.867-4.535c-1.941-2.496-3.1-5.822-2.93-9.223c0.337-6.922,5.387-12.904,11.209-16.768c5.871-4.109,13.217-6.367,20.649-6.924c7.483-0.658,14.977,0.416,22.24-0.078c7.237-0.389,14.472-1.953,20.005-5.998c2.785-1.982,5.063-4.488,6.991-7.104l1.454-2.26c0.388-0.56,0.792-1.412,1.169-2.102c0.726-1.48,1.316-3.002,1.797-4.535c1.823-6.172,1.328-12.627-0.748-18.213c-2.076-5.602-5.596-10.332-9.506-13.775c-3.849-3.451-8.423-5.672-12.489-7c-4.123-1.305-7.932-1.826-11.078-1.916c-3.158-0.094-5.643,0.25-7.31,0.488c-1.692,0.275-2.521,0.52-2.521,0.52L526.352,523.877z');
}
.trd27 {
clip-path: path('M477.756,515.644c0,0-0.531-0.527-1.32-1.563c-0.795-1.055-1.906-2.662-2.807-4.998c-0.908-2.293-1.525-5.506-0.506-8.984c1.056-3.4,3.584-6.764,7.324-8.955c3.66-2.199,8.558-3.357,13.455-2.178c2.423,0.586,4.811,1.715,6.843,3.397c1.997,1.717,3.642,3.873,4.883,6.26c0.391,0.818,0.495,1.252,0.767,1.9c0.25,0.561,0.445,1.207,0.55,1.971c0.362,1.475,0.358,2.883,0.333,4.293c-0.228,2.789-0.908,5.523-1.877,8.076c-1.899,5.137-4.416,9.918-6.246,14.889c-1.816,4.947-2.861,10.102-2.337,15.082l0.028,0.471c-0.051-0.17,0.051,0.231,0.072,0.318l0.221,0.969l0.441,1.938c0.449,1.115,0.915,2.084,1.407,3.125c0.705,0.967,1.284,2.012,2.069,2.902c0.854,0.832,1.572,1.775,2.506,2.51c3.6,3.074,7.918,5.113,12.2,6.289c4.274,1.158,8.485,1.82,12.396,1.754c3.902,0.092,7.465-0.416,10.571-0.977c3.093-0.693,5.755-1.42,7.86-2.285c2.162-0.705,3.711-1.602,4.811-2.109c1.092-0.531,1.674-0.813,1.674-0.813l2.138,3.959c0,0-0.637,0.301-1.834,0.861c-1.212,0.535-2.923,1.481-5.28,2.211c-2.301,0.9-5.209,1.652-8.564,2.344c-3.375,0.557-7.231,1.033-11.448,0.875c-4.224-0.008-8.782-0.781-13.433-2.127c-4.648-1.367-9.4-3.668-13.477-7.26c-1.045-0.858-1.896-1.967-2.857-2.955c-0.897-1.059-1.588-2.307-2.384-3.469c-0.622-1.305-1.241-2.752-1.707-4.098l-0.413-1.938l-0.205-0.977c-0.044-0.24-0.055-0.152-0.116-0.658l-0.025-0.529c-0.514-5.668,0.785-11.361,2.778-16.512c1.996-5.16,4.615-9.957,6.484-14.789c0.963-2.408,1.581-4.853,1.823-7.256c0.047-1.207,0.054-2.395-0.185-3.443c0-0.982-0.789-2.51-1.066-3.385c-1.071-2.135-2.467-4.016-4.152-5.523c-1.723-1.461-3.732-2.449-5.813-2.99c-4.182-1.094-8.536-0.156-11.799,1.736c-3.316,1.852-5.599,4.832-6.525,7.678c-0.911,2.912-0.448,5.676,0.34,7.758c0.767,2.101,1.773,3.617,2.485,4.59c0.73,0.996,1.164,1.426,1.164,1.426L477.756,515.644z');
}
.trd28 {
clip-path: path('M570.519,575.332c0,0-0.174,0.549-0.734,1.725c-0.55,1.147-1.353,2.662-2.59,4.488c-0.629,0.896-1.287,1.932-2.079,2.98c-0.832,1.014-1.732,2.109-2.694,3.285c-0.919,1.215-2.127,2.273-3.277,3.52c-1.187,1.203-2.373,2.541-3.802,3.721c-2.756,2.467-5.743,5.137-9.184,7.596c-3.323,2.641-7.027,5.121-10.796,7.654c-3.802,2.527-7.881,5.049-11.921,7.559c-2.051,1.244-3.968,2.623-5.957,3.953c-1.791,1.545-3.805,2.846-5.4,4.641l-2.51,2.535c-0.814,0.879-1.537,1.842-2.308,2.756c-1.534,1.838-3.042,3.686-4.388,5.664c-1.403,1.949-2.799,3.881-4.174,5.791c-1.414,1.873-2.745,3.75-4.492,5.447c-3.262,3.332-7.375,6.238-12.164,6.189c-2.354-0.156-4.527-1.191-6.105-2.717c-1.584-1.545-2.444-3.553-2.835-5.516c-0.401-2,0.058-4.025,0.897-5.701c0.51-0.719,1.128-1.656,1.718-2.102c0.524-0.539,1.212-1.049,1.913-1.525c1.385-0.861,2.875-1.396,4.354-1.469c1.479-0.043,2.836,0.398,3.87,1.078c2.123,1.352,2.768,3.596,2.615,4.963c-0.191,1.416-0.756,2.002-0.688,2.025l-1.469-0.904c-0.05-0.02,0.311-0.402,0.424-1.273c0.076-0.824-0.308-2.352-1.855-3.32c-1.469-1.049-3.993-1.07-6.235,0.447c-0.524,0.369-1.081,0.754-1.657,1.346c-0.669,0.543-0.85,1.049-1.338,1.656c-0.597,1.281-0.987,2.832-0.637,4.449c0.333,1.578,1.045,3.215,2.318,4.432c1.281,1.189,2.948,1.963,4.8,2.086c3.762,0.037,7.526-2.498,10.5-5.627c1.537-1.49,2.89-3.412,4.29-5.303c1.353-1.91,2.727-3.848,4.104-5.801c1.339-2.004,2.864-3.91,4.417-5.813c0.788-0.945,1.518-1.935,2.351-2.855l2.597-2.668c1.65-1.873,3.74-3.277,5.609-4.904c2.025-1.383,4.029-2.848,6.07-4.102c4.076-2.594,8.004-5.065,11.775-7.625c3.791-2.59,7.394-5.053,10.609-7.654c3.355-2.443,6.246-5.078,8.904-7.504c1.389-1.162,2.514-2.463,3.653-3.639c1.1-1.213,2.271-2.254,3.129-3.422c0.907-1.129,1.765-2.188,2.55-3.164c0.748-1.006,1.349-1.977,1.939-2.822c1.14-1.699,1.892-3.176,2.314-4.08c0.431-0.889,0.633-1.5,0.633-1.5L570.519,575.332z');
}
.trd29 {
clip-path: path('M514.685,470.68c-0.003-0.021,0.119,0.318,0.3,0.607c0.148,0.326,0.492,0.857,0.974,1.563c0.482,0.688,1.153,1.494,1.96,2.387c0.883,0.836,1.794,1.867,3.035,2.756c0.604,0.463,1.204,0.977,1.873,1.459c0.701,0.438,1.422,0.893,2.17,1.363c1.439,1.012,3.19,1.717,4.912,2.6c1.715,0.883,3.707,1.631,5.609,2.486c1.928,0.855,3.885,1.729,5.852,2.6c1.939,0.943,3.878,1.893,5.783,2.82c1.856,1.068,3.718,2.029,5.443,3.107c1.679,1.166,3.382,2.156,4.844,3.336c1.432,1.211,2.854,2.273,4.036,3.406c1.125,1.19,2.159,2.279,3.074,3.248c0.923,0.963,1.49,2.004,2.072,2.756c1.104,1.559,1.736,2.453,1.736,2.453l-1.461,0.908c0,0-0.633-0.83-1.743-2.283c-0.579-0.695-1.146-1.664-2.055-2.551c-0.904-0.893-1.928-1.895-3.038-2.99c-1.165-1.041-2.568-2.012-3.968-3.125c-1.433-1.078-3.122-1.982-4.764-3.041c-1.704-0.988-3.548-1.863-5.375-2.83c-1.896-0.846-3.826-1.703-5.758-2.564c-1.964-0.795-3.935-1.59-5.87-2.371c-1.961-0.797-3.877-1.439-5.758-2.318c-1.874-0.873-3.748-1.566-5.364-2.611c-0.825-0.482-1.632-0.949-2.401-1.4c-0.752-0.5-1.447-1.041-2.123-1.537c-1.4-0.938-2.5-2.068-3.53-2.992c-0.97-1.002-1.787-1.912-2.398-2.734c-0.607-0.816-1.077-1.5-1.378-2.082c-0.332-0.564-0.38-0.73-0.404-0.754L514.685,470.68z');
}
.trd30 {
clip-path: path('M573.835,517.211c-0.061-0.014,0.923,0.234,2.322,0.828c1.433,0.602,3.477,1.592,5.823,3.244c2.333,1.65,4.963,3.998,7.307,7.213c2.347,3.201,4.336,7.287,5.486,11.957c1.169,4.467,2.116,9.422,4.409,13.764c1.143,2.166,2.908,3.58,4.908,3.037c2.322-0.441,3.508-2.625,3.11-5.027c-0.351-2.381-2.376-4.518-4.626-5.613c-2.554-1.209-5.208-0.934-7.863,0.166c-5.157,2.395-9.1,7.44-11.433,12.912c-2.229,5.574-3.982,11.586-6.109,17.238c-2.076,5.701-4.282,11.281-6.93,16.457c-2.611,5.195-5.66,9.977-9.154,14.041c-3.498,4.07-7.277,7.414-11.057,10.193c-3.802,2.713-7.676,4.76-11.44,5.721c-3.751,0.992-7.331,0.76-10.016-0.201c-2.702-0.949-4.485-2.453-5.516-3.613c-1.038-1.162-1.378-2.049-1.378-2.045l1.58-0.688c0,0,0.203,0.602,1.074,1.611c0.857,0.986,2.402,2.336,4.789,3.199c2.362,0.879,5.578,1.144,9.101,0.266c3.519-0.857,7.284-2.754,10.948-5.438c3.643-2.69,7.375-6.033,10.742-9.996c3.389-3.969,6.352-8.652,8.893-13.773c2.579-5.1,4.738-10.627,6.782-16.305c2.102-5.686,3.758-11.518,6.065-17.369c2.495-5.703,6.318-11.234,12.196-14.127c1.49-0.637,3.063-1.162,4.73-1.244c1.563-0.113,3.599,0.252,4.832,0.838c3.063,1.385,5.585,3.914,6.258,7.315c0.321,1.652,0.134,3.475-0.749,5.027c-0.416,0.781-1.053,1.447-1.758,1.978c-0.333,0.281-0.821,0.484-1.233,0.705c-0.412,0.184-0.688,0.23-1.03,0.353c-1.77,0.484-3.643,0.258-5.115-0.723c-1.435-0.941-2.383-2.207-3.106-3.436c-2.771-4.992-3.754-10.012-5.042-14.389c-1.183-4.258-3.078-7.852-5.237-10.631c-2.155-2.787-4.532-4.777-6.619-6.166c-2.098-1.389-3.909-2.199-5.136-2.676c-1.276-0.486-1.801-0.586-1.852-0.609L573.835,517.211z');
}
.trd31 {
clip-path: path('M479.261,540.389c0,0,2.847-0.344,12.081,5.848c0,0-1.523-8.383-8.565-10.887c-7.057-2.51-13.925,1.188-13.925,1.188s4.112,1.594,6.475,5.779c2.344,4.195,4.955,9.303,9.563,9.715c4.615,0.412,7.049-1.354,7.049-1.354S484.878,542.809,479.261,540.389z');
}
.trd32 {
clip-path: path('M548.807,513.004c0,0,2.285-1.721,13.386-1.02c0,0-5.541-6.48-12.884-5.1c-7.363,1.381-11.429,8.033-11.429,8.033s4.351-0.691,8.496,1.74c4.134,2.438,8.966,5.541,13.158,3.58c4.188-1.967,5.403-4.717,5.403-4.717S554.879,512.273,548.807,513.004z');
}
.trd33 {
clip-path: path('M528.476,598.188c0,0,0.464-1.816,6.435-5.979c0,0-5.473-1.065-8.677,2.639c-3.204,3.705-2.579,8.775-2.579,8.775s1.946-2.135,5.06-2.576c3.117-0.438,6.85-0.816,8.195-3.529c1.346-2.717,0.847-4.619,0.847-4.619S531.275,595.34,528.476,598.188z');
}
.trd34 {
clip-path: path('M511.462,523.027c0,0-1.805-0.459-8.257,2.752c0,0,1.686-5.258,6.42-6.279c4.738-1.023,8.84,1.922,8.84,1.922s-2.771,0.68-4.634,3.172c-1.862,2.498-3.964,5.563-6.959,5.447c-2.995-0.123-4.413-1.461-4.413-1.461S507.653,524.115,511.462,523.027z');
}
.trd35 {
clip-path: path('M545.283,577.129c0,0,1.486,2.037,11.028,4.254c0,0-6.311,4.055-12.156,1.031c-5.845-3.023-7.599-9.658-7.599-9.658s3.493,1.685,7.599,0.68c4.108-1.004,8.962-2.4,11.993,0.313c3.035,2.715,3.371,5.346,3.371,5.346S550.213,579.281,545.283,577.129z');
}
.trd36 {
clip-path: path('M506.105,463.119c1.016,1.014,2.666,1.014,3.682,0c1.013-1.016,1.013-2.66,0-3.678c-1.016-1.016-2.666-1.016-3.682,0C505.093,460.459,505.093,462.103,506.105,463.119z');
}
.trd37 {
clip-path: path('M477.594,515.486c1.016,1.012,2.665,1.012,3.674,0c1.017-1.018,1.017-2.67,0-3.682c-1.009-1.014-2.662-1.014-3.674,0C476.584,512.816,476.584,514.469,477.594,515.486z');
}
.trd38 {
clip-path: path('M533.004,549.984c1.014,1.012,2.658,1.012,3.679,0c1.013-1.014,1.013-2.662,0-3.676c-1.02-1.019-2.665-1.019-3.679,0C531.984,547.322,531.984,548.971,533.004,549.984z');
}
.trd39 {
clip-path: path('M496.676,609.045c1.014,1.016,2.666,1.016,3.675,0.004c1.017-1.018,1.017-2.662,0-3.682c-1.009-1.014-2.661-1.014-3.675,0C495.66,606.387,495.66,608.031,496.676,609.045z');
}
.trd40 {
clip-path: path('M484.09,643.951c1.016,1.022,2.662,1.022,3.678,0.004c1.017-1.016,1.017-2.666,0-3.678c-1.016-1.014-2.662-1.014-3.678,0C483.076,641.289,483.076,642.94,484.09,643.951z');
}
.trd41 {
clip-path: path('M519.404,619.396c1.465,1.465,3.842,1.465,5.299,0.004c1.469-1.469,1.469-3.842,0-5.307c-1.457-1.465-3.834-1.465-5.299,0.004C517.943,615.559,517.943,617.932,519.404,619.396z');
}
.trd42 {
clip-path: path('M526.252,583.625c1.468,1.465,3.844,1.465,5.302,0.004c1.469-1.465,1.469-3.842,0-5.307c-1.458-1.465-3.834-1.465-5.302,0.004C524.794,579.787,524.794,582.164,526.252,583.625z');
}
.trd43 {
clip-path: path('M517.198,583.094c1.081,1.088,2.847,1.084,3.929,0c1.092-1.086,1.092-2.848,0.003-3.936c-1.085-1.086-2.851-1.086-3.932,0C516.109,580.246,516.109,582.008,517.198,583.094z');
}
.trd44 {
clip-path: path('M509.893,584.004c0.875,0.877,2.297,0.877,3.168,0c0.875-0.875,0.879-2.293,0-3.168c-0.871-0.875-2.293-0.875-3.168,0C509.018,581.709,509.014,583.129,509.893,584.004z');
}
.trd45 {
clip-path: path('M503.726,584.844c0.586,0.586,1.526,0.582,2.104,0c0.582-0.578,0.582-1.523,0-2.106c-0.578-0.586-1.522-0.586-2.104,0C503.146,583.318,503.146,584.266,503.726,584.844z');
}
.trd46 {
clip-path: path('M498.781,586.746c0.387,0.398,1.031,0.395,1.418,0c0.395-0.391,0.397-1.027,0-1.422c-0.387-0.391-1.031-0.391-1.418,0C498.383,585.719,498.383,586.356,498.781,586.746z');
}
.trd47 {
clip-path: path('M499.996,503.514c0,0.021,0.135,0.123,0.431,0.543c0.358,0.543,0.6,1.266,0.604,2.229c-0.012,0.947-0.322,2.078-1.067,3.121c-0.734,1.045-1.95,1.928-3.403,2.391c-1.473,0.449-3.057,0.574-4.797,0.137c-1.714-0.471-3.323-1.475-4.499-2.973c-1.175-1.479-1.931-3.404-1.946-5.432c-0.047-2.033,0.797-4.059,2.069-5.6c0.354-0.387,0.622-0.709,1.06-1.141l1.049-0.879c0.876-0.607,1.762-1.113,2.725-1.416c1.924-0.652,4.025-0.594,5.818-0.008c1.827,0.557,3.371,1.541,4.648,2.719c1.309,1.273,2.036,2.682,2.641,4.074c1.107,2.74,1.32,5.168,1.393,6.832c0.032,0.842,0.014,1.5-0.016,1.957c-0.031,0.477-0.057,0.73-0.057,0.73l-2.561-0.326c0,0,0.019-0.195,0.055-0.568c0.024-0.391,0.054-0.977,0.043-1.725c-0.036-1.482-0.202-3.66-1.1-5.996c-0.438-1.107-1.096-2.377-2.022-3.295c-0.991-0.951-2.271-1.799-3.704-2.254c-1.425-0.5-2.998-0.551-4.474-0.088c-0.753,0.219-1.436,0.615-2.065,1.006l-1.049,0.844l-0.799,0.842c-1.042,1.227-1.708,2.746-1.701,4.305c-0.024,1.549,0.532,3.074,1.443,4.272c0.897,1.211,2.214,2.043,3.487,2.412c1.266,0.383,2.745,0.311,3.855-0.029c2.358-0.664,3.425-2.688,3.403-3.934c0.025-0.631-0.174-1.123-0.271-1.295c-0.174-0.283-0.391-0.492-0.369-0.483L499.996,503.514z');
}
.trd48 {
clip-path: path('M500.861,504.787c0.426,1.74-0.637,3.502-2.377,3.928c-1.74,0.43-3.498-0.637-3.932-2.373c-0.427-1.738,0.637-3.5,2.377-3.928C498.673,501.984,500.427,503.051,500.861,504.787z');
}
.trd49 {
clip-path: path('M584.585,509.416c0.017,0.059,0.119,0.58,0.603,1.856c0.478,1.234,1.288,3.043,2.681,5.133c1.382,2.092,3.374,4.467,6.163,6.619c2.774,2.162,6.377,4.059,10.626,5.24c4.377,1.289,9.4,2.272,14.389,5.043c1.233,0.727,2.503,1.674,3.443,3.111c0.977,1.471,1.208,3.344,0.72,5.109c-0.127,0.348-0.174,0.623-0.358,1.031c-0.221,0.416-0.42,0.896-0.702,1.232c-0.531,0.707-1.196,1.346-1.985,1.758c-1.548,0.883-3.371,1.072-5.023,0.754c-3.393-0.68-5.925-3.197-7.31-6.266c-0.59-1.227-0.955-3.27-0.84-4.828c0.08-1.668,0.607-3.244,1.241-4.734c2.894-5.875,8.424-9.697,14.131-12.189c5.852-2.307,11.679-3.965,17.372-6.072c5.675-2.037,11.201-4.199,16.305-6.781c5.118-2.539,9.799-5.506,13.766-8.887c3.972-3.371,7.307-7.105,9.998-10.746c2.68-3.664,4.582-7.43,5.436-10.949c0.883-3.52,0.619-6.73-0.26-9.096c-0.865-2.391-2.214-3.936-3.201-4.793c-1.013-0.871-1.609-1.07-1.609-1.07l0.684-1.582c0,0,0.882,0.342,2.047,1.383c1.157,1.02,2.666,2.807,3.613,5.512c0.962,2.684,1.189,6.262,0.202,10.016c-0.966,3.766-3.013,7.635-5.726,11.439c-2.773,3.773-6.123,7.561-10.188,11.051c-4.065,3.494-8.851,6.551-14.041,9.162c-5.179,2.647-10.757,4.854-16.457,6.93c-5.656,2.119-11.664,3.881-17.237,6.106c-5.473,2.336-10.518,6.275-12.913,11.435c-1.096,2.648-1.378,5.307-0.166,7.857c1.096,2.256,3.227,4.281,5.609,4.625c2.405,0.402,4.59-0.785,5.028-3.1c0.542-2.008-0.872-3.771-3.035-4.918c-4.34-2.291-9.299-3.234-13.766-4.406c-4.666-1.15-8.753-3.139-11.954-5.486c-3.216-2.34-5.563-4.975-7.208-7.311c-1.66-2.34-2.648-4.387-3.252-5.822c-0.586-1.4-0.839-2.381-0.824-2.322L584.585,509.416z');
}
.trd50 {
clip-path: path('M603.762,415.891c0,0-0.34,2.842,5.849,12.08c0,0-8.381-1.525-10.891-8.572c-2.51-7.053,1.193-13.918,1.193-13.918s1.588,4.113,5.776,6.467c4.192,2.352,9.303,4.963,9.719,9.57c0.405,4.609-1.36,7.051-1.36,7.051S606.178,421.504,603.762,415.891z');
}
/* moves your front card decorations to the correct place */
.profile-outline {
position: absolute;
top: 0;
left: 0;
width: 450px;
height: 730px;
}
/* this might be redundant */
.profile-page-container-flexbox {
flex: 1;
flex-shrink: 1;
}
/* styles your pfp in your flip animation */
.profile-avatar-container {
transition: transform 0.8s;
transform-style: preserve-3d;
position: relative;
}
/* styles the front decorations in your flip animation */
.profile-outline {
transition: transform 0.8s;
transform-style: preserve-3d;
}
/* styles the back of your card in your flip animation */
.profile-info-stack-inner {
transition: transform 0.8s;
transform-style: preserve-3d;
position: absolute;
transform: rotateY(-180deg);
}
/* makes the card back flip when you hover */
.profile-info-stack:hover .profile-avatar-container,
.profile-info-stack:hover .profile-outline {
transform: rotateY(180deg);
}
/* makes the card front flip when you hover */
.profile-info-stack:hover .profile-info-stack-inner {
transform: rotateY(0deg);
}
/* makes sure the back of your card doesn't show up when you don't hover */
.profile-avatar-container,
.profile-info-stack-inner,
.profile-outline {
backface-visibility: hidden;
}
/* styles theback of your card and adds the diamond pattern */
.profile-info-stack-inner {
background-color: #940000;
width: 450px;
height: 730px;
border-radius: 60px;
border: 5px solid #bd0000;
background:
repeating-linear-gradient(60deg, #4d0000 0 4px, transparent 4px 30px),
repeating-linear-gradient(-60deg, #4d0000 0 4px, transparent 4px 30px);
background-color: #000000;
box-shadow:
inset 0 0 0 30px #000000,
inset 0 0 0 34px #4d0000,
0 0 50px rgba(70, 0, 0, 0.9);
}
/* styles your username */
.profile-title-heading {
color: #d10000;
margin: auto auto;
margin-top: 240px;
font-size: 60px;
font-family: Cinzel Decorative;
}
/* styles your follower count */
.profile-followers-count {
font-size: 20px;
font-family: Jim Nightshade;
margin: 0 auto;
color: #d10000;
}
/* removes the original name of your followers */
.profile-followers-count span:nth-child(2) {
font-size: 0px;
}
/* changes your followers' name */
.profile-followers-count span:nth-child(2):after {
font-size: 20px;
content: 'CARDHOLDERS IN THE RED COURT';
}
/* styles your badges (not fully tested because I don't have many badges) */
.css-hjkukh {
display: block;
filter: brightness(0) invert(18%) sepia(81%) saturate(4821%) hue-rotate(356deg) brightness(76%) contrast(123%);
margin: 0 auto;
padding: 1px;
height: auto;
}
/* styles the 'member since' text */
.profile-member-since-box {
margin-top: 0px;
display: block;
color: #d10000;
font-family: Jim Nightshade;
text-transform: uppercase;
margin: 0 auto;
}
/* styles the 'edit profile' button (just for fun) */
.css-1x04uxb {
border: 1px solid #d10000;
width: 80%;
margin: 0 auto;
color: #d10000;
}
/* ♠ ♦ ♣ ♥ end pfp section ♥ ♣ ♦ ♠ */
/* ♠ ♦ ♣ ♥ about me section ♥ ♣ ♦ ♠ */
/* defines the width of your description wrapper */
.description-wrapper {
padding-top: 50px;
width: 450px;
}
/* friends section */
/* defines the dimensions of the div that has all your friends */
.friends-wrapper-inner {
position: relative;
width: 430px;
height: 450px;
}
/* styles your friend cards */
.friend-card {
position: absolute;
top: 0;
width: 150px;
height: 450px;
transition: top 0.3s ease, transform 0.3s ease, z-index 0.3s ease;
}
/* this is a cover that stops the cards from glitching when you hover on two of them at the same time */
.friend-card-hover-cover {
position: absolute;
width: 430px;
height: 200px;
top: 250px;
}
/* positions your friend cards. */
.friend-card:nth-child(1) {
left: calc(0 * ((280px) / (7 - 1)));
}
.friend-card:nth-child(2) {
left: calc(1 * ((280px) / (7 - 1)));
}
.friend-card:nth-child(3) {
left: calc(2 * ((280px) / (7 - 1)));
}
.friend-card:nth-child(4) {
left: calc(3 * ((280px) / (7 - 1)));
}
.friend-card:nth-child(5) {
left: calc(4 * ((280px) / (7 - 1)));
}
.friend-card:nth-child(6) {
left: calc(5 * ((280px) / (7 - 1)));
}
.friend-card:nth-child(7) {
left: calc(6 * ((280px) / (7 - 1)));
}
/* add more friend card positions here */
/* positions your friend's pfp wrapper */
.friend-card-inner {
position: relative;
width: 150px;
height: 250px;
background-color: #000000;
border-radius: 20px;
border: 3px solid #bd0000;
padding: 20px;
}
/* moves the card up when you hover it */
.friend-card:hover {
top: -200px;
}
/* makes sure your friend's pfp is correctly placed */
.friend-card-inner img {
width: 100%;
height: 100%;
object-fit: cover;
}
/* adds a shadow to your friend's pfp */
.friend-card-inner::before {
content: "";
position: absolute;
inset: 0;
margin: 20px;
background:
linear-gradient(to bottom, rgba(10, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50px),
linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50px),
linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50px),
linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50px);
background-repeat: no-repeat;
background-size: 100% 50px, 100% 50px, 50px 100%, 50px 100%;
background-position: top, bottom, left, right;
pointer-events: none;
}
/* gives your friends' card a heart emoji */
.friend-card::before {
content: '♥';
position: absolute;
top: 70px;
left: 25px;
color: #bd0000;
z-index: 1;
transform: scale(200%);
font-size: 1em;
line-height: 1;
font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
display: inline-block;
}
/* gives your friends' card another heart emoji */
.friend-card-inner::after {
content: '♥';
position: absolute;
bottom: 70px;
right: 25px;
color: #bd0000;
font-size: 1em;
line-height: 1;
font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
display: inline-block;
transform: scale(200%);
}
/* styles your friend's name */
.friend-card-inner h1:nth-child(1) {
font-family: Cinzel Decorative;
color: #bd0000;
font-size: 20px;
position: relative;
top: 28px;
left: 18px;
font-weight: 600;
position: absolute;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
width: 110px;
pointer-events: none;
}
/* styles your friend name on the bottom */
.friend-card-inner h1:nth-child(3) {
display: block;
font-family: Cinzel Decorative;
font-weight: 600;
color: #bd0000;
font-size: 20px;
position: absolute;
bottom: 28px;
right: 18px;
transform: rotate(180deg);
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
width: 110px;
pointer-events: none;
}
/* end friends section */
/* other boxes in the description section */
/* styles the 'entering the red court' text */
.description-wrapper h3 {
font-size: 20px;
font-family: 'Jim Nightshade';
color: #ff3d3d;
overflow: hidden;
text-transform: uppercase;
font-weight: 300;
text-align: center;
}
/* styles the horizontal separator line */
.separator {
height: 1px;
margin-top: 2px;
border: 1.5px solid #bd0000;
box-shadow: 0 0 10px #bd0000;
}
/* styles the collapsed boxes in your description */
.section-wrapper {
border: 1px solid red;
margin-top: 10px;
padding: 10px;
position: relative;
background-color: rgb(0, 0, 0, 0.7);
width: 450px;
text-align: center;
}
/* gives the collapsed boxes a hover effect */
.section-wrapper:hover {
transition: all 0.3s ease;
background-color: rgb(70, 0, 0, 0.7);
}
/* styles the background of your boxes when they are uncollapsed */
.section-wrapper:focus-within {
background-color: rgb(70, 0, 0, 0.7);
}
/* styles the headings of your boxes (status, a word from the crown, etc) */
.section-wrapper h2 {
margin-top: 3px;
font-size: 20px;
font-family: 'Jim Nightshade';
color: #ff3d3d;
overflow: hidden;
text-transform: uppercase;
}
/* hides the text when your boxes are collapsed */
.section-wrapper p {
display: none;
}
/* styles and shows your text when you uncollapse your boxes */
.section-wrapper:focus-within p {
margin: 10px;
display: block;
font-size: 18px;
line-height: 20px;
font-family: alegreya sans sc;
color: #ffffff;
overflow: hidden;
height: 100%;
}
/* styles the 'allies' container when collapse */
.friends-wrapper {
border: 1px solid #ff3d3d;
margin-top: 10px;
position: relative;
background-color: rgb(0, 0, 0, 0.7);
width: 450px;
text-align: center;
max-height: 350px;
z-index: 0;
}
/* gives your 'allies' container a hover effect */
.friends-wrapper:hover {
background-color: rgb(70, 0, 0, 0.7);
transition: all 0.3s ease;
}
/* styles your 'allies' container when uncollapsed */
.friends-wrapper:focus-within {
border-image: linear-gradient(to bottom,
#ff3d3d 0%,
transparent 20%,
transparent 80%,
#ff3d3d 100%) 1;
background-color: rgb(70, 0, 0, 0.7);
transition: all 0.7s ease;
background: linear-gradient(to bottom,
rgb(70, 0, 0, 0.7) 0%,
transparent 20%,
transparent 80%,
rgb(70, 0, 0, 0.7) 100%);
}
/* styles the 'allies' title text */
.friends-wrapper h2 {
margin: 10px;
margin-top: 13px;
font-size: 20px;
font-family: 'Jim Nightshade';
color: #ff3d3d;
overflow: hidden;
text-transform: uppercase;
}
/* makes sure your friends container doesn't show when it's collapsed */
.friends-wrapper-inner {
display: none;
}
/* shows your friends' container when it's uncollapsed */
.friends-wrapper:focus-within .friends-wrapper-inner {
margin: 10px;
margin-top: 25px;
display: block;
font-size: 18px;
line-height: 20px;
font-family: alegreya sans sc;
color: #ffffff;
}
/* styles the links to your favourite creators*/
.favs-wrapper a {
color: white !important;
margin-right: 2px;
margin-left: 2px;
}
/* gives the link to your favourite creators a hover effect */
.favs-wrapper a:hover {
color: #bd0000 !important;
}
/* styles container of the buttons with the links to your external sites (like Kofi, Discord, Linktree, etc) */
.links-container {
display: flex;
gap: 12px;
width: 100%;
padding-top: 10px;
}
/* styles the individual buttons of your links */
.link-button {
flex: 1;
text-align: center;
padding-top: 3px;
background-color: rgb(0, 0, 0, 0.7);
border: 1px solid #ff3d3d;
color: #ff3d3d;
text-decoration: none;
text-transform: uppercase;
font-family: jim nightshade;
font-size: 20px;
transition: transform 0.15s ease, background 0.15s ease;
font-weight: 600;
}
/* gives your buttons a hover effect */
.link-button:hover {
background-color: rgb(70, 0, 0, 0.7);
color: #ff3d3d;
text-decoration: none;
text-transform: uppercase;
}
/* make your button go a little smaller when pressed (like a push effect) */
.link-button:active {
transform: scale(0.9);
}
/* end other boxes in the description section */
/* positions my credit box */
.css-credit h3 {
position: absolute;
font-size: 18px;
font-family: jim nightshade;
text-transform: uppercase;
font-weight: 400;
top: -25px;
left: 25px;
color: #bd0000;
}
/* styles the link to my profile */
.css-credit a {
color: #dedede;
}
/* gives the link to my profile a hover effect */
.css-credit a:hover {
color: #ffffff;
}
/* styles the 'options menu' (you won't see this on your own profile) */
.pp-uc-options-menu {
position: absolute;
background: rgb(0, 0, 0, 0);
width: 100px;
top: 745px;
color: #ff3d3d;
border-radius: 1px;
left: 0px;
transition: all 0s;
transition: background-color 0.3s ease;
border-radius: 1px;
background-color: rgb(0, 0, 0, 0.7) !important;
border: 1px solid red;
}
/* removes the three dots on the options menu */
.pp-uc-options-menu svg {
display: none;
}
/* gives your options menu a hover effect */
.pp-uc-options-menu:hover {
background-color: rgb(70, 0, 0, 0.7) !important;
}
/* I don't remember what this is for and I'm too lazy to check but it's probably important */
.css-yl8rnf {
display: none;
}
/* removes the original text in your follow button */
.pp-uc-follow-button span {
font-size: 0;
width: auto;
font-family: jim nightshade;
text-transform: uppercase;
}
/* changes your follow? button text to 'welcome, cardholder' */
.pp-uc-follow-button span::after {
margin-top: 1px;
content: "Welcome, Cardholder";
font-size: initial;
}
/* changes your unfollow? button text to 'farewell, wonderland' */
.pp-uc-follow-button[data-following="true"] span::after {
margin-top: 1px;
content: "Farewell, Wonderland";
font-size: initial;
}
/* styles your follow button */
.profile-uc-follow-button {
position: absolute;
width: 320px;
top: 745px;
color: #ff3d3d;
border-radius: 1px;
left: 130px;
position: absolute;
font-size: initial;
border-radius: 1px;
background: rgb(0, 0, 0, 0);
background-color: rgb(0, 0, 0, 0.7);
border: 1px solid #ff3d3d;
}
/* removes the background from the default follow button */
.profile-uc-follow-button::before {
display: none;
}
/* gives your follow button a hover effect */
.profile-uc-follow-button:hover {
background: rgba(70, 0, 0, 0.7);
border-radius: 1px;
transition: all 0.3s ease;
}
/* styles the general dropped down options menu */
.css-1f9crt2 {
background: #490000;
border: 1px solid #ff3d3d;
border-radius: 1px;
box-shadow: none;
transition: background 500ms;
z-index: 10;
font-family: jim nightshade !important;
text-transform: uppercase;
}
/* styles the individual boxes in your options menu */
.pp-uc-options-menu span {
font-family: jim nightshade;
text-transform: uppercase;
margin-top: 1px;
margin-left: 1px;
}
/* styles the text in the dropped down options menu */
.pp-uc-options-menu-item {
background: transparent !important;
color: #ff3d3d;
font-family: jim nightshade;
text-transform: uppercase;
transition: color 500ms;
}
.loading-screen h1 {
display: none;
}
/* ♠ ♦ ♣ ♥ end about me section ♥ ♣ ♦ ♠ */
/* ♠ ♦ ♣ ♥ bot cards header section ♥ ♣ ♦ ♠ */
/* gets rid of the middle section */
.profile-page-container-flex-box-flex {
width: 0px;
}
/* makes sure the bot card section adjusts */
.profile-page-container-flex-box {
width: 100%;
display: flex;
flex: 1;
}
/* might be redundant */
.profile-tabs-chakra-tabs {
width: 100%;
flex-shrink: 1;
}
/* styles the wrapper of the header */
.profile-tabs-wrapper {
width: 100%;
margin: auto;
background-color: rgb(0, 0, 0, 0);
border-color: #940000;
flex-shrink: 1;
min-width: 0px !important;
}
/* styles the 'pick your hand' section */
.profile-tabs-button {
font-size: 0px;
width: 100%;
margin: auto;
color: #940000 !important;
flex-shrink: 1;
}
/* makes the words 'pick your hand' */
.profile-tabs-button::after {
font-size: 20px;
content: 'PICK YOUR HAND';
font-family: 'Jim Nightshade';
color: #ff3d3d;
overflow: hidden;
white-space: nowrap;
}
/* removes the button cursor (since the button doesn't do anything) */
.profile-tabs-wrapper button {
cursor: default;
}
/* styles the red bar beneath it */
.profile-tabs-indicator {
width: 100% !important;
background: #940000;
box-shadow: 0 0 8px #ff0000;
}
/* might be redundant */
.profile-tabs-panels {
width: 100%;
min-width: 0px !important;
flex-shrink: 1;
}
/* styles the 'n cards in the deck' button */
.profile-badge-flex-outer {
border: none;
background-color: rgb(0, 0, 0, 0);
background: none;
box-shadow: none;
font-size: 20px;
font-family: Jim Nightshade;
text-transform: uppercase;
color: #ff3d3d;
}
/* removes the hover effects for 'n cards in the deck' */
.profile-badge-flex-outer:hover {
color: #ff3d3d;
}
/* removes the original n 'characters' text */
.profile-badge-total-text {
font-size: 0px;
}
/* moves the 'n cards in the deck' text up a little */
.character-list-pagination-box {
align-self: flex-start;
position: relative;
top: 5px;
}
/* actually makes the text 'cards in the deck' */
.profile-badge-total-text:after {
font-size: 20px;
content: 'cards in the deck';
}
/* makes the search bar's wrapper wider */
.profile-filters-flex-outer {
width: 100%;
}
/* makes the search bar wider */
.profile-filters-flex-inner-hassearchfilter {
height: 40px;
flex-grow: 1;
}
/* hides the original search input placeholder */
.profile-character-search-input::placeholder {
opacity: 0;
}
/* styles the search input placeholder */
.profile-character-search-input {
position: relative;
overflow: hidden;
width: 100%;
border-radius: 1px;
border: 3px solid #520000;
min-width: 0px;
caret-color: white;
}
/* adds the new placeholder text */
.profile-character-search-input-group::after {
content: "SEARCH THE DECK..." !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: "Jim Nightshade", serif;
font-weight: 400;
font-style: normal;
color: #ff3d3d;
display: block;
width: 100%;
}
/* styles the back of the search bar */
.pp-fl-search-input,
.pp-fl-search-input:is(:hover, :focus) {
outline: none;
box-shadow: none;
border: 3px solid #940000;
background: rgba(0, 0, 0, 0.7);
border-radius: 0;
}
/* styles the border of the filter button */
.profile-filter-button {
border: 3px solid #940000;
background: rgba(0, 0, 0, 0.7);
border-radius: 0;
}
/* colours the svg of the filter button */
.profile-filter-button svg {
filter: brightness(0%) invert(9%) sepia(62%) saturate(6115%) hue-rotate(1deg) brightness(103%) contrast(116%);
stroke-width: 1;
}
/* gives the filter button a hover effect */
.profile-filter-button:hover {
background: rgba(70, 0, 0, 0.7);
}
/* styles the filters popup section outline */
.css-1dljitb {
border: 1px solid white;
border-radius: 1px;
background-color: #490000 !important;
}
/* changes the heading font of the filters popup */
.css-dcyl1x {
font-family: cinzel
}
/* styles the tags */
._collapsedContainer_1lgbq_78 button {
border: 1px solid white;
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(11%) sepia(53%) saturate(7458%) hue-rotate(359deg) brightness(98%) contrast(117%);
}
/* styles the expand buttons */
._expandButton_1lgbq_153,
._navigationButton_1lgbq_104,
.css-lyo4r5 {
background-color: rgb(0, 0, 0, 0) !important;
}
/* changes the colour of the arrow symbols of the expand buttons */
._expandButton_1lgbq_153 svg,
._navigationButton_1lgbq_104 svg,
.css-lyo4r5 svg {
filter: brightness(0%) invert(100%);
}
/* changes the colour of the left fading gradient */
._gradientLeft_1lgbq_19 {
background: linear-gradient(270deg, transparent 0%, #490000 50%, #490000 50%, #490000 100%);
}
/* changing the colour of the right fading gradient */
._gradientRight_1lgbq_36 {
background: linear-gradient(90deg, transparent 0%, #490000 50%, #490000 50%, #490000 100%);
}
/* gives the button a hover effect to make it more readable */
._collapsedContainer_1lgbq_78 button:hover {
filter: none;
transition: border-color 0.3s;
border: 1px solid white;
border-color: color-mix(in srgb, white 60%, transparent);
color: white;
}
/* credit to @tigerdropped for the class names of the sort section! I could not rip them out myself if my life depended on it it was so grgrgrgr
link to their complete template: https://pastebin.com/9U0zNZc6 */
/* styles the outline of sort section dropdown */
:is(.default, .dark, .transparent, .css-b62m3t-container) .react-select__control {
outline: none;
box-shadow: none;
border-radius: 0 !important;
border: 3px solid #940000 !important;
font-family: Jim Nightshade;
text-transform: uppercase;
font-weight: 400;
color: #ff3d3d;
}
/* gives a hover effect to the dropdown */
:is(.default, .dark, .transparent, .css-b62m3t-container) .react-select__control:hover {
outline: none;
box-shadow: none;
border-radius: 0 !important;
border: 3px solid #940000 !important;
background: rgba(70, 0, 0, 0.7) !important;
}
/* styles the text in the collapsed dropdown */
:is(.default, .dark, .transparent, .css-b62m3t-container) .react-select__single-value {
color: #ff3d3d;
}
/* removes the line between the text and the arrow */
:is(.default, .dark, .transparent, .css-b62m3t-container) .react-select__indicator-separator {
display: none;
}
/* changes the colour of the arrow svg */
:is(.default, .dark, .transparent, .css-b62m3t-container) svg {
color: #940000;
transition: 500ms;
}
/* makes arrow rotate 180 degrees when you press it */
:is(.default, .dark, .transparent, .css-b62m3t-container):has(.css-qr46ko) svg {
transform: rotateX(180deg);
}
/* changes the background of the dropdown section */
:is(.default, .dark, .transparent, .css-b62m3t-container) .react-select__menu {
width: auto;
text-align: center;
background: black;
border-radius: 0;
}
/* removes the additional border around the dropdown */
.react-select__menu {
border: none !important;
}
/* gives the dropdown menu the border we want */
.css-qr46ko {
border: 3px solid #940000 !important;
outline: 0px solid white;
width: 120px;
padding: 0;
box-shadow: none;
}
/* styles the dropdown menu background colour */
.css-13cymwt-control {
outline: none;
box-shadow: none;
border-radius: 0 !important;
border: 3px solid #940000 !important;
background: rgba(0, 0, 0, 0.7) !important;
}
/* dropdown menu's background when it's selected */
.css-13cymwt-control:active {
outline: none;
box-shadow: none;
border-radius: 0 !important;
border: 3px solid #940000 !important;
background: rgba(70, 0, 0, 0.7) !important;
}
/* dropdown menu's background when it's selected but collapsed */
.transparent .react-select__control {
background: rgba(0, 0, 0, 0.7) !important;
}
/* styles the text inside the dropdown */
:is(.default, .dark, .transparent, .css-b62m3t-container) .react-select__option {
font-family: Jim Nightshade;
text-transform: uppercase;
font-weight: 500;
border-bottom: 1px solid #940000;
}
/* changes the hover effect of the options inside the dropdown */
:is(.default, .dark, .transparent, .css-b62m3t-container) .react-select__option:hover {
background: #420000;
transition: 500ms;
color: #ffffff;
}
/* restyles the selected dropdown option */
:is(.default, .dark, .transparent, .css-b62m3t-container) .react-select__option--is-selected,
:is(.default, .dark,
.transparent, .css-b62m3t-container) .react-select__option--is-focused {
background: #000000;
transition: 500ms;
}
/* ♠ ♦ ♣ ♥ end bot cards header section ♥ ♣ ♦ ♠ */
/* ♠ ♦ ♣ ♥ bot cards section ♥ ♣ ♦ ♠ */
/* formats main container as a grid and fixes the width */
.pp-cc-list-container {
display: grid;
grid-template-columns: repeat(auto-fit, 230px);
justify-content: center;
}
/* makes every 2n+1 bot card red */
.pp-cc-list-container .profile-character-card-wrapper:nth-child(2n-1) .profile-character-card-stack {
width: auto;
aspect-ratio: 9/14;
position: relative;
background-color: #000;
border: 4px solid #bd0000;
border-radius: 20px;
z-index: 1;
}
/* make every 2n bot card white */
.pp-cc-list-container .profile-character-card-wrapper:nth-child(2n) .profile-character-card-stack {
width: auto;
aspect-ratio: 9/14;
position: relative;
background-color: #000;
border: 4px solid #bababa;
border-radius: 20px;
z-index: 1;
}
/* removes the event card decorations. Testing is limited but it should work okay. */
.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;
}
/* centers your character's profile picture */
.profile-character-card-avatar-aspect-ratio {
position: absolute;
top: 50%;
left: 50%;
width: 80%;
height: 80%;
transform: translate(-50%, -50%);
}
/* makes sure the image is the correct size */
.profile-character-card-avatar-aspect-ratio img {
width: 100%;
height: 100%;
object-fit: cover;
}
/* gives your character's image a gradient */
.profile-character-card-avatar-aspect-ratio::after {
content: "";
position: absolute;
inset: 0;
background:
linear-gradient(to bottom, rgba(10, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50px),
linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50px),
linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50px),
linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50px);
background-repeat: no-repeat;
background-size: 100% 50px, 100% 50px, 50px 100%, 50px 100%;
background-position: top, bottom, left, right;
pointer-events: none;
}
/* styles the top emoji for all cards */
.pp-cc-list-container .profile-character-card-wrapper .profile-character-card-stack::before {
position: absolute;
top: 75px;
left: 30px;
z-index: 7;
border: 0px;
outline: none;
transform: scale(400%);
pointer-events: none;
font-family: cinzel;
}
/* styles the bottom emoji for all cards */
.pp-cc-list-container .profile-character-card-wrapper .profile-character-card-stack::after {
position: absolute;
bottom: 75px;
right: 30px;
z-index: 7;
border: 0px;
outline: none;
transform: rotate(180deg) scale(400%);
pointer-events: none;
pointer-events: none;
font-family: cinzel;
}
/* diamond cards */
.pp-cc-list-container .profile-character-card-wrapper:nth-child(4n+1) .profile-character-card-stack::before,
.pp-cc-list-container .profile-character-card-wrapper:nth-child(4n+1) .profile-character-card-stack::after {
content: '♦';
color: #bd0000;
font-size: 1em;
line-height: 1;
font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
display: inline-block;
}
/* club cards */
.pp-cc-list-container .profile-character-card-wrapper:nth-child(4n+2) .profile-character-card-stack::before,
.pp-cc-list-container .profile-character-card-wrapper:nth-child(4n+2) .profile-character-card-stack::after {
content: '♣';
color: #bebebe;
font-size: 1em;
line-height: 1;
font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
display: inline-block;
}
/* heart cards */
.pp-cc-list-container .profile-character-card-wrapper:nth-child(4n+3) .profile-character-card-stack::before,
.pp-cc-list-container .profile-character-card-wrapper:nth-child(4n+3) .profile-character-card-stack::after {
content: '♥';
color: #bd0000;
font-size: 1em;
line-height: 1;
font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
display: inline-block;
}
/* spade cards */
.pp-cc-list-container .profile-character-card-wrapper:nth-child(4n) .profile-character-card-stack::before,
.pp-cc-list-container .profile-character-card-wrapper:nth-child(4n) .profile-character-card-stack::after {
content: '♠';
color: #bebebe;
font-size: 1em;
line-height: 1;
font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
display: inline-block;
}
/* styles the character name and the word 'knight' for all cards */
.pp-cc-list-container .profile-character-card-wrapper .profile-character-card-name-box,
.pp-cc-list-container .profile-character-card-wrapper .profile-character-card-stack-link-component-box::after {
font-family: Cinzel Decorative;
font-size: 25px;
z-index: 5;
position: relative;
font-weight: 600;
position: absolute;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
width: 180px;
}
/* positions the character's name */
.pp-cc-list-container .profile-character-card-wrapper .profile-character-card-name-box {
top: 25px;
left: 20px;
}
/* adds and positions the word 'knight' */
.pp-cc-list-container .profile-character-card-wrapper .profile-character-card-stack-link-component-box::after {
display: block;
content: 'Knight';
z-index: 5;
position: absolute;
bottom: 25px;
right: 20px;
transform: rotate(180deg);
}
/* colours the character's name and the word 'knight' for every 2n-1 cards */
.pp-cc-list-container .profile-character-card-wrapper:nth-child(2n-1) .profile-character-card-name-box,
.pp-cc-list-container .profile-character-card-wrapper:nth-child(2n-1) .profile-character-card-stack-link-component-box::after {
color: #bd0000;
}
/* colours the character's name and the word 'knight' for every 2n cards */
.pp-cc-list-container .profile-character-card-wrapper:nth-child(2n) .profile-character-card-name-box,
.pp-cc-list-container .profile-character-card-wrapper:nth-child(2n) .profile-character-card-stack-link-component-box::after {
color: #bebebe;
}
/* scales and positions the main link component (component that takes you to a bot's page) */
.profile-character-card-stack-link-component {
position: absolute;
width: 230px;
aspect-ratio: 9/14;
}
/* scales and positions the wrapper of the main link component */
.profile-character-card-stack-link-component-box {
width: 230px;
aspect-ratio: 9/14;
}
/* adds transformation animation for the front of the bot card */
.profile-character-card-stack,
.profile-character-card-stack:before,
.profile-character-card-stack:after,
.profile-character-card-name-box,
.profile-character-card-stack-link-component {
transition: transform 0.8s, opacity 0s ease 0.2s;
transform-style: preserve-3d;
opacity: 1;
}
/* adds transformation animation for the back of the bot card */
.profile-character-card-creator-name-link,
.profile-character-card-description-box,
.profile-character-card-star-line,
.profile-character-card-tags,
.profile-character-card-box {
transition: transform 0.8s;
transform-style: preserve-3d;
transform: rotateY(180deg);
backface-visibility: hidden;
}
/* makes card spin when you hover it */
.profile-character-card-wrapper:hover .profile-character-card-stack {
transform: rotateY(180deg);
}
/* makes front of card opaque but still clickable when spun */
.profile-character-card-wrapper:hover .profile-character-card-stack:before,
.profile-character-card-wrapper:hover .profile-character-card-stack:after,
.profile-character-card-wrapper:hover .profile-character-card-stack-link-component {
transition: transform 0.8s, opacity 0s ease 0.2s;
transform-style: preserve-3d;
opacity: 0;
}
/* styles the number of chats box for every 2n-1 cards */
.profile-character-card-wrapper:nth-child(2n-1) .profile-character-card-ribbon * {
color: #bebebe;
background: #bd0000;
font-family: cinzel
}
/* styles the number of chats box for every 2n cards */
.profile-character-card-wrapper:nth-child(2n) .profile-character-card-ribbon * {
color: black;
background: #bebebe;
font-family: cinzel
}
/* hides the creator name and the star line on the back of the card */
.profile-character-card-creator-name-link,
.profile-character-card-star-line {
display: none;
}
/* hides the little arrow symbol of the extended description box */
.chakra-tooltip__arrow-wrapper,
.chakra-tooltip__arrow {
display: none;
}
/* styles the extended description box */
.css-1nfaq08 {
display: block;
border: 0px solid #bd0000;
max-width: 9999999999px !important;
border-radius: 20px;
background-color: rgba(31, 0, 0, 0.9);
box-shadow:
0 0 100px rgba(189, 0, 0, 0.2),
0 0 150px rgba(189, 0, 0, 0.15),
inset 0 0 80px rgba(189, 0, 0, 0.2),
inset 0 0 120px rgba(189, 0, 0, 0.15);
position: absolute !important;
font-size: 14px;
text-align: center !important;
align-content: center !important;
overflow: hidden;
width: 300px;
height: 330px;
}
/* styles the text in the extended description box */
.css-1nfaq08 p,
.css-1nfaq08 p span {
display: block;
position: relative;
box-shadow: none;
z-index: 5;
padding: 0;
margin: 0;
font-family: Alegreya Sans SC;
font-weight: 500;
color: #bebebe !important;
text-align: center !important;
}
/* adds a rose decoration to the extended description box */
.css-1nfaq08::before {
content: '';
position: absolute;
width: 685px;
height: 643px;
background: rgb(92, 0, 0, 0.8);
transform-origin: top left;
transform: scale(30%) translate(0px, 430px);
clip-path: path('M 4.556 330.5 c 10.221 5.629 14.995 14.489 16.04 26.025 c 0.656 7.248 2.028 14.667 6.259 20.838 c 10.69 15.589 23.509 28.775 41.462 36.219 c 10.228 4.241 20.162 9.19 30.302 13.853 c 0 2.641 -0.311 4.767 0.056 6.769 c 1.261 6.864 -0.14 13.302 -2.662 19.614 c -2.251 5.632 -4.461 11.281 -6.814 16.871 c -2.756 6.547 -3.841 13.32 -2.151 20.228 c 1.583 6.469 3.728 12.801 5.632 19.191 c 0.952 3.197 1.698 6.477 2.919 9.568 c 3.899 9.869 7.97 19.669 12 29.485 c 0.233 0.568 0.649 1.08 1.052 1.557 c 8.015 9.472 16.635 18.071 27.986 23.799 c 9.732 4.911 19.282 6.812 30.21 4.588 c 13.149 -2.677 26.357 -3.537 38.982 3.738 c 6.815 3.927 14.498 6.462 21.978 9.087 c 8.69 3.05 16.922 1.771 24.136 -4.283 c 3.045 -2.556 6.153 -5.055 9.022 -7.8 c 16.056 -15.362 34.489 -26.196 56.387 -31.137 c 9.298 -2.098 18.631 -4.632 26.979 -10.144 c 2.199 1.616 4.069 3.339 6.236 4.515 c 6.038 3.276 11.901 7.297 18.366 9.292 c 25.046 7.729 50.695 12.468 76.966 13.423 c 1.194 0.043 2.376 0.397 3.412 0.579 c 1.546 5.115 3.024 9.896 4.436 14.696 c 5.187 17.632 13.753 33.625 23.743 48.916 c 3.043 4.656 7.068 8.176 12.409 10.149 c 4.725 1.746 9.152 1.602 12.845 -1.984 c 3.737 -3.629 7.702 -7.223 10.585 -11.496 c 9.59 -14.215 22.221 -24.916 36.886 -33.427 c 8.77 -5.09 16.229 -11.711 23.357 -18.87 c 7.934 -7.968 13.13 -17.411 15.524 -28.189 c 2.354 -10.596 3.874 -21.386 5.5 -32.131 c 0.431 -2.85 1.181 -4.957 3.543 -6.89 c 3.21 -2.627 6.256 -5.645 8.691 -8.991 c 5.058 -6.952 8.119 -14.814 6.551 -23.531 c -1.412 -7.849 -4.198 -15.329 -8.722 -22.039 c -1.004 -1.49 -1.88 -3.067 -2.96 -4.841 c 11.628 -7.232 23.716 -12.312 36.641 -15.163 c 9.64 -2.126 18.994 -4.878 27.782 -9.415 c 7.656 -3.953 12.334 -10.435 15.435 -18.231 c 2.065 -5.192 0.545 -9.54 -3.698 -12.795 c -2.97 -2.278 -6.268 -4.159 -9.532 -6.018 c -10.959 -6.244 -19.355 -14.599 -22.494 -27.24 c -1.056 -4.252 -1.501 -8.658 -2.617 -12.891 c -2.018 -7.652 -4.224 -15.259 -6.602 -22.807 c -0.536 -1.702 -1.831 -3.406 -3.23 -4.556 c -7.9 -6.491 -15.936 -12.817 -23.935 -19.187 c -1.032 -0.821 -2.12 -1.572 -4.253 -3.146 c 3.716 -0.361 6.154 -0.7 8.602 -0.817 c 9.802 -0.47 19.654 -0.427 29.4 -1.418 c 10.835 -1.102 17.476 -7.44 19.98 -17.883 c 1.023 -4.266 1.901 -8.589 2.492 -12.934 c 1.487 -10.933 4.525 -21.231 11.228 -30.218 c 1.116 -1.496 2.004 -3.202 2.761 -4.916 c 2.013 -4.56 1.579 -7.151 -2.763 -9.57 c -4.52 -2.518 -9.526 -4.17 -14.34 -6.15 c -1.812 -0.745 -3.682 -1.348 -5.903 -2.153 c 1.551 -2.225 2.661 -3.723 3.674 -5.285 c 5.248 -8.09 5.863 -16.872 3.33 -25.888 c -4.532 -16.133 -15.499 -26.429 -30.689 -32.479 c -5.617 -2.237 -11.536 -3.707 -17.282 -5.631 c -5.735 -1.92 -11.839 -3.224 -17.059 -6.107 c -15.355 -8.478 -30.335 -17.635 -45.497 -26.465 c -7.942 -4.626 -15.842 -9.346 -23.97 -13.626 c -9.521 -5.013 -19.638 -5.218 -29.924 -2.63 c -2.986 0.751 -5.999 1.399 -8.898 2.071 c -0.588 -0.769 -1.112 -1.207 -1.322 -1.764 c -5.481 -14.531 -14.042 -27.04 -24.889 -38.056 c -0.146 -0.148 -0.253 -0.334 -0.392 -0.491 c -13.031 -14.71 -25.92 -29.549 -39.161 -44.068 c -6.172 -6.768 -14.174 -10.318 -23.508 -10.077 c -17.066 -3.743 -25.927 4.227 -37.77 10.133 c -9.761 4.868 -19.684 9.153 -30.124 12.33 c -24.847 7.563 -47.131 20.192 -69.377 35.21 c -3.433 -1.122 -8.091 -1.94 -12.044 -4.069 c -11.018 -5.934 -22.813 -9.358 -34.935 -11.792 c -16.993 -3.411 -32.958 -9.338 -47.799 -18.333 c -2.286 -1.386 -4.877 -2.466 -7.471 -3.109 c -6.4 -1.587 -8.83 -0.661 -11.647 5.307 c -4.638 9.824 -9.087 19.757 -13.103 29.849 c -4.327 10.872 -7.894 22.046 -12.162 32.943 c -1.254 3.202 -3.328 6.353 -5.773 8.774 c -11.891 11.775 -23.702 23.667 -36.174 34.81 c -15.099 13.49 -27.767 28.964 -39.657 45.203 c -9.075 12.395 -16.443 25.73 -22.043 40.005 c -1.586 4.043 -2.606 8.393 -3.266 12.697 c -1.397 9.111 1.843 15.983 10.628 19.762 c 0.279 0.12 0.367 0.683 0.721 1.397 c -2.508 3.353 -5.358 6.707 -7.691 10.388 c -3.457 5.454 -7.62 10.791 -9.577 16.798 c -4.463 13.699 -7.888 27.743 -11.471 41.715 C -0.768 324.051 0.066 328.027 4.556 330.5 z M 314.99 541.445 c -18.17 3.686 -34.705 10.534 -48.905 22.71 c -5.078 4.354 -10.641 8.138 -15.82 12.382 c -7.689 6.302 -15.801 6.811 -24.557 2.508 c -6.002 -2.95 -12.155 -5.592 -18.171 -8.517 c -9.104 -4.427 -18.43 -6.406 -28.586 -4.187 c -6.305 1.378 -12.804 1.855 -19.205 2.811 c -5.116 0.764 -9.856 -0.123 -14.665 -2.104 c -11.53 -4.75 -20.766 -12.371 -28.717 -21.761 c -0.675 -0.797 -1.491 -1.572 -1.871 -2.508 c -3.598 -8.878 -7.205 -17.754 -10.609 -26.707 c -1.254 -3.297 -2.026 -6.783 -2.929 -10.206 c -1.756 -6.656 -3.988 -13.251 -4.955 -20.023 c -0.529 -3.706 0.706 -7.857 1.887 -11.571 c 2.025 -6.369 4.644 -12.549 6.99 -18.817 c 3.028 -8.089 3.265 -16.331 1.138 -25.402 c 12.702 0.457 24.346 5.688 36.665 6.328 c 0 7.198 0.437 14.028 -0.121 20.776 c -0.576 6.97 -0.478 13.825 1.071 20.589 c 1.27 5.541 3.477 10.621 7.925 14.641 c 8.218 7.427 16.022 15.317 24.313 22.658 c 3.223 2.854 7.237 4.851 11.02 7.011 c 1.152 0.658 2.736 0.56 4.331 0.439 c -9.458 -5.325 -15.194 -14.168 -21.982 -22 c -3.685 -4.251 -7.491 -8.487 -11.76 -12.123 c -7.391 -6.296 -8.983 -14.944 -9.972 -23.647 c -0.867 -7.634 -0.594 -15.4 -0.754 -23.11 c -0.029 -1.413 0.28 -2.833 0.511 -4.976 c 22.157 3.607 39.498 -6.392 56.167 -19.866 c 19.016 11.558 38.517 21.956 60.29 28.21 c 0.185 18.762 7.949 34.377 19.77 48.483 c -18.929 16.282 -41.527 19.333 -66.415 18.993 c 1.784 1.343 2.655 2.501 3.71 2.706 c 4.919 0.958 9.889 2.286 14.843 2.299 c 8.325 0.022 16.718 -0.361 24.961 -1.474 c 10.248 -1.385 18.539 -7.337 26.679 -13.288 c 1.513 -1.106 2.951 -2.316 4.244 -3.336 c 7.824 2.91 15.524 5.478 22.979 8.628 c 7.488 3.164 13.382 8.457 17.847 15.306 c 2.166 3.323 4.448 6.571 7.117 10.501 C 331.281 537.87 323.115 539.797 314.99 541.445 z M 247.11 149.745 c 1.958 6.758 5.035 13.25 8.14 19.602 c 3.328 6.807 8.849 10.778 16.732 11.427 c 4.324 0.356 8.617 1.438 12.846 2.505 c 6.046 1.525 11.012 4.746 14.875 9.792 c 3.977 5.197 9.052 9.185 14.749 12.444 c 2.244 1.284 4.173 3.12 6.245 4.704 c -0.236 0.458 -0.473 0.915 -0.709 1.373 c -5.435 -1.782 -10.916 -3.436 -16.287 -5.396 c -3.127 -1.141 -6.298 -2.432 -9.063 -4.246 c -7.761 -5.09 -16.651 -6.427 -25.418 -8.295 c -7.793 -1.661 -15.359 -3.961 -21.761 -8.991 c -7.328 -5.758 -11.462 -13.224 -11.214 -22.656 c 0.28 -10.651 1.355 -21.202 3.814 -31.643 c 1.839 -7.805 6.85 -12.432 13.494 -16.083 C 243.046 124.646 243.444 137.09 247.11 149.745 z M 350.644 138.211 c 1.839 0.426 3.212 0.617 4.496 1.063 c 7.496 2.606 15.009 5.172 22.437 7.96 c 3.703 1.39 7.337 3.043 10.827 4.904 c 4.308 2.297 4.589 6.45 0.703 9.377 c -1.293 0.974 -2.943 1.677 -4.534 2.022 c -6.759 1.464 -13.656 2.662 -20.483 1.064 c -15.442 -3.615 -30.805 -7.568 -46.178 -11.471 c -0.53 -0.135 -0.828 -1.184 -1.23 -1.823 c -0.009 -0.002 -0.019 -0.004 -0.028 -0.005 c -0.015 -0.001 -0.03 -0.001 -0.045 -0.002 c -6.535 1.982 -13.041 0.149 -19.564 0.47 c 0.006 -0.482 0.014 -0.963 0.02 -1.445 c 6.515 0.325 13.031 0.65 19.549 0.973 c 0.018 -0.005 0.036 -0.009 0.054 -0.014 c 0.004 0.006 0.007 0.013 0.011 0.019 c 8.165 1.544 16.3 3.302 24.515 4.503 c 2.491 0.364 5.577 -0.165 7.752 -1.405 C 355.31 150.773 355.843 145.452 350.644 138.211 z M 340.893 149.925 c -2.893 -0.137 -5.763 -0.816 -8.638 -1.288 c -9.011 -1.48 -18.02 -2.974 -27.031 -4.462 c 0 0 0.001 -0.001 0.001 -0.001 c 0 0 0 0 -0.001 0 c 5.078 -6.366 15.134 -7.537 25.246 -5.158 c 4.045 0.952 8.099 2.471 11.846 4.453 c 1.874 0.991 3.671 2.097 5.352 3.306 C 346.433 150.008 343.544 150.05 340.893 149.925 z M 296.237 144.339 c -9.667 0.106 -18.722 2.187 -27.645 5.962 c 9.979 -11.962 22.814 -18.165 39.575 -18.666 C 303.775 136.428 296.845 137.491 296.237 144.339 z M 281.981 152.617 c -4.805 2.556 -9.61 5.111 -15.466 8.227 C 270.645 154.42 276.253 153.4 281.981 152.617 z M 269.922 164.805 c 7.629 -5.966 16.325 -7.871 25.897 -7.012 c 14.246 1.279 27.994 4.645 41.677 8.669 c 8.201 2.412 16.634 4.515 25.104 5.386 c 7.515 0.773 15.225 -0.347 23.547 -0.657 c -8.626 21.944 -6.985 45.059 -5.526 68.395 c -1.7 2.631 -4.164 2.012 -6.46 0.79 c -6.622 -3.528 -13.396 -6.851 -19.674 -10.926 c -7.188 -4.665 -13.558 -10.272 -18.894 -17.243 c -5.829 -7.616 -12.565 -14.52 -21.259 -19.23 c -2.862 -1.551 -5.313 -4.089 -7.533 -6.553 c -7.364 -8.176 -16.919 -11.969 -27.306 -14.302 c -3.995 -0.897 -7.946 -1.993 -12.786 -3.219 C 268.249 166.904 268.894 165.609 269.922 164.805 z M 382.815 249.624 c 13.967 -7.537 27.489 -15.898 41.409 -23.527 c 11.595 -6.356 24.062 -10.763 36.865 -13.907 c 7.248 -1.78 14.772 -2.887 22.226 -3.278 c 14.67 -0.771 28.949 -3.413 43.167 -6.9 c 4.528 -1.11 9.375 -0.914 15.535 -1.44 c -1.768 2.325 -2.488 3.456 -3.387 4.419 c -2.707 2.901 -5.256 6.011 -8.287 8.534 c -4.628 3.851 -9.417 7.58 -14.497 10.792 c -4.147 2.622 -9.047 2.684 -13.952 2.478 c -11.046 -0.463 -22.105 -0.659 -33.16 -0.849 c -2.277 -0.039 -4.735 -0.05 -6.815 0.72 c -15.082 5.581 -30.182 11.02 -42.901 21.518 c -12.244 10.107 -24.612 20.154 -37.649 29.182 c -9.038 6.258 -18.914 11.713 -29.107 15.801 c -17.027 6.829 -34.765 8.114 -52.761 2.975 c -4.753 -1.357 -9.858 -1.744 -14.832 -2.014 c -11.911 -0.647 -23.833 -1.322 -35.278 -4.9 c -5.897 -1.843 -11.491 -4.654 -18.165 -7.418 c 3.632 -2.566 6.196 -4.049 8.365 -5.977 c 4.566 -4.06 10.058 -5.841 15.849 -6.929 c 12.387 -2.328 24.923 -2.305 37.471 -2.466 c 14.406 -0.185 28.84 -0.399 43.199 -1.456 C 352.841 263.75 368.212 257.504 382.815 249.624 z M 405.981 134.357 c -0.614 -6.651 -1.164 -13.336 -2.36 -19.893 c -0.487 -2.667 -2.491 -5.11 -4.05 -7.494 c -0.473 -0.722 -2.073 -1.515 -2.64 -1.234 c -3.483 1.727 -5.803 -0.789 -8.544 -1.933 c -16.245 -6.78 -32.881 -12.281 -50.338 -14.989 c -1.394 -0.216 -2.851 -0.028 -5.518 -0.028 c 5.472 -3.923 10.487 -5.942 15.925 -6.553 c 15.639 -1.758 30.328 1.163 44.005 9.168 c 8.273 4.842 16.357 10.078 26.039 12.058 c 3.832 0.784 4.693 4.662 5.106 7.936 c 3.225 25.582 2.107 50.887 -5.396 75.713 c -2.022 6.691 -5.38 12.563 -10.006 17.92 c -4.621 5.352 -8.495 11.348 -12.717 17.048 c -1.094 1.479 -2.26 2.905 -4.526 4.172 c 0.189 -2.504 -0.028 -5.122 0.638 -7.493 c 2.599 -9.255 5.309 -18.487 8.294 -27.623 c 4.05 -12.392 7.143 -24.971 7.33 -38.045 C 407.313 146.849 406.556 140.588 405.981 134.357 z M 344.072 98.149 c 9.368 2.139 18.701 4.434 28.028 6.748 c 5.871 1.457 11.679 3.163 17.556 4.595 c 4.225 1.03 6.366 3.637 6.824 7.866 c 0.563 5.186 0.77 10.458 1.872 15.532 c 4.603 21.197 0.78 41.539 -5.547 61.731 c -1.923 6.136 -3.302 12.442 -5.267 19.961 c -2.083 -19.076 0.198 -36.236 7.248 -52.753 c 2.588 -6.063 1.066 -9.892 -4.891 -12.82 c -3.745 -1.84 -7.667 -3.323 -11.529 -4.919 c -8.113 -3.352 -16.439 -6.261 -24.318 -10.091 c -17.92 -8.711 -36.599 -12.776 -56.503 -10.77 c -0.397 0.04 -0.814 -0.12 -1.469 -0.227 c 0.135 -0.529 0.101 -1.19 0.413 -1.496 c 4.789 -4.675 9.282 -9.738 14.52 -13.848 C 320.637 100.107 331.347 95.243 344.072 98.149 z M 291.506 113.992 c -4.089 4.65 -9.315 8.393 -11.168 14.795 c -0.282 0.976 -1.821 1.613 -2.819 2.352 c -7.46 5.526 -14.209 11.646 -17.258 20.889 c -0.496 0.048 -0.991 0.096 -1.487 0.144 c -0.702 -4.69 -1.451 -9.373 -2.095 -14.071 c -1.037 -7.564 1.928 -13.311 7.834 -17.975 c 8.217 -6.488 16.328 -13.088 26.749 -15.777 c 2.746 -0.708 5.561 -1.148 8.95 -0.716 C 297.315 107.09 294.484 110.606 291.506 113.992 z M 278.697 201.012 c 4.185 0.994 8.311 2.618 12.161 4.557 c 9.527 4.797 19.258 9.051 29.641 11.513 c 4.053 0.961 6.368 3.885 8.913 6.478 c 3.555 3.62 7.314 6.219 12.199 8.178 c 7.417 2.973 14.139 7.682 21.633 11.923 c -5.358 0.06 -9.848 -1.286 -14.376 -2.971 c -7.399 -2.755 -14.837 -5.537 -22.465 -7.507 c -7.423 -1.917 -13.875 -5.617 -20.551 -9.054 c -5.541 -2.854 -11.272 -5.354 -16.99 -7.849 c -12.788 -5.581 -25.549 -11.236 -38.469 -16.498 c -5.499 -2.24 -7.39 -6.145 -7.403 -12.755 C 253.411 197.031 266.373 198.085 278.697 201.012 z M 244.451 210.827 c 16.878 5.982 33.816 11.794 50.698 17.763 c 2.344 0.829 4.542 2.123 6.725 3.349 c 8.656 4.865 17.83 8.025 27.711 9.39 c 6.095 0.842 12.154 2.216 18.672 5.547 c -17.133 1.674 -33.088 0.452 -49.026 -1.329 c -1.658 -0.185 -3.441 -0.21 -4.925 -0.859 c -10.501 -4.595 -21.009 -9.189 -31.374 -14.08 c -6.603 -3.116 -12.793 -7.149 -19.499 -9.988 c -4.136 -1.751 -8.86 -2.577 -13.381 -2.866 c -11.478 -0.734 -19.804 -5.882 -24.96 -16.166 c -0.562 -1.12 -1.223 -2.189 -1.798 -3.303 c -4.898 -9.492 -10.026 -18.802 -20.438 -24.829 c 5.722 -3 10.235 -3.88 15.766 -1.109 c 8.21 4.112 14.296 9.754 18.268 18.102 c 3.909 8.218 9.99 14.24 19.28 16.547 C 239.068 207.717 241.594 209.815 244.451 210.827 z M 210.151 222.964 c 8.906 1.454 17.497 2.095 25.617 4.397 c 8.16 2.313 15.926 6.11 23.732 9.558 c 15.081 6.662 29.95 13.822 46.882 14.618 c 12.499 0.587 24.984 1.489 37.471 2.299 c 3.853 0.25 7.695 0.658 11.524 1.514 c -7.382 3.789 -15.329 4.568 -23.174 4.959 c -21.241 1.059 -42.515 1.455 -63.759 2.469 c -8.337 0.398 -16.627 1.62 -24.368 5.284 c -4.888 2.313 -10.032 4.081 -14.943 6.349 c -3.147 1.454 -6.08 3.374 -9.509 5.31 c -5.62 -7.057 -11.04 -13.863 -16.533 -20.759 c 4.573 -6.837 5.233 -14.322 5.874 -21.811 C 209.386 232.211 209.792 227.268 210.151 222.964 z M 230.972 293.456 c 8.463 5.325 18.047 6.541 27.657 7.05 c 9.138 0.484 18.32 0.082 27.481 0.22 c 3.74 0.056 7.479 0.457 11.21 0.788 c 7.482 0.664 14.993 2.181 22.427 1.861 c 7.404 -0.319 14.809 -2.124 22.075 -3.86 c 21.856 -5.223 40.279 -16.964 57.475 -30.932 c 11.7 -9.504 23.458 -19.068 37.185 -25.446 c 8.854 -4.114 18.381 -6.785 27.638 -10.012 c 1.143 -0.398 2.484 -0.363 3.726 -0.318 c 8.757 0.322 17.513 0.678 26.267 1.078 c 1.401 0.064 2.789 0.407 5.173 0.772 c -2.539 2.607 -4.625 4.465 -6.381 6.595 c -12.115 14.693 -23.473 29.908 -33.055 46.436 c -8.823 15.22 -21.757 25.146 -39.351 28.254 c -11.511 2.033 -23.091 3.669 -34.601 5.708 c -4.908 0.87 -9.855 1.921 -14.54 3.582 c -11.365 4.029 -22.893 6.261 -35.01 5.348 c -6.451 -0.486 -12.948 -0.326 -19.415 -0.64 c -11.318 -0.549 -22.34 -2.386 -33.062 -6.422 c -5.615 -2.114 -11.862 -2.486 -17.66 -4.197 c -3.081 -0.909 -5.82 -2.986 -8.701 -4.558 c -2.696 -1.47 -5.233 -3.691 -8.103 -4.266 c -3.286 -0.657 -5.781 -1.843 -8.039 -4.226 c -1.856 -1.959 -4.223 -3.424 -6.169 -5.309 c -2.296 -2.223 -4.383 -4.663 -7.531 -8.054 C 229.881 293.258 230.536 293.182 230.972 293.456 z M 244.694 319.489 c 2.242 0.797 4.559 2.242 6.074 4.039 c 2.827 3.351 6.143 5.557 10.304 6.737 c 11.055 3.134 21.975 6.873 33.179 9.313 c 7.056 1.536 14.555 1.814 21.807 1.512 c 13.329 -0.556 26.773 0.017 39.944 -2.772 c 4.885 -1.035 9.872 -1.941 14.515 -3.694 c 11.307 -4.268 23.115 -5.26 34.961 -6.549 c 12.672 -1.38 25.306 -3.194 36.436 -10.394 c 2.09 -1.352 5.128 -2.052 7.619 -1.828 c 11.492 1.03 22.751 3.363 33.597 7.422 c 3.034 1.135 5.595 2.824 6.76 6.596 c -4.195 6.793 -9.275 12.022 -16.536 15.208 c -4.561 2.001 -8.765 4.874 -12.985 7.581 c -9.734 6.245 -19.927 11.426 -31.046 14.8 c -9.176 2.785 -18.247 5.92 -27.345 8.96 c -13.636 4.556 -27.741 5.602 -41.989 6.277 c -12.647 0.6 -24.421 -2.53 -36.092 -6.611 c -4.733 -1.655 -9.496 -3.36 -13.962 -5.606 c -6.907 -3.474 -13.912 -4.04 -21.33 -2.311 c -9.364 2.183 -18.117 5.293 -23.348 14.188 c -1.14 1.938 -2.768 2.19 -4.768 2.22 c -7.163 0.109 -13.613 -2.229 -19.53 -5.945 c -3.523 -2.213 -6.978 -4.74 -9.884 -7.696 c -14.929 -15.181 -32.602 -26.764 -50.096 -38.574 c -6.841 -4.618 -12.76 -9.967 -17.495 -16.803 c -5.07 -7.319 -7.038 -15.528 -8.061 -24.087 c -0.407 -3.408 1.346 -4.441 4.684 -2.973 c 5.352 2.355 10.663 4.803 15.987 7.223 c 10.084 4.583 20.145 9.217 30.255 13.743 c 4.565 2.044 9.083 4.317 14.439 3.067 c 1.284 -0.3 2.852 0.307 4.219 0.723 C 231.594 315.261 238.213 317.184 244.694 319.489 z M 406.558 384.404 c 4.238 2.753 8.022 5.21 12.5 8.118 c -2.48 1.704 -4.479 3.48 -6.795 4.599 c -10.536 5.089 -21.098 10.132 -31.769 14.928 c -13.62 6.121 -27.941 9.57 -42.742 11.687 c -6.059 0.867 -10.354 0.02 -15.173 -3.777 c -7.191 -5.665 -15.084 -10.483 -22.914 -15.278 c -6.845 -4.192 -10.307 -9.938 -10.597 -17.956 c -0.109 -3.016 -1.278 -5.993 -1.977 -9.042 c 6.846 -2.108 13.523 -1.881 20.587 0.653 c 12.368 4.437 24.983 8.243 37.645 11.775 c 4.318 1.205 9.084 1.005 13.651 1.078 c 15.136 0.242 30.039 -1.345 44.479 -6.207 C 404.618 384.59 405.893 384.523 406.558 384.404 z M 235.353 386.353 c 6.208 2.37 13.875 4.828 22.197 4.667 c 8.473 -0.164 14.689 -5.114 21.809 -10.347 c 0.843 5.348 1.622 9.6 2.161 13.883 c 0.776 6.158 3.48 11.175 8.669 14.587 c 8.198 5.389 16.516 10.596 24.794 15.862 c 2.087 1.328 4.218 2.587 7.593 4.65 c -5.508 1.455 -9.746 3.079 -14.118 3.627 c -10.349 1.298 -20.745 2.375 -31.155 2.954 c -5.142 0.286 -10.601 0.106 -15.489 -1.323 c -11.604 -3.392 -23.029 -7.449 -34.376 -11.643 c -6.987 -2.582 -13.699 -5.911 -21.051 -9.13 C 216.055 404.863 225.376 395.922 235.353 386.353 z M 594.712 496.017 c -6.297 6.124 -12.981 11.854 -19.564 17.679 c -1.212 1.072 -2.759 1.765 -3.62 3.357 c 7.183 1.501 12.654 -2.219 19.222 -4.359 c -0.188 2.274 -0.135 4.103 -0.516 5.837 c -1.882 8.581 -3.632 17.202 -5.9 25.684 c -2.529 9.454 -7.24 17.721 -14.557 24.454 c -6.498 5.98 -13.386 11.297 -21.171 15.567 c -12.855 7.05 -25.58 14.384 -34.897 26.186 c -3.241 4.106 -6.335 8.329 -9.611 12.407 c -6.519 8.116 -10.02 10.713 -17.535 -0.363 c -6.535 -9.631 -11.644 -20.292 -16.785 -30.79 c -4.036 -8.241 -7.16 -16.929 -10.887 -25.895 c 1.317 -0.468 2.566 -0.946 3.836 -1.358 c 3.775 -1.223 7.695 -2.108 11.314 -3.685 c 11.537 -5.029 23.401 -8.804 35.914 -10.432 c 0.521 -0.068 0.977 -0.633 1.661 -1.103 c -0.476 -2.784 -2.703 -3.032 -4.672 -3.144 c -8.15 -0.464 -16.199 -0.425 -24.105 2.445 c -6.447 2.34 -13.145 4.024 -19.796 5.753 c -8.938 2.325 -18.008 0.903 -26.817 -0.41 c -15.075 -2.246 -30.021 -5.41 -44.961 -8.48 c -5.927 -1.218 -11.766 -2.995 -17.519 -4.899 c -12.402 -4.105 -22.934 -10.763 -30.493 -21.878 c -3.845 -5.654 -8.405 -10.918 -13.214 -15.793 c -5.256 -5.328 -12.433 -7.553 -19.318 -10.078 c -12.718 -4.663 -22.787 -12.199 -27.731 -25.388 c -1.54 -4.109 -3.529 -8.062 -4.884 -12.226 c -0.821 -2.521 -0.82 -5.309 -1.23 -8.285 c 5.663 -0.38 11.028 -0.797 16.401 -1.045 c 0.943 -0.043 1.998 0.49 2.869 0.988 c 16.424 9.388 34.396 13.682 52.828 17.099 c 21.569 3.999 43.336 7.552 64.054 15.068 c 9.586 3.477 19.005 7.754 27.878 12.77 c 11.438 6.467 22.667 13.478 33.219 21.29 c 10.724 7.94 20.477 17.187 30.74 25.761 c 3.196 2.67 6.669 5.007 10.013 7.501 c 5.097 3.801 5.598 5.561 2.335 10.997 c -3.979 6.629 -8.573 12.91 -12.23 19.703 c -2.224 4.131 -3.607 8.858 -4.541 13.484 c -0.519 2.569 0.66 5.482 1.801 8.281 c 1.144 -11.11 7.656 -19.515 12.889 -28.52 c 2.308 -3.973 4.56 -8.036 6.264 -12.288 c 1.883 -4.695 2.219 -9.267 -0.442 -14.332 c -3.181 -6.056 -6.791 -11.671 -12.014 -15.872 c -12.86 -10.344 -25.542 -21.038 -39.242 -30.171 c -12.124 -8.082 -25.242 -14.844 -38.433 -21.115 c -17.508 -8.323 -36.484 -12.012 -55.526 -15.034 c -14.872 -2.36 -29.775 -4.517 -44.67 -6.723 c -9.797 -1.451 -18.949 -4.91 -28.29 -9.947 c 1.768 -0.386 3.534 -0.786 5.305 -1.156 c 6.577 -1.375 12.947 -3.232 18.623 -7.058 c 1.264 -0.852 3.04 -1.484 4.526 -1.387 c 16.84 1.096 32.317 -3.278 46.838 -11.483 c 12.38 -6.995 24.69 -14.112 37.005 -21.221 c 1.441 -0.832 2.965 -1.737 4.023 -2.974 c 3.807 -4.451 8.344 -5.121 13.985 -4.264 c 16.621 2.522 32.574 -1.169 47.729 -7.503 c 15.801 -6.604 31.603 -13.481 45.035 -24.626 c 5.505 1.835 9.53 5.265 13.17 9.41 c 3.579 4.077 7.222 8.165 11.291 11.731 c 9.205 8.068 15.434 18.112 20.15 29.188 c 6.727 15.798 13.685 31.434 23.638 45.583 c 2.729 3.879 4.459 8.479 6.515 12.812 C 605.19 481.411 601.636 489.284 594.712 496.017 z M 616.721 311.034 c 1.742 1.472 2.865 3.722 4.683 5.05 c 11.577 8.454 12.913 21.196 14.388 33.868 c 1.198 10.284 3.637 20.155 8.997 29.132 c 4.428 7.416 11.621 11.901 18.225 16.98 c 2.461 1.893 5.211 3.409 7.95 5.174 c -1.622 5.24 -5.529 7.582 -10.03 8.837 c -9.443 2.633 -18.989 4.899 -28.471 7.396 c -9.759 2.57 -19.326 5.691 -26.989 12.636 c -3.199 2.899 -5.892 6.356 -9.248 10.034 c -1.208 -2.034 -2.475 -4.073 -3.651 -6.162 c -6.36 -11.297 -12.402 -22.788 -19.141 -33.855 c -5.14 -8.441 -11.899 -15.609 -20.111 -21.334 c -2.899 -2.021 -5.411 -4.597 -8.103 -6.917 c -4.712 -4.063 -9.427 -8.125 -14.717 -12.684 c 14.817 -12.094 25.233 -29.356 40.443 -42.503 c 4.245 5.758 4.547 12.037 5.193 18.23 c 1.171 11.224 2.368 22.446 3.599 33.664 c 0.082 0.749 0.546 1.456 0.967 2.523 c 5.243 -15.864 2.586 -41.658 -5.985 -57.712 c 5.766 -5.184 11.688 -10.26 18.884 -13.842 c 3.492 -1.739 6.63 -1.42 9.426 0.571 C 607.778 303.503 612.264 307.266 616.721 311.034 z M 521.892 100.536 c 10.197 4.753 19.9 10.594 29.69 16.185 c 15.601 8.909 31.045 18.092 46.679 26.943 c 3.043 1.723 6.611 2.569 9.999 3.621 c 4.195 1.303 8.43 2.494 12.69 3.566 c 10.427 2.625 19.612 7.879 26.932 15.402 c 7.366 7.57 11.028 17.211 8.799 28.139 c -0.44 2.158 -1.837 4.168 -3.014 6.114 c -1.078 1.783 -2.594 3.302 -3.673 5.085 c -3.107 5.141 -0.86 11.149 4.834 13.065 c 5.894 1.983 11.809 3.902 18.07 5.967 c -0.642 1.551 -0.812 2.353 -1.25 2.961 c -8.066 11.172 -11.957 23.792 -13.259 37.382 c -0.358 3.733 -1.286 7.412 -1.974 11.112 c -0.984 5.289 -4.246 8.842 -9.31 9.896 c -5.473 1.139 -11.132 1.644 -16.731 1.852 c -7.516 0.279 -15.055 -0.131 -22.579 0.006 c -10.153 0.185 -19.123 3.685 -27.127 9.961 c -13.414 10.519 -25.231 22.541 -35.741 35.983 c -13.297 17.003 -29.094 31.007 -48.731 40.674 c -14.139 6.96 -28.285 13.608 -44.029 15.688 c -12.36 1.633 -24.648 1.27 -36.2 -4.381 c -1.22 -0.597 -2.339 -1.401 -4.392 -2.648 c 7.534 -2.835 14.03 -5.535 20.693 -7.73 c 11.031 -3.634 21.145 -8.962 30.741 -15.432 c 4.329 -2.918 8.729 -5.834 13.411 -8.101 c 7.252 -3.51 12.502 -9.03 17.022 -15.406 c 2.604 -3.672 2.937 -5.791 2.324 -11.053 c 16.119 -6.172 27.803 -18.528 40.104 -30.142 c 14.765 -13.941 32.167 -24.092 50.323 -32.718 c 7.185 -3.414 15.614 -4.272 23.528 -6.066 c 7.534 -1.708 15.138 -3.104 22.701 -4.685 c 0.715 -0.149 1.36 -0.635 2.627 -1.251 c -4.996 -2.23 -9.683 -1.713 -14.115 -1.308 c -8.295 0.758 -16.57 1.986 -24.765 3.494 c -4.26 0.784 -8.66 1.979 -12.435 4.026 c -17.301 9.378 -34.53 18.96 -49.008 32.583 c -7.16 6.737 -13.992 13.823 -21.108 20.609 c -5.642 5.38 -12.039 9.659 -18.265 11.958 c -6.188 -2.444 -10.666 -4.785 -15.43 -5.973 c -9.101 -2.27 -18.366 -3.884 -27.567 -5.771 c 0.052 -0.36 -0.041 -0.921 0.189 -1.133 c 8.172 -7.53 12.584 -17.591 18.36 -26.772 c 8.231 -13.082 16.911 -25.899 25.843 -38.514 c 3.875 -5.473 9.027 -9.267 16.453 -10.127 c 7.183 -0.831 13.127 -5.359 18.289 -10.354 c 5.858 -5.669 11.394 -11.671 17.025 -17.571 c 1.005 -1.053 1.934 -2.235 2.646 -3.499 c 1.725 -3.062 1.244 -4.807 -1.66 -6.929 c -3.947 -2.885 -8.52 -3.225 -13.169 -3.246 c -3.523 -0.016 -7.046 -0.003 -10.581 -0.003 c -4.939 -14.942 -10.259 -29.823 -14.7 -44.961 c -2.376 -8.1 -5.609 -15.641 -9.386 -23.134 c -3.546 -7.035 -6.059 -14.59 -9.258 -22.491 C 502.845 98.059 512.564 96.188 521.892 100.536 z M 268.755 66.584 c 2.98 -3.381 6.814 -6.26 10.752 -8.504 c 19.992 -11.391 40.099 -22.49 62.471 -28.894 c 7.768 -2.223 15.181 -5.945 22.449 -9.595 c 9.656 -4.85 19.932 -7.447 30.393 -9.479 c 9.912 -1.926 18.269 1.389 24.708 8.926 c 11.95 13.989 23.647 28.195 35.426 42.33 c 1.338 1.605 2.36 3.499 3.812 4.981 c 13.848 14.132 20.922 32.032 28.134 49.912 c 2.255 5.59 5.327 10.853 8.089 16.233 c 1.907 3.714 4.216 7.248 5.838 11.078 c 5.213 12.307 10.252 24.689 15.222 37.097 c 1.618 4.04 2.821 8.246 4.392 12.905 c -6.486 3.107 -13.111 5.285 -20.043 6.434 c -7.84 1.299 -15.73 2.298 -23.589 3.483 c -22.036 3.323 -42.336 11.181 -60.92 23.468 c -7.495 4.956 -15.501 8.864 -24.883 12.822 c 0.807 -1.923 1.035 -2.84 1.527 -3.581 c 6.705 -10.093 13.563 -20.086 20.123 -30.272 c 2.694 -4.182 5.43 -8.54 7.01 -13.203 c 7.129 -21.031 9.658 -42.777 8.855 -64.916 c -0.189 -5.21 -0.783 -10.421 -1.477 -15.593 c -0.948 -7.059 -3.702 -12.103 -11.522 -14.623 c -7.432 -2.396 -14.284 -6.861 -21.064 -10.959 c -15.558 -9.403 -32.281 -12.154 -49.999 -9.297 c -3.636 0.586 -7.249 2.115 -10.551 3.83 c -9.268 4.813 -18.368 9.95 -28.35 15.406 c -20.788 -9.072 -39.062 -0.067 -58.617 10.431 c 1.992 -5.57 3.253 -9.914 5.069 -14.012 C 256.273 83.374 261.814 74.458 268.755 66.584 z M 123.449 107.916 c 8.775 -14.358 15.282 -29.743 20.674 -45.63 c 3.377 -9.95 8.404 -19.079 13.84 -28.695 c 5.402 2.357 10.154 4.494 14.955 6.515 c 15.744 6.627 32.491 9.317 49.089 12.697 c 7.746 1.577 15.284 4.193 22.894 6.412 c 4.792 1.398 9.543 2.934 14.822 4.566 c -8.314 11.735 -15.471 24.134 -19.316 38.893 c -18.929 -13.178 -39.815 -13.743 -60.807 -13.413 c -21.882 0.344 -39.862 10.968 -57.938 22.264 C 122.254 110.319 122.752 109.057 123.449 107.916 z M 110.647 114.28 c -2.184 4.465 -4.239 9 -6.63 13.352 c -0.746 1.357 -2.259 2.465 -3.664 3.256 c -3.786 2.13 -7.704 4.028 -11.994 5.522 C 94.98 128.216 102.169 120.651 110.647 114.28 z M 85.46 145.594 c 10.958 -4.348 21.095 -9.865 29.807 -18.117 c 12.41 -11.757 26.651 -20.724 42.909 -26.502 c 13.178 -4.684 26.642 -4.768 40.243 -3.732 c 10.628 0.81 21.369 1.435 31.048 6.628 c 3.969 2.129 7.698 4.705 11.978 7.352 c -7.988 8.152 -9.636 17.772 -10.412 27.673 c -0.474 6.045 -0.801 12.101 -1.207 18.152 c -0.713 10.633 1.252 20.811 5.154 30.669 c 0.533 1.347 0.976 2.735 1.373 4.129 c 0.098 0.345 -0.15 0.789 -0.43 2.051 c -4.326 -2.583 -7.041 -5.894 -9.045 -9.875 c -5.885 -11.689 -15.227 -19.134 -27.725 -22.824 c -7.909 -2.335 -21.714 1.854 -26.755 8.289 c -1.467 1.873 -1.075 5.828 0.968 8.02 c 0.834 0.895 1.91 1.699 3.034 2.165 c 8.701 3.61 13.494 10.757 17.705 18.694 c 3.22 6.069 7.225 11.716 10.647 17.684 c 0.958 1.67 1.708 3.889 1.487 5.727 c -0.723 6.01 -1.751 12.001 -3.026 17.92 c -0.95 4.413 -2.466 8.705 -4.057 14.176 c -8.409 -10.414 -17.361 -19.048 -21.308 -31.494 c -3.909 -12.326 -4.568 -24.519 -1.096 -37.074 c -5.778 7.8 -9.043 16.352 -8.437 26.074 c 0.73 11.704 3.609 22.587 11.742 31.672 c 10.861 12.131 21.514 24.453 32.085 36.839 c 3.104 3.638 5.329 8.035 8.482 11.622 c 5.607 6.38 11.615 12.407 17.435 18.561 c -0.624 -0.118 -1.679 -0.222 -2.675 -0.522 c -19.247 -5.806 -37.295 -14.651 -55.854 -22.192 c -5.979 -2.43 -11.899 -4.747 -18.11 -6.654 c -8.288 -2.545 -15.958 -7.152 -23.795 -11.072 c -1.609 -0.805 -3.088 -2.277 -4.106 -3.792 c -5.474 -8.142 -11.119 -16.156 -14.15 -25.721 c -1.498 -4.727 -4.127 -9.098 -6.28 -13.613 c -0.448 -0.94 -1.149 -1.762 -1.571 -2.711 c -8.482 -19.087 -17.073 -38.127 -25.307 -57.321 c -2.036 -4.746 -2.993 -9.973 -4.258 -15.025 C 81.02 147.715 81.505 147.163 85.46 145.594 z M 17.237 281.68 c 2.093 -8.707 7.29 -15.978 12.344 -23.126 c 4.322 -6.112 9.491 -11.624 14.274 -17.412 c 0.858 -1.038 1.658 -2.125 1.699 -4.116 c -4.091 3.025 -8.183 6.05 -12.199 9.02 c -7.419 -4.106 -9.648 -8.683 -8.392 -16.361 c 1.552 -9.486 6.11 -17.777 10.411 -26.117 c 7.509 -14.562 17.242 -27.681 27.372 -40.493 c 4.247 -5.371 8.788 -10.51 13.711 -16.366 c 0.719 1.921 1.253 2.82 1.383 3.774 c 2.271 16.604 8.841 31.754 15.719 46.807 c 2.951 6.458 5.831 12.949 8.723 19.434 c 0.937 2.101 1.61 4.343 2.742 6.328 c 4.992 8.751 8.238 18.218 12.013 27.5 c 3.033 7.457 7.899 14.233 12.456 20.97 c 1.658 2.451 4.625 4.157 7.26 5.771 c 4.07 2.492 8.368 4.613 12.055 6.612 c -1.702 13.426 0.886 25.386 7.042 36.656 c 5.864 10.736 14.353 18.83 24.758 25.213 c 5.663 3.474 10.8 7.805 16.887 12.272 c -4.464 1.002 -8.316 0.401 -12.102 -0.045 c -5.812 -0.685 -11.584 -1.707 -17.392 -2.425 c -7.302 -0.903 -12.469 -4.003 -14.411 -11.733 c -1.803 -7.173 -4.775 -14.177 -10.491 -18.98 c -5.374 -4.516 -11.359 -8.753 -17.768 -11.488 c -10.565 -4.509 -21.808 -7.228 -33.33 -8.382 c -14.62 -1.465 -26.492 4.244 -36.715 14.178 c -0.235 0.228 -0.191 0.743 -0.437 1.828 c 1.472 -0.186 2.831 -0.058 3.922 -0.54 c 11.446 -5.061 23.146 -4.844 35.039 -1.989 c 6.098 1.464 12.222 2.834 18.369 4.074 c 7.32 1.477 13.749 4.891 20.006 8.754 c 4.235 2.614 7.286 6.236 9.229 10.796 c 1.064 2.498 2.252 4.967 3.039 7.554 c 3.05 10.018 10.162 14.518 20.183 14.695 c 11.486 0.202 22.984 0.226 34.468 -0.055 c 5.232 -0.128 9.748 0.522 13.769 4.337 c 4.805 4.558 10.073 8.627 15.402 13.13 c -5.762 5.558 -11.313 10.589 -16.492 15.979 c -8.883 9.244 -18.445 17.513 -29.36 24.388 c -9.122 5.746 -18.834 7.642 -29.269 7.357 c -16.426 -0.448 -32.227 -4.862 -48.252 -7.8 c -4.055 -0.744 -7.961 -2.568 -11.79 -4.23 c -8.632 -3.746 -17.22 -7.602 -25.743 -11.593 c -15.292 -7.161 -26.223 -19.107 -35.481 -32.821 c -0.695 -1.03 -1.195 -2.204 -1.691 -3.352 c -0.406 -0.94 -0.669 -1.941 -1.094 -3.21 c 8.55 -3.713 17.129 -6.953 25.245 -11.1 c 8.138 -4.159 15.815 -9.223 23.54 -14.644 c -2.686 0.589 -5.525 0.807 -8.029 1.838 c -6.567 2.703 -13.005 5.724 -19.463 8.687 c -7.364 3.378 -14.693 6.829 -22.844 10.624 c -1.378 -15.906 -5.771 -29.805 -19.831 -38.077 C 10.961 309.371 13.919 295.482 17.237 281.68 z');
z-index: 1;
pointer-events: none;
}
/* positions the extended description box to the left */
div:has(div.css-1nfaq08)[data-popper-placement^="top"] [role="tooltip"] {
transform:
translateY(15px) translateX(-425px) !important;
}
/* positions the extended description box to the left */
div:has(div.css-1nfaq08)[data-popper-placement^="bottom"] [role="tooltip"] {
transform:
translateY(-350px) translateX(-425px) !important;
}
/* styles the extended tags description box*/
.css-ataym9 {
background-color: #490000;
border-radius: 10px;
color: #bebebe;
font-family: Alegreya Sans SC;
font-weight: 400;
padding-top: 3px;
text-align: center !important;
box-shadow: 0 0 15px #490000;
}
/* styles the regular description box */
.profile-character-card-description-box {
flex-direction: column;
flex: 1;
height: auto;
width: 222px;
display: flex;
justify-content: center;
pointer-events: none;
}
/* styles the text inside the regular description box */
.profile-character-card-description-markdown-container>* {
text-align: center !important;
align-items: center;
font-family: Cinzel;
font-weight: 700;
font-size: 13px;
z-index: 2;
position: relative;
max-width: 420px;
display: block;
height: auto;
width: auto;
pointer-events: auto;
}
/* colors the text for every 2n-1 cards */
.profile-character-card-wrapper:nth-child(2n-1) .profile-character-card-description-markdown-container>*,
.profile-character-card-wrapper:nth-child(2n-1) .profile-character-card-description-markdown-container span {
color: #bd0000 !important;
}
/* colours the text for every 2n cards */
.profile-character-card-wrapper:nth-child(2n) .profile-character-card-description-markdown-container>*,
.profile-character-card-wrapper:nth-child(2n) .profile-character-card-description-markdown-container span {
color: #bebebe !important;
}
/* styles the tags container */
.profile-character-card-tags {
align-self: flex-end;
width: 225px;
max-height: 60px;
overflow-y: scroll;
display: flex;
align-content: flex-end;
position: relative;
bottom: 10px;
padding-top: 5px;
padding-bottom: 5px;
flex-basis: auto
}
/* colours the border of the tags container for every 2n-1 cards */
.profile-character-card-wrapper:nth-child(2n-1) .profile-character-card-tags {
border-top: 1px solid #bd0000;
border-bottom: 1px solid #bd0000;
}
/* colour the border of the tags container for every 2n cards */
.profile-character-card-wrapper:nth-child(2n) .profile-character-card-tags {
border-top: 1px solid #bebebe;
border-bottom: 1px solid #bebebe;
}
/* added some padding for the box inside the container (so the tags are not sticking to the scrollbar) */
.profile-character-card-tags ul {
display: flex;
flex-wrap: wrap;
gap: 3px;
padding-right: 3px;
}
/* positions the tags inside the container */
.profile-character-card-tags li {
flex: auto;
}
/* makes the tags' individual boxes take up the entire width of the container */
.profile-character-card-tags li span,
.profile-character-card-tags li a {
display: block;
width: 100%;
text-align: center;
}
/* styles the individual tags */
.profile-character-card-tags li span {
display: flex;
align-items: center;
justify-content: center;
border-radius: 4px;
transition: border-color 0.3s;
cursor: default;
font-family: Alegreya Sans SC;
}
/* make the tags red for every 2n-1 cards */
.profile-character-card-wrapper:nth-child(2n-1) .profile-character-card-tags li span {
color: #bd0000;
border: 1px solid #bd0000;
filter: grayscale(100%) brightness(0%) invert(11%) sepia(53%) saturate(7458%) hue-rotate(359deg) brightness(98%) contrast(117%);
}
/* make the tag grey for every 2n cards */
.profile-character-card-wrapper:nth-child(2n) .profile-character-card-tags li span {
color: #bebebe;
border: 1px solid #bebebe;
filter: grayscale(100%) brightness(0%) invert(96%) sepia(0%) saturate(0%) hue-rotate(234deg) brightness(82%) contrast(86%);
}
/* positions the tags vertically and ensures they are all in one line */
.profile-character-card-tags li {
margin-top: 0px;
white-space: nowrap;
}
/* add a tag hover effect for every 2n-1 cards */
.profile-character-card-wrapper:nth-child(2n-1) .profile-character-card-tags li span:hover {
background-color: #490000;
filter: none;
}
/* add a tag hover effect for every 2n cards */
.profile-character-card-wrapper:nth-child(2n) .profile-character-card-tags li span:hover {
background-color: #3b3b3b;
filter: none;
}
/* makes the tag container scrollable */
.profile-character-card-tags ul {
overflow-y: auto;
}
/* styles the scrollbar */
.profile-character-card-tags ul::-webkit-scrollbar {
width: 3px;
height: auto;
}
/* colours the background of the scrollbar for every 2n-1 cards */
.profile-character-card-wrapper:nth-child(2n-1) .profile-character-card-tags ul::-webkit-scrollbar-thumb {
background-color: #490000;
border-radius: 4px;
border: 1px solid #bd0000;
}
/* colours the background of the scrollbar for every 2n cards */
.profile-character-card-wrapper:nth-child(2n) .profile-character-card-tags ul::-webkit-scrollbar-thumb {
background-color: #3b3b3b;
border-radius: 4px;
border: 1px solid #bebebe;
}
/* makes the scrollbar thinner */
.profile-character-card-tags ul::-webkit-scrollbar-track {
background: #bebebe;
border-radius: 4px;
}
/* give the scrollbar thumb a hover effect */
.profile-character-card-tags ul::-webkit-scrollbar-thumb:hover {
background-color: #bd0000;
}
/* style the tokens count */
.profile-character-card-tokens-count {
font-family: cinzel;
font-weight: 900;
margin-bottom: 5px;
}
/* colours the tokens count for every 2n-1 cards */
.profile-character-card-wrapper:nth-child(2n-1) .profile-character-card-tokens-count {
color: #bd0000;
}
/* colours the tokens count for every 2n cards */
.profile-character-card-wrapper:nth-child(2n) .profile-character-card-tokens-count {
color: #bebebe;
}
/* gets rid of the annoying shadow behind the cards */
.profile-character-card-wrapper {
border-radius: 20px;
background: rgb(0, 0, 0, 0);
}
/* gets rid of the hover effects of the annoying shadow */
.profile-character-card-wrapper:hover {
border: none !important;
box-shadow: none;
}
/* gets rid of the annoying gradients in the card */
.pp-cc-gradient-1,
.pp-cc-gradient-2,
.pp-cc-gradient-3 {
display: none;
}
/* styles the pagination page numbers */
._pageButton_5a6y6_112 {
background-color: rgb(0, 0, 0, 0);
color: #bd0000;
font-weight: 500;
}
/* give your page numbers a hover effect */
._pageButton_5a6y6_112:hover {
background-color: rgb(0, 0, 0, 0);
color: #ff3d3d;
}
/* styles your pagination arrow svgs */
._navButton_5a6y6_84 svg {
filter: brightness(0%) invert(14%) sepia(76%) saturate(3584%) hue-rotate(355deg) brightness(101%) contrast(129%);
}
/* give your pagination arrows a hover effect */
._navButton_5a6y6_84:hover svg {
filter: brightness(0%) invert(56%) sepia(92%) saturate(6501%) hue-rotate(342deg) brightness(130%) contrast(112%);
}
/* removes the background of your arrow buttons */
._navButton_5a6y6_84:hover {
background-color: rgb(0, 0, 0, 0);
}
/* ♠ ♦ ♣ ♥ end bot cards section ♥ ♣ ♦ ♠ */
/* this is the initial 'welcome to the domain of the red king/queen/monarch'. It's a bit glitchy so feel free to remove it if it doesn't work for you. It will not appear on mobile.*/
/* this makes sure the black initial screen shows up correctly on top of everythin else */
.profile-uc-background-flex {
z-index: 10;
}
@media (min-width: 768px) {
.pp-top-header,
.profile-top-bar-flex-outer {
opacity: 00%;
animation: appear 3s forwards 3s;
}
.loading-screen h1 {
display: initial;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-family: jim nightshade;
color: #bd0000;
text-shadow: 0 0 15px;
white-space: nowrap;
}
.loading-screen {
position: fixed;
top: 0px;
left: 0px;
width: 100vw;
height: 100vh;
z-index: 2;
background-color: rgba(0, 0, 0, 1);
animation: fade 3s forwards 3s,
disappear 0.1s forwards 6s;
animation-iteration-count: 1;
}
body {
overflow-y: hidden;
animation: enable-scroll 0.1s forwards 6s;
}
@keyframes fade {
from {
opacity: 1
}
to {
opacity: 0
}
}
@keyframes disappear {
from {
width: 100vw;
height: 100vh;
}
to {
width: 0vw;
height: 0vh;
}
}
@keyframes appear {
from {
opacity: 0;
}
to {
opacity: 100%;
}
}
@keyframes enable-scroll {
from {
overflow-y: hidden;
}
to {
overflow-y: auto;
}
}
}
/* this makes the whole thing work for mobile. It's very important. */
@media (max-width: 768px) {
.profile-page-flex {
transform: scale(0.7);
transform-origin: top center;
left: 0px;
}
.profile-uc-background-flex {
display: flex;
justify-content: center;
width: 450px;
left: 50%;
transform: translateX(-50%);
}
.profile-info-wrapper-box {
width: 450px;
left: 50%;
transform: translateX(-50%);
}
.profile-page-container-flex-box>* {
transform-origin: top center;
transform: scale(calc(1/0.7));
}
.profile-tabs-button .profile-badge-flex-inner {
font-size: 20px;
}
.profile-page-container-flex-box>* {
transform-origin: top center;
transform: scale(calc(1/0.7));
}
.character-list-pagination-flex>* {
font-size: 70% !important
}
.profile-tabs-button::after {
font-size: 16px !important
}
.pp-pg-total-count {
font-size: 20px !important;
}
.profile-badge-total-text:after {
content: 'cards';
/* shortens 'cards in the deck' to just 'cards' so it fits on mobile */
}
.profile-character-card-wrapper::after {
/* adds a little 'flip card' tab so it's accessible on mobile */
content: 'flip card';
text-align: center;
font-family: alegreya sans sc;
color: #fff;
}
.css-1nfaq08 {
/* hides the extended description box for mobile */
display: none;
}
}
</style>
|