@weavy/uikit-react 11.1.0 → 13.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (256) hide show
  1. package/.github/workflows/publish.yml +1 -1
  2. package/README.md +3 -4
  3. package/changelog.md +57 -0
  4. package/dist/cjs/index.js +28 -6
  5. package/dist/cjs/index.js.map +1 -1
  6. package/dist/cjs/types/client/WeavyClient.d.ts +8 -1
  7. package/dist/cjs/types/components/Attachment.d.ts +2 -1
  8. package/dist/cjs/types/components/Chat.d.ts +1 -1
  9. package/dist/cjs/types/components/Image.d.ts +2 -0
  10. package/dist/cjs/types/components/PdfViewer.d.ts +8 -0
  11. package/dist/cjs/types/components/Preview.d.ts +56 -0
  12. package/dist/cjs/types/contexts/MessengerContext.d.ts +1 -2
  13. package/dist/cjs/types/contexts/PreviewContext.d.ts +2 -1
  14. package/dist/cjs/types/contexts/WeavyContext.d.ts +2 -3
  15. package/dist/cjs/types/types/Chat.d.ts +1 -1
  16. package/dist/cjs/types/types/Messenger.d.ts +0 -1
  17. package/dist/cjs/types/types/types.d.ts +18 -8
  18. package/dist/cjs/types/ui/Spinner.d.ts +9 -0
  19. package/dist/cjs/types/utils/fileUtilities.d.ts +13 -1
  20. package/dist/css/weavy-chat.css +2860 -0
  21. package/dist/css/weavy-messenger.css +3217 -0
  22. package/dist/css/weavy.css +3217 -0
  23. package/dist/esm/index.js +28 -6
  24. package/dist/esm/index.js.map +1 -1
  25. package/dist/esm/types/client/WeavyClient.d.ts +8 -1
  26. package/dist/esm/types/components/Attachment.d.ts +2 -1
  27. package/dist/esm/types/components/Chat.d.ts +1 -1
  28. package/dist/esm/types/components/Image.d.ts +2 -0
  29. package/dist/esm/types/components/PdfViewer.d.ts +8 -0
  30. package/dist/esm/types/components/Preview.d.ts +56 -0
  31. package/dist/esm/types/contexts/MessengerContext.d.ts +1 -2
  32. package/dist/esm/types/contexts/PreviewContext.d.ts +2 -1
  33. package/dist/esm/types/contexts/WeavyContext.d.ts +2 -3
  34. package/dist/esm/types/types/Chat.d.ts +1 -1
  35. package/dist/esm/types/types/Messenger.d.ts +0 -1
  36. package/dist/esm/types/types/types.d.ts +18 -8
  37. package/dist/esm/types/ui/Spinner.d.ts +9 -0
  38. package/dist/esm/types/utils/fileUtilities.d.ts +13 -1
  39. package/dist/index.d.ts +15 -9
  40. package/package.json +14 -4
  41. package/rollup.config.js +3 -3
  42. package/src/client/WeavyClient.ts +105 -24
  43. package/src/components/Attachment.tsx +8 -8
  44. package/src/components/Avatar.tsx +2 -3
  45. package/src/components/Chat.tsx +13 -17
  46. package/src/components/Conversation.tsx +23 -32
  47. package/src/components/ConversationBadge.tsx +1 -2
  48. package/src/components/ConversationForm.tsx +11 -18
  49. package/src/components/ConversationList.tsx +4 -5
  50. package/src/components/ConversationListItem.tsx +11 -13
  51. package/src/components/FileBrowser.tsx +2 -3
  52. package/src/components/Image.tsx +39 -7
  53. package/src/components/MeetingCard.tsx +7 -8
  54. package/src/components/Message.tsx +13 -14
  55. package/src/components/Messages.tsx +7 -8
  56. package/src/components/Messenger.tsx +5 -6
  57. package/src/components/NewConversation.tsx +5 -7
  58. package/src/components/PdfViewer.tsx +276 -0
  59. package/src/components/Presence.tsx +2 -2
  60. package/src/components/Preview.tsx +355 -0
  61. package/src/components/Reactions.tsx +8 -8
  62. package/src/components/SearchUsers.tsx +19 -18
  63. package/src/components/SeenBy.tsx +1 -2
  64. package/src/contexts/MessengerContext.tsx +4 -12
  65. package/src/contexts/PreviewContext.tsx +89 -17
  66. package/src/contexts/WeavyContext.tsx +15 -5
  67. package/src/hooks/useBadge.ts +2 -6
  68. package/src/hooks/useChat.ts +3 -14
  69. package/src/hooks/useConversation.ts +1 -8
  70. package/src/hooks/useConversations.ts +1 -7
  71. package/src/hooks/useFileUploader.ts +6 -8
  72. package/src/hooks/useMembers.ts +1 -7
  73. package/src/hooks/useMessages.ts +1 -7
  74. package/src/hooks/useMutateChat.ts +6 -11
  75. package/src/hooks/useMutateConversation.ts +7 -10
  76. package/src/hooks/useMutateConversationName.ts +10 -12
  77. package/src/hooks/useMutateDeleteReaction.ts +3 -8
  78. package/src/hooks/useMutateExternalBlobs.ts +6 -11
  79. package/src/hooks/useMutateMeeting.ts +6 -11
  80. package/src/hooks/useMutateMembers.ts +8 -13
  81. package/src/hooks/useMutateMessage.ts +10 -15
  82. package/src/hooks/useMutatePinned.ts +3 -8
  83. package/src/hooks/useMutateReaction.ts +6 -12
  84. package/src/hooks/useMutateRead.ts +1 -10
  85. package/src/hooks/useMutateRemoveMembers.ts +7 -12
  86. package/src/hooks/useMutateTyping.ts +6 -11
  87. package/src/hooks/usePresence.ts +4 -5
  88. package/src/hooks/useReactions.ts +0 -1
  89. package/src/hooks/useSearchUsers.ts +1 -6
  90. package/src/hooks/useUser.ts +3 -14
  91. package/src/index.ts +2 -2
  92. package/src/scss/theme/_alert.scss +73 -0
  93. package/src/scss/theme/_appbar.scss +114 -0
  94. package/src/scss/theme/_attachments.scss +74 -0
  95. package/src/scss/theme/_avatar.scss +54 -0
  96. package/src/scss/theme/_badge.scss +47 -0
  97. package/src/scss/theme/_buttons.scss +96 -0
  98. package/src/scss/theme/_card.scss +7 -0
  99. package/src/scss/theme/_checkbox.scss +56 -0
  100. package/src/scss/theme/_cm-editor.scss +42 -0
  101. package/src/scss/theme/_code-vscode-dark.scss +184 -0
  102. package/src/scss/theme/_code-vscode-light.scss +179 -0
  103. package/src/scss/theme/_code.scss +12 -0
  104. package/src/scss/theme/_colors.scss +520 -0
  105. package/src/scss/theme/_config.scss +6 -0
  106. package/src/scss/theme/_content.scss +15 -0
  107. package/src/scss/theme/_conversations.scss +91 -0
  108. package/src/scss/theme/_dropdown.scss +86 -0
  109. package/src/scss/theme/_emoji.scss +5 -0
  110. package/src/scss/theme/_filebrowser.scss +26 -0
  111. package/src/scss/theme/_files.scss +140 -0
  112. package/src/scss/theme/_icons.scss +62 -0
  113. package/src/scss/theme/_image-grid.scss +63 -0
  114. package/src/scss/theme/_inputs.scss +28 -0
  115. package/src/scss/theme/_message-editor.scss +90 -0
  116. package/src/scss/theme/_messages.scss +238 -0
  117. package/src/scss/theme/_nav.scss +52 -0
  118. package/src/scss/theme/_overlays.scss +157 -0
  119. package/src/scss/theme/_pager.scss +19 -0
  120. package/src/scss/theme/_palette.scss +165 -0
  121. package/src/scss/theme/_pane.scss +16 -0
  122. package/src/scss/theme/_panels.scss +141 -0
  123. package/src/scss/theme/_picker-list.scss +37 -0
  124. package/src/scss/theme/_preview-code.scss +5 -0
  125. package/src/scss/theme/_preview-embed.scss +38 -0
  126. package/src/scss/theme/_preview-html.scss +7 -0
  127. package/src/scss/theme/_preview-icon.scss +41 -0
  128. package/src/scss/theme/_preview-image.scss +86 -0
  129. package/src/scss/theme/_preview-media.scss +28 -0
  130. package/src/scss/theme/_preview-pdf.scss +838 -0
  131. package/src/scss/theme/_preview-text.scss +5 -0
  132. package/src/scss/theme/_preview.scss +110 -0
  133. package/src/scss/theme/_reactions.scss +58 -0
  134. package/src/scss/theme/_reboot.scss +41 -0
  135. package/src/scss/theme/_root.scss +2 -0
  136. package/src/scss/theme/_scroll.scss +55 -0
  137. package/src/scss/theme/_search.scss +68 -0
  138. package/src/scss/theme/_spinner.scss +63 -0
  139. package/src/scss/theme/_tables.scss +53 -0
  140. package/src/scss/theme/_toasts.scss +47 -0
  141. package/src/scss/theme/_turbo.scss +17 -0
  142. package/src/scss/theme/_typing.scss +26 -0
  143. package/src/scss/theme/_variables.scss +139 -0
  144. package/src/scss/theme/bootstrap/_accordion.scss +146 -0
  145. package/src/scss/theme/bootstrap/_alert.scss +71 -0
  146. package/src/scss/theme/bootstrap/_badge.scss +38 -0
  147. package/src/scss/theme/bootstrap/_breadcrumb.scss +40 -0
  148. package/src/scss/theme/bootstrap/_button-group.scss +142 -0
  149. package/src/scss/theme/bootstrap/_buttons.scss +186 -0
  150. package/src/scss/theme/bootstrap/_card.scss +234 -0
  151. package/src/scss/theme/bootstrap/_carousel.scss +229 -0
  152. package/src/scss/theme/bootstrap/_close.scss +40 -0
  153. package/src/scss/theme/bootstrap/_containers.scss +41 -0
  154. package/src/scss/theme/bootstrap/_dropdown.scss +248 -0
  155. package/src/scss/theme/bootstrap/_forms.scss +9 -0
  156. package/src/scss/theme/bootstrap/_functions.scss +302 -0
  157. package/src/scss/theme/bootstrap/_grid.scss +33 -0
  158. package/src/scss/theme/bootstrap/_helpers.scss +10 -0
  159. package/src/scss/theme/bootstrap/_images.scss +42 -0
  160. package/src/scss/theme/bootstrap/_list-group.scss +191 -0
  161. package/src/scss/theme/bootstrap/_maps.scss +54 -0
  162. package/src/scss/theme/bootstrap/_mixins.scss +43 -0
  163. package/src/scss/theme/bootstrap/_modal.scss +237 -0
  164. package/src/scss/theme/bootstrap/_nav.scss +172 -0
  165. package/src/scss/theme/bootstrap/_navbar.scss +276 -0
  166. package/src/scss/theme/bootstrap/_offcanvas.scss +143 -0
  167. package/src/scss/theme/bootstrap/_pagination.scss +109 -0
  168. package/src/scss/theme/bootstrap/_placeholders.scss +51 -0
  169. package/src/scss/theme/bootstrap/_popover.scss +196 -0
  170. package/src/scss/theme/bootstrap/_progress.scss +59 -0
  171. package/src/scss/theme/bootstrap/_reboot.scss +610 -0
  172. package/src/scss/theme/bootstrap/_root.scss +73 -0
  173. package/src/scss/theme/bootstrap/_spinners.scss +85 -0
  174. package/src/scss/theme/bootstrap/_tables.scss +164 -0
  175. package/src/scss/theme/bootstrap/_toasts.scss +70 -0
  176. package/src/scss/theme/bootstrap/_tooltip.scss +120 -0
  177. package/src/scss/theme/bootstrap/_transitions.scss +27 -0
  178. package/src/scss/theme/bootstrap/_type.scss +106 -0
  179. package/src/scss/theme/bootstrap/_utilities.scss +647 -0
  180. package/src/scss/theme/bootstrap/_variables.scss +1633 -0
  181. package/src/scss/theme/bootstrap/forms/_floating-labels.scss +74 -0
  182. package/src/scss/theme/bootstrap/forms/_form-check.scss +175 -0
  183. package/src/scss/theme/bootstrap/forms/_form-control.scss +194 -0
  184. package/src/scss/theme/bootstrap/forms/_form-range.scss +91 -0
  185. package/src/scss/theme/bootstrap/forms/_form-select.scss +71 -0
  186. package/src/scss/theme/bootstrap/forms/_form-text.scss +11 -0
  187. package/src/scss/theme/bootstrap/forms/_input-group.scss +129 -0
  188. package/src/scss/theme/bootstrap/forms/_labels.scss +36 -0
  189. package/src/scss/theme/bootstrap/forms/_validation.scss +12 -0
  190. package/src/scss/theme/bootstrap/helpers/_clearfix.scss +3 -0
  191. package/src/scss/theme/bootstrap/helpers/_color-bg.scss +10 -0
  192. package/src/scss/theme/bootstrap/helpers/_colored-links.scss +12 -0
  193. package/src/scss/theme/bootstrap/helpers/_position.scss +36 -0
  194. package/src/scss/theme/bootstrap/helpers/_ratio.scss +26 -0
  195. package/src/scss/theme/bootstrap/helpers/_stacks.scss +15 -0
  196. package/src/scss/theme/bootstrap/helpers/_stretched-link.scss +15 -0
  197. package/src/scss/theme/bootstrap/helpers/_text-truncation.scss +7 -0
  198. package/src/scss/theme/bootstrap/helpers/_visually-hidden.scss +8 -0
  199. package/src/scss/theme/bootstrap/helpers/_vr.scss +8 -0
  200. package/src/scss/theme/bootstrap/mixins/_alert.scss +15 -0
  201. package/src/scss/theme/bootstrap/mixins/_backdrop.scss +14 -0
  202. package/src/scss/theme/bootstrap/mixins/_banner.scss +9 -0
  203. package/src/scss/theme/bootstrap/mixins/_border-radius.scss +78 -0
  204. package/src/scss/theme/bootstrap/mixins/_box-shadow.scss +18 -0
  205. package/src/scss/theme/bootstrap/mixins/_breakpoints.scss +127 -0
  206. package/src/scss/theme/bootstrap/mixins/_buttons.scss +70 -0
  207. package/src/scss/theme/bootstrap/mixins/_caret.scss +64 -0
  208. package/src/scss/theme/bootstrap/mixins/_clearfix.scss +9 -0
  209. package/src/scss/theme/bootstrap/mixins/_color-scheme.scss +7 -0
  210. package/src/scss/theme/bootstrap/mixins/_container.scss +11 -0
  211. package/src/scss/theme/bootstrap/mixins/_deprecate.scss +10 -0
  212. package/src/scss/theme/bootstrap/mixins/_forms.scss +152 -0
  213. package/src/scss/theme/bootstrap/mixins/_gradients.scss +47 -0
  214. package/src/scss/theme/bootstrap/mixins/_grid.scss +151 -0
  215. package/src/scss/theme/bootstrap/mixins/_image.scss +16 -0
  216. package/src/scss/theme/bootstrap/mixins/_list-group.scss +24 -0
  217. package/src/scss/theme/bootstrap/mixins/_lists.scss +7 -0
  218. package/src/scss/theme/bootstrap/mixins/_pagination.scss +10 -0
  219. package/src/scss/theme/bootstrap/mixins/_reset-text.scss +17 -0
  220. package/src/scss/theme/bootstrap/mixins/_resize.scss +6 -0
  221. package/src/scss/theme/bootstrap/mixins/_table-variants.scss +24 -0
  222. package/src/scss/theme/bootstrap/mixins/_text-truncate.scss +8 -0
  223. package/src/scss/theme/bootstrap/mixins/_transition.scss +26 -0
  224. package/src/scss/theme/bootstrap/mixins/_utilities.scss +97 -0
  225. package/src/scss/theme/bootstrap/mixins/_visually-hidden.scss +29 -0
  226. package/src/scss/theme/bootstrap/utilities/_api.scss +47 -0
  227. package/src/scss/theme/bootstrap/vendor/_rfs.scss +354 -0
  228. package/src/scss/theme/bs/_badge.scss +20 -0
  229. package/src/scss/theme/bs/_buttons.scss +185 -0
  230. package/src/scss/theme/bs/_dropdown.scss +86 -0
  231. package/src/scss/theme/bs/_forms.scss +161 -0
  232. package/src/scss/theme/bs/_list-group.scss +73 -0
  233. package/src/scss/theme/bs/_tables.scss +46 -0
  234. package/src/scss/theme/fonts/_fontmapping-roboto.scss +129 -0
  235. package/src/scss/theme/fonts/_fontmapping-segoe-ui.scss +127 -0
  236. package/src/scss/theme/fonts/_index.scss +2 -0
  237. package/src/scss/theme/mixins/_backdrop.scss +13 -0
  238. package/src/scss/theme/mixins/_palette.scss +165 -0
  239. package/src/scss/theme/mixins/_position.scss +33 -0
  240. package/src/scss/theme/mixins/_scrollbar.scss +110 -0
  241. package/src/scss/weavy-chat.scss +32 -0
  242. package/src/scss/weavy-messenger.scss +61 -0
  243. package/src/scss/weavy.scss +2 -0
  244. package/src/types/Chat.ts +1 -1
  245. package/src/types/Messenger.ts +1 -1
  246. package/src/types/types.ts +20 -11
  247. package/src/ui/Button.tsx +3 -4
  248. package/src/ui/Dropdown.tsx +4 -5
  249. package/src/ui/Icon.tsx +75 -39
  250. package/src/ui/Overlay.tsx +2 -3
  251. package/src/ui/Spinner.tsx +18 -0
  252. package/src/utils/fileUtilities.ts +166 -72
  253. package/src/utils/scrollbarDetection.js +48 -0
  254. package/dist/cjs/types/utils/styles.d.ts +0 -17
  255. package/dist/esm/types/utils/styles.d.ts +0 -17
  256. package/src/utils/styles.ts +0 -42
@@ -0,0 +1,2860 @@
1
+ [class^=wy-], [class^=wy-]::before, [class^=wy-]::after, [class^=wy-] *, [class^=wy-] *::before, [class^=wy-] *::after, [class*=" wy-"], [class*=" wy-"]::before, [class*=" wy-"]::after, [class*=" wy-"] *, [class*=" wy-"] *::before, [class*=" wy-"] *::after {
2
+ box-sizing: border-box;
3
+ }
4
+ [class^=wy-][hidden], [class^=wy-] *[hidden], [class*=" wy-"][hidden], [class*=" wy-"] *[hidden] {
5
+ display: none !important;
6
+ }
7
+ [class^=wy-][role=button], [class^=wy-] *[role=button], [class*=" wy-"][role=button], [class*=" wy-"] *[role=button] {
8
+ cursor: pointer;
9
+ }
10
+ [class^=wy-] a[class^=wy-], [class^=wy-] a[class*=" wy-"], [class^=wy-] a, [class*=" wy-"] a[class^=wy-], [class*=" wy-"] a[class*=" wy-"], [class*=" wy-"] a {
11
+ text-decoration: none;
12
+ }
13
+ [class^=wy-] a[class^=wy-]:not([href]):not([class]), [class^=wy-] a[class^=wy-]:not([href]):not([class]):hover, [class^=wy-] a[class*=" wy-"]:not([href]):not([class]), [class^=wy-] a[class*=" wy-"]:not([href]):not([class]):hover, [class^=wy-] a:not([href]):not([class]), [class^=wy-] a:not([href]):not([class]):hover, [class*=" wy-"] a[class^=wy-]:not([href]):not([class]), [class*=" wy-"] a[class^=wy-]:not([href]):not([class]):hover, [class*=" wy-"] a[class*=" wy-"]:not([href]):not([class]), [class*=" wy-"] a[class*=" wy-"]:not([href]):not([class]):hover, [class*=" wy-"] a:not([href]):not([class]), [class*=" wy-"] a:not([href]):not([class]):hover {
14
+ text-decoration: none;
15
+ }
16
+ [class^=wy-] p[class^=wy-], [class^=wy-] p[class*=" wy-"], [class^=wy-] p, [class*=" wy-"] p[class^=wy-], [class*=" wy-"] p[class*=" wy-"], [class*=" wy-"] p {
17
+ margin-top: 0;
18
+ margin-bottom: 1rem;
19
+ }
20
+
21
+ .wy-attachment,
22
+ .wy-meeting {
23
+ width: 100%;
24
+ color: #5c5c5c;
25
+ text-align: inherit;
26
+ }
27
+ .wy-attachment:hover,
28
+ .wy-meeting:hover, .wy-attachment:focus,
29
+ .wy-meeting:focus {
30
+ z-index: 1;
31
+ color: #5c5c5c;
32
+ text-decoration: none;
33
+ background-color: #f2f2f2;
34
+ }
35
+ .wy-attachment:active,
36
+ .wy-meeting:active {
37
+ color: #383838;
38
+ background-color: #e6e6e6;
39
+ }
40
+
41
+ .wy-attachment,
42
+ .wy-meeting {
43
+ position: relative;
44
+ display: block;
45
+ padding: 0.5rem 1rem;
46
+ color: #383838;
47
+ background-color: #fff;
48
+ border: 1px solid rgba(0, 0, 0, 0.125);
49
+ }
50
+ .wy-attachment:first-child,
51
+ .wy-meeting:first-child {
52
+ border-top-left-radius: inherit;
53
+ border-top-right-radius: inherit;
54
+ }
55
+ .wy-attachment:last-child,
56
+ .wy-meeting:last-child {
57
+ border-bottom-right-radius: inherit;
58
+ border-bottom-left-radius: inherit;
59
+ }
60
+ .disabled.wy-attachment,
61
+ .disabled.wy-meeting, .wy-attachment:disabled,
62
+ .wy-meeting:disabled {
63
+ color: #6b6b6b;
64
+ pointer-events: none;
65
+ background-color: #fff;
66
+ }
67
+ .active.wy-attachment,
68
+ .active.wy-meeting {
69
+ z-index: 2;
70
+ color: #383838;
71
+ background-color: #e6e6e6;
72
+ border-color: #e6e6e6;
73
+ }
74
+ .wy-attachment + .wy-attachment,
75
+ .wy-meeting + .wy-attachment,
76
+ .wy-attachment + .wy-meeting,
77
+ .wy-meeting + .wy-meeting {
78
+ border-top-width: 0;
79
+ }
80
+ .wy-attachment + .active.wy-attachment,
81
+ .wy-meeting + .active.wy-attachment,
82
+ .wy-attachment + .active.wy-meeting,
83
+ .wy-meeting + .active.wy-meeting {
84
+ margin-top: -1px;
85
+ border-top-width: 1px;
86
+ }
87
+
88
+ .wy-attachments,
89
+ .wy-meetings {
90
+ border: none;
91
+ border-radius: 0.25rem;
92
+ flex: 1 1 100%;
93
+ min-width: 0;
94
+ }
95
+ .wy-attachments .wy-attachment,
96
+ .wy-attachments .wy-meeting,
97
+ .wy-meetings .wy-attachment,
98
+ .wy-meetings .wy-meeting {
99
+ border-left: none;
100
+ border-right: none;
101
+ }
102
+ .wy-attachments > *,
103
+ .wy-meetings > * {
104
+ padding: 0.25rem 0.5rem;
105
+ }
106
+ .wy-attachments > :first-child,
107
+ .wy-meetings > :first-child {
108
+ border-top: none;
109
+ }
110
+ .wy-attachments > :last-child,
111
+ .wy-meetings > :last-child {
112
+ border-bottom: none;
113
+ }
114
+
115
+ .wy-attachment,
116
+ .wy-meeting {
117
+ display: flex;
118
+ align-items: center;
119
+ cursor: pointer;
120
+ }
121
+
122
+ .wy-attachment-icon {
123
+ flex: 0 0 auto;
124
+ display: flex;
125
+ }
126
+ .wy-attachment-icon .wy-icon, .wy-attachment-icon .wy-icon-stack {
127
+ width: 3rem;
128
+ height: 3rem;
129
+ }
130
+
131
+ .wy-attachment-content {
132
+ flex: 1 1 100%;
133
+ min-width: 0;
134
+ margin-left: 0.5rem;
135
+ margin-right: 0.5rem;
136
+ }
137
+
138
+ .wy-attachment-title {
139
+ font-weight: 500;
140
+ overflow: hidden;
141
+ text-overflow: ellipsis;
142
+ white-space: nowrap;
143
+ font-size: 1rem;
144
+ margin: 0;
145
+ }
146
+
147
+ .wy-attachment-meta {
148
+ overflow: hidden;
149
+ text-overflow: ellipsis;
150
+ white-space: nowrap;
151
+ font-size: 0.875em;
152
+ color: #6b6b6b;
153
+ }
154
+
155
+ .wy-input, .wy-input-sm, .wy-avatar-input {
156
+ display: block;
157
+ width: 100%;
158
+ padding: 0.375rem 0.75rem;
159
+ font-size: 1rem;
160
+ font-weight: 400;
161
+ line-height: 1.5;
162
+ color: #292929;
163
+ background-color: #fff;
164
+ background-clip: padding-box;
165
+ border: 1px solid #999999;
166
+ appearance: none;
167
+ border-radius: 0.375rem;
168
+ box-shadow: 0;
169
+ transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
170
+ }
171
+ @media (prefers-reduced-motion: reduce) {
172
+ .wy-input, .wy-input-sm, .wy-avatar-input {
173
+ transition: none;
174
+ }
175
+ }
176
+ [type=file].wy-input, [type=file].wy-input-sm, [type=file].wy-avatar-input {
177
+ overflow: hidden;
178
+ }
179
+ [type=file].wy-input:not(:disabled):not([readonly]), [type=file].wy-input-sm:not(:disabled):not([readonly]), [type=file].wy-avatar-input:not(:disabled):not([readonly]) {
180
+ cursor: pointer;
181
+ }
182
+ .wy-input:focus, .wy-input-sm:focus, .wy-avatar-input:focus {
183
+ color: #292929;
184
+ background-color: #fff;
185
+ border-color: #8ab5c9;
186
+ outline: 0;
187
+ box-shadow: 0, 0 0 0 0.25rem rgba(230, 230, 230, 0.25);
188
+ }
189
+ .wy-input::-webkit-date-and-time-value, .wy-input-sm::-webkit-date-and-time-value, .wy-avatar-input::-webkit-date-and-time-value {
190
+ height: 1.5em;
191
+ }
192
+ .wy-input::placeholder, .wy-input-sm::placeholder, .wy-avatar-input::placeholder {
193
+ color: #6b6b6b;
194
+ opacity: 1;
195
+ }
196
+ .wy-input:disabled, .wy-input-sm:disabled, .wy-avatar-input:disabled, [readonly].wy-input, [readonly].wy-input-sm, [readonly].wy-avatar-input {
197
+ background-color: #cccccc;
198
+ opacity: 1;
199
+ }
200
+ .wy-input::file-selector-button, .wy-input-sm::file-selector-button, .wy-avatar-input::file-selector-button {
201
+ padding: 0.375rem 0.75rem;
202
+ margin: -0.375rem -0.75rem;
203
+ margin-inline-end: 0.75rem;
204
+ color: #292929;
205
+ background-color: #cccccc;
206
+ pointer-events: none;
207
+ border-color: inherit;
208
+ border-style: solid;
209
+ border-width: 0;
210
+ border-inline-end-width: 1px;
211
+ border-radius: 0;
212
+ transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
213
+ }
214
+ @media (prefers-reduced-motion: reduce) {
215
+ .wy-input::file-selector-button, .wy-input-sm::file-selector-button, .wy-avatar-input::file-selector-button {
216
+ transition: none;
217
+ }
218
+ }
219
+ .wy-input:hover:not(:disabled):not([readonly])::file-selector-button, .wy-input-sm:hover:not(:disabled):not([readonly])::file-selector-button, .wy-avatar-input:hover:not(:disabled):not([readonly])::file-selector-button {
220
+ background-color: #c2c2c2;
221
+ }
222
+ .wy-input::-webkit-file-upload-button, .wy-input-sm::-webkit-file-upload-button, .wy-avatar-input::-webkit-file-upload-button {
223
+ padding: 0.375rem 0.75rem;
224
+ margin: -0.375rem -0.75rem;
225
+ margin-inline-end: 0.75rem;
226
+ color: #292929;
227
+ background-color: #cccccc;
228
+ pointer-events: none;
229
+ border-color: inherit;
230
+ border-style: solid;
231
+ border-width: 0;
232
+ border-inline-end-width: 1px;
233
+ border-radius: 0;
234
+ transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
235
+ }
236
+ @media (prefers-reduced-motion: reduce) {
237
+ .wy-input::-webkit-file-upload-button, .wy-input-sm::-webkit-file-upload-button, .wy-avatar-input::-webkit-file-upload-button {
238
+ transition: none;
239
+ }
240
+ }
241
+ .wy-input:hover:not(:disabled):not([readonly])::-webkit-file-upload-button, .wy-input-sm:hover:not(:disabled):not([readonly])::-webkit-file-upload-button, .wy-avatar-input:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
242
+ background-color: #c2c2c2;
243
+ }
244
+
245
+ .wy-input-sm, .wy-avatar-input {
246
+ min-height: calc(1.5em + 0.5rem + 2px);
247
+ padding: 0.25rem 0.5rem;
248
+ font-size: 1rem;
249
+ border-radius: 0.25rem;
250
+ }
251
+ .wy-input-sm::file-selector-button, .wy-avatar-input::file-selector-button {
252
+ padding: 0.25rem 0.5rem;
253
+ margin: -0.25rem -0.5rem;
254
+ margin-inline-end: 0.5rem;
255
+ }
256
+ .wy-input-sm::-webkit-file-upload-button, .wy-avatar-input::-webkit-file-upload-button {
257
+ padding: 0.25rem 0.5rem;
258
+ margin: -0.25rem -0.5rem;
259
+ margin-inline-end: 0.5rem;
260
+ }
261
+
262
+ .wy-description {
263
+ margin-top: 0.25rem;
264
+ font-size: 0.875em;
265
+ color: #6b6b6b;
266
+ }
267
+
268
+ .wy-label {
269
+ margin-bottom: 0.5rem;
270
+ }
271
+
272
+ .wy-is-invalid {
273
+ border-color: hsl(6deg, 71.1567324185%, 50%);
274
+ }
275
+ .wy-is-invalid:focus {
276
+ border-color: hsl(6deg, 71.1567324185%, 50%);
277
+ }
278
+
279
+ .wy-avatar {
280
+ border-radius: 50%;
281
+ }
282
+
283
+ .wy-avatar-header {
284
+ padding: 1.5rem;
285
+ margin-left: auto;
286
+ margin-right: auto;
287
+ text-align: center;
288
+ }
289
+
290
+ .wy-avatar-input {
291
+ background: #f2f2f2;
292
+ border-color: transparent;
293
+ text-align: center;
294
+ margin-left: auto;
295
+ margin-right: auto;
296
+ margin-bottom: 1.5rem;
297
+ }
298
+
299
+ .wy-avatar-presence {
300
+ position: relative;
301
+ }
302
+
303
+ .wy-avatar-display-name {
304
+ font-size: 1.5rem;
305
+ font-weight: 300;
306
+ line-height: 1.2;
307
+ text-align: center;
308
+ }
309
+
310
+ .wy-presence {
311
+ display: none;
312
+ background-color: #e6e6e6;
313
+ width: 0.75rem;
314
+ height: 0.75rem;
315
+ border-radius: 50%;
316
+ outline: 0.125rem solid #fff;
317
+ position: absolute;
318
+ bottom: 0;
319
+ right: -5%;
320
+ }
321
+
322
+ .wy-presence-active {
323
+ background-color: #66cc68;
324
+ display: block;
325
+ }
326
+
327
+ .wy-button {
328
+ --wy-btn-padding-x: 0.75rem;
329
+ --wy-btn-padding-y: 0.375rem;
330
+ --wy-btn-font-family: ;
331
+ --wy-btn-font-size: 1rem;
332
+ --wy-btn-font-weight: 400;
333
+ --wy-btn-line-height: 1.5;
334
+ --wy-btn-color: #292929;
335
+ --wy-btn-bg: transparent;
336
+ --wy-btn-border-width: 1px;
337
+ --wy-btn-border-color: transparent;
338
+ --wy-btn-border-radius: 0.375rem;
339
+ --wy-btn-box-shadow: unset;
340
+ --wy-btn-disabled-opacity: 0.65;
341
+ --wy-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--wy-btn-focus-shadow-rgb), .5);
342
+ display: inline-block;
343
+ padding: var(--wy-btn-padding-y) var(--wy-btn-padding-x);
344
+ font-family: var(--wy-btn-font-family);
345
+ font-size: var(--wy-btn-font-size);
346
+ font-weight: var(--wy-btn-font-weight);
347
+ line-height: var(--wy-btn-line-height);
348
+ color: var(--wy-btn-color);
349
+ text-align: center;
350
+ vertical-align: middle;
351
+ cursor: pointer;
352
+ user-select: none;
353
+ border: var(--wy-btn-border-width) solid var(--wy-btn-border-color);
354
+ border-radius: var(--wy-btn-border-radius);
355
+ background-color: var(--wy-btn-bg);
356
+ box-shadow: var(--wy-btn-box-shadow);
357
+ transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
358
+ }
359
+ @media (prefers-reduced-motion: reduce) {
360
+ .wy-button {
361
+ transition: none;
362
+ }
363
+ }
364
+ .wy-button:hover {
365
+ color: var(--wy-btn-hover-color);
366
+ background-color: var(--wy-btn-hover-bg);
367
+ border-color: var(--wy-btn-hover-border-color);
368
+ }
369
+ .btn-check:focus + .wy-button, .wy-button:focus {
370
+ color: var(--wy-btn-hover-color);
371
+ background-color: var(--wy-btn-hover-bg);
372
+ border-color: var(--wy-btn-hover-border-color);
373
+ outline: 0;
374
+ box-shadow: var(--wy-btn-box-shadow), var(--wy-btn-focus-box-shadow);
375
+ }
376
+ .btn-check:checked + .wy-button, .btn-check:active + .wy-button, .wy-button:active, .active.wy-button, .show.wy-button {
377
+ color: var(--wy-btn-active-color);
378
+ background-color: var(--wy-btn-active-bg);
379
+ border-color: var(--wy-btn-active-border-color);
380
+ box-shadow: var(--wy-btn-active-shadow);
381
+ }
382
+ .btn-check:checked + .wy-button:focus, .btn-check:active + .wy-button:focus, .wy-button:active:focus, .active.wy-button:focus, .show.wy-button:focus {
383
+ box-shadow: var(--wy-btn-active-shadow), var(--wy-btn-focus-box-shadow);
384
+ }
385
+ .wy-button:disabled, .disabled.wy-button, fieldset:disabled .wy-button {
386
+ color: var(--wy-btn-disabled-color);
387
+ pointer-events: none;
388
+ background-color: var(--wy-btn-disabled-bg);
389
+ border-color: var(--wy-btn-disabled-border-color);
390
+ opacity: var(--wy-btn-disabled-opacity);
391
+ box-shadow: none;
392
+ }
393
+
394
+ .wy-button-primary {
395
+ --wy-btn-color: #fff;
396
+ --wy-btn-bg: #156B93;
397
+ --wy-btn-border-color: #156B93;
398
+ --wy-btn-hover-color: #fff;
399
+ --wy-btn-hover-bg: #125b7d;
400
+ --wy-btn-hover-border-color: #115676;
401
+ --wy-btn-focus-shadow-rgb: 56, 129, 163;
402
+ --wy-btn-active-color: #fff;
403
+ --wy-btn-active-bg: #115676;
404
+ --wy-btn-active-border-color: #10506e;
405
+ --wy-btn-active-shadow: unset;
406
+ --wy-btn-disabled-color: #fff;
407
+ --wy-btn-disabled-bg: #156B93;
408
+ --wy-btn-disabled-border-color: #156B93;
409
+ }
410
+
411
+ .wy-button-link {
412
+ --wy-btn-font-weight: 400;
413
+ --wy-btn-color: var(--wy-link-color);
414
+ --wy-btn-bg: transparent;
415
+ --wy-btn-border-color: transparent;
416
+ --wy-btn-hover-color: var(--wy-link-hover-color);
417
+ --wy-btn-hover-border-color: transparent;
418
+ --wy-btn-active-color: var(--wy-link-hover-color);
419
+ --wy-btn-active-border-color: transparent;
420
+ --wy-btn-disabled-color: #6b6b6b;
421
+ --wy-btn-disabled-border-color: transparent;
422
+ --wy-btn-box-shadow: none;
423
+ --wy-btn-focus-shadow-rgb: 56, 129, 163;
424
+ text-decoration: none;
425
+ }
426
+ .wy-button-link:focus {
427
+ color: var(--wy-btn-color);
428
+ }
429
+ .wy-button-link:hover {
430
+ color: var(--wy-btn-hover-color);
431
+ }
432
+
433
+ .wy-button {
434
+ display: inline-flex;
435
+ align-items: center;
436
+ justify-content: center;
437
+ gap: 0.25rem;
438
+ }
439
+ .wy-button:not(.wy-button-icon) .wy-icon:first-child {
440
+ margin-left: -0.25rem;
441
+ }
442
+ .wy-button:not(.wy-button-icon) .wy-icon:last-child {
443
+ margin-right: -0.25rem;
444
+ }
445
+
446
+ .wy-button:not(.wy-button-link, .wy-button-primary) {
447
+ --wy-btn-hover-border-color: transparent;
448
+ --wy-btn-active-border-color: transparent;
449
+ --wy-btn-hover-color: var(--wy-btn-color);
450
+ --wy-btn-hover-bg: rgba(0, 0, 0, 0.04);
451
+ --wy-btn-focus-bg: rgba(0, 0, 0, 0.04);
452
+ --wy-btn-active-color: var(--wy-btn-color);
453
+ --wy-btn-active-bg: rgba(0, 0, 0, 0.12);
454
+ }
455
+ .wy-dark .wy-button:not(.wy-button-link, .wy-button-primary) {
456
+ color: var(--wy-white);
457
+ }
458
+
459
+ .wy-button-icon {
460
+ width: 2rem;
461
+ height: 2rem;
462
+ padding: 0.25rem;
463
+ line-height: 1;
464
+ border-radius: 50%;
465
+ border-width: 0;
466
+ }
467
+
468
+ .wy-button-icon:not(.wy-button-primary) {
469
+ color: rgba(0, 0, 0, 0.54);
470
+ }
471
+ .wy-button-icon:not(.wy-button-primary):hover .wy-icon {
472
+ color: rgba(0, 0, 0, 0.87);
473
+ }
474
+ .wy-dark .wy-button-icon:not(.wy-button-primary) {
475
+ color: rgba(255, 255, 255, 0.7);
476
+ }
477
+ .wy-dark .wy-button-icon:not(.wy-button-primary) .wy-icon {
478
+ color: rgba(255, 255, 255, 0.7);
479
+ }
480
+ .wy-dark .wy-button-icon:not(.wy-button-primary):hover {
481
+ color: rgb(255, 255, 255);
482
+ }
483
+ .wy-dark .wy-button-icon:not(.wy-button-primary):hover .wy-icon {
484
+ color: rgb(255, 255, 255);
485
+ }
486
+
487
+ .wy-buttons {
488
+ display: flex;
489
+ align-items: center;
490
+ flex-wrap: wrap;
491
+ gap: 0.5rem;
492
+ }
493
+
494
+ :not(.wy-dark) .wy-code, .wy-code:not(.wy-dark) {
495
+ /*pre[class*="language-"]::-moz-selection,
496
+ pre[class*="language-"] ::-moz-selection,
497
+ code[class*="language-"]::-moz-selection,
498
+ code[class*="language-"] ::-moz-selection {
499
+ text-shadow: none;
500
+ background: #ffffff;
501
+ }
502
+
503
+ pre[class*="language-"]::selection,
504
+ pre[class*="language-"] ::selection,
505
+ code[class*="language-"]::selection,
506
+ code[class*="language-"] ::selection {
507
+ text-shadow: none;
508
+ background: #ffffff;
509
+ }*/
510
+ /* Code blocks */
511
+ }
512
+ :not(.wy-dark) .wy-code code[class*=language-],
513
+ :not(.wy-dark) .wy-code pre[class*=language-], .wy-code:not(.wy-dark) code[class*=language-],
514
+ .wy-code:not(.wy-dark) pre[class*=language-] {
515
+ color: #000000;
516
+ font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
517
+ text-align: left;
518
+ white-space: pre;
519
+ word-spacing: normal;
520
+ word-break: normal;
521
+ word-wrap: normal;
522
+ line-height: 1.5;
523
+ -moz-tab-size: 4;
524
+ -o-tab-size: 4;
525
+ tab-size: 4;
526
+ -webkit-hyphens: none;
527
+ -moz-hyphens: none;
528
+ -ms-hyphens: none;
529
+ hyphens: none;
530
+ }
531
+ @media print {
532
+ :not(.wy-dark) .wy-code code[class*=language-],
533
+ :not(.wy-dark) .wy-code pre[class*=language-], .wy-code:not(.wy-dark) code[class*=language-],
534
+ .wy-code:not(.wy-dark) pre[class*=language-] {
535
+ text-shadow: none;
536
+ }
537
+ }
538
+ :not(.wy-dark) .wy-code pre[class*=language-], .wy-code:not(.wy-dark) pre[class*=language-] {
539
+ padding: 1em;
540
+ margin: 0.5em 0;
541
+ overflow: auto;
542
+ }
543
+ :not(.wy-dark) .wy-code :not(pre) > code[class*=language-],
544
+ :not(.wy-dark) .wy-code pre[class*=language-], .wy-code:not(.wy-dark) :not(pre) > code[class*=language-],
545
+ .wy-code:not(.wy-dark) pre[class*=language-] {
546
+ color: white;
547
+ background: #ffffff;
548
+ }
549
+ :not(.wy-dark) .wy-code :not(pre) > code[class*=language-], .wy-code:not(.wy-dark) :not(pre) > code[class*=language-] {
550
+ padding: 0.1em;
551
+ border-radius: 0.3em;
552
+ white-space: normal;
553
+ }
554
+ :not(.wy-dark) .wy-code .token.comment, .wy-code:not(.wy-dark) .token.comment {
555
+ color: #008000;
556
+ }
557
+ :not(.wy-dark) .wy-code .token.builtin, .wy-code:not(.wy-dark) .token.builtin {
558
+ color: #0070C1;
559
+ }
560
+ :not(.wy-dark) .wy-code .token.number, .wy-code:not(.wy-dark) .token.number {
561
+ color: #098658;
562
+ }
563
+ :not(.wy-dark) .wy-code .token.variable, .wy-code:not(.wy-dark) .token.variable {
564
+ color: #098658;
565
+ }
566
+ :not(.wy-dark) .wy-code .token.inserted, .wy-code:not(.wy-dark) .token.inserted {
567
+ color: #098658;
568
+ }
569
+ :not(.wy-dark) .wy-code .token.operator, .wy-code:not(.wy-dark) .token.operator {
570
+ color: #000000;
571
+ }
572
+ :not(.wy-dark) .wy-code .token.constant, .wy-code:not(.wy-dark) .token.constant {
573
+ color: #811F3F;
574
+ }
575
+ :not(.wy-dark) .wy-code .token.hexcode, .wy-code:not(.wy-dark) .token.hexcode {
576
+ color: #811F3F;
577
+ }
578
+ :not(.wy-dark) .wy-code .token.regex, .wy-code:not(.wy-dark) .token.regex {
579
+ color: #811F3F;
580
+ }
581
+ :not(.wy-dark) .wy-code .token.char, .wy-code:not(.wy-dark) .token.char {
582
+ color: #811F3F;
583
+ }
584
+ :not(.wy-dark) .wy-code .token.tag, .wy-code:not(.wy-dark) .token.tag {
585
+ color: #800000;
586
+ }
587
+ :not(.wy-dark) .wy-code .token.attr-name, .wy-code:not(.wy-dark) .token.attr-name {
588
+ color: #FF0000;
589
+ }
590
+ :not(.wy-dark) .wy-code .token.selector, .wy-code:not(.wy-dark) .token.selector {
591
+ color: #FF0000;
592
+ }
593
+ :not(.wy-dark) .wy-code .token.property, .wy-code:not(.wy-dark) .token.property {
594
+ color: #FF0000;
595
+ }
596
+ :not(.wy-dark) .wy-code .token.deleted, .wy-code:not(.wy-dark) .token.deleted {
597
+ color: #A31515;
598
+ }
599
+ :not(.wy-dark) .wy-code .token.string, .wy-code:not(.wy-dark) .token.string {
600
+ color: #A31515;
601
+ }
602
+ :not(.wy-dark) .wy-code .token.changed, .wy-code:not(.wy-dark) .token.changed {
603
+ color: #0451A5;
604
+ }
605
+ :not(.wy-dark) .wy-code .token.punctuation, .wy-code:not(.wy-dark) .token.punctuation {
606
+ color: #0451A5;
607
+ }
608
+ :not(.wy-dark) .wy-code .token.function, .wy-code:not(.wy-dark) .token.function {
609
+ color: #0000FF;
610
+ }
611
+ :not(.wy-dark) .wy-code .token.keyword, .wy-code:not(.wy-dark) .token.keyword {
612
+ color: #0000FF;
613
+ }
614
+ :not(.wy-dark) .wy-code .token.class-name, .wy-code:not(.wy-dark) .token.class-name {
615
+ color: #267F99;
616
+ }
617
+ :not(.wy-dark) .wy-code .token.important,
618
+ :not(.wy-dark) .wy-code .token.bold, .wy-code:not(.wy-dark) .token.important,
619
+ .wy-code:not(.wy-dark) .token.bold {
620
+ font-weight: bold;
621
+ }
622
+ :not(.wy-dark) .wy-code .token.italic, .wy-code:not(.wy-dark) .token.italic {
623
+ font-style: italic;
624
+ }
625
+ .wy-dark .wy-code, .wy-code.wy-dark {
626
+ /*pre[class*="language-"]::-moz-selection,
627
+ pre[class*="language-"] ::-moz-selection,
628
+ code[class*="language-"]::-moz-selection,
629
+ code[class*="language-"] ::-moz-selection {
630
+ text-shadow: none;
631
+ background: #1e1e1e;
632
+ }
633
+
634
+ pre[class*="language-"]::selection,
635
+ pre[class*="language-"] ::selection,
636
+ code[class*="language-"]::selection,
637
+ code[class*="language-"] ::selection {
638
+ text-shadow: none;
639
+ background: #1e1e1e;
640
+ }*/
641
+ /* Code blocks */
642
+ }
643
+ .wy-dark .wy-code code[class*=language-],
644
+ .wy-dark .wy-code pre[class*=language-], .wy-code.wy-dark code[class*=language-],
645
+ .wy-code.wy-dark pre[class*=language-] {
646
+ color: #d4d4d4;
647
+ font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
648
+ text-align: left;
649
+ white-space: pre;
650
+ word-spacing: normal;
651
+ word-break: normal;
652
+ word-wrap: normal;
653
+ line-height: 1.5;
654
+ -moz-tab-size: 4;
655
+ -o-tab-size: 4;
656
+ tab-size: 4;
657
+ -webkit-hyphens: none;
658
+ -moz-hyphens: none;
659
+ -ms-hyphens: none;
660
+ hyphens: none;
661
+ }
662
+ @media print {
663
+ .wy-dark .wy-code code[class*=language-],
664
+ .wy-dark .wy-code pre[class*=language-], .wy-code.wy-dark code[class*=language-],
665
+ .wy-code.wy-dark pre[class*=language-] {
666
+ text-shadow: none;
667
+ }
668
+ }
669
+ .wy-dark .wy-code pre[class*=language-], .wy-code.wy-dark pre[class*=language-] {
670
+ padding: 1em;
671
+ margin: 0.5em 0;
672
+ overflow: auto;
673
+ }
674
+ .wy-dark .wy-code :not(pre) > code[class*=language-],
675
+ .wy-dark .wy-code pre[class*=language-], .wy-code.wy-dark :not(pre) > code[class*=language-],
676
+ .wy-code.wy-dark pre[class*=language-] {
677
+ color: white;
678
+ background: #1e1e1e;
679
+ }
680
+ .wy-dark .wy-code :not(pre) > code[class*=language-], .wy-code.wy-dark :not(pre) > code[class*=language-] {
681
+ padding: 0.1em;
682
+ border-radius: 0.3em;
683
+ white-space: normal;
684
+ }
685
+ .wy-dark .wy-code .token.prolog, .wy-code.wy-dark .token.prolog {
686
+ color: #8080ff;
687
+ }
688
+ .wy-dark .wy-code .token.comment, .wy-code.wy-dark .token.comment {
689
+ color: #6A9955;
690
+ }
691
+ .wy-dark .wy-code .token.punctuation, .wy-code.wy-dark .token.punctuation {
692
+ color: #6A9955;
693
+ }
694
+ .wy-dark .wy-code .token.builtin, .wy-code.wy-dark .token.builtin {
695
+ color: #4FC1FF;
696
+ }
697
+ .wy-dark .wy-code .token.number, .wy-code.wy-dark .token.number {
698
+ color: #B5CEA8;
699
+ }
700
+ .wy-dark .wy-code .token.variable, .wy-code.wy-dark .token.variable {
701
+ color: #B5CEA8;
702
+ }
703
+ .wy-dark .wy-code .token.inserted, .wy-code.wy-dark .token.inserted {
704
+ color: #B5CEA8;
705
+ }
706
+ .wy-dark .wy-code .token.operator, .wy-code.wy-dark .token.operator {
707
+ color: #D4D4D4;
708
+ }
709
+ .wy-dark .wy-code .token.constant, .wy-code.wy-dark .token.constant {
710
+ color: #646695;
711
+ }
712
+ .wy-dark .wy-code .token.hexcode, .wy-code.wy-dark .token.hexcode {
713
+ color: #646695;
714
+ }
715
+ .wy-dark .wy-code .token.tag, .wy-code.wy-dark .token.tag {
716
+ color: #569CD6;
717
+ }
718
+ .wy-dark .wy-code .token.changed, .wy-code.wy-dark .token.changed {
719
+ color: #569CD6;
720
+ }
721
+ .wy-dark .wy-code .token.function, .wy-code.wy-dark .token.function {
722
+ color: #569CD6;
723
+ }
724
+ .wy-dark .wy-code .token.keyword, .wy-code.wy-dark .token.keyword {
725
+ color: #569CD6;
726
+ }
727
+ .wy-dark .wy-code .token.attr-name, .wy-code.wy-dark .token.attr-name {
728
+ color: #9CDCFE;
729
+ }
730
+ .wy-dark .wy-code .token.selector, .wy-code.wy-dark .token.selector {
731
+ color: #9CDCFE;
732
+ }
733
+ .wy-dark .wy-code .token.property, .wy-code.wy-dark .token.property {
734
+ color: #9CDCFE;
735
+ }
736
+ .wy-dark .wy-code .token.deleted, .wy-code.wy-dark .token.deleted {
737
+ color: #CE9178;
738
+ }
739
+ .wy-dark .wy-code .token.string, .wy-code.wy-dark .token.string {
740
+ color: #CE9178;
741
+ }
742
+ .wy-dark .wy-code .token.regex, .wy-code.wy-dark .token.regex {
743
+ color: #D16969;
744
+ }
745
+ .wy-dark .wy-code .token.char, .wy-code.wy-dark .token.char {
746
+ color: #D16969;
747
+ }
748
+ .wy-dark .wy-code .token.class-name, .wy-code.wy-dark .token.class-name {
749
+ color: #4EC9B0;
750
+ }
751
+ .wy-dark .wy-code .token.important,
752
+ .wy-dark .wy-code .token.bold, .wy-code.wy-dark .token.important,
753
+ .wy-code.wy-dark .token.bold {
754
+ font-weight: bold;
755
+ }
756
+ .wy-dark .wy-code .token.italic, .wy-code.wy-dark .token.italic {
757
+ font-style: italic;
758
+ }
759
+
760
+ .wy-hashtag {
761
+ color: #6b6b6b;
762
+ }
763
+
764
+ .wy-mention {
765
+ font-weight: 500;
766
+ }
767
+
768
+ .wy-dropdown-menu {
769
+ position: absolute;
770
+ z-index: 1000;
771
+ display: none;
772
+ min-width: 10rem;
773
+ padding: 0.25rem 0;
774
+ margin: 0;
775
+ font-size: 1rem;
776
+ color: #292929;
777
+ text-align: left;
778
+ list-style: none;
779
+ background-color: #fff;
780
+ background-clip: padding-box;
781
+ border: 0 solid var(--wy-border-color-translucent);
782
+ border-radius: 0.375rem;
783
+ box-shadow: 0 0.125rem 0.125rem 0 rgba(0, 0, 0, 0.14), 0 0.1875rem 0.0625rem -0.125rem rgba(0, 0, 0, 0.2), 0 0.0625rem 0.3125rem 0 rgba(0, 0, 0, 0.12);
784
+ }
785
+ [data-bs-popper].wy-dropdown-menu {
786
+ top: 100%;
787
+ left: 0;
788
+ margin-top: 0.25rem;
789
+ }
790
+
791
+ .wy-dropdown-divider {
792
+ height: 0;
793
+ margin: 0.25rem 0;
794
+ overflow: hidden;
795
+ border-top: 1px solid var(--wy-border-color-translucent);
796
+ }
797
+
798
+ .wy-dropdown-item {
799
+ display: block;
800
+ width: 100%;
801
+ padding: 0.75rem 0.75rem;
802
+ clear: both;
803
+ font-weight: 400;
804
+ color: #292929;
805
+ text-align: inherit;
806
+ white-space: nowrap;
807
+ background-color: transparent;
808
+ border: 0;
809
+ }
810
+ .wy-dropdown-item:hover, .wy-dropdown-item:focus {
811
+ color: #252525;
812
+ background-color: #f2f2f2;
813
+ }
814
+ .active.wy-dropdown-item, .wy-dropdown-item:active {
815
+ color: #383838;
816
+ text-decoration: none;
817
+ background-color: #e6e6e6;
818
+ }
819
+ .disabled.wy-dropdown-item, .wy-dropdown-item:disabled {
820
+ color: gray;
821
+ pointer-events: none;
822
+ background-color: transparent;
823
+ }
824
+
825
+ .wy-dropdown,
826
+ .wy-dropup {
827
+ position: relative;
828
+ }
829
+
830
+ .wy-dropup .wy-dropdown-menu {
831
+ top: auto;
832
+ bottom: 100%;
833
+ margin-top: 0;
834
+ margin-bottom: 0.25rem;
835
+ }
836
+
837
+ .wy-dropdown-toggle {
838
+ white-space: nowrap;
839
+ }
840
+
841
+ .wy-dropdown-menu {
842
+ display: block;
843
+ }
844
+ .wy-dropup .wy-dropdown-menu {
845
+ top: auto;
846
+ bottom: 100%;
847
+ margin-top: 0;
848
+ margin-bottom: 0.25rem;
849
+ }
850
+ [data-bs-toggle=dropdown] ~ .wy-dropdown-menu:not(.show) {
851
+ display: none;
852
+ }
853
+ [data-bs-toggle=dropdown] ~ .wy-dropdown-menu[hidden].show {
854
+ display: block !important;
855
+ }
856
+
857
+ .wy-dropdown-menu-end {
858
+ right: 0;
859
+ }
860
+
861
+ .wy-dropdown-item {
862
+ cursor: pointer;
863
+ display: flex;
864
+ align-items: center;
865
+ }
866
+ .wy-dropdown-item > img, .wy-dropdown-item .wy-icon {
867
+ margin-right: 0.5rem;
868
+ color: rgba(0, 0, 0, 0.54);
869
+ }
870
+ .wy-dropdown-item:active > .wy-icon {
871
+ color: rgba(0, 0, 0, 0.54);
872
+ }
873
+ .wy-dropdown-item.wy-option .wy-icon {
874
+ visibility: hidden;
875
+ }
876
+ .wy-dropdown-item.wy-option.wy-selected .wy-icon {
877
+ visibility: visible;
878
+ }
879
+
880
+ .wy-emoji {
881
+ width: 1.25rem;
882
+ height: 1.25rem;
883
+ vertical-align: -0.25rem;
884
+ }
885
+
886
+ .wy-icon {
887
+ display: inline-flex;
888
+ align-items: center;
889
+ justify-content: center;
890
+ flex: 0 0 auto;
891
+ position: relative;
892
+ }
893
+ .wy-icon:not([width]) {
894
+ width: 1.5rem;
895
+ }
896
+ .wy-icon:not([height]) {
897
+ height: 1.5rem;
898
+ }
899
+
900
+ .wy-icon-overlay {
901
+ position: absolute;
902
+ bottom: 0;
903
+ right: 0;
904
+ background: var(--wy-white);
905
+ border-radius: 50%;
906
+ border: 1px solid var(--wy-white);
907
+ }
908
+
909
+ .wy-icon-stack {
910
+ display: inline-block;
911
+ position: relative;
912
+ line-height: 1;
913
+ width: 1.5rem;
914
+ height: 1.5rem;
915
+ }
916
+ .wy-icon-stack .wy-icon:first-child {
917
+ width: 100%;
918
+ height: 100%;
919
+ }
920
+ .wy-icon-stack .wy-icon:last-child {
921
+ position: absolute;
922
+ bottom: 0;
923
+ right: 0;
924
+ width: 50%;
925
+ height: 50%;
926
+ background-color: var(--wy-body-bg);
927
+ border-radius: 50%;
928
+ }
929
+
930
+ .wy-icon:not([class*=wy-icon-]) * {
931
+ fill: currentColor;
932
+ }
933
+
934
+ .wy-icon-primary * {
935
+ fill: var(--wy-primary);
936
+ }
937
+
938
+ .wy-icon-secondary * {
939
+ fill: var(--wy-secondary);
940
+ }
941
+
942
+ .wy-icon-success * {
943
+ fill: var(--wy-success);
944
+ }
945
+
946
+ .wy-icon-info * {
947
+ fill: var(--wy-info);
948
+ }
949
+
950
+ .wy-icon-warning * {
951
+ fill: var(--wy-warning);
952
+ }
953
+
954
+ .wy-icon-danger * {
955
+ fill: var(--wy-danger);
956
+ }
957
+
958
+ .wy-icon-light * {
959
+ fill: var(--wy-light);
960
+ }
961
+
962
+ .wy-icon-dark * {
963
+ fill: var(--wy-dark);
964
+ }
965
+
966
+ .wy-image-grid {
967
+ display: flex;
968
+ flex-wrap: wrap;
969
+ justify-content: space-evenly;
970
+ position: relative;
971
+ border-radius: 0.375rem;
972
+ overflow: hidden;
973
+ column-gap: 1px;
974
+ row-gap: 1px;
975
+ }
976
+ .wy-image-grid .wy-image {
977
+ padding: 0;
978
+ width: 50%;
979
+ position: relative;
980
+ flex: auto;
981
+ background-color: inherit;
982
+ background-clip: content-box;
983
+ min-width: max(25%, 4rem);
984
+ min-height: 4rem;
985
+ }
986
+ .wy-image-grid .wy-image:first-of-type:not(:nth-last-of-type(2)) {
987
+ flex-basis: 100% !important;
988
+ }
989
+ .wy-image-grid .wy-image-area {
990
+ display: block;
991
+ height: 100%;
992
+ cursor: pointer;
993
+ }
994
+ .wy-image-grid .wy-image-area img {
995
+ position: absolute;
996
+ height: 100%;
997
+ width: 100%;
998
+ object-fit: contain;
999
+ }
1000
+ .wy-image-grid .wy-more {
1001
+ position: absolute;
1002
+ line-height: 100%;
1003
+ color: #fff;
1004
+ background: rgba(0, 0, 0, 0.5);
1005
+ top: 0;
1006
+ left: 0;
1007
+ bottom: 0;
1008
+ right: 0;
1009
+ display: flex;
1010
+ align-items: center;
1011
+ justify-content: center;
1012
+ font-size: 1.5rem;
1013
+ }
1014
+
1015
+ .wy-table-reactions {
1016
+ --bs-table-bg: transparent;
1017
+ --bs-table-accent-bg: transparent;
1018
+ --bs-table-striped-color: var(--wy-body-color);
1019
+ --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
1020
+ --bs-table-active-color: var(--wy-body-color);
1021
+ --bs-table-active-bg: rgba(0, 0, 0, 0.1);
1022
+ --bs-table-hover-color: var(--wy-body-color);
1023
+ --bs-table-hover-bg: #f2f2f2;
1024
+ width: 100%;
1025
+ margin-bottom: 1rem;
1026
+ color: var(--wy-body-color);
1027
+ vertical-align: top;
1028
+ border-color: #e6e6e6;
1029
+ }
1030
+ .wy-table-reactions > :not(caption) > * > * {
1031
+ padding: 0.5rem 0.5rem;
1032
+ background-color: var(--bs-table-bg);
1033
+ border-bottom-width: 1px;
1034
+ box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
1035
+ }
1036
+ .wy-table-reactions > tbody {
1037
+ vertical-align: inherit;
1038
+ }
1039
+ .wy-table-reactions > thead {
1040
+ vertical-align: bottom;
1041
+ }
1042
+
1043
+ .wy-table-reactions {
1044
+ table-layout: fixed;
1045
+ }
1046
+ .wy-table-reactions th:first-child, .wy-table-reactions th:last-child, .wy-table-reactions td:first-child, .wy-table-reactions td:last-child {
1047
+ color: rgba(0, 0, 0, 0.54) !important;
1048
+ vertical-align: middle;
1049
+ text-align: center;
1050
+ padding: 0.25rem 0.5rem;
1051
+ width: 2.5rem;
1052
+ font-size: 1rem;
1053
+ font-weight: 400;
1054
+ text-transform: none;
1055
+ letter-spacing: normal;
1056
+ }
1057
+ .wy-table-reactions th:first-child, .wy-table-reactions td:first-child {
1058
+ padding-right: 0;
1059
+ }
1060
+ .wy-table-reactions th:last-child, .wy-table-reactions td:last-child {
1061
+ padding-left: 0;
1062
+ }
1063
+
1064
+ .wy-table-trashed th, .wy-table-trashed td {
1065
+ color: #6b6b6b;
1066
+ text-decoration: line-through;
1067
+ }
1068
+ .wy-table-trashed th:not(:last-child), .wy-table-trashed td:not(:last-child) {
1069
+ opacity: 0.65;
1070
+ }
1071
+ .wy-table-trashed th > a, .wy-table-trashed td > a {
1072
+ color: #6b6b6b;
1073
+ }
1074
+ .wy-table-trashed:hover th, .wy-table-trashed:hover td {
1075
+ opacity: 1;
1076
+ }
1077
+
1078
+ .wy-reaction-count {
1079
+ margin: 0 0.25rem;
1080
+ line-height: 1;
1081
+ color: #6b6b6b;
1082
+ font-size: 0.875rem;
1083
+ }
1084
+
1085
+ .wy-reaction-menu {
1086
+ padding: 0.5rem;
1087
+ font-size: 1.125rem;
1088
+ border-radius: 2.5rem;
1089
+ }
1090
+
1091
+ .wy-reaction-picker {
1092
+ display: flex;
1093
+ }
1094
+ .wy-reaction-picker .wy-reaction-button {
1095
+ color: unset;
1096
+ }
1097
+
1098
+ .wy-reactions {
1099
+ display: inline-flex;
1100
+ align-items: center;
1101
+ column-gap: 0.125rem;
1102
+ }
1103
+ .wy-reactions:empty {
1104
+ display: none;
1105
+ }
1106
+
1107
+ .wy-table-reactions td:first-child {
1108
+ width: 2rem;
1109
+ padding-left: 0;
1110
+ }
1111
+ .wy-table-reactions td:nth-child(2) {
1112
+ width: 100%;
1113
+ overflow: hidden;
1114
+ text-overflow: ellipsis;
1115
+ white-space: nowrap;
1116
+ }
1117
+ .wy-table-reactions td:last-child {
1118
+ width: 2rem;
1119
+ padding-right: 0;
1120
+ }
1121
+
1122
+ .wy-messages {
1123
+ padding: 1rem 1rem 0 0.75rem;
1124
+ flex: 1 1 100%;
1125
+ }
1126
+
1127
+ .wy-message-placeholder {
1128
+ opacity: 0.5;
1129
+ }
1130
+
1131
+ .wy-date-separator {
1132
+ font-size: 0.75rem;
1133
+ pointer-events: none;
1134
+ margin: 0.5rem;
1135
+ text-align: center;
1136
+ position: sticky;
1137
+ top: 1.5rem;
1138
+ z-index: 2;
1139
+ }
1140
+ .wy-date-separator time {
1141
+ background: #f2f2f2;
1142
+ padding: 0.25rem 0.5rem;
1143
+ border-radius: 0.375rem;
1144
+ display: inline-block;
1145
+ }
1146
+
1147
+ .wy-appbars + .wy-pane-body .wy-date-separator {
1148
+ top: 4.5rem;
1149
+ }
1150
+
1151
+ .wy-message {
1152
+ display: flex;
1153
+ flex-direction: row;
1154
+ align-items: flex-start;
1155
+ margin-bottom: 1rem;
1156
+ }
1157
+ .wy-message .wy-image-grid,
1158
+ .wy-message .wy-attachments {
1159
+ border-radius: 0.5rem;
1160
+ }
1161
+ .wy-message:hover .wy-message-buttons {
1162
+ opacity: 1;
1163
+ }
1164
+ .wy-message .wy-reaction-menu {
1165
+ right: 0;
1166
+ }
1167
+
1168
+ .wy-message-meta {
1169
+ font-size: 0.75rem;
1170
+ margin: 0 0 0.25rem 0.25rem;
1171
+ color: #6b6b6b;
1172
+ }
1173
+
1174
+ .wy-message-bubble {
1175
+ background-color: #f2f2f2;
1176
+ border-radius: 1rem;
1177
+ display: flex;
1178
+ flex-direction: row;
1179
+ flex-wrap: wrap;
1180
+ padding: 0.75rem;
1181
+ max-width: min(32rem, 100% - 2rem);
1182
+ min-width: 10rem;
1183
+ }
1184
+ .wy-message-bubble > div {
1185
+ margin-bottom: 0.5rem;
1186
+ flex: 1 1 100%;
1187
+ }
1188
+ .wy-message-bubble > div:last-of-type {
1189
+ margin-bottom: 0;
1190
+ }
1191
+
1192
+ .wy-message-text {
1193
+ overflow-wrap: break-word;
1194
+ min-width: 0;
1195
+ }
1196
+ .wy-message-text :not(pre) > code {
1197
+ overflow-wrap: inherit;
1198
+ }
1199
+ .wy-message-text pre, .wy-message-text pre > code {
1200
+ white-space: pre-wrap;
1201
+ }
1202
+ .wy-message-text :last-child {
1203
+ margin-bottom: 0;
1204
+ }
1205
+ .wy-message-text:empty {
1206
+ display: none;
1207
+ }
1208
+
1209
+ .wy-message-author {
1210
+ margin: 1.375rem 0.5rem 0 0;
1211
+ }
1212
+
1213
+ .wy-message-content {
1214
+ display: flex;
1215
+ flex-direction: column;
1216
+ width: 100%;
1217
+ align-items: flex-start;
1218
+ flex-wrap: wrap;
1219
+ min-width: 0;
1220
+ position: relative;
1221
+ }
1222
+ .wy-message-content .wy-reactions {
1223
+ position: absolute;
1224
+ bottom: -0.75rem;
1225
+ left: 0.75rem;
1226
+ background: #f2f2f2;
1227
+ border-radius: 1.5rem;
1228
+ border: 1px solid #f2f2f2;
1229
+ padding: 0.125rem;
1230
+ }
1231
+
1232
+ .wy-message-content-row {
1233
+ display: flex;
1234
+ flex-direction: row;
1235
+ align-items: center;
1236
+ max-width: 100%;
1237
+ }
1238
+
1239
+ .wy-message-buttons {
1240
+ display: flex;
1241
+ flex-direction: row;
1242
+ column-gap: 0.25rem;
1243
+ margin: 0.25rem;
1244
+ opacity: 0;
1245
+ }
1246
+
1247
+ .wy-message-me {
1248
+ margin-right: 0;
1249
+ margin-left: 2.5rem;
1250
+ align-items: flex-end;
1251
+ }
1252
+ .wy-message-me .wy-message-meta {
1253
+ margin: 0 0.25rem 0.25rem 0;
1254
+ }
1255
+ .wy-message-me .wy-message-content {
1256
+ align-items: flex-end;
1257
+ }
1258
+ .wy-message-me .wy-message-content-row {
1259
+ flex-direction: row-reverse;
1260
+ }
1261
+ .wy-message-me .wy-message-buttons {
1262
+ flex-direction: row-reverse;
1263
+ }
1264
+ .wy-message-me .wy-message-bubble {
1265
+ background-color: #e9f6fc;
1266
+ }
1267
+ .wy-message-me .wy-reaction-menu {
1268
+ justify-content: flex-start;
1269
+ right: auto;
1270
+ }
1271
+ .wy-message-me .wy-reactions {
1272
+ background: #e9f6fc;
1273
+ border-color: #e9f6fc;
1274
+ left: auto;
1275
+ right: 0.75rem;
1276
+ }
1277
+
1278
+ .wy-message-emoji .wy-message-bubble {
1279
+ background: none;
1280
+ padding: 0;
1281
+ }
1282
+ .wy-message-emoji .wy-message-text .wy-emoji {
1283
+ width: 3rem;
1284
+ height: 3rem;
1285
+ margin: 0;
1286
+ }
1287
+
1288
+ .wy-readby-status {
1289
+ display: flex;
1290
+ justify-content: flex-end;
1291
+ margin-top: -0.5rem;
1292
+ margin-bottom: 0.75rem;
1293
+ }
1294
+ .wy-readby-status > * {
1295
+ margin-left: 0.25rem;
1296
+ }
1297
+
1298
+ .wy-message-toaster {
1299
+ position: sticky;
1300
+ top: 3.5rem;
1301
+ bottom: 3.5rem;
1302
+ cursor: pointer;
1303
+ z-index: 3;
1304
+ border-radius: 50rem;
1305
+ background-color: #156B93;
1306
+ color: #fff;
1307
+ padding: 0.5rem 1rem;
1308
+ margin-left: auto;
1309
+ margin-right: auto;
1310
+ margin-bottom: 0.5rem;
1311
+ font-size: 0.875rem;
1312
+ width: max-content;
1313
+ align-self: center;
1314
+ text-align: center;
1315
+ color: #fff;
1316
+ }
1317
+
1318
+ .wy-message-readmore {
1319
+ justify-self: center;
1320
+ text-align: center;
1321
+ }
1322
+
1323
+ .wy-message-editor {
1324
+ backface-visibility: hidden;
1325
+ background-color: rgba(242, 242, 242, 0.95);
1326
+ }
1327
+ @supports (position: sticky) {
1328
+ .wy-message-editor {
1329
+ position: sticky;
1330
+ bottom: 0;
1331
+ z-index: 1020;
1332
+ }
1333
+ }
1334
+ @supports (backdrop-filter: blur(0.5rem)) {
1335
+ .wy-message-editor {
1336
+ backdrop-filter: blur(0.5rem);
1337
+ }
1338
+ }
1339
+
1340
+ .wy-message-form .wy-spinner {
1341
+ display: none;
1342
+ }
1343
+ .wy-message-form.wy-uploading .wy-spinner {
1344
+ display: block;
1345
+ }
1346
+ .wy-message-form.wy-uploading [data-icon=plus] {
1347
+ display: none;
1348
+ }
1349
+ .wy-message-form .wy-picker-list:not(:empty) {
1350
+ border-top: 1px solid #cccccc;
1351
+ }
1352
+
1353
+ .wy-message-editor-inputs {
1354
+ display: flex;
1355
+ flex-direction: row;
1356
+ align-items: flex-end;
1357
+ border-top: 1px solid rgba(204, 204, 204, 0.95);
1358
+ padding: 0.5rem;
1359
+ min-height: 3rem;
1360
+ }
1361
+ .wy-message-editor-inputs > :not(:last-child) {
1362
+ margin-right: 0.5rem;
1363
+ }
1364
+
1365
+ .wy-message-editor-buttons {
1366
+ flex: 1 0 auto;
1367
+ }
1368
+
1369
+ .wy-message-editor-text {
1370
+ flex: 1 1 100%;
1371
+ display: flex;
1372
+ flex-direction: column;
1373
+ }
1374
+
1375
+ .wy-message-editor-grow::after,
1376
+ .wy-message-editor-grow > textarea,
1377
+ .wy-message-editor-textfield {
1378
+ flex: 1 1 100%;
1379
+ outline: #f2f2f2 solid 1px;
1380
+ max-height: 10.2rem;
1381
+ background-color: #fff;
1382
+ border-radius: 1rem;
1383
+ border: none;
1384
+ }
1385
+
1386
+ .wy-message-editor-textcontent {
1387
+ font-family: var(--wy-font-sans-serif);
1388
+ font-size: 1rem;
1389
+ padding: 0.375rem 0.75rem;
1390
+ }
1391
+
1392
+ .wy-message-editor-grow {
1393
+ display: grid;
1394
+ }
1395
+ .wy-message-editor-grow::after,
1396
+ .wy-message-editor-grow > textarea {
1397
+ grid-area: 1/1/2/2;
1398
+ }
1399
+ .wy-message-editor-grow::after {
1400
+ content: attr(data-replicated-value) " ";
1401
+ white-space: pre-wrap;
1402
+ visibility: hidden;
1403
+ }
1404
+ .wy-message-editor-grow > textarea {
1405
+ resize: none;
1406
+ overflow: hidden;
1407
+ }
1408
+
1409
+ .wy-viewport {
1410
+ position: fixed;
1411
+ top: 0;
1412
+ right: 0;
1413
+ bottom: 0;
1414
+ left: 0;
1415
+ z-index: 2147483647; /* max possible z-index */
1416
+ pointer-events: none;
1417
+ }
1418
+
1419
+ .wy-overlays {
1420
+ pointer-events: none;
1421
+ width: auto;
1422
+ left: 0;
1423
+ top: 0;
1424
+ right: 0;
1425
+ bottom: 0;
1426
+ max-width: none;
1427
+ display: flex;
1428
+ align-items: center;
1429
+ justify-content: center;
1430
+ transform-style: preserve-3d;
1431
+ overflow-y: initial;
1432
+ overflow-x: initial;
1433
+ perspective: 100rem;
1434
+ perspective-origin: center center;
1435
+ }
1436
+ .wy-overlays .wy-panel {
1437
+ background-color: rgba(255, 255, 255, 0.95);
1438
+ }
1439
+ .wy-overlays .wy-panel:not(.wy-transition) {
1440
+ transform: translateZ(-4rem) !important;
1441
+ }
1442
+ .wy-overlays .wy-panel .wy-controls {
1443
+ position: absolute;
1444
+ border-bottom: none;
1445
+ flex-direction: row;
1446
+ transition: opacity 0.1s 0.2s step-end;
1447
+ }
1448
+ .wy-overlays .wy-panel .wy-controls .wy-icon {
1449
+ color: rgba(0, 0, 0, 0.54);
1450
+ }
1451
+ .wy-overlays .wy-panel.wy-loaded .wy-controls {
1452
+ pointer-events: none;
1453
+ opacity: 0;
1454
+ }
1455
+ .wy-overlays .wy-panel .wy-panel-frame {
1456
+ background-color: transparent;
1457
+ }
1458
+ .wy-overlays .wy-panel.wy-controls-light .wy-icon {
1459
+ color: rgba(0, 0, 0, 0.54);
1460
+ }
1461
+ .wy-overlays .wy-panel.wy-light {
1462
+ background-color: rgba(255, 255, 255, 0.95);
1463
+ }
1464
+ .wy-overlays .wy-panel.wy-light .wy-icon {
1465
+ color: rgba(0, 0, 0, 0.54);
1466
+ }
1467
+ .wy-overlays .wy-panel.wy-controls-dark .wy-icon {
1468
+ color: rgba(255, 255, 255, 0.62);
1469
+ }
1470
+ .wy-overlays .wy-panel.wy-controls-dark .wy-icon:hover, .wy-overlays .wy-panel.wy-controls-dark .wy-icon:focus {
1471
+ color: rgba(255, 255, 255, 0.95);
1472
+ }
1473
+ .wy-overlays .wy-panel.wy-controls-dark .wy-icon:active {
1474
+ color: #fff;
1475
+ }
1476
+ .wy-overlays .wy-panel.wy-dark {
1477
+ background-color: rgba(21, 21, 21, 0.95);
1478
+ }
1479
+ .wy-overlays .wy-panel.wy-dark .wy-icon {
1480
+ color: rgba(255, 255, 255, 0.62);
1481
+ }
1482
+ .wy-overlays .wy-panel.wy-dark .wy-icon:hover, .wy-overlays .wy-panel.wy-dark .wy-icon:focus {
1483
+ color: rgba(255, 255, 255, 0.95);
1484
+ }
1485
+ .wy-overlays .wy-panel.wy-dark .wy-icon:active {
1486
+ color: #fff;
1487
+ }
1488
+ .wy-overlays .wy-panel.wy-dark.wy-open[data-title]::before {
1489
+ background-color: rgba(41, 41, 41, 0.95);
1490
+ color: rgba(255, 255, 255, 0.62);
1491
+ box-shadow: rgba(71, 71, 71, 0.95) 0px -1px 0px 0px inset;
1492
+ }
1493
+ @media (min-width: 768px) {
1494
+ .wy-overlays .wy-panel.wy-floating {
1495
+ left: 1rem;
1496
+ top: 1rem;
1497
+ right: 1rem;
1498
+ bottom: 1rem;
1499
+ border-radius: 0.1875rem;
1500
+ box-shadow: 0 1rem 2.25rem 0.125rem rgba(0, 0, 0, 0.14), 0 0.375rem 1.875rem 0.3125rem rgba(0, 0, 0, 0.12), 0 0.5rem 0.625rem -0.3125rem rgba(0, 0, 0, 0.2);
1501
+ }
1502
+ .wy-overlays .wy-panel.wy-floating:not(.wy-scroll-y) {
1503
+ overflow: hidden;
1504
+ }
1505
+ }
1506
+ .wy-overlays .wy-panel.wy-modal {
1507
+ background-color: rgba(255, 255, 255, 0.95);
1508
+ }
1509
+ @media (min-width: 768px) {
1510
+ .wy-overlays .wy-panel.wy-modal {
1511
+ left: auto;
1512
+ right: auto;
1513
+ top: 2rem;
1514
+ bottom: 3.2rem;
1515
+ margin-left: 4rem;
1516
+ margin-top: auto;
1517
+ margin-right: 4rem;
1518
+ margin-bottom: auto;
1519
+ border-radius: 0.25rem;
1520
+ box-shadow: 0 1rem 2.25rem 0.125rem rgba(0, 0, 0, 0.14), 0 0.375rem 1.875rem 0.3125rem rgba(0, 0, 0, 0.12), 0 0.5rem 0.625rem -0.3125rem rgba(0, 0, 0, 0.2);
1521
+ width: 32rem;
1522
+ max-height: 32rem;
1523
+ }
1524
+ .wy-overlays .wy-panel.wy-modal:not(.wy-scroll-y) {
1525
+ overflow: hidden;
1526
+ }
1527
+ }
1528
+ .wy-overlays .wy-panel.wy-loading .wy-controls {
1529
+ transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
1530
+ opacity: 1;
1531
+ }
1532
+
1533
+ .wy-pager {
1534
+ pointer-events: none;
1535
+ }
1536
+
1537
+ a.wy-pager {
1538
+ display: block;
1539
+ text-align: center;
1540
+ margin: 1rem auto;
1541
+ }
1542
+
1543
+ tr.wy-pager td {
1544
+ text-align: center;
1545
+ border: 0;
1546
+ }
1547
+ tr.wy-pager td .wy-spinner {
1548
+ display: inline;
1549
+ margin: 1rem auto;
1550
+ }
1551
+
1552
+ .wy-pane {
1553
+ min-height: 100vh;
1554
+ display: flex;
1555
+ flex-direction: column;
1556
+ position: relative;
1557
+ }
1558
+
1559
+ .wy-pane-body {
1560
+ display: flex;
1561
+ flex-direction: column;
1562
+ flex: 1;
1563
+ }
1564
+
1565
+ .wy-pane-group {
1566
+ padding: 0.5rem;
1567
+ }
1568
+
1569
+ .wy-panels {
1570
+ position: absolute;
1571
+ top: 0;
1572
+ right: 0;
1573
+ bottom: 0;
1574
+ left: 0;
1575
+ overscroll-behavior: contain;
1576
+ overflow-y: auto;
1577
+ overflow-x: hidden;
1578
+ }
1579
+
1580
+ .wy-panel {
1581
+ position: absolute;
1582
+ top: 0;
1583
+ right: 0;
1584
+ bottom: 0;
1585
+ left: 0;
1586
+ pointer-events: none;
1587
+ overflow: hidden;
1588
+ background-color: rgba(255, 255, 255, 0.95);
1589
+ display: flex;
1590
+ flex-direction: column;
1591
+ }
1592
+ .wy-panel .wy-controls {
1593
+ top: 0.75rem;
1594
+ left: 0.75rem;
1595
+ min-width: 2rem;
1596
+ width: auto;
1597
+ display: flex;
1598
+ z-index: 10000;
1599
+ order: -1;
1600
+ flex-direction: row-reverse;
1601
+ border-bottom: 1px solid #cccccc;
1602
+ }
1603
+ .wy-panel .wy-controls:empty {
1604
+ display: none;
1605
+ }
1606
+ .wy-panel .wy-controls .wy-icon {
1607
+ color: rgba(0, 0, 0, 0.54);
1608
+ }
1609
+ .wy-panel .wy-panel-frame {
1610
+ transition: opacity 0.1s 0.2s cubic-bezier(0.4, 0, 0.2, 1);
1611
+ opacity: 1;
1612
+ }
1613
+ .wy-panel:not(.wy-loaded) .wy-panel-frame {
1614
+ opacity: 0;
1615
+ transition: opacity 0.2s 0.1s step-start;
1616
+ }
1617
+ .wy-panel.wy-open {
1618
+ pointer-events: all;
1619
+ z-index: 5;
1620
+ }
1621
+ .wy-panel.wy-open[data-title]::before {
1622
+ content: attr(data-title);
1623
+ position: absolute;
1624
+ top: 0;
1625
+ left: 0;
1626
+ right: 0;
1627
+ height: 3rem;
1628
+ padding: 0.5rem 0.5rem;
1629
+ opacity: 0;
1630
+ pointer-events: none;
1631
+ display: flex;
1632
+ align-items: center;
1633
+ justify-content: center;
1634
+ transition: opacity 0.1s 0.2s step-end;
1635
+ font-family: var(--wy-font-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Noto Sans, Liberation Sans, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji);
1636
+ line-height: 1.5;
1637
+ font-weight: 400;
1638
+ background-color: rgba(242, 242, 242, 0.95);
1639
+ color: rgba(0, 0, 0, 0.69);
1640
+ box-shadow: rgba(204, 204, 204, 0.95) 0px -1px 0px 0px inset;
1641
+ backface-visibility: hidden;
1642
+ }
1643
+ @supports (backdrop-filter: blur(0.5rem)) {
1644
+ .wy-panel.wy-open[data-title]::before {
1645
+ backdrop-filter: blur(0.5rem);
1646
+ }
1647
+ }
1648
+ .wy-panel.wy-open::after {
1649
+ content: "";
1650
+ position: absolute;
1651
+ top: 0;
1652
+ bottom: 0;
1653
+ left: 0;
1654
+ right: 0;
1655
+ pointer-events: none;
1656
+ opacity: 0;
1657
+ transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0s;
1658
+ }
1659
+ .wy-panel.wy-open.wy-loading[data-title]::before {
1660
+ transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
1661
+ opacity: 1;
1662
+ }
1663
+ .wy-panel.wy-open.wy-loading::after {
1664
+ transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
1665
+ opacity: 1;
1666
+ background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' width='24' height='24' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cstyle type='text/css'%3Eg%7Banimation:rotate 2s linear infinite;transform-origin:center center%7Dcircle%7Bstroke-dasharray:1,100;stroke-dashoffset:0;animation:dash 1.5s ease-in-out infinite,color 6s ease-in-out infinite%7D@keyframes rotate%7B100%25%7Btransform:rotate(360deg)%7D%7D@keyframes dash%7B0%25%7Bstroke-dasharray:1,100;stroke-dashoffset:0%7D50%25%7Bstroke-dasharray:44.5,100;stroke-dashoffset:-17.5px%7D100%25%7Bstroke-dasharray:44.5,100;stroke-dashoffset:-62px%7D%7D@keyframes color%7B0%25,100%25%7Bstroke:%23216eb4%7D40%25%7Bstroke:%2328b7cf%7D66%25%7Bstroke:%23216eb4%7D80%25,90%25%7Bstroke:%2328b7cf%7D%7D%3C/style%3E%3Cg%3E%3Ccircle fill='none' cx='12' cy='12' r='11' stroke-linecap='butt' stroke-width='2' /%3E%3C/g%3E%3C/svg%3E");
1667
+ background-repeat: no-repeat;
1668
+ background-position: 50%;
1669
+ background-size: rem(2);
1670
+ background-color: transparent;
1671
+ }
1672
+
1673
+ .wy-panel {
1674
+ opacity: 0;
1675
+ visibility: hidden;
1676
+ transition: opacity 0.1s cubic-bezier(0.4, 0, 0.2, 1) 0.01s, transform 0.1s cubic-bezier(0.4, 0, 0.2, 1) 0.01s, visibility 0.01s step-end 0.1s;
1677
+ }
1678
+ .wy-panel.wy-open {
1679
+ transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.2s step-start;
1680
+ visibility: visible;
1681
+ }
1682
+ .wy-panel.wy-open.wy-transition {
1683
+ opacity: 1;
1684
+ transform: none;
1685
+ }
1686
+
1687
+ .wy-panel-frame {
1688
+ flex: 1 1 100%;
1689
+ border: 0;
1690
+ }
1691
+
1692
+ .wy-picker-list {
1693
+ border: none;
1694
+ }
1695
+ .wy-picker-list > .wy-picker-list-item:first-child, .wy-picker-list > :first-child .wy-picker-list-item {
1696
+ border-top: none;
1697
+ }
1698
+ .wy-picker-list > .wy-picker-list-item:last-child, .wy-picker-list > :last-child .wy-picker-list-item {
1699
+ border-bottom: none;
1700
+ }
1701
+
1702
+ .wy-picker-list-item {
1703
+ display: flex;
1704
+ align-items: center;
1705
+ padding: 0.25rem 0.5rem;
1706
+ }
1707
+ .wy-picker-list-item > .wy-icon {
1708
+ margin-left: 0.25rem;
1709
+ margin-right: 0.25rem;
1710
+ flex: 0 0 auto;
1711
+ }
1712
+ .wy-picker-list-item > button {
1713
+ margin-block-start: auto;
1714
+ flex: 0 0 auto;
1715
+ }
1716
+
1717
+ .wy-picker-list-item-title {
1718
+ flex-grow: 1;
1719
+ overflow: hidden;
1720
+ text-overflow: ellipsis;
1721
+ white-space: nowrap;
1722
+ }
1723
+
1724
+ .wy-preview {
1725
+ display: flex;
1726
+ align-items: center;
1727
+ justify-content: center;
1728
+ height: calc(100% - 3rem - 1px);
1729
+ position: relative;
1730
+ background-color: #fff;
1731
+ }
1732
+ .wy-dark .wy-preview, .wy-preview.wy-dark {
1733
+ background-color: #292929;
1734
+ }
1735
+
1736
+ .wy-nav-prev, .wy-nav-next {
1737
+ position: fixed;
1738
+ top: 50%;
1739
+ z-index: 1000;
1740
+ }
1741
+ .wy-nav-prev .wy-button-icon, .wy-nav-next .wy-button-icon {
1742
+ background-color: #f2f2f2;
1743
+ }
1744
+ .wy-dark .wy-nav-prev .wy-button-icon, .wy-dark .wy-nav-next .wy-button-icon {
1745
+ background-color: rgba(41, 41, 41, 0.95);
1746
+ }
1747
+
1748
+ .wy-nav-prev {
1749
+ left: 0.5rem;
1750
+ }
1751
+
1752
+ .wy-nav-next {
1753
+ right: 0.5rem;
1754
+ }
1755
+
1756
+ .wy-document {
1757
+ align-self: flex-start;
1758
+ background-color: #fff;
1759
+ color: #000;
1760
+ padding: 2rem 3rem;
1761
+ width: 100%;
1762
+ min-height: 100%;
1763
+ }
1764
+ @media (min-width: 768px) {
1765
+ .wy-document {
1766
+ padding: 3rem 4rem;
1767
+ margin: 2rem 3.5rem;
1768
+ border-radius: 0.125rem;
1769
+ box-shadow: 0 0.25rem 0.3125rem 0 rgba(0, 0, 0, 0.14), 0 0.0625rem 0.625rem 0 rgba(0, 0, 0, 0.12), 0 0.125rem 0.25rem -0.0625rem rgba(0, 0, 0, 0.2);
1770
+ width: 120ch;
1771
+ min-height: 170ch;
1772
+ max-width: 100%;
1773
+ }
1774
+ }
1775
+
1776
+ .wy-toolbar {
1777
+ position: fixed;
1778
+ z-index: 1030;
1779
+ bottom: 1.5rem;
1780
+ left: 0;
1781
+ right: 0;
1782
+ height: 3rem;
1783
+ display: flex;
1784
+ justify-content: center;
1785
+ }
1786
+ .wy-toolbar span {
1787
+ margin-left: 0.25rem;
1788
+ }
1789
+ .wy-toolbar .wy-input {
1790
+ text-align: center;
1791
+ border-color: transparent;
1792
+ }
1793
+
1794
+ .wy-tools {
1795
+ background-color: rgba(242, 242, 242, 0.95);
1796
+ color: #000;
1797
+ border-radius: 0.375rem;
1798
+ display: flex;
1799
+ align-items: center;
1800
+ backface-visibility: hidden;
1801
+ }
1802
+ @supports (backdrop-filter: blur(0.5rem)) {
1803
+ .wy-tools {
1804
+ backdrop-filter: blur(0.5rem);
1805
+ }
1806
+ }
1807
+ .wy-dark .wy-tools {
1808
+ background-color: rgba(41, 41, 41, 0.95);
1809
+ color: rgba(255, 255, 255, 0.62);
1810
+ }
1811
+ .wy-dark .wy-tools .wy-icon {
1812
+ color: rgba(255, 255, 255, 0.62);
1813
+ }
1814
+ .wy-dark .wy-tools .wy-input {
1815
+ background-color: rgba(0, 0, 0, 0.5);
1816
+ color: rgba(255, 255, 255, 0.62);
1817
+ }
1818
+
1819
+ .wy-tool {
1820
+ display: flex;
1821
+ align-items: center;
1822
+ margin: 0 0.5rem;
1823
+ }
1824
+
1825
+ .wy-content-code {
1826
+ align-self: flex-start;
1827
+ width: 100%;
1828
+ padding: 1rem 3rem;
1829
+ }
1830
+
1831
+ .wy-content-iframe {
1832
+ border: 0;
1833
+ display: block;
1834
+ width: 100%;
1835
+ height: 100%;
1836
+ flex: 1 1 100%;
1837
+ }
1838
+ .wy-content-iframe.wy-loaded {
1839
+ background: #fff;
1840
+ }
1841
+ .wy-content-iframe.wy-loaded ~ .wy-content-iframe-fallback, .wy-content-iframe.wy-loaded ~ .wy-spinner {
1842
+ display: none;
1843
+ }
1844
+ .wy-content-iframe.wy-loading:not(.wy-loaded) {
1845
+ position: absolute;
1846
+ visibility: hidden;
1847
+ z-index: -1;
1848
+ pointer-events: none;
1849
+ }
1850
+ .wy-content-iframe.wy-loading:not(.wy-loaded):not(.wy-fallback) ~ .wy-content-iframe-fallback {
1851
+ display: none;
1852
+ }
1853
+ .wy-content-iframe.wy-loading:not(.wy-loaded).wy-fallback ~ .wy-spinner {
1854
+ display: none;
1855
+ }
1856
+ .wy-content-iframe ~ .wy-spinner {
1857
+ margin: auto;
1858
+ }
1859
+
1860
+ .wy-content-html pre, .wy-content-html code {
1861
+ word-break: break-word;
1862
+ white-space: pre-wrap;
1863
+ }
1864
+
1865
+ .wy-content-icon {
1866
+ background-color: #fff;
1867
+ border-radius: 0.5rem;
1868
+ display: flex;
1869
+ align-items: center;
1870
+ flex-direction: column;
1871
+ text-align: center;
1872
+ padding: 1rem 2rem;
1873
+ }
1874
+ .wy-content-icon .wy-icon-stack, .wy-content-icon .wy-icon {
1875
+ width: 8rem;
1876
+ height: 8rem;
1877
+ }
1878
+ .wy-dark .wy-content-icon {
1879
+ background-color: rgba(41, 41, 41, 0.95);
1880
+ color: rgba(255, 255, 255, 0.62);
1881
+ }
1882
+ .wy-dark .wy-content-icon a {
1883
+ color: #79c7ec;
1884
+ }
1885
+ .wy-dark .wy-content-icon .wy-icon {
1886
+ color: rgba(255, 255, 255, 0.7);
1887
+ }
1888
+ .wy-dark .wy-content-icon .wy-icon-stack .wy-icon:last-child {
1889
+ background-color: rgba(41, 41, 41, 0.95);
1890
+ }
1891
+
1892
+ .wy-content-image {
1893
+ min-width: 0;
1894
+ display: flex;
1895
+ align-items: center;
1896
+ justify-content: center;
1897
+ position: relative;
1898
+ margin: auto;
1899
+ max-height: 100%;
1900
+ max-width: 100%;
1901
+ }
1902
+ .wy-content-image.wy-intrinsic-image {
1903
+ object-fit: scale-down;
1904
+ }
1905
+ .wy-content-image:not(.wy-intrinsic-image) {
1906
+ height: 100%;
1907
+ width: 100%;
1908
+ --max-width: min(calc((100vh - 3rem) * (var(--width) / var(--height))), calc(var(--width) * 1px), 100%);
1909
+ --max-height: min(calc(100vw * (var(--height) / var(--width))), calc(var(--height) * 1px), 100%);
1910
+ /* // With sidebar
1911
+ body.controller-content & {
1912
+ --max-width: min(calc((100vh - 6rem) * (var(--width) / var(--height))), calc(var(--width) * 1px), 100%);
1913
+ --max-height: min(calc(100vw * (var(--height) / var(--width))), calc(var(--height) * 1px), 100%);
1914
+
1915
+ @include bs.media-breakpoint-up(lg) {
1916
+ --max-width: min(calc((100vh - 3rem) * (var(--width) / var(--height))), calc(var(--width) * 1px), 100%);
1917
+ --max-height: min(calc((100vw - 20rem) * (var(--height) / var(--width))), calc(var(--height) * 1px), 100%);
1918
+ }
1919
+ } */
1920
+ max-width: var(--max-width);
1921
+ max-height: var(--max-height);
1922
+ transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform-origin 0.2s step-end;
1923
+ }
1924
+ .wy-content-image.wy-zoom {
1925
+ cursor: zoom-out;
1926
+ transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform-origin 0.2s step-start;
1927
+ }
1928
+ .wy-content-image img {
1929
+ min-width: 0;
1930
+ min-height: 0;
1931
+ width: 100%;
1932
+ height: 100%;
1933
+ }
1934
+ .wy-content-image img:not(.wy-loading-transition):not([data-controller~=image]) ~ .wy-spinner {
1935
+ display: none;
1936
+ }
1937
+ .wy-content-image img.wy-loading, .wy-content-image img[data-controller~=image] {
1938
+ transition: opacity 0.15s ease-out;
1939
+ opacity: 0;
1940
+ }
1941
+ .wy-content-image img.wy-loading.wy-loaded, .wy-content-image img[data-controller~=image].wy-loaded {
1942
+ opacity: 1;
1943
+ transition: opacity 0.15s ease-out;
1944
+ }
1945
+ .wy-content-image img.wy-loading.wy-loaded ~ img, .wy-content-image img[data-controller~=image].wy-loaded ~ img {
1946
+ transition-delay: 0.15s;
1947
+ opacity: 0;
1948
+ }
1949
+ .wy-content-image img.wy-loading.wy-loaded ~ .wy-spinner, .wy-content-image img[data-controller~=image].wy-loaded ~ .wy-spinner {
1950
+ display: none;
1951
+ }
1952
+ .wy-content-image img.wy-responsive-image-thumb {
1953
+ position: absolute;
1954
+ z-index: -1;
1955
+ }
1956
+ .wy-content-image img ~ .wy-spinner {
1957
+ position: absolute;
1958
+ }
1959
+
1960
+ .wy-content-video:not(.wy-error) {
1961
+ min-height: 0;
1962
+ max-width: 100%;
1963
+ max-height: 100%;
1964
+ }
1965
+
1966
+ .wy-content-video, .wy-content-audio {
1967
+ margin: auto;
1968
+ }
1969
+ .wy-content-video.wy-loading:not(.wy-loaded), .wy-content-video[data-controller~=media]:not(.wy-loaded), .wy-content-audio.wy-loading:not(.wy-loaded), .wy-content-audio[data-controller~=media]:not(.wy-loaded) {
1970
+ visibility: hidden;
1971
+ }
1972
+ .wy-content-video.wy-loading.wy-loaded ~ .wy-spinner, .wy-content-video[data-controller~=media].wy-loaded ~ .wy-spinner, .wy-content-audio.wy-loading.wy-loaded ~ .wy-spinner, .wy-content-audio[data-controller~=media].wy-loaded ~ .wy-spinner {
1973
+ display: none;
1974
+ }
1975
+ .wy-content-video:focus, .wy-content-audio:focus {
1976
+ outline: none;
1977
+ }
1978
+
1979
+ :root {
1980
+ --pdfViewer-padding-bottom: 0;
1981
+ --page-margin: 2rem auto;
1982
+ --page-border: none;
1983
+ --spreadHorizontalWrapped-margin-LR: -3.5px;
1984
+ --zoom-factor: 1;
1985
+ --viewport-scale-factor: 1;
1986
+ }
1987
+
1988
+ @media screen and (forced-colors: active) {
1989
+ :root {
1990
+ --pdfViewer-padding-bottom: 9px;
1991
+ --page-margin: 9px auto 0;
1992
+ --page-border: none;
1993
+ --spreadHorizontalWrapped-margin-LR: 4.5px;
1994
+ }
1995
+ }
1996
+ :root {
1997
+ --annotation-unfocused-field-background: url("data:image/svg+xml;charset=UTF-8,<svg width='1px' height='1px' xmlns='http://www.w3.org/2000/svg'><rect width='100%' height='100%' style='fill:rgba(0, 54, 255, 0.13);'/></svg>");
1998
+ }
1999
+
2000
+ :root {
2001
+ --xfa-unfocused-field-background: url("data:image/svg+xml;charset=UTF-8,<svg width='1px' height='1px' xmlns='http://www.w3.org/2000/svg'><rect width='100%' height='100%' style='fill:rgba(0, 54, 255, 0.13);'/></svg>");
2002
+ }
2003
+
2004
+ .wy-content-pdf {
2005
+ /* Copyright 2014 Mozilla Foundation
2006
+ *
2007
+ * Licensed under the Apache License, Version 2.0 (the "License");
2008
+ * you may not use this file except in compliance with the License.
2009
+ * You may obtain a copy of the License at
2010
+ *
2011
+ * http://www.apache.org/licenses/LICENSE-2.0
2012
+ *
2013
+ * Unless required by applicable law or agreed to in writing, software
2014
+ * distributed under the License is distributed on an "AS IS" BASIS,
2015
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2016
+ * See the License for the specific language governing permissions and
2017
+ * limitations under the License.
2018
+ */
2019
+ /* Only necessary in Google Chrome, see issue 14205, and most unfortunately
2020
+ * the problem doesn't show up in "text" reference tests. */
2021
+ /* Avoids https://github.com/mozilla/pdf.js/issues/13840 in Chrome */
2022
+ }
2023
+ .wy-content-pdf .wy-input[data-pdf-target=pageNumber] {
2024
+ width: 3rem;
2025
+ }
2026
+ .wy-content-pdf .wy-input[data-pdf-target=zoomLevel] {
2027
+ width: 5rem;
2028
+ }
2029
+ .wy-content-pdf .wy-pdf-container {
2030
+ position: absolute;
2031
+ width: 100%;
2032
+ height: 100%;
2033
+ bottom: 0;
2034
+ left: 0;
2035
+ overflow-y: auto;
2036
+ touch-action: pan-y, pan-x;
2037
+ will-change: scroll-position, opacity;
2038
+ backface-visibility: hidden;
2039
+ max-height: 100%;
2040
+ overflow-x: auto;
2041
+ touch-action: pan-y, pan-x;
2042
+ will-change: scroll-position, opacity;
2043
+ backface-visibility: hidden;
2044
+ max-width: 100%;
2045
+ }
2046
+ .wy-content-pdf .wy-pdf-container:not(body) {
2047
+ -webkit-overflow-scrolling: touch;
2048
+ }
2049
+ .wy-scrollbars .wy-content-pdf .wy-pdf-container {
2050
+ scrollbar-width: thin;
2051
+ scrollbar-color: rgba(128, 128, 128, 0.75) transparent;
2052
+ }
2053
+ .wy-scrollbars .wy-content-pdf .wy-pdf-container::-webkit-scrollbar {
2054
+ height: 0.625rem;
2055
+ width: 0.625rem;
2056
+ background: transparent;
2057
+ z-index: 999;
2058
+ }
2059
+ .wy-scrollbars .wy-content-pdf .wy-pdf-container::-webkit-scrollbar-track {
2060
+ background: transparent;
2061
+ }
2062
+ .wy-scrollbars .wy-content-pdf .wy-pdf-container::-webkit-scrollbar-thumb {
2063
+ background-color: rgba(128, 128, 128, 0.75);
2064
+ border: 0.125rem solid transparent;
2065
+ border-radius: 0.5rem;
2066
+ background-clip: padding-box;
2067
+ }
2068
+ .wy-scrollbars .wy-content-pdf .wy-pdf-container::-webkit-scrollbar-thumb:hover {
2069
+ background-color: rgba(92, 92, 92, 0.75);
2070
+ }
2071
+ .wy-scrollbars .wy-content-pdf .wy-pdf-container::-webkit-scrollbar-thumb:window-inactive {
2072
+ background-color: rgba(128, 128, 128, 0.5);
2073
+ }
2074
+ @supports (overflow-y: overlay) {
2075
+ .wy-scrollbars .wy-content-pdf .wy-pdf-container {
2076
+ overflow-y: overlay;
2077
+ }
2078
+ }
2079
+ .wy-content-pdf .textLayer {
2080
+ position: absolute;
2081
+ text-align: initial;
2082
+ left: 0;
2083
+ top: 0;
2084
+ right: 0;
2085
+ bottom: 0;
2086
+ overflow: hidden;
2087
+ opacity: 0.2;
2088
+ line-height: 1;
2089
+ -webkit-text-size-adjust: none;
2090
+ -moz-text-size-adjust: none;
2091
+ text-size-adjust: none;
2092
+ }
2093
+ .wy-content-pdf .textLayer span,
2094
+ .wy-content-pdf .textLayer br {
2095
+ color: transparent;
2096
+ position: absolute;
2097
+ white-space: pre;
2098
+ cursor: text;
2099
+ transform-origin: 0% 0%;
2100
+ }
2101
+ .wy-content-pdf .textLayer span.markedContent {
2102
+ top: 0;
2103
+ height: 0;
2104
+ }
2105
+ .wy-content-pdf .textLayer .highlight {
2106
+ margin: -1px;
2107
+ padding: 1px;
2108
+ background-color: rgb(180, 0, 170);
2109
+ border-radius: 4px;
2110
+ }
2111
+ .wy-content-pdf .textLayer .highlight.appended {
2112
+ position: initial;
2113
+ }
2114
+ .wy-content-pdf .textLayer .highlight.begin {
2115
+ border-radius: 4px 0 0 4px;
2116
+ }
2117
+ .wy-content-pdf .textLayer .highlight.end {
2118
+ border-radius: 0 4px 4px 0;
2119
+ }
2120
+ .wy-content-pdf .textLayer .highlight.middle {
2121
+ border-radius: 0;
2122
+ }
2123
+ .wy-content-pdf .textLayer .highlight.selected {
2124
+ background-color: rgb(0, 100, 0);
2125
+ }
2126
+ .wy-content-pdf .textLayer ::-moz-selection {
2127
+ background: rgb(0, 0, 255);
2128
+ }
2129
+ .wy-content-pdf .textLayer ::selection {
2130
+ background: rgb(0, 0, 255);
2131
+ }
2132
+ .wy-content-pdf .textLayer br::-moz-selection {
2133
+ background: transparent;
2134
+ }
2135
+ .wy-content-pdf .textLayer br::selection {
2136
+ background: transparent;
2137
+ }
2138
+ .wy-content-pdf .textLayer .endOfContent {
2139
+ display: block;
2140
+ position: absolute;
2141
+ left: 0;
2142
+ top: 100%;
2143
+ right: 0;
2144
+ bottom: 0;
2145
+ z-index: -1;
2146
+ cursor: default;
2147
+ -webkit-user-select: none;
2148
+ -moz-user-select: none;
2149
+ user-select: none;
2150
+ }
2151
+ .wy-content-pdf .textLayer .endOfContent.active {
2152
+ top: 0;
2153
+ }
2154
+ .wy-content-pdf .annotationLayer section {
2155
+ position: absolute;
2156
+ text-align: initial;
2157
+ }
2158
+ .wy-content-pdf .annotationLayer .linkAnnotation > a,
2159
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.pushButton > a {
2160
+ position: absolute;
2161
+ font-size: 1em;
2162
+ top: 0;
2163
+ left: 0;
2164
+ width: 100%;
2165
+ height: 100%;
2166
+ }
2167
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.pushButton > canvas {
2168
+ position: relative;
2169
+ top: 0;
2170
+ left: 0;
2171
+ z-index: -1;
2172
+ }
2173
+ .wy-content-pdf .annotationLayer .linkAnnotation > a:hover,
2174
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.pushButton > a:hover {
2175
+ opacity: 0.2;
2176
+ background: rgb(255, 255, 0);
2177
+ box-shadow: 0 2px 10px rgb(255, 255, 0);
2178
+ }
2179
+ .wy-content-pdf .annotationLayer .textAnnotation img {
2180
+ position: absolute;
2181
+ cursor: pointer;
2182
+ }
2183
+ .wy-content-pdf .annotationLayer .textWidgetAnnotation input,
2184
+ .wy-content-pdf .annotationLayer .textWidgetAnnotation textarea,
2185
+ .wy-content-pdf .annotationLayer .choiceWidgetAnnotation select,
2186
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.checkBox input,
2187
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.radioButton input {
2188
+ background-image: var(--annotation-unfocused-field-background);
2189
+ border: 1px solid transparent;
2190
+ box-sizing: border-box;
2191
+ font-size: 9px;
2192
+ height: 100%;
2193
+ margin: 0;
2194
+ padding: 0 3px;
2195
+ vertical-align: top;
2196
+ width: 100%;
2197
+ }
2198
+ .wy-content-pdf .annotationLayer .choiceWidgetAnnotation select option {
2199
+ padding: 0;
2200
+ }
2201
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.radioButton input {
2202
+ border-radius: 50%;
2203
+ }
2204
+ .wy-content-pdf .annotationLayer .textWidgetAnnotation textarea {
2205
+ font: message-box;
2206
+ font-size: 9px;
2207
+ resize: none;
2208
+ }
2209
+ .wy-content-pdf .annotationLayer .textWidgetAnnotation input[disabled],
2210
+ .wy-content-pdf .annotationLayer .textWidgetAnnotation textarea[disabled],
2211
+ .wy-content-pdf .annotationLayer .choiceWidgetAnnotation select[disabled],
2212
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.checkBox input[disabled],
2213
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.radioButton input[disabled] {
2214
+ background: none;
2215
+ border: 1px solid transparent;
2216
+ cursor: not-allowed;
2217
+ }
2218
+ .wy-content-pdf .annotationLayer .textWidgetAnnotation input:hover,
2219
+ .wy-content-pdf .annotationLayer .textWidgetAnnotation textarea:hover,
2220
+ .wy-content-pdf .annotationLayer .choiceWidgetAnnotation select:hover,
2221
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.checkBox input:hover,
2222
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.radioButton input:hover {
2223
+ border: 1px solid rgb(0, 0, 0);
2224
+ }
2225
+ .wy-content-pdf .annotationLayer .textWidgetAnnotation input:focus,
2226
+ .wy-content-pdf .annotationLayer .textWidgetAnnotation textarea:focus,
2227
+ .wy-content-pdf .annotationLayer .choiceWidgetAnnotation select:focus {
2228
+ background: none;
2229
+ border: 1px solid transparent;
2230
+ }
2231
+ .wy-content-pdf .annotationLayer .textWidgetAnnotation input :focus,
2232
+ .wy-content-pdf .annotationLayer .textWidgetAnnotation textarea :focus,
2233
+ .wy-content-pdf .annotationLayer .choiceWidgetAnnotation select :focus,
2234
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.checkBox :focus,
2235
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.radioButton :focus {
2236
+ background-image: none;
2237
+ background-color: transparent;
2238
+ outline: auto;
2239
+ }
2240
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.checkBox input:checked:before,
2241
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.checkBox input:checked:after,
2242
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.radioButton input:checked:before {
2243
+ background-color: rgb(0, 0, 0);
2244
+ content: "";
2245
+ display: block;
2246
+ position: absolute;
2247
+ }
2248
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.checkBox input:checked:before,
2249
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.checkBox input:checked:after {
2250
+ height: 80%;
2251
+ left: 45%;
2252
+ width: 1px;
2253
+ }
2254
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.checkBox input:checked:before {
2255
+ transform: rotate(45deg);
2256
+ }
2257
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.checkBox input:checked:after {
2258
+ transform: rotate(-45deg);
2259
+ }
2260
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.radioButton input:checked:before {
2261
+ border-radius: 50%;
2262
+ height: 50%;
2263
+ left: 30%;
2264
+ top: 20%;
2265
+ width: 50%;
2266
+ }
2267
+ .wy-content-pdf .annotationLayer .textWidgetAnnotation input.comb {
2268
+ font-family: monospace;
2269
+ padding-left: 2px;
2270
+ padding-right: 0;
2271
+ }
2272
+ .wy-content-pdf .annotationLayer .textWidgetAnnotation input.comb:focus {
2273
+ /*
2274
+ * Letter spacing is placed on the right side of each character. Hence, the
2275
+ * letter spacing of the last character may be placed outside the visible
2276
+ * area, causing horizontal scrolling. We avoid this by extending the width
2277
+ * when the element has focus and revert this when it loses focus.
2278
+ */
2279
+ width: 103%;
2280
+ }
2281
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.checkBox input,
2282
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.radioButton input {
2283
+ -webkit-appearance: none;
2284
+ -moz-appearance: none;
2285
+ appearance: none;
2286
+ padding: 0;
2287
+ }
2288
+ .wy-content-pdf .annotationLayer .popupWrapper {
2289
+ position: absolute;
2290
+ width: 20em;
2291
+ }
2292
+ .wy-content-pdf .annotationLayer .popup {
2293
+ position: absolute;
2294
+ z-index: 200;
2295
+ max-width: 20em;
2296
+ background-color: rgb(255, 255, 153);
2297
+ box-shadow: 0 2px 5px rgb(136, 136, 136);
2298
+ border-radius: 2px;
2299
+ padding: 6px;
2300
+ margin-left: 5px;
2301
+ cursor: pointer;
2302
+ font: message-box;
2303
+ font-size: 9px;
2304
+ white-space: normal;
2305
+ word-wrap: break-word;
2306
+ }
2307
+ .wy-content-pdf .annotationLayer .popup > * {
2308
+ font-size: 9px;
2309
+ }
2310
+ .wy-content-pdf .annotationLayer .popup h1 {
2311
+ display: inline-block;
2312
+ }
2313
+ .wy-content-pdf .annotationLayer .popupDate {
2314
+ display: inline-block;
2315
+ margin-left: 5px;
2316
+ }
2317
+ .wy-content-pdf .annotationLayer .popupContent {
2318
+ border-top: 1px solid rgb(51, 51, 51);
2319
+ margin-top: 2px;
2320
+ padding-top: 2px;
2321
+ }
2322
+ .wy-content-pdf .annotationLayer .richText > * {
2323
+ white-space: pre-wrap;
2324
+ }
2325
+ .wy-content-pdf .annotationLayer .highlightAnnotation,
2326
+ .wy-content-pdf .annotationLayer .underlineAnnotation,
2327
+ .wy-content-pdf .annotationLayer .squigglyAnnotation,
2328
+ .wy-content-pdf .annotationLayer .strikeoutAnnotation,
2329
+ .wy-content-pdf .annotationLayer .freeTextAnnotation,
2330
+ .wy-content-pdf .annotationLayer .lineAnnotation svg line,
2331
+ .wy-content-pdf .annotationLayer .squareAnnotation svg rect,
2332
+ .wy-content-pdf .annotationLayer .circleAnnotation svg ellipse,
2333
+ .wy-content-pdf .annotationLayer .polylineAnnotation svg polyline,
2334
+ .wy-content-pdf .annotationLayer .polygonAnnotation svg polygon,
2335
+ .wy-content-pdf .annotationLayer .caretAnnotation,
2336
+ .wy-content-pdf .annotationLayer .inkAnnotation svg polyline,
2337
+ .wy-content-pdf .annotationLayer .stampAnnotation,
2338
+ .wy-content-pdf .annotationLayer .fileAttachmentAnnotation {
2339
+ cursor: pointer;
2340
+ }
2341
+ .wy-content-pdf .xfaLayer .highlight {
2342
+ margin: -1px;
2343
+ padding: 1px;
2344
+ background-color: rgb(239, 203, 237);
2345
+ border-radius: 4px;
2346
+ }
2347
+ .wy-content-pdf .xfaLayer .highlight.appended {
2348
+ position: initial;
2349
+ }
2350
+ .wy-content-pdf .xfaLayer .highlight.begin {
2351
+ border-radius: 4px 0 0 4px;
2352
+ }
2353
+ .wy-content-pdf .xfaLayer .highlight.end {
2354
+ border-radius: 0 4px 4px 0;
2355
+ }
2356
+ .wy-content-pdf .xfaLayer .highlight.middle {
2357
+ border-radius: 0;
2358
+ }
2359
+ .wy-content-pdf .xfaLayer .highlight.selected {
2360
+ background-color: rgb(203, 223, 203);
2361
+ }
2362
+ .wy-content-pdf .xfaLayer ::-moz-selection {
2363
+ background: rgb(0, 0, 255);
2364
+ }
2365
+ .wy-content-pdf .xfaLayer ::selection {
2366
+ background: rgb(0, 0, 255);
2367
+ }
2368
+ .wy-content-pdf .xfaPage {
2369
+ overflow: hidden;
2370
+ position: relative;
2371
+ }
2372
+ .wy-content-pdf .xfaContentarea {
2373
+ position: absolute;
2374
+ }
2375
+ .wy-content-pdf .xfaPrintOnly {
2376
+ display: none;
2377
+ }
2378
+ .wy-content-pdf .xfaLayer {
2379
+ position: absolute;
2380
+ text-align: initial;
2381
+ top: 0;
2382
+ left: 0;
2383
+ transform-origin: 0 0;
2384
+ line-height: 1.2;
2385
+ }
2386
+ .wy-content-pdf .xfaLayer * {
2387
+ color: inherit;
2388
+ font: inherit;
2389
+ font-style: inherit;
2390
+ font-weight: inherit;
2391
+ font-kerning: inherit;
2392
+ letter-spacing: -0.01px;
2393
+ text-align: inherit;
2394
+ text-decoration: inherit;
2395
+ box-sizing: border-box;
2396
+ background-color: transparent;
2397
+ padding: 0;
2398
+ margin: 0;
2399
+ pointer-events: auto;
2400
+ line-height: inherit;
2401
+ }
2402
+ .wy-content-pdf .xfaLayer div {
2403
+ pointer-events: none;
2404
+ }
2405
+ .wy-content-pdf .xfaLayer svg {
2406
+ pointer-events: none;
2407
+ }
2408
+ .wy-content-pdf .xfaLayer svg * {
2409
+ pointer-events: none;
2410
+ }
2411
+ .wy-content-pdf .xfaLayer a {
2412
+ color: blue;
2413
+ }
2414
+ .wy-content-pdf .xfaRich li {
2415
+ margin-left: 3em;
2416
+ }
2417
+ .wy-content-pdf .xfaFont {
2418
+ color: black;
2419
+ font-weight: normal;
2420
+ font-kerning: none;
2421
+ font-size: 10px;
2422
+ font-style: normal;
2423
+ letter-spacing: 0;
2424
+ text-decoration: none;
2425
+ vertical-align: 0;
2426
+ }
2427
+ .wy-content-pdf .xfaCaption {
2428
+ overflow: hidden;
2429
+ flex: 0 0 auto;
2430
+ }
2431
+ .wy-content-pdf .xfaCaptionForCheckButton {
2432
+ overflow: hidden;
2433
+ flex: 1 1 auto;
2434
+ }
2435
+ .wy-content-pdf .xfaLabel {
2436
+ height: 100%;
2437
+ width: 100%;
2438
+ }
2439
+ .wy-content-pdf .xfaLeft {
2440
+ display: flex;
2441
+ flex-direction: row;
2442
+ align-items: center;
2443
+ }
2444
+ .wy-content-pdf .xfaRight {
2445
+ display: flex;
2446
+ flex-direction: row-reverse;
2447
+ align-items: center;
2448
+ }
2449
+ .wy-content-pdf .xfaLeft > .xfaCaption,
2450
+ .wy-content-pdf .xfaLeft > .xfaCaptionForCheckButton,
2451
+ .wy-content-pdf .xfaRight > .xfaCaption,
2452
+ .wy-content-pdf .xfaRight > .xfaCaptionForCheckButton {
2453
+ max-height: 100%;
2454
+ }
2455
+ .wy-content-pdf .xfaTop {
2456
+ display: flex;
2457
+ flex-direction: column;
2458
+ align-items: flex-start;
2459
+ }
2460
+ .wy-content-pdf .xfaBottom {
2461
+ display: flex;
2462
+ flex-direction: column-reverse;
2463
+ align-items: flex-start;
2464
+ }
2465
+ .wy-content-pdf .xfaTop > .xfaCaption,
2466
+ .wy-content-pdf .xfaTop > .xfaCaptionForCheckButton,
2467
+ .wy-content-pdf .xfaBottom > .xfaCaption,
2468
+ .wy-content-pdf .xfaBottom > .xfaCaptionForCheckButton {
2469
+ width: 100%;
2470
+ }
2471
+ .wy-content-pdf .xfaBorder {
2472
+ background-color: transparent;
2473
+ position: absolute;
2474
+ pointer-events: none;
2475
+ }
2476
+ .wy-content-pdf .xfaWrapped {
2477
+ width: 100%;
2478
+ height: 100%;
2479
+ }
2480
+ .wy-content-pdf .xfaTextfield:focus,
2481
+ .wy-content-pdf .xfaSelect:focus {
2482
+ background-image: none;
2483
+ background-color: transparent;
2484
+ outline: auto;
2485
+ outline-offset: -1px;
2486
+ }
2487
+ .wy-content-pdf .xfaCheckbox:focus,
2488
+ .wy-content-pdf .xfaRadio:focus {
2489
+ outline: auto;
2490
+ }
2491
+ .wy-content-pdf .xfaTextfield,
2492
+ .wy-content-pdf .xfaSelect {
2493
+ height: 100%;
2494
+ width: 100%;
2495
+ flex: 1 1 auto;
2496
+ border: none;
2497
+ resize: none;
2498
+ background-image: var(--xfa-unfocused-field-background);
2499
+ }
2500
+ .wy-content-pdf .xfaTop > .xfaTextfield,
2501
+ .wy-content-pdf .xfaTop > .xfaSelect,
2502
+ .wy-content-pdf .xfaBottom > .xfaTextfield,
2503
+ .wy-content-pdf .xfaBottom > .xfaSelect {
2504
+ flex: 0 1 auto;
2505
+ }
2506
+ .wy-content-pdf .xfaButton {
2507
+ cursor: pointer;
2508
+ width: 100%;
2509
+ height: 100%;
2510
+ border: none;
2511
+ text-align: center;
2512
+ }
2513
+ .wy-content-pdf .xfaLink {
2514
+ width: 100%;
2515
+ height: 100%;
2516
+ position: absolute;
2517
+ top: 0;
2518
+ left: 0;
2519
+ }
2520
+ .wy-content-pdf .xfaCheckbox,
2521
+ .wy-content-pdf .xfaRadio {
2522
+ width: 100%;
2523
+ height: 100%;
2524
+ flex: 0 0 auto;
2525
+ border: none;
2526
+ }
2527
+ .wy-content-pdf .xfaRich {
2528
+ white-space: pre-wrap;
2529
+ width: 100%;
2530
+ height: 100%;
2531
+ }
2532
+ .wy-content-pdf .xfaImage {
2533
+ -o-object-position: left top;
2534
+ object-position: left top;
2535
+ -o-object-fit: contain;
2536
+ object-fit: contain;
2537
+ width: 100%;
2538
+ height: 100%;
2539
+ }
2540
+ .wy-content-pdf .xfaLrTb,
2541
+ .wy-content-pdf .xfaRlTb,
2542
+ .wy-content-pdf .xfaTb {
2543
+ display: flex;
2544
+ flex-direction: column;
2545
+ align-items: stretch;
2546
+ }
2547
+ .wy-content-pdf .xfaLr {
2548
+ display: flex;
2549
+ flex-direction: row;
2550
+ align-items: stretch;
2551
+ }
2552
+ .wy-content-pdf .xfaRl {
2553
+ display: flex;
2554
+ flex-direction: row-reverse;
2555
+ align-items: stretch;
2556
+ }
2557
+ .wy-content-pdf .xfaTb > div {
2558
+ justify-content: left;
2559
+ }
2560
+ .wy-content-pdf .xfaPosition {
2561
+ position: relative;
2562
+ }
2563
+ .wy-content-pdf .xfaArea {
2564
+ position: relative;
2565
+ }
2566
+ .wy-content-pdf .xfaValignMiddle {
2567
+ display: flex;
2568
+ align-items: center;
2569
+ }
2570
+ .wy-content-pdf .xfaTable {
2571
+ display: flex;
2572
+ flex-direction: column;
2573
+ align-items: stretch;
2574
+ }
2575
+ .wy-content-pdf .xfaTable .xfaRow {
2576
+ display: flex;
2577
+ flex-direction: row;
2578
+ align-items: stretch;
2579
+ }
2580
+ .wy-content-pdf .xfaTable .xfaRlRow {
2581
+ display: flex;
2582
+ flex-direction: row-reverse;
2583
+ align-items: stretch;
2584
+ flex: 1;
2585
+ }
2586
+ .wy-content-pdf .xfaTable .xfaRlRow > div {
2587
+ flex: 1;
2588
+ }
2589
+ .wy-content-pdf .xfaNonInteractive input,
2590
+ .wy-content-pdf .xfaNonInteractive textarea,
2591
+ .wy-content-pdf .xfaDisabled input,
2592
+ .wy-content-pdf .xfaDisabled textarea,
2593
+ .wy-content-pdf .xfaReadOnly input,
2594
+ .wy-content-pdf .xfaReadOnly textarea {
2595
+ background: initial;
2596
+ }
2597
+ @media print {
2598
+ .wy-content-pdf .xfaTextfield,
2599
+ .wy-content-pdf .xfaSelect {
2600
+ background: transparent;
2601
+ }
2602
+ .wy-content-pdf .xfaSelect {
2603
+ -webkit-appearance: none;
2604
+ -moz-appearance: none;
2605
+ appearance: none;
2606
+ text-indent: 1px;
2607
+ text-overflow: "";
2608
+ }
2609
+ }
2610
+ .wy-content-pdf .pdfViewer {
2611
+ padding-bottom: var(--pdfViewer-padding-bottom);
2612
+ }
2613
+ .wy-content-pdf .pdfViewer .canvasWrapper {
2614
+ overflow: hidden;
2615
+ }
2616
+ .wy-content-pdf .pdfViewer .page {
2617
+ direction: ltr;
2618
+ width: 816px;
2619
+ height: 1056px;
2620
+ margin: var(--page-margin);
2621
+ position: relative;
2622
+ overflow: visible;
2623
+ border: var(--page-border);
2624
+ background-clip: content-box;
2625
+ box-shadow: 0 0.25rem 0.3125rem 0 rgba(0, 0, 0, 0.14), 0 0.0625rem 0.625rem 0 rgba(0, 0, 0, 0.12), 0 0.125rem 0.25rem -0.0625rem rgba(0, 0, 0, 0.2);
2626
+ background-color: rgb(255, 255, 255);
2627
+ }
2628
+ .wy-content-pdf .pdfViewer .dummyPage {
2629
+ position: relative;
2630
+ width: 0;
2631
+ /* The height is set via JS, see `BaseViewer.#ensurePageViewVisible`. */
2632
+ }
2633
+ .wy-content-pdf .pdfViewer.removePageBorders .page {
2634
+ margin: 0 auto 10px;
2635
+ border: none;
2636
+ }
2637
+ .wy-content-pdf .pdfViewer.singlePageView {
2638
+ display: inline-block;
2639
+ }
2640
+ .wy-content-pdf .pdfViewer.singlePageView .page {
2641
+ margin: 0;
2642
+ border: none;
2643
+ }
2644
+ .wy-content-pdf .pdfViewer.scrollHorizontal,
2645
+ .wy-content-pdf .pdfViewer.scrollWrapped,
2646
+ .wy-content-pdf .spread {
2647
+ margin-left: 3.5px;
2648
+ margin-right: 3.5px;
2649
+ text-align: center;
2650
+ }
2651
+ .wy-content-pdf .pdfViewer.scrollHorizontal,
2652
+ .wy-content-pdf .spread {
2653
+ white-space: nowrap;
2654
+ }
2655
+ .wy-content-pdf .pdfViewer.removePageBorders,
2656
+ .wy-content-pdf .pdfViewer.scrollHorizontal .spread,
2657
+ .wy-content-pdf .pdfViewer.scrollWrapped .spread {
2658
+ margin-left: 0;
2659
+ margin-right: 0;
2660
+ }
2661
+ .wy-content-pdf .spread .page,
2662
+ .wy-content-pdf .spread .dummyPage,
2663
+ .wy-content-pdf .pdfViewer.scrollHorizontal .page,
2664
+ .wy-content-pdf .pdfViewer.scrollWrapped .page,
2665
+ .wy-content-pdf .pdfViewer.scrollHorizontal .spread,
2666
+ .wy-content-pdf .pdfViewer.scrollWrapped .spread {
2667
+ display: inline-block;
2668
+ vertical-align: middle;
2669
+ }
2670
+ .wy-content-pdf .spread .page,
2671
+ .wy-content-pdf .pdfViewer.scrollHorizontal .page,
2672
+ .wy-content-pdf .pdfViewer.scrollWrapped .page {
2673
+ margin-left: var(--spreadHorizontalWrapped-margin-LR);
2674
+ margin-right: var(--spreadHorizontalWrapped-margin-LR);
2675
+ }
2676
+ .wy-content-pdf .pdfViewer.removePageBorders .spread .page,
2677
+ .wy-content-pdf .pdfViewer.removePageBorders.scrollHorizontal .page,
2678
+ .wy-content-pdf .pdfViewer.removePageBorders.scrollWrapped .page {
2679
+ margin-left: 5px;
2680
+ margin-right: 5px;
2681
+ }
2682
+ .wy-content-pdf .pdfViewer .page canvas {
2683
+ margin: 0;
2684
+ display: block;
2685
+ }
2686
+ .wy-content-pdf .pdfViewer .page canvas[hidden] {
2687
+ display: none;
2688
+ }
2689
+ .wy-content-pdf .pdfViewer .page .loadingIcon {
2690
+ position: absolute;
2691
+ display: block;
2692
+ left: 0;
2693
+ top: 0;
2694
+ right: 0;
2695
+ bottom: 0;
2696
+ }
2697
+ .wy-content-pdf .pdfViewer .page .loadingIcon.notVisible {
2698
+ background: none;
2699
+ }
2700
+ .wy-content-pdf .pdfPresentationMode .pdfViewer {
2701
+ padding-bottom: 0;
2702
+ }
2703
+ .wy-content-pdf .pdfPresentationMode .spread {
2704
+ margin: 0;
2705
+ }
2706
+ .wy-content-pdf .pdfPresentationMode .pdfViewer .page {
2707
+ margin: 0 auto;
2708
+ border: 2px solid transparent;
2709
+ }
2710
+
2711
+ .wy-content-text {
2712
+ word-break: break-word;
2713
+ white-space: pre-wrap;
2714
+ }
2715
+
2716
+ .wy-scroll-y {
2717
+ overflow-y: auto;
2718
+ touch-action: pan-y, pan-x;
2719
+ will-change: scroll-position, opacity;
2720
+ backface-visibility: hidden;
2721
+ max-height: 100%;
2722
+ }
2723
+ .wy-scroll-y:not(body) {
2724
+ -webkit-overflow-scrolling: touch;
2725
+ }
2726
+ .wy-scroll-y:not(.wy-scroll-x) {
2727
+ overflow-x: hidden;
2728
+ touch-action: pan-y;
2729
+ }
2730
+
2731
+ .wy-scroll-x {
2732
+ overflow-x: auto;
2733
+ touch-action: pan-y, pan-x;
2734
+ will-change: scroll-position, opacity;
2735
+ backface-visibility: hidden;
2736
+ max-width: 100%;
2737
+ }
2738
+ .wy-scroll-x:not(.wy-scroll-y) {
2739
+ overflow-y: hidden;
2740
+ touch-action: pan-x;
2741
+ }
2742
+
2743
+ .wy-scrollbars.wy-scroll-y, .wy-scrollbars .wy-scroll-y {
2744
+ scrollbar-width: thin;
2745
+ scrollbar-color: rgba(128, 128, 128, 0.75) transparent;
2746
+ }
2747
+ @supports (overflow-y: overlay) {
2748
+ .wy-scrollbars.wy-scroll-y, .wy-scrollbars .wy-scroll-y {
2749
+ overflow-y: overlay;
2750
+ }
2751
+ }
2752
+ .wy-scrollbars.wy-scroll-y::-webkit-scrollbar, .wy-scrollbars .wy-scroll-y::-webkit-scrollbar {
2753
+ height: 0.625rem;
2754
+ width: 0.625rem;
2755
+ background: transparent;
2756
+ z-index: 999;
2757
+ }
2758
+ .wy-scrollbars.wy-scroll-y::-webkit-scrollbar-track, .wy-scrollbars .wy-scroll-y::-webkit-scrollbar-track {
2759
+ background: transparent;
2760
+ }
2761
+ .wy-scrollbars.wy-scroll-y::-webkit-scrollbar-thumb, .wy-scrollbars .wy-scroll-y::-webkit-scrollbar-thumb {
2762
+ background-color: rgba(128, 128, 128, 0.75);
2763
+ border: 0.125rem solid transparent;
2764
+ border-radius: 0.5rem;
2765
+ background-clip: padding-box;
2766
+ }
2767
+ .wy-scrollbars.wy-scroll-y::-webkit-scrollbar-thumb:hover, .wy-scrollbars .wy-scroll-y::-webkit-scrollbar-thumb:hover {
2768
+ background-color: rgba(92, 92, 92, 0.75);
2769
+ }
2770
+ .wy-scrollbars.wy-scroll-y::-webkit-scrollbar-thumb:window-inactive, .wy-scrollbars .wy-scroll-y::-webkit-scrollbar-thumb:window-inactive {
2771
+ background-color: rgba(128, 128, 128, 0.5);
2772
+ }
2773
+ .wy-scrollbars.wy-scroll-y::-webkit-scrollbar-button:vertical:start, .wy-scrollbars .wy-scroll-y::-webkit-scrollbar-button:vertical:start {
2774
+ height: var(--wy-scrollbar-adjust-top, 0);
2775
+ }
2776
+ .wy-scrollbars.wy-scroll-y::-webkit-scrollbar-button:vertical:end, .wy-scrollbars .wy-scroll-y::-webkit-scrollbar-button:vertical:end {
2777
+ height: var(--wy-scrollbar-adjust-bottom, 0);
2778
+ }
2779
+
2780
+ .wy-block-scroll {
2781
+ overflow: hidden !important;
2782
+ }
2783
+
2784
+ .wy-scrollbar-detection {
2785
+ position: fixed;
2786
+ top: 0;
2787
+ left: 0;
2788
+ width: 8rem;
2789
+ height: 8rem;
2790
+ overflow: scroll;
2791
+ z-index: -99999;
2792
+ pointer-events: none;
2793
+ visibility: hidden;
2794
+ }
2795
+
2796
+ svg.wy-spinner circle {
2797
+ stroke-dasharray: 1, 100;
2798
+ stroke-dashoffset: 0;
2799
+ transform-origin: center;
2800
+ }
2801
+ svg.wy-spinner.wy-spin {
2802
+ animation: wy-rotate 1.4s linear infinite;
2803
+ }
2804
+ svg.wy-spinner.wy-spin circle {
2805
+ animation: wy-dash 1.4s ease-in-out infinite, wy-color 2.8s ease-in-out infinite;
2806
+ }
2807
+
2808
+ @keyframes wy-rotate {
2809
+ 100% {
2810
+ transform: rotate(360deg);
2811
+ }
2812
+ }
2813
+ @keyframes wy-dash {
2814
+ 0% {
2815
+ stroke-dasharray: 1, 100;
2816
+ stroke-dashoffset: 0;
2817
+ }
2818
+ 50% {
2819
+ stroke-dasharray: 44.5, 100;
2820
+ stroke-dashoffset: -17.5;
2821
+ }
2822
+ 100% {
2823
+ stroke-dasharray: 44.5, 100;
2824
+ stroke-dashoffset: -62;
2825
+ }
2826
+ }
2827
+ @keyframes wy-color {
2828
+ 0%, 100% {
2829
+ stroke: hsl(217deg, 77.2287735849%, 50%);
2830
+ }
2831
+ 25% {
2832
+ stroke: hsl(6deg, 71.1567324185%, 50%);
2833
+ }
2834
+ 50% {
2835
+ stroke: hsl(55deg, 81.2875214408%, 50%);
2836
+ }
2837
+ 75% {
2838
+ stroke: hsl(121deg, 50.2009084556%, 50%);
2839
+ }
2840
+ }
2841
+ .wy-typing-show {
2842
+ font-style: italic;
2843
+ display: none;
2844
+ }
2845
+
2846
+ .wy-typing-active .wy-typing-show {
2847
+ display: block;
2848
+ }
2849
+ .wy-typing-active .wy-typing-hide {
2850
+ display: none;
2851
+ }
2852
+
2853
+ .wy-appbar .wy-typing-hide {
2854
+ position: relative;
2855
+ padding: 0 1.25rem;
2856
+ }
2857
+ .wy-appbar .wy-typing-hide .wy-presence.wy-presence-active {
2858
+ top: 0.375rem;
2859
+ left: 0.25rem;
2860
+ }