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