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