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