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