headmin 0.1.2 → 0.2.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 (210) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -15
  3. data/Gemfile +1 -1
  4. data/Gemfile.lock +24 -2
  5. data/README.md +5 -34
  6. data/app/controllers/concerns/headmin/authentication.rb +0 -8
  7. data/app/controllers/concerns/headmin/pagination.rb +1 -1
  8. data/app/helpers/headmin/admin_helper.rb +4 -4
  9. data/app/models/concerns/headmin/block.rb +11 -0
  10. data/app/models/concerns/headmin/blockable.rb +10 -0
  11. data/app/models/concerns/headmin/field.rb +17 -0
  12. data/app/models/concerns/headmin/fieldable.rb +44 -0
  13. data/app/services/block_service.rb +68 -0
  14. data/app/views/{layouts → examples}/admin.html.erb +0 -0
  15. data/app/views/{layouts/admin → examples}/auth.html.erb +0 -0
  16. data/app/views/headmin/_blocks.html.erb +24 -0
  17. data/app/views/headmin/_breadcrumbs.html.erb +9 -5
  18. data/app/views/headmin/_card.html.erb +48 -0
  19. data/app/views/headmin/_dropdown.html.erb +18 -0
  20. data/app/views/headmin/_filters.html.erb +56 -34
  21. data/app/views/headmin/_form.html.erb +60 -6
  22. data/app/views/headmin/_heading.html.erb +8 -4
  23. data/app/views/headmin/_index.html.erb +9 -8
  24. data/app/views/headmin/_notifications.html.erb +8 -0
  25. data/app/views/headmin/_pagination.html.erb +11 -7
  26. data/app/views/headmin/_popup.html.erb +26 -0
  27. data/app/views/headmin/_table.html.erb +11 -4
  28. data/app/views/headmin/dropdown/_button.html.erb +13 -0
  29. data/app/views/headmin/dropdown/_devise.html.erb +21 -0
  30. data/app/views/headmin/{layout/dropdown → dropdown}/_divider.html.erb +1 -1
  31. data/app/views/headmin/dropdown/_item.html.erb +18 -0
  32. data/app/views/headmin/dropdown/_list.html.erb +11 -0
  33. data/app/views/headmin/dropdown/_locale.html.erb +17 -0
  34. data/app/views/headmin/filters/_date.html.erb +21 -16
  35. data/app/views/headmin/filters/_search.html.erb +18 -18
  36. data/app/views/headmin/filters/_select.html.erb +28 -23
  37. data/app/views/headmin/filters/filter/_button.html.erb +15 -6
  38. data/app/views/headmin/filters/filter/_menu_item.html.erb +2 -2
  39. data/app/views/headmin/filters/filter/_template.html.erb +2 -2
  40. data/app/views/headmin/forms/_actions.html.erb +4 -8
  41. data/app/views/headmin/forms/_base.html.erb +60 -0
  42. data/app/views/headmin/forms/_blocks.html.erb +32 -0
  43. data/app/views/headmin/forms/_checkbox.html.erb +39 -0
  44. data/app/views/headmin/forms/_ckeditor.html.erb +42 -0
  45. data/app/views/headmin/forms/_date.html.erb +45 -0
  46. data/app/views/headmin/forms/_email.html.erb +39 -0
  47. data/app/views/headmin/forms/_file.html.erb +40 -0
  48. data/app/views/headmin/forms/_image.html.erb +55 -0
  49. data/app/views/headmin/forms/_label.html.erb +24 -0
  50. data/app/views/headmin/forms/_number.html.erb +50 -0
  51. data/app/views/headmin/forms/_password.html.erb +69 -0
  52. data/app/views/headmin/forms/_redactorx.html.erb +49 -0
  53. data/app/views/headmin/forms/_repeater.html.erb +133 -0
  54. data/app/views/headmin/forms/_select.html.erb +70 -0
  55. data/app/views/headmin/forms/_text.html.erb +62 -0
  56. data/app/views/headmin/forms/_textarea.html.erb +39 -0
  57. data/app/views/headmin/forms/_url.html.erb +39 -0
  58. data/app/views/headmin/forms/_validation.html.erb +21 -0
  59. data/app/views/headmin/forms/actions/_destroy.html.erb +13 -0
  60. data/app/views/headmin/forms/actions/_save.html.erb +12 -0
  61. data/app/views/headmin/forms/actions/_view.html.erb +15 -0
  62. data/app/views/headmin/forms/fields/_base.html.erb +25 -0
  63. data/app/views/headmin/forms/fields/_file.html.erb +15 -22
  64. data/app/views/headmin/forms/fields/_group.html.erb +38 -0
  65. data/app/views/headmin/forms/fields/_image.html.erb +15 -35
  66. data/app/views/headmin/forms/fields/_list.html.erb +26 -0
  67. data/app/views/headmin/forms/fields/_text.html.erb +15 -37
  68. data/app/views/headmin/forms/repeater/_row.html.erb +51 -0
  69. data/app/views/headmin/heading/_title.html.erb +1 -1
  70. data/app/views/headmin/layout/_body.html.erb +1 -1
  71. data/app/views/headmin/layout/_content.html.erb +1 -1
  72. data/app/views/headmin/layout/_footer.html.erb +1 -1
  73. data/app/views/headmin/layout/_header.html.erb +1 -1
  74. data/app/views/headmin/layout/_main.html.erb +2 -2
  75. data/app/views/headmin/layout/_sidebar.html.erb +1 -1
  76. data/app/views/headmin/layout/sidebar/{_menu.html.erb → _nav.html.erb} +1 -1
  77. data/app/views/headmin/nav/_item.html.erb +21 -0
  78. data/app/views/headmin/nav/item/_devise.html.erb +21 -0
  79. data/app/views/headmin/nav/item/_locale.html.erb +17 -0
  80. data/app/views/headmin/pagination/_per_page.html.erb +18 -0
  81. data/app/views/headmin/{kaminari → pagination/kaminari}/_first_page.html.erb +0 -0
  82. data/app/views/headmin/{kaminari → pagination/kaminari}/_gap.html.erb +0 -0
  83. data/app/views/headmin/{kaminari → pagination/kaminari}/_last_page.html.erb +0 -0
  84. data/app/views/headmin/{kaminari → pagination/kaminari}/_next_page.html.erb +0 -0
  85. data/app/views/headmin/{kaminari → pagination/kaminari}/_page.html.erb +1 -1
  86. data/app/views/headmin/{kaminari → pagination/kaminari}/_paginator.html.erb +0 -0
  87. data/app/views/headmin/{kaminari → pagination/kaminari}/_prev_page.html.erb +0 -0
  88. data/app/views/headmin/table/_actions.html.erb +24 -17
  89. data/app/views/headmin/table/_body.html.erb +12 -10
  90. data/app/views/headmin/table/_foot.html.erb +8 -4
  91. data/app/views/headmin/table/_footer.html.erb +3 -7
  92. data/app/views/headmin/table/_head.html.erb +3 -1
  93. data/app/views/headmin/table/_header.html.erb +3 -7
  94. data/app/views/headmin/table/actions/_action.html.erb +26 -9
  95. data/app/views/headmin/table/actions/_delete.html.erb +11 -7
  96. data/app/views/headmin/table/actions/_export.html.erb +11 -7
  97. data/app/views/headmin/table/body/_association.html.erb +1 -1
  98. data/app/views/headmin/table/body/_boolean.erb +1 -1
  99. data/app/views/headmin/table/body/_currency.html.erb +1 -1
  100. data/app/views/headmin/table/body/_date.html.erb +1 -1
  101. data/app/views/headmin/table/body/_id.html.erb +2 -2
  102. data/app/views/headmin/table/body/_row.html.erb +1 -1
  103. data/app/views/headmin/table/body/_string.html.erb +1 -1
  104. data/app/views/headmin/table/body/_text.html.erb +1 -1
  105. data/app/views/headmin/table/foot/_cell.html.erb +1 -1
  106. data/app/views/headmin/table/foot/_id.html.erb +2 -2
  107. data/app/views/headmin/table/head/_cell.html.erb +1 -1
  108. data/app/views/headmin/table/head/_id.html.erb +3 -3
  109. data/app/views/headmin/views/devise/confirmations/_new.html.erb +9 -0
  110. data/app/views/headmin/views/devise/passwords/_edit.html.erb +12 -0
  111. data/app/views/headmin/views/devise/passwords/_new.html.erb +9 -0
  112. data/app/views/{admin/users/registrations/edit.html.erb → headmin/views/devise/registrations/_edit.html.erb} +5 -5
  113. data/app/views/headmin/views/devise/registrations/_new.html.erb +11 -0
  114. data/app/views/headmin/views/devise/sessions/_new.html.erb +13 -0
  115. data/app/views/{admin/users → headmin/views/devise}/shared/_error_messages.html.erb +0 -0
  116. data/app/views/{admin/users → headmin/views/devise}/shared/_links.html.erb +0 -0
  117. data/app/views/headmin/views/devise/unlocks/_new.html.erb +10 -0
  118. data/config/initializers/customize_input_error.rb +9 -0
  119. data/config/locales/devise/en.yml +65 -0
  120. data/config/locales/en.yml +2 -134
  121. data/config/locales/headmin/filters/en.yml +13 -0
  122. data/config/locales/headmin/filters/nl.yml +13 -0
  123. data/config/locales/headmin/forms/en.yml +34 -0
  124. data/config/locales/headmin/forms/nl.yml +33 -0
  125. data/config/locales/headmin/heading/en.yml +5 -0
  126. data/config/locales/headmin/heading/nl.yml +5 -0
  127. data/config/locales/headmin/layout/en.yml +14 -0
  128. data/config/locales/headmin/layout/nl.yml +14 -0
  129. data/config/locales/headmin/pagination/en.yml +21 -0
  130. data/config/locales/headmin/pagination/nl.yml +21 -0
  131. data/config/locales/headmin/table/en.yml +23 -0
  132. data/config/locales/headmin/table/nl.yml +23 -0
  133. data/config/locales/headmin/views/en.yml +58 -0
  134. data/config/locales/headmin/views/nl.yml +58 -0
  135. data/config/locales/nl.yml +2 -135
  136. data/dist/css/headmin.css +3182 -743
  137. data/dist/js/headmin.js +729 -33
  138. data/docs/README.md +2 -1
  139. data/docs/blocks.md +70 -85
  140. data/docs/devise.md +1 -60
  141. data/docs/fields.md +57 -0
  142. data/lib/generators/headmin/blocks_generator.rb +19 -0
  143. data/lib/generators/headmin/fields_generator.rb +19 -0
  144. data/lib/generators/templates/migrations/create_blocks.rb +10 -0
  145. data/lib/generators/templates/migrations/create_fields.rb +13 -0
  146. data/lib/generators/templates/models/block.rb +3 -0
  147. data/lib/generators/templates/models/field.rb +3 -0
  148. data/lib/headmin/version.rb +1 -1
  149. data/package.json +6 -6
  150. data/src/js/headmin/controllers/blocks_controller.js +103 -0
  151. data/src/js/headmin/controllers/filters_controller.js +23 -12
  152. data/src/js/headmin/controllers/popup_controller.js +68 -0
  153. data/src/js/headmin/controllers/repeater_controller.js +117 -11
  154. data/src/js/headmin/controllers/table_actions_controller.js +16 -5
  155. data/src/js/headmin/controllers/table_controller.js +84 -1
  156. data/src/js/headmin/headmin.js +29 -56
  157. data/src/scss/headmin/filters.scss +0 -14
  158. data/src/scss/headmin/form.scss +43 -3
  159. data/src/scss/headmin/popup.scss +17 -0
  160. data/src/scss/headmin/table.scss +9 -6
  161. data/src/scss/headmin.scss +7 -4
  162. data/src/scss/vendor/redactorx/override.css +3 -0
  163. data/src/scss/vendor/redactorx/redactorx.css +1460 -0
  164. data/yarn.lock +105 -2210
  165. metadata +93 -61
  166. data/app/controllers/admin/users/confirmations_controller.rb +0 -31
  167. data/app/controllers/admin/users/omniauth_callbacks_controller.rb +0 -31
  168. data/app/controllers/admin/users/passwords_controller.rb +0 -35
  169. data/app/controllers/admin/users/registrations_controller.rb +0 -63
  170. data/app/controllers/admin/users/sessions_controller.rb +0 -28
  171. data/app/controllers/admin/users/unlocks_controller.rb +0 -31
  172. data/app/views/admin/users/confirmations/new.html.erb +0 -9
  173. data/app/views/admin/users/mailer/confirmation_instructions.html.erb +0 -5
  174. data/app/views/admin/users/mailer/email_changed.html.erb +0 -7
  175. data/app/views/admin/users/mailer/password_change.html.erb +0 -3
  176. data/app/views/admin/users/mailer/reset_password_instructions.html.erb +0 -8
  177. data/app/views/admin/users/mailer/unlock_instructions.html.erb +0 -7
  178. data/app/views/admin/users/passwords/edit.html.erb +0 -12
  179. data/app/views/admin/users/passwords/new.html.erb +0 -9
  180. data/app/views/admin/users/registrations/new.html.erb +0 -11
  181. data/app/views/admin/users/sessions/new.html.erb +0 -13
  182. data/app/views/admin/users/unlocks/new.html.erb +0 -10
  183. data/app/views/headmin/forms/_group.html.erb +0 -36
  184. data/app/views/headmin/forms/fields/_checkbox.html.erb +0 -23
  185. data/app/views/headmin/forms/fields/_ckeditor.html.erb +0 -28
  186. data/app/views/headmin/forms/fields/_currency.html.erb +0 -24
  187. data/app/views/headmin/forms/fields/_date.html.erb +0 -36
  188. data/app/views/headmin/forms/fields/_email.html.erb +0 -39
  189. data/app/views/headmin/forms/fields/_label.html.erb +0 -9
  190. data/app/views/headmin/forms/fields/_multiple_select.html.erb +0 -37
  191. data/app/views/headmin/forms/fields/_password.html.erb +0 -39
  192. data/app/views/headmin/forms/fields/_repeater.html.erb +0 -48
  193. data/app/views/headmin/forms/fields/_select.html.erb +0 -36
  194. data/app/views/headmin/forms/fields/_select_tags.html.erb +0 -32
  195. data/app/views/headmin/forms/fields/_textarea.html.erb +0 -29
  196. data/app/views/headmin/forms/fields/_url.html.erb +0 -38
  197. data/app/views/headmin/forms/fields/_validation.html.erb +0 -12
  198. data/app/views/headmin/forms/fields/repeater/_row.html.erb +0 -16
  199. data/app/views/headmin/layout/dropdown/_item.html.erb +0 -17
  200. data/app/views/headmin/layout/header/_account.html.erb +0 -25
  201. data/app/views/headmin/layout/header/_locale.html.erb +0 -19
  202. data/app/views/headmin/layout/sidebar/menu/_account.html.erb +0 -25
  203. data/app/views/headmin/layout/sidebar/menu/_item.html.erb +0 -16
  204. data/app/views/headmin/layout/sidebar/menu/_locale.html.erb +0 -18
  205. data/src/js/headmin/controllers/index_controller.js +0 -79
  206. data/src/js/headmin/controllers/repeater_row_controller.js +0 -54
  207. data/src/scss/vendor/choices/cross-inverse.svg +0 -6
  208. data/src/scss/vendor/choices/cross.svg +0 -6
  209. data/src/scss/vendor/choices/custom.scss +0 -28
  210. data/src/scss/vendor/choices/variables.scss +0 -16
@@ -0,0 +1,1460 @@
1
+ .rx-reset * {
2
+ box-sizing: border-box;
3
+ background: transparent;
4
+ border: 0;
5
+ font-size: 100%;
6
+ line-height: 1;
7
+ margin: 0;
8
+ padding: 0;
9
+ vertical-align: baseline; }
10
+
11
+ .rx-reset h1:empty,
12
+ .rx-reset h2:empty,
13
+ .rx-reset h3:empty,
14
+ .rx-reset h4:empty,
15
+ .rx-reset h5:empty,
16
+ .rx-reset h6:empty,
17
+ .rx-reset p:empty,
18
+ .rx-reset li:empty,
19
+ .rx-reset dt:empty,
20
+ .rx-reset dd:empty,
21
+ .rx-reset address:empty,
22
+ .rx-reset figcaption:empty,
23
+ .rx-reset blockquote:empty {
24
+ min-height: 1.5em; }
25
+
26
+ .rx-reset pre:empty {
27
+ min-height: 3.5em; }
28
+
29
+ .rx-reset strong:empty, .rx-reset b:empty, .rx-reset em:empty, .rx-reset i:empty, .rx-reset span:empty, .rx-reset sup:empty, .rx-reset sub:empty, .rx-reset u:empty, .rx-reset ins:empty, .rx-reset code:empty {
30
+ display: inline-block;
31
+ min-width: 1px;
32
+ min-height: 1em; }
33
+
34
+ .rx-reset code:after, .rx-reset kbd:after, .rx-reset mark:after, .rx-reset th:after, .rx-reset td:after {
35
+ content: '\200B'; }
36
+
37
+ .rx-reset code + code {
38
+ margin-left: 2px; }
39
+
40
+ .rx-reset table {
41
+ empty-cells: show; }
42
+
43
+ .rx-reset embed, .rx-reset img, .rx-reset object {
44
+ max-width: 100%;
45
+ height: auto; }
46
+
47
+ .rx-reset figure > img,
48
+ .rx-reset figure > iframe {
49
+ vertical-align: middle; }
50
+
51
+ .rx-reset figcaption {
52
+ display: block;
53
+ top: 0; }
54
+ .rx-reset figcaption:empty {
55
+ min-height: 18px; }
56
+
57
+ .rx-content {
58
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", Arial, sans-serif;
59
+ font-size: 16px;
60
+ line-height: 1.5; }
61
+ .rx-content h1 + *, .rx-content h2 + *, .rx-content h3 + *, .rx-content h4 + *, .rx-content h5 + *, .rx-content h6 + * {
62
+ margin-top: 12px; }
63
+ .rx-content p + h2, .rx-content ul + h2, .rx-content ol + h2, .rx-content blockquote + h2, .rx-content figure + h2, .rx-content pre + h2, .rx-content table + h2, .rx-content dl + h2, .rx-content address + h2 {
64
+ margin-top: 24px; }
65
+ .rx-content p + h3, .rx-content ul + h3, .rx-content ol + h3, .rx-content blockquote + h3, .rx-content figure + h3, .rx-content pre + h3, .rx-content table + h3, .rx-content dl + h3, .rx-content address + h3 {
66
+ margin-top: 24px; }
67
+ .rx-content p + h4, .rx-content ul + h4, .rx-content ol + h4, .rx-content blockquote + h4, .rx-content figure + h4, .rx-content pre + h4, .rx-content table + h4, .rx-content dl + h4, .rx-content address + h4 {
68
+ margin-top: 24px; }
69
+ .rx-content p + h5, .rx-content ul + h5, .rx-content ol + h5, .rx-content blockquote + h5, .rx-content figure + h5, .rx-content pre + h5, .rx-content table + h5, .rx-content dl + h5, .rx-content address + h5 {
70
+ margin-top: 24px; }
71
+ .rx-content p + h6, .rx-content ul + h6, .rx-content ol + h6, .rx-content blockquote + h6, .rx-content figure + h6, .rx-content pre + h6, .rx-content table + h6, .rx-content dl + h6, .rx-content address + h6 {
72
+ margin-top: 24px; }
73
+ .rx-content p + *, .rx-content ul + *, .rx-content ol + *, .rx-content blockquote + *, .rx-content figure + *, .rx-content pre + *, .rx-content table + *, .rx-content dl + *, .rx-content address + * {
74
+ margin-top: 16px; }
75
+ .rx-content div + * {
76
+ margin-top: 24px; }
77
+ .rx-content h1 + h2 {
78
+ margin-top: 24px; }
79
+ .rx-content h2 + h3 {
80
+ margin-top: 24px; }
81
+ .rx-content h3 + h4 {
82
+ margin-top: 24px; }
83
+ .rx-content h4 + h5 {
84
+ margin-top: 24px; }
85
+ .rx-content h5 + h6 {
86
+ margin-top: 24px; }
87
+ .rx-content a,
88
+ .rx-content a:hover,
89
+ .rx-content a:focus {
90
+ color: #0044C3; }
91
+ .rx-content p {
92
+ font-size: 16px;
93
+ line-height: 1.5; }
94
+ .rx-content h1,
95
+ .rx-content h2,
96
+ .rx-content h3,
97
+ .rx-content h4,
98
+ .rx-content h5,
99
+ .rx-content h6 {
100
+ font-family: inherit;
101
+ font-weight: bold;
102
+ font-style: normal;
103
+ font-size: 16px;
104
+ line-height: 1.5;
105
+ color: #000B1D;
106
+ text-rendering: optimizeLegibility;
107
+ letter-spacing: -0.01em; }
108
+ .rx-content h1 a,
109
+ .rx-content h1 a:focus,
110
+ .rx-content h1 a:hover,
111
+ .rx-content h2 a,
112
+ .rx-content h2 a:focus,
113
+ .rx-content h2 a:hover,
114
+ .rx-content h3 a,
115
+ .rx-content h3 a:focus,
116
+ .rx-content h3 a:hover,
117
+ .rx-content h4 a,
118
+ .rx-content h4 a:focus,
119
+ .rx-content h4 a:hover,
120
+ .rx-content h5 a,
121
+ .rx-content h5 a:focus,
122
+ .rx-content h5 a:hover,
123
+ .rx-content h6 a,
124
+ .rx-content h6 a:focus,
125
+ .rx-content h6 a:hover {
126
+ color: inherit;
127
+ text-decoration: none; }
128
+ .rx-content h1 {
129
+ font-size: 40px;
130
+ line-height: 1.2; }
131
+ .rx-content h2 {
132
+ font-size: 24px;
133
+ line-height: 1.3; }
134
+ .rx-content h3 {
135
+ font-size: 21px;
136
+ line-height: 1.5; }
137
+ .rx-content ul,
138
+ .rx-content ol {
139
+ margin-left: 20px; }
140
+ .rx-content li {
141
+ font-size: 16px;
142
+ line-height: 1.5; }
143
+ .rx-content li li {
144
+ font-size: 1em; }
145
+ .rx-content dt, .rx-content dd {
146
+ font-size: 16px;
147
+ line-height: 1.5; }
148
+ .rx-content dt {
149
+ font-weight: bold; }
150
+ .rx-content dd + dt {
151
+ margin-top: 0.25em; }
152
+ .rx-content pre {
153
+ overflow: auto;
154
+ white-space: pre;
155
+ font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace;
156
+ font-size: 90%;
157
+ line-height: 1.5;
158
+ color: #262F3F;
159
+ background-color: #F5F5F6;
160
+ padding: 1em; }
161
+ .rx-content pre code {
162
+ padding: 0;
163
+ border: 0;
164
+ background: none;
165
+ font-size: 100%;
166
+ display: block;
167
+ line-height: inherit; }
168
+ .rx-content blockquote {
169
+ color: #262F3F;
170
+ font-style: italic;
171
+ font-weight: normal;
172
+ padding: 0;
173
+ background: transparent; }
174
+ .rx-content blockquote p {
175
+ color: #262F3F;
176
+ font-size: 125%;
177
+ line-height: 1.5; }
178
+ .rx-content blockquote p + p {
179
+ margin-top: 4px; }
180
+ .rx-content blockquote cite,
181
+ .rx-content figcaption cite {
182
+ font-style: inherit;
183
+ font-size: 14px;
184
+ line-height: 1.5;
185
+ color: rgba(38, 47, 63, 0.7); }
186
+ .rx-content caption {
187
+ text-align: left;
188
+ font-style: normal; }
189
+ .rx-content table {
190
+ border-collapse: collapse;
191
+ border-spacing: 0;
192
+ width: 100%;
193
+ empty-cells: show; }
194
+ .rx-content td,
195
+ .rx-content th {
196
+ text-align: left;
197
+ vertical-align: top;
198
+ font-size: 95%;
199
+ line-height: 1.5;
200
+ padding: 0.75em;
201
+ border: 1px solid rgba(217, 219, 221, 0.5); }
202
+ .rx-content th {
203
+ font-weight: normal; }
204
+ .rx-content thead th {
205
+ font-weight: bold; }
206
+ .rx-content address {
207
+ font-style: normal; }
208
+ .rx-content dfn,
209
+ .rx-content abbr {
210
+ font-size: 95%; }
211
+ .rx-content time,
212
+ .rx-content cite,
213
+ .rx-content small,
214
+ .rx-content var,
215
+ .rx-content samp,
216
+ .rx-content kbd,
217
+ .rx-content code {
218
+ font-size: 85%; }
219
+ .rx-content sup,
220
+ .rx-content sub {
221
+ font-size: 65%; }
222
+ .rx-content var,
223
+ .rx-content code,
224
+ .rx-content kbd,
225
+ .rx-content samp {
226
+ display: inline-block;
227
+ font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace;
228
+ font-style: normal;
229
+ line-height: 1;
230
+ color: rgba(0, 11, 29, 0.85);
231
+ vertical-align: baseline; }
232
+ .rx-content samp,
233
+ .rx-content kbd,
234
+ .rx-content code {
235
+ border-radius: 2px; }
236
+ .rx-content kbd {
237
+ border: 1px solid rgba(0, 11, 29, 0.15);
238
+ padding: .2em .4em; }
239
+ .rx-content code {
240
+ position: relative;
241
+ top: -1px;
242
+ border: 1px solid transparent;
243
+ background-color: #F5F5F6;
244
+ padding: .2em .4em .2em; }
245
+ .rx-content mark {
246
+ background-color: yellow;
247
+ color: black; }
248
+ .rx-content b,
249
+ .rx-content strong {
250
+ font-weight: 600; }
251
+ .rx-content dfn[title],
252
+ .rx-content abbr[title] {
253
+ letter-spacing: .01em;
254
+ text-transform: uppercase;
255
+ text-decoration: none;
256
+ border-bottom: 1px dotted rgba(0, 0, 0, 0.4);
257
+ cursor: help; }
258
+ .rx-content cite {
259
+ font-style: italic; }
260
+ .rx-content sub,
261
+ .rx-content sup {
262
+ line-height: 1;
263
+ margin-left: 2px; }
264
+ .rx-content sub {
265
+ vertical-align: sub; }
266
+ .rx-content sup {
267
+ vertical-align: super; }
268
+ .rx-content figure > img,
269
+ .rx-content figure > iframe,
270
+ .rx-content figure > pre,
271
+ .rx-content figure > div {
272
+ vertical-align: middle; }
273
+ .rx-content figure figcaption {
274
+ display: block;
275
+ font-style: normal;
276
+ margin-top: 0.25em;
277
+ font-size: 12px;
278
+ line-height: 1.5; }
279
+ .rx-content .embed-responsive {
280
+ position: relative;
281
+ padding: 0;
282
+ margin: 0;
283
+ padding-bottom: 56.25%;
284
+ padding-top: 25px;
285
+ height: 0; }
286
+ .rx-content .embed-responsive iframe {
287
+ position: absolute;
288
+ top: 0;
289
+ left: 0;
290
+ width: 100%;
291
+ height: 100%; }
292
+ .rx-content hr {
293
+ position: relative;
294
+ line-height: 1;
295
+ background: none;
296
+ border: none;
297
+ text-align: left;
298
+ margin-top: 1em;
299
+ margin-bottom: 1em;
300
+ height: 10px; }
301
+ .rx-content hr:before {
302
+ content: '';
303
+ position: absolute;
304
+ top: 50%; }
305
+ .rx-content hr:before {
306
+ width: 100%;
307
+ max-width: 100%;
308
+ margin-top: -0.5px;
309
+ border-top-width: 1px;
310
+ border-top-style: solid;
311
+ border-top-color: rgba(217, 219, 221, 0.6); }
312
+ .rx-content .align-right {
313
+ text-align: right; }
314
+ .rx-content .align-center {
315
+ text-align: center; }
316
+ .rx-content .align-justify {
317
+ text-align: justify; }
318
+ .rx-content div.align-center img,
319
+ .rx-content p.align-center img,
320
+ .rx-content figure.align-center img {
321
+ max-width: 80%; }
322
+ .rx-content div.align-center figcaption,
323
+ .rx-content p.align-center figcaption,
324
+ .rx-content figure.align-center figcaption {
325
+ text-align: center; }
326
+ .rx-content .float-left {
327
+ float: left;
328
+ margin-right: 1em;
329
+ margin-bottom: 1em;
330
+ max-width: 200px; }
331
+ .rx-content .float-right {
332
+ float: right;
333
+ margin-left: 1em;
334
+ margin-bottom: 1em;
335
+ max-width: 200px; }
336
+
337
+ @keyframes slideUp {
338
+ to {
339
+ height: 0;
340
+ padding-top: 0;
341
+ padding-bottom: 0;
342
+ margin-bottom: 0; } }
343
+
344
+ @keyframes slideDown {
345
+ from {
346
+ height: 0;
347
+ padding-top: 0;
348
+ padding-bottom: 0;
349
+ margin-bottom: 0; } }
350
+
351
+ @keyframes fadeIn {
352
+ from {
353
+ opacity: 0; }
354
+ to {
355
+ opacity: 1; } }
356
+
357
+ @keyframes fadeOut {
358
+ from {
359
+ opacity: 1; }
360
+ to {
361
+ opacity: 0; } }
362
+
363
+ .rx-container {
364
+ box-sizing: border-box;
365
+ border-radius: 2px;
366
+ background-color: #ffffff;
367
+ border: 1px solid rgba(0, 11, 29, 0.1); }
368
+
369
+ .rx-toolbar {
370
+ display: flex;
371
+ flex: 1;
372
+ white-space: nowrap;
373
+ height: 40px;
374
+ overflow-x: scroll;
375
+ overflow-y: hidden;
376
+ scrollbar-width: none;
377
+ -ms-overflow-style: none; }
378
+ .rx-toolbar::-webkit-scrollbar {
379
+ width: 0;
380
+ height: 0; }
381
+ .rx-toolbar-container {
382
+ position: relative;
383
+ z-index: 4;
384
+ margin: 0;
385
+ padding: 0;
386
+ box-sizing: border-box;
387
+ display: flex; }
388
+ .rx-toolbar-container.is-rx-toolbar {
389
+ border-top-left-radius: 2px;
390
+ border-top-right-radius: 2px;
391
+ background-color: rgba(255, 255, 255, 0.98);
392
+ border-bottom: 1px solid rgba(0, 11, 29, 0.1); }
393
+ .rx-toolbar-container.is-rx-toolbar .rx-topbar {
394
+ position: relative;
395
+ margin-left: auto;
396
+ display: flex; }
397
+ .rx-toolbar-sticky {
398
+ position: -webkit-sticky;
399
+ position: sticky;
400
+ top: 0; }
401
+
402
+ .rx-editor-container {
403
+ box-sizing: border-box; }
404
+
405
+ .rx-source-container {
406
+ display: none; }
407
+
408
+ .rx-context {
409
+ position: absolute;
410
+ top: 0;
411
+ left: 0;
412
+ z-index: 4;
413
+ padding: 0;
414
+ margin: 0;
415
+ line-height: 1;
416
+ border-radius: 99px;
417
+ background-color: #000B1D; }
418
+
419
+ .rx-control {
420
+ position: absolute;
421
+ top: 0;
422
+ left: 0;
423
+ z-index: 3;
424
+ padding: 0;
425
+ margin: 0;
426
+ line-height: 1; }
427
+
428
+ .rx-topbar {
429
+ position: absolute;
430
+ right: 0; }
431
+
432
+ .rx-source,
433
+ .rx-source:hover,
434
+ .rx-source:focus {
435
+ text-align: left;
436
+ box-sizing: border-box;
437
+ font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace;
438
+ width: 100%;
439
+ display: block;
440
+ margin: 0;
441
+ border: none;
442
+ box-shadow: none;
443
+ border-radius: 0;
444
+ background-color: #262F3F;
445
+ color: rgba(255, 255, 255, 0.8);
446
+ font-size: 14px;
447
+ outline: none;
448
+ padding: 10px 18px 20px 18px;
449
+ line-height: 1.5;
450
+ min-height: 60px;
451
+ resize: vertical; }
452
+
453
+ .rx-draggable-placeholder {
454
+ height: 20px;
455
+ min-width: 80px;
456
+ outline: 3px dashed gold !important;
457
+ background-color: rgba(255, 215, 0, 0.2) !important;
458
+ margin-bottom: 20px; }
459
+
460
+ .rx-drag-active {
461
+ outline: 3px dashed gold !important;
462
+ outline-offset: 0 !important;
463
+ position: relative;
464
+ max-height: 40px;
465
+ overflow: hidden;
466
+ padding: 0; }
467
+ .rx-drag-active:before {
468
+ width: 100%;
469
+ height: 100%;
470
+ content: "";
471
+ top: 0;
472
+ left: 0;
473
+ background-color: rgba(255, 215, 0, 0.4);
474
+ position: absolute;
475
+ z-index: 1; }
476
+
477
+ .rx-dragging {
478
+ opacity: 0.95;
479
+ background-color: #ffffff;
480
+ box-shadow: 0 15px 30px 0 15px 30px rgba(0, 11, 29, 0.3); }
481
+ .rx-dragging img {
482
+ max-width: 100%; }
483
+
484
+ .rx-voice-label {
485
+ display: none; }
486
+
487
+ @keyframes progress-bar-stripes {
488
+ from {
489
+ background-position: 40px 0; }
490
+ to {
491
+ background-position: 0 0; } }
492
+
493
+ .rx-editor-progress {
494
+ position: fixed;
495
+ top: 0;
496
+ left: 0;
497
+ z-index: 11000;
498
+ width: 100%;
499
+ background-color: rgba(0, 11, 29, 0.2); }
500
+ .rx-editor-progress span {
501
+ animation: progress-bar-stripes 2s linear infinite;
502
+ content: '';
503
+ display: block;
504
+ min-height: 8px;
505
+ width: 100%;
506
+ height: 100%;
507
+ background-color: #0058FB;
508
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
509
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
510
+ background-size: 40px 40px; }
511
+
512
+ .rx-nowrap {
513
+ white-space: nowrap !important; }
514
+
515
+ .rx-handle {
516
+ cursor: move; }
517
+
518
+ .rx-placeholder:before {
519
+ position: absolute;
520
+ z-index: 0;
521
+ content: attr(placeholder);
522
+ color: rgba(0, 11, 29, 0.4);
523
+ font-weight: normal;
524
+ cursor: text; }
525
+
526
+ @font-face {
527
+ font-family: 'RedactorX';
528
+ src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBjwAAAC8AAAAYGNtYXAXVtKoAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5ZhasD7wAAAF4AAAZSGhlYWQc8hqRAAAawAAAADZoaGVhB8ID5wAAGvgAAAAkaG10eI4AC3MAABscAAAAmGxvY2FrqmY0AAAbtAAAAE5tYXhwAC8A0wAAHAQAAAAgbmFtZZHHdKcAABwkAAABnnBvc3QAAwAAAAAdxAAAACAAAwPxAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpIQPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6SH//f//AAAAAAAg6QD//f//AAH/4xcEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAADAAAAgAQAAwAADQAbACkAAAEyFhUUBiMhIiY1NDYzATIWFRQGIyEiJjU0NjMBMhYVFAYjISImNTQ2MwNAGyUlG/2AGyUlGwMAGyUlG/yAGyUlGwMAGyUlG/2AGyUlGwEAJRsbJSUbGyUBACUbGyUlGxslAQAlGxslJRsbJQAAAAMAAACABAADAAAQACEAMgAAATIWFRQGByMhIiY1NDY3MyERMhYVFAYHIyEiJjU0NjczIREyFhUUBgcjISImNTQ2NzMhA8AbJSEYB/yAGyUhGAcDgBslIRgH/IAbJSEYBwOAGyUhGAf8gBslIRgHA4ABACUbGSQDJRsZJAMBACUbGSQDJRsZJAMBACUbGSQDJRsZJAMAAAAAAwAAAIAEAAMAAA0AGwApAAABMhYVFAYjISImNTQ2MwEyFhUUBiMhIiY1NDYzATIWFRQGIyEiJjU0NjMDABslJRv9QBslJRsDgBslJRv8gBslJRsCwBslJRv9QBslJRsBACUbGyUlGxslAQAlGxslJRsbJQEAJRsbJSUbGyUAAAABAIAAQAOAA0AAHwAAATIWFREhMhYVFAYjIREUBiMiJjURISImNTQ2MyERNDYCABslAQAbJSUb/wAlGxsl/wAbJSUbAQAlA0AlG/8AJRsbJf8AGyUlGwEAJRsbJQEAGyUAAAAAAwAAAIAEAAMAAA0AGwApAAABMhYVFAYjISImNTQ2MwEyFhUUBiMhIiY1NDYzATIWFRQGIyEiJjU0NjMDwBslJRv9QBslJRsCwBslJRv8gBslJRsDgBslJRv9QBslJRsBACUbGyUlGxslAQAlGxslJRsbJQEAJRsbJSUbGyUAAAAEAAAAAAQAA4AAEwAXAC8ARwAAATIWFTERFAYjMSEiJjUxETQ2MzEFIREhAR4BDwIXHgEPAQ4BLwIuAT8CNjIXNx8BHgEPAgYiJy4BPwInLgE/AT4BFwOANExMNP0ANExMNAMA/QADAP4tEgIOBlJSEgIOBhEwEwaAEgIOBoASNhL6BoASAg4GgBI2EhICDgZSUhICDgYRMBMDgEQz/W4zREQzApIzRID9gAHtETATBlNTETATBhICDgaAETATBoATEwYGgBEwEwaAExMRMBMGU1MRMBMGEgIOAAAAAgBAAAADwAOAAB0APQAAATIWFx0BFAYHIyEiJic9ATQ2MzIWFx0BITU0NjczATIWFxURMzIWFxYGBzEHBiInMScuATU0NjMxMxE0NjMDgBkkA0AtCv1uLkUEJRsZJAMCgCEYB/6AGSQDYAgNBQgEC6AIFgigBgcTDWAlGwGAIRgHzS5BBD0tCc0bJSEYB8DAGSQDAgAhGAf+gAcGChsIeAYGeAUNCA0TAYAbJQAAAAADAEAAAAPAA4AAGQAdACYAAAEyFhURITIWFREUBiMhIiY1ESEiJjURNDYzASERIQEhETM1NDY7AQJAGyUBABslJRv+QBsl/wAbJSUbAsD+wAFA/sD+wMAlG0ADgCUb/wAlG/5AGyUlGwEAJRsBwBsl/kD+wAKA/sBAGyUAAQCAAEADQANAACcAAAEyNjMhMhYVFAYrAREUBiMiJjURIxEUBiMiJjURDgEjIiY1NDYzMhYBNAMGAwHAGyUlG0AlGxslgCUbGyUIEAhCXl5CBQoDPwElGxsl/cAbJSUbAkD9wBslJRsBgwECXkJCXgEAAAADAQAAQAMgA0AAHgAnADEAACUyNz4BNzY1NCYnNT4BNTQnLgEnJisBIgYVERQWOwEDIzUzMhYVFAYDIzUzMhYVFAYjAjEwKytCFBNNJikxEBA8LCw42xslJRvxJ36AMDo6L4F9MkxENkAPDzkpKjVMVg8HGFI1KyUlNhAPJRv9gBslAcTDNCstN/642zM5OTYAAAAAAgBNAI0DswLzABcALwAAARcBHgEPAQEGIicuAT8CJy4BPwE+ARcHHgEPAhceAQ8BDgEvAQEuAT8BATYyFwKnBgEAEgIOBv8AEjYSEgIOBtLSEgIOBhEwE/oSAg4G0tISAg4GETATBv8AEgIOBgEAEjYSAvMG/wARMBMG/wATExEwEwbT0xEwEwYSAg4GETATBtPTETATBhICDgYBABEwEwYBABMTAAAAAQBAAEADwANAAEgAAAEyFx4BFxYXMSM0JiMiBhUUFhchMhYVFAYrAR4BFRQHDgEHBiMiJy4BJyY1MTMUFjMyNjU0JichIiY1NDY7AS4BNTQ3PgE3NjMCEC8uLUgWFgF0SERFQV9AAWgUHBwUmRMWEhJFMzJAPDIySRUUcFlNQ1GETv6YFBwcFMQNEBERQC4uOwNADQ02Kio6N0A9KDksDxwUFBwXQSwuKSg7ERESEUAsLTU5TzkyTSsUHBQUHBU4JSolJjgREAACAFEAAAPAAu4AUwB5AAABHgEVFAYPATMyFhUUBisBIiYjIiYjLgEnLgEjLgEnLgEvAS4BJzgBNSY0JzwBNSY2NzE+ATE0NjU+ATU+AT8BPgE1NCYnJiIPAQYiJyY0PwE2MhcBFhQPARcWFAcOASMiJi8BBw4BIyImJyY0PwEnJjQ3NjIfATc2MgOUFRcXFTMlGCIiGLIDBgIBAwECBAIBAgEBAwEFCAMDAQIBAQEBAgMBAQEBAQIEApcEBQUEChsJFBExERERFCx8K/6VERGZmRERCBYLCxYImpkJFQwLFQkREZqaERERMRGZmhEwAYQVOB8eOBY0IxkZIwEBAQEBAQEBAQEECQUEAgUDAQEDAgECAQgQBwECAQEBAQEBAwQCmwUMBgcMBQkJFREREjESFC0tAWoRMhGdnRIyEQkJCQmdnQkJCQkRMhKdnREyERISnZ0SAAAAAAQAQAAAA8ADgAAQABsAKQA1AAABMhYVERQGIyEiJjURNDYzIQEDFSE1JwcGJi8BASERNz4BFxM3NjIfAREHMhYVFAYjIiY1NDYDUC5CQi79YC5CQi4CoP4MnAKAYIASMhCwAeT9gGkQORK5exEuETjIGyUlGxomJgOAQi79YC5CQi4CoC5C/lP+9Uh3bpMUAxf7AS3+r7QbAxn++I0TE0ABU0AmGhslJRsaJgAEAAAAgAQAAwAADwAeAC4APgAAATIWFRQGByMhIiY1NDY3MyU0NhcxFxYUBzEHBiY1MQEyFhUUBgcjISImNTQ2NzMBMhYVFAYHIyEiJjU0NjczA7kdKiQbCP4OHSokGwj+eU8egBMTgB5PA3kdKiQbCP4OHSokGwgB8B4rJRwI/JIeKyUcCAEAJRsZJAMlGxkkA8ArIB6AEzQTgB4gKwFAJRsZJAMlGxkkAwEAJRsZJAMlGxkkAwAAAQGAAEACngNAAAMAACUTIwMCEY2RjUADAP0AAAYAgABAA4ADQAB4AI0AogCmALsA0AAAJTI2Nz4BNz4BNTQmJy4BJy4BKwE1MzI2Nz4BNz4BNTQmJy4BJy4BIyIGBw4BBw4BHQEjNTQmJy4BJy4BIyIGBw4BBw4BFRQWFx4BFx4BOwEVIyIGBw4BBw4BFRQWFx4BFx4BMzI2Nz4BNz4BPQEzFRQWFx4BFx4BMwEjIiYnLgE1NDY3PgEzMhYXHgEdASEjNTQ2Nz4BMzIWFx4BFRQGBw4BIwcjNTMBIiYnLgE1NDY3PgE7ARUUBgcOASMhIiYnLgE9ATMyFhceARUUBgcOASMC4RYoEhIdCwoLCwoLHRISKBY8PBYoEhIdCwoLCwoLHRISKBYVKBISHQsLC4QLCwscEhIoFhYoEhIdCwoLCwoLHRISKBY8PBYoEhIdCwoLCwoLHRISKBYWKBISHAsLC4QLCwsdEhIoFf56OQ0WCQkJCAkJFQwMFQkJCQGDOAgJCRUMDRUICQkJCQkXDZyEhP7dDBUJCQgJCQkWDTkJCQkVDAHCDBUJCQg4DRcJCQkJCQgVDUALCwsdEhIoFRYoEhIcCwoLhgsKCxwSEigWFigSEhwLCwsLCwsdEhIoFTw8FSgSEh0LCwsLCwscEhIoFhYoEhIcCwoLhgsKCxwSEigWFSgSEh0LCwsLCwsdEhIoFTw8FSgSEh0LCwsCJAkJCRUNDBUJCQgJCQkWDTo6DRYJCQkICQkVDA0VCQkJ54b+oQkJCBUNDBYICQk6DRYJCQkJCQkWDToJCQgWDA0VCAkJAAAAAAEAAAGABAACAAAQAAABMhYVFAYHIyEiJjU0NjczIQPAGyUhGAf8gBslIRgHA4ACACUbGSQDJRsZJAMAAAMAAACABAADAAAkAEkAVwAAATMyFhUUBisBIicuAScmPQE0Nz4BNzY7ATIWFRQGKwEiBhUUFiEyNjU0JisBIiY1NDY7ATIXHgEXFh0BFAcOAQcGKwEiJjU0NjMBITIWFRQGIyEiJjU0NgFAQBslJRtgPDQ1ThYXFxZONTQ8YBslJRtAUHBwAdBQcHBQQBslJRtgPDQ1ThYXFxZONTQ8YBslJRv/AAEAGyUlG/8AGyUlAQAlGxslFxZONTQ8QDw0NU4WFyUbGyVwUFBwcFBQcCUbGyUXFk41NDxAPDQ1ThYXJRsbJQEAJRsbJSUbGyUAAAYAQACAA8ADAAAQACAAMQBBAFIAYgAAATIWFRQGByMhIiY1NDY3MyEhMhYVFAYHKwEiJjU0NjczATIWFRQGByMhIiY1NDY3MyEhMhYVFAYHKwEiJjU0NjczATIWFRQGByMhIiY1NDY3MyEhMhYVFAYHKwEiJjU0NjczA4AbJSEYB/4AGyUhGAcCAP1AGyUhGAdAGyUhGAcDABslIRgH/gAbJSEYBwIA/UAbJSEYB0AbJSEYBwMAGyUhGAf+ABslIRgHAgD9QBslIRgHQBslIRgHAQAlGxkkAyUbGSQDJRsZJAMlGxkkAwEAJRsZJAMlGxkkAyUbGSQDJRsZJAMBACUbGSQDJRsZJAMlGxkkAyUbGSQDAAQAgABAA4ADMAAYACYALAAwAAABNjIXMRcWFAcxAQ4BIzEjIiY1MTU0NjcxBTIWFRQGKwEiJjU0NjMDBxUzNyc3Bxc3AjMQLRHvEBD+XQgUC+8XIAgIArkXICAX2xcgIBev0aHSoptNoU4DMBAQ7xEtEP5dCAggF+8LFAjfIBcXICAXFyABc9Gi0aKbTaJNAAIAYACAA6ADAAAsAFkAADcyNjc+ATc+ATU0JicuASMiBgcOARUUFhceATMxMw4BBw4BBw4BFRQWFx4BMyEyNjc+ATc+ATU0JicuASMiBgcOARUUFhceATMxMw4BBw4BBw4BFRQWFx4BM7AbOyEhNxYXFhkaGkIpJDwZGBkZGBk3HhEDEhARLRwWFwsKCxsRAd0bPCEgOBYXFhkaGUMpJD0ZGBkZGRk4Hw0CERAPLh8WFgoLChsSgBsbHEkuLmM0OVkgICAXFxc5IiE5GRgYIDMUEyUQCyQYDhoKCwobGxtILi5jNjpaHyAfFxcYOCIiORgYGCAzExMlEQwjGA8aCgoKAAAAAQCBAL4DeQL6ACgAAAE2FhcxFxYUBzEHDgEjIiY1MTUHIREUBiMiJic1ETQ2MzIWMyE1NDY3AtMKGwh5Bwd5BQ0IDRMD/j4mGhkkAyUbAwgDAfcEBAL6CAMLoQgWCKEGBxMNYQH+/xomIRgHAUQaJgFgBgsEAAAAAgCAAD4DYAM3AEwAUAAAAR4BDwIzMhYVFAYHKwEHMzIWFRQGBysBBw4BJy4BNzU3IwcOAScuATc1NyMiJjU0Njc7ATcjIiY1NDY3OwE3PgEXHgEPAjM3PgEXAzcjBwKrGB8BAQ9PGyUhGAdiE1UbJSEYB2cUBCsaGB8BEX4UBCsaGB8BEVcbJSEYB2oTXRslIRgHbxMEKhsYHwEBD34TBCobgRN/EwM3BCcZCGslGxkkA4AlGxkkA4obIQQDKBkIdoobIQQDKBkIdiUbGSQDgCUbGSQDfhwhBAQnGQhrfhwhBP5JgIAAAAgAAABgBAADIAAXACMALwA7AEcAUwBfAGsAAAEyFhURFAcOAQcGIyEiJy4BJyY1ETQ2MwUhERQWFzMhMjY3NScyFhUUBiMiJjU0NiMyFhUUBiMiJjU0NiMyFhUUBiMiJjU0NjcyFhUUBiMiJjU0NjMyFhUUBiMiJjU0NjMyFhUUBiMiJjU0NgOANUsUFEYuLzX+ADUvLkYUFEs1AwD9AEUxCgIAM0kEwBslJRsbJSWlGyUlGxslJaUbJSUbGyUlGxslJRsbJSXbGyUlGxslJdsbJSUbGyUlAyBLNf7ANS8uRhQUFBRGLi81AUA1S4D+wDNJBEUxCkAlGxslJRsbJSUbGyUlGxslJRsbJSUbGyXAJRsbJSUbGyUlGxslJRsbJSUbGyUlGxslAAAAAAIAgAEAA4ACgAAQACEAAAEyFhUUBgcjISImNTQ2NzMhETIWFRQGByMhIiY1NDY3MyEDQBslIRgH/YAbJSEYBwKAGyUhGAf9gBslIRgHAoABgCUbGSQDJRsZJAMBACUbGSQDJRsZJAMABQBAAAADwAOAABMAGwAjACsAMwAANyImNTERNDYzMSEyFhUxERQGIzElFBYzMTMRISkBETMyNjc1AysBESE1NCYlIyIGFTEVIdxBW1tBAkhBW1tB/ZwQDOT/AAKA/wDkChACFwXkAQAN/o3kDBABAABbQQJIQVtbQf24QVucDBABAP8ADQoFAmT/AOQKEAIQDOQAAAIBAABAAyMDQAAcACUAACU1MzI3PgE3NjU0Jy4BJyYrASIGFREUFjsBMjY1EyM1MzIWFRQGAZKRNS8vRRQUExNFLy834xslJRsSGiaBgYE4Q0OAzRMSQy4uNzgtLkESEiUb/YAbJSUbAUr5RDc4RgAFACAAAAPgA4AAKAAsAD0ATgBSAAABMhYXHQEzMhYVFAYHKwERFAYHIyEiJic1ESMiJjU0Njc7ATU0Njc7ARMhESEDMhYXHQEUBiMiJic9ATQ2MyMyFhcdARQGIyImJz0BNDYzEyMVMwJrMEEEwBslIRgHQDosCv4gLj4EQBslIRgHwD0vCdZ1/kABwIAZJAMlGxkkAyUbwBkkAyUbGSQDJRvAwMADgEYwCkAlGxkkA/46L0cEQi4KAcYlGxkkA0AxSwT+wP5AAYAhGAfAGyUhGAfAGyUhGAfAGyUhGAfAGyUBAEAAAAAAAwBAAAADwAOAACAAQQBiAAATMhYXFREyFhUUBg8BERQGIyImJzURIiY1NDY3MxE0NjMhMhYXHQEyFhUUBg8BERQGIyImJzURIiY1NDY3MzU0NjMhMhYXFREyFhUUBg8BFRQGIyImJz0BIiY1NDY3MxE0NjPAGSQDGyUhGAclGxkkAxslIRgHJRsCgBkkAxslIRgHJRsZJAMbJSEYByUb/sAZJAMbJSEYByUbGSQDGyUhGAclGwOAIRgH/sAlGxglAgH+wBslIRgHAUAmGhkkAwFAGyUhGAeAJRsYJQIB/gAbJSEYBwIAJhoZJAOAGyUhGAf+ACUbGCQDAYAbJSEYB4AmGhkkAwIAGyUAAAIAwABAA08DQAAQADgAACUyFhUUBgcjISImNTQ2NzMhAzIWFx0BFAcOAQcGIyInLgEnJic9ATQ2MzIWFx0BFBYzMjY3PQE0NgMPGiYhGAf98RslIRgHAg9PGSQDFBRGLy41My4tRRUVAyUbGSQDSzUzSQQlwCUbGSQDJRsZJAMCgCUbCOE6MzNLFhYVFEgwMDgO4R4qJRsI4TdQSTQK4R4qAAAAAQCDAMADgAL6ACQAAAEUFjMyNjc1ETQmIyE1NCYnJgYPAg4BHwIeATMyNj8BNSERAv8mGhklAyYb/fsHBgoXCAR6BQIEA3oEDggMEQIBAcUBABslIRgHAUAbJWAIDQUHAggEoAcSCAWgBgcPCwZg/wAAAAACAFEAOQPAA1MAJQB7AAABFhQPARcWFAcOASMiJi8BBw4BIyImJyY0PwEnJjQ3NjIfATc2MgEeARUUBg8BMzIWFRQGKwEiJiMiJiMuAScuASMuAScuAScuAScuASc4ATUmNCc8ATUmNjcxPgExNDY1PgE1PgE/AT4BNTQmJyYiDwEGIicmND8BNjIXAikREZmZEREIFgsLFgiamQkVDAsVCRERmpoRERExEZmaETABfBUXFxUzJRgiIhiyAwYCAQMBAgQCAQIBAQMBBQgDAQEBAQIBAQEBAgMBAQEBAQIEApcEBQUEChsJFBExERERFCx8KwIuETIRnZ0SMhEJCQkJnZ0JCQkJETISnZ0RMhESEp2dEgETFTgfHjgWNCMZGSMBAQEBAQEBAQEBBAkFAQIBAgUDAQEDAgECAQgQBwECAQEBAQEBAwQCmwUMBgcMBQkJFREREjESFC0tAAAEAAAAgAQAAwAADwAeAC4APgAAATIWFRQGByMhIiY1NDY3MyU2FhUxERQGJzEnJjQ3MScyFhUUBgcjISImNTQ2NzMBMhYVFAYHIyEiJjU0NjczAjkdKiQbCP4OHSokGwgDDB5PTx6AExOaHSokGwj+Dh0qJBsIA3AeKyUcCPySHislHAgBACUbGSQDJRsZJAPtHiAr/wArIB6AEzUSkyUbGSQDJRsZJAMBACUbGSQDJRsZJAMAAAAAAQAAAAEAAGNbeMNfDzz1AAsEAAAAAADc6esKAAAAANzp6woAAAAABAADgAAAAAgAAgAAAAAAAAABAAADwP/AAAAEAAAAAAAEAAABAAAAAAAAAAAAAAAAAAAAJgQAAAAAAAAAAAAAAAIAAAAEAAAABAAAAAQAAAAEAACABAAAAAQAAAAEAABABAAAQAQAAIAEAAEABAAATQQAAEAEAABRBAAAQAQAAAAEAAGABAAAgAQAAAAEAAAABAAAQAQAAIAEAABgBAAAgQQAAIAEAAAABAAAgAQAAEAEAAEABAAAIAQAAEAEAADABAAAgwQAAFEEAAAAAAAAAAAKABQAHgBeAKoA6gEcAVwBygIiAmACmgLkAzgDnARIBJ4E+gUIBi4GTAbEB04HlggYCFQIyAleCZIJ3AoUCogLDgtgC5oMSAykAAAAAQAAACYA0QAIAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABAAkAAAABAAAAAAACAAcAcgABAAAAAAADAAkAPAABAAAAAAAEAAkAhwABAAAAAAAFAAsAGwABAAAAAAAGAAkAVwABAAAAAAAKABoAogADAAEECQABABIACQADAAEECQACAA4AeQADAAEECQADABIARQADAAEECQAEABIAkAADAAEECQAFABYAJgADAAEECQAGABIAYAADAAEECQAKADQAvFJlZGFjdG9yWABSAGUAZABhAGMAdABvAHIAWFZlcnNpb24gMS4wAFYAZQByAHMAaQBvAG4AIAAxAC4AMFJlZGFjdG9yWABSAGUAZABhAGMAdABvAHIAWFJlZGFjdG9yWABSAGUAZABhAGMAdABvAHIAWFJlZ3VsYXIAUgBlAGcAdQBsAGEAclJlZGFjdG9yWABSAGUAZABhAGMAdABvAHIAWEZvbnQgZ2VuZXJhdGVkIGJ5IEljb01vb24uAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=") format("truetype");
529
+ font-weight: normal;
530
+ font-style: normal;
531
+ font-display: block; }
532
+
533
+ [class^="rx-icon-"], [class*=" rx-icon-"] {
534
+ /* use !important to prevent issues with browser extensions that change fonts */
535
+ font-family: 'RedactorX' !important;
536
+ speak: never;
537
+ font-style: normal;
538
+ font-weight: normal;
539
+ font-variant: normal;
540
+ text-transform: none;
541
+ line-height: 1;
542
+ /* Better Font Rendering =========== */
543
+ -webkit-font-smoothing: antialiased;
544
+ -moz-osx-font-smoothing: grayscale; }
545
+
546
+ .rx-icon-paragraph:before {
547
+ content: "\e91b"; }
548
+
549
+ .rx-icon-outdent:before {
550
+ content: "\e921"; }
551
+
552
+ .rx-icon-sub:before {
553
+ content: "\e90c"; }
554
+
555
+ .rx-icon-sup:before {
556
+ content: "\e920"; }
557
+
558
+ .rx-icon-align-center:before {
559
+ content: "\e900"; }
560
+
561
+ .rx-icon-align-justify:before {
562
+ content: "\e901"; }
563
+
564
+ .rx-icon-alignment:before,
565
+ .rx-icon-align-left:before {
566
+ content: "\e902"; }
567
+
568
+ .rx-icon-add:before {
569
+ content: "\e903"; }
570
+
571
+ .rx-icon-align-right:before {
572
+ content: "\e904"; }
573
+
574
+ .rx-icon-embed:before {
575
+ content: "\e905"; }
576
+
577
+ .rx-icon-file:before {
578
+ content: "\e906"; }
579
+
580
+ .rx-icon-duplicate:before {
581
+ content: "\e907"; }
582
+
583
+ .rx-icon-format:before {
584
+ content: "\e908"; }
585
+
586
+ .rx-icon-bold:before {
587
+ content: "\e909"; }
588
+
589
+ .rx-icon-pre:before,
590
+ .rx-icon-html:before,
591
+ .rx-icon-code:before {
592
+ content: "\e90a"; }
593
+
594
+ .rx-icon-deleted:before {
595
+ content: "\e90b"; }
596
+
597
+ .rx-icon-image:before {
598
+ content: "\e90d"; }
599
+
600
+ .rx-icon-indent:before {
601
+ content: "\e90e"; }
602
+
603
+ .rx-icon-italic:before {
604
+ content: "\e90f"; }
605
+
606
+ .rx-icon-kbd:before {
607
+ content: "\e910"; }
608
+
609
+ .rx-icon-line:before {
610
+ content: "\e911"; }
611
+
612
+ .rx-icon-link:before {
613
+ content: "\e912"; }
614
+
615
+ .rx-icon-list:before {
616
+ content: "\e913"; }
617
+
618
+ .rx-icon-mark:before {
619
+ content: "\e914"; }
620
+
621
+ .rx-icon-quote:before {
622
+ content: "\e915"; }
623
+
624
+ .rx-icon-redo:before {
625
+ content: "\e916"; }
626
+
627
+ .rx-icon-selector:before {
628
+ content: "\e917"; }
629
+
630
+ .rx-icon-shortcut:before {
631
+ content: "\e918"; }
632
+
633
+ .rx-icon-sort:before {
634
+ content: "\e919"; }
635
+
636
+ .rx-icon-table:before {
637
+ content: "\e91a"; }
638
+
639
+ .rx-icon-trash:before {
640
+ content: "\e91c"; }
641
+
642
+ .rx-icon-tune:before {
643
+ content: "\e91d"; }
644
+
645
+ .rx-icon-underline:before {
646
+ content: "\e91e"; }
647
+
648
+ .rx-icon-undo:before {
649
+ content: "\e91f"; }
650
+
651
+ .rx-button {
652
+ display: inline-flex;
653
+ align-items: center;
654
+ justify-content: center;
655
+ vertical-align: middle;
656
+ text-decoration: none;
657
+ background: none;
658
+ outline: none;
659
+ margin: 0;
660
+ padding: 0;
661
+ box-sizing: border-box;
662
+ font-size: 16px;
663
+ line-height: 1;
664
+ cursor: pointer; }
665
+ .rx-button:hover {
666
+ text-decoration: none; }
667
+ .rx-button-icon {
668
+ display: inline-flex; }
669
+ .rx-button-icon svg {
670
+ display: inline-block; }
671
+
672
+ .rx-button-icon {
673
+ width: 31px;
674
+ height: 30px;
675
+ align-items: center;
676
+ justify-content: center;
677
+ border-radius: 4px;
678
+ border: 1px solid transparent; }
679
+
680
+ .rx-button-control {
681
+ width: 20px;
682
+ color: rgba(0, 11, 29, 0.4); }
683
+ .rx-button-control:hover {
684
+ color: #000B1D; }
685
+
686
+ .rx-button-context, .rx-button-context:active, .rx-button-context:focus {
687
+ width: 36px;
688
+ min-width: 36px;
689
+ height: 34px;
690
+ background-color: transparent;
691
+ color: rgba(255, 255, 255, 0.85); }
692
+
693
+ .rx-button-context:first-child {
694
+ padding-left: 6px; }
695
+
696
+ .rx-button-context:last-child {
697
+ padding-right: 6px; }
698
+
699
+ .rx-button-context svg {
700
+ fill: rgba(255, 255, 255, 0.85); }
701
+
702
+ .rx-button-context.active {
703
+ background-color: rgba(255, 255, 255, 0.2);
704
+ color: rgba(255, 255, 255, 0.85); }
705
+
706
+ .rx-button-context:hover {
707
+ transition: all 0.2s linear;
708
+ background-color: rgba(255, 255, 255, 0.3);
709
+ color: #ffffff; }
710
+ .rx-button-context:hover svg {
711
+ fill: #ffffff; }
712
+ .rx-button-context:hover .rx-button-icon {
713
+ border-color: transparent; }
714
+
715
+ .rx-button-toolbar {
716
+ padding-top: 1px;
717
+ width: 40px;
718
+ min-width: 40px;
719
+ height: 41px; }
720
+
721
+ .rx-button-topbar {
722
+ width: 36px;
723
+ height: 40px;
724
+ padding-top: 1px; }
725
+
726
+ .rx-button-toolbar,
727
+ .rx-button-topbar {
728
+ color: rgba(0, 11, 29, 0.8); }
729
+ .rx-button-toolbar svg,
730
+ .rx-button-topbar svg {
731
+ fill: rgba(0, 11, 29, 0.8); }
732
+ .rx-button-toolbar.active .rx-button-icon,
733
+ .rx-button-topbar.active .rx-button-icon {
734
+ border-color: #e4e8ed;
735
+ background-color: rgba(228, 232, 237, 0.5); }
736
+ .rx-button-toolbar.toggled,
737
+ .rx-button-topbar.toggled {
738
+ background-color: #E4E8ED;
739
+ color: #000B1D; }
740
+ .rx-button-toolbar.toggled svg,
741
+ .rx-button-topbar.toggled svg {
742
+ fill: #000B1D; }
743
+ .rx-button-toolbar.disable, .rx-button-toolbar.disable:hover,
744
+ .rx-button-topbar.disable,
745
+ .rx-button-topbar.disable:hover {
746
+ cursor: default;
747
+ background-color: transparent !important;
748
+ color: rgba(0, 11, 29, 0.4) !important; }
749
+ .rx-button-toolbar.disable svg,
750
+ .rx-button-topbar.disable svg {
751
+ fill: rgba(0, 11, 29, 0.4) !important; }
752
+ .rx-button-toolbar.disable .rx-button-icon,
753
+ .rx-button-topbar.disable .rx-button-icon {
754
+ background-color: transparent !important;
755
+ color: rgba(0, 11, 29, 0.4) !important; }
756
+ .rx-button-toolbar:hover,
757
+ .rx-button-topbar:hover {
758
+ transition: all 0.2s linear;
759
+ background-color: #E4E8ED;
760
+ color: #000B1D; }
761
+ .rx-button-toolbar:hover svg,
762
+ .rx-button-topbar:hover svg {
763
+ fill: #000B1D; }
764
+ .rx-button-toolbar:hover .rx-button-icon,
765
+ .rx-button-topbar:hover .rx-button-icon {
766
+ border-color: transparent; }
767
+
768
+ .rx-tooltip {
769
+ position: absolute;
770
+ z-index: 99;
771
+ margin: 0;
772
+ padding: 4px 7px;
773
+ border-radius: 2px;
774
+ line-height: 1;
775
+ font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace;
776
+ font-size: 12px;
777
+ color: rgba(255, 255, 255, 0.85);
778
+ background-color: #000B1D; }
779
+
780
+ .rx-statusbar {
781
+ font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace;
782
+ margin: 0;
783
+ padding: 8px 10px;
784
+ position: relative;
785
+ overflow: hidden;
786
+ background-color: #F5F5F6;
787
+ box-sizing: border-box;
788
+ border: none; }
789
+ .rx-statusbar:empty {
790
+ display: none; }
791
+ .rx-statusbar-item {
792
+ float: left;
793
+ font-size: 12px;
794
+ padding: 0 10px;
795
+ margin: 0;
796
+ line-height: 16px;
797
+ color: rgba(0, 11, 29, 0.5);
798
+ border-right: 1px solid rgba(0, 11, 29, 0.1); }
799
+ .rx-statusbar-item:last-child {
800
+ border-right-color: transparent; }
801
+ .rx-statusbar-item a {
802
+ color: rgba(0, 11, 29, 0.5);
803
+ text-decoration: underline; }
804
+ .rx-statusbar-item a:hover {
805
+ color: #FF4F7F;
806
+ text-decoration: underline; }
807
+
808
+ .rx-panel {
809
+ position: absolute;
810
+ min-width: 240px;
811
+ max-height: 300px;
812
+ margin: 0;
813
+ padding: 0;
814
+ z-index: 99;
815
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", Arial, sans-serif;
816
+ font-size: 14px;
817
+ overflow: auto;
818
+ border-radius: 4px;
819
+ background-color: #000B1D; }
820
+ .rx-panel-item {
821
+ box-sizing: border-box;
822
+ padding: 4px;
823
+ border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
824
+ .rx-panel-item a {
825
+ display: block;
826
+ border-radius: 6px;
827
+ padding: 8px;
828
+ line-height: 1;
829
+ text-decoration: none;
830
+ color: #ffffff;
831
+ background-color: transparent; }
832
+ .rx-panel-item.active a,
833
+ .rx-panel-item a:hover {
834
+ color: #ffffff;
835
+ background-color: #0058FB; }
836
+
837
+ .rx-editor, .rx-editor [data-rx-type], .rx-editor a, .rx-editor p, .rx-editor figcaption, .rx-editor td, .rx-editor th {
838
+ outline: none; }
839
+
840
+ .rx-editor::after {
841
+ content: "";
842
+ clear: both;
843
+ display: table; }
844
+
845
+ .rx-editor [data-rx-type=embed], .rx-editor [data-rx-type=embed] a,
846
+ .rx-editor [data-rx-type=image],
847
+ .rx-editor [data-rx-type=image] a {
848
+ cursor: pointer; }
849
+
850
+ .rx-editor [data-rx-type=embed] figcaption,
851
+ .rx-editor [data-rx-type=image] figcaption {
852
+ cursor: text; }
853
+
854
+ .rx-editor [data-rx-type=embed].rx-block-focus,
855
+ .rx-editor [data-rx-type=image].rx-block-focus,
856
+ .rx-editor [data-rx-type=line].rx-block-focus,
857
+ .rx-editor [data-rx-type=layer].rx-block-focus {
858
+ outline: 3px solid rgba(0, 88, 251, 0.4) !important; }
859
+
860
+ .rx-editor [data-rx-type].rx-block-meta-focus {
861
+ outline: 3px solid rgba(0, 88, 251, 0.4) !important; }
862
+
863
+ .rx-editor [data-rx-type=text] {
864
+ margin: 0;
865
+ line-height: 1.5; }
866
+ .rx-editor [data-rx-type=text]:empty {
867
+ min-height: 1.5em; }
868
+
869
+ .rx-editor [data-rx-type=embed] {
870
+ position: relative; }
871
+ .rx-editor [data-rx-type=embed]:before {
872
+ width: 100%;
873
+ height: 100%;
874
+ content: "";
875
+ position: absolute;
876
+ z-index: 1; }
877
+ .rx-editor [data-rx-type=embed] iframe {
878
+ display: inline-block; }
879
+ .rx-editor [data-rx-type=embed] figcaption {
880
+ position: relative;
881
+ top: 0;
882
+ z-index: 2; }
883
+
884
+ .rx-editor [data-placeholder]:empty:before {
885
+ content: attr(data-placeholder);
886
+ display: inline-block;
887
+ color: rgba(0, 11, 29, 0.4);
888
+ font-weight: normal;
889
+ font-style: italic;
890
+ font-size: inherit;
891
+ cursor: text;
892
+ max-height: 20px; }
893
+
894
+ .rx-editor [data-placeholder]:empty:focus:before {
895
+ content: ""; }
896
+
897
+ .rx-popup {
898
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", Arial, sans-serif;
899
+ border-radius: 4px;
900
+ background-color: #ffffff;
901
+ box-shadow: 0 14px 28px rgba(0, 11, 29, 0.25), 0 10px 10px rgba(0, 11, 29, 0.1);
902
+ position: absolute;
903
+ top: 0;
904
+ left: 0;
905
+ z-index: 100;
906
+ margin-bottom: 16px;
907
+ overflow-x: auto; }
908
+
909
+ .rx-popup-body {
910
+ box-sizing: border-box;
911
+ padding: 0; }
912
+ .rx-popup-body form {
913
+ padding-bottom: 16px; }
914
+
915
+ .rx-popup-items {
916
+ padding: 8px; }
917
+
918
+ .rx-popup-type-grid .rx-popup-items {
919
+ display: flex;
920
+ flex-wrap: wrap;
921
+ padding: 0;
922
+ box-sizing: border-box; }
923
+
924
+ .rx-popup-type-grid .rx-popup-item {
925
+ box-sizing: border-box;
926
+ border-radius: 0;
927
+ margin-bottom: -1px;
928
+ width: 32px;
929
+ height: 32px;
930
+ line-height: 32px;
931
+ padding: 0;
932
+ text-align: center;
933
+ justify-content: center;
934
+ align-items: center;
935
+ border: 1px solid #D9DBDD;
936
+ color: #000B1D;
937
+ border-left-color: transparent;
938
+ border-top-color: transparent; }
939
+
940
+ .rx-popup-type-grid .rx-popup-item svg {
941
+ width: 16px;
942
+ height: 16px; }
943
+
944
+ .rx-popup-header {
945
+ font-size: 14px;
946
+ font-weight: bold;
947
+ color: #000B1D;
948
+ padding: 0 16px;
949
+ position: relative; }
950
+ .rx-popup-header:empty {
951
+ display: none; }
952
+ .rx-popup-header-box {
953
+ white-space: nowrap; }
954
+ .rx-popup-header-item {
955
+ position: relative;
956
+ display: inline-block;
957
+ color: #000B1D;
958
+ font-weight: bold;
959
+ padding-top: 16px;
960
+ padding-bottom: 16px;
961
+ margin-right: 8px;
962
+ padding-right: 8px;
963
+ text-decoration: none; }
964
+ .rx-popup-header-item:after {
965
+ content: '';
966
+ position: absolute;
967
+ right: 0;
968
+ top: 18px;
969
+ width: 1px;
970
+ height: 16px;
971
+ background-color: rgba(0, 11, 29, 0.2); }
972
+ .rx-popup-header-item:last-child {
973
+ margin-right: 0;
974
+ padding-right: 0; }
975
+ .rx-popup-header-item:last-child:after {
976
+ display: none; }
977
+ .rx-popup-header-item-link {
978
+ color: rgba(0, 11, 29, 0.6); }
979
+ .rx-popup-header-item-link:hover {
980
+ color: #000B1D;
981
+ text-decoration: underline; }
982
+ .rx-popup-header-item-link.active {
983
+ color: #000B1D;
984
+ text-decoration: none;
985
+ cursor: text; }
986
+
987
+ .rx-popup-footer {
988
+ overflow: hidden;
989
+ box-sizing: border-box;
990
+ margin-top: 8px;
991
+ padding: 16px;
992
+ padding-bottom: 20px; }
993
+ .rx-popup-footer .rx-form-button {
994
+ margin-right: 4px; }
995
+ .rx-popup-footer:empty {
996
+ display: none; }
997
+
998
+ .rx-popup-item {
999
+ font-size: 14px;
1000
+ border-radius: 4px;
1001
+ padding: 10px 8px;
1002
+ display: flex;
1003
+ line-height: 1;
1004
+ align-items: center;
1005
+ cursor: pointer;
1006
+ position: relative; }
1007
+ .rx-popup-item-container {
1008
+ width: 92px;
1009
+ height: 76px;
1010
+ padding: 0;
1011
+ display: flex;
1012
+ flex-direction: column;
1013
+ text-align: center;
1014
+ align-items: center;
1015
+ justify-content: center;
1016
+ vertical-align: middle; }
1017
+ .rx-popup-item-container .rx-popup-item-title {
1018
+ flex: none;
1019
+ font-size: 12px;
1020
+ color: rgba(0, 11, 29, 0.6); }
1021
+ .rx-popup-item-container .rx-popup-item-icon {
1022
+ font-size: 16px;
1023
+ margin-bottom: 10px;
1024
+ margin-right: 0;
1025
+ line-height: 1; }
1026
+ .rx-popup-item-container .rx-popup-item-icon svg {
1027
+ position: relative;
1028
+ top: 2px; }
1029
+ .rx-popup-item-title {
1030
+ flex: 1; }
1031
+ .rx-popup-item-icon {
1032
+ font-size: 16px;
1033
+ margin-right: 6px; }
1034
+ .rx-popup-item-shortcut {
1035
+ font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace;
1036
+ font-size: 11px;
1037
+ color: rgba(0, 11, 29, 0.5);
1038
+ margin-left: auto;
1039
+ padding-top: 1px;
1040
+ text-align: right; }
1041
+ .rx-popup-item-shortcut b {
1042
+ position: relative;
1043
+ top: 2px;
1044
+ font-weight: normal;
1045
+ font-size: 14px; }
1046
+ .rx-popup-item-image {
1047
+ display: inline-block;
1048
+ max-width: 38px !important;
1049
+ height: auto;
1050
+ padding: 4px;
1051
+ border-radius: 4px;
1052
+ background-color: #D9DBDD; }
1053
+ .rx-popup-item-image > img,
1054
+ .rx-popup-item-image > svg {
1055
+ max-width: 30px !important;
1056
+ height: auto;
1057
+ display: inline-block; }
1058
+ .rx-popup-item-trash {
1059
+ font-size: 14px;
1060
+ margin-left: auto;
1061
+ color: rgba(0, 11, 29, 0.7); }
1062
+ .rx-popup-item-trash:hover {
1063
+ color: #000B1D; }
1064
+ .rx-popup-item-hidden {
1065
+ display: none; }
1066
+ .rx-popup-item:hover {
1067
+ background-color: #E4E8ED; }
1068
+ .rx-popup-item.active {
1069
+ background-color: rgba(0, 88, 251, 0.65);
1070
+ color: #ffffff; }
1071
+ .rx-popup-item.active span {
1072
+ background: none !important;
1073
+ color: #ffffff !important; }
1074
+ .rx-popup-item-divider-top {
1075
+ margin-top: 9px; }
1076
+ .rx-popup-item-divider-top:before {
1077
+ top: -5px; }
1078
+ .rx-popup-item-divider-bottom {
1079
+ margin-bottom: 9px; }
1080
+ .rx-popup-item-divider-bottom:before {
1081
+ bottom: -5px; }
1082
+ .rx-popup-item-divider-top:before, .rx-popup-item-divider-bottom:before {
1083
+ position: absolute;
1084
+ content: '';
1085
+ width: calc(100% - 8px);
1086
+ height: 1px;
1087
+ left: 4px;
1088
+ background-color: rgba(0, 11, 29, 0.07); }
1089
+
1090
+ .rx-popup-close {
1091
+ position: absolute;
1092
+ right: 16px;
1093
+ top: 14px;
1094
+ cursor: pointer;
1095
+ display: inline-block;
1096
+ vertical-align: middle;
1097
+ width: 20px;
1098
+ height: 20px;
1099
+ opacity: 0.5; }
1100
+ .rx-popup-close::before, .rx-popup-close::after {
1101
+ content: "";
1102
+ display: block;
1103
+ left: 50%;
1104
+ position: absolute;
1105
+ top: 50%;
1106
+ transform: translate(-50%, -50%) rotate(45deg);
1107
+ background-color: #000B1D; }
1108
+ .rx-popup-close::before {
1109
+ height: 1px;
1110
+ width: 75%; }
1111
+ .rx-popup-close::after {
1112
+ height: 75%;
1113
+ width: 1px; }
1114
+ .rx-popup-close:hover {
1115
+ opacity: 1; }
1116
+
1117
+ .rx-popup-list {
1118
+ list-style: none;
1119
+ margin: 0;
1120
+ padding: 16px 8px;
1121
+ padding-top: 0; }
1122
+ .rx-popup-list li {
1123
+ cursor: pointer;
1124
+ display: flex;
1125
+ align-items: center;
1126
+ border-radius: 4px;
1127
+ line-height: 1;
1128
+ border-bottom: 1px solid rgba(0, 11, 29, 0.07); }
1129
+ .rx-popup-list li:last-child {
1130
+ border-bottom-color: transparent; }
1131
+ .rx-popup-list li:hover {
1132
+ background-color: #E4E8ED; }
1133
+ .rx-popup-list-item {
1134
+ text-decoration: none;
1135
+ flex: 1;
1136
+ padding: 7px 8px;
1137
+ font-size: 14px;
1138
+ color: #000B1D; }
1139
+ .rx-popup-list-aside {
1140
+ font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace;
1141
+ font-size: 11px;
1142
+ color: rgba(0, 11, 29, 0.5);
1143
+ margin-left: auto;
1144
+ padding-left: 4px; }
1145
+
1146
+ .rx-popup.has-footer form,
1147
+ .rx-popup.has-form .rx-popup-header-item,
1148
+ .rx-popup.has-items .rx-popup-header-item {
1149
+ padding-bottom: 0; }
1150
+
1151
+ .rx-popup[dir=rtl] .rx-popup-close {
1152
+ right: auto;
1153
+ left: 20px; }
1154
+
1155
+ .rx-form-item {
1156
+ padding: 16px 16px 0 16px; }
1157
+ .rx-form-item:empty {
1158
+ display: none; }
1159
+
1160
+ .rx-form-image img,
1161
+ .rx-form-image svg {
1162
+ max-width: 100%; }
1163
+
1164
+ .rx-form-label {
1165
+ box-sizing: border-box;
1166
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", Arial, sans-serif;
1167
+ font-size: 14px;
1168
+ font-weight: bold;
1169
+ display: block;
1170
+ padding: 0;
1171
+ margin: 0;
1172
+ padding-bottom: 6px;
1173
+ color: rgba(0, 11, 29, 0.65); }
1174
+
1175
+ .rx-form-container-flex {
1176
+ display: flex; }
1177
+ .rx-form-container-flex .rx-form-input,
1178
+ .rx-form-container-flex .rx-form-select {
1179
+ flex: auto; }
1180
+ .rx-form-container-flex .rx-form-button {
1181
+ margin-left: 4px; }
1182
+
1183
+ .rx-form-button-push-right {
1184
+ float: right; }
1185
+
1186
+ .rx-form-button {
1187
+ box-sizing: border-box;
1188
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", Arial, sans-serif;
1189
+ font-size: 14px;
1190
+ font-weight: bold;
1191
+ outline: none;
1192
+ border-radius: 4px;
1193
+ padding: 8px 24px;
1194
+ min-height: 38px;
1195
+ cursor: pointer;
1196
+ line-height: 1.25;
1197
+ height: auto;
1198
+ background-color: #ffffff;
1199
+ border: 1px solid #D9DBDD;
1200
+ color: rgba(0, 11, 29, 0.9); }
1201
+ .rx-form-button:hover {
1202
+ background-color: #F5F5F6; }
1203
+
1204
+ .rx-form-button-primary {
1205
+ background-color: #000B1D;
1206
+ border: 1px solid #000B1D;
1207
+ color: #ffffff; }
1208
+ .rx-form-button-primary:hover {
1209
+ background-color: #262F3F; }
1210
+
1211
+ .rx-form-button-danger {
1212
+ background-color: #ffffff;
1213
+ border: 1px solid #BF3D66;
1214
+ color: #BF3D66; }
1215
+ .rx-form-button-danger:hover {
1216
+ background-color: #F5F5F6; }
1217
+
1218
+ .rx-form-button-fullwidth {
1219
+ display: block;
1220
+ width: 100%; }
1221
+
1222
+ .rx-form-input,
1223
+ .rx-form-select,
1224
+ .rx-form-textarea {
1225
+ box-sizing: border-box;
1226
+ display: block;
1227
+ width: 100%;
1228
+ vertical-align: middle;
1229
+ font-weight: normal;
1230
+ padding: 8px;
1231
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", Arial, sans-serif;
1232
+ font-size: 15px;
1233
+ outline: none;
1234
+ border-radius: 4px;
1235
+ box-shadow: none;
1236
+ line-height: 1.3;
1237
+ color: #000B1D;
1238
+ background-color: #F5F5F6;
1239
+ border: 1px solid #D9DBDD; }
1240
+ .rx-form-input:focus,
1241
+ .rx-form-select:focus,
1242
+ .rx-form-textarea:focus {
1243
+ border-color: rgba(0, 88, 251, 0.5);
1244
+ box-shadow: 0 1px 2px rgba(0, 11, 29, 0.13) inset, 0 0 2px rgba(0, 88, 251, 0.4); }
1245
+
1246
+ .rx-form-textarea {
1247
+ resize: vertical;
1248
+ line-height: 1.5; }
1249
+
1250
+ .rx-form-select {
1251
+ font-size: 15px;
1252
+ cursor: pointer;
1253
+ -webkit-appearance: none;
1254
+ background-image: url('data:image/svg+xml;utf8,<svg height="10" viewBox="0 0 9 10" width="9" xmlns="http://www.w3.org/2000/svg"><path fill="rgba(0, 0, 0, .6)" d="m3.27162899.66658308.8-.70211699 4 3.51058495-.8.70211699-3.2-2.80846796-3.2 2.80846796-.8-.70211699zm0 8.59576602-3.2-2.80846795.8-.70211699 3.2 2.80846796 3.2-2.80846796.8.70211699-4 3.51058494z" /></svg>');
1255
+ background-repeat: no-repeat;
1256
+ background-position: right 0.65em center;
1257
+ padding-right: 28px;
1258
+ min-height: 35px; }
1259
+
1260
+ .rx-form-checkbox {
1261
+ box-sizing: border-box;
1262
+ vertical-align: middle;
1263
+ position: relative;
1264
+ bottom: -0.1em;
1265
+ margin-top: 0 !important;
1266
+ margin-right: 4px !important;
1267
+ margin-left: 0 !important;
1268
+ font-size: 15px; }
1269
+
1270
+ .rx-popup[dir=rtl] .rx-form-checkbox {
1271
+ margin-right: 0 !important;
1272
+ margin-left: 4px !important; }
1273
+
1274
+ .rx-form-checkbox-item span {
1275
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", Arial, sans-serif;
1276
+ font-size: 14px;
1277
+ font-weight: normal;
1278
+ color: #000B1D; }
1279
+
1280
+ .rx-form-segment {
1281
+ display: flex;
1282
+ flex-wrap: wrap;
1283
+ background-color: #F0F1F1;
1284
+ border-radius: 4px;
1285
+ padding: 2px;
1286
+ gap: 4px; }
1287
+
1288
+ .rx-form-segment-item {
1289
+ border: 1px solid transparent;
1290
+ font-size: 16px;
1291
+ padding: 8px 5px;
1292
+ margin: 0;
1293
+ cursor: pointer;
1294
+ flex: auto;
1295
+ text-align: center;
1296
+ border-radius: 4px;
1297
+ min-width: 32px;
1298
+ color: rgba(0, 11, 29, 0.6); }
1299
+ .rx-form-segment-item:hover {
1300
+ background-color: #ffffff;
1301
+ color: #000B1D; }
1302
+ .rx-form-segment-item.active {
1303
+ cursor: default;
1304
+ background-color: #ffffff;
1305
+ box-shadow: 0 1px 3px rgba(0, 11, 29, 0.12), 0 1px 2px rgba(0, 11, 29, 0.2);
1306
+ color: #000B1D; }
1307
+
1308
+ .rx-form-upload-box {
1309
+ flex: 1;
1310
+ display: flex;
1311
+ flex-direction: column;
1312
+ align-items: center;
1313
+ justify-content: center;
1314
+ margin: 0;
1315
+ margin-bottom: 10px;
1316
+ border: 2px dashed rgba(0, 11, 29, 0.12);
1317
+ background-color: #F5F5F6;
1318
+ border-radius: 4px;
1319
+ min-width: 160px;
1320
+ height: 160px;
1321
+ cursor: pointer;
1322
+ position: relative; }
1323
+ .rx-form-upload-box input[type="file"] {
1324
+ font-size: 13px; }
1325
+ .rx-form-upload-box img {
1326
+ position: relative;
1327
+ z-index: 2;
1328
+ object-fit: cover;
1329
+ height: 100%;
1330
+ width: 100%; }
1331
+ .rx-form-upload-box:after {
1332
+ content: '';
1333
+ position: absolute;
1334
+ top: 0;
1335
+ bottom: 0;
1336
+ left: 0;
1337
+ right: 0;
1338
+ width: 100%;
1339
+ height: 100%; }
1340
+ .rx-form-upload-box.rx-form-upload-hover {
1341
+ border-color: rgba(0, 88, 251, 0.35);
1342
+ background-color: rgba(0, 88, 251, 0.05); }
1343
+ .rx-form-upload-box.rx-form-upload-error {
1344
+ border-color: rgba(255, 79, 127, 0.35);
1345
+ background-color: rgba(255, 79, 127, 0.05); }
1346
+
1347
+ .rx-upload-remove {
1348
+ position: absolute;
1349
+ z-index: 3;
1350
+ top: -6px;
1351
+ right: -10px;
1352
+ background-color: #FF4F7F;
1353
+ color: #ffffff;
1354
+ opacity: 1;
1355
+ width: 20px;
1356
+ height: 20px;
1357
+ text-align: center;
1358
+ border-radius: 10px;
1359
+ font-size: 14px;
1360
+ line-height: 20px; }
1361
+ .rx-upload-remove:after {
1362
+ content: '\00d7'; }
1363
+ .rx-upload-remove:hover {
1364
+ background-color: #000B1D; }
1365
+
1366
+ .rx-form-upload-cover-off img {
1367
+ object-fit: initial;
1368
+ height: auto;
1369
+ width: auto; }
1370
+
1371
+ .rx-form-upload-placeholder {
1372
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", Arial, sans-serif;
1373
+ color: rgba(0, 11, 29, 0.5);
1374
+ font-size: 12px;
1375
+ line-height: 1.35;
1376
+ padding: 0 8px;
1377
+ text-align: center; }
1378
+ .rx-form-upload-placeholder svg {
1379
+ fill: rgba(0, 11, 29, 0.5); }
1380
+
1381
+ .rx-popup-addbar .rx-popup-items {
1382
+ display: flex;
1383
+ flex-wrap: wrap;
1384
+ padding: 4px; }
1385
+
1386
+ .rx-popup-image .rx-popup-body,
1387
+ .rx-popup-stack-image .rx-popup-body {
1388
+ padding: 16px;
1389
+ padding-top: 0; }
1390
+
1391
+ .rx-popup-image-section-or {
1392
+ margin: 16px 0;
1393
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", Arial, sans-serif;
1394
+ text-transform: uppercase;
1395
+ font-weight: bold;
1396
+ text-align: center;
1397
+ font-size: 12px;
1398
+ color: #000B1D; }
1399
+
1400
+ .rx-popup-images-box {
1401
+ margin-top: 12px; }
1402
+ .rx-popup-images-box img {
1403
+ vertical-align: top;
1404
+ max-width: 100px;
1405
+ height: auto;
1406
+ cursor: pointer;
1407
+ margin-bottom: 8px;
1408
+ margin-right: 8px; }
1409
+ .rx-popup-images-box img:hover {
1410
+ outline: 3px solid rgba(0, 88, 251, 0.5); }
1411
+
1412
+ .rx-form-item-edit-image-box {
1413
+ padding: 20px;
1414
+ padding-bottom: 0; }
1415
+
1416
+ .rx-form-item-image {
1417
+ margin-right: 8px; }
1418
+ .rx-form-item-image img {
1419
+ max-height: 160px;
1420
+ width: auto; }
1421
+
1422
+ .rx-popup-shortcut-item {
1423
+ border-radius: 0;
1424
+ border-bottom: 1px solid rgba(0, 11, 29, 0.08);
1425
+ cursor: text; }
1426
+ .rx-popup-shortcut-item:hover {
1427
+ background-color: transparent; }
1428
+ .rx-popup-shortcut-item:last-child {
1429
+ border-bottom-color: transparent; }
1430
+
1431
+ .rx-popup-shortcut-title {
1432
+ font-size: 14px;
1433
+ line-height: 20px;
1434
+ color: #000B1D;
1435
+ margin-right: 16px; }
1436
+
1437
+ .rx-popup-shortcut-kbd {
1438
+ white-space: nowrap;
1439
+ line-height: 20px;
1440
+ font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace;
1441
+ font-size: 12px;
1442
+ padding: 0;
1443
+ display: inline-block;
1444
+ color: rgba(0, 11, 29, 0.65);
1445
+ margin-left: auto;
1446
+ text-align: right; }
1447
+ .rx-popup-shortcut-kbd span {
1448
+ display: inline-block;
1449
+ border-radius: 4px;
1450
+ padding-left: 3px;
1451
+ padding-right: 3px;
1452
+ color: rgba(0, 11, 29, 0.85);
1453
+ background-color: #F5F5F6; }
1454
+ .rx-popup-shortcut-kbd b {
1455
+ font-weight: normal;
1456
+ font-size: 18px;
1457
+ display: inline-block;
1458
+ line-height: 12px;
1459
+ position: relative;
1460
+ top: 3px; }