@justifi/webcomponents 4.12.2 → 4.13.0-rc.1

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 (244) hide show
  1. package/dist/cjs/{Api-a06b996e.js → Api-ab34a402.js} +4 -1
  2. package/dist/cjs/{Business-21cef37d.js → Business-32a53780.js} +8 -3
  3. package/dist/cjs/{utils-f8079741.js → ComponentError-8ba0c0e7.js} +0 -25
  4. package/dist/cjs/additional-questions-details_5.cjs.entry.js +2 -2
  5. package/dist/cjs/{business-additional-questions-schema-f5f303fb.js → business-additional-questions-schema-0a35f597.js} +17 -9
  6. package/dist/cjs/{business-form-types-a3cc374d.js → business-form-options-43366c9a.js} +50 -33
  7. package/dist/cjs/business-form-types-29b2bad9.js +26 -0
  8. package/dist/cjs/form-control-date_3.cjs.entry.js +1 -1
  9. package/dist/cjs/form-control-datepart_2.cjs.entry.js +1 -1
  10. package/dist/cjs/form-control-file.cjs.entry.js +44 -0
  11. package/dist/cjs/form-control-monetary.cjs.entry.js +7 -12
  12. package/dist/cjs/form-input-masks-0879c139.js +27 -0
  13. package/dist/cjs/{index-fc5339a5.js → index-d8e99b54.js} +352 -198
  14. package/dist/cjs/justifi-additional-questions-form-step_5.cjs.entry.js +10 -9
  15. package/dist/cjs/justifi-additional-questions_4.cjs.entry.js +6 -6
  16. package/dist/cjs/justifi-billing-form_4.cjs.entry.js +2 -2
  17. package/dist/cjs/justifi-business-details.cjs.entry.js +8 -7
  18. package/dist/cjs/justifi-business-form.cjs.entry.js +6 -5
  19. package/dist/cjs/justifi-business-list.cjs.entry.js +2 -2
  20. package/dist/cjs/justifi-business-owners.cjs.entry.js +1 -1
  21. package/dist/cjs/justifi-checkout-core.cjs.entry.js +30 -11
  22. package/dist/cjs/justifi-checkout.cjs.entry.js +36 -9
  23. package/dist/cjs/justifi-gross-payment-chart.cjs.entry.js +7 -6
  24. package/dist/cjs/justifi-new-payment-method_4.cjs.entry.js +12 -12
  25. package/dist/cjs/justifi-owner-form.cjs.entry.js +6 -5
  26. package/dist/cjs/justifi-payment-balance-transactions.cjs.entry.js +1 -1
  27. package/dist/cjs/justifi-payment-details.cjs.entry.js +8 -7
  28. package/dist/cjs/justifi-payment-form.cjs.entry.js +6 -5
  29. package/dist/cjs/justifi-payment-provisioning.cjs.entry.js +1 -3
  30. package/dist/cjs/justifi-payments-list.cjs.entry.js +8 -7
  31. package/dist/cjs/justifi-payout-details.cjs.entry.js +8 -7
  32. package/dist/cjs/justifi-payouts-list.cjs.entry.js +7 -6
  33. package/dist/cjs/justifi-proceeds-list.cjs.entry.js +1 -1
  34. package/dist/cjs/justifi-refund-form.cjs.entry.js +3 -2
  35. package/dist/cjs/justifi-subaccount-details.cjs.entry.js +1 -1
  36. package/dist/cjs/justifi-subaccounts-list.cjs.entry.js +1 -1
  37. package/dist/cjs/loader.cjs.js +1 -1
  38. package/dist/cjs/{payload-parsers-74693a97.js → payload-parsers-6c4b5323.js} +61 -6
  39. package/dist/cjs/{payment.service-9db24ab9.js → payment.service-336189d3.js} +1 -1
  40. package/dist/cjs/{payout.service-a0efb71a.js → payout.service-6012d576.js} +1 -1
  41. package/dist/cjs/utils-491248ca.js +28 -0
  42. package/dist/cjs/webcomponents.cjs.js +1 -1
  43. package/dist/collection/api/Api.js +4 -1
  44. package/dist/collection/api/Business.js +8 -3
  45. package/dist/collection/collection-manifest.json +1 -0
  46. package/dist/collection/components/business-details/additional-questions-details/additional-questions-details.js +2 -2
  47. package/dist/collection/components/business-forms/business-form/additional-questions/additional-questions.js +4 -2
  48. package/dist/collection/components/business-forms/business-form/business-core-info/business-core-info.js +2 -2
  49. package/dist/collection/components/business-forms/payment-provisioning/additional-questions/business-additional-questions-form-step.js +4 -2
  50. package/dist/collection/components/business-forms/payment-provisioning/business-core-info/business-core-info-form-step.js +3 -2
  51. package/dist/collection/components/business-forms/schemas/business-additional-questions-schema.js +16 -9
  52. package/dist/collection/components/business-forms/schemas/business-core-info-schema.js +3 -1
  53. package/dist/collection/components/business-forms/schemas/schema-helpers.js +3 -0
  54. package/dist/collection/components/business-forms/schemas/schema-validations.js +51 -7
  55. package/dist/collection/components/business-forms/utils/business-form-options.js +119 -0
  56. package/dist/collection/components/business-forms/utils/business-form-types.js +0 -81
  57. package/dist/collection/components/checkout/checkout-actions.js +29 -7
  58. package/dist/collection/components/checkout/checkout-core.js +51 -14
  59. package/dist/collection/components/checkout/checkout.js +30 -2
  60. package/dist/collection/components/checkout/new-payment-method.js +11 -11
  61. package/dist/collection/components/checkout/payment-method-options.js +2 -18
  62. package/dist/collection/components/checkout/test/checkout-actions.spec.js +124 -0
  63. package/dist/collection/components/checkout/test/checkout-core.spec.js +127 -0
  64. package/dist/collection/components/checkout/test/checkout.spec.js +0 -153
  65. package/dist/collection/components/form/form-control-file.css +1806 -0
  66. package/dist/collection/components/form/form-control-file.js +169 -0
  67. package/dist/collection/components/form/form-control-monetary.css +1812 -0
  68. package/dist/collection/components/form/form-control-monetary.js +24 -11
  69. package/dist/collection/components/form/test/form-control-file.spec.js +84 -0
  70. package/dist/collection/components/form/test/form-control-monetary.spec.js +5 -3
  71. package/dist/collection/components/refund-form/refund-form.js +2 -1
  72. package/dist/collection/utils/form-input-masks.js +15 -0
  73. package/dist/docs.json +275 -33
  74. package/dist/esm/{Api-0e88671c.js → Api-e9d568c7.js} +4 -1
  75. package/dist/esm/{Business-0e8a9a3a.js → Business-d83fbdb4.js} +8 -3
  76. package/dist/esm/{utils-4609f32c.js → ComponentError-2a58dbbc.js} +1 -23
  77. package/dist/esm/additional-questions-details_5.entry.js +2 -2
  78. package/dist/esm/{business-additional-questions-schema-a84dd641.js → business-additional-questions-schema-e96b0509.js} +18 -10
  79. package/dist/esm/{business-form-types-7420dc96.js → business-form-options-de11bc46.js} +46 -32
  80. package/dist/esm/business-form-types-0d76133c.js +26 -0
  81. package/dist/esm/form-control-date_3.entry.js +1 -1
  82. package/dist/esm/form-control-datepart_2.entry.js +1 -1
  83. package/dist/esm/form-control-file.entry.js +40 -0
  84. package/dist/esm/form-control-monetary.entry.js +7 -12
  85. package/dist/esm/form-input-masks-0e18300f.js +22 -0
  86. package/dist/esm/{index-5eb05747.js → index-dc1350b1.js} +352 -198
  87. package/dist/esm/justifi-additional-questions-form-step_5.entry.js +10 -9
  88. package/dist/esm/justifi-additional-questions_4.entry.js +6 -6
  89. package/dist/esm/justifi-billing-form_4.entry.js +2 -2
  90. package/dist/esm/justifi-business-details.entry.js +4 -3
  91. package/dist/esm/justifi-business-form.entry.js +6 -5
  92. package/dist/esm/justifi-business-list.entry.js +2 -2
  93. package/dist/esm/justifi-business-owners.entry.js +1 -1
  94. package/dist/esm/justifi-checkout-core.entry.js +30 -11
  95. package/dist/esm/justifi-checkout.entry.js +37 -10
  96. package/dist/esm/justifi-gross-payment-chart.entry.js +3 -2
  97. package/dist/esm/justifi-new-payment-method_4.entry.js +12 -12
  98. package/dist/esm/justifi-owner-form.entry.js +6 -5
  99. package/dist/esm/justifi-payment-balance-transactions.entry.js +1 -1
  100. package/dist/esm/justifi-payment-details.entry.js +4 -3
  101. package/dist/esm/justifi-payment-form.entry.js +2 -1
  102. package/dist/esm/justifi-payment-provisioning.entry.js +1 -3
  103. package/dist/esm/justifi-payments-list.entry.js +4 -3
  104. package/dist/esm/justifi-payout-details.entry.js +4 -3
  105. package/dist/esm/justifi-payouts-list.entry.js +4 -3
  106. package/dist/esm/justifi-proceeds-list.entry.js +1 -1
  107. package/dist/esm/justifi-refund-form.entry.js +3 -2
  108. package/dist/esm/justifi-subaccount-details.entry.js +1 -1
  109. package/dist/esm/justifi-subaccounts-list.entry.js +1 -1
  110. package/dist/esm/loader.js +1 -1
  111. package/dist/esm/{payload-parsers-0c4fc2b1.js → payload-parsers-32028700.js} +54 -7
  112. package/dist/esm/{payment.service-ec28a959.js → payment.service-2fdc5018.js} +1 -1
  113. package/dist/esm/{payout.service-5fd5986c.js → payout.service-15064bcc.js} +1 -1
  114. package/dist/esm/utils-f580d6b7.js +25 -0
  115. package/dist/esm/webcomponents.js +1 -1
  116. package/dist/module/Api.js +4 -1
  117. package/dist/module/Business.js +8 -3
  118. package/dist/module/ComponentError.js +16 -0
  119. package/dist/module/additional-questions-details2.js +2 -2
  120. package/dist/module/additional-questions.js +18 -4
  121. package/dist/module/business-additional-questions-form-step.js +18 -4
  122. package/dist/module/business-additional-questions-schema.js +16 -9
  123. package/dist/module/business-address-schema.js +1 -1
  124. package/dist/module/business-core-info-form-step.js +10 -3
  125. package/dist/module/business-core-info-schema.js +3 -1
  126. package/dist/module/business-core-info.js +9 -3
  127. package/dist/module/business-form-options.js +122 -0
  128. package/dist/module/business-form-types.js +153 -82
  129. package/dist/module/business-identity-schema.js +1 -1
  130. package/dist/module/business-representative-form-step.js +1 -1
  131. package/dist/module/checkout-core.js +30 -13
  132. package/dist/module/form-control-file.d.ts +11 -0
  133. package/dist/module/form-control-file.js +67 -0
  134. package/dist/module/form-control-monetary2.js +8 -12
  135. package/dist/module/form-input-masks.js +16 -1
  136. package/dist/module/index2.js +352 -198
  137. package/dist/module/justifi-business-details.js +2 -1
  138. package/dist/module/justifi-business-form.js +2 -2
  139. package/dist/module/justifi-checkout.js +37 -11
  140. package/dist/module/justifi-gross-payment-chart.js +2 -1
  141. package/dist/module/justifi-payment-details.js +2 -1
  142. package/dist/module/justifi-payment-form.js +2 -1
  143. package/dist/module/justifi-payment-provisioning.js +1 -1
  144. package/dist/module/justifi-payments-list.js +2 -1
  145. package/dist/module/justifi-payout-details.js +2 -1
  146. package/dist/module/justifi-payouts-list.js +2 -1
  147. package/dist/module/justifi-refund-form.js +2 -1
  148. package/dist/module/legal-address-form-step.js +1 -1
  149. package/dist/module/new-payment-method.js +11 -11
  150. package/dist/module/owner-form.js +2 -2
  151. package/dist/module/payload-parsers.js +1 -107
  152. package/dist/module/payment-method-form.js +2 -2
  153. package/dist/module/payment-method-options.js +2 -2
  154. package/dist/module/utils3.js +2 -15
  155. package/dist/types/api/Api.d.ts +1 -0
  156. package/dist/types/api/Business.d.ts +15 -5
  157. package/dist/types/api/services/checkout.service.d.ts +3 -3
  158. package/dist/types/components/business-forms/schemas/business-additional-questions-schema.d.ts +10 -4
  159. package/dist/types/components/business-forms/schemas/business-core-info-schema.d.ts +2 -0
  160. package/dist/types/components/business-forms/schemas/business-form-schema.d.ts +12 -4
  161. package/dist/types/components/business-forms/schemas/schema-helpers.d.ts +3 -0
  162. package/dist/types/components/business-forms/schemas/schema-validations.d.ts +8 -0
  163. package/dist/types/components/business-forms/utils/business-form-options.d.ts +21 -0
  164. package/dist/types/components/business-forms/utils/business-form-types.d.ts +0 -9
  165. package/dist/types/components/checkout/checkout-core.d.ts +8 -3
  166. package/dist/types/components/checkout/checkout.d.ts +3 -0
  167. package/dist/types/components/checkout/payment-method-options.d.ts +1 -1
  168. package/dist/types/components/checkout/payment-method-payload.d.ts +5 -0
  169. package/dist/types/components/form/form-control-file.d.ts +17 -0
  170. package/dist/types/components/form/form-control-monetary.d.ts +1 -0
  171. package/dist/types/components/payment-method-form/payment-method-responses.d.ts +1 -0
  172. package/dist/types/components.d.ts +61 -2
  173. package/dist/types/utils/form-input-masks.d.ts +15 -0
  174. package/dist/webcomponents/p-00ca94d1.js +1 -0
  175. package/dist/webcomponents/p-02b18979.entry.js +1 -0
  176. package/dist/webcomponents/p-0d80748f.js +1 -0
  177. package/dist/webcomponents/p-101b2648.entry.js +1 -0
  178. package/dist/webcomponents/p-132ba228.js +1 -0
  179. package/dist/webcomponents/p-13e2f667.js +1 -0
  180. package/dist/webcomponents/{p-18cf5a16.entry.js → p-1885c478.entry.js} +1 -1
  181. package/dist/webcomponents/{p-8abba4c2.entry.js → p-23099f1f.entry.js} +1 -1
  182. package/dist/webcomponents/p-230b96df.entry.js +1 -0
  183. package/dist/webcomponents/{p-2fbe8823.entry.js → p-3367225e.entry.js} +1 -1
  184. package/dist/webcomponents/p-3917edbf.entry.js +1 -0
  185. package/dist/webcomponents/p-3da23f21.js +1 -0
  186. package/dist/webcomponents/p-41bdee27.entry.js +1 -0
  187. package/dist/webcomponents/{p-5ff7826e.entry.js → p-4c84952f.entry.js} +1 -1
  188. package/dist/webcomponents/p-4ff52695.entry.js +1 -0
  189. package/dist/webcomponents/p-525db3e8.js +1 -0
  190. package/dist/webcomponents/p-61fd33c7.js +1 -0
  191. package/dist/webcomponents/p-64710363.entry.js +1 -0
  192. package/dist/webcomponents/{p-9245777b.js → p-731085e3.js} +1 -1
  193. package/dist/webcomponents/p-78b32fb9.entry.js +1 -0
  194. package/dist/webcomponents/p-7e334dce.entry.js +1 -0
  195. package/dist/webcomponents/p-7faacb1e.entry.js +1 -0
  196. package/dist/webcomponents/{p-5f5e730c.entry.js → p-834cba99.entry.js} +1 -1
  197. package/dist/webcomponents/p-87d646c0.js +1 -0
  198. package/dist/webcomponents/p-935d6f55.js +1 -0
  199. package/dist/webcomponents/{p-e3946c2b.js → p-9ada56da.js} +1 -1
  200. package/dist/webcomponents/p-9ba31a6a.entry.js +1 -0
  201. package/dist/webcomponents/p-a9af8f40.entry.js +1 -0
  202. package/dist/webcomponents/p-b81afd51.entry.js +1 -0
  203. package/dist/webcomponents/{p-c556deda.entry.js → p-bb58e656.entry.js} +1 -1
  204. package/dist/webcomponents/p-bc12b8b9.js +1 -0
  205. package/dist/webcomponents/p-bfe7c55c.entry.js +1 -0
  206. package/dist/webcomponents/p-c1be3378.entry.js +1 -0
  207. package/dist/webcomponents/p-cb31488b.entry.js +1 -0
  208. package/dist/webcomponents/p-cf3151a3.entry.js +1 -0
  209. package/dist/webcomponents/p-d0a8c631.entry.js +1 -0
  210. package/dist/webcomponents/p-e6ab1f0d.entry.js +1 -0
  211. package/dist/webcomponents/p-ee68566f.entry.js +1 -0
  212. package/dist/webcomponents/{p-3adc0688.entry.js → p-efbc8ffc.entry.js} +1 -1
  213. package/dist/webcomponents/{p-b9f04fb0.entry.js → p-f152d6b8.entry.js} +1 -1
  214. package/dist/webcomponents/webcomponents.esm.js +1 -1
  215. package/package.json +2 -2
  216. package/dist/cjs/form-input-masks-efd44b8e.js +0 -11
  217. package/dist/esm/form-input-masks-84875967.js +0 -7
  218. package/dist/webcomponents/p-01913426.js +0 -1
  219. package/dist/webcomponents/p-04c7f8f8.js +0 -1
  220. package/dist/webcomponents/p-0c269feb.entry.js +0 -1
  221. package/dist/webcomponents/p-0eb77101.entry.js +0 -1
  222. package/dist/webcomponents/p-19001cc5.entry.js +0 -1
  223. package/dist/webcomponents/p-2319abaf.entry.js +0 -1
  224. package/dist/webcomponents/p-2bee72bd.entry.js +0 -1
  225. package/dist/webcomponents/p-51ee396f.entry.js +0 -1
  226. package/dist/webcomponents/p-52e4cc27.js +0 -1
  227. package/dist/webcomponents/p-602a1588.entry.js +0 -1
  228. package/dist/webcomponents/p-6ec77980.entry.js +0 -1
  229. package/dist/webcomponents/p-6f294d5d.js +0 -1
  230. package/dist/webcomponents/p-81c43ba5.entry.js +0 -1
  231. package/dist/webcomponents/p-927150b4.entry.js +0 -1
  232. package/dist/webcomponents/p-93579716.js +0 -1
  233. package/dist/webcomponents/p-9e35b0f6.entry.js +0 -1
  234. package/dist/webcomponents/p-9e3f9e05.entry.js +0 -1
  235. package/dist/webcomponents/p-9ec89299.entry.js +0 -1
  236. package/dist/webcomponents/p-a8caec98.entry.js +0 -1
  237. package/dist/webcomponents/p-a90f7ca0.js +0 -1
  238. package/dist/webcomponents/p-abc03d5a.entry.js +0 -1
  239. package/dist/webcomponents/p-b38baa84.entry.js +0 -1
  240. package/dist/webcomponents/p-bfc634c6.entry.js +0 -1
  241. package/dist/webcomponents/p-c1b92cec.entry.js +0 -1
  242. package/dist/webcomponents/p-cb86b2fd.js +0 -1
  243. package/dist/webcomponents/p-d2b7beac.js +0 -1
  244. package/dist/webcomponents/p-d69a485a.entry.js +0 -1
@@ -0,0 +1,1812 @@
1
+ :root,
2
+ [data-bs-theme=light] {
3
+ --bs-blue: #0d6efd;
4
+ --bs-indigo: #6610f2;
5
+ --bs-purple: #6f42c1;
6
+ --bs-pink: #d63384;
7
+ --bs-red: #dc3545;
8
+ --bs-orange: #fd7e14;
9
+ --bs-yellow: #ffc107;
10
+ --bs-green: #198754;
11
+ --bs-teal: #20c997;
12
+ --bs-cyan: #0dcaf0;
13
+ --bs-black: #000;
14
+ --bs-white: #fff;
15
+ --bs-gray: #6c757d;
16
+ --bs-gray-dark: #343a40;
17
+ --bs-gray-100: #f8f9fa;
18
+ --bs-gray-200: #e9ecef;
19
+ --bs-gray-300: #dee2e6;
20
+ --bs-gray-400: #ced4da;
21
+ --bs-gray-500: #adb5bd;
22
+ --bs-gray-600: #6c757d;
23
+ --bs-gray-700: #495057;
24
+ --bs-gray-800: #343a40;
25
+ --bs-gray-900: #212529;
26
+ --bs-primary: #0d6efd;
27
+ --bs-secondary: #6c757d;
28
+ --bs-success: #198754;
29
+ --bs-info: #0dcaf0;
30
+ --bs-warning: #ffc107;
31
+ --bs-danger: #dc3545;
32
+ --bs-light: #f8f9fa;
33
+ --bs-dark: #212529;
34
+ --bs-primary-rgb: 13, 110, 253;
35
+ --bs-secondary-rgb: 108, 117, 125;
36
+ --bs-success-rgb: 25, 135, 84;
37
+ --bs-info-rgb: 13, 202, 240;
38
+ --bs-warning-rgb: 255, 193, 7;
39
+ --bs-danger-rgb: 220, 53, 69;
40
+ --bs-light-rgb: 248, 249, 250;
41
+ --bs-dark-rgb: 33, 37, 41;
42
+ --bs-primary-text-emphasis: #052c65;
43
+ --bs-secondary-text-emphasis: #2b2f32;
44
+ --bs-success-text-emphasis: #0a3622;
45
+ --bs-info-text-emphasis: #055160;
46
+ --bs-warning-text-emphasis: #664d03;
47
+ --bs-danger-text-emphasis: #58151c;
48
+ --bs-light-text-emphasis: #495057;
49
+ --bs-dark-text-emphasis: #495057;
50
+ --bs-primary-bg-subtle: #cfe2ff;
51
+ --bs-secondary-bg-subtle: #e2e3e5;
52
+ --bs-success-bg-subtle: #d1e7dd;
53
+ --bs-info-bg-subtle: #cff4fc;
54
+ --bs-warning-bg-subtle: #fff3cd;
55
+ --bs-danger-bg-subtle: #f8d7da;
56
+ --bs-light-bg-subtle: #fcfcfd;
57
+ --bs-dark-bg-subtle: #ced4da;
58
+ --bs-primary-border-subtle: #9ec5fe;
59
+ --bs-secondary-border-subtle: #c4c8cb;
60
+ --bs-success-border-subtle: #a3cfbb;
61
+ --bs-info-border-subtle: #9eeaf9;
62
+ --bs-warning-border-subtle: #ffe69c;
63
+ --bs-danger-border-subtle: #f1aeb5;
64
+ --bs-light-border-subtle: #e9ecef;
65
+ --bs-dark-border-subtle: #adb5bd;
66
+ --bs-white-rgb: 255, 255, 255;
67
+ --bs-black-rgb: 0, 0, 0;
68
+ --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
69
+ --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
70
+ --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
71
+ --bs-body-font-family: var(--bs-font-sans-serif);
72
+ --bs-body-font-size: 1rem;
73
+ --bs-body-font-weight: 400;
74
+ --bs-body-line-height: 1.5;
75
+ --bs-body-color: #212529;
76
+ --bs-body-color-rgb: 33, 37, 41;
77
+ --bs-body-bg: #fff;
78
+ --bs-body-bg-rgb: 255, 255, 255;
79
+ --bs-emphasis-color: #000;
80
+ --bs-emphasis-color-rgb: 0, 0, 0;
81
+ --bs-secondary-color: rgba(33, 37, 41, 0.75);
82
+ --bs-secondary-color-rgb: 33, 37, 41;
83
+ --bs-secondary-bg: #e9ecef;
84
+ --bs-secondary-bg-rgb: 233, 236, 239;
85
+ --bs-tertiary-color: rgba(33, 37, 41, 0.5);
86
+ --bs-tertiary-color-rgb: 33, 37, 41;
87
+ --bs-tertiary-bg: #f8f9fa;
88
+ --bs-tertiary-bg-rgb: 248, 249, 250;
89
+ --bs-heading-color: inherit;
90
+ --bs-link-color: #0d6efd;
91
+ --bs-link-color-rgb: 13, 110, 253;
92
+ --bs-link-decoration: underline;
93
+ --bs-link-hover-color: #0a58ca;
94
+ --bs-link-hover-color-rgb: 10, 88, 202;
95
+ --bs-code-color: #d63384;
96
+ --bs-highlight-color: #212529;
97
+ --bs-highlight-bg: #fff3cd;
98
+ --bs-border-width: 1px;
99
+ --bs-border-style: solid;
100
+ --bs-border-color: #dee2e6;
101
+ --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
102
+ --bs-border-radius: 0.375rem;
103
+ --bs-border-radius-sm: 0.25rem;
104
+ --bs-border-radius-lg: 0.5rem;
105
+ --bs-border-radius-xl: 1rem;
106
+ --bs-border-radius-xxl: 2rem;
107
+ --bs-border-radius-2xl: var(--bs-border-radius-xxl);
108
+ --bs-border-radius-pill: 50rem;
109
+ --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
110
+ --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
111
+ --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
112
+ --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
113
+ --bs-focus-ring-width: 0.25rem;
114
+ --bs-focus-ring-opacity: 0.25;
115
+ --bs-focus-ring-color: rgba(13, 110, 253, 0.25);
116
+ --bs-form-valid-color: #198754;
117
+ --bs-form-valid-border-color: #198754;
118
+ --bs-form-invalid-color: #dc3545;
119
+ --bs-form-invalid-border-color: #dc3545;
120
+ }
121
+
122
+ [data-bs-theme=dark] {
123
+ color-scheme: dark;
124
+ --bs-body-color: #dee2e6;
125
+ --bs-body-color-rgb: 222, 226, 230;
126
+ --bs-body-bg: #212529;
127
+ --bs-body-bg-rgb: 33, 37, 41;
128
+ --bs-emphasis-color: #fff;
129
+ --bs-emphasis-color-rgb: 255, 255, 255;
130
+ --bs-secondary-color: rgba(222, 226, 230, 0.75);
131
+ --bs-secondary-color-rgb: 222, 226, 230;
132
+ --bs-secondary-bg: #343a40;
133
+ --bs-secondary-bg-rgb: 52, 58, 64;
134
+ --bs-tertiary-color: rgba(222, 226, 230, 0.5);
135
+ --bs-tertiary-color-rgb: 222, 226, 230;
136
+ --bs-tertiary-bg: #2b3035;
137
+ --bs-tertiary-bg-rgb: 43, 48, 53;
138
+ --bs-primary-text-emphasis: #6ea8fe;
139
+ --bs-secondary-text-emphasis: #a7acb1;
140
+ --bs-success-text-emphasis: #75b798;
141
+ --bs-info-text-emphasis: #6edff6;
142
+ --bs-warning-text-emphasis: #ffda6a;
143
+ --bs-danger-text-emphasis: #ea868f;
144
+ --bs-light-text-emphasis: #f8f9fa;
145
+ --bs-dark-text-emphasis: #dee2e6;
146
+ --bs-primary-bg-subtle: #031633;
147
+ --bs-secondary-bg-subtle: #161719;
148
+ --bs-success-bg-subtle: #051b11;
149
+ --bs-info-bg-subtle: #032830;
150
+ --bs-warning-bg-subtle: #332701;
151
+ --bs-danger-bg-subtle: #2c0b0e;
152
+ --bs-light-bg-subtle: #343a40;
153
+ --bs-dark-bg-subtle: #1a1d20;
154
+ --bs-primary-border-subtle: #084298;
155
+ --bs-secondary-border-subtle: #41464b;
156
+ --bs-success-border-subtle: #0f5132;
157
+ --bs-info-border-subtle: #087990;
158
+ --bs-warning-border-subtle: #997404;
159
+ --bs-danger-border-subtle: #842029;
160
+ --bs-light-border-subtle: #495057;
161
+ --bs-dark-border-subtle: #343a40;
162
+ --bs-heading-color: inherit;
163
+ --bs-link-color: #6ea8fe;
164
+ --bs-link-hover-color: #8bb9fe;
165
+ --bs-link-color-rgb: 110, 168, 254;
166
+ --bs-link-hover-color-rgb: 139, 185, 254;
167
+ --bs-code-color: #e685b5;
168
+ --bs-highlight-color: #dee2e6;
169
+ --bs-highlight-bg: #664d03;
170
+ --bs-border-color: #495057;
171
+ --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
172
+ --bs-form-valid-color: #75b798;
173
+ --bs-form-valid-border-color: #75b798;
174
+ --bs-form-invalid-color: #ea868f;
175
+ --bs-form-invalid-border-color: #ea868f;
176
+ }
177
+
178
+ .spinner-grow,
179
+ .spinner-border {
180
+ display: inline-block;
181
+ width: var(--bs-spinner-width);
182
+ height: var(--bs-spinner-height);
183
+ vertical-align: var(--bs-spinner-vertical-align);
184
+ border-radius: 50%;
185
+ animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
186
+ }
187
+
188
+ @keyframes spinner-border {
189
+ to {
190
+ transform: rotate(360deg) /* rtl:ignore */;
191
+ }
192
+ }
193
+ .spinner-border {
194
+ --bs-spinner-width: 2rem;
195
+ --bs-spinner-height: 2rem;
196
+ --bs-spinner-vertical-align: -0.125em;
197
+ --bs-spinner-border-width: 0.25em;
198
+ --bs-spinner-animation-speed: 0.75s;
199
+ --bs-spinner-animation-name: spinner-border;
200
+ border: var(--bs-spinner-border-width) solid currentcolor;
201
+ border-right-color: transparent;
202
+ }
203
+
204
+ .spinner-border-sm {
205
+ --bs-spinner-width: 1rem;
206
+ --bs-spinner-height: 1rem;
207
+ --bs-spinner-border-width: 0.2em;
208
+ }
209
+
210
+ @keyframes spinner-grow {
211
+ 0% {
212
+ transform: scale(0);
213
+ }
214
+ 50% {
215
+ opacity: 1;
216
+ transform: none;
217
+ }
218
+ }
219
+ .spinner-grow {
220
+ --bs-spinner-width: 2rem;
221
+ --bs-spinner-height: 2rem;
222
+ --bs-spinner-vertical-align: -0.125em;
223
+ --bs-spinner-animation-speed: 0.75s;
224
+ --bs-spinner-animation-name: spinner-grow;
225
+ background-color: currentcolor;
226
+ opacity: 0;
227
+ }
228
+
229
+ .spinner-grow-sm {
230
+ --bs-spinner-width: 1rem;
231
+ --bs-spinner-height: 1rem;
232
+ }
233
+
234
+ @media (prefers-reduced-motion: reduce) {
235
+ .spinner-border,
236
+ .spinner-grow {
237
+ --bs-spinner-animation-speed: 1.5s;
238
+ }
239
+ }
240
+ .clearfix::after {
241
+ display: block;
242
+ clear: both;
243
+ content: "";
244
+ }
245
+
246
+ .text-bg-primary {
247
+ color: #fff !important;
248
+ background-color: RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important;
249
+ }
250
+
251
+ .text-bg-secondary {
252
+ color: #fff !important;
253
+ background-color: RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important;
254
+ }
255
+
256
+ .text-bg-success {
257
+ color: #fff !important;
258
+ background-color: RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important;
259
+ }
260
+
261
+ .text-bg-info {
262
+ color: #000 !important;
263
+ background-color: RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important;
264
+ }
265
+
266
+ .text-bg-warning {
267
+ color: #000 !important;
268
+ background-color: RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important;
269
+ }
270
+
271
+ .text-bg-danger {
272
+ color: #fff !important;
273
+ background-color: RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important;
274
+ }
275
+
276
+ .text-bg-light {
277
+ color: #000 !important;
278
+ background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important;
279
+ }
280
+
281
+ .text-bg-dark {
282
+ color: #fff !important;
283
+ background-color: RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important;
284
+ }
285
+
286
+ .link-primary {
287
+ color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;
288
+ text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
289
+ }
290
+ .link-primary:hover, .link-primary:focus {
291
+ color: RGBA(10, 88, 202, var(--bs-link-opacity, 1)) !important;
292
+ text-decoration-color: RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1)) !important;
293
+ }
294
+
295
+ .link-secondary {
296
+ color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;
297
+ text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
298
+ }
299
+ .link-secondary:hover, .link-secondary:focus {
300
+ color: RGBA(86, 94, 100, var(--bs-link-opacity, 1)) !important;
301
+ text-decoration-color: RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)) !important;
302
+ }
303
+
304
+ .link-success {
305
+ color: RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;
306
+ text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
307
+ }
308
+ .link-success:hover, .link-success:focus {
309
+ color: RGBA(20, 108, 67, var(--bs-link-opacity, 1)) !important;
310
+ text-decoration-color: RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1)) !important;
311
+ }
312
+
313
+ .link-info {
314
+ color: RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;
315
+ text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
316
+ }
317
+ .link-info:hover, .link-info:focus {
318
+ color: RGBA(61, 213, 243, var(--bs-link-opacity, 1)) !important;
319
+ text-decoration-color: RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1)) !important;
320
+ }
321
+
322
+ .link-warning {
323
+ color: RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;
324
+ text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
325
+ }
326
+ .link-warning:hover, .link-warning:focus {
327
+ color: RGBA(255, 205, 57, var(--bs-link-opacity, 1)) !important;
328
+ text-decoration-color: RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)) !important;
329
+ }
330
+
331
+ .link-danger {
332
+ color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;
333
+ text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
334
+ }
335
+ .link-danger:hover, .link-danger:focus {
336
+ color: RGBA(176, 42, 55, var(--bs-link-opacity, 1)) !important;
337
+ text-decoration-color: RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1)) !important;
338
+ }
339
+
340
+ .link-light {
341
+ color: RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;
342
+ text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
343
+ }
344
+ .link-light:hover, .link-light:focus {
345
+ color: RGBA(249, 250, 251, var(--bs-link-opacity, 1)) !important;
346
+ text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important;
347
+ }
348
+
349
+ .link-dark {
350
+ color: RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;
351
+ text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
352
+ }
353
+ .link-dark:hover, .link-dark:focus {
354
+ color: RGBA(26, 30, 33, var(--bs-link-opacity, 1)) !important;
355
+ text-decoration-color: RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1)) !important;
356
+ }
357
+
358
+ .link-body-emphasis {
359
+ color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;
360
+ text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
361
+ }
362
+ .link-body-emphasis:hover, .link-body-emphasis:focus {
363
+ color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important;
364
+ text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important;
365
+ }
366
+
367
+ .focus-ring:focus {
368
+ outline: 0;
369
+ box-shadow: var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color);
370
+ }
371
+
372
+ .icon-link {
373
+ display: inline-flex;
374
+ gap: 0.375rem;
375
+ align-items: center;
376
+ text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
377
+ text-underline-offset: 0.25em;
378
+ backface-visibility: hidden;
379
+ }
380
+ .icon-link > .bi {
381
+ flex-shrink: 0;
382
+ width: 1em;
383
+ height: 1em;
384
+ fill: currentcolor;
385
+ transition: 0.2s ease-in-out transform;
386
+ }
387
+ @media (prefers-reduced-motion: reduce) {
388
+ .icon-link > .bi {
389
+ transition: none;
390
+ }
391
+ }
392
+
393
+ .icon-link-hover:hover > .bi, .icon-link-hover:focus-visible > .bi {
394
+ transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0));
395
+ }
396
+
397
+ .ratio {
398
+ position: relative;
399
+ width: 100%;
400
+ }
401
+ .ratio::before {
402
+ display: block;
403
+ padding-top: var(--bs-aspect-ratio);
404
+ content: "";
405
+ }
406
+ .ratio > * {
407
+ position: absolute;
408
+ top: 0;
409
+ left: 0;
410
+ width: 100%;
411
+ height: 100%;
412
+ }
413
+
414
+ .ratio-1x1 {
415
+ --bs-aspect-ratio: 100%;
416
+ }
417
+
418
+ .ratio-4x3 {
419
+ --bs-aspect-ratio: 75%;
420
+ }
421
+
422
+ .ratio-16x9 {
423
+ --bs-aspect-ratio: 56.25%;
424
+ }
425
+
426
+ .ratio-21x9 {
427
+ --bs-aspect-ratio: 42.8571428571%;
428
+ }
429
+
430
+ .fixed-top {
431
+ position: fixed;
432
+ top: 0;
433
+ right: 0;
434
+ left: 0;
435
+ z-index: 1030;
436
+ }
437
+
438
+ .fixed-bottom {
439
+ position: fixed;
440
+ right: 0;
441
+ bottom: 0;
442
+ left: 0;
443
+ z-index: 1030;
444
+ }
445
+
446
+ .sticky-top {
447
+ position: sticky;
448
+ top: 0;
449
+ z-index: 1020;
450
+ }
451
+
452
+ .sticky-bottom {
453
+ position: sticky;
454
+ bottom: 0;
455
+ z-index: 1020;
456
+ }
457
+
458
+ @media (min-width: 576px) {
459
+ .sticky-sm-top {
460
+ position: sticky;
461
+ top: 0;
462
+ z-index: 1020;
463
+ }
464
+ .sticky-sm-bottom {
465
+ position: sticky;
466
+ bottom: 0;
467
+ z-index: 1020;
468
+ }
469
+ }
470
+ @media (min-width: 768px) {
471
+ .sticky-md-top {
472
+ position: sticky;
473
+ top: 0;
474
+ z-index: 1020;
475
+ }
476
+ .sticky-md-bottom {
477
+ position: sticky;
478
+ bottom: 0;
479
+ z-index: 1020;
480
+ }
481
+ }
482
+ @media (min-width: 992px) {
483
+ .sticky-lg-top {
484
+ position: sticky;
485
+ top: 0;
486
+ z-index: 1020;
487
+ }
488
+ .sticky-lg-bottom {
489
+ position: sticky;
490
+ bottom: 0;
491
+ z-index: 1020;
492
+ }
493
+ }
494
+ @media (min-width: 1200px) {
495
+ .sticky-xl-top {
496
+ position: sticky;
497
+ top: 0;
498
+ z-index: 1020;
499
+ }
500
+ .sticky-xl-bottom {
501
+ position: sticky;
502
+ bottom: 0;
503
+ z-index: 1020;
504
+ }
505
+ }
506
+ @media (min-width: 1400px) {
507
+ .sticky-xxl-top {
508
+ position: sticky;
509
+ top: 0;
510
+ z-index: 1020;
511
+ }
512
+ .sticky-xxl-bottom {
513
+ position: sticky;
514
+ bottom: 0;
515
+ z-index: 1020;
516
+ }
517
+ }
518
+ .hstack {
519
+ display: flex;
520
+ flex-direction: row;
521
+ align-items: center;
522
+ align-self: stretch;
523
+ }
524
+
525
+ .vstack {
526
+ display: flex;
527
+ flex: 1 1 auto;
528
+ flex-direction: column;
529
+ align-self: stretch;
530
+ }
531
+
532
+ .visually-hidden,
533
+ .visually-hidden-focusable:not(:focus):not(:focus-within) {
534
+ width: 1px !important;
535
+ height: 1px !important;
536
+ padding: 0 !important;
537
+ margin: -1px !important;
538
+ overflow: hidden !important;
539
+ clip: rect(0, 0, 0, 0) !important;
540
+ white-space: nowrap !important;
541
+ border: 0 !important;
542
+ }
543
+ .visually-hidden:not(caption),
544
+ .visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
545
+ position: absolute !important;
546
+ }
547
+
548
+ .stretched-link::after {
549
+ position: absolute;
550
+ top: 0;
551
+ right: 0;
552
+ bottom: 0;
553
+ left: 0;
554
+ z-index: 1;
555
+ content: "";
556
+ }
557
+
558
+ .text-truncate {
559
+ overflow: hidden;
560
+ text-overflow: ellipsis;
561
+ white-space: nowrap;
562
+ }
563
+
564
+ .vr {
565
+ display: inline-block;
566
+ align-self: stretch;
567
+ width: var(--bs-border-width);
568
+ min-height: 1em;
569
+ background-color: currentcolor;
570
+ opacity: 0.25;
571
+ }
572
+
573
+ *,
574
+ *::before,
575
+ *::after {
576
+ box-sizing: border-box;
577
+ }
578
+
579
+ @media (prefers-reduced-motion: no-preference) {
580
+ :root {
581
+ scroll-behavior: smooth;
582
+ }
583
+ }
584
+
585
+ body {
586
+ margin: 0;
587
+ font-family: var(--bs-body-font-family);
588
+ font-size: var(--bs-body-font-size);
589
+ font-weight: var(--bs-body-font-weight);
590
+ line-height: var(--bs-body-line-height);
591
+ color: var(--bs-body-color);
592
+ text-align: var(--bs-body-text-align);
593
+ background-color: var(--bs-body-bg);
594
+ -webkit-text-size-adjust: 100%;
595
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
596
+ }
597
+
598
+ hr {
599
+ margin: 1rem 0;
600
+ color: inherit;
601
+ border: 0;
602
+ border-top: var(--bs-border-width) solid;
603
+ opacity: 0.25;
604
+ }
605
+
606
+ h6, h5, h4, h3, h2, h1 {
607
+ margin-top: 0;
608
+ margin-bottom: 0.5rem;
609
+ font-weight: 500;
610
+ line-height: 1.2;
611
+ color: var(--bs-heading-color);
612
+ }
613
+
614
+ h1 {
615
+ font-size: calc(1.375rem + 1.5vw);
616
+ }
617
+ @media (min-width: 1200px) {
618
+ h1 {
619
+ font-size: 2.5rem;
620
+ }
621
+ }
622
+
623
+ h2 {
624
+ font-size: calc(1.325rem + 0.9vw);
625
+ }
626
+ @media (min-width: 1200px) {
627
+ h2 {
628
+ font-size: 2rem;
629
+ }
630
+ }
631
+
632
+ h3 {
633
+ font-size: calc(1.3rem + 0.6vw);
634
+ }
635
+ @media (min-width: 1200px) {
636
+ h3 {
637
+ font-size: 1.75rem;
638
+ }
639
+ }
640
+
641
+ h4 {
642
+ font-size: calc(1.275rem + 0.3vw);
643
+ }
644
+ @media (min-width: 1200px) {
645
+ h4 {
646
+ font-size: 1.5rem;
647
+ }
648
+ }
649
+
650
+ h5 {
651
+ font-size: 1.25rem;
652
+ }
653
+
654
+ h6 {
655
+ font-size: 1rem;
656
+ }
657
+
658
+ p {
659
+ margin-top: 0;
660
+ margin-bottom: 1rem;
661
+ }
662
+
663
+ abbr[title] {
664
+ text-decoration: underline dotted;
665
+ cursor: help;
666
+ text-decoration-skip-ink: none;
667
+ }
668
+
669
+ address {
670
+ margin-bottom: 1rem;
671
+ font-style: normal;
672
+ line-height: inherit;
673
+ }
674
+
675
+ ol,
676
+ ul {
677
+ padding-left: 2rem;
678
+ }
679
+
680
+ ol,
681
+ ul,
682
+ dl {
683
+ margin-top: 0;
684
+ margin-bottom: 1rem;
685
+ }
686
+
687
+ ol ol,
688
+ ul ul,
689
+ ol ul,
690
+ ul ol {
691
+ margin-bottom: 0;
692
+ }
693
+
694
+ dt {
695
+ font-weight: 700;
696
+ }
697
+
698
+ dd {
699
+ margin-bottom: 0.5rem;
700
+ margin-left: 0;
701
+ }
702
+
703
+ blockquote {
704
+ margin: 0 0 1rem;
705
+ }
706
+
707
+ b,
708
+ strong {
709
+ font-weight: bolder;
710
+ }
711
+
712
+ small {
713
+ font-size: 0.875em;
714
+ }
715
+
716
+ mark {
717
+ padding: 0.1875em;
718
+ color: var(--bs-highlight-color);
719
+ background-color: var(--bs-highlight-bg);
720
+ }
721
+
722
+ sub,
723
+ sup {
724
+ position: relative;
725
+ font-size: 0.75em;
726
+ line-height: 0;
727
+ vertical-align: baseline;
728
+ }
729
+
730
+ sub {
731
+ bottom: -0.25em;
732
+ }
733
+
734
+ sup {
735
+ top: -0.5em;
736
+ }
737
+
738
+ a {
739
+ color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
740
+ text-decoration: underline;
741
+ }
742
+ a:hover {
743
+ --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
744
+ }
745
+
746
+ a:not([href]):not([class]), a:not([href]):not([class]):hover {
747
+ color: inherit;
748
+ text-decoration: none;
749
+ }
750
+
751
+ pre,
752
+ code,
753
+ kbd,
754
+ samp {
755
+ font-family: var(--bs-font-monospace);
756
+ font-size: 1em;
757
+ }
758
+
759
+ pre {
760
+ display: block;
761
+ margin-top: 0;
762
+ margin-bottom: 1rem;
763
+ overflow: auto;
764
+ font-size: 0.875em;
765
+ }
766
+ pre code {
767
+ font-size: inherit;
768
+ color: inherit;
769
+ word-break: normal;
770
+ }
771
+
772
+ code {
773
+ font-size: 0.875em;
774
+ color: var(--bs-code-color);
775
+ word-wrap: break-word;
776
+ }
777
+ a > code {
778
+ color: inherit;
779
+ }
780
+
781
+ kbd {
782
+ padding: 0.1875rem 0.375rem;
783
+ font-size: 0.875em;
784
+ color: var(--bs-body-bg);
785
+ background-color: var(--bs-body-color);
786
+ border-radius: 0.25rem;
787
+ }
788
+ kbd kbd {
789
+ padding: 0;
790
+ font-size: 1em;
791
+ }
792
+
793
+ figure {
794
+ margin: 0 0 1rem;
795
+ }
796
+
797
+ img,
798
+ svg {
799
+ vertical-align: middle;
800
+ }
801
+
802
+ table {
803
+ caption-side: bottom;
804
+ border-collapse: collapse;
805
+ }
806
+
807
+ caption {
808
+ padding-top: 0.5rem;
809
+ padding-bottom: 0.5rem;
810
+ color: var(--bs-secondary-color);
811
+ text-align: left;
812
+ }
813
+
814
+ th {
815
+ text-align: inherit;
816
+ text-align: -webkit-match-parent;
817
+ }
818
+
819
+ thead,
820
+ tbody,
821
+ tfoot,
822
+ tr,
823
+ td,
824
+ th {
825
+ border-color: inherit;
826
+ border-style: solid;
827
+ border-width: 0;
828
+ }
829
+
830
+ label {
831
+ display: inline-block;
832
+ }
833
+
834
+ button {
835
+ border-radius: 0;
836
+ }
837
+
838
+ button:focus:not(:focus-visible) {
839
+ outline: 0;
840
+ }
841
+
842
+ input,
843
+ button,
844
+ select,
845
+ optgroup,
846
+ textarea {
847
+ margin: 0;
848
+ font-family: inherit;
849
+ font-size: inherit;
850
+ line-height: inherit;
851
+ }
852
+
853
+ button,
854
+ select {
855
+ text-transform: none;
856
+ }
857
+
858
+ [role=button] {
859
+ cursor: pointer;
860
+ }
861
+
862
+ select {
863
+ word-wrap: normal;
864
+ }
865
+ select:disabled {
866
+ opacity: 1;
867
+ }
868
+
869
+ [list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
870
+ display: none !important;
871
+ }
872
+
873
+ button,
874
+ [type=button],
875
+ [type=reset],
876
+ [type=submit] {
877
+ -webkit-appearance: button;
878
+ }
879
+ button:not(:disabled),
880
+ [type=button]:not(:disabled),
881
+ [type=reset]:not(:disabled),
882
+ [type=submit]:not(:disabled) {
883
+ cursor: pointer;
884
+ }
885
+
886
+ ::-moz-focus-inner {
887
+ padding: 0;
888
+ border-style: none;
889
+ }
890
+
891
+ textarea {
892
+ resize: vertical;
893
+ }
894
+
895
+ fieldset {
896
+ min-width: 0;
897
+ padding: 0;
898
+ margin: 0;
899
+ border: 0;
900
+ }
901
+
902
+ legend {
903
+ float: left;
904
+ width: 100%;
905
+ padding: 0;
906
+ margin-bottom: 0.5rem;
907
+ font-size: calc(1.275rem + 0.3vw);
908
+ line-height: inherit;
909
+ }
910
+ @media (min-width: 1200px) {
911
+ legend {
912
+ font-size: 1.5rem;
913
+ }
914
+ }
915
+ legend + * {
916
+ clear: left;
917
+ }
918
+
919
+ ::-webkit-datetime-edit-fields-wrapper,
920
+ ::-webkit-datetime-edit-text,
921
+ ::-webkit-datetime-edit-minute,
922
+ ::-webkit-datetime-edit-hour-field,
923
+ ::-webkit-datetime-edit-day-field,
924
+ ::-webkit-datetime-edit-month-field,
925
+ ::-webkit-datetime-edit-year-field {
926
+ padding: 0;
927
+ }
928
+
929
+ ::-webkit-inner-spin-button {
930
+ height: auto;
931
+ }
932
+
933
+ [type=search] {
934
+ -webkit-appearance: textfield;
935
+ outline-offset: -2px;
936
+ }
937
+
938
+ /* rtl:raw:
939
+ [type="tel"],
940
+ [type="url"],
941
+ [type="email"],
942
+ [type="number"] {
943
+ direction: ltr;
944
+ }
945
+ */
946
+ ::-webkit-search-decoration {
947
+ -webkit-appearance: none;
948
+ }
949
+
950
+ ::-webkit-color-swatch-wrapper {
951
+ padding: 0;
952
+ }
953
+
954
+ ::file-selector-button {
955
+ font: inherit;
956
+ -webkit-appearance: button;
957
+ }
958
+
959
+ output {
960
+ display: inline-block;
961
+ }
962
+
963
+ iframe {
964
+ border: 0;
965
+ }
966
+
967
+ summary {
968
+ display: list-item;
969
+ cursor: pointer;
970
+ }
971
+
972
+ progress {
973
+ vertical-align: baseline;
974
+ }
975
+
976
+ [hidden] {
977
+ display: none !important;
978
+ }
979
+
980
+ .form-label {
981
+ margin-bottom: 0.5rem;
982
+ }
983
+
984
+ .col-form-label {
985
+ padding-top: calc(0.375rem + var(--bs-border-width));
986
+ padding-bottom: calc(0.375rem + var(--bs-border-width));
987
+ margin-bottom: 0;
988
+ font-size: inherit;
989
+ line-height: 1.5;
990
+ }
991
+
992
+ .col-form-label-lg {
993
+ padding-top: calc(0.5rem + var(--bs-border-width));
994
+ padding-bottom: calc(0.5rem + var(--bs-border-width));
995
+ font-size: 1.25rem;
996
+ }
997
+
998
+ .col-form-label-sm {
999
+ padding-top: calc(0.25rem + var(--bs-border-width));
1000
+ padding-bottom: calc(0.25rem + var(--bs-border-width));
1001
+ font-size: 0.875rem;
1002
+ }
1003
+
1004
+ .form-text {
1005
+ margin-top: 0.25rem;
1006
+ font-size: 0.875em;
1007
+ color: var(--bs-secondary-color);
1008
+ }
1009
+
1010
+ .form-control {
1011
+ display: block;
1012
+ width: 100%;
1013
+ padding: 0.375rem 0.75rem;
1014
+ font-size: 1rem;
1015
+ font-weight: 400;
1016
+ line-height: 1.5;
1017
+ color: var(--bs-body-color);
1018
+ appearance: none;
1019
+ background-color: var(--bs-body-bg);
1020
+ background-clip: padding-box;
1021
+ border: var(--bs-border-width) solid var(--bs-border-color);
1022
+ border-radius: var(--bs-border-radius);
1023
+ transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
1024
+ }
1025
+ @media (prefers-reduced-motion: reduce) {
1026
+ .form-control {
1027
+ transition: none;
1028
+ }
1029
+ }
1030
+ .form-control[type=file] {
1031
+ overflow: hidden;
1032
+ }
1033
+ .form-control[type=file]:not(:disabled):not([readonly]) {
1034
+ cursor: pointer;
1035
+ }
1036
+ .form-control:focus {
1037
+ color: var(--bs-body-color);
1038
+ background-color: var(--bs-body-bg);
1039
+ border-color: #86b7fe;
1040
+ outline: 0;
1041
+ box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
1042
+ }
1043
+ .form-control::-webkit-date-and-time-value {
1044
+ min-width: 85px;
1045
+ height: 1.5em;
1046
+ margin: 0;
1047
+ }
1048
+ .form-control::-webkit-datetime-edit {
1049
+ display: block;
1050
+ padding: 0;
1051
+ }
1052
+ .form-control::placeholder {
1053
+ color: var(--bs-secondary-color);
1054
+ opacity: 1;
1055
+ }
1056
+ .form-control:disabled {
1057
+ background-color: var(--bs-secondary-bg);
1058
+ opacity: 1;
1059
+ }
1060
+ .form-control::file-selector-button {
1061
+ padding: 0.375rem 0.75rem;
1062
+ margin: -0.375rem -0.75rem;
1063
+ margin-inline-end: 0.75rem;
1064
+ color: var(--bs-body-color);
1065
+ background-color: var(--bs-tertiary-bg);
1066
+ pointer-events: none;
1067
+ border-color: inherit;
1068
+ border-style: solid;
1069
+ border-width: 0;
1070
+ border-inline-end-width: var(--bs-border-width);
1071
+ border-radius: 0;
1072
+ 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;
1073
+ }
1074
+ @media (prefers-reduced-motion: reduce) {
1075
+ .form-control::file-selector-button {
1076
+ transition: none;
1077
+ }
1078
+ }
1079
+ .form-control:hover:not(:disabled):not([readonly])::file-selector-button {
1080
+ background-color: var(--bs-secondary-bg);
1081
+ }
1082
+
1083
+ .form-control-plaintext {
1084
+ display: block;
1085
+ width: 100%;
1086
+ padding: 0.375rem 0;
1087
+ margin-bottom: 0;
1088
+ line-height: 1.5;
1089
+ color: var(--bs-body-color);
1090
+ background-color: transparent;
1091
+ border: solid transparent;
1092
+ border-width: var(--bs-border-width) 0;
1093
+ }
1094
+ .form-control-plaintext:focus {
1095
+ outline: 0;
1096
+ }
1097
+ .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
1098
+ padding-right: 0;
1099
+ padding-left: 0;
1100
+ }
1101
+
1102
+ .form-control-sm {
1103
+ min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
1104
+ padding: 0.25rem 0.5rem;
1105
+ font-size: 0.875rem;
1106
+ border-radius: var(--bs-border-radius-sm);
1107
+ }
1108
+ .form-control-sm::file-selector-button {
1109
+ padding: 0.25rem 0.5rem;
1110
+ margin: -0.25rem -0.5rem;
1111
+ margin-inline-end: 0.5rem;
1112
+ }
1113
+
1114
+ .form-control-lg {
1115
+ min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
1116
+ padding: 0.5rem 1rem;
1117
+ font-size: 1.25rem;
1118
+ border-radius: var(--bs-border-radius-lg);
1119
+ }
1120
+ .form-control-lg::file-selector-button {
1121
+ padding: 0.5rem 1rem;
1122
+ margin: -0.5rem -1rem;
1123
+ margin-inline-end: 1rem;
1124
+ }
1125
+
1126
+ textarea.form-control {
1127
+ min-height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
1128
+ }
1129
+ textarea.form-control-sm {
1130
+ min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
1131
+ }
1132
+ textarea.form-control-lg {
1133
+ min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
1134
+ }
1135
+
1136
+ .form-control-color {
1137
+ width: 3rem;
1138
+ height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
1139
+ padding: 0.375rem;
1140
+ }
1141
+ .form-control-color:not(:disabled):not([readonly]) {
1142
+ cursor: pointer;
1143
+ }
1144
+ .form-control-color::-moz-color-swatch {
1145
+ border: 0 !important;
1146
+ border-radius: var(--bs-border-radius);
1147
+ }
1148
+ .form-control-color::-webkit-color-swatch {
1149
+ border: 0 !important;
1150
+ border-radius: var(--bs-border-radius);
1151
+ }
1152
+ .form-control-color.form-control-sm {
1153
+ height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
1154
+ }
1155
+ .form-control-color.form-control-lg {
1156
+ height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
1157
+ }
1158
+
1159
+ .form-select {
1160
+ --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
1161
+ display: block;
1162
+ width: 100%;
1163
+ padding: 0.375rem 2.25rem 0.375rem 0.75rem;
1164
+ font-size: 1rem;
1165
+ font-weight: 400;
1166
+ line-height: 1.5;
1167
+ color: var(--bs-body-color);
1168
+ appearance: none;
1169
+ background-color: var(--bs-body-bg);
1170
+ background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
1171
+ background-repeat: no-repeat;
1172
+ background-position: right 0.75rem center;
1173
+ background-size: 16px 12px;
1174
+ border: var(--bs-border-width) solid var(--bs-border-color);
1175
+ border-radius: var(--bs-border-radius);
1176
+ transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
1177
+ }
1178
+ @media (prefers-reduced-motion: reduce) {
1179
+ .form-select {
1180
+ transition: none;
1181
+ }
1182
+ }
1183
+ .form-select:focus {
1184
+ border-color: #86b7fe;
1185
+ outline: 0;
1186
+ box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
1187
+ }
1188
+ .form-select[multiple], .form-select[size]:not([size="1"]) {
1189
+ padding-right: 0.75rem;
1190
+ background-image: none;
1191
+ }
1192
+ .form-select:disabled {
1193
+ background-color: var(--bs-secondary-bg);
1194
+ }
1195
+ .form-select:-moz-focusring {
1196
+ color: transparent;
1197
+ text-shadow: 0 0 0 var(--bs-body-color);
1198
+ }
1199
+
1200
+ .form-select-sm {
1201
+ padding-top: 0.25rem;
1202
+ padding-bottom: 0.25rem;
1203
+ padding-left: 0.5rem;
1204
+ font-size: 0.875rem;
1205
+ border-radius: var(--bs-border-radius-sm);
1206
+ }
1207
+
1208
+ .form-select-lg {
1209
+ padding-top: 0.5rem;
1210
+ padding-bottom: 0.5rem;
1211
+ padding-left: 1rem;
1212
+ font-size: 1.25rem;
1213
+ border-radius: var(--bs-border-radius-lg);
1214
+ }
1215
+
1216
+ [data-bs-theme=dark] .form-select {
1217
+ --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
1218
+ }
1219
+
1220
+ .form-check {
1221
+ display: block;
1222
+ min-height: 1.5rem;
1223
+ padding-left: 1.5em;
1224
+ margin-bottom: 0.125rem;
1225
+ }
1226
+ .form-check .form-check-input {
1227
+ float: left;
1228
+ margin-left: -1.5em;
1229
+ }
1230
+
1231
+ .form-check-reverse {
1232
+ padding-right: 1.5em;
1233
+ padding-left: 0;
1234
+ text-align: right;
1235
+ }
1236
+ .form-check-reverse .form-check-input {
1237
+ float: right;
1238
+ margin-right: -1.5em;
1239
+ margin-left: 0;
1240
+ }
1241
+
1242
+ .form-check-input {
1243
+ --bs-form-check-bg: var(--bs-body-bg);
1244
+ flex-shrink: 0;
1245
+ width: 1em;
1246
+ height: 1em;
1247
+ margin-top: 0.25em;
1248
+ vertical-align: top;
1249
+ appearance: none;
1250
+ background-color: var(--bs-form-check-bg);
1251
+ background-image: var(--bs-form-check-bg-image);
1252
+ background-repeat: no-repeat;
1253
+ background-position: center;
1254
+ background-size: contain;
1255
+ border: var(--bs-border-width) solid var(--bs-border-color);
1256
+ print-color-adjust: exact;
1257
+ }
1258
+ .form-check-input[type=checkbox] {
1259
+ border-radius: 0.25em;
1260
+ }
1261
+ .form-check-input[type=radio] {
1262
+ border-radius: 50%;
1263
+ }
1264
+ .form-check-input:active {
1265
+ filter: brightness(90%);
1266
+ }
1267
+ .form-check-input:focus {
1268
+ border-color: #86b7fe;
1269
+ outline: 0;
1270
+ box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
1271
+ }
1272
+ .form-check-input:checked {
1273
+ background-color: #0d6efd;
1274
+ border-color: #0d6efd;
1275
+ }
1276
+ .form-check-input:checked[type=checkbox] {
1277
+ --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
1278
+ }
1279
+ .form-check-input:checked[type=radio] {
1280
+ --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
1281
+ }
1282
+ .form-check-input[type=checkbox]:indeterminate {
1283
+ background-color: #0d6efd;
1284
+ border-color: #0d6efd;
1285
+ --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
1286
+ }
1287
+ .form-check-input:disabled {
1288
+ pointer-events: none;
1289
+ filter: none;
1290
+ opacity: 0.5;
1291
+ }
1292
+ .form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
1293
+ cursor: default;
1294
+ opacity: 0.5;
1295
+ }
1296
+
1297
+ .form-switch {
1298
+ padding-left: 2.5em;
1299
+ }
1300
+ .form-switch .form-check-input {
1301
+ --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
1302
+ width: 2em;
1303
+ margin-left: -2.5em;
1304
+ background-image: var(--bs-form-switch-bg);
1305
+ background-position: left center;
1306
+ border-radius: 2em;
1307
+ transition: background-position 0.15s ease-in-out;
1308
+ }
1309
+ @media (prefers-reduced-motion: reduce) {
1310
+ .form-switch .form-check-input {
1311
+ transition: none;
1312
+ }
1313
+ }
1314
+ .form-switch .form-check-input:focus {
1315
+ --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e");
1316
+ }
1317
+ .form-switch .form-check-input:checked {
1318
+ background-position: right center;
1319
+ --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
1320
+ }
1321
+ .form-switch.form-check-reverse {
1322
+ padding-right: 2.5em;
1323
+ padding-left: 0;
1324
+ }
1325
+ .form-switch.form-check-reverse .form-check-input {
1326
+ margin-right: -2.5em;
1327
+ margin-left: 0;
1328
+ }
1329
+
1330
+ .form-check-inline {
1331
+ display: inline-block;
1332
+ margin-right: 1rem;
1333
+ }
1334
+
1335
+ .btn-check {
1336
+ position: absolute;
1337
+ clip: rect(0, 0, 0, 0);
1338
+ pointer-events: none;
1339
+ }
1340
+ .btn-check[disabled] + .btn, .btn-check:disabled + .btn {
1341
+ pointer-events: none;
1342
+ filter: none;
1343
+ opacity: 0.65;
1344
+ }
1345
+
1346
+ [data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus) {
1347
+ --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e");
1348
+ }
1349
+
1350
+ .form-range {
1351
+ width: 100%;
1352
+ height: 1.5rem;
1353
+ padding: 0;
1354
+ appearance: none;
1355
+ background-color: transparent;
1356
+ }
1357
+ .form-range:focus {
1358
+ outline: 0;
1359
+ }
1360
+ .form-range:focus::-webkit-slider-thumb {
1361
+ box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
1362
+ }
1363
+ .form-range:focus::-moz-range-thumb {
1364
+ box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
1365
+ }
1366
+ .form-range::-moz-focus-outer {
1367
+ border: 0;
1368
+ }
1369
+ .form-range::-webkit-slider-thumb {
1370
+ width: 1rem;
1371
+ height: 1rem;
1372
+ margin-top: -0.25rem;
1373
+ appearance: none;
1374
+ background-color: #0d6efd;
1375
+ border: 0;
1376
+ border-radius: 1rem;
1377
+ transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
1378
+ }
1379
+ @media (prefers-reduced-motion: reduce) {
1380
+ .form-range::-webkit-slider-thumb {
1381
+ transition: none;
1382
+ }
1383
+ }
1384
+ .form-range::-webkit-slider-thumb:active {
1385
+ background-color: #b6d4fe;
1386
+ }
1387
+ .form-range::-webkit-slider-runnable-track {
1388
+ width: 100%;
1389
+ height: 0.5rem;
1390
+ color: transparent;
1391
+ cursor: pointer;
1392
+ background-color: var(--bs-secondary-bg);
1393
+ border-color: transparent;
1394
+ border-radius: 1rem;
1395
+ }
1396
+ .form-range::-moz-range-thumb {
1397
+ width: 1rem;
1398
+ height: 1rem;
1399
+ appearance: none;
1400
+ background-color: #0d6efd;
1401
+ border: 0;
1402
+ border-radius: 1rem;
1403
+ transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
1404
+ }
1405
+ @media (prefers-reduced-motion: reduce) {
1406
+ .form-range::-moz-range-thumb {
1407
+ transition: none;
1408
+ }
1409
+ }
1410
+ .form-range::-moz-range-thumb:active {
1411
+ background-color: #b6d4fe;
1412
+ }
1413
+ .form-range::-moz-range-track {
1414
+ width: 100%;
1415
+ height: 0.5rem;
1416
+ color: transparent;
1417
+ cursor: pointer;
1418
+ background-color: var(--bs-secondary-bg);
1419
+ border-color: transparent;
1420
+ border-radius: 1rem;
1421
+ }
1422
+ .form-range:disabled {
1423
+ pointer-events: none;
1424
+ }
1425
+ .form-range:disabled::-webkit-slider-thumb {
1426
+ background-color: var(--bs-secondary-color);
1427
+ }
1428
+ .form-range:disabled::-moz-range-thumb {
1429
+ background-color: var(--bs-secondary-color);
1430
+ }
1431
+
1432
+ .form-floating {
1433
+ position: relative;
1434
+ }
1435
+ .form-floating > .form-control,
1436
+ .form-floating > .form-control-plaintext,
1437
+ .form-floating > .form-select {
1438
+ height: calc(3.5rem + calc(var(--bs-border-width) * 2));
1439
+ min-height: calc(3.5rem + calc(var(--bs-border-width) * 2));
1440
+ line-height: 1.25;
1441
+ }
1442
+ .form-floating > label {
1443
+ position: absolute;
1444
+ top: 0;
1445
+ left: 0;
1446
+ z-index: 2;
1447
+ height: 100%;
1448
+ padding: 1rem 0.75rem;
1449
+ overflow: hidden;
1450
+ text-align: start;
1451
+ text-overflow: ellipsis;
1452
+ white-space: nowrap;
1453
+ pointer-events: none;
1454
+ border: var(--bs-border-width) solid transparent;
1455
+ transform-origin: 0 0;
1456
+ transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
1457
+ }
1458
+ @media (prefers-reduced-motion: reduce) {
1459
+ .form-floating > label {
1460
+ transition: none;
1461
+ }
1462
+ }
1463
+ .form-floating > .form-control,
1464
+ .form-floating > .form-control-plaintext {
1465
+ padding: 1rem 0.75rem;
1466
+ }
1467
+ .form-floating > .form-control::placeholder,
1468
+ .form-floating > .form-control-plaintext::placeholder {
1469
+ color: transparent;
1470
+ }
1471
+ .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown),
1472
+ .form-floating > .form-control-plaintext:focus,
1473
+ .form-floating > .form-control-plaintext:not(:placeholder-shown) {
1474
+ padding-top: 1.625rem;
1475
+ padding-bottom: 0.625rem;
1476
+ }
1477
+ .form-floating > .form-control:-webkit-autofill,
1478
+ .form-floating > .form-control-plaintext:-webkit-autofill {
1479
+ padding-top: 1.625rem;
1480
+ padding-bottom: 0.625rem;
1481
+ }
1482
+ .form-floating > .form-select {
1483
+ padding-top: 1.625rem;
1484
+ padding-bottom: 0.625rem;
1485
+ }
1486
+ .form-floating > .form-control:focus ~ label,
1487
+ .form-floating > .form-control:not(:placeholder-shown) ~ label,
1488
+ .form-floating > .form-control-plaintext ~ label,
1489
+ .form-floating > .form-select ~ label {
1490
+ color: rgba(var(--bs-body-color-rgb), 0.65);
1491
+ transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
1492
+ }
1493
+ .form-floating > .form-control:focus ~ label::after,
1494
+ .form-floating > .form-control:not(:placeholder-shown) ~ label::after,
1495
+ .form-floating > .form-control-plaintext ~ label::after,
1496
+ .form-floating > .form-select ~ label::after {
1497
+ position: absolute;
1498
+ inset: 1rem 0.375rem;
1499
+ z-index: -1;
1500
+ height: 1.5em;
1501
+ content: "";
1502
+ background-color: var(--bs-body-bg);
1503
+ border-radius: var(--bs-border-radius);
1504
+ }
1505
+ .form-floating > .form-control:-webkit-autofill ~ label {
1506
+ color: rgba(var(--bs-body-color-rgb), 0.65);
1507
+ transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
1508
+ }
1509
+ .form-floating > .form-control-plaintext ~ label {
1510
+ border-width: var(--bs-border-width) 0;
1511
+ }
1512
+ .form-floating > :disabled ~ label,
1513
+ .form-floating > .form-control:disabled ~ label {
1514
+ color: #6c757d;
1515
+ }
1516
+ .form-floating > :disabled ~ label::after,
1517
+ .form-floating > .form-control:disabled ~ label::after {
1518
+ background-color: var(--bs-secondary-bg);
1519
+ }
1520
+
1521
+ .input-group {
1522
+ position: relative;
1523
+ display: flex;
1524
+ flex-wrap: wrap;
1525
+ align-items: stretch;
1526
+ width: 100%;
1527
+ }
1528
+ .input-group > .form-control,
1529
+ .input-group > .form-select,
1530
+ .input-group > .form-floating {
1531
+ position: relative;
1532
+ flex: 1 1 auto;
1533
+ width: 1%;
1534
+ min-width: 0;
1535
+ }
1536
+ .input-group > .form-control:focus,
1537
+ .input-group > .form-select:focus,
1538
+ .input-group > .form-floating:focus-within {
1539
+ z-index: 5;
1540
+ }
1541
+ .input-group .btn {
1542
+ position: relative;
1543
+ z-index: 2;
1544
+ }
1545
+ .input-group .btn:focus {
1546
+ z-index: 5;
1547
+ }
1548
+
1549
+ .input-group-text {
1550
+ display: flex;
1551
+ align-items: center;
1552
+ padding: 0.375rem 0.75rem;
1553
+ font-size: 1rem;
1554
+ font-weight: 400;
1555
+ line-height: 1.5;
1556
+ color: var(--bs-body-color);
1557
+ text-align: center;
1558
+ white-space: nowrap;
1559
+ background-color: var(--bs-tertiary-bg);
1560
+ border: var(--bs-border-width) solid var(--bs-border-color);
1561
+ border-radius: var(--bs-border-radius);
1562
+ }
1563
+
1564
+ .input-group-lg > .form-control,
1565
+ .input-group-lg > .form-select,
1566
+ .input-group-lg > .input-group-text,
1567
+ .input-group-lg > .btn {
1568
+ padding: 0.5rem 1rem;
1569
+ font-size: 1.25rem;
1570
+ border-radius: var(--bs-border-radius-lg);
1571
+ }
1572
+
1573
+ .input-group-sm > .form-control,
1574
+ .input-group-sm > .form-select,
1575
+ .input-group-sm > .input-group-text,
1576
+ .input-group-sm > .btn {
1577
+ padding: 0.25rem 0.5rem;
1578
+ font-size: 0.875rem;
1579
+ border-radius: var(--bs-border-radius-sm);
1580
+ }
1581
+
1582
+ .input-group-lg > .form-select,
1583
+ .input-group-sm > .form-select {
1584
+ padding-right: 3rem;
1585
+ }
1586
+
1587
+ .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
1588
+ .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3),
1589
+ .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control,
1590
+ .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select {
1591
+ border-top-right-radius: 0;
1592
+ border-bottom-right-radius: 0;
1593
+ }
1594
+ .input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
1595
+ .input-group.has-validation > .dropdown-toggle:nth-last-child(n+4),
1596
+ .input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control,
1597
+ .input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select {
1598
+ border-top-right-radius: 0;
1599
+ border-bottom-right-radius: 0;
1600
+ }
1601
+ .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
1602
+ margin-left: calc(var(--bs-border-width) * -1);
1603
+ border-top-left-radius: 0;
1604
+ border-bottom-left-radius: 0;
1605
+ }
1606
+ .input-group > .form-floating:not(:first-child) > .form-control,
1607
+ .input-group > .form-floating:not(:first-child) > .form-select {
1608
+ border-top-left-radius: 0;
1609
+ border-bottom-left-radius: 0;
1610
+ }
1611
+
1612
+ .valid-feedback {
1613
+ display: none;
1614
+ width: 100%;
1615
+ margin-top: 0.25rem;
1616
+ font-size: 0.875em;
1617
+ color: var(--bs-form-valid-color);
1618
+ }
1619
+
1620
+ .valid-tooltip {
1621
+ position: absolute;
1622
+ top: 100%;
1623
+ z-index: 5;
1624
+ display: none;
1625
+ max-width: 100%;
1626
+ padding: 0.25rem 0.5rem;
1627
+ margin-top: 0.1rem;
1628
+ font-size: 0.875rem;
1629
+ color: #fff;
1630
+ background-color: var(--bs-success);
1631
+ border-radius: var(--bs-border-radius);
1632
+ }
1633
+
1634
+ .was-validated :valid ~ .valid-feedback,
1635
+ .was-validated :valid ~ .valid-tooltip,
1636
+ .is-valid ~ .valid-feedback,
1637
+ .is-valid ~ .valid-tooltip {
1638
+ display: block;
1639
+ }
1640
+
1641
+ .was-validated .form-control:valid, .form-control.is-valid {
1642
+ border-color: var(--bs-form-valid-border-color);
1643
+ padding-right: calc(1.5em + 0.75rem);
1644
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
1645
+ background-repeat: no-repeat;
1646
+ background-position: right calc(0.375em + 0.1875rem) center;
1647
+ background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
1648
+ }
1649
+ .was-validated .form-control:valid:focus, .form-control.is-valid:focus {
1650
+ border-color: var(--bs-form-valid-border-color);
1651
+ box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
1652
+ }
1653
+
1654
+ .was-validated textarea.form-control:valid, textarea.form-control.is-valid {
1655
+ padding-right: calc(1.5em + 0.75rem);
1656
+ background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
1657
+ }
1658
+
1659
+ .was-validated .form-select:valid, .form-select.is-valid {
1660
+ border-color: var(--bs-form-valid-border-color);
1661
+ }
1662
+ .was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
1663
+ --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
1664
+ padding-right: 4.125rem;
1665
+ background-position: right 0.75rem center, center right 2.25rem;
1666
+ background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
1667
+ }
1668
+ .was-validated .form-select:valid:focus, .form-select.is-valid:focus {
1669
+ border-color: var(--bs-form-valid-border-color);
1670
+ box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
1671
+ }
1672
+
1673
+ .was-validated .form-control-color:valid, .form-control-color.is-valid {
1674
+ width: calc(3rem + calc(1.5em + 0.75rem));
1675
+ }
1676
+
1677
+ .was-validated .form-check-input:valid, .form-check-input.is-valid {
1678
+ border-color: var(--bs-form-valid-border-color);
1679
+ }
1680
+ .was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
1681
+ background-color: var(--bs-form-valid-color);
1682
+ }
1683
+ .was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
1684
+ box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
1685
+ }
1686
+ .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
1687
+ color: var(--bs-form-valid-color);
1688
+ }
1689
+
1690
+ .form-check-inline .form-check-input ~ .valid-feedback {
1691
+ margin-left: 0.5em;
1692
+ }
1693
+
1694
+ .was-validated .input-group > .form-control:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid,
1695
+ .was-validated .input-group > .form-select:not(:focus):valid,
1696
+ .input-group > .form-select:not(:focus).is-valid,
1697
+ .was-validated .input-group > .form-floating:not(:focus-within):valid,
1698
+ .input-group > .form-floating:not(:focus-within).is-valid {
1699
+ z-index: 3;
1700
+ }
1701
+
1702
+ .invalid-feedback {
1703
+ display: none;
1704
+ width: 100%;
1705
+ margin-top: 0.25rem;
1706
+ font-size: 0.875em;
1707
+ color: var(--bs-form-invalid-color);
1708
+ }
1709
+
1710
+ .invalid-tooltip {
1711
+ position: absolute;
1712
+ top: 100%;
1713
+ z-index: 5;
1714
+ display: none;
1715
+ max-width: 100%;
1716
+ padding: 0.25rem 0.5rem;
1717
+ margin-top: 0.1rem;
1718
+ font-size: 0.875rem;
1719
+ color: #fff;
1720
+ background-color: var(--bs-danger);
1721
+ border-radius: var(--bs-border-radius);
1722
+ }
1723
+
1724
+ .was-validated :invalid ~ .invalid-feedback,
1725
+ .was-validated :invalid ~ .invalid-tooltip,
1726
+ .is-invalid ~ .invalid-feedback,
1727
+ .is-invalid ~ .invalid-tooltip {
1728
+ display: block;
1729
+ }
1730
+
1731
+ .was-validated .form-control:invalid, .form-control.is-invalid {
1732
+ border-color: var(--bs-form-invalid-border-color);
1733
+ padding-right: calc(1.5em + 0.75rem);
1734
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
1735
+ background-repeat: no-repeat;
1736
+ background-position: right calc(0.375em + 0.1875rem) center;
1737
+ background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
1738
+ }
1739
+ .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
1740
+ border-color: var(--bs-form-invalid-border-color);
1741
+ box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
1742
+ }
1743
+
1744
+ .was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
1745
+ padding-right: calc(1.5em + 0.75rem);
1746
+ background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
1747
+ }
1748
+
1749
+ .was-validated .form-select:invalid, .form-select.is-invalid {
1750
+ border-color: var(--bs-form-invalid-border-color);
1751
+ }
1752
+ .was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
1753
+ --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
1754
+ padding-right: 4.125rem;
1755
+ background-position: right 0.75rem center, center right 2.25rem;
1756
+ background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
1757
+ }
1758
+ .was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
1759
+ border-color: var(--bs-form-invalid-border-color);
1760
+ box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
1761
+ }
1762
+
1763
+ .was-validated .form-control-color:invalid, .form-control-color.is-invalid {
1764
+ width: calc(3rem + calc(1.5em + 0.75rem));
1765
+ }
1766
+
1767
+ .was-validated .form-check-input:invalid, .form-check-input.is-invalid {
1768
+ border-color: var(--bs-form-invalid-border-color);
1769
+ }
1770
+ .was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
1771
+ background-color: var(--bs-form-invalid-color);
1772
+ }
1773
+ .was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
1774
+ box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
1775
+ }
1776
+ .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
1777
+ color: var(--bs-form-invalid-color);
1778
+ }
1779
+
1780
+ .form-check-inline .form-check-input ~ .invalid-feedback {
1781
+ margin-left: 0.5em;
1782
+ }
1783
+
1784
+ .was-validated .input-group > .form-control:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid,
1785
+ .was-validated .input-group > .form-select:not(:focus):invalid,
1786
+ .input-group > .form-select:not(:focus).is-invalid,
1787
+ .was-validated .input-group > .form-floating:not(:focus-within):invalid,
1788
+ .input-group > .form-floating:not(:focus-within).is-invalid {
1789
+ z-index: 4;
1790
+ }
1791
+
1792
+ :host {
1793
+ font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
1794
+ font-size: 1rem;
1795
+ font-weight: 400;
1796
+ line-height: 1.5;
1797
+ color: #212529;
1798
+ display: block;
1799
+ }
1800
+
1801
+ input[type=text][disabled] {
1802
+ color: var(--jfi-form-control-disabled-color);
1803
+ background-color: var(--jfi-form-control-disabled-background-color);
1804
+ opacity: 0.5;
1805
+ cursor: not-allowed;
1806
+ }
1807
+
1808
+ .monetary {
1809
+ border-left: 0 !important;
1810
+ border-top-left-radius: 0 !important;
1811
+ border-bottom-left-radius: 0 !important;
1812
+ }