Nocigar commited on
Commit
b82d373
1 Parent(s): 762f37a

Upload 475 files

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. public/css/accounts.css +5 -0
  2. public/css/animations.css +121 -0
  3. public/css/brands.min.css +6 -0
  4. public/css/bright.min.css +7 -0
  5. public/css/character-group-overlay.css +104 -0
  6. public/css/cropper.min.css +9 -0
  7. public/css/extensions-panel.css +107 -0
  8. public/css/file-form.css +57 -0
  9. public/css/fontawesome.min.css +9 -0
  10. public/css/group-avatars.css +91 -0
  11. public/css/jquery-ui.min.css +7 -0
  12. public/css/loader.css +31 -0
  13. public/css/login.css +44 -0
  14. public/css/logprobs.css +135 -0
  15. public/css/mobile-styles.css +506 -0
  16. public/css/popup-safari-fix.css +11 -0
  17. public/css/popup.css +184 -0
  18. public/css/promptmanager.css +318 -0
  19. public/css/rm-groups.css +236 -0
  20. public/css/select2-overrides.css +270 -0
  21. public/css/select2.min.css +1 -0
  22. public/css/solid.min.css +6 -0
  23. public/css/st-tailwind.css +606 -0
  24. public/css/tags.css +286 -0
  25. public/css/toastr.min.css +1 -0
  26. public/css/toggle-dependent.css +457 -0
  27. public/css/world-info.css +276 -0
  28. public/favicon.ico +0 -0
  29. public/global.d.ts +1408 -0
  30. public/img/01ai.svg +59 -0
  31. public/img/No-Image-Placeholder.svg +309 -0
  32. public/img/addbg3.png +0 -0
  33. public/img/ai21.svg +20 -0
  34. public/img/ai4.png +0 -0
  35. public/img/aphrodite.svg +71 -0
  36. public/img/apple-icon-114x114.png +0 -0
  37. public/img/apple-icon-144x144.png +0 -0
  38. public/img/apple-icon-57x57.png +0 -0
  39. public/img/apple-icon-72x72.png +0 -0
  40. public/img/blockentropy.svg +3 -0
  41. public/img/claude.svg +25 -0
  42. public/img/cohere.svg +12 -0
  43. public/img/custom.svg +50 -0
  44. public/img/default-expressions/admiration.png +0 -0
  45. public/img/default-expressions/amusement.png +0 -0
  46. public/img/default-expressions/anger.png +0 -0
  47. public/img/default-expressions/annoyance.png +0 -0
  48. public/img/default-expressions/approval.png +0 -0
  49. public/img/default-expressions/caring.png +0 -0
  50. public/img/default-expressions/confusion.png +0 -0
public/css/accounts.css ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ .userAccount {
2
+ border: 1px solid var(--SmartThemeBorderColor);
3
+ padding: 5px 10px;
4
+ border-radius: 5px;
5
+ }
public/css/animations.css ADDED
@@ -0,0 +1,121 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Fade animations with opacity */
2
+ @keyframes fade-in {
3
+ 0% {
4
+ opacity: 0;
5
+ }
6
+
7
+ 100% {
8
+ opacity: 1;
9
+ }
10
+ }
11
+
12
+ @keyframes fade-out {
13
+ 0% {
14
+ opacity: 1;
15
+ }
16
+
17
+ 100% {
18
+ opacity: 0;
19
+ }
20
+ }
21
+
22
+ /* Pop animations with opacity and vertical scaling */
23
+ @keyframes pop-in {
24
+ 0% {
25
+ opacity: 0;
26
+ transform: scaleY(0);
27
+ }
28
+
29
+ /* Make the scaling faster on pop-in, otherwise it looks a bit weird */
30
+ 33% {
31
+ transform: scaleY(1);
32
+ }
33
+
34
+ 100% {
35
+ opacity: 1;
36
+ transform: scaleY(1);
37
+ }
38
+ }
39
+
40
+ @keyframes pop-out {
41
+ 0% {
42
+ opacity: 1;
43
+ transform: scaleY(1);
44
+ }
45
+
46
+ 66% {
47
+ transform: scaleY(1);
48
+ }
49
+
50
+ 100% {
51
+ opacity: 0;
52
+ transform: scaleY(0);
53
+ }
54
+ }
55
+
56
+ /* Flashing for highlighting animation */
57
+ @keyframes flash {
58
+ 0%, 50%, 100% {
59
+ opacity: 1;
60
+ }
61
+
62
+ 25%, 75% {
63
+ opacity: 0.2;
64
+ }
65
+ }
66
+
67
+ /* Pulsing highlight, slightly resizing the element */
68
+ @keyframes pulse {
69
+ from {
70
+ transform: scale(1);
71
+ filter: brightness(1.1);
72
+ }
73
+
74
+ to {
75
+ transform: scale(1.01);
76
+ filter: brightness(1.3);
77
+ }
78
+ }
79
+
80
+ /* Ellipsis animation */
81
+ @keyframes ellipsis {
82
+ 0% {
83
+ content: ""
84
+ }
85
+
86
+ 25% {
87
+ content: "."
88
+ }
89
+
90
+ 50% {
91
+ content: ".."
92
+ }
93
+
94
+ 75% {
95
+ content: "..."
96
+ }
97
+ }
98
+
99
+ /* HEINOUS */
100
+ @keyframes infinite-spinning {
101
+ from {
102
+ transform: rotate(0deg);
103
+ }
104
+
105
+ to {
106
+ transform: rotate(360deg);
107
+ }
108
+ }
109
+
110
+ /* STscript animation */
111
+ @keyframes script_progress_pulse {
112
+
113
+ 0%,
114
+ 100% {
115
+ border-top-color: var(--progColor);
116
+ }
117
+
118
+ 50% {
119
+ border-top-color: var(--progFlashColor);
120
+ }
121
+ }
public/css/brands.min.css ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ /*!
2
+ * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ * Copyright 2024 Fonticons, Inc.
5
+ */
6
+ :host,:root{--fa-style-family-brands:"Font Awesome 6 Brands";--fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands"}@font-face{font-family:"Font Awesome 6 Brands";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}.fa-brands,.fab{font-weight:400}.fa-monero:before{content:"\f3d0"}.fa-hooli:before{content:"\f427"}.fa-yelp:before{content:"\f1e9"}.fa-cc-visa:before{content:"\f1f0"}.fa-lastfm:before{content:"\f202"}.fa-shopware:before{content:"\f5b5"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-aws:before{content:"\f375"}.fa-redhat:before{content:"\f7bc"}.fa-yoast:before{content:"\f2b1"}.fa-cloudflare:before{content:"\e07d"}.fa-ups:before{content:"\f7e0"}.fa-pixiv:before{content:"\e640"}.fa-wpexplorer:before{content:"\f2de"}.fa-dyalog:before{content:"\f399"}.fa-bity:before{content:"\f37a"}.fa-stackpath:before{content:"\f842"}.fa-buysellads:before{content:"\f20d"}.fa-first-order:before{content:"\f2b0"}.fa-modx:before{content:"\f285"}.fa-guilded:before{content:"\e07e"}.fa-vnv:before{content:"\f40b"}.fa-js-square:before,.fa-square-js:before{content:"\f3b9"}.fa-microsoft:before{content:"\f3ca"}.fa-qq:before{content:"\f1d6"}.fa-orcid:before{content:"\f8d2"}.fa-java:before{content:"\f4e4"}.fa-invision:before{content:"\f7b0"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-centercode:before{content:"\f380"}.fa-glide-g:before{content:"\f2a6"}.fa-drupal:before{content:"\f1a9"}.fa-jxl:before{content:"\e67b"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-unity:before{content:"\e049"}.fa-whmcs:before{content:"\f40d"}.fa-rocketchat:before{content:"\f3e8"}.fa-vk:before{content:"\f189"}.fa-untappd:before{content:"\f405"}.fa-mailchimp:before{content:"\f59e"}.fa-css3-alt:before{content:"\f38b"}.fa-reddit-square:before,.fa-square-reddit:before{content:"\f1a2"}.fa-vimeo-v:before{content:"\f27d"}.fa-contao:before{content:"\f26d"}.fa-square-font-awesome:before{content:"\e5ad"}.fa-deskpro:before{content:"\f38f"}.fa-brave:before{content:"\e63c"}.fa-sistrix:before{content:"\f3ee"}.fa-instagram-square:before,.fa-square-instagram:before{content:"\e055"}.fa-battle-net:before{content:"\f835"}.fa-the-red-yeti:before{content:"\f69d"}.fa-hacker-news-square:before,.fa-square-hacker-news:before{content:"\f3af"}.fa-edge:before{content:"\f282"}.fa-threads:before{content:"\e618"}.fa-napster:before{content:"\f3d2"}.fa-snapchat-square:before,.fa-square-snapchat:before{content:"\f2ad"}.fa-google-plus-g:before{content:"\f0d5"}.fa-artstation:before{content:"\f77a"}.fa-markdown:before{content:"\f60f"}.fa-sourcetree:before{content:"\f7d3"}.fa-google-plus:before{content:"\f2b3"}.fa-diaspora:before{content:"\f791"}.fa-foursquare:before{content:"\f180"}.fa-stack-overflow:before{content:"\f16c"}.fa-github-alt:before{content:"\f113"}.fa-phoenix-squadron:before{content:"\f511"}.fa-pagelines:before{content:"\f18c"}.fa-algolia:before{content:"\f36c"}.fa-red-river:before{content:"\f3e3"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-safari:before{content:"\f267"}.fa-google:before{content:"\f1a0"}.fa-font-awesome-alt:before,.fa-square-font-awesome-stroke:before{content:"\f35c"}.fa-atlassian:before{content:"\f77b"}.fa-linkedin-in:before{content:"\f0e1"}.fa-digital-ocean:before{content:"\f391"}.fa-nimblr:before{content:"\f5a8"}.fa-chromecast:before{content:"\f838"}.fa-evernote:before{content:"\f839"}.fa-hacker-news:before{content:"\f1d4"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-adversal:before{content:"\f36a"}.fa-creative-commons:before{content:"\f25e"}.fa-watchman-monitoring:before{content:"\e087"}.fa-fonticons:before{content:"\f280"}.fa-weixin:before{content:"\f1d7"}.fa-shirtsinbulk:before{content:"\f214"}.fa-codepen:before{content:"\f1cb"}.fa-git-alt:before{content:"\f841"}.fa-lyft:before{content:"\f3c3"}.fa-rev:before{content:"\f5b2"}.fa-windows:before{content:"\f17a"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-square-viadeo:before,.fa-viadeo-square:before{content:"\f2aa"}.fa-meetup:before{content:"\f2e0"}.fa-centos:before{content:"\f789"}.fa-adn:before{content:"\f170"}.fa-cloudsmith:before{content:"\f384"}.fa-opensuse:before{content:"\e62b"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-dribbble-square:before,.fa-square-dribbble:before{content:"\f397"}.fa-codiepie:before{content:"\f284"}.fa-node:before{content:"\f419"}.fa-mix:before{content:"\f3cb"}.fa-steam:before{content:"\f1b6"}.fa-cc-apple-pay:before{content:"\f416"}.fa-scribd:before{content:"\f28a"}.fa-debian:before{content:"\e60b"}.fa-openid:before{content:"\f19b"}.fa-instalod:before{content:"\e081"}.fa-expeditedssl:before{content:"\f23e"}.fa-sellcast:before{content:"\f2da"}.fa-square-twitter:before,.fa-twitter-square:before{content:"\f081"}.fa-r-project:before{content:"\f4f7"}.fa-delicious:before{content:"\f1a5"}.fa-freebsd:before{content:"\f3a4"}.fa-vuejs:before{content:"\f41f"}.fa-accusoft:before{content:"\f369"}.fa-ioxhost:before{content:"\f208"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-app-store:before{content:"\f36f"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-itunes-note:before{content:"\f3b5"}.fa-golang:before{content:"\e40f"}.fa-kickstarter:before,.fa-square-kickstarter:before{content:"\f3bb"}.fa-grav:before{content:"\f2d6"}.fa-weibo:before{content:"\f18a"}.fa-uncharted:before{content:"\e084"}.fa-firstdraft:before{content:"\f3a1"}.fa-square-youtube:before,.fa-youtube-square:before{content:"\f431"}.fa-wikipedia-w:before{content:"\f266"}.fa-rendact:before,.fa-wpressr:before{content:"\f3e4"}.fa-angellist:before{content:"\f209"}.fa-galactic-republic:before{content:"\f50c"}.fa-nfc-directional:before{content:"\e530"}.fa-skype:before{content:"\f17e"}.fa-joget:before{content:"\f3b7"}.fa-fedora:before{content:"\f798"}.fa-stripe-s:before{content:"\f42a"}.fa-meta:before{content:"\e49b"}.fa-laravel:before{content:"\f3bd"}.fa-hotjar:before{content:"\f3b1"}.fa-bluetooth-b:before{content:"\f294"}.fa-square-letterboxd:before{content:"\e62e"}.fa-sticker-mule:before{content:"\f3f7"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-hips:before{content:"\f452"}.fa-behance:before{content:"\f1b4"}.fa-reddit:before{content:"\f1a1"}.fa-discord:before{content:"\f392"}.fa-chrome:before{content:"\f268"}.fa-app-store-ios:before{content:"\f370"}.fa-cc-discover:before{content:"\f1f2"}.fa-wpbeginner:before{content:"\f297"}.fa-confluence:before{content:"\f78d"}.fa-shoelace:before{content:"\e60c"}.fa-mdb:before{content:"\f8ca"}.fa-dochub:before{content:"\f394"}.fa-accessible-icon:before{content:"\f368"}.fa-ebay:before{content:"\f4f4"}.fa-amazon:before{content:"\f270"}.fa-unsplash:before{content:"\e07c"}.fa-yarn:before{content:"\f7e3"}.fa-square-steam:before,.fa-steam-square:before{content:"\f1b7"}.fa-500px:before{content:"\f26e"}.fa-square-vimeo:before,.fa-vimeo-square:before{content:"\f194"}.fa-asymmetrik:before{content:"\f372"}.fa-font-awesome-flag:before,.fa-font-awesome-logo-full:before,.fa-font-awesome:before{content:"\f2b4"}.fa-gratipay:before{content:"\f184"}.fa-apple:before{content:"\f179"}.fa-hive:before{content:"\e07f"}.fa-gitkraken:before{content:"\f3a6"}.fa-keybase:before{content:"\f4f5"}.fa-apple-pay:before{content:"\f415"}.fa-padlet:before{content:"\e4a0"}.fa-amazon-pay:before{content:"\f42c"}.fa-github-square:before,.fa-square-github:before{content:"\f092"}.fa-stumbleupon:before{content:"\f1a4"}.fa-fedex:before{content:"\f797"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-shopify:before{content:"\e057"}.fa-neos:before{content:"\f612"}.fa-square-threads:before{content:"\e619"}.fa-hackerrank:before{content:"\f5f7"}.fa-researchgate:before{content:"\f4f8"}.fa-swift:before{content:"\f8e1"}.fa-angular:before{content:"\f420"}.fa-speakap:before{content:"\f3f3"}.fa-angrycreative:before{content:"\f36e"}.fa-y-combinator:before{content:"\f23b"}.fa-empire:before{content:"\f1d1"}.fa-envira:before{content:"\f299"}.fa-google-scholar:before{content:"\e63b"}.fa-gitlab-square:before,.fa-square-gitlab:before{content:"\e5ae"}.fa-studiovinari:before{content:"\f3f8"}.fa-pied-piper:before{content:"\f2ae"}.fa-wordpress:before{content:"\f19a"}.fa-product-hunt:before{content:"\f288"}.fa-firefox:before{content:"\f269"}.fa-linode:before{content:"\f2b8"}.fa-goodreads:before{content:"\f3a8"}.fa-odnoklassniki-square:before,.fa-square-odnoklassniki:before{content:"\f264"}.fa-jsfiddle:before{content:"\f1cc"}.fa-sith:before{content:"\f512"}.fa-themeisle:before{content:"\f2b2"}.fa-page4:before{content:"\f3d7"}.fa-hashnode:before{content:"\e499"}.fa-react:before{content:"\f41b"}.fa-cc-paypal:before{content:"\f1f4"}.fa-squarespace:before{content:"\f5be"}.fa-cc-stripe:before{content:"\f1f5"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-bitcoin:before{content:"\f379"}.fa-keycdn:before{content:"\f3ba"}.fa-opera:before{content:"\f26a"}.fa-itch-io:before{content:"\f83a"}.fa-umbraco:before{content:"\f8e8"}.fa-galactic-senate:before{content:"\f50d"}.fa-ubuntu:before{content:"\f7df"}.fa-draft2digital:before{content:"\f396"}.fa-stripe:before{content:"\f429"}.fa-houzz:before{content:"\f27c"}.fa-gg:before{content:"\f260"}.fa-dhl:before{content:"\f790"}.fa-pinterest-square:before,.fa-square-pinterest:before{content:"\f0d3"}.fa-xing:before{content:"\f168"}.fa-blackberry:before{content:"\f37b"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-playstation:before{content:"\f3df"}.fa-quinscape:before{content:"\f459"}.fa-less:before{content:"\f41d"}.fa-blogger-b:before{content:"\f37d"}.fa-opencart:before{content:"\f23d"}.fa-vine:before{content:"\f1ca"}.fa-signal-messenger:before{content:"\e663"}.fa-paypal:before{content:"\f1ed"}.fa-gitlab:before{content:"\f296"}.fa-typo3:before{content:"\f42b"}.fa-reddit-alien:before{content:"\f281"}.fa-yahoo:before{content:"\f19e"}.fa-dailymotion:before{content:"\e052"}.fa-affiliatetheme:before{content:"\f36b"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-bootstrap:before{content:"\f836"}.fa-odnoklassniki:before{content:"\f263"}.fa-nfc-symbol:before{content:"\e531"}.fa-mintbit:before{content:"\e62f"}.fa-ethereum:before{content:"\f42e"}.fa-speaker-deck:before{content:"\f83c"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-patreon:before{content:"\f3d9"}.fa-avianex:before{content:"\f374"}.fa-ello:before{content:"\f5f1"}.fa-gofore:before{content:"\f3a7"}.fa-bimobject:before{content:"\f378"}.fa-brave-reverse:before{content:"\e63d"}.fa-facebook-f:before{content:"\f39e"}.fa-google-plus-square:before,.fa-square-google-plus:before{content:"\f0d4"}.fa-web-awesome:before{content:"\e682"}.fa-mandalorian:before{content:"\f50f"}.fa-first-order-alt:before{content:"\f50a"}.fa-osi:before{content:"\f41a"}.fa-google-wallet:before{content:"\f1ee"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-periscope:before{content:"\f3da"}.fa-fulcrum:before{content:"\f50b"}.fa-cloudscale:before{content:"\f383"}.fa-forumbee:before{content:"\f211"}.fa-mizuni:before{content:"\f3cc"}.fa-schlix:before{content:"\f3ea"}.fa-square-xing:before,.fa-xing-square:before{content:"\f169"}.fa-bandcamp:before{content:"\f2d5"}.fa-wpforms:before{content:"\f298"}.fa-cloudversify:before{content:"\f385"}.fa-usps:before{content:"\f7e1"}.fa-megaport:before{content:"\f5a3"}.fa-magento:before{content:"\f3c4"}.fa-spotify:before{content:"\f1bc"}.fa-optin-monster:before{content:"\f23c"}.fa-fly:before{content:"\f417"}.fa-aviato:before{content:"\f421"}.fa-itunes:before{content:"\f3b4"}.fa-cuttlefish:before{content:"\f38c"}.fa-blogger:before{content:"\f37c"}.fa-flickr:before{content:"\f16e"}.fa-viber:before{content:"\f409"}.fa-soundcloud:before{content:"\f1be"}.fa-digg:before{content:"\f1a6"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-letterboxd:before{content:"\e62d"}.fa-symfony:before{content:"\f83d"}.fa-maxcdn:before{content:"\f136"}.fa-etsy:before{content:"\f2d7"}.fa-facebook-messenger:before{content:"\f39f"}.fa-audible:before{content:"\f373"}.fa-think-peaks:before{content:"\f731"}.fa-bilibili:before{content:"\e3d9"}.fa-erlang:before{content:"\f39d"}.fa-x-twitter:before{content:"\e61b"}.fa-cotton-bureau:before{content:"\f89e"}.fa-dashcube:before{content:"\f210"}.fa-42-group:before,.fa-innosoft:before{content:"\e080"}.fa-stack-exchange:before{content:"\f18d"}.fa-elementor:before{content:"\f430"}.fa-pied-piper-square:before,.fa-square-pied-piper:before{content:"\e01e"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-palfed:before{content:"\f3d8"}.fa-superpowers:before{content:"\f2dd"}.fa-resolving:before{content:"\f3e7"}.fa-xbox:before{content:"\f412"}.fa-square-web-awesome-stroke:before{content:"\e684"}.fa-searchengin:before{content:"\f3eb"}.fa-tiktok:before{content:"\e07b"}.fa-facebook-square:before,.fa-square-facebook:before{content:"\f082"}.fa-renren:before{content:"\f18b"}.fa-linux:before{content:"\f17c"}.fa-glide:before{content:"\f2a5"}.fa-linkedin:before{content:"\f08c"}.fa-hubspot:before{content:"\f3b2"}.fa-deploydog:before{content:"\f38e"}.fa-twitch:before{content:"\f1e8"}.fa-ravelry:before{content:"\f2d9"}.fa-mixer:before{content:"\e056"}.fa-lastfm-square:before,.fa-square-lastfm:before{content:"\f203"}.fa-vimeo:before{content:"\f40a"}.fa-mendeley:before{content:"\f7b3"}.fa-uniregistry:before{content:"\f404"}.fa-figma:before{content:"\f799"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-dropbox:before{content:"\f16b"}.fa-instagram:before{content:"\f16d"}.fa-cmplid:before{content:"\e360"}.fa-upwork:before{content:"\e641"}.fa-facebook:before{content:"\f09a"}.fa-gripfire:before{content:"\f3ac"}.fa-jedi-order:before{content:"\f50e"}.fa-uikit:before{content:"\f403"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-phabricator:before{content:"\f3db"}.fa-ussunnah:before{content:"\f407"}.fa-earlybirds:before{content:"\f39a"}.fa-trade-federation:before{content:"\f513"}.fa-autoprefixer:before{content:"\f41c"}.fa-whatsapp:before{content:"\f232"}.fa-square-upwork:before{content:"\e67c"}.fa-slideshare:before{content:"\f1e7"}.fa-google-play:before{content:"\f3ab"}.fa-viadeo:before{content:"\f2a9"}.fa-line:before{content:"\f3c0"}.fa-google-drive:before{content:"\f3aa"}.fa-servicestack:before{content:"\f3ec"}.fa-simplybuilt:before{content:"\f215"}.fa-bitbucket:before{content:"\f171"}.fa-imdb:before{content:"\f2d8"}.fa-deezer:before{content:"\e077"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-jira:before{content:"\f7b1"}.fa-docker:before{content:"\f395"}.fa-screenpal:before{content:"\e570"}.fa-bluetooth:before{content:"\f293"}.fa-gitter:before{content:"\f426"}.fa-d-and-d:before{content:"\f38d"}.fa-microblog:before{content:"\e01a"}.fa-cc-diners-club:before{content:"\f24c"}.fa-gg-circle:before{content:"\f261"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-yandex:before{content:"\f413"}.fa-readme:before{content:"\f4d5"}.fa-html5:before{content:"\f13b"}.fa-sellsy:before{content:"\f213"}.fa-square-web-awesome:before{content:"\e683"}.fa-sass:before{content:"\f41e"}.fa-wirsindhandwerk:before,.fa-wsh:before{content:"\e2d0"}.fa-buromobelexperte:before{content:"\f37f"}.fa-salesforce:before{content:"\f83b"}.fa-octopus-deploy:before{content:"\e082"}.fa-medapps:before{content:"\f3c6"}.fa-ns8:before{content:"\f3d5"}.fa-pinterest-p:before{content:"\f231"}.fa-apper:before{content:"\f371"}.fa-fort-awesome:before{content:"\f286"}.fa-waze:before{content:"\f83f"}.fa-bluesky:before{content:"\e671"}.fa-cc-jcb:before{content:"\f24b"}.fa-snapchat-ghost:before,.fa-snapchat:before{content:"\f2ab"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-rust:before{content:"\e07a"}.fa-wix:before{content:"\f5cf"}.fa-behance-square:before,.fa-square-behance:before{content:"\f1b5"}.fa-supple:before{content:"\f3f9"}.fa-webflow:before{content:"\e65c"}.fa-rebel:before{content:"\f1d0"}.fa-css3:before{content:"\f13c"}.fa-staylinked:before{content:"\f3f5"}.fa-kaggle:before{content:"\f5fa"}.fa-space-awesome:before{content:"\e5ac"}.fa-deviantart:before{content:"\f1bd"}.fa-cpanel:before{content:"\f388"}.fa-goodreads-g:before{content:"\f3a9"}.fa-git-square:before,.fa-square-git:before{content:"\f1d2"}.fa-square-tumblr:before,.fa-tumblr-square:before{content:"\f174"}.fa-trello:before{content:"\f181"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-get-pocket:before{content:"\f265"}.fa-perbyte:before{content:"\e083"}.fa-grunt:before{content:"\f3ad"}.fa-weebly:before{content:"\f5cc"}.fa-connectdevelop:before{content:"\f20e"}.fa-leanpub:before{content:"\f212"}.fa-black-tie:before{content:"\f27e"}.fa-themeco:before{content:"\f5c6"}.fa-python:before{content:"\f3e2"}.fa-android:before{content:"\f17b"}.fa-bots:before{content:"\e340"}.fa-free-code-camp:before{content:"\f2c5"}.fa-hornbill:before{content:"\f592"}.fa-js:before{content:"\f3b8"}.fa-ideal:before{content:"\e013"}.fa-git:before{content:"\f1d3"}.fa-dev:before{content:"\f6cc"}.fa-sketch:before{content:"\f7c6"}.fa-yandex-international:before{content:"\f414"}.fa-cc-amex:before{content:"\f1f3"}.fa-uber:before{content:"\f402"}.fa-github:before{content:"\f09b"}.fa-php:before{content:"\f457"}.fa-alipay:before{content:"\f642"}.fa-youtube:before{content:"\f167"}.fa-skyatlas:before{content:"\f216"}.fa-firefox-browser:before{content:"\e007"}.fa-replyd:before{content:"\f3e6"}.fa-suse:before{content:"\f7d6"}.fa-jenkins:before{content:"\f3b6"}.fa-twitter:before{content:"\f099"}.fa-rockrms:before{content:"\f3e9"}.fa-pinterest:before{content:"\f0d2"}.fa-buffer:before{content:"\f837"}.fa-npm:before{content:"\f3d4"}.fa-yammer:before{content:"\f840"}.fa-btc:before{content:"\f15a"}.fa-dribbble:before{content:"\f17d"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-internet-explorer:before{content:"\f26b"}.fa-stubber:before{content:"\e5c7"}.fa-telegram-plane:before,.fa-telegram:before{content:"\f2c6"}.fa-old-republic:before{content:"\f510"}.fa-odysee:before{content:"\e5c6"}.fa-square-whatsapp:before,.fa-whatsapp-square:before{content:"\f40c"}.fa-node-js:before{content:"\f3d3"}.fa-edge-legacy:before{content:"\e078"}.fa-slack-hash:before,.fa-slack:before{content:"\f198"}.fa-medrt:before{content:"\f3c8"}.fa-usb:before{content:"\f287"}.fa-tumblr:before{content:"\f173"}.fa-vaadin:before{content:"\f408"}.fa-quora:before{content:"\f2c4"}.fa-square-x-twitter:before{content:"\e61a"}.fa-reacteurope:before{content:"\f75d"}.fa-medium-m:before,.fa-medium:before{content:"\f23a"}.fa-amilia:before{content:"\f36d"}.fa-mixcloud:before{content:"\f289"}.fa-flipboard:before{content:"\f44d"}.fa-viacoin:before{content:"\f237"}.fa-critical-role:before{content:"\f6c9"}.fa-sitrox:before{content:"\e44a"}.fa-discourse:before{content:"\f393"}.fa-joomla:before{content:"\f1aa"}.fa-mastodon:before{content:"\f4f6"}.fa-airbnb:before{content:"\f834"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-buy-n-large:before{content:"\f8a6"}.fa-gulp:before{content:"\f3ae"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-strava:before{content:"\f428"}.fa-ember:before{content:"\f423"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-teamspeak:before{content:"\f4f9"}.fa-pushed:before{content:"\f3e1"}.fa-wordpress-simple:before{content:"\f411"}.fa-nutritionix:before{content:"\f3d6"}.fa-wodu:before{content:"\e088"}.fa-google-pay:before{content:"\e079"}.fa-intercom:before{content:"\f7af"}.fa-zhihu:before{content:"\f63f"}.fa-korvue:before{content:"\f42f"}.fa-pix:before{content:"\e43a"}.fa-steam-symbol:before{content:"\f3f6"}
public/css/bright.min.css ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ /*!
2
+ Theme: Bright
3
+ Author: Chris Kempson (http://chriskempson.com)
4
+ License: ~ MIT (or more permissive) [via base16-schemes-source]
5
+ Maintainer: @highlightjs/core-team
6
+ Version: 2021.09.0
7
+ */pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}.hljs{color:#e0e0e0;background:#000}.hljs ::selection,.hljs::selection{background-color:#505050;color:#e0e0e0}.hljs-comment{color:#b0b0b0}.hljs-tag{color:#d0d0d0}.hljs-operator,.hljs-punctuation,.hljs-subst{color:#e0e0e0}.hljs-operator{opacity:.7}.hljs-bullet,.hljs-deletion,.hljs-name,.hljs-selector-tag,.hljs-template-variable,.hljs-variable{color:#fb0120}.hljs-attr,.hljs-link,.hljs-literal,.hljs-number,.hljs-symbol,.hljs-variable.constant_{color:#fc6d24}.hljs-class .hljs-title,.hljs-title,.hljs-title.class_{color:#fda331}.hljs-strong{font-weight:700;color:#fda331}.hljs-addition,.hljs-code,.hljs-string,.hljs-title.class_.inherited__{color:#a1c659}.hljs-built_in,.hljs-doctag,.hljs-keyword.hljs-atrule,.hljs-quote,.hljs-regexp{color:#76c7b7}.hljs-attribute,.hljs-function .hljs-title,.hljs-section,.hljs-title.function_,.ruby .hljs-property{color:#6fb3d2}.diff .hljs-meta,.hljs-keyword,.hljs-template-tag,.hljs-type{color:#d381c3}.hljs-emphasis{color:#d381c3;font-style:italic}.hljs-meta,.hljs-meta .hljs-keyword,.hljs-meta .hljs-string{color:#be643c}.hljs-meta .hljs-keyword,.hljs-meta-keyword{font-weight:700}
public/css/character-group-overlay.css ADDED
@@ -0,0 +1,104 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ #rm_print_characters_block.group_overlay_mode_select .character_select {
3
+ transition: background-color 0.4s ease;
4
+ background-color: rgba(170, 170, 170, 0.15);
5
+ }
6
+
7
+ #rm_print_characters_block.group_overlay_mode_select .bogus_folder_select,
8
+ #rm_print_characters_block.group_overlay_mode_select .group_select {
9
+ cursor: auto;
10
+ filter: saturate(0.3);
11
+ }
12
+
13
+ #rm_print_characters_block.group_overlay_mode_select .bogus_folder_select:hover,
14
+ #rm_print_characters_block.group_overlay_mode_select .group_select:hover {
15
+ background: none;
16
+ }
17
+
18
+ #rm_print_characters_block.group_overlay_mode_select .character_select input.bulk_select_checkbox {
19
+ display: none !important;
20
+ }
21
+
22
+ #rm_print_characters_block.group_overlay_mode_select .character_select.character_selected {
23
+ background-color: var(--SmartThemeQuoteColor);
24
+ }
25
+
26
+ #rm_print_characters_block.group_overlay_mode_select .character_select .bulk_select_checkbox {
27
+ visibility: hidden;
28
+ height: 0 !important;
29
+ }
30
+
31
+ #character_context_menu.hidden { display: none; }
32
+ #character_context_menu {
33
+ position: absolute;
34
+ padding: 3px;
35
+ z-index: 9998;
36
+ background-color: var(--black90a);
37
+ border: 1px solid var(--black90a);
38
+ border-radius: 10px;
39
+ }
40
+
41
+ #character_context_menu ul li button {
42
+ border: 0;
43
+ border-bottom-color: currentcolor;
44
+ color: var(--SmartThemeQuoteColor);
45
+ background-color: transparent;
46
+ font-weight: bold;
47
+ font-size: 1em;
48
+ padding: 0.5em;
49
+ border-bottom: 1px dotted var(--SmartThemeQuoteColor);
50
+ width: 100%;
51
+ cursor: pointer;
52
+ }
53
+
54
+ #character_context_menu ul li button:hover {
55
+ background-color: var(--SmartThemeBlurTintColor);
56
+ }
57
+
58
+ #character_context_menu ul li:last-child button {
59
+ border-bottom: 0;
60
+ }
61
+
62
+ #character_context_menu ul li #character_context_menu_delete {
63
+ color: var(--fullred);
64
+ }
65
+
66
+ #character_context_menu ul {
67
+ list-style-type: none;
68
+ padding: 0;
69
+ margin: 0;
70
+ }
71
+
72
+ #character_context_menu .character_context_menu_separator {
73
+ height: 1px;
74
+ background-color: var(--SmartThemeBotMesBlurTintColor);
75
+ }
76
+
77
+ #character_context_menu li:hover {
78
+ background-color: var(--SmartThemeBotMesBlurTintColor);
79
+ }
80
+
81
+ #bulkEditButton.bulk_edit_overlay_active {
82
+ color: var(--golden);
83
+ }
84
+
85
+ #bulk_tag_shadow_popup {
86
+ backdrop-filter: blur(calc(var(--SmartThemeBlurStrength) * 2));
87
+ -webkit-backdrop-filter: blur(calc(var(--SmartThemeBlurStrength) * 2));
88
+ background-color: var(--black30a);
89
+ position: absolute;
90
+ width: 100%;
91
+ height: 100vh;
92
+ height: 100dvh;
93
+ z-index: 9998;
94
+ top: 0;
95
+ }
96
+
97
+ #bulk_tag_shadow_popup #bulk_tag_popup {
98
+ padding: 1em;
99
+ }
100
+
101
+ #bulk_tag_shadow_popup #bulk_tag_popup #dialogue_popup_controls .menu_button {
102
+ width: unset;
103
+ padding: 0.25em;
104
+ }
public/css/cropper.min.css ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ /*!
2
+ * Cropper.js v1.5.13
3
+ * https://fengyuanchen.github.io/cropperjs
4
+ *
5
+ * Copyright 2015-present Chen Fengyuan
6
+ * Released under the MIT license
7
+ *
8
+ * Date: 2022-11-20T05:30:43.444Z
9
+ */.cropper-container{direction:ltr;font-size:0;line-height:0;position:relative;-ms-touch-action:none;touch-action:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.cropper-container img{-webkit-backface-visibility:hidden;backface-visibility:hidden;display:block;height:100%;image-orientation:0deg;max-height:none!important;max-width:none!important;min-height:0!important;min-width:0!important;width:100%}.cropper-canvas,.cropper-crop-box,.cropper-drag-box,.cropper-modal,.cropper-wrap-box{bottom:0;left:0;position:absolute;right:0;top:0}.cropper-canvas,.cropper-wrap-box{overflow:hidden}.cropper-drag-box{background-color:#fff;opacity:0}.cropper-modal{background-color:#000;opacity:.5}.cropper-view-box{display:block;height:100%;outline:1px solid #39f;outline-color:rgba(51,153,255,.75);overflow:hidden;width:100%}.cropper-dashed{border:0 dashed #eee;display:block;opacity:.5;position:absolute}.cropper-dashed.dashed-h{border-bottom-width:1px;border-top-width:1px;height:33.33333%;left:0;top:33.33333%;width:100%}.cropper-dashed.dashed-v{border-left-width:1px;border-right-width:1px;height:100%;left:33.33333%;top:0;width:33.33333%}.cropper-center{display:block;height:0;left:50%;opacity:.75;position:absolute;top:50%;width:0}.cropper-center:after,.cropper-center:before{background-color:#eee;content:" ";display:block;position:absolute}.cropper-center:before{height:1px;left:-3px;top:0;width:7px}.cropper-center:after{height:7px;left:0;top:-3px;width:1px}.cropper-face,.cropper-line,.cropper-point{display:block;height:100%;opacity:.1;position:absolute;width:100%}.cropper-face{background-color:#fff;left:0;top:0}.cropper-line{background-color:#39f}.cropper-line.line-e{cursor:ew-resize;right:-3px;top:0;width:5px}.cropper-line.line-n{cursor:ns-resize;height:5px;left:0;top:-3px}.cropper-line.line-w{cursor:ew-resize;left:-3px;top:0;width:5px}.cropper-line.line-s{bottom:-3px;cursor:ns-resize;height:5px;left:0}.cropper-point{background-color:#39f;height:5px;opacity:.75;width:5px}.cropper-point.point-e{cursor:ew-resize;margin-top:-3px;right:-3px;top:50%}.cropper-point.point-n{cursor:ns-resize;left:50%;margin-left:-3px;top:-3px}.cropper-point.point-w{cursor:ew-resize;left:-3px;margin-top:-3px;top:50%}.cropper-point.point-s{bottom:-3px;cursor:s-resize;left:50%;margin-left:-3px}.cropper-point.point-ne{cursor:nesw-resize;right:-3px;top:-3px}.cropper-point.point-nw{cursor:nwse-resize;left:-3px;top:-3px}.cropper-point.point-sw{bottom:-3px;cursor:nesw-resize;left:-3px}.cropper-point.point-se{bottom:-3px;cursor:nwse-resize;height:20px;opacity:1;right:-3px;width:20px}@media (min-width:768px){.cropper-point.point-se{height:15px;width:15px}}@media (min-width:992px){.cropper-point.point-se{height:10px;width:10px}}@media (min-width:1200px){.cropper-point.point-se{height:5px;opacity:.75;width:5px}}.cropper-point.point-se:before{background-color:#39f;bottom:-50%;content:" ";display:block;height:200%;opacity:0;position:absolute;right:-50%;width:200%}.cropper-invisible{opacity:0}.cropper-bg{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC")}.cropper-hide{display:block;height:0;position:absolute;width:0}.cropper-hidden{display:none!important}.cropper-move{cursor:move}.cropper-crop{cursor:crosshair}.cropper-disabled .cropper-drag-box,.cropper-disabled .cropper-face,.cropper-disabled .cropper-line,.cropper-disabled .cropper-point{cursor:not-allowed}
public/css/extensions-panel.css ADDED
@@ -0,0 +1,107 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Extensions */
2
+ #extensions_url {
3
+ display: block;
4
+ }
5
+
6
+ .extensions_block input[type="submit"]:hover {
7
+ background-color: green;
8
+ }
9
+
10
+ .extensions_block input[type="checkbox"],
11
+ .extensions_block input[type="radio"] {
12
+ margin-left: 10px;
13
+ margin-right: 10px;
14
+ }
15
+
16
+ label[for="extensions_autoconnect"] {
17
+ display: flex;
18
+ align-items: center;
19
+ margin: 0 !important;
20
+ }
21
+
22
+ .extensions_url_block {
23
+ display: flex;
24
+ align-items: center;
25
+ justify-content: space-between;
26
+ gap: 10px;
27
+ }
28
+
29
+ .extensions_url_block h4 {
30
+ display: inline;
31
+ }
32
+
33
+ .extensions_block {
34
+ clear: both;
35
+ padding: 0.05px;
36
+ }
37
+
38
+ .extensions_info {
39
+ text-align: left;
40
+ }
41
+
42
+ .extensions_info h3 {
43
+ margin-bottom: 0.5em;
44
+ }
45
+
46
+ .extensions_info h4 {
47
+ margin-bottom: 0.5em;
48
+ }
49
+
50
+ .extensions_info p {
51
+ margin-bottom: 0.5em;
52
+ margin-left: 1em;
53
+ }
54
+
55
+ .extensions_info .disabled {
56
+ color: lightgray;
57
+ }
58
+
59
+ .extensions_info .toggle_enable {
60
+ color: lightgreen;
61
+ }
62
+
63
+ .extensions_info .toggle_disable {
64
+ color: rgb(238, 144, 144);
65
+ }
66
+
67
+ .extensions_info .extension_enabled {
68
+ color: green;
69
+ }
70
+
71
+ .extensions_info .extension_disabled {
72
+ color: lightgray;
73
+ }
74
+
75
+ .extensions_info .extension_missing {
76
+ color: gray;
77
+ }
78
+
79
+ input.extension_missing[type="checkbox"] {
80
+ opacity: 0.5;
81
+ }
82
+
83
+ #extensions_list .disabled {
84
+ text-decoration: line-through;
85
+ color: lightgray;
86
+ }
87
+
88
+ .update-button {
89
+ margin-right: 10px;
90
+ display: inline-flex;
91
+ }
92
+
93
+ /* Fixes order of settings for extensions */
94
+ #extensions_settings,
95
+ #extensions_settings2 {
96
+ display: flex;
97
+ flex-direction: column;
98
+ }
99
+
100
+ /* Fixes order of settings for extensions */
101
+ .extension_container {
102
+ display: contents;
103
+ }
104
+
105
+ #extensionsMenu>div.extension_container:empty {
106
+ display: none;
107
+ }
public/css/file-form.css ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .file_attached {
2
+ display: flex;
3
+ min-width: 150px;
4
+ max-width: calc(var(--sheldWidth) * 0.9);
5
+ flex-direction: row;
6
+ gap: 10px;
7
+ align-items: center;
8
+ margin: 0.25em auto;
9
+ padding: 0 0.75em;
10
+ border: 2px solid var(--SmartThemeBorderColor);
11
+ border-radius: 15px;
12
+ background-color: var(--white20a);
13
+ }
14
+
15
+ .mes_file_container {
16
+ cursor: default;
17
+ display: flex;
18
+ gap: 15px;
19
+ align-items: center;
20
+ width: fit-content;
21
+ max-width: 100%;
22
+ background-color: var(--white20a);
23
+ border: 2px solid var(--SmartThemeBorderColor);
24
+ padding: 0.5em 1em;
25
+ border-radius: 15px;
26
+ }
27
+
28
+ .mes_file_container .right_menu_button {
29
+ padding-right: 0;
30
+ }
31
+
32
+ .mes_file_container .mes_file_size,
33
+ .file_attached .file_size {
34
+ font-size: 0.9em;
35
+ color: var(--SmartThemeQuoteColor);
36
+ }
37
+
38
+ .file_attached .file_name,
39
+ .mes_file_container .mes_file_name {
40
+ flex: 1;
41
+ overflow: hidden;
42
+ text-overflow: ellipsis;
43
+ white-space: nowrap;
44
+ }
45
+
46
+ #file_form {
47
+ display: flex;
48
+ width: 100%;
49
+ }
50
+
51
+ .file_modal {
52
+ width: 100%;
53
+ height: 100%;
54
+ overflow-y: auto;
55
+ display: flex;
56
+ text-align: left;
57
+ }
public/css/fontawesome.min.css ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ /*!
2
+ * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ * Copyright 2024 Fonticons, Inc.
5
+ */
6
+ .fa{font-family:var(--fa-style-family,"Font Awesome 6 Free");font-weight:var(--fa-style,900)}.fa,.fa-brands,.fa-classic,.fa-regular,.fa-sharp,.fa-solid,.fab,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:var(--fa-display,inline-block);font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.fa-classic,.fa-regular,.fa-solid,.far,.fas{font-family:"Font Awesome 6 Free"}.fa-brands,.fab{font-family:"Font Awesome 6 Brands"}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.08333em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.07143em;vertical-align:.05357em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.04167em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin,2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width, 2em)*-1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.fa-border{border-radius:var(--fa-border-radius,.1em);border:var(--fa-border-width,.08em) var(--fa-border-style,solid) var(--fa-border-color,#eee);padding:var(--fa-border-padding,.2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin,.3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin,.3em)}.fa-beat{-webkit-animation-name:fa-beat;animation-name:fa-beat;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-bounce{-webkit-animation-name:fa-bounce;animation-name:fa-bounce;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.fa-fade{-webkit-animation-name:fa-fade;animation-name:fa-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-beat-fade,.fa-fade{-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s)}.fa-beat-fade{-webkit-animation-name:fa-beat-fade;animation-name:fa-beat-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-flip{-webkit-animation-name:fa-flip;animation-name:fa-flip;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-shake{-webkit-animation-name:fa-shake;animation-name:fa-shake;-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-shake,.fa-spin{-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal)}.fa-spin{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-duration:var(--fa-animation-duration,2s);animation-duration:var(--fa-animation-duration,2s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin-reverse{--fa-animation-direction:reverse}.fa-pulse,.fa-spin-pulse{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,steps(8));animation-timing-function:var(--fa-animation-timing,steps(8))}@media (prefers-reduced-motion:reduce){.fa-beat,.fa-beat-fade,.fa-bounce,.fa-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{-webkit-animation-delay:-1ms;animation-delay:-1ms;-webkit-animation-duration:1ms;animation-duration:1ms;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition-duration:0s;transition-duration:0s}}@-webkit-keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@-webkit-keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@-webkit-keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@-webkit-keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@-webkit-keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@-webkit-keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}.fa-rotate-by{-webkit-transform:rotate(var(--fa-rotate-angle,0));transform:rotate(var(--fa-rotate-angle,0))}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%;z-index:var(--fa-stack-z-index,auto)}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:var(--fa-inverse,#fff)}
7
+
8
+ .fa-0:before{content:"\30"}.fa-1:before{content:"\31"}.fa-2:before{content:"\32"}.fa-3:before{content:"\33"}.fa-4:before{content:"\34"}.fa-5:before{content:"\35"}.fa-6:before{content:"\36"}.fa-7:before{content:"\37"}.fa-8:before{content:"\38"}.fa-9:before{content:"\39"}.fa-fill-drip:before{content:"\f576"}.fa-arrows-to-circle:before{content:"\e4bd"}.fa-chevron-circle-right:before,.fa-circle-chevron-right:before{content:"\f138"}.fa-at:before{content:"\40"}.fa-trash-alt:before,.fa-trash-can:before{content:"\f2ed"}.fa-text-height:before{content:"\f034"}.fa-user-times:before,.fa-user-xmark:before{content:"\f235"}.fa-stethoscope:before{content:"\f0f1"}.fa-comment-alt:before,.fa-message:before{content:"\f27a"}.fa-info:before{content:"\f129"}.fa-compress-alt:before,.fa-down-left-and-up-right-to-center:before{content:"\f422"}.fa-explosion:before{content:"\e4e9"}.fa-file-alt:before,.fa-file-lines:before,.fa-file-text:before{content:"\f15c"}.fa-wave-square:before{content:"\f83e"}.fa-ring:before{content:"\f70b"}.fa-building-un:before{content:"\e4d9"}.fa-dice-three:before{content:"\f527"}.fa-calendar-alt:before,.fa-calendar-days:before{content:"\f073"}.fa-anchor-circle-check:before{content:"\e4aa"}.fa-building-circle-arrow-right:before{content:"\e4d1"}.fa-volleyball-ball:before,.fa-volleyball:before{content:"\f45f"}.fa-arrows-up-to-line:before{content:"\e4c2"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-circle-minus:before,.fa-minus-circle:before{content:"\f056"}.fa-door-open:before{content:"\f52b"}.fa-right-from-bracket:before,.fa-sign-out-alt:before{content:"\f2f5"}.fa-atom:before{content:"\f5d2"}.fa-soap:before{content:"\e06e"}.fa-heart-music-camera-bolt:before,.fa-icons:before{content:"\f86d"}.fa-microphone-alt-slash:before,.fa-microphone-lines-slash:before{content:"\f539"}.fa-bridge-circle-check:before{content:"\e4c9"}.fa-pump-medical:before{content:"\e06a"}.fa-fingerprint:before{content:"\f577"}.fa-hand-point-right:before{content:"\f0a4"}.fa-magnifying-glass-location:before,.fa-search-location:before{content:"\f689"}.fa-forward-step:before,.fa-step-forward:before{content:"\f051"}.fa-face-smile-beam:before,.fa-smile-beam:before{content:"\f5b8"}.fa-flag-checkered:before{content:"\f11e"}.fa-football-ball:before,.fa-football:before{content:"\f44e"}.fa-school-circle-exclamation:before{content:"\e56c"}.fa-crop:before{content:"\f125"}.fa-angle-double-down:before,.fa-angles-down:before{content:"\f103"}.fa-users-rectangle:before{content:"\e594"}.fa-people-roof:before{content:"\e537"}.fa-people-line:before{content:"\e534"}.fa-beer-mug-empty:before,.fa-beer:before{content:"\f0fc"}.fa-diagram-predecessor:before{content:"\e477"}.fa-arrow-up-long:before,.fa-long-arrow-up:before{content:"\f176"}.fa-burn:before,.fa-fire-flame-simple:before{content:"\f46a"}.fa-male:before,.fa-person:before{content:"\f183"}.fa-laptop:before{content:"\f109"}.fa-file-csv:before{content:"\f6dd"}.fa-menorah:before{content:"\f676"}.fa-truck-plane:before{content:"\e58f"}.fa-record-vinyl:before{content:"\f8d9"}.fa-face-grin-stars:before,.fa-grin-stars:before{content:"\f587"}.fa-bong:before{content:"\f55c"}.fa-pastafarianism:before,.fa-spaghetti-monster-flying:before{content:"\f67b"}.fa-arrow-down-up-across-line:before{content:"\e4af"}.fa-spoon:before,.fa-utensil-spoon:before{content:"\f2e5"}.fa-jar-wheat:before{content:"\e517"}.fa-envelopes-bulk:before,.fa-mail-bulk:before{content:"\f674"}.fa-file-circle-exclamation:before{content:"\e4eb"}.fa-circle-h:before,.fa-hospital-symbol:before{content:"\f47e"}.fa-pager:before{content:"\f815"}.fa-address-book:before,.fa-contact-book:before{content:"\f2b9"}.fa-strikethrough:before{content:"\f0cc"}.fa-k:before{content:"\4b"}.fa-landmark-flag:before{content:"\e51c"}.fa-pencil-alt:before,.fa-pencil:before{content:"\f303"}.fa-backward:before{content:"\f04a"}.fa-caret-right:before{content:"\f0da"}.fa-comments:before{content:"\f086"}.fa-file-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-code-pull-request:before{content:"\e13c"}.fa-clipboard-list:before{content:"\f46d"}.fa-truck-loading:before,.fa-truck-ramp-box:before{content:"\f4de"}.fa-user-check:before{content:"\f4fc"}.fa-vial-virus:before{content:"\e597"}.fa-sheet-plastic:before{content:"\e571"}.fa-blog:before{content:"\f781"}.fa-user-ninja:before{content:"\f504"}.fa-person-arrow-up-from-line:before{content:"\e539"}.fa-scroll-torah:before,.fa-torah:before{content:"\f6a0"}.fa-broom-ball:before,.fa-quidditch-broom-ball:before,.fa-quidditch:before{content:"\f458"}.fa-toggle-off:before{content:"\f204"}.fa-archive:before,.fa-box-archive:before{content:"\f187"}.fa-person-drowning:before{content:"\e545"}.fa-arrow-down-9-1:before,.fa-sort-numeric-desc:before,.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-face-grin-tongue-squint:before,.fa-grin-tongue-squint:before{content:"\f58a"}.fa-spray-can:before{content:"\f5bd"}.fa-truck-monster:before{content:"\f63b"}.fa-w:before{content:"\57"}.fa-earth-africa:before,.fa-globe-africa:before{content:"\f57c"}.fa-rainbow:before{content:"\f75b"}.fa-circle-notch:before{content:"\f1ce"}.fa-tablet-alt:before,.fa-tablet-screen-button:before{content:"\f3fa"}.fa-paw:before{content:"\f1b0"}.fa-cloud:before{content:"\f0c2"}.fa-trowel-bricks:before{content:"\e58a"}.fa-face-flushed:before,.fa-flushed:before{content:"\f579"}.fa-hospital-user:before{content:"\f80d"}.fa-tent-arrow-left-right:before{content:"\e57f"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-binoculars:before{content:"\f1e5"}.fa-microphone-slash:before{content:"\f131"}.fa-box-tissue:before{content:"\e05b"}.fa-motorcycle:before{content:"\f21c"}.fa-bell-concierge:before,.fa-concierge-bell:before{content:"\f562"}.fa-pen-ruler:before,.fa-pencil-ruler:before{content:"\f5ae"}.fa-people-arrows-left-right:before,.fa-people-arrows:before{content:"\e068"}.fa-mars-and-venus-burst:before{content:"\e523"}.fa-caret-square-right:before,.fa-square-caret-right:before{content:"\f152"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-sun-plant-wilt:before{content:"\e57a"}.fa-toilets-portable:before{content:"\e584"}.fa-hockey-puck:before{content:"\f453"}.fa-table:before{content:"\f0ce"}.fa-magnifying-glass-arrow-right:before{content:"\e521"}.fa-digital-tachograph:before,.fa-tachograph-digital:before{content:"\f566"}.fa-users-slash:before{content:"\e073"}.fa-clover:before{content:"\e139"}.fa-mail-reply:before,.fa-reply:before{content:"\f3e5"}.fa-star-and-crescent:before{content:"\f699"}.fa-house-fire:before{content:"\e50c"}.fa-minus-square:before,.fa-square-minus:before{content:"\f146"}.fa-helicopter:before{content:"\f533"}.fa-compass:before{content:"\f14e"}.fa-caret-square-down:before,.fa-square-caret-down:before{content:"\f150"}.fa-file-circle-question:before{content:"\e4ef"}.fa-laptop-code:before{content:"\f5fc"}.fa-swatchbook:before{content:"\f5c3"}.fa-prescription-bottle:before{content:"\f485"}.fa-bars:before,.fa-navicon:before{content:"\f0c9"}.fa-people-group:before{content:"\e533"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-heart-broken:before,.fa-heart-crack:before{content:"\f7a9"}.fa-external-link-square-alt:before,.fa-square-up-right:before{content:"\f360"}.fa-face-kiss-beam:before,.fa-kiss-beam:before{content:"\f597"}.fa-film:before{content:"\f008"}.fa-ruler-horizontal:before{content:"\f547"}.fa-people-robbery:before{content:"\e536"}.fa-lightbulb:before{content:"\f0eb"}.fa-caret-left:before{content:"\f0d9"}.fa-circle-exclamation:before,.fa-exclamation-circle:before{content:"\f06a"}.fa-school-circle-xmark:before{content:"\e56d"}.fa-arrow-right-from-bracket:before,.fa-sign-out:before{content:"\f08b"}.fa-chevron-circle-down:before,.fa-circle-chevron-down:before{content:"\f13a"}.fa-unlock-alt:before,.fa-unlock-keyhole:before{content:"\f13e"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-headphones-alt:before,.fa-headphones-simple:before{content:"\f58f"}.fa-sitemap:before{content:"\f0e8"}.fa-circle-dollar-to-slot:before,.fa-donate:before{content:"\f4b9"}.fa-memory:before{content:"\f538"}.fa-road-spikes:before{content:"\e568"}.fa-fire-burner:before{content:"\e4f1"}.fa-flag:before{content:"\f024"}.fa-hanukiah:before{content:"\f6e6"}.fa-feather:before{content:"\f52d"}.fa-volume-down:before,.fa-volume-low:before{content:"\f027"}.fa-comment-slash:before{content:"\f4b3"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-compress:before{content:"\f066"}.fa-wheat-alt:before,.fa-wheat-awn:before{content:"\e2cd"}.fa-ankh:before{content:"\f644"}.fa-hands-holding-child:before{content:"\e4fa"}.fa-asterisk:before{content:"\2a"}.fa-check-square:before,.fa-square-check:before{content:"\f14a"}.fa-peseta-sign:before{content:"\e221"}.fa-header:before,.fa-heading:before{content:"\f1dc"}.fa-ghost:before{content:"\f6e2"}.fa-list-squares:before,.fa-list:before{content:"\f03a"}.fa-phone-square-alt:before,.fa-square-phone-flip:before{content:"\f87b"}.fa-cart-plus:before{content:"\f217"}.fa-gamepad:before{content:"\f11b"}.fa-circle-dot:before,.fa-dot-circle:before{content:"\f192"}.fa-dizzy:before,.fa-face-dizzy:before{content:"\f567"}.fa-egg:before{content:"\f7fb"}.fa-house-medical-circle-xmark:before{content:"\e513"}.fa-campground:before{content:"\f6bb"}.fa-folder-plus:before{content:"\f65e"}.fa-futbol-ball:before,.fa-futbol:before,.fa-soccer-ball:before{content:"\f1e3"}.fa-paint-brush:before,.fa-paintbrush:before{content:"\f1fc"}.fa-lock:before{content:"\f023"}.fa-gas-pump:before{content:"\f52f"}.fa-hot-tub-person:before,.fa-hot-tub:before{content:"\f593"}.fa-map-location:before,.fa-map-marked:before{content:"\f59f"}.fa-house-flood-water:before{content:"\e50e"}.fa-tree:before{content:"\f1bb"}.fa-bridge-lock:before{content:"\e4cc"}.fa-sack-dollar:before{content:"\f81d"}.fa-edit:before,.fa-pen-to-square:before{content:"\f044"}.fa-car-side:before{content:"\f5e4"}.fa-share-alt:before,.fa-share-nodes:before{content:"\f1e0"}.fa-heart-circle-minus:before{content:"\e4ff"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-microscope:before{content:"\f610"}.fa-sink:before{content:"\e06d"}.fa-bag-shopping:before,.fa-shopping-bag:before{content:"\f290"}.fa-arrow-down-z-a:before,.fa-sort-alpha-desc:before,.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-mitten:before{content:"\f7b5"}.fa-person-rays:before{content:"\e54d"}.fa-users:before{content:"\f0c0"}.fa-eye-slash:before{content:"\f070"}.fa-flask-vial:before{content:"\e4f3"}.fa-hand-paper:before,.fa-hand:before{content:"\f256"}.fa-om:before{content:"\f679"}.fa-worm:before{content:"\e599"}.fa-house-circle-xmark:before{content:"\e50b"}.fa-plug:before{content:"\f1e6"}.fa-chevron-up:before{content:"\f077"}.fa-hand-spock:before{content:"\f259"}.fa-stopwatch:before{content:"\f2f2"}.fa-face-kiss:before,.fa-kiss:before{content:"\f596"}.fa-bridge-circle-xmark:before{content:"\e4cb"}.fa-face-grin-tongue:before,.fa-grin-tongue:before{content:"\f589"}.fa-chess-bishop:before{content:"\f43a"}.fa-face-grin-wink:before,.fa-grin-wink:before{content:"\f58c"}.fa-deaf:before,.fa-deafness:before,.fa-ear-deaf:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-road-circle-check:before{content:"\e564"}.fa-dice-five:before{content:"\f523"}.fa-rss-square:before,.fa-square-rss:before{content:"\f143"}.fa-land-mine-on:before{content:"\e51b"}.fa-i-cursor:before{content:"\f246"}.fa-stamp:before{content:"\f5bf"}.fa-stairs:before{content:"\e289"}.fa-i:before{content:"\49"}.fa-hryvnia-sign:before,.fa-hryvnia:before{content:"\f6f2"}.fa-pills:before{content:"\f484"}.fa-face-grin-wide:before,.fa-grin-alt:before{content:"\f581"}.fa-tooth:before{content:"\f5c9"}.fa-v:before{content:"\56"}.fa-bangladeshi-taka-sign:before{content:"\e2e6"}.fa-bicycle:before{content:"\f206"}.fa-rod-asclepius:before,.fa-rod-snake:before,.fa-staff-aesculapius:before,.fa-staff-snake:before{content:"\e579"}.fa-head-side-cough-slash:before{content:"\e062"}.fa-ambulance:before,.fa-truck-medical:before{content:"\f0f9"}.fa-wheat-awn-circle-exclamation:before{content:"\e598"}.fa-snowman:before{content:"\f7d0"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-road-barrier:before{content:"\e562"}.fa-school:before{content:"\f549"}.fa-igloo:before{content:"\f7ae"}.fa-joint:before{content:"\f595"}.fa-angle-right:before{content:"\f105"}.fa-horse:before{content:"\f6f0"}.fa-q:before{content:"\51"}.fa-g:before{content:"\47"}.fa-notes-medical:before{content:"\f481"}.fa-temperature-2:before,.fa-temperature-half:before,.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-dong-sign:before{content:"\e169"}.fa-capsules:before{content:"\f46b"}.fa-poo-bolt:before,.fa-poo-storm:before{content:"\f75a"}.fa-face-frown-open:before,.fa-frown-open:before{content:"\f57a"}.fa-hand-point-up:before{content:"\f0a6"}.fa-money-bill:before{content:"\f0d6"}.fa-bookmark:before{content:"\f02e"}.fa-align-justify:before{content:"\f039"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-helmet-un:before{content:"\e503"}.fa-bullseye:before{content:"\f140"}.fa-bacon:before{content:"\f7e5"}.fa-hand-point-down:before{content:"\f0a7"}.fa-arrow-up-from-bracket:before{content:"\e09a"}.fa-folder-blank:before,.fa-folder:before{content:"\f07b"}.fa-file-medical-alt:before,.fa-file-waveform:before{content:"\f478"}.fa-radiation:before{content:"\f7b9"}.fa-chart-simple:before{content:"\e473"}.fa-mars-stroke:before{content:"\f229"}.fa-vial:before{content:"\f492"}.fa-dashboard:before,.fa-gauge-med:before,.fa-gauge:before,.fa-tachometer-alt-average:before{content:"\f624"}.fa-magic-wand-sparkles:before,.fa-wand-magic-sparkles:before{content:"\e2ca"}.fa-e:before{content:"\45"}.fa-pen-alt:before,.fa-pen-clip:before{content:"\f305"}.fa-bridge-circle-exclamation:before{content:"\e4ca"}.fa-user:before{content:"\f007"}.fa-school-circle-check:before{content:"\e56b"}.fa-dumpster:before{content:"\f793"}.fa-shuttle-van:before,.fa-van-shuttle:before{content:"\f5b6"}.fa-building-user:before{content:"\e4da"}.fa-caret-square-left:before,.fa-square-caret-left:before{content:"\f191"}.fa-highlighter:before{content:"\f591"}.fa-key:before{content:"\f084"}.fa-bullhorn:before{content:"\f0a1"}.fa-globe:before{content:"\f0ac"}.fa-synagogue:before{content:"\f69b"}.fa-person-half-dress:before{content:"\e548"}.fa-road-bridge:before{content:"\e563"}.fa-location-arrow:before{content:"\f124"}.fa-c:before{content:"\43"}.fa-tablet-button:before{content:"\f10a"}.fa-building-lock:before{content:"\e4d6"}.fa-pizza-slice:before{content:"\f818"}.fa-money-bill-wave:before{content:"\f53a"}.fa-area-chart:before,.fa-chart-area:before{content:"\f1fe"}.fa-house-flag:before{content:"\e50d"}.fa-person-circle-minus:before{content:"\e540"}.fa-ban:before,.fa-cancel:before{content:"\f05e"}.fa-camera-rotate:before{content:"\e0d8"}.fa-air-freshener:before,.fa-spray-can-sparkles:before{content:"\f5d0"}.fa-star:before{content:"\f005"}.fa-repeat:before{content:"\f363"}.fa-cross:before{content:"\f654"}.fa-box:before{content:"\f466"}.fa-venus-mars:before{content:"\f228"}.fa-arrow-pointer:before,.fa-mouse-pointer:before{content:"\f245"}.fa-expand-arrows-alt:before,.fa-maximize:before{content:"\f31e"}.fa-charging-station:before{content:"\f5e7"}.fa-shapes:before,.fa-triangle-circle-square:before{content:"\f61f"}.fa-random:before,.fa-shuffle:before{content:"\f074"}.fa-person-running:before,.fa-running:before{content:"\f70c"}.fa-mobile-retro:before{content:"\e527"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-spider:before{content:"\f717"}.fa-hands-bound:before{content:"\e4f9"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-plane-circle-exclamation:before{content:"\e556"}.fa-x-ray:before{content:"\f497"}.fa-spell-check:before{content:"\f891"}.fa-slash:before{content:"\f715"}.fa-computer-mouse:before,.fa-mouse:before{content:"\f8cc"}.fa-arrow-right-to-bracket:before,.fa-sign-in:before{content:"\f090"}.fa-shop-slash:before,.fa-store-alt-slash:before{content:"\e070"}.fa-server:before{content:"\f233"}.fa-virus-covid-slash:before{content:"\e4a9"}.fa-shop-lock:before{content:"\e4a5"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-blender-phone:before{content:"\f6b6"}.fa-building-wheat:before{content:"\e4db"}.fa-person-breastfeeding:before{content:"\e53a"}.fa-right-to-bracket:before,.fa-sign-in-alt:before{content:"\f2f6"}.fa-venus:before{content:"\f221"}.fa-passport:before{content:"\f5ab"}.fa-heart-pulse:before,.fa-heartbeat:before{content:"\f21e"}.fa-people-carry-box:before,.fa-people-carry:before{content:"\f4ce"}.fa-temperature-high:before{content:"\f769"}.fa-microchip:before{content:"\f2db"}.fa-crown:before{content:"\f521"}.fa-weight-hanging:before{content:"\f5cd"}.fa-xmarks-lines:before{content:"\e59a"}.fa-file-prescription:before{content:"\f572"}.fa-weight-scale:before,.fa-weight:before{content:"\f496"}.fa-user-friends:before,.fa-user-group:before{content:"\f500"}.fa-arrow-up-a-z:before,.fa-sort-alpha-up:before{content:"\f15e"}.fa-chess-knight:before{content:"\f441"}.fa-face-laugh-squint:before,.fa-laugh-squint:before{content:"\f59b"}.fa-wheelchair:before{content:"\f193"}.fa-arrow-circle-up:before,.fa-circle-arrow-up:before{content:"\f0aa"}.fa-toggle-on:before{content:"\f205"}.fa-person-walking:before,.fa-walking:before{content:"\f554"}.fa-l:before{content:"\4c"}.fa-fire:before{content:"\f06d"}.fa-bed-pulse:before,.fa-procedures:before{content:"\f487"}.fa-shuttle-space:before,.fa-space-shuttle:before{content:"\f197"}.fa-face-laugh:before,.fa-laugh:before{content:"\f599"}.fa-folder-open:before{content:"\f07c"}.fa-heart-circle-plus:before{content:"\e500"}.fa-code-fork:before{content:"\e13b"}.fa-city:before{content:"\f64f"}.fa-microphone-alt:before,.fa-microphone-lines:before{content:"\f3c9"}.fa-pepper-hot:before{content:"\f816"}.fa-unlock:before{content:"\f09c"}.fa-colon-sign:before{content:"\e140"}.fa-headset:before{content:"\f590"}.fa-store-slash:before{content:"\e071"}.fa-road-circle-xmark:before{content:"\e566"}.fa-user-minus:before{content:"\f503"}.fa-mars-stroke-up:before,.fa-mars-stroke-v:before{content:"\f22a"}.fa-champagne-glasses:before,.fa-glass-cheers:before{content:"\f79f"}.fa-clipboard:before{content:"\f328"}.fa-house-circle-exclamation:before{content:"\e50a"}.fa-file-arrow-up:before,.fa-file-upload:before{content:"\f574"}.fa-wifi-3:before,.fa-wifi-strong:before,.fa-wifi:before{content:"\f1eb"}.fa-bath:before,.fa-bathtub:before{content:"\f2cd"}.fa-underline:before{content:"\f0cd"}.fa-user-edit:before,.fa-user-pen:before{content:"\f4ff"}.fa-signature:before{content:"\f5b7"}.fa-stroopwafel:before{content:"\f551"}.fa-bold:before{content:"\f032"}.fa-anchor-lock:before{content:"\e4ad"}.fa-building-ngo:before{content:"\e4d7"}.fa-manat-sign:before{content:"\e1d5"}.fa-not-equal:before{content:"\f53e"}.fa-border-style:before,.fa-border-top-left:before{content:"\f853"}.fa-map-location-dot:before,.fa-map-marked-alt:before{content:"\f5a0"}.fa-jedi:before{content:"\f669"}.fa-poll:before,.fa-square-poll-vertical:before{content:"\f681"}.fa-mug-hot:before{content:"\f7b6"}.fa-battery-car:before,.fa-car-battery:before{content:"\f5df"}.fa-gift:before{content:"\f06b"}.fa-dice-two:before{content:"\f528"}.fa-chess-queen:before{content:"\f445"}.fa-glasses:before{content:"\f530"}.fa-chess-board:before{content:"\f43c"}.fa-building-circle-check:before{content:"\e4d2"}.fa-person-chalkboard:before{content:"\e53d"}.fa-mars-stroke-h:before,.fa-mars-stroke-right:before{content:"\f22b"}.fa-hand-back-fist:before,.fa-hand-rock:before{content:"\f255"}.fa-caret-square-up:before,.fa-square-caret-up:before{content:"\f151"}.fa-cloud-showers-water:before{content:"\e4e4"}.fa-bar-chart:before,.fa-chart-bar:before{content:"\f080"}.fa-hands-bubbles:before,.fa-hands-wash:before{content:"\e05e"}.fa-less-than-equal:before{content:"\f537"}.fa-train:before{content:"\f238"}.fa-eye-low-vision:before,.fa-low-vision:before{content:"\f2a8"}.fa-crow:before{content:"\f520"}.fa-sailboat:before{content:"\e445"}.fa-window-restore:before{content:"\f2d2"}.fa-plus-square:before,.fa-square-plus:before{content:"\f0fe"}.fa-torii-gate:before{content:"\f6a1"}.fa-frog:before{content:"\f52e"}.fa-bucket:before{content:"\e4cf"}.fa-image:before{content:"\f03e"}.fa-microphone:before{content:"\f130"}.fa-cow:before{content:"\f6c8"}.fa-caret-up:before{content:"\f0d8"}.fa-screwdriver:before{content:"\f54a"}.fa-folder-closed:before{content:"\e185"}.fa-house-tsunami:before{content:"\e515"}.fa-square-nfi:before{content:"\e576"}.fa-arrow-up-from-ground-water:before{content:"\e4b5"}.fa-glass-martini-alt:before,.fa-martini-glass:before{content:"\f57b"}.fa-rotate-back:before,.fa-rotate-backward:before,.fa-rotate-left:before,.fa-undo-alt:before{content:"\f2ea"}.fa-columns:before,.fa-table-columns:before{content:"\f0db"}.fa-lemon:before{content:"\f094"}.fa-head-side-mask:before{content:"\e063"}.fa-handshake:before{content:"\f2b5"}.fa-gem:before{content:"\f3a5"}.fa-dolly-box:before,.fa-dolly:before{content:"\f472"}.fa-smoking:before{content:"\f48d"}.fa-compress-arrows-alt:before,.fa-minimize:before{content:"\f78c"}.fa-monument:before{content:"\f5a6"}.fa-snowplow:before{content:"\f7d2"}.fa-angle-double-right:before,.fa-angles-right:before{content:"\f101"}.fa-cannabis:before{content:"\f55f"}.fa-circle-play:before,.fa-play-circle:before{content:"\f144"}.fa-tablets:before{content:"\f490"}.fa-ethernet:before{content:"\f796"}.fa-eur:before,.fa-euro-sign:before,.fa-euro:before{content:"\f153"}.fa-chair:before{content:"\f6c0"}.fa-check-circle:before,.fa-circle-check:before{content:"\f058"}.fa-circle-stop:before,.fa-stop-circle:before{content:"\f28d"}.fa-compass-drafting:before,.fa-drafting-compass:before{content:"\f568"}.fa-plate-wheat:before{content:"\e55a"}.fa-icicles:before{content:"\f7ad"}.fa-person-shelter:before{content:"\e54f"}.fa-neuter:before{content:"\f22c"}.fa-id-badge:before{content:"\f2c1"}.fa-marker:before{content:"\f5a1"}.fa-face-laugh-beam:before,.fa-laugh-beam:before{content:"\f59a"}.fa-helicopter-symbol:before{content:"\e502"}.fa-universal-access:before{content:"\f29a"}.fa-chevron-circle-up:before,.fa-circle-chevron-up:before{content:"\f139"}.fa-lari-sign:before{content:"\e1c8"}.fa-volcano:before{content:"\f770"}.fa-person-walking-dashed-line-arrow-right:before{content:"\e553"}.fa-gbp:before,.fa-pound-sign:before,.fa-sterling-sign:before{content:"\f154"}.fa-viruses:before{content:"\e076"}.fa-square-person-confined:before{content:"\e577"}.fa-user-tie:before{content:"\f508"}.fa-arrow-down-long:before,.fa-long-arrow-down:before{content:"\f175"}.fa-tent-arrow-down-to-line:before{content:"\e57e"}.fa-certificate:before{content:"\f0a3"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-suitcase:before{content:"\f0f2"}.fa-person-skating:before,.fa-skating:before{content:"\f7c5"}.fa-filter-circle-dollar:before,.fa-funnel-dollar:before{content:"\f662"}.fa-camera-retro:before{content:"\f083"}.fa-arrow-circle-down:before,.fa-circle-arrow-down:before{content:"\f0ab"}.fa-arrow-right-to-file:before,.fa-file-import:before{content:"\f56f"}.fa-external-link-square:before,.fa-square-arrow-up-right:before{content:"\f14c"}.fa-box-open:before{content:"\f49e"}.fa-scroll:before{content:"\f70e"}.fa-spa:before{content:"\f5bb"}.fa-location-pin-lock:before{content:"\e51f"}.fa-pause:before{content:"\f04c"}.fa-hill-avalanche:before{content:"\e507"}.fa-temperature-0:before,.fa-temperature-empty:before,.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-bomb:before{content:"\f1e2"}.fa-registered:before{content:"\f25d"}.fa-address-card:before,.fa-contact-card:before,.fa-vcard:before{content:"\f2bb"}.fa-balance-scale-right:before,.fa-scale-unbalanced-flip:before{content:"\f516"}.fa-subscript:before{content:"\f12c"}.fa-diamond-turn-right:before,.fa-directions:before{content:"\f5eb"}.fa-burst:before{content:"\e4dc"}.fa-house-laptop:before,.fa-laptop-house:before{content:"\e066"}.fa-face-tired:before,.fa-tired:before{content:"\f5c8"}.fa-money-bills:before{content:"\e1f3"}.fa-smog:before{content:"\f75f"}.fa-crutch:before{content:"\f7f7"}.fa-cloud-arrow-up:before,.fa-cloud-upload-alt:before,.fa-cloud-upload:before{content:"\f0ee"}.fa-palette:before{content:"\f53f"}.fa-arrows-turn-right:before{content:"\e4c0"}.fa-vest:before{content:"\e085"}.fa-ferry:before{content:"\e4ea"}.fa-arrows-down-to-people:before{content:"\e4b9"}.fa-seedling:before,.fa-sprout:before{content:"\f4d8"}.fa-arrows-alt-h:before,.fa-left-right:before{content:"\f337"}.fa-boxes-packing:before{content:"\e4c7"}.fa-arrow-circle-left:before,.fa-circle-arrow-left:before{content:"\f0a8"}.fa-group-arrows-rotate:before{content:"\e4f6"}.fa-bowl-food:before{content:"\e4c6"}.fa-candy-cane:before{content:"\f786"}.fa-arrow-down-wide-short:before,.fa-sort-amount-asc:before,.fa-sort-amount-down:before{content:"\f160"}.fa-cloud-bolt:before,.fa-thunderstorm:before{content:"\f76c"}.fa-remove-format:before,.fa-text-slash:before{content:"\f87d"}.fa-face-smile-wink:before,.fa-smile-wink:before{content:"\f4da"}.fa-file-word:before{content:"\f1c2"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-arrows-h:before,.fa-arrows-left-right:before{content:"\f07e"}.fa-house-lock:before{content:"\e510"}.fa-cloud-arrow-down:before,.fa-cloud-download-alt:before,.fa-cloud-download:before{content:"\f0ed"}.fa-children:before{content:"\e4e1"}.fa-blackboard:before,.fa-chalkboard:before{content:"\f51b"}.fa-user-alt-slash:before,.fa-user-large-slash:before{content:"\f4fa"}.fa-envelope-open:before{content:"\f2b6"}.fa-handshake-alt-slash:before,.fa-handshake-simple-slash:before{content:"\e05f"}.fa-mattress-pillow:before{content:"\e525"}.fa-guarani-sign:before{content:"\e19a"}.fa-arrows-rotate:before,.fa-refresh:before,.fa-sync:before{content:"\f021"}.fa-fire-extinguisher:before{content:"\f134"}.fa-cruzeiro-sign:before{content:"\e152"}.fa-greater-than-equal:before{content:"\f532"}.fa-shield-alt:before,.fa-shield-halved:before{content:"\f3ed"}.fa-atlas:before,.fa-book-atlas:before{content:"\f558"}.fa-virus:before{content:"\e074"}.fa-envelope-circle-check:before{content:"\e4e8"}.fa-layer-group:before{content:"\f5fd"}.fa-arrows-to-dot:before{content:"\e4be"}.fa-archway:before{content:"\f557"}.fa-heart-circle-check:before{content:"\e4fd"}.fa-house-chimney-crack:before,.fa-house-damage:before{content:"\f6f1"}.fa-file-archive:before,.fa-file-zipper:before{content:"\f1c6"}.fa-square:before{content:"\f0c8"}.fa-glass-martini:before,.fa-martini-glass-empty:before{content:"\f000"}.fa-couch:before{content:"\f4b8"}.fa-cedi-sign:before{content:"\e0df"}.fa-italic:before{content:"\f033"}.fa-table-cells-column-lock:before{content:"\e678"}.fa-church:before{content:"\f51d"}.fa-comments-dollar:before{content:"\f653"}.fa-democrat:before{content:"\f747"}.fa-z:before{content:"\5a"}.fa-person-skiing:before,.fa-skiing:before{content:"\f7c9"}.fa-road-lock:before{content:"\e567"}.fa-a:before{content:"\41"}.fa-temperature-arrow-down:before,.fa-temperature-down:before{content:"\e03f"}.fa-feather-alt:before,.fa-feather-pointed:before{content:"\f56b"}.fa-p:before{content:"\50"}.fa-snowflake:before{content:"\f2dc"}.fa-newspaper:before{content:"\f1ea"}.fa-ad:before,.fa-rectangle-ad:before{content:"\f641"}.fa-arrow-circle-right:before,.fa-circle-arrow-right:before{content:"\f0a9"}.fa-filter-circle-xmark:before{content:"\e17b"}.fa-locust:before{content:"\e520"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-list-1-2:before,.fa-list-numeric:before,.fa-list-ol:before{content:"\f0cb"}.fa-person-dress-burst:before{content:"\e544"}.fa-money-check-alt:before,.fa-money-check-dollar:before{content:"\f53d"}.fa-vector-square:before{content:"\f5cb"}.fa-bread-slice:before{content:"\f7ec"}.fa-language:before{content:"\f1ab"}.fa-face-kiss-wink-heart:before,.fa-kiss-wink-heart:before{content:"\f598"}.fa-filter:before{content:"\f0b0"}.fa-question:before{content:"\3f"}.fa-file-signature:before{content:"\f573"}.fa-arrows-alt:before,.fa-up-down-left-right:before{content:"\f0b2"}.fa-house-chimney-user:before{content:"\e065"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-puzzle-piece:before{content:"\f12e"}.fa-money-check:before{content:"\f53c"}.fa-star-half-alt:before,.fa-star-half-stroke:before{content:"\f5c0"}.fa-code:before{content:"\f121"}.fa-glass-whiskey:before,.fa-whiskey-glass:before{content:"\f7a0"}.fa-building-circle-exclamation:before{content:"\e4d3"}.fa-magnifying-glass-chart:before{content:"\e522"}.fa-arrow-up-right-from-square:before,.fa-external-link:before{content:"\f08e"}.fa-cubes-stacked:before{content:"\e4e6"}.fa-krw:before,.fa-won-sign:before,.fa-won:before{content:"\f159"}.fa-virus-covid:before{content:"\e4a8"}.fa-austral-sign:before{content:"\e0a9"}.fa-f:before{content:"\46"}.fa-leaf:before{content:"\f06c"}.fa-road:before{content:"\f018"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-person-circle-plus:before{content:"\e541"}.fa-chart-pie:before,.fa-pie-chart:before{content:"\f200"}.fa-bolt-lightning:before{content:"\e0b7"}.fa-sack-xmark:before{content:"\e56a"}.fa-file-excel:before{content:"\f1c3"}.fa-file-contract:before{content:"\f56c"}.fa-fish-fins:before{content:"\e4f2"}.fa-building-flag:before{content:"\e4d5"}.fa-face-grin-beam:before,.fa-grin-beam:before{content:"\f582"}.fa-object-ungroup:before{content:"\f248"}.fa-poop:before{content:"\f619"}.fa-location-pin:before,.fa-map-marker:before{content:"\f041"}.fa-kaaba:before{content:"\f66b"}.fa-toilet-paper:before{content:"\f71e"}.fa-hard-hat:before,.fa-hat-hard:before,.fa-helmet-safety:before{content:"\f807"}.fa-eject:before{content:"\f052"}.fa-arrow-alt-circle-right:before,.fa-circle-right:before{content:"\f35a"}.fa-plane-circle-check:before{content:"\e555"}.fa-face-rolling-eyes:before,.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-object-group:before{content:"\f247"}.fa-chart-line:before,.fa-line-chart:before{content:"\f201"}.fa-mask-ventilator:before{content:"\e524"}.fa-arrow-right:before{content:"\f061"}.fa-map-signs:before,.fa-signs-post:before{content:"\f277"}.fa-cash-register:before{content:"\f788"}.fa-person-circle-question:before{content:"\e542"}.fa-h:before{content:"\48"}.fa-tarp:before{content:"\e57b"}.fa-screwdriver-wrench:before,.fa-tools:before{content:"\f7d9"}.fa-arrows-to-eye:before{content:"\e4bf"}.fa-plug-circle-bolt:before{content:"\e55b"}.fa-heart:before{content:"\f004"}.fa-mars-and-venus:before{content:"\f224"}.fa-home-user:before,.fa-house-user:before{content:"\e1b0"}.fa-dumpster-fire:before{content:"\f794"}.fa-house-crack:before{content:"\e3b1"}.fa-cocktail:before,.fa-martini-glass-citrus:before{content:"\f561"}.fa-face-surprise:before,.fa-surprise:before{content:"\f5c2"}.fa-bottle-water:before{content:"\e4c5"}.fa-circle-pause:before,.fa-pause-circle:before{content:"\f28b"}.fa-toilet-paper-slash:before{content:"\e072"}.fa-apple-alt:before,.fa-apple-whole:before{content:"\f5d1"}.fa-kitchen-set:before{content:"\e51a"}.fa-r:before{content:"\52"}.fa-temperature-1:before,.fa-temperature-quarter:before,.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-cube:before{content:"\f1b2"}.fa-bitcoin-sign:before{content:"\e0b4"}.fa-shield-dog:before{content:"\e573"}.fa-solar-panel:before{content:"\f5ba"}.fa-lock-open:before{content:"\f3c1"}.fa-elevator:before{content:"\e16d"}.fa-money-bill-transfer:before{content:"\e528"}.fa-money-bill-trend-up:before{content:"\e529"}.fa-house-flood-water-circle-arrow-right:before{content:"\e50f"}.fa-poll-h:before,.fa-square-poll-horizontal:before{content:"\f682"}.fa-circle:before{content:"\f111"}.fa-backward-fast:before,.fa-fast-backward:before{content:"\f049"}.fa-recycle:before{content:"\f1b8"}.fa-user-astronaut:before{content:"\f4fb"}.fa-plane-slash:before{content:"\e069"}.fa-trademark:before{content:"\f25c"}.fa-basketball-ball:before,.fa-basketball:before{content:"\f434"}.fa-satellite-dish:before{content:"\f7c0"}.fa-arrow-alt-circle-up:before,.fa-circle-up:before{content:"\f35b"}.fa-mobile-alt:before,.fa-mobile-screen-button:before{content:"\f3cd"}.fa-volume-high:before,.fa-volume-up:before{content:"\f028"}.fa-users-rays:before{content:"\e593"}.fa-wallet:before{content:"\f555"}.fa-clipboard-check:before{content:"\f46c"}.fa-file-audio:before{content:"\f1c7"}.fa-burger:before,.fa-hamburger:before{content:"\f805"}.fa-wrench:before{content:"\f0ad"}.fa-bugs:before{content:"\e4d0"}.fa-rupee-sign:before,.fa-rupee:before{content:"\f156"}.fa-file-image:before{content:"\f1c5"}.fa-circle-question:before,.fa-question-circle:before{content:"\f059"}.fa-plane-departure:before{content:"\f5b0"}.fa-handshake-slash:before{content:"\e060"}.fa-book-bookmark:before{content:"\e0bb"}.fa-code-branch:before{content:"\f126"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-bridge:before{content:"\e4c8"}.fa-phone-alt:before,.fa-phone-flip:before{content:"\f879"}.fa-truck-front:before{content:"\e2b7"}.fa-cat:before{content:"\f6be"}.fa-anchor-circle-exclamation:before{content:"\e4ab"}.fa-truck-field:before{content:"\e58d"}.fa-route:before{content:"\f4d7"}.fa-clipboard-question:before{content:"\e4e3"}.fa-panorama:before{content:"\e209"}.fa-comment-medical:before{content:"\f7f5"}.fa-teeth-open:before{content:"\f62f"}.fa-file-circle-minus:before{content:"\e4ed"}.fa-tags:before{content:"\f02c"}.fa-wine-glass:before{content:"\f4e3"}.fa-fast-forward:before,.fa-forward-fast:before{content:"\f050"}.fa-face-meh-blank:before,.fa-meh-blank:before{content:"\f5a4"}.fa-parking:before,.fa-square-parking:before{content:"\f540"}.fa-house-signal:before{content:"\e012"}.fa-bars-progress:before,.fa-tasks-alt:before{content:"\f828"}.fa-faucet-drip:before{content:"\e006"}.fa-cart-flatbed:before,.fa-dolly-flatbed:before{content:"\f474"}.fa-ban-smoking:before,.fa-smoking-ban:before{content:"\f54d"}.fa-terminal:before{content:"\f120"}.fa-mobile-button:before{content:"\f10b"}.fa-house-medical-flag:before{content:"\e514"}.fa-basket-shopping:before,.fa-shopping-basket:before{content:"\f291"}.fa-tape:before{content:"\f4db"}.fa-bus-alt:before,.fa-bus-simple:before{content:"\f55e"}.fa-eye:before{content:"\f06e"}.fa-face-sad-cry:before,.fa-sad-cry:before{content:"\f5b3"}.fa-audio-description:before{content:"\f29e"}.fa-person-military-to-person:before{content:"\e54c"}.fa-file-shield:before{content:"\e4f0"}.fa-user-slash:before{content:"\f506"}.fa-pen:before{content:"\f304"}.fa-tower-observation:before{content:"\e586"}.fa-file-code:before{content:"\f1c9"}.fa-signal-5:before,.fa-signal-perfect:before,.fa-signal:before{content:"\f012"}.fa-bus:before{content:"\f207"}.fa-heart-circle-xmark:before{content:"\e501"}.fa-home-lg:before,.fa-house-chimney:before{content:"\e3af"}.fa-window-maximize:before{content:"\f2d0"}.fa-face-frown:before,.fa-frown:before{content:"\f119"}.fa-prescription:before{content:"\f5b1"}.fa-shop:before,.fa-store-alt:before{content:"\f54f"}.fa-floppy-disk:before,.fa-save:before{content:"\f0c7"}.fa-vihara:before{content:"\f6a7"}.fa-balance-scale-left:before,.fa-scale-unbalanced:before{content:"\f515"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-comment-dots:before,.fa-commenting:before{content:"\f4ad"}.fa-plant-wilt:before{content:"\e5aa"}.fa-diamond:before{content:"\f219"}.fa-face-grin-squint:before,.fa-grin-squint:before{content:"\f585"}.fa-hand-holding-dollar:before,.fa-hand-holding-usd:before{content:"\f4c0"}.fa-bacterium:before{content:"\e05a"}.fa-hand-pointer:before{content:"\f25a"}.fa-drum-steelpan:before{content:"\f56a"}.fa-hand-scissors:before{content:"\f257"}.fa-hands-praying:before,.fa-praying-hands:before{content:"\f684"}.fa-arrow-right-rotate:before,.fa-arrow-rotate-forward:before,.fa-arrow-rotate-right:before,.fa-redo:before{content:"\f01e"}.fa-biohazard:before{content:"\f780"}.fa-location-crosshairs:before,.fa-location:before{content:"\f601"}.fa-mars-double:before{content:"\f227"}.fa-child-dress:before{content:"\e59c"}.fa-users-between-lines:before{content:"\e591"}.fa-lungs-virus:before{content:"\e067"}.fa-face-grin-tears:before,.fa-grin-tears:before{content:"\f588"}.fa-phone:before{content:"\f095"}.fa-calendar-times:before,.fa-calendar-xmark:before{content:"\f273"}.fa-child-reaching:before{content:"\e59d"}.fa-head-side-virus:before{content:"\e064"}.fa-user-cog:before,.fa-user-gear:before{content:"\f4fe"}.fa-arrow-up-1-9:before,.fa-sort-numeric-up:before{content:"\f163"}.fa-door-closed:before{content:"\f52a"}.fa-shield-virus:before{content:"\e06c"}.fa-dice-six:before{content:"\f526"}.fa-mosquito-net:before{content:"\e52c"}.fa-bridge-water:before{content:"\e4ce"}.fa-person-booth:before{content:"\f756"}.fa-text-width:before{content:"\f035"}.fa-hat-wizard:before{content:"\f6e8"}.fa-pen-fancy:before{content:"\f5ac"}.fa-digging:before,.fa-person-digging:before{content:"\f85e"}.fa-trash:before{content:"\f1f8"}.fa-gauge-simple-med:before,.fa-gauge-simple:before,.fa-tachometer-average:before{content:"\f629"}.fa-book-medical:before{content:"\f7e6"}.fa-poo:before{content:"\f2fe"}.fa-quote-right-alt:before,.fa-quote-right:before{content:"\f10e"}.fa-shirt:before,.fa-t-shirt:before,.fa-tshirt:before{content:"\f553"}.fa-cubes:before{content:"\f1b3"}.fa-divide:before{content:"\f529"}.fa-tenge-sign:before,.fa-tenge:before{content:"\f7d7"}.fa-headphones:before{content:"\f025"}.fa-hands-holding:before{content:"\f4c2"}.fa-hands-clapping:before{content:"\e1a8"}.fa-republican:before{content:"\f75e"}.fa-arrow-left:before{content:"\f060"}.fa-person-circle-xmark:before{content:"\e543"}.fa-ruler:before{content:"\f545"}.fa-align-left:before{content:"\f036"}.fa-dice-d6:before{content:"\f6d1"}.fa-restroom:before{content:"\f7bd"}.fa-j:before{content:"\4a"}.fa-users-viewfinder:before{content:"\e595"}.fa-file-video:before{content:"\f1c8"}.fa-external-link-alt:before,.fa-up-right-from-square:before{content:"\f35d"}.fa-table-cells:before,.fa-th:before{content:"\f00a"}.fa-file-pdf:before{content:"\f1c1"}.fa-bible:before,.fa-book-bible:before{content:"\f647"}.fa-o:before{content:"\4f"}.fa-medkit:before,.fa-suitcase-medical:before{content:"\f0fa"}.fa-user-secret:before{content:"\f21b"}.fa-otter:before{content:"\f700"}.fa-female:before,.fa-person-dress:before{content:"\f182"}.fa-comment-dollar:before{content:"\f651"}.fa-briefcase-clock:before,.fa-business-time:before{content:"\f64a"}.fa-table-cells-large:before,.fa-th-large:before{content:"\f009"}.fa-book-tanakh:before,.fa-tanakh:before{content:"\f827"}.fa-phone-volume:before,.fa-volume-control-phone:before{content:"\f2a0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-clipboard-user:before{content:"\f7f3"}.fa-child:before{content:"\f1ae"}.fa-lira-sign:before{content:"\f195"}.fa-satellite:before{content:"\f7bf"}.fa-plane-lock:before{content:"\e558"}.fa-tag:before{content:"\f02b"}.fa-comment:before{content:"\f075"}.fa-birthday-cake:before,.fa-cake-candles:before,.fa-cake:before{content:"\f1fd"}.fa-envelope:before{content:"\f0e0"}.fa-angle-double-up:before,.fa-angles-up:before{content:"\f102"}.fa-paperclip:before{content:"\f0c6"}.fa-arrow-right-to-city:before{content:"\e4b3"}.fa-ribbon:before{content:"\f4d6"}.fa-lungs:before{content:"\f604"}.fa-arrow-up-9-1:before,.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-litecoin-sign:before{content:"\e1d3"}.fa-border-none:before{content:"\f850"}.fa-circle-nodes:before{content:"\e4e2"}.fa-parachute-box:before{content:"\f4cd"}.fa-indent:before{content:"\f03c"}.fa-truck-field-un:before{content:"\e58e"}.fa-hourglass-empty:before,.fa-hourglass:before{content:"\f254"}.fa-mountain:before{content:"\f6fc"}.fa-user-doctor:before,.fa-user-md:before{content:"\f0f0"}.fa-circle-info:before,.fa-info-circle:before{content:"\f05a"}.fa-cloud-meatball:before{content:"\f73b"}.fa-camera-alt:before,.fa-camera:before{content:"\f030"}.fa-square-virus:before{content:"\e578"}.fa-meteor:before{content:"\f753"}.fa-car-on:before{content:"\e4dd"}.fa-sleigh:before{content:"\f7cc"}.fa-arrow-down-1-9:before,.fa-sort-numeric-asc:before,.fa-sort-numeric-down:before{content:"\f162"}.fa-hand-holding-droplet:before,.fa-hand-holding-water:before{content:"\f4c1"}.fa-water:before{content:"\f773"}.fa-calendar-check:before{content:"\f274"}.fa-braille:before{content:"\f2a1"}.fa-prescription-bottle-alt:before,.fa-prescription-bottle-medical:before{content:"\f486"}.fa-landmark:before{content:"\f66f"}.fa-truck:before{content:"\f0d1"}.fa-crosshairs:before{content:"\f05b"}.fa-person-cane:before{content:"\e53c"}.fa-tent:before{content:"\e57d"}.fa-vest-patches:before{content:"\e086"}.fa-check-double:before{content:"\f560"}.fa-arrow-down-a-z:before,.fa-sort-alpha-asc:before,.fa-sort-alpha-down:before{content:"\f15d"}.fa-money-bill-wheat:before{content:"\e52a"}.fa-cookie:before{content:"\f563"}.fa-arrow-left-rotate:before,.fa-arrow-rotate-back:before,.fa-arrow-rotate-backward:before,.fa-arrow-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-hard-drive:before,.fa-hdd:before{content:"\f0a0"}.fa-face-grin-squint-tears:before,.fa-grin-squint-tears:before{content:"\f586"}.fa-dumbbell:before{content:"\f44b"}.fa-list-alt:before,.fa-rectangle-list:before{content:"\f022"}.fa-tarp-droplet:before{content:"\e57c"}.fa-house-medical-circle-check:before{content:"\e511"}.fa-person-skiing-nordic:before,.fa-skiing-nordic:before{content:"\f7ca"}.fa-calendar-plus:before{content:"\f271"}.fa-plane-arrival:before{content:"\f5af"}.fa-arrow-alt-circle-left:before,.fa-circle-left:before{content:"\f359"}.fa-subway:before,.fa-train-subway:before{content:"\f239"}.fa-chart-gantt:before{content:"\e0e4"}.fa-indian-rupee-sign:before,.fa-indian-rupee:before,.fa-inr:before{content:"\e1bc"}.fa-crop-alt:before,.fa-crop-simple:before{content:"\f565"}.fa-money-bill-1:before,.fa-money-bill-alt:before{content:"\f3d1"}.fa-left-long:before,.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-dna:before{content:"\f471"}.fa-virus-slash:before{content:"\e075"}.fa-minus:before,.fa-subtract:before{content:"\f068"}.fa-chess:before{content:"\f439"}.fa-arrow-left-long:before,.fa-long-arrow-left:before{content:"\f177"}.fa-plug-circle-check:before{content:"\e55c"}.fa-street-view:before{content:"\f21d"}.fa-franc-sign:before{content:"\e18f"}.fa-volume-off:before{content:"\f026"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before,.fa-hands-american-sign-language-interpreting:before,.fa-hands-asl-interpreting:before{content:"\f2a3"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-droplet-slash:before,.fa-tint-slash:before{content:"\f5c7"}.fa-mosque:before{content:"\f678"}.fa-mosquito:before{content:"\e52b"}.fa-star-of-david:before{content:"\f69a"}.fa-person-military-rifle:before{content:"\e54b"}.fa-cart-shopping:before,.fa-shopping-cart:before{content:"\f07a"}.fa-vials:before{content:"\f493"}.fa-plug-circle-plus:before{content:"\e55f"}.fa-place-of-worship:before{content:"\f67f"}.fa-grip-vertical:before{content:"\f58e"}.fa-arrow-turn-up:before,.fa-level-up:before{content:"\f148"}.fa-u:before{content:"\55"}.fa-square-root-alt:before,.fa-square-root-variable:before{content:"\f698"}.fa-clock-four:before,.fa-clock:before{content:"\f017"}.fa-backward-step:before,.fa-step-backward:before{content:"\f048"}.fa-pallet:before{content:"\f482"}.fa-faucet:before{content:"\e005"}.fa-baseball-bat-ball:before{content:"\f432"}.fa-s:before{content:"\53"}.fa-timeline:before{content:"\e29c"}.fa-keyboard:before{content:"\f11c"}.fa-caret-down:before{content:"\f0d7"}.fa-clinic-medical:before,.fa-house-chimney-medical:before{content:"\f7f2"}.fa-temperature-3:before,.fa-temperature-three-quarters:before,.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-mobile-android-alt:before,.fa-mobile-screen:before{content:"\f3cf"}.fa-plane-up:before{content:"\e22d"}.fa-piggy-bank:before{content:"\f4d3"}.fa-battery-3:before,.fa-battery-half:before{content:"\f242"}.fa-mountain-city:before{content:"\e52e"}.fa-coins:before{content:"\f51e"}.fa-khanda:before{content:"\f66d"}.fa-sliders-h:before,.fa-sliders:before{content:"\f1de"}.fa-folder-tree:before{content:"\f802"}.fa-network-wired:before{content:"\f6ff"}.fa-map-pin:before{content:"\f276"}.fa-hamsa:before{content:"\f665"}.fa-cent-sign:before{content:"\e3f5"}.fa-flask:before{content:"\f0c3"}.fa-person-pregnant:before{content:"\e31e"}.fa-wand-sparkles:before{content:"\f72b"}.fa-ellipsis-v:before,.fa-ellipsis-vertical:before{content:"\f142"}.fa-ticket:before{content:"\f145"}.fa-power-off:before{content:"\f011"}.fa-long-arrow-alt-right:before,.fa-right-long:before{content:"\f30b"}.fa-flag-usa:before{content:"\f74d"}.fa-laptop-file:before{content:"\e51d"}.fa-teletype:before,.fa-tty:before{content:"\f1e4"}.fa-diagram-next:before{content:"\e476"}.fa-person-rifle:before{content:"\e54e"}.fa-house-medical-circle-exclamation:before{content:"\e512"}.fa-closed-captioning:before{content:"\f20a"}.fa-hiking:before,.fa-person-hiking:before{content:"\f6ec"}.fa-venus-double:before{content:"\f226"}.fa-images:before{content:"\f302"}.fa-calculator:before{content:"\f1ec"}.fa-people-pulling:before{content:"\e535"}.fa-n:before{content:"\4e"}.fa-cable-car:before,.fa-tram:before{content:"\f7da"}.fa-cloud-rain:before{content:"\f73d"}.fa-building-circle-xmark:before{content:"\e4d4"}.fa-ship:before{content:"\f21a"}.fa-arrows-down-to-line:before{content:"\e4b8"}.fa-download:before{content:"\f019"}.fa-face-grin:before,.fa-grin:before{content:"\f580"}.fa-backspace:before,.fa-delete-left:before{content:"\f55a"}.fa-eye-dropper-empty:before,.fa-eye-dropper:before,.fa-eyedropper:before{content:"\f1fb"}.fa-file-circle-check:before{content:"\e5a0"}.fa-forward:before{content:"\f04e"}.fa-mobile-android:before,.fa-mobile-phone:before,.fa-mobile:before{content:"\f3ce"}.fa-face-meh:before,.fa-meh:before{content:"\f11a"}.fa-align-center:before{content:"\f037"}.fa-book-dead:before,.fa-book-skull:before{content:"\f6b7"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-heart-circle-exclamation:before{content:"\e4fe"}.fa-home-alt:before,.fa-home-lg-alt:before,.fa-home:before,.fa-house:before{content:"\f015"}.fa-calendar-week:before{content:"\f784"}.fa-laptop-medical:before{content:"\f812"}.fa-b:before{content:"\42"}.fa-file-medical:before{content:"\f477"}.fa-dice-one:before{content:"\f525"}.fa-kiwi-bird:before{content:"\f535"}.fa-arrow-right-arrow-left:before,.fa-exchange:before{content:"\f0ec"}.fa-redo-alt:before,.fa-rotate-forward:before,.fa-rotate-right:before{content:"\f2f9"}.fa-cutlery:before,.fa-utensils:before{content:"\f2e7"}.fa-arrow-up-wide-short:before,.fa-sort-amount-up:before{content:"\f161"}.fa-mill-sign:before{content:"\e1ed"}.fa-bowl-rice:before{content:"\e2eb"}.fa-skull:before{content:"\f54c"}.fa-broadcast-tower:before,.fa-tower-broadcast:before{content:"\f519"}.fa-truck-pickup:before{content:"\f63c"}.fa-long-arrow-alt-up:before,.fa-up-long:before{content:"\f30c"}.fa-stop:before{content:"\f04d"}.fa-code-merge:before{content:"\f387"}.fa-upload:before{content:"\f093"}.fa-hurricane:before{content:"\f751"}.fa-mound:before{content:"\e52d"}.fa-toilet-portable:before{content:"\e583"}.fa-compact-disc:before{content:"\f51f"}.fa-file-arrow-down:before,.fa-file-download:before{content:"\f56d"}.fa-caravan:before{content:"\f8ff"}.fa-shield-cat:before{content:"\e572"}.fa-bolt:before,.fa-zap:before{content:"\f0e7"}.fa-glass-water:before{content:"\e4f4"}.fa-oil-well:before{content:"\e532"}.fa-vault:before{content:"\e2c5"}.fa-mars:before{content:"\f222"}.fa-toilet:before{content:"\f7d8"}.fa-plane-circle-xmark:before{content:"\e557"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen-sign:before,.fa-yen:before{content:"\f157"}.fa-rouble:before,.fa-rub:before,.fa-ruble-sign:before,.fa-ruble:before{content:"\f158"}.fa-sun:before{content:"\f185"}.fa-guitar:before{content:"\f7a6"}.fa-face-laugh-wink:before,.fa-laugh-wink:before{content:"\f59c"}.fa-horse-head:before{content:"\f7ab"}.fa-bore-hole:before{content:"\e4c3"}.fa-industry:before{content:"\f275"}.fa-arrow-alt-circle-down:before,.fa-circle-down:before{content:"\f358"}.fa-arrows-turn-to-dots:before{content:"\e4c1"}.fa-florin-sign:before{content:"\e184"}.fa-arrow-down-short-wide:before,.fa-sort-amount-desc:before,.fa-sort-amount-down-alt:before{content:"\f884"}.fa-less-than:before{content:"\3c"}.fa-angle-down:before{content:"\f107"}.fa-car-tunnel:before{content:"\e4de"}.fa-head-side-cough:before{content:"\e061"}.fa-grip-lines:before{content:"\f7a4"}.fa-thumbs-down:before{content:"\f165"}.fa-user-lock:before{content:"\f502"}.fa-arrow-right-long:before,.fa-long-arrow-right:before{content:"\f178"}.fa-anchor-circle-xmark:before{content:"\e4ac"}.fa-ellipsis-h:before,.fa-ellipsis:before{content:"\f141"}.fa-chess-pawn:before{content:"\f443"}.fa-first-aid:before,.fa-kit-medical:before{content:"\f479"}.fa-person-through-window:before{content:"\e5a9"}.fa-toolbox:before{content:"\f552"}.fa-hands-holding-circle:before{content:"\e4fb"}.fa-bug:before{content:"\f188"}.fa-credit-card-alt:before,.fa-credit-card:before{content:"\f09d"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-hand-holding-hand:before{content:"\e4f7"}.fa-book-open-reader:before,.fa-book-reader:before{content:"\f5da"}.fa-mountain-sun:before{content:"\e52f"}.fa-arrows-left-right-to-line:before{content:"\e4ba"}.fa-dice-d20:before{content:"\f6cf"}.fa-truck-droplet:before{content:"\e58c"}.fa-file-circle-xmark:before{content:"\e5a1"}.fa-temperature-arrow-up:before,.fa-temperature-up:before{content:"\e040"}.fa-medal:before{content:"\f5a2"}.fa-bed:before{content:"\f236"}.fa-h-square:before,.fa-square-h:before{content:"\f0fd"}.fa-podcast:before{content:"\f2ce"}.fa-temperature-4:before,.fa-temperature-full:before,.fa-thermometer-4:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-bell:before{content:"\f0f3"}.fa-superscript:before{content:"\f12b"}.fa-plug-circle-xmark:before{content:"\e560"}.fa-star-of-life:before{content:"\f621"}.fa-phone-slash:before{content:"\f3dd"}.fa-paint-roller:before{content:"\f5aa"}.fa-hands-helping:before,.fa-handshake-angle:before{content:"\f4c4"}.fa-location-dot:before,.fa-map-marker-alt:before{content:"\f3c5"}.fa-file:before{content:"\f15b"}.fa-greater-than:before{content:"\3e"}.fa-person-swimming:before,.fa-swimmer:before{content:"\f5c4"}.fa-arrow-down:before{content:"\f063"}.fa-droplet:before,.fa-tint:before{content:"\f043"}.fa-eraser:before{content:"\f12d"}.fa-earth-america:before,.fa-earth-americas:before,.fa-earth:before,.fa-globe-americas:before{content:"\f57d"}.fa-person-burst:before{content:"\e53b"}.fa-dove:before{content:"\f4ba"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-socks:before{content:"\f696"}.fa-inbox:before{content:"\f01c"}.fa-section:before{content:"\e447"}.fa-gauge-high:before,.fa-tachometer-alt-fast:before,.fa-tachometer-alt:before{content:"\f625"}.fa-envelope-open-text:before{content:"\f658"}.fa-hospital-alt:before,.fa-hospital-wide:before,.fa-hospital:before{content:"\f0f8"}.fa-wine-bottle:before{content:"\f72f"}.fa-chess-rook:before{content:"\f447"}.fa-bars-staggered:before,.fa-reorder:before,.fa-stream:before{content:"\f550"}.fa-dharmachakra:before{content:"\f655"}.fa-hotdog:before{content:"\f80f"}.fa-blind:before,.fa-person-walking-with-cane:before{content:"\f29d"}.fa-drum:before{content:"\f569"}.fa-ice-cream:before{content:"\f810"}.fa-heart-circle-bolt:before{content:"\e4fc"}.fa-fax:before{content:"\f1ac"}.fa-paragraph:before{content:"\f1dd"}.fa-check-to-slot:before,.fa-vote-yea:before{content:"\f772"}.fa-star-half:before{content:"\f089"}.fa-boxes-alt:before,.fa-boxes-stacked:before,.fa-boxes:before{content:"\f468"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-assistive-listening-systems:before,.fa-ear-listen:before{content:"\f2a2"}.fa-tree-city:before{content:"\e587"}.fa-play:before{content:"\f04b"}.fa-font:before{content:"\f031"}.fa-table-cells-row-lock:before{content:"\e67a"}.fa-rupiah-sign:before{content:"\e23d"}.fa-magnifying-glass:before,.fa-search:before{content:"\f002"}.fa-ping-pong-paddle-ball:before,.fa-table-tennis-paddle-ball:before,.fa-table-tennis:before{content:"\f45d"}.fa-diagnoses:before,.fa-person-dots-from-line:before{content:"\f470"}.fa-trash-can-arrow-up:before,.fa-trash-restore-alt:before{content:"\f82a"}.fa-naira-sign:before{content:"\e1f6"}.fa-cart-arrow-down:before{content:"\f218"}.fa-walkie-talkie:before{content:"\f8ef"}.fa-file-edit:before,.fa-file-pen:before{content:"\f31c"}.fa-receipt:before{content:"\f543"}.fa-pen-square:before,.fa-pencil-square:before,.fa-square-pen:before{content:"\f14b"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-person-circle-exclamation:before{content:"\e53f"}.fa-chevron-down:before{content:"\f078"}.fa-battery-5:before,.fa-battery-full:before,.fa-battery:before{content:"\f240"}.fa-skull-crossbones:before{content:"\f714"}.fa-code-compare:before{content:"\e13a"}.fa-list-dots:before,.fa-list-ul:before{content:"\f0ca"}.fa-school-lock:before{content:"\e56f"}.fa-tower-cell:before{content:"\e585"}.fa-down-long:before,.fa-long-arrow-alt-down:before{content:"\f309"}.fa-ranking-star:before{content:"\e561"}.fa-chess-king:before{content:"\f43f"}.fa-person-harassing:before{content:"\e549"}.fa-brazilian-real-sign:before{content:"\e46c"}.fa-landmark-alt:before,.fa-landmark-dome:before{content:"\f752"}.fa-arrow-up:before{content:"\f062"}.fa-television:before,.fa-tv-alt:before,.fa-tv:before{content:"\f26c"}.fa-shrimp:before{content:"\e448"}.fa-list-check:before,.fa-tasks:before{content:"\f0ae"}.fa-jug-detergent:before{content:"\e519"}.fa-circle-user:before,.fa-user-circle:before{content:"\f2bd"}.fa-user-shield:before{content:"\f505"}.fa-wind:before{content:"\f72e"}.fa-car-burst:before,.fa-car-crash:before{content:"\f5e1"}.fa-y:before{content:"\59"}.fa-person-snowboarding:before,.fa-snowboarding:before{content:"\f7ce"}.fa-shipping-fast:before,.fa-truck-fast:before{content:"\f48b"}.fa-fish:before{content:"\f578"}.fa-user-graduate:before{content:"\f501"}.fa-adjust:before,.fa-circle-half-stroke:before{content:"\f042"}.fa-clapperboard:before{content:"\e131"}.fa-circle-radiation:before,.fa-radiation-alt:before{content:"\f7ba"}.fa-baseball-ball:before,.fa-baseball:before{content:"\f433"}.fa-jet-fighter-up:before{content:"\e518"}.fa-diagram-project:before,.fa-project-diagram:before{content:"\f542"}.fa-copy:before{content:"\f0c5"}.fa-volume-mute:before,.fa-volume-times:before,.fa-volume-xmark:before{content:"\f6a9"}.fa-hand-sparkles:before{content:"\e05d"}.fa-grip-horizontal:before,.fa-grip:before{content:"\f58d"}.fa-share-from-square:before,.fa-share-square:before{content:"\f14d"}.fa-child-combatant:before,.fa-child-rifle:before{content:"\e4e0"}.fa-gun:before{content:"\e19b"}.fa-phone-square:before,.fa-square-phone:before{content:"\f098"}.fa-add:before,.fa-plus:before{content:"\2b"}.fa-expand:before{content:"\f065"}.fa-computer:before{content:"\e4e5"}.fa-close:before,.fa-multiply:before,.fa-remove:before,.fa-times:before,.fa-xmark:before{content:"\f00d"}.fa-arrows-up-down-left-right:before,.fa-arrows:before{content:"\f047"}.fa-chalkboard-teacher:before,.fa-chalkboard-user:before{content:"\f51c"}.fa-peso-sign:before{content:"\e222"}.fa-building-shield:before{content:"\e4d8"}.fa-baby:before{content:"\f77c"}.fa-users-line:before{content:"\e592"}.fa-quote-left-alt:before,.fa-quote-left:before{content:"\f10d"}.fa-tractor:before{content:"\f722"}.fa-trash-arrow-up:before,.fa-trash-restore:before{content:"\f829"}.fa-arrow-down-up-lock:before{content:"\e4b0"}.fa-lines-leaning:before{content:"\e51e"}.fa-ruler-combined:before{content:"\f546"}.fa-copyright:before{content:"\f1f9"}.fa-equals:before{content:"\3d"}.fa-blender:before{content:"\f517"}.fa-teeth:before{content:"\f62e"}.fa-ils:before,.fa-shekel-sign:before,.fa-shekel:before,.fa-sheqel-sign:before,.fa-sheqel:before{content:"\f20b"}.fa-map:before{content:"\f279"}.fa-rocket:before{content:"\f135"}.fa-photo-film:before,.fa-photo-video:before{content:"\f87c"}.fa-folder-minus:before{content:"\f65d"}.fa-store:before{content:"\f54e"}.fa-arrow-trend-up:before{content:"\e098"}.fa-plug-circle-minus:before{content:"\e55e"}.fa-sign-hanging:before,.fa-sign:before{content:"\f4d9"}.fa-bezier-curve:before{content:"\f55b"}.fa-bell-slash:before{content:"\f1f6"}.fa-tablet-android:before,.fa-tablet:before{content:"\f3fb"}.fa-school-flag:before{content:"\e56e"}.fa-fill:before{content:"\f575"}.fa-angle-up:before{content:"\f106"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-holly-berry:before{content:"\f7aa"}.fa-chevron-left:before{content:"\f053"}.fa-bacteria:before{content:"\e059"}.fa-hand-lizard:before{content:"\f258"}.fa-notdef:before{content:"\e1fe"}.fa-disease:before{content:"\f7fa"}.fa-briefcase-medical:before{content:"\f469"}.fa-genderless:before{content:"\f22d"}.fa-chevron-right:before{content:"\f054"}.fa-retweet:before{content:"\f079"}.fa-car-alt:before,.fa-car-rear:before{content:"\f5de"}.fa-pump-soap:before{content:"\e06b"}.fa-video-slash:before{content:"\f4e2"}.fa-battery-2:before,.fa-battery-quarter:before{content:"\f243"}.fa-radio:before{content:"\f8d7"}.fa-baby-carriage:before,.fa-carriage-baby:before{content:"\f77d"}.fa-traffic-light:before{content:"\f637"}.fa-thermometer:before{content:"\f491"}.fa-vr-cardboard:before{content:"\f729"}.fa-hand-middle-finger:before{content:"\f806"}.fa-percent:before,.fa-percentage:before{content:"\25"}.fa-truck-moving:before{content:"\f4df"}.fa-glass-water-droplet:before{content:"\e4f5"}.fa-display:before{content:"\e163"}.fa-face-smile:before,.fa-smile:before{content:"\f118"}.fa-thumb-tack:before,.fa-thumbtack:before{content:"\f08d"}.fa-trophy:before{content:"\f091"}.fa-person-praying:before,.fa-pray:before{content:"\f683"}.fa-hammer:before{content:"\f6e3"}.fa-hand-peace:before{content:"\f25b"}.fa-rotate:before,.fa-sync-alt:before{content:"\f2f1"}.fa-spinner:before{content:"\f110"}.fa-robot:before{content:"\f544"}.fa-peace:before{content:"\f67c"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-warehouse:before{content:"\f494"}.fa-arrow-up-right-dots:before{content:"\e4b7"}.fa-splotch:before{content:"\f5bc"}.fa-face-grin-hearts:before,.fa-grin-hearts:before{content:"\f584"}.fa-dice-four:before{content:"\f524"}.fa-sim-card:before{content:"\f7c4"}.fa-transgender-alt:before,.fa-transgender:before{content:"\f225"}.fa-mercury:before{content:"\f223"}.fa-arrow-turn-down:before,.fa-level-down:before{content:"\f149"}.fa-person-falling-burst:before{content:"\e547"}.fa-award:before{content:"\f559"}.fa-ticket-alt:before,.fa-ticket-simple:before{content:"\f3ff"}.fa-building:before{content:"\f1ad"}.fa-angle-double-left:before,.fa-angles-left:before{content:"\f100"}.fa-qrcode:before{content:"\f029"}.fa-clock-rotate-left:before,.fa-history:before{content:"\f1da"}.fa-face-grin-beam-sweat:before,.fa-grin-beam-sweat:before{content:"\f583"}.fa-arrow-right-from-file:before,.fa-file-export:before{content:"\f56e"}.fa-shield-blank:before,.fa-shield:before{content:"\f132"}.fa-arrow-up-short-wide:before,.fa-sort-amount-up-alt:before{content:"\f885"}.fa-house-medical:before{content:"\e3b2"}.fa-golf-ball-tee:before,.fa-golf-ball:before{content:"\f450"}.fa-chevron-circle-left:before,.fa-circle-chevron-left:before{content:"\f137"}.fa-house-chimney-window:before{content:"\e00d"}.fa-pen-nib:before{content:"\f5ad"}.fa-tent-arrow-turn-left:before{content:"\e580"}.fa-tents:before{content:"\e582"}.fa-magic:before,.fa-wand-magic:before{content:"\f0d0"}.fa-dog:before{content:"\f6d3"}.fa-carrot:before{content:"\f787"}.fa-moon:before{content:"\f186"}.fa-wine-glass-alt:before,.fa-wine-glass-empty:before{content:"\f5ce"}.fa-cheese:before{content:"\f7ef"}.fa-yin-yang:before{content:"\f6ad"}.fa-music:before{content:"\f001"}.fa-code-commit:before{content:"\f386"}.fa-temperature-low:before{content:"\f76b"}.fa-biking:before,.fa-person-biking:before{content:"\f84a"}.fa-broom:before{content:"\f51a"}.fa-shield-heart:before{content:"\e574"}.fa-gopuram:before{content:"\f664"}.fa-earth-oceania:before,.fa-globe-oceania:before{content:"\e47b"}.fa-square-xmark:before,.fa-times-square:before,.fa-xmark-square:before{content:"\f2d3"}.fa-hashtag:before{content:"\23"}.fa-expand-alt:before,.fa-up-right-and-down-left-from-center:before{content:"\f424"}.fa-oil-can:before{content:"\f613"}.fa-t:before{content:"\54"}.fa-hippo:before{content:"\f6ed"}.fa-chart-column:before{content:"\e0e3"}.fa-infinity:before{content:"\f534"}.fa-vial-circle-check:before{content:"\e596"}.fa-person-arrow-down-to-line:before{content:"\e538"}.fa-voicemail:before{content:"\f897"}.fa-fan:before{content:"\f863"}.fa-person-walking-luggage:before{content:"\e554"}.fa-arrows-alt-v:before,.fa-up-down:before{content:"\f338"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-calendar:before{content:"\f133"}.fa-trailer:before{content:"\e041"}.fa-bahai:before,.fa-haykal:before{content:"\f666"}.fa-sd-card:before{content:"\f7c2"}.fa-dragon:before{content:"\f6d5"}.fa-shoe-prints:before{content:"\f54b"}.fa-circle-plus:before,.fa-plus-circle:before{content:"\f055"}.fa-face-grin-tongue-wink:before,.fa-grin-tongue-wink:before{content:"\f58b"}.fa-hand-holding:before{content:"\f4bd"}.fa-plug-circle-exclamation:before{content:"\e55d"}.fa-chain-broken:before,.fa-chain-slash:before,.fa-link-slash:before,.fa-unlink:before{content:"\f127"}.fa-clone:before{content:"\f24d"}.fa-person-walking-arrow-loop-left:before{content:"\e551"}.fa-arrow-up-z-a:before,.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-fire-alt:before,.fa-fire-flame-curved:before{content:"\f7e4"}.fa-tornado:before{content:"\f76f"}.fa-file-circle-plus:before{content:"\e494"}.fa-book-quran:before,.fa-quran:before{content:"\f687"}.fa-anchor:before{content:"\f13d"}.fa-border-all:before{content:"\f84c"}.fa-angry:before,.fa-face-angry:before{content:"\f556"}.fa-cookie-bite:before{content:"\f564"}.fa-arrow-trend-down:before{content:"\e097"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-draw-polygon:before{content:"\f5ee"}.fa-balance-scale:before,.fa-scale-balanced:before{content:"\f24e"}.fa-gauge-simple-high:before,.fa-tachometer-fast:before,.fa-tachometer:before{content:"\f62a"}.fa-shower:before{content:"\f2cc"}.fa-desktop-alt:before,.fa-desktop:before{content:"\f390"}.fa-m:before{content:"\4d"}.fa-table-list:before,.fa-th-list:before{content:"\f00b"}.fa-comment-sms:before,.fa-sms:before{content:"\f7cd"}.fa-book:before{content:"\f02d"}.fa-user-plus:before{content:"\f234"}.fa-check:before{content:"\f00c"}.fa-battery-4:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-house-circle-check:before{content:"\e509"}.fa-angle-left:before{content:"\f104"}.fa-diagram-successor:before{content:"\e47a"}.fa-truck-arrow-right:before{content:"\e58b"}.fa-arrows-split-up-and-left:before{content:"\e4bc"}.fa-fist-raised:before,.fa-hand-fist:before{content:"\f6de"}.fa-cloud-moon:before{content:"\f6c3"}.fa-briefcase:before{content:"\f0b1"}.fa-person-falling:before{content:"\e546"}.fa-image-portrait:before,.fa-portrait:before{content:"\f3e0"}.fa-user-tag:before{content:"\f507"}.fa-rug:before{content:"\e569"}.fa-earth-europe:before,.fa-globe-europe:before{content:"\f7a2"}.fa-cart-flatbed-suitcase:before,.fa-luggage-cart:before{content:"\f59d"}.fa-rectangle-times:before,.fa-rectangle-xmark:before,.fa-times-rectangle:before,.fa-window-close:before{content:"\f410"}.fa-baht-sign:before{content:"\e0ac"}.fa-book-open:before{content:"\f518"}.fa-book-journal-whills:before,.fa-journal-whills:before{content:"\f66a"}.fa-handcuffs:before{content:"\e4f8"}.fa-exclamation-triangle:before,.fa-triangle-exclamation:before,.fa-warning:before{content:"\f071"}.fa-database:before{content:"\f1c0"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-bottle-droplet:before{content:"\e4c4"}.fa-mask-face:before{content:"\e1d7"}.fa-hill-rockslide:before{content:"\e508"}.fa-exchange-alt:before,.fa-right-left:before{content:"\f362"}.fa-paper-plane:before{content:"\f1d8"}.fa-road-circle-exclamation:before{content:"\e565"}.fa-dungeon:before{content:"\f6d9"}.fa-align-right:before{content:"\f038"}.fa-money-bill-1-wave:before,.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-life-ring:before{content:"\f1cd"}.fa-hands:before,.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-calendar-day:before{content:"\f783"}.fa-ladder-water:before,.fa-swimming-pool:before,.fa-water-ladder:before{content:"\f5c5"}.fa-arrows-up-down:before,.fa-arrows-v:before{content:"\f07d"}.fa-face-grimace:before,.fa-grimace:before{content:"\f57f"}.fa-wheelchair-alt:before,.fa-wheelchair-move:before{content:"\e2ce"}.fa-level-down-alt:before,.fa-turn-down:before{content:"\f3be"}.fa-person-walking-arrow-right:before{content:"\e552"}.fa-envelope-square:before,.fa-square-envelope:before{content:"\f199"}.fa-dice:before{content:"\f522"}.fa-bowling-ball:before{content:"\f436"}.fa-brain:before{content:"\f5dc"}.fa-band-aid:before,.fa-bandage:before{content:"\f462"}.fa-calendar-minus:before{content:"\f272"}.fa-circle-xmark:before,.fa-times-circle:before,.fa-xmark-circle:before{content:"\f057"}.fa-gifts:before{content:"\f79c"}.fa-hotel:before{content:"\f594"}.fa-earth-asia:before,.fa-globe-asia:before{content:"\f57e"}.fa-id-card-alt:before,.fa-id-card-clip:before{content:"\f47f"}.fa-magnifying-glass-plus:before,.fa-search-plus:before{content:"\f00e"}.fa-thumbs-up:before{content:"\f164"}.fa-user-clock:before{content:"\f4fd"}.fa-allergies:before,.fa-hand-dots:before{content:"\f461"}.fa-file-invoice:before{content:"\f570"}.fa-window-minimize:before{content:"\f2d1"}.fa-coffee:before,.fa-mug-saucer:before{content:"\f0f4"}.fa-brush:before{content:"\f55d"}.fa-mask:before{content:"\f6fa"}.fa-magnifying-glass-minus:before,.fa-search-minus:before{content:"\f010"}.fa-ruler-vertical:before{content:"\f548"}.fa-user-alt:before,.fa-user-large:before{content:"\f406"}.fa-train-tram:before{content:"\e5b4"}.fa-user-nurse:before{content:"\f82f"}.fa-syringe:before{content:"\f48e"}.fa-cloud-sun:before{content:"\f6c4"}.fa-stopwatch-20:before{content:"\e06f"}.fa-square-full:before{content:"\f45c"}.fa-magnet:before{content:"\f076"}.fa-jar:before{content:"\e516"}.fa-note-sticky:before,.fa-sticky-note:before{content:"\f249"}.fa-bug-slash:before{content:"\e490"}.fa-arrow-up-from-water-pump:before{content:"\e4b6"}.fa-bone:before{content:"\f5d7"}.fa-user-injured:before{content:"\f728"}.fa-face-sad-tear:before,.fa-sad-tear:before{content:"\f5b4"}.fa-plane:before{content:"\f072"}.fa-tent-arrows-down:before{content:"\e581"}.fa-exclamation:before{content:"\21"}.fa-arrows-spin:before{content:"\e4bb"}.fa-print:before{content:"\f02f"}.fa-try:before,.fa-turkish-lira-sign:before,.fa-turkish-lira:before{content:"\e2bb"}.fa-dollar-sign:before,.fa-dollar:before,.fa-usd:before{content:"\24"}.fa-x:before{content:"\58"}.fa-magnifying-glass-dollar:before,.fa-search-dollar:before{content:"\f688"}.fa-users-cog:before,.fa-users-gear:before{content:"\f509"}.fa-person-military-pointing:before{content:"\e54a"}.fa-bank:before,.fa-building-columns:before,.fa-institution:before,.fa-museum:before,.fa-university:before{content:"\f19c"}.fa-umbrella:before{content:"\f0e9"}.fa-trowel:before{content:"\e589"}.fa-d:before{content:"\44"}.fa-stapler:before{content:"\e5af"}.fa-masks-theater:before,.fa-theater-masks:before{content:"\f630"}.fa-kip-sign:before{content:"\e1c4"}.fa-hand-point-left:before{content:"\f0a5"}.fa-handshake-alt:before,.fa-handshake-simple:before{content:"\f4c6"}.fa-fighter-jet:before,.fa-jet-fighter:before{content:"\f0fb"}.fa-share-alt-square:before,.fa-square-share-nodes:before{content:"\f1e1"}.fa-barcode:before{content:"\f02a"}.fa-plus-minus:before{content:"\e43c"}.fa-video-camera:before,.fa-video:before{content:"\f03d"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-hand-holding-medical:before{content:"\e05c"}.fa-person-circle-check:before{content:"\e53e"}.fa-level-up-alt:before,.fa-turn-up:before{content:"\f3bf"}
9
+ .fa-sr-only,.fa-sr-only-focusable:not(:focus),.sr-only,.sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}
public/css/group-avatars.css ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .avatar_collage {
2
+ border-radius: 50%;
3
+ position: relative;
4
+ overflow: hidden;
5
+ }
6
+
7
+ .avatar_collage img {
8
+ position: absolute;
9
+ overflow: hidden;
10
+ }
11
+
12
+ .collage_2 .img_1 {
13
+ left: 0;
14
+ top: 0;
15
+ max-width: 50%;
16
+ max-height: 100%;
17
+ width: 50%;
18
+ height: 100%;
19
+ }
20
+
21
+ .collage_2 .img_2 {
22
+ left: 50%;
23
+ top: 0;
24
+ max-width: 50%;
25
+ max-height: 100%;
26
+ width: 50%;
27
+ height: 100%;
28
+ }
29
+
30
+ .collage_3 .img_1 {
31
+ left: 0;
32
+ top: 0;
33
+ max-width: 50%;
34
+ max-height: 50%;
35
+ width: 50%;
36
+ height: 50%;
37
+ }
38
+
39
+ .collage_3 .img_2 {
40
+ left: 50%;
41
+ top: 0;
42
+ max-width: 50%;
43
+ max-height: 50%;
44
+ width: 50%;
45
+ height: 50%;
46
+ }
47
+
48
+ .collage_3 .img_3 {
49
+ left: 0;
50
+ top: 50%;
51
+ max-width: 100%;
52
+ max-height: 50%;
53
+ width: 100%;
54
+ height: 50%;
55
+ }
56
+
57
+ .collage_4 .img_1 {
58
+ left: 0;
59
+ top: 0;
60
+ max-width: 50%;
61
+ max-height: 50%;
62
+ width: 50%;
63
+ height: 50%;
64
+ }
65
+
66
+ .collage_4 .img_2 {
67
+ left: 50%;
68
+ top: 0;
69
+ max-width: 50%;
70
+ max-height: 50%;
71
+ width: 50%;
72
+ height: 50%;
73
+ }
74
+
75
+ .collage_4 .img_3 {
76
+ left: 0;
77
+ top: 50%;
78
+ max-width: 50%;
79
+ max-height: 50%;
80
+ width: 50%;
81
+ height: 50%;
82
+ }
83
+
84
+ .collage_4 .img_4 {
85
+ left: 50%;
86
+ top: 50%;
87
+ max-width: 50%;
88
+ max-height: 50%;
89
+ width: 50%;
90
+ height: 50%;
91
+ }
public/css/jquery-ui.min.css ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ /*! jQuery UI - v1.13.2 - 2022-07-14
2
+ * http://jqueryui.com
3
+ * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
4
+ * To view and modify this theme, visit http://jqueryui.com/themeroller/?bgShadowXPos=&bgOverlayXPos=&bgErrorXPos=&bgHighlightXPos=&bgContentXPos=&bgHeaderXPos=&bgActiveXPos=&bgHoverXPos=&bgDefaultXPos=&bgShadowYPos=&bgOverlayYPos=&bgErrorYPos=&bgHighlightYPos=&bgContentYPos=&bgHeaderYPos=&bgActiveYPos=&bgHoverYPos=&bgDefaultYPos=&bgShadowRepeat=&bgOverlayRepeat=&bgErrorRepeat=&bgHighlightRepeat=&bgContentRepeat=&bgHeaderRepeat=&bgActiveRepeat=&bgHoverRepeat=&bgDefaultRepeat=&iconsHover=url(%22images%2Fui-icons_555555_256x240.png%22)&iconsHighlight=url(%22images%2Fui-icons_777620_256x240.png%22)&iconsHeader=url(%22images%2Fui-icons_444444_256x240.png%22)&iconsError=url(%22images%2Fui-icons_cc0000_256x240.png%22)&iconsDefault=url(%22images%2Fui-icons_777777_256x240.png%22)&iconsContent=url(%22images%2Fui-icons_444444_256x240.png%22)&iconsActive=url(%22images%2Fui-icons_ffffff_256x240.png%22)&bgImgUrlShadow=&bgImgUrlOverlay=&bgImgUrlHover=&bgImgUrlHighlight=&bgImgUrlHeader=&bgImgUrlError=&bgImgUrlDefault=&bgImgUrlContent=&bgImgUrlActive=&opacityFilterShadow=Alpha(Opacity%3D30)&opacityFilterOverlay=Alpha(Opacity%3D30)&opacityShadowPerc=30&opacityOverlayPerc=30&iconColorHover=%23555555&iconColorHighlight=%23777620&iconColorHeader=%23444444&iconColorError=%23cc0000&iconColorDefault=%23777777&iconColorContent=%23444444&iconColorActive=%23ffffff&bgImgOpacityShadow=0&bgImgOpacityOverlay=0&bgImgOpacityError=95&bgImgOpacityHighlight=55&bgImgOpacityContent=75&bgImgOpacityHeader=75&bgImgOpacityActive=65&bgImgOpacityHover=75&bgImgOpacityDefault=75&bgTextureShadow=flat&bgTextureOverlay=flat&bgTextureError=flat&bgTextureHighlight=flat&bgTextureContent=flat&bgTextureHeader=flat&bgTextureActive=flat&bgTextureHover=flat&bgTextureDefault=flat&cornerRadius=3px&fwDefault=normal&ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&cornerRadiusShadow=8px&thicknessShadow=5px&offsetLeftShadow=0px&offsetTopShadow=0px&opacityShadow=.3&bgColorShadow=%23666666&opacityOverlay=.3&bgColorOverlay=%23aaaaaa&fcError=%235f3f3f&borderColorError=%23f1a899&bgColorError=%23fddfdf&fcHighlight=%23777620&borderColorHighlight=%23dad55e&bgColorHighlight=%23fffa90&fcContent=%23333333&borderColorContent=%23dddddd&bgColorContent=%23ffffff&fcHeader=%23333333&borderColorHeader=%23dddddd&bgColorHeader=%23e9e9e9&fcActive=%23ffffff&borderColorActive=%23003eff&bgColorActive=%23007fff&fcHover=%232b2b2b&borderColorHover=%23cccccc&bgColorHover=%23ededed&fcDefault=%23454545&borderColorDefault=%23c5c5c5&bgColorDefault=%23f6f6f6
5
+ * Copyright jQuery Foundation and other contributors; Licensed MIT */
6
+
7
+ .ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;-ms-filter:"alpha(opacity=0)"}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0 0;padding:.5em .5em .5em .7em;font-size:100%}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{margin:0;cursor:pointer;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-item-wrapper{position:relative;padding:3px 1em 3px .4em}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item-wrapper{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-button{padding:.4em 1em;display:inline-block;position:relative;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2em;box-sizing:border-box;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-button-icon-only{text-indent:0}.ui-button-icon-only .ui-icon{position:absolute;top:50%;left:50%;margin-top:-8px;margin-left:-8px}.ui-button.ui-icon-notext .ui-icon{padding:0;width:2.1em;height:2.1em;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-icon-notext .ui-icon{width:auto;height:auto;text-indent:0;white-space:normal;padding:.4em 1em}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0}.ui-controlgroup{vertical-align:middle;display:inline-block}.ui-controlgroup > .ui-controlgroup-item{float:left;margin-left:0;margin-right:0}.ui-controlgroup > .ui-controlgroup-item:focus,.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus{z-index:9999}.ui-controlgroup-vertical > .ui-controlgroup-item{display:block;float:none;width:100%;margin-top:0;margin-bottom:0;text-align:left}.ui-controlgroup-vertical .ui-controlgroup-item{box-sizing:border-box}.ui-controlgroup .ui-controlgroup-label{padding:.4em 1em}.ui-controlgroup .ui-controlgroup-label span{font-size:80%}.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item{border-left:none}.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item{border-top:none}.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content{border-right:none}.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content{border-bottom:none}.ui-controlgroup-vertical .ui-spinner-input{width:75%;width:calc( 100% - 2.4em )}.ui-controlgroup-vertical .ui-spinner .ui-spinner-up{border-top-style:solid}.ui-checkboxradio-label .ui-icon-background{box-shadow:inset 1px 1px 1px #ccc;border-radius:.12em;border:none}.ui-checkboxradio-radio-label .ui-icon-background{width:16px;height:16px;border-radius:1em;overflow:visible;border:none}.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon{background-image:none;width:8px;height:8px;border-width:4px;border-style:solid}.ui-checkboxradio-disabled{pointer-events:none}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-datepicker .ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat;left:.5em;top:.3em}.ui-dialog{position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:20px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-n{height:2px;top:0}.ui-dialog .ui-resizable-e{width:2px;right:0}.ui-dialog .ui-resizable-s{height:2px;bottom:0}.ui-dialog .ui-resizable-w{width:2px;left:0}.ui-dialog .ui-resizable-se,.ui-dialog .ui-resizable-sw,.ui-dialog .ui-resizable-ne,.ui-dialog .ui-resizable-nw{width:7px;height:7px}.ui-dialog .ui-resizable-se{right:0;bottom:0}.ui-dialog .ui-resizable-sw{left:0;bottom:0}.ui-dialog .ui-resizable-ne{right:0;top:0}.ui-dialog .ui-resizable-nw{left:0;top:0}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");height:100%;-ms-filter:"alpha(opacity=25)";opacity:0.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black}.ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;left:0;display:none}.ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:bold;line-height:1.5;padding:2px 0.4em;margin:0.5em 0 0 0;height:auto;border:0}.ui-selectmenu-open{display:block}.ui-selectmenu-text{display:block;margin-right:20px;overflow:hidden;text-overflow:ellipsis}.ui-selectmenu-button.ui-button{text-align:left;white-space:nowrap;width:14em}.ui-selectmenu-icon.ui-icon{float:right;margin-top:0}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:pointer;-ms-touch-action:none;touch-action:none}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:none;color:inherit;padding:.222em 0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:2em}.ui-spinner-button{width:1.6em;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top-style:none;border-bottom-style:none;border-right-style:none}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px}body .ui-tooltip{border-width:2px}.ui-widget{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget.ui-widget-content{border:1px solid #c5c5c5}.ui-widget-content{border:1px solid #ddd;background:#fff;color:#333}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #ddd;background:#e9e9e9;color:#333;font-weight:bold}.ui-widget-header a{color:#333}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default,.ui-button,html .ui-button.ui-state-disabled:hover,html .ui-button.ui-state-disabled:active{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:normal;color:#454545}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited,a.ui-button,a:link.ui-button,a:visited.ui-button,.ui-button{color:#454545;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus,.ui-button:hover,.ui-button:focus{border:1px solid #ccc;background:#ededed;font-weight:normal;color:#2b2b2b}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited,a.ui-button:hover,a.ui-button:focus{color:#2b2b2b;text-decoration:none}.ui-visual-focus{box-shadow:0 0 3px 1px rgb(94,158,214)}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active,a.ui-button:active,.ui-button:active,.ui-button.ui-state-active:hover{border:1px solid #003eff;background:#007fff;font-weight:normal;color:#fff}.ui-icon-background,.ui-state-active .ui-icon-background{border:#003eff;background-color:#fff}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#fff;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #dad55e;background:#fffa90;color:#777620}.ui-state-checked{border:1px solid #dad55e;background:#fffa90}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#777620}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #f1a899;background:#fddfdf;color:#5f3f3f}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#5f3f3f}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#5f3f3f}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;-ms-filter:"alpha(opacity=70)";font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;-ms-filter:"alpha(opacity=35)";background-image:none}.ui-state-disabled .ui-icon{-ms-filter:"alpha(opacity=35)"}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url("images/ui-icons_444444_256x240.png")}.ui-widget-header .ui-icon{background-image:url("images/ui-icons_444444_256x240.png")}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon,.ui-button:hover .ui-icon,.ui-button:focus .ui-icon{background-image:url("images/ui-icons_555555_256x240.png")}.ui-state-active .ui-icon,.ui-button:active .ui-icon{background-image:url("images/ui-icons_ffffff_256x240.png")}.ui-state-highlight .ui-icon,.ui-button .ui-state-highlight.ui-icon{background-image:url("images/ui-icons_777620_256x240.png")}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url("images/ui-icons_cc0000_256x240.png")}.ui-button .ui-icon{background-image:url("images/ui-icons_777777_256x240.png")}.ui-icon-blank.ui-icon-blank.ui-icon-blank{background-image:none}.ui-icon-caret-1-n{background-position:0 0}.ui-icon-caret-1-ne{background-position:-16px 0}.ui-icon-caret-1-e{background-position:-32px 0}.ui-icon-caret-1-se{background-position:-48px 0}.ui-icon-caret-1-s{background-position:-65px 0}.ui-icon-caret-1-sw{background-position:-80px 0}.ui-icon-caret-1-w{background-position:-96px 0}.ui-icon-caret-1-nw{background-position:-112px 0}.ui-icon-caret-2-n-s{background-position:-128px 0}.ui-icon-caret-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-65px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-65px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:1px -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:3px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:3px}.ui-widget-overlay{background:#aaa;opacity:.003;-ms-filter:Alpha(Opacity=.3)}.ui-widget-shadow{-webkit-box-shadow:0 0 5px #666;box-shadow:0 0 5px #666}
public/css/loader.css ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #preloader {
2
+ position: fixed;
3
+ margin: 0;
4
+ padding: 0;
5
+ top: 0;
6
+ left: 0;
7
+ z-index: 999999;
8
+ width: 100vw;
9
+ height: 100vh;
10
+ width: 100dvw;
11
+ height: 100dvh;
12
+ background-color: var(--SmartThemeBlurTintColor);
13
+ color: var(--SmartThemeBodyColor);
14
+ /*for some reason the full screen blur does not work on iOS*/
15
+ backdrop-filter: blur(30px);
16
+ opacity: 1;
17
+ }
18
+
19
+ #load-spinner {
20
+ --spinner-size: 2em;
21
+ transition: all 300ms ease-out;
22
+ opacity: 1;
23
+ top: calc(50% - var(--spinner-size) / 2);
24
+ left: calc(50% - var(--spinner-size) / 2);
25
+ position: absolute;
26
+ width: var(--spinner-size);
27
+ height: var(--spinner-size);
28
+ display: flex;
29
+ align-items: center;
30
+ justify-content: center;
31
+ }
public/css/login.css ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body.login #shadow_popup {
2
+ opacity: 1;
3
+ display: flex;
4
+ }
5
+
6
+ body.login .logo {
7
+ max-width: 30px;
8
+ }
9
+
10
+ body.login #logoBlock {
11
+ align-items: center;
12
+ margin: 0 auto;
13
+ gap: 10px;
14
+ }
15
+
16
+ body.login .userSelect {
17
+ display: flex;
18
+ flex-direction: column;
19
+ color: var(--SmartThemeBodyColor);
20
+ border: 1px solid var(--SmartThemeBorderColor);
21
+ border-radius: 5px;
22
+ padding: 3px 5px;
23
+ width: 30%;
24
+ cursor: pointer;
25
+ margin: 5px 0;
26
+ transition: background-color 0.15s ease-in-out;
27
+ display: flex;
28
+ align-items: center;
29
+ justify-content: center;
30
+ text-align: center;
31
+ overflow: hidden;
32
+ }
33
+
34
+ body.login .userSelect .userName,
35
+ body.login .userSelect .userHandle {
36
+ width: 100%;
37
+ overflow: hidden;
38
+ text-overflow: ellipsis;
39
+ white-space: nowrap;
40
+ }
41
+
42
+ body.login .userSelect:hover {
43
+ background-color: var(--black30a);
44
+ }
public/css/logprobs.css ADDED
@@ -0,0 +1,135 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #logprobsViewer {
2
+ overflow-y: auto;
3
+ max-width: 90dvw;
4
+ max-height: 90dvh;
5
+ min-width: 100px;
6
+ min-height: 50px;
7
+ border-radius: 10px;
8
+ border: 1px solid var(--SmartThemeBorderColor);
9
+ position: fixed;
10
+ padding: 10px;
11
+ display: none;
12
+ flex-direction: column;
13
+ box-shadow: 0 0 10px var(--black70a);
14
+ z-index: 3000;
15
+ left: 0;
16
+ top: 0;
17
+ margin: 0;
18
+ right: unset;
19
+ width: calc(((100dvw - var(--sheldWidth)) / 2) - 1px);
20
+ }
21
+
22
+ .logprobs_panel_header {
23
+ display: flex;
24
+ justify-content: space-between;
25
+ align-items: center;
26
+ }
27
+
28
+ .logprobs_panel_title {
29
+ font-weight: bold;
30
+ }
31
+
32
+ .logprobs_panel_controls {
33
+ display: flex;
34
+ align-items: center;
35
+ }
36
+
37
+ .logprobs_panel_content {
38
+ overflow-y: auto;
39
+ }
40
+
41
+ .logprobs_panel_control_button {
42
+ width: 25px;
43
+ height: 25px;
44
+ margin-left: 5px;
45
+ opacity: 0.5;
46
+ transition: all 250ms;
47
+ position: unset !important;
48
+ }
49
+
50
+ .logprobs_panel_control_button:hover {
51
+ opacity: 1;
52
+ cursor: pointer;
53
+ }
54
+
55
+ #logprobs_generation_output {
56
+ user-select: none;
57
+ height: 100%;
58
+ overflow-y: auto;
59
+ }
60
+
61
+ .logprobs_empty_state {
62
+ display: flex;
63
+ justify-content: center;
64
+ align-items: center;
65
+ opacity: 0.5;
66
+ min-height: 100px;
67
+ text-align: center;
68
+ }
69
+
70
+ .logprobs_output_prefix {
71
+ opacity: 0.5;
72
+ }
73
+
74
+ .logprobs_candidate_list {
75
+ grid-row-start: 3;
76
+ grid-row-end: 4;
77
+ display: grid;
78
+ grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
79
+ gap: 2px;
80
+ padding: 2px;
81
+ border-top: 1px solid var(--SmartThemeBodyColor);
82
+ text-align: center;
83
+ }
84
+
85
+ .logprobs_top_candidate {
86
+ border: none;
87
+ background-color: transparent;
88
+ color: inherit;
89
+ font: inherit;
90
+ }
91
+
92
+ .logprobs_top_candidate:not([disabled]) {
93
+ cursor: pointer;
94
+ }
95
+
96
+ .logprobs_top_candidate.selected {
97
+ background-color: rgba(0, 255, 0, 0.2);
98
+ font-weight: bold;
99
+ }
100
+
101
+ .logprobs_top_candidate:not([disabled]):hover {
102
+ background-color: rgba(0, 0, 0, 0.3);
103
+ }
104
+
105
+ .logprobs_tint_0 {
106
+ background-color: rgba(255, 255, 0, 0.05);
107
+ }
108
+
109
+ .logprobs_tint_0:hover, .logprobs_tint_0.selected {
110
+ background-color: rgba(255, 255, 0, 0.4);
111
+ }
112
+
113
+ .logprobs_tint_1 {
114
+ background-color: rgba(255, 0, 255, 0.05);
115
+ }
116
+
117
+ .logprobs_tint_1:hover, .logprobs_tint_1.selected {
118
+ background-color: rgba(255, 0, 255, 0.4);
119
+ }
120
+
121
+ .logprobs_tint_2 {
122
+ background-color: rgba(0, 255, 255, 0.05);
123
+ }
124
+
125
+ .logprobs_tint_2:hover, .logprobs_tint_2.selected {
126
+ background-color: rgba(0, 255, 255, 0.4);
127
+ }
128
+
129
+ .logprobs_tint_3 {
130
+ background-color: rgba(50, 205, 50, 0.05);
131
+ }
132
+
133
+ .logprobs_tint_3:hover, .logprobs_tint_3.selected {
134
+ background-color: rgba(50, 205, 50, 0.4);
135
+ }
public/css/mobile-styles.css ADDED
@@ -0,0 +1,506 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*will apply to anything 1000px or less. this catches ipads, horizontal phones, and vertical phones)*/
2
+ @media screen and (max-width: 1000px) {
3
+
4
+ #send_form.compact #leftSendForm,
5
+ #send_form.compact #rightSendForm {
6
+ flex-wrap: nowrap;
7
+ width: unset;
8
+ }
9
+
10
+ #sheldWidthToggleBlock {
11
+ display: none;
12
+ }
13
+
14
+ .bg_button {
15
+ font-size: 15px;
16
+ }
17
+
18
+ .mes_text img {
19
+ width: 100%;
20
+ }
21
+
22
+ #extensions_settings,
23
+ #extensions_settings2 {
24
+ width: 100% !important;
25
+ min-width: 100% !important;
26
+ }
27
+
28
+ body:not(.waifuMode) .zoomed_avatar {
29
+ min-width: 100px;
30
+ min-height: 100px;
31
+ position: absolute;
32
+ padding: 0;
33
+ filter: drop-shadow(2px 2px 2px #51515199);
34
+ z-index: 30;
35
+ overflow: hidden;
36
+ right: 0;
37
+ width: fit-content;
38
+ max-height: calc(60vh - 60px);
39
+ max-height: calc(60dvh - 60px);
40
+ max-width: 90vw;
41
+ max-width: 90dvw;
42
+ left: 50%;
43
+ top: 50%;
44
+ transform: translateX(-50%) translateY(-50%);
45
+ align-items: center;
46
+ justify-content: center;
47
+ height: fit-content;
48
+ width: 100%;
49
+ }
50
+
51
+ .zoomed_avatar .dragClose {
52
+ display: unset;
53
+ }
54
+
55
+ /* .world_entry_thin_controls, */
56
+ #persona-management-block,
57
+ #character_popup .flex-container {
58
+ flex-direction: column;
59
+ }
60
+
61
+ #WIMultiSelector {
62
+ align-self: normal;
63
+ }
64
+
65
+ .WIEntryContentAndMemo {
66
+ flex-flow: column;
67
+ }
68
+
69
+ .WIEntryContentAndMemo .world_entry_thin_controls {
70
+ width: 100%;
71
+ }
72
+
73
+ .world_entry_form_control.world_entry_form_horizontal {
74
+ /* flex-direction: column; */
75
+ align-items: flex-start;
76
+ row-gap: 0.5rem;
77
+ }
78
+
79
+ .world_entry_form_control.world_entry_form_horizontal .world_popup_expander {
80
+ display: none;
81
+ }
82
+
83
+ .world_entry .inline-drawer-toggle {
84
+ padding-bottom: 5px;
85
+ }
86
+
87
+ #worldInfoScanningCheckboxes {
88
+ flex-flow: row;
89
+ flex-wrap: wrap;
90
+ }
91
+
92
+ body {
93
+ touch-action: none;
94
+ overflow: hidden;
95
+ position: fixed;
96
+
97
+ }
98
+
99
+ .world_entry_form_control {
100
+ /* width: 100%; */
101
+ }
102
+
103
+ .drawer-content {
104
+ min-width: unset;
105
+ width: 100%;
106
+ max-height: calc(100vh - 45px);
107
+ max-height: calc(100dvh - 45px);
108
+ position: fixed;
109
+ left: 0;
110
+ top: 5px;
111
+ border: 1px solid var(--SmartThemeBorderColor);
112
+ }
113
+
114
+ .drawer-content .floating_panel_maximize,
115
+ .drawer-content .inline-drawer-maximize {
116
+ display: none;
117
+ }
118
+
119
+ #select_chat_popup {
120
+ align-items: start;
121
+ height: min-content;
122
+ align-content: start;
123
+ max-width: unset;
124
+ }
125
+
126
+ #wiActivationSettings,
127
+ #wiTopBlock {
128
+ flex-direction: column;
129
+ }
130
+
131
+ #top-settings-holder,
132
+ #top-bar {
133
+ position: fixed;
134
+ width: 100vw;
135
+ width: 100dvw;
136
+ }
137
+
138
+ #bg1,
139
+ #bg_custom {
140
+ height: 100vh !important;
141
+ height: 100dvh !important;
142
+ width: 100vw !important;
143
+ width: 100dvw !important;
144
+ background-position: center;
145
+
146
+ }
147
+
148
+
149
+ #sheld,
150
+ #character_popup,
151
+ .drawer-content {
152
+ width: 100% !important;
153
+ margin: 0 auto;
154
+ max-width: 100%;
155
+ left: 0 !important;
156
+ resize: none !important;
157
+ top: var(--topBarBlockSize);
158
+ }
159
+
160
+ .wi-settings {
161
+ flex-direction: column;
162
+ gap: 5px !important;
163
+ }
164
+
165
+ .WIEntryTitleAndStatus,
166
+ .WIEntryHeaderControls {
167
+ width: 100%;
168
+ }
169
+
170
+ #WIEntryHeaderTitlesPC {
171
+ display: none;
172
+ }
173
+
174
+ .WIEntryHeaderTitleMobile {
175
+ display: block !important;
176
+ }
177
+
178
+ #character_popup,
179
+ #world_popup {
180
+ overflow-y: auto;
181
+ }
182
+
183
+ #character_popup,
184
+ #send_form {
185
+ border: 1px solid var(--SmartThemeBorderColor);
186
+ backdrop-filter: blur(calc(var(--SmartThemeBlurStrength) * 2));
187
+ max-width: 100dvw;
188
+ }
189
+
190
+ #chat {
191
+ border-left: 1px solid var(--SmartThemeBorderColor);
192
+ border-right: 1px solid var(--SmartThemeBorderColor);
193
+ border-bottom: 1px solid var(--SmartThemeBorderColor);
194
+ align-items: start;
195
+ align-content: start;
196
+ overflow-y: auto;
197
+ overflow-x: hidden
198
+ }
199
+
200
+ .mes_buttons {
201
+ font-size: calc(var(--mainFontSize)*1.2);
202
+ }
203
+
204
+ .drag-grabber,
205
+ .pull-tab {
206
+ display: none !important;
207
+
208
+ }
209
+
210
+ #showRawPrompt,
211
+ #copyPromptToClipboard,
212
+ #groupCurrentMemberPopoutButton,
213
+ #summaryExtensionPopoutButton {
214
+ display: none;
215
+ }
216
+
217
+ #right-nav-panel,
218
+ #left-nav-panel,
219
+ #floatingPrompt,
220
+ #cfgConfig,
221
+ #logprobsViewer,
222
+ #movingDivs>div {
223
+ /* 100vh are fallback units for browsers that don't support dvh */
224
+ height: calc(100vh - 45px);
225
+ height: calc(100dvh - 45px);
226
+ min-width: 100% !important;
227
+ width: 100% !important;
228
+ max-width: 100% !important;
229
+ overflow-y: hidden;
230
+ border-left: 1px solid var(--SmartThemeBorderColor);
231
+ border-right: 1px solid var(--SmartThemeBorderColor);
232
+ border-bottom: 1px solid var(--SmartThemeBorderColor);
233
+ border-radius: 0 0 20px 20px;
234
+ top: var(--topBarBlockSize) !important;
235
+ left: 0 !important;
236
+ backdrop-filter: blur(calc(var(--SmartThemeBlurStrength) * 2));
237
+ }
238
+
239
+ /*
240
+ #right-nav-panel {
241
+ padding-right: 15px;
242
+ }
243
+ */
244
+
245
+ #floatingPrompt,
246
+ #cfgConfig,
247
+ #logprobsViewer,
248
+ #movingDivs>div {
249
+ height: min-content;
250
+ }
251
+
252
+ #right-nav-panel h4 {
253
+ margin: 5px auto;
254
+ }
255
+
256
+ #result_info {
257
+ font-size: calc(var(--mainFontSize) - .1rem);
258
+ }
259
+
260
+ /* .avatar_div {
261
+ margin-top: 5px;
262
+ } */
263
+
264
+ #character_popup {
265
+ width: 100%;
266
+ border-radius: 0 0 20px 20px;
267
+ margin-top: 0px;
268
+ height: calc(100% - var(--topBarBlockSize));
269
+ }
270
+
271
+ .drawer25pWidth {
272
+ flex-basis: max(calc(100% / 4 - 10px), 190px);
273
+ }
274
+
275
+ .drawer33pWidth {
276
+ flex-basis: max(calc(100% / 3 - 10px), 190px);
277
+ }
278
+
279
+ .expression-holder {
280
+ display: none;
281
+ }
282
+
283
+ body.waifuMode #sheld {
284
+ height: 40vh;
285
+ height: 40dvh;
286
+ top: 60vh;
287
+ top: 60dvh;
288
+ bottom: 0 !important;
289
+ }
290
+
291
+ body:not(.waifuMode) #expression-wrapper {
292
+ visibility: hidden;
293
+ }
294
+
295
+ #visual-novel-wrapper {
296
+ position: unset !important;
297
+ }
298
+
299
+ body.waifuMode .expression-holder {
300
+ /*display: inline;*/
301
+
302
+ max-width: 100vw;
303
+ height: 100vh;
304
+ width: max-content;
305
+ margin: 0 auto;
306
+ position: absolute;
307
+ left: 0;
308
+ right: 0;
309
+ filter: drop-shadow(2px 2px 2px #51515199);
310
+ z-index: 1 !important;
311
+ }
312
+
313
+ body.waifuMode img.expression {
314
+ object-fit: cover;
315
+ }
316
+
317
+ body.waifuMode .zoomed_avatar_container {
318
+ height: 100%;
319
+ }
320
+
321
+ body.waifuMode .zoomed_avatar {
322
+ width: fit-content;
323
+ max-height: calc(60vh - 60px);
324
+ max-height: calc(60dvh - 60px);
325
+ max-width: 90vw;
326
+ max-width: 90dvw;
327
+ }
328
+
329
+ .scrollableInner {
330
+ overflow-y: auto;
331
+ overflow-x: hidden;
332
+ max-height: calc(100vh - 90px);
333
+ max-height: calc(100dvh - 90px);
334
+ }
335
+
336
+ .horde_multiple_hint {
337
+ display: none;
338
+ }
339
+
340
+ .bg_list {
341
+ width: unset;
342
+ }
343
+ }
344
+
345
+ @media screen and (min-width: 1001px) {
346
+
347
+ #PygOverrides,
348
+ #ContextFormatting,
349
+ #UI-Theme-Block,
350
+ #UI-Customization,
351
+ #power-user-options-block {
352
+ flex: 1;
353
+ }
354
+ }
355
+
356
+ /*landscape mode phones and ipads*/
357
+ @media screen and (max-width: 1000px) and (orientation: landscape) {
358
+ body.waifuMode img.expression {
359
+ object-fit: contain;
360
+ }
361
+
362
+ .tag.excluded:after {
363
+ top: unset;
364
+ bottom: unset;
365
+ }
366
+
367
+ body:not(.waifuMode) .zoomed_avatar {
368
+ max-height: calc(60vh - 60px);
369
+ max-height: calc(60dvh - 60px);
370
+ max-width: 90vw;
371
+ max-width: 90dvw;
372
+ left: 50%;
373
+ top: 50%;
374
+ transform: translateX(-50%) translateY(-50%);
375
+ align-items: center;
376
+ justify-content: center;
377
+ height: fit-content;
378
+ width: 100%;
379
+ }
380
+ }
381
+
382
+ /*portrait mode phones*/
383
+ @media screen and (max-width: 450px) {
384
+
385
+ body:not(.waifuMode) .zoomed_avatar {
386
+ min-width: 100px;
387
+ min-height: 100px;
388
+ max-height: 50vh;
389
+ max-width: 90vw;
390
+ position: absolute;
391
+ padding: 0;
392
+ filter: drop-shadow(2px 2px 2px #51515199);
393
+ z-index: 30;
394
+ overflow: hidden;
395
+ display: none;
396
+ right: 0;
397
+ left: 50%;
398
+ top: 50%;
399
+ transform: translateX(-50%) translateY(-50%);
400
+ align-items: center;
401
+ justify-content: center;
402
+ height: fit-content;
403
+ width: 100%;
404
+ }
405
+
406
+ .drawer25pWidth {
407
+ flex-basis: max(calc(100% / 2 - 10px), 180px);
408
+ }
409
+
410
+ .drawer33pWidth {
411
+ flex-basis: max(calc(100% / 2 - 10px), 180px);
412
+ }
413
+
414
+ .BGSampleTitle {
415
+ display: none;
416
+ }
417
+
418
+ .tag.excluded:after {
419
+ top: unset;
420
+ bottom: unset;
421
+ }
422
+
423
+
424
+ #leftSendForm,
425
+ #rightSendForm {
426
+ width: 1.15em;
427
+ flex-wrap: wrap;
428
+ height: unset;
429
+ }
430
+ }
431
+
432
+ /*iOS specific*/
433
+ @supports (-webkit-touch-callout: none) {
434
+ body {
435
+ margin: 0 auto;
436
+ }
437
+
438
+ #top-bar {
439
+ width: 100vw;
440
+ }
441
+
442
+ #sheld {
443
+ margin: unset;
444
+ padding: unset;
445
+ width: unset;
446
+ height: unset;
447
+ min-width: unset;
448
+ max-width: unset;
449
+ min-height: unset;
450
+ max-height: unset;
451
+ width: 100vw;
452
+ width: 100dvw;
453
+ height: calc(100vh - 36px);
454
+ height: calc(100dvh - 36px);
455
+ padding-right: max(env(safe-area-inset-right), 0px);
456
+ padding-left: max(env(safe-area-inset-left), 0px);
457
+ padding-bottom: 0;
458
+ }
459
+
460
+ body.PWA #sheld {
461
+ padding-right: max(env(safe-area-inset-right), 2px);
462
+ padding-left: max(env(safe-area-inset-left), 2px);
463
+ padding-bottom: max(env(safe-area-inset-bottom), 15px);
464
+
465
+ }
466
+
467
+ #character_popup,
468
+ #world_popup,
469
+ #left-nav-panel,
470
+ #right-nav-panel,
471
+ .drawer-content {
472
+ width: unset;
473
+ height: unset;
474
+ min-width: unset;
475
+ max-width: unset;
476
+ min-height: unset;
477
+ max-height: unset;
478
+ backdrop-filter: blur(calc(var(--SmartThemeBlurStrength) * 2));
479
+ left: 0;
480
+ right: 0;
481
+ top: 0;
482
+ margin: 0 auto;
483
+ height: calc(100vh - 70px);
484
+ height: calc(100dvh - 70px);
485
+ width: calc(100% - 5px);
486
+ max-height: calc(100vh - 70px);
487
+ max-height: calc(100dvh - 70px);
488
+ max-width: calc(100% - 5px);
489
+
490
+ }
491
+
492
+ #character_popup,
493
+ #world_popup,
494
+ .drawer-content {
495
+ margin-top: 36px;
496
+ }
497
+
498
+ .scrollableInner {
499
+ overflow-y: auto;
500
+ overflow-x: hidden;
501
+ }
502
+
503
+ #horde_model {
504
+ height: unset;
505
+ }
506
+ }
public/css/popup-safari-fix.css ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* iPhone copium land */
2
+ body.safari .popup .popup-body:has(.maximized_textarea),
3
+ body.safari .popup.large_dialogue_popup .popup-body {
4
+ height: 100%;
5
+ }
6
+
7
+ body.safari .popup .popup-body {
8
+ height: fit-content;
9
+ max-height: 90vh;
10
+ max-height: 90dvh;
11
+ }
public/css/popup.css ADDED
@@ -0,0 +1,184 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import url('./popup-safari-fix.css');
2
+
3
+ dialog {
4
+ color: var(--SmartThemeBodyColor);
5
+ }
6
+
7
+ /* Closed state of the dialog */
8
+ .popup {
9
+ width: 500px;
10
+ text-align: center;
11
+ box-shadow: 0px 0px 14px var(--black70a);
12
+ border: 1px solid var(--SmartThemeBorderColor);
13
+ padding: 4px 14px;
14
+ background-color: var(--SmartThemeBlurTintColor);
15
+ border-radius: 10px;
16
+ display: flex;
17
+ flex-direction: column;
18
+
19
+ max-height: calc(100dvh - 2em);
20
+ max-width: calc(100dvw - 2em);
21
+ min-height: fit-content;
22
+
23
+ /* Overflow visible so elements (like toasts) can appear outside of the dialog. '.popup-body' is hiding overflow for the real content. */
24
+ overflow: visible;
25
+
26
+ /* Fix weird animation issue with font-scaling during popup open */
27
+ backface-visibility: hidden;
28
+ transform: translateZ(0);
29
+ -webkit-font-smoothing: subpixel-antialiased;
30
+
31
+ /* Variables setup */
32
+ --popup-animation-speed: var(--animation-duration-slow);
33
+ }
34
+
35
+ /** Popup styles applied to the main popup */
36
+ .popup--animation-fast { --popup-animation-speed: var(--animation-duration); }
37
+ .popup--animation-slow { --popup-animation-speed: var(--animation-duration-slow); }
38
+ .popup--animation-none { --popup-animation-speed: 0ms; }
39
+
40
+ /* Styling of main popup elements */
41
+ .popup .popup-body {
42
+ display: flex;
43
+ flex-direction: column;
44
+ overflow: hidden;
45
+ width: 100%;
46
+ height: 100%;
47
+ padding: 1px;
48
+ }
49
+
50
+ .popup .popup-content {
51
+ margin-top: 10px;
52
+ padding: 0 8px;
53
+ overflow: hidden;
54
+ flex-grow: 1;
55
+ }
56
+
57
+ .popup .popup-content h3:first-child {
58
+ /* No double spacing for the first heading needed, the .popup-content already has margin */
59
+ margin-top: 0px;
60
+ }
61
+
62
+ .popup.vertical_scrolling_dialogue_popup .popup-content {
63
+ overflow-y: auto;
64
+ }
65
+
66
+ .popup.horizontal_scrolling_dialogue_popup .popup-content {
67
+ overflow-x: auto;
68
+ }
69
+
70
+ /* Opening animation */
71
+ .popup[opening] {
72
+ animation: pop-in var(--popup-animation-speed) ease-in-out;
73
+ }
74
+
75
+ .popup[opening]::backdrop {
76
+ animation: fade-in var(--popup-animation-speed) ease-in-out;
77
+ }
78
+
79
+ /* Open state of the dialog */
80
+ .popup[open] {
81
+ color: var(--SmartThemeBodyColor);
82
+ }
83
+
84
+ .popup[open]::backdrop {
85
+ backdrop-filter: blur(calc(var(--SmartThemeBlurStrength) * 2));
86
+ -webkit-backdrop-filter: blur(calc(var(--SmartThemeBlurStrength) * 2));
87
+ background-color: var(--black30a);
88
+ }
89
+
90
+ body.no-blur .popup[open]::backdrop {
91
+ backdrop-filter: none;
92
+ -webkit-backdrop-filter: none;
93
+ }
94
+
95
+ /* Closing animation */
96
+ .popup[closing] {
97
+ animation: pop-out var(--popup-animation-speed) ease-in-out;
98
+ }
99
+
100
+ .popup[closing]::backdrop {
101
+ animation: fade-out var(--popup-animation-speed) ease-in-out;
102
+ }
103
+
104
+ .popup #toast-container {
105
+ /* Fix toastr in dialogs by actually placing it at the top of the screen via transform */
106
+ height: 100dvh;
107
+ top: calc(50% + var(--topBarBlockSize));
108
+ left: 50%;
109
+ transform: translate(-50%, -50%);
110
+
111
+ /* Fix text align, popups are centered by default. toasts should not. */
112
+ text-align: left;
113
+ }
114
+
115
+ .popup-crop-wrap {
116
+ margin: 10px auto;
117
+ max-height: 75vh;
118
+ max-height: 75dvh;
119
+ max-width: 100%;
120
+ }
121
+
122
+ .popup-crop-wrap img {
123
+ max-width: 100%;
124
+ /* This rule is very important, please do not ignore this! */
125
+ }
126
+
127
+ .popup-inputs {
128
+ margin-top: 10px;
129
+ font-size: smaller;
130
+ opacity: 0.7;
131
+ }
132
+
133
+ .popup-input {
134
+ margin-top: 10px;
135
+ }
136
+
137
+ .popup-controls {
138
+ margin-top: 10px;
139
+ display: flex;
140
+ align-self: center;
141
+ gap: 20px;
142
+ }
143
+
144
+ .menu_button.menu_button_default {
145
+ box-shadow: 0 0 5px var(--white20a);
146
+ }
147
+
148
+ .menu_button.popup-button-ok {
149
+ background-color: var(--crimson70a);
150
+ }
151
+
152
+ .menu_button.popup-button-ok:hover {
153
+ background-color: var(--crimson-hover);
154
+ }
155
+
156
+ .popup-controls .menu_button {
157
+ /* Popup buttons should not scale to smallest size, otherwise they will always break to multiline if multiple words */
158
+ width: unset;
159
+
160
+ /* Fix weird animation issue with fonts on brightness filter */
161
+ backface-visibility: hidden;
162
+ transform: translateZ(0);
163
+ -webkit-font-smoothing: subpixel-antialiased;
164
+ }
165
+
166
+ .popup-controls .menu_button:hover:focus-visible {
167
+ filter: brightness(1.3) saturate(1.3);
168
+ }
169
+
170
+ .popup .popup-button-close {
171
+ position: absolute;
172
+ top: -6px;
173
+ right: -6px;
174
+ width: 24px;
175
+ height: 24px;
176
+ font-size: 20px;
177
+ padding: 2px 3px 3px 2px;
178
+
179
+ filter: brightness(0.8);
180
+
181
+ /* Fix weird animation issue with font-scaling during popup open */
182
+ backface-visibility: hidden;
183
+ }
184
+
public/css/promptmanager.css ADDED
@@ -0,0 +1,318 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #completion_prompt_manager .caution {
2
+ color: var(--fullred);
3
+ }
4
+
5
+ #completion_prompt_manager #completion_prompt_manager_list {
6
+ display: flex;
7
+ flex-direction: column;
8
+ min-height: 300px;
9
+ }
10
+
11
+ #completion_prompt_manager .completion_prompt_manager_list_separator hr {
12
+ grid-column-start: 1;
13
+ grid-column-end: 4;
14
+ width: 100%;
15
+ margin: 0.5em 0;
16
+ background-image: linear-gradient(90deg, var(--transparent), var(--SmartThemeBorderColor), var(--transparent));
17
+ min-height: 1px;
18
+ }
19
+
20
+ #completion_prompt_manager #completion_prompt_manager_list li {
21
+ display: grid;
22
+ grid-template-columns: 4fr 80px 45px;
23
+ margin-bottom: 0.5em;
24
+ width: 100%
25
+ }
26
+
27
+ #completion_prompt_manager #completion_prompt_manager_list .completion_prompt_manager_prompt .completion_prompt_manager_prompt_name .fa-solid {
28
+ color: var(--white50a);
29
+ }
30
+
31
+ #completion_prompt_manager #completion_prompt_manager_list .completion_prompt_manager_prompt_invisible {
32
+ display: none;
33
+ }
34
+
35
+ #completion_prompt_manager #completion_prompt_manager_list .completion_prompt_manager_prompt_visible {
36
+ display: grid;
37
+ }
38
+
39
+
40
+ #completion_prompt_manager #completion_prompt_manager_list li.completion_prompt_manager_list_head .prompt_manager_prompt_tokens,
41
+ #completion_prompt_manager #completion_prompt_manager_list li.completion_prompt_manager_prompt .prompt_manager_prompt_tokens {
42
+ font-size: calc(var(--mainFontSize)*0.9);
43
+ text-align: right;
44
+ }
45
+
46
+ #completion_prompt_manager #completion_prompt_manager_list .completion_prompt_manager_prompt .prompt_manager_prompt_controls {
47
+ text-align: right;
48
+ }
49
+
50
+ #completion_prompt_manager .completion_prompt_manager_list_head {
51
+ padding: 0.5em 0.5em 0;
52
+ }
53
+
54
+ #completion_prompt_manager #completion_prompt_manager_list li.completion_prompt_manager_prompt {
55
+ align-items: center;
56
+ padding: 0.5em;
57
+ border: 1px solid var(--SmartThemeBorderColor);
58
+ }
59
+
60
+ #completion_prompt_manager #completion_prompt_manager_list li.completion_prompt_manager_prompt .prompt_manager_prompt_controls {
61
+ display: flex;
62
+ justify-content: space-between;
63
+ font-size: calc(var(--mainFontSize)*1.2);
64
+ }
65
+
66
+ #completion_prompt_manager #completion_prompt_manager_list li.completion_prompt_manager_prompt .prompt_manager_prompt_controls span {
67
+ display: flex;
68
+ height: 18px;
69
+ width: 18px;
70
+ }
71
+
72
+ #completion_prompt_manager #completion_prompt_manager_list li.completion_prompt_manager_prompt span span span {
73
+ flex-direction: column;
74
+ justify-content: center;
75
+ margin-left: 0.25em;
76
+ cursor: pointer;
77
+ transition: 0.3s ease-in-out;
78
+ height: 20px;
79
+ width: 20px;
80
+ filter: drop-shadow(0px 0px 2px black);
81
+ opacity: 0.4;
82
+ }
83
+
84
+ #completion_prompt_manager #completion_prompt_manager_list li.completion_prompt_manager_prompt span span:hover {
85
+ opacity: 1;
86
+ }
87
+
88
+ #completion_prompt_manager_popup #completion_prompt_manager_popup_edit,
89
+ #completion_prompt_manager_popup #completion_prompt_manager_popup_chathistory_edit,
90
+ #completion_prompt_manager_popup #completion_prompt_manager_popup_dialogueexamples_edit,
91
+ #completion_prompt_manager_popup #completion_prompt_manager_popup_inspect {
92
+ display: none;
93
+ padding: 0.5em;
94
+ }
95
+
96
+ #completion_prompt_manager_popup .completion_prompt_manager_popup_entry {
97
+ padding: 1em;
98
+ margin-top: 2em;
99
+ }
100
+
101
+ #completion_prompt_manager_popup #completion_prompt_manager_popup_inspect .completion_prompt_manager_popup_entry {
102
+ padding: 1em;
103
+ }
104
+
105
+ #completion_prompt_manager_popup #completion_prompt_manager_popup_entry_form_inspect_list {
106
+ margin-top: 1em;
107
+ }
108
+
109
+ #completion_prompt_manager_popup .completion_prompt_manager_prompt {
110
+ margin: 1em 0;
111
+ padding: 0.5em;
112
+ border: 1px solid var(--SmartThemeBorderColor);
113
+ }
114
+
115
+ #completion_prompt_manager_popup .completion_prompt_manager_popup_header {
116
+ display: flex;
117
+ justify-content: space-between;
118
+ align-items: center;
119
+ }
120
+
121
+ #completion_prompt_manager_popup #completion_prompt_manager_popup_close_button {
122
+ font-size: 1em;
123
+ padding: 0.5em;
124
+ }
125
+
126
+ .completion_prompt_manager_popup_entry_form_control {
127
+ margin-top: 1em;
128
+ }
129
+
130
+ #prompt-manager-reset-character,
131
+ #completion_prompt_manager_popup .completion_prompt_manager_popup_entry_form_footer #completion_prompt_manager_popup_entry_form_reset {
132
+ color: rgb(220 173 16);
133
+ }
134
+
135
+ #completion_prompt_manager_popup .completion_prompt_manager_popup_entry_form_footer #completion_prompt_manager_popup_entry_form_close,
136
+ #completion_prompt_manager_popup .completion_prompt_manager_popup_entry_form_footer #completion_prompt_manager_popup_entry_form_reset,
137
+ #completion_prompt_manager_popup .completion_prompt_manager_popup_entry_form_footer #completion_prompt_manager_popup_entry_form_save {
138
+ font-size: 1.25em;
139
+ padding: 0.5em;
140
+ }
141
+
142
+ #completion_prompt_manager_popup .completion_prompt_manager_popup_entry_form_control #completion_prompt_manager_popup_entry_form_prompt {
143
+ min-height: 200px;
144
+ }
145
+
146
+ #completion_prompt_manager_popup .completion_prompt_manager_popup_entry .completion_prompt_manager_popup_entry_form_footer {
147
+ display: flex;
148
+ justify-content: space-between;
149
+ margin-top: 1em;
150
+ }
151
+
152
+ #completion_prompt_manager #completion_prompt_manager_list .completion_prompt_manager_prompt_draggable {
153
+ cursor: grab;
154
+ }
155
+
156
+ #completion_prompt_manager #completion_prompt_manager_list .completion_prompt_manager_prompt_name {
157
+ white-space: nowrap;
158
+ overflow: hidden;
159
+ }
160
+
161
+ #completion_prompt_manager #completion_prompt_manager_list .completion_prompt_manager_prompt_name .prompt-manager-inspect-action {
162
+ color: var(--SmartThemeBodyColor);
163
+ cursor: pointer;
164
+ }
165
+
166
+ #completion_prompt_manager #completion_prompt_manager_list .completion_prompt_manager_prompt_name .prompt-manager-inspect-action:hover {
167
+ text-decoration: underline;
168
+ }
169
+
170
+ #completion_prompt_manager #completion_prompt_manager_list .completion_prompt_manager_prompt_disabled .completion_prompt_manager_prompt_name,
171
+ #completion_prompt_manager #completion_prompt_manager_list .completion_prompt_manager_prompt_disabled .completion_prompt_manager_prompt_name .prompt-manager-inspect-action {
172
+ color: var(--white30a);
173
+ }
174
+
175
+ #completion_prompt_manager #completion_prompt_manager_list .completion_prompt_manager_prompt:not(.completion_prompt_manager_prompt_disabled) .prompt-manager-toggle-action {
176
+ color: var(--SmartThemeQuoteColor);
177
+ }
178
+
179
+ #completion_prompt_manager #completion_prompt_manager_list .completion_prompt_manager_prompt.completion_prompt_manager_prompt_disabled {
180
+ border: 1px solid var(--white20a);
181
+ }
182
+
183
+ #completion_prompt_manager #completion_prompt_manager_list li.completion_prompt_manager_prompt .mes_edit {
184
+ margin-left: 0.5em;
185
+ }
186
+
187
+ #completion_prompt_manager .completion_prompt_manager_error {
188
+ padding: 1em;
189
+ border: 3px solid var(--fullred);
190
+ margin-top: 1em;
191
+ margin-bottom: 0.5em;
192
+ }
193
+
194
+ #completion_prompt_manager .completion_prompt_manager_header {
195
+ display: flex;
196
+ flex-direction: row;
197
+ justify-content: space-between;
198
+ color: var(--white50a);
199
+ margin-top: 0.5em;
200
+ padding: 0 0.25em;
201
+ width: 100%
202
+ }
203
+
204
+ #completion_prompt_manager .completion_prompt_manager_header div {
205
+ margin-top: 0.5em;
206
+ width: fit-content;
207
+ }
208
+
209
+ #completion_prompt_manager .completion_prompt_manager_header_advanced {
210
+ display: flex;
211
+ margin-right: 0.25em;
212
+ }
213
+
214
+ #completion_prompt_manager .completion_prompt_manager_header_advanced span {
215
+ flex-direction: column;
216
+ justify-content: center;
217
+ margin-left: 0.25em;
218
+ transition: 0.3s ease-in-out;
219
+ filter: drop-shadow(0px 0px 2px black);
220
+ }
221
+
222
+ #completion_prompt_manager .completion_prompt_manager_header_advanced span.fa-solid {
223
+ display: inherit;
224
+ }
225
+
226
+ #completion_prompt_manager .completion_prompt_manager_footer {
227
+ display: flex;
228
+ flex-direction: row;
229
+ justify-content: flex-end;
230
+ gap: 0.25em;
231
+ padding: 0 0.25em;
232
+ width: 100%
233
+ }
234
+
235
+ #completion_prompt_manager .completion_prompt_manager_footer a {
236
+ font-size: 12px;
237
+ }
238
+
239
+ #completion_prompt_manager .completion_prompt_manager_important a {
240
+ font-weight: 600;
241
+ }
242
+
243
+ #completion_prompt_manager #completion_prompt_manager_list .completion_prompt_manager_prompt .completion_prompt_manager_prompt_name .fa-solid.prompt-manager-overridden {
244
+ margin-left: 5px;
245
+ color: var(--SmartThemeQuoteColor);
246
+ cursor: pointer;
247
+ opacity: 0.8;
248
+ }
249
+
250
+ #completion_prompt_manager_footer_append_prompt {
251
+ font-size: 16px;
252
+ }
253
+
254
+ #prompt-manager-export-format-popup {
255
+ padding: 0.25em;
256
+ display: none;
257
+ }
258
+
259
+ #prompt-manager-export-format-popup[data-show] {
260
+ display: block;
261
+ }
262
+
263
+ #completion_prompt_manager_popup {
264
+ margin-top: 0;
265
+ }
266
+
267
+ #completion_prompt_manager_popup {
268
+ overflow-y: auto;
269
+ height: calc(100% - var(--topBarBlockSize));
270
+ position: absolute;
271
+ margin-left: auto;
272
+ margin-right: auto;
273
+ left: 0;
274
+ right: 0;
275
+ top: var(--topBarBlockSize);
276
+ box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
277
+ padding: 1em;
278
+ border: 1px solid var(--SmartThemeBorderColor);
279
+ flex-direction: column;
280
+ z-index: 3010 !important;
281
+ border-radius: 0 0 20px 20px;
282
+ background-color: var(--SmartThemeBlurTintColor);
283
+ }
284
+
285
+ #prompt-manager-export-format-popup {
286
+ display: none;
287
+ }
288
+
289
+ .prompt-manager-export-format-popup-flex {
290
+ display: flex;
291
+ flex-direction: column;
292
+ }
293
+
294
+ .prompt-manager-export-format-popup-flex .row {
295
+ display: flex;
296
+ justify-content: space-between;
297
+ }
298
+
299
+ .prompt-manager-export-format-popup-flex a,
300
+ .prompt-manager-export-format-popup-flex span {
301
+ display: flex;
302
+ margin: auto 0;
303
+ justify-content: space-between;
304
+ }
305
+
306
+ #prompt-manager-export-format-popup span {
307
+ font-size: 16px;
308
+ }
309
+
310
+ @media screen and (max-width: 412px) {
311
+ #completion_prompt_manager_popup {
312
+ max-width: 100%;
313
+ }
314
+
315
+ #completion_prompt_manager #completion_prompt_manager_list li.completion_prompt_manager_prompt span span span {
316
+ margin-left: 0.5em;
317
+ }
318
+ }
public/css/rm-groups.css ADDED
@@ -0,0 +1,236 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* GROUP CHATS */
2
+
3
+ .group_pagination {
4
+ display: flex;
5
+ justify-content: center;
6
+ align-items: center;
7
+ }
8
+
9
+ #rm_group_chats_block .tag.filterByGroups {
10
+ display: none;
11
+ }
12
+
13
+ #rm_button_group_chats h2 {
14
+ margin-top: auto;
15
+ margin-bottom: auto;
16
+ color: rgb(188, 193, 200, 1);
17
+ border: 1px solid var(--SmartThemeBorderColor);
18
+ ;
19
+ background-color: rgba(0, 0, 0, 0.3);
20
+ padding: 6px;
21
+ border-radius: 10px;
22
+ }
23
+
24
+ #rm_group_chats_block {
25
+ display: none;
26
+ align-items: flex-start;
27
+ padding: 0 5px;
28
+ overflow-y: auto;
29
+ }
30
+
31
+ #rm_group_chats_block h3,
32
+ #rm_group_chats_block h5 {
33
+ margin-top: 5px;
34
+ margin-bottom: 5px;
35
+ }
36
+
37
+ #rm_group_buttons>div {
38
+ display: flex;
39
+ flex-direction: column;
40
+ }
41
+
42
+ #rm_group_buttons .checkbox {
43
+ display: flex;
44
+ }
45
+
46
+ #rm_group_buttons .checkbox h4 {
47
+ display: inline-block;
48
+ }
49
+
50
+ #rm_group_buttons>input {
51
+
52
+ cursor: pointer;
53
+ user-select: none;
54
+ }
55
+
56
+ #rm_group_buttons>input:disabled {
57
+ filter: brightness(0.3);
58
+ cursor: unset;
59
+ }
60
+
61
+ #rm_group_buttons textarea {
62
+ margin: 0px;
63
+ min-width: 200px;
64
+ }
65
+
66
+ #rm_group_members,
67
+ #rm_group_add_members {
68
+ margin-top: 0.25rem;
69
+ margin-bottom: 0.5rem;
70
+ border: 1px solid var(--SmartThemeBorderColor);
71
+ border-radius: 10px;
72
+ background-color: var(--black30a);
73
+ padding: 2px;
74
+ }
75
+
76
+ #rm_group_buttons_expander {
77
+ flex-grow: 1;
78
+ }
79
+
80
+ #rm_group_delete {
81
+ color: rgb(190, 0, 0);
82
+ }
83
+
84
+ #rm_group_members:empty {
85
+ width: 100%;
86
+ padding: 0.5em 0;
87
+ }
88
+
89
+ #rm_group_members:empty::before {
90
+ content: 'Group is empty';
91
+
92
+ font-weight: bolder;
93
+ width: 100%;
94
+ height: 100%;
95
+ display: flex;
96
+ justify-content: center;
97
+ align-items: center;
98
+ opacity: 0.8;
99
+ }
100
+
101
+ #rm_group_add_members:empty {
102
+ width: 100%;
103
+ }
104
+
105
+ #rm_group_add_members_header {
106
+ display: flex;
107
+ flex-direction: row;
108
+ width: 100%;
109
+ column-gap: 10px;
110
+ }
111
+
112
+ #rm_group_add_members_header input {
113
+ flex: 1;
114
+ width: 100%;
115
+ }
116
+
117
+ #rm_group_add_members:empty::before {
118
+ content: 'No characters available';
119
+
120
+ font-weight: bolder;
121
+ width: 100%;
122
+ height: 100%;
123
+ display: flex;
124
+ justify-content: center;
125
+ align-items: center;
126
+ opacity: 0.8;
127
+ }
128
+
129
+ .group_member_icon {
130
+ display: flex;
131
+ column-gap: 10px;
132
+ align-items: center;
133
+ justify-content: end;
134
+ flex-grow: 1;
135
+ }
136
+
137
+ .group_member {
138
+ display: flex;
139
+ flex-direction: row;
140
+ align-items: center;
141
+ width: 100%;
142
+ padding: 5px;
143
+ border-radius: 10px;
144
+ }
145
+
146
+ .group_member .group_member_name {
147
+ flex-grow: 1;
148
+ margin-left: 10px;
149
+ overflow: hidden;
150
+ text-overflow: ellipsis;
151
+ width: calc(100% - 110px);
152
+ display: flex;
153
+ gap: 5px;
154
+ height: 100%;
155
+ flex-direction: column;
156
+ justify-content: center;
157
+ }
158
+
159
+ .group_member_icon .flex-container {
160
+ gap: 0px;
161
+ }
162
+
163
+ #rm_group_members .right_menu_button,
164
+ #rm_group_add_members .right_menu_button {
165
+ padding: 0px;
166
+ height: 20px;
167
+ display: flex;
168
+ align-items: center;
169
+ }
170
+
171
+ #rm_group_members .right_menu_button[data-action="speak"],
172
+ #rm_group_members .group_member:not(.disabled) .right_menu_button[data-action="disable"] {
173
+ opacity: 0.4;
174
+ filter: brightness(0.5);
175
+ transition: all 0.2s ease-in-out;
176
+ }
177
+
178
+ /* #rm_group_members .right_menu_button[data-action="speak"]:hover, */
179
+ #rm_group_members .group_member:not(.disabled) .right_menu_button[data-action="disable"]:hover {
180
+ opacity: inherit;
181
+ filter: drop-shadow(0px 0px 5px rgb(243, 166, 65));
182
+ }
183
+
184
+ #rm_group_members .group_member.disabled .right_menu_button[data-action="enable"] {
185
+ filter: drop-shadow(0px 0px 5px rgb(243, 166, 65));
186
+ }
187
+
188
+
189
+ #rm_group_members .right_menu_button[data-action="speak"]:hover {
190
+ opacity: inherit;
191
+ filter: drop-shadow(0px 0px 5px rgb(153, 255, 153));
192
+ }
193
+
194
+ /* Rules for icon display */
195
+ #rm_group_add_members .right_menu_button:not([data-action="add"], [data-action="view"]),
196
+ #rm_group_members .right_menu_button[data-action="add"],
197
+ #rm_group_members .group_member.disabled .right_menu_button[data-action="disable"],
198
+ #rm_group_members .group_member:not(.disabled) .right_menu_button[data-action="enable"] {
199
+ display: none;
200
+ }
201
+
202
+ .group_select {
203
+ display: flex;
204
+ flex-direction: row;
205
+ padding: 5px;
206
+ border-radius: 10px;
207
+ cursor: pointer;
208
+ }
209
+
210
+ .group_select:hover {
211
+ background-color: var(--white30a);
212
+ }
213
+
214
+ .group_select .avatar {
215
+ flex: 0;
216
+ }
217
+
218
+ .group_select .group_icon {
219
+ width: 20px;
220
+ height: 20px;
221
+ margin: 0 10px;
222
+ }
223
+
224
+ .group_select .group_fav_icon {
225
+ filter: drop-shadow(0px 0px 1px black);
226
+ color: #c5b457;
227
+ font-size: 12px;
228
+ order: -1;
229
+ margin-left: -18px;
230
+ margin-top: 3px;
231
+ }
232
+
233
+ .group_member .avatar {
234
+ flex-shrink: 0;
235
+ flex-basis: auto;
236
+ }
public/css/select2-overrides.css ADDED
@@ -0,0 +1,270 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Customize the Select2 container */
2
+ .select2-container {
3
+ color: var(--SmartThemeBodyColor);
4
+ }
5
+
6
+ /* Customize the dropdown */
7
+ .select2-dropdown {
8
+ background-color: var(--SmartThemeBlurTintColor);
9
+ border: 1px solid var(--SmartThemeBorderColor) !important;
10
+ border-radius: 10px;
11
+ box-shadow: 0 0 5px black;
12
+ text-shadow: 0px 0px calc(var(--shadowWidth) * 1px) var(--SmartThemeShadowColor);
13
+ backdrop-filter: blur(calc(var(--SmartThemeBlurStrength)*2));
14
+ color: var(--SmartThemeBodyColor);
15
+ z-index: 40000;
16
+ }
17
+
18
+ .select2-selection__clear {
19
+ color: var(--SmartThemeBodyColor);
20
+ }
21
+
22
+ .select2-container .select2-search__field {
23
+ opacity: 0.8;
24
+ }
25
+
26
+ .select2-selection--single .select2-selection__placeholder {
27
+ color: var(--SmartThemeEmColor);
28
+ }
29
+
30
+ .select2-container--classic .select2-selection--single .select2-selection__placeholder {
31
+ color: var(--SmartThemeEmColor);
32
+ }
33
+
34
+ .select2-container .select2-selection--single .select2-selection__rendered {
35
+ color: var(--SmartThemeBodyColor);
36
+ line-height: revert;
37
+ padding-left: unset;
38
+ }
39
+
40
+ .select2-container .select2-results>.select2-results__options {
41
+ max-height: 300px;
42
+ }
43
+
44
+ .select2-container .select2-selection--multiple .select2-selection__choice__remove {
45
+ padding: revert;
46
+ border-right: 1px solid var(--SmartThemeBorderColor);
47
+ font-size: 1.1em;
48
+ }
49
+
50
+ .select2-container .select2-selection--multiple .select2-selection__choice__display {
51
+ padding-left: 5px;
52
+ }
53
+
54
+ /* Customize the search input */
55
+ .select2-search__field {
56
+ background-color: var(--black30a);
57
+ color: var(--SmartThemeBodyColor);
58
+ border: 1px solid var(--SmartThemeBorderColor);
59
+ border-radius: 7px;
60
+ font-family: var(--mainFontFamily);
61
+ padding: 3px 5px;
62
+ }
63
+
64
+ /* Customize the selected option */
65
+ .select2-selection--single {
66
+ border: 1px solid var(--SmartThemeShadowColor);
67
+ border-radius: 4px;
68
+ background-color: var(--SmartThemeBlurTintColor);
69
+ }
70
+
71
+ /* Customize the selected option text */
72
+ .select2-selection__rendered {
73
+ color: var(--SmartThemeBodyColor);
74
+ }
75
+
76
+ /* Customize the option list item */
77
+ .select2-results__option {
78
+ color: var(--SmartThemeBodyColor);
79
+ background-color: var(--SmartThemeBodyColor);
80
+ }
81
+
82
+ .select2-container .select2-selection--multiple,
83
+ .select2-container .select2-selection--single {
84
+ background-color: var(--black30a);
85
+ color: var(--SmartThemeBodyColor);
86
+ border: 1px solid var(--SmartThemeBorderColor);
87
+ border-radius: 7px;
88
+ font-family: var(--mainFontFamily);
89
+ padding: 3px 5px;
90
+ }
91
+
92
+ .select2-container.select2-container--focus .select2-selection--multiple,
93
+ .select2-container.select2-container--focus .select2-selection--single {
94
+ border: 1px solid var(--SmartThemeBorderColor);
95
+ }
96
+
97
+ .select2-container .select2-selection--multiple .select2-selection__choice,
98
+ .select2-container .select2-selection--single .select2-selection__choice {
99
+ border-radius: 5px;
100
+ border-style: solid;
101
+ border-width: 1px;
102
+ box-sizing: border-box;
103
+ color: var(--SmartThemeBodyColor);
104
+ background-color: var(--black30a);
105
+ border-color: var(--SmartThemeBorderColor);
106
+ font-size: calc(var(--mainFontSize) - 5%);
107
+ text-shadow: none !important;
108
+ }
109
+
110
+ .select2-results .select2-results__option--selectable {
111
+ background-color: unset;
112
+ color: var(--SmartThemeBodyColor);
113
+ opacity: 0.5;
114
+ transition: opacity 200ms ease-in-out;
115
+ position: relative;
116
+ }
117
+
118
+ .select2-results .select2-results__option--group {
119
+ color: var(--SmartThemeBodyColor);
120
+ background-color: var(--SmartThemeBlurTintColor);
121
+ position: relative;
122
+ }
123
+
124
+ /* Customize the hovered option list item */
125
+ .select2-results .select2-results__option--highlighted.select2-results__option--selectable {
126
+ color: var(--SmartThemeBodyColor);
127
+ background-color: unset;
128
+ opacity: 1;
129
+ }
130
+
131
+ .select2-results__option.select2-results__option--group::before {
132
+ display: none;
133
+ }
134
+
135
+ /* Customize the option list item */
136
+ .select2-results__option {
137
+ padding-left: 30px;
138
+ /* Add some padding to make room for the checkbox */
139
+ }
140
+
141
+ .select2-results .select2-results__option--group .select2-results__options--nested .select2-results__option {
142
+ padding-left: 2em;
143
+ }
144
+
145
+ /* Add the custom checkbox */
146
+ .select2-results__option::before {
147
+ content: '';
148
+ display: inline-block;
149
+ position: absolute;
150
+ left: 6px;
151
+ top: 50%;
152
+ margin-top: -7px;
153
+ width: 14px;
154
+ height: 14px;
155
+ border: 1px solid var(--SmartThemeBorderColor);
156
+ background-color: var(--SmartThemeBlurTintColor);
157
+ border-radius: 2px;
158
+ }
159
+
160
+ .select2-container .select2-selection--multiple .select2-selection__choice__remove,
161
+ .select2-container .select2-selection--single .select2-selection__choice__remove {
162
+ color: var(--SmartThemeBodyColor);
163
+ }
164
+
165
+ /* Add the custom checkbox checkmark */
166
+ .select2-results__option--selected.select2-results__option::before {
167
+ content: '\2713';
168
+ font-weight: bold;
169
+ color: var(--SmartThemeBodyColor);
170
+ background-color: var(--SmartThemeBlurTintColor);
171
+ text-align: center;
172
+ line-height: 14px;
173
+ }
174
+
175
+ .select2-results__option.select2-results__message {
176
+ background-color: inherit;
177
+ }
178
+
179
+ .select2-results__option.select2-results__message::before {
180
+ display: none;
181
+ }
182
+
183
+ .select2-selection__choice__display {
184
+ /* Fix weird alignment of the inside block */
185
+ margin-left: 3px;
186
+ margin-right: 1px;
187
+ }
188
+
189
+ /* Styling for choice remove icon */
190
+ span.select2.select2-container .select2-selection__choice__remove {
191
+ cursor: pointer;
192
+ transition: background-color 0.3s;
193
+ color: var(--SmartThemeBodyColor);
194
+ background-color: var(--black50a);
195
+ }
196
+
197
+ span.select2.select2-container .select2-selection__choice__remove:hover {
198
+ color: var(--SmartThemeBodyColor);
199
+ background-color: var(--white30a);
200
+ }
201
+
202
+ /* Custom class to support styling to show clickable choice options */
203
+ .select2_choice_clickable+span.select2-container .select2-selection__choice__display {
204
+ cursor: pointer;
205
+ }
206
+
207
+ .select2_choice_clickable_buttonstyle+span.select2-container .select2-selection__choice__display {
208
+ cursor: pointer;
209
+ transition: background-color 0.3s;
210
+ color: var(--SmartThemeBodyColor);
211
+ background-color: var(--black50a);
212
+ white-space: break-spaces;
213
+ word-break: break-all;
214
+ }
215
+
216
+ .select2_choice_clickable_buttonstyle+span.select2-container .select2-selection__choice__display:hover {
217
+ background-color: var(--white30a);
218
+ }
219
+
220
+ /* Custom class to support same line multi inputs of select2 controls */
221
+ .select2_multi_sameline+span.select2-container .select2-selection--multiple {
222
+ display: flex;
223
+ flex-wrap: wrap;
224
+ }
225
+
226
+ .select2_multi_sameline+span.select2-container .select2-selection--multiple .select2-search--inline {
227
+ /* Allow search placeholder to take up all space if needed */
228
+ flex-grow: 1;
229
+ }
230
+
231
+ .select2_multi_sameline+span.select2-container .select2-selection--multiple .select2-selection__rendered {
232
+ /* Fix weird styling choice or huge margin around selected options */
233
+ margin-block-start: 2px;
234
+ margin-block-end: 2px;
235
+ display: flex;
236
+ align-items: center;
237
+ flex-wrap: wrap;
238
+ row-gap: 5px;
239
+ }
240
+
241
+ .select2_multi_sameline+span.select2-container .select2-selection--multiple .select2-selection__choice {
242
+ margin-top: 0px;
243
+ }
244
+
245
+ .select2_multi_sameline+span.select2-container .select2-selection--multiple .select2-search__field {
246
+ /* Min height to reserve spacing */
247
+ min-height: calc(var(--mainFontSize) + 13px);
248
+ /* Min width to be clickable */
249
+ min-width: 4em;
250
+ align-content: center;
251
+ /* Fix search textarea alignment issue with UL elements */
252
+ margin-top: 0px;
253
+ height: unset;
254
+ /* Prevent height from jumping around when input is focused */
255
+ line-height: 1;
256
+ }
257
+
258
+ .select2_multi_sameline+span.select2-container .select2-selection--multiple .select2-selection__rendered {
259
+ /* Min height to reserve spacing */
260
+ min-height: calc(var(--mainFontSize) + 13px);
261
+ }
262
+
263
+ /* Make search bar invisible unless the select2 is active, to save space */
264
+ .select2_multi_sameline+span.select2-container .select2-selection--multiple .select2-search--inline {
265
+ height: 1px;
266
+ }
267
+
268
+ .select2_multi_sameline+span.select2-container.select2-container--focus .select2-selection--multiple .select2-search--inline {
269
+ height: unset;
270
+ }
public/css/select2.min.css ADDED
@@ -0,0 +1 @@
 
 
1
+ .select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{background-color:transparent;border:none;font-size:1em}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline;list-style:none;padding:0}.select2-container .select2-selection--multiple .select2-selection__clear{background-color:transparent;border:none;font-size:1em}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;margin-left:5px;padding:0;max-width:100%;resize:none;height:18px;vertical-align:bottom;font-family:sans-serif;overflow:hidden;word-break:keep-all}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option--selectable{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;height:26px;margin-right:20px;padding-right:0px}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;padding-bottom:5px;padding-right:5px;position:relative}.select2-container--default .select2-selection--multiple.select2-selection--clearable{padding-right:25px}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;font-weight:bold;height:20px;margin-right:10px;margin-top:5px;position:absolute;right:0;padding:1px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:inline-block;margin-left:5px;margin-top:5px;padding:0;padding-left:20px;position:relative;max-width:100%;overflow:hidden;text-overflow:ellipsis;vertical-align:bottom;white-space:nowrap}.select2-container--default .select2-selection--multiple .select2-selection__choice__display{cursor:default;padding-left:2px;padding-right:5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{background-color:transparent;border:none;border-right:1px solid #aaa;border-top-left-radius:4px;border-bottom-left-radius:4px;color:#999;cursor:pointer;font-size:1em;font-weight:bold;padding:0 4px;position:absolute;left:0;top:0}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus{background-color:#f1f1f1;color:#333;outline:none}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display{padding-left:5px;padding-right:2px}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{border-left:1px solid #aaa;border-right:none;border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:4px;border-bottom-right-radius:4px}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__clear{float:left;margin-left:10px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--group{padding:0}.select2-container--default .select2-results__option--disabled{color:#999}.select2-container--default .select2-results__option--selected{background-color:#ddd}.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{background-color:#5897fb;color:white}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top, #fff 50%, #eee 100%);background-image:-o-linear-gradient(top, #fff 50%, #eee 100%);background-image:linear-gradient(to bottom, #fff 50%, #eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;height:26px;margin-right:20px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top, #eee 50%, #ccc 100%);background-image:-o-linear-gradient(top, #eee 50%, #ccc 100%);background-image:linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top, #fff 0%, #eee 50%);background-image:-o-linear-gradient(top, #fff 0%, #eee 50%);background-image:linear-gradient(to bottom, #fff 0%, #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top, #eee 50%, #fff 100%);background-image:-o-linear-gradient(top, #eee 50%, #fff 100%);background-image:linear-gradient(to bottom, #eee 50%, #fff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0;padding-bottom:5px;padding-right:5px}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;display:inline-block;margin-left:5px;margin-top:5px;padding:0}.select2-container--classic .select2-selection--multiple .select2-selection__choice__display{cursor:default;padding-left:2px;padding-right:5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{background-color:transparent;border:none;border-top-left-radius:4px;border-bottom-left-radius:4px;color:#888;cursor:pointer;font-size:1em;font-weight:bold;padding:0 4px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555;outline:none}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display{padding-left:5px;padding-right:2px}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:4px;border-bottom-right-radius:4px}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option--group{padding:0}.select2-container--classic .select2-results__option--disabled{color:grey}.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}
public/css/solid.min.css ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ /*!
2
+ * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ * Copyright 2024 Fonticons, Inc.
5
+ */
6
+ :host,:root{--fa-style-family-classic:"Font Awesome 6 Free";--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}.fa-solid,.fas{font-weight:900}
public/css/st-tailwind.css ADDED
@@ -0,0 +1,606 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .text_warning {
2
+ color: rgb(220 173 16);
3
+ }
4
+
5
+ .text_danger {
6
+ color: var(--fullred);
7
+ }
8
+
9
+ .highlighted {
10
+ color: black;
11
+ background-color: yellow;
12
+ text-shadow: none !important;
13
+ }
14
+
15
+ .m-t-0 {
16
+ margin-top: 0;
17
+ }
18
+
19
+ .m-t-1 {
20
+ margin-top: 1em;
21
+ }
22
+
23
+ .m-t-2 {
24
+ margin-top: 2em;
25
+ }
26
+
27
+ .m-t-3 {
28
+ margin-top: 3em;
29
+ }
30
+
31
+ .m-t-4 {
32
+ margin-top: 4em;
33
+ }
34
+
35
+ .m-t-5 {
36
+ margin-top: 5em;
37
+ }
38
+
39
+ .m-b-1 {
40
+ margin-bottom: 1em;
41
+ }
42
+
43
+ .m-b-2 {
44
+ margin-bottom: 2em;
45
+ }
46
+
47
+ .m-b-3 {
48
+ margin-bottom: 3em;
49
+ }
50
+
51
+ .m-b-4 {
52
+ margin-bottom: 4em;
53
+ }
54
+
55
+ .m-b-5 {
56
+ margin-bottom: 5em;
57
+ }
58
+
59
+ .tooltip {
60
+ cursor: help;
61
+ }
62
+
63
+ .margin-bot-10px,
64
+ .marginBot10 {
65
+ margin-bottom: 10px !important;
66
+ }
67
+
68
+ .marginTop10 {
69
+ margin-top: 10px !important;
70
+ }
71
+
72
+ .marginBot5 {
73
+ margin-bottom: 5px !important;
74
+ }
75
+
76
+ .marginTop5 {
77
+ margin-top: 5px !important;
78
+ }
79
+
80
+ .marginTopBot5 {
81
+ margin-top: 5px !important;
82
+ margin-bottom: 5px !important;
83
+ }
84
+
85
+ .margin5 {
86
+ margin: 5px;
87
+ }
88
+
89
+ .marginLeft5 {
90
+ margin-left: 5px;
91
+ }
92
+
93
+ .overflowYAuto {
94
+ overflow-y: auto;
95
+ }
96
+
97
+ .heightMinContent {
98
+ height: min-content;
99
+ }
100
+
101
+ .justifySpaceBetween {
102
+ justify-content: space-between;
103
+ }
104
+
105
+ .justifySpaceEvenly {
106
+ justify-content: space-evenly;
107
+ }
108
+
109
+ .justifySpaceAround {
110
+ justify-content: space-around;
111
+ }
112
+
113
+ .alignitemsflexstart {
114
+ align-items: flex-start !important;
115
+ }
116
+
117
+ .alignItemsFlexEnd {
118
+ align-items: flex-end !important;
119
+ }
120
+
121
+ .alignItemsBaseline {
122
+ align-items: baseline !important;
123
+ }
124
+
125
+ .alignSelfStart {
126
+ align-self: start;
127
+ }
128
+
129
+ .gap0 {
130
+ gap: 0 !important;
131
+ }
132
+
133
+ .gap3px {
134
+ gap: 3px !important;
135
+ }
136
+
137
+ .gap5px {
138
+ gap: 5px !important;
139
+ }
140
+
141
+ .gap10px {
142
+ gap: 10px !important;
143
+ }
144
+
145
+ .gap10h20v {
146
+ gap: 10px 20px !important;
147
+ }
148
+
149
+ .gap10h5v {
150
+ gap: 5px 10px !important;
151
+ }
152
+
153
+ .wide10pMinFit {
154
+ width: 10%;
155
+ min-width: fit-content;
156
+ }
157
+
158
+ .wide100pLess70px {
159
+ width: calc(100% - 70px);
160
+ }
161
+
162
+ .wideMax100px {
163
+ max-width: 100px;
164
+ }
165
+
166
+ .width100px {
167
+ width: 100px;
168
+ }
169
+
170
+ .widthUnset {
171
+ width: unset;
172
+ }
173
+
174
+ .no-border {
175
+ border: none !important;
176
+ }
177
+
178
+ .no-shadow {
179
+ box-shadow: none !important;
180
+ }
181
+
182
+ .height100p {
183
+ height: 100%;
184
+ }
185
+
186
+ .height100pSpaceEvenly {
187
+ align-content: space-evenly;
188
+ height: 100%;
189
+ }
190
+
191
+ .height32px {
192
+ height: 32px;
193
+ }
194
+
195
+ .TxtLrgBoldCenter {
196
+ text-align: center;
197
+ font-size: large;
198
+ font-weight: 600;
199
+ }
200
+
201
+ .textAlignCenter {
202
+ text-align: center;
203
+ }
204
+
205
+ .margin-right-10px {
206
+ margin-right: 10px;
207
+ }
208
+
209
+
210
+ .success {
211
+ color: green;
212
+ }
213
+
214
+ .failure {
215
+ color: red;
216
+ }
217
+
218
+ .optional {
219
+ color: lightgray;
220
+ }
221
+
222
+ .monospace {
223
+ font-family: var(--monoFontFamily);
224
+ }
225
+
226
+ .expander {
227
+ flex-grow: 1;
228
+ }
229
+
230
+ .redOverlayGlow {
231
+ color: #800;
232
+ opacity: 0.8 !important;
233
+ text-shadow: none !important;
234
+ }
235
+
236
+ .width100p {
237
+ width: 100%;
238
+ }
239
+
240
+ .flex {
241
+ display: flex;
242
+ }
243
+
244
+ .flexBasis100p {
245
+ flex-basis: 100%;
246
+ }
247
+
248
+ .flexBasis50p {
249
+ flex-basis: 50%
250
+ }
251
+
252
+ .flexBasis25p {
253
+ flex-basis: 25%
254
+ }
255
+
256
+ .flexBasis200px {
257
+ flex-basis: 200px
258
+ }
259
+
260
+ .flexBasis48p {
261
+ flex-basis: 48%
262
+ }
263
+
264
+ .flexBasis30p {
265
+ flex-basis: 30%;
266
+ }
267
+
268
+ .flex-container {
269
+ display: flex;
270
+ gap: 5px;
271
+ flex-wrap: wrap;
272
+ }
273
+
274
+ .flexNoGap {
275
+ gap: unset !important;
276
+ }
277
+
278
+ .flexGrow {
279
+ flex-grow: 1;
280
+ }
281
+
282
+ .flexShrink {
283
+ flex-shrink: 1
284
+ }
285
+
286
+ .flexWrap {
287
+ flex-wrap: wrap;
288
+ }
289
+
290
+ .flexnowrap,
291
+ .flexNoWrap {
292
+ flex-wrap: nowrap;
293
+ }
294
+
295
+ .inline-flex {
296
+ display: inline-flex;
297
+ }
298
+
299
+ .inline-block {
300
+ display: inline-block;
301
+ }
302
+
303
+ .alignitemscenter,
304
+ .alignItemsCenter {
305
+ align-items: center;
306
+ }
307
+
308
+ .alignitemsstart,
309
+ .alignItemsStart {
310
+ align-items: start;
311
+ }
312
+
313
+ .overflow-hidden {
314
+ overflow: hidden;
315
+ white-space: nowrap;
316
+ text-overflow: ellipsis;
317
+ }
318
+
319
+ .maxWidth200px {
320
+ max-width: 200px;
321
+ }
322
+
323
+ .alignContentFlexStart {
324
+ align-content: flex-start;
325
+ }
326
+
327
+ .alignContentCenter {
328
+ align-content: center;
329
+ }
330
+
331
+ .overflowHidden {
332
+ overflow: hidden;
333
+ }
334
+
335
+ .padding0 {
336
+ padding: 0;
337
+ }
338
+
339
+ .padding5 {
340
+ padding: 5px;
341
+ }
342
+
343
+ .padding10 {
344
+ padding: 10px;
345
+ }
346
+
347
+ .margin0 {
348
+ margin: 0;
349
+ }
350
+
351
+ .margin0auto {
352
+ margin: 0 auto;
353
+ }
354
+
355
+ .margin-r5 {
356
+ margin-right: 5px;
357
+ }
358
+
359
+ .margin-r2 {
360
+ margin-right: 2px;
361
+ }
362
+
363
+ .flex0 {
364
+ flex: 0;
365
+ }
366
+
367
+ .flex1 {
368
+ flex: 1;
369
+ }
370
+
371
+ .flex2 {
372
+ flex: 2 !important;
373
+ }
374
+
375
+ .flex3 {
376
+ flex: 3;
377
+ }
378
+
379
+ .flex4 {
380
+ flex: 4;
381
+ }
382
+
383
+ .flexFlowColumn {
384
+ flex-flow: column;
385
+ }
386
+
387
+ .flexFlowRow {
388
+ flex-flow: row;
389
+ }
390
+
391
+ .wideMinContent {
392
+ width: min-content;
393
+ }
394
+
395
+ .flexWide50p {
396
+ flex: 50%;
397
+ }
398
+
399
+ .wide25p {
400
+ width: 25%;
401
+ }
402
+
403
+ .wide30p {
404
+ width: 30% !important;
405
+ }
406
+
407
+ .justifyLeft {
408
+ text-align: start;
409
+ justify-content: left;
410
+ margin-left: unset;
411
+ }
412
+
413
+ .justifyCenter {
414
+ justify-content: center;
415
+ margin: 0 auto;
416
+ }
417
+
418
+ .justifyContentSpaceAround {
419
+ justify-content: space-around;
420
+ }
421
+
422
+ .justifyContentFlexStart {
423
+ justify-content: flex-start;
424
+ }
425
+
426
+ .justifyContentFlexEnd {
427
+ justify-content: flex-end;
428
+ }
429
+
430
+ .spaceEvenly {
431
+ justify-content: space-evenly;
432
+ }
433
+
434
+ .spaceBetween {
435
+ justify-content: space-between;
436
+ }
437
+
438
+ .widthNatural {
439
+ width: unset !important;
440
+ min-width: unset !important;
441
+ max-width: unset !important;
442
+ }
443
+
444
+ .widthFreeExpand {
445
+ width: -webkit-fill-available;
446
+ width: -moz-available;
447
+ }
448
+
449
+ .wide100p {
450
+ width: 100%;
451
+ }
452
+
453
+ .wide50p {
454
+ width: 50%;
455
+ }
456
+
457
+ .wide50px {
458
+ width: 50px;
459
+ }
460
+
461
+ .indent20p {
462
+ margin-left: 20px;
463
+ }
464
+
465
+ /*used to fix smallness of certain FontAwesome glyph which break button squareness*/
466
+ /*currently used on: CharList Import*/
467
+
468
+ .faSmallFontSquareFix {
469
+ font-size: calc(var(--mainFontSize) *1.25);
470
+ width: calc(var(--mainFontSize) *1.95);
471
+ }
472
+
473
+ .textarea_compact {
474
+ font-size: calc(var(--mainFontSize) * 0.95);
475
+ line-height: 1.2;
476
+ }
477
+
478
+ .custom-katex-html,
479
+ .katex-html {
480
+ display: none;
481
+ }
482
+
483
+ .hoverglow {
484
+ transition: opacity 200ms;
485
+ }
486
+
487
+ .hoverglow:hover {
488
+ opacity: 1 !important;
489
+ cursor: pointer;
490
+ }
491
+
492
+ input:disabled,
493
+ textarea:disabled {
494
+ cursor: not-allowed;
495
+ filter: brightness(0.5);
496
+ }
497
+
498
+ .debug-red {
499
+ border: 1px solid red !important;
500
+ }
501
+
502
+ .debug-yellow {
503
+ border: 1px solid yellow !important;
504
+ }
505
+
506
+ .debug-green {
507
+ border: 1px solid green !important;
508
+ }
509
+
510
+ .debug-blue {
511
+ border: 1px solid blue !important;
512
+ }
513
+
514
+ .debug-purple {
515
+ border: 1px solid purple !important;
516
+ }
517
+
518
+ .fontsize120p {
519
+ font-size: calc(var(--mainFontSize) * 1.2) !important;
520
+ }
521
+
522
+ .fontsize90p {
523
+ font-size: calc(var(--mainFontSize) * 0.9) !important;
524
+ }
525
+
526
+ .fontsize80p {
527
+ font-size: calc(var(--mainFontSize) * 0.8) !important;
528
+ }
529
+
530
+ .fontsize60p {
531
+ font-size: calc(var(--mainFontSize) * 0.6) !important;
532
+ }
533
+
534
+ .paddingBottom5px {
535
+ padding: unset;
536
+ padding-bottom: 5px;
537
+ }
538
+
539
+ .paddingTopBot5 {
540
+ padding: 5px 0;
541
+ }
542
+
543
+ .paddingLeftRight5 {
544
+ padding: 0 5px;
545
+ }
546
+
547
+ .heightFitContent {
548
+ height: fit-content;
549
+ }
550
+
551
+ .widthFitContent {
552
+ width: fit-content;
553
+ min-width: fit-content;
554
+ }
555
+
556
+ .flexGap5 {
557
+ gap: 5px;
558
+ }
559
+
560
+ .flexGap10 {
561
+ gap: 10px;
562
+ }
563
+
564
+ .opacity50p {
565
+ opacity: 0.5
566
+ }
567
+
568
+ .grayscale {
569
+ filter: grayscale(100%);
570
+ }
571
+
572
+ .opacity1 {
573
+ opacity: 1 !important;
574
+ }
575
+
576
+ .circleborder30px {
577
+ right: 30px;
578
+ top: 10px;
579
+ position: absolute;
580
+ border: 1px solid var(--SmartThemeBodyColor);
581
+ border-radius: 100%;
582
+ aspect-ratio: 1 / 1;
583
+ height: 30px;
584
+ text-align: center;
585
+ padding: 5px;
586
+ }
587
+
588
+ ul.li-padding-b-1 li {
589
+ padding-bottom: 1em;
590
+ }
591
+
592
+ ul.li-padding-b-2 li {
593
+ padding-bottom: 2em;
594
+ }
595
+
596
+ ul.li-padding-b-5 li {
597
+ padding-bottom: 5em;
598
+ }
599
+
600
+ ul.li-padding-bot5 li {
601
+ padding-bottom: 5px;
602
+ }
603
+
604
+ ul.li-padding-bot10 li {
605
+ padding-bottom: 10px;
606
+ }
public/css/tags.css ADDED
@@ -0,0 +1,286 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #bulk_tags_div,
2
+ #tags_div {
3
+ min-width: 0;
4
+ }
5
+
6
+ .tag_controls {
7
+ display: flex;
8
+ flex-direction: row;
9
+ gap: 5px;
10
+ align-items: center;
11
+ }
12
+
13
+ .tag_view_item {
14
+ display: flex;
15
+ flex-direction: row;
16
+ align-items: center;
17
+ gap: 6px;
18
+ margin-bottom: 5px;
19
+ }
20
+
21
+ .tag_view_name {
22
+ text-align: left;
23
+ }
24
+
25
+ .tag_view_counter {
26
+ text-align: right;
27
+ flex: 1;
28
+ }
29
+
30
+ .tag_view_color_picker {
31
+ position: relative;
32
+ }
33
+
34
+ .tag_view_color_picker .link_icon {
35
+ position: absolute;
36
+ top: 50%;
37
+ right: 0px;
38
+ opacity: 0.5;
39
+ }
40
+
41
+ .tag_delete {
42
+ padding: 2px 4px;
43
+ color: var(--SmartThemeBodyColor) !important;
44
+ }
45
+
46
+ .tag {
47
+ border-radius: 5px;
48
+ border-style: solid;
49
+ border-width: 1px;
50
+ box-sizing: border-box;
51
+ color: var(--SmartThemeBodyColor);
52
+ background-color: var(--black30a);
53
+ border-color: var(--white50a);
54
+ padding: 0.1rem 0.2rem;
55
+ font-size: calc(var(--mainFontSize) - 5%);
56
+ display: flex;
57
+ flex-direction: row;
58
+ align-items: center;
59
+ position: relative;
60
+ gap: 10px;
61
+ width: fit-content;
62
+ min-width: 0;
63
+ text-shadow: none !important;
64
+ }
65
+
66
+ .rm_tag_filter .tag:not(.actionable) {
67
+ display: none;
68
+ }
69
+
70
+ .tag.actionable {
71
+ border-radius: 50%;
72
+ aspect-ratio: 1 / 1;
73
+ min-height: calc(var(--mainFontSize) * 2);
74
+ min-width: calc(var(--mainFontSize) * 2);
75
+ font-size: calc(var(--mainFontSize) * 1);
76
+ padding: 0;
77
+ display: flex;
78
+ justify-content: center;
79
+ align-items: center;
80
+ }
81
+
82
+ .tag.actionable.clearAllFilters {
83
+ border: 0;
84
+ background: none;
85
+ }
86
+
87
+ .tag.placeholder-expander {
88
+ cursor: alias;
89
+ border: 0;
90
+ }
91
+
92
+ .tagListHint {
93
+ align-self: center;
94
+ display: flex;
95
+ margin-right: 10px;
96
+ }
97
+
98
+ .tag_remove {
99
+ cursor: pointer;
100
+ }
101
+
102
+ .tags {
103
+ display: flex;
104
+ flex-direction: row;
105
+ flex-wrap: wrap;
106
+ justify-content: flex-start;
107
+ gap: 0.2rem;
108
+ align-items: flex-end;
109
+ }
110
+
111
+ #bulkTagsList,
112
+ #tagList.tags {
113
+ margin: 5px 0;
114
+ }
115
+
116
+ #bulkTagsList,
117
+ #tagList .tag,
118
+ #groupTagList .tag {
119
+ opacity: 0.6;
120
+ }
121
+
122
+ #tagList .tag:has(.tag_remove:hover) {
123
+ opacity: 1;
124
+ }
125
+
126
+ #tagList .tag:has(.tag_remove:hover) .tag_name {
127
+ opacity: 0.6;
128
+ }
129
+
130
+ .tags.tags_inline {
131
+ opacity: 0.6;
132
+ column-gap: 0.2rem;
133
+ row-gap: 0.2rem;
134
+ justify-content: flex-start;
135
+ max-height: 66%;
136
+ overflow: hidden;
137
+ flex-basis: 100%;
138
+ }
139
+
140
+ .tag_name {
141
+ text-overflow: ellipsis;
142
+ overflow: hidden;
143
+ text-align: left;
144
+ white-space: nowrap;
145
+ text-shadow: none !important;
146
+ }
147
+
148
+ .tags_inline .tag {
149
+ font-size: calc(var(--mainFontSize) - 15%);
150
+ padding: 0 0.15rem;
151
+ }
152
+
153
+ .rm_tag_controls {
154
+ display: flex;
155
+ column-gap: 10px;
156
+ row-gap: 5px;
157
+ flex-direction: row;
158
+ flex-wrap: wrap;
159
+ align-items: flex-start;
160
+ margin: 5px;
161
+ }
162
+
163
+ .rm_tag_filter .tag {
164
+ cursor: pointer;
165
+ opacity: 0.6;
166
+ filter: brightness(0.8);
167
+ }
168
+
169
+ .rm_tag_filter .tag.actionable {
170
+ transition: opacity 200ms;
171
+ }
172
+
173
+ .rm_tag_filter .tag:hover {
174
+ opacity: 1;
175
+ filter: brightness(1);
176
+ }
177
+
178
+ .tags_view {
179
+ margin: 0;
180
+ aspect-ratio: 1 / 1;
181
+ }
182
+
183
+ .tag.selected {
184
+ opacity: 1 !important;
185
+ filter: none !important;
186
+ }
187
+
188
+ .tag.excluded {
189
+ opacity: 1 !important;
190
+ filter: saturate(0.4) !important;
191
+ border: 1px solid red;
192
+ }
193
+
194
+ .tag.excluded::after {
195
+ position: absolute;
196
+ height: calc(var(--mainFontSize)*1.5);
197
+ left: 0;
198
+ right: 0;
199
+ content: "\d7";
200
+ pointer-events: none;
201
+ font-size: calc(var(--mainFontSize) *3);
202
+ color: red;
203
+ line-height: calc(var(--mainFontSize)*1.3);
204
+ text-align: center;
205
+ text-shadow: 1px 1px 0px black,
206
+ -1px -1px 0px black,
207
+ -1px 1px 0px black,
208
+ 1px -1px 0px black;
209
+ opacity: 1;
210
+ }
211
+
212
+ .tag_as_folder.right_menu_button {
213
+ filter: brightness(75%) saturate(0.6);
214
+ }
215
+
216
+ .tag_as_folder.right_menu_button:hover,
217
+ .tag_as_folder.right_menu_button.flash {
218
+ filter: brightness(150%) saturate(0.6);
219
+ }
220
+
221
+ .tag_as_folder.right_menu_button.no_folder {
222
+ filter: brightness(25%) saturate(0.25);
223
+ }
224
+
225
+ .tag_as_folder.right_menu_button .tag_folder_indicator {
226
+ position: absolute;
227
+ top: calc(var(--mainFontSize) * -0.5);
228
+ right: calc(var(--mainFontSize) * -0.5);
229
+ font-size: calc(var(--mainFontSize) * 1);
230
+ line-height: calc(var(--mainFontSize) * 1.3);
231
+ text-align: center;
232
+ text-shadow: 1px 1px 0px black,
233
+ -1px -1px 0px black,
234
+ -1px 1px 0px black,
235
+ 1px -1px 0px black;
236
+ opacity: 1;
237
+ }
238
+
239
+ .tag.indicator::after {
240
+ position: absolute;
241
+ top: calc(var(--mainFontSize) * -0.5);
242
+ right: -2px;
243
+ content: "\25CF";
244
+ font-size: calc(var(--mainFontSize) * 1);
245
+ color: var(--SmartThemeBodyColor);
246
+ line-height: calc(var(--mainFontSize) * 1.3);
247
+ text-align: center;
248
+ text-shadow: 1px 1px 0px black,
249
+ -1px -1px 0px black,
250
+ -1px 1px 0px black,
251
+ 1px -1px 0px black;
252
+ opacity: 1;
253
+ }
254
+
255
+ .rm_tag_bogus_drilldown {
256
+ height: calc(var(--mainFontSize)* 2 - 2);
257
+ }
258
+
259
+ .rm_tag_bogus_drilldown .tag:not(:first-child) {
260
+ position: relative;
261
+ margin-left: 1em;
262
+ }
263
+
264
+ .rm_tag_bogus_drilldown .tag:not(:first-child)::before {
265
+ font-family: 'Font Awesome 6 Free';
266
+ content: "\f054";
267
+ position: absolute;
268
+ left: -1em;
269
+ top: auto;
270
+ color: var(--SmartThemeBodyColor);
271
+ text-shadow: 1px 1px 0px black,
272
+ -1px -1px 0px black,
273
+ -1px 1px 0px black,
274
+ 1px -1px 0px black;
275
+ opacity: 1;
276
+ }
277
+
278
+ .bogus_folder_select_back .avatar {
279
+ display: none !important;
280
+ }
281
+
282
+ .bogus_folder_select_back .bogus_folder_back_placeholder {
283
+ min-height: calc(var(--mainFontSize)*2);
284
+ width: var(--avatar-base-width);
285
+ justify-content: center;
286
+ }
public/css/toastr.min.css ADDED
@@ -0,0 +1 @@
 
0
  * Note that this is toastr v2.1.3, the "latest" version in url has no more maintenance,
1
  * please go to https://cdnjs.com/libraries/toastr.js and pick a certain version you want to use,
2
  * make sure you copy the url from the website since the url may change between versions.
3
  * */
 
1
+ /*
2
  * Note that this is toastr v2.1.3, the "latest" version in url has no more maintenance,
3
  * please go to https://cdnjs.com/libraries/toastr.js and pick a certain version you want to use,
4
  * make sure you copy the url from the website since the url may change between versions.
5
  * */
public/css/toggle-dependent.css ADDED
@@ -0,0 +1,457 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ :root {
2
+ --big-avatar-height-factor: 1.8;
3
+ --big-avatar-width-factor: 1.2;
4
+ --big-avatar-border-factor: 5;
5
+ }
6
+
7
+ body.tts .mes[is_system="true"] .mes_narrate {
8
+ display: none;
9
+ }
10
+
11
+ body.sd .sd_message_gen,
12
+ body.translate .mes_translate,
13
+ body.tts .mes_narrate {
14
+ display: inline-block;
15
+ }
16
+
17
+ body:not(.tts) #ttsExtensionNarrateAll {
18
+ display: none;
19
+ }
20
+
21
+ body.no-hotswap .hotswap,
22
+ body.no-timer .mes_timer,
23
+ body.no-timestamps .timestamp,
24
+ body.no-tokenCount .tokenCounterDisplay,
25
+ body.no-mesIDDisplay .mesIDDisplay,
26
+ body.no-modelIcons .icon-svg,
27
+ body.hideChatAvatars .mesAvatarWrapper .avatar {
28
+ display: none !important;
29
+ }
30
+
31
+ body.hideChatAvatars .last_mes {
32
+ padding-bottom: 40px !important;
33
+ }
34
+
35
+ body.square-avatars .avatar,
36
+ body.square-avatars .avatar img {
37
+ border-radius: var(--avatar-base-border-radius) !important;
38
+ }
39
+
40
+ /*char list grid mode*/
41
+
42
+ body.charListGrid #rm_print_characters_block {
43
+ display: flex;
44
+ gap: 5px;
45
+ flex-wrap: wrap;
46
+ flex-direction: row;
47
+ justify-content: space-around;
48
+ align-content: flex-start;
49
+ }
50
+
51
+ body.charListGrid #rm_print_characters_block .bogus_folder_select,
52
+ body.charListGrid #rm_print_characters_block .character_select,
53
+ body.charListGrid #rm_print_characters_block .group_select,
54
+ #user_avatar_block.gridView .avatar-container {
55
+ width: 30%;
56
+ align-items: flex-start;
57
+ height: min-content;
58
+ flex-direction: column;
59
+ overflow: hidden;
60
+ max-width: 100px;
61
+ }
62
+
63
+ /* Save a bit of space here */
64
+ body.charListGrid #rm_print_characters_block .character_name_block {
65
+ gap: 0;
66
+ margin-bottom: 0;
67
+ }
68
+
69
+ body.charListGrid #rm_print_characters_block .bogus_folder_select .ch_name,
70
+ body.charListGrid #rm_print_characters_block .bogus_folder_select .bogus_folder_counter,
71
+ body.charListGrid #rm_print_characters_block .character_select .ch_name,
72
+ body.charListGrid #rm_print_characters_block .group_select .ch_name,
73
+ body.charListGrid #rm_print_characters_block .group_select .group_select_counter,
74
+ #user_avatar_block.gridView .avatar-container .ch_name,
75
+ #user_avatar_block.gridView .avatar-container .bogus_folder_counter,
76
+ #user_avatar_block.gridView .avatar-container .group_select_counter {
77
+ width: 100%;
78
+ max-width: 100px;
79
+ text-align: center;
80
+ font-size: calc(var(--mainFontSize) * .8);
81
+ }
82
+
83
+ body.charListGrid #rm_print_characters_block .bogus_folder_select .character_name_block,
84
+ body.charListGrid #rm_print_characters_block .character_select .character_name_block,
85
+ body.charListGrid #rm_print_characters_block .group_select .group_name_block,
86
+ #user_avatar_block.gridView .avatar-container .character_name_block {
87
+ width: 100%;
88
+ flex-direction: column;
89
+ }
90
+
91
+ #user_avatar_block.gridView .avatar-container .avatar-buttons {
92
+ flex-wrap: wrap;
93
+ justify-content: space-evenly;
94
+ }
95
+
96
+ body.charListGrid #rm_print_characters_block .bogus_folder_select .character_select_container,
97
+ body.charListGrid #rm_print_characters_block .character_select .character_select_container,
98
+ body.charListGrid #rm_print_characters_block .group_select .group_select_container,
99
+ #user_avatar_block.gridView .avatar-container .character_select_container,
100
+ #user_avatar_block.gridView .avatar-container .group_select_container {
101
+ width: 100%;
102
+ justify-content: center;
103
+ max-width: 100px;
104
+ }
105
+
106
+ body.charListGrid #rm_print_characters_block .group_select {
107
+ width: 30%;
108
+ height: min-content;
109
+ align-items: center !important;
110
+ flex-direction: column;
111
+ overflow: hidden;
112
+ max-width: 100px;
113
+ }
114
+
115
+ body.charListGrid #rm_print_characters_block .group_select .group_name_block {
116
+ width: 100%;
117
+ }
118
+
119
+ body.charListGrid #rm_print_characters_block .ch_description,
120
+ body.charListGrid #rm_print_characters_block .tags_inline,
121
+ body.charListGrid #rm_print_characters_block .group_select_block_list,
122
+ body.charListGrid #rm_print_characters_block .ch_avatar_url,
123
+ body.charListGrid #rm_print_characters_block .character_version,
124
+ body.charListGrid #rm_print_characters_block .character_name_block_sub_line,
125
+ #user_avatar_block.gridView .avatar-container .ch_description,
126
+ body.charListGrid #rm_print_characters_block .bogus_folder_select_back .bogus_folder_back_placeholder {
127
+ display: none;
128
+ }
129
+
130
+ body.charListGrid #rm_print_characters_block .bogus_folder_select_back .avatar {
131
+ display: flex !important;
132
+ }
133
+
134
+ /* Hack for keeping the spacing */
135
+ /*
136
+ body.charListGrid #rm_print_characters_block .ch_add_placeholder {
137
+ display: flex !important;
138
+ opacity: 0;
139
+ }
140
+ */
141
+
142
+ body.charListGrid #rm_print_characters_block .ch_additional_info {
143
+ display: none;
144
+ }
145
+
146
+ /*big avatars mode page-wide changes*/
147
+
148
+ body.big-avatars .character_select .avatar,
149
+ body.big-avatars .group_select .avatar,
150
+ body.big-avatars .bogus_folder_select .avatar {
151
+ flex: unset;
152
+ }
153
+
154
+ body.big-avatars .avatar {
155
+ width: calc(var(--avatar-base-width) * var(--big-avatar-width-factor));
156
+ height: calc(var(--avatar-base-height) * var(--big-avatar-height-factor));
157
+ /* width: unset; */
158
+ border-style: none;
159
+ display: flex;
160
+ justify-content: center;
161
+ flex-direction: column;
162
+ align-items: center;
163
+ /* align-self: unset; */
164
+ overflow: visible;
165
+ border-radius: calc(var(--avatar-base-border-radius) * var(--big-avatar-border-factor));
166
+ }
167
+
168
+ body.big-avatars #user_avatar_block .avatar,
169
+ body.big-avatars #user_avatar_block .avatar_upload {
170
+ width: calc(var(--avatar-base-width) * var(--big-avatar-width-factor));
171
+ height: calc(var(--avatar-base-height) * var(--big-avatar-height-factor));
172
+ border-radius: calc(var(--avatar-base-border-radius) * var(--big-avatar-border-factor));
173
+ }
174
+
175
+ body.big-avatars #user_avatar_block .avatar img {
176
+ width: calc(var(--avatar-base-width) * var(--big-avatar-width-factor));
177
+ height: calc(var(--avatar-base-height) * var(--big-avatar-height-factor));
178
+ }
179
+
180
+ body.big-avatars .avatar img {
181
+ width: calc(var(--avatar-base-width) * var(--big-avatar-width-factor));
182
+ height: calc(var(--avatar-base-height) * var(--big-avatar-height-factor));
183
+ object-fit: cover;
184
+ object-position: center;
185
+ border: 1px solid var(--SmartThemeBorderColor);
186
+ border-radius: calc(var(--avatar-base-border-radius) * var(--big-avatar-border-factor));
187
+ }
188
+
189
+ body.big-avatars .bogus_folder_select_back .bogus_folder_back_placeholder {
190
+ width: calc(var(--avatar-base-width) * var(--big-avatar-width-factor));
191
+ }
192
+
193
+ body:not(.big-avatars) .avatar_collage {
194
+ min-width: var(--avatar-base-width);
195
+ aspect-ratio: 1 / 1;
196
+ }
197
+
198
+ body:not(.big-avatars) .avatar_collage img {
199
+ border-radius: 0% !important;
200
+ }
201
+
202
+ body.big-avatars .avatar_collage {
203
+ min-width: calc(var(--avatar-base-width) * var(--big-avatar-width-factor));
204
+ max-width: calc(var(--avatar-base-width) * var(--big-avatar-width-factor));
205
+ aspect-ratio: 2 / 3;
206
+ }
207
+
208
+ body.big-avatars .ch_description,
209
+ body.big-avatars .avatar-container .ch_description {
210
+ display: -webkit-box;
211
+ -webkit-line-clamp: 3;
212
+ -webkit-box-orient: vertical;
213
+ white-space: pre-line;
214
+ text-overflow: unset;
215
+ }
216
+
217
+ body.big-avatars .avatars_inline_small .avatar,
218
+ body.big-avatars .avatars_inline_small .avatar img {
219
+ width: calc(var(--avatar-base-width) * var(--big-avatar-width-factor) * var(--inline-avatar-small-factor));
220
+ height: calc(var(--avatar-base-height) * var(--big-avatar-height-factor) * var(--inline-avatar-small-factor));
221
+ }
222
+
223
+ body.big-avatars .avatars_inline {
224
+ max-height: calc(var(--avatar-base-height) * var(--big-avatar-height-factor) + 2 * var(--avatar-base-border-radius));
225
+ }
226
+
227
+ body.big-avatars .avatars_inline.avatars_inline_small {
228
+ height: calc(var(--avatar-base-height) * var(--big-avatar-height-factor) * var(--inline-avatar-small-factor) + 2 * var(--avatar-base-border-radius));
229
+ }
230
+
231
+ body:not(.big-avatars) .avatars_inline_small .avatar_collage {
232
+ min-width: calc(var(--avatar-base-width) * var(--inline-avatar-small-factor));
233
+ }
234
+
235
+ body.big-avatars .avatars_inline_small .avatar_collage {
236
+ min-width: calc(var(--avatar-base-width) * var(--big-avatar-width-factor) * var(--inline-avatar-small-factor));
237
+ max-width: calc(var(--avatar-base-width) * var(--big-avatar-width-factor) * var(--inline-avatar-small-factor));
238
+ }
239
+
240
+ /* border radius for big avatars collages */
241
+
242
+ body.big-avatars .collage_2 .img_1 {
243
+ border-radius: calc(var(--avatar-base-border-radius) * var(--big-avatar-border-factor)) 0 0 calc(var(--avatar-base-border-radius) * var(--big-avatar-border-factor)) !important;
244
+ }
245
+
246
+ body.big-avatars .collage_2 .img_2 {
247
+ border-radius: 0 calc(var(--avatar-base-border-radius) * var(--big-avatar-border-factor)) calc(var(--avatar-base-border-radius) * var(--big-avatar-border-factor)) 0 !important;
248
+ }
249
+
250
+ body.big-avatars .collage_3 .img_1 {
251
+ border-radius: calc(var(--avatar-base-border-radius) * var(--big-avatar-border-factor)) 0 0 0 !important;
252
+ }
253
+
254
+ body.big-avatars .collage_3 .img_2 {
255
+ border-radius: 0 calc(var(--avatar-base-border-radius) * var(--big-avatar-border-factor)) 0 0 !important;
256
+ }
257
+
258
+ body.big-avatars .collage_3 .img_3 {
259
+ border-radius: 0 0 calc(var(--avatar-base-border-radius) * var(--big-avatar-border-factor)) calc(var(--avatar-base-border-radius) * var(--big-avatar-border-factor)) !important;
260
+ }
261
+
262
+ body.big-avatars .collage_4 .img_1 {
263
+ border-radius: calc(var(--avatar-base-border-radius) * var(--big-avatar-border-factor)) 0 0 0 !important;
264
+ }
265
+
266
+ body.big-avatars .collage_4 .img_2 {
267
+ border-radius: 0 calc(var(--avatar-base-border-radius) * var(--big-avatar-border-factor)) 0 0 !important;
268
+ }
269
+
270
+ body.big-avatars .collage_4 .img_3 {
271
+ border-radius: 0 0 0 calc(var(--avatar-base-border-radius) * var(--big-avatar-border-factor)) !important;
272
+ }
273
+
274
+ body.big-avatars .collage_4 .img_4 {
275
+ border-radius: 0 0 calc(var(--avatar-base-border-radius) * var(--big-avatar-border-factor)) 0 !important;
276
+ }
277
+
278
+
279
+
280
+ /*bubble chat style*/
281
+
282
+ body.bubblechat .mes {
283
+ padding: 10px;
284
+ border-radius: 10px;
285
+ background-color: var(--SmartThemeBotMesBlurTintColor);
286
+ margin-bottom: 5px;
287
+ border: 1px solid var(--SmartThemeBorderColor);
288
+ }
289
+
290
+ body.bubblechat .mes[is_user="true"] {
291
+ background-color: var(--SmartThemeUserMesBlurTintColor);
292
+ }
293
+
294
+
295
+ /* Document Style */
296
+
297
+ body.documentstyle #chat .mes:not(.last_mes) {
298
+ padding: 5px 10px 0px 10px;
299
+ }
300
+
301
+ body.documentstyle .last_mes {
302
+ padding-top: 0;
303
+ }
304
+
305
+ body.documentstyle #chat .mes .mes_text {
306
+ padding: 0;
307
+ }
308
+
309
+ body.documentstyle #chat .mes .mes_block {
310
+ margin-right: 30px;
311
+ }
312
+
313
+ body.documentstyle #chat .mes .mes_text {
314
+ margin-left: 20px;
315
+ }
316
+
317
+ body.documentstyle #chat .last_mes .mes_text {
318
+ margin-left: 20px;
319
+ min-height: 70px;
320
+ }
321
+
322
+ body.documentstyle #chat .last_mes:has(> .del_checkbox[style*="display: block"]) .mes_text {
323
+ margin-left: 0px;
324
+ }
325
+
326
+ body.documentstyle #chat .last_mes .swipe_left {
327
+ left: 5px;
328
+ }
329
+
330
+ body.documentstyle #chat .mes .mesAvatarWrapper,
331
+ body.documentstyle #chat .mes .mes_block .ch_name .name_text,
332
+ body.documentstyle #chat .mes .mes_block .ch_name .timestamp,
333
+ body.documentstyle .mes:not(.last_mes) .ch_name .mes_buttons {
334
+ display: none !important;
335
+ }
336
+
337
+ /*FastUI blur removal*/
338
+
339
+ body.no-blur * {
340
+ backdrop-filter: unset !important;
341
+ }
342
+
343
+ body.no-blur #send_form.no-connection {
344
+ background-color: rgba(100, 0, 0, 0.9) !important;
345
+ }
346
+
347
+ body.no-blur #bg1,
348
+ body.no-blur #bg_custom {
349
+ filter: unset;
350
+
351
+ }
352
+
353
+ body.no-blur #top-bar,
354
+ body.no-blur #send_form {
355
+ background-color: var(--SmartThemeBlurTintColor) !important;
356
+ }
357
+
358
+ /* wAIfu mode*/
359
+
360
+ body.waifuMode #top-bar {
361
+ border-radius: 0 0 20px 20px;
362
+ border: 1px solid var(--SmartThemeBorderColor);
363
+ }
364
+
365
+ body.waifuMode #sheld {
366
+ height: 40vh;
367
+ height: 40dvh;
368
+ top: calc(100% - 40vh);
369
+ bottom: 0;
370
+ }
371
+
372
+ body.waifuMode #chat {
373
+ border-top: 1px solid var(--SmartThemeBorderColor);
374
+ border-radius: 20px 20px 0 0;
375
+ }
376
+
377
+ body.waifuMode #expression-wrapper {
378
+ justify-content: center;
379
+ }
380
+
381
+ body.waifuMode .expression-holder {
382
+ max-height: 90vh;
383
+ max-width: 90vw;
384
+ height: 90vh;
385
+ width: fit-content;
386
+ bottom: 0;
387
+ filter: drop-shadow(2px 2px 2px #51515199);
388
+ z-index: 2;
389
+ margin: 0 auto;
390
+ left: 0;
391
+ right: 0;
392
+ }
393
+
394
+ body.waifuMode .zoomed_avatar {
395
+ min-width: 100px;
396
+ min-height: 100px;
397
+ max-height: 90vh;
398
+ max-width: 90vh;
399
+ width: calc((100vw - var(--sheldWidth)) /2);
400
+ position: absolute;
401
+ padding: 0;
402
+ filter: drop-shadow(2px 2px 2px #51515199);
403
+ z-index: 29;
404
+ overflow: hidden;
405
+ display: none;
406
+ left: 0;
407
+ right: 0;
408
+ margin: 0 auto;
409
+ top: 50px;
410
+ aspect-ratio: 2 / 3;
411
+ height: auto;
412
+ }
413
+
414
+ /* movingUI*/
415
+
416
+ body.movingUI .drag-grabber {
417
+ display: inline;
418
+ }
419
+
420
+ body.movingUI #sheld,
421
+ body.movingUI .drawer-content,
422
+ body.movingUI #expression-holder,
423
+ body.movingUI .zoomed_avatar,
424
+ body.movingUI .draggable,
425
+ body.movingUI #floatingPrompt {
426
+ resize: both;
427
+ }
428
+
429
+ #expression-image.default,
430
+ #expression-holder:has(.default) {
431
+ height: 120px;
432
+ margin-top: 0;
433
+ top: 50px;
434
+ justify-content: center;
435
+ }
436
+
437
+ /*No Text Shadows Mode*/
438
+
439
+ body.noShadows * {
440
+ text-shadow: none !important;
441
+ }
442
+
443
+ body.expandMessageActions .mes .mes_buttons .extraMesButtons {
444
+ display: inherit !important;
445
+ }
446
+
447
+ body.expandMessageActions .mes .mes_buttons .extraMesButtonsHint {
448
+ display: none !important;
449
+ }
450
+
451
+ #smooth_streaming:not(:checked)~#smooth_streaming_speed_control {
452
+ display: none;
453
+ }
454
+
455
+ #smooth_streaming:checked~#smooth_streaming_speed_control {
456
+ display: block;
457
+ }
public/css/world-info.css ADDED
@@ -0,0 +1,276 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .world_info_select_block {
2
+ display: flex;
3
+ flex-direction: row;
4
+ align-items: baseline;
5
+ gap: 5px;
6
+ }
7
+
8
+ .budget_cap_note {
9
+ flex-basis: 100%;
10
+ line-height: 0.1;
11
+ }
12
+
13
+ #world_popup {
14
+ min-height: 100px;
15
+ min-width: 100px;
16
+ left: 0;
17
+ right: 0;
18
+ flex-direction: column;
19
+ z-index: 3010;
20
+ overflow-y: hidden;
21
+ }
22
+
23
+ .WIEntryContentAndMemo {
24
+ width: 100% !important;
25
+ flex-wrap: nowrap !important;
26
+ }
27
+
28
+ .WIEntryContentAndMemo .world_entry_thin_controls {
29
+ flex: 1;
30
+ }
31
+
32
+ #world_popup_bottom_holder {
33
+ display: flex;
34
+ flex-flow: row;
35
+ justify-content: space-evenly;
36
+ align-items: center;
37
+ }
38
+
39
+ #world_popup_bottom_holder div {
40
+ width: fit-content;
41
+ user-select: none;
42
+ }
43
+
44
+ #form_rename_world {
45
+ display: flex;
46
+ align-items: center;
47
+ gap: 5px;
48
+ }
49
+
50
+ .world_popup_expander {
51
+ flex-grow: 1;
52
+ }
53
+
54
+ #world_popup_entries_list {
55
+ flex-grow: 1;
56
+ overflow-y: auto;
57
+ }
58
+
59
+ #world_popup_entries_list:empty {
60
+ width: 100%;
61
+ height: 100%;
62
+ }
63
+
64
+ #world_popup_entries_list:empty::before {
65
+ content: 'No entries found.';
66
+ font-size: calc(var(--mainFontSize) + .1rem);
67
+ font-weight: bolder;
68
+ width: 100%;
69
+ height: 100%;
70
+ display: flex;
71
+ justify-content: center;
72
+ align-items: center;
73
+ opacity: 0.8;
74
+ }
75
+
76
+ .world_entry_form_control {
77
+ display: flex;
78
+ flex-direction: column;
79
+ position: relative;
80
+ }
81
+
82
+ .world_entry_form_control .keyprimarytextpole,
83
+ .world_entry_form_control .keysecondarytextpole {
84
+ padding-right: 25px;
85
+ }
86
+
87
+ .world_entry_thin_controls {
88
+ display: flex;
89
+ flex-direction: row;
90
+ }
91
+
92
+ /* .world_entry_thin_controls>div {
93
+ flex: 1;
94
+ } */
95
+
96
+ .world_entry_form_control label h4 {
97
+ margin-bottom: 0;
98
+ margin-top: 0;
99
+ }
100
+
101
+ .world_entry_form_control label h5 {
102
+ margin-top: 3px;
103
+ margin-bottom: 3px;
104
+ }
105
+
106
+ .world_entry_form_control textarea {
107
+ height: auto;
108
+ margin-top: 0;
109
+ margin-bottom: 0;
110
+ min-height: calc(var(--mainFontSize) + 14px);
111
+ }
112
+
113
+ .delete_entry_button {
114
+ height: min-content;
115
+ }
116
+
117
+ .world_entry_form_control.world_entry_form_horizontal {
118
+ flex-direction: row;
119
+ align-items: center;
120
+ flex-wrap: wrap;
121
+ }
122
+
123
+ .world_entry .inline-drawer-header {
124
+ cursor: initial;
125
+ }
126
+
127
+ .world_entry .killSwitch {
128
+ cursor: pointer;
129
+ }
130
+
131
+ .world_entry_form_control input[type=button] {
132
+ cursor: pointer;
133
+ }
134
+
135
+ .world_entry_form_horizontal h5 {
136
+ margin: 0 1rem;
137
+ }
138
+
139
+ .world_entry_form_control .checkbox {
140
+ align-items: center;
141
+ display: flex;
142
+ flex-direction: row;
143
+ column-gap: 10px;
144
+ }
145
+
146
+ .world_entry_form_control .checkbox h4 {
147
+ margin: 0;
148
+ display: inline-block;
149
+ }
150
+
151
+ .world_entry_form_radios label {
152
+ margin-left: 0;
153
+ }
154
+
155
+ .world_entry_form_radios h4 {
156
+ display: inline;
157
+ }
158
+
159
+ #world_popup h5 {
160
+ color: var(--grey70);
161
+ }
162
+
163
+ /* possible place for WI Entry header styling */
164
+ /* .world_entry_form .inline-drawer-header {
165
+ background-color: var(--SmartThemeShadowColor);
166
+ } */
167
+
168
+ #world_editor_select {
169
+ text-overflow: ellipsis;
170
+ white-space: nowrap;
171
+ width: 10em;
172
+ }
173
+
174
+ #world_info_search {
175
+ width: 10em;
176
+ min-width: 10em;
177
+ flex-grow: 1;
178
+ }
179
+
180
+ #world_info_sort_order {
181
+ width: 7em;
182
+ }
183
+
184
+ .world_entry .killSwitch.fa-toggle-on {
185
+ color: var(--SmartThemeQuoteColor);
186
+ }
187
+
188
+ .wi-card-entry {
189
+ border: 1px solid;
190
+ border-color: var(--SmartThemeBorderColor);
191
+ border-radius: 10px;
192
+ padding: 0 5px;
193
+ margin-bottom: 1px;
194
+ }
195
+
196
+ .world_entry {
197
+ transition: opacity 500ms;
198
+ }
199
+
200
+ .disabledWIEntry {
201
+ opacity: 0.4;
202
+ filter: grayscale(1);
203
+ }
204
+
205
+ .disabledWIEntry:not(input):hover {
206
+ opacity: 1;
207
+ filter: grayscale(0.5);
208
+ }
209
+
210
+ .height32px {
211
+ height: 32px;
212
+ }
213
+
214
+ .WIEntryHeaderTitleMobile {
215
+ display: none;
216
+ }
217
+
218
+ span.select2-container .select2-selection__choice__display:has(> .regex_item),
219
+ span.select2-container .select2-results__option:has(> .result_block .regex_item) {
220
+ background-color: #D27D2D30;
221
+ }
222
+
223
+ .regex_item .regex_icon {
224
+ background-color: var(--black30a);
225
+ color: var(--SmartThemeBodyColor);
226
+ border: 1px solid var(--SmartThemeBorderColor);
227
+ border-radius: 7px;
228
+ font-weight: bold;
229
+ font-size: calc(var(--mainFontSize) * 0.75);
230
+ padding: 0px 3px;
231
+ position: relative;
232
+ top: -1px;
233
+ margin-right: 3px;
234
+ }
235
+
236
+ .select2-results__option .regex_item .regex_icon {
237
+ margin-right: 6px;
238
+ }
239
+
240
+ .select2-results__option .item_count {
241
+ margin-left: 10px;
242
+ float: right;
243
+ }
244
+
245
+ select.keyselect+span.select2-container .select2-selection--multiple {
246
+ padding-right: 30px;
247
+ }
248
+
249
+ .switch_input_type_icon {
250
+ cursor: pointer;
251
+ font-weight: bold;
252
+ height: 20px;
253
+ width: fit-content;
254
+ margin-right: 5px;
255
+ margin-top: calc(5px + var(--mainFontSize));
256
+ position: absolute;
257
+ right: 0;
258
+ padding: 1px;
259
+
260
+ background-color: transparent;
261
+ border: none;
262
+ font-size: 1em;
263
+
264
+ opacity: 0.5;
265
+ color: var(--SmartThemeBodyColor);
266
+ transition: opacity 0.3s;
267
+ }
268
+
269
+ .switch_input_type_icon:hover {
270
+ opacity: 1;
271
+ }
272
+
273
+ #wiCheckboxes {
274
+ align-self: center;
275
+ width: 100%;
276
+ }
public/favicon.ico ADDED
public/global.d.ts ADDED
@@ -0,0 +1,1408 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // Global namespace modules
2
+ declare var DOMPurify;
3
+ declare var droll;
4
+ declare var Handlebars;
5
+ declare var hljs;
6
+ declare var localforage;
7
+ declare var pdfjsLib;
8
+ declare var Popper;
9
+ declare var showdown;
10
+ declare var showdownKatex;
11
+ declare var SVGInject;
12
+ declare var Readability;
13
+ declare var isProbablyReaderable;
14
+ declare var ePub;
15
+ declare var ai;
16
+
17
+ declare var SillyTavern: {
18
+ getContext(): any;
19
+ llm: any;
20
+ };
21
+
22
+ // Jquery plugins
23
+ interface JQuery {
24
+ nanogallery2(options?: any): JQuery;
25
+ nanogallery2(method: string, options?: any): JQuery;
26
+ pagination(method: 'getCurrentPageNum'): number;
27
+ pagination(method: string, options?: any): JQuery;
28
+ pagination(options?: any): JQuery;
29
+ transition(options?: any, complete?: function): JQuery;
30
+ autocomplete(options?: any): JQuery;
31
+ autocomplete(method: string, options?: any): JQuery;
32
+ slider(options?: any): JQuery;
33
+ slider(method: string, func: string, options?: any): JQuery;
34
+ cropper(options?: any): JQuery;
35
+ izoomify(options?: any): JQuery;
36
+
37
+ //#region select2
38
+
39
+ /**
40
+ * Initializes or modifies a select2 instance with provided options
41
+ *
42
+ * @param options - Configuration options for the select2 instance
43
+ * @returns The jQuery object for chaining
44
+ */
45
+ select2(options?: Select2Options): JQuery;
46
+
47
+ /**
48
+ * Retrieves data currently selected in the select2 instance
49
+ *
50
+ * @param field - A string specifying the 'data' method
51
+ * @returns An array of selected items
52
+ */
53
+ select2(field: 'data'): any[];
54
+
55
+ /**
56
+ * Calls the specified select2 method
57
+ *
58
+ * @param method - The name of the select2 method to invoke
59
+ * @returns The jQuery object for chaining
60
+ */
61
+ select2(method: 'open' | 'close' | 'destroy' | 'focus' | 'val', value?: any): JQuery;
62
+
63
+ //#endregion
64
+
65
+ //#region sortable
66
+
67
+ /**
68
+ * Initializes or updates a sortable instance with the provided options
69
+ *
70
+ * @param options - Configuration options for the sortable instance
71
+ * @returns The jQuery object for chaining
72
+ */
73
+ sortable(options?: SortableOptions): JQuery;
74
+
75
+ /**
76
+ * Calls a sortable method to perform actions on the instance
77
+ *
78
+ * @param method - The name of the sortable method to invoke
79
+ * @returns The jQuery object for chaining
80
+ */
81
+ sortable(method: 'destroy' | 'disable' | 'enable' | 'refresh' | 'toArray'): JQuery;
82
+
83
+ /**
84
+ * Retrieves the sortable's instance object. If the element does not have an associated instance, undefined is returned.
85
+ *
86
+ * @returns The instance of the sortable object
87
+ */
88
+ sortable(method: 'instance'): object;
89
+
90
+ /**
91
+ * Retrieves the current option value for the specified option
92
+ *
93
+ * @param method - The string 'option' to retrieve an option value
94
+ * @param optionName - The name of the option to retrieve
95
+ * @returns The value of the specified option
96
+ */
97
+ sortable(method: 'option', optionName: string): any;
98
+
99
+ /**
100
+ * Sets the value of the specified option
101
+ *
102
+ * @param method - The string 'option' to set an option value
103
+ * @param optionName - The name of the option to set
104
+ * @param value - The value to assign to the option
105
+ * @returns The jQuery object for chaining
106
+ */
107
+ sortable(method: 'option', optionName: string, value: any): JQuery;
108
+
109
+ /**
110
+ * Sets multiple options using an object
111
+ *
112
+ * @param method - The string 'option' to set options
113
+ * @param options - An object containing multiple option key-value pairs
114
+ * @returns The jQuery object for chaining
115
+ */
116
+ sortable(method: 'option', options: SortableOptions): JQuery;
117
+
118
+ //#endregion
119
+ }
120
+
121
+ //#region Fuse
122
+
123
+ /**
124
+ * Fuse.js provides fast and flexible fuzzy searching
125
+ * @constructor
126
+ * @param list - The list of items to search through
127
+ * @param options - Configuration options for the search algorithm
128
+ */
129
+ declare var Fuse: {
130
+ new(list: any[], options?: FuseOptions): FuseInstance;
131
+ };
132
+
133
+ /** Instead of providing a (nested) key as a string, an object can be defined that can specify weight and a custom get function */
134
+ interface FuseKey {
135
+ /**
136
+ * The name of they key. Supports nested paths.
137
+ */
138
+ name: string;
139
+ /**
140
+ * You can allocate a weight to keys to give them higher (or lower) values in search results. The weight value has to be greater than 0. When a weight isn't provided, it will default to 1.
141
+ * @default 1
142
+ */
143
+ weight?: number;
144
+ /**
145
+ * Function to retrieve an object's value at the specified path. The default searches nested paths.
146
+ * @default (obj: T, path: string | string[]) => string | string[]
147
+ */
148
+ getFn?: (any) => string;
149
+ }
150
+
151
+ /** Configuration options for the Fuse search algorithm */
152
+ interface FuseOptions {
153
+ /**
154
+ * List of keys that will be searched. Supports nested paths, weighted search, and searching in arrays of strings and objects.
155
+ * @default []
156
+ */
157
+ keys?: string[] | FuseKey[];
158
+
159
+ /**
160
+ * How much distance one character can be from another to be considered a match.
161
+ * @default 100
162
+ */
163
+ distance?: number;
164
+
165
+ /**
166
+ * At what point the match algorithm gives up. A threshold of 0.0 requires a perfect match, while 1.0 matches everything.
167
+ * @default 0.6
168
+ */
169
+ threshold?: number;
170
+
171
+ /**
172
+ * Whether the score should be included in the result set. A score of 0 indicates a perfect match, while a score of 1 indicates a complete mismatch.
173
+ * @default false
174
+ */
175
+ includeScore?: boolean;
176
+
177
+ /**
178
+ * Indicates whether comparisons should be case-sensitive.
179
+ * @default false
180
+ */
181
+ isCaseSensitive?: boolean;
182
+
183
+ /**
184
+ * Whether the matches should be included in the result set. When true, each record in the result set will include the indices of matched characters.
185
+ * @default false
186
+ */
187
+ includeMatches?: boolean;
188
+
189
+ /**
190
+ * Only matches whose length exceeds this value will be returned.
191
+ * @default 1
192
+ */
193
+ minMatchCharLength?: number;
194
+
195
+ /**
196
+ * Whether to sort the result list by score.
197
+ * @default true
198
+ */
199
+ shouldSort?: boolean;
200
+
201
+ /**
202
+ * When true, the matching function will continue to the end of a search pattern even if a perfect match has already been found.
203
+ * @default false
204
+ */
205
+ findAllMatches?: boolean;
206
+
207
+ /**
208
+ * Determines approximately where in the text the pattern is expected to be found.
209
+ * @default 0
210
+ */
211
+ location?: number;
212
+
213
+ /**
214
+ * When true, search will ignore location and distance, so it won't matter where in the string the pattern appears.
215
+ * @default false
216
+ */
217
+ ignoreLocation?: boolean;
218
+
219
+ /**
220
+ * When true, it enables the use of Unix-like search commands.
221
+ * @default false
222
+ */
223
+ useExtendedSearch?: boolean;
224
+
225
+ /**
226
+ * Function to retrieve an object's value at the specified path. The default searches nested paths.
227
+ * @default (obj: T, path: string | string[]) => string | string[]
228
+ */
229
+ getFn?: (obj: any, path: string | string[]) => string | string[];
230
+
231
+ /**
232
+ * Function to sort the results. The default sorts by ascending relevance score.
233
+ * @default (a, b) => number
234
+ */
235
+ sortFn?: (a: any, b: any) => number;
236
+
237
+ /**
238
+ * When true, the calculation for the relevance score will ignore the field-length norm.
239
+ * @default false
240
+ */
241
+ ignoreFieldNorm?: boolean;
242
+
243
+ /**
244
+ * Determines how much the field-length norm affects scoring. 0 is equivalent to ignoring the field-length norm, while higher values increase the effect.
245
+ * @default 1
246
+ */
247
+ fieldNormWeight?: number;
248
+ }
249
+
250
+
251
+ /** Represents an individual Fuse search result */
252
+ interface FuseResult {
253
+ /** The original item that was matched */
254
+ item: any;
255
+ /** The index of the item from the original input collection that was searched */
256
+ refIndex: number;
257
+ /** The search score, where 0 is a perfect match and 1 is the worst */
258
+ score?: number;
259
+ /** Optional list of matched search keys */
260
+ matches?: Array<{ key: string; indices: [number, number][] }>;
261
+ }
262
+
263
+ /** Represents a Fuse instance, used for performing searches */
264
+ interface FuseInstance {
265
+ /**
266
+ * Searches through the list using the specified query.
267
+ * @param query - The search term or phrase to use
268
+ * @returns An array of search results matching the query
269
+ */
270
+ search(query: string): FuseResult[];
271
+ }
272
+
273
+ //#endregion
274
+
275
+ //#region select2
276
+
277
+ /** Options for configuring a select2 instance */
278
+ interface Select2Options {
279
+ /**
280
+ * Provides support for ajax data sources
281
+ * @param params - Parameters including the search term
282
+ * @param callback - A callback function to handle the results
283
+ * @default null
284
+ */
285
+ ajax?: {
286
+ url: string;
287
+ dataType?: string;
288
+ delay?: number;
289
+ data?: (params: any) => any;
290
+ processResults?: (data: any, params: any) => any;
291
+ } | { transport: (params, success, failure) => any };
292
+
293
+ /**
294
+ * Provides support for clearable selections
295
+ * @default false
296
+ */
297
+ allowClear?: boolean;
298
+
299
+ /**
300
+ * See Using Select2 with AMD or CommonJS loaders
301
+ * @default './i18n/'
302
+ */
303
+ amdLanguageBase?: string;
304
+
305
+ /**
306
+ * Controls whether the dropdown is closed after a selection is made
307
+ * @default true
308
+ */
309
+ closeOnSelect?: boolean;
310
+
311
+ /**
312
+ * Allows rendering dropdown options from an array
313
+ * @default null
314
+ */
315
+ data?: object[];
316
+
317
+ /**
318
+ * Used to override the built-in DataAdapter
319
+ * @default SelectAdapter
320
+ */
321
+ dataAdapter?: SelectAdapter;
322
+
323
+ /**
324
+ * Enable debugging messages in the browser console
325
+ * @default false
326
+ */
327
+ debug?: boolean;
328
+
329
+ /**
330
+ * Sets the dir attribute on the selection and dropdown containers to indicate the direction of the text
331
+ * @default 'ltr'
332
+ */
333
+ dir?: string;
334
+
335
+ /**
336
+ * When set to true, the select control will be disabled
337
+ * @default false
338
+ */
339
+ disabled?: boolean;
340
+
341
+ /**
342
+ * Used to override the built-in DropdownAdapter
343
+ * @default DropdownAdapter
344
+ */
345
+ dropdownAdapter?: DropdownAdapter;
346
+
347
+ /**
348
+ * @default false
349
+ */
350
+ dropdownAutoWidth?: boolean;
351
+
352
+ /**
353
+ * Adds additional CSS classes to the dropdown container. The helper :all: can be used to add all CSS classes present on the original <select> element.
354
+ * @default ''
355
+ */
356
+ dropdownCssClass?: string;
357
+
358
+ /**
359
+ * Allows you to customize placement of the dropdown
360
+ * @default $(document.body)
361
+ */
362
+ dropdownParent?: JQuery | HTMLElement;
363
+
364
+ /**
365
+ * Handles automatic escaping of content rendered by custom templates
366
+ * @default Utils.escapeMarkup
367
+ */
368
+ escapeMarkup?: function;
369
+
370
+ /**
371
+ * Specify the language used for Select2 messages
372
+ * @default EnglishTranslation
373
+ */
374
+ language?: string | object;
375
+
376
+ /**
377
+ * Handles custom search matching
378
+ * @default null
379
+ */
380
+ matcher?: (searchParams: object, data: object) => boolean;
381
+
382
+ /**
383
+ * Maximum number of characters that may be provided for a search term
384
+ * @default 0
385
+ */
386
+ maximumInputLength?: number;
387
+
388
+ /**
389
+ * The maximum number of items that may be selected in a multi-select control. If the value of this option is less than 1, the number of selected items will not be limited.
390
+ * @default 0
391
+ */
392
+ maximumSelectionLength?: number;
393
+
394
+ /**
395
+ * Minimum number of characters required to start a search
396
+ * @default 0
397
+ */
398
+ minimumInputLength?: number;
399
+
400
+ /**
401
+ * The minimum number of results required to display the search box
402
+ * @default 0
403
+ */
404
+ minimumResultsForSearch?: number;
405
+
406
+ /**
407
+ * This option enables multi-select (pillbox) mode. Select2 will automatically map the value of the multiple HTML attribute to this option during initialization.
408
+ * @default false
409
+ */
410
+ multiple?: boolean;
411
+
412
+ /**
413
+ * Specifies the placeholder for the control
414
+ * @default null
415
+ */
416
+ placeholder?: string;
417
+
418
+ /**
419
+ * Used to override the built-in ResultsAdapter
420
+ * @default ResultsAdapter
421
+ */
422
+ resultsAdapter?: ResultsAdapter;
423
+
424
+ /**
425
+ * Used to override the built-in SelectionAdapter
426
+ * @default SingleSelection | MultipleSelection
427
+ */
428
+ selectionAdapter?: SingleSelection | MultipleSelection;
429
+
430
+ /**
431
+ * Adds additional CSS classes to the selection container. The helper :all: can be used to add all CSS classes present on the original <select> element
432
+ * @default ''
433
+ */
434
+ selectionCssClass?: string;
435
+
436
+ /**
437
+ * Implements automatic selection when the dropdown is closed
438
+ * @default false
439
+ */
440
+ selectOnClose?: boolean;
441
+
442
+ sorter?: function;
443
+
444
+ /**
445
+ * When set to `true`, allows the user to create new tags that aren't pre-populated
446
+ * Used to enable free text responses
447
+ * @default false
448
+ */
449
+ tags?: boolean | object[];
450
+
451
+ /**
452
+ * Customizes the way that search results are rendered
453
+ * @param item - The item object to format
454
+ * @returns The formatted representation
455
+ * @default null
456
+ */
457
+ templateResult?: (item: any) => JQuery | string;
458
+
459
+ /**
460
+ * Customizes the way that selections are rendered
461
+ * @param item - The selected item object to format
462
+ * @returns The formatted representation
463
+ * @default null
464
+ */
465
+ templateSelection?: (item: any) => JQuery | string;
466
+
467
+ /**
468
+ * Allows you to set the theme
469
+ * @default 'default'
470
+ */
471
+ theme?: string;
472
+
473
+ /**
474
+ * A callback that handles automatic tokenization of free-text entry
475
+ * @default null
476
+ */
477
+ tokenizer?: (input: { _type: string, term: string }, selection: { options: object }, callback: (Select2Option) => any) => { term: string };
478
+
479
+ /**
480
+ * The list of characters that should be used as token separators
481
+ * @default null
482
+ */
483
+ tokenSeparators?: string[];
484
+
485
+ /**
486
+ * Supports customization of the container width
487
+ * @default 'resolve'
488
+ */
489
+ width?: string;
490
+
491
+ /**
492
+ * If true, resolves issue for multiselects using closeOnSelect: false that caused the list of results to scroll to the first selection after each select/unselect
493
+ * @default false
494
+ */
495
+ scrollAfterSelect?: boolean;
496
+
497
+ /**
498
+ * Extends Select2 v4 plugin by adding an option to set a placeholder for the 'search' input field
499
+ * [Custom Field]
500
+ * @default ''
501
+ */
502
+ searchInputPlaceholder?: string;
503
+
504
+ /**
505
+ * Extends select2 plugin by adding a custom css class for the 'searcH' input field
506
+ * [Custom Field]
507
+ * @default ''
508
+ */
509
+ searchInputCssClass?: string;
510
+ }
511
+
512
+ //#endregion
513
+
514
+ //#region sortable
515
+
516
+ /** Options for configuring a sortable instance */
517
+ interface SortableOptions {
518
+ /**
519
+ * When set, prevents the sortable items from being dragged unless clicked with a delay
520
+ * @default 0
521
+ */
522
+ delay?: number;
523
+
524
+ /**
525
+ * Class name for elements to handle sorting. Elements with this class can be dragged to sort.
526
+ * @default ''
527
+ */
528
+ handle?: string;
529
+
530
+ /**
531
+ * Whether to allow sorting between different connected lists
532
+ * @default false
533
+ */
534
+ connectWith?: string | boolean;
535
+
536
+ /**
537
+ * Function called when sorting starts
538
+ * @param event - The event object
539
+ * @param ui - The UI object containing the helper and position information
540
+ */
541
+ start?: (event: Event, ui: SortableUI) => void;
542
+
543
+ /**
544
+ * Function called when sorting stops
545
+ * @param event - The event object
546
+ * @param ui - The UI object containing the helper and position information
547
+ */
548
+ stop?: (event: Event, ui: SortableUI) => void;
549
+
550
+ /**
551
+ * Function called when sorting updates
552
+ * @param event - The event object
553
+ * @param ui - The UI object containing the helper and position information
554
+ */
555
+ update?: (event: Event, ui: SortableUI) => void;
556
+
557
+ /**
558
+ * Specifies which items inside the element should be sortable
559
+ * @default '> *'
560
+ */
561
+ items?: string;
562
+ }
563
+
564
+ /** UI object passed to sortable event handlers */
565
+ interface SortableUI {
566
+ /** jQuery object representing the helper element */
567
+ helper: JQuery;
568
+ /** The current position of the helper element */
569
+ position: { top: number; left: number };
570
+ /** Original position of the helper element */
571
+ originalPosition: { top: number; left: number };
572
+ /** jQuery object representing the item being sorted */
573
+ item: JQuery;
574
+ /** The placeholder element used during sorting */
575
+ placeholder: JQuery;
576
+ }
577
+
578
+ //#endregion
579
+
580
+ // MIT Licence. Copied from:
581
+ // https://github.com/moment/moment/blob/develop/ts3.1-typings/moment.d.ts
582
+ /**
583
+ * @param strict Strict parsing disables the deprecated fallback to the native Date constructor when
584
+ * parsing a string.
585
+ */
586
+ declare function moment(inp?: moment.MomentInput, strict?: boolean): moment.Moment;
587
+ /**
588
+ * @param strict Strict parsing requires that the format and input match exactly, including delimiters.
589
+ * Strict parsing is frequently the best parsing option. For more information about choosing strict vs
590
+ * forgiving parsing, see the [parsing guide](https://momentjs.com/guides/#/parsing/).
591
+ */
592
+ declare function moment(inp?: moment.MomentInput, format?: moment.MomentFormatSpecification, strict?: boolean): moment.Moment;
593
+ /**
594
+ * @param strict Strict parsing requires that the format and input match exactly, including delimiters.
595
+ * Strict parsing is frequently the best parsing option. For more information about choosing strict vs
596
+ * forgiving parsing, see the [parsing guide](https://momentjs.com/guides/#/parsing/).
597
+ */
598
+ declare function moment(inp?: moment.MomentInput, format?: moment.MomentFormatSpecification, language?: string, strict?: boolean): moment.Moment;
599
+
600
+ declare namespace moment {
601
+ type RelativeTimeKey = 's' | 'ss' | 'm' | 'mm' | 'h' | 'hh' | 'd' | 'dd' | 'w' | 'ww' | 'M' | 'MM' | 'y' | 'yy';
602
+ type CalendarKey = 'sameDay' | 'nextDay' | 'lastDay' | 'nextWeek' | 'lastWeek' | 'sameElse' | string;
603
+ type LongDateFormatKey = 'LTS' | 'LT' | 'L' | 'LL' | 'LLL' | 'LLLL' | 'lts' | 'lt' | 'l' | 'll' | 'lll' | 'llll';
604
+
605
+ interface Locale {
606
+ calendar(key?: CalendarKey, m?: Moment, now?: Moment): string;
607
+
608
+ longDateFormat(key: LongDateFormatKey): string;
609
+ invalidDate(): string;
610
+ ordinal(n: number): string;
611
+
612
+ preparse(inp: string): string;
613
+ postformat(inp: string): string;
614
+ relativeTime(n: number, withoutSuffix: boolean,
615
+ key: RelativeTimeKey, isFuture: boolean): string;
616
+ pastFuture(diff: number, absRelTime: string): string;
617
+ set(config: Object): void;
618
+
619
+ months(): string[];
620
+ months(m: Moment, format?: string): string;
621
+ monthsShort(): string[];
622
+ monthsShort(m: Moment, format?: string): string;
623
+ monthsParse(monthName: string, format: string, strict: boolean): number;
624
+ monthsRegex(strict: boolean): RegExp;
625
+ monthsShortRegex(strict: boolean): RegExp;
626
+
627
+ week(m: Moment): number;
628
+ firstDayOfYear(): number;
629
+ firstDayOfWeek(): number;
630
+
631
+ weekdays(): string[];
632
+ weekdays(m: Moment, format?: string): string;
633
+ weekdaysMin(): string[];
634
+ weekdaysMin(m: Moment): string;
635
+ weekdaysShort(): string[];
636
+ weekdaysShort(m: Moment): string;
637
+ weekdaysParse(weekdayName: string, format: string, strict: boolean): number;
638
+ weekdaysRegex(strict: boolean): RegExp;
639
+ weekdaysShortRegex(strict: boolean): RegExp;
640
+ weekdaysMinRegex(strict: boolean): RegExp;
641
+
642
+ isPM(input: string): boolean;
643
+ meridiem(hour: number, minute: number, isLower: boolean): string;
644
+ }
645
+
646
+ interface StandaloneFormatSpec {
647
+ format: string[];
648
+ standalone: string[];
649
+ isFormat?: RegExp;
650
+ }
651
+
652
+ interface WeekSpec {
653
+ dow: number;
654
+ doy?: number;
655
+ }
656
+
657
+ type CalendarSpecVal = string | ((m?: MomentInput, now?: Moment) => string);
658
+ interface CalendarSpec {
659
+ sameDay?: CalendarSpecVal;
660
+ nextDay?: CalendarSpecVal;
661
+ lastDay?: CalendarSpecVal;
662
+ nextWeek?: CalendarSpecVal;
663
+ lastWeek?: CalendarSpecVal;
664
+ sameElse?: CalendarSpecVal;
665
+
666
+ // any additional properties might be used with moment.calendarFormat
667
+ [x: string]: CalendarSpecVal | undefined;
668
+ }
669
+
670
+ type RelativeTimeSpecVal = (
671
+ string |
672
+ ((n: number, withoutSuffix: boolean,
673
+ key: RelativeTimeKey, isFuture: boolean) => string)
674
+ );
675
+ type RelativeTimeFuturePastVal = string | ((relTime: string) => string);
676
+
677
+ interface RelativeTimeSpec {
678
+ future?: RelativeTimeFuturePastVal;
679
+ past?: RelativeTimeFuturePastVal;
680
+ s?: RelativeTimeSpecVal;
681
+ ss?: RelativeTimeSpecVal;
682
+ m?: RelativeTimeSpecVal;
683
+ mm?: RelativeTimeSpecVal;
684
+ h?: RelativeTimeSpecVal;
685
+ hh?: RelativeTimeSpecVal;
686
+ d?: RelativeTimeSpecVal;
687
+ dd?: RelativeTimeSpecVal;
688
+ w?: RelativeTimeSpecVal;
689
+ ww?: RelativeTimeSpecVal;
690
+ M?: RelativeTimeSpecVal;
691
+ MM?: RelativeTimeSpecVal;
692
+ y?: RelativeTimeSpecVal;
693
+ yy?: RelativeTimeSpecVal;
694
+ }
695
+
696
+ interface LongDateFormatSpec {
697
+ LTS: string;
698
+ LT: string;
699
+ L: string;
700
+ LL: string;
701
+ LLL: string;
702
+ LLLL: string;
703
+
704
+ // lets forget for a sec that any upper/lower permutation will also work
705
+ lts?: string;
706
+ lt?: string;
707
+ l?: string;
708
+ ll?: string;
709
+ lll?: string;
710
+ llll?: string;
711
+ }
712
+
713
+ type MonthWeekdayFn = (momentToFormat: Moment, format?: string) => string;
714
+ type WeekdaySimpleFn = (momentToFormat: Moment) => string;
715
+
716
+ interface LocaleSpecification {
717
+ months?: string[] | StandaloneFormatSpec | MonthWeekdayFn;
718
+ monthsShort?: string[] | StandaloneFormatSpec | MonthWeekdayFn;
719
+
720
+ weekdays?: string[] | StandaloneFormatSpec | MonthWeekdayFn;
721
+ weekdaysShort?: string[] | StandaloneFormatSpec | WeekdaySimpleFn;
722
+ weekdaysMin?: string[] | StandaloneFormatSpec | WeekdaySimpleFn;
723
+
724
+ meridiemParse?: RegExp;
725
+ meridiem?: (hour: number, minute:number, isLower: boolean) => string;
726
+
727
+ isPM?: (input: string) => boolean;
728
+
729
+ longDateFormat?: LongDateFormatSpec;
730
+ calendar?: CalendarSpec;
731
+ relativeTime?: RelativeTimeSpec;
732
+ invalidDate?: string;
733
+ ordinal?: (n: number) => string;
734
+ ordinalParse?: RegExp;
735
+
736
+ week?: WeekSpec;
737
+
738
+ // Allow anything: in general any property that is passed as locale spec is
739
+ // put in the locale object so it can be used by locale functions
740
+ [x: string]: any;
741
+ }
742
+
743
+ interface MomentObjectOutput {
744
+ years: number;
745
+ /* One digit */
746
+ months: number;
747
+ /* Day of the month */
748
+ date: number;
749
+ hours: number;
750
+ minutes: number;
751
+ seconds: number;
752
+ milliseconds: number;
753
+ }
754
+ interface argThresholdOpts {
755
+ ss?: number;
756
+ s?: number;
757
+ m?: number;
758
+ h?: number;
759
+ d?: number;
760
+ w?: number | null;
761
+ M?: number;
762
+ }
763
+
764
+ interface Duration {
765
+ clone(): Duration;
766
+
767
+ humanize(argWithSuffix?: boolean, argThresholds?: argThresholdOpts): string;
768
+
769
+ humanize(argThresholds?: argThresholdOpts): string;
770
+
771
+ abs(): Duration;
772
+
773
+ as(units: unitOfTime.Base): number;
774
+ get(units: unitOfTime.Base): number;
775
+
776
+ milliseconds(): number;
777
+ asMilliseconds(): number;
778
+
779
+ seconds(): number;
780
+ asSeconds(): number;
781
+
782
+ minutes(): number;
783
+ asMinutes(): number;
784
+
785
+ hours(): number;
786
+ asHours(): number;
787
+
788
+ days(): number;
789
+ asDays(): number;
790
+
791
+ weeks(): number;
792
+ asWeeks(): number;
793
+
794
+ months(): number;
795
+ asMonths(): number;
796
+
797
+ years(): number;
798
+ asYears(): number;
799
+
800
+ add(inp?: DurationInputArg1, unit?: DurationInputArg2): Duration;
801
+ subtract(inp?: DurationInputArg1, unit?: DurationInputArg2): Duration;
802
+
803
+ locale(): string;
804
+ locale(locale: LocaleSpecifier): Duration;
805
+ localeData(): Locale;
806
+
807
+ toISOString(): string;
808
+ toJSON(): string;
809
+
810
+ isValid(): boolean;
811
+
812
+ /**
813
+ * @deprecated since version 2.8.0
814
+ */
815
+ lang(locale: LocaleSpecifier): Moment;
816
+ /**
817
+ * @deprecated since version 2.8.0
818
+ */
819
+ lang(): Locale;
820
+ /**
821
+ * @deprecated
822
+ */
823
+ toIsoString(): string;
824
+ }
825
+
826
+ interface MomentRelativeTime {
827
+ future: any;
828
+ past: any;
829
+ s: any;
830
+ ss: any;
831
+ m: any;
832
+ mm: any;
833
+ h: any;
834
+ hh: any;
835
+ d: any;
836
+ dd: any;
837
+ M: any;
838
+ MM: any;
839
+ y: any;
840
+ yy: any;
841
+ }
842
+
843
+ interface MomentLongDateFormat {
844
+ L: string;
845
+ LL: string;
846
+ LLL: string;
847
+ LLLL: string;
848
+ LT: string;
849
+ LTS: string;
850
+
851
+ l?: string;
852
+ ll?: string;
853
+ lll?: string;
854
+ llll?: string;
855
+ lt?: string;
856
+ lts?: string;
857
+ }
858
+
859
+ interface MomentParsingFlags {
860
+ empty: boolean;
861
+ unusedTokens: string[];
862
+ unusedInput: string[];
863
+ overflow: number;
864
+ charsLeftOver: number;
865
+ nullInput: boolean;
866
+ invalidMonth: string | null;
867
+ invalidFormat: boolean;
868
+ userInvalidated: boolean;
869
+ iso: boolean;
870
+ parsedDateParts: any[];
871
+ meridiem: string | null;
872
+ }
873
+
874
+ interface MomentParsingFlagsOpt {
875
+ empty?: boolean;
876
+ unusedTokens?: string[];
877
+ unusedInput?: string[];
878
+ overflow?: number;
879
+ charsLeftOver?: number;
880
+ nullInput?: boolean;
881
+ invalidMonth?: string;
882
+ invalidFormat?: boolean;
883
+ userInvalidated?: boolean;
884
+ iso?: boolean;
885
+ parsedDateParts?: any[];
886
+ meridiem?: string | null;
887
+ }
888
+
889
+ interface MomentBuiltinFormat {
890
+ __momentBuiltinFormatBrand: any;
891
+ }
892
+
893
+ type MomentFormatSpecification = string | MomentBuiltinFormat | (string | MomentBuiltinFormat)[];
894
+
895
+ namespace unitOfTime {
896
+ type Base = (
897
+ "year" | "years" | "y" |
898
+ "month" | "months" | "M" |
899
+ "week" | "weeks" | "w" |
900
+ "day" | "days" | "d" |
901
+ "hour" | "hours" | "h" |
902
+ "minute" | "minutes" | "m" |
903
+ "second" | "seconds" | "s" |
904
+ "millisecond" | "milliseconds" | "ms"
905
+ );
906
+
907
+ type _quarter = "quarter" | "quarters" | "Q";
908
+ type _isoWeek = "isoWeek" | "isoWeeks" | "W";
909
+ type _date = "date" | "dates" | "D";
910
+ type DurationConstructor = Base | _quarter;
911
+
912
+ type DurationAs = Base;
913
+
914
+ type StartOf = Base | _quarter | _isoWeek | _date | null;
915
+
916
+ type Diff = Base | _quarter;
917
+
918
+ type MomentConstructor = Base | _date;
919
+
920
+ type All = Base | _quarter | _isoWeek | _date |
921
+ "weekYear" | "weekYears" | "gg" |
922
+ "isoWeekYear" | "isoWeekYears" | "GG" |
923
+ "dayOfYear" | "dayOfYears" | "DDD" |
924
+ "weekday" | "weekdays" | "e" |
925
+ "isoWeekday" | "isoWeekdays" | "E";
926
+ }
927
+
928
+ interface MomentInputObject {
929
+ years?: number;
930
+ year?: number;
931
+ y?: number;
932
+
933
+ months?: number;
934
+ month?: number;
935
+ M?: number;
936
+
937
+ days?: number;
938
+ day?: number;
939
+ d?: number;
940
+
941
+ dates?: number;
942
+ date?: number;
943
+ D?: number;
944
+
945
+ hours?: number;
946
+ hour?: number;
947
+ h?: number;
948
+
949
+ minutes?: number;
950
+ minute?: number;
951
+ m?: number;
952
+
953
+ seconds?: number;
954
+ second?: number;
955
+ s?: number;
956
+
957
+ milliseconds?: number;
958
+ millisecond?: number;
959
+ ms?: number;
960
+ }
961
+
962
+ interface DurationInputObject extends MomentInputObject {
963
+ quarters?: number;
964
+ quarter?: number;
965
+ Q?: number;
966
+
967
+ weeks?: number;
968
+ week?: number;
969
+ w?: number;
970
+ }
971
+
972
+ interface MomentSetObject extends MomentInputObject {
973
+ weekYears?: number;
974
+ weekYear?: number;
975
+ gg?: number;
976
+
977
+ isoWeekYears?: number;
978
+ isoWeekYear?: number;
979
+ GG?: number;
980
+
981
+ quarters?: number;
982
+ quarter?: number;
983
+ Q?: number;
984
+
985
+ weeks?: number;
986
+ week?: number;
987
+ w?: number;
988
+
989
+ isoWeeks?: number;
990
+ isoWeek?: number;
991
+ W?: number;
992
+
993
+ dayOfYears?: number;
994
+ dayOfYear?: number;
995
+ DDD?: number;
996
+
997
+ weekdays?: number;
998
+ weekday?: number;
999
+ e?: number;
1000
+
1001
+ isoWeekdays?: number;
1002
+ isoWeekday?: number;
1003
+ E?: number;
1004
+ }
1005
+
1006
+ interface FromTo {
1007
+ from: MomentInput;
1008
+ to: MomentInput;
1009
+ }
1010
+
1011
+ type MomentInput = Moment | Date | string | number | (number | string)[] | MomentInputObject | null | undefined;
1012
+ type DurationInputArg1 = Duration | number | string | FromTo | DurationInputObject | null | undefined;
1013
+ type DurationInputArg2 = unitOfTime.DurationConstructor;
1014
+ type LocaleSpecifier = string | Moment | Duration | string[] | boolean;
1015
+
1016
+ interface MomentCreationData {
1017
+ input: MomentInput;
1018
+ format?: MomentFormatSpecification;
1019
+ locale: Locale;
1020
+ isUTC: boolean;
1021
+ strict?: boolean;
1022
+ }
1023
+
1024
+ interface Moment extends Object {
1025
+ format(format?: string): string;
1026
+
1027
+ startOf(unitOfTime: unitOfTime.StartOf): Moment;
1028
+ endOf(unitOfTime: unitOfTime.StartOf): Moment;
1029
+
1030
+ add(amount?: DurationInputArg1, unit?: DurationInputArg2): Moment;
1031
+ /**
1032
+ * @deprecated reverse syntax
1033
+ */
1034
+ add(unit: unitOfTime.DurationConstructor, amount: number|string): Moment;
1035
+
1036
+ subtract(amount?: DurationInputArg1, unit?: DurationInputArg2): Moment;
1037
+ /**
1038
+ * @deprecated reverse syntax
1039
+ */
1040
+ subtract(unit: unitOfTime.DurationConstructor, amount: number|string): Moment;
1041
+
1042
+ calendar(): string;
1043
+ calendar(formats: CalendarSpec): string;
1044
+ calendar(time?: MomentInput, formats?: CalendarSpec): string;
1045
+
1046
+ clone(): Moment;
1047
+
1048
+ /**
1049
+ * @return Unix timestamp in milliseconds
1050
+ */
1051
+ valueOf(): number;
1052
+
1053
+ // current date/time in local mode
1054
+ local(keepLocalTime?: boolean): Moment;
1055
+ isLocal(): boolean;
1056
+
1057
+ // current date/time in UTC mode
1058
+ utc(keepLocalTime?: boolean): Moment;
1059
+ isUTC(): boolean;
1060
+ /**
1061
+ * @deprecated use isUTC
1062
+ */
1063
+ isUtc(): boolean;
1064
+
1065
+ parseZone(): Moment;
1066
+ isValid(): boolean;
1067
+ invalidAt(): number;
1068
+
1069
+ hasAlignedHourOffset(other?: MomentInput): boolean;
1070
+
1071
+ creationData(): MomentCreationData;
1072
+ parsingFlags(): MomentParsingFlags;
1073
+
1074
+ year(y: number): Moment;
1075
+ year(): number;
1076
+ /**
1077
+ * @deprecated use year(y)
1078
+ */
1079
+ years(y: number): Moment;
1080
+ /**
1081
+ * @deprecated use year()
1082
+ */
1083
+ years(): number;
1084
+ quarter(): number;
1085
+ quarter(q: number): Moment;
1086
+ quarters(): number;
1087
+ quarters(q: number): Moment;
1088
+ month(M: number|string): Moment;
1089
+ month(): number;
1090
+ /**
1091
+ * @deprecated use month(M)
1092
+ */
1093
+ months(M: number|string): Moment;
1094
+ /**
1095
+ * @deprecated use month()
1096
+ */
1097
+ months(): number;
1098
+ day(d: number|string): Moment;
1099
+ day(): number;
1100
+ days(d: number|string): Moment;
1101
+ days(): number;
1102
+ date(d: number): Moment;
1103
+ date(): number;
1104
+ /**
1105
+ * @deprecated use date(d)
1106
+ */
1107
+ dates(d: number): Moment;
1108
+ /**
1109
+ * @deprecated use date()
1110
+ */
1111
+ dates(): number;
1112
+ hour(h: number): Moment;
1113
+ hour(): number;
1114
+ hours(h: number): Moment;
1115
+ hours(): number;
1116
+ minute(m: number): Moment;
1117
+ minute(): number;
1118
+ minutes(m: number): Moment;
1119
+ minutes(): number;
1120
+ second(s: number): Moment;
1121
+ second(): number;
1122
+ seconds(s: number): Moment;
1123
+ seconds(): number;
1124
+ millisecond(ms: number): Moment;
1125
+ millisecond(): number;
1126
+ milliseconds(ms: number): Moment;
1127
+ milliseconds(): number;
1128
+ weekday(): number;
1129
+ weekday(d: number): Moment;
1130
+ isoWeekday(): number;
1131
+ isoWeekday(d: number|string): Moment;
1132
+ weekYear(): number;
1133
+ weekYear(d: number): Moment;
1134
+ isoWeekYear(): number;
1135
+ isoWeekYear(d: number): Moment;
1136
+ week(): number;
1137
+ week(d: number): Moment;
1138
+ weeks(): number;
1139
+ weeks(d: number): Moment;
1140
+ isoWeek(): number;
1141
+ isoWeek(d: number): Moment;
1142
+ isoWeeks(): number;
1143
+ isoWeeks(d: number): Moment;
1144
+ weeksInYear(): number;
1145
+ isoWeeksInYear(): number;
1146
+ isoWeeksInISOWeekYear(): number;
1147
+ dayOfYear(): number;
1148
+ dayOfYear(d: number): Moment;
1149
+
1150
+ from(inp: MomentInput, suffix?: boolean): string;
1151
+ to(inp: MomentInput, suffix?: boolean): string;
1152
+ fromNow(withoutSuffix?: boolean): string;
1153
+ toNow(withoutPrefix?: boolean): string;
1154
+
1155
+ diff(b: MomentInput, unitOfTime?: unitOfTime.Diff, precise?: boolean): number;
1156
+
1157
+ toArray(): [number, number, number, number, number, number, number];
1158
+ toDate(): Date;
1159
+ toISOString(keepOffset?: boolean): string;
1160
+ inspect(): string;
1161
+ toJSON(): string;
1162
+ unix(): number;
1163
+
1164
+ isLeapYear(): boolean;
1165
+ /**
1166
+ * @deprecated in favor of utcOffset
1167
+ */
1168
+ zone(): number;
1169
+ zone(b: number|string): Moment;
1170
+ utcOffset(): number;
1171
+ utcOffset(b: number|string, keepLocalTime?: boolean): Moment;
1172
+ isUtcOffset(): boolean;
1173
+ daysInMonth(): number;
1174
+ isDST(): boolean;
1175
+
1176
+ zoneAbbr(): string;
1177
+ zoneName(): string;
1178
+
1179
+ isBefore(inp?: MomentInput, granularity?: unitOfTime.StartOf): boolean;
1180
+ isAfter(inp?: MomentInput, granularity?: unitOfTime.StartOf): boolean;
1181
+ isSame(inp?: MomentInput, granularity?: unitOfTime.StartOf): boolean;
1182
+ isSameOrAfter(inp?: MomentInput, granularity?: unitOfTime.StartOf): boolean;
1183
+ isSameOrBefore(inp?: MomentInput, granularity?: unitOfTime.StartOf): boolean;
1184
+ isBetween(a: MomentInput, b: MomentInput, granularity?: unitOfTime.StartOf, inclusivity?: "()" | "[)" | "(]" | "[]"): boolean;
1185
+
1186
+ /**
1187
+ * @deprecated as of 2.8.0, use locale
1188
+ */
1189
+ lang(language: LocaleSpecifier): Moment;
1190
+ /**
1191
+ * @deprecated as of 2.8.0, use locale
1192
+ */
1193
+ lang(): Locale;
1194
+
1195
+ locale(): string;
1196
+ locale(locale: LocaleSpecifier): Moment;
1197
+
1198
+ localeData(): Locale;
1199
+
1200
+ /**
1201
+ * @deprecated no reliable implementation
1202
+ */
1203
+ isDSTShifted(): boolean;
1204
+
1205
+ // NOTE(constructor): Same as moment constructor
1206
+ /**
1207
+ * @deprecated as of 2.7.0, use moment.min/max
1208
+ */
1209
+ max(inp?: MomentInput, format?: MomentFormatSpecification, strict?: boolean): Moment;
1210
+ /**
1211
+ * @deprecated as of 2.7.0, use moment.min/max
1212
+ */
1213
+ max(inp?: MomentInput, format?: MomentFormatSpecification, language?: string, strict?: boolean): Moment;
1214
+
1215
+ // NOTE(constructor): Same as moment constructor
1216
+ /**
1217
+ * @deprecated as of 2.7.0, use moment.min/max
1218
+ */
1219
+ min(inp?: MomentInput, format?: MomentFormatSpecification, strict?: boolean): Moment;
1220
+ /**
1221
+ * @deprecated as of 2.7.0, use moment.min/max
1222
+ */
1223
+ min(inp?: MomentInput, format?: MomentFormatSpecification, language?: string, strict?: boolean): Moment;
1224
+
1225
+ get(unit: unitOfTime.All): number;
1226
+ set(unit: unitOfTime.All, value: number): Moment;
1227
+ set(objectLiteral: MomentSetObject): Moment;
1228
+
1229
+ toObject(): MomentObjectOutput;
1230
+ }
1231
+
1232
+ export var version: string;
1233
+ export var fn: Moment;
1234
+
1235
+ // NOTE(constructor): Same as moment constructor
1236
+ /**
1237
+ * @param strict Strict parsing disables the deprecated fallback to the native Date constructor when
1238
+ * parsing a string.
1239
+ */
1240
+ export function utc(inp?: MomentInput, strict?: boolean): Moment;
1241
+ /**
1242
+ * @param strict Strict parsing requires that the format and input match exactly, including delimiters.
1243
+ * Strict parsing is frequently the best parsing option. For more information about choosing strict vs
1244
+ * forgiving parsing, see the [parsing guide](https://momentjs.com/guides/#/parsing/).
1245
+ */
1246
+ export function utc(inp?: MomentInput, format?: MomentFormatSpecification, strict?: boolean): Moment;
1247
+ /**
1248
+ * @param strict Strict parsing requires that the format and input match exactly, including delimiters.
1249
+ * Strict parsing is frequently the best parsing option. For more information about choosing strict vs
1250
+ * forgiving parsing, see the [parsing guide](https://momentjs.com/guides/#/parsing/).
1251
+ */
1252
+ export function utc(inp?: MomentInput, format?: MomentFormatSpecification, language?: string, strict?: boolean): Moment;
1253
+
1254
+ export function unix(timestamp: number): Moment;
1255
+
1256
+ export function invalid(flags?: MomentParsingFlagsOpt): Moment;
1257
+ export function isMoment(m: any): m is Moment;
1258
+ export function isDate(m: any): m is Date;
1259
+ export function isDuration(d: any): d is Duration;
1260
+
1261
+ /**
1262
+ * @deprecated in 2.8.0
1263
+ */
1264
+ export function lang(language?: string): string;
1265
+ /**
1266
+ * @deprecated in 2.8.0
1267
+ */
1268
+ export function lang(language?: string, definition?: Locale): string;
1269
+
1270
+ export function locale(language?: string): string;
1271
+ export function locale(language?: string[]): string;
1272
+ export function locale(language?: string, definition?: LocaleSpecification | null | undefined): string;
1273
+
1274
+ export function localeData(key?: string | string[]): Locale;
1275
+
1276
+ export function duration(inp?: DurationInputArg1, unit?: DurationInputArg2): Duration;
1277
+
1278
+ // NOTE(constructor): Same as moment constructor
1279
+ export function parseZone(inp?: MomentInput, format?: MomentFormatSpecification, strict?: boolean): Moment;
1280
+ export function parseZone(inp?: MomentInput, format?: MomentFormatSpecification, language?: string, strict?: boolean): Moment;
1281
+
1282
+ export function months(): string[];
1283
+ export function months(index: number): string;
1284
+ export function months(format: string): string[];
1285
+ export function months(format: string, index: number): string;
1286
+ export function monthsShort(): string[];
1287
+ export function monthsShort(index: number): string;
1288
+ export function monthsShort(format: string): string[];
1289
+ export function monthsShort(format: string, index: number): string;
1290
+
1291
+ export function weekdays(): string[];
1292
+ export function weekdays(index: number): string;
1293
+ export function weekdays(format: string): string[];
1294
+ export function weekdays(format: string, index: number): string;
1295
+ export function weekdays(localeSorted: boolean): string[];
1296
+ export function weekdays(localeSorted: boolean, index: number): string;
1297
+ export function weekdays(localeSorted: boolean, format: string): string[];
1298
+ export function weekdays(localeSorted: boolean, format: string, index: number): string;
1299
+ export function weekdaysShort(): string[];
1300
+ export function weekdaysShort(index: number): string;
1301
+ export function weekdaysShort(format: string): string[];
1302
+ export function weekdaysShort(format: string, index: number): string;
1303
+ export function weekdaysShort(localeSorted: boolean): string[];
1304
+ export function weekdaysShort(localeSorted: boolean, index: number): string;
1305
+ export function weekdaysShort(localeSorted: boolean, format: string): string[];
1306
+ export function weekdaysShort(localeSorted: boolean, format: string, index: number): string;
1307
+ export function weekdaysMin(): string[];
1308
+ export function weekdaysMin(index: number): string;
1309
+ export function weekdaysMin(format: string): string[];
1310
+ export function weekdaysMin(format: string, index: number): string;
1311
+ export function weekdaysMin(localeSorted: boolean): string[];
1312
+ export function weekdaysMin(localeSorted: boolean, index: number): string;
1313
+ export function weekdaysMin(localeSorted: boolean, format: string): string[];
1314
+ export function weekdaysMin(localeSorted: boolean, format: string, index: number): string;
1315
+
1316
+ export function min(moments: Moment[]): Moment;
1317
+ export function min(...moments: Moment[]): Moment;
1318
+ export function max(moments: Moment[]): Moment;
1319
+ export function max(...moments: Moment[]): Moment;
1320
+
1321
+ /**
1322
+ * Returns unix time in milliseconds. Overwrite for profit.
1323
+ */
1324
+ export function now(): number;
1325
+
1326
+ export function defineLocale(language: string, localeSpec: LocaleSpecification | null): Locale;
1327
+ export function updateLocale(language: string, localeSpec: LocaleSpecification | null): Locale;
1328
+
1329
+ export function locales(): string[];
1330
+
1331
+ export function normalizeUnits(unit: unitOfTime.All): string;
1332
+ export function relativeTimeThreshold(threshold: string): number | boolean;
1333
+ export function relativeTimeThreshold(threshold: string, limit: number): boolean;
1334
+ export function relativeTimeRounding(fn: (num: number) => number): boolean;
1335
+ export function relativeTimeRounding(): (num: number) => number;
1336
+ export function calendarFormat(m: Moment, now: Moment): string;
1337
+
1338
+ export function parseTwoDigitYear(input: string): number;
1339
+ /**
1340
+ * Constant used to enable explicit ISO_8601 format parsing.
1341
+ */
1342
+ export var ISO_8601: MomentBuiltinFormat;
1343
+ export var RFC_2822: MomentBuiltinFormat;
1344
+
1345
+ export var defaultFormat: string;
1346
+ export var defaultFormatUtc: string;
1347
+
1348
+ export var suppressDeprecationWarnings: boolean;
1349
+ export var deprecationHandler: ((name: string | null, msg: string) => void) | null | undefined;
1350
+
1351
+ export var HTML5_FMT: {
1352
+ DATETIME_LOCAL: string,
1353
+ DATETIME_LOCAL_SECONDS: string,
1354
+ DATETIME_LOCAL_MS: string,
1355
+ DATE: string,
1356
+ TIME: string,
1357
+ TIME_SECONDS: string,
1358
+ TIME_MS: string,
1359
+ WEEK: string,
1360
+ MONTH: string
1361
+ };
1362
+
1363
+ }
1364
+
1365
+ declare global {
1366
+ const moment: typeof moment;
1367
+ }
1368
+
1369
+ /**
1370
+ * Callback data for the `LLM_FUNCTION_TOOL_REGISTER` event type that is triggered when a function tool can be registered.
1371
+ */
1372
+ interface FunctionToolRegister {
1373
+ /**
1374
+ * The type of generation that is being used
1375
+ */
1376
+ type?: string;
1377
+ /**
1378
+ * Generation data, including messages and sampling parameters
1379
+ */
1380
+ data: Record<string, object>;
1381
+ /**
1382
+ * Callback to register an LLM function tool.
1383
+ */
1384
+ registerFunctionTool: typeof registerFunctionTool;
1385
+ }
1386
+
1387
+ /**
1388
+ * Callback data for the `LLM_FUNCTION_TOOL_REGISTER` event type that is triggered when a function tool is registered.
1389
+ * @param name Name of the function tool to register
1390
+ * @param description Description of the function tool
1391
+ * @param params JSON schema for the parameters of the function tool
1392
+ * @param required Whether the function tool should be forced to be used
1393
+ */
1394
+ declare function registerFunctionTool(name: string, description: string, params: object, required: boolean): Promise<void>;
1395
+
1396
+ /**
1397
+ * Callback data for the `LLM_FUNCTION_TOOL_CALL` event type that is triggered when a function tool is called.
1398
+ */
1399
+ interface FunctionToolCall {
1400
+ /**
1401
+ * Name of the function tool to call
1402
+ */
1403
+ name: string;
1404
+ /**
1405
+ * JSON object with the parameters to pass to the function tool
1406
+ */
1407
+ arguments: string;
1408
+ }
public/img/01ai.svg ADDED
public/img/No-Image-Placeholder.svg ADDED
public/img/addbg3.png ADDED
public/img/ai21.svg ADDED
public/img/ai4.png ADDED
public/img/aphrodite.svg ADDED
public/img/apple-icon-114x114.png ADDED
public/img/apple-icon-144x144.png ADDED
public/img/apple-icon-57x57.png ADDED
public/img/apple-icon-72x72.png ADDED
public/img/blockentropy.svg ADDED
public/img/claude.svg ADDED
public/img/cohere.svg ADDED
public/img/custom.svg ADDED
public/img/default-expressions/admiration.png ADDED
public/img/default-expressions/amusement.png ADDED
public/img/default-expressions/anger.png ADDED
public/img/default-expressions/annoyance.png ADDED
public/img/default-expressions/approval.png ADDED
public/img/default-expressions/caring.png ADDED
public/img/default-expressions/confusion.png ADDED