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