move.gl 0.0.1 → 0.0.2

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 (463) hide show
  1. package/README.md +185 -11
  2. package/dist/LICENSE +21 -0
  3. package/dist/README.md +212 -0
  4. package/dist/css/move.gl.css +43859 -0
  5. package/dist/css/move.gl.min.css +19 -0
  6. package/dist/js/index.cjs +1171 -0
  7. package/dist/js/index.cjs.map +1 -0
  8. package/dist/js/index.d.cts +184 -0
  9. package/dist/js/index.d.ts +184 -0
  10. package/dist/js/index.mjs +1135 -0
  11. package/dist/js/index.mjs.map +1 -0
  12. package/dist/package.json +68 -0
  13. package/{scss → dist/scss}/classes/_animations.scss +33 -14
  14. package/dist/scss/classes/_controls.scss +314 -0
  15. package/dist/scss/classes/_effects.scss +283 -0
  16. package/dist/scss/classes/_index.scss +28 -0
  17. package/dist/scss/classes/_loaders.scss +779 -0
  18. package/dist/scss/classes/_transforms.scss +138 -0
  19. package/dist/scss/classes/_transitions.scss +264 -0
  20. package/{scss → dist/scss}/dev/_deprecation.scss +6 -3
  21. package/{scss → dist/scss}/dev/_modules.scss +5 -6
  22. package/dist/scss/docs.scss +2344 -0
  23. package/dist/scss/docs.scss.bak +3133 -0
  24. package/dist/scss/functions/_index.scss +22 -0
  25. package/dist/scss/functions/scenes/_bubble.scss +32 -0
  26. package/dist/scss/functions/scenes/_index.scss +21 -0
  27. package/dist/scss/index.scss +17 -0
  28. package/dist/scss/maps/_controls.scss +85 -0
  29. package/dist/scss/maps/_index.scss +22 -0
  30. package/{scss → dist/scss}/mixins/_accessibility.scss +24 -3
  31. package/{scss → dist/scss}/mixins/_boot.scss +4 -4
  32. package/dist/scss/mixins/_index.scss +41 -0
  33. package/dist/scss/mixins/_screensaver.scss +228 -0
  34. package/dist/scss/mixins/_shape.scss +315 -0
  35. package/dist/scss/mixins/animations/_base.scss +403 -0
  36. package/dist/scss/mixins/animations/_beat.scss +137 -0
  37. package/{scss → dist/scss}/mixins/animations/_blink.scss +60 -52
  38. package/dist/scss/mixins/animations/_bounce.scss +306 -0
  39. package/{scss → dist/scss}/mixins/animations/_elastic.scss +26 -22
  40. package/dist/scss/mixins/animations/_fade.scss +393 -0
  41. package/{scss → dist/scss}/mixins/animations/_flash.scss +53 -61
  42. package/dist/scss/mixins/animations/_flip.scss +251 -0
  43. package/{scss → dist/scss}/mixins/animations/_float.scss +47 -32
  44. package/{scss → dist/scss}/mixins/animations/_glow.scss +69 -58
  45. package/dist/scss/mixins/animations/_heartbeat.scss +195 -0
  46. package/dist/scss/mixins/animations/_hinge.scss +118 -0
  47. package/dist/scss/mixins/animations/_index.scss +97 -0
  48. package/dist/scss/mixins/animations/_jello.scss +123 -0
  49. package/dist/scss/mixins/animations/_jiggle.scss +162 -0
  50. package/dist/scss/mixins/animations/_lightspeed.scss +135 -0
  51. package/{scss → dist/scss}/mixins/animations/_nod.scss +57 -65
  52. package/dist/scss/mixins/animations/_pop.scss +153 -0
  53. package/dist/scss/mixins/animations/_pulse.scss +275 -0
  54. package/{scss → dist/scss}/mixins/animations/_ripple.scss +47 -55
  55. package/dist/scss/mixins/animations/_roll.scss +217 -0
  56. package/dist/scss/mixins/animations/_rotate.scss +728 -0
  57. package/dist/scss/mixins/animations/_rubber.scss +115 -0
  58. package/dist/scss/mixins/animations/_scale.scss +382 -0
  59. package/dist/scss/mixins/animations/_shake.scss +233 -0
  60. package/dist/scss/mixins/animations/_slide.scss +501 -0
  61. package/dist/scss/mixins/animations/_spin.scss +322 -0
  62. package/{scss → dist/scss}/mixins/animations/_sway.scss +32 -49
  63. package/{scss → dist/scss}/mixins/animations/_swing.scss +47 -49
  64. package/{scss → dist/scss}/mixins/animations/_tada.scss +44 -42
  65. package/{scss → dist/scss}/mixins/animations/_twist.scss +40 -55
  66. package/{scss → dist/scss}/mixins/animations/_wave.scss +36 -53
  67. package/dist/scss/mixins/animations/_wobble.scss +283 -0
  68. package/dist/scss/mixins/animations/_zoom.scss +394 -0
  69. package/{scss/mixins/mouse → dist/scss/mixins/controls}/_cursor.scss +60 -39
  70. package/dist/scss/mixins/controls/_hover.scss +625 -0
  71. package/dist/scss/mixins/controls/_index.scss +30 -0
  72. package/dist/scss/mixins/controls/_keyboard.scss +300 -0
  73. package/{scss/mixins/mouse → dist/scss/mixins/controls}/_pointer.scss +81 -72
  74. package/dist/scss/mixins/controls/_scroll.scss +460 -0
  75. package/{scss/mixins/scroll → dist/scss/mixins/controls}/_scrollbar.scss +50 -16
  76. package/dist/scss/mixins/controls/_selection.scss +208 -0
  77. package/dist/scss/mixins/controls/_touch.scss +401 -0
  78. package/dist/scss/mixins/effects/_blend.scss +128 -0
  79. package/dist/scss/mixins/effects/_filter.scss +470 -0
  80. package/dist/scss/mixins/effects/_focus.scss +83 -0
  81. package/dist/scss/mixins/effects/_gradient.scss +130 -0
  82. package/dist/scss/mixins/effects/_index.scss +28 -0
  83. package/dist/scss/mixins/effects/_mask.scss +76 -0
  84. package/dist/scss/mixins/effects/_opacity.scss +376 -0
  85. package/dist/scss/mixins/effects/_shadow.scss +429 -0
  86. package/dist/scss/mixins/keyframes/_base.scss +199 -0
  87. package/dist/scss/mixins/keyframes/_index.scss +24 -0
  88. package/dist/scss/mixins/keyframes/animations/_beat.scss +280 -0
  89. package/dist/scss/mixins/keyframes/animations/_blink.scss +82 -0
  90. package/dist/scss/mixins/keyframes/animations/_bounce.scss +292 -0
  91. package/dist/scss/mixins/keyframes/animations/_fade.scss +311 -0
  92. package/dist/scss/mixins/keyframes/animations/_flash.scss +165 -0
  93. package/dist/scss/mixins/keyframes/animations/_flip.scss +266 -0
  94. package/{scss/mixins → dist/scss/mixins/keyframes}/animations/_index.scss +19 -10
  95. package/dist/scss/mixins/keyframes/animations/_jiggle.scss +85 -0
  96. package/dist/scss/mixins/keyframes/animations/_lightspeed.scss +73 -0
  97. package/dist/scss/mixins/keyframes/animations/_nod.scss +79 -0
  98. package/dist/scss/mixins/keyframes/animations/_pop.scss +78 -0
  99. package/dist/scss/mixins/keyframes/animations/_pulse.scss +225 -0
  100. package/dist/scss/mixins/keyframes/animations/_ripple.scss +94 -0
  101. package/dist/scss/mixins/keyframes/animations/_roll.scss +124 -0
  102. package/dist/scss/mixins/keyframes/animations/_rotate.scss +360 -0
  103. package/dist/scss/mixins/keyframes/animations/_rubber.scss +81 -0
  104. package/dist/scss/mixins/keyframes/animations/_scale.scss +308 -0
  105. package/dist/scss/mixins/keyframes/animations/_shake.scss +270 -0
  106. package/dist/scss/mixins/keyframes/animations/_slide.scss +345 -0
  107. package/dist/scss/mixins/keyframes/animations/_spin.scss +270 -0
  108. package/dist/scss/mixins/keyframes/animations/_sway.scss +83 -0
  109. package/dist/scss/mixins/keyframes/animations/_twist.scss +89 -0
  110. package/dist/scss/mixins/keyframes/animations/_wave.scss +90 -0
  111. package/dist/scss/mixins/keyframes/animations/_wobble.scss +293 -0
  112. package/dist/scss/mixins/keyframes/animations/_zoom.scss +345 -0
  113. package/dist/scss/mixins/loaders/_bars.scss +128 -0
  114. package/dist/scss/mixins/loaders/_base.scss +39 -0
  115. package/dist/scss/mixins/loaders/_bubble.scss +395 -0
  116. package/dist/scss/mixins/loaders/_circle.scss +456 -0
  117. package/dist/scss/mixins/loaders/_dots.scss +248 -0
  118. package/dist/scss/mixins/loaders/_graph.scss +542 -0
  119. package/dist/scss/mixins/loaders/_index.scss +77 -0
  120. package/dist/scss/mixins/loaders/_line.scss +471 -0
  121. package/dist/scss/mixins/loaders/_objects.scss +563 -0
  122. package/dist/scss/mixins/loaders/_progress.scss +477 -0
  123. package/dist/scss/mixins/loaders/_rect.scss +480 -0
  124. package/dist/scss/mixins/loaders/_rings.scss +377 -0
  125. package/dist/scss/mixins/loaders/_skeleton.scss +461 -0
  126. package/dist/scss/mixins/loaders/_special.scss +611 -0
  127. package/dist/scss/mixins/loaders/_spinner.scss +175 -0
  128. package/dist/scss/mixins/loaders/_text.scss +446 -0
  129. package/{scss → dist/scss}/mixins/transforms/_flip.scss +16 -18
  130. package/dist/scss/mixins/transforms/_index.scss +28 -0
  131. package/dist/scss/mixins/transforms/_matrix.scss +18 -0
  132. package/{scss → dist/scss}/mixins/transforms/_perspective.scss +18 -1
  133. package/{scss → dist/scss}/mixins/transforms/_rotate.scss +9 -14
  134. package/{scss → dist/scss}/mixins/transforms/_scale.scss +16 -1
  135. package/{scss → dist/scss}/mixins/transforms/_skew.scss +16 -2
  136. package/{scss → dist/scss}/mixins/transforms/_translate.scss +16 -2
  137. package/dist/scss/mixins/transitions/_index.scss +22 -0
  138. package/dist/scss/mixins/transitions/_transition.scss +43 -0
  139. package/dist/scss/variables/_animations.scss +300 -0
  140. package/dist/scss/variables/_controls.scss +178 -0
  141. package/dist/scss/variables/_effects.scss +87 -0
  142. package/dist/scss/variables/_index.scss +27 -0
  143. package/dist/scss/variables/_keyframes.scss +28 -0
  144. package/dist/scss/variables/_loaders.scss +75 -0
  145. package/dist/scss/variables/_transforms.scss +85 -0
  146. package/dist/scss/variables/_transitions.scss +80 -0
  147. package/dist/ts/Draggable.ts +143 -0
  148. package/dist/ts/Gesture.ts +226 -0
  149. package/dist/ts/Keyboard.ts +195 -0
  150. package/dist/ts/LoaderManager.ts +662 -0
  151. package/dist/ts/Screensaver.ts +192 -0
  152. package/dist/ts/VideoOverlay.ts +205 -0
  153. package/dist/ts/demo.ts +1108 -0
  154. package/dist/ts/index.ts +58 -0
  155. package/package.json +90 -53
  156. package/src/html/_base.html +138 -0
  157. package/src/html/base.html +147 -0
  158. package/src/html/core-concepts.html +282 -0
  159. package/src/html/demo_base.html +171 -0
  160. package/src/html/demo_draggable.html +250 -0
  161. package/src/html/demo_gesture.html +264 -0
  162. package/src/html/demo_keyboard.html +224 -0
  163. package/src/html/demo_screensaver.html +258 -0
  164. package/src/html/demo_video_overlay.html +291 -0
  165. package/src/html/getting-started.html +242 -0
  166. package/src/html/index.html +400 -0
  167. package/src/html/keyboard.html +14 -0
  168. package/src/html/partials/_demo_links.html +21 -0
  169. package/src/html/partials/_footer.html +18 -0
  170. package/src/html/partials/_head.html +21 -0
  171. package/src/html/partials/_nav.html +84 -0
  172. package/src/html/partials/_theme_toggle.html +11 -0
  173. package/src/html/screensaver.html +20 -0
  174. package/src/html/test_animations.html +813 -0
  175. package/src/html/test_attention.html +281 -0
  176. package/src/html/test_bounce.html +201 -0
  177. package/src/html/test_effects.html +1348 -0
  178. package/src/html/test_fade.html +213 -0
  179. package/src/html/test_flip.html +208 -0
  180. package/src/html/test_keyframes.html +415 -0
  181. package/src/html/test_loaders.html +1489 -0
  182. package/src/html/test_mouse.html +516 -0
  183. package/src/html/test_overview.html +1444 -0
  184. package/src/html/test_pulse.html +212 -0
  185. package/src/html/test_scale.html +204 -0
  186. package/src/html/test_shake.html +232 -0
  187. package/src/html/test_slide.html +212 -0
  188. package/src/html/test_special.html +257 -0
  189. package/src/html/test_spin.html +216 -0
  190. package/src/html/test_transforms.html +332 -0
  191. package/src/html/test_transitions.html +245 -0
  192. package/src/html/test_zoom.html +188 -0
  193. package/src/html/video_overlay.html +27 -0
  194. package/src/jinja/_base.html.jinja +50 -0
  195. package/src/jinja/base.html.jinja +48 -0
  196. package/src/jinja/core-concepts.html.jinja +148 -0
  197. package/src/jinja/demo_draggable.html.jinja +114 -0
  198. package/src/jinja/demo_gesture.html.jinja +128 -0
  199. package/src/jinja/demo_keyboard.html.jinja +88 -0
  200. package/src/jinja/demo_screensaver.html.jinja +122 -0
  201. package/src/jinja/demo_video_overlay.html.jinja +155 -0
  202. package/src/jinja/getting-started.html.jinja +108 -0
  203. package/src/jinja/index.html.jinja +268 -0
  204. package/src/jinja/index.json +5 -0
  205. package/src/jinja/move.gl.css +7741 -0
  206. package/src/jinja/partials/_code_block.html.jinja +17 -0
  207. package/src/jinja/partials/_demo_links.html.jinja +41 -0
  208. package/src/jinja/partials/_feature_card.html.jinja +20 -0
  209. package/src/jinja/partials/_footer.html.jinja +22 -0
  210. package/src/jinja/partials/_head.html.jinja +27 -0
  211. package/src/jinja/partials/_nav.html.jinja +79 -0
  212. package/src/jinja/partials/_theme_toggle.html.jinja +15 -0
  213. package/src/jinja/test_animations.html.jinja +679 -0
  214. package/src/jinja/test_attention.html.jinja +147 -0
  215. package/src/jinja/test_bounce.html.jinja +67 -0
  216. package/src/jinja/test_effects.html.jinja +1218 -0
  217. package/src/jinja/test_fade.html.jinja +79 -0
  218. package/src/jinja/test_flip.html.jinja +74 -0
  219. package/src/jinja/test_keyframes.html.jinja +281 -0
  220. package/src/jinja/test_loaders.html.jinja +1358 -0
  221. package/src/jinja/test_mouse.html.jinja +382 -0
  222. package/src/jinja/test_overview.html.jinja +1313 -0
  223. package/src/jinja/test_pulse.html.jinja +78 -0
  224. package/src/jinja/test_scale.html.jinja +70 -0
  225. package/src/jinja/test_shake.html.jinja +98 -0
  226. package/src/jinja/test_slide.html.jinja +78 -0
  227. package/src/jinja/test_special.html.jinja +123 -0
  228. package/src/jinja/test_spin.html.jinja +82 -0
  229. package/src/jinja/test_transforms.html.jinja +198 -0
  230. package/src/jinja/test_transitions.html.jinja +111 -0
  231. package/src/jinja/test_zoom.html.jinja +54 -0
  232. package/src/scss/classes/_animations.scss +595 -0
  233. package/src/scss/classes/_controls.scss +314 -0
  234. package/src/scss/classes/_effects.scss +283 -0
  235. package/src/scss/classes/_index.scss +28 -0
  236. package/src/scss/classes/_loaders.scss +779 -0
  237. package/src/scss/classes/_transforms.scss +138 -0
  238. package/src/scss/classes/_transitions.scss +264 -0
  239. package/src/scss/dev/_banner.scss +36 -0
  240. package/src/scss/dev/_debug.scss +18 -0
  241. package/src/scss/dev/_deprecation.scss +13 -0
  242. package/src/scss/dev/_index.scss +8 -0
  243. package/src/scss/dev/_modules.scss +23 -0
  244. package/src/scss/docs.scss +2344 -0
  245. package/src/scss/docs.scss.bak +3133 -0
  246. package/src/scss/functions/_index.scss +22 -0
  247. package/src/scss/functions/scenes/_bubble.scss +32 -0
  248. package/src/scss/functions/scenes/_index.scss +21 -0
  249. package/src/scss/index.scss +17 -0
  250. package/src/scss/maps/_controls.scss +85 -0
  251. package/src/scss/maps/_index.scss +22 -0
  252. package/src/scss/mixins/_accessibility.scss +91 -0
  253. package/src/scss/mixins/_boot.scss +51 -0
  254. package/src/scss/mixins/_index.scss +41 -0
  255. package/src/scss/mixins/_screensaver.scss +228 -0
  256. package/src/scss/mixins/_shape.scss +315 -0
  257. package/src/scss/mixins/animations/_base.scss +403 -0
  258. package/src/scss/mixins/animations/_beat.scss +137 -0
  259. package/src/scss/mixins/animations/_blink.scss +159 -0
  260. package/src/scss/mixins/animations/_bounce.scss +306 -0
  261. package/src/scss/mixins/animations/_elastic.scss +69 -0
  262. package/src/scss/mixins/animations/_fade.scss +393 -0
  263. package/src/scss/mixins/animations/_flash.scss +169 -0
  264. package/src/scss/mixins/animations/_flip.scss +251 -0
  265. package/src/scss/mixins/animations/_float.scss +141 -0
  266. package/src/scss/mixins/animations/_glow.scss +190 -0
  267. package/src/scss/mixins/animations/_heartbeat.scss +195 -0
  268. package/src/scss/mixins/animations/_hinge.scss +118 -0
  269. package/src/scss/mixins/animations/_index.scss +97 -0
  270. package/src/scss/mixins/animations/_jello.scss +123 -0
  271. package/src/scss/mixins/animations/_jiggle.scss +162 -0
  272. package/src/scss/mixins/animations/_lightspeed.scss +135 -0
  273. package/src/scss/mixins/animations/_nod.scss +153 -0
  274. package/src/scss/mixins/animations/_pop.scss +153 -0
  275. package/src/scss/mixins/animations/_pulse.scss +275 -0
  276. package/src/scss/mixins/animations/_ripple.scss +161 -0
  277. package/src/scss/mixins/animations/_roll.scss +217 -0
  278. package/src/scss/mixins/animations/_rotate.scss +728 -0
  279. package/src/scss/mixins/animations/_rubber.scss +115 -0
  280. package/src/scss/mixins/animations/_scale.scss +382 -0
  281. package/src/scss/mixins/animations/_shake.scss +233 -0
  282. package/src/scss/mixins/animations/_slide.scss +501 -0
  283. package/src/scss/mixins/animations/_spin.scss +322 -0
  284. package/src/scss/mixins/animations/_sway.scss +150 -0
  285. package/src/scss/mixins/animations/_swing.scss +245 -0
  286. package/src/scss/mixins/animations/_tada.scss +235 -0
  287. package/src/scss/mixins/animations/_twist.scss +162 -0
  288. package/src/scss/mixins/animations/_wave.scss +149 -0
  289. package/src/scss/mixins/animations/_wobble.scss +283 -0
  290. package/src/scss/mixins/animations/_zoom.scss +394 -0
  291. package/src/scss/mixins/controls/_cursor.scss +203 -0
  292. package/src/scss/mixins/controls/_hover.scss +625 -0
  293. package/src/scss/mixins/controls/_index.scss +30 -0
  294. package/src/scss/mixins/controls/_keyboard.scss +300 -0
  295. package/src/scss/mixins/controls/_pointer.scss +267 -0
  296. package/src/scss/mixins/controls/_scroll.scss +460 -0
  297. package/src/scss/mixins/controls/_scrollbar.scss +283 -0
  298. package/src/scss/mixins/controls/_selection.scss +208 -0
  299. package/src/scss/mixins/controls/_touch.scss +401 -0
  300. package/src/scss/mixins/effects/_blend.scss +128 -0
  301. package/src/scss/mixins/effects/_filter.scss +470 -0
  302. package/src/scss/mixins/effects/_focus.scss +83 -0
  303. package/src/scss/mixins/effects/_gradient.scss +130 -0
  304. package/src/scss/mixins/effects/_index.scss +28 -0
  305. package/src/scss/mixins/effects/_mask.scss +76 -0
  306. package/src/scss/mixins/effects/_opacity.scss +376 -0
  307. package/src/scss/mixins/effects/_shadow.scss +429 -0
  308. package/src/scss/mixins/keyframes/_base.scss +199 -0
  309. package/src/scss/mixins/keyframes/_index.scss +24 -0
  310. package/src/scss/mixins/keyframes/animations/_beat.scss +280 -0
  311. package/src/scss/mixins/keyframes/animations/_blink.scss +82 -0
  312. package/src/scss/mixins/keyframes/animations/_bounce.scss +292 -0
  313. package/src/scss/mixins/keyframes/animations/_fade.scss +311 -0
  314. package/src/scss/mixins/keyframes/animations/_flash.scss +165 -0
  315. package/src/scss/mixins/keyframes/animations/_flip.scss +266 -0
  316. package/src/scss/mixins/keyframes/animations/_index.scss +46 -0
  317. package/src/scss/mixins/keyframes/animations/_jiggle.scss +85 -0
  318. package/src/scss/mixins/keyframes/animations/_lightspeed.scss +73 -0
  319. package/src/scss/mixins/keyframes/animations/_nod.scss +79 -0
  320. package/src/scss/mixins/keyframes/animations/_pop.scss +78 -0
  321. package/src/scss/mixins/keyframes/animations/_pulse.scss +225 -0
  322. package/src/scss/mixins/keyframes/animations/_ripple.scss +94 -0
  323. package/src/scss/mixins/keyframes/animations/_roll.scss +124 -0
  324. package/src/scss/mixins/keyframes/animations/_rotate.scss +360 -0
  325. package/src/scss/mixins/keyframes/animations/_rubber.scss +81 -0
  326. package/src/scss/mixins/keyframes/animations/_scale.scss +308 -0
  327. package/src/scss/mixins/keyframes/animations/_shake.scss +270 -0
  328. package/src/scss/mixins/keyframes/animations/_slide.scss +345 -0
  329. package/src/scss/mixins/keyframes/animations/_spin.scss +270 -0
  330. package/src/scss/mixins/keyframes/animations/_sway.scss +83 -0
  331. package/src/scss/mixins/keyframes/animations/_twist.scss +89 -0
  332. package/src/scss/mixins/keyframes/animations/_wave.scss +90 -0
  333. package/src/scss/mixins/keyframes/animations/_wobble.scss +293 -0
  334. package/src/scss/mixins/keyframes/animations/_zoom.scss +345 -0
  335. package/src/scss/mixins/loaders/_bars.scss +128 -0
  336. package/src/scss/mixins/loaders/_base.scss +39 -0
  337. package/src/scss/mixins/loaders/_bubble.scss +395 -0
  338. package/src/scss/mixins/loaders/_circle.scss +456 -0
  339. package/src/scss/mixins/loaders/_dots.scss +248 -0
  340. package/src/scss/mixins/loaders/_graph.scss +542 -0
  341. package/src/scss/mixins/loaders/_index.scss +77 -0
  342. package/src/scss/mixins/loaders/_line.scss +471 -0
  343. package/src/scss/mixins/loaders/_objects.scss +563 -0
  344. package/src/scss/mixins/loaders/_progress.scss +477 -0
  345. package/src/scss/mixins/loaders/_rect.scss +480 -0
  346. package/src/scss/mixins/loaders/_rings.scss +377 -0
  347. package/src/scss/mixins/loaders/_skeleton.scss +461 -0
  348. package/src/scss/mixins/loaders/_special.scss +611 -0
  349. package/src/scss/mixins/loaders/_spinner.scss +175 -0
  350. package/src/scss/mixins/loaders/_text.scss +446 -0
  351. package/src/scss/mixins/transforms/_flip.scss +74 -0
  352. package/src/scss/mixins/transforms/_index.scss +28 -0
  353. package/src/scss/mixins/transforms/_matrix.scss +18 -0
  354. package/src/scss/mixins/transforms/_perspective.scss +28 -0
  355. package/src/scss/mixins/transforms/_rotate.scss +96 -0
  356. package/src/scss/mixins/transforms/_scale.scss +26 -0
  357. package/src/scss/mixins/transforms/_skew.scss +27 -0
  358. package/src/scss/mixins/transforms/_translate.scss +27 -0
  359. package/src/scss/mixins/transitions/_index.scss +22 -0
  360. package/src/scss/mixins/transitions/_transition.scss +43 -0
  361. package/src/scss/variables/_animations.scss +300 -0
  362. package/src/scss/variables/_controls.scss +178 -0
  363. package/src/scss/variables/_effects.scss +87 -0
  364. package/src/scss/variables/_index.scss +27 -0
  365. package/src/scss/variables/_keyframes.scss +28 -0
  366. package/src/scss/variables/_loaders.scss +75 -0
  367. package/src/scss/variables/_transforms.scss +85 -0
  368. package/src/scss/variables/_transitions.scss +80 -0
  369. package/src/ts/Draggable.ts +143 -0
  370. package/src/ts/Gesture.ts +226 -0
  371. package/src/ts/Keyboard.ts +195 -0
  372. package/src/ts/LoaderManager.ts +662 -0
  373. package/src/ts/Screensaver.ts +192 -0
  374. package/src/ts/VideoOverlay.ts +205 -0
  375. package/src/ts/demo.ts +1108 -0
  376. package/src/ts/index.ts +58 -0
  377. package/css/move.gl.css +0 -2
  378. package/css/move.gl.min.css +0 -2
  379. package/scss/classes/_transforms.scss +0 -124
  380. package/scss/classes/keyboard.scss +0 -18
  381. package/scss/classes/screensaver.scss +0 -15
  382. package/scss/effects/_filter.scss +0 -176
  383. package/scss/effects/_index.scss +0 -23
  384. package/scss/effects/_opacity.scss +0 -62
  385. package/scss/effects/_shadow.scss +0 -175
  386. package/scss/functions/scenes/_bubble.scss +0 -19
  387. package/scss/functions/scenes/_index.scss +0 -20
  388. package/scss/index.scss +0 -0
  389. package/scss/keyframes/_beat.scss +0 -26
  390. package/scss/keyframes/_index.scss +0 -0
  391. package/scss/maps/_index.scss +0 -0
  392. package/scss/maps/_mouse.scss +0 -96
  393. package/scss/mixins/_hover.scss +0 -51
  394. package/scss/mixins/_index.scss +0 -0
  395. package/scss/mixins/_selection.scss +0 -321
  396. package/scss/mixins/_shape.scss +0 -44
  397. package/scss/mixins/_touch.scss +0 -95
  398. package/scss/mixins/animations/--hover.scss +0 -107
  399. package/scss/mixins/animations/_base.scss +0 -337
  400. package/scss/mixins/animations/_beat.scss +0 -119
  401. package/scss/mixins/animations/_bounce.scss +0 -192
  402. package/scss/mixins/animations/_fade.scss +0 -154
  403. package/scss/mixins/animations/_flip.scss +0 -72
  404. package/scss/mixins/animations/_heartbeat.scss +0 -175
  405. package/scss/mixins/animations/_hinge.scss +0 -119
  406. package/scss/mixins/animations/_jello.scss +0 -129
  407. package/scss/mixins/animations/_jiggle.scss +0 -163
  408. package/scss/mixins/animations/_lightspeed.scss +0 -130
  409. package/scss/mixins/animations/_pop.scss +0 -150
  410. package/scss/mixins/animations/_pulse.scss +0 -213
  411. package/scss/mixins/animations/_roll.scss +0 -261
  412. package/scss/mixins/animations/_rotate.scss +0 -428
  413. package/scss/mixins/animations/_rubber.scss +0 -116
  414. package/scss/mixins/animations/_scale.scss +0 -113
  415. package/scss/mixins/animations/_shake.scss +0 -182
  416. package/scss/mixins/animations/_slide.scss +0 -294
  417. package/scss/mixins/animations/_spin.scss +0 -219
  418. package/scss/mixins/animations/_wobble.scss +0 -254
  419. package/scss/mixins/animations/_zoom.scss +0 -166
  420. package/scss/mixins/effects/_filter.scss +0 -148
  421. package/scss/mixins/effects/_index.scss +0 -0
  422. package/scss/mixins/effects/_shadow.scss +0 -21
  423. package/scss/mixins/loaders/_index.scss +0 -0
  424. package/scss/mixins/loaders/_progress.scss +0 -174
  425. package/scss/mixins/loaders/_spinner.scss +0 -101
  426. package/scss/mixins/loaders/circle_01.scss +0 -22
  427. package/scss/mixins/loaders/circle_02.scss +0 -19
  428. package/scss/mixins/loaders/circle_03.scss +0 -29
  429. package/scss/mixins/loaders/circle_inner_01.scss +0 -33
  430. package/scss/mixins/loaders/circle_inner_02.scss +0 -33
  431. package/scss/mixins/loaders/circle_inner_03.scss +0 -34
  432. package/scss/mixins/mouse/_index.scss +0 -0
  433. package/scss/mixins/scroll/_index.scss +0 -0
  434. package/scss/mixins/scroll/_scroll.scss +0 -104
  435. package/scss/mixins/transforms/_index.scss +0 -23
  436. package/scss/mixins/transforms/_matrix.scss +0 -1
  437. package/scss/mixins/transitions/_index.scss +0 -0
  438. package/scss/mixins/transitions/_transition.scss +0 -13
  439. package/scss/variables/_animation.scss +0 -91
  440. package/scss/variables/_index.scss +0 -0
  441. package/ts/ARContent.ts +0 -27
  442. package/ts/ARInteraction.ts +0 -34
  443. package/ts/AdaptiveUI.ts +0 -25
  444. package/ts/ContentStreaming.ts +0 -20
  445. package/ts/Draggable.ts +0 -71
  446. package/ts/DynamicEnvironment.ts +0 -60
  447. package/ts/Gesture.ts +0 -168
  448. package/ts/ImmersiveAudio.ts +0 -40
  449. package/ts/InteractiveCanvas.ts +0 -177
  450. package/ts/InteractiveVideo.ts +0 -29
  451. package/ts/Keyboard.ts +0 -162
  452. package/ts/RealTimeCollaboration.ts +0 -25
  453. package/ts/Screensaver.ts +0 -140
  454. package/ts/SpatialNavigation.ts +0 -38
  455. package/ts/UserProfile.ts +0 -27
  456. package/ts/VRExperience.ts +0 -58
  457. package/ts/VideoOverlay.ts +0 -116
  458. package/ts/index.ts +0 -0
  459. /package/{scss → dist/scss}/dev/_banner.scss +0 -0
  460. /package/{scss → dist/scss}/dev/_debug.scss +0 -0
  461. /package/{scss → dist/scss}/dev/_index.scss +0 -0
  462. /package/{scss/classes/_index.scss → src/html/partials/_code_block.html} +0 -0
  463. /package/{scss/functions/_index.scss → src/html/partials/_feature_card.html} +0 -0
@@ -0,0 +1,19 @@
1
+ *,a,abbr,acronym,address,applet,area,article,aside,audio,b,base,basefont,bb,bdo,big,blockquote,body,br,button,canvas,caption,center,cite,code,col,colgroup,command,datalist,dd,del,details,dfn,dialog,dir,div,dl,dt,em,embed,eventsource,fieldset,figcaption,figure,font,footer,form,frame,frameset,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,i,iframe,img,input,ins,isindex,kbd,keygen,label,legend,li,link,map,mark,menu,meta,meter,nav,noframes,noscript,object,ol,optgroup,option,output,p,param,pre,progress,q,rp,rt,ruby,s,samp,script,section,select,small,source,span,strike,strong,style,sub,sup,table,tbody,td,textarea,tfoot,th,thead,time,title,tr,track,tt,u,ul,var,video,wbr{border:0;font-size:100%;font:inherit;margin:0;margin-block-end:0;margin-block-start:0;margin-inline-end:0;margin-inline-start:0;padding:0;vertical-align:initial}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section{display:block}.aspect_ratio--1x1{aspect-ratio:1;position:relative;width:100%}.aspect_ratio--1x1>*{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.aspect_ratio--1x2{aspect-ratio:.5;position:relative;width:100%}.aspect_ratio--1x2>*{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.aspect_ratio--2x1{aspect-ratio:2;position:relative;width:100%}.aspect_ratio--2x1>*{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.aspect_ratio--1x3{aspect-ratio:.3333333333;position:relative;width:100%}.aspect_ratio--1x3>*{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.aspect_ratio--3x1{aspect-ratio:3;position:relative;width:100%}.aspect_ratio--3x1>*{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.aspect_ratio--1x4{aspect-ratio:.25;position:relative;width:100%}.aspect_ratio--1x4>*{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.aspect_ratio--4x1{aspect-ratio:4;position:relative;width:100%}.aspect_ratio--4x1>*{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.aspect_ratio--3x2{aspect-ratio:1.5;position:relative;width:100%}.aspect_ratio--3x2>*{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.aspect_ratio--2x3{aspect-ratio:.6666666667;position:relative;width:100%}.aspect_ratio--2x3>*{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.aspect_ratio--4x3{aspect-ratio:1.3333333333;position:relative;width:100%}.aspect_ratio--4x3>*{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.aspect_ratio--3x4{aspect-ratio:.75;position:relative;width:100%}.aspect_ratio--3x4>*{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.aspect_ratio--16x9{aspect-ratio:1.7777777778;position:relative;width:100%}.aspect_ratio--16x9>*{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.aspect_ratio--16x10{aspect-ratio:1.6;position:relative;width:100%}.aspect_ratio--16x10>*{bottom:0;right:0}.aspect_ratio--16x10>*,.guide{height:100%;left:0;position:absolute;top:0;width:100%}.guide{background-attachment:local;margin:0;opacity:1}.guide,.guide--layer{min-height:100vh;pointer-events:none;z-index:9999}.guide--layer{display:none;left:0;position:absolute;top:0;width:100%}.guide--layer.active{display:block!important}.guide--graph,.guide--graph_centered{background-attachment:local;background-image:repeating-linear-gradient(90deg,hsla(188,6%,46%,.483) 0,hsla(188,6%,46%,.483) 1px,transparent 0,transparent 1.25rem),repeating-linear-gradient(180deg,hsla(188,6%,46%,.483) 0,hsla(188,6%,46%,.483) 1px,transparent 0,transparent 1.25rem);background-repeat:repeat;background-size:1.25rem 1.25rem;height:100%;left:0;margin:0;min-height:100vh;opacity:1;pointer-events:none;position:absolute;top:0;width:100%;z-index:9999}.guide--graph_centered{background-position:calc(50% - 7.5rem) 0}.guide--baseline{background-attachment:local;background-image:repeating-linear-gradient(180deg,#00c8ff 0 1px,transparent 1px 100%);background-repeat:repeat;background-size:100% 1.25rem;height:100%;left:0;margin:0;min-height:100vh;opacity:1;pointer-events:none;position:absolute;top:0;width:100%;z-index:9999}.p_q0{padding:0}.pt_q0{padding-top:0}.pr_q0{padding-right:0}.pb_q0{padding-bottom:0}.pl_q0,.px_q0{padding-left:0}.px_q0{padding-right:0}.py_q0{padding-bottom:0;padding-top:0}.p_q1{padding:.0625rem}.pt_q1{padding-top:.0625rem}.pr_q1{padding-right:.0625rem}.pb_q1{padding-bottom:.0625rem}.pl_q1,.px_q1{padding-left:.0625rem}.px_q1{padding-right:.0625rem}.py_q1{padding-bottom:.0625rem;padding-top:.0625rem}.p_q2{padding:.125rem}.pt_q2{padding-top:.125rem}.pr_q2{padding-right:.125rem}.pb_q2{padding-bottom:.125rem}.pl_q2,.px_q2{padding-left:.125rem}.px_q2{padding-right:.125rem}.py_q2{padding-bottom:.125rem;padding-top:.125rem}.p_q4{padding:.25rem}.pt_q4{padding-top:.25rem}.pr_q4{padding-right:.25rem}.pb_q4{padding-bottom:.25rem}.pl_q4,.px_q4{padding-left:.25rem}.px_q4{padding-right:.25rem}.py_q4{padding-bottom:.25rem;padding-top:.25rem}.p_q6{padding:.375rem}.pt_q6{padding-top:.375rem}.pr_q6{padding-right:.375rem}.pb_q6{padding-bottom:.375rem}.pl_q6,.px_q6{padding-left:.375rem}.px_q6{padding-right:.375rem}.py_q6{padding-bottom:.375rem;padding-top:.375rem}.p_q8{padding:.5rem}.pt_q8{padding-top:.5rem}.pr_q8{padding-right:.5rem}.pb_q8{padding-bottom:.5rem}.pl_q8,.px_q8{padding-left:.5rem}.px_q8{padding-right:.5rem}.py_q8{padding-bottom:.5rem;padding-top:.5rem}.p_q12{padding:.75rem}.pt_q12{padding-top:.75rem}.pr_q12{padding-right:.75rem}.pb_q12{padding-bottom:.75rem}.pl_q12,.px_q12{padding-left:.75rem}.px_q12{padding-right:.75rem}.py_q12{padding-bottom:.75rem;padding-top:.75rem}.p_q16{padding:1rem}.pt_q16{padding-top:1rem}.pr_q16{padding-right:1rem}.pb_q16{padding-bottom:1rem}.pl_q16,.px_q16{padding-left:1rem}.px_q16{padding-right:1rem}.py_q16{padding-bottom:1rem;padding-top:1rem}.p_q20{padding:1.25rem}.pt_q20{padding-top:1.25rem}.pr_q20{padding-right:1.25rem}.pb_q20{padding-bottom:1.25rem}.pl_q20,.px_q20{padding-left:1.25rem}.px_q20{padding-right:1.25rem}.py_q20{padding-bottom:1.25rem;padding-top:1.25rem}.p_q24{padding:1.5rem}.pt_q24{padding-top:1.5rem}.pr_q24{padding-right:1.5rem}.pb_q24{padding-bottom:1.5rem}.pl_q24,.px_q24{padding-left:1.5rem}.px_q24{padding-right:1.5rem}.py_q24{padding-bottom:1.5rem;padding-top:1.5rem}.p_q32{padding:2rem}.pt_q32{padding-top:2rem}.pr_q32{padding-right:2rem}.pb_q32{padding-bottom:2rem}.pl_q32,.px_q32{padding-left:2rem}.px_q32{padding-right:2rem}.py_q32{padding-bottom:2rem;padding-top:2rem}.p_q40{padding:2.5rem}.pt_q40{padding-top:2.5rem}.pr_q40{padding-right:2.5rem}.pb_q40{padding-bottom:2.5rem}.pl_q40,.px_q40{padding-left:2.5rem}.px_q40{padding-right:2.5rem}.py_q40{padding-bottom:2.5rem;padding-top:2.5rem}.p_q48{padding:3rem}.pt_q48{padding-top:3rem}.pr_q48{padding-right:3rem}.pb_q48{padding-bottom:3rem}.pl_q48,.px_q48{padding-left:3rem}.px_q48{padding-right:3rem}.py_q48{padding-bottom:3rem;padding-top:3rem}.p_q56{padding:3.5rem}.pt_q56{padding-top:3.5rem}.pr_q56{padding-right:3.5rem}.pb_q56{padding-bottom:3.5rem}.pl_q56,.px_q56{padding-left:3.5rem}.px_q56{padding-right:3.5rem}.py_q56{padding-bottom:3.5rem;padding-top:3.5rem}.p_q64{padding:4rem}.pt_q64{padding-top:4rem}.pr_q64{padding-right:4rem}.pb_q64{padding-bottom:4rem}.pl_q64,.px_q64{padding-left:4rem}.px_q64{padding-right:4rem}.py_q64{padding-bottom:4rem;padding-top:4rem}.p_q72{padding:4.5rem}.pt_q72{padding-top:4.5rem}.pr_q72{padding-right:4.5rem}.pb_q72{padding-bottom:4.5rem}.pl_q72,.px_q72{padding-left:4.5rem}.px_q72{padding-right:4.5rem}.py_q72{padding-bottom:4.5rem;padding-top:4.5rem}.p_q80{padding:5rem}.pt_q80{padding-top:5rem}.pr_q80{padding-right:5rem}.pb_q80{padding-bottom:5rem}.pl_q80,.px_q80{padding-left:5rem}.px_q80{padding-right:5rem}.py_q80{padding-bottom:5rem;padding-top:5rem}.p_q96{padding:6rem}.pt_q96{padding-top:6rem}.pr_q96{padding-right:6rem}.pb_q96{padding-bottom:6rem}.pl_q96,.px_q96{padding-left:6rem}.px_q96{padding-right:6rem}.py_q96{padding-bottom:6rem;padding-top:6rem}.p_q112{padding:7rem}.pt_q112{padding-top:7rem}.pr_q112{padding-right:7rem}.pb_q112{padding-bottom:7rem}.pl_q112,.px_q112{padding-left:7rem}.px_q112{padding-right:7rem}.py_q112{padding-bottom:7rem;padding-top:7rem}.p_q128{padding:8rem}.pt_q128{padding-top:8rem}.pr_q128{padding-right:8rem}.pb_q128{padding-bottom:8rem}.pl_q128,.px_q128{padding-left:8rem}.px_q128{padding-right:8rem}.py_q128{padding-bottom:8rem;padding-top:8rem}.p_q144{padding:9rem}.pt_q144{padding-top:9rem}.pr_q144{padding-right:9rem}.pb_q144{padding-bottom:9rem}.pl_q144,.px_q144{padding-left:9rem}.px_q144{padding-right:9rem}.py_q144{padding-bottom:9rem;padding-top:9rem}.p_q160{padding:10rem}.pt_q160{padding-top:10rem}.pr_q160{padding-right:10rem}.pb_q160{padding-bottom:10rem}.pl_q160,.px_q160{padding-left:10rem}.px_q160{padding-right:10rem}.py_q160{padding-bottom:10rem;padding-top:10rem}.p_q192{padding:12rem}.pt_q192{padding-top:12rem}.pr_q192{padding-right:12rem}.pb_q192{padding-bottom:12rem}.pl_q192,.px_q192{padding-left:12rem}.px_q192{padding-right:12rem}.py_q192{padding-bottom:12rem;padding-top:12rem}.p_q224{padding:14rem}.pt_q224{padding-top:14rem}.pr_q224{padding-right:14rem}.pb_q224{padding-bottom:14rem}.pl_q224,.px_q224{padding-left:14rem}.px_q224{padding-right:14rem}.py_q224{padding-bottom:14rem;padding-top:14rem}.p_q256{padding:16rem}.pt_q256{padding-top:16rem}.pr_q256{padding-right:16rem}.pb_q256{padding-bottom:16rem}.pl_q256,.px_q256{padding-left:16rem}.px_q256{padding-right:16rem}.py_q256{padding-bottom:16rem;padding-top:16rem}.m_q0{margin:0}.mt_q0{margin-top:0}.mr_q0{margin-right:0}.mb_q0{margin-bottom:0}.ml_q0,.mx_q0{margin-left:0}.mx_q0{margin-right:0}.my_q0{margin-bottom:0;margin-top:0}.m_q1{margin:.0625rem}.mt_q1{margin-top:.0625rem}.mr_q1{margin-right:.0625rem}.mb_q1{margin-bottom:.0625rem}.ml_q1,.mx_q1{margin-left:.0625rem}.mx_q1{margin-right:.0625rem}.my_q1{margin-bottom:.0625rem;margin-top:.0625rem}.m_q2{margin:.125rem}.mt_q2{margin-top:.125rem}.mr_q2{margin-right:.125rem}.mb_q2{margin-bottom:.125rem}.ml_q2,.mx_q2{margin-left:.125rem}.mx_q2{margin-right:.125rem}.my_q2{margin-bottom:.125rem;margin-top:.125rem}.m_q4{margin:.25rem}.mt_q4{margin-top:.25rem}.mr_q4{margin-right:.25rem}.mb_q4{margin-bottom:.25rem}.ml_q4,.mx_q4{margin-left:.25rem}.mx_q4{margin-right:.25rem}.my_q4{margin-bottom:.25rem;margin-top:.25rem}.m_q6{margin:.375rem}.mt_q6{margin-top:.375rem}.mr_q6{margin-right:.375rem}.mb_q6{margin-bottom:.375rem}.ml_q6,.mx_q6{margin-left:.375rem}.mx_q6{margin-right:.375rem}.my_q6{margin-bottom:.375rem;margin-top:.375rem}.m_q8{margin:.5rem}.mt_q8{margin-top:.5rem}.mr_q8{margin-right:.5rem}.mb_q8{margin-bottom:.5rem}.ml_q8,.mx_q8{margin-left:.5rem}.mx_q8{margin-right:.5rem}.my_q8{margin-bottom:.5rem;margin-top:.5rem}.m_q12{margin:.75rem}.mt_q12{margin-top:.75rem}.mr_q12{margin-right:.75rem}.mb_q12{margin-bottom:.75rem}.ml_q12,.mx_q12{margin-left:.75rem}.mx_q12{margin-right:.75rem}.my_q12{margin-bottom:.75rem;margin-top:.75rem}.m_q16{margin:1rem}.mt_q16{margin-top:1rem}.mr_q16{margin-right:1rem}.mb_q16{margin-bottom:1rem}.ml_q16,.mx_q16{margin-left:1rem}.mx_q16{margin-right:1rem}.my_q16{margin-bottom:1rem;margin-top:1rem}.m_q20{margin:1.25rem}.mt_q20{margin-top:1.25rem}.mr_q20{margin-right:1.25rem}.mb_q20{margin-bottom:1.25rem}.ml_q20,.mx_q20{margin-left:1.25rem}.mx_q20{margin-right:1.25rem}.my_q20{margin-bottom:1.25rem;margin-top:1.25rem}.m_q24{margin:1.5rem}.mt_q24{margin-top:1.5rem}.mr_q24{margin-right:1.5rem}.mb_q24{margin-bottom:1.5rem}.ml_q24,.mx_q24{margin-left:1.5rem}.mx_q24{margin-right:1.5rem}.my_q24{margin-bottom:1.5rem;margin-top:1.5rem}.m_q32{margin:2rem}.mt_q32{margin-top:2rem}.mr_q32{margin-right:2rem}.mb_q32{margin-bottom:2rem}.ml_q32,.mx_q32{margin-left:2rem}.mx_q32{margin-right:2rem}.my_q32{margin-bottom:2rem;margin-top:2rem}.m_q40{margin:2.5rem}.mt_q40{margin-top:2.5rem}.mr_q40{margin-right:2.5rem}.mb_q40{margin-bottom:2.5rem}.ml_q40,.mx_q40{margin-left:2.5rem}.mx_q40{margin-right:2.5rem}.my_q40{margin-bottom:2.5rem;margin-top:2.5rem}.m_q48{margin:3rem}.mt_q48{margin-top:3rem}.mr_q48{margin-right:3rem}.mb_q48{margin-bottom:3rem}.ml_q48,.mx_q48{margin-left:3rem}.mx_q48{margin-right:3rem}.my_q48{margin-bottom:3rem;margin-top:3rem}.m_q56{margin:3.5rem}.mt_q56{margin-top:3.5rem}.mr_q56{margin-right:3.5rem}.mb_q56{margin-bottom:3.5rem}.ml_q56,.mx_q56{margin-left:3.5rem}.mx_q56{margin-right:3.5rem}.my_q56{margin-bottom:3.5rem;margin-top:3.5rem}.m_q64{margin:4rem}.mt_q64{margin-top:4rem}.mr_q64{margin-right:4rem}.mb_q64{margin-bottom:4rem}.ml_q64,.mx_q64{margin-left:4rem}.mx_q64{margin-right:4rem}.my_q64{margin-bottom:4rem;margin-top:4rem}.m_q72{margin:4.5rem}.mt_q72{margin-top:4.5rem}.mr_q72{margin-right:4.5rem}.mb_q72{margin-bottom:4.5rem}.ml_q72,.mx_q72{margin-left:4.5rem}.mx_q72{margin-right:4.5rem}.my_q72{margin-bottom:4.5rem;margin-top:4.5rem}.m_q80{margin:5rem}.mt_q80{margin-top:5rem}.mr_q80{margin-right:5rem}.mb_q80{margin-bottom:5rem}.ml_q80,.mx_q80{margin-left:5rem}.mx_q80{margin-right:5rem}.my_q80{margin-bottom:5rem;margin-top:5rem}.m_q96{margin:6rem}.mt_q96{margin-top:6rem}.mr_q96{margin-right:6rem}.mb_q96{margin-bottom:6rem}.ml_q96,.mx_q96{margin-left:6rem}.mx_q96{margin-right:6rem}.my_q96{margin-bottom:6rem;margin-top:6rem}.m_q112{margin:7rem}.mt_q112{margin-top:7rem}.mr_q112{margin-right:7rem}.mb_q112{margin-bottom:7rem}.ml_q112,.mx_q112{margin-left:7rem}.mx_q112{margin-right:7rem}.my_q112{margin-bottom:7rem;margin-top:7rem}.m_q128{margin:8rem}.mt_q128{margin-top:8rem}.mr_q128{margin-right:8rem}.mb_q128{margin-bottom:8rem}.ml_q128,.mx_q128{margin-left:8rem}.mx_q128{margin-right:8rem}.my_q128{margin-bottom:8rem;margin-top:8rem}.m_q144{margin:9rem}.mt_q144{margin-top:9rem}.mr_q144{margin-right:9rem}.mb_q144{margin-bottom:9rem}.ml_q144,.mx_q144{margin-left:9rem}.mx_q144{margin-right:9rem}.my_q144{margin-bottom:9rem;margin-top:9rem}.m_q160{margin:10rem}.mt_q160{margin-top:10rem}.mr_q160{margin-right:10rem}.mb_q160{margin-bottom:10rem}.ml_q160,.mx_q160{margin-left:10rem}.mx_q160{margin-right:10rem}.my_q160{margin-bottom:10rem;margin-top:10rem}.m_q192{margin:12rem}.mt_q192{margin-top:12rem}.mr_q192{margin-right:12rem}.mb_q192{margin-bottom:12rem}.ml_q192,.mx_q192{margin-left:12rem}.mx_q192{margin-right:12rem}.my_q192{margin-bottom:12rem;margin-top:12rem}.m_q224{margin:14rem}.mt_q224{margin-top:14rem}.mr_q224{margin-right:14rem}.mb_q224{margin-bottom:14rem}.ml_q224,.mx_q224{margin-left:14rem}.mx_q224{margin-right:14rem}.my_q224{margin-bottom:14rem;margin-top:14rem}.m_q256{margin:16rem}.mt_q256{margin-top:16rem}.mr_q256{margin-right:16rem}.mb_q256{margin-bottom:16rem}.ml_q256,.mx_q256{margin-left:16rem}.mx_q256{margin-right:16rem}.my_q256{margin-bottom:16rem;margin-top:16rem}.gap_q0{gap:0}.gap_col_q0{-moz-column-gap:0;column-gap:0}.gap_row_q0{row-gap:0}.gap_q1{gap:.0625rem}.gap_col_q1{-moz-column-gap:.0625rem;column-gap:.0625rem}.gap_row_q1{row-gap:.0625rem}.gap_q2{gap:.125rem}.gap_col_q2{-moz-column-gap:.125rem;column-gap:.125rem}.gap_row_q2{row-gap:.125rem}.gap_q4{gap:.25rem}.gap_col_q4{-moz-column-gap:.25rem;column-gap:.25rem}.gap_row_q4{row-gap:.25rem}.gap_q6{gap:.375rem}.gap_col_q6{-moz-column-gap:.375rem;column-gap:.375rem}.gap_row_q6{row-gap:.375rem}.gap_q8{gap:.5rem}.gap_col_q8{-moz-column-gap:.5rem;column-gap:.5rem}.gap_row_q8{row-gap:.5rem}.gap_q12{gap:.75rem}.gap_col_q12{-moz-column-gap:.75rem;column-gap:.75rem}.gap_row_q12{row-gap:.75rem}.gap_q16{gap:1rem}.gap_col_q16{-moz-column-gap:1rem;column-gap:1rem}.gap_row_q16{row-gap:1rem}.gap_q20{gap:1.25rem}.gap_col_q20{-moz-column-gap:1.25rem;column-gap:1.25rem}.gap_row_q20{row-gap:1.25rem}.gap_q24{gap:1.5rem}.gap_col_q24{-moz-column-gap:1.5rem;column-gap:1.5rem}.gap_row_q24{row-gap:1.5rem}.gap_q32{gap:2rem}.gap_col_q32{-moz-column-gap:2rem;column-gap:2rem}.gap_row_q32{row-gap:2rem}.gap_q40{gap:2.5rem}.gap_col_q40{-moz-column-gap:2.5rem;column-gap:2.5rem}.gap_row_q40{row-gap:2.5rem}.gap_q48{gap:3rem}.gap_col_q48{-moz-column-gap:3rem;column-gap:3rem}.gap_row_q48{row-gap:3rem}.gap_q56{gap:3.5rem}.gap_col_q56{-moz-column-gap:3.5rem;column-gap:3.5rem}.gap_row_q56{row-gap:3.5rem}.gap_q64{gap:4rem}.gap_col_q64{-moz-column-gap:4rem;column-gap:4rem}.gap_row_q64{row-gap:4rem}.gap_q72{gap:4.5rem}.gap_col_q72{-moz-column-gap:4.5rem;column-gap:4.5rem}.gap_row_q72{row-gap:4.5rem}.gap_q80{gap:5rem}.gap_col_q80{-moz-column-gap:5rem;column-gap:5rem}.gap_row_q80{row-gap:5rem}.gap_q96{gap:6rem}.gap_col_q96{-moz-column-gap:6rem;column-gap:6rem}.gap_row_q96{row-gap:6rem}.gap_q112{gap:7rem}.gap_col_q112{-moz-column-gap:7rem;column-gap:7rem}.gap_row_q112{row-gap:7rem}.gap_q128{gap:8rem}.gap_col_q128{-moz-column-gap:8rem;column-gap:8rem}.gap_row_q128{row-gap:8rem}.gap_q144{gap:9rem}.gap_col_q144{-moz-column-gap:9rem;column-gap:9rem}.gap_row_q144{row-gap:9rem}.gap_q160{gap:10rem}.gap_col_q160{-moz-column-gap:10rem;column-gap:10rem}.gap_row_q160{row-gap:10rem}.gap_q192{gap:12rem}.gap_col_q192{-moz-column-gap:12rem;column-gap:12rem}.gap_row_q192{row-gap:12rem}.gap_q224{gap:14rem}.gap_col_q224{-moz-column-gap:14rem;column-gap:14rem}.gap_row_q224{row-gap:14rem}.gap_q256{gap:16rem}.gap_col_q256{-moz-column-gap:16rem;column-gap:16rem}.gap_row_q256{row-gap:16rem}.w_q0{width:0}.min_w_q0{min-width:0}.max_w_q0{max-width:0}.w_q1{width:.0625rem}.min_w_q1{min-width:.0625rem}.max_w_q1{max-width:.0625rem}.w_q2{width:.125rem}.min_w_q2{min-width:.125rem}.max_w_q2{max-width:.125rem}.w_q4{width:.25rem}.min_w_q4{min-width:.25rem}.max_w_q4{max-width:.25rem}.w_q6{width:.375rem}.min_w_q6{min-width:.375rem}.max_w_q6{max-width:.375rem}.w_q8{width:.5rem}.min_w_q8{min-width:.5rem}.max_w_q8{max-width:.5rem}.w_q12{width:.75rem}.min_w_q12{min-width:.75rem}.max_w_q12{max-width:.75rem}.w_q16{width:1rem}.min_w_q16{min-width:1rem}.max_w_q16{max-width:1rem}.w_q20{width:1.25rem}.min_w_q20{min-width:1.25rem}.max_w_q20{max-width:1.25rem}.w_q24{width:1.5rem}.min_w_q24{min-width:1.5rem}.max_w_q24{max-width:1.5rem}.w_q32{width:2rem}.min_w_q32{min-width:2rem}.max_w_q32{max-width:2rem}.w_q40{width:2.5rem}.min_w_q40{min-width:2.5rem}.max_w_q40{max-width:2.5rem}.w_q48{width:3rem}.min_w_q48{min-width:3rem}.max_w_q48{max-width:3rem}.w_q56{width:3.5rem}.min_w_q56{min-width:3.5rem}.max_w_q56{max-width:3.5rem}.w_q64{width:4rem}.min_w_q64{min-width:4rem}.max_w_q64{max-width:4rem}.w_q72{width:4.5rem}.min_w_q72{min-width:4.5rem}.max_w_q72{max-width:4.5rem}.w_q80{width:5rem}.min_w_q80{min-width:5rem}.max_w_q80{max-width:5rem}.w_q96{width:6rem}.min_w_q96{min-width:6rem}.max_w_q96{max-width:6rem}.w_q112{width:7rem}.min_w_q112{min-width:7rem}.max_w_q112{max-width:7rem}.w_q128{width:8rem}.min_w_q128{min-width:8rem}.max_w_q128{max-width:8rem}.w_q144{width:9rem}.min_w_q144{min-width:9rem}.max_w_q144{max-width:9rem}.w_q160{width:10rem}.min_w_q160{min-width:10rem}.max_w_q160{max-width:10rem}.w_q192{width:12rem}.min_w_q192{min-width:12rem}.max_w_q192{max-width:12rem}.w_q224{width:14rem}.min_w_q224{min-width:14rem}.max_w_q224{max-width:14rem}.w_q256{width:16rem}.min_w_q256{min-width:16rem}.max_w_q256{max-width:16rem}.h_q0{height:0}.min_h_q0{min-height:0}.max_h_q0{max-height:0}.h_q1{height:.0625rem}.min_h_q1{min-height:.0625rem}.max_h_q1{max-height:.0625rem}.h_q2{height:.125rem}.min_h_q2{min-height:.125rem}.max_h_q2{max-height:.125rem}.h_q4{height:.25rem}.min_h_q4{min-height:.25rem}.max_h_q4{max-height:.25rem}.h_q6{height:.375rem}.min_h_q6{min-height:.375rem}.max_h_q6{max-height:.375rem}.h_q8{height:.5rem}.min_h_q8{min-height:.5rem}.max_h_q8{max-height:.5rem}.h_q12{height:.75rem}.min_h_q12{min-height:.75rem}.max_h_q12{max-height:.75rem}.h_q16{height:1rem}.min_h_q16{min-height:1rem}.max_h_q16{max-height:1rem}.h_q20{height:1.25rem}.min_h_q20{min-height:1.25rem}.max_h_q20{max-height:1.25rem}.h_q24{height:1.5rem}.min_h_q24{min-height:1.5rem}.max_h_q24{max-height:1.5rem}.h_q32{height:2rem}.min_h_q32{min-height:2rem}.max_h_q32{max-height:2rem}.h_q40{height:2.5rem}.min_h_q40{min-height:2.5rem}.max_h_q40{max-height:2.5rem}.h_q48{height:3rem}.min_h_q48{min-height:3rem}.max_h_q48{max-height:3rem}.h_q56{height:3.5rem}.min_h_q56{min-height:3.5rem}.max_h_q56{max-height:3.5rem}.h_q64{height:4rem}.min_h_q64{min-height:4rem}.max_h_q64{max-height:4rem}.h_q72{height:4.5rem}.min_h_q72{min-height:4.5rem}.max_h_q72{max-height:4.5rem}.h_q80{height:5rem}.min_h_q80{min-height:5rem}.max_h_q80{max-height:5rem}.h_q96{height:6rem}.min_h_q96{min-height:6rem}.max_h_q96{max-height:6rem}.h_q112{height:7rem}.min_h_q112{min-height:7rem}.max_h_q112{max-height:7rem}.h_q128{height:8rem}.min_h_q128{min-height:8rem}.max_h_q128{max-height:8rem}.h_q144{height:9rem}.min_h_q144{min-height:9rem}.max_h_q144{max-height:9rem}.h_q160{height:10rem}.min_h_q160{min-height:10rem}.max_h_q160{max-height:10rem}.h_q192{height:12rem}.min_h_q192{min-height:12rem}.max_h_q192{max-height:12rem}.h_q224{height:14rem}.min_h_q224{min-height:14rem}.max_h_q224{max-height:14rem}.h_q256{height:16rem}.min_h_q256{min-height:16rem}.max_h_q256{max-height:16rem}.inset_q0{bottom:0;left:0;right:0;top:0}.top_q0{top:0}.right_q0{right:0}.bottom_q0{bottom:0}.left_q0{left:0}.inset_x_q0{left:0;right:0}.inset_y_q0{bottom:0;top:0}.inset_q1{bottom:.0625rem;left:.0625rem;right:.0625rem}.inset_q1,.top_q1{top:.0625rem}.right_q1{right:.0625rem}.bottom_q1{bottom:.0625rem}.inset_x_q1,.left_q1{left:.0625rem}.inset_x_q1{right:.0625rem}.inset_y_q1{bottom:.0625rem;top:.0625rem}.inset_q2{bottom:.125rem;left:.125rem;right:.125rem}.inset_q2,.top_q2{top:.125rem}.right_q2{right:.125rem}.bottom_q2{bottom:.125rem}.inset_x_q2,.left_q2{left:.125rem}.inset_x_q2{right:.125rem}.inset_y_q2{bottom:.125rem;top:.125rem}.inset_q4{bottom:.25rem;left:.25rem;right:.25rem}.inset_q4,.top_q4{top:.25rem}.right_q4{right:.25rem}.bottom_q4{bottom:.25rem}.left_q4{left:.25rem}.inset_x_q4{left:.25rem;right:.25rem}.inset_y_q4{bottom:.25rem;top:.25rem}.inset_q6{bottom:.375rem;left:.375rem;right:.375rem}.inset_q6,.top_q6{top:.375rem}.right_q6{right:.375rem}.bottom_q6{bottom:.375rem}.inset_x_q6,.left_q6{left:.375rem}.inset_x_q6{right:.375rem}.inset_y_q6{bottom:.375rem;top:.375rem}.inset_q8{bottom:.5rem;left:.5rem;right:.5rem;top:.5rem}.top_q8{top:.5rem}.right_q8{right:.5rem}.bottom_q8{bottom:.5rem}.left_q8{left:.5rem}.inset_x_q8{left:.5rem;right:.5rem}.inset_y_q8{bottom:.5rem;top:.5rem}.inset_q12{bottom:.75rem;left:.75rem;right:.75rem;top:.75rem}.top_q12{top:.75rem}.right_q12{right:.75rem}.bottom_q12{bottom:.75rem}.left_q12{left:.75rem}.inset_x_q12{left:.75rem;right:.75rem}.inset_y_q12{bottom:.75rem;top:.75rem}.inset_q16{bottom:1rem;left:1rem;right:1rem;top:1rem}.top_q16{top:1rem}.right_q16{right:1rem}.bottom_q16{bottom:1rem}.left_q16{left:1rem}.inset_x_q16{left:1rem;right:1rem}.inset_y_q16{bottom:1rem;top:1rem}.inset_q20{bottom:1.25rem;left:1.25rem;right:1.25rem}.inset_q20,.top_q20{top:1.25rem}.right_q20{right:1.25rem}.bottom_q20{bottom:1.25rem}.left_q20{left:1.25rem}.inset_x_q20{left:1.25rem;right:1.25rem}.inset_y_q20{bottom:1.25rem;top:1.25rem}.inset_q24{bottom:1.5rem;left:1.5rem;right:1.5rem;top:1.5rem}.top_q24{top:1.5rem}.right_q24{right:1.5rem}.bottom_q24{bottom:1.5rem}.left_q24{left:1.5rem}.inset_x_q24{left:1.5rem;right:1.5rem}.inset_y_q24{bottom:1.5rem;top:1.5rem}.inset_q32{bottom:2rem;left:2rem;right:2rem;top:2rem}.top_q32{top:2rem}.right_q32{right:2rem}.bottom_q32{bottom:2rem}.left_q32{left:2rem}.inset_x_q32{left:2rem;right:2rem}.inset_y_q32{bottom:2rem;top:2rem}.inset_q40{bottom:2.5rem;left:2.5rem;right:2.5rem;top:2.5rem}.top_q40{top:2.5rem}.right_q40{right:2.5rem}.bottom_q40{bottom:2.5rem}.left_q40{left:2.5rem}.inset_x_q40{left:2.5rem;right:2.5rem}.inset_y_q40{bottom:2.5rem;top:2.5rem}.inset_q48{bottom:3rem;left:3rem;right:3rem;top:3rem}.top_q48{top:3rem}.right_q48{right:3rem}.bottom_q48{bottom:3rem}.left_q48{left:3rem}.inset_x_q48{left:3rem;right:3rem}.inset_y_q48{bottom:3rem;top:3rem}.inset_q56{bottom:3.5rem;left:3.5rem;right:3.5rem;top:3.5rem}.top_q56{top:3.5rem}.right_q56{right:3.5rem}.bottom_q56{bottom:3.5rem}.left_q56{left:3.5rem}.inset_x_q56{left:3.5rem;right:3.5rem}.inset_y_q56{bottom:3.5rem;top:3.5rem}.inset_q64{bottom:4rem;left:4rem;right:4rem;top:4rem}.top_q64{top:4rem}.right_q64{right:4rem}.bottom_q64{bottom:4rem}.left_q64{left:4rem}.inset_x_q64{left:4rem;right:4rem}.inset_y_q64{bottom:4rem;top:4rem}.inset_q72{bottom:4.5rem;left:4.5rem;right:4.5rem;top:4.5rem}.top_q72{top:4.5rem}.right_q72{right:4.5rem}.bottom_q72{bottom:4.5rem}.left_q72{left:4.5rem}.inset_x_q72{left:4.5rem;right:4.5rem}.inset_y_q72{bottom:4.5rem;top:4.5rem}.inset_q80{bottom:5rem;left:5rem;right:5rem;top:5rem}.top_q80{top:5rem}.right_q80{right:5rem}.bottom_q80{bottom:5rem}.left_q80{left:5rem}.inset_x_q80{left:5rem;right:5rem}.inset_y_q80{bottom:5rem;top:5rem}.inset_q96{bottom:6rem;left:6rem;right:6rem;top:6rem}.top_q96{top:6rem}.right_q96{right:6rem}.bottom_q96{bottom:6rem}.left_q96{left:6rem}.inset_x_q96{left:6rem;right:6rem}.inset_y_q96{bottom:6rem;top:6rem}.inset_q112{bottom:7rem;left:7rem;right:7rem;top:7rem}.top_q112{top:7rem}.right_q112{right:7rem}.bottom_q112{bottom:7rem}.left_q112{left:7rem}.inset_x_q112{left:7rem;right:7rem}.inset_y_q112{bottom:7rem;top:7rem}.inset_q128{bottom:8rem;left:8rem;right:8rem;top:8rem}.top_q128{top:8rem}.right_q128{right:8rem}.bottom_q128{bottom:8rem}.left_q128{left:8rem}.inset_x_q128{left:8rem;right:8rem}.inset_y_q128{bottom:8rem;top:8rem}.inset_q144{bottom:9rem;left:9rem;right:9rem;top:9rem}.top_q144{top:9rem}.right_q144{right:9rem}.bottom_q144{bottom:9rem}.left_q144{left:9rem}.inset_x_q144{left:9rem;right:9rem}.inset_y_q144{bottom:9rem;top:9rem}.inset_q160{bottom:10rem;left:10rem;right:10rem;top:10rem}.top_q160{top:10rem}.right_q160{right:10rem}.bottom_q160{bottom:10rem}.left_q160{left:10rem}.inset_x_q160{left:10rem;right:10rem}.inset_y_q160{bottom:10rem;top:10rem}.inset_q192{bottom:12rem;left:12rem;right:12rem;top:12rem}.top_q192{top:12rem}.right_q192{right:12rem}.bottom_q192{bottom:12rem}.left_q192{left:12rem}.inset_x_q192{left:12rem;right:12rem}.inset_y_q192{bottom:12rem;top:12rem}.inset_q224{bottom:14rem;left:14rem;right:14rem;top:14rem}.top_q224{top:14rem}.right_q224{right:14rem}.bottom_q224{bottom:14rem}.left_q224{left:14rem}.inset_x_q224{left:14rem;right:14rem}.inset_y_q224{bottom:14rem;top:14rem}.inset_q256{bottom:16rem;left:16rem;right:16rem;top:16rem}.top_q256{top:16rem}.right_q256{right:16rem}.bottom_q256{bottom:16rem}.left_q256{left:16rem}.inset_x_q256{left:16rem;right:16rem}.inset_y_q256{bottom:16rem;top:16rem}.border_q0{border-width:0}.border_t_q0{border-top-width:0}.border_r_q0{border-right-width:0}.border_b_q0{border-bottom-width:0}.border_l_q0,.border_x_q0{border-left-width:0}.border_x_q0{border-right-width:0}.border_y_q0{border-bottom-width:0;border-top-width:0}.border_q1{border-width:.0625rem}.border_t_q1{border-top-width:.0625rem}.border_r_q1{border-right-width:.0625rem}.border_b_q1{border-bottom-width:.0625rem}.border_l_q1,.border_x_q1{border-left-width:.0625rem}.border_x_q1{border-right-width:.0625rem}.border_y_q1{border-bottom-width:.0625rem;border-top-width:.0625rem}.border_q2{border-width:.125rem}.border_t_q2{border-top-width:.125rem}.border_r_q2{border-right-width:.125rem}.border_b_q2{border-bottom-width:.125rem}.border_l_q2,.border_x_q2{border-left-width:.125rem}.border_x_q2{border-right-width:.125rem}.border_y_q2{border-bottom-width:.125rem;border-top-width:.125rem}.border_q4{border-width:.25rem}.border_t_q4{border-top-width:.25rem}.border_r_q4{border-right-width:.25rem}.border_b_q4{border-bottom-width:.25rem}.border_l_q4,.border_x_q4{border-left-width:.25rem}.border_x_q4{border-right-width:.25rem}.border_y_q4{border-bottom-width:.25rem;border-top-width:.25rem}.border_q6{border-width:.375rem}.border_t_q6{border-top-width:.375rem}.border_r_q6{border-right-width:.375rem}.border_b_q6{border-bottom-width:.375rem}.border_l_q6,.border_x_q6{border-left-width:.375rem}.border_x_q6{border-right-width:.375rem}.border_y_q6{border-bottom-width:.375rem;border-top-width:.375rem}.border_q8{border-width:.5rem}.border_t_q8{border-top-width:.5rem}.border_r_q8{border-right-width:.5rem}.border_b_q8{border-bottom-width:.5rem}.border_l_q8,.border_x_q8{border-left-width:.5rem}.border_x_q8{border-right-width:.5rem}.border_y_q8{border-bottom-width:.5rem;border-top-width:.5rem}.border_q12{border-width:.75rem}.border_t_q12{border-top-width:.75rem}.border_r_q12{border-right-width:.75rem}.border_b_q12{border-bottom-width:.75rem}.border_l_q12,.border_x_q12{border-left-width:.75rem}.border_x_q12{border-right-width:.75rem}.border_y_q12{border-bottom-width:.75rem;border-top-width:.75rem}.border_q16{border-width:1rem}.border_t_q16{border-top-width:1rem}.border_r_q16{border-right-width:1rem}.border_b_q16{border-bottom-width:1rem}.border_l_q16,.border_x_q16{border-left-width:1rem}.border_x_q16{border-right-width:1rem}.border_y_q16{border-bottom-width:1rem;border-top-width:1rem}.border_q20{border-width:1.25rem}.border_t_q20{border-top-width:1.25rem}.border_r_q20{border-right-width:1.25rem}.border_b_q20{border-bottom-width:1.25rem}.border_l_q20,.border_x_q20{border-left-width:1.25rem}.border_x_q20{border-right-width:1.25rem}.border_y_q20{border-bottom-width:1.25rem;border-top-width:1.25rem}.border_q24{border-width:1.5rem}.border_t_q24{border-top-width:1.5rem}.border_r_q24{border-right-width:1.5rem}.border_b_q24{border-bottom-width:1.5rem}.border_l_q24,.border_x_q24{border-left-width:1.5rem}.border_x_q24{border-right-width:1.5rem}.border_y_q24{border-bottom-width:1.5rem;border-top-width:1.5rem}.border_q32{border-width:2rem}.border_t_q32{border-top-width:2rem}.border_r_q32{border-right-width:2rem}.border_b_q32{border-bottom-width:2rem}.border_l_q32,.border_x_q32{border-left-width:2rem}.border_x_q32{border-right-width:2rem}.border_y_q32{border-bottom-width:2rem;border-top-width:2rem}.border_q40{border-width:2.5rem}.border_t_q40{border-top-width:2.5rem}.border_r_q40{border-right-width:2.5rem}.border_b_q40{border-bottom-width:2.5rem}.border_l_q40,.border_x_q40{border-left-width:2.5rem}.border_x_q40{border-right-width:2.5rem}.border_y_q40{border-bottom-width:2.5rem;border-top-width:2.5rem}.border_q48{border-width:3rem}.border_t_q48{border-top-width:3rem}.border_r_q48{border-right-width:3rem}.border_b_q48{border-bottom-width:3rem}.border_l_q48,.border_x_q48{border-left-width:3rem}.border_x_q48{border-right-width:3rem}.border_y_q48{border-bottom-width:3rem;border-top-width:3rem}.border_q56{border-width:3.5rem}.border_t_q56{border-top-width:3.5rem}.border_r_q56{border-right-width:3.5rem}.border_b_q56{border-bottom-width:3.5rem}.border_l_q56,.border_x_q56{border-left-width:3.5rem}.border_x_q56{border-right-width:3.5rem}.border_y_q56{border-bottom-width:3.5rem;border-top-width:3.5rem}.border_q64{border-width:4rem}.border_t_q64{border-top-width:4rem}.border_r_q64{border-right-width:4rem}.border_b_q64{border-bottom-width:4rem}.border_l_q64,.border_x_q64{border-left-width:4rem}.border_x_q64{border-right-width:4rem}.border_y_q64{border-bottom-width:4rem;border-top-width:4rem}.border_q72{border-width:4.5rem}.border_t_q72{border-top-width:4.5rem}.border_r_q72{border-right-width:4.5rem}.border_b_q72{border-bottom-width:4.5rem}.border_l_q72,.border_x_q72{border-left-width:4.5rem}.border_x_q72{border-right-width:4.5rem}.border_y_q72{border-bottom-width:4.5rem;border-top-width:4.5rem}.border_q80{border-width:5rem}.border_t_q80{border-top-width:5rem}.border_r_q80{border-right-width:5rem}.border_b_q80{border-bottom-width:5rem}.border_l_q80,.border_x_q80{border-left-width:5rem}.border_x_q80{border-right-width:5rem}.border_y_q80{border-bottom-width:5rem;border-top-width:5rem}.border_q96{border-width:6rem}.border_t_q96{border-top-width:6rem}.border_r_q96{border-right-width:6rem}.border_b_q96{border-bottom-width:6rem}.border_l_q96,.border_x_q96{border-left-width:6rem}.border_x_q96{border-right-width:6rem}.border_y_q96{border-bottom-width:6rem;border-top-width:6rem}.border_q112{border-width:7rem}.border_t_q112{border-top-width:7rem}.border_r_q112{border-right-width:7rem}.border_b_q112{border-bottom-width:7rem}.border_l_q112,.border_x_q112{border-left-width:7rem}.border_x_q112{border-right-width:7rem}.border_y_q112{border-bottom-width:7rem;border-top-width:7rem}.border_q128{border-width:8rem}.border_t_q128{border-top-width:8rem}.border_r_q128{border-right-width:8rem}.border_b_q128{border-bottom-width:8rem}.border_l_q128,.border_x_q128{border-left-width:8rem}.border_x_q128{border-right-width:8rem}.border_y_q128{border-bottom-width:8rem;border-top-width:8rem}.border_q144{border-width:9rem}.border_t_q144{border-top-width:9rem}.border_r_q144{border-right-width:9rem}.border_b_q144{border-bottom-width:9rem}.border_l_q144,.border_x_q144{border-left-width:9rem}.border_x_q144{border-right-width:9rem}.border_y_q144{border-bottom-width:9rem;border-top-width:9rem}.border_q160{border-width:10rem}.border_t_q160{border-top-width:10rem}.border_r_q160{border-right-width:10rem}.border_b_q160{border-bottom-width:10rem}.border_l_q160,.border_x_q160{border-left-width:10rem}.border_x_q160{border-right-width:10rem}.border_y_q160{border-bottom-width:10rem;border-top-width:10rem}.border_q192{border-width:12rem}.border_t_q192{border-top-width:12rem}.border_r_q192{border-right-width:12rem}.border_b_q192{border-bottom-width:12rem}.border_l_q192,.border_x_q192{border-left-width:12rem}.border_x_q192{border-right-width:12rem}.border_y_q192{border-bottom-width:12rem;border-top-width:12rem}.border_q224{border-width:14rem}.border_t_q224{border-top-width:14rem}.border_r_q224{border-right-width:14rem}.border_b_q224{border-bottom-width:14rem}.border_l_q224,.border_x_q224{border-left-width:14rem}.border_x_q224{border-right-width:14rem}.border_y_q224{border-bottom-width:14rem;border-top-width:14rem}.border_q256{border-width:16rem}.border_t_q256{border-top-width:16rem}.border_r_q256{border-right-width:16rem}.border_b_q256{border-bottom-width:16rem}.border_l_q256,.border_x_q256{border-left-width:16rem}.border_x_q256{border-right-width:16rem}.border_y_q256{border-bottom-width:16rem;border-top-width:16rem}.rounded_q0{border-radius:0}.rounded_t_q0{border-top-left-radius:0;border-top-right-radius:0}.rounded_r_q0{border-top-right-radius:0}.rounded_b_q0,.rounded_r_q0{border-bottom-right-radius:0}.rounded_b_q0,.rounded_l_q0{border-bottom-left-radius:0}.rounded_l_q0,.rounded_tl_q0{border-top-left-radius:0}.rounded_tr_q0{border-top-right-radius:0}.rounded_br_q0{border-bottom-right-radius:0}.rounded_bl_q0{border-bottom-left-radius:0}.rounded_q1{border-radius:.0625rem}.rounded_t_q1{border-top-left-radius:.0625rem}.rounded_r_q1,.rounded_t_q1{border-top-right-radius:.0625rem}.rounded_b_q1,.rounded_r_q1{border-bottom-right-radius:.0625rem}.rounded_b_q1,.rounded_l_q1{border-bottom-left-radius:.0625rem}.rounded_l_q1,.rounded_tl_q1{border-top-left-radius:.0625rem}.rounded_tr_q1{border-top-right-radius:.0625rem}.rounded_br_q1{border-bottom-right-radius:.0625rem}.rounded_bl_q1{border-bottom-left-radius:.0625rem}.rounded_q2{border-radius:.125rem}.rounded_t_q2{border-top-left-radius:.125rem}.rounded_r_q2,.rounded_t_q2{border-top-right-radius:.125rem}.rounded_b_q2,.rounded_r_q2{border-bottom-right-radius:.125rem}.rounded_b_q2,.rounded_l_q2{border-bottom-left-radius:.125rem}.rounded_l_q2,.rounded_tl_q2{border-top-left-radius:.125rem}.rounded_tr_q2{border-top-right-radius:.125rem}.rounded_br_q2{border-bottom-right-radius:.125rem}.rounded_bl_q2{border-bottom-left-radius:.125rem}.rounded_q4{border-radius:.25rem}.rounded_t_q4{border-top-left-radius:.25rem}.rounded_r_q4,.rounded_t_q4{border-top-right-radius:.25rem}.rounded_b_q4,.rounded_r_q4{border-bottom-right-radius:.25rem}.rounded_b_q4,.rounded_l_q4{border-bottom-left-radius:.25rem}.rounded_l_q4,.rounded_tl_q4{border-top-left-radius:.25rem}.rounded_tr_q4{border-top-right-radius:.25rem}.rounded_br_q4{border-bottom-right-radius:.25rem}.rounded_bl_q4{border-bottom-left-radius:.25rem}.rounded_q6{border-radius:.375rem}.rounded_t_q6{border-top-left-radius:.375rem}.rounded_r_q6,.rounded_t_q6{border-top-right-radius:.375rem}.rounded_b_q6,.rounded_r_q6{border-bottom-right-radius:.375rem}.rounded_b_q6,.rounded_l_q6{border-bottom-left-radius:.375rem}.rounded_l_q6,.rounded_tl_q6{border-top-left-radius:.375rem}.rounded_tr_q6{border-top-right-radius:.375rem}.rounded_br_q6{border-bottom-right-radius:.375rem}.rounded_bl_q6{border-bottom-left-radius:.375rem}.rounded_q8{border-radius:.5rem}.rounded_t_q8{border-top-left-radius:.5rem}.rounded_r_q8,.rounded_t_q8{border-top-right-radius:.5rem}.rounded_b_q8,.rounded_r_q8{border-bottom-right-radius:.5rem}.rounded_b_q8,.rounded_l_q8{border-bottom-left-radius:.5rem}.rounded_l_q8,.rounded_tl_q8{border-top-left-radius:.5rem}.rounded_tr_q8{border-top-right-radius:.5rem}.rounded_br_q8{border-bottom-right-radius:.5rem}.rounded_bl_q8{border-bottom-left-radius:.5rem}.rounded_q12{border-radius:.75rem}.rounded_t_q12{border-top-left-radius:.75rem}.rounded_r_q12,.rounded_t_q12{border-top-right-radius:.75rem}.rounded_b_q12,.rounded_r_q12{border-bottom-right-radius:.75rem}.rounded_b_q12,.rounded_l_q12{border-bottom-left-radius:.75rem}.rounded_l_q12,.rounded_tl_q12{border-top-left-radius:.75rem}.rounded_tr_q12{border-top-right-radius:.75rem}.rounded_br_q12{border-bottom-right-radius:.75rem}.rounded_bl_q12{border-bottom-left-radius:.75rem}.rounded_q16{border-radius:1rem}.rounded_t_q16{border-top-left-radius:1rem;border-top-right-radius:1rem}.rounded_r_q16{border-top-right-radius:1rem}.rounded_b_q16,.rounded_r_q16{border-bottom-right-radius:1rem}.rounded_b_q16,.rounded_l_q16{border-bottom-left-radius:1rem}.rounded_l_q16,.rounded_tl_q16{border-top-left-radius:1rem}.rounded_tr_q16{border-top-right-radius:1rem}.rounded_br_q16{border-bottom-right-radius:1rem}.rounded_bl_q16{border-bottom-left-radius:1rem}.rounded_q20{border-radius:1.25rem}.rounded_t_q20{border-top-left-radius:1.25rem}.rounded_r_q20,.rounded_t_q20{border-top-right-radius:1.25rem}.rounded_b_q20,.rounded_r_q20{border-bottom-right-radius:1.25rem}.rounded_b_q20,.rounded_l_q20{border-bottom-left-radius:1.25rem}.rounded_l_q20,.rounded_tl_q20{border-top-left-radius:1.25rem}.rounded_tr_q20{border-top-right-radius:1.25rem}.rounded_br_q20{border-bottom-right-radius:1.25rem}.rounded_bl_q20{border-bottom-left-radius:1.25rem}.rounded_q24{border-radius:1.5rem}.rounded_t_q24{border-top-left-radius:1.5rem}.rounded_r_q24,.rounded_t_q24{border-top-right-radius:1.5rem}.rounded_b_q24,.rounded_r_q24{border-bottom-right-radius:1.5rem}.rounded_b_q24,.rounded_l_q24{border-bottom-left-radius:1.5rem}.rounded_l_q24,.rounded_tl_q24{border-top-left-radius:1.5rem}.rounded_tr_q24{border-top-right-radius:1.5rem}.rounded_br_q24{border-bottom-right-radius:1.5rem}.rounded_bl_q24{border-bottom-left-radius:1.5rem}.rounded_q32{border-radius:2rem}.rounded_t_q32{border-top-left-radius:2rem;border-top-right-radius:2rem}.rounded_r_q32{border-top-right-radius:2rem}.rounded_b_q32,.rounded_r_q32{border-bottom-right-radius:2rem}.rounded_b_q32,.rounded_l_q32{border-bottom-left-radius:2rem}.rounded_l_q32,.rounded_tl_q32{border-top-left-radius:2rem}.rounded_tr_q32{border-top-right-radius:2rem}.rounded_br_q32{border-bottom-right-radius:2rem}.rounded_bl_q32{border-bottom-left-radius:2rem}.rounded_q40{border-radius:2.5rem}.rounded_t_q40{border-top-left-radius:2.5rem}.rounded_r_q40,.rounded_t_q40{border-top-right-radius:2.5rem}.rounded_b_q40,.rounded_r_q40{border-bottom-right-radius:2.5rem}.rounded_b_q40,.rounded_l_q40{border-bottom-left-radius:2.5rem}.rounded_l_q40,.rounded_tl_q40{border-top-left-radius:2.5rem}.rounded_tr_q40{border-top-right-radius:2.5rem}.rounded_br_q40{border-bottom-right-radius:2.5rem}.rounded_bl_q40{border-bottom-left-radius:2.5rem}.rounded_q48{border-radius:3rem}.rounded_t_q48{border-top-left-radius:3rem;border-top-right-radius:3rem}.rounded_r_q48{border-top-right-radius:3rem}.rounded_b_q48,.rounded_r_q48{border-bottom-right-radius:3rem}.rounded_b_q48,.rounded_l_q48{border-bottom-left-radius:3rem}.rounded_l_q48,.rounded_tl_q48{border-top-left-radius:3rem}.rounded_tr_q48{border-top-right-radius:3rem}.rounded_br_q48{border-bottom-right-radius:3rem}.rounded_bl_q48{border-bottom-left-radius:3rem}.rounded_q56{border-radius:3.5rem}.rounded_t_q56{border-top-left-radius:3.5rem}.rounded_r_q56,.rounded_t_q56{border-top-right-radius:3.5rem}.rounded_b_q56,.rounded_r_q56{border-bottom-right-radius:3.5rem}.rounded_b_q56,.rounded_l_q56{border-bottom-left-radius:3.5rem}.rounded_l_q56,.rounded_tl_q56{border-top-left-radius:3.5rem}.rounded_tr_q56{border-top-right-radius:3.5rem}.rounded_br_q56{border-bottom-right-radius:3.5rem}.rounded_bl_q56{border-bottom-left-radius:3.5rem}.rounded_q64{border-radius:4rem}.rounded_t_q64{border-top-left-radius:4rem;border-top-right-radius:4rem}.rounded_r_q64{border-top-right-radius:4rem}.rounded_b_q64,.rounded_r_q64{border-bottom-right-radius:4rem}.rounded_b_q64,.rounded_l_q64{border-bottom-left-radius:4rem}.rounded_l_q64,.rounded_tl_q64{border-top-left-radius:4rem}.rounded_tr_q64{border-top-right-radius:4rem}.rounded_br_q64{border-bottom-right-radius:4rem}.rounded_bl_q64{border-bottom-left-radius:4rem}.rounded_q72{border-radius:4.5rem}.rounded_t_q72{border-top-left-radius:4.5rem}.rounded_r_q72,.rounded_t_q72{border-top-right-radius:4.5rem}.rounded_b_q72,.rounded_r_q72{border-bottom-right-radius:4.5rem}.rounded_b_q72,.rounded_l_q72{border-bottom-left-radius:4.5rem}.rounded_l_q72,.rounded_tl_q72{border-top-left-radius:4.5rem}.rounded_tr_q72{border-top-right-radius:4.5rem}.rounded_br_q72{border-bottom-right-radius:4.5rem}.rounded_bl_q72{border-bottom-left-radius:4.5rem}.rounded_q80{border-radius:5rem}.rounded_t_q80{border-top-left-radius:5rem;border-top-right-radius:5rem}.rounded_r_q80{border-top-right-radius:5rem}.rounded_b_q80,.rounded_r_q80{border-bottom-right-radius:5rem}.rounded_b_q80,.rounded_l_q80{border-bottom-left-radius:5rem}.rounded_l_q80,.rounded_tl_q80{border-top-left-radius:5rem}.rounded_tr_q80{border-top-right-radius:5rem}.rounded_br_q80{border-bottom-right-radius:5rem}.rounded_bl_q80{border-bottom-left-radius:5rem}.rounded_q96{border-radius:6rem}.rounded_t_q96{border-top-left-radius:6rem;border-top-right-radius:6rem}.rounded_r_q96{border-top-right-radius:6rem}.rounded_b_q96,.rounded_r_q96{border-bottom-right-radius:6rem}.rounded_b_q96,.rounded_l_q96{border-bottom-left-radius:6rem}.rounded_l_q96,.rounded_tl_q96{border-top-left-radius:6rem}.rounded_tr_q96{border-top-right-radius:6rem}.rounded_br_q96{border-bottom-right-radius:6rem}.rounded_bl_q96{border-bottom-left-radius:6rem}.rounded_q112{border-radius:7rem}.rounded_t_q112{border-top-left-radius:7rem;border-top-right-radius:7rem}.rounded_r_q112{border-bottom-right-radius:7rem;border-top-right-radius:7rem}.rounded_b_q112{border-bottom-left-radius:7rem;border-bottom-right-radius:7rem}.rounded_l_q112{border-bottom-left-radius:7rem}.rounded_l_q112,.rounded_tl_q112{border-top-left-radius:7rem}.rounded_tr_q112{border-top-right-radius:7rem}.rounded_br_q112{border-bottom-right-radius:7rem}.rounded_bl_q112{border-bottom-left-radius:7rem}.rounded_q128{border-radius:8rem}.rounded_t_q128{border-top-left-radius:8rem;border-top-right-radius:8rem}.rounded_r_q128{border-bottom-right-radius:8rem;border-top-right-radius:8rem}.rounded_b_q128{border-bottom-left-radius:8rem;border-bottom-right-radius:8rem}.rounded_l_q128{border-bottom-left-radius:8rem}.rounded_l_q128,.rounded_tl_q128{border-top-left-radius:8rem}.rounded_tr_q128{border-top-right-radius:8rem}.rounded_br_q128{border-bottom-right-radius:8rem}.rounded_bl_q128{border-bottom-left-radius:8rem}.rounded_q144{border-radius:9rem}.rounded_t_q144{border-top-left-radius:9rem;border-top-right-radius:9rem}.rounded_r_q144{border-bottom-right-radius:9rem;border-top-right-radius:9rem}.rounded_b_q144{border-bottom-left-radius:9rem;border-bottom-right-radius:9rem}.rounded_l_q144{border-bottom-left-radius:9rem}.rounded_l_q144,.rounded_tl_q144{border-top-left-radius:9rem}.rounded_tr_q144{border-top-right-radius:9rem}.rounded_br_q144{border-bottom-right-radius:9rem}.rounded_bl_q144{border-bottom-left-radius:9rem}.rounded_q160{border-radius:10rem}.rounded_t_q160{border-top-left-radius:10rem;border-top-right-radius:10rem}.rounded_r_q160{border-top-right-radius:10rem}.rounded_b_q160,.rounded_r_q160{border-bottom-right-radius:10rem}.rounded_b_q160,.rounded_l_q160{border-bottom-left-radius:10rem}.rounded_l_q160,.rounded_tl_q160{border-top-left-radius:10rem}.rounded_tr_q160{border-top-right-radius:10rem}.rounded_br_q160{border-bottom-right-radius:10rem}.rounded_bl_q160{border-bottom-left-radius:10rem}.rounded_q192{border-radius:12rem}.rounded_t_q192{border-top-left-radius:12rem;border-top-right-radius:12rem}.rounded_r_q192{border-top-right-radius:12rem}.rounded_b_q192,.rounded_r_q192{border-bottom-right-radius:12rem}.rounded_b_q192,.rounded_l_q192{border-bottom-left-radius:12rem}.rounded_l_q192,.rounded_tl_q192{border-top-left-radius:12rem}.rounded_tr_q192{border-top-right-radius:12rem}.rounded_br_q192{border-bottom-right-radius:12rem}.rounded_bl_q192{border-bottom-left-radius:12rem}.rounded_q224{border-radius:14rem}.rounded_t_q224{border-top-left-radius:14rem;border-top-right-radius:14rem}.rounded_r_q224{border-top-right-radius:14rem}.rounded_b_q224,.rounded_r_q224{border-bottom-right-radius:14rem}.rounded_b_q224,.rounded_l_q224{border-bottom-left-radius:14rem}.rounded_l_q224,.rounded_tl_q224{border-top-left-radius:14rem}.rounded_tr_q224{border-top-right-radius:14rem}.rounded_br_q224{border-bottom-right-radius:14rem}.rounded_bl_q224{border-bottom-left-radius:14rem}.rounded_q256{border-radius:16rem}.rounded_t_q256{border-top-left-radius:16rem;border-top-right-radius:16rem}.rounded_r_q256{border-top-right-radius:16rem}.rounded_b_q256,.rounded_r_q256{border-bottom-right-radius:16rem}.rounded_b_q256,.rounded_l_q256{border-bottom-left-radius:16rem}.rounded_l_q256,.rounded_tl_q256{border-top-left-radius:16rem}.rounded_tr_q256{border-top-right-radius:16rem}.rounded_br_q256{border-bottom-right-radius:16rem}.rounded_bl_q256{border-bottom-left-radius:16rem}@media(min-width:240px){.us_p_q0{padding:0}.us_pt_q0{padding-top:0}.us_pr_q0{padding-right:0}.us_pb_q0{padding-bottom:0}.us_pl_q0,.us_px_q0{padding-left:0}.us_px_q0{padding-right:0}.us_py_q0{padding-bottom:0;padding-top:0}.us_m_q0{margin:0}.us_mt_q0{margin-top:0}.us_mr_q0{margin-right:0}.us_mb_q0{margin-bottom:0}.us_ml_q0,.us_mx_q0{margin-left:0}.us_mx_q0{margin-right:0}.us_my_q0{margin-bottom:0;margin-top:0}.us_gap_q0{gap:0}.us_gap_col_q0{-moz-column-gap:0;column-gap:0}.us_gap_row_q0{row-gap:0}.us_w_q0{width:0}.us_min_w_q0{min-width:0}.us_max_w_q0{max-width:0}.us_h_q0{height:0}.us_min_h_q0{min-height:0}.us_max_h_q0{max-height:0}.us_inset_q0{bottom:0;left:0;right:0;top:0}.us_top_q0{top:0}.us_right_q0{right:0}.us_bottom_q0{bottom:0}.us_left_q0{left:0}.us_inset_x_q0{left:0;right:0}.us_inset_y_q0{bottom:0;top:0}.us_border_q0{border-width:0}.us_border_t_q0{border-top-width:0}.us_border_r_q0{border-right-width:0}.us_border_b_q0{border-bottom-width:0}.us_border_l_q0,.us_border_x_q0{border-left-width:0}.us_border_x_q0{border-right-width:0}.us_border_y_q0{border-bottom-width:0;border-top-width:0}.us_rounded_q0{border-radius:0}.us_rounded_t_q0{border-top-left-radius:0;border-top-right-radius:0}.us_rounded_r_q0{border-bottom-right-radius:0;border-top-right-radius:0}.us_rounded_b_q0{border-bottom-left-radius:0;border-bottom-right-radius:0}.us_rounded_l_q0{border-bottom-left-radius:0}.us_rounded_l_q0,.us_rounded_tl_q0{border-top-left-radius:0}.us_rounded_tr_q0{border-top-right-radius:0}.us_rounded_br_q0{border-bottom-right-radius:0}.us_rounded_bl_q0{border-bottom-left-radius:0}.us_p_q1{padding:.0625rem}.us_pt_q1{padding-top:.0625rem}.us_pr_q1{padding-right:.0625rem}.us_pb_q1{padding-bottom:.0625rem}.us_pl_q1,.us_px_q1{padding-left:.0625rem}.us_px_q1{padding-right:.0625rem}.us_py_q1{padding-bottom:.0625rem;padding-top:.0625rem}.us_m_q1{margin:.0625rem}.us_mt_q1{margin-top:.0625rem}.us_mr_q1{margin-right:.0625rem}.us_mb_q1{margin-bottom:.0625rem}.us_ml_q1,.us_mx_q1{margin-left:.0625rem}.us_mx_q1{margin-right:.0625rem}.us_my_q1{margin-bottom:.0625rem;margin-top:.0625rem}.us_gap_q1{gap:.0625rem}.us_gap_col_q1{-moz-column-gap:.0625rem;column-gap:.0625rem}.us_gap_row_q1{row-gap:.0625rem}.us_w_q1{width:.0625rem}.us_min_w_q1{min-width:.0625rem}.us_max_w_q1{max-width:.0625rem}.us_h_q1{height:.0625rem}.us_min_h_q1{min-height:.0625rem}.us_max_h_q1{max-height:.0625rem}.us_inset_q1{bottom:.0625rem;left:.0625rem;right:.0625rem;top:.0625rem}.us_top_q1{top:.0625rem}.us_right_q1{right:.0625rem}.us_bottom_q1{bottom:.0625rem}.us_left_q1{left:.0625rem}.us_inset_x_q1{left:.0625rem;right:.0625rem}.us_inset_y_q1{bottom:.0625rem;top:.0625rem}.us_border_q1{border-width:.0625rem}.us_border_t_q1{border-top-width:.0625rem}.us_border_r_q1{border-right-width:.0625rem}.us_border_b_q1{border-bottom-width:.0625rem}.us_border_l_q1,.us_border_x_q1{border-left-width:.0625rem}.us_border_x_q1{border-right-width:.0625rem}.us_border_y_q1{border-bottom-width:.0625rem;border-top-width:.0625rem}.us_rounded_q1{border-radius:.0625rem}.us_rounded_t_q1{border-top-left-radius:.0625rem;border-top-right-radius:.0625rem}.us_rounded_r_q1{border-top-right-radius:.0625rem}.us_rounded_b_q1,.us_rounded_r_q1{border-bottom-right-radius:.0625rem}.us_rounded_b_q1,.us_rounded_l_q1{border-bottom-left-radius:.0625rem}.us_rounded_l_q1,.us_rounded_tl_q1{border-top-left-radius:.0625rem}.us_rounded_tr_q1{border-top-right-radius:.0625rem}.us_rounded_br_q1{border-bottom-right-radius:.0625rem}.us_rounded_bl_q1{border-bottom-left-radius:.0625rem}.us_p_q2{padding:.125rem}.us_pt_q2{padding-top:.125rem}.us_pr_q2{padding-right:.125rem}.us_pb_q2{padding-bottom:.125rem}.us_pl_q2,.us_px_q2{padding-left:.125rem}.us_px_q2{padding-right:.125rem}.us_py_q2{padding-bottom:.125rem;padding-top:.125rem}.us_m_q2{margin:.125rem}.us_mt_q2{margin-top:.125rem}.us_mr_q2{margin-right:.125rem}.us_mb_q2{margin-bottom:.125rem}.us_ml_q2,.us_mx_q2{margin-left:.125rem}.us_mx_q2{margin-right:.125rem}.us_my_q2{margin-bottom:.125rem;margin-top:.125rem}.us_gap_q2{gap:.125rem}.us_gap_col_q2{-moz-column-gap:.125rem;column-gap:.125rem}.us_gap_row_q2{row-gap:.125rem}.us_w_q2{width:.125rem}.us_min_w_q2{min-width:.125rem}.us_max_w_q2{max-width:.125rem}.us_h_q2{height:.125rem}.us_min_h_q2{min-height:.125rem}.us_max_h_q2{max-height:.125rem}.us_inset_q2{bottom:.125rem;left:.125rem;right:.125rem;top:.125rem}.us_top_q2{top:.125rem}.us_right_q2{right:.125rem}.us_bottom_q2{bottom:.125rem}.us_left_q2{left:.125rem}.us_inset_x_q2{left:.125rem;right:.125rem}.us_inset_y_q2{bottom:.125rem;top:.125rem}.us_border_q2{border-width:.125rem}.us_border_t_q2{border-top-width:.125rem}.us_border_r_q2{border-right-width:.125rem}.us_border_b_q2{border-bottom-width:.125rem}.us_border_l_q2,.us_border_x_q2{border-left-width:.125rem}.us_border_x_q2{border-right-width:.125rem}.us_border_y_q2{border-bottom-width:.125rem;border-top-width:.125rem}.us_rounded_q2{border-radius:.125rem}.us_rounded_t_q2{border-top-left-radius:.125rem;border-top-right-radius:.125rem}.us_rounded_r_q2{border-top-right-radius:.125rem}.us_rounded_b_q2,.us_rounded_r_q2{border-bottom-right-radius:.125rem}.us_rounded_b_q2,.us_rounded_l_q2{border-bottom-left-radius:.125rem}.us_rounded_l_q2,.us_rounded_tl_q2{border-top-left-radius:.125rem}.us_rounded_tr_q2{border-top-right-radius:.125rem}.us_rounded_br_q2{border-bottom-right-radius:.125rem}.us_rounded_bl_q2{border-bottom-left-radius:.125rem}.us_p_q4{padding:.25rem}.us_pt_q4{padding-top:.25rem}.us_pr_q4{padding-right:.25rem}.us_pb_q4{padding-bottom:.25rem}.us_pl_q4,.us_px_q4{padding-left:.25rem}.us_px_q4{padding-right:.25rem}.us_py_q4{padding-bottom:.25rem;padding-top:.25rem}.us_m_q4{margin:.25rem}.us_mt_q4{margin-top:.25rem}.us_mr_q4{margin-right:.25rem}.us_mb_q4{margin-bottom:.25rem}.us_ml_q4,.us_mx_q4{margin-left:.25rem}.us_mx_q4{margin-right:.25rem}.us_my_q4{margin-bottom:.25rem;margin-top:.25rem}.us_gap_q4{gap:.25rem}.us_gap_col_q4{-moz-column-gap:.25rem;column-gap:.25rem}.us_gap_row_q4{row-gap:.25rem}.us_w_q4{width:.25rem}.us_min_w_q4{min-width:.25rem}.us_max_w_q4{max-width:.25rem}.us_h_q4{height:.25rem}.us_min_h_q4{min-height:.25rem}.us_max_h_q4{max-height:.25rem}.us_inset_q4{bottom:.25rem;left:.25rem;right:.25rem;top:.25rem}.us_top_q4{top:.25rem}.us_right_q4{right:.25rem}.us_bottom_q4{bottom:.25rem}.us_left_q4{left:.25rem}.us_inset_x_q4{left:.25rem;right:.25rem}.us_inset_y_q4{bottom:.25rem;top:.25rem}.us_border_q4{border-width:.25rem}.us_border_t_q4{border-top-width:.25rem}.us_border_r_q4{border-right-width:.25rem}.us_border_b_q4{border-bottom-width:.25rem}.us_border_l_q4,.us_border_x_q4{border-left-width:.25rem}.us_border_x_q4{border-right-width:.25rem}.us_border_y_q4{border-bottom-width:.25rem;border-top-width:.25rem}.us_rounded_q4{border-radius:.25rem}.us_rounded_t_q4{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.us_rounded_r_q4{border-bottom-right-radius:.25rem;border-top-right-radius:.25rem}.us_rounded_b_q4{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.us_rounded_l_q4{border-bottom-left-radius:.25rem}.us_rounded_l_q4,.us_rounded_tl_q4{border-top-left-radius:.25rem}.us_rounded_tr_q4{border-top-right-radius:.25rem}.us_rounded_br_q4{border-bottom-right-radius:.25rem}.us_rounded_bl_q4{border-bottom-left-radius:.25rem}.us_p_q6{padding:.375rem}.us_pt_q6{padding-top:.375rem}.us_pr_q6{padding-right:.375rem}.us_pb_q6{padding-bottom:.375rem}.us_pl_q6,.us_px_q6{padding-left:.375rem}.us_px_q6{padding-right:.375rem}.us_py_q6{padding-bottom:.375rem;padding-top:.375rem}.us_m_q6{margin:.375rem}.us_mt_q6{margin-top:.375rem}.us_mr_q6{margin-right:.375rem}.us_mb_q6{margin-bottom:.375rem}.us_ml_q6,.us_mx_q6{margin-left:.375rem}.us_mx_q6{margin-right:.375rem}.us_my_q6{margin-bottom:.375rem;margin-top:.375rem}.us_gap_q6{gap:.375rem}.us_gap_col_q6{-moz-column-gap:.375rem;column-gap:.375rem}.us_gap_row_q6{row-gap:.375rem}.us_w_q6{width:.375rem}.us_min_w_q6{min-width:.375rem}.us_max_w_q6{max-width:.375rem}.us_h_q6{height:.375rem}.us_min_h_q6{min-height:.375rem}.us_max_h_q6{max-height:.375rem}.us_inset_q6{bottom:.375rem;left:.375rem;right:.375rem;top:.375rem}.us_top_q6{top:.375rem}.us_right_q6{right:.375rem}.us_bottom_q6{bottom:.375rem}.us_left_q6{left:.375rem}.us_inset_x_q6{left:.375rem;right:.375rem}.us_inset_y_q6{bottom:.375rem;top:.375rem}.us_border_q6{border-width:.375rem}.us_border_t_q6{border-top-width:.375rem}.us_border_r_q6{border-right-width:.375rem}.us_border_b_q6{border-bottom-width:.375rem}.us_border_l_q6,.us_border_x_q6{border-left-width:.375rem}.us_border_x_q6{border-right-width:.375rem}.us_border_y_q6{border-bottom-width:.375rem;border-top-width:.375rem}.us_rounded_q6{border-radius:.375rem}.us_rounded_t_q6{border-top-left-radius:.375rem;border-top-right-radius:.375rem}.us_rounded_r_q6{border-top-right-radius:.375rem}.us_rounded_b_q6,.us_rounded_r_q6{border-bottom-right-radius:.375rem}.us_rounded_b_q6,.us_rounded_l_q6{border-bottom-left-radius:.375rem}.us_rounded_l_q6,.us_rounded_tl_q6{border-top-left-radius:.375rem}.us_rounded_tr_q6{border-top-right-radius:.375rem}.us_rounded_br_q6{border-bottom-right-radius:.375rem}.us_rounded_bl_q6{border-bottom-left-radius:.375rem}.us_p_q8{padding:.5rem}.us_pt_q8{padding-top:.5rem}.us_pr_q8{padding-right:.5rem}.us_pb_q8{padding-bottom:.5rem}.us_pl_q8,.us_px_q8{padding-left:.5rem}.us_px_q8{padding-right:.5rem}.us_py_q8{padding-bottom:.5rem;padding-top:.5rem}.us_m_q8{margin:.5rem}.us_mt_q8{margin-top:.5rem}.us_mr_q8{margin-right:.5rem}.us_mb_q8{margin-bottom:.5rem}.us_ml_q8,.us_mx_q8{margin-left:.5rem}.us_mx_q8{margin-right:.5rem}.us_my_q8{margin-bottom:.5rem;margin-top:.5rem}.us_gap_q8{gap:.5rem}.us_gap_col_q8{-moz-column-gap:.5rem;column-gap:.5rem}.us_gap_row_q8{row-gap:.5rem}.us_w_q8{width:.5rem}.us_min_w_q8{min-width:.5rem}.us_max_w_q8{max-width:.5rem}.us_h_q8{height:.5rem}.us_min_h_q8{min-height:.5rem}.us_max_h_q8{max-height:.5rem}.us_inset_q8{bottom:.5rem;left:.5rem;right:.5rem;top:.5rem}.us_top_q8{top:.5rem}.us_right_q8{right:.5rem}.us_bottom_q8{bottom:.5rem}.us_left_q8{left:.5rem}.us_inset_x_q8{left:.5rem;right:.5rem}.us_inset_y_q8{bottom:.5rem;top:.5rem}.us_border_q8{border-width:.5rem}.us_border_t_q8{border-top-width:.5rem}.us_border_r_q8{border-right-width:.5rem}.us_border_b_q8{border-bottom-width:.5rem}.us_border_l_q8,.us_border_x_q8{border-left-width:.5rem}.us_border_x_q8{border-right-width:.5rem}.us_border_y_q8{border-bottom-width:.5rem;border-top-width:.5rem}.us_rounded_q8{border-radius:.5rem}.us_rounded_t_q8{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.us_rounded_r_q8{border-bottom-right-radius:.5rem;border-top-right-radius:.5rem}.us_rounded_b_q8{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.us_rounded_l_q8{border-bottom-left-radius:.5rem}.us_rounded_l_q8,.us_rounded_tl_q8{border-top-left-radius:.5rem}.us_rounded_tr_q8{border-top-right-radius:.5rem}.us_rounded_br_q8{border-bottom-right-radius:.5rem}.us_rounded_bl_q8{border-bottom-left-radius:.5rem}.us_p_q12{padding:.75rem}.us_pt_q12{padding-top:.75rem}.us_pr_q12{padding-right:.75rem}.us_pb_q12{padding-bottom:.75rem}.us_pl_q12,.us_px_q12{padding-left:.75rem}.us_px_q12{padding-right:.75rem}.us_py_q12{padding-bottom:.75rem;padding-top:.75rem}.us_m_q12{margin:.75rem}.us_mt_q12{margin-top:.75rem}.us_mr_q12{margin-right:.75rem}.us_mb_q12{margin-bottom:.75rem}.us_ml_q12,.us_mx_q12{margin-left:.75rem}.us_mx_q12{margin-right:.75rem}.us_my_q12{margin-bottom:.75rem;margin-top:.75rem}.us_gap_q12{gap:.75rem}.us_gap_col_q12{-moz-column-gap:.75rem;column-gap:.75rem}.us_gap_row_q12{row-gap:.75rem}.us_w_q12{width:.75rem}.us_min_w_q12{min-width:.75rem}.us_max_w_q12{max-width:.75rem}.us_h_q12{height:.75rem}.us_min_h_q12{min-height:.75rem}.us_max_h_q12{max-height:.75rem}.us_inset_q12{bottom:.75rem;left:.75rem;right:.75rem;top:.75rem}.us_top_q12{top:.75rem}.us_right_q12{right:.75rem}.us_bottom_q12{bottom:.75rem}.us_left_q12{left:.75rem}.us_inset_x_q12{left:.75rem;right:.75rem}.us_inset_y_q12{bottom:.75rem;top:.75rem}.us_border_q12{border-width:.75rem}.us_border_t_q12{border-top-width:.75rem}.us_border_r_q12{border-right-width:.75rem}.us_border_b_q12{border-bottom-width:.75rem}.us_border_l_q12,.us_border_x_q12{border-left-width:.75rem}.us_border_x_q12{border-right-width:.75rem}.us_border_y_q12{border-bottom-width:.75rem;border-top-width:.75rem}.us_rounded_q12{border-radius:.75rem}.us_rounded_t_q12{border-top-left-radius:.75rem;border-top-right-radius:.75rem}.us_rounded_r_q12{border-bottom-right-radius:.75rem;border-top-right-radius:.75rem}.us_rounded_b_q12{border-bottom-left-radius:.75rem;border-bottom-right-radius:.75rem}.us_rounded_l_q12{border-bottom-left-radius:.75rem}.us_rounded_l_q12,.us_rounded_tl_q12{border-top-left-radius:.75rem}.us_rounded_tr_q12{border-top-right-radius:.75rem}.us_rounded_br_q12{border-bottom-right-radius:.75rem}.us_rounded_bl_q12{border-bottom-left-radius:.75rem}.us_p_q16{padding:1rem}.us_pt_q16{padding-top:1rem}.us_pr_q16{padding-right:1rem}.us_pb_q16{padding-bottom:1rem}.us_pl_q16,.us_px_q16{padding-left:1rem}.us_px_q16{padding-right:1rem}.us_py_q16{padding-bottom:1rem;padding-top:1rem}.us_m_q16{margin:1rem}.us_mt_q16{margin-top:1rem}.us_mr_q16{margin-right:1rem}.us_mb_q16{margin-bottom:1rem}.us_ml_q16,.us_mx_q16{margin-left:1rem}.us_mx_q16{margin-right:1rem}.us_my_q16{margin-bottom:1rem;margin-top:1rem}.us_gap_q16{gap:1rem}.us_gap_col_q16{-moz-column-gap:1rem;column-gap:1rem}.us_gap_row_q16{row-gap:1rem}.us_w_q16{width:1rem}.us_min_w_q16{min-width:1rem}.us_max_w_q16{max-width:1rem}.us_h_q16{height:1rem}.us_min_h_q16{min-height:1rem}.us_max_h_q16{max-height:1rem}.us_inset_q16{bottom:1rem;left:1rem;right:1rem;top:1rem}.us_top_q16{top:1rem}.us_right_q16{right:1rem}.us_bottom_q16{bottom:1rem}.us_left_q16{left:1rem}.us_inset_x_q16{left:1rem;right:1rem}.us_inset_y_q16{bottom:1rem;top:1rem}.us_border_q16{border-width:1rem}.us_border_t_q16{border-top-width:1rem}.us_border_r_q16{border-right-width:1rem}.us_border_b_q16{border-bottom-width:1rem}.us_border_l_q16,.us_border_x_q16{border-left-width:1rem}.us_border_x_q16{border-right-width:1rem}.us_border_y_q16{border-bottom-width:1rem;border-top-width:1rem}.us_rounded_q16{border-radius:1rem}.us_rounded_t_q16{border-top-left-radius:1rem;border-top-right-radius:1rem}.us_rounded_r_q16{border-bottom-right-radius:1rem;border-top-right-radius:1rem}.us_rounded_b_q16{border-bottom-left-radius:1rem;border-bottom-right-radius:1rem}.us_rounded_l_q16{border-bottom-left-radius:1rem}.us_rounded_l_q16,.us_rounded_tl_q16{border-top-left-radius:1rem}.us_rounded_tr_q16{border-top-right-radius:1rem}.us_rounded_br_q16{border-bottom-right-radius:1rem}.us_rounded_bl_q16{border-bottom-left-radius:1rem}.us_p_q20{padding:1.25rem}.us_pt_q20{padding-top:1.25rem}.us_pr_q20{padding-right:1.25rem}.us_pb_q20{padding-bottom:1.25rem}.us_pl_q20,.us_px_q20{padding-left:1.25rem}.us_px_q20{padding-right:1.25rem}.us_py_q20{padding-bottom:1.25rem;padding-top:1.25rem}.us_m_q20{margin:1.25rem}.us_mt_q20{margin-top:1.25rem}.us_mr_q20{margin-right:1.25rem}.us_mb_q20{margin-bottom:1.25rem}.us_ml_q20,.us_mx_q20{margin-left:1.25rem}.us_mx_q20{margin-right:1.25rem}.us_my_q20{margin-bottom:1.25rem;margin-top:1.25rem}.us_gap_q20{gap:1.25rem}.us_gap_col_q20{-moz-column-gap:1.25rem;column-gap:1.25rem}.us_gap_row_q20{row-gap:1.25rem}.us_w_q20{width:1.25rem}.us_min_w_q20{min-width:1.25rem}.us_max_w_q20{max-width:1.25rem}.us_h_q20{height:1.25rem}.us_min_h_q20{min-height:1.25rem}.us_max_h_q20{max-height:1.25rem}.us_inset_q20{bottom:1.25rem;left:1.25rem;right:1.25rem;top:1.25rem}.us_top_q20{top:1.25rem}.us_right_q20{right:1.25rem}.us_bottom_q20{bottom:1.25rem}.us_left_q20{left:1.25rem}.us_inset_x_q20{left:1.25rem;right:1.25rem}.us_inset_y_q20{bottom:1.25rem;top:1.25rem}.us_border_q20{border-width:1.25rem}.us_border_t_q20{border-top-width:1.25rem}.us_border_r_q20{border-right-width:1.25rem}.us_border_b_q20{border-bottom-width:1.25rem}.us_border_l_q20,.us_border_x_q20{border-left-width:1.25rem}.us_border_x_q20{border-right-width:1.25rem}.us_border_y_q20{border-bottom-width:1.25rem;border-top-width:1.25rem}.us_rounded_q20{border-radius:1.25rem}.us_rounded_t_q20{border-top-left-radius:1.25rem;border-top-right-radius:1.25rem}.us_rounded_r_q20{border-bottom-right-radius:1.25rem;border-top-right-radius:1.25rem}.us_rounded_b_q20{border-bottom-left-radius:1.25rem;border-bottom-right-radius:1.25rem}.us_rounded_l_q20{border-bottom-left-radius:1.25rem}.us_rounded_l_q20,.us_rounded_tl_q20{border-top-left-radius:1.25rem}.us_rounded_tr_q20{border-top-right-radius:1.25rem}.us_rounded_br_q20{border-bottom-right-radius:1.25rem}.us_rounded_bl_q20{border-bottom-left-radius:1.25rem}.us_p_q24{padding:1.5rem}.us_pt_q24{padding-top:1.5rem}.us_pr_q24{padding-right:1.5rem}.us_pb_q24{padding-bottom:1.5rem}.us_pl_q24,.us_px_q24{padding-left:1.5rem}.us_px_q24{padding-right:1.5rem}.us_py_q24{padding-bottom:1.5rem;padding-top:1.5rem}.us_m_q24{margin:1.5rem}.us_mt_q24{margin-top:1.5rem}.us_mr_q24{margin-right:1.5rem}.us_mb_q24{margin-bottom:1.5rem}.us_ml_q24,.us_mx_q24{margin-left:1.5rem}.us_mx_q24{margin-right:1.5rem}.us_my_q24{margin-bottom:1.5rem;margin-top:1.5rem}.us_gap_q24{gap:1.5rem}.us_gap_col_q24{-moz-column-gap:1.5rem;column-gap:1.5rem}.us_gap_row_q24{row-gap:1.5rem}.us_w_q24{width:1.5rem}.us_min_w_q24{min-width:1.5rem}.us_max_w_q24{max-width:1.5rem}.us_h_q24{height:1.5rem}.us_min_h_q24{min-height:1.5rem}.us_max_h_q24{max-height:1.5rem}.us_inset_q24{bottom:1.5rem;left:1.5rem;right:1.5rem;top:1.5rem}.us_top_q24{top:1.5rem}.us_right_q24{right:1.5rem}.us_bottom_q24{bottom:1.5rem}.us_left_q24{left:1.5rem}.us_inset_x_q24{left:1.5rem;right:1.5rem}.us_inset_y_q24{bottom:1.5rem;top:1.5rem}.us_border_q24{border-width:1.5rem}.us_border_t_q24{border-top-width:1.5rem}.us_border_r_q24{border-right-width:1.5rem}.us_border_b_q24{border-bottom-width:1.5rem}.us_border_l_q24,.us_border_x_q24{border-left-width:1.5rem}.us_border_x_q24{border-right-width:1.5rem}.us_border_y_q24{border-bottom-width:1.5rem;border-top-width:1.5rem}.us_rounded_q24{border-radius:1.5rem}.us_rounded_t_q24{border-top-left-radius:1.5rem;border-top-right-radius:1.5rem}.us_rounded_r_q24{border-bottom-right-radius:1.5rem;border-top-right-radius:1.5rem}.us_rounded_b_q24{border-bottom-left-radius:1.5rem;border-bottom-right-radius:1.5rem}.us_rounded_l_q24{border-bottom-left-radius:1.5rem}.us_rounded_l_q24,.us_rounded_tl_q24{border-top-left-radius:1.5rem}.us_rounded_tr_q24{border-top-right-radius:1.5rem}.us_rounded_br_q24{border-bottom-right-radius:1.5rem}.us_rounded_bl_q24{border-bottom-left-radius:1.5rem}.us_p_q32{padding:2rem}.us_pt_q32{padding-top:2rem}.us_pr_q32{padding-right:2rem}.us_pb_q32{padding-bottom:2rem}.us_pl_q32,.us_px_q32{padding-left:2rem}.us_px_q32{padding-right:2rem}.us_py_q32{padding-bottom:2rem;padding-top:2rem}.us_m_q32{margin:2rem}.us_mt_q32{margin-top:2rem}.us_mr_q32{margin-right:2rem}.us_mb_q32{margin-bottom:2rem}.us_ml_q32,.us_mx_q32{margin-left:2rem}.us_mx_q32{margin-right:2rem}.us_my_q32{margin-bottom:2rem;margin-top:2rem}.us_gap_q32{gap:2rem}.us_gap_col_q32{-moz-column-gap:2rem;column-gap:2rem}.us_gap_row_q32{row-gap:2rem}.us_w_q32{width:2rem}.us_min_w_q32{min-width:2rem}.us_max_w_q32{max-width:2rem}.us_h_q32{height:2rem}.us_min_h_q32{min-height:2rem}.us_max_h_q32{max-height:2rem}.us_inset_q32{bottom:2rem;left:2rem;right:2rem;top:2rem}.us_top_q32{top:2rem}.us_right_q32{right:2rem}.us_bottom_q32{bottom:2rem}.us_left_q32{left:2rem}.us_inset_x_q32{left:2rem;right:2rem}.us_inset_y_q32{bottom:2rem;top:2rem}.us_border_q32{border-width:2rem}.us_border_t_q32{border-top-width:2rem}.us_border_r_q32{border-right-width:2rem}.us_border_b_q32{border-bottom-width:2rem}.us_border_l_q32,.us_border_x_q32{border-left-width:2rem}.us_border_x_q32{border-right-width:2rem}.us_border_y_q32{border-bottom-width:2rem;border-top-width:2rem}.us_rounded_q32{border-radius:2rem}.us_rounded_t_q32{border-top-left-radius:2rem;border-top-right-radius:2rem}.us_rounded_r_q32{border-bottom-right-radius:2rem;border-top-right-radius:2rem}.us_rounded_b_q32{border-bottom-left-radius:2rem;border-bottom-right-radius:2rem}.us_rounded_l_q32{border-bottom-left-radius:2rem}.us_rounded_l_q32,.us_rounded_tl_q32{border-top-left-radius:2rem}.us_rounded_tr_q32{border-top-right-radius:2rem}.us_rounded_br_q32{border-bottom-right-radius:2rem}.us_rounded_bl_q32{border-bottom-left-radius:2rem}.us_p_q40{padding:2.5rem}.us_pt_q40{padding-top:2.5rem}.us_pr_q40{padding-right:2.5rem}.us_pb_q40{padding-bottom:2.5rem}.us_pl_q40,.us_px_q40{padding-left:2.5rem}.us_px_q40{padding-right:2.5rem}.us_py_q40{padding-bottom:2.5rem;padding-top:2.5rem}.us_m_q40{margin:2.5rem}.us_mt_q40{margin-top:2.5rem}.us_mr_q40{margin-right:2.5rem}.us_mb_q40{margin-bottom:2.5rem}.us_ml_q40,.us_mx_q40{margin-left:2.5rem}.us_mx_q40{margin-right:2.5rem}.us_my_q40{margin-bottom:2.5rem;margin-top:2.5rem}.us_gap_q40{gap:2.5rem}.us_gap_col_q40{-moz-column-gap:2.5rem;column-gap:2.5rem}.us_gap_row_q40{row-gap:2.5rem}.us_w_q40{width:2.5rem}.us_min_w_q40{min-width:2.5rem}.us_max_w_q40{max-width:2.5rem}.us_h_q40{height:2.5rem}.us_min_h_q40{min-height:2.5rem}.us_max_h_q40{max-height:2.5rem}.us_inset_q40{bottom:2.5rem;left:2.5rem;right:2.5rem;top:2.5rem}.us_top_q40{top:2.5rem}.us_right_q40{right:2.5rem}.us_bottom_q40{bottom:2.5rem}.us_left_q40{left:2.5rem}.us_inset_x_q40{left:2.5rem;right:2.5rem}.us_inset_y_q40{bottom:2.5rem;top:2.5rem}.us_border_q40{border-width:2.5rem}.us_border_t_q40{border-top-width:2.5rem}.us_border_r_q40{border-right-width:2.5rem}.us_border_b_q40{border-bottom-width:2.5rem}.us_border_l_q40,.us_border_x_q40{border-left-width:2.5rem}.us_border_x_q40{border-right-width:2.5rem}.us_border_y_q40{border-bottom-width:2.5rem;border-top-width:2.5rem}.us_rounded_q40{border-radius:2.5rem}.us_rounded_t_q40{border-top-left-radius:2.5rem;border-top-right-radius:2.5rem}.us_rounded_r_q40{border-bottom-right-radius:2.5rem;border-top-right-radius:2.5rem}.us_rounded_b_q40{border-bottom-left-radius:2.5rem;border-bottom-right-radius:2.5rem}.us_rounded_l_q40{border-bottom-left-radius:2.5rem}.us_rounded_l_q40,.us_rounded_tl_q40{border-top-left-radius:2.5rem}.us_rounded_tr_q40{border-top-right-radius:2.5rem}.us_rounded_br_q40{border-bottom-right-radius:2.5rem}.us_rounded_bl_q40{border-bottom-left-radius:2.5rem}.us_p_q48{padding:3rem}.us_pt_q48{padding-top:3rem}.us_pr_q48{padding-right:3rem}.us_pb_q48{padding-bottom:3rem}.us_pl_q48,.us_px_q48{padding-left:3rem}.us_px_q48{padding-right:3rem}.us_py_q48{padding-bottom:3rem;padding-top:3rem}.us_m_q48{margin:3rem}.us_mt_q48{margin-top:3rem}.us_mr_q48{margin-right:3rem}.us_mb_q48{margin-bottom:3rem}.us_ml_q48,.us_mx_q48{margin-left:3rem}.us_mx_q48{margin-right:3rem}.us_my_q48{margin-bottom:3rem;margin-top:3rem}.us_gap_q48{gap:3rem}.us_gap_col_q48{-moz-column-gap:3rem;column-gap:3rem}.us_gap_row_q48{row-gap:3rem}.us_w_q48{width:3rem}.us_min_w_q48{min-width:3rem}.us_max_w_q48{max-width:3rem}.us_h_q48{height:3rem}.us_min_h_q48{min-height:3rem}.us_max_h_q48{max-height:3rem}.us_inset_q48{bottom:3rem;left:3rem;right:3rem;top:3rem}.us_top_q48{top:3rem}.us_right_q48{right:3rem}.us_bottom_q48{bottom:3rem}.us_left_q48{left:3rem}.us_inset_x_q48{left:3rem;right:3rem}.us_inset_y_q48{bottom:3rem;top:3rem}.us_border_q48{border-width:3rem}.us_border_t_q48{border-top-width:3rem}.us_border_r_q48{border-right-width:3rem}.us_border_b_q48{border-bottom-width:3rem}.us_border_l_q48,.us_border_x_q48{border-left-width:3rem}.us_border_x_q48{border-right-width:3rem}.us_border_y_q48{border-bottom-width:3rem;border-top-width:3rem}.us_rounded_q48{border-radius:3rem}.us_rounded_t_q48{border-top-left-radius:3rem;border-top-right-radius:3rem}.us_rounded_r_q48{border-bottom-right-radius:3rem;border-top-right-radius:3rem}.us_rounded_b_q48{border-bottom-left-radius:3rem;border-bottom-right-radius:3rem}.us_rounded_l_q48{border-bottom-left-radius:3rem}.us_rounded_l_q48,.us_rounded_tl_q48{border-top-left-radius:3rem}.us_rounded_tr_q48{border-top-right-radius:3rem}.us_rounded_br_q48{border-bottom-right-radius:3rem}.us_rounded_bl_q48{border-bottom-left-radius:3rem}.us_p_q56{padding:3.5rem}.us_pt_q56{padding-top:3.5rem}.us_pr_q56{padding-right:3.5rem}.us_pb_q56{padding-bottom:3.5rem}.us_pl_q56,.us_px_q56{padding-left:3.5rem}.us_px_q56{padding-right:3.5rem}.us_py_q56{padding-bottom:3.5rem;padding-top:3.5rem}.us_m_q56{margin:3.5rem}.us_mt_q56{margin-top:3.5rem}.us_mr_q56{margin-right:3.5rem}.us_mb_q56{margin-bottom:3.5rem}.us_ml_q56,.us_mx_q56{margin-left:3.5rem}.us_mx_q56{margin-right:3.5rem}.us_my_q56{margin-bottom:3.5rem;margin-top:3.5rem}.us_gap_q56{gap:3.5rem}.us_gap_col_q56{-moz-column-gap:3.5rem;column-gap:3.5rem}.us_gap_row_q56{row-gap:3.5rem}.us_w_q56{width:3.5rem}.us_min_w_q56{min-width:3.5rem}.us_max_w_q56{max-width:3.5rem}.us_h_q56{height:3.5rem}.us_min_h_q56{min-height:3.5rem}.us_max_h_q56{max-height:3.5rem}.us_inset_q56{bottom:3.5rem;left:3.5rem;right:3.5rem;top:3.5rem}.us_top_q56{top:3.5rem}.us_right_q56{right:3.5rem}.us_bottom_q56{bottom:3.5rem}.us_left_q56{left:3.5rem}.us_inset_x_q56{left:3.5rem;right:3.5rem}.us_inset_y_q56{bottom:3.5rem;top:3.5rem}.us_border_q56{border-width:3.5rem}.us_border_t_q56{border-top-width:3.5rem}.us_border_r_q56{border-right-width:3.5rem}.us_border_b_q56{border-bottom-width:3.5rem}.us_border_l_q56,.us_border_x_q56{border-left-width:3.5rem}.us_border_x_q56{border-right-width:3.5rem}.us_border_y_q56{border-bottom-width:3.5rem;border-top-width:3.5rem}.us_rounded_q56{border-radius:3.5rem}.us_rounded_t_q56{border-top-left-radius:3.5rem;border-top-right-radius:3.5rem}.us_rounded_r_q56{border-bottom-right-radius:3.5rem;border-top-right-radius:3.5rem}.us_rounded_b_q56{border-bottom-left-radius:3.5rem;border-bottom-right-radius:3.5rem}.us_rounded_l_q56{border-bottom-left-radius:3.5rem}.us_rounded_l_q56,.us_rounded_tl_q56{border-top-left-radius:3.5rem}.us_rounded_tr_q56{border-top-right-radius:3.5rem}.us_rounded_br_q56{border-bottom-right-radius:3.5rem}.us_rounded_bl_q56{border-bottom-left-radius:3.5rem}.us_p_q64{padding:4rem}.us_pt_q64{padding-top:4rem}.us_pr_q64{padding-right:4rem}.us_pb_q64{padding-bottom:4rem}.us_pl_q64,.us_px_q64{padding-left:4rem}.us_px_q64{padding-right:4rem}.us_py_q64{padding-bottom:4rem;padding-top:4rem}.us_m_q64{margin:4rem}.us_mt_q64{margin-top:4rem}.us_mr_q64{margin-right:4rem}.us_mb_q64{margin-bottom:4rem}.us_ml_q64,.us_mx_q64{margin-left:4rem}.us_mx_q64{margin-right:4rem}.us_my_q64{margin-bottom:4rem;margin-top:4rem}.us_gap_q64{gap:4rem}.us_gap_col_q64{-moz-column-gap:4rem;column-gap:4rem}.us_gap_row_q64{row-gap:4rem}.us_w_q64{width:4rem}.us_min_w_q64{min-width:4rem}.us_max_w_q64{max-width:4rem}.us_h_q64{height:4rem}.us_min_h_q64{min-height:4rem}.us_max_h_q64{max-height:4rem}.us_inset_q64{bottom:4rem;left:4rem;right:4rem;top:4rem}.us_top_q64{top:4rem}.us_right_q64{right:4rem}.us_bottom_q64{bottom:4rem}.us_left_q64{left:4rem}.us_inset_x_q64{left:4rem;right:4rem}.us_inset_y_q64{bottom:4rem;top:4rem}.us_border_q64{border-width:4rem}.us_border_t_q64{border-top-width:4rem}.us_border_r_q64{border-right-width:4rem}.us_border_b_q64{border-bottom-width:4rem}.us_border_l_q64,.us_border_x_q64{border-left-width:4rem}.us_border_x_q64{border-right-width:4rem}.us_border_y_q64{border-bottom-width:4rem;border-top-width:4rem}.us_rounded_q64{border-radius:4rem}.us_rounded_t_q64{border-top-left-radius:4rem;border-top-right-radius:4rem}.us_rounded_r_q64{border-bottom-right-radius:4rem;border-top-right-radius:4rem}.us_rounded_b_q64{border-bottom-left-radius:4rem;border-bottom-right-radius:4rem}.us_rounded_l_q64{border-bottom-left-radius:4rem}.us_rounded_l_q64,.us_rounded_tl_q64{border-top-left-radius:4rem}.us_rounded_tr_q64{border-top-right-radius:4rem}.us_rounded_br_q64{border-bottom-right-radius:4rem}.us_rounded_bl_q64{border-bottom-left-radius:4rem}.us_p_q72{padding:4.5rem}.us_pt_q72{padding-top:4.5rem}.us_pr_q72{padding-right:4.5rem}.us_pb_q72{padding-bottom:4.5rem}.us_pl_q72,.us_px_q72{padding-left:4.5rem}.us_px_q72{padding-right:4.5rem}.us_py_q72{padding-bottom:4.5rem;padding-top:4.5rem}.us_m_q72{margin:4.5rem}.us_mt_q72{margin-top:4.5rem}.us_mr_q72{margin-right:4.5rem}.us_mb_q72{margin-bottom:4.5rem}.us_ml_q72,.us_mx_q72{margin-left:4.5rem}.us_mx_q72{margin-right:4.5rem}.us_my_q72{margin-bottom:4.5rem;margin-top:4.5rem}.us_gap_q72{gap:4.5rem}.us_gap_col_q72{-moz-column-gap:4.5rem;column-gap:4.5rem}.us_gap_row_q72{row-gap:4.5rem}.us_w_q72{width:4.5rem}.us_min_w_q72{min-width:4.5rem}.us_max_w_q72{max-width:4.5rem}.us_h_q72{height:4.5rem}.us_min_h_q72{min-height:4.5rem}.us_max_h_q72{max-height:4.5rem}.us_inset_q72{bottom:4.5rem;left:4.5rem;right:4.5rem;top:4.5rem}.us_top_q72{top:4.5rem}.us_right_q72{right:4.5rem}.us_bottom_q72{bottom:4.5rem}.us_left_q72{left:4.5rem}.us_inset_x_q72{left:4.5rem;right:4.5rem}.us_inset_y_q72{bottom:4.5rem;top:4.5rem}.us_border_q72{border-width:4.5rem}.us_border_t_q72{border-top-width:4.5rem}.us_border_r_q72{border-right-width:4.5rem}.us_border_b_q72{border-bottom-width:4.5rem}.us_border_l_q72,.us_border_x_q72{border-left-width:4.5rem}.us_border_x_q72{border-right-width:4.5rem}.us_border_y_q72{border-bottom-width:4.5rem;border-top-width:4.5rem}.us_rounded_q72{border-radius:4.5rem}.us_rounded_t_q72{border-top-left-radius:4.5rem;border-top-right-radius:4.5rem}.us_rounded_r_q72{border-bottom-right-radius:4.5rem;border-top-right-radius:4.5rem}.us_rounded_b_q72{border-bottom-left-radius:4.5rem;border-bottom-right-radius:4.5rem}.us_rounded_l_q72{border-bottom-left-radius:4.5rem}.us_rounded_l_q72,.us_rounded_tl_q72{border-top-left-radius:4.5rem}.us_rounded_tr_q72{border-top-right-radius:4.5rem}.us_rounded_br_q72{border-bottom-right-radius:4.5rem}.us_rounded_bl_q72{border-bottom-left-radius:4.5rem}.us_p_q80{padding:5rem}.us_pt_q80{padding-top:5rem}.us_pr_q80{padding-right:5rem}.us_pb_q80{padding-bottom:5rem}.us_pl_q80,.us_px_q80{padding-left:5rem}.us_px_q80{padding-right:5rem}.us_py_q80{padding-bottom:5rem;padding-top:5rem}.us_m_q80{margin:5rem}.us_mt_q80{margin-top:5rem}.us_mr_q80{margin-right:5rem}.us_mb_q80{margin-bottom:5rem}.us_ml_q80,.us_mx_q80{margin-left:5rem}.us_mx_q80{margin-right:5rem}.us_my_q80{margin-bottom:5rem;margin-top:5rem}.us_gap_q80{gap:5rem}.us_gap_col_q80{-moz-column-gap:5rem;column-gap:5rem}.us_gap_row_q80{row-gap:5rem}.us_w_q80{width:5rem}.us_min_w_q80{min-width:5rem}.us_max_w_q80{max-width:5rem}.us_h_q80{height:5rem}.us_min_h_q80{min-height:5rem}.us_max_h_q80{max-height:5rem}.us_inset_q80{bottom:5rem;left:5rem;right:5rem;top:5rem}.us_top_q80{top:5rem}.us_right_q80{right:5rem}.us_bottom_q80{bottom:5rem}.us_left_q80{left:5rem}.us_inset_x_q80{left:5rem;right:5rem}.us_inset_y_q80{bottom:5rem;top:5rem}.us_border_q80{border-width:5rem}.us_border_t_q80{border-top-width:5rem}.us_border_r_q80{border-right-width:5rem}.us_border_b_q80{border-bottom-width:5rem}.us_border_l_q80,.us_border_x_q80{border-left-width:5rem}.us_border_x_q80{border-right-width:5rem}.us_border_y_q80{border-bottom-width:5rem;border-top-width:5rem}.us_rounded_q80{border-radius:5rem}.us_rounded_t_q80{border-top-left-radius:5rem;border-top-right-radius:5rem}.us_rounded_r_q80{border-bottom-right-radius:5rem;border-top-right-radius:5rem}.us_rounded_b_q80{border-bottom-left-radius:5rem;border-bottom-right-radius:5rem}.us_rounded_l_q80{border-bottom-left-radius:5rem}.us_rounded_l_q80,.us_rounded_tl_q80{border-top-left-radius:5rem}.us_rounded_tr_q80{border-top-right-radius:5rem}.us_rounded_br_q80{border-bottom-right-radius:5rem}.us_rounded_bl_q80{border-bottom-left-radius:5rem}.us_p_q96{padding:6rem}.us_pt_q96{padding-top:6rem}.us_pr_q96{padding-right:6rem}.us_pb_q96{padding-bottom:6rem}.us_pl_q96,.us_px_q96{padding-left:6rem}.us_px_q96{padding-right:6rem}.us_py_q96{padding-bottom:6rem;padding-top:6rem}.us_m_q96{margin:6rem}.us_mt_q96{margin-top:6rem}.us_mr_q96{margin-right:6rem}.us_mb_q96{margin-bottom:6rem}.us_ml_q96,.us_mx_q96{margin-left:6rem}.us_mx_q96{margin-right:6rem}.us_my_q96{margin-bottom:6rem;margin-top:6rem}.us_gap_q96{gap:6rem}.us_gap_col_q96{-moz-column-gap:6rem;column-gap:6rem}.us_gap_row_q96{row-gap:6rem}.us_w_q96{width:6rem}.us_min_w_q96{min-width:6rem}.us_max_w_q96{max-width:6rem}.us_h_q96{height:6rem}.us_min_h_q96{min-height:6rem}.us_max_h_q96{max-height:6rem}.us_inset_q96{bottom:6rem;left:6rem;right:6rem;top:6rem}.us_top_q96{top:6rem}.us_right_q96{right:6rem}.us_bottom_q96{bottom:6rem}.us_left_q96{left:6rem}.us_inset_x_q96{left:6rem;right:6rem}.us_inset_y_q96{bottom:6rem;top:6rem}.us_border_q96{border-width:6rem}.us_border_t_q96{border-top-width:6rem}.us_border_r_q96{border-right-width:6rem}.us_border_b_q96{border-bottom-width:6rem}.us_border_l_q96,.us_border_x_q96{border-left-width:6rem}.us_border_x_q96{border-right-width:6rem}.us_border_y_q96{border-bottom-width:6rem;border-top-width:6rem}.us_rounded_q96{border-radius:6rem}.us_rounded_t_q96{border-top-left-radius:6rem;border-top-right-radius:6rem}.us_rounded_r_q96{border-bottom-right-radius:6rem;border-top-right-radius:6rem}.us_rounded_b_q96{border-bottom-left-radius:6rem;border-bottom-right-radius:6rem}.us_rounded_l_q96{border-bottom-left-radius:6rem}.us_rounded_l_q96,.us_rounded_tl_q96{border-top-left-radius:6rem}.us_rounded_tr_q96{border-top-right-radius:6rem}.us_rounded_br_q96{border-bottom-right-radius:6rem}.us_rounded_bl_q96{border-bottom-left-radius:6rem}.us_p_q112{padding:7rem}.us_pt_q112{padding-top:7rem}.us_pr_q112{padding-right:7rem}.us_pb_q112{padding-bottom:7rem}.us_pl_q112,.us_px_q112{padding-left:7rem}.us_px_q112{padding-right:7rem}.us_py_q112{padding-bottom:7rem;padding-top:7rem}.us_m_q112{margin:7rem}.us_mt_q112{margin-top:7rem}.us_mr_q112{margin-right:7rem}.us_mb_q112{margin-bottom:7rem}.us_ml_q112,.us_mx_q112{margin-left:7rem}.us_mx_q112{margin-right:7rem}.us_my_q112{margin-bottom:7rem;margin-top:7rem}.us_gap_q112{gap:7rem}.us_gap_col_q112{-moz-column-gap:7rem;column-gap:7rem}.us_gap_row_q112{row-gap:7rem}.us_w_q112{width:7rem}.us_min_w_q112{min-width:7rem}.us_max_w_q112{max-width:7rem}.us_h_q112{height:7rem}.us_min_h_q112{min-height:7rem}.us_max_h_q112{max-height:7rem}.us_inset_q112{bottom:7rem;left:7rem;right:7rem;top:7rem}.us_top_q112{top:7rem}.us_right_q112{right:7rem}.us_bottom_q112{bottom:7rem}.us_left_q112{left:7rem}.us_inset_x_q112{left:7rem;right:7rem}.us_inset_y_q112{bottom:7rem;top:7rem}.us_border_q112{border-width:7rem}.us_border_t_q112{border-top-width:7rem}.us_border_r_q112{border-right-width:7rem}.us_border_b_q112{border-bottom-width:7rem}.us_border_l_q112,.us_border_x_q112{border-left-width:7rem}.us_border_x_q112{border-right-width:7rem}.us_border_y_q112{border-bottom-width:7rem;border-top-width:7rem}.us_rounded_q112{border-radius:7rem}.us_rounded_t_q112{border-top-left-radius:7rem;border-top-right-radius:7rem}.us_rounded_r_q112{border-bottom-right-radius:7rem;border-top-right-radius:7rem}.us_rounded_b_q112{border-bottom-left-radius:7rem;border-bottom-right-radius:7rem}.us_rounded_l_q112{border-bottom-left-radius:7rem}.us_rounded_l_q112,.us_rounded_tl_q112{border-top-left-radius:7rem}.us_rounded_tr_q112{border-top-right-radius:7rem}.us_rounded_br_q112{border-bottom-right-radius:7rem}.us_rounded_bl_q112{border-bottom-left-radius:7rem}.us_p_q128{padding:8rem}.us_pt_q128{padding-top:8rem}.us_pr_q128{padding-right:8rem}.us_pb_q128{padding-bottom:8rem}.us_pl_q128,.us_px_q128{padding-left:8rem}.us_px_q128{padding-right:8rem}.us_py_q128{padding-bottom:8rem;padding-top:8rem}.us_m_q128{margin:8rem}.us_mt_q128{margin-top:8rem}.us_mr_q128{margin-right:8rem}.us_mb_q128{margin-bottom:8rem}.us_ml_q128,.us_mx_q128{margin-left:8rem}.us_mx_q128{margin-right:8rem}.us_my_q128{margin-bottom:8rem;margin-top:8rem}.us_gap_q128{gap:8rem}.us_gap_col_q128{-moz-column-gap:8rem;column-gap:8rem}.us_gap_row_q128{row-gap:8rem}.us_w_q128{width:8rem}.us_min_w_q128{min-width:8rem}.us_max_w_q128{max-width:8rem}.us_h_q128{height:8rem}.us_min_h_q128{min-height:8rem}.us_max_h_q128{max-height:8rem}.us_inset_q128{bottom:8rem;left:8rem;right:8rem;top:8rem}.us_top_q128{top:8rem}.us_right_q128{right:8rem}.us_bottom_q128{bottom:8rem}.us_left_q128{left:8rem}.us_inset_x_q128{left:8rem;right:8rem}.us_inset_y_q128{bottom:8rem;top:8rem}.us_border_q128{border-width:8rem}.us_border_t_q128{border-top-width:8rem}.us_border_r_q128{border-right-width:8rem}.us_border_b_q128{border-bottom-width:8rem}.us_border_l_q128,.us_border_x_q128{border-left-width:8rem}.us_border_x_q128{border-right-width:8rem}.us_border_y_q128{border-bottom-width:8rem;border-top-width:8rem}.us_rounded_q128{border-radius:8rem}.us_rounded_t_q128{border-top-left-radius:8rem;border-top-right-radius:8rem}.us_rounded_r_q128{border-bottom-right-radius:8rem;border-top-right-radius:8rem}.us_rounded_b_q128{border-bottom-left-radius:8rem;border-bottom-right-radius:8rem}.us_rounded_l_q128{border-bottom-left-radius:8rem}.us_rounded_l_q128,.us_rounded_tl_q128{border-top-left-radius:8rem}.us_rounded_tr_q128{border-top-right-radius:8rem}.us_rounded_br_q128{border-bottom-right-radius:8rem}.us_rounded_bl_q128{border-bottom-left-radius:8rem}.us_p_q144{padding:9rem}.us_pt_q144{padding-top:9rem}.us_pr_q144{padding-right:9rem}.us_pb_q144{padding-bottom:9rem}.us_pl_q144,.us_px_q144{padding-left:9rem}.us_px_q144{padding-right:9rem}.us_py_q144{padding-bottom:9rem;padding-top:9rem}.us_m_q144{margin:9rem}.us_mt_q144{margin-top:9rem}.us_mr_q144{margin-right:9rem}.us_mb_q144{margin-bottom:9rem}.us_ml_q144,.us_mx_q144{margin-left:9rem}.us_mx_q144{margin-right:9rem}.us_my_q144{margin-bottom:9rem;margin-top:9rem}.us_gap_q144{gap:9rem}.us_gap_col_q144{-moz-column-gap:9rem;column-gap:9rem}.us_gap_row_q144{row-gap:9rem}.us_w_q144{width:9rem}.us_min_w_q144{min-width:9rem}.us_max_w_q144{max-width:9rem}.us_h_q144{height:9rem}.us_min_h_q144{min-height:9rem}.us_max_h_q144{max-height:9rem}.us_inset_q144{bottom:9rem;left:9rem;right:9rem;top:9rem}.us_top_q144{top:9rem}.us_right_q144{right:9rem}.us_bottom_q144{bottom:9rem}.us_left_q144{left:9rem}.us_inset_x_q144{left:9rem;right:9rem}.us_inset_y_q144{bottom:9rem;top:9rem}.us_border_q144{border-width:9rem}.us_border_t_q144{border-top-width:9rem}.us_border_r_q144{border-right-width:9rem}.us_border_b_q144{border-bottom-width:9rem}.us_border_l_q144,.us_border_x_q144{border-left-width:9rem}.us_border_x_q144{border-right-width:9rem}.us_border_y_q144{border-bottom-width:9rem;border-top-width:9rem}.us_rounded_q144{border-radius:9rem}.us_rounded_t_q144{border-top-left-radius:9rem;border-top-right-radius:9rem}.us_rounded_r_q144{border-bottom-right-radius:9rem;border-top-right-radius:9rem}.us_rounded_b_q144{border-bottom-left-radius:9rem;border-bottom-right-radius:9rem}.us_rounded_l_q144{border-bottom-left-radius:9rem}.us_rounded_l_q144,.us_rounded_tl_q144{border-top-left-radius:9rem}.us_rounded_tr_q144{border-top-right-radius:9rem}.us_rounded_br_q144{border-bottom-right-radius:9rem}.us_rounded_bl_q144{border-bottom-left-radius:9rem}.us_p_q160{padding:10rem}.us_pt_q160{padding-top:10rem}.us_pr_q160{padding-right:10rem}.us_pb_q160{padding-bottom:10rem}.us_pl_q160,.us_px_q160{padding-left:10rem}.us_px_q160{padding-right:10rem}.us_py_q160{padding-bottom:10rem;padding-top:10rem}.us_m_q160{margin:10rem}.us_mt_q160{margin-top:10rem}.us_mr_q160{margin-right:10rem}.us_mb_q160{margin-bottom:10rem}.us_ml_q160,.us_mx_q160{margin-left:10rem}.us_mx_q160{margin-right:10rem}.us_my_q160{margin-bottom:10rem;margin-top:10rem}.us_gap_q160{gap:10rem}.us_gap_col_q160{-moz-column-gap:10rem;column-gap:10rem}.us_gap_row_q160{row-gap:10rem}.us_w_q160{width:10rem}.us_min_w_q160{min-width:10rem}.us_max_w_q160{max-width:10rem}.us_h_q160{height:10rem}.us_min_h_q160{min-height:10rem}.us_max_h_q160{max-height:10rem}.us_inset_q160{bottom:10rem;left:10rem;right:10rem;top:10rem}.us_top_q160{top:10rem}.us_right_q160{right:10rem}.us_bottom_q160{bottom:10rem}.us_left_q160{left:10rem}.us_inset_x_q160{left:10rem;right:10rem}.us_inset_y_q160{bottom:10rem;top:10rem}.us_border_q160{border-width:10rem}.us_border_t_q160{border-top-width:10rem}.us_border_r_q160{border-right-width:10rem}.us_border_b_q160{border-bottom-width:10rem}.us_border_l_q160,.us_border_x_q160{border-left-width:10rem}.us_border_x_q160{border-right-width:10rem}.us_border_y_q160{border-bottom-width:10rem;border-top-width:10rem}.us_rounded_q160{border-radius:10rem}.us_rounded_t_q160{border-top-left-radius:10rem;border-top-right-radius:10rem}.us_rounded_r_q160{border-bottom-right-radius:10rem;border-top-right-radius:10rem}.us_rounded_b_q160{border-bottom-left-radius:10rem;border-bottom-right-radius:10rem}.us_rounded_l_q160{border-bottom-left-radius:10rem}.us_rounded_l_q160,.us_rounded_tl_q160{border-top-left-radius:10rem}.us_rounded_tr_q160{border-top-right-radius:10rem}.us_rounded_br_q160{border-bottom-right-radius:10rem}.us_rounded_bl_q160{border-bottom-left-radius:10rem}.us_p_q192{padding:12rem}.us_pt_q192{padding-top:12rem}.us_pr_q192{padding-right:12rem}.us_pb_q192{padding-bottom:12rem}.us_pl_q192,.us_px_q192{padding-left:12rem}.us_px_q192{padding-right:12rem}.us_py_q192{padding-bottom:12rem;padding-top:12rem}.us_m_q192{margin:12rem}.us_mt_q192{margin-top:12rem}.us_mr_q192{margin-right:12rem}.us_mb_q192{margin-bottom:12rem}.us_ml_q192,.us_mx_q192{margin-left:12rem}.us_mx_q192{margin-right:12rem}.us_my_q192{margin-bottom:12rem;margin-top:12rem}.us_gap_q192{gap:12rem}.us_gap_col_q192{-moz-column-gap:12rem;column-gap:12rem}.us_gap_row_q192{row-gap:12rem}.us_w_q192{width:12rem}.us_min_w_q192{min-width:12rem}.us_max_w_q192{max-width:12rem}.us_h_q192{height:12rem}.us_min_h_q192{min-height:12rem}.us_max_h_q192{max-height:12rem}.us_inset_q192{bottom:12rem;left:12rem;right:12rem;top:12rem}.us_top_q192{top:12rem}.us_right_q192{right:12rem}.us_bottom_q192{bottom:12rem}.us_left_q192{left:12rem}.us_inset_x_q192{left:12rem;right:12rem}.us_inset_y_q192{bottom:12rem;top:12rem}.us_border_q192{border-width:12rem}.us_border_t_q192{border-top-width:12rem}.us_border_r_q192{border-right-width:12rem}.us_border_b_q192{border-bottom-width:12rem}.us_border_l_q192,.us_border_x_q192{border-left-width:12rem}.us_border_x_q192{border-right-width:12rem}.us_border_y_q192{border-bottom-width:12rem;border-top-width:12rem}.us_rounded_q192{border-radius:12rem}.us_rounded_t_q192{border-top-left-radius:12rem;border-top-right-radius:12rem}.us_rounded_r_q192{border-bottom-right-radius:12rem;border-top-right-radius:12rem}.us_rounded_b_q192{border-bottom-left-radius:12rem;border-bottom-right-radius:12rem}.us_rounded_l_q192{border-bottom-left-radius:12rem}.us_rounded_l_q192,.us_rounded_tl_q192{border-top-left-radius:12rem}.us_rounded_tr_q192{border-top-right-radius:12rem}.us_rounded_br_q192{border-bottom-right-radius:12rem}.us_rounded_bl_q192{border-bottom-left-radius:12rem}.us_p_q224{padding:14rem}.us_pt_q224{padding-top:14rem}.us_pr_q224{padding-right:14rem}.us_pb_q224{padding-bottom:14rem}.us_pl_q224,.us_px_q224{padding-left:14rem}.us_px_q224{padding-right:14rem}.us_py_q224{padding-bottom:14rem;padding-top:14rem}.us_m_q224{margin:14rem}.us_mt_q224{margin-top:14rem}.us_mr_q224{margin-right:14rem}.us_mb_q224{margin-bottom:14rem}.us_ml_q224,.us_mx_q224{margin-left:14rem}.us_mx_q224{margin-right:14rem}.us_my_q224{margin-bottom:14rem;margin-top:14rem}.us_gap_q224{gap:14rem}.us_gap_col_q224{-moz-column-gap:14rem;column-gap:14rem}.us_gap_row_q224{row-gap:14rem}.us_w_q224{width:14rem}.us_min_w_q224{min-width:14rem}.us_max_w_q224{max-width:14rem}.us_h_q224{height:14rem}.us_min_h_q224{min-height:14rem}.us_max_h_q224{max-height:14rem}.us_inset_q224{bottom:14rem;left:14rem;right:14rem;top:14rem}.us_top_q224{top:14rem}.us_right_q224{right:14rem}.us_bottom_q224{bottom:14rem}.us_left_q224{left:14rem}.us_inset_x_q224{left:14rem;right:14rem}.us_inset_y_q224{bottom:14rem;top:14rem}.us_border_q224{border-width:14rem}.us_border_t_q224{border-top-width:14rem}.us_border_r_q224{border-right-width:14rem}.us_border_b_q224{border-bottom-width:14rem}.us_border_l_q224,.us_border_x_q224{border-left-width:14rem}.us_border_x_q224{border-right-width:14rem}.us_border_y_q224{border-bottom-width:14rem;border-top-width:14rem}.us_rounded_q224{border-radius:14rem}.us_rounded_t_q224{border-top-left-radius:14rem;border-top-right-radius:14rem}.us_rounded_r_q224{border-bottom-right-radius:14rem;border-top-right-radius:14rem}.us_rounded_b_q224{border-bottom-left-radius:14rem;border-bottom-right-radius:14rem}.us_rounded_l_q224{border-bottom-left-radius:14rem}.us_rounded_l_q224,.us_rounded_tl_q224{border-top-left-radius:14rem}.us_rounded_tr_q224{border-top-right-radius:14rem}.us_rounded_br_q224{border-bottom-right-radius:14rem}.us_rounded_bl_q224{border-bottom-left-radius:14rem}.us_p_q256{padding:16rem}.us_pt_q256{padding-top:16rem}.us_pr_q256{padding-right:16rem}.us_pb_q256{padding-bottom:16rem}.us_pl_q256,.us_px_q256{padding-left:16rem}.us_px_q256{padding-right:16rem}.us_py_q256{padding-bottom:16rem;padding-top:16rem}.us_m_q256{margin:16rem}.us_mt_q256{margin-top:16rem}.us_mr_q256{margin-right:16rem}.us_mb_q256{margin-bottom:16rem}.us_ml_q256,.us_mx_q256{margin-left:16rem}.us_mx_q256{margin-right:16rem}.us_my_q256{margin-bottom:16rem;margin-top:16rem}.us_gap_q256{gap:16rem}.us_gap_col_q256{-moz-column-gap:16rem;column-gap:16rem}.us_gap_row_q256{row-gap:16rem}.us_w_q256{width:16rem}.us_min_w_q256{min-width:16rem}.us_max_w_q256{max-width:16rem}.us_h_q256{height:16rem}.us_min_h_q256{min-height:16rem}.us_max_h_q256{max-height:16rem}.us_inset_q256{bottom:16rem;left:16rem;right:16rem;top:16rem}.us_top_q256{top:16rem}.us_right_q256{right:16rem}.us_bottom_q256{bottom:16rem}.us_left_q256{left:16rem}.us_inset_x_q256{left:16rem;right:16rem}.us_inset_y_q256{bottom:16rem;top:16rem}.us_border_q256{border-width:16rem}.us_border_t_q256{border-top-width:16rem}.us_border_r_q256{border-right-width:16rem}.us_border_b_q256{border-bottom-width:16rem}.us_border_l_q256,.us_border_x_q256{border-left-width:16rem}.us_border_x_q256{border-right-width:16rem}.us_border_y_q256{border-bottom-width:16rem;border-top-width:16rem}.us_rounded_q256{border-radius:16rem}.us_rounded_t_q256{border-top-left-radius:16rem;border-top-right-radius:16rem}.us_rounded_r_q256{border-bottom-right-radius:16rem;border-top-right-radius:16rem}.us_rounded_b_q256{border-bottom-left-radius:16rem;border-bottom-right-radius:16rem}.us_rounded_l_q256{border-bottom-left-radius:16rem}.us_rounded_l_q256,.us_rounded_tl_q256{border-top-left-radius:16rem}.us_rounded_tr_q256{border-top-right-radius:16rem}.us_rounded_br_q256{border-bottom-right-radius:16rem}.us_rounded_bl_q256{border-bottom-left-radius:16rem}}@media(min-width:360px){.ss_p_q0{padding:0}.ss_pt_q0{padding-top:0}.ss_pr_q0{padding-right:0}.ss_pb_q0{padding-bottom:0}.ss_pl_q0,.ss_px_q0{padding-left:0}.ss_px_q0{padding-right:0}.ss_py_q0{padding-bottom:0;padding-top:0}.ss_m_q0{margin:0}.ss_mt_q0{margin-top:0}.ss_mr_q0{margin-right:0}.ss_mb_q0{margin-bottom:0}.ss_ml_q0,.ss_mx_q0{margin-left:0}.ss_mx_q0{margin-right:0}.ss_my_q0{margin-bottom:0;margin-top:0}.ss_gap_q0{gap:0}.ss_gap_col_q0{-moz-column-gap:0;column-gap:0}.ss_gap_row_q0{row-gap:0}.ss_w_q0{width:0}.ss_min_w_q0{min-width:0}.ss_max_w_q0{max-width:0}.ss_h_q0{height:0}.ss_min_h_q0{min-height:0}.ss_max_h_q0{max-height:0}.ss_inset_q0{bottom:0;left:0;right:0;top:0}.ss_top_q0{top:0}.ss_right_q0{right:0}.ss_bottom_q0{bottom:0}.ss_left_q0{left:0}.ss_inset_x_q0{left:0;right:0}.ss_inset_y_q0{bottom:0;top:0}.ss_border_q0{border-width:0}.ss_border_t_q0{border-top-width:0}.ss_border_r_q0{border-right-width:0}.ss_border_b_q0{border-bottom-width:0}.ss_border_l_q0,.ss_border_x_q0{border-left-width:0}.ss_border_x_q0{border-right-width:0}.ss_border_y_q0{border-bottom-width:0;border-top-width:0}.ss_rounded_q0{border-radius:0}.ss_rounded_t_q0{border-top-left-radius:0;border-top-right-radius:0}.ss_rounded_r_q0{border-bottom-right-radius:0;border-top-right-radius:0}.ss_rounded_b_q0{border-bottom-left-radius:0;border-bottom-right-radius:0}.ss_rounded_l_q0{border-bottom-left-radius:0}.ss_rounded_l_q0,.ss_rounded_tl_q0{border-top-left-radius:0}.ss_rounded_tr_q0{border-top-right-radius:0}.ss_rounded_br_q0{border-bottom-right-radius:0}.ss_rounded_bl_q0{border-bottom-left-radius:0}.ss_p_q1{padding:.0625rem}.ss_pt_q1{padding-top:.0625rem}.ss_pr_q1{padding-right:.0625rem}.ss_pb_q1{padding-bottom:.0625rem}.ss_pl_q1,.ss_px_q1{padding-left:.0625rem}.ss_px_q1{padding-right:.0625rem}.ss_py_q1{padding-bottom:.0625rem;padding-top:.0625rem}.ss_m_q1{margin:.0625rem}.ss_mt_q1{margin-top:.0625rem}.ss_mr_q1{margin-right:.0625rem}.ss_mb_q1{margin-bottom:.0625rem}.ss_ml_q1,.ss_mx_q1{margin-left:.0625rem}.ss_mx_q1{margin-right:.0625rem}.ss_my_q1{margin-bottom:.0625rem;margin-top:.0625rem}.ss_gap_q1{gap:.0625rem}.ss_gap_col_q1{-moz-column-gap:.0625rem;column-gap:.0625rem}.ss_gap_row_q1{row-gap:.0625rem}.ss_w_q1{width:.0625rem}.ss_min_w_q1{min-width:.0625rem}.ss_max_w_q1{max-width:.0625rem}.ss_h_q1{height:.0625rem}.ss_min_h_q1{min-height:.0625rem}.ss_max_h_q1{max-height:.0625rem}.ss_inset_q1{bottom:.0625rem;left:.0625rem;right:.0625rem;top:.0625rem}.ss_top_q1{top:.0625rem}.ss_right_q1{right:.0625rem}.ss_bottom_q1{bottom:.0625rem}.ss_left_q1{left:.0625rem}.ss_inset_x_q1{left:.0625rem;right:.0625rem}.ss_inset_y_q1{bottom:.0625rem;top:.0625rem}.ss_border_q1{border-width:.0625rem}.ss_border_t_q1{border-top-width:.0625rem}.ss_border_r_q1{border-right-width:.0625rem}.ss_border_b_q1{border-bottom-width:.0625rem}.ss_border_l_q1,.ss_border_x_q1{border-left-width:.0625rem}.ss_border_x_q1{border-right-width:.0625rem}.ss_border_y_q1{border-bottom-width:.0625rem;border-top-width:.0625rem}.ss_rounded_q1{border-radius:.0625rem}.ss_rounded_t_q1{border-top-left-radius:.0625rem;border-top-right-radius:.0625rem}.ss_rounded_r_q1{border-top-right-radius:.0625rem}.ss_rounded_b_q1,.ss_rounded_r_q1{border-bottom-right-radius:.0625rem}.ss_rounded_b_q1,.ss_rounded_l_q1{border-bottom-left-radius:.0625rem}.ss_rounded_l_q1,.ss_rounded_tl_q1{border-top-left-radius:.0625rem}.ss_rounded_tr_q1{border-top-right-radius:.0625rem}.ss_rounded_br_q1{border-bottom-right-radius:.0625rem}.ss_rounded_bl_q1{border-bottom-left-radius:.0625rem}.ss_p_q2{padding:.125rem}.ss_pt_q2{padding-top:.125rem}.ss_pr_q2{padding-right:.125rem}.ss_pb_q2{padding-bottom:.125rem}.ss_pl_q2,.ss_px_q2{padding-left:.125rem}.ss_px_q2{padding-right:.125rem}.ss_py_q2{padding-bottom:.125rem;padding-top:.125rem}.ss_m_q2{margin:.125rem}.ss_mt_q2{margin-top:.125rem}.ss_mr_q2{margin-right:.125rem}.ss_mb_q2{margin-bottom:.125rem}.ss_ml_q2,.ss_mx_q2{margin-left:.125rem}.ss_mx_q2{margin-right:.125rem}.ss_my_q2{margin-bottom:.125rem;margin-top:.125rem}.ss_gap_q2{gap:.125rem}.ss_gap_col_q2{-moz-column-gap:.125rem;column-gap:.125rem}.ss_gap_row_q2{row-gap:.125rem}.ss_w_q2{width:.125rem}.ss_min_w_q2{min-width:.125rem}.ss_max_w_q2{max-width:.125rem}.ss_h_q2{height:.125rem}.ss_min_h_q2{min-height:.125rem}.ss_max_h_q2{max-height:.125rem}.ss_inset_q2{bottom:.125rem;left:.125rem;right:.125rem;top:.125rem}.ss_top_q2{top:.125rem}.ss_right_q2{right:.125rem}.ss_bottom_q2{bottom:.125rem}.ss_left_q2{left:.125rem}.ss_inset_x_q2{left:.125rem;right:.125rem}.ss_inset_y_q2{bottom:.125rem;top:.125rem}.ss_border_q2{border-width:.125rem}.ss_border_t_q2{border-top-width:.125rem}.ss_border_r_q2{border-right-width:.125rem}.ss_border_b_q2{border-bottom-width:.125rem}.ss_border_l_q2,.ss_border_x_q2{border-left-width:.125rem}.ss_border_x_q2{border-right-width:.125rem}.ss_border_y_q2{border-bottom-width:.125rem;border-top-width:.125rem}.ss_rounded_q2{border-radius:.125rem}.ss_rounded_t_q2{border-top-left-radius:.125rem;border-top-right-radius:.125rem}.ss_rounded_r_q2{border-top-right-radius:.125rem}.ss_rounded_b_q2,.ss_rounded_r_q2{border-bottom-right-radius:.125rem}.ss_rounded_b_q2,.ss_rounded_l_q2{border-bottom-left-radius:.125rem}.ss_rounded_l_q2,.ss_rounded_tl_q2{border-top-left-radius:.125rem}.ss_rounded_tr_q2{border-top-right-radius:.125rem}.ss_rounded_br_q2{border-bottom-right-radius:.125rem}.ss_rounded_bl_q2{border-bottom-left-radius:.125rem}.ss_p_q4{padding:.25rem}.ss_pt_q4{padding-top:.25rem}.ss_pr_q4{padding-right:.25rem}.ss_pb_q4{padding-bottom:.25rem}.ss_pl_q4,.ss_px_q4{padding-left:.25rem}.ss_px_q4{padding-right:.25rem}.ss_py_q4{padding-bottom:.25rem;padding-top:.25rem}.ss_m_q4{margin:.25rem}.ss_mt_q4{margin-top:.25rem}.ss_mr_q4{margin-right:.25rem}.ss_mb_q4{margin-bottom:.25rem}.ss_ml_q4,.ss_mx_q4{margin-left:.25rem}.ss_mx_q4{margin-right:.25rem}.ss_my_q4{margin-bottom:.25rem;margin-top:.25rem}.ss_gap_q4{gap:.25rem}.ss_gap_col_q4{-moz-column-gap:.25rem;column-gap:.25rem}.ss_gap_row_q4{row-gap:.25rem}.ss_w_q4{width:.25rem}.ss_min_w_q4{min-width:.25rem}.ss_max_w_q4{max-width:.25rem}.ss_h_q4{height:.25rem}.ss_min_h_q4{min-height:.25rem}.ss_max_h_q4{max-height:.25rem}.ss_inset_q4{bottom:.25rem;left:.25rem;right:.25rem;top:.25rem}.ss_top_q4{top:.25rem}.ss_right_q4{right:.25rem}.ss_bottom_q4{bottom:.25rem}.ss_left_q4{left:.25rem}.ss_inset_x_q4{left:.25rem;right:.25rem}.ss_inset_y_q4{bottom:.25rem;top:.25rem}.ss_border_q4{border-width:.25rem}.ss_border_t_q4{border-top-width:.25rem}.ss_border_r_q4{border-right-width:.25rem}.ss_border_b_q4{border-bottom-width:.25rem}.ss_border_l_q4,.ss_border_x_q4{border-left-width:.25rem}.ss_border_x_q4{border-right-width:.25rem}.ss_border_y_q4{border-bottom-width:.25rem;border-top-width:.25rem}.ss_rounded_q4{border-radius:.25rem}.ss_rounded_t_q4{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.ss_rounded_r_q4{border-bottom-right-radius:.25rem;border-top-right-radius:.25rem}.ss_rounded_b_q4{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.ss_rounded_l_q4{border-bottom-left-radius:.25rem}.ss_rounded_l_q4,.ss_rounded_tl_q4{border-top-left-radius:.25rem}.ss_rounded_tr_q4{border-top-right-radius:.25rem}.ss_rounded_br_q4{border-bottom-right-radius:.25rem}.ss_rounded_bl_q4{border-bottom-left-radius:.25rem}.ss_p_q6{padding:.375rem}.ss_pt_q6{padding-top:.375rem}.ss_pr_q6{padding-right:.375rem}.ss_pb_q6{padding-bottom:.375rem}.ss_pl_q6,.ss_px_q6{padding-left:.375rem}.ss_px_q6{padding-right:.375rem}.ss_py_q6{padding-bottom:.375rem;padding-top:.375rem}.ss_m_q6{margin:.375rem}.ss_mt_q6{margin-top:.375rem}.ss_mr_q6{margin-right:.375rem}.ss_mb_q6{margin-bottom:.375rem}.ss_ml_q6,.ss_mx_q6{margin-left:.375rem}.ss_mx_q6{margin-right:.375rem}.ss_my_q6{margin-bottom:.375rem;margin-top:.375rem}.ss_gap_q6{gap:.375rem}.ss_gap_col_q6{-moz-column-gap:.375rem;column-gap:.375rem}.ss_gap_row_q6{row-gap:.375rem}.ss_w_q6{width:.375rem}.ss_min_w_q6{min-width:.375rem}.ss_max_w_q6{max-width:.375rem}.ss_h_q6{height:.375rem}.ss_min_h_q6{min-height:.375rem}.ss_max_h_q6{max-height:.375rem}.ss_inset_q6{bottom:.375rem;left:.375rem;right:.375rem;top:.375rem}.ss_top_q6{top:.375rem}.ss_right_q6{right:.375rem}.ss_bottom_q6{bottom:.375rem}.ss_left_q6{left:.375rem}.ss_inset_x_q6{left:.375rem;right:.375rem}.ss_inset_y_q6{bottom:.375rem;top:.375rem}.ss_border_q6{border-width:.375rem}.ss_border_t_q6{border-top-width:.375rem}.ss_border_r_q6{border-right-width:.375rem}.ss_border_b_q6{border-bottom-width:.375rem}.ss_border_l_q6,.ss_border_x_q6{border-left-width:.375rem}.ss_border_x_q6{border-right-width:.375rem}.ss_border_y_q6{border-bottom-width:.375rem;border-top-width:.375rem}.ss_rounded_q6{border-radius:.375rem}.ss_rounded_t_q6{border-top-left-radius:.375rem;border-top-right-radius:.375rem}.ss_rounded_r_q6{border-top-right-radius:.375rem}.ss_rounded_b_q6,.ss_rounded_r_q6{border-bottom-right-radius:.375rem}.ss_rounded_b_q6,.ss_rounded_l_q6{border-bottom-left-radius:.375rem}.ss_rounded_l_q6,.ss_rounded_tl_q6{border-top-left-radius:.375rem}.ss_rounded_tr_q6{border-top-right-radius:.375rem}.ss_rounded_br_q6{border-bottom-right-radius:.375rem}.ss_rounded_bl_q6{border-bottom-left-radius:.375rem}.ss_p_q8{padding:.5rem}.ss_pt_q8{padding-top:.5rem}.ss_pr_q8{padding-right:.5rem}.ss_pb_q8{padding-bottom:.5rem}.ss_pl_q8,.ss_px_q8{padding-left:.5rem}.ss_px_q8{padding-right:.5rem}.ss_py_q8{padding-bottom:.5rem;padding-top:.5rem}.ss_m_q8{margin:.5rem}.ss_mt_q8{margin-top:.5rem}.ss_mr_q8{margin-right:.5rem}.ss_mb_q8{margin-bottom:.5rem}.ss_ml_q8,.ss_mx_q8{margin-left:.5rem}.ss_mx_q8{margin-right:.5rem}.ss_my_q8{margin-bottom:.5rem;margin-top:.5rem}.ss_gap_q8{gap:.5rem}.ss_gap_col_q8{-moz-column-gap:.5rem;column-gap:.5rem}.ss_gap_row_q8{row-gap:.5rem}.ss_w_q8{width:.5rem}.ss_min_w_q8{min-width:.5rem}.ss_max_w_q8{max-width:.5rem}.ss_h_q8{height:.5rem}.ss_min_h_q8{min-height:.5rem}.ss_max_h_q8{max-height:.5rem}.ss_inset_q8{bottom:.5rem;left:.5rem;right:.5rem;top:.5rem}.ss_top_q8{top:.5rem}.ss_right_q8{right:.5rem}.ss_bottom_q8{bottom:.5rem}.ss_left_q8{left:.5rem}.ss_inset_x_q8{left:.5rem;right:.5rem}.ss_inset_y_q8{bottom:.5rem;top:.5rem}.ss_border_q8{border-width:.5rem}.ss_border_t_q8{border-top-width:.5rem}.ss_border_r_q8{border-right-width:.5rem}.ss_border_b_q8{border-bottom-width:.5rem}.ss_border_l_q8,.ss_border_x_q8{border-left-width:.5rem}.ss_border_x_q8{border-right-width:.5rem}.ss_border_y_q8{border-bottom-width:.5rem;border-top-width:.5rem}.ss_rounded_q8{border-radius:.5rem}.ss_rounded_t_q8{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.ss_rounded_r_q8{border-bottom-right-radius:.5rem;border-top-right-radius:.5rem}.ss_rounded_b_q8{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.ss_rounded_l_q8{border-bottom-left-radius:.5rem}.ss_rounded_l_q8,.ss_rounded_tl_q8{border-top-left-radius:.5rem}.ss_rounded_tr_q8{border-top-right-radius:.5rem}.ss_rounded_br_q8{border-bottom-right-radius:.5rem}.ss_rounded_bl_q8{border-bottom-left-radius:.5rem}.ss_p_q12{padding:.75rem}.ss_pt_q12{padding-top:.75rem}.ss_pr_q12{padding-right:.75rem}.ss_pb_q12{padding-bottom:.75rem}.ss_pl_q12,.ss_px_q12{padding-left:.75rem}.ss_px_q12{padding-right:.75rem}.ss_py_q12{padding-bottom:.75rem;padding-top:.75rem}.ss_m_q12{margin:.75rem}.ss_mt_q12{margin-top:.75rem}.ss_mr_q12{margin-right:.75rem}.ss_mb_q12{margin-bottom:.75rem}.ss_ml_q12,.ss_mx_q12{margin-left:.75rem}.ss_mx_q12{margin-right:.75rem}.ss_my_q12{margin-bottom:.75rem;margin-top:.75rem}.ss_gap_q12{gap:.75rem}.ss_gap_col_q12{-moz-column-gap:.75rem;column-gap:.75rem}.ss_gap_row_q12{row-gap:.75rem}.ss_w_q12{width:.75rem}.ss_min_w_q12{min-width:.75rem}.ss_max_w_q12{max-width:.75rem}.ss_h_q12{height:.75rem}.ss_min_h_q12{min-height:.75rem}.ss_max_h_q12{max-height:.75rem}.ss_inset_q12{bottom:.75rem;left:.75rem;right:.75rem;top:.75rem}.ss_top_q12{top:.75rem}.ss_right_q12{right:.75rem}.ss_bottom_q12{bottom:.75rem}.ss_left_q12{left:.75rem}.ss_inset_x_q12{left:.75rem;right:.75rem}.ss_inset_y_q12{bottom:.75rem;top:.75rem}.ss_border_q12{border-width:.75rem}.ss_border_t_q12{border-top-width:.75rem}.ss_border_r_q12{border-right-width:.75rem}.ss_border_b_q12{border-bottom-width:.75rem}.ss_border_l_q12,.ss_border_x_q12{border-left-width:.75rem}.ss_border_x_q12{border-right-width:.75rem}.ss_border_y_q12{border-bottom-width:.75rem;border-top-width:.75rem}.ss_rounded_q12{border-radius:.75rem}.ss_rounded_t_q12{border-top-left-radius:.75rem;border-top-right-radius:.75rem}.ss_rounded_r_q12{border-bottom-right-radius:.75rem;border-top-right-radius:.75rem}.ss_rounded_b_q12{border-bottom-left-radius:.75rem;border-bottom-right-radius:.75rem}.ss_rounded_l_q12{border-bottom-left-radius:.75rem}.ss_rounded_l_q12,.ss_rounded_tl_q12{border-top-left-radius:.75rem}.ss_rounded_tr_q12{border-top-right-radius:.75rem}.ss_rounded_br_q12{border-bottom-right-radius:.75rem}.ss_rounded_bl_q12{border-bottom-left-radius:.75rem}.ss_p_q16{padding:1rem}.ss_pt_q16{padding-top:1rem}.ss_pr_q16{padding-right:1rem}.ss_pb_q16{padding-bottom:1rem}.ss_pl_q16,.ss_px_q16{padding-left:1rem}.ss_px_q16{padding-right:1rem}.ss_py_q16{padding-bottom:1rem;padding-top:1rem}.ss_m_q16{margin:1rem}.ss_mt_q16{margin-top:1rem}.ss_mr_q16{margin-right:1rem}.ss_mb_q16{margin-bottom:1rem}.ss_ml_q16,.ss_mx_q16{margin-left:1rem}.ss_mx_q16{margin-right:1rem}.ss_my_q16{margin-bottom:1rem;margin-top:1rem}.ss_gap_q16{gap:1rem}.ss_gap_col_q16{-moz-column-gap:1rem;column-gap:1rem}.ss_gap_row_q16{row-gap:1rem}.ss_w_q16{width:1rem}.ss_min_w_q16{min-width:1rem}.ss_max_w_q16{max-width:1rem}.ss_h_q16{height:1rem}.ss_min_h_q16{min-height:1rem}.ss_max_h_q16{max-height:1rem}.ss_inset_q16{bottom:1rem;left:1rem;right:1rem;top:1rem}.ss_top_q16{top:1rem}.ss_right_q16{right:1rem}.ss_bottom_q16{bottom:1rem}.ss_left_q16{left:1rem}.ss_inset_x_q16{left:1rem;right:1rem}.ss_inset_y_q16{bottom:1rem;top:1rem}.ss_border_q16{border-width:1rem}.ss_border_t_q16{border-top-width:1rem}.ss_border_r_q16{border-right-width:1rem}.ss_border_b_q16{border-bottom-width:1rem}.ss_border_l_q16,.ss_border_x_q16{border-left-width:1rem}.ss_border_x_q16{border-right-width:1rem}.ss_border_y_q16{border-bottom-width:1rem;border-top-width:1rem}.ss_rounded_q16{border-radius:1rem}.ss_rounded_t_q16{border-top-left-radius:1rem;border-top-right-radius:1rem}.ss_rounded_r_q16{border-bottom-right-radius:1rem;border-top-right-radius:1rem}.ss_rounded_b_q16{border-bottom-left-radius:1rem;border-bottom-right-radius:1rem}.ss_rounded_l_q16{border-bottom-left-radius:1rem}.ss_rounded_l_q16,.ss_rounded_tl_q16{border-top-left-radius:1rem}.ss_rounded_tr_q16{border-top-right-radius:1rem}.ss_rounded_br_q16{border-bottom-right-radius:1rem}.ss_rounded_bl_q16{border-bottom-left-radius:1rem}.ss_p_q20{padding:1.25rem}.ss_pt_q20{padding-top:1.25rem}.ss_pr_q20{padding-right:1.25rem}.ss_pb_q20{padding-bottom:1.25rem}.ss_pl_q20,.ss_px_q20{padding-left:1.25rem}.ss_px_q20{padding-right:1.25rem}.ss_py_q20{padding-bottom:1.25rem;padding-top:1.25rem}.ss_m_q20{margin:1.25rem}.ss_mt_q20{margin-top:1.25rem}.ss_mr_q20{margin-right:1.25rem}.ss_mb_q20{margin-bottom:1.25rem}.ss_ml_q20,.ss_mx_q20{margin-left:1.25rem}.ss_mx_q20{margin-right:1.25rem}.ss_my_q20{margin-bottom:1.25rem;margin-top:1.25rem}.ss_gap_q20{gap:1.25rem}.ss_gap_col_q20{-moz-column-gap:1.25rem;column-gap:1.25rem}.ss_gap_row_q20{row-gap:1.25rem}.ss_w_q20{width:1.25rem}.ss_min_w_q20{min-width:1.25rem}.ss_max_w_q20{max-width:1.25rem}.ss_h_q20{height:1.25rem}.ss_min_h_q20{min-height:1.25rem}.ss_max_h_q20{max-height:1.25rem}.ss_inset_q20{bottom:1.25rem;left:1.25rem;right:1.25rem;top:1.25rem}.ss_top_q20{top:1.25rem}.ss_right_q20{right:1.25rem}.ss_bottom_q20{bottom:1.25rem}.ss_left_q20{left:1.25rem}.ss_inset_x_q20{left:1.25rem;right:1.25rem}.ss_inset_y_q20{bottom:1.25rem;top:1.25rem}.ss_border_q20{border-width:1.25rem}.ss_border_t_q20{border-top-width:1.25rem}.ss_border_r_q20{border-right-width:1.25rem}.ss_border_b_q20{border-bottom-width:1.25rem}.ss_border_l_q20,.ss_border_x_q20{border-left-width:1.25rem}.ss_border_x_q20{border-right-width:1.25rem}.ss_border_y_q20{border-bottom-width:1.25rem;border-top-width:1.25rem}.ss_rounded_q20{border-radius:1.25rem}.ss_rounded_t_q20{border-top-left-radius:1.25rem;border-top-right-radius:1.25rem}.ss_rounded_r_q20{border-bottom-right-radius:1.25rem;border-top-right-radius:1.25rem}.ss_rounded_b_q20{border-bottom-left-radius:1.25rem;border-bottom-right-radius:1.25rem}.ss_rounded_l_q20{border-bottom-left-radius:1.25rem}.ss_rounded_l_q20,.ss_rounded_tl_q20{border-top-left-radius:1.25rem}.ss_rounded_tr_q20{border-top-right-radius:1.25rem}.ss_rounded_br_q20{border-bottom-right-radius:1.25rem}.ss_rounded_bl_q20{border-bottom-left-radius:1.25rem}.ss_p_q24{padding:1.5rem}.ss_pt_q24{padding-top:1.5rem}.ss_pr_q24{padding-right:1.5rem}.ss_pb_q24{padding-bottom:1.5rem}.ss_pl_q24,.ss_px_q24{padding-left:1.5rem}.ss_px_q24{padding-right:1.5rem}.ss_py_q24{padding-bottom:1.5rem;padding-top:1.5rem}.ss_m_q24{margin:1.5rem}.ss_mt_q24{margin-top:1.5rem}.ss_mr_q24{margin-right:1.5rem}.ss_mb_q24{margin-bottom:1.5rem}.ss_ml_q24,.ss_mx_q24{margin-left:1.5rem}.ss_mx_q24{margin-right:1.5rem}.ss_my_q24{margin-bottom:1.5rem;margin-top:1.5rem}.ss_gap_q24{gap:1.5rem}.ss_gap_col_q24{-moz-column-gap:1.5rem;column-gap:1.5rem}.ss_gap_row_q24{row-gap:1.5rem}.ss_w_q24{width:1.5rem}.ss_min_w_q24{min-width:1.5rem}.ss_max_w_q24{max-width:1.5rem}.ss_h_q24{height:1.5rem}.ss_min_h_q24{min-height:1.5rem}.ss_max_h_q24{max-height:1.5rem}.ss_inset_q24{bottom:1.5rem;left:1.5rem;right:1.5rem;top:1.5rem}.ss_top_q24{top:1.5rem}.ss_right_q24{right:1.5rem}.ss_bottom_q24{bottom:1.5rem}.ss_left_q24{left:1.5rem}.ss_inset_x_q24{left:1.5rem;right:1.5rem}.ss_inset_y_q24{bottom:1.5rem;top:1.5rem}.ss_border_q24{border-width:1.5rem}.ss_border_t_q24{border-top-width:1.5rem}.ss_border_r_q24{border-right-width:1.5rem}.ss_border_b_q24{border-bottom-width:1.5rem}.ss_border_l_q24,.ss_border_x_q24{border-left-width:1.5rem}.ss_border_x_q24{border-right-width:1.5rem}.ss_border_y_q24{border-bottom-width:1.5rem;border-top-width:1.5rem}.ss_rounded_q24{border-radius:1.5rem}.ss_rounded_t_q24{border-top-left-radius:1.5rem;border-top-right-radius:1.5rem}.ss_rounded_r_q24{border-bottom-right-radius:1.5rem;border-top-right-radius:1.5rem}.ss_rounded_b_q24{border-bottom-left-radius:1.5rem;border-bottom-right-radius:1.5rem}.ss_rounded_l_q24{border-bottom-left-radius:1.5rem}.ss_rounded_l_q24,.ss_rounded_tl_q24{border-top-left-radius:1.5rem}.ss_rounded_tr_q24{border-top-right-radius:1.5rem}.ss_rounded_br_q24{border-bottom-right-radius:1.5rem}.ss_rounded_bl_q24{border-bottom-left-radius:1.5rem}.ss_p_q32{padding:2rem}.ss_pt_q32{padding-top:2rem}.ss_pr_q32{padding-right:2rem}.ss_pb_q32{padding-bottom:2rem}.ss_pl_q32,.ss_px_q32{padding-left:2rem}.ss_px_q32{padding-right:2rem}.ss_py_q32{padding-bottom:2rem;padding-top:2rem}.ss_m_q32{margin:2rem}.ss_mt_q32{margin-top:2rem}.ss_mr_q32{margin-right:2rem}.ss_mb_q32{margin-bottom:2rem}.ss_ml_q32,.ss_mx_q32{margin-left:2rem}.ss_mx_q32{margin-right:2rem}.ss_my_q32{margin-bottom:2rem;margin-top:2rem}.ss_gap_q32{gap:2rem}.ss_gap_col_q32{-moz-column-gap:2rem;column-gap:2rem}.ss_gap_row_q32{row-gap:2rem}.ss_w_q32{width:2rem}.ss_min_w_q32{min-width:2rem}.ss_max_w_q32{max-width:2rem}.ss_h_q32{height:2rem}.ss_min_h_q32{min-height:2rem}.ss_max_h_q32{max-height:2rem}.ss_inset_q32{bottom:2rem;left:2rem;right:2rem;top:2rem}.ss_top_q32{top:2rem}.ss_right_q32{right:2rem}.ss_bottom_q32{bottom:2rem}.ss_left_q32{left:2rem}.ss_inset_x_q32{left:2rem;right:2rem}.ss_inset_y_q32{bottom:2rem;top:2rem}.ss_border_q32{border-width:2rem}.ss_border_t_q32{border-top-width:2rem}.ss_border_r_q32{border-right-width:2rem}.ss_border_b_q32{border-bottom-width:2rem}.ss_border_l_q32,.ss_border_x_q32{border-left-width:2rem}.ss_border_x_q32{border-right-width:2rem}.ss_border_y_q32{border-bottom-width:2rem;border-top-width:2rem}.ss_rounded_q32{border-radius:2rem}.ss_rounded_t_q32{border-top-left-radius:2rem;border-top-right-radius:2rem}.ss_rounded_r_q32{border-bottom-right-radius:2rem;border-top-right-radius:2rem}.ss_rounded_b_q32{border-bottom-left-radius:2rem;border-bottom-right-radius:2rem}.ss_rounded_l_q32{border-bottom-left-radius:2rem}.ss_rounded_l_q32,.ss_rounded_tl_q32{border-top-left-radius:2rem}.ss_rounded_tr_q32{border-top-right-radius:2rem}.ss_rounded_br_q32{border-bottom-right-radius:2rem}.ss_rounded_bl_q32{border-bottom-left-radius:2rem}.ss_p_q40{padding:2.5rem}.ss_pt_q40{padding-top:2.5rem}.ss_pr_q40{padding-right:2.5rem}.ss_pb_q40{padding-bottom:2.5rem}.ss_pl_q40,.ss_px_q40{padding-left:2.5rem}.ss_px_q40{padding-right:2.5rem}.ss_py_q40{padding-bottom:2.5rem;padding-top:2.5rem}.ss_m_q40{margin:2.5rem}.ss_mt_q40{margin-top:2.5rem}.ss_mr_q40{margin-right:2.5rem}.ss_mb_q40{margin-bottom:2.5rem}.ss_ml_q40,.ss_mx_q40{margin-left:2.5rem}.ss_mx_q40{margin-right:2.5rem}.ss_my_q40{margin-bottom:2.5rem;margin-top:2.5rem}.ss_gap_q40{gap:2.5rem}.ss_gap_col_q40{-moz-column-gap:2.5rem;column-gap:2.5rem}.ss_gap_row_q40{row-gap:2.5rem}.ss_w_q40{width:2.5rem}.ss_min_w_q40{min-width:2.5rem}.ss_max_w_q40{max-width:2.5rem}.ss_h_q40{height:2.5rem}.ss_min_h_q40{min-height:2.5rem}.ss_max_h_q40{max-height:2.5rem}.ss_inset_q40{bottom:2.5rem;left:2.5rem;right:2.5rem;top:2.5rem}.ss_top_q40{top:2.5rem}.ss_right_q40{right:2.5rem}.ss_bottom_q40{bottom:2.5rem}.ss_left_q40{left:2.5rem}.ss_inset_x_q40{left:2.5rem;right:2.5rem}.ss_inset_y_q40{bottom:2.5rem;top:2.5rem}.ss_border_q40{border-width:2.5rem}.ss_border_t_q40{border-top-width:2.5rem}.ss_border_r_q40{border-right-width:2.5rem}.ss_border_b_q40{border-bottom-width:2.5rem}.ss_border_l_q40,.ss_border_x_q40{border-left-width:2.5rem}.ss_border_x_q40{border-right-width:2.5rem}.ss_border_y_q40{border-bottom-width:2.5rem;border-top-width:2.5rem}.ss_rounded_q40{border-radius:2.5rem}.ss_rounded_t_q40{border-top-left-radius:2.5rem;border-top-right-radius:2.5rem}.ss_rounded_r_q40{border-bottom-right-radius:2.5rem;border-top-right-radius:2.5rem}.ss_rounded_b_q40{border-bottom-left-radius:2.5rem;border-bottom-right-radius:2.5rem}.ss_rounded_l_q40{border-bottom-left-radius:2.5rem}.ss_rounded_l_q40,.ss_rounded_tl_q40{border-top-left-radius:2.5rem}.ss_rounded_tr_q40{border-top-right-radius:2.5rem}.ss_rounded_br_q40{border-bottom-right-radius:2.5rem}.ss_rounded_bl_q40{border-bottom-left-radius:2.5rem}.ss_p_q48{padding:3rem}.ss_pt_q48{padding-top:3rem}.ss_pr_q48{padding-right:3rem}.ss_pb_q48{padding-bottom:3rem}.ss_pl_q48,.ss_px_q48{padding-left:3rem}.ss_px_q48{padding-right:3rem}.ss_py_q48{padding-bottom:3rem;padding-top:3rem}.ss_m_q48{margin:3rem}.ss_mt_q48{margin-top:3rem}.ss_mr_q48{margin-right:3rem}.ss_mb_q48{margin-bottom:3rem}.ss_ml_q48,.ss_mx_q48{margin-left:3rem}.ss_mx_q48{margin-right:3rem}.ss_my_q48{margin-bottom:3rem;margin-top:3rem}.ss_gap_q48{gap:3rem}.ss_gap_col_q48{-moz-column-gap:3rem;column-gap:3rem}.ss_gap_row_q48{row-gap:3rem}.ss_w_q48{width:3rem}.ss_min_w_q48{min-width:3rem}.ss_max_w_q48{max-width:3rem}.ss_h_q48{height:3rem}.ss_min_h_q48{min-height:3rem}.ss_max_h_q48{max-height:3rem}.ss_inset_q48{bottom:3rem;left:3rem;right:3rem;top:3rem}.ss_top_q48{top:3rem}.ss_right_q48{right:3rem}.ss_bottom_q48{bottom:3rem}.ss_left_q48{left:3rem}.ss_inset_x_q48{left:3rem;right:3rem}.ss_inset_y_q48{bottom:3rem;top:3rem}.ss_border_q48{border-width:3rem}.ss_border_t_q48{border-top-width:3rem}.ss_border_r_q48{border-right-width:3rem}.ss_border_b_q48{border-bottom-width:3rem}.ss_border_l_q48,.ss_border_x_q48{border-left-width:3rem}.ss_border_x_q48{border-right-width:3rem}.ss_border_y_q48{border-bottom-width:3rem;border-top-width:3rem}.ss_rounded_q48{border-radius:3rem}.ss_rounded_t_q48{border-top-left-radius:3rem;border-top-right-radius:3rem}.ss_rounded_r_q48{border-bottom-right-radius:3rem;border-top-right-radius:3rem}.ss_rounded_b_q48{border-bottom-left-radius:3rem;border-bottom-right-radius:3rem}.ss_rounded_l_q48{border-bottom-left-radius:3rem}.ss_rounded_l_q48,.ss_rounded_tl_q48{border-top-left-radius:3rem}.ss_rounded_tr_q48{border-top-right-radius:3rem}.ss_rounded_br_q48{border-bottom-right-radius:3rem}.ss_rounded_bl_q48{border-bottom-left-radius:3rem}.ss_p_q56{padding:3.5rem}.ss_pt_q56{padding-top:3.5rem}.ss_pr_q56{padding-right:3.5rem}.ss_pb_q56{padding-bottom:3.5rem}.ss_pl_q56,.ss_px_q56{padding-left:3.5rem}.ss_px_q56{padding-right:3.5rem}.ss_py_q56{padding-bottom:3.5rem;padding-top:3.5rem}.ss_m_q56{margin:3.5rem}.ss_mt_q56{margin-top:3.5rem}.ss_mr_q56{margin-right:3.5rem}.ss_mb_q56{margin-bottom:3.5rem}.ss_ml_q56,.ss_mx_q56{margin-left:3.5rem}.ss_mx_q56{margin-right:3.5rem}.ss_my_q56{margin-bottom:3.5rem;margin-top:3.5rem}.ss_gap_q56{gap:3.5rem}.ss_gap_col_q56{-moz-column-gap:3.5rem;column-gap:3.5rem}.ss_gap_row_q56{row-gap:3.5rem}.ss_w_q56{width:3.5rem}.ss_min_w_q56{min-width:3.5rem}.ss_max_w_q56{max-width:3.5rem}.ss_h_q56{height:3.5rem}.ss_min_h_q56{min-height:3.5rem}.ss_max_h_q56{max-height:3.5rem}.ss_inset_q56{bottom:3.5rem;left:3.5rem;right:3.5rem;top:3.5rem}.ss_top_q56{top:3.5rem}.ss_right_q56{right:3.5rem}.ss_bottom_q56{bottom:3.5rem}.ss_left_q56{left:3.5rem}.ss_inset_x_q56{left:3.5rem;right:3.5rem}.ss_inset_y_q56{bottom:3.5rem;top:3.5rem}.ss_border_q56{border-width:3.5rem}.ss_border_t_q56{border-top-width:3.5rem}.ss_border_r_q56{border-right-width:3.5rem}.ss_border_b_q56{border-bottom-width:3.5rem}.ss_border_l_q56,.ss_border_x_q56{border-left-width:3.5rem}.ss_border_x_q56{border-right-width:3.5rem}.ss_border_y_q56{border-bottom-width:3.5rem;border-top-width:3.5rem}.ss_rounded_q56{border-radius:3.5rem}.ss_rounded_t_q56{border-top-left-radius:3.5rem;border-top-right-radius:3.5rem}.ss_rounded_r_q56{border-bottom-right-radius:3.5rem;border-top-right-radius:3.5rem}.ss_rounded_b_q56{border-bottom-left-radius:3.5rem;border-bottom-right-radius:3.5rem}.ss_rounded_l_q56{border-bottom-left-radius:3.5rem}.ss_rounded_l_q56,.ss_rounded_tl_q56{border-top-left-radius:3.5rem}.ss_rounded_tr_q56{border-top-right-radius:3.5rem}.ss_rounded_br_q56{border-bottom-right-radius:3.5rem}.ss_rounded_bl_q56{border-bottom-left-radius:3.5rem}.ss_p_q64{padding:4rem}.ss_pt_q64{padding-top:4rem}.ss_pr_q64{padding-right:4rem}.ss_pb_q64{padding-bottom:4rem}.ss_pl_q64,.ss_px_q64{padding-left:4rem}.ss_px_q64{padding-right:4rem}.ss_py_q64{padding-bottom:4rem;padding-top:4rem}.ss_m_q64{margin:4rem}.ss_mt_q64{margin-top:4rem}.ss_mr_q64{margin-right:4rem}.ss_mb_q64{margin-bottom:4rem}.ss_ml_q64,.ss_mx_q64{margin-left:4rem}.ss_mx_q64{margin-right:4rem}.ss_my_q64{margin-bottom:4rem;margin-top:4rem}.ss_gap_q64{gap:4rem}.ss_gap_col_q64{-moz-column-gap:4rem;column-gap:4rem}.ss_gap_row_q64{row-gap:4rem}.ss_w_q64{width:4rem}.ss_min_w_q64{min-width:4rem}.ss_max_w_q64{max-width:4rem}.ss_h_q64{height:4rem}.ss_min_h_q64{min-height:4rem}.ss_max_h_q64{max-height:4rem}.ss_inset_q64{bottom:4rem;left:4rem;right:4rem;top:4rem}.ss_top_q64{top:4rem}.ss_right_q64{right:4rem}.ss_bottom_q64{bottom:4rem}.ss_left_q64{left:4rem}.ss_inset_x_q64{left:4rem;right:4rem}.ss_inset_y_q64{bottom:4rem;top:4rem}.ss_border_q64{border-width:4rem}.ss_border_t_q64{border-top-width:4rem}.ss_border_r_q64{border-right-width:4rem}.ss_border_b_q64{border-bottom-width:4rem}.ss_border_l_q64,.ss_border_x_q64{border-left-width:4rem}.ss_border_x_q64{border-right-width:4rem}.ss_border_y_q64{border-bottom-width:4rem;border-top-width:4rem}.ss_rounded_q64{border-radius:4rem}.ss_rounded_t_q64{border-top-left-radius:4rem;border-top-right-radius:4rem}.ss_rounded_r_q64{border-bottom-right-radius:4rem;border-top-right-radius:4rem}.ss_rounded_b_q64{border-bottom-left-radius:4rem;border-bottom-right-radius:4rem}.ss_rounded_l_q64{border-bottom-left-radius:4rem}.ss_rounded_l_q64,.ss_rounded_tl_q64{border-top-left-radius:4rem}.ss_rounded_tr_q64{border-top-right-radius:4rem}.ss_rounded_br_q64{border-bottom-right-radius:4rem}.ss_rounded_bl_q64{border-bottom-left-radius:4rem}.ss_p_q72{padding:4.5rem}.ss_pt_q72{padding-top:4.5rem}.ss_pr_q72{padding-right:4.5rem}.ss_pb_q72{padding-bottom:4.5rem}.ss_pl_q72,.ss_px_q72{padding-left:4.5rem}.ss_px_q72{padding-right:4.5rem}.ss_py_q72{padding-bottom:4.5rem;padding-top:4.5rem}.ss_m_q72{margin:4.5rem}.ss_mt_q72{margin-top:4.5rem}.ss_mr_q72{margin-right:4.5rem}.ss_mb_q72{margin-bottom:4.5rem}.ss_ml_q72,.ss_mx_q72{margin-left:4.5rem}.ss_mx_q72{margin-right:4.5rem}.ss_my_q72{margin-bottom:4.5rem;margin-top:4.5rem}.ss_gap_q72{gap:4.5rem}.ss_gap_col_q72{-moz-column-gap:4.5rem;column-gap:4.5rem}.ss_gap_row_q72{row-gap:4.5rem}.ss_w_q72{width:4.5rem}.ss_min_w_q72{min-width:4.5rem}.ss_max_w_q72{max-width:4.5rem}.ss_h_q72{height:4.5rem}.ss_min_h_q72{min-height:4.5rem}.ss_max_h_q72{max-height:4.5rem}.ss_inset_q72{bottom:4.5rem;left:4.5rem;right:4.5rem;top:4.5rem}.ss_top_q72{top:4.5rem}.ss_right_q72{right:4.5rem}.ss_bottom_q72{bottom:4.5rem}.ss_left_q72{left:4.5rem}.ss_inset_x_q72{left:4.5rem;right:4.5rem}.ss_inset_y_q72{bottom:4.5rem;top:4.5rem}.ss_border_q72{border-width:4.5rem}.ss_border_t_q72{border-top-width:4.5rem}.ss_border_r_q72{border-right-width:4.5rem}.ss_border_b_q72{border-bottom-width:4.5rem}.ss_border_l_q72,.ss_border_x_q72{border-left-width:4.5rem}.ss_border_x_q72{border-right-width:4.5rem}.ss_border_y_q72{border-bottom-width:4.5rem;border-top-width:4.5rem}.ss_rounded_q72{border-radius:4.5rem}.ss_rounded_t_q72{border-top-left-radius:4.5rem;border-top-right-radius:4.5rem}.ss_rounded_r_q72{border-bottom-right-radius:4.5rem;border-top-right-radius:4.5rem}.ss_rounded_b_q72{border-bottom-left-radius:4.5rem;border-bottom-right-radius:4.5rem}.ss_rounded_l_q72{border-bottom-left-radius:4.5rem}.ss_rounded_l_q72,.ss_rounded_tl_q72{border-top-left-radius:4.5rem}.ss_rounded_tr_q72{border-top-right-radius:4.5rem}.ss_rounded_br_q72{border-bottom-right-radius:4.5rem}.ss_rounded_bl_q72{border-bottom-left-radius:4.5rem}.ss_p_q80{padding:5rem}.ss_pt_q80{padding-top:5rem}.ss_pr_q80{padding-right:5rem}.ss_pb_q80{padding-bottom:5rem}.ss_pl_q80,.ss_px_q80{padding-left:5rem}.ss_px_q80{padding-right:5rem}.ss_py_q80{padding-bottom:5rem;padding-top:5rem}.ss_m_q80{margin:5rem}.ss_mt_q80{margin-top:5rem}.ss_mr_q80{margin-right:5rem}.ss_mb_q80{margin-bottom:5rem}.ss_ml_q80,.ss_mx_q80{margin-left:5rem}.ss_mx_q80{margin-right:5rem}.ss_my_q80{margin-bottom:5rem;margin-top:5rem}.ss_gap_q80{gap:5rem}.ss_gap_col_q80{-moz-column-gap:5rem;column-gap:5rem}.ss_gap_row_q80{row-gap:5rem}.ss_w_q80{width:5rem}.ss_min_w_q80{min-width:5rem}.ss_max_w_q80{max-width:5rem}.ss_h_q80{height:5rem}.ss_min_h_q80{min-height:5rem}.ss_max_h_q80{max-height:5rem}.ss_inset_q80{bottom:5rem;left:5rem;right:5rem;top:5rem}.ss_top_q80{top:5rem}.ss_right_q80{right:5rem}.ss_bottom_q80{bottom:5rem}.ss_left_q80{left:5rem}.ss_inset_x_q80{left:5rem;right:5rem}.ss_inset_y_q80{bottom:5rem;top:5rem}.ss_border_q80{border-width:5rem}.ss_border_t_q80{border-top-width:5rem}.ss_border_r_q80{border-right-width:5rem}.ss_border_b_q80{border-bottom-width:5rem}.ss_border_l_q80,.ss_border_x_q80{border-left-width:5rem}.ss_border_x_q80{border-right-width:5rem}.ss_border_y_q80{border-bottom-width:5rem;border-top-width:5rem}.ss_rounded_q80{border-radius:5rem}.ss_rounded_t_q80{border-top-left-radius:5rem;border-top-right-radius:5rem}.ss_rounded_r_q80{border-bottom-right-radius:5rem;border-top-right-radius:5rem}.ss_rounded_b_q80{border-bottom-left-radius:5rem;border-bottom-right-radius:5rem}.ss_rounded_l_q80{border-bottom-left-radius:5rem}.ss_rounded_l_q80,.ss_rounded_tl_q80{border-top-left-radius:5rem}.ss_rounded_tr_q80{border-top-right-radius:5rem}.ss_rounded_br_q80{border-bottom-right-radius:5rem}.ss_rounded_bl_q80{border-bottom-left-radius:5rem}.ss_p_q96{padding:6rem}.ss_pt_q96{padding-top:6rem}.ss_pr_q96{padding-right:6rem}.ss_pb_q96{padding-bottom:6rem}.ss_pl_q96,.ss_px_q96{padding-left:6rem}.ss_px_q96{padding-right:6rem}.ss_py_q96{padding-bottom:6rem;padding-top:6rem}.ss_m_q96{margin:6rem}.ss_mt_q96{margin-top:6rem}.ss_mr_q96{margin-right:6rem}.ss_mb_q96{margin-bottom:6rem}.ss_ml_q96,.ss_mx_q96{margin-left:6rem}.ss_mx_q96{margin-right:6rem}.ss_my_q96{margin-bottom:6rem;margin-top:6rem}.ss_gap_q96{gap:6rem}.ss_gap_col_q96{-moz-column-gap:6rem;column-gap:6rem}.ss_gap_row_q96{row-gap:6rem}.ss_w_q96{width:6rem}.ss_min_w_q96{min-width:6rem}.ss_max_w_q96{max-width:6rem}.ss_h_q96{height:6rem}.ss_min_h_q96{min-height:6rem}.ss_max_h_q96{max-height:6rem}.ss_inset_q96{bottom:6rem;left:6rem;right:6rem;top:6rem}.ss_top_q96{top:6rem}.ss_right_q96{right:6rem}.ss_bottom_q96{bottom:6rem}.ss_left_q96{left:6rem}.ss_inset_x_q96{left:6rem;right:6rem}.ss_inset_y_q96{bottom:6rem;top:6rem}.ss_border_q96{border-width:6rem}.ss_border_t_q96{border-top-width:6rem}.ss_border_r_q96{border-right-width:6rem}.ss_border_b_q96{border-bottom-width:6rem}.ss_border_l_q96,.ss_border_x_q96{border-left-width:6rem}.ss_border_x_q96{border-right-width:6rem}.ss_border_y_q96{border-bottom-width:6rem;border-top-width:6rem}.ss_rounded_q96{border-radius:6rem}.ss_rounded_t_q96{border-top-left-radius:6rem;border-top-right-radius:6rem}.ss_rounded_r_q96{border-bottom-right-radius:6rem;border-top-right-radius:6rem}.ss_rounded_b_q96{border-bottom-left-radius:6rem;border-bottom-right-radius:6rem}.ss_rounded_l_q96{border-bottom-left-radius:6rem}.ss_rounded_l_q96,.ss_rounded_tl_q96{border-top-left-radius:6rem}.ss_rounded_tr_q96{border-top-right-radius:6rem}.ss_rounded_br_q96{border-bottom-right-radius:6rem}.ss_rounded_bl_q96{border-bottom-left-radius:6rem}.ss_p_q112{padding:7rem}.ss_pt_q112{padding-top:7rem}.ss_pr_q112{padding-right:7rem}.ss_pb_q112{padding-bottom:7rem}.ss_pl_q112,.ss_px_q112{padding-left:7rem}.ss_px_q112{padding-right:7rem}.ss_py_q112{padding-bottom:7rem;padding-top:7rem}.ss_m_q112{margin:7rem}.ss_mt_q112{margin-top:7rem}.ss_mr_q112{margin-right:7rem}.ss_mb_q112{margin-bottom:7rem}.ss_ml_q112,.ss_mx_q112{margin-left:7rem}.ss_mx_q112{margin-right:7rem}.ss_my_q112{margin-bottom:7rem;margin-top:7rem}.ss_gap_q112{gap:7rem}.ss_gap_col_q112{-moz-column-gap:7rem;column-gap:7rem}.ss_gap_row_q112{row-gap:7rem}.ss_w_q112{width:7rem}.ss_min_w_q112{min-width:7rem}.ss_max_w_q112{max-width:7rem}.ss_h_q112{height:7rem}.ss_min_h_q112{min-height:7rem}.ss_max_h_q112{max-height:7rem}.ss_inset_q112{bottom:7rem;left:7rem;right:7rem;top:7rem}.ss_top_q112{top:7rem}.ss_right_q112{right:7rem}.ss_bottom_q112{bottom:7rem}.ss_left_q112{left:7rem}.ss_inset_x_q112{left:7rem;right:7rem}.ss_inset_y_q112{bottom:7rem;top:7rem}.ss_border_q112{border-width:7rem}.ss_border_t_q112{border-top-width:7rem}.ss_border_r_q112{border-right-width:7rem}.ss_border_b_q112{border-bottom-width:7rem}.ss_border_l_q112,.ss_border_x_q112{border-left-width:7rem}.ss_border_x_q112{border-right-width:7rem}.ss_border_y_q112{border-bottom-width:7rem;border-top-width:7rem}.ss_rounded_q112{border-radius:7rem}.ss_rounded_t_q112{border-top-left-radius:7rem;border-top-right-radius:7rem}.ss_rounded_r_q112{border-bottom-right-radius:7rem;border-top-right-radius:7rem}.ss_rounded_b_q112{border-bottom-left-radius:7rem;border-bottom-right-radius:7rem}.ss_rounded_l_q112{border-bottom-left-radius:7rem}.ss_rounded_l_q112,.ss_rounded_tl_q112{border-top-left-radius:7rem}.ss_rounded_tr_q112{border-top-right-radius:7rem}.ss_rounded_br_q112{border-bottom-right-radius:7rem}.ss_rounded_bl_q112{border-bottom-left-radius:7rem}.ss_p_q128{padding:8rem}.ss_pt_q128{padding-top:8rem}.ss_pr_q128{padding-right:8rem}.ss_pb_q128{padding-bottom:8rem}.ss_pl_q128,.ss_px_q128{padding-left:8rem}.ss_px_q128{padding-right:8rem}.ss_py_q128{padding-bottom:8rem;padding-top:8rem}.ss_m_q128{margin:8rem}.ss_mt_q128{margin-top:8rem}.ss_mr_q128{margin-right:8rem}.ss_mb_q128{margin-bottom:8rem}.ss_ml_q128,.ss_mx_q128{margin-left:8rem}.ss_mx_q128{margin-right:8rem}.ss_my_q128{margin-bottom:8rem;margin-top:8rem}.ss_gap_q128{gap:8rem}.ss_gap_col_q128{-moz-column-gap:8rem;column-gap:8rem}.ss_gap_row_q128{row-gap:8rem}.ss_w_q128{width:8rem}.ss_min_w_q128{min-width:8rem}.ss_max_w_q128{max-width:8rem}.ss_h_q128{height:8rem}.ss_min_h_q128{min-height:8rem}.ss_max_h_q128{max-height:8rem}.ss_inset_q128{bottom:8rem;left:8rem;right:8rem;top:8rem}.ss_top_q128{top:8rem}.ss_right_q128{right:8rem}.ss_bottom_q128{bottom:8rem}.ss_left_q128{left:8rem}.ss_inset_x_q128{left:8rem;right:8rem}.ss_inset_y_q128{bottom:8rem;top:8rem}.ss_border_q128{border-width:8rem}.ss_border_t_q128{border-top-width:8rem}.ss_border_r_q128{border-right-width:8rem}.ss_border_b_q128{border-bottom-width:8rem}.ss_border_l_q128,.ss_border_x_q128{border-left-width:8rem}.ss_border_x_q128{border-right-width:8rem}.ss_border_y_q128{border-bottom-width:8rem;border-top-width:8rem}.ss_rounded_q128{border-radius:8rem}.ss_rounded_t_q128{border-top-left-radius:8rem;border-top-right-radius:8rem}.ss_rounded_r_q128{border-bottom-right-radius:8rem;border-top-right-radius:8rem}.ss_rounded_b_q128{border-bottom-left-radius:8rem;border-bottom-right-radius:8rem}.ss_rounded_l_q128{border-bottom-left-radius:8rem}.ss_rounded_l_q128,.ss_rounded_tl_q128{border-top-left-radius:8rem}.ss_rounded_tr_q128{border-top-right-radius:8rem}.ss_rounded_br_q128{border-bottom-right-radius:8rem}.ss_rounded_bl_q128{border-bottom-left-radius:8rem}.ss_p_q144{padding:9rem}.ss_pt_q144{padding-top:9rem}.ss_pr_q144{padding-right:9rem}.ss_pb_q144{padding-bottom:9rem}.ss_pl_q144,.ss_px_q144{padding-left:9rem}.ss_px_q144{padding-right:9rem}.ss_py_q144{padding-bottom:9rem;padding-top:9rem}.ss_m_q144{margin:9rem}.ss_mt_q144{margin-top:9rem}.ss_mr_q144{margin-right:9rem}.ss_mb_q144{margin-bottom:9rem}.ss_ml_q144,.ss_mx_q144{margin-left:9rem}.ss_mx_q144{margin-right:9rem}.ss_my_q144{margin-bottom:9rem;margin-top:9rem}.ss_gap_q144{gap:9rem}.ss_gap_col_q144{-moz-column-gap:9rem;column-gap:9rem}.ss_gap_row_q144{row-gap:9rem}.ss_w_q144{width:9rem}.ss_min_w_q144{min-width:9rem}.ss_max_w_q144{max-width:9rem}.ss_h_q144{height:9rem}.ss_min_h_q144{min-height:9rem}.ss_max_h_q144{max-height:9rem}.ss_inset_q144{bottom:9rem;left:9rem;right:9rem;top:9rem}.ss_top_q144{top:9rem}.ss_right_q144{right:9rem}.ss_bottom_q144{bottom:9rem}.ss_left_q144{left:9rem}.ss_inset_x_q144{left:9rem;right:9rem}.ss_inset_y_q144{bottom:9rem;top:9rem}.ss_border_q144{border-width:9rem}.ss_border_t_q144{border-top-width:9rem}.ss_border_r_q144{border-right-width:9rem}.ss_border_b_q144{border-bottom-width:9rem}.ss_border_l_q144,.ss_border_x_q144{border-left-width:9rem}.ss_border_x_q144{border-right-width:9rem}.ss_border_y_q144{border-bottom-width:9rem;border-top-width:9rem}.ss_rounded_q144{border-radius:9rem}.ss_rounded_t_q144{border-top-left-radius:9rem;border-top-right-radius:9rem}.ss_rounded_r_q144{border-bottom-right-radius:9rem;border-top-right-radius:9rem}.ss_rounded_b_q144{border-bottom-left-radius:9rem;border-bottom-right-radius:9rem}.ss_rounded_l_q144{border-bottom-left-radius:9rem}.ss_rounded_l_q144,.ss_rounded_tl_q144{border-top-left-radius:9rem}.ss_rounded_tr_q144{border-top-right-radius:9rem}.ss_rounded_br_q144{border-bottom-right-radius:9rem}.ss_rounded_bl_q144{border-bottom-left-radius:9rem}.ss_p_q160{padding:10rem}.ss_pt_q160{padding-top:10rem}.ss_pr_q160{padding-right:10rem}.ss_pb_q160{padding-bottom:10rem}.ss_pl_q160,.ss_px_q160{padding-left:10rem}.ss_px_q160{padding-right:10rem}.ss_py_q160{padding-bottom:10rem;padding-top:10rem}.ss_m_q160{margin:10rem}.ss_mt_q160{margin-top:10rem}.ss_mr_q160{margin-right:10rem}.ss_mb_q160{margin-bottom:10rem}.ss_ml_q160,.ss_mx_q160{margin-left:10rem}.ss_mx_q160{margin-right:10rem}.ss_my_q160{margin-bottom:10rem;margin-top:10rem}.ss_gap_q160{gap:10rem}.ss_gap_col_q160{-moz-column-gap:10rem;column-gap:10rem}.ss_gap_row_q160{row-gap:10rem}.ss_w_q160{width:10rem}.ss_min_w_q160{min-width:10rem}.ss_max_w_q160{max-width:10rem}.ss_h_q160{height:10rem}.ss_min_h_q160{min-height:10rem}.ss_max_h_q160{max-height:10rem}.ss_inset_q160{bottom:10rem;left:10rem;right:10rem;top:10rem}.ss_top_q160{top:10rem}.ss_right_q160{right:10rem}.ss_bottom_q160{bottom:10rem}.ss_left_q160{left:10rem}.ss_inset_x_q160{left:10rem;right:10rem}.ss_inset_y_q160{bottom:10rem;top:10rem}.ss_border_q160{border-width:10rem}.ss_border_t_q160{border-top-width:10rem}.ss_border_r_q160{border-right-width:10rem}.ss_border_b_q160{border-bottom-width:10rem}.ss_border_l_q160,.ss_border_x_q160{border-left-width:10rem}.ss_border_x_q160{border-right-width:10rem}.ss_border_y_q160{border-bottom-width:10rem;border-top-width:10rem}.ss_rounded_q160{border-radius:10rem}.ss_rounded_t_q160{border-top-left-radius:10rem;border-top-right-radius:10rem}.ss_rounded_r_q160{border-bottom-right-radius:10rem;border-top-right-radius:10rem}.ss_rounded_b_q160{border-bottom-left-radius:10rem;border-bottom-right-radius:10rem}.ss_rounded_l_q160{border-bottom-left-radius:10rem}.ss_rounded_l_q160,.ss_rounded_tl_q160{border-top-left-radius:10rem}.ss_rounded_tr_q160{border-top-right-radius:10rem}.ss_rounded_br_q160{border-bottom-right-radius:10rem}.ss_rounded_bl_q160{border-bottom-left-radius:10rem}.ss_p_q192{padding:12rem}.ss_pt_q192{padding-top:12rem}.ss_pr_q192{padding-right:12rem}.ss_pb_q192{padding-bottom:12rem}.ss_pl_q192,.ss_px_q192{padding-left:12rem}.ss_px_q192{padding-right:12rem}.ss_py_q192{padding-bottom:12rem;padding-top:12rem}.ss_m_q192{margin:12rem}.ss_mt_q192{margin-top:12rem}.ss_mr_q192{margin-right:12rem}.ss_mb_q192{margin-bottom:12rem}.ss_ml_q192,.ss_mx_q192{margin-left:12rem}.ss_mx_q192{margin-right:12rem}.ss_my_q192{margin-bottom:12rem;margin-top:12rem}.ss_gap_q192{gap:12rem}.ss_gap_col_q192{-moz-column-gap:12rem;column-gap:12rem}.ss_gap_row_q192{row-gap:12rem}.ss_w_q192{width:12rem}.ss_min_w_q192{min-width:12rem}.ss_max_w_q192{max-width:12rem}.ss_h_q192{height:12rem}.ss_min_h_q192{min-height:12rem}.ss_max_h_q192{max-height:12rem}.ss_inset_q192{bottom:12rem;left:12rem;right:12rem;top:12rem}.ss_top_q192{top:12rem}.ss_right_q192{right:12rem}.ss_bottom_q192{bottom:12rem}.ss_left_q192{left:12rem}.ss_inset_x_q192{left:12rem;right:12rem}.ss_inset_y_q192{bottom:12rem;top:12rem}.ss_border_q192{border-width:12rem}.ss_border_t_q192{border-top-width:12rem}.ss_border_r_q192{border-right-width:12rem}.ss_border_b_q192{border-bottom-width:12rem}.ss_border_l_q192,.ss_border_x_q192{border-left-width:12rem}.ss_border_x_q192{border-right-width:12rem}.ss_border_y_q192{border-bottom-width:12rem;border-top-width:12rem}.ss_rounded_q192{border-radius:12rem}.ss_rounded_t_q192{border-top-left-radius:12rem;border-top-right-radius:12rem}.ss_rounded_r_q192{border-bottom-right-radius:12rem;border-top-right-radius:12rem}.ss_rounded_b_q192{border-bottom-left-radius:12rem;border-bottom-right-radius:12rem}.ss_rounded_l_q192{border-bottom-left-radius:12rem}.ss_rounded_l_q192,.ss_rounded_tl_q192{border-top-left-radius:12rem}.ss_rounded_tr_q192{border-top-right-radius:12rem}.ss_rounded_br_q192{border-bottom-right-radius:12rem}.ss_rounded_bl_q192{border-bottom-left-radius:12rem}.ss_p_q224{padding:14rem}.ss_pt_q224{padding-top:14rem}.ss_pr_q224{padding-right:14rem}.ss_pb_q224{padding-bottom:14rem}.ss_pl_q224,.ss_px_q224{padding-left:14rem}.ss_px_q224{padding-right:14rem}.ss_py_q224{padding-bottom:14rem;padding-top:14rem}.ss_m_q224{margin:14rem}.ss_mt_q224{margin-top:14rem}.ss_mr_q224{margin-right:14rem}.ss_mb_q224{margin-bottom:14rem}.ss_ml_q224,.ss_mx_q224{margin-left:14rem}.ss_mx_q224{margin-right:14rem}.ss_my_q224{margin-bottom:14rem;margin-top:14rem}.ss_gap_q224{gap:14rem}.ss_gap_col_q224{-moz-column-gap:14rem;column-gap:14rem}.ss_gap_row_q224{row-gap:14rem}.ss_w_q224{width:14rem}.ss_min_w_q224{min-width:14rem}.ss_max_w_q224{max-width:14rem}.ss_h_q224{height:14rem}.ss_min_h_q224{min-height:14rem}.ss_max_h_q224{max-height:14rem}.ss_inset_q224{bottom:14rem;left:14rem;right:14rem;top:14rem}.ss_top_q224{top:14rem}.ss_right_q224{right:14rem}.ss_bottom_q224{bottom:14rem}.ss_left_q224{left:14rem}.ss_inset_x_q224{left:14rem;right:14rem}.ss_inset_y_q224{bottom:14rem;top:14rem}.ss_border_q224{border-width:14rem}.ss_border_t_q224{border-top-width:14rem}.ss_border_r_q224{border-right-width:14rem}.ss_border_b_q224{border-bottom-width:14rem}.ss_border_l_q224,.ss_border_x_q224{border-left-width:14rem}.ss_border_x_q224{border-right-width:14rem}.ss_border_y_q224{border-bottom-width:14rem;border-top-width:14rem}.ss_rounded_q224{border-radius:14rem}.ss_rounded_t_q224{border-top-left-radius:14rem;border-top-right-radius:14rem}.ss_rounded_r_q224{border-bottom-right-radius:14rem;border-top-right-radius:14rem}.ss_rounded_b_q224{border-bottom-left-radius:14rem;border-bottom-right-radius:14rem}.ss_rounded_l_q224{border-bottom-left-radius:14rem}.ss_rounded_l_q224,.ss_rounded_tl_q224{border-top-left-radius:14rem}.ss_rounded_tr_q224{border-top-right-radius:14rem}.ss_rounded_br_q224{border-bottom-right-radius:14rem}.ss_rounded_bl_q224{border-bottom-left-radius:14rem}.ss_p_q256{padding:16rem}.ss_pt_q256{padding-top:16rem}.ss_pr_q256{padding-right:16rem}.ss_pb_q256{padding-bottom:16rem}.ss_pl_q256,.ss_px_q256{padding-left:16rem}.ss_px_q256{padding-right:16rem}.ss_py_q256{padding-bottom:16rem;padding-top:16rem}.ss_m_q256{margin:16rem}.ss_mt_q256{margin-top:16rem}.ss_mr_q256{margin-right:16rem}.ss_mb_q256{margin-bottom:16rem}.ss_ml_q256,.ss_mx_q256{margin-left:16rem}.ss_mx_q256{margin-right:16rem}.ss_my_q256{margin-bottom:16rem;margin-top:16rem}.ss_gap_q256{gap:16rem}.ss_gap_col_q256{-moz-column-gap:16rem;column-gap:16rem}.ss_gap_row_q256{row-gap:16rem}.ss_w_q256{width:16rem}.ss_min_w_q256{min-width:16rem}.ss_max_w_q256{max-width:16rem}.ss_h_q256{height:16rem}.ss_min_h_q256{min-height:16rem}.ss_max_h_q256{max-height:16rem}.ss_inset_q256{bottom:16rem;left:16rem;right:16rem;top:16rem}.ss_top_q256{top:16rem}.ss_right_q256{right:16rem}.ss_bottom_q256{bottom:16rem}.ss_left_q256{left:16rem}.ss_inset_x_q256{left:16rem;right:16rem}.ss_inset_y_q256{bottom:16rem;top:16rem}.ss_border_q256{border-width:16rem}.ss_border_t_q256{border-top-width:16rem}.ss_border_r_q256{border-right-width:16rem}.ss_border_b_q256{border-bottom-width:16rem}.ss_border_l_q256,.ss_border_x_q256{border-left-width:16rem}.ss_border_x_q256{border-right-width:16rem}.ss_border_y_q256{border-bottom-width:16rem;border-top-width:16rem}.ss_rounded_q256{border-radius:16rem}.ss_rounded_t_q256{border-top-left-radius:16rem;border-top-right-radius:16rem}.ss_rounded_r_q256{border-bottom-right-radius:16rem;border-top-right-radius:16rem}.ss_rounded_b_q256{border-bottom-left-radius:16rem;border-bottom-right-radius:16rem}.ss_rounded_l_q256{border-bottom-left-radius:16rem}.ss_rounded_l_q256,.ss_rounded_tl_q256{border-top-left-radius:16rem}.ss_rounded_tr_q256{border-top-right-radius:16rem}.ss_rounded_br_q256{border-bottom-right-radius:16rem}.ss_rounded_bl_q256{border-bottom-left-radius:16rem}}@media(min-width:540px){.xs_p_q0{padding:0}.xs_pt_q0{padding-top:0}.xs_pr_q0{padding-right:0}.xs_pb_q0{padding-bottom:0}.xs_pl_q0,.xs_px_q0{padding-left:0}.xs_px_q0{padding-right:0}.xs_py_q0{padding-bottom:0;padding-top:0}.xs_m_q0{margin:0}.xs_mt_q0{margin-top:0}.xs_mr_q0{margin-right:0}.xs_mb_q0{margin-bottom:0}.xs_ml_q0,.xs_mx_q0{margin-left:0}.xs_mx_q0{margin-right:0}.xs_my_q0{margin-bottom:0;margin-top:0}.xs_gap_q0{gap:0}.xs_gap_col_q0{-moz-column-gap:0;column-gap:0}.xs_gap_row_q0{row-gap:0}.xs_w_q0{width:0}.xs_min_w_q0{min-width:0}.xs_max_w_q0{max-width:0}.xs_h_q0{height:0}.xs_min_h_q0{min-height:0}.xs_max_h_q0{max-height:0}.xs_inset_q0{bottom:0;left:0;right:0;top:0}.xs_top_q0{top:0}.xs_right_q0{right:0}.xs_bottom_q0{bottom:0}.xs_left_q0{left:0}.xs_inset_x_q0{left:0;right:0}.xs_inset_y_q0{bottom:0;top:0}.xs_border_q0{border-width:0}.xs_border_t_q0{border-top-width:0}.xs_border_r_q0{border-right-width:0}.xs_border_b_q0{border-bottom-width:0}.xs_border_l_q0,.xs_border_x_q0{border-left-width:0}.xs_border_x_q0{border-right-width:0}.xs_border_y_q0{border-bottom-width:0;border-top-width:0}.xs_rounded_q0{border-radius:0}.xs_rounded_t_q0{border-top-left-radius:0;border-top-right-radius:0}.xs_rounded_r_q0{border-bottom-right-radius:0;border-top-right-radius:0}.xs_rounded_b_q0{border-bottom-left-radius:0;border-bottom-right-radius:0}.xs_rounded_l_q0{border-bottom-left-radius:0}.xs_rounded_l_q0,.xs_rounded_tl_q0{border-top-left-radius:0}.xs_rounded_tr_q0{border-top-right-radius:0}.xs_rounded_br_q0{border-bottom-right-radius:0}.xs_rounded_bl_q0{border-bottom-left-radius:0}.xs_p_q1{padding:.0625rem}.xs_pt_q1{padding-top:.0625rem}.xs_pr_q1{padding-right:.0625rem}.xs_pb_q1{padding-bottom:.0625rem}.xs_pl_q1,.xs_px_q1{padding-left:.0625rem}.xs_px_q1{padding-right:.0625rem}.xs_py_q1{padding-bottom:.0625rem;padding-top:.0625rem}.xs_m_q1{margin:.0625rem}.xs_mt_q1{margin-top:.0625rem}.xs_mr_q1{margin-right:.0625rem}.xs_mb_q1{margin-bottom:.0625rem}.xs_ml_q1,.xs_mx_q1{margin-left:.0625rem}.xs_mx_q1{margin-right:.0625rem}.xs_my_q1{margin-bottom:.0625rem;margin-top:.0625rem}.xs_gap_q1{gap:.0625rem}.xs_gap_col_q1{-moz-column-gap:.0625rem;column-gap:.0625rem}.xs_gap_row_q1{row-gap:.0625rem}.xs_w_q1{width:.0625rem}.xs_min_w_q1{min-width:.0625rem}.xs_max_w_q1{max-width:.0625rem}.xs_h_q1{height:.0625rem}.xs_min_h_q1{min-height:.0625rem}.xs_max_h_q1{max-height:.0625rem}.xs_inset_q1{bottom:.0625rem;left:.0625rem;right:.0625rem;top:.0625rem}.xs_top_q1{top:.0625rem}.xs_right_q1{right:.0625rem}.xs_bottom_q1{bottom:.0625rem}.xs_left_q1{left:.0625rem}.xs_inset_x_q1{left:.0625rem;right:.0625rem}.xs_inset_y_q1{bottom:.0625rem;top:.0625rem}.xs_border_q1{border-width:.0625rem}.xs_border_t_q1{border-top-width:.0625rem}.xs_border_r_q1{border-right-width:.0625rem}.xs_border_b_q1{border-bottom-width:.0625rem}.xs_border_l_q1,.xs_border_x_q1{border-left-width:.0625rem}.xs_border_x_q1{border-right-width:.0625rem}.xs_border_y_q1{border-bottom-width:.0625rem;border-top-width:.0625rem}.xs_rounded_q1{border-radius:.0625rem}.xs_rounded_t_q1{border-top-left-radius:.0625rem;border-top-right-radius:.0625rem}.xs_rounded_r_q1{border-top-right-radius:.0625rem}.xs_rounded_b_q1,.xs_rounded_r_q1{border-bottom-right-radius:.0625rem}.xs_rounded_b_q1,.xs_rounded_l_q1{border-bottom-left-radius:.0625rem}.xs_rounded_l_q1,.xs_rounded_tl_q1{border-top-left-radius:.0625rem}.xs_rounded_tr_q1{border-top-right-radius:.0625rem}.xs_rounded_br_q1{border-bottom-right-radius:.0625rem}.xs_rounded_bl_q1{border-bottom-left-radius:.0625rem}.xs_p_q2{padding:.125rem}.xs_pt_q2{padding-top:.125rem}.xs_pr_q2{padding-right:.125rem}.xs_pb_q2{padding-bottom:.125rem}.xs_pl_q2,.xs_px_q2{padding-left:.125rem}.xs_px_q2{padding-right:.125rem}.xs_py_q2{padding-bottom:.125rem;padding-top:.125rem}.xs_m_q2{margin:.125rem}.xs_mt_q2{margin-top:.125rem}.xs_mr_q2{margin-right:.125rem}.xs_mb_q2{margin-bottom:.125rem}.xs_ml_q2,.xs_mx_q2{margin-left:.125rem}.xs_mx_q2{margin-right:.125rem}.xs_my_q2{margin-bottom:.125rem;margin-top:.125rem}.xs_gap_q2{gap:.125rem}.xs_gap_col_q2{-moz-column-gap:.125rem;column-gap:.125rem}.xs_gap_row_q2{row-gap:.125rem}.xs_w_q2{width:.125rem}.xs_min_w_q2{min-width:.125rem}.xs_max_w_q2{max-width:.125rem}.xs_h_q2{height:.125rem}.xs_min_h_q2{min-height:.125rem}.xs_max_h_q2{max-height:.125rem}.xs_inset_q2{bottom:.125rem;left:.125rem;right:.125rem;top:.125rem}.xs_top_q2{top:.125rem}.xs_right_q2{right:.125rem}.xs_bottom_q2{bottom:.125rem}.xs_left_q2{left:.125rem}.xs_inset_x_q2{left:.125rem;right:.125rem}.xs_inset_y_q2{bottom:.125rem;top:.125rem}.xs_border_q2{border-width:.125rem}.xs_border_t_q2{border-top-width:.125rem}.xs_border_r_q2{border-right-width:.125rem}.xs_border_b_q2{border-bottom-width:.125rem}.xs_border_l_q2,.xs_border_x_q2{border-left-width:.125rem}.xs_border_x_q2{border-right-width:.125rem}.xs_border_y_q2{border-bottom-width:.125rem;border-top-width:.125rem}.xs_rounded_q2{border-radius:.125rem}.xs_rounded_t_q2{border-top-left-radius:.125rem;border-top-right-radius:.125rem}.xs_rounded_r_q2{border-top-right-radius:.125rem}.xs_rounded_b_q2,.xs_rounded_r_q2{border-bottom-right-radius:.125rem}.xs_rounded_b_q2,.xs_rounded_l_q2{border-bottom-left-radius:.125rem}.xs_rounded_l_q2,.xs_rounded_tl_q2{border-top-left-radius:.125rem}.xs_rounded_tr_q2{border-top-right-radius:.125rem}.xs_rounded_br_q2{border-bottom-right-radius:.125rem}.xs_rounded_bl_q2{border-bottom-left-radius:.125rem}.xs_p_q4{padding:.25rem}.xs_pt_q4{padding-top:.25rem}.xs_pr_q4{padding-right:.25rem}.xs_pb_q4{padding-bottom:.25rem}.xs_pl_q4,.xs_px_q4{padding-left:.25rem}.xs_px_q4{padding-right:.25rem}.xs_py_q4{padding-bottom:.25rem;padding-top:.25rem}.xs_m_q4{margin:.25rem}.xs_mt_q4{margin-top:.25rem}.xs_mr_q4{margin-right:.25rem}.xs_mb_q4{margin-bottom:.25rem}.xs_ml_q4,.xs_mx_q4{margin-left:.25rem}.xs_mx_q4{margin-right:.25rem}.xs_my_q4{margin-bottom:.25rem;margin-top:.25rem}.xs_gap_q4{gap:.25rem}.xs_gap_col_q4{-moz-column-gap:.25rem;column-gap:.25rem}.xs_gap_row_q4{row-gap:.25rem}.xs_w_q4{width:.25rem}.xs_min_w_q4{min-width:.25rem}.xs_max_w_q4{max-width:.25rem}.xs_h_q4{height:.25rem}.xs_min_h_q4{min-height:.25rem}.xs_max_h_q4{max-height:.25rem}.xs_inset_q4{bottom:.25rem;left:.25rem;right:.25rem;top:.25rem}.xs_top_q4{top:.25rem}.xs_right_q4{right:.25rem}.xs_bottom_q4{bottom:.25rem}.xs_left_q4{left:.25rem}.xs_inset_x_q4{left:.25rem;right:.25rem}.xs_inset_y_q4{bottom:.25rem;top:.25rem}.xs_border_q4{border-width:.25rem}.xs_border_t_q4{border-top-width:.25rem}.xs_border_r_q4{border-right-width:.25rem}.xs_border_b_q4{border-bottom-width:.25rem}.xs_border_l_q4,.xs_border_x_q4{border-left-width:.25rem}.xs_border_x_q4{border-right-width:.25rem}.xs_border_y_q4{border-bottom-width:.25rem;border-top-width:.25rem}.xs_rounded_q4{border-radius:.25rem}.xs_rounded_t_q4{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.xs_rounded_r_q4{border-bottom-right-radius:.25rem;border-top-right-radius:.25rem}.xs_rounded_b_q4{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.xs_rounded_l_q4{border-bottom-left-radius:.25rem}.xs_rounded_l_q4,.xs_rounded_tl_q4{border-top-left-radius:.25rem}.xs_rounded_tr_q4{border-top-right-radius:.25rem}.xs_rounded_br_q4{border-bottom-right-radius:.25rem}.xs_rounded_bl_q4{border-bottom-left-radius:.25rem}.xs_p_q6{padding:.375rem}.xs_pt_q6{padding-top:.375rem}.xs_pr_q6{padding-right:.375rem}.xs_pb_q6{padding-bottom:.375rem}.xs_pl_q6,.xs_px_q6{padding-left:.375rem}.xs_px_q6{padding-right:.375rem}.xs_py_q6{padding-bottom:.375rem;padding-top:.375rem}.xs_m_q6{margin:.375rem}.xs_mt_q6{margin-top:.375rem}.xs_mr_q6{margin-right:.375rem}.xs_mb_q6{margin-bottom:.375rem}.xs_ml_q6,.xs_mx_q6{margin-left:.375rem}.xs_mx_q6{margin-right:.375rem}.xs_my_q6{margin-bottom:.375rem;margin-top:.375rem}.xs_gap_q6{gap:.375rem}.xs_gap_col_q6{-moz-column-gap:.375rem;column-gap:.375rem}.xs_gap_row_q6{row-gap:.375rem}.xs_w_q6{width:.375rem}.xs_min_w_q6{min-width:.375rem}.xs_max_w_q6{max-width:.375rem}.xs_h_q6{height:.375rem}.xs_min_h_q6{min-height:.375rem}.xs_max_h_q6{max-height:.375rem}.xs_inset_q6{bottom:.375rem;left:.375rem;right:.375rem;top:.375rem}.xs_top_q6{top:.375rem}.xs_right_q6{right:.375rem}.xs_bottom_q6{bottom:.375rem}.xs_left_q6{left:.375rem}.xs_inset_x_q6{left:.375rem;right:.375rem}.xs_inset_y_q6{bottom:.375rem;top:.375rem}.xs_border_q6{border-width:.375rem}.xs_border_t_q6{border-top-width:.375rem}.xs_border_r_q6{border-right-width:.375rem}.xs_border_b_q6{border-bottom-width:.375rem}.xs_border_l_q6,.xs_border_x_q6{border-left-width:.375rem}.xs_border_x_q6{border-right-width:.375rem}.xs_border_y_q6{border-bottom-width:.375rem;border-top-width:.375rem}.xs_rounded_q6{border-radius:.375rem}.xs_rounded_t_q6{border-top-left-radius:.375rem;border-top-right-radius:.375rem}.xs_rounded_r_q6{border-top-right-radius:.375rem}.xs_rounded_b_q6,.xs_rounded_r_q6{border-bottom-right-radius:.375rem}.xs_rounded_b_q6,.xs_rounded_l_q6{border-bottom-left-radius:.375rem}.xs_rounded_l_q6,.xs_rounded_tl_q6{border-top-left-radius:.375rem}.xs_rounded_tr_q6{border-top-right-radius:.375rem}.xs_rounded_br_q6{border-bottom-right-radius:.375rem}.xs_rounded_bl_q6{border-bottom-left-radius:.375rem}.xs_p_q8{padding:.5rem}.xs_pt_q8{padding-top:.5rem}.xs_pr_q8{padding-right:.5rem}.xs_pb_q8{padding-bottom:.5rem}.xs_pl_q8,.xs_px_q8{padding-left:.5rem}.xs_px_q8{padding-right:.5rem}.xs_py_q8{padding-bottom:.5rem;padding-top:.5rem}.xs_m_q8{margin:.5rem}.xs_mt_q8{margin-top:.5rem}.xs_mr_q8{margin-right:.5rem}.xs_mb_q8{margin-bottom:.5rem}.xs_ml_q8,.xs_mx_q8{margin-left:.5rem}.xs_mx_q8{margin-right:.5rem}.xs_my_q8{margin-bottom:.5rem;margin-top:.5rem}.xs_gap_q8{gap:.5rem}.xs_gap_col_q8{-moz-column-gap:.5rem;column-gap:.5rem}.xs_gap_row_q8{row-gap:.5rem}.xs_w_q8{width:.5rem}.xs_min_w_q8{min-width:.5rem}.xs_max_w_q8{max-width:.5rem}.xs_h_q8{height:.5rem}.xs_min_h_q8{min-height:.5rem}.xs_max_h_q8{max-height:.5rem}.xs_inset_q8{bottom:.5rem;left:.5rem;right:.5rem;top:.5rem}.xs_top_q8{top:.5rem}.xs_right_q8{right:.5rem}.xs_bottom_q8{bottom:.5rem}.xs_left_q8{left:.5rem}.xs_inset_x_q8{left:.5rem;right:.5rem}.xs_inset_y_q8{bottom:.5rem;top:.5rem}.xs_border_q8{border-width:.5rem}.xs_border_t_q8{border-top-width:.5rem}.xs_border_r_q8{border-right-width:.5rem}.xs_border_b_q8{border-bottom-width:.5rem}.xs_border_l_q8,.xs_border_x_q8{border-left-width:.5rem}.xs_border_x_q8{border-right-width:.5rem}.xs_border_y_q8{border-bottom-width:.5rem;border-top-width:.5rem}.xs_rounded_q8{border-radius:.5rem}.xs_rounded_t_q8{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.xs_rounded_r_q8{border-bottom-right-radius:.5rem;border-top-right-radius:.5rem}.xs_rounded_b_q8{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.xs_rounded_l_q8{border-bottom-left-radius:.5rem}.xs_rounded_l_q8,.xs_rounded_tl_q8{border-top-left-radius:.5rem}.xs_rounded_tr_q8{border-top-right-radius:.5rem}.xs_rounded_br_q8{border-bottom-right-radius:.5rem}.xs_rounded_bl_q8{border-bottom-left-radius:.5rem}.xs_p_q12{padding:.75rem}.xs_pt_q12{padding-top:.75rem}.xs_pr_q12{padding-right:.75rem}.xs_pb_q12{padding-bottom:.75rem}.xs_pl_q12,.xs_px_q12{padding-left:.75rem}.xs_px_q12{padding-right:.75rem}.xs_py_q12{padding-bottom:.75rem;padding-top:.75rem}.xs_m_q12{margin:.75rem}.xs_mt_q12{margin-top:.75rem}.xs_mr_q12{margin-right:.75rem}.xs_mb_q12{margin-bottom:.75rem}.xs_ml_q12,.xs_mx_q12{margin-left:.75rem}.xs_mx_q12{margin-right:.75rem}.xs_my_q12{margin-bottom:.75rem;margin-top:.75rem}.xs_gap_q12{gap:.75rem}.xs_gap_col_q12{-moz-column-gap:.75rem;column-gap:.75rem}.xs_gap_row_q12{row-gap:.75rem}.xs_w_q12{width:.75rem}.xs_min_w_q12{min-width:.75rem}.xs_max_w_q12{max-width:.75rem}.xs_h_q12{height:.75rem}.xs_min_h_q12{min-height:.75rem}.xs_max_h_q12{max-height:.75rem}.xs_inset_q12{bottom:.75rem;left:.75rem;right:.75rem;top:.75rem}.xs_top_q12{top:.75rem}.xs_right_q12{right:.75rem}.xs_bottom_q12{bottom:.75rem}.xs_left_q12{left:.75rem}.xs_inset_x_q12{left:.75rem;right:.75rem}.xs_inset_y_q12{bottom:.75rem;top:.75rem}.xs_border_q12{border-width:.75rem}.xs_border_t_q12{border-top-width:.75rem}.xs_border_r_q12{border-right-width:.75rem}.xs_border_b_q12{border-bottom-width:.75rem}.xs_border_l_q12,.xs_border_x_q12{border-left-width:.75rem}.xs_border_x_q12{border-right-width:.75rem}.xs_border_y_q12{border-bottom-width:.75rem;border-top-width:.75rem}.xs_rounded_q12{border-radius:.75rem}.xs_rounded_t_q12{border-top-left-radius:.75rem;border-top-right-radius:.75rem}.xs_rounded_r_q12{border-bottom-right-radius:.75rem;border-top-right-radius:.75rem}.xs_rounded_b_q12{border-bottom-left-radius:.75rem;border-bottom-right-radius:.75rem}.xs_rounded_l_q12{border-bottom-left-radius:.75rem}.xs_rounded_l_q12,.xs_rounded_tl_q12{border-top-left-radius:.75rem}.xs_rounded_tr_q12{border-top-right-radius:.75rem}.xs_rounded_br_q12{border-bottom-right-radius:.75rem}.xs_rounded_bl_q12{border-bottom-left-radius:.75rem}.xs_p_q16{padding:1rem}.xs_pt_q16{padding-top:1rem}.xs_pr_q16{padding-right:1rem}.xs_pb_q16{padding-bottom:1rem}.xs_pl_q16,.xs_px_q16{padding-left:1rem}.xs_px_q16{padding-right:1rem}.xs_py_q16{padding-bottom:1rem;padding-top:1rem}.xs_m_q16{margin:1rem}.xs_mt_q16{margin-top:1rem}.xs_mr_q16{margin-right:1rem}.xs_mb_q16{margin-bottom:1rem}.xs_ml_q16,.xs_mx_q16{margin-left:1rem}.xs_mx_q16{margin-right:1rem}.xs_my_q16{margin-bottom:1rem;margin-top:1rem}.xs_gap_q16{gap:1rem}.xs_gap_col_q16{-moz-column-gap:1rem;column-gap:1rem}.xs_gap_row_q16{row-gap:1rem}.xs_w_q16{width:1rem}.xs_min_w_q16{min-width:1rem}.xs_max_w_q16{max-width:1rem}.xs_h_q16{height:1rem}.xs_min_h_q16{min-height:1rem}.xs_max_h_q16{max-height:1rem}.xs_inset_q16{bottom:1rem;left:1rem;right:1rem;top:1rem}.xs_top_q16{top:1rem}.xs_right_q16{right:1rem}.xs_bottom_q16{bottom:1rem}.xs_left_q16{left:1rem}.xs_inset_x_q16{left:1rem;right:1rem}.xs_inset_y_q16{bottom:1rem;top:1rem}.xs_border_q16{border-width:1rem}.xs_border_t_q16{border-top-width:1rem}.xs_border_r_q16{border-right-width:1rem}.xs_border_b_q16{border-bottom-width:1rem}.xs_border_l_q16,.xs_border_x_q16{border-left-width:1rem}.xs_border_x_q16{border-right-width:1rem}.xs_border_y_q16{border-bottom-width:1rem;border-top-width:1rem}.xs_rounded_q16{border-radius:1rem}.xs_rounded_t_q16{border-top-left-radius:1rem;border-top-right-radius:1rem}.xs_rounded_r_q16{border-bottom-right-radius:1rem;border-top-right-radius:1rem}.xs_rounded_b_q16{border-bottom-left-radius:1rem;border-bottom-right-radius:1rem}.xs_rounded_l_q16{border-bottom-left-radius:1rem}.xs_rounded_l_q16,.xs_rounded_tl_q16{border-top-left-radius:1rem}.xs_rounded_tr_q16{border-top-right-radius:1rem}.xs_rounded_br_q16{border-bottom-right-radius:1rem}.xs_rounded_bl_q16{border-bottom-left-radius:1rem}.xs_p_q20{padding:1.25rem}.xs_pt_q20{padding-top:1.25rem}.xs_pr_q20{padding-right:1.25rem}.xs_pb_q20{padding-bottom:1.25rem}.xs_pl_q20,.xs_px_q20{padding-left:1.25rem}.xs_px_q20{padding-right:1.25rem}.xs_py_q20{padding-bottom:1.25rem;padding-top:1.25rem}.xs_m_q20{margin:1.25rem}.xs_mt_q20{margin-top:1.25rem}.xs_mr_q20{margin-right:1.25rem}.xs_mb_q20{margin-bottom:1.25rem}.xs_ml_q20,.xs_mx_q20{margin-left:1.25rem}.xs_mx_q20{margin-right:1.25rem}.xs_my_q20{margin-bottom:1.25rem;margin-top:1.25rem}.xs_gap_q20{gap:1.25rem}.xs_gap_col_q20{-moz-column-gap:1.25rem;column-gap:1.25rem}.xs_gap_row_q20{row-gap:1.25rem}.xs_w_q20{width:1.25rem}.xs_min_w_q20{min-width:1.25rem}.xs_max_w_q20{max-width:1.25rem}.xs_h_q20{height:1.25rem}.xs_min_h_q20{min-height:1.25rem}.xs_max_h_q20{max-height:1.25rem}.xs_inset_q20{bottom:1.25rem;left:1.25rem;right:1.25rem;top:1.25rem}.xs_top_q20{top:1.25rem}.xs_right_q20{right:1.25rem}.xs_bottom_q20{bottom:1.25rem}.xs_left_q20{left:1.25rem}.xs_inset_x_q20{left:1.25rem;right:1.25rem}.xs_inset_y_q20{bottom:1.25rem;top:1.25rem}.xs_border_q20{border-width:1.25rem}.xs_border_t_q20{border-top-width:1.25rem}.xs_border_r_q20{border-right-width:1.25rem}.xs_border_b_q20{border-bottom-width:1.25rem}.xs_border_l_q20,.xs_border_x_q20{border-left-width:1.25rem}.xs_border_x_q20{border-right-width:1.25rem}.xs_border_y_q20{border-bottom-width:1.25rem;border-top-width:1.25rem}.xs_rounded_q20{border-radius:1.25rem}.xs_rounded_t_q20{border-top-left-radius:1.25rem;border-top-right-radius:1.25rem}.xs_rounded_r_q20{border-bottom-right-radius:1.25rem;border-top-right-radius:1.25rem}.xs_rounded_b_q20{border-bottom-left-radius:1.25rem;border-bottom-right-radius:1.25rem}.xs_rounded_l_q20{border-bottom-left-radius:1.25rem}.xs_rounded_l_q20,.xs_rounded_tl_q20{border-top-left-radius:1.25rem}.xs_rounded_tr_q20{border-top-right-radius:1.25rem}.xs_rounded_br_q20{border-bottom-right-radius:1.25rem}.xs_rounded_bl_q20{border-bottom-left-radius:1.25rem}.xs_p_q24{padding:1.5rem}.xs_pt_q24{padding-top:1.5rem}.xs_pr_q24{padding-right:1.5rem}.xs_pb_q24{padding-bottom:1.5rem}.xs_pl_q24,.xs_px_q24{padding-left:1.5rem}.xs_px_q24{padding-right:1.5rem}.xs_py_q24{padding-bottom:1.5rem;padding-top:1.5rem}.xs_m_q24{margin:1.5rem}.xs_mt_q24{margin-top:1.5rem}.xs_mr_q24{margin-right:1.5rem}.xs_mb_q24{margin-bottom:1.5rem}.xs_ml_q24,.xs_mx_q24{margin-left:1.5rem}.xs_mx_q24{margin-right:1.5rem}.xs_my_q24{margin-bottom:1.5rem;margin-top:1.5rem}.xs_gap_q24{gap:1.5rem}.xs_gap_col_q24{-moz-column-gap:1.5rem;column-gap:1.5rem}.xs_gap_row_q24{row-gap:1.5rem}.xs_w_q24{width:1.5rem}.xs_min_w_q24{min-width:1.5rem}.xs_max_w_q24{max-width:1.5rem}.xs_h_q24{height:1.5rem}.xs_min_h_q24{min-height:1.5rem}.xs_max_h_q24{max-height:1.5rem}.xs_inset_q24{bottom:1.5rem;left:1.5rem;right:1.5rem;top:1.5rem}.xs_top_q24{top:1.5rem}.xs_right_q24{right:1.5rem}.xs_bottom_q24{bottom:1.5rem}.xs_left_q24{left:1.5rem}.xs_inset_x_q24{left:1.5rem;right:1.5rem}.xs_inset_y_q24{bottom:1.5rem;top:1.5rem}.xs_border_q24{border-width:1.5rem}.xs_border_t_q24{border-top-width:1.5rem}.xs_border_r_q24{border-right-width:1.5rem}.xs_border_b_q24{border-bottom-width:1.5rem}.xs_border_l_q24,.xs_border_x_q24{border-left-width:1.5rem}.xs_border_x_q24{border-right-width:1.5rem}.xs_border_y_q24{border-bottom-width:1.5rem;border-top-width:1.5rem}.xs_rounded_q24{border-radius:1.5rem}.xs_rounded_t_q24{border-top-left-radius:1.5rem;border-top-right-radius:1.5rem}.xs_rounded_r_q24{border-bottom-right-radius:1.5rem;border-top-right-radius:1.5rem}.xs_rounded_b_q24{border-bottom-left-radius:1.5rem;border-bottom-right-radius:1.5rem}.xs_rounded_l_q24{border-bottom-left-radius:1.5rem}.xs_rounded_l_q24,.xs_rounded_tl_q24{border-top-left-radius:1.5rem}.xs_rounded_tr_q24{border-top-right-radius:1.5rem}.xs_rounded_br_q24{border-bottom-right-radius:1.5rem}.xs_rounded_bl_q24{border-bottom-left-radius:1.5rem}.xs_p_q32{padding:2rem}.xs_pt_q32{padding-top:2rem}.xs_pr_q32{padding-right:2rem}.xs_pb_q32{padding-bottom:2rem}.xs_pl_q32,.xs_px_q32{padding-left:2rem}.xs_px_q32{padding-right:2rem}.xs_py_q32{padding-bottom:2rem;padding-top:2rem}.xs_m_q32{margin:2rem}.xs_mt_q32{margin-top:2rem}.xs_mr_q32{margin-right:2rem}.xs_mb_q32{margin-bottom:2rem}.xs_ml_q32,.xs_mx_q32{margin-left:2rem}.xs_mx_q32{margin-right:2rem}.xs_my_q32{margin-bottom:2rem;margin-top:2rem}.xs_gap_q32{gap:2rem}.xs_gap_col_q32{-moz-column-gap:2rem;column-gap:2rem}.xs_gap_row_q32{row-gap:2rem}.xs_w_q32{width:2rem}.xs_min_w_q32{min-width:2rem}.xs_max_w_q32{max-width:2rem}.xs_h_q32{height:2rem}.xs_min_h_q32{min-height:2rem}.xs_max_h_q32{max-height:2rem}.xs_inset_q32{bottom:2rem;left:2rem;right:2rem;top:2rem}.xs_top_q32{top:2rem}.xs_right_q32{right:2rem}.xs_bottom_q32{bottom:2rem}.xs_left_q32{left:2rem}.xs_inset_x_q32{left:2rem;right:2rem}.xs_inset_y_q32{bottom:2rem;top:2rem}.xs_border_q32{border-width:2rem}.xs_border_t_q32{border-top-width:2rem}.xs_border_r_q32{border-right-width:2rem}.xs_border_b_q32{border-bottom-width:2rem}.xs_border_l_q32,.xs_border_x_q32{border-left-width:2rem}.xs_border_x_q32{border-right-width:2rem}.xs_border_y_q32{border-bottom-width:2rem;border-top-width:2rem}.xs_rounded_q32{border-radius:2rem}.xs_rounded_t_q32{border-top-left-radius:2rem;border-top-right-radius:2rem}.xs_rounded_r_q32{border-bottom-right-radius:2rem;border-top-right-radius:2rem}.xs_rounded_b_q32{border-bottom-left-radius:2rem;border-bottom-right-radius:2rem}.xs_rounded_l_q32{border-bottom-left-radius:2rem}.xs_rounded_l_q32,.xs_rounded_tl_q32{border-top-left-radius:2rem}.xs_rounded_tr_q32{border-top-right-radius:2rem}.xs_rounded_br_q32{border-bottom-right-radius:2rem}.xs_rounded_bl_q32{border-bottom-left-radius:2rem}.xs_p_q40{padding:2.5rem}.xs_pt_q40{padding-top:2.5rem}.xs_pr_q40{padding-right:2.5rem}.xs_pb_q40{padding-bottom:2.5rem}.xs_pl_q40,.xs_px_q40{padding-left:2.5rem}.xs_px_q40{padding-right:2.5rem}.xs_py_q40{padding-bottom:2.5rem;padding-top:2.5rem}.xs_m_q40{margin:2.5rem}.xs_mt_q40{margin-top:2.5rem}.xs_mr_q40{margin-right:2.5rem}.xs_mb_q40{margin-bottom:2.5rem}.xs_ml_q40,.xs_mx_q40{margin-left:2.5rem}.xs_mx_q40{margin-right:2.5rem}.xs_my_q40{margin-bottom:2.5rem;margin-top:2.5rem}.xs_gap_q40{gap:2.5rem}.xs_gap_col_q40{-moz-column-gap:2.5rem;column-gap:2.5rem}.xs_gap_row_q40{row-gap:2.5rem}.xs_w_q40{width:2.5rem}.xs_min_w_q40{min-width:2.5rem}.xs_max_w_q40{max-width:2.5rem}.xs_h_q40{height:2.5rem}.xs_min_h_q40{min-height:2.5rem}.xs_max_h_q40{max-height:2.5rem}.xs_inset_q40{bottom:2.5rem;left:2.5rem;right:2.5rem;top:2.5rem}.xs_top_q40{top:2.5rem}.xs_right_q40{right:2.5rem}.xs_bottom_q40{bottom:2.5rem}.xs_left_q40{left:2.5rem}.xs_inset_x_q40{left:2.5rem;right:2.5rem}.xs_inset_y_q40{bottom:2.5rem;top:2.5rem}.xs_border_q40{border-width:2.5rem}.xs_border_t_q40{border-top-width:2.5rem}.xs_border_r_q40{border-right-width:2.5rem}.xs_border_b_q40{border-bottom-width:2.5rem}.xs_border_l_q40,.xs_border_x_q40{border-left-width:2.5rem}.xs_border_x_q40{border-right-width:2.5rem}.xs_border_y_q40{border-bottom-width:2.5rem;border-top-width:2.5rem}.xs_rounded_q40{border-radius:2.5rem}.xs_rounded_t_q40{border-top-left-radius:2.5rem;border-top-right-radius:2.5rem}.xs_rounded_r_q40{border-bottom-right-radius:2.5rem;border-top-right-radius:2.5rem}.xs_rounded_b_q40{border-bottom-left-radius:2.5rem;border-bottom-right-radius:2.5rem}.xs_rounded_l_q40{border-bottom-left-radius:2.5rem}.xs_rounded_l_q40,.xs_rounded_tl_q40{border-top-left-radius:2.5rem}.xs_rounded_tr_q40{border-top-right-radius:2.5rem}.xs_rounded_br_q40{border-bottom-right-radius:2.5rem}.xs_rounded_bl_q40{border-bottom-left-radius:2.5rem}.xs_p_q48{padding:3rem}.xs_pt_q48{padding-top:3rem}.xs_pr_q48{padding-right:3rem}.xs_pb_q48{padding-bottom:3rem}.xs_pl_q48,.xs_px_q48{padding-left:3rem}.xs_px_q48{padding-right:3rem}.xs_py_q48{padding-bottom:3rem;padding-top:3rem}.xs_m_q48{margin:3rem}.xs_mt_q48{margin-top:3rem}.xs_mr_q48{margin-right:3rem}.xs_mb_q48{margin-bottom:3rem}.xs_ml_q48,.xs_mx_q48{margin-left:3rem}.xs_mx_q48{margin-right:3rem}.xs_my_q48{margin-bottom:3rem;margin-top:3rem}.xs_gap_q48{gap:3rem}.xs_gap_col_q48{-moz-column-gap:3rem;column-gap:3rem}.xs_gap_row_q48{row-gap:3rem}.xs_w_q48{width:3rem}.xs_min_w_q48{min-width:3rem}.xs_max_w_q48{max-width:3rem}.xs_h_q48{height:3rem}.xs_min_h_q48{min-height:3rem}.xs_max_h_q48{max-height:3rem}.xs_inset_q48{bottom:3rem;left:3rem;right:3rem;top:3rem}.xs_top_q48{top:3rem}.xs_right_q48{right:3rem}.xs_bottom_q48{bottom:3rem}.xs_left_q48{left:3rem}.xs_inset_x_q48{left:3rem;right:3rem}.xs_inset_y_q48{bottom:3rem;top:3rem}.xs_border_q48{border-width:3rem}.xs_border_t_q48{border-top-width:3rem}.xs_border_r_q48{border-right-width:3rem}.xs_border_b_q48{border-bottom-width:3rem}.xs_border_l_q48,.xs_border_x_q48{border-left-width:3rem}.xs_border_x_q48{border-right-width:3rem}.xs_border_y_q48{border-bottom-width:3rem;border-top-width:3rem}.xs_rounded_q48{border-radius:3rem}.xs_rounded_t_q48{border-top-left-radius:3rem;border-top-right-radius:3rem}.xs_rounded_r_q48{border-bottom-right-radius:3rem;border-top-right-radius:3rem}.xs_rounded_b_q48{border-bottom-left-radius:3rem;border-bottom-right-radius:3rem}.xs_rounded_l_q48{border-bottom-left-radius:3rem}.xs_rounded_l_q48,.xs_rounded_tl_q48{border-top-left-radius:3rem}.xs_rounded_tr_q48{border-top-right-radius:3rem}.xs_rounded_br_q48{border-bottom-right-radius:3rem}.xs_rounded_bl_q48{border-bottom-left-radius:3rem}.xs_p_q56{padding:3.5rem}.xs_pt_q56{padding-top:3.5rem}.xs_pr_q56{padding-right:3.5rem}.xs_pb_q56{padding-bottom:3.5rem}.xs_pl_q56,.xs_px_q56{padding-left:3.5rem}.xs_px_q56{padding-right:3.5rem}.xs_py_q56{padding-bottom:3.5rem;padding-top:3.5rem}.xs_m_q56{margin:3.5rem}.xs_mt_q56{margin-top:3.5rem}.xs_mr_q56{margin-right:3.5rem}.xs_mb_q56{margin-bottom:3.5rem}.xs_ml_q56,.xs_mx_q56{margin-left:3.5rem}.xs_mx_q56{margin-right:3.5rem}.xs_my_q56{margin-bottom:3.5rem;margin-top:3.5rem}.xs_gap_q56{gap:3.5rem}.xs_gap_col_q56{-moz-column-gap:3.5rem;column-gap:3.5rem}.xs_gap_row_q56{row-gap:3.5rem}.xs_w_q56{width:3.5rem}.xs_min_w_q56{min-width:3.5rem}.xs_max_w_q56{max-width:3.5rem}.xs_h_q56{height:3.5rem}.xs_min_h_q56{min-height:3.5rem}.xs_max_h_q56{max-height:3.5rem}.xs_inset_q56{bottom:3.5rem;left:3.5rem;right:3.5rem;top:3.5rem}.xs_top_q56{top:3.5rem}.xs_right_q56{right:3.5rem}.xs_bottom_q56{bottom:3.5rem}.xs_left_q56{left:3.5rem}.xs_inset_x_q56{left:3.5rem;right:3.5rem}.xs_inset_y_q56{bottom:3.5rem;top:3.5rem}.xs_border_q56{border-width:3.5rem}.xs_border_t_q56{border-top-width:3.5rem}.xs_border_r_q56{border-right-width:3.5rem}.xs_border_b_q56{border-bottom-width:3.5rem}.xs_border_l_q56,.xs_border_x_q56{border-left-width:3.5rem}.xs_border_x_q56{border-right-width:3.5rem}.xs_border_y_q56{border-bottom-width:3.5rem;border-top-width:3.5rem}.xs_rounded_q56{border-radius:3.5rem}.xs_rounded_t_q56{border-top-left-radius:3.5rem;border-top-right-radius:3.5rem}.xs_rounded_r_q56{border-bottom-right-radius:3.5rem;border-top-right-radius:3.5rem}.xs_rounded_b_q56{border-bottom-left-radius:3.5rem;border-bottom-right-radius:3.5rem}.xs_rounded_l_q56{border-bottom-left-radius:3.5rem}.xs_rounded_l_q56,.xs_rounded_tl_q56{border-top-left-radius:3.5rem}.xs_rounded_tr_q56{border-top-right-radius:3.5rem}.xs_rounded_br_q56{border-bottom-right-radius:3.5rem}.xs_rounded_bl_q56{border-bottom-left-radius:3.5rem}.xs_p_q64{padding:4rem}.xs_pt_q64{padding-top:4rem}.xs_pr_q64{padding-right:4rem}.xs_pb_q64{padding-bottom:4rem}.xs_pl_q64,.xs_px_q64{padding-left:4rem}.xs_px_q64{padding-right:4rem}.xs_py_q64{padding-bottom:4rem;padding-top:4rem}.xs_m_q64{margin:4rem}.xs_mt_q64{margin-top:4rem}.xs_mr_q64{margin-right:4rem}.xs_mb_q64{margin-bottom:4rem}.xs_ml_q64,.xs_mx_q64{margin-left:4rem}.xs_mx_q64{margin-right:4rem}.xs_my_q64{margin-bottom:4rem;margin-top:4rem}.xs_gap_q64{gap:4rem}.xs_gap_col_q64{-moz-column-gap:4rem;column-gap:4rem}.xs_gap_row_q64{row-gap:4rem}.xs_w_q64{width:4rem}.xs_min_w_q64{min-width:4rem}.xs_max_w_q64{max-width:4rem}.xs_h_q64{height:4rem}.xs_min_h_q64{min-height:4rem}.xs_max_h_q64{max-height:4rem}.xs_inset_q64{bottom:4rem;left:4rem;right:4rem;top:4rem}.xs_top_q64{top:4rem}.xs_right_q64{right:4rem}.xs_bottom_q64{bottom:4rem}.xs_left_q64{left:4rem}.xs_inset_x_q64{left:4rem;right:4rem}.xs_inset_y_q64{bottom:4rem;top:4rem}.xs_border_q64{border-width:4rem}.xs_border_t_q64{border-top-width:4rem}.xs_border_r_q64{border-right-width:4rem}.xs_border_b_q64{border-bottom-width:4rem}.xs_border_l_q64,.xs_border_x_q64{border-left-width:4rem}.xs_border_x_q64{border-right-width:4rem}.xs_border_y_q64{border-bottom-width:4rem;border-top-width:4rem}.xs_rounded_q64{border-radius:4rem}.xs_rounded_t_q64{border-top-left-radius:4rem;border-top-right-radius:4rem}.xs_rounded_r_q64{border-bottom-right-radius:4rem;border-top-right-radius:4rem}.xs_rounded_b_q64{border-bottom-left-radius:4rem;border-bottom-right-radius:4rem}.xs_rounded_l_q64{border-bottom-left-radius:4rem}.xs_rounded_l_q64,.xs_rounded_tl_q64{border-top-left-radius:4rem}.xs_rounded_tr_q64{border-top-right-radius:4rem}.xs_rounded_br_q64{border-bottom-right-radius:4rem}.xs_rounded_bl_q64{border-bottom-left-radius:4rem}.xs_p_q72{padding:4.5rem}.xs_pt_q72{padding-top:4.5rem}.xs_pr_q72{padding-right:4.5rem}.xs_pb_q72{padding-bottom:4.5rem}.xs_pl_q72,.xs_px_q72{padding-left:4.5rem}.xs_px_q72{padding-right:4.5rem}.xs_py_q72{padding-bottom:4.5rem;padding-top:4.5rem}.xs_m_q72{margin:4.5rem}.xs_mt_q72{margin-top:4.5rem}.xs_mr_q72{margin-right:4.5rem}.xs_mb_q72{margin-bottom:4.5rem}.xs_ml_q72,.xs_mx_q72{margin-left:4.5rem}.xs_mx_q72{margin-right:4.5rem}.xs_my_q72{margin-bottom:4.5rem;margin-top:4.5rem}.xs_gap_q72{gap:4.5rem}.xs_gap_col_q72{-moz-column-gap:4.5rem;column-gap:4.5rem}.xs_gap_row_q72{row-gap:4.5rem}.xs_w_q72{width:4.5rem}.xs_min_w_q72{min-width:4.5rem}.xs_max_w_q72{max-width:4.5rem}.xs_h_q72{height:4.5rem}.xs_min_h_q72{min-height:4.5rem}.xs_max_h_q72{max-height:4.5rem}.xs_inset_q72{bottom:4.5rem;left:4.5rem;right:4.5rem;top:4.5rem}.xs_top_q72{top:4.5rem}.xs_right_q72{right:4.5rem}.xs_bottom_q72{bottom:4.5rem}.xs_left_q72{left:4.5rem}.xs_inset_x_q72{left:4.5rem;right:4.5rem}.xs_inset_y_q72{bottom:4.5rem;top:4.5rem}.xs_border_q72{border-width:4.5rem}.xs_border_t_q72{border-top-width:4.5rem}.xs_border_r_q72{border-right-width:4.5rem}.xs_border_b_q72{border-bottom-width:4.5rem}.xs_border_l_q72,.xs_border_x_q72{border-left-width:4.5rem}.xs_border_x_q72{border-right-width:4.5rem}.xs_border_y_q72{border-bottom-width:4.5rem;border-top-width:4.5rem}.xs_rounded_q72{border-radius:4.5rem}.xs_rounded_t_q72{border-top-left-radius:4.5rem;border-top-right-radius:4.5rem}.xs_rounded_r_q72{border-bottom-right-radius:4.5rem;border-top-right-radius:4.5rem}.xs_rounded_b_q72{border-bottom-left-radius:4.5rem;border-bottom-right-radius:4.5rem}.xs_rounded_l_q72{border-bottom-left-radius:4.5rem}.xs_rounded_l_q72,.xs_rounded_tl_q72{border-top-left-radius:4.5rem}.xs_rounded_tr_q72{border-top-right-radius:4.5rem}.xs_rounded_br_q72{border-bottom-right-radius:4.5rem}.xs_rounded_bl_q72{border-bottom-left-radius:4.5rem}.xs_p_q80{padding:5rem}.xs_pt_q80{padding-top:5rem}.xs_pr_q80{padding-right:5rem}.xs_pb_q80{padding-bottom:5rem}.xs_pl_q80,.xs_px_q80{padding-left:5rem}.xs_px_q80{padding-right:5rem}.xs_py_q80{padding-bottom:5rem;padding-top:5rem}.xs_m_q80{margin:5rem}.xs_mt_q80{margin-top:5rem}.xs_mr_q80{margin-right:5rem}.xs_mb_q80{margin-bottom:5rem}.xs_ml_q80,.xs_mx_q80{margin-left:5rem}.xs_mx_q80{margin-right:5rem}.xs_my_q80{margin-bottom:5rem;margin-top:5rem}.xs_gap_q80{gap:5rem}.xs_gap_col_q80{-moz-column-gap:5rem;column-gap:5rem}.xs_gap_row_q80{row-gap:5rem}.xs_w_q80{width:5rem}.xs_min_w_q80{min-width:5rem}.xs_max_w_q80{max-width:5rem}.xs_h_q80{height:5rem}.xs_min_h_q80{min-height:5rem}.xs_max_h_q80{max-height:5rem}.xs_inset_q80{bottom:5rem;left:5rem;right:5rem;top:5rem}.xs_top_q80{top:5rem}.xs_right_q80{right:5rem}.xs_bottom_q80{bottom:5rem}.xs_left_q80{left:5rem}.xs_inset_x_q80{left:5rem;right:5rem}.xs_inset_y_q80{bottom:5rem;top:5rem}.xs_border_q80{border-width:5rem}.xs_border_t_q80{border-top-width:5rem}.xs_border_r_q80{border-right-width:5rem}.xs_border_b_q80{border-bottom-width:5rem}.xs_border_l_q80,.xs_border_x_q80{border-left-width:5rem}.xs_border_x_q80{border-right-width:5rem}.xs_border_y_q80{border-bottom-width:5rem;border-top-width:5rem}.xs_rounded_q80{border-radius:5rem}.xs_rounded_t_q80{border-top-left-radius:5rem;border-top-right-radius:5rem}.xs_rounded_r_q80{border-bottom-right-radius:5rem;border-top-right-radius:5rem}.xs_rounded_b_q80{border-bottom-left-radius:5rem;border-bottom-right-radius:5rem}.xs_rounded_l_q80{border-bottom-left-radius:5rem}.xs_rounded_l_q80,.xs_rounded_tl_q80{border-top-left-radius:5rem}.xs_rounded_tr_q80{border-top-right-radius:5rem}.xs_rounded_br_q80{border-bottom-right-radius:5rem}.xs_rounded_bl_q80{border-bottom-left-radius:5rem}.xs_p_q96{padding:6rem}.xs_pt_q96{padding-top:6rem}.xs_pr_q96{padding-right:6rem}.xs_pb_q96{padding-bottom:6rem}.xs_pl_q96,.xs_px_q96{padding-left:6rem}.xs_px_q96{padding-right:6rem}.xs_py_q96{padding-bottom:6rem;padding-top:6rem}.xs_m_q96{margin:6rem}.xs_mt_q96{margin-top:6rem}.xs_mr_q96{margin-right:6rem}.xs_mb_q96{margin-bottom:6rem}.xs_ml_q96,.xs_mx_q96{margin-left:6rem}.xs_mx_q96{margin-right:6rem}.xs_my_q96{margin-bottom:6rem;margin-top:6rem}.xs_gap_q96{gap:6rem}.xs_gap_col_q96{-moz-column-gap:6rem;column-gap:6rem}.xs_gap_row_q96{row-gap:6rem}.xs_w_q96{width:6rem}.xs_min_w_q96{min-width:6rem}.xs_max_w_q96{max-width:6rem}.xs_h_q96{height:6rem}.xs_min_h_q96{min-height:6rem}.xs_max_h_q96{max-height:6rem}.xs_inset_q96{bottom:6rem;left:6rem;right:6rem;top:6rem}.xs_top_q96{top:6rem}.xs_right_q96{right:6rem}.xs_bottom_q96{bottom:6rem}.xs_left_q96{left:6rem}.xs_inset_x_q96{left:6rem;right:6rem}.xs_inset_y_q96{bottom:6rem;top:6rem}.xs_border_q96{border-width:6rem}.xs_border_t_q96{border-top-width:6rem}.xs_border_r_q96{border-right-width:6rem}.xs_border_b_q96{border-bottom-width:6rem}.xs_border_l_q96,.xs_border_x_q96{border-left-width:6rem}.xs_border_x_q96{border-right-width:6rem}.xs_border_y_q96{border-bottom-width:6rem;border-top-width:6rem}.xs_rounded_q96{border-radius:6rem}.xs_rounded_t_q96{border-top-left-radius:6rem;border-top-right-radius:6rem}.xs_rounded_r_q96{border-bottom-right-radius:6rem;border-top-right-radius:6rem}.xs_rounded_b_q96{border-bottom-left-radius:6rem;border-bottom-right-radius:6rem}.xs_rounded_l_q96{border-bottom-left-radius:6rem}.xs_rounded_l_q96,.xs_rounded_tl_q96{border-top-left-radius:6rem}.xs_rounded_tr_q96{border-top-right-radius:6rem}.xs_rounded_br_q96{border-bottom-right-radius:6rem}.xs_rounded_bl_q96{border-bottom-left-radius:6rem}.xs_p_q112{padding:7rem}.xs_pt_q112{padding-top:7rem}.xs_pr_q112{padding-right:7rem}.xs_pb_q112{padding-bottom:7rem}.xs_pl_q112,.xs_px_q112{padding-left:7rem}.xs_px_q112{padding-right:7rem}.xs_py_q112{padding-bottom:7rem;padding-top:7rem}.xs_m_q112{margin:7rem}.xs_mt_q112{margin-top:7rem}.xs_mr_q112{margin-right:7rem}.xs_mb_q112{margin-bottom:7rem}.xs_ml_q112,.xs_mx_q112{margin-left:7rem}.xs_mx_q112{margin-right:7rem}.xs_my_q112{margin-bottom:7rem;margin-top:7rem}.xs_gap_q112{gap:7rem}.xs_gap_col_q112{-moz-column-gap:7rem;column-gap:7rem}.xs_gap_row_q112{row-gap:7rem}.xs_w_q112{width:7rem}.xs_min_w_q112{min-width:7rem}.xs_max_w_q112{max-width:7rem}.xs_h_q112{height:7rem}.xs_min_h_q112{min-height:7rem}.xs_max_h_q112{max-height:7rem}.xs_inset_q112{bottom:7rem;left:7rem;right:7rem;top:7rem}.xs_top_q112{top:7rem}.xs_right_q112{right:7rem}.xs_bottom_q112{bottom:7rem}.xs_left_q112{left:7rem}.xs_inset_x_q112{left:7rem;right:7rem}.xs_inset_y_q112{bottom:7rem;top:7rem}.xs_border_q112{border-width:7rem}.xs_border_t_q112{border-top-width:7rem}.xs_border_r_q112{border-right-width:7rem}.xs_border_b_q112{border-bottom-width:7rem}.xs_border_l_q112,.xs_border_x_q112{border-left-width:7rem}.xs_border_x_q112{border-right-width:7rem}.xs_border_y_q112{border-bottom-width:7rem;border-top-width:7rem}.xs_rounded_q112{border-radius:7rem}.xs_rounded_t_q112{border-top-left-radius:7rem;border-top-right-radius:7rem}.xs_rounded_r_q112{border-bottom-right-radius:7rem;border-top-right-radius:7rem}.xs_rounded_b_q112{border-bottom-left-radius:7rem;border-bottom-right-radius:7rem}.xs_rounded_l_q112{border-bottom-left-radius:7rem}.xs_rounded_l_q112,.xs_rounded_tl_q112{border-top-left-radius:7rem}.xs_rounded_tr_q112{border-top-right-radius:7rem}.xs_rounded_br_q112{border-bottom-right-radius:7rem}.xs_rounded_bl_q112{border-bottom-left-radius:7rem}.xs_p_q128{padding:8rem}.xs_pt_q128{padding-top:8rem}.xs_pr_q128{padding-right:8rem}.xs_pb_q128{padding-bottom:8rem}.xs_pl_q128,.xs_px_q128{padding-left:8rem}.xs_px_q128{padding-right:8rem}.xs_py_q128{padding-bottom:8rem;padding-top:8rem}.xs_m_q128{margin:8rem}.xs_mt_q128{margin-top:8rem}.xs_mr_q128{margin-right:8rem}.xs_mb_q128{margin-bottom:8rem}.xs_ml_q128,.xs_mx_q128{margin-left:8rem}.xs_mx_q128{margin-right:8rem}.xs_my_q128{margin-bottom:8rem;margin-top:8rem}.xs_gap_q128{gap:8rem}.xs_gap_col_q128{-moz-column-gap:8rem;column-gap:8rem}.xs_gap_row_q128{row-gap:8rem}.xs_w_q128{width:8rem}.xs_min_w_q128{min-width:8rem}.xs_max_w_q128{max-width:8rem}.xs_h_q128{height:8rem}.xs_min_h_q128{min-height:8rem}.xs_max_h_q128{max-height:8rem}.xs_inset_q128{bottom:8rem;left:8rem;right:8rem;top:8rem}.xs_top_q128{top:8rem}.xs_right_q128{right:8rem}.xs_bottom_q128{bottom:8rem}.xs_left_q128{left:8rem}.xs_inset_x_q128{left:8rem;right:8rem}.xs_inset_y_q128{bottom:8rem;top:8rem}.xs_border_q128{border-width:8rem}.xs_border_t_q128{border-top-width:8rem}.xs_border_r_q128{border-right-width:8rem}.xs_border_b_q128{border-bottom-width:8rem}.xs_border_l_q128,.xs_border_x_q128{border-left-width:8rem}.xs_border_x_q128{border-right-width:8rem}.xs_border_y_q128{border-bottom-width:8rem;border-top-width:8rem}.xs_rounded_q128{border-radius:8rem}.xs_rounded_t_q128{border-top-left-radius:8rem;border-top-right-radius:8rem}.xs_rounded_r_q128{border-bottom-right-radius:8rem;border-top-right-radius:8rem}.xs_rounded_b_q128{border-bottom-left-radius:8rem;border-bottom-right-radius:8rem}.xs_rounded_l_q128{border-bottom-left-radius:8rem}.xs_rounded_l_q128,.xs_rounded_tl_q128{border-top-left-radius:8rem}.xs_rounded_tr_q128{border-top-right-radius:8rem}.xs_rounded_br_q128{border-bottom-right-radius:8rem}.xs_rounded_bl_q128{border-bottom-left-radius:8rem}.xs_p_q144{padding:9rem}.xs_pt_q144{padding-top:9rem}.xs_pr_q144{padding-right:9rem}.xs_pb_q144{padding-bottom:9rem}.xs_pl_q144,.xs_px_q144{padding-left:9rem}.xs_px_q144{padding-right:9rem}.xs_py_q144{padding-bottom:9rem;padding-top:9rem}.xs_m_q144{margin:9rem}.xs_mt_q144{margin-top:9rem}.xs_mr_q144{margin-right:9rem}.xs_mb_q144{margin-bottom:9rem}.xs_ml_q144,.xs_mx_q144{margin-left:9rem}.xs_mx_q144{margin-right:9rem}.xs_my_q144{margin-bottom:9rem;margin-top:9rem}.xs_gap_q144{gap:9rem}.xs_gap_col_q144{-moz-column-gap:9rem;column-gap:9rem}.xs_gap_row_q144{row-gap:9rem}.xs_w_q144{width:9rem}.xs_min_w_q144{min-width:9rem}.xs_max_w_q144{max-width:9rem}.xs_h_q144{height:9rem}.xs_min_h_q144{min-height:9rem}.xs_max_h_q144{max-height:9rem}.xs_inset_q144{bottom:9rem;left:9rem;right:9rem;top:9rem}.xs_top_q144{top:9rem}.xs_right_q144{right:9rem}.xs_bottom_q144{bottom:9rem}.xs_left_q144{left:9rem}.xs_inset_x_q144{left:9rem;right:9rem}.xs_inset_y_q144{bottom:9rem;top:9rem}.xs_border_q144{border-width:9rem}.xs_border_t_q144{border-top-width:9rem}.xs_border_r_q144{border-right-width:9rem}.xs_border_b_q144{border-bottom-width:9rem}.xs_border_l_q144,.xs_border_x_q144{border-left-width:9rem}.xs_border_x_q144{border-right-width:9rem}.xs_border_y_q144{border-bottom-width:9rem;border-top-width:9rem}.xs_rounded_q144{border-radius:9rem}.xs_rounded_t_q144{border-top-left-radius:9rem;border-top-right-radius:9rem}.xs_rounded_r_q144{border-bottom-right-radius:9rem;border-top-right-radius:9rem}.xs_rounded_b_q144{border-bottom-left-radius:9rem;border-bottom-right-radius:9rem}.xs_rounded_l_q144{border-bottom-left-radius:9rem}.xs_rounded_l_q144,.xs_rounded_tl_q144{border-top-left-radius:9rem}.xs_rounded_tr_q144{border-top-right-radius:9rem}.xs_rounded_br_q144{border-bottom-right-radius:9rem}.xs_rounded_bl_q144{border-bottom-left-radius:9rem}.xs_p_q160{padding:10rem}.xs_pt_q160{padding-top:10rem}.xs_pr_q160{padding-right:10rem}.xs_pb_q160{padding-bottom:10rem}.xs_pl_q160,.xs_px_q160{padding-left:10rem}.xs_px_q160{padding-right:10rem}.xs_py_q160{padding-bottom:10rem;padding-top:10rem}.xs_m_q160{margin:10rem}.xs_mt_q160{margin-top:10rem}.xs_mr_q160{margin-right:10rem}.xs_mb_q160{margin-bottom:10rem}.xs_ml_q160,.xs_mx_q160{margin-left:10rem}.xs_mx_q160{margin-right:10rem}.xs_my_q160{margin-bottom:10rem;margin-top:10rem}.xs_gap_q160{gap:10rem}.xs_gap_col_q160{-moz-column-gap:10rem;column-gap:10rem}.xs_gap_row_q160{row-gap:10rem}.xs_w_q160{width:10rem}.xs_min_w_q160{min-width:10rem}.xs_max_w_q160{max-width:10rem}.xs_h_q160{height:10rem}.xs_min_h_q160{min-height:10rem}.xs_max_h_q160{max-height:10rem}.xs_inset_q160{bottom:10rem;left:10rem;right:10rem;top:10rem}.xs_top_q160{top:10rem}.xs_right_q160{right:10rem}.xs_bottom_q160{bottom:10rem}.xs_left_q160{left:10rem}.xs_inset_x_q160{left:10rem;right:10rem}.xs_inset_y_q160{bottom:10rem;top:10rem}.xs_border_q160{border-width:10rem}.xs_border_t_q160{border-top-width:10rem}.xs_border_r_q160{border-right-width:10rem}.xs_border_b_q160{border-bottom-width:10rem}.xs_border_l_q160,.xs_border_x_q160{border-left-width:10rem}.xs_border_x_q160{border-right-width:10rem}.xs_border_y_q160{border-bottom-width:10rem;border-top-width:10rem}.xs_rounded_q160{border-radius:10rem}.xs_rounded_t_q160{border-top-left-radius:10rem;border-top-right-radius:10rem}.xs_rounded_r_q160{border-bottom-right-radius:10rem;border-top-right-radius:10rem}.xs_rounded_b_q160{border-bottom-left-radius:10rem;border-bottom-right-radius:10rem}.xs_rounded_l_q160{border-bottom-left-radius:10rem}.xs_rounded_l_q160,.xs_rounded_tl_q160{border-top-left-radius:10rem}.xs_rounded_tr_q160{border-top-right-radius:10rem}.xs_rounded_br_q160{border-bottom-right-radius:10rem}.xs_rounded_bl_q160{border-bottom-left-radius:10rem}.xs_p_q192{padding:12rem}.xs_pt_q192{padding-top:12rem}.xs_pr_q192{padding-right:12rem}.xs_pb_q192{padding-bottom:12rem}.xs_pl_q192,.xs_px_q192{padding-left:12rem}.xs_px_q192{padding-right:12rem}.xs_py_q192{padding-bottom:12rem;padding-top:12rem}.xs_m_q192{margin:12rem}.xs_mt_q192{margin-top:12rem}.xs_mr_q192{margin-right:12rem}.xs_mb_q192{margin-bottom:12rem}.xs_ml_q192,.xs_mx_q192{margin-left:12rem}.xs_mx_q192{margin-right:12rem}.xs_my_q192{margin-bottom:12rem;margin-top:12rem}.xs_gap_q192{gap:12rem}.xs_gap_col_q192{-moz-column-gap:12rem;column-gap:12rem}.xs_gap_row_q192{row-gap:12rem}.xs_w_q192{width:12rem}.xs_min_w_q192{min-width:12rem}.xs_max_w_q192{max-width:12rem}.xs_h_q192{height:12rem}.xs_min_h_q192{min-height:12rem}.xs_max_h_q192{max-height:12rem}.xs_inset_q192{bottom:12rem;left:12rem;right:12rem;top:12rem}.xs_top_q192{top:12rem}.xs_right_q192{right:12rem}.xs_bottom_q192{bottom:12rem}.xs_left_q192{left:12rem}.xs_inset_x_q192{left:12rem;right:12rem}.xs_inset_y_q192{bottom:12rem;top:12rem}.xs_border_q192{border-width:12rem}.xs_border_t_q192{border-top-width:12rem}.xs_border_r_q192{border-right-width:12rem}.xs_border_b_q192{border-bottom-width:12rem}.xs_border_l_q192,.xs_border_x_q192{border-left-width:12rem}.xs_border_x_q192{border-right-width:12rem}.xs_border_y_q192{border-bottom-width:12rem;border-top-width:12rem}.xs_rounded_q192{border-radius:12rem}.xs_rounded_t_q192{border-top-left-radius:12rem;border-top-right-radius:12rem}.xs_rounded_r_q192{border-bottom-right-radius:12rem;border-top-right-radius:12rem}.xs_rounded_b_q192{border-bottom-left-radius:12rem;border-bottom-right-radius:12rem}.xs_rounded_l_q192{border-bottom-left-radius:12rem}.xs_rounded_l_q192,.xs_rounded_tl_q192{border-top-left-radius:12rem}.xs_rounded_tr_q192{border-top-right-radius:12rem}.xs_rounded_br_q192{border-bottom-right-radius:12rem}.xs_rounded_bl_q192{border-bottom-left-radius:12rem}.xs_p_q224{padding:14rem}.xs_pt_q224{padding-top:14rem}.xs_pr_q224{padding-right:14rem}.xs_pb_q224{padding-bottom:14rem}.xs_pl_q224,.xs_px_q224{padding-left:14rem}.xs_px_q224{padding-right:14rem}.xs_py_q224{padding-bottom:14rem;padding-top:14rem}.xs_m_q224{margin:14rem}.xs_mt_q224{margin-top:14rem}.xs_mr_q224{margin-right:14rem}.xs_mb_q224{margin-bottom:14rem}.xs_ml_q224,.xs_mx_q224{margin-left:14rem}.xs_mx_q224{margin-right:14rem}.xs_my_q224{margin-bottom:14rem;margin-top:14rem}.xs_gap_q224{gap:14rem}.xs_gap_col_q224{-moz-column-gap:14rem;column-gap:14rem}.xs_gap_row_q224{row-gap:14rem}.xs_w_q224{width:14rem}.xs_min_w_q224{min-width:14rem}.xs_max_w_q224{max-width:14rem}.xs_h_q224{height:14rem}.xs_min_h_q224{min-height:14rem}.xs_max_h_q224{max-height:14rem}.xs_inset_q224{bottom:14rem;left:14rem;right:14rem;top:14rem}.xs_top_q224{top:14rem}.xs_right_q224{right:14rem}.xs_bottom_q224{bottom:14rem}.xs_left_q224{left:14rem}.xs_inset_x_q224{left:14rem;right:14rem}.xs_inset_y_q224{bottom:14rem;top:14rem}.xs_border_q224{border-width:14rem}.xs_border_t_q224{border-top-width:14rem}.xs_border_r_q224{border-right-width:14rem}.xs_border_b_q224{border-bottom-width:14rem}.xs_border_l_q224,.xs_border_x_q224{border-left-width:14rem}.xs_border_x_q224{border-right-width:14rem}.xs_border_y_q224{border-bottom-width:14rem;border-top-width:14rem}.xs_rounded_q224{border-radius:14rem}.xs_rounded_t_q224{border-top-left-radius:14rem;border-top-right-radius:14rem}.xs_rounded_r_q224{border-bottom-right-radius:14rem;border-top-right-radius:14rem}.xs_rounded_b_q224{border-bottom-left-radius:14rem;border-bottom-right-radius:14rem}.xs_rounded_l_q224{border-bottom-left-radius:14rem}.xs_rounded_l_q224,.xs_rounded_tl_q224{border-top-left-radius:14rem}.xs_rounded_tr_q224{border-top-right-radius:14rem}.xs_rounded_br_q224{border-bottom-right-radius:14rem}.xs_rounded_bl_q224{border-bottom-left-radius:14rem}.xs_p_q256{padding:16rem}.xs_pt_q256{padding-top:16rem}.xs_pr_q256{padding-right:16rem}.xs_pb_q256{padding-bottom:16rem}.xs_pl_q256,.xs_px_q256{padding-left:16rem}.xs_px_q256{padding-right:16rem}.xs_py_q256{padding-bottom:16rem;padding-top:16rem}.xs_m_q256{margin:16rem}.xs_mt_q256{margin-top:16rem}.xs_mr_q256{margin-right:16rem}.xs_mb_q256{margin-bottom:16rem}.xs_ml_q256,.xs_mx_q256{margin-left:16rem}.xs_mx_q256{margin-right:16rem}.xs_my_q256{margin-bottom:16rem;margin-top:16rem}.xs_gap_q256{gap:16rem}.xs_gap_col_q256{-moz-column-gap:16rem;column-gap:16rem}.xs_gap_row_q256{row-gap:16rem}.xs_w_q256{width:16rem}.xs_min_w_q256{min-width:16rem}.xs_max_w_q256{max-width:16rem}.xs_h_q256{height:16rem}.xs_min_h_q256{min-height:16rem}.xs_max_h_q256{max-height:16rem}.xs_inset_q256{bottom:16rem;left:16rem;right:16rem;top:16rem}.xs_top_q256{top:16rem}.xs_right_q256{right:16rem}.xs_bottom_q256{bottom:16rem}.xs_left_q256{left:16rem}.xs_inset_x_q256{left:16rem;right:16rem}.xs_inset_y_q256{bottom:16rem;top:16rem}.xs_border_q256{border-width:16rem}.xs_border_t_q256{border-top-width:16rem}.xs_border_r_q256{border-right-width:16rem}.xs_border_b_q256{border-bottom-width:16rem}.xs_border_l_q256,.xs_border_x_q256{border-left-width:16rem}.xs_border_x_q256{border-right-width:16rem}.xs_border_y_q256{border-bottom-width:16rem;border-top-width:16rem}.xs_rounded_q256{border-radius:16rem}.xs_rounded_t_q256{border-top-left-radius:16rem;border-top-right-radius:16rem}.xs_rounded_r_q256{border-bottom-right-radius:16rem;border-top-right-radius:16rem}.xs_rounded_b_q256{border-bottom-left-radius:16rem;border-bottom-right-radius:16rem}.xs_rounded_l_q256{border-bottom-left-radius:16rem}.xs_rounded_l_q256,.xs_rounded_tl_q256{border-top-left-radius:16rem}.xs_rounded_tr_q256{border-top-right-radius:16rem}.xs_rounded_br_q256{border-bottom-right-radius:16rem}.xs_rounded_bl_q256{border-bottom-left-radius:16rem}}@media(min-width:720px){.sm_p_q0{padding:0}.sm_pt_q0{padding-top:0}.sm_pr_q0{padding-right:0}.sm_pb_q0{padding-bottom:0}.sm_pl_q0,.sm_px_q0{padding-left:0}.sm_px_q0{padding-right:0}.sm_py_q0{padding-bottom:0;padding-top:0}.sm_m_q0{margin:0}.sm_mt_q0{margin-top:0}.sm_mr_q0{margin-right:0}.sm_mb_q0{margin-bottom:0}.sm_ml_q0,.sm_mx_q0{margin-left:0}.sm_mx_q0{margin-right:0}.sm_my_q0{margin-bottom:0;margin-top:0}.sm_gap_q0{gap:0}.sm_gap_col_q0{-moz-column-gap:0;column-gap:0}.sm_gap_row_q0{row-gap:0}.sm_w_q0{width:0}.sm_min_w_q0{min-width:0}.sm_max_w_q0{max-width:0}.sm_h_q0{height:0}.sm_min_h_q0{min-height:0}.sm_max_h_q0{max-height:0}.sm_inset_q0{bottom:0;left:0;right:0;top:0}.sm_top_q0{top:0}.sm_right_q0{right:0}.sm_bottom_q0{bottom:0}.sm_left_q0{left:0}.sm_inset_x_q0{left:0;right:0}.sm_inset_y_q0{bottom:0;top:0}.sm_border_q0{border-width:0}.sm_border_t_q0{border-top-width:0}.sm_border_r_q0{border-right-width:0}.sm_border_b_q0{border-bottom-width:0}.sm_border_l_q0,.sm_border_x_q0{border-left-width:0}.sm_border_x_q0{border-right-width:0}.sm_border_y_q0{border-bottom-width:0;border-top-width:0}.sm_rounded_q0{border-radius:0}.sm_rounded_t_q0{border-top-left-radius:0;border-top-right-radius:0}.sm_rounded_r_q0{border-bottom-right-radius:0;border-top-right-radius:0}.sm_rounded_b_q0{border-bottom-left-radius:0;border-bottom-right-radius:0}.sm_rounded_l_q0{border-bottom-left-radius:0}.sm_rounded_l_q0,.sm_rounded_tl_q0{border-top-left-radius:0}.sm_rounded_tr_q0{border-top-right-radius:0}.sm_rounded_br_q0{border-bottom-right-radius:0}.sm_rounded_bl_q0{border-bottom-left-radius:0}.sm_p_q1{padding:.0625rem}.sm_pt_q1{padding-top:.0625rem}.sm_pr_q1{padding-right:.0625rem}.sm_pb_q1{padding-bottom:.0625rem}.sm_pl_q1,.sm_px_q1{padding-left:.0625rem}.sm_px_q1{padding-right:.0625rem}.sm_py_q1{padding-bottom:.0625rem;padding-top:.0625rem}.sm_m_q1{margin:.0625rem}.sm_mt_q1{margin-top:.0625rem}.sm_mr_q1{margin-right:.0625rem}.sm_mb_q1{margin-bottom:.0625rem}.sm_ml_q1,.sm_mx_q1{margin-left:.0625rem}.sm_mx_q1{margin-right:.0625rem}.sm_my_q1{margin-bottom:.0625rem;margin-top:.0625rem}.sm_gap_q1{gap:.0625rem}.sm_gap_col_q1{-moz-column-gap:.0625rem;column-gap:.0625rem}.sm_gap_row_q1{row-gap:.0625rem}.sm_w_q1{width:.0625rem}.sm_min_w_q1{min-width:.0625rem}.sm_max_w_q1{max-width:.0625rem}.sm_h_q1{height:.0625rem}.sm_min_h_q1{min-height:.0625rem}.sm_max_h_q1{max-height:.0625rem}.sm_inset_q1{bottom:.0625rem;left:.0625rem;right:.0625rem;top:.0625rem}.sm_top_q1{top:.0625rem}.sm_right_q1{right:.0625rem}.sm_bottom_q1{bottom:.0625rem}.sm_left_q1{left:.0625rem}.sm_inset_x_q1{left:.0625rem;right:.0625rem}.sm_inset_y_q1{bottom:.0625rem;top:.0625rem}.sm_border_q1{border-width:.0625rem}.sm_border_t_q1{border-top-width:.0625rem}.sm_border_r_q1{border-right-width:.0625rem}.sm_border_b_q1{border-bottom-width:.0625rem}.sm_border_l_q1,.sm_border_x_q1{border-left-width:.0625rem}.sm_border_x_q1{border-right-width:.0625rem}.sm_border_y_q1{border-bottom-width:.0625rem;border-top-width:.0625rem}.sm_rounded_q1{border-radius:.0625rem}.sm_rounded_t_q1{border-top-left-radius:.0625rem;border-top-right-radius:.0625rem}.sm_rounded_r_q1{border-top-right-radius:.0625rem}.sm_rounded_b_q1,.sm_rounded_r_q1{border-bottom-right-radius:.0625rem}.sm_rounded_b_q1,.sm_rounded_l_q1{border-bottom-left-radius:.0625rem}.sm_rounded_l_q1,.sm_rounded_tl_q1{border-top-left-radius:.0625rem}.sm_rounded_tr_q1{border-top-right-radius:.0625rem}.sm_rounded_br_q1{border-bottom-right-radius:.0625rem}.sm_rounded_bl_q1{border-bottom-left-radius:.0625rem}.sm_p_q2{padding:.125rem}.sm_pt_q2{padding-top:.125rem}.sm_pr_q2{padding-right:.125rem}.sm_pb_q2{padding-bottom:.125rem}.sm_pl_q2,.sm_px_q2{padding-left:.125rem}.sm_px_q2{padding-right:.125rem}.sm_py_q2{padding-bottom:.125rem;padding-top:.125rem}.sm_m_q2{margin:.125rem}.sm_mt_q2{margin-top:.125rem}.sm_mr_q2{margin-right:.125rem}.sm_mb_q2{margin-bottom:.125rem}.sm_ml_q2,.sm_mx_q2{margin-left:.125rem}.sm_mx_q2{margin-right:.125rem}.sm_my_q2{margin-bottom:.125rem;margin-top:.125rem}.sm_gap_q2{gap:.125rem}.sm_gap_col_q2{-moz-column-gap:.125rem;column-gap:.125rem}.sm_gap_row_q2{row-gap:.125rem}.sm_w_q2{width:.125rem}.sm_min_w_q2{min-width:.125rem}.sm_max_w_q2{max-width:.125rem}.sm_h_q2{height:.125rem}.sm_min_h_q2{min-height:.125rem}.sm_max_h_q2{max-height:.125rem}.sm_inset_q2{bottom:.125rem;left:.125rem;right:.125rem;top:.125rem}.sm_top_q2{top:.125rem}.sm_right_q2{right:.125rem}.sm_bottom_q2{bottom:.125rem}.sm_left_q2{left:.125rem}.sm_inset_x_q2{left:.125rem;right:.125rem}.sm_inset_y_q2{bottom:.125rem;top:.125rem}.sm_border_q2{border-width:.125rem}.sm_border_t_q2{border-top-width:.125rem}.sm_border_r_q2{border-right-width:.125rem}.sm_border_b_q2{border-bottom-width:.125rem}.sm_border_l_q2,.sm_border_x_q2{border-left-width:.125rem}.sm_border_x_q2{border-right-width:.125rem}.sm_border_y_q2{border-bottom-width:.125rem;border-top-width:.125rem}.sm_rounded_q2{border-radius:.125rem}.sm_rounded_t_q2{border-top-left-radius:.125rem;border-top-right-radius:.125rem}.sm_rounded_r_q2{border-top-right-radius:.125rem}.sm_rounded_b_q2,.sm_rounded_r_q2{border-bottom-right-radius:.125rem}.sm_rounded_b_q2,.sm_rounded_l_q2{border-bottom-left-radius:.125rem}.sm_rounded_l_q2,.sm_rounded_tl_q2{border-top-left-radius:.125rem}.sm_rounded_tr_q2{border-top-right-radius:.125rem}.sm_rounded_br_q2{border-bottom-right-radius:.125rem}.sm_rounded_bl_q2{border-bottom-left-radius:.125rem}.sm_p_q4{padding:.25rem}.sm_pt_q4{padding-top:.25rem}.sm_pr_q4{padding-right:.25rem}.sm_pb_q4{padding-bottom:.25rem}.sm_pl_q4,.sm_px_q4{padding-left:.25rem}.sm_px_q4{padding-right:.25rem}.sm_py_q4{padding-bottom:.25rem;padding-top:.25rem}.sm_m_q4{margin:.25rem}.sm_mt_q4{margin-top:.25rem}.sm_mr_q4{margin-right:.25rem}.sm_mb_q4{margin-bottom:.25rem}.sm_ml_q4,.sm_mx_q4{margin-left:.25rem}.sm_mx_q4{margin-right:.25rem}.sm_my_q4{margin-bottom:.25rem;margin-top:.25rem}.sm_gap_q4{gap:.25rem}.sm_gap_col_q4{-moz-column-gap:.25rem;column-gap:.25rem}.sm_gap_row_q4{row-gap:.25rem}.sm_w_q4{width:.25rem}.sm_min_w_q4{min-width:.25rem}.sm_max_w_q4{max-width:.25rem}.sm_h_q4{height:.25rem}.sm_min_h_q4{min-height:.25rem}.sm_max_h_q4{max-height:.25rem}.sm_inset_q4{bottom:.25rem;left:.25rem;right:.25rem;top:.25rem}.sm_top_q4{top:.25rem}.sm_right_q4{right:.25rem}.sm_bottom_q4{bottom:.25rem}.sm_left_q4{left:.25rem}.sm_inset_x_q4{left:.25rem;right:.25rem}.sm_inset_y_q4{bottom:.25rem;top:.25rem}.sm_border_q4{border-width:.25rem}.sm_border_t_q4{border-top-width:.25rem}.sm_border_r_q4{border-right-width:.25rem}.sm_border_b_q4{border-bottom-width:.25rem}.sm_border_l_q4,.sm_border_x_q4{border-left-width:.25rem}.sm_border_x_q4{border-right-width:.25rem}.sm_border_y_q4{border-bottom-width:.25rem;border-top-width:.25rem}.sm_rounded_q4{border-radius:.25rem}.sm_rounded_t_q4{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.sm_rounded_r_q4{border-bottom-right-radius:.25rem;border-top-right-radius:.25rem}.sm_rounded_b_q4{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.sm_rounded_l_q4{border-bottom-left-radius:.25rem}.sm_rounded_l_q4,.sm_rounded_tl_q4{border-top-left-radius:.25rem}.sm_rounded_tr_q4{border-top-right-radius:.25rem}.sm_rounded_br_q4{border-bottom-right-radius:.25rem}.sm_rounded_bl_q4{border-bottom-left-radius:.25rem}.sm_p_q6{padding:.375rem}.sm_pt_q6{padding-top:.375rem}.sm_pr_q6{padding-right:.375rem}.sm_pb_q6{padding-bottom:.375rem}.sm_pl_q6,.sm_px_q6{padding-left:.375rem}.sm_px_q6{padding-right:.375rem}.sm_py_q6{padding-bottom:.375rem;padding-top:.375rem}.sm_m_q6{margin:.375rem}.sm_mt_q6{margin-top:.375rem}.sm_mr_q6{margin-right:.375rem}.sm_mb_q6{margin-bottom:.375rem}.sm_ml_q6,.sm_mx_q6{margin-left:.375rem}.sm_mx_q6{margin-right:.375rem}.sm_my_q6{margin-bottom:.375rem;margin-top:.375rem}.sm_gap_q6{gap:.375rem}.sm_gap_col_q6{-moz-column-gap:.375rem;column-gap:.375rem}.sm_gap_row_q6{row-gap:.375rem}.sm_w_q6{width:.375rem}.sm_min_w_q6{min-width:.375rem}.sm_max_w_q6{max-width:.375rem}.sm_h_q6{height:.375rem}.sm_min_h_q6{min-height:.375rem}.sm_max_h_q6{max-height:.375rem}.sm_inset_q6{bottom:.375rem;left:.375rem;right:.375rem;top:.375rem}.sm_top_q6{top:.375rem}.sm_right_q6{right:.375rem}.sm_bottom_q6{bottom:.375rem}.sm_left_q6{left:.375rem}.sm_inset_x_q6{left:.375rem;right:.375rem}.sm_inset_y_q6{bottom:.375rem;top:.375rem}.sm_border_q6{border-width:.375rem}.sm_border_t_q6{border-top-width:.375rem}.sm_border_r_q6{border-right-width:.375rem}.sm_border_b_q6{border-bottom-width:.375rem}.sm_border_l_q6,.sm_border_x_q6{border-left-width:.375rem}.sm_border_x_q6{border-right-width:.375rem}.sm_border_y_q6{border-bottom-width:.375rem;border-top-width:.375rem}.sm_rounded_q6{border-radius:.375rem}.sm_rounded_t_q6{border-top-left-radius:.375rem;border-top-right-radius:.375rem}.sm_rounded_r_q6{border-top-right-radius:.375rem}.sm_rounded_b_q6,.sm_rounded_r_q6{border-bottom-right-radius:.375rem}.sm_rounded_b_q6,.sm_rounded_l_q6{border-bottom-left-radius:.375rem}.sm_rounded_l_q6,.sm_rounded_tl_q6{border-top-left-radius:.375rem}.sm_rounded_tr_q6{border-top-right-radius:.375rem}.sm_rounded_br_q6{border-bottom-right-radius:.375rem}.sm_rounded_bl_q6{border-bottom-left-radius:.375rem}.sm_p_q8{padding:.5rem}.sm_pt_q8{padding-top:.5rem}.sm_pr_q8{padding-right:.5rem}.sm_pb_q8{padding-bottom:.5rem}.sm_pl_q8,.sm_px_q8{padding-left:.5rem}.sm_px_q8{padding-right:.5rem}.sm_py_q8{padding-bottom:.5rem;padding-top:.5rem}.sm_m_q8{margin:.5rem}.sm_mt_q8{margin-top:.5rem}.sm_mr_q8{margin-right:.5rem}.sm_mb_q8{margin-bottom:.5rem}.sm_ml_q8,.sm_mx_q8{margin-left:.5rem}.sm_mx_q8{margin-right:.5rem}.sm_my_q8{margin-bottom:.5rem;margin-top:.5rem}.sm_gap_q8{gap:.5rem}.sm_gap_col_q8{-moz-column-gap:.5rem;column-gap:.5rem}.sm_gap_row_q8{row-gap:.5rem}.sm_w_q8{width:.5rem}.sm_min_w_q8{min-width:.5rem}.sm_max_w_q8{max-width:.5rem}.sm_h_q8{height:.5rem}.sm_min_h_q8{min-height:.5rem}.sm_max_h_q8{max-height:.5rem}.sm_inset_q8{bottom:.5rem;left:.5rem;right:.5rem;top:.5rem}.sm_top_q8{top:.5rem}.sm_right_q8{right:.5rem}.sm_bottom_q8{bottom:.5rem}.sm_left_q8{left:.5rem}.sm_inset_x_q8{left:.5rem;right:.5rem}.sm_inset_y_q8{bottom:.5rem;top:.5rem}.sm_border_q8{border-width:.5rem}.sm_border_t_q8{border-top-width:.5rem}.sm_border_r_q8{border-right-width:.5rem}.sm_border_b_q8{border-bottom-width:.5rem}.sm_border_l_q8,.sm_border_x_q8{border-left-width:.5rem}.sm_border_x_q8{border-right-width:.5rem}.sm_border_y_q8{border-bottom-width:.5rem;border-top-width:.5rem}.sm_rounded_q8{border-radius:.5rem}.sm_rounded_t_q8{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.sm_rounded_r_q8{border-bottom-right-radius:.5rem;border-top-right-radius:.5rem}.sm_rounded_b_q8{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.sm_rounded_l_q8{border-bottom-left-radius:.5rem}.sm_rounded_l_q8,.sm_rounded_tl_q8{border-top-left-radius:.5rem}.sm_rounded_tr_q8{border-top-right-radius:.5rem}.sm_rounded_br_q8{border-bottom-right-radius:.5rem}.sm_rounded_bl_q8{border-bottom-left-radius:.5rem}.sm_p_q12{padding:.75rem}.sm_pt_q12{padding-top:.75rem}.sm_pr_q12{padding-right:.75rem}.sm_pb_q12{padding-bottom:.75rem}.sm_pl_q12,.sm_px_q12{padding-left:.75rem}.sm_px_q12{padding-right:.75rem}.sm_py_q12{padding-bottom:.75rem;padding-top:.75rem}.sm_m_q12{margin:.75rem}.sm_mt_q12{margin-top:.75rem}.sm_mr_q12{margin-right:.75rem}.sm_mb_q12{margin-bottom:.75rem}.sm_ml_q12,.sm_mx_q12{margin-left:.75rem}.sm_mx_q12{margin-right:.75rem}.sm_my_q12{margin-bottom:.75rem;margin-top:.75rem}.sm_gap_q12{gap:.75rem}.sm_gap_col_q12{-moz-column-gap:.75rem;column-gap:.75rem}.sm_gap_row_q12{row-gap:.75rem}.sm_w_q12{width:.75rem}.sm_min_w_q12{min-width:.75rem}.sm_max_w_q12{max-width:.75rem}.sm_h_q12{height:.75rem}.sm_min_h_q12{min-height:.75rem}.sm_max_h_q12{max-height:.75rem}.sm_inset_q12{bottom:.75rem;left:.75rem;right:.75rem;top:.75rem}.sm_top_q12{top:.75rem}.sm_right_q12{right:.75rem}.sm_bottom_q12{bottom:.75rem}.sm_left_q12{left:.75rem}.sm_inset_x_q12{left:.75rem;right:.75rem}.sm_inset_y_q12{bottom:.75rem;top:.75rem}.sm_border_q12{border-width:.75rem}.sm_border_t_q12{border-top-width:.75rem}.sm_border_r_q12{border-right-width:.75rem}.sm_border_b_q12{border-bottom-width:.75rem}.sm_border_l_q12,.sm_border_x_q12{border-left-width:.75rem}.sm_border_x_q12{border-right-width:.75rem}.sm_border_y_q12{border-bottom-width:.75rem;border-top-width:.75rem}.sm_rounded_q12{border-radius:.75rem}.sm_rounded_t_q12{border-top-left-radius:.75rem;border-top-right-radius:.75rem}.sm_rounded_r_q12{border-bottom-right-radius:.75rem;border-top-right-radius:.75rem}.sm_rounded_b_q12{border-bottom-left-radius:.75rem;border-bottom-right-radius:.75rem}.sm_rounded_l_q12{border-bottom-left-radius:.75rem}.sm_rounded_l_q12,.sm_rounded_tl_q12{border-top-left-radius:.75rem}.sm_rounded_tr_q12{border-top-right-radius:.75rem}.sm_rounded_br_q12{border-bottom-right-radius:.75rem}.sm_rounded_bl_q12{border-bottom-left-radius:.75rem}.sm_p_q16{padding:1rem}.sm_pt_q16{padding-top:1rem}.sm_pr_q16{padding-right:1rem}.sm_pb_q16{padding-bottom:1rem}.sm_pl_q16,.sm_px_q16{padding-left:1rem}.sm_px_q16{padding-right:1rem}.sm_py_q16{padding-bottom:1rem;padding-top:1rem}.sm_m_q16{margin:1rem}.sm_mt_q16{margin-top:1rem}.sm_mr_q16{margin-right:1rem}.sm_mb_q16{margin-bottom:1rem}.sm_ml_q16,.sm_mx_q16{margin-left:1rem}.sm_mx_q16{margin-right:1rem}.sm_my_q16{margin-bottom:1rem;margin-top:1rem}.sm_gap_q16{gap:1rem}.sm_gap_col_q16{-moz-column-gap:1rem;column-gap:1rem}.sm_gap_row_q16{row-gap:1rem}.sm_w_q16{width:1rem}.sm_min_w_q16{min-width:1rem}.sm_max_w_q16{max-width:1rem}.sm_h_q16{height:1rem}.sm_min_h_q16{min-height:1rem}.sm_max_h_q16{max-height:1rem}.sm_inset_q16{bottom:1rem;left:1rem;right:1rem;top:1rem}.sm_top_q16{top:1rem}.sm_right_q16{right:1rem}.sm_bottom_q16{bottom:1rem}.sm_left_q16{left:1rem}.sm_inset_x_q16{left:1rem;right:1rem}.sm_inset_y_q16{bottom:1rem;top:1rem}.sm_border_q16{border-width:1rem}.sm_border_t_q16{border-top-width:1rem}.sm_border_r_q16{border-right-width:1rem}.sm_border_b_q16{border-bottom-width:1rem}.sm_border_l_q16,.sm_border_x_q16{border-left-width:1rem}.sm_border_x_q16{border-right-width:1rem}.sm_border_y_q16{border-bottom-width:1rem;border-top-width:1rem}.sm_rounded_q16{border-radius:1rem}.sm_rounded_t_q16{border-top-left-radius:1rem;border-top-right-radius:1rem}.sm_rounded_r_q16{border-bottom-right-radius:1rem;border-top-right-radius:1rem}.sm_rounded_b_q16{border-bottom-left-radius:1rem;border-bottom-right-radius:1rem}.sm_rounded_l_q16{border-bottom-left-radius:1rem}.sm_rounded_l_q16,.sm_rounded_tl_q16{border-top-left-radius:1rem}.sm_rounded_tr_q16{border-top-right-radius:1rem}.sm_rounded_br_q16{border-bottom-right-radius:1rem}.sm_rounded_bl_q16{border-bottom-left-radius:1rem}.sm_p_q20{padding:1.25rem}.sm_pt_q20{padding-top:1.25rem}.sm_pr_q20{padding-right:1.25rem}.sm_pb_q20{padding-bottom:1.25rem}.sm_pl_q20,.sm_px_q20{padding-left:1.25rem}.sm_px_q20{padding-right:1.25rem}.sm_py_q20{padding-bottom:1.25rem;padding-top:1.25rem}.sm_m_q20{margin:1.25rem}.sm_mt_q20{margin-top:1.25rem}.sm_mr_q20{margin-right:1.25rem}.sm_mb_q20{margin-bottom:1.25rem}.sm_ml_q20,.sm_mx_q20{margin-left:1.25rem}.sm_mx_q20{margin-right:1.25rem}.sm_my_q20{margin-bottom:1.25rem;margin-top:1.25rem}.sm_gap_q20{gap:1.25rem}.sm_gap_col_q20{-moz-column-gap:1.25rem;column-gap:1.25rem}.sm_gap_row_q20{row-gap:1.25rem}.sm_w_q20{width:1.25rem}.sm_min_w_q20{min-width:1.25rem}.sm_max_w_q20{max-width:1.25rem}.sm_h_q20{height:1.25rem}.sm_min_h_q20{min-height:1.25rem}.sm_max_h_q20{max-height:1.25rem}.sm_inset_q20{bottom:1.25rem;left:1.25rem;right:1.25rem;top:1.25rem}.sm_top_q20{top:1.25rem}.sm_right_q20{right:1.25rem}.sm_bottom_q20{bottom:1.25rem}.sm_left_q20{left:1.25rem}.sm_inset_x_q20{left:1.25rem;right:1.25rem}.sm_inset_y_q20{bottom:1.25rem;top:1.25rem}.sm_border_q20{border-width:1.25rem}.sm_border_t_q20{border-top-width:1.25rem}.sm_border_r_q20{border-right-width:1.25rem}.sm_border_b_q20{border-bottom-width:1.25rem}.sm_border_l_q20,.sm_border_x_q20{border-left-width:1.25rem}.sm_border_x_q20{border-right-width:1.25rem}.sm_border_y_q20{border-bottom-width:1.25rem;border-top-width:1.25rem}.sm_rounded_q20{border-radius:1.25rem}.sm_rounded_t_q20{border-top-left-radius:1.25rem;border-top-right-radius:1.25rem}.sm_rounded_r_q20{border-bottom-right-radius:1.25rem;border-top-right-radius:1.25rem}.sm_rounded_b_q20{border-bottom-left-radius:1.25rem;border-bottom-right-radius:1.25rem}.sm_rounded_l_q20{border-bottom-left-radius:1.25rem}.sm_rounded_l_q20,.sm_rounded_tl_q20{border-top-left-radius:1.25rem}.sm_rounded_tr_q20{border-top-right-radius:1.25rem}.sm_rounded_br_q20{border-bottom-right-radius:1.25rem}.sm_rounded_bl_q20{border-bottom-left-radius:1.25rem}.sm_p_q24{padding:1.5rem}.sm_pt_q24{padding-top:1.5rem}.sm_pr_q24{padding-right:1.5rem}.sm_pb_q24{padding-bottom:1.5rem}.sm_pl_q24,.sm_px_q24{padding-left:1.5rem}.sm_px_q24{padding-right:1.5rem}.sm_py_q24{padding-bottom:1.5rem;padding-top:1.5rem}.sm_m_q24{margin:1.5rem}.sm_mt_q24{margin-top:1.5rem}.sm_mr_q24{margin-right:1.5rem}.sm_mb_q24{margin-bottom:1.5rem}.sm_ml_q24,.sm_mx_q24{margin-left:1.5rem}.sm_mx_q24{margin-right:1.5rem}.sm_my_q24{margin-bottom:1.5rem;margin-top:1.5rem}.sm_gap_q24{gap:1.5rem}.sm_gap_col_q24{-moz-column-gap:1.5rem;column-gap:1.5rem}.sm_gap_row_q24{row-gap:1.5rem}.sm_w_q24{width:1.5rem}.sm_min_w_q24{min-width:1.5rem}.sm_max_w_q24{max-width:1.5rem}.sm_h_q24{height:1.5rem}.sm_min_h_q24{min-height:1.5rem}.sm_max_h_q24{max-height:1.5rem}.sm_inset_q24{bottom:1.5rem;left:1.5rem;right:1.5rem;top:1.5rem}.sm_top_q24{top:1.5rem}.sm_right_q24{right:1.5rem}.sm_bottom_q24{bottom:1.5rem}.sm_left_q24{left:1.5rem}.sm_inset_x_q24{left:1.5rem;right:1.5rem}.sm_inset_y_q24{bottom:1.5rem;top:1.5rem}.sm_border_q24{border-width:1.5rem}.sm_border_t_q24{border-top-width:1.5rem}.sm_border_r_q24{border-right-width:1.5rem}.sm_border_b_q24{border-bottom-width:1.5rem}.sm_border_l_q24,.sm_border_x_q24{border-left-width:1.5rem}.sm_border_x_q24{border-right-width:1.5rem}.sm_border_y_q24{border-bottom-width:1.5rem;border-top-width:1.5rem}.sm_rounded_q24{border-radius:1.5rem}.sm_rounded_t_q24{border-top-left-radius:1.5rem;border-top-right-radius:1.5rem}.sm_rounded_r_q24{border-bottom-right-radius:1.5rem;border-top-right-radius:1.5rem}.sm_rounded_b_q24{border-bottom-left-radius:1.5rem;border-bottom-right-radius:1.5rem}.sm_rounded_l_q24{border-bottom-left-radius:1.5rem}.sm_rounded_l_q24,.sm_rounded_tl_q24{border-top-left-radius:1.5rem}.sm_rounded_tr_q24{border-top-right-radius:1.5rem}.sm_rounded_br_q24{border-bottom-right-radius:1.5rem}.sm_rounded_bl_q24{border-bottom-left-radius:1.5rem}.sm_p_q32{padding:2rem}.sm_pt_q32{padding-top:2rem}.sm_pr_q32{padding-right:2rem}.sm_pb_q32{padding-bottom:2rem}.sm_pl_q32,.sm_px_q32{padding-left:2rem}.sm_px_q32{padding-right:2rem}.sm_py_q32{padding-bottom:2rem;padding-top:2rem}.sm_m_q32{margin:2rem}.sm_mt_q32{margin-top:2rem}.sm_mr_q32{margin-right:2rem}.sm_mb_q32{margin-bottom:2rem}.sm_ml_q32,.sm_mx_q32{margin-left:2rem}.sm_mx_q32{margin-right:2rem}.sm_my_q32{margin-bottom:2rem;margin-top:2rem}.sm_gap_q32{gap:2rem}.sm_gap_col_q32{-moz-column-gap:2rem;column-gap:2rem}.sm_gap_row_q32{row-gap:2rem}.sm_w_q32{width:2rem}.sm_min_w_q32{min-width:2rem}.sm_max_w_q32{max-width:2rem}.sm_h_q32{height:2rem}.sm_min_h_q32{min-height:2rem}.sm_max_h_q32{max-height:2rem}.sm_inset_q32{bottom:2rem;left:2rem;right:2rem;top:2rem}.sm_top_q32{top:2rem}.sm_right_q32{right:2rem}.sm_bottom_q32{bottom:2rem}.sm_left_q32{left:2rem}.sm_inset_x_q32{left:2rem;right:2rem}.sm_inset_y_q32{bottom:2rem;top:2rem}.sm_border_q32{border-width:2rem}.sm_border_t_q32{border-top-width:2rem}.sm_border_r_q32{border-right-width:2rem}.sm_border_b_q32{border-bottom-width:2rem}.sm_border_l_q32,.sm_border_x_q32{border-left-width:2rem}.sm_border_x_q32{border-right-width:2rem}.sm_border_y_q32{border-bottom-width:2rem;border-top-width:2rem}.sm_rounded_q32{border-radius:2rem}.sm_rounded_t_q32{border-top-left-radius:2rem;border-top-right-radius:2rem}.sm_rounded_r_q32{border-bottom-right-radius:2rem;border-top-right-radius:2rem}.sm_rounded_b_q32{border-bottom-left-radius:2rem;border-bottom-right-radius:2rem}.sm_rounded_l_q32{border-bottom-left-radius:2rem}.sm_rounded_l_q32,.sm_rounded_tl_q32{border-top-left-radius:2rem}.sm_rounded_tr_q32{border-top-right-radius:2rem}.sm_rounded_br_q32{border-bottom-right-radius:2rem}.sm_rounded_bl_q32{border-bottom-left-radius:2rem}.sm_p_q40{padding:2.5rem}.sm_pt_q40{padding-top:2.5rem}.sm_pr_q40{padding-right:2.5rem}.sm_pb_q40{padding-bottom:2.5rem}.sm_pl_q40,.sm_px_q40{padding-left:2.5rem}.sm_px_q40{padding-right:2.5rem}.sm_py_q40{padding-bottom:2.5rem;padding-top:2.5rem}.sm_m_q40{margin:2.5rem}.sm_mt_q40{margin-top:2.5rem}.sm_mr_q40{margin-right:2.5rem}.sm_mb_q40{margin-bottom:2.5rem}.sm_ml_q40,.sm_mx_q40{margin-left:2.5rem}.sm_mx_q40{margin-right:2.5rem}.sm_my_q40{margin-bottom:2.5rem;margin-top:2.5rem}.sm_gap_q40{gap:2.5rem}.sm_gap_col_q40{-moz-column-gap:2.5rem;column-gap:2.5rem}.sm_gap_row_q40{row-gap:2.5rem}.sm_w_q40{width:2.5rem}.sm_min_w_q40{min-width:2.5rem}.sm_max_w_q40{max-width:2.5rem}.sm_h_q40{height:2.5rem}.sm_min_h_q40{min-height:2.5rem}.sm_max_h_q40{max-height:2.5rem}.sm_inset_q40{bottom:2.5rem;left:2.5rem;right:2.5rem;top:2.5rem}.sm_top_q40{top:2.5rem}.sm_right_q40{right:2.5rem}.sm_bottom_q40{bottom:2.5rem}.sm_left_q40{left:2.5rem}.sm_inset_x_q40{left:2.5rem;right:2.5rem}.sm_inset_y_q40{bottom:2.5rem;top:2.5rem}.sm_border_q40{border-width:2.5rem}.sm_border_t_q40{border-top-width:2.5rem}.sm_border_r_q40{border-right-width:2.5rem}.sm_border_b_q40{border-bottom-width:2.5rem}.sm_border_l_q40,.sm_border_x_q40{border-left-width:2.5rem}.sm_border_x_q40{border-right-width:2.5rem}.sm_border_y_q40{border-bottom-width:2.5rem;border-top-width:2.5rem}.sm_rounded_q40{border-radius:2.5rem}.sm_rounded_t_q40{border-top-left-radius:2.5rem;border-top-right-radius:2.5rem}.sm_rounded_r_q40{border-bottom-right-radius:2.5rem;border-top-right-radius:2.5rem}.sm_rounded_b_q40{border-bottom-left-radius:2.5rem;border-bottom-right-radius:2.5rem}.sm_rounded_l_q40{border-bottom-left-radius:2.5rem}.sm_rounded_l_q40,.sm_rounded_tl_q40{border-top-left-radius:2.5rem}.sm_rounded_tr_q40{border-top-right-radius:2.5rem}.sm_rounded_br_q40{border-bottom-right-radius:2.5rem}.sm_rounded_bl_q40{border-bottom-left-radius:2.5rem}.sm_p_q48{padding:3rem}.sm_pt_q48{padding-top:3rem}.sm_pr_q48{padding-right:3rem}.sm_pb_q48{padding-bottom:3rem}.sm_pl_q48,.sm_px_q48{padding-left:3rem}.sm_px_q48{padding-right:3rem}.sm_py_q48{padding-bottom:3rem;padding-top:3rem}.sm_m_q48{margin:3rem}.sm_mt_q48{margin-top:3rem}.sm_mr_q48{margin-right:3rem}.sm_mb_q48{margin-bottom:3rem}.sm_ml_q48,.sm_mx_q48{margin-left:3rem}.sm_mx_q48{margin-right:3rem}.sm_my_q48{margin-bottom:3rem;margin-top:3rem}.sm_gap_q48{gap:3rem}.sm_gap_col_q48{-moz-column-gap:3rem;column-gap:3rem}.sm_gap_row_q48{row-gap:3rem}.sm_w_q48{width:3rem}.sm_min_w_q48{min-width:3rem}.sm_max_w_q48{max-width:3rem}.sm_h_q48{height:3rem}.sm_min_h_q48{min-height:3rem}.sm_max_h_q48{max-height:3rem}.sm_inset_q48{bottom:3rem;left:3rem;right:3rem;top:3rem}.sm_top_q48{top:3rem}.sm_right_q48{right:3rem}.sm_bottom_q48{bottom:3rem}.sm_left_q48{left:3rem}.sm_inset_x_q48{left:3rem;right:3rem}.sm_inset_y_q48{bottom:3rem;top:3rem}.sm_border_q48{border-width:3rem}.sm_border_t_q48{border-top-width:3rem}.sm_border_r_q48{border-right-width:3rem}.sm_border_b_q48{border-bottom-width:3rem}.sm_border_l_q48,.sm_border_x_q48{border-left-width:3rem}.sm_border_x_q48{border-right-width:3rem}.sm_border_y_q48{border-bottom-width:3rem;border-top-width:3rem}.sm_rounded_q48{border-radius:3rem}.sm_rounded_t_q48{border-top-left-radius:3rem;border-top-right-radius:3rem}.sm_rounded_r_q48{border-bottom-right-radius:3rem;border-top-right-radius:3rem}.sm_rounded_b_q48{border-bottom-left-radius:3rem;border-bottom-right-radius:3rem}.sm_rounded_l_q48{border-bottom-left-radius:3rem}.sm_rounded_l_q48,.sm_rounded_tl_q48{border-top-left-radius:3rem}.sm_rounded_tr_q48{border-top-right-radius:3rem}.sm_rounded_br_q48{border-bottom-right-radius:3rem}.sm_rounded_bl_q48{border-bottom-left-radius:3rem}.sm_p_q56{padding:3.5rem}.sm_pt_q56{padding-top:3.5rem}.sm_pr_q56{padding-right:3.5rem}.sm_pb_q56{padding-bottom:3.5rem}.sm_pl_q56,.sm_px_q56{padding-left:3.5rem}.sm_px_q56{padding-right:3.5rem}.sm_py_q56{padding-bottom:3.5rem;padding-top:3.5rem}.sm_m_q56{margin:3.5rem}.sm_mt_q56{margin-top:3.5rem}.sm_mr_q56{margin-right:3.5rem}.sm_mb_q56{margin-bottom:3.5rem}.sm_ml_q56,.sm_mx_q56{margin-left:3.5rem}.sm_mx_q56{margin-right:3.5rem}.sm_my_q56{margin-bottom:3.5rem;margin-top:3.5rem}.sm_gap_q56{gap:3.5rem}.sm_gap_col_q56{-moz-column-gap:3.5rem;column-gap:3.5rem}.sm_gap_row_q56{row-gap:3.5rem}.sm_w_q56{width:3.5rem}.sm_min_w_q56{min-width:3.5rem}.sm_max_w_q56{max-width:3.5rem}.sm_h_q56{height:3.5rem}.sm_min_h_q56{min-height:3.5rem}.sm_max_h_q56{max-height:3.5rem}.sm_inset_q56{bottom:3.5rem;left:3.5rem;right:3.5rem;top:3.5rem}.sm_top_q56{top:3.5rem}.sm_right_q56{right:3.5rem}.sm_bottom_q56{bottom:3.5rem}.sm_left_q56{left:3.5rem}.sm_inset_x_q56{left:3.5rem;right:3.5rem}.sm_inset_y_q56{bottom:3.5rem;top:3.5rem}.sm_border_q56{border-width:3.5rem}.sm_border_t_q56{border-top-width:3.5rem}.sm_border_r_q56{border-right-width:3.5rem}.sm_border_b_q56{border-bottom-width:3.5rem}.sm_border_l_q56,.sm_border_x_q56{border-left-width:3.5rem}.sm_border_x_q56{border-right-width:3.5rem}.sm_border_y_q56{border-bottom-width:3.5rem;border-top-width:3.5rem}.sm_rounded_q56{border-radius:3.5rem}.sm_rounded_t_q56{border-top-left-radius:3.5rem;border-top-right-radius:3.5rem}.sm_rounded_r_q56{border-bottom-right-radius:3.5rem;border-top-right-radius:3.5rem}.sm_rounded_b_q56{border-bottom-left-radius:3.5rem;border-bottom-right-radius:3.5rem}.sm_rounded_l_q56{border-bottom-left-radius:3.5rem}.sm_rounded_l_q56,.sm_rounded_tl_q56{border-top-left-radius:3.5rem}.sm_rounded_tr_q56{border-top-right-radius:3.5rem}.sm_rounded_br_q56{border-bottom-right-radius:3.5rem}.sm_rounded_bl_q56{border-bottom-left-radius:3.5rem}.sm_p_q64{padding:4rem}.sm_pt_q64{padding-top:4rem}.sm_pr_q64{padding-right:4rem}.sm_pb_q64{padding-bottom:4rem}.sm_pl_q64,.sm_px_q64{padding-left:4rem}.sm_px_q64{padding-right:4rem}.sm_py_q64{padding-bottom:4rem;padding-top:4rem}.sm_m_q64{margin:4rem}.sm_mt_q64{margin-top:4rem}.sm_mr_q64{margin-right:4rem}.sm_mb_q64{margin-bottom:4rem}.sm_ml_q64,.sm_mx_q64{margin-left:4rem}.sm_mx_q64{margin-right:4rem}.sm_my_q64{margin-bottom:4rem;margin-top:4rem}.sm_gap_q64{gap:4rem}.sm_gap_col_q64{-moz-column-gap:4rem;column-gap:4rem}.sm_gap_row_q64{row-gap:4rem}.sm_w_q64{width:4rem}.sm_min_w_q64{min-width:4rem}.sm_max_w_q64{max-width:4rem}.sm_h_q64{height:4rem}.sm_min_h_q64{min-height:4rem}.sm_max_h_q64{max-height:4rem}.sm_inset_q64{bottom:4rem;left:4rem;right:4rem;top:4rem}.sm_top_q64{top:4rem}.sm_right_q64{right:4rem}.sm_bottom_q64{bottom:4rem}.sm_left_q64{left:4rem}.sm_inset_x_q64{left:4rem;right:4rem}.sm_inset_y_q64{bottom:4rem;top:4rem}.sm_border_q64{border-width:4rem}.sm_border_t_q64{border-top-width:4rem}.sm_border_r_q64{border-right-width:4rem}.sm_border_b_q64{border-bottom-width:4rem}.sm_border_l_q64,.sm_border_x_q64{border-left-width:4rem}.sm_border_x_q64{border-right-width:4rem}.sm_border_y_q64{border-bottom-width:4rem;border-top-width:4rem}.sm_rounded_q64{border-radius:4rem}.sm_rounded_t_q64{border-top-left-radius:4rem;border-top-right-radius:4rem}.sm_rounded_r_q64{border-bottom-right-radius:4rem;border-top-right-radius:4rem}.sm_rounded_b_q64{border-bottom-left-radius:4rem;border-bottom-right-radius:4rem}.sm_rounded_l_q64{border-bottom-left-radius:4rem}.sm_rounded_l_q64,.sm_rounded_tl_q64{border-top-left-radius:4rem}.sm_rounded_tr_q64{border-top-right-radius:4rem}.sm_rounded_br_q64{border-bottom-right-radius:4rem}.sm_rounded_bl_q64{border-bottom-left-radius:4rem}.sm_p_q72{padding:4.5rem}.sm_pt_q72{padding-top:4.5rem}.sm_pr_q72{padding-right:4.5rem}.sm_pb_q72{padding-bottom:4.5rem}.sm_pl_q72,.sm_px_q72{padding-left:4.5rem}.sm_px_q72{padding-right:4.5rem}.sm_py_q72{padding-bottom:4.5rem;padding-top:4.5rem}.sm_m_q72{margin:4.5rem}.sm_mt_q72{margin-top:4.5rem}.sm_mr_q72{margin-right:4.5rem}.sm_mb_q72{margin-bottom:4.5rem}.sm_ml_q72,.sm_mx_q72{margin-left:4.5rem}.sm_mx_q72{margin-right:4.5rem}.sm_my_q72{margin-bottom:4.5rem;margin-top:4.5rem}.sm_gap_q72{gap:4.5rem}.sm_gap_col_q72{-moz-column-gap:4.5rem;column-gap:4.5rem}.sm_gap_row_q72{row-gap:4.5rem}.sm_w_q72{width:4.5rem}.sm_min_w_q72{min-width:4.5rem}.sm_max_w_q72{max-width:4.5rem}.sm_h_q72{height:4.5rem}.sm_min_h_q72{min-height:4.5rem}.sm_max_h_q72{max-height:4.5rem}.sm_inset_q72{bottom:4.5rem;left:4.5rem;right:4.5rem;top:4.5rem}.sm_top_q72{top:4.5rem}.sm_right_q72{right:4.5rem}.sm_bottom_q72{bottom:4.5rem}.sm_left_q72{left:4.5rem}.sm_inset_x_q72{left:4.5rem;right:4.5rem}.sm_inset_y_q72{bottom:4.5rem;top:4.5rem}.sm_border_q72{border-width:4.5rem}.sm_border_t_q72{border-top-width:4.5rem}.sm_border_r_q72{border-right-width:4.5rem}.sm_border_b_q72{border-bottom-width:4.5rem}.sm_border_l_q72,.sm_border_x_q72{border-left-width:4.5rem}.sm_border_x_q72{border-right-width:4.5rem}.sm_border_y_q72{border-bottom-width:4.5rem;border-top-width:4.5rem}.sm_rounded_q72{border-radius:4.5rem}.sm_rounded_t_q72{border-top-left-radius:4.5rem;border-top-right-radius:4.5rem}.sm_rounded_r_q72{border-bottom-right-radius:4.5rem;border-top-right-radius:4.5rem}.sm_rounded_b_q72{border-bottom-left-radius:4.5rem;border-bottom-right-radius:4.5rem}.sm_rounded_l_q72{border-bottom-left-radius:4.5rem}.sm_rounded_l_q72,.sm_rounded_tl_q72{border-top-left-radius:4.5rem}.sm_rounded_tr_q72{border-top-right-radius:4.5rem}.sm_rounded_br_q72{border-bottom-right-radius:4.5rem}.sm_rounded_bl_q72{border-bottom-left-radius:4.5rem}.sm_p_q80{padding:5rem}.sm_pt_q80{padding-top:5rem}.sm_pr_q80{padding-right:5rem}.sm_pb_q80{padding-bottom:5rem}.sm_pl_q80,.sm_px_q80{padding-left:5rem}.sm_px_q80{padding-right:5rem}.sm_py_q80{padding-bottom:5rem;padding-top:5rem}.sm_m_q80{margin:5rem}.sm_mt_q80{margin-top:5rem}.sm_mr_q80{margin-right:5rem}.sm_mb_q80{margin-bottom:5rem}.sm_ml_q80,.sm_mx_q80{margin-left:5rem}.sm_mx_q80{margin-right:5rem}.sm_my_q80{margin-bottom:5rem;margin-top:5rem}.sm_gap_q80{gap:5rem}.sm_gap_col_q80{-moz-column-gap:5rem;column-gap:5rem}.sm_gap_row_q80{row-gap:5rem}.sm_w_q80{width:5rem}.sm_min_w_q80{min-width:5rem}.sm_max_w_q80{max-width:5rem}.sm_h_q80{height:5rem}.sm_min_h_q80{min-height:5rem}.sm_max_h_q80{max-height:5rem}.sm_inset_q80{bottom:5rem;left:5rem;right:5rem;top:5rem}.sm_top_q80{top:5rem}.sm_right_q80{right:5rem}.sm_bottom_q80{bottom:5rem}.sm_left_q80{left:5rem}.sm_inset_x_q80{left:5rem;right:5rem}.sm_inset_y_q80{bottom:5rem;top:5rem}.sm_border_q80{border-width:5rem}.sm_border_t_q80{border-top-width:5rem}.sm_border_r_q80{border-right-width:5rem}.sm_border_b_q80{border-bottom-width:5rem}.sm_border_l_q80,.sm_border_x_q80{border-left-width:5rem}.sm_border_x_q80{border-right-width:5rem}.sm_border_y_q80{border-bottom-width:5rem;border-top-width:5rem}.sm_rounded_q80{border-radius:5rem}.sm_rounded_t_q80{border-top-left-radius:5rem;border-top-right-radius:5rem}.sm_rounded_r_q80{border-bottom-right-radius:5rem;border-top-right-radius:5rem}.sm_rounded_b_q80{border-bottom-left-radius:5rem;border-bottom-right-radius:5rem}.sm_rounded_l_q80{border-bottom-left-radius:5rem}.sm_rounded_l_q80,.sm_rounded_tl_q80{border-top-left-radius:5rem}.sm_rounded_tr_q80{border-top-right-radius:5rem}.sm_rounded_br_q80{border-bottom-right-radius:5rem}.sm_rounded_bl_q80{border-bottom-left-radius:5rem}.sm_p_q96{padding:6rem}.sm_pt_q96{padding-top:6rem}.sm_pr_q96{padding-right:6rem}.sm_pb_q96{padding-bottom:6rem}.sm_pl_q96,.sm_px_q96{padding-left:6rem}.sm_px_q96{padding-right:6rem}.sm_py_q96{padding-bottom:6rem;padding-top:6rem}.sm_m_q96{margin:6rem}.sm_mt_q96{margin-top:6rem}.sm_mr_q96{margin-right:6rem}.sm_mb_q96{margin-bottom:6rem}.sm_ml_q96,.sm_mx_q96{margin-left:6rem}.sm_mx_q96{margin-right:6rem}.sm_my_q96{margin-bottom:6rem;margin-top:6rem}.sm_gap_q96{gap:6rem}.sm_gap_col_q96{-moz-column-gap:6rem;column-gap:6rem}.sm_gap_row_q96{row-gap:6rem}.sm_w_q96{width:6rem}.sm_min_w_q96{min-width:6rem}.sm_max_w_q96{max-width:6rem}.sm_h_q96{height:6rem}.sm_min_h_q96{min-height:6rem}.sm_max_h_q96{max-height:6rem}.sm_inset_q96{bottom:6rem;left:6rem;right:6rem;top:6rem}.sm_top_q96{top:6rem}.sm_right_q96{right:6rem}.sm_bottom_q96{bottom:6rem}.sm_left_q96{left:6rem}.sm_inset_x_q96{left:6rem;right:6rem}.sm_inset_y_q96{bottom:6rem;top:6rem}.sm_border_q96{border-width:6rem}.sm_border_t_q96{border-top-width:6rem}.sm_border_r_q96{border-right-width:6rem}.sm_border_b_q96{border-bottom-width:6rem}.sm_border_l_q96,.sm_border_x_q96{border-left-width:6rem}.sm_border_x_q96{border-right-width:6rem}.sm_border_y_q96{border-bottom-width:6rem;border-top-width:6rem}.sm_rounded_q96{border-radius:6rem}.sm_rounded_t_q96{border-top-left-radius:6rem;border-top-right-radius:6rem}.sm_rounded_r_q96{border-bottom-right-radius:6rem;border-top-right-radius:6rem}.sm_rounded_b_q96{border-bottom-left-radius:6rem;border-bottom-right-radius:6rem}.sm_rounded_l_q96{border-bottom-left-radius:6rem}.sm_rounded_l_q96,.sm_rounded_tl_q96{border-top-left-radius:6rem}.sm_rounded_tr_q96{border-top-right-radius:6rem}.sm_rounded_br_q96{border-bottom-right-radius:6rem}.sm_rounded_bl_q96{border-bottom-left-radius:6rem}.sm_p_q112{padding:7rem}.sm_pt_q112{padding-top:7rem}.sm_pr_q112{padding-right:7rem}.sm_pb_q112{padding-bottom:7rem}.sm_pl_q112,.sm_px_q112{padding-left:7rem}.sm_px_q112{padding-right:7rem}.sm_py_q112{padding-bottom:7rem;padding-top:7rem}.sm_m_q112{margin:7rem}.sm_mt_q112{margin-top:7rem}.sm_mr_q112{margin-right:7rem}.sm_mb_q112{margin-bottom:7rem}.sm_ml_q112,.sm_mx_q112{margin-left:7rem}.sm_mx_q112{margin-right:7rem}.sm_my_q112{margin-bottom:7rem;margin-top:7rem}.sm_gap_q112{gap:7rem}.sm_gap_col_q112{-moz-column-gap:7rem;column-gap:7rem}.sm_gap_row_q112{row-gap:7rem}.sm_w_q112{width:7rem}.sm_min_w_q112{min-width:7rem}.sm_max_w_q112{max-width:7rem}.sm_h_q112{height:7rem}.sm_min_h_q112{min-height:7rem}.sm_max_h_q112{max-height:7rem}.sm_inset_q112{bottom:7rem;left:7rem;right:7rem;top:7rem}.sm_top_q112{top:7rem}.sm_right_q112{right:7rem}.sm_bottom_q112{bottom:7rem}.sm_left_q112{left:7rem}.sm_inset_x_q112{left:7rem;right:7rem}.sm_inset_y_q112{bottom:7rem;top:7rem}.sm_border_q112{border-width:7rem}.sm_border_t_q112{border-top-width:7rem}.sm_border_r_q112{border-right-width:7rem}.sm_border_b_q112{border-bottom-width:7rem}.sm_border_l_q112,.sm_border_x_q112{border-left-width:7rem}.sm_border_x_q112{border-right-width:7rem}.sm_border_y_q112{border-bottom-width:7rem;border-top-width:7rem}.sm_rounded_q112{border-radius:7rem}.sm_rounded_t_q112{border-top-left-radius:7rem;border-top-right-radius:7rem}.sm_rounded_r_q112{border-bottom-right-radius:7rem;border-top-right-radius:7rem}.sm_rounded_b_q112{border-bottom-left-radius:7rem;border-bottom-right-radius:7rem}.sm_rounded_l_q112{border-bottom-left-radius:7rem}.sm_rounded_l_q112,.sm_rounded_tl_q112{border-top-left-radius:7rem}.sm_rounded_tr_q112{border-top-right-radius:7rem}.sm_rounded_br_q112{border-bottom-right-radius:7rem}.sm_rounded_bl_q112{border-bottom-left-radius:7rem}.sm_p_q128{padding:8rem}.sm_pt_q128{padding-top:8rem}.sm_pr_q128{padding-right:8rem}.sm_pb_q128{padding-bottom:8rem}.sm_pl_q128,.sm_px_q128{padding-left:8rem}.sm_px_q128{padding-right:8rem}.sm_py_q128{padding-bottom:8rem;padding-top:8rem}.sm_m_q128{margin:8rem}.sm_mt_q128{margin-top:8rem}.sm_mr_q128{margin-right:8rem}.sm_mb_q128{margin-bottom:8rem}.sm_ml_q128,.sm_mx_q128{margin-left:8rem}.sm_mx_q128{margin-right:8rem}.sm_my_q128{margin-bottom:8rem;margin-top:8rem}.sm_gap_q128{gap:8rem}.sm_gap_col_q128{-moz-column-gap:8rem;column-gap:8rem}.sm_gap_row_q128{row-gap:8rem}.sm_w_q128{width:8rem}.sm_min_w_q128{min-width:8rem}.sm_max_w_q128{max-width:8rem}.sm_h_q128{height:8rem}.sm_min_h_q128{min-height:8rem}.sm_max_h_q128{max-height:8rem}.sm_inset_q128{bottom:8rem;left:8rem;right:8rem;top:8rem}.sm_top_q128{top:8rem}.sm_right_q128{right:8rem}.sm_bottom_q128{bottom:8rem}.sm_left_q128{left:8rem}.sm_inset_x_q128{left:8rem;right:8rem}.sm_inset_y_q128{bottom:8rem;top:8rem}.sm_border_q128{border-width:8rem}.sm_border_t_q128{border-top-width:8rem}.sm_border_r_q128{border-right-width:8rem}.sm_border_b_q128{border-bottom-width:8rem}.sm_border_l_q128,.sm_border_x_q128{border-left-width:8rem}.sm_border_x_q128{border-right-width:8rem}.sm_border_y_q128{border-bottom-width:8rem;border-top-width:8rem}.sm_rounded_q128{border-radius:8rem}.sm_rounded_t_q128{border-top-left-radius:8rem;border-top-right-radius:8rem}.sm_rounded_r_q128{border-bottom-right-radius:8rem;border-top-right-radius:8rem}.sm_rounded_b_q128{border-bottom-left-radius:8rem;border-bottom-right-radius:8rem}.sm_rounded_l_q128{border-bottom-left-radius:8rem}.sm_rounded_l_q128,.sm_rounded_tl_q128{border-top-left-radius:8rem}.sm_rounded_tr_q128{border-top-right-radius:8rem}.sm_rounded_br_q128{border-bottom-right-radius:8rem}.sm_rounded_bl_q128{border-bottom-left-radius:8rem}.sm_p_q144{padding:9rem}.sm_pt_q144{padding-top:9rem}.sm_pr_q144{padding-right:9rem}.sm_pb_q144{padding-bottom:9rem}.sm_pl_q144,.sm_px_q144{padding-left:9rem}.sm_px_q144{padding-right:9rem}.sm_py_q144{padding-bottom:9rem;padding-top:9rem}.sm_m_q144{margin:9rem}.sm_mt_q144{margin-top:9rem}.sm_mr_q144{margin-right:9rem}.sm_mb_q144{margin-bottom:9rem}.sm_ml_q144,.sm_mx_q144{margin-left:9rem}.sm_mx_q144{margin-right:9rem}.sm_my_q144{margin-bottom:9rem;margin-top:9rem}.sm_gap_q144{gap:9rem}.sm_gap_col_q144{-moz-column-gap:9rem;column-gap:9rem}.sm_gap_row_q144{row-gap:9rem}.sm_w_q144{width:9rem}.sm_min_w_q144{min-width:9rem}.sm_max_w_q144{max-width:9rem}.sm_h_q144{height:9rem}.sm_min_h_q144{min-height:9rem}.sm_max_h_q144{max-height:9rem}.sm_inset_q144{bottom:9rem;left:9rem;right:9rem;top:9rem}.sm_top_q144{top:9rem}.sm_right_q144{right:9rem}.sm_bottom_q144{bottom:9rem}.sm_left_q144{left:9rem}.sm_inset_x_q144{left:9rem;right:9rem}.sm_inset_y_q144{bottom:9rem;top:9rem}.sm_border_q144{border-width:9rem}.sm_border_t_q144{border-top-width:9rem}.sm_border_r_q144{border-right-width:9rem}.sm_border_b_q144{border-bottom-width:9rem}.sm_border_l_q144,.sm_border_x_q144{border-left-width:9rem}.sm_border_x_q144{border-right-width:9rem}.sm_border_y_q144{border-bottom-width:9rem;border-top-width:9rem}.sm_rounded_q144{border-radius:9rem}.sm_rounded_t_q144{border-top-left-radius:9rem;border-top-right-radius:9rem}.sm_rounded_r_q144{border-bottom-right-radius:9rem;border-top-right-radius:9rem}.sm_rounded_b_q144{border-bottom-left-radius:9rem;border-bottom-right-radius:9rem}.sm_rounded_l_q144{border-bottom-left-radius:9rem}.sm_rounded_l_q144,.sm_rounded_tl_q144{border-top-left-radius:9rem}.sm_rounded_tr_q144{border-top-right-radius:9rem}.sm_rounded_br_q144{border-bottom-right-radius:9rem}.sm_rounded_bl_q144{border-bottom-left-radius:9rem}.sm_p_q160{padding:10rem}.sm_pt_q160{padding-top:10rem}.sm_pr_q160{padding-right:10rem}.sm_pb_q160{padding-bottom:10rem}.sm_pl_q160,.sm_px_q160{padding-left:10rem}.sm_px_q160{padding-right:10rem}.sm_py_q160{padding-bottom:10rem;padding-top:10rem}.sm_m_q160{margin:10rem}.sm_mt_q160{margin-top:10rem}.sm_mr_q160{margin-right:10rem}.sm_mb_q160{margin-bottom:10rem}.sm_ml_q160,.sm_mx_q160{margin-left:10rem}.sm_mx_q160{margin-right:10rem}.sm_my_q160{margin-bottom:10rem;margin-top:10rem}.sm_gap_q160{gap:10rem}.sm_gap_col_q160{-moz-column-gap:10rem;column-gap:10rem}.sm_gap_row_q160{row-gap:10rem}.sm_w_q160{width:10rem}.sm_min_w_q160{min-width:10rem}.sm_max_w_q160{max-width:10rem}.sm_h_q160{height:10rem}.sm_min_h_q160{min-height:10rem}.sm_max_h_q160{max-height:10rem}.sm_inset_q160{bottom:10rem;left:10rem;right:10rem;top:10rem}.sm_top_q160{top:10rem}.sm_right_q160{right:10rem}.sm_bottom_q160{bottom:10rem}.sm_left_q160{left:10rem}.sm_inset_x_q160{left:10rem;right:10rem}.sm_inset_y_q160{bottom:10rem;top:10rem}.sm_border_q160{border-width:10rem}.sm_border_t_q160{border-top-width:10rem}.sm_border_r_q160{border-right-width:10rem}.sm_border_b_q160{border-bottom-width:10rem}.sm_border_l_q160,.sm_border_x_q160{border-left-width:10rem}.sm_border_x_q160{border-right-width:10rem}.sm_border_y_q160{border-bottom-width:10rem;border-top-width:10rem}.sm_rounded_q160{border-radius:10rem}.sm_rounded_t_q160{border-top-left-radius:10rem;border-top-right-radius:10rem}.sm_rounded_r_q160{border-bottom-right-radius:10rem;border-top-right-radius:10rem}.sm_rounded_b_q160{border-bottom-left-radius:10rem;border-bottom-right-radius:10rem}.sm_rounded_l_q160{border-bottom-left-radius:10rem}.sm_rounded_l_q160,.sm_rounded_tl_q160{border-top-left-radius:10rem}.sm_rounded_tr_q160{border-top-right-radius:10rem}.sm_rounded_br_q160{border-bottom-right-radius:10rem}.sm_rounded_bl_q160{border-bottom-left-radius:10rem}.sm_p_q192{padding:12rem}.sm_pt_q192{padding-top:12rem}.sm_pr_q192{padding-right:12rem}.sm_pb_q192{padding-bottom:12rem}.sm_pl_q192,.sm_px_q192{padding-left:12rem}.sm_px_q192{padding-right:12rem}.sm_py_q192{padding-bottom:12rem;padding-top:12rem}.sm_m_q192{margin:12rem}.sm_mt_q192{margin-top:12rem}.sm_mr_q192{margin-right:12rem}.sm_mb_q192{margin-bottom:12rem}.sm_ml_q192,.sm_mx_q192{margin-left:12rem}.sm_mx_q192{margin-right:12rem}.sm_my_q192{margin-bottom:12rem;margin-top:12rem}.sm_gap_q192{gap:12rem}.sm_gap_col_q192{-moz-column-gap:12rem;column-gap:12rem}.sm_gap_row_q192{row-gap:12rem}.sm_w_q192{width:12rem}.sm_min_w_q192{min-width:12rem}.sm_max_w_q192{max-width:12rem}.sm_h_q192{height:12rem}.sm_min_h_q192{min-height:12rem}.sm_max_h_q192{max-height:12rem}.sm_inset_q192{bottom:12rem;left:12rem;right:12rem;top:12rem}.sm_top_q192{top:12rem}.sm_right_q192{right:12rem}.sm_bottom_q192{bottom:12rem}.sm_left_q192{left:12rem}.sm_inset_x_q192{left:12rem;right:12rem}.sm_inset_y_q192{bottom:12rem;top:12rem}.sm_border_q192{border-width:12rem}.sm_border_t_q192{border-top-width:12rem}.sm_border_r_q192{border-right-width:12rem}.sm_border_b_q192{border-bottom-width:12rem}.sm_border_l_q192,.sm_border_x_q192{border-left-width:12rem}.sm_border_x_q192{border-right-width:12rem}.sm_border_y_q192{border-bottom-width:12rem;border-top-width:12rem}.sm_rounded_q192{border-radius:12rem}.sm_rounded_t_q192{border-top-left-radius:12rem;border-top-right-radius:12rem}.sm_rounded_r_q192{border-bottom-right-radius:12rem;border-top-right-radius:12rem}.sm_rounded_b_q192{border-bottom-left-radius:12rem;border-bottom-right-radius:12rem}.sm_rounded_l_q192{border-bottom-left-radius:12rem}.sm_rounded_l_q192,.sm_rounded_tl_q192{border-top-left-radius:12rem}.sm_rounded_tr_q192{border-top-right-radius:12rem}.sm_rounded_br_q192{border-bottom-right-radius:12rem}.sm_rounded_bl_q192{border-bottom-left-radius:12rem}.sm_p_q224{padding:14rem}.sm_pt_q224{padding-top:14rem}.sm_pr_q224{padding-right:14rem}.sm_pb_q224{padding-bottom:14rem}.sm_pl_q224,.sm_px_q224{padding-left:14rem}.sm_px_q224{padding-right:14rem}.sm_py_q224{padding-bottom:14rem;padding-top:14rem}.sm_m_q224{margin:14rem}.sm_mt_q224{margin-top:14rem}.sm_mr_q224{margin-right:14rem}.sm_mb_q224{margin-bottom:14rem}.sm_ml_q224,.sm_mx_q224{margin-left:14rem}.sm_mx_q224{margin-right:14rem}.sm_my_q224{margin-bottom:14rem;margin-top:14rem}.sm_gap_q224{gap:14rem}.sm_gap_col_q224{-moz-column-gap:14rem;column-gap:14rem}.sm_gap_row_q224{row-gap:14rem}.sm_w_q224{width:14rem}.sm_min_w_q224{min-width:14rem}.sm_max_w_q224{max-width:14rem}.sm_h_q224{height:14rem}.sm_min_h_q224{min-height:14rem}.sm_max_h_q224{max-height:14rem}.sm_inset_q224{bottom:14rem;left:14rem;right:14rem;top:14rem}.sm_top_q224{top:14rem}.sm_right_q224{right:14rem}.sm_bottom_q224{bottom:14rem}.sm_left_q224{left:14rem}.sm_inset_x_q224{left:14rem;right:14rem}.sm_inset_y_q224{bottom:14rem;top:14rem}.sm_border_q224{border-width:14rem}.sm_border_t_q224{border-top-width:14rem}.sm_border_r_q224{border-right-width:14rem}.sm_border_b_q224{border-bottom-width:14rem}.sm_border_l_q224,.sm_border_x_q224{border-left-width:14rem}.sm_border_x_q224{border-right-width:14rem}.sm_border_y_q224{border-bottom-width:14rem;border-top-width:14rem}.sm_rounded_q224{border-radius:14rem}.sm_rounded_t_q224{border-top-left-radius:14rem;border-top-right-radius:14rem}.sm_rounded_r_q224{border-bottom-right-radius:14rem;border-top-right-radius:14rem}.sm_rounded_b_q224{border-bottom-left-radius:14rem;border-bottom-right-radius:14rem}.sm_rounded_l_q224{border-bottom-left-radius:14rem}.sm_rounded_l_q224,.sm_rounded_tl_q224{border-top-left-radius:14rem}.sm_rounded_tr_q224{border-top-right-radius:14rem}.sm_rounded_br_q224{border-bottom-right-radius:14rem}.sm_rounded_bl_q224{border-bottom-left-radius:14rem}.sm_p_q256{padding:16rem}.sm_pt_q256{padding-top:16rem}.sm_pr_q256{padding-right:16rem}.sm_pb_q256{padding-bottom:16rem}.sm_pl_q256,.sm_px_q256{padding-left:16rem}.sm_px_q256{padding-right:16rem}.sm_py_q256{padding-bottom:16rem;padding-top:16rem}.sm_m_q256{margin:16rem}.sm_mt_q256{margin-top:16rem}.sm_mr_q256{margin-right:16rem}.sm_mb_q256{margin-bottom:16rem}.sm_ml_q256,.sm_mx_q256{margin-left:16rem}.sm_mx_q256{margin-right:16rem}.sm_my_q256{margin-bottom:16rem;margin-top:16rem}.sm_gap_q256{gap:16rem}.sm_gap_col_q256{-moz-column-gap:16rem;column-gap:16rem}.sm_gap_row_q256{row-gap:16rem}.sm_w_q256{width:16rem}.sm_min_w_q256{min-width:16rem}.sm_max_w_q256{max-width:16rem}.sm_h_q256{height:16rem}.sm_min_h_q256{min-height:16rem}.sm_max_h_q256{max-height:16rem}.sm_inset_q256{bottom:16rem;left:16rem;right:16rem;top:16rem}.sm_top_q256{top:16rem}.sm_right_q256{right:16rem}.sm_bottom_q256{bottom:16rem}.sm_left_q256{left:16rem}.sm_inset_x_q256{left:16rem;right:16rem}.sm_inset_y_q256{bottom:16rem;top:16rem}.sm_border_q256{border-width:16rem}.sm_border_t_q256{border-top-width:16rem}.sm_border_r_q256{border-right-width:16rem}.sm_border_b_q256{border-bottom-width:16rem}.sm_border_l_q256,.sm_border_x_q256{border-left-width:16rem}.sm_border_x_q256{border-right-width:16rem}.sm_border_y_q256{border-bottom-width:16rem;border-top-width:16rem}.sm_rounded_q256{border-radius:16rem}.sm_rounded_t_q256{border-top-left-radius:16rem;border-top-right-radius:16rem}.sm_rounded_r_q256{border-bottom-right-radius:16rem;border-top-right-radius:16rem}.sm_rounded_b_q256{border-bottom-left-radius:16rem;border-bottom-right-radius:16rem}.sm_rounded_l_q256{border-bottom-left-radius:16rem}.sm_rounded_l_q256,.sm_rounded_tl_q256{border-top-left-radius:16rem}.sm_rounded_tr_q256{border-top-right-radius:16rem}.sm_rounded_br_q256{border-bottom-right-radius:16rem}.sm_rounded_bl_q256{border-bottom-left-radius:16rem}}@media(min-width:1440px){.md_p_q0{padding:0}.md_pt_q0{padding-top:0}.md_pr_q0{padding-right:0}.md_pb_q0{padding-bottom:0}.md_pl_q0,.md_px_q0{padding-left:0}.md_px_q0{padding-right:0}.md_py_q0{padding-bottom:0;padding-top:0}.md_m_q0{margin:0}.md_mt_q0{margin-top:0}.md_mr_q0{margin-right:0}.md_mb_q0{margin-bottom:0}.md_ml_q0,.md_mx_q0{margin-left:0}.md_mx_q0{margin-right:0}.md_my_q0{margin-bottom:0;margin-top:0}.md_gap_q0{gap:0}.md_gap_col_q0{-moz-column-gap:0;column-gap:0}.md_gap_row_q0{row-gap:0}.md_w_q0{width:0}.md_min_w_q0{min-width:0}.md_max_w_q0{max-width:0}.md_h_q0{height:0}.md_min_h_q0{min-height:0}.md_max_h_q0{max-height:0}.md_inset_q0{bottom:0;left:0;right:0;top:0}.md_top_q0{top:0}.md_right_q0{right:0}.md_bottom_q0{bottom:0}.md_left_q0{left:0}.md_inset_x_q0{left:0;right:0}.md_inset_y_q0{bottom:0;top:0}.md_border_q0{border-width:0}.md_border_t_q0{border-top-width:0}.md_border_r_q0{border-right-width:0}.md_border_b_q0{border-bottom-width:0}.md_border_l_q0,.md_border_x_q0{border-left-width:0}.md_border_x_q0{border-right-width:0}.md_border_y_q0{border-bottom-width:0;border-top-width:0}.md_rounded_q0{border-radius:0}.md_rounded_t_q0{border-top-left-radius:0;border-top-right-radius:0}.md_rounded_r_q0{border-bottom-right-radius:0;border-top-right-radius:0}.md_rounded_b_q0{border-bottom-left-radius:0;border-bottom-right-radius:0}.md_rounded_l_q0{border-bottom-left-radius:0}.md_rounded_l_q0,.md_rounded_tl_q0{border-top-left-radius:0}.md_rounded_tr_q0{border-top-right-radius:0}.md_rounded_br_q0{border-bottom-right-radius:0}.md_rounded_bl_q0{border-bottom-left-radius:0}.md_p_q1{padding:.0625rem}.md_pt_q1{padding-top:.0625rem}.md_pr_q1{padding-right:.0625rem}.md_pb_q1{padding-bottom:.0625rem}.md_pl_q1,.md_px_q1{padding-left:.0625rem}.md_px_q1{padding-right:.0625rem}.md_py_q1{padding-bottom:.0625rem;padding-top:.0625rem}.md_m_q1{margin:.0625rem}.md_mt_q1{margin-top:.0625rem}.md_mr_q1{margin-right:.0625rem}.md_mb_q1{margin-bottom:.0625rem}.md_ml_q1,.md_mx_q1{margin-left:.0625rem}.md_mx_q1{margin-right:.0625rem}.md_my_q1{margin-bottom:.0625rem;margin-top:.0625rem}.md_gap_q1{gap:.0625rem}.md_gap_col_q1{-moz-column-gap:.0625rem;column-gap:.0625rem}.md_gap_row_q1{row-gap:.0625rem}.md_w_q1{width:.0625rem}.md_min_w_q1{min-width:.0625rem}.md_max_w_q1{max-width:.0625rem}.md_h_q1{height:.0625rem}.md_min_h_q1{min-height:.0625rem}.md_max_h_q1{max-height:.0625rem}.md_inset_q1{bottom:.0625rem;left:.0625rem;right:.0625rem;top:.0625rem}.md_top_q1{top:.0625rem}.md_right_q1{right:.0625rem}.md_bottom_q1{bottom:.0625rem}.md_left_q1{left:.0625rem}.md_inset_x_q1{left:.0625rem;right:.0625rem}.md_inset_y_q1{bottom:.0625rem;top:.0625rem}.md_border_q1{border-width:.0625rem}.md_border_t_q1{border-top-width:.0625rem}.md_border_r_q1{border-right-width:.0625rem}.md_border_b_q1{border-bottom-width:.0625rem}.md_border_l_q1,.md_border_x_q1{border-left-width:.0625rem}.md_border_x_q1{border-right-width:.0625rem}.md_border_y_q1{border-bottom-width:.0625rem;border-top-width:.0625rem}.md_rounded_q1{border-radius:.0625rem}.md_rounded_t_q1{border-top-left-radius:.0625rem;border-top-right-radius:.0625rem}.md_rounded_r_q1{border-top-right-radius:.0625rem}.md_rounded_b_q1,.md_rounded_r_q1{border-bottom-right-radius:.0625rem}.md_rounded_b_q1,.md_rounded_l_q1{border-bottom-left-radius:.0625rem}.md_rounded_l_q1,.md_rounded_tl_q1{border-top-left-radius:.0625rem}.md_rounded_tr_q1{border-top-right-radius:.0625rem}.md_rounded_br_q1{border-bottom-right-radius:.0625rem}.md_rounded_bl_q1{border-bottom-left-radius:.0625rem}.md_p_q2{padding:.125rem}.md_pt_q2{padding-top:.125rem}.md_pr_q2{padding-right:.125rem}.md_pb_q2{padding-bottom:.125rem}.md_pl_q2,.md_px_q2{padding-left:.125rem}.md_px_q2{padding-right:.125rem}.md_py_q2{padding-bottom:.125rem;padding-top:.125rem}.md_m_q2{margin:.125rem}.md_mt_q2{margin-top:.125rem}.md_mr_q2{margin-right:.125rem}.md_mb_q2{margin-bottom:.125rem}.md_ml_q2,.md_mx_q2{margin-left:.125rem}.md_mx_q2{margin-right:.125rem}.md_my_q2{margin-bottom:.125rem;margin-top:.125rem}.md_gap_q2{gap:.125rem}.md_gap_col_q2{-moz-column-gap:.125rem;column-gap:.125rem}.md_gap_row_q2{row-gap:.125rem}.md_w_q2{width:.125rem}.md_min_w_q2{min-width:.125rem}.md_max_w_q2{max-width:.125rem}.md_h_q2{height:.125rem}.md_min_h_q2{min-height:.125rem}.md_max_h_q2{max-height:.125rem}.md_inset_q2{bottom:.125rem;left:.125rem;right:.125rem;top:.125rem}.md_top_q2{top:.125rem}.md_right_q2{right:.125rem}.md_bottom_q2{bottom:.125rem}.md_left_q2{left:.125rem}.md_inset_x_q2{left:.125rem;right:.125rem}.md_inset_y_q2{bottom:.125rem;top:.125rem}.md_border_q2{border-width:.125rem}.md_border_t_q2{border-top-width:.125rem}.md_border_r_q2{border-right-width:.125rem}.md_border_b_q2{border-bottom-width:.125rem}.md_border_l_q2,.md_border_x_q2{border-left-width:.125rem}.md_border_x_q2{border-right-width:.125rem}.md_border_y_q2{border-bottom-width:.125rem;border-top-width:.125rem}.md_rounded_q2{border-radius:.125rem}.md_rounded_t_q2{border-top-left-radius:.125rem;border-top-right-radius:.125rem}.md_rounded_r_q2{border-top-right-radius:.125rem}.md_rounded_b_q2,.md_rounded_r_q2{border-bottom-right-radius:.125rem}.md_rounded_b_q2,.md_rounded_l_q2{border-bottom-left-radius:.125rem}.md_rounded_l_q2,.md_rounded_tl_q2{border-top-left-radius:.125rem}.md_rounded_tr_q2{border-top-right-radius:.125rem}.md_rounded_br_q2{border-bottom-right-radius:.125rem}.md_rounded_bl_q2{border-bottom-left-radius:.125rem}.md_p_q4{padding:.25rem}.md_pt_q4{padding-top:.25rem}.md_pr_q4{padding-right:.25rem}.md_pb_q4{padding-bottom:.25rem}.md_pl_q4,.md_px_q4{padding-left:.25rem}.md_px_q4{padding-right:.25rem}.md_py_q4{padding-bottom:.25rem;padding-top:.25rem}.md_m_q4{margin:.25rem}.md_mt_q4{margin-top:.25rem}.md_mr_q4{margin-right:.25rem}.md_mb_q4{margin-bottom:.25rem}.md_ml_q4,.md_mx_q4{margin-left:.25rem}.md_mx_q4{margin-right:.25rem}.md_my_q4{margin-bottom:.25rem;margin-top:.25rem}.md_gap_q4{gap:.25rem}.md_gap_col_q4{-moz-column-gap:.25rem;column-gap:.25rem}.md_gap_row_q4{row-gap:.25rem}.md_w_q4{width:.25rem}.md_min_w_q4{min-width:.25rem}.md_max_w_q4{max-width:.25rem}.md_h_q4{height:.25rem}.md_min_h_q4{min-height:.25rem}.md_max_h_q4{max-height:.25rem}.md_inset_q4{bottom:.25rem;left:.25rem;right:.25rem;top:.25rem}.md_top_q4{top:.25rem}.md_right_q4{right:.25rem}.md_bottom_q4{bottom:.25rem}.md_left_q4{left:.25rem}.md_inset_x_q4{left:.25rem;right:.25rem}.md_inset_y_q4{bottom:.25rem;top:.25rem}.md_border_q4{border-width:.25rem}.md_border_t_q4{border-top-width:.25rem}.md_border_r_q4{border-right-width:.25rem}.md_border_b_q4{border-bottom-width:.25rem}.md_border_l_q4,.md_border_x_q4{border-left-width:.25rem}.md_border_x_q4{border-right-width:.25rem}.md_border_y_q4{border-bottom-width:.25rem;border-top-width:.25rem}.md_rounded_q4{border-radius:.25rem}.md_rounded_t_q4{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.md_rounded_r_q4{border-bottom-right-radius:.25rem;border-top-right-radius:.25rem}.md_rounded_b_q4{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.md_rounded_l_q4{border-bottom-left-radius:.25rem}.md_rounded_l_q4,.md_rounded_tl_q4{border-top-left-radius:.25rem}.md_rounded_tr_q4{border-top-right-radius:.25rem}.md_rounded_br_q4{border-bottom-right-radius:.25rem}.md_rounded_bl_q4{border-bottom-left-radius:.25rem}.md_p_q6{padding:.375rem}.md_pt_q6{padding-top:.375rem}.md_pr_q6{padding-right:.375rem}.md_pb_q6{padding-bottom:.375rem}.md_pl_q6,.md_px_q6{padding-left:.375rem}.md_px_q6{padding-right:.375rem}.md_py_q6{padding-bottom:.375rem;padding-top:.375rem}.md_m_q6{margin:.375rem}.md_mt_q6{margin-top:.375rem}.md_mr_q6{margin-right:.375rem}.md_mb_q6{margin-bottom:.375rem}.md_ml_q6,.md_mx_q6{margin-left:.375rem}.md_mx_q6{margin-right:.375rem}.md_my_q6{margin-bottom:.375rem;margin-top:.375rem}.md_gap_q6{gap:.375rem}.md_gap_col_q6{-moz-column-gap:.375rem;column-gap:.375rem}.md_gap_row_q6{row-gap:.375rem}.md_w_q6{width:.375rem}.md_min_w_q6{min-width:.375rem}.md_max_w_q6{max-width:.375rem}.md_h_q6{height:.375rem}.md_min_h_q6{min-height:.375rem}.md_max_h_q6{max-height:.375rem}.md_inset_q6{bottom:.375rem;left:.375rem;right:.375rem;top:.375rem}.md_top_q6{top:.375rem}.md_right_q6{right:.375rem}.md_bottom_q6{bottom:.375rem}.md_left_q6{left:.375rem}.md_inset_x_q6{left:.375rem;right:.375rem}.md_inset_y_q6{bottom:.375rem;top:.375rem}.md_border_q6{border-width:.375rem}.md_border_t_q6{border-top-width:.375rem}.md_border_r_q6{border-right-width:.375rem}.md_border_b_q6{border-bottom-width:.375rem}.md_border_l_q6,.md_border_x_q6{border-left-width:.375rem}.md_border_x_q6{border-right-width:.375rem}.md_border_y_q6{border-bottom-width:.375rem;border-top-width:.375rem}.md_rounded_q6{border-radius:.375rem}.md_rounded_t_q6{border-top-left-radius:.375rem;border-top-right-radius:.375rem}.md_rounded_r_q6{border-top-right-radius:.375rem}.md_rounded_b_q6,.md_rounded_r_q6{border-bottom-right-radius:.375rem}.md_rounded_b_q6,.md_rounded_l_q6{border-bottom-left-radius:.375rem}.md_rounded_l_q6,.md_rounded_tl_q6{border-top-left-radius:.375rem}.md_rounded_tr_q6{border-top-right-radius:.375rem}.md_rounded_br_q6{border-bottom-right-radius:.375rem}.md_rounded_bl_q6{border-bottom-left-radius:.375rem}.md_p_q8{padding:.5rem}.md_pt_q8{padding-top:.5rem}.md_pr_q8{padding-right:.5rem}.md_pb_q8{padding-bottom:.5rem}.md_pl_q8,.md_px_q8{padding-left:.5rem}.md_px_q8{padding-right:.5rem}.md_py_q8{padding-bottom:.5rem;padding-top:.5rem}.md_m_q8{margin:.5rem}.md_mt_q8{margin-top:.5rem}.md_mr_q8{margin-right:.5rem}.md_mb_q8{margin-bottom:.5rem}.md_ml_q8,.md_mx_q8{margin-left:.5rem}.md_mx_q8{margin-right:.5rem}.md_my_q8{margin-bottom:.5rem;margin-top:.5rem}.md_gap_q8{gap:.5rem}.md_gap_col_q8{-moz-column-gap:.5rem;column-gap:.5rem}.md_gap_row_q8{row-gap:.5rem}.md_w_q8{width:.5rem}.md_min_w_q8{min-width:.5rem}.md_max_w_q8{max-width:.5rem}.md_h_q8{height:.5rem}.md_min_h_q8{min-height:.5rem}.md_max_h_q8{max-height:.5rem}.md_inset_q8{bottom:.5rem;left:.5rem;right:.5rem;top:.5rem}.md_top_q8{top:.5rem}.md_right_q8{right:.5rem}.md_bottom_q8{bottom:.5rem}.md_left_q8{left:.5rem}.md_inset_x_q8{left:.5rem;right:.5rem}.md_inset_y_q8{bottom:.5rem;top:.5rem}.md_border_q8{border-width:.5rem}.md_border_t_q8{border-top-width:.5rem}.md_border_r_q8{border-right-width:.5rem}.md_border_b_q8{border-bottom-width:.5rem}.md_border_l_q8,.md_border_x_q8{border-left-width:.5rem}.md_border_x_q8{border-right-width:.5rem}.md_border_y_q8{border-bottom-width:.5rem;border-top-width:.5rem}.md_rounded_q8{border-radius:.5rem}.md_rounded_t_q8{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.md_rounded_r_q8{border-bottom-right-radius:.5rem;border-top-right-radius:.5rem}.md_rounded_b_q8{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.md_rounded_l_q8{border-bottom-left-radius:.5rem}.md_rounded_l_q8,.md_rounded_tl_q8{border-top-left-radius:.5rem}.md_rounded_tr_q8{border-top-right-radius:.5rem}.md_rounded_br_q8{border-bottom-right-radius:.5rem}.md_rounded_bl_q8{border-bottom-left-radius:.5rem}.md_p_q12{padding:.75rem}.md_pt_q12{padding-top:.75rem}.md_pr_q12{padding-right:.75rem}.md_pb_q12{padding-bottom:.75rem}.md_pl_q12,.md_px_q12{padding-left:.75rem}.md_px_q12{padding-right:.75rem}.md_py_q12{padding-bottom:.75rem;padding-top:.75rem}.md_m_q12{margin:.75rem}.md_mt_q12{margin-top:.75rem}.md_mr_q12{margin-right:.75rem}.md_mb_q12{margin-bottom:.75rem}.md_ml_q12,.md_mx_q12{margin-left:.75rem}.md_mx_q12{margin-right:.75rem}.md_my_q12{margin-bottom:.75rem;margin-top:.75rem}.md_gap_q12{gap:.75rem}.md_gap_col_q12{-moz-column-gap:.75rem;column-gap:.75rem}.md_gap_row_q12{row-gap:.75rem}.md_w_q12{width:.75rem}.md_min_w_q12{min-width:.75rem}.md_max_w_q12{max-width:.75rem}.md_h_q12{height:.75rem}.md_min_h_q12{min-height:.75rem}.md_max_h_q12{max-height:.75rem}.md_inset_q12{bottom:.75rem;left:.75rem;right:.75rem;top:.75rem}.md_top_q12{top:.75rem}.md_right_q12{right:.75rem}.md_bottom_q12{bottom:.75rem}.md_left_q12{left:.75rem}.md_inset_x_q12{left:.75rem;right:.75rem}.md_inset_y_q12{bottom:.75rem;top:.75rem}.md_border_q12{border-width:.75rem}.md_border_t_q12{border-top-width:.75rem}.md_border_r_q12{border-right-width:.75rem}.md_border_b_q12{border-bottom-width:.75rem}.md_border_l_q12,.md_border_x_q12{border-left-width:.75rem}.md_border_x_q12{border-right-width:.75rem}.md_border_y_q12{border-bottom-width:.75rem;border-top-width:.75rem}.md_rounded_q12{border-radius:.75rem}.md_rounded_t_q12{border-top-left-radius:.75rem;border-top-right-radius:.75rem}.md_rounded_r_q12{border-bottom-right-radius:.75rem;border-top-right-radius:.75rem}.md_rounded_b_q12{border-bottom-left-radius:.75rem;border-bottom-right-radius:.75rem}.md_rounded_l_q12{border-bottom-left-radius:.75rem}.md_rounded_l_q12,.md_rounded_tl_q12{border-top-left-radius:.75rem}.md_rounded_tr_q12{border-top-right-radius:.75rem}.md_rounded_br_q12{border-bottom-right-radius:.75rem}.md_rounded_bl_q12{border-bottom-left-radius:.75rem}.md_p_q16{padding:1rem}.md_pt_q16{padding-top:1rem}.md_pr_q16{padding-right:1rem}.md_pb_q16{padding-bottom:1rem}.md_pl_q16,.md_px_q16{padding-left:1rem}.md_px_q16{padding-right:1rem}.md_py_q16{padding-bottom:1rem;padding-top:1rem}.md_m_q16{margin:1rem}.md_mt_q16{margin-top:1rem}.md_mr_q16{margin-right:1rem}.md_mb_q16{margin-bottom:1rem}.md_ml_q16,.md_mx_q16{margin-left:1rem}.md_mx_q16{margin-right:1rem}.md_my_q16{margin-bottom:1rem;margin-top:1rem}.md_gap_q16{gap:1rem}.md_gap_col_q16{-moz-column-gap:1rem;column-gap:1rem}.md_gap_row_q16{row-gap:1rem}.md_w_q16{width:1rem}.md_min_w_q16{min-width:1rem}.md_max_w_q16{max-width:1rem}.md_h_q16{height:1rem}.md_min_h_q16{min-height:1rem}.md_max_h_q16{max-height:1rem}.md_inset_q16{bottom:1rem;left:1rem;right:1rem;top:1rem}.md_top_q16{top:1rem}.md_right_q16{right:1rem}.md_bottom_q16{bottom:1rem}.md_left_q16{left:1rem}.md_inset_x_q16{left:1rem;right:1rem}.md_inset_y_q16{bottom:1rem;top:1rem}.md_border_q16{border-width:1rem}.md_border_t_q16{border-top-width:1rem}.md_border_r_q16{border-right-width:1rem}.md_border_b_q16{border-bottom-width:1rem}.md_border_l_q16,.md_border_x_q16{border-left-width:1rem}.md_border_x_q16{border-right-width:1rem}.md_border_y_q16{border-bottom-width:1rem;border-top-width:1rem}.md_rounded_q16{border-radius:1rem}.md_rounded_t_q16{border-top-left-radius:1rem;border-top-right-radius:1rem}.md_rounded_r_q16{border-bottom-right-radius:1rem;border-top-right-radius:1rem}.md_rounded_b_q16{border-bottom-left-radius:1rem;border-bottom-right-radius:1rem}.md_rounded_l_q16{border-bottom-left-radius:1rem}.md_rounded_l_q16,.md_rounded_tl_q16{border-top-left-radius:1rem}.md_rounded_tr_q16{border-top-right-radius:1rem}.md_rounded_br_q16{border-bottom-right-radius:1rem}.md_rounded_bl_q16{border-bottom-left-radius:1rem}.md_p_q20{padding:1.25rem}.md_pt_q20{padding-top:1.25rem}.md_pr_q20{padding-right:1.25rem}.md_pb_q20{padding-bottom:1.25rem}.md_pl_q20,.md_px_q20{padding-left:1.25rem}.md_px_q20{padding-right:1.25rem}.md_py_q20{padding-bottom:1.25rem;padding-top:1.25rem}.md_m_q20{margin:1.25rem}.md_mt_q20{margin-top:1.25rem}.md_mr_q20{margin-right:1.25rem}.md_mb_q20{margin-bottom:1.25rem}.md_ml_q20,.md_mx_q20{margin-left:1.25rem}.md_mx_q20{margin-right:1.25rem}.md_my_q20{margin-bottom:1.25rem;margin-top:1.25rem}.md_gap_q20{gap:1.25rem}.md_gap_col_q20{-moz-column-gap:1.25rem;column-gap:1.25rem}.md_gap_row_q20{row-gap:1.25rem}.md_w_q20{width:1.25rem}.md_min_w_q20{min-width:1.25rem}.md_max_w_q20{max-width:1.25rem}.md_h_q20{height:1.25rem}.md_min_h_q20{min-height:1.25rem}.md_max_h_q20{max-height:1.25rem}.md_inset_q20{bottom:1.25rem;left:1.25rem;right:1.25rem;top:1.25rem}.md_top_q20{top:1.25rem}.md_right_q20{right:1.25rem}.md_bottom_q20{bottom:1.25rem}.md_left_q20{left:1.25rem}.md_inset_x_q20{left:1.25rem;right:1.25rem}.md_inset_y_q20{bottom:1.25rem;top:1.25rem}.md_border_q20{border-width:1.25rem}.md_border_t_q20{border-top-width:1.25rem}.md_border_r_q20{border-right-width:1.25rem}.md_border_b_q20{border-bottom-width:1.25rem}.md_border_l_q20,.md_border_x_q20{border-left-width:1.25rem}.md_border_x_q20{border-right-width:1.25rem}.md_border_y_q20{border-bottom-width:1.25rem;border-top-width:1.25rem}.md_rounded_q20{border-radius:1.25rem}.md_rounded_t_q20{border-top-left-radius:1.25rem;border-top-right-radius:1.25rem}.md_rounded_r_q20{border-bottom-right-radius:1.25rem;border-top-right-radius:1.25rem}.md_rounded_b_q20{border-bottom-left-radius:1.25rem;border-bottom-right-radius:1.25rem}.md_rounded_l_q20{border-bottom-left-radius:1.25rem}.md_rounded_l_q20,.md_rounded_tl_q20{border-top-left-radius:1.25rem}.md_rounded_tr_q20{border-top-right-radius:1.25rem}.md_rounded_br_q20{border-bottom-right-radius:1.25rem}.md_rounded_bl_q20{border-bottom-left-radius:1.25rem}.md_p_q24{padding:1.5rem}.md_pt_q24{padding-top:1.5rem}.md_pr_q24{padding-right:1.5rem}.md_pb_q24{padding-bottom:1.5rem}.md_pl_q24,.md_px_q24{padding-left:1.5rem}.md_px_q24{padding-right:1.5rem}.md_py_q24{padding-bottom:1.5rem;padding-top:1.5rem}.md_m_q24{margin:1.5rem}.md_mt_q24{margin-top:1.5rem}.md_mr_q24{margin-right:1.5rem}.md_mb_q24{margin-bottom:1.5rem}.md_ml_q24,.md_mx_q24{margin-left:1.5rem}.md_mx_q24{margin-right:1.5rem}.md_my_q24{margin-bottom:1.5rem;margin-top:1.5rem}.md_gap_q24{gap:1.5rem}.md_gap_col_q24{-moz-column-gap:1.5rem;column-gap:1.5rem}.md_gap_row_q24{row-gap:1.5rem}.md_w_q24{width:1.5rem}.md_min_w_q24{min-width:1.5rem}.md_max_w_q24{max-width:1.5rem}.md_h_q24{height:1.5rem}.md_min_h_q24{min-height:1.5rem}.md_max_h_q24{max-height:1.5rem}.md_inset_q24{bottom:1.5rem;left:1.5rem;right:1.5rem;top:1.5rem}.md_top_q24{top:1.5rem}.md_right_q24{right:1.5rem}.md_bottom_q24{bottom:1.5rem}.md_left_q24{left:1.5rem}.md_inset_x_q24{left:1.5rem;right:1.5rem}.md_inset_y_q24{bottom:1.5rem;top:1.5rem}.md_border_q24{border-width:1.5rem}.md_border_t_q24{border-top-width:1.5rem}.md_border_r_q24{border-right-width:1.5rem}.md_border_b_q24{border-bottom-width:1.5rem}.md_border_l_q24,.md_border_x_q24{border-left-width:1.5rem}.md_border_x_q24{border-right-width:1.5rem}.md_border_y_q24{border-bottom-width:1.5rem;border-top-width:1.5rem}.md_rounded_q24{border-radius:1.5rem}.md_rounded_t_q24{border-top-left-radius:1.5rem;border-top-right-radius:1.5rem}.md_rounded_r_q24{border-bottom-right-radius:1.5rem;border-top-right-radius:1.5rem}.md_rounded_b_q24{border-bottom-left-radius:1.5rem;border-bottom-right-radius:1.5rem}.md_rounded_l_q24{border-bottom-left-radius:1.5rem}.md_rounded_l_q24,.md_rounded_tl_q24{border-top-left-radius:1.5rem}.md_rounded_tr_q24{border-top-right-radius:1.5rem}.md_rounded_br_q24{border-bottom-right-radius:1.5rem}.md_rounded_bl_q24{border-bottom-left-radius:1.5rem}.md_p_q32{padding:2rem}.md_pt_q32{padding-top:2rem}.md_pr_q32{padding-right:2rem}.md_pb_q32{padding-bottom:2rem}.md_pl_q32,.md_px_q32{padding-left:2rem}.md_px_q32{padding-right:2rem}.md_py_q32{padding-bottom:2rem;padding-top:2rem}.md_m_q32{margin:2rem}.md_mt_q32{margin-top:2rem}.md_mr_q32{margin-right:2rem}.md_mb_q32{margin-bottom:2rem}.md_ml_q32,.md_mx_q32{margin-left:2rem}.md_mx_q32{margin-right:2rem}.md_my_q32{margin-bottom:2rem;margin-top:2rem}.md_gap_q32{gap:2rem}.md_gap_col_q32{-moz-column-gap:2rem;column-gap:2rem}.md_gap_row_q32{row-gap:2rem}.md_w_q32{width:2rem}.md_min_w_q32{min-width:2rem}.md_max_w_q32{max-width:2rem}.md_h_q32{height:2rem}.md_min_h_q32{min-height:2rem}.md_max_h_q32{max-height:2rem}.md_inset_q32{bottom:2rem;left:2rem;right:2rem;top:2rem}.md_top_q32{top:2rem}.md_right_q32{right:2rem}.md_bottom_q32{bottom:2rem}.md_left_q32{left:2rem}.md_inset_x_q32{left:2rem;right:2rem}.md_inset_y_q32{bottom:2rem;top:2rem}.md_border_q32{border-width:2rem}.md_border_t_q32{border-top-width:2rem}.md_border_r_q32{border-right-width:2rem}.md_border_b_q32{border-bottom-width:2rem}.md_border_l_q32,.md_border_x_q32{border-left-width:2rem}.md_border_x_q32{border-right-width:2rem}.md_border_y_q32{border-bottom-width:2rem;border-top-width:2rem}.md_rounded_q32{border-radius:2rem}.md_rounded_t_q32{border-top-left-radius:2rem;border-top-right-radius:2rem}.md_rounded_r_q32{border-bottom-right-radius:2rem;border-top-right-radius:2rem}.md_rounded_b_q32{border-bottom-left-radius:2rem;border-bottom-right-radius:2rem}.md_rounded_l_q32{border-bottom-left-radius:2rem}.md_rounded_l_q32,.md_rounded_tl_q32{border-top-left-radius:2rem}.md_rounded_tr_q32{border-top-right-radius:2rem}.md_rounded_br_q32{border-bottom-right-radius:2rem}.md_rounded_bl_q32{border-bottom-left-radius:2rem}.md_p_q40{padding:2.5rem}.md_pt_q40{padding-top:2.5rem}.md_pr_q40{padding-right:2.5rem}.md_pb_q40{padding-bottom:2.5rem}.md_pl_q40,.md_px_q40{padding-left:2.5rem}.md_px_q40{padding-right:2.5rem}.md_py_q40{padding-bottom:2.5rem;padding-top:2.5rem}.md_m_q40{margin:2.5rem}.md_mt_q40{margin-top:2.5rem}.md_mr_q40{margin-right:2.5rem}.md_mb_q40{margin-bottom:2.5rem}.md_ml_q40,.md_mx_q40{margin-left:2.5rem}.md_mx_q40{margin-right:2.5rem}.md_my_q40{margin-bottom:2.5rem;margin-top:2.5rem}.md_gap_q40{gap:2.5rem}.md_gap_col_q40{-moz-column-gap:2.5rem;column-gap:2.5rem}.md_gap_row_q40{row-gap:2.5rem}.md_w_q40{width:2.5rem}.md_min_w_q40{min-width:2.5rem}.md_max_w_q40{max-width:2.5rem}.md_h_q40{height:2.5rem}.md_min_h_q40{min-height:2.5rem}.md_max_h_q40{max-height:2.5rem}.md_inset_q40{bottom:2.5rem;left:2.5rem;right:2.5rem;top:2.5rem}.md_top_q40{top:2.5rem}.md_right_q40{right:2.5rem}.md_bottom_q40{bottom:2.5rem}.md_left_q40{left:2.5rem}.md_inset_x_q40{left:2.5rem;right:2.5rem}.md_inset_y_q40{bottom:2.5rem;top:2.5rem}.md_border_q40{border-width:2.5rem}.md_border_t_q40{border-top-width:2.5rem}.md_border_r_q40{border-right-width:2.5rem}.md_border_b_q40{border-bottom-width:2.5rem}.md_border_l_q40,.md_border_x_q40{border-left-width:2.5rem}.md_border_x_q40{border-right-width:2.5rem}.md_border_y_q40{border-bottom-width:2.5rem;border-top-width:2.5rem}.md_rounded_q40{border-radius:2.5rem}.md_rounded_t_q40{border-top-left-radius:2.5rem;border-top-right-radius:2.5rem}.md_rounded_r_q40{border-bottom-right-radius:2.5rem;border-top-right-radius:2.5rem}.md_rounded_b_q40{border-bottom-left-radius:2.5rem;border-bottom-right-radius:2.5rem}.md_rounded_l_q40{border-bottom-left-radius:2.5rem}.md_rounded_l_q40,.md_rounded_tl_q40{border-top-left-radius:2.5rem}.md_rounded_tr_q40{border-top-right-radius:2.5rem}.md_rounded_br_q40{border-bottom-right-radius:2.5rem}.md_rounded_bl_q40{border-bottom-left-radius:2.5rem}.md_p_q48{padding:3rem}.md_pt_q48{padding-top:3rem}.md_pr_q48{padding-right:3rem}.md_pb_q48{padding-bottom:3rem}.md_pl_q48,.md_px_q48{padding-left:3rem}.md_px_q48{padding-right:3rem}.md_py_q48{padding-bottom:3rem;padding-top:3rem}.md_m_q48{margin:3rem}.md_mt_q48{margin-top:3rem}.md_mr_q48{margin-right:3rem}.md_mb_q48{margin-bottom:3rem}.md_ml_q48,.md_mx_q48{margin-left:3rem}.md_mx_q48{margin-right:3rem}.md_my_q48{margin-bottom:3rem;margin-top:3rem}.md_gap_q48{gap:3rem}.md_gap_col_q48{-moz-column-gap:3rem;column-gap:3rem}.md_gap_row_q48{row-gap:3rem}.md_w_q48{width:3rem}.md_min_w_q48{min-width:3rem}.md_max_w_q48{max-width:3rem}.md_h_q48{height:3rem}.md_min_h_q48{min-height:3rem}.md_max_h_q48{max-height:3rem}.md_inset_q48{bottom:3rem;left:3rem;right:3rem;top:3rem}.md_top_q48{top:3rem}.md_right_q48{right:3rem}.md_bottom_q48{bottom:3rem}.md_left_q48{left:3rem}.md_inset_x_q48{left:3rem;right:3rem}.md_inset_y_q48{bottom:3rem;top:3rem}.md_border_q48{border-width:3rem}.md_border_t_q48{border-top-width:3rem}.md_border_r_q48{border-right-width:3rem}.md_border_b_q48{border-bottom-width:3rem}.md_border_l_q48,.md_border_x_q48{border-left-width:3rem}.md_border_x_q48{border-right-width:3rem}.md_border_y_q48{border-bottom-width:3rem;border-top-width:3rem}.md_rounded_q48{border-radius:3rem}.md_rounded_t_q48{border-top-left-radius:3rem;border-top-right-radius:3rem}.md_rounded_r_q48{border-bottom-right-radius:3rem;border-top-right-radius:3rem}.md_rounded_b_q48{border-bottom-left-radius:3rem;border-bottom-right-radius:3rem}.md_rounded_l_q48{border-bottom-left-radius:3rem}.md_rounded_l_q48,.md_rounded_tl_q48{border-top-left-radius:3rem}.md_rounded_tr_q48{border-top-right-radius:3rem}.md_rounded_br_q48{border-bottom-right-radius:3rem}.md_rounded_bl_q48{border-bottom-left-radius:3rem}.md_p_q56{padding:3.5rem}.md_pt_q56{padding-top:3.5rem}.md_pr_q56{padding-right:3.5rem}.md_pb_q56{padding-bottom:3.5rem}.md_pl_q56,.md_px_q56{padding-left:3.5rem}.md_px_q56{padding-right:3.5rem}.md_py_q56{padding-bottom:3.5rem;padding-top:3.5rem}.md_m_q56{margin:3.5rem}.md_mt_q56{margin-top:3.5rem}.md_mr_q56{margin-right:3.5rem}.md_mb_q56{margin-bottom:3.5rem}.md_ml_q56,.md_mx_q56{margin-left:3.5rem}.md_mx_q56{margin-right:3.5rem}.md_my_q56{margin-bottom:3.5rem;margin-top:3.5rem}.md_gap_q56{gap:3.5rem}.md_gap_col_q56{-moz-column-gap:3.5rem;column-gap:3.5rem}.md_gap_row_q56{row-gap:3.5rem}.md_w_q56{width:3.5rem}.md_min_w_q56{min-width:3.5rem}.md_max_w_q56{max-width:3.5rem}.md_h_q56{height:3.5rem}.md_min_h_q56{min-height:3.5rem}.md_max_h_q56{max-height:3.5rem}.md_inset_q56{bottom:3.5rem;left:3.5rem;right:3.5rem;top:3.5rem}.md_top_q56{top:3.5rem}.md_right_q56{right:3.5rem}.md_bottom_q56{bottom:3.5rem}.md_left_q56{left:3.5rem}.md_inset_x_q56{left:3.5rem;right:3.5rem}.md_inset_y_q56{bottom:3.5rem;top:3.5rem}.md_border_q56{border-width:3.5rem}.md_border_t_q56{border-top-width:3.5rem}.md_border_r_q56{border-right-width:3.5rem}.md_border_b_q56{border-bottom-width:3.5rem}.md_border_l_q56,.md_border_x_q56{border-left-width:3.5rem}.md_border_x_q56{border-right-width:3.5rem}.md_border_y_q56{border-bottom-width:3.5rem;border-top-width:3.5rem}.md_rounded_q56{border-radius:3.5rem}.md_rounded_t_q56{border-top-left-radius:3.5rem;border-top-right-radius:3.5rem}.md_rounded_r_q56{border-bottom-right-radius:3.5rem;border-top-right-radius:3.5rem}.md_rounded_b_q56{border-bottom-left-radius:3.5rem;border-bottom-right-radius:3.5rem}.md_rounded_l_q56{border-bottom-left-radius:3.5rem}.md_rounded_l_q56,.md_rounded_tl_q56{border-top-left-radius:3.5rem}.md_rounded_tr_q56{border-top-right-radius:3.5rem}.md_rounded_br_q56{border-bottom-right-radius:3.5rem}.md_rounded_bl_q56{border-bottom-left-radius:3.5rem}.md_p_q64{padding:4rem}.md_pt_q64{padding-top:4rem}.md_pr_q64{padding-right:4rem}.md_pb_q64{padding-bottom:4rem}.md_pl_q64,.md_px_q64{padding-left:4rem}.md_px_q64{padding-right:4rem}.md_py_q64{padding-bottom:4rem;padding-top:4rem}.md_m_q64{margin:4rem}.md_mt_q64{margin-top:4rem}.md_mr_q64{margin-right:4rem}.md_mb_q64{margin-bottom:4rem}.md_ml_q64,.md_mx_q64{margin-left:4rem}.md_mx_q64{margin-right:4rem}.md_my_q64{margin-bottom:4rem;margin-top:4rem}.md_gap_q64{gap:4rem}.md_gap_col_q64{-moz-column-gap:4rem;column-gap:4rem}.md_gap_row_q64{row-gap:4rem}.md_w_q64{width:4rem}.md_min_w_q64{min-width:4rem}.md_max_w_q64{max-width:4rem}.md_h_q64{height:4rem}.md_min_h_q64{min-height:4rem}.md_max_h_q64{max-height:4rem}.md_inset_q64{bottom:4rem;left:4rem;right:4rem;top:4rem}.md_top_q64{top:4rem}.md_right_q64{right:4rem}.md_bottom_q64{bottom:4rem}.md_left_q64{left:4rem}.md_inset_x_q64{left:4rem;right:4rem}.md_inset_y_q64{bottom:4rem;top:4rem}.md_border_q64{border-width:4rem}.md_border_t_q64{border-top-width:4rem}.md_border_r_q64{border-right-width:4rem}.md_border_b_q64{border-bottom-width:4rem}.md_border_l_q64,.md_border_x_q64{border-left-width:4rem}.md_border_x_q64{border-right-width:4rem}.md_border_y_q64{border-bottom-width:4rem;border-top-width:4rem}.md_rounded_q64{border-radius:4rem}.md_rounded_t_q64{border-top-left-radius:4rem;border-top-right-radius:4rem}.md_rounded_r_q64{border-bottom-right-radius:4rem;border-top-right-radius:4rem}.md_rounded_b_q64{border-bottom-left-radius:4rem;border-bottom-right-radius:4rem}.md_rounded_l_q64{border-bottom-left-radius:4rem}.md_rounded_l_q64,.md_rounded_tl_q64{border-top-left-radius:4rem}.md_rounded_tr_q64{border-top-right-radius:4rem}.md_rounded_br_q64{border-bottom-right-radius:4rem}.md_rounded_bl_q64{border-bottom-left-radius:4rem}.md_p_q72{padding:4.5rem}.md_pt_q72{padding-top:4.5rem}.md_pr_q72{padding-right:4.5rem}.md_pb_q72{padding-bottom:4.5rem}.md_pl_q72,.md_px_q72{padding-left:4.5rem}.md_px_q72{padding-right:4.5rem}.md_py_q72{padding-bottom:4.5rem;padding-top:4.5rem}.md_m_q72{margin:4.5rem}.md_mt_q72{margin-top:4.5rem}.md_mr_q72{margin-right:4.5rem}.md_mb_q72{margin-bottom:4.5rem}.md_ml_q72,.md_mx_q72{margin-left:4.5rem}.md_mx_q72{margin-right:4.5rem}.md_my_q72{margin-bottom:4.5rem;margin-top:4.5rem}.md_gap_q72{gap:4.5rem}.md_gap_col_q72{-moz-column-gap:4.5rem;column-gap:4.5rem}.md_gap_row_q72{row-gap:4.5rem}.md_w_q72{width:4.5rem}.md_min_w_q72{min-width:4.5rem}.md_max_w_q72{max-width:4.5rem}.md_h_q72{height:4.5rem}.md_min_h_q72{min-height:4.5rem}.md_max_h_q72{max-height:4.5rem}.md_inset_q72{bottom:4.5rem;left:4.5rem;right:4.5rem;top:4.5rem}.md_top_q72{top:4.5rem}.md_right_q72{right:4.5rem}.md_bottom_q72{bottom:4.5rem}.md_left_q72{left:4.5rem}.md_inset_x_q72{left:4.5rem;right:4.5rem}.md_inset_y_q72{bottom:4.5rem;top:4.5rem}.md_border_q72{border-width:4.5rem}.md_border_t_q72{border-top-width:4.5rem}.md_border_r_q72{border-right-width:4.5rem}.md_border_b_q72{border-bottom-width:4.5rem}.md_border_l_q72,.md_border_x_q72{border-left-width:4.5rem}.md_border_x_q72{border-right-width:4.5rem}.md_border_y_q72{border-bottom-width:4.5rem;border-top-width:4.5rem}.md_rounded_q72{border-radius:4.5rem}.md_rounded_t_q72{border-top-left-radius:4.5rem;border-top-right-radius:4.5rem}.md_rounded_r_q72{border-bottom-right-radius:4.5rem;border-top-right-radius:4.5rem}.md_rounded_b_q72{border-bottom-left-radius:4.5rem;border-bottom-right-radius:4.5rem}.md_rounded_l_q72{border-bottom-left-radius:4.5rem}.md_rounded_l_q72,.md_rounded_tl_q72{border-top-left-radius:4.5rem}.md_rounded_tr_q72{border-top-right-radius:4.5rem}.md_rounded_br_q72{border-bottom-right-radius:4.5rem}.md_rounded_bl_q72{border-bottom-left-radius:4.5rem}.md_p_q80{padding:5rem}.md_pt_q80{padding-top:5rem}.md_pr_q80{padding-right:5rem}.md_pb_q80{padding-bottom:5rem}.md_pl_q80,.md_px_q80{padding-left:5rem}.md_px_q80{padding-right:5rem}.md_py_q80{padding-bottom:5rem;padding-top:5rem}.md_m_q80{margin:5rem}.md_mt_q80{margin-top:5rem}.md_mr_q80{margin-right:5rem}.md_mb_q80{margin-bottom:5rem}.md_ml_q80,.md_mx_q80{margin-left:5rem}.md_mx_q80{margin-right:5rem}.md_my_q80{margin-bottom:5rem;margin-top:5rem}.md_gap_q80{gap:5rem}.md_gap_col_q80{-moz-column-gap:5rem;column-gap:5rem}.md_gap_row_q80{row-gap:5rem}.md_w_q80{width:5rem}.md_min_w_q80{min-width:5rem}.md_max_w_q80{max-width:5rem}.md_h_q80{height:5rem}.md_min_h_q80{min-height:5rem}.md_max_h_q80{max-height:5rem}.md_inset_q80{bottom:5rem;left:5rem;right:5rem;top:5rem}.md_top_q80{top:5rem}.md_right_q80{right:5rem}.md_bottom_q80{bottom:5rem}.md_left_q80{left:5rem}.md_inset_x_q80{left:5rem;right:5rem}.md_inset_y_q80{bottom:5rem;top:5rem}.md_border_q80{border-width:5rem}.md_border_t_q80{border-top-width:5rem}.md_border_r_q80{border-right-width:5rem}.md_border_b_q80{border-bottom-width:5rem}.md_border_l_q80,.md_border_x_q80{border-left-width:5rem}.md_border_x_q80{border-right-width:5rem}.md_border_y_q80{border-bottom-width:5rem;border-top-width:5rem}.md_rounded_q80{border-radius:5rem}.md_rounded_t_q80{border-top-left-radius:5rem;border-top-right-radius:5rem}.md_rounded_r_q80{border-bottom-right-radius:5rem;border-top-right-radius:5rem}.md_rounded_b_q80{border-bottom-left-radius:5rem;border-bottom-right-radius:5rem}.md_rounded_l_q80{border-bottom-left-radius:5rem}.md_rounded_l_q80,.md_rounded_tl_q80{border-top-left-radius:5rem}.md_rounded_tr_q80{border-top-right-radius:5rem}.md_rounded_br_q80{border-bottom-right-radius:5rem}.md_rounded_bl_q80{border-bottom-left-radius:5rem}.md_p_q96{padding:6rem}.md_pt_q96{padding-top:6rem}.md_pr_q96{padding-right:6rem}.md_pb_q96{padding-bottom:6rem}.md_pl_q96,.md_px_q96{padding-left:6rem}.md_px_q96{padding-right:6rem}.md_py_q96{padding-bottom:6rem;padding-top:6rem}.md_m_q96{margin:6rem}.md_mt_q96{margin-top:6rem}.md_mr_q96{margin-right:6rem}.md_mb_q96{margin-bottom:6rem}.md_ml_q96,.md_mx_q96{margin-left:6rem}.md_mx_q96{margin-right:6rem}.md_my_q96{margin-bottom:6rem;margin-top:6rem}.md_gap_q96{gap:6rem}.md_gap_col_q96{-moz-column-gap:6rem;column-gap:6rem}.md_gap_row_q96{row-gap:6rem}.md_w_q96{width:6rem}.md_min_w_q96{min-width:6rem}.md_max_w_q96{max-width:6rem}.md_h_q96{height:6rem}.md_min_h_q96{min-height:6rem}.md_max_h_q96{max-height:6rem}.md_inset_q96{bottom:6rem;left:6rem;right:6rem;top:6rem}.md_top_q96{top:6rem}.md_right_q96{right:6rem}.md_bottom_q96{bottom:6rem}.md_left_q96{left:6rem}.md_inset_x_q96{left:6rem;right:6rem}.md_inset_y_q96{bottom:6rem;top:6rem}.md_border_q96{border-width:6rem}.md_border_t_q96{border-top-width:6rem}.md_border_r_q96{border-right-width:6rem}.md_border_b_q96{border-bottom-width:6rem}.md_border_l_q96,.md_border_x_q96{border-left-width:6rem}.md_border_x_q96{border-right-width:6rem}.md_border_y_q96{border-bottom-width:6rem;border-top-width:6rem}.md_rounded_q96{border-radius:6rem}.md_rounded_t_q96{border-top-left-radius:6rem;border-top-right-radius:6rem}.md_rounded_r_q96{border-bottom-right-radius:6rem;border-top-right-radius:6rem}.md_rounded_b_q96{border-bottom-left-radius:6rem;border-bottom-right-radius:6rem}.md_rounded_l_q96{border-bottom-left-radius:6rem}.md_rounded_l_q96,.md_rounded_tl_q96{border-top-left-radius:6rem}.md_rounded_tr_q96{border-top-right-radius:6rem}.md_rounded_br_q96{border-bottom-right-radius:6rem}.md_rounded_bl_q96{border-bottom-left-radius:6rem}.md_p_q112{padding:7rem}.md_pt_q112{padding-top:7rem}.md_pr_q112{padding-right:7rem}.md_pb_q112{padding-bottom:7rem}.md_pl_q112,.md_px_q112{padding-left:7rem}.md_px_q112{padding-right:7rem}.md_py_q112{padding-bottom:7rem;padding-top:7rem}.md_m_q112{margin:7rem}.md_mt_q112{margin-top:7rem}.md_mr_q112{margin-right:7rem}.md_mb_q112{margin-bottom:7rem}.md_ml_q112,.md_mx_q112{margin-left:7rem}.md_mx_q112{margin-right:7rem}.md_my_q112{margin-bottom:7rem;margin-top:7rem}.md_gap_q112{gap:7rem}.md_gap_col_q112{-moz-column-gap:7rem;column-gap:7rem}.md_gap_row_q112{row-gap:7rem}.md_w_q112{width:7rem}.md_min_w_q112{min-width:7rem}.md_max_w_q112{max-width:7rem}.md_h_q112{height:7rem}.md_min_h_q112{min-height:7rem}.md_max_h_q112{max-height:7rem}.md_inset_q112{bottom:7rem;left:7rem;right:7rem;top:7rem}.md_top_q112{top:7rem}.md_right_q112{right:7rem}.md_bottom_q112{bottom:7rem}.md_left_q112{left:7rem}.md_inset_x_q112{left:7rem;right:7rem}.md_inset_y_q112{bottom:7rem;top:7rem}.md_border_q112{border-width:7rem}.md_border_t_q112{border-top-width:7rem}.md_border_r_q112{border-right-width:7rem}.md_border_b_q112{border-bottom-width:7rem}.md_border_l_q112,.md_border_x_q112{border-left-width:7rem}.md_border_x_q112{border-right-width:7rem}.md_border_y_q112{border-bottom-width:7rem;border-top-width:7rem}.md_rounded_q112{border-radius:7rem}.md_rounded_t_q112{border-top-left-radius:7rem;border-top-right-radius:7rem}.md_rounded_r_q112{border-bottom-right-radius:7rem;border-top-right-radius:7rem}.md_rounded_b_q112{border-bottom-left-radius:7rem;border-bottom-right-radius:7rem}.md_rounded_l_q112{border-bottom-left-radius:7rem}.md_rounded_l_q112,.md_rounded_tl_q112{border-top-left-radius:7rem}.md_rounded_tr_q112{border-top-right-radius:7rem}.md_rounded_br_q112{border-bottom-right-radius:7rem}.md_rounded_bl_q112{border-bottom-left-radius:7rem}.md_p_q128{padding:8rem}.md_pt_q128{padding-top:8rem}.md_pr_q128{padding-right:8rem}.md_pb_q128{padding-bottom:8rem}.md_pl_q128,.md_px_q128{padding-left:8rem}.md_px_q128{padding-right:8rem}.md_py_q128{padding-bottom:8rem;padding-top:8rem}.md_m_q128{margin:8rem}.md_mt_q128{margin-top:8rem}.md_mr_q128{margin-right:8rem}.md_mb_q128{margin-bottom:8rem}.md_ml_q128,.md_mx_q128{margin-left:8rem}.md_mx_q128{margin-right:8rem}.md_my_q128{margin-bottom:8rem;margin-top:8rem}.md_gap_q128{gap:8rem}.md_gap_col_q128{-moz-column-gap:8rem;column-gap:8rem}.md_gap_row_q128{row-gap:8rem}.md_w_q128{width:8rem}.md_min_w_q128{min-width:8rem}.md_max_w_q128{max-width:8rem}.md_h_q128{height:8rem}.md_min_h_q128{min-height:8rem}.md_max_h_q128{max-height:8rem}.md_inset_q128{bottom:8rem;left:8rem;right:8rem;top:8rem}.md_top_q128{top:8rem}.md_right_q128{right:8rem}.md_bottom_q128{bottom:8rem}.md_left_q128{left:8rem}.md_inset_x_q128{left:8rem;right:8rem}.md_inset_y_q128{bottom:8rem;top:8rem}.md_border_q128{border-width:8rem}.md_border_t_q128{border-top-width:8rem}.md_border_r_q128{border-right-width:8rem}.md_border_b_q128{border-bottom-width:8rem}.md_border_l_q128,.md_border_x_q128{border-left-width:8rem}.md_border_x_q128{border-right-width:8rem}.md_border_y_q128{border-bottom-width:8rem;border-top-width:8rem}.md_rounded_q128{border-radius:8rem}.md_rounded_t_q128{border-top-left-radius:8rem;border-top-right-radius:8rem}.md_rounded_r_q128{border-bottom-right-radius:8rem;border-top-right-radius:8rem}.md_rounded_b_q128{border-bottom-left-radius:8rem;border-bottom-right-radius:8rem}.md_rounded_l_q128{border-bottom-left-radius:8rem}.md_rounded_l_q128,.md_rounded_tl_q128{border-top-left-radius:8rem}.md_rounded_tr_q128{border-top-right-radius:8rem}.md_rounded_br_q128{border-bottom-right-radius:8rem}.md_rounded_bl_q128{border-bottom-left-radius:8rem}.md_p_q144{padding:9rem}.md_pt_q144{padding-top:9rem}.md_pr_q144{padding-right:9rem}.md_pb_q144{padding-bottom:9rem}.md_pl_q144,.md_px_q144{padding-left:9rem}.md_px_q144{padding-right:9rem}.md_py_q144{padding-bottom:9rem;padding-top:9rem}.md_m_q144{margin:9rem}.md_mt_q144{margin-top:9rem}.md_mr_q144{margin-right:9rem}.md_mb_q144{margin-bottom:9rem}.md_ml_q144,.md_mx_q144{margin-left:9rem}.md_mx_q144{margin-right:9rem}.md_my_q144{margin-bottom:9rem;margin-top:9rem}.md_gap_q144{gap:9rem}.md_gap_col_q144{-moz-column-gap:9rem;column-gap:9rem}.md_gap_row_q144{row-gap:9rem}.md_w_q144{width:9rem}.md_min_w_q144{min-width:9rem}.md_max_w_q144{max-width:9rem}.md_h_q144{height:9rem}.md_min_h_q144{min-height:9rem}.md_max_h_q144{max-height:9rem}.md_inset_q144{bottom:9rem;left:9rem;right:9rem;top:9rem}.md_top_q144{top:9rem}.md_right_q144{right:9rem}.md_bottom_q144{bottom:9rem}.md_left_q144{left:9rem}.md_inset_x_q144{left:9rem;right:9rem}.md_inset_y_q144{bottom:9rem;top:9rem}.md_border_q144{border-width:9rem}.md_border_t_q144{border-top-width:9rem}.md_border_r_q144{border-right-width:9rem}.md_border_b_q144{border-bottom-width:9rem}.md_border_l_q144,.md_border_x_q144{border-left-width:9rem}.md_border_x_q144{border-right-width:9rem}.md_border_y_q144{border-bottom-width:9rem;border-top-width:9rem}.md_rounded_q144{border-radius:9rem}.md_rounded_t_q144{border-top-left-radius:9rem;border-top-right-radius:9rem}.md_rounded_r_q144{border-bottom-right-radius:9rem;border-top-right-radius:9rem}.md_rounded_b_q144{border-bottom-left-radius:9rem;border-bottom-right-radius:9rem}.md_rounded_l_q144{border-bottom-left-radius:9rem}.md_rounded_l_q144,.md_rounded_tl_q144{border-top-left-radius:9rem}.md_rounded_tr_q144{border-top-right-radius:9rem}.md_rounded_br_q144{border-bottom-right-radius:9rem}.md_rounded_bl_q144{border-bottom-left-radius:9rem}.md_p_q160{padding:10rem}.md_pt_q160{padding-top:10rem}.md_pr_q160{padding-right:10rem}.md_pb_q160{padding-bottom:10rem}.md_pl_q160,.md_px_q160{padding-left:10rem}.md_px_q160{padding-right:10rem}.md_py_q160{padding-bottom:10rem;padding-top:10rem}.md_m_q160{margin:10rem}.md_mt_q160{margin-top:10rem}.md_mr_q160{margin-right:10rem}.md_mb_q160{margin-bottom:10rem}.md_ml_q160,.md_mx_q160{margin-left:10rem}.md_mx_q160{margin-right:10rem}.md_my_q160{margin-bottom:10rem;margin-top:10rem}.md_gap_q160{gap:10rem}.md_gap_col_q160{-moz-column-gap:10rem;column-gap:10rem}.md_gap_row_q160{row-gap:10rem}.md_w_q160{width:10rem}.md_min_w_q160{min-width:10rem}.md_max_w_q160{max-width:10rem}.md_h_q160{height:10rem}.md_min_h_q160{min-height:10rem}.md_max_h_q160{max-height:10rem}.md_inset_q160{bottom:10rem;left:10rem;right:10rem;top:10rem}.md_top_q160{top:10rem}.md_right_q160{right:10rem}.md_bottom_q160{bottom:10rem}.md_left_q160{left:10rem}.md_inset_x_q160{left:10rem;right:10rem}.md_inset_y_q160{bottom:10rem;top:10rem}.md_border_q160{border-width:10rem}.md_border_t_q160{border-top-width:10rem}.md_border_r_q160{border-right-width:10rem}.md_border_b_q160{border-bottom-width:10rem}.md_border_l_q160,.md_border_x_q160{border-left-width:10rem}.md_border_x_q160{border-right-width:10rem}.md_border_y_q160{border-bottom-width:10rem;border-top-width:10rem}.md_rounded_q160{border-radius:10rem}.md_rounded_t_q160{border-top-left-radius:10rem;border-top-right-radius:10rem}.md_rounded_r_q160{border-bottom-right-radius:10rem;border-top-right-radius:10rem}.md_rounded_b_q160{border-bottom-left-radius:10rem;border-bottom-right-radius:10rem}.md_rounded_l_q160{border-bottom-left-radius:10rem}.md_rounded_l_q160,.md_rounded_tl_q160{border-top-left-radius:10rem}.md_rounded_tr_q160{border-top-right-radius:10rem}.md_rounded_br_q160{border-bottom-right-radius:10rem}.md_rounded_bl_q160{border-bottom-left-radius:10rem}.md_p_q192{padding:12rem}.md_pt_q192{padding-top:12rem}.md_pr_q192{padding-right:12rem}.md_pb_q192{padding-bottom:12rem}.md_pl_q192,.md_px_q192{padding-left:12rem}.md_px_q192{padding-right:12rem}.md_py_q192{padding-bottom:12rem;padding-top:12rem}.md_m_q192{margin:12rem}.md_mt_q192{margin-top:12rem}.md_mr_q192{margin-right:12rem}.md_mb_q192{margin-bottom:12rem}.md_ml_q192,.md_mx_q192{margin-left:12rem}.md_mx_q192{margin-right:12rem}.md_my_q192{margin-bottom:12rem;margin-top:12rem}.md_gap_q192{gap:12rem}.md_gap_col_q192{-moz-column-gap:12rem;column-gap:12rem}.md_gap_row_q192{row-gap:12rem}.md_w_q192{width:12rem}.md_min_w_q192{min-width:12rem}.md_max_w_q192{max-width:12rem}.md_h_q192{height:12rem}.md_min_h_q192{min-height:12rem}.md_max_h_q192{max-height:12rem}.md_inset_q192{bottom:12rem;left:12rem;right:12rem;top:12rem}.md_top_q192{top:12rem}.md_right_q192{right:12rem}.md_bottom_q192{bottom:12rem}.md_left_q192{left:12rem}.md_inset_x_q192{left:12rem;right:12rem}.md_inset_y_q192{bottom:12rem;top:12rem}.md_border_q192{border-width:12rem}.md_border_t_q192{border-top-width:12rem}.md_border_r_q192{border-right-width:12rem}.md_border_b_q192{border-bottom-width:12rem}.md_border_l_q192,.md_border_x_q192{border-left-width:12rem}.md_border_x_q192{border-right-width:12rem}.md_border_y_q192{border-bottom-width:12rem;border-top-width:12rem}.md_rounded_q192{border-radius:12rem}.md_rounded_t_q192{border-top-left-radius:12rem;border-top-right-radius:12rem}.md_rounded_r_q192{border-bottom-right-radius:12rem;border-top-right-radius:12rem}.md_rounded_b_q192{border-bottom-left-radius:12rem;border-bottom-right-radius:12rem}.md_rounded_l_q192{border-bottom-left-radius:12rem}.md_rounded_l_q192,.md_rounded_tl_q192{border-top-left-radius:12rem}.md_rounded_tr_q192{border-top-right-radius:12rem}.md_rounded_br_q192{border-bottom-right-radius:12rem}.md_rounded_bl_q192{border-bottom-left-radius:12rem}.md_p_q224{padding:14rem}.md_pt_q224{padding-top:14rem}.md_pr_q224{padding-right:14rem}.md_pb_q224{padding-bottom:14rem}.md_pl_q224,.md_px_q224{padding-left:14rem}.md_px_q224{padding-right:14rem}.md_py_q224{padding-bottom:14rem;padding-top:14rem}.md_m_q224{margin:14rem}.md_mt_q224{margin-top:14rem}.md_mr_q224{margin-right:14rem}.md_mb_q224{margin-bottom:14rem}.md_ml_q224,.md_mx_q224{margin-left:14rem}.md_mx_q224{margin-right:14rem}.md_my_q224{margin-bottom:14rem;margin-top:14rem}.md_gap_q224{gap:14rem}.md_gap_col_q224{-moz-column-gap:14rem;column-gap:14rem}.md_gap_row_q224{row-gap:14rem}.md_w_q224{width:14rem}.md_min_w_q224{min-width:14rem}.md_max_w_q224{max-width:14rem}.md_h_q224{height:14rem}.md_min_h_q224{min-height:14rem}.md_max_h_q224{max-height:14rem}.md_inset_q224{bottom:14rem;left:14rem;right:14rem;top:14rem}.md_top_q224{top:14rem}.md_right_q224{right:14rem}.md_bottom_q224{bottom:14rem}.md_left_q224{left:14rem}.md_inset_x_q224{left:14rem;right:14rem}.md_inset_y_q224{bottom:14rem;top:14rem}.md_border_q224{border-width:14rem}.md_border_t_q224{border-top-width:14rem}.md_border_r_q224{border-right-width:14rem}.md_border_b_q224{border-bottom-width:14rem}.md_border_l_q224,.md_border_x_q224{border-left-width:14rem}.md_border_x_q224{border-right-width:14rem}.md_border_y_q224{border-bottom-width:14rem;border-top-width:14rem}.md_rounded_q224{border-radius:14rem}.md_rounded_t_q224{border-top-left-radius:14rem;border-top-right-radius:14rem}.md_rounded_r_q224{border-bottom-right-radius:14rem;border-top-right-radius:14rem}.md_rounded_b_q224{border-bottom-left-radius:14rem;border-bottom-right-radius:14rem}.md_rounded_l_q224{border-bottom-left-radius:14rem}.md_rounded_l_q224,.md_rounded_tl_q224{border-top-left-radius:14rem}.md_rounded_tr_q224{border-top-right-radius:14rem}.md_rounded_br_q224{border-bottom-right-radius:14rem}.md_rounded_bl_q224{border-bottom-left-radius:14rem}.md_p_q256{padding:16rem}.md_pt_q256{padding-top:16rem}.md_pr_q256{padding-right:16rem}.md_pb_q256{padding-bottom:16rem}.md_pl_q256,.md_px_q256{padding-left:16rem}.md_px_q256{padding-right:16rem}.md_py_q256{padding-bottom:16rem;padding-top:16rem}.md_m_q256{margin:16rem}.md_mt_q256{margin-top:16rem}.md_mr_q256{margin-right:16rem}.md_mb_q256{margin-bottom:16rem}.md_ml_q256,.md_mx_q256{margin-left:16rem}.md_mx_q256{margin-right:16rem}.md_my_q256{margin-bottom:16rem;margin-top:16rem}.md_gap_q256{gap:16rem}.md_gap_col_q256{-moz-column-gap:16rem;column-gap:16rem}.md_gap_row_q256{row-gap:16rem}.md_w_q256{width:16rem}.md_min_w_q256{min-width:16rem}.md_max_w_q256{max-width:16rem}.md_h_q256{height:16rem}.md_min_h_q256{min-height:16rem}.md_max_h_q256{max-height:16rem}.md_inset_q256{bottom:16rem;left:16rem;right:16rem;top:16rem}.md_top_q256{top:16rem}.md_right_q256{right:16rem}.md_bottom_q256{bottom:16rem}.md_left_q256{left:16rem}.md_inset_x_q256{left:16rem;right:16rem}.md_inset_y_q256{bottom:16rem;top:16rem}.md_border_q256{border-width:16rem}.md_border_t_q256{border-top-width:16rem}.md_border_r_q256{border-right-width:16rem}.md_border_b_q256{border-bottom-width:16rem}.md_border_l_q256,.md_border_x_q256{border-left-width:16rem}.md_border_x_q256{border-right-width:16rem}.md_border_y_q256{border-bottom-width:16rem;border-top-width:16rem}.md_rounded_q256{border-radius:16rem}.md_rounded_t_q256{border-top-left-radius:16rem;border-top-right-radius:16rem}.md_rounded_r_q256{border-bottom-right-radius:16rem;border-top-right-radius:16rem}.md_rounded_b_q256{border-bottom-left-radius:16rem;border-bottom-right-radius:16rem}.md_rounded_l_q256{border-bottom-left-radius:16rem}.md_rounded_l_q256,.md_rounded_tl_q256{border-top-left-radius:16rem}.md_rounded_tr_q256{border-top-right-radius:16rem}.md_rounded_br_q256{border-bottom-right-radius:16rem}.md_rounded_bl_q256{border-bottom-left-radius:16rem}}@media(min-width:2160px){.lg_p_q0{padding:0}.lg_pt_q0{padding-top:0}.lg_pr_q0{padding-right:0}.lg_pb_q0{padding-bottom:0}.lg_pl_q0,.lg_px_q0{padding-left:0}.lg_px_q0{padding-right:0}.lg_py_q0{padding-bottom:0;padding-top:0}.lg_m_q0{margin:0}.lg_mt_q0{margin-top:0}.lg_mr_q0{margin-right:0}.lg_mb_q0{margin-bottom:0}.lg_ml_q0,.lg_mx_q0{margin-left:0}.lg_mx_q0{margin-right:0}.lg_my_q0{margin-bottom:0;margin-top:0}.lg_gap_q0{gap:0}.lg_gap_col_q0{-moz-column-gap:0;column-gap:0}.lg_gap_row_q0{row-gap:0}.lg_w_q0{width:0}.lg_min_w_q0{min-width:0}.lg_max_w_q0{max-width:0}.lg_h_q0{height:0}.lg_min_h_q0{min-height:0}.lg_max_h_q0{max-height:0}.lg_inset_q0{bottom:0;left:0;right:0;top:0}.lg_top_q0{top:0}.lg_right_q0{right:0}.lg_bottom_q0{bottom:0}.lg_left_q0{left:0}.lg_inset_x_q0{left:0;right:0}.lg_inset_y_q0{bottom:0;top:0}.lg_border_q0{border-width:0}.lg_border_t_q0{border-top-width:0}.lg_border_r_q0{border-right-width:0}.lg_border_b_q0{border-bottom-width:0}.lg_border_l_q0,.lg_border_x_q0{border-left-width:0}.lg_border_x_q0{border-right-width:0}.lg_border_y_q0{border-bottom-width:0;border-top-width:0}.lg_rounded_q0{border-radius:0}.lg_rounded_t_q0{border-top-left-radius:0;border-top-right-radius:0}.lg_rounded_r_q0{border-bottom-right-radius:0;border-top-right-radius:0}.lg_rounded_b_q0{border-bottom-left-radius:0;border-bottom-right-radius:0}.lg_rounded_l_q0{border-bottom-left-radius:0}.lg_rounded_l_q0,.lg_rounded_tl_q0{border-top-left-radius:0}.lg_rounded_tr_q0{border-top-right-radius:0}.lg_rounded_br_q0{border-bottom-right-radius:0}.lg_rounded_bl_q0{border-bottom-left-radius:0}.lg_p_q1{padding:.0625rem}.lg_pt_q1{padding-top:.0625rem}.lg_pr_q1{padding-right:.0625rem}.lg_pb_q1{padding-bottom:.0625rem}.lg_pl_q1,.lg_px_q1{padding-left:.0625rem}.lg_px_q1{padding-right:.0625rem}.lg_py_q1{padding-bottom:.0625rem;padding-top:.0625rem}.lg_m_q1{margin:.0625rem}.lg_mt_q1{margin-top:.0625rem}.lg_mr_q1{margin-right:.0625rem}.lg_mb_q1{margin-bottom:.0625rem}.lg_ml_q1,.lg_mx_q1{margin-left:.0625rem}.lg_mx_q1{margin-right:.0625rem}.lg_my_q1{margin-bottom:.0625rem;margin-top:.0625rem}.lg_gap_q1{gap:.0625rem}.lg_gap_col_q1{-moz-column-gap:.0625rem;column-gap:.0625rem}.lg_gap_row_q1{row-gap:.0625rem}.lg_w_q1{width:.0625rem}.lg_min_w_q1{min-width:.0625rem}.lg_max_w_q1{max-width:.0625rem}.lg_h_q1{height:.0625rem}.lg_min_h_q1{min-height:.0625rem}.lg_max_h_q1{max-height:.0625rem}.lg_inset_q1{bottom:.0625rem;left:.0625rem;right:.0625rem;top:.0625rem}.lg_top_q1{top:.0625rem}.lg_right_q1{right:.0625rem}.lg_bottom_q1{bottom:.0625rem}.lg_left_q1{left:.0625rem}.lg_inset_x_q1{left:.0625rem;right:.0625rem}.lg_inset_y_q1{bottom:.0625rem;top:.0625rem}.lg_border_q1{border-width:.0625rem}.lg_border_t_q1{border-top-width:.0625rem}.lg_border_r_q1{border-right-width:.0625rem}.lg_border_b_q1{border-bottom-width:.0625rem}.lg_border_l_q1,.lg_border_x_q1{border-left-width:.0625rem}.lg_border_x_q1{border-right-width:.0625rem}.lg_border_y_q1{border-bottom-width:.0625rem;border-top-width:.0625rem}.lg_rounded_q1{border-radius:.0625rem}.lg_rounded_t_q1{border-top-left-radius:.0625rem;border-top-right-radius:.0625rem}.lg_rounded_r_q1{border-top-right-radius:.0625rem}.lg_rounded_b_q1,.lg_rounded_r_q1{border-bottom-right-radius:.0625rem}.lg_rounded_b_q1,.lg_rounded_l_q1{border-bottom-left-radius:.0625rem}.lg_rounded_l_q1,.lg_rounded_tl_q1{border-top-left-radius:.0625rem}.lg_rounded_tr_q1{border-top-right-radius:.0625rem}.lg_rounded_br_q1{border-bottom-right-radius:.0625rem}.lg_rounded_bl_q1{border-bottom-left-radius:.0625rem}.lg_p_q2{padding:.125rem}.lg_pt_q2{padding-top:.125rem}.lg_pr_q2{padding-right:.125rem}.lg_pb_q2{padding-bottom:.125rem}.lg_pl_q2,.lg_px_q2{padding-left:.125rem}.lg_px_q2{padding-right:.125rem}.lg_py_q2{padding-bottom:.125rem;padding-top:.125rem}.lg_m_q2{margin:.125rem}.lg_mt_q2{margin-top:.125rem}.lg_mr_q2{margin-right:.125rem}.lg_mb_q2{margin-bottom:.125rem}.lg_ml_q2,.lg_mx_q2{margin-left:.125rem}.lg_mx_q2{margin-right:.125rem}.lg_my_q2{margin-bottom:.125rem;margin-top:.125rem}.lg_gap_q2{gap:.125rem}.lg_gap_col_q2{-moz-column-gap:.125rem;column-gap:.125rem}.lg_gap_row_q2{row-gap:.125rem}.lg_w_q2{width:.125rem}.lg_min_w_q2{min-width:.125rem}.lg_max_w_q2{max-width:.125rem}.lg_h_q2{height:.125rem}.lg_min_h_q2{min-height:.125rem}.lg_max_h_q2{max-height:.125rem}.lg_inset_q2{bottom:.125rem;left:.125rem;right:.125rem;top:.125rem}.lg_top_q2{top:.125rem}.lg_right_q2{right:.125rem}.lg_bottom_q2{bottom:.125rem}.lg_left_q2{left:.125rem}.lg_inset_x_q2{left:.125rem;right:.125rem}.lg_inset_y_q2{bottom:.125rem;top:.125rem}.lg_border_q2{border-width:.125rem}.lg_border_t_q2{border-top-width:.125rem}.lg_border_r_q2{border-right-width:.125rem}.lg_border_b_q2{border-bottom-width:.125rem}.lg_border_l_q2,.lg_border_x_q2{border-left-width:.125rem}.lg_border_x_q2{border-right-width:.125rem}.lg_border_y_q2{border-bottom-width:.125rem;border-top-width:.125rem}.lg_rounded_q2{border-radius:.125rem}.lg_rounded_t_q2{border-top-left-radius:.125rem;border-top-right-radius:.125rem}.lg_rounded_r_q2{border-top-right-radius:.125rem}.lg_rounded_b_q2,.lg_rounded_r_q2{border-bottom-right-radius:.125rem}.lg_rounded_b_q2,.lg_rounded_l_q2{border-bottom-left-radius:.125rem}.lg_rounded_l_q2,.lg_rounded_tl_q2{border-top-left-radius:.125rem}.lg_rounded_tr_q2{border-top-right-radius:.125rem}.lg_rounded_br_q2{border-bottom-right-radius:.125rem}.lg_rounded_bl_q2{border-bottom-left-radius:.125rem}.lg_p_q4{padding:.25rem}.lg_pt_q4{padding-top:.25rem}.lg_pr_q4{padding-right:.25rem}.lg_pb_q4{padding-bottom:.25rem}.lg_pl_q4,.lg_px_q4{padding-left:.25rem}.lg_px_q4{padding-right:.25rem}.lg_py_q4{padding-bottom:.25rem;padding-top:.25rem}.lg_m_q4{margin:.25rem}.lg_mt_q4{margin-top:.25rem}.lg_mr_q4{margin-right:.25rem}.lg_mb_q4{margin-bottom:.25rem}.lg_ml_q4,.lg_mx_q4{margin-left:.25rem}.lg_mx_q4{margin-right:.25rem}.lg_my_q4{margin-bottom:.25rem;margin-top:.25rem}.lg_gap_q4{gap:.25rem}.lg_gap_col_q4{-moz-column-gap:.25rem;column-gap:.25rem}.lg_gap_row_q4{row-gap:.25rem}.lg_w_q4{width:.25rem}.lg_min_w_q4{min-width:.25rem}.lg_max_w_q4{max-width:.25rem}.lg_h_q4{height:.25rem}.lg_min_h_q4{min-height:.25rem}.lg_max_h_q4{max-height:.25rem}.lg_inset_q4{bottom:.25rem;left:.25rem;right:.25rem;top:.25rem}.lg_top_q4{top:.25rem}.lg_right_q4{right:.25rem}.lg_bottom_q4{bottom:.25rem}.lg_left_q4{left:.25rem}.lg_inset_x_q4{left:.25rem;right:.25rem}.lg_inset_y_q4{bottom:.25rem;top:.25rem}.lg_border_q4{border-width:.25rem}.lg_border_t_q4{border-top-width:.25rem}.lg_border_r_q4{border-right-width:.25rem}.lg_border_b_q4{border-bottom-width:.25rem}.lg_border_l_q4,.lg_border_x_q4{border-left-width:.25rem}.lg_border_x_q4{border-right-width:.25rem}.lg_border_y_q4{border-bottom-width:.25rem;border-top-width:.25rem}.lg_rounded_q4{border-radius:.25rem}.lg_rounded_t_q4{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.lg_rounded_r_q4{border-bottom-right-radius:.25rem;border-top-right-radius:.25rem}.lg_rounded_b_q4{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.lg_rounded_l_q4{border-bottom-left-radius:.25rem}.lg_rounded_l_q4,.lg_rounded_tl_q4{border-top-left-radius:.25rem}.lg_rounded_tr_q4{border-top-right-radius:.25rem}.lg_rounded_br_q4{border-bottom-right-radius:.25rem}.lg_rounded_bl_q4{border-bottom-left-radius:.25rem}.lg_p_q6{padding:.375rem}.lg_pt_q6{padding-top:.375rem}.lg_pr_q6{padding-right:.375rem}.lg_pb_q6{padding-bottom:.375rem}.lg_pl_q6,.lg_px_q6{padding-left:.375rem}.lg_px_q6{padding-right:.375rem}.lg_py_q6{padding-bottom:.375rem;padding-top:.375rem}.lg_m_q6{margin:.375rem}.lg_mt_q6{margin-top:.375rem}.lg_mr_q6{margin-right:.375rem}.lg_mb_q6{margin-bottom:.375rem}.lg_ml_q6,.lg_mx_q6{margin-left:.375rem}.lg_mx_q6{margin-right:.375rem}.lg_my_q6{margin-bottom:.375rem;margin-top:.375rem}.lg_gap_q6{gap:.375rem}.lg_gap_col_q6{-moz-column-gap:.375rem;column-gap:.375rem}.lg_gap_row_q6{row-gap:.375rem}.lg_w_q6{width:.375rem}.lg_min_w_q6{min-width:.375rem}.lg_max_w_q6{max-width:.375rem}.lg_h_q6{height:.375rem}.lg_min_h_q6{min-height:.375rem}.lg_max_h_q6{max-height:.375rem}.lg_inset_q6{bottom:.375rem;left:.375rem;right:.375rem;top:.375rem}.lg_top_q6{top:.375rem}.lg_right_q6{right:.375rem}.lg_bottom_q6{bottom:.375rem}.lg_left_q6{left:.375rem}.lg_inset_x_q6{left:.375rem;right:.375rem}.lg_inset_y_q6{bottom:.375rem;top:.375rem}.lg_border_q6{border-width:.375rem}.lg_border_t_q6{border-top-width:.375rem}.lg_border_r_q6{border-right-width:.375rem}.lg_border_b_q6{border-bottom-width:.375rem}.lg_border_l_q6,.lg_border_x_q6{border-left-width:.375rem}.lg_border_x_q6{border-right-width:.375rem}.lg_border_y_q6{border-bottom-width:.375rem;border-top-width:.375rem}.lg_rounded_q6{border-radius:.375rem}.lg_rounded_t_q6{border-top-left-radius:.375rem;border-top-right-radius:.375rem}.lg_rounded_r_q6{border-top-right-radius:.375rem}.lg_rounded_b_q6,.lg_rounded_r_q6{border-bottom-right-radius:.375rem}.lg_rounded_b_q6,.lg_rounded_l_q6{border-bottom-left-radius:.375rem}.lg_rounded_l_q6,.lg_rounded_tl_q6{border-top-left-radius:.375rem}.lg_rounded_tr_q6{border-top-right-radius:.375rem}.lg_rounded_br_q6{border-bottom-right-radius:.375rem}.lg_rounded_bl_q6{border-bottom-left-radius:.375rem}.lg_p_q8{padding:.5rem}.lg_pt_q8{padding-top:.5rem}.lg_pr_q8{padding-right:.5rem}.lg_pb_q8{padding-bottom:.5rem}.lg_pl_q8,.lg_px_q8{padding-left:.5rem}.lg_px_q8{padding-right:.5rem}.lg_py_q8{padding-bottom:.5rem;padding-top:.5rem}.lg_m_q8{margin:.5rem}.lg_mt_q8{margin-top:.5rem}.lg_mr_q8{margin-right:.5rem}.lg_mb_q8{margin-bottom:.5rem}.lg_ml_q8,.lg_mx_q8{margin-left:.5rem}.lg_mx_q8{margin-right:.5rem}.lg_my_q8{margin-bottom:.5rem;margin-top:.5rem}.lg_gap_q8{gap:.5rem}.lg_gap_col_q8{-moz-column-gap:.5rem;column-gap:.5rem}.lg_gap_row_q8{row-gap:.5rem}.lg_w_q8{width:.5rem}.lg_min_w_q8{min-width:.5rem}.lg_max_w_q8{max-width:.5rem}.lg_h_q8{height:.5rem}.lg_min_h_q8{min-height:.5rem}.lg_max_h_q8{max-height:.5rem}.lg_inset_q8{bottom:.5rem;left:.5rem;right:.5rem;top:.5rem}.lg_top_q8{top:.5rem}.lg_right_q8{right:.5rem}.lg_bottom_q8{bottom:.5rem}.lg_left_q8{left:.5rem}.lg_inset_x_q8{left:.5rem;right:.5rem}.lg_inset_y_q8{bottom:.5rem;top:.5rem}.lg_border_q8{border-width:.5rem}.lg_border_t_q8{border-top-width:.5rem}.lg_border_r_q8{border-right-width:.5rem}.lg_border_b_q8{border-bottom-width:.5rem}.lg_border_l_q8,.lg_border_x_q8{border-left-width:.5rem}.lg_border_x_q8{border-right-width:.5rem}.lg_border_y_q8{border-bottom-width:.5rem;border-top-width:.5rem}.lg_rounded_q8{border-radius:.5rem}.lg_rounded_t_q8{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.lg_rounded_r_q8{border-bottom-right-radius:.5rem;border-top-right-radius:.5rem}.lg_rounded_b_q8{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.lg_rounded_l_q8{border-bottom-left-radius:.5rem}.lg_rounded_l_q8,.lg_rounded_tl_q8{border-top-left-radius:.5rem}.lg_rounded_tr_q8{border-top-right-radius:.5rem}.lg_rounded_br_q8{border-bottom-right-radius:.5rem}.lg_rounded_bl_q8{border-bottom-left-radius:.5rem}.lg_p_q12{padding:.75rem}.lg_pt_q12{padding-top:.75rem}.lg_pr_q12{padding-right:.75rem}.lg_pb_q12{padding-bottom:.75rem}.lg_pl_q12,.lg_px_q12{padding-left:.75rem}.lg_px_q12{padding-right:.75rem}.lg_py_q12{padding-bottom:.75rem;padding-top:.75rem}.lg_m_q12{margin:.75rem}.lg_mt_q12{margin-top:.75rem}.lg_mr_q12{margin-right:.75rem}.lg_mb_q12{margin-bottom:.75rem}.lg_ml_q12,.lg_mx_q12{margin-left:.75rem}.lg_mx_q12{margin-right:.75rem}.lg_my_q12{margin-bottom:.75rem;margin-top:.75rem}.lg_gap_q12{gap:.75rem}.lg_gap_col_q12{-moz-column-gap:.75rem;column-gap:.75rem}.lg_gap_row_q12{row-gap:.75rem}.lg_w_q12{width:.75rem}.lg_min_w_q12{min-width:.75rem}.lg_max_w_q12{max-width:.75rem}.lg_h_q12{height:.75rem}.lg_min_h_q12{min-height:.75rem}.lg_max_h_q12{max-height:.75rem}.lg_inset_q12{bottom:.75rem;left:.75rem;right:.75rem;top:.75rem}.lg_top_q12{top:.75rem}.lg_right_q12{right:.75rem}.lg_bottom_q12{bottom:.75rem}.lg_left_q12{left:.75rem}.lg_inset_x_q12{left:.75rem;right:.75rem}.lg_inset_y_q12{bottom:.75rem;top:.75rem}.lg_border_q12{border-width:.75rem}.lg_border_t_q12{border-top-width:.75rem}.lg_border_r_q12{border-right-width:.75rem}.lg_border_b_q12{border-bottom-width:.75rem}.lg_border_l_q12,.lg_border_x_q12{border-left-width:.75rem}.lg_border_x_q12{border-right-width:.75rem}.lg_border_y_q12{border-bottom-width:.75rem;border-top-width:.75rem}.lg_rounded_q12{border-radius:.75rem}.lg_rounded_t_q12{border-top-left-radius:.75rem;border-top-right-radius:.75rem}.lg_rounded_r_q12{border-bottom-right-radius:.75rem;border-top-right-radius:.75rem}.lg_rounded_b_q12{border-bottom-left-radius:.75rem;border-bottom-right-radius:.75rem}.lg_rounded_l_q12{border-bottom-left-radius:.75rem}.lg_rounded_l_q12,.lg_rounded_tl_q12{border-top-left-radius:.75rem}.lg_rounded_tr_q12{border-top-right-radius:.75rem}.lg_rounded_br_q12{border-bottom-right-radius:.75rem}.lg_rounded_bl_q12{border-bottom-left-radius:.75rem}.lg_p_q16{padding:1rem}.lg_pt_q16{padding-top:1rem}.lg_pr_q16{padding-right:1rem}.lg_pb_q16{padding-bottom:1rem}.lg_pl_q16,.lg_px_q16{padding-left:1rem}.lg_px_q16{padding-right:1rem}.lg_py_q16{padding-bottom:1rem;padding-top:1rem}.lg_m_q16{margin:1rem}.lg_mt_q16{margin-top:1rem}.lg_mr_q16{margin-right:1rem}.lg_mb_q16{margin-bottom:1rem}.lg_ml_q16,.lg_mx_q16{margin-left:1rem}.lg_mx_q16{margin-right:1rem}.lg_my_q16{margin-bottom:1rem;margin-top:1rem}.lg_gap_q16{gap:1rem}.lg_gap_col_q16{-moz-column-gap:1rem;column-gap:1rem}.lg_gap_row_q16{row-gap:1rem}.lg_w_q16{width:1rem}.lg_min_w_q16{min-width:1rem}.lg_max_w_q16{max-width:1rem}.lg_h_q16{height:1rem}.lg_min_h_q16{min-height:1rem}.lg_max_h_q16{max-height:1rem}.lg_inset_q16{bottom:1rem;left:1rem;right:1rem;top:1rem}.lg_top_q16{top:1rem}.lg_right_q16{right:1rem}.lg_bottom_q16{bottom:1rem}.lg_left_q16{left:1rem}.lg_inset_x_q16{left:1rem;right:1rem}.lg_inset_y_q16{bottom:1rem;top:1rem}.lg_border_q16{border-width:1rem}.lg_border_t_q16{border-top-width:1rem}.lg_border_r_q16{border-right-width:1rem}.lg_border_b_q16{border-bottom-width:1rem}.lg_border_l_q16,.lg_border_x_q16{border-left-width:1rem}.lg_border_x_q16{border-right-width:1rem}.lg_border_y_q16{border-bottom-width:1rem;border-top-width:1rem}.lg_rounded_q16{border-radius:1rem}.lg_rounded_t_q16{border-top-left-radius:1rem;border-top-right-radius:1rem}.lg_rounded_r_q16{border-bottom-right-radius:1rem;border-top-right-radius:1rem}.lg_rounded_b_q16{border-bottom-left-radius:1rem;border-bottom-right-radius:1rem}.lg_rounded_l_q16{border-bottom-left-radius:1rem}.lg_rounded_l_q16,.lg_rounded_tl_q16{border-top-left-radius:1rem}.lg_rounded_tr_q16{border-top-right-radius:1rem}.lg_rounded_br_q16{border-bottom-right-radius:1rem}.lg_rounded_bl_q16{border-bottom-left-radius:1rem}.lg_p_q20{padding:1.25rem}.lg_pt_q20{padding-top:1.25rem}.lg_pr_q20{padding-right:1.25rem}.lg_pb_q20{padding-bottom:1.25rem}.lg_pl_q20,.lg_px_q20{padding-left:1.25rem}.lg_px_q20{padding-right:1.25rem}.lg_py_q20{padding-bottom:1.25rem;padding-top:1.25rem}.lg_m_q20{margin:1.25rem}.lg_mt_q20{margin-top:1.25rem}.lg_mr_q20{margin-right:1.25rem}.lg_mb_q20{margin-bottom:1.25rem}.lg_ml_q20,.lg_mx_q20{margin-left:1.25rem}.lg_mx_q20{margin-right:1.25rem}.lg_my_q20{margin-bottom:1.25rem;margin-top:1.25rem}.lg_gap_q20{gap:1.25rem}.lg_gap_col_q20{-moz-column-gap:1.25rem;column-gap:1.25rem}.lg_gap_row_q20{row-gap:1.25rem}.lg_w_q20{width:1.25rem}.lg_min_w_q20{min-width:1.25rem}.lg_max_w_q20{max-width:1.25rem}.lg_h_q20{height:1.25rem}.lg_min_h_q20{min-height:1.25rem}.lg_max_h_q20{max-height:1.25rem}.lg_inset_q20{bottom:1.25rem;left:1.25rem;right:1.25rem;top:1.25rem}.lg_top_q20{top:1.25rem}.lg_right_q20{right:1.25rem}.lg_bottom_q20{bottom:1.25rem}.lg_left_q20{left:1.25rem}.lg_inset_x_q20{left:1.25rem;right:1.25rem}.lg_inset_y_q20{bottom:1.25rem;top:1.25rem}.lg_border_q20{border-width:1.25rem}.lg_border_t_q20{border-top-width:1.25rem}.lg_border_r_q20{border-right-width:1.25rem}.lg_border_b_q20{border-bottom-width:1.25rem}.lg_border_l_q20,.lg_border_x_q20{border-left-width:1.25rem}.lg_border_x_q20{border-right-width:1.25rem}.lg_border_y_q20{border-bottom-width:1.25rem;border-top-width:1.25rem}.lg_rounded_q20{border-radius:1.25rem}.lg_rounded_t_q20{border-top-left-radius:1.25rem;border-top-right-radius:1.25rem}.lg_rounded_r_q20{border-bottom-right-radius:1.25rem;border-top-right-radius:1.25rem}.lg_rounded_b_q20{border-bottom-left-radius:1.25rem;border-bottom-right-radius:1.25rem}.lg_rounded_l_q20{border-bottom-left-radius:1.25rem}.lg_rounded_l_q20,.lg_rounded_tl_q20{border-top-left-radius:1.25rem}.lg_rounded_tr_q20{border-top-right-radius:1.25rem}.lg_rounded_br_q20{border-bottom-right-radius:1.25rem}.lg_rounded_bl_q20{border-bottom-left-radius:1.25rem}.lg_p_q24{padding:1.5rem}.lg_pt_q24{padding-top:1.5rem}.lg_pr_q24{padding-right:1.5rem}.lg_pb_q24{padding-bottom:1.5rem}.lg_pl_q24,.lg_px_q24{padding-left:1.5rem}.lg_px_q24{padding-right:1.5rem}.lg_py_q24{padding-bottom:1.5rem;padding-top:1.5rem}.lg_m_q24{margin:1.5rem}.lg_mt_q24{margin-top:1.5rem}.lg_mr_q24{margin-right:1.5rem}.lg_mb_q24{margin-bottom:1.5rem}.lg_ml_q24,.lg_mx_q24{margin-left:1.5rem}.lg_mx_q24{margin-right:1.5rem}.lg_my_q24{margin-bottom:1.5rem;margin-top:1.5rem}.lg_gap_q24{gap:1.5rem}.lg_gap_col_q24{-moz-column-gap:1.5rem;column-gap:1.5rem}.lg_gap_row_q24{row-gap:1.5rem}.lg_w_q24{width:1.5rem}.lg_min_w_q24{min-width:1.5rem}.lg_max_w_q24{max-width:1.5rem}.lg_h_q24{height:1.5rem}.lg_min_h_q24{min-height:1.5rem}.lg_max_h_q24{max-height:1.5rem}.lg_inset_q24{bottom:1.5rem;left:1.5rem;right:1.5rem;top:1.5rem}.lg_top_q24{top:1.5rem}.lg_right_q24{right:1.5rem}.lg_bottom_q24{bottom:1.5rem}.lg_left_q24{left:1.5rem}.lg_inset_x_q24{left:1.5rem;right:1.5rem}.lg_inset_y_q24{bottom:1.5rem;top:1.5rem}.lg_border_q24{border-width:1.5rem}.lg_border_t_q24{border-top-width:1.5rem}.lg_border_r_q24{border-right-width:1.5rem}.lg_border_b_q24{border-bottom-width:1.5rem}.lg_border_l_q24,.lg_border_x_q24{border-left-width:1.5rem}.lg_border_x_q24{border-right-width:1.5rem}.lg_border_y_q24{border-bottom-width:1.5rem;border-top-width:1.5rem}.lg_rounded_q24{border-radius:1.5rem}.lg_rounded_t_q24{border-top-left-radius:1.5rem;border-top-right-radius:1.5rem}.lg_rounded_r_q24{border-bottom-right-radius:1.5rem;border-top-right-radius:1.5rem}.lg_rounded_b_q24{border-bottom-left-radius:1.5rem;border-bottom-right-radius:1.5rem}.lg_rounded_l_q24{border-bottom-left-radius:1.5rem}.lg_rounded_l_q24,.lg_rounded_tl_q24{border-top-left-radius:1.5rem}.lg_rounded_tr_q24{border-top-right-radius:1.5rem}.lg_rounded_br_q24{border-bottom-right-radius:1.5rem}.lg_rounded_bl_q24{border-bottom-left-radius:1.5rem}.lg_p_q32{padding:2rem}.lg_pt_q32{padding-top:2rem}.lg_pr_q32{padding-right:2rem}.lg_pb_q32{padding-bottom:2rem}.lg_pl_q32,.lg_px_q32{padding-left:2rem}.lg_px_q32{padding-right:2rem}.lg_py_q32{padding-bottom:2rem;padding-top:2rem}.lg_m_q32{margin:2rem}.lg_mt_q32{margin-top:2rem}.lg_mr_q32{margin-right:2rem}.lg_mb_q32{margin-bottom:2rem}.lg_ml_q32,.lg_mx_q32{margin-left:2rem}.lg_mx_q32{margin-right:2rem}.lg_my_q32{margin-bottom:2rem;margin-top:2rem}.lg_gap_q32{gap:2rem}.lg_gap_col_q32{-moz-column-gap:2rem;column-gap:2rem}.lg_gap_row_q32{row-gap:2rem}.lg_w_q32{width:2rem}.lg_min_w_q32{min-width:2rem}.lg_max_w_q32{max-width:2rem}.lg_h_q32{height:2rem}.lg_min_h_q32{min-height:2rem}.lg_max_h_q32{max-height:2rem}.lg_inset_q32{bottom:2rem;left:2rem;right:2rem;top:2rem}.lg_top_q32{top:2rem}.lg_right_q32{right:2rem}.lg_bottom_q32{bottom:2rem}.lg_left_q32{left:2rem}.lg_inset_x_q32{left:2rem;right:2rem}.lg_inset_y_q32{bottom:2rem;top:2rem}.lg_border_q32{border-width:2rem}.lg_border_t_q32{border-top-width:2rem}.lg_border_r_q32{border-right-width:2rem}.lg_border_b_q32{border-bottom-width:2rem}.lg_border_l_q32,.lg_border_x_q32{border-left-width:2rem}.lg_border_x_q32{border-right-width:2rem}.lg_border_y_q32{border-bottom-width:2rem;border-top-width:2rem}.lg_rounded_q32{border-radius:2rem}.lg_rounded_t_q32{border-top-left-radius:2rem;border-top-right-radius:2rem}.lg_rounded_r_q32{border-bottom-right-radius:2rem;border-top-right-radius:2rem}.lg_rounded_b_q32{border-bottom-left-radius:2rem;border-bottom-right-radius:2rem}.lg_rounded_l_q32{border-bottom-left-radius:2rem}.lg_rounded_l_q32,.lg_rounded_tl_q32{border-top-left-radius:2rem}.lg_rounded_tr_q32{border-top-right-radius:2rem}.lg_rounded_br_q32{border-bottom-right-radius:2rem}.lg_rounded_bl_q32{border-bottom-left-radius:2rem}.lg_p_q40{padding:2.5rem}.lg_pt_q40{padding-top:2.5rem}.lg_pr_q40{padding-right:2.5rem}.lg_pb_q40{padding-bottom:2.5rem}.lg_pl_q40,.lg_px_q40{padding-left:2.5rem}.lg_px_q40{padding-right:2.5rem}.lg_py_q40{padding-bottom:2.5rem;padding-top:2.5rem}.lg_m_q40{margin:2.5rem}.lg_mt_q40{margin-top:2.5rem}.lg_mr_q40{margin-right:2.5rem}.lg_mb_q40{margin-bottom:2.5rem}.lg_ml_q40,.lg_mx_q40{margin-left:2.5rem}.lg_mx_q40{margin-right:2.5rem}.lg_my_q40{margin-bottom:2.5rem;margin-top:2.5rem}.lg_gap_q40{gap:2.5rem}.lg_gap_col_q40{-moz-column-gap:2.5rem;column-gap:2.5rem}.lg_gap_row_q40{row-gap:2.5rem}.lg_w_q40{width:2.5rem}.lg_min_w_q40{min-width:2.5rem}.lg_max_w_q40{max-width:2.5rem}.lg_h_q40{height:2.5rem}.lg_min_h_q40{min-height:2.5rem}.lg_max_h_q40{max-height:2.5rem}.lg_inset_q40{bottom:2.5rem;left:2.5rem;right:2.5rem;top:2.5rem}.lg_top_q40{top:2.5rem}.lg_right_q40{right:2.5rem}.lg_bottom_q40{bottom:2.5rem}.lg_left_q40{left:2.5rem}.lg_inset_x_q40{left:2.5rem;right:2.5rem}.lg_inset_y_q40{bottom:2.5rem;top:2.5rem}.lg_border_q40{border-width:2.5rem}.lg_border_t_q40{border-top-width:2.5rem}.lg_border_r_q40{border-right-width:2.5rem}.lg_border_b_q40{border-bottom-width:2.5rem}.lg_border_l_q40,.lg_border_x_q40{border-left-width:2.5rem}.lg_border_x_q40{border-right-width:2.5rem}.lg_border_y_q40{border-bottom-width:2.5rem;border-top-width:2.5rem}.lg_rounded_q40{border-radius:2.5rem}.lg_rounded_t_q40{border-top-left-radius:2.5rem;border-top-right-radius:2.5rem}.lg_rounded_r_q40{border-bottom-right-radius:2.5rem;border-top-right-radius:2.5rem}.lg_rounded_b_q40{border-bottom-left-radius:2.5rem;border-bottom-right-radius:2.5rem}.lg_rounded_l_q40{border-bottom-left-radius:2.5rem}.lg_rounded_l_q40,.lg_rounded_tl_q40{border-top-left-radius:2.5rem}.lg_rounded_tr_q40{border-top-right-radius:2.5rem}.lg_rounded_br_q40{border-bottom-right-radius:2.5rem}.lg_rounded_bl_q40{border-bottom-left-radius:2.5rem}.lg_p_q48{padding:3rem}.lg_pt_q48{padding-top:3rem}.lg_pr_q48{padding-right:3rem}.lg_pb_q48{padding-bottom:3rem}.lg_pl_q48,.lg_px_q48{padding-left:3rem}.lg_px_q48{padding-right:3rem}.lg_py_q48{padding-bottom:3rem;padding-top:3rem}.lg_m_q48{margin:3rem}.lg_mt_q48{margin-top:3rem}.lg_mr_q48{margin-right:3rem}.lg_mb_q48{margin-bottom:3rem}.lg_ml_q48,.lg_mx_q48{margin-left:3rem}.lg_mx_q48{margin-right:3rem}.lg_my_q48{margin-bottom:3rem;margin-top:3rem}.lg_gap_q48{gap:3rem}.lg_gap_col_q48{-moz-column-gap:3rem;column-gap:3rem}.lg_gap_row_q48{row-gap:3rem}.lg_w_q48{width:3rem}.lg_min_w_q48{min-width:3rem}.lg_max_w_q48{max-width:3rem}.lg_h_q48{height:3rem}.lg_min_h_q48{min-height:3rem}.lg_max_h_q48{max-height:3rem}.lg_inset_q48{bottom:3rem;left:3rem;right:3rem;top:3rem}.lg_top_q48{top:3rem}.lg_right_q48{right:3rem}.lg_bottom_q48{bottom:3rem}.lg_left_q48{left:3rem}.lg_inset_x_q48{left:3rem;right:3rem}.lg_inset_y_q48{bottom:3rem;top:3rem}.lg_border_q48{border-width:3rem}.lg_border_t_q48{border-top-width:3rem}.lg_border_r_q48{border-right-width:3rem}.lg_border_b_q48{border-bottom-width:3rem}.lg_border_l_q48,.lg_border_x_q48{border-left-width:3rem}.lg_border_x_q48{border-right-width:3rem}.lg_border_y_q48{border-bottom-width:3rem;border-top-width:3rem}.lg_rounded_q48{border-radius:3rem}.lg_rounded_t_q48{border-top-left-radius:3rem;border-top-right-radius:3rem}.lg_rounded_r_q48{border-bottom-right-radius:3rem;border-top-right-radius:3rem}.lg_rounded_b_q48{border-bottom-left-radius:3rem;border-bottom-right-radius:3rem}.lg_rounded_l_q48{border-bottom-left-radius:3rem}.lg_rounded_l_q48,.lg_rounded_tl_q48{border-top-left-radius:3rem}.lg_rounded_tr_q48{border-top-right-radius:3rem}.lg_rounded_br_q48{border-bottom-right-radius:3rem}.lg_rounded_bl_q48{border-bottom-left-radius:3rem}.lg_p_q56{padding:3.5rem}.lg_pt_q56{padding-top:3.5rem}.lg_pr_q56{padding-right:3.5rem}.lg_pb_q56{padding-bottom:3.5rem}.lg_pl_q56,.lg_px_q56{padding-left:3.5rem}.lg_px_q56{padding-right:3.5rem}.lg_py_q56{padding-bottom:3.5rem;padding-top:3.5rem}.lg_m_q56{margin:3.5rem}.lg_mt_q56{margin-top:3.5rem}.lg_mr_q56{margin-right:3.5rem}.lg_mb_q56{margin-bottom:3.5rem}.lg_ml_q56,.lg_mx_q56{margin-left:3.5rem}.lg_mx_q56{margin-right:3.5rem}.lg_my_q56{margin-bottom:3.5rem;margin-top:3.5rem}.lg_gap_q56{gap:3.5rem}.lg_gap_col_q56{-moz-column-gap:3.5rem;column-gap:3.5rem}.lg_gap_row_q56{row-gap:3.5rem}.lg_w_q56{width:3.5rem}.lg_min_w_q56{min-width:3.5rem}.lg_max_w_q56{max-width:3.5rem}.lg_h_q56{height:3.5rem}.lg_min_h_q56{min-height:3.5rem}.lg_max_h_q56{max-height:3.5rem}.lg_inset_q56{bottom:3.5rem;left:3.5rem;right:3.5rem;top:3.5rem}.lg_top_q56{top:3.5rem}.lg_right_q56{right:3.5rem}.lg_bottom_q56{bottom:3.5rem}.lg_left_q56{left:3.5rem}.lg_inset_x_q56{left:3.5rem;right:3.5rem}.lg_inset_y_q56{bottom:3.5rem;top:3.5rem}.lg_border_q56{border-width:3.5rem}.lg_border_t_q56{border-top-width:3.5rem}.lg_border_r_q56{border-right-width:3.5rem}.lg_border_b_q56{border-bottom-width:3.5rem}.lg_border_l_q56,.lg_border_x_q56{border-left-width:3.5rem}.lg_border_x_q56{border-right-width:3.5rem}.lg_border_y_q56{border-bottom-width:3.5rem;border-top-width:3.5rem}.lg_rounded_q56{border-radius:3.5rem}.lg_rounded_t_q56{border-top-left-radius:3.5rem;border-top-right-radius:3.5rem}.lg_rounded_r_q56{border-bottom-right-radius:3.5rem;border-top-right-radius:3.5rem}.lg_rounded_b_q56{border-bottom-left-radius:3.5rem;border-bottom-right-radius:3.5rem}.lg_rounded_l_q56{border-bottom-left-radius:3.5rem}.lg_rounded_l_q56,.lg_rounded_tl_q56{border-top-left-radius:3.5rem}.lg_rounded_tr_q56{border-top-right-radius:3.5rem}.lg_rounded_br_q56{border-bottom-right-radius:3.5rem}.lg_rounded_bl_q56{border-bottom-left-radius:3.5rem}.lg_p_q64{padding:4rem}.lg_pt_q64{padding-top:4rem}.lg_pr_q64{padding-right:4rem}.lg_pb_q64{padding-bottom:4rem}.lg_pl_q64,.lg_px_q64{padding-left:4rem}.lg_px_q64{padding-right:4rem}.lg_py_q64{padding-bottom:4rem;padding-top:4rem}.lg_m_q64{margin:4rem}.lg_mt_q64{margin-top:4rem}.lg_mr_q64{margin-right:4rem}.lg_mb_q64{margin-bottom:4rem}.lg_ml_q64,.lg_mx_q64{margin-left:4rem}.lg_mx_q64{margin-right:4rem}.lg_my_q64{margin-bottom:4rem;margin-top:4rem}.lg_gap_q64{gap:4rem}.lg_gap_col_q64{-moz-column-gap:4rem;column-gap:4rem}.lg_gap_row_q64{row-gap:4rem}.lg_w_q64{width:4rem}.lg_min_w_q64{min-width:4rem}.lg_max_w_q64{max-width:4rem}.lg_h_q64{height:4rem}.lg_min_h_q64{min-height:4rem}.lg_max_h_q64{max-height:4rem}.lg_inset_q64{bottom:4rem;left:4rem;right:4rem;top:4rem}.lg_top_q64{top:4rem}.lg_right_q64{right:4rem}.lg_bottom_q64{bottom:4rem}.lg_left_q64{left:4rem}.lg_inset_x_q64{left:4rem;right:4rem}.lg_inset_y_q64{bottom:4rem;top:4rem}.lg_border_q64{border-width:4rem}.lg_border_t_q64{border-top-width:4rem}.lg_border_r_q64{border-right-width:4rem}.lg_border_b_q64{border-bottom-width:4rem}.lg_border_l_q64,.lg_border_x_q64{border-left-width:4rem}.lg_border_x_q64{border-right-width:4rem}.lg_border_y_q64{border-bottom-width:4rem;border-top-width:4rem}.lg_rounded_q64{border-radius:4rem}.lg_rounded_t_q64{border-top-left-radius:4rem;border-top-right-radius:4rem}.lg_rounded_r_q64{border-bottom-right-radius:4rem;border-top-right-radius:4rem}.lg_rounded_b_q64{border-bottom-left-radius:4rem;border-bottom-right-radius:4rem}.lg_rounded_l_q64{border-bottom-left-radius:4rem}.lg_rounded_l_q64,.lg_rounded_tl_q64{border-top-left-radius:4rem}.lg_rounded_tr_q64{border-top-right-radius:4rem}.lg_rounded_br_q64{border-bottom-right-radius:4rem}.lg_rounded_bl_q64{border-bottom-left-radius:4rem}.lg_p_q72{padding:4.5rem}.lg_pt_q72{padding-top:4.5rem}.lg_pr_q72{padding-right:4.5rem}.lg_pb_q72{padding-bottom:4.5rem}.lg_pl_q72,.lg_px_q72{padding-left:4.5rem}.lg_px_q72{padding-right:4.5rem}.lg_py_q72{padding-bottom:4.5rem;padding-top:4.5rem}.lg_m_q72{margin:4.5rem}.lg_mt_q72{margin-top:4.5rem}.lg_mr_q72{margin-right:4.5rem}.lg_mb_q72{margin-bottom:4.5rem}.lg_ml_q72,.lg_mx_q72{margin-left:4.5rem}.lg_mx_q72{margin-right:4.5rem}.lg_my_q72{margin-bottom:4.5rem;margin-top:4.5rem}.lg_gap_q72{gap:4.5rem}.lg_gap_col_q72{-moz-column-gap:4.5rem;column-gap:4.5rem}.lg_gap_row_q72{row-gap:4.5rem}.lg_w_q72{width:4.5rem}.lg_min_w_q72{min-width:4.5rem}.lg_max_w_q72{max-width:4.5rem}.lg_h_q72{height:4.5rem}.lg_min_h_q72{min-height:4.5rem}.lg_max_h_q72{max-height:4.5rem}.lg_inset_q72{bottom:4.5rem;left:4.5rem;right:4.5rem;top:4.5rem}.lg_top_q72{top:4.5rem}.lg_right_q72{right:4.5rem}.lg_bottom_q72{bottom:4.5rem}.lg_left_q72{left:4.5rem}.lg_inset_x_q72{left:4.5rem;right:4.5rem}.lg_inset_y_q72{bottom:4.5rem;top:4.5rem}.lg_border_q72{border-width:4.5rem}.lg_border_t_q72{border-top-width:4.5rem}.lg_border_r_q72{border-right-width:4.5rem}.lg_border_b_q72{border-bottom-width:4.5rem}.lg_border_l_q72,.lg_border_x_q72{border-left-width:4.5rem}.lg_border_x_q72{border-right-width:4.5rem}.lg_border_y_q72{border-bottom-width:4.5rem;border-top-width:4.5rem}.lg_rounded_q72{border-radius:4.5rem}.lg_rounded_t_q72{border-top-left-radius:4.5rem;border-top-right-radius:4.5rem}.lg_rounded_r_q72{border-bottom-right-radius:4.5rem;border-top-right-radius:4.5rem}.lg_rounded_b_q72{border-bottom-left-radius:4.5rem;border-bottom-right-radius:4.5rem}.lg_rounded_l_q72{border-bottom-left-radius:4.5rem}.lg_rounded_l_q72,.lg_rounded_tl_q72{border-top-left-radius:4.5rem}.lg_rounded_tr_q72{border-top-right-radius:4.5rem}.lg_rounded_br_q72{border-bottom-right-radius:4.5rem}.lg_rounded_bl_q72{border-bottom-left-radius:4.5rem}.lg_p_q80{padding:5rem}.lg_pt_q80{padding-top:5rem}.lg_pr_q80{padding-right:5rem}.lg_pb_q80{padding-bottom:5rem}.lg_pl_q80,.lg_px_q80{padding-left:5rem}.lg_px_q80{padding-right:5rem}.lg_py_q80{padding-bottom:5rem;padding-top:5rem}.lg_m_q80{margin:5rem}.lg_mt_q80{margin-top:5rem}.lg_mr_q80{margin-right:5rem}.lg_mb_q80{margin-bottom:5rem}.lg_ml_q80,.lg_mx_q80{margin-left:5rem}.lg_mx_q80{margin-right:5rem}.lg_my_q80{margin-bottom:5rem;margin-top:5rem}.lg_gap_q80{gap:5rem}.lg_gap_col_q80{-moz-column-gap:5rem;column-gap:5rem}.lg_gap_row_q80{row-gap:5rem}.lg_w_q80{width:5rem}.lg_min_w_q80{min-width:5rem}.lg_max_w_q80{max-width:5rem}.lg_h_q80{height:5rem}.lg_min_h_q80{min-height:5rem}.lg_max_h_q80{max-height:5rem}.lg_inset_q80{bottom:5rem;left:5rem;right:5rem;top:5rem}.lg_top_q80{top:5rem}.lg_right_q80{right:5rem}.lg_bottom_q80{bottom:5rem}.lg_left_q80{left:5rem}.lg_inset_x_q80{left:5rem;right:5rem}.lg_inset_y_q80{bottom:5rem;top:5rem}.lg_border_q80{border-width:5rem}.lg_border_t_q80{border-top-width:5rem}.lg_border_r_q80{border-right-width:5rem}.lg_border_b_q80{border-bottom-width:5rem}.lg_border_l_q80,.lg_border_x_q80{border-left-width:5rem}.lg_border_x_q80{border-right-width:5rem}.lg_border_y_q80{border-bottom-width:5rem;border-top-width:5rem}.lg_rounded_q80{border-radius:5rem}.lg_rounded_t_q80{border-top-left-radius:5rem;border-top-right-radius:5rem}.lg_rounded_r_q80{border-bottom-right-radius:5rem;border-top-right-radius:5rem}.lg_rounded_b_q80{border-bottom-left-radius:5rem;border-bottom-right-radius:5rem}.lg_rounded_l_q80{border-bottom-left-radius:5rem}.lg_rounded_l_q80,.lg_rounded_tl_q80{border-top-left-radius:5rem}.lg_rounded_tr_q80{border-top-right-radius:5rem}.lg_rounded_br_q80{border-bottom-right-radius:5rem}.lg_rounded_bl_q80{border-bottom-left-radius:5rem}.lg_p_q96{padding:6rem}.lg_pt_q96{padding-top:6rem}.lg_pr_q96{padding-right:6rem}.lg_pb_q96{padding-bottom:6rem}.lg_pl_q96,.lg_px_q96{padding-left:6rem}.lg_px_q96{padding-right:6rem}.lg_py_q96{padding-bottom:6rem;padding-top:6rem}.lg_m_q96{margin:6rem}.lg_mt_q96{margin-top:6rem}.lg_mr_q96{margin-right:6rem}.lg_mb_q96{margin-bottom:6rem}.lg_ml_q96,.lg_mx_q96{margin-left:6rem}.lg_mx_q96{margin-right:6rem}.lg_my_q96{margin-bottom:6rem;margin-top:6rem}.lg_gap_q96{gap:6rem}.lg_gap_col_q96{-moz-column-gap:6rem;column-gap:6rem}.lg_gap_row_q96{row-gap:6rem}.lg_w_q96{width:6rem}.lg_min_w_q96{min-width:6rem}.lg_max_w_q96{max-width:6rem}.lg_h_q96{height:6rem}.lg_min_h_q96{min-height:6rem}.lg_max_h_q96{max-height:6rem}.lg_inset_q96{bottom:6rem;left:6rem;right:6rem;top:6rem}.lg_top_q96{top:6rem}.lg_right_q96{right:6rem}.lg_bottom_q96{bottom:6rem}.lg_left_q96{left:6rem}.lg_inset_x_q96{left:6rem;right:6rem}.lg_inset_y_q96{bottom:6rem;top:6rem}.lg_border_q96{border-width:6rem}.lg_border_t_q96{border-top-width:6rem}.lg_border_r_q96{border-right-width:6rem}.lg_border_b_q96{border-bottom-width:6rem}.lg_border_l_q96,.lg_border_x_q96{border-left-width:6rem}.lg_border_x_q96{border-right-width:6rem}.lg_border_y_q96{border-bottom-width:6rem;border-top-width:6rem}.lg_rounded_q96{border-radius:6rem}.lg_rounded_t_q96{border-top-left-radius:6rem;border-top-right-radius:6rem}.lg_rounded_r_q96{border-bottom-right-radius:6rem;border-top-right-radius:6rem}.lg_rounded_b_q96{border-bottom-left-radius:6rem;border-bottom-right-radius:6rem}.lg_rounded_l_q96{border-bottom-left-radius:6rem}.lg_rounded_l_q96,.lg_rounded_tl_q96{border-top-left-radius:6rem}.lg_rounded_tr_q96{border-top-right-radius:6rem}.lg_rounded_br_q96{border-bottom-right-radius:6rem}.lg_rounded_bl_q96{border-bottom-left-radius:6rem}.lg_p_q112{padding:7rem}.lg_pt_q112{padding-top:7rem}.lg_pr_q112{padding-right:7rem}.lg_pb_q112{padding-bottom:7rem}.lg_pl_q112,.lg_px_q112{padding-left:7rem}.lg_px_q112{padding-right:7rem}.lg_py_q112{padding-bottom:7rem;padding-top:7rem}.lg_m_q112{margin:7rem}.lg_mt_q112{margin-top:7rem}.lg_mr_q112{margin-right:7rem}.lg_mb_q112{margin-bottom:7rem}.lg_ml_q112,.lg_mx_q112{margin-left:7rem}.lg_mx_q112{margin-right:7rem}.lg_my_q112{margin-bottom:7rem;margin-top:7rem}.lg_gap_q112{gap:7rem}.lg_gap_col_q112{-moz-column-gap:7rem;column-gap:7rem}.lg_gap_row_q112{row-gap:7rem}.lg_w_q112{width:7rem}.lg_min_w_q112{min-width:7rem}.lg_max_w_q112{max-width:7rem}.lg_h_q112{height:7rem}.lg_min_h_q112{min-height:7rem}.lg_max_h_q112{max-height:7rem}.lg_inset_q112{bottom:7rem;left:7rem;right:7rem;top:7rem}.lg_top_q112{top:7rem}.lg_right_q112{right:7rem}.lg_bottom_q112{bottom:7rem}.lg_left_q112{left:7rem}.lg_inset_x_q112{left:7rem;right:7rem}.lg_inset_y_q112{bottom:7rem;top:7rem}.lg_border_q112{border-width:7rem}.lg_border_t_q112{border-top-width:7rem}.lg_border_r_q112{border-right-width:7rem}.lg_border_b_q112{border-bottom-width:7rem}.lg_border_l_q112,.lg_border_x_q112{border-left-width:7rem}.lg_border_x_q112{border-right-width:7rem}.lg_border_y_q112{border-bottom-width:7rem;border-top-width:7rem}.lg_rounded_q112{border-radius:7rem}.lg_rounded_t_q112{border-top-left-radius:7rem;border-top-right-radius:7rem}.lg_rounded_r_q112{border-bottom-right-radius:7rem;border-top-right-radius:7rem}.lg_rounded_b_q112{border-bottom-left-radius:7rem;border-bottom-right-radius:7rem}.lg_rounded_l_q112{border-bottom-left-radius:7rem}.lg_rounded_l_q112,.lg_rounded_tl_q112{border-top-left-radius:7rem}.lg_rounded_tr_q112{border-top-right-radius:7rem}.lg_rounded_br_q112{border-bottom-right-radius:7rem}.lg_rounded_bl_q112{border-bottom-left-radius:7rem}.lg_p_q128{padding:8rem}.lg_pt_q128{padding-top:8rem}.lg_pr_q128{padding-right:8rem}.lg_pb_q128{padding-bottom:8rem}.lg_pl_q128,.lg_px_q128{padding-left:8rem}.lg_px_q128{padding-right:8rem}.lg_py_q128{padding-bottom:8rem;padding-top:8rem}.lg_m_q128{margin:8rem}.lg_mt_q128{margin-top:8rem}.lg_mr_q128{margin-right:8rem}.lg_mb_q128{margin-bottom:8rem}.lg_ml_q128,.lg_mx_q128{margin-left:8rem}.lg_mx_q128{margin-right:8rem}.lg_my_q128{margin-bottom:8rem;margin-top:8rem}.lg_gap_q128{gap:8rem}.lg_gap_col_q128{-moz-column-gap:8rem;column-gap:8rem}.lg_gap_row_q128{row-gap:8rem}.lg_w_q128{width:8rem}.lg_min_w_q128{min-width:8rem}.lg_max_w_q128{max-width:8rem}.lg_h_q128{height:8rem}.lg_min_h_q128{min-height:8rem}.lg_max_h_q128{max-height:8rem}.lg_inset_q128{bottom:8rem;left:8rem;right:8rem;top:8rem}.lg_top_q128{top:8rem}.lg_right_q128{right:8rem}.lg_bottom_q128{bottom:8rem}.lg_left_q128{left:8rem}.lg_inset_x_q128{left:8rem;right:8rem}.lg_inset_y_q128{bottom:8rem;top:8rem}.lg_border_q128{border-width:8rem}.lg_border_t_q128{border-top-width:8rem}.lg_border_r_q128{border-right-width:8rem}.lg_border_b_q128{border-bottom-width:8rem}.lg_border_l_q128,.lg_border_x_q128{border-left-width:8rem}.lg_border_x_q128{border-right-width:8rem}.lg_border_y_q128{border-bottom-width:8rem;border-top-width:8rem}.lg_rounded_q128{border-radius:8rem}.lg_rounded_t_q128{border-top-left-radius:8rem;border-top-right-radius:8rem}.lg_rounded_r_q128{border-bottom-right-radius:8rem;border-top-right-radius:8rem}.lg_rounded_b_q128{border-bottom-left-radius:8rem;border-bottom-right-radius:8rem}.lg_rounded_l_q128{border-bottom-left-radius:8rem}.lg_rounded_l_q128,.lg_rounded_tl_q128{border-top-left-radius:8rem}.lg_rounded_tr_q128{border-top-right-radius:8rem}.lg_rounded_br_q128{border-bottom-right-radius:8rem}.lg_rounded_bl_q128{border-bottom-left-radius:8rem}.lg_p_q144{padding:9rem}.lg_pt_q144{padding-top:9rem}.lg_pr_q144{padding-right:9rem}.lg_pb_q144{padding-bottom:9rem}.lg_pl_q144,.lg_px_q144{padding-left:9rem}.lg_px_q144{padding-right:9rem}.lg_py_q144{padding-bottom:9rem;padding-top:9rem}.lg_m_q144{margin:9rem}.lg_mt_q144{margin-top:9rem}.lg_mr_q144{margin-right:9rem}.lg_mb_q144{margin-bottom:9rem}.lg_ml_q144,.lg_mx_q144{margin-left:9rem}.lg_mx_q144{margin-right:9rem}.lg_my_q144{margin-bottom:9rem;margin-top:9rem}.lg_gap_q144{gap:9rem}.lg_gap_col_q144{-moz-column-gap:9rem;column-gap:9rem}.lg_gap_row_q144{row-gap:9rem}.lg_w_q144{width:9rem}.lg_min_w_q144{min-width:9rem}.lg_max_w_q144{max-width:9rem}.lg_h_q144{height:9rem}.lg_min_h_q144{min-height:9rem}.lg_max_h_q144{max-height:9rem}.lg_inset_q144{bottom:9rem;left:9rem;right:9rem;top:9rem}.lg_top_q144{top:9rem}.lg_right_q144{right:9rem}.lg_bottom_q144{bottom:9rem}.lg_left_q144{left:9rem}.lg_inset_x_q144{left:9rem;right:9rem}.lg_inset_y_q144{bottom:9rem;top:9rem}.lg_border_q144{border-width:9rem}.lg_border_t_q144{border-top-width:9rem}.lg_border_r_q144{border-right-width:9rem}.lg_border_b_q144{border-bottom-width:9rem}.lg_border_l_q144,.lg_border_x_q144{border-left-width:9rem}.lg_border_x_q144{border-right-width:9rem}.lg_border_y_q144{border-bottom-width:9rem;border-top-width:9rem}.lg_rounded_q144{border-radius:9rem}.lg_rounded_t_q144{border-top-left-radius:9rem;border-top-right-radius:9rem}.lg_rounded_r_q144{border-bottom-right-radius:9rem;border-top-right-radius:9rem}.lg_rounded_b_q144{border-bottom-left-radius:9rem;border-bottom-right-radius:9rem}.lg_rounded_l_q144{border-bottom-left-radius:9rem}.lg_rounded_l_q144,.lg_rounded_tl_q144{border-top-left-radius:9rem}.lg_rounded_tr_q144{border-top-right-radius:9rem}.lg_rounded_br_q144{border-bottom-right-radius:9rem}.lg_rounded_bl_q144{border-bottom-left-radius:9rem}.lg_p_q160{padding:10rem}.lg_pt_q160{padding-top:10rem}.lg_pr_q160{padding-right:10rem}.lg_pb_q160{padding-bottom:10rem}.lg_pl_q160,.lg_px_q160{padding-left:10rem}.lg_px_q160{padding-right:10rem}.lg_py_q160{padding-bottom:10rem;padding-top:10rem}.lg_m_q160{margin:10rem}.lg_mt_q160{margin-top:10rem}.lg_mr_q160{margin-right:10rem}.lg_mb_q160{margin-bottom:10rem}.lg_ml_q160,.lg_mx_q160{margin-left:10rem}.lg_mx_q160{margin-right:10rem}.lg_my_q160{margin-bottom:10rem;margin-top:10rem}.lg_gap_q160{gap:10rem}.lg_gap_col_q160{-moz-column-gap:10rem;column-gap:10rem}.lg_gap_row_q160{row-gap:10rem}.lg_w_q160{width:10rem}.lg_min_w_q160{min-width:10rem}.lg_max_w_q160{max-width:10rem}.lg_h_q160{height:10rem}.lg_min_h_q160{min-height:10rem}.lg_max_h_q160{max-height:10rem}.lg_inset_q160{bottom:10rem;left:10rem;right:10rem;top:10rem}.lg_top_q160{top:10rem}.lg_right_q160{right:10rem}.lg_bottom_q160{bottom:10rem}.lg_left_q160{left:10rem}.lg_inset_x_q160{left:10rem;right:10rem}.lg_inset_y_q160{bottom:10rem;top:10rem}.lg_border_q160{border-width:10rem}.lg_border_t_q160{border-top-width:10rem}.lg_border_r_q160{border-right-width:10rem}.lg_border_b_q160{border-bottom-width:10rem}.lg_border_l_q160,.lg_border_x_q160{border-left-width:10rem}.lg_border_x_q160{border-right-width:10rem}.lg_border_y_q160{border-bottom-width:10rem;border-top-width:10rem}.lg_rounded_q160{border-radius:10rem}.lg_rounded_t_q160{border-top-left-radius:10rem;border-top-right-radius:10rem}.lg_rounded_r_q160{border-bottom-right-radius:10rem;border-top-right-radius:10rem}.lg_rounded_b_q160{border-bottom-left-radius:10rem;border-bottom-right-radius:10rem}.lg_rounded_l_q160{border-bottom-left-radius:10rem}.lg_rounded_l_q160,.lg_rounded_tl_q160{border-top-left-radius:10rem}.lg_rounded_tr_q160{border-top-right-radius:10rem}.lg_rounded_br_q160{border-bottom-right-radius:10rem}.lg_rounded_bl_q160{border-bottom-left-radius:10rem}.lg_p_q192{padding:12rem}.lg_pt_q192{padding-top:12rem}.lg_pr_q192{padding-right:12rem}.lg_pb_q192{padding-bottom:12rem}.lg_pl_q192,.lg_px_q192{padding-left:12rem}.lg_px_q192{padding-right:12rem}.lg_py_q192{padding-bottom:12rem;padding-top:12rem}.lg_m_q192{margin:12rem}.lg_mt_q192{margin-top:12rem}.lg_mr_q192{margin-right:12rem}.lg_mb_q192{margin-bottom:12rem}.lg_ml_q192,.lg_mx_q192{margin-left:12rem}.lg_mx_q192{margin-right:12rem}.lg_my_q192{margin-bottom:12rem;margin-top:12rem}.lg_gap_q192{gap:12rem}.lg_gap_col_q192{-moz-column-gap:12rem;column-gap:12rem}.lg_gap_row_q192{row-gap:12rem}.lg_w_q192{width:12rem}.lg_min_w_q192{min-width:12rem}.lg_max_w_q192{max-width:12rem}.lg_h_q192{height:12rem}.lg_min_h_q192{min-height:12rem}.lg_max_h_q192{max-height:12rem}.lg_inset_q192{bottom:12rem;left:12rem;right:12rem;top:12rem}.lg_top_q192{top:12rem}.lg_right_q192{right:12rem}.lg_bottom_q192{bottom:12rem}.lg_left_q192{left:12rem}.lg_inset_x_q192{left:12rem;right:12rem}.lg_inset_y_q192{bottom:12rem;top:12rem}.lg_border_q192{border-width:12rem}.lg_border_t_q192{border-top-width:12rem}.lg_border_r_q192{border-right-width:12rem}.lg_border_b_q192{border-bottom-width:12rem}.lg_border_l_q192,.lg_border_x_q192{border-left-width:12rem}.lg_border_x_q192{border-right-width:12rem}.lg_border_y_q192{border-bottom-width:12rem;border-top-width:12rem}.lg_rounded_q192{border-radius:12rem}.lg_rounded_t_q192{border-top-left-radius:12rem;border-top-right-radius:12rem}.lg_rounded_r_q192{border-bottom-right-radius:12rem;border-top-right-radius:12rem}.lg_rounded_b_q192{border-bottom-left-radius:12rem;border-bottom-right-radius:12rem}.lg_rounded_l_q192{border-bottom-left-radius:12rem}.lg_rounded_l_q192,.lg_rounded_tl_q192{border-top-left-radius:12rem}.lg_rounded_tr_q192{border-top-right-radius:12rem}.lg_rounded_br_q192{border-bottom-right-radius:12rem}.lg_rounded_bl_q192{border-bottom-left-radius:12rem}.lg_p_q224{padding:14rem}.lg_pt_q224{padding-top:14rem}.lg_pr_q224{padding-right:14rem}.lg_pb_q224{padding-bottom:14rem}.lg_pl_q224,.lg_px_q224{padding-left:14rem}.lg_px_q224{padding-right:14rem}.lg_py_q224{padding-bottom:14rem;padding-top:14rem}.lg_m_q224{margin:14rem}.lg_mt_q224{margin-top:14rem}.lg_mr_q224{margin-right:14rem}.lg_mb_q224{margin-bottom:14rem}.lg_ml_q224,.lg_mx_q224{margin-left:14rem}.lg_mx_q224{margin-right:14rem}.lg_my_q224{margin-bottom:14rem;margin-top:14rem}.lg_gap_q224{gap:14rem}.lg_gap_col_q224{-moz-column-gap:14rem;column-gap:14rem}.lg_gap_row_q224{row-gap:14rem}.lg_w_q224{width:14rem}.lg_min_w_q224{min-width:14rem}.lg_max_w_q224{max-width:14rem}.lg_h_q224{height:14rem}.lg_min_h_q224{min-height:14rem}.lg_max_h_q224{max-height:14rem}.lg_inset_q224{bottom:14rem;left:14rem;right:14rem;top:14rem}.lg_top_q224{top:14rem}.lg_right_q224{right:14rem}.lg_bottom_q224{bottom:14rem}.lg_left_q224{left:14rem}.lg_inset_x_q224{left:14rem;right:14rem}.lg_inset_y_q224{bottom:14rem;top:14rem}.lg_border_q224{border-width:14rem}.lg_border_t_q224{border-top-width:14rem}.lg_border_r_q224{border-right-width:14rem}.lg_border_b_q224{border-bottom-width:14rem}.lg_border_l_q224,.lg_border_x_q224{border-left-width:14rem}.lg_border_x_q224{border-right-width:14rem}.lg_border_y_q224{border-bottom-width:14rem;border-top-width:14rem}.lg_rounded_q224{border-radius:14rem}.lg_rounded_t_q224{border-top-left-radius:14rem;border-top-right-radius:14rem}.lg_rounded_r_q224{border-bottom-right-radius:14rem;border-top-right-radius:14rem}.lg_rounded_b_q224{border-bottom-left-radius:14rem;border-bottom-right-radius:14rem}.lg_rounded_l_q224{border-bottom-left-radius:14rem}.lg_rounded_l_q224,.lg_rounded_tl_q224{border-top-left-radius:14rem}.lg_rounded_tr_q224{border-top-right-radius:14rem}.lg_rounded_br_q224{border-bottom-right-radius:14rem}.lg_rounded_bl_q224{border-bottom-left-radius:14rem}.lg_p_q256{padding:16rem}.lg_pt_q256{padding-top:16rem}.lg_pr_q256{padding-right:16rem}.lg_pb_q256{padding-bottom:16rem}.lg_pl_q256,.lg_px_q256{padding-left:16rem}.lg_px_q256{padding-right:16rem}.lg_py_q256{padding-bottom:16rem;padding-top:16rem}.lg_m_q256{margin:16rem}.lg_mt_q256{margin-top:16rem}.lg_mr_q256{margin-right:16rem}.lg_mb_q256{margin-bottom:16rem}.lg_ml_q256,.lg_mx_q256{margin-left:16rem}.lg_mx_q256{margin-right:16rem}.lg_my_q256{margin-bottom:16rem;margin-top:16rem}.lg_gap_q256{gap:16rem}.lg_gap_col_q256{-moz-column-gap:16rem;column-gap:16rem}.lg_gap_row_q256{row-gap:16rem}.lg_w_q256{width:16rem}.lg_min_w_q256{min-width:16rem}.lg_max_w_q256{max-width:16rem}.lg_h_q256{height:16rem}.lg_min_h_q256{min-height:16rem}.lg_max_h_q256{max-height:16rem}.lg_inset_q256{bottom:16rem;left:16rem;right:16rem;top:16rem}.lg_top_q256{top:16rem}.lg_right_q256{right:16rem}.lg_bottom_q256{bottom:16rem}.lg_left_q256{left:16rem}.lg_inset_x_q256{left:16rem;right:16rem}.lg_inset_y_q256{bottom:16rem;top:16rem}.lg_border_q256{border-width:16rem}.lg_border_t_q256{border-top-width:16rem}.lg_border_r_q256{border-right-width:16rem}.lg_border_b_q256{border-bottom-width:16rem}.lg_border_l_q256,.lg_border_x_q256{border-left-width:16rem}.lg_border_x_q256{border-right-width:16rem}.lg_border_y_q256{border-bottom-width:16rem;border-top-width:16rem}.lg_rounded_q256{border-radius:16rem}.lg_rounded_t_q256{border-top-left-radius:16rem;border-top-right-radius:16rem}.lg_rounded_r_q256{border-bottom-right-radius:16rem;border-top-right-radius:16rem}.lg_rounded_b_q256{border-bottom-left-radius:16rem;border-bottom-right-radius:16rem}.lg_rounded_l_q256{border-bottom-left-radius:16rem}.lg_rounded_l_q256,.lg_rounded_tl_q256{border-top-left-radius:16rem}.lg_rounded_tr_q256{border-top-right-radius:16rem}.lg_rounded_br_q256{border-bottom-right-radius:16rem}.lg_rounded_bl_q256{border-bottom-left-radius:16rem}}@media(min-width:2880px){.xl_p_q0{padding:0}.xl_pt_q0{padding-top:0}.xl_pr_q0{padding-right:0}.xl_pb_q0{padding-bottom:0}.xl_pl_q0,.xl_px_q0{padding-left:0}.xl_px_q0{padding-right:0}.xl_py_q0{padding-bottom:0;padding-top:0}.xl_m_q0{margin:0}.xl_mt_q0{margin-top:0}.xl_mr_q0{margin-right:0}.xl_mb_q0{margin-bottom:0}.xl_ml_q0,.xl_mx_q0{margin-left:0}.xl_mx_q0{margin-right:0}.xl_my_q0{margin-bottom:0;margin-top:0}.xl_gap_q0{gap:0}.xl_gap_col_q0{-moz-column-gap:0;column-gap:0}.xl_gap_row_q0{row-gap:0}.xl_w_q0{width:0}.xl_min_w_q0{min-width:0}.xl_max_w_q0{max-width:0}.xl_h_q0{height:0}.xl_min_h_q0{min-height:0}.xl_max_h_q0{max-height:0}.xl_inset_q0{bottom:0;left:0;right:0;top:0}.xl_top_q0{top:0}.xl_right_q0{right:0}.xl_bottom_q0{bottom:0}.xl_left_q0{left:0}.xl_inset_x_q0{left:0;right:0}.xl_inset_y_q0{bottom:0;top:0}.xl_border_q0{border-width:0}.xl_border_t_q0{border-top-width:0}.xl_border_r_q0{border-right-width:0}.xl_border_b_q0{border-bottom-width:0}.xl_border_l_q0,.xl_border_x_q0{border-left-width:0}.xl_border_x_q0{border-right-width:0}.xl_border_y_q0{border-bottom-width:0;border-top-width:0}.xl_rounded_q0{border-radius:0}.xl_rounded_t_q0{border-top-left-radius:0;border-top-right-radius:0}.xl_rounded_r_q0{border-bottom-right-radius:0;border-top-right-radius:0}.xl_rounded_b_q0{border-bottom-left-radius:0;border-bottom-right-radius:0}.xl_rounded_l_q0{border-bottom-left-radius:0}.xl_rounded_l_q0,.xl_rounded_tl_q0{border-top-left-radius:0}.xl_rounded_tr_q0{border-top-right-radius:0}.xl_rounded_br_q0{border-bottom-right-radius:0}.xl_rounded_bl_q0{border-bottom-left-radius:0}.xl_p_q1{padding:.0625rem}.xl_pt_q1{padding-top:.0625rem}.xl_pr_q1{padding-right:.0625rem}.xl_pb_q1{padding-bottom:.0625rem}.xl_pl_q1,.xl_px_q1{padding-left:.0625rem}.xl_px_q1{padding-right:.0625rem}.xl_py_q1{padding-bottom:.0625rem;padding-top:.0625rem}.xl_m_q1{margin:.0625rem}.xl_mt_q1{margin-top:.0625rem}.xl_mr_q1{margin-right:.0625rem}.xl_mb_q1{margin-bottom:.0625rem}.xl_ml_q1,.xl_mx_q1{margin-left:.0625rem}.xl_mx_q1{margin-right:.0625rem}.xl_my_q1{margin-bottom:.0625rem;margin-top:.0625rem}.xl_gap_q1{gap:.0625rem}.xl_gap_col_q1{-moz-column-gap:.0625rem;column-gap:.0625rem}.xl_gap_row_q1{row-gap:.0625rem}.xl_w_q1{width:.0625rem}.xl_min_w_q1{min-width:.0625rem}.xl_max_w_q1{max-width:.0625rem}.xl_h_q1{height:.0625rem}.xl_min_h_q1{min-height:.0625rem}.xl_max_h_q1{max-height:.0625rem}.xl_inset_q1{bottom:.0625rem;left:.0625rem;right:.0625rem;top:.0625rem}.xl_top_q1{top:.0625rem}.xl_right_q1{right:.0625rem}.xl_bottom_q1{bottom:.0625rem}.xl_left_q1{left:.0625rem}.xl_inset_x_q1{left:.0625rem;right:.0625rem}.xl_inset_y_q1{bottom:.0625rem;top:.0625rem}.xl_border_q1{border-width:.0625rem}.xl_border_t_q1{border-top-width:.0625rem}.xl_border_r_q1{border-right-width:.0625rem}.xl_border_b_q1{border-bottom-width:.0625rem}.xl_border_l_q1,.xl_border_x_q1{border-left-width:.0625rem}.xl_border_x_q1{border-right-width:.0625rem}.xl_border_y_q1{border-bottom-width:.0625rem;border-top-width:.0625rem}.xl_rounded_q1{border-radius:.0625rem}.xl_rounded_t_q1{border-top-left-radius:.0625rem;border-top-right-radius:.0625rem}.xl_rounded_r_q1{border-top-right-radius:.0625rem}.xl_rounded_b_q1,.xl_rounded_r_q1{border-bottom-right-radius:.0625rem}.xl_rounded_b_q1,.xl_rounded_l_q1{border-bottom-left-radius:.0625rem}.xl_rounded_l_q1,.xl_rounded_tl_q1{border-top-left-radius:.0625rem}.xl_rounded_tr_q1{border-top-right-radius:.0625rem}.xl_rounded_br_q1{border-bottom-right-radius:.0625rem}.xl_rounded_bl_q1{border-bottom-left-radius:.0625rem}.xl_p_q2{padding:.125rem}.xl_pt_q2{padding-top:.125rem}.xl_pr_q2{padding-right:.125rem}.xl_pb_q2{padding-bottom:.125rem}.xl_pl_q2,.xl_px_q2{padding-left:.125rem}.xl_px_q2{padding-right:.125rem}.xl_py_q2{padding-bottom:.125rem;padding-top:.125rem}.xl_m_q2{margin:.125rem}.xl_mt_q2{margin-top:.125rem}.xl_mr_q2{margin-right:.125rem}.xl_mb_q2{margin-bottom:.125rem}.xl_ml_q2,.xl_mx_q2{margin-left:.125rem}.xl_mx_q2{margin-right:.125rem}.xl_my_q2{margin-bottom:.125rem;margin-top:.125rem}.xl_gap_q2{gap:.125rem}.xl_gap_col_q2{-moz-column-gap:.125rem;column-gap:.125rem}.xl_gap_row_q2{row-gap:.125rem}.xl_w_q2{width:.125rem}.xl_min_w_q2{min-width:.125rem}.xl_max_w_q2{max-width:.125rem}.xl_h_q2{height:.125rem}.xl_min_h_q2{min-height:.125rem}.xl_max_h_q2{max-height:.125rem}.xl_inset_q2{bottom:.125rem;left:.125rem;right:.125rem;top:.125rem}.xl_top_q2{top:.125rem}.xl_right_q2{right:.125rem}.xl_bottom_q2{bottom:.125rem}.xl_left_q2{left:.125rem}.xl_inset_x_q2{left:.125rem;right:.125rem}.xl_inset_y_q2{bottom:.125rem;top:.125rem}.xl_border_q2{border-width:.125rem}.xl_border_t_q2{border-top-width:.125rem}.xl_border_r_q2{border-right-width:.125rem}.xl_border_b_q2{border-bottom-width:.125rem}.xl_border_l_q2,.xl_border_x_q2{border-left-width:.125rem}.xl_border_x_q2{border-right-width:.125rem}.xl_border_y_q2{border-bottom-width:.125rem;border-top-width:.125rem}.xl_rounded_q2{border-radius:.125rem}.xl_rounded_t_q2{border-top-left-radius:.125rem;border-top-right-radius:.125rem}.xl_rounded_r_q2{border-top-right-radius:.125rem}.xl_rounded_b_q2,.xl_rounded_r_q2{border-bottom-right-radius:.125rem}.xl_rounded_b_q2,.xl_rounded_l_q2{border-bottom-left-radius:.125rem}.xl_rounded_l_q2,.xl_rounded_tl_q2{border-top-left-radius:.125rem}.xl_rounded_tr_q2{border-top-right-radius:.125rem}.xl_rounded_br_q2{border-bottom-right-radius:.125rem}.xl_rounded_bl_q2{border-bottom-left-radius:.125rem}.xl_p_q4{padding:.25rem}.xl_pt_q4{padding-top:.25rem}.xl_pr_q4{padding-right:.25rem}.xl_pb_q4{padding-bottom:.25rem}.xl_pl_q4,.xl_px_q4{padding-left:.25rem}.xl_px_q4{padding-right:.25rem}.xl_py_q4{padding-bottom:.25rem;padding-top:.25rem}.xl_m_q4{margin:.25rem}.xl_mt_q4{margin-top:.25rem}.xl_mr_q4{margin-right:.25rem}.xl_mb_q4{margin-bottom:.25rem}.xl_ml_q4,.xl_mx_q4{margin-left:.25rem}.xl_mx_q4{margin-right:.25rem}.xl_my_q4{margin-bottom:.25rem;margin-top:.25rem}.xl_gap_q4{gap:.25rem}.xl_gap_col_q4{-moz-column-gap:.25rem;column-gap:.25rem}.xl_gap_row_q4{row-gap:.25rem}.xl_w_q4{width:.25rem}.xl_min_w_q4{min-width:.25rem}.xl_max_w_q4{max-width:.25rem}.xl_h_q4{height:.25rem}.xl_min_h_q4{min-height:.25rem}.xl_max_h_q4{max-height:.25rem}.xl_inset_q4{bottom:.25rem;left:.25rem;right:.25rem;top:.25rem}.xl_top_q4{top:.25rem}.xl_right_q4{right:.25rem}.xl_bottom_q4{bottom:.25rem}.xl_left_q4{left:.25rem}.xl_inset_x_q4{left:.25rem;right:.25rem}.xl_inset_y_q4{bottom:.25rem;top:.25rem}.xl_border_q4{border-width:.25rem}.xl_border_t_q4{border-top-width:.25rem}.xl_border_r_q4{border-right-width:.25rem}.xl_border_b_q4{border-bottom-width:.25rem}.xl_border_l_q4,.xl_border_x_q4{border-left-width:.25rem}.xl_border_x_q4{border-right-width:.25rem}.xl_border_y_q4{border-bottom-width:.25rem;border-top-width:.25rem}.xl_rounded_q4{border-radius:.25rem}.xl_rounded_t_q4{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.xl_rounded_r_q4{border-bottom-right-radius:.25rem;border-top-right-radius:.25rem}.xl_rounded_b_q4{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.xl_rounded_l_q4{border-bottom-left-radius:.25rem}.xl_rounded_l_q4,.xl_rounded_tl_q4{border-top-left-radius:.25rem}.xl_rounded_tr_q4{border-top-right-radius:.25rem}.xl_rounded_br_q4{border-bottom-right-radius:.25rem}.xl_rounded_bl_q4{border-bottom-left-radius:.25rem}.xl_p_q6{padding:.375rem}.xl_pt_q6{padding-top:.375rem}.xl_pr_q6{padding-right:.375rem}.xl_pb_q6{padding-bottom:.375rem}.xl_pl_q6,.xl_px_q6{padding-left:.375rem}.xl_px_q6{padding-right:.375rem}.xl_py_q6{padding-bottom:.375rem;padding-top:.375rem}.xl_m_q6{margin:.375rem}.xl_mt_q6{margin-top:.375rem}.xl_mr_q6{margin-right:.375rem}.xl_mb_q6{margin-bottom:.375rem}.xl_ml_q6,.xl_mx_q6{margin-left:.375rem}.xl_mx_q6{margin-right:.375rem}.xl_my_q6{margin-bottom:.375rem;margin-top:.375rem}.xl_gap_q6{gap:.375rem}.xl_gap_col_q6{-moz-column-gap:.375rem;column-gap:.375rem}.xl_gap_row_q6{row-gap:.375rem}.xl_w_q6{width:.375rem}.xl_min_w_q6{min-width:.375rem}.xl_max_w_q6{max-width:.375rem}.xl_h_q6{height:.375rem}.xl_min_h_q6{min-height:.375rem}.xl_max_h_q6{max-height:.375rem}.xl_inset_q6{bottom:.375rem;left:.375rem;right:.375rem;top:.375rem}.xl_top_q6{top:.375rem}.xl_right_q6{right:.375rem}.xl_bottom_q6{bottom:.375rem}.xl_left_q6{left:.375rem}.xl_inset_x_q6{left:.375rem;right:.375rem}.xl_inset_y_q6{bottom:.375rem;top:.375rem}.xl_border_q6{border-width:.375rem}.xl_border_t_q6{border-top-width:.375rem}.xl_border_r_q6{border-right-width:.375rem}.xl_border_b_q6{border-bottom-width:.375rem}.xl_border_l_q6,.xl_border_x_q6{border-left-width:.375rem}.xl_border_x_q6{border-right-width:.375rem}.xl_border_y_q6{border-bottom-width:.375rem;border-top-width:.375rem}.xl_rounded_q6{border-radius:.375rem}.xl_rounded_t_q6{border-top-left-radius:.375rem;border-top-right-radius:.375rem}.xl_rounded_r_q6{border-top-right-radius:.375rem}.xl_rounded_b_q6,.xl_rounded_r_q6{border-bottom-right-radius:.375rem}.xl_rounded_b_q6,.xl_rounded_l_q6{border-bottom-left-radius:.375rem}.xl_rounded_l_q6,.xl_rounded_tl_q6{border-top-left-radius:.375rem}.xl_rounded_tr_q6{border-top-right-radius:.375rem}.xl_rounded_br_q6{border-bottom-right-radius:.375rem}.xl_rounded_bl_q6{border-bottom-left-radius:.375rem}.xl_p_q8{padding:.5rem}.xl_pt_q8{padding-top:.5rem}.xl_pr_q8{padding-right:.5rem}.xl_pb_q8{padding-bottom:.5rem}.xl_pl_q8,.xl_px_q8{padding-left:.5rem}.xl_px_q8{padding-right:.5rem}.xl_py_q8{padding-bottom:.5rem;padding-top:.5rem}.xl_m_q8{margin:.5rem}.xl_mt_q8{margin-top:.5rem}.xl_mr_q8{margin-right:.5rem}.xl_mb_q8{margin-bottom:.5rem}.xl_ml_q8,.xl_mx_q8{margin-left:.5rem}.xl_mx_q8{margin-right:.5rem}.xl_my_q8{margin-bottom:.5rem;margin-top:.5rem}.xl_gap_q8{gap:.5rem}.xl_gap_col_q8{-moz-column-gap:.5rem;column-gap:.5rem}.xl_gap_row_q8{row-gap:.5rem}.xl_w_q8{width:.5rem}.xl_min_w_q8{min-width:.5rem}.xl_max_w_q8{max-width:.5rem}.xl_h_q8{height:.5rem}.xl_min_h_q8{min-height:.5rem}.xl_max_h_q8{max-height:.5rem}.xl_inset_q8{bottom:.5rem;left:.5rem;right:.5rem;top:.5rem}.xl_top_q8{top:.5rem}.xl_right_q8{right:.5rem}.xl_bottom_q8{bottom:.5rem}.xl_left_q8{left:.5rem}.xl_inset_x_q8{left:.5rem;right:.5rem}.xl_inset_y_q8{bottom:.5rem;top:.5rem}.xl_border_q8{border-width:.5rem}.xl_border_t_q8{border-top-width:.5rem}.xl_border_r_q8{border-right-width:.5rem}.xl_border_b_q8{border-bottom-width:.5rem}.xl_border_l_q8,.xl_border_x_q8{border-left-width:.5rem}.xl_border_x_q8{border-right-width:.5rem}.xl_border_y_q8{border-bottom-width:.5rem;border-top-width:.5rem}.xl_rounded_q8{border-radius:.5rem}.xl_rounded_t_q8{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.xl_rounded_r_q8{border-bottom-right-radius:.5rem;border-top-right-radius:.5rem}.xl_rounded_b_q8{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.xl_rounded_l_q8{border-bottom-left-radius:.5rem}.xl_rounded_l_q8,.xl_rounded_tl_q8{border-top-left-radius:.5rem}.xl_rounded_tr_q8{border-top-right-radius:.5rem}.xl_rounded_br_q8{border-bottom-right-radius:.5rem}.xl_rounded_bl_q8{border-bottom-left-radius:.5rem}.xl_p_q12{padding:.75rem}.xl_pt_q12{padding-top:.75rem}.xl_pr_q12{padding-right:.75rem}.xl_pb_q12{padding-bottom:.75rem}.xl_pl_q12,.xl_px_q12{padding-left:.75rem}.xl_px_q12{padding-right:.75rem}.xl_py_q12{padding-bottom:.75rem;padding-top:.75rem}.xl_m_q12{margin:.75rem}.xl_mt_q12{margin-top:.75rem}.xl_mr_q12{margin-right:.75rem}.xl_mb_q12{margin-bottom:.75rem}.xl_ml_q12,.xl_mx_q12{margin-left:.75rem}.xl_mx_q12{margin-right:.75rem}.xl_my_q12{margin-bottom:.75rem;margin-top:.75rem}.xl_gap_q12{gap:.75rem}.xl_gap_col_q12{-moz-column-gap:.75rem;column-gap:.75rem}.xl_gap_row_q12{row-gap:.75rem}.xl_w_q12{width:.75rem}.xl_min_w_q12{min-width:.75rem}.xl_max_w_q12{max-width:.75rem}.xl_h_q12{height:.75rem}.xl_min_h_q12{min-height:.75rem}.xl_max_h_q12{max-height:.75rem}.xl_inset_q12{bottom:.75rem;left:.75rem;right:.75rem;top:.75rem}.xl_top_q12{top:.75rem}.xl_right_q12{right:.75rem}.xl_bottom_q12{bottom:.75rem}.xl_left_q12{left:.75rem}.xl_inset_x_q12{left:.75rem;right:.75rem}.xl_inset_y_q12{bottom:.75rem;top:.75rem}.xl_border_q12{border-width:.75rem}.xl_border_t_q12{border-top-width:.75rem}.xl_border_r_q12{border-right-width:.75rem}.xl_border_b_q12{border-bottom-width:.75rem}.xl_border_l_q12,.xl_border_x_q12{border-left-width:.75rem}.xl_border_x_q12{border-right-width:.75rem}.xl_border_y_q12{border-bottom-width:.75rem;border-top-width:.75rem}.xl_rounded_q12{border-radius:.75rem}.xl_rounded_t_q12{border-top-left-radius:.75rem;border-top-right-radius:.75rem}.xl_rounded_r_q12{border-bottom-right-radius:.75rem;border-top-right-radius:.75rem}.xl_rounded_b_q12{border-bottom-left-radius:.75rem;border-bottom-right-radius:.75rem}.xl_rounded_l_q12{border-bottom-left-radius:.75rem}.xl_rounded_l_q12,.xl_rounded_tl_q12{border-top-left-radius:.75rem}.xl_rounded_tr_q12{border-top-right-radius:.75rem}.xl_rounded_br_q12{border-bottom-right-radius:.75rem}.xl_rounded_bl_q12{border-bottom-left-radius:.75rem}.xl_p_q16{padding:1rem}.xl_pt_q16{padding-top:1rem}.xl_pr_q16{padding-right:1rem}.xl_pb_q16{padding-bottom:1rem}.xl_pl_q16,.xl_px_q16{padding-left:1rem}.xl_px_q16{padding-right:1rem}.xl_py_q16{padding-bottom:1rem;padding-top:1rem}.xl_m_q16{margin:1rem}.xl_mt_q16{margin-top:1rem}.xl_mr_q16{margin-right:1rem}.xl_mb_q16{margin-bottom:1rem}.xl_ml_q16,.xl_mx_q16{margin-left:1rem}.xl_mx_q16{margin-right:1rem}.xl_my_q16{margin-bottom:1rem;margin-top:1rem}.xl_gap_q16{gap:1rem}.xl_gap_col_q16{-moz-column-gap:1rem;column-gap:1rem}.xl_gap_row_q16{row-gap:1rem}.xl_w_q16{width:1rem}.xl_min_w_q16{min-width:1rem}.xl_max_w_q16{max-width:1rem}.xl_h_q16{height:1rem}.xl_min_h_q16{min-height:1rem}.xl_max_h_q16{max-height:1rem}.xl_inset_q16{bottom:1rem;left:1rem;right:1rem;top:1rem}.xl_top_q16{top:1rem}.xl_right_q16{right:1rem}.xl_bottom_q16{bottom:1rem}.xl_left_q16{left:1rem}.xl_inset_x_q16{left:1rem;right:1rem}.xl_inset_y_q16{bottom:1rem;top:1rem}.xl_border_q16{border-width:1rem}.xl_border_t_q16{border-top-width:1rem}.xl_border_r_q16{border-right-width:1rem}.xl_border_b_q16{border-bottom-width:1rem}.xl_border_l_q16,.xl_border_x_q16{border-left-width:1rem}.xl_border_x_q16{border-right-width:1rem}.xl_border_y_q16{border-bottom-width:1rem;border-top-width:1rem}.xl_rounded_q16{border-radius:1rem}.xl_rounded_t_q16{border-top-left-radius:1rem;border-top-right-radius:1rem}.xl_rounded_r_q16{border-bottom-right-radius:1rem;border-top-right-radius:1rem}.xl_rounded_b_q16{border-bottom-left-radius:1rem;border-bottom-right-radius:1rem}.xl_rounded_l_q16{border-bottom-left-radius:1rem}.xl_rounded_l_q16,.xl_rounded_tl_q16{border-top-left-radius:1rem}.xl_rounded_tr_q16{border-top-right-radius:1rem}.xl_rounded_br_q16{border-bottom-right-radius:1rem}.xl_rounded_bl_q16{border-bottom-left-radius:1rem}.xl_p_q20{padding:1.25rem}.xl_pt_q20{padding-top:1.25rem}.xl_pr_q20{padding-right:1.25rem}.xl_pb_q20{padding-bottom:1.25rem}.xl_pl_q20,.xl_px_q20{padding-left:1.25rem}.xl_px_q20{padding-right:1.25rem}.xl_py_q20{padding-bottom:1.25rem;padding-top:1.25rem}.xl_m_q20{margin:1.25rem}.xl_mt_q20{margin-top:1.25rem}.xl_mr_q20{margin-right:1.25rem}.xl_mb_q20{margin-bottom:1.25rem}.xl_ml_q20,.xl_mx_q20{margin-left:1.25rem}.xl_mx_q20{margin-right:1.25rem}.xl_my_q20{margin-bottom:1.25rem;margin-top:1.25rem}.xl_gap_q20{gap:1.25rem}.xl_gap_col_q20{-moz-column-gap:1.25rem;column-gap:1.25rem}.xl_gap_row_q20{row-gap:1.25rem}.xl_w_q20{width:1.25rem}.xl_min_w_q20{min-width:1.25rem}.xl_max_w_q20{max-width:1.25rem}.xl_h_q20{height:1.25rem}.xl_min_h_q20{min-height:1.25rem}.xl_max_h_q20{max-height:1.25rem}.xl_inset_q20{bottom:1.25rem;left:1.25rem;right:1.25rem;top:1.25rem}.xl_top_q20{top:1.25rem}.xl_right_q20{right:1.25rem}.xl_bottom_q20{bottom:1.25rem}.xl_left_q20{left:1.25rem}.xl_inset_x_q20{left:1.25rem;right:1.25rem}.xl_inset_y_q20{bottom:1.25rem;top:1.25rem}.xl_border_q20{border-width:1.25rem}.xl_border_t_q20{border-top-width:1.25rem}.xl_border_r_q20{border-right-width:1.25rem}.xl_border_b_q20{border-bottom-width:1.25rem}.xl_border_l_q20,.xl_border_x_q20{border-left-width:1.25rem}.xl_border_x_q20{border-right-width:1.25rem}.xl_border_y_q20{border-bottom-width:1.25rem;border-top-width:1.25rem}.xl_rounded_q20{border-radius:1.25rem}.xl_rounded_t_q20{border-top-left-radius:1.25rem;border-top-right-radius:1.25rem}.xl_rounded_r_q20{border-bottom-right-radius:1.25rem;border-top-right-radius:1.25rem}.xl_rounded_b_q20{border-bottom-left-radius:1.25rem;border-bottom-right-radius:1.25rem}.xl_rounded_l_q20{border-bottom-left-radius:1.25rem}.xl_rounded_l_q20,.xl_rounded_tl_q20{border-top-left-radius:1.25rem}.xl_rounded_tr_q20{border-top-right-radius:1.25rem}.xl_rounded_br_q20{border-bottom-right-radius:1.25rem}.xl_rounded_bl_q20{border-bottom-left-radius:1.25rem}.xl_p_q24{padding:1.5rem}.xl_pt_q24{padding-top:1.5rem}.xl_pr_q24{padding-right:1.5rem}.xl_pb_q24{padding-bottom:1.5rem}.xl_pl_q24,.xl_px_q24{padding-left:1.5rem}.xl_px_q24{padding-right:1.5rem}.xl_py_q24{padding-bottom:1.5rem;padding-top:1.5rem}.xl_m_q24{margin:1.5rem}.xl_mt_q24{margin-top:1.5rem}.xl_mr_q24{margin-right:1.5rem}.xl_mb_q24{margin-bottom:1.5rem}.xl_ml_q24,.xl_mx_q24{margin-left:1.5rem}.xl_mx_q24{margin-right:1.5rem}.xl_my_q24{margin-bottom:1.5rem;margin-top:1.5rem}.xl_gap_q24{gap:1.5rem}.xl_gap_col_q24{-moz-column-gap:1.5rem;column-gap:1.5rem}.xl_gap_row_q24{row-gap:1.5rem}.xl_w_q24{width:1.5rem}.xl_min_w_q24{min-width:1.5rem}.xl_max_w_q24{max-width:1.5rem}.xl_h_q24{height:1.5rem}.xl_min_h_q24{min-height:1.5rem}.xl_max_h_q24{max-height:1.5rem}.xl_inset_q24{bottom:1.5rem;left:1.5rem;right:1.5rem;top:1.5rem}.xl_top_q24{top:1.5rem}.xl_right_q24{right:1.5rem}.xl_bottom_q24{bottom:1.5rem}.xl_left_q24{left:1.5rem}.xl_inset_x_q24{left:1.5rem;right:1.5rem}.xl_inset_y_q24{bottom:1.5rem;top:1.5rem}.xl_border_q24{border-width:1.5rem}.xl_border_t_q24{border-top-width:1.5rem}.xl_border_r_q24{border-right-width:1.5rem}.xl_border_b_q24{border-bottom-width:1.5rem}.xl_border_l_q24,.xl_border_x_q24{border-left-width:1.5rem}.xl_border_x_q24{border-right-width:1.5rem}.xl_border_y_q24{border-bottom-width:1.5rem;border-top-width:1.5rem}.xl_rounded_q24{border-radius:1.5rem}.xl_rounded_t_q24{border-top-left-radius:1.5rem;border-top-right-radius:1.5rem}.xl_rounded_r_q24{border-bottom-right-radius:1.5rem;border-top-right-radius:1.5rem}.xl_rounded_b_q24{border-bottom-left-radius:1.5rem;border-bottom-right-radius:1.5rem}.xl_rounded_l_q24{border-bottom-left-radius:1.5rem}.xl_rounded_l_q24,.xl_rounded_tl_q24{border-top-left-radius:1.5rem}.xl_rounded_tr_q24{border-top-right-radius:1.5rem}.xl_rounded_br_q24{border-bottom-right-radius:1.5rem}.xl_rounded_bl_q24{border-bottom-left-radius:1.5rem}.xl_p_q32{padding:2rem}.xl_pt_q32{padding-top:2rem}.xl_pr_q32{padding-right:2rem}.xl_pb_q32{padding-bottom:2rem}.xl_pl_q32,.xl_px_q32{padding-left:2rem}.xl_px_q32{padding-right:2rem}.xl_py_q32{padding-bottom:2rem;padding-top:2rem}.xl_m_q32{margin:2rem}.xl_mt_q32{margin-top:2rem}.xl_mr_q32{margin-right:2rem}.xl_mb_q32{margin-bottom:2rem}.xl_ml_q32,.xl_mx_q32{margin-left:2rem}.xl_mx_q32{margin-right:2rem}.xl_my_q32{margin-bottom:2rem;margin-top:2rem}.xl_gap_q32{gap:2rem}.xl_gap_col_q32{-moz-column-gap:2rem;column-gap:2rem}.xl_gap_row_q32{row-gap:2rem}.xl_w_q32{width:2rem}.xl_min_w_q32{min-width:2rem}.xl_max_w_q32{max-width:2rem}.xl_h_q32{height:2rem}.xl_min_h_q32{min-height:2rem}.xl_max_h_q32{max-height:2rem}.xl_inset_q32{bottom:2rem;left:2rem;right:2rem;top:2rem}.xl_top_q32{top:2rem}.xl_right_q32{right:2rem}.xl_bottom_q32{bottom:2rem}.xl_left_q32{left:2rem}.xl_inset_x_q32{left:2rem;right:2rem}.xl_inset_y_q32{bottom:2rem;top:2rem}.xl_border_q32{border-width:2rem}.xl_border_t_q32{border-top-width:2rem}.xl_border_r_q32{border-right-width:2rem}.xl_border_b_q32{border-bottom-width:2rem}.xl_border_l_q32,.xl_border_x_q32{border-left-width:2rem}.xl_border_x_q32{border-right-width:2rem}.xl_border_y_q32{border-bottom-width:2rem;border-top-width:2rem}.xl_rounded_q32{border-radius:2rem}.xl_rounded_t_q32{border-top-left-radius:2rem;border-top-right-radius:2rem}.xl_rounded_r_q32{border-bottom-right-radius:2rem;border-top-right-radius:2rem}.xl_rounded_b_q32{border-bottom-left-radius:2rem;border-bottom-right-radius:2rem}.xl_rounded_l_q32{border-bottom-left-radius:2rem}.xl_rounded_l_q32,.xl_rounded_tl_q32{border-top-left-radius:2rem}.xl_rounded_tr_q32{border-top-right-radius:2rem}.xl_rounded_br_q32{border-bottom-right-radius:2rem}.xl_rounded_bl_q32{border-bottom-left-radius:2rem}.xl_p_q40{padding:2.5rem}.xl_pt_q40{padding-top:2.5rem}.xl_pr_q40{padding-right:2.5rem}.xl_pb_q40{padding-bottom:2.5rem}.xl_pl_q40,.xl_px_q40{padding-left:2.5rem}.xl_px_q40{padding-right:2.5rem}.xl_py_q40{padding-bottom:2.5rem;padding-top:2.5rem}.xl_m_q40{margin:2.5rem}.xl_mt_q40{margin-top:2.5rem}.xl_mr_q40{margin-right:2.5rem}.xl_mb_q40{margin-bottom:2.5rem}.xl_ml_q40,.xl_mx_q40{margin-left:2.5rem}.xl_mx_q40{margin-right:2.5rem}.xl_my_q40{margin-bottom:2.5rem;margin-top:2.5rem}.xl_gap_q40{gap:2.5rem}.xl_gap_col_q40{-moz-column-gap:2.5rem;column-gap:2.5rem}.xl_gap_row_q40{row-gap:2.5rem}.xl_w_q40{width:2.5rem}.xl_min_w_q40{min-width:2.5rem}.xl_max_w_q40{max-width:2.5rem}.xl_h_q40{height:2.5rem}.xl_min_h_q40{min-height:2.5rem}.xl_max_h_q40{max-height:2.5rem}.xl_inset_q40{bottom:2.5rem;left:2.5rem;right:2.5rem;top:2.5rem}.xl_top_q40{top:2.5rem}.xl_right_q40{right:2.5rem}.xl_bottom_q40{bottom:2.5rem}.xl_left_q40{left:2.5rem}.xl_inset_x_q40{left:2.5rem;right:2.5rem}.xl_inset_y_q40{bottom:2.5rem;top:2.5rem}.xl_border_q40{border-width:2.5rem}.xl_border_t_q40{border-top-width:2.5rem}.xl_border_r_q40{border-right-width:2.5rem}.xl_border_b_q40{border-bottom-width:2.5rem}.xl_border_l_q40,.xl_border_x_q40{border-left-width:2.5rem}.xl_border_x_q40{border-right-width:2.5rem}.xl_border_y_q40{border-bottom-width:2.5rem;border-top-width:2.5rem}.xl_rounded_q40{border-radius:2.5rem}.xl_rounded_t_q40{border-top-left-radius:2.5rem;border-top-right-radius:2.5rem}.xl_rounded_r_q40{border-bottom-right-radius:2.5rem;border-top-right-radius:2.5rem}.xl_rounded_b_q40{border-bottom-left-radius:2.5rem;border-bottom-right-radius:2.5rem}.xl_rounded_l_q40{border-bottom-left-radius:2.5rem}.xl_rounded_l_q40,.xl_rounded_tl_q40{border-top-left-radius:2.5rem}.xl_rounded_tr_q40{border-top-right-radius:2.5rem}.xl_rounded_br_q40{border-bottom-right-radius:2.5rem}.xl_rounded_bl_q40{border-bottom-left-radius:2.5rem}.xl_p_q48{padding:3rem}.xl_pt_q48{padding-top:3rem}.xl_pr_q48{padding-right:3rem}.xl_pb_q48{padding-bottom:3rem}.xl_pl_q48,.xl_px_q48{padding-left:3rem}.xl_px_q48{padding-right:3rem}.xl_py_q48{padding-bottom:3rem;padding-top:3rem}.xl_m_q48{margin:3rem}.xl_mt_q48{margin-top:3rem}.xl_mr_q48{margin-right:3rem}.xl_mb_q48{margin-bottom:3rem}.xl_ml_q48,.xl_mx_q48{margin-left:3rem}.xl_mx_q48{margin-right:3rem}.xl_my_q48{margin-bottom:3rem;margin-top:3rem}.xl_gap_q48{gap:3rem}.xl_gap_col_q48{-moz-column-gap:3rem;column-gap:3rem}.xl_gap_row_q48{row-gap:3rem}.xl_w_q48{width:3rem}.xl_min_w_q48{min-width:3rem}.xl_max_w_q48{max-width:3rem}.xl_h_q48{height:3rem}.xl_min_h_q48{min-height:3rem}.xl_max_h_q48{max-height:3rem}.xl_inset_q48{bottom:3rem;left:3rem;right:3rem;top:3rem}.xl_top_q48{top:3rem}.xl_right_q48{right:3rem}.xl_bottom_q48{bottom:3rem}.xl_left_q48{left:3rem}.xl_inset_x_q48{left:3rem;right:3rem}.xl_inset_y_q48{bottom:3rem;top:3rem}.xl_border_q48{border-width:3rem}.xl_border_t_q48{border-top-width:3rem}.xl_border_r_q48{border-right-width:3rem}.xl_border_b_q48{border-bottom-width:3rem}.xl_border_l_q48,.xl_border_x_q48{border-left-width:3rem}.xl_border_x_q48{border-right-width:3rem}.xl_border_y_q48{border-bottom-width:3rem;border-top-width:3rem}.xl_rounded_q48{border-radius:3rem}.xl_rounded_t_q48{border-top-left-radius:3rem;border-top-right-radius:3rem}.xl_rounded_r_q48{border-bottom-right-radius:3rem;border-top-right-radius:3rem}.xl_rounded_b_q48{border-bottom-left-radius:3rem;border-bottom-right-radius:3rem}.xl_rounded_l_q48{border-bottom-left-radius:3rem}.xl_rounded_l_q48,.xl_rounded_tl_q48{border-top-left-radius:3rem}.xl_rounded_tr_q48{border-top-right-radius:3rem}.xl_rounded_br_q48{border-bottom-right-radius:3rem}.xl_rounded_bl_q48{border-bottom-left-radius:3rem}.xl_p_q56{padding:3.5rem}.xl_pt_q56{padding-top:3.5rem}.xl_pr_q56{padding-right:3.5rem}.xl_pb_q56{padding-bottom:3.5rem}.xl_pl_q56,.xl_px_q56{padding-left:3.5rem}.xl_px_q56{padding-right:3.5rem}.xl_py_q56{padding-bottom:3.5rem;padding-top:3.5rem}.xl_m_q56{margin:3.5rem}.xl_mt_q56{margin-top:3.5rem}.xl_mr_q56{margin-right:3.5rem}.xl_mb_q56{margin-bottom:3.5rem}.xl_ml_q56,.xl_mx_q56{margin-left:3.5rem}.xl_mx_q56{margin-right:3.5rem}.xl_my_q56{margin-bottom:3.5rem;margin-top:3.5rem}.xl_gap_q56{gap:3.5rem}.xl_gap_col_q56{-moz-column-gap:3.5rem;column-gap:3.5rem}.xl_gap_row_q56{row-gap:3.5rem}.xl_w_q56{width:3.5rem}.xl_min_w_q56{min-width:3.5rem}.xl_max_w_q56{max-width:3.5rem}.xl_h_q56{height:3.5rem}.xl_min_h_q56{min-height:3.5rem}.xl_max_h_q56{max-height:3.5rem}.xl_inset_q56{bottom:3.5rem;left:3.5rem;right:3.5rem;top:3.5rem}.xl_top_q56{top:3.5rem}.xl_right_q56{right:3.5rem}.xl_bottom_q56{bottom:3.5rem}.xl_left_q56{left:3.5rem}.xl_inset_x_q56{left:3.5rem;right:3.5rem}.xl_inset_y_q56{bottom:3.5rem;top:3.5rem}.xl_border_q56{border-width:3.5rem}.xl_border_t_q56{border-top-width:3.5rem}.xl_border_r_q56{border-right-width:3.5rem}.xl_border_b_q56{border-bottom-width:3.5rem}.xl_border_l_q56,.xl_border_x_q56{border-left-width:3.5rem}.xl_border_x_q56{border-right-width:3.5rem}.xl_border_y_q56{border-bottom-width:3.5rem;border-top-width:3.5rem}.xl_rounded_q56{border-radius:3.5rem}.xl_rounded_t_q56{border-top-left-radius:3.5rem;border-top-right-radius:3.5rem}.xl_rounded_r_q56{border-bottom-right-radius:3.5rem;border-top-right-radius:3.5rem}.xl_rounded_b_q56{border-bottom-left-radius:3.5rem;border-bottom-right-radius:3.5rem}.xl_rounded_l_q56{border-bottom-left-radius:3.5rem}.xl_rounded_l_q56,.xl_rounded_tl_q56{border-top-left-radius:3.5rem}.xl_rounded_tr_q56{border-top-right-radius:3.5rem}.xl_rounded_br_q56{border-bottom-right-radius:3.5rem}.xl_rounded_bl_q56{border-bottom-left-radius:3.5rem}.xl_p_q64{padding:4rem}.xl_pt_q64{padding-top:4rem}.xl_pr_q64{padding-right:4rem}.xl_pb_q64{padding-bottom:4rem}.xl_pl_q64,.xl_px_q64{padding-left:4rem}.xl_px_q64{padding-right:4rem}.xl_py_q64{padding-bottom:4rem;padding-top:4rem}.xl_m_q64{margin:4rem}.xl_mt_q64{margin-top:4rem}.xl_mr_q64{margin-right:4rem}.xl_mb_q64{margin-bottom:4rem}.xl_ml_q64,.xl_mx_q64{margin-left:4rem}.xl_mx_q64{margin-right:4rem}.xl_my_q64{margin-bottom:4rem;margin-top:4rem}.xl_gap_q64{gap:4rem}.xl_gap_col_q64{-moz-column-gap:4rem;column-gap:4rem}.xl_gap_row_q64{row-gap:4rem}.xl_w_q64{width:4rem}.xl_min_w_q64{min-width:4rem}.xl_max_w_q64{max-width:4rem}.xl_h_q64{height:4rem}.xl_min_h_q64{min-height:4rem}.xl_max_h_q64{max-height:4rem}.xl_inset_q64{bottom:4rem;left:4rem;right:4rem;top:4rem}.xl_top_q64{top:4rem}.xl_right_q64{right:4rem}.xl_bottom_q64{bottom:4rem}.xl_left_q64{left:4rem}.xl_inset_x_q64{left:4rem;right:4rem}.xl_inset_y_q64{bottom:4rem;top:4rem}.xl_border_q64{border-width:4rem}.xl_border_t_q64{border-top-width:4rem}.xl_border_r_q64{border-right-width:4rem}.xl_border_b_q64{border-bottom-width:4rem}.xl_border_l_q64,.xl_border_x_q64{border-left-width:4rem}.xl_border_x_q64{border-right-width:4rem}.xl_border_y_q64{border-bottom-width:4rem;border-top-width:4rem}.xl_rounded_q64{border-radius:4rem}.xl_rounded_t_q64{border-top-left-radius:4rem;border-top-right-radius:4rem}.xl_rounded_r_q64{border-bottom-right-radius:4rem;border-top-right-radius:4rem}.xl_rounded_b_q64{border-bottom-left-radius:4rem;border-bottom-right-radius:4rem}.xl_rounded_l_q64{border-bottom-left-radius:4rem}.xl_rounded_l_q64,.xl_rounded_tl_q64{border-top-left-radius:4rem}.xl_rounded_tr_q64{border-top-right-radius:4rem}.xl_rounded_br_q64{border-bottom-right-radius:4rem}.xl_rounded_bl_q64{border-bottom-left-radius:4rem}.xl_p_q72{padding:4.5rem}.xl_pt_q72{padding-top:4.5rem}.xl_pr_q72{padding-right:4.5rem}.xl_pb_q72{padding-bottom:4.5rem}.xl_pl_q72,.xl_px_q72{padding-left:4.5rem}.xl_px_q72{padding-right:4.5rem}.xl_py_q72{padding-bottom:4.5rem;padding-top:4.5rem}.xl_m_q72{margin:4.5rem}.xl_mt_q72{margin-top:4.5rem}.xl_mr_q72{margin-right:4.5rem}.xl_mb_q72{margin-bottom:4.5rem}.xl_ml_q72,.xl_mx_q72{margin-left:4.5rem}.xl_mx_q72{margin-right:4.5rem}.xl_my_q72{margin-bottom:4.5rem;margin-top:4.5rem}.xl_gap_q72{gap:4.5rem}.xl_gap_col_q72{-moz-column-gap:4.5rem;column-gap:4.5rem}.xl_gap_row_q72{row-gap:4.5rem}.xl_w_q72{width:4.5rem}.xl_min_w_q72{min-width:4.5rem}.xl_max_w_q72{max-width:4.5rem}.xl_h_q72{height:4.5rem}.xl_min_h_q72{min-height:4.5rem}.xl_max_h_q72{max-height:4.5rem}.xl_inset_q72{bottom:4.5rem;left:4.5rem;right:4.5rem;top:4.5rem}.xl_top_q72{top:4.5rem}.xl_right_q72{right:4.5rem}.xl_bottom_q72{bottom:4.5rem}.xl_left_q72{left:4.5rem}.xl_inset_x_q72{left:4.5rem;right:4.5rem}.xl_inset_y_q72{bottom:4.5rem;top:4.5rem}.xl_border_q72{border-width:4.5rem}.xl_border_t_q72{border-top-width:4.5rem}.xl_border_r_q72{border-right-width:4.5rem}.xl_border_b_q72{border-bottom-width:4.5rem}.xl_border_l_q72,.xl_border_x_q72{border-left-width:4.5rem}.xl_border_x_q72{border-right-width:4.5rem}.xl_border_y_q72{border-bottom-width:4.5rem;border-top-width:4.5rem}.xl_rounded_q72{border-radius:4.5rem}.xl_rounded_t_q72{border-top-left-radius:4.5rem;border-top-right-radius:4.5rem}.xl_rounded_r_q72{border-bottom-right-radius:4.5rem;border-top-right-radius:4.5rem}.xl_rounded_b_q72{border-bottom-left-radius:4.5rem;border-bottom-right-radius:4.5rem}.xl_rounded_l_q72{border-bottom-left-radius:4.5rem}.xl_rounded_l_q72,.xl_rounded_tl_q72{border-top-left-radius:4.5rem}.xl_rounded_tr_q72{border-top-right-radius:4.5rem}.xl_rounded_br_q72{border-bottom-right-radius:4.5rem}.xl_rounded_bl_q72{border-bottom-left-radius:4.5rem}.xl_p_q80{padding:5rem}.xl_pt_q80{padding-top:5rem}.xl_pr_q80{padding-right:5rem}.xl_pb_q80{padding-bottom:5rem}.xl_pl_q80,.xl_px_q80{padding-left:5rem}.xl_px_q80{padding-right:5rem}.xl_py_q80{padding-bottom:5rem;padding-top:5rem}.xl_m_q80{margin:5rem}.xl_mt_q80{margin-top:5rem}.xl_mr_q80{margin-right:5rem}.xl_mb_q80{margin-bottom:5rem}.xl_ml_q80,.xl_mx_q80{margin-left:5rem}.xl_mx_q80{margin-right:5rem}.xl_my_q80{margin-bottom:5rem;margin-top:5rem}.xl_gap_q80{gap:5rem}.xl_gap_col_q80{-moz-column-gap:5rem;column-gap:5rem}.xl_gap_row_q80{row-gap:5rem}.xl_w_q80{width:5rem}.xl_min_w_q80{min-width:5rem}.xl_max_w_q80{max-width:5rem}.xl_h_q80{height:5rem}.xl_min_h_q80{min-height:5rem}.xl_max_h_q80{max-height:5rem}.xl_inset_q80{bottom:5rem;left:5rem;right:5rem;top:5rem}.xl_top_q80{top:5rem}.xl_right_q80{right:5rem}.xl_bottom_q80{bottom:5rem}.xl_left_q80{left:5rem}.xl_inset_x_q80{left:5rem;right:5rem}.xl_inset_y_q80{bottom:5rem;top:5rem}.xl_border_q80{border-width:5rem}.xl_border_t_q80{border-top-width:5rem}.xl_border_r_q80{border-right-width:5rem}.xl_border_b_q80{border-bottom-width:5rem}.xl_border_l_q80,.xl_border_x_q80{border-left-width:5rem}.xl_border_x_q80{border-right-width:5rem}.xl_border_y_q80{border-bottom-width:5rem;border-top-width:5rem}.xl_rounded_q80{border-radius:5rem}.xl_rounded_t_q80{border-top-left-radius:5rem;border-top-right-radius:5rem}.xl_rounded_r_q80{border-bottom-right-radius:5rem;border-top-right-radius:5rem}.xl_rounded_b_q80{border-bottom-left-radius:5rem;border-bottom-right-radius:5rem}.xl_rounded_l_q80{border-bottom-left-radius:5rem}.xl_rounded_l_q80,.xl_rounded_tl_q80{border-top-left-radius:5rem}.xl_rounded_tr_q80{border-top-right-radius:5rem}.xl_rounded_br_q80{border-bottom-right-radius:5rem}.xl_rounded_bl_q80{border-bottom-left-radius:5rem}.xl_p_q96{padding:6rem}.xl_pt_q96{padding-top:6rem}.xl_pr_q96{padding-right:6rem}.xl_pb_q96{padding-bottom:6rem}.xl_pl_q96,.xl_px_q96{padding-left:6rem}.xl_px_q96{padding-right:6rem}.xl_py_q96{padding-bottom:6rem;padding-top:6rem}.xl_m_q96{margin:6rem}.xl_mt_q96{margin-top:6rem}.xl_mr_q96{margin-right:6rem}.xl_mb_q96{margin-bottom:6rem}.xl_ml_q96,.xl_mx_q96{margin-left:6rem}.xl_mx_q96{margin-right:6rem}.xl_my_q96{margin-bottom:6rem;margin-top:6rem}.xl_gap_q96{gap:6rem}.xl_gap_col_q96{-moz-column-gap:6rem;column-gap:6rem}.xl_gap_row_q96{row-gap:6rem}.xl_w_q96{width:6rem}.xl_min_w_q96{min-width:6rem}.xl_max_w_q96{max-width:6rem}.xl_h_q96{height:6rem}.xl_min_h_q96{min-height:6rem}.xl_max_h_q96{max-height:6rem}.xl_inset_q96{bottom:6rem;left:6rem;right:6rem;top:6rem}.xl_top_q96{top:6rem}.xl_right_q96{right:6rem}.xl_bottom_q96{bottom:6rem}.xl_left_q96{left:6rem}.xl_inset_x_q96{left:6rem;right:6rem}.xl_inset_y_q96{bottom:6rem;top:6rem}.xl_border_q96{border-width:6rem}.xl_border_t_q96{border-top-width:6rem}.xl_border_r_q96{border-right-width:6rem}.xl_border_b_q96{border-bottom-width:6rem}.xl_border_l_q96,.xl_border_x_q96{border-left-width:6rem}.xl_border_x_q96{border-right-width:6rem}.xl_border_y_q96{border-bottom-width:6rem;border-top-width:6rem}.xl_rounded_q96{border-radius:6rem}.xl_rounded_t_q96{border-top-left-radius:6rem;border-top-right-radius:6rem}.xl_rounded_r_q96{border-bottom-right-radius:6rem;border-top-right-radius:6rem}.xl_rounded_b_q96{border-bottom-left-radius:6rem;border-bottom-right-radius:6rem}.xl_rounded_l_q96{border-bottom-left-radius:6rem}.xl_rounded_l_q96,.xl_rounded_tl_q96{border-top-left-radius:6rem}.xl_rounded_tr_q96{border-top-right-radius:6rem}.xl_rounded_br_q96{border-bottom-right-radius:6rem}.xl_rounded_bl_q96{border-bottom-left-radius:6rem}.xl_p_q112{padding:7rem}.xl_pt_q112{padding-top:7rem}.xl_pr_q112{padding-right:7rem}.xl_pb_q112{padding-bottom:7rem}.xl_pl_q112,.xl_px_q112{padding-left:7rem}.xl_px_q112{padding-right:7rem}.xl_py_q112{padding-bottom:7rem;padding-top:7rem}.xl_m_q112{margin:7rem}.xl_mt_q112{margin-top:7rem}.xl_mr_q112{margin-right:7rem}.xl_mb_q112{margin-bottom:7rem}.xl_ml_q112,.xl_mx_q112{margin-left:7rem}.xl_mx_q112{margin-right:7rem}.xl_my_q112{margin-bottom:7rem;margin-top:7rem}.xl_gap_q112{gap:7rem}.xl_gap_col_q112{-moz-column-gap:7rem;column-gap:7rem}.xl_gap_row_q112{row-gap:7rem}.xl_w_q112{width:7rem}.xl_min_w_q112{min-width:7rem}.xl_max_w_q112{max-width:7rem}.xl_h_q112{height:7rem}.xl_min_h_q112{min-height:7rem}.xl_max_h_q112{max-height:7rem}.xl_inset_q112{bottom:7rem;left:7rem;right:7rem;top:7rem}.xl_top_q112{top:7rem}.xl_right_q112{right:7rem}.xl_bottom_q112{bottom:7rem}.xl_left_q112{left:7rem}.xl_inset_x_q112{left:7rem;right:7rem}.xl_inset_y_q112{bottom:7rem;top:7rem}.xl_border_q112{border-width:7rem}.xl_border_t_q112{border-top-width:7rem}.xl_border_r_q112{border-right-width:7rem}.xl_border_b_q112{border-bottom-width:7rem}.xl_border_l_q112,.xl_border_x_q112{border-left-width:7rem}.xl_border_x_q112{border-right-width:7rem}.xl_border_y_q112{border-bottom-width:7rem;border-top-width:7rem}.xl_rounded_q112{border-radius:7rem}.xl_rounded_t_q112{border-top-left-radius:7rem;border-top-right-radius:7rem}.xl_rounded_r_q112{border-bottom-right-radius:7rem;border-top-right-radius:7rem}.xl_rounded_b_q112{border-bottom-left-radius:7rem;border-bottom-right-radius:7rem}.xl_rounded_l_q112{border-bottom-left-radius:7rem}.xl_rounded_l_q112,.xl_rounded_tl_q112{border-top-left-radius:7rem}.xl_rounded_tr_q112{border-top-right-radius:7rem}.xl_rounded_br_q112{border-bottom-right-radius:7rem}.xl_rounded_bl_q112{border-bottom-left-radius:7rem}.xl_p_q128{padding:8rem}.xl_pt_q128{padding-top:8rem}.xl_pr_q128{padding-right:8rem}.xl_pb_q128{padding-bottom:8rem}.xl_pl_q128,.xl_px_q128{padding-left:8rem}.xl_px_q128{padding-right:8rem}.xl_py_q128{padding-bottom:8rem;padding-top:8rem}.xl_m_q128{margin:8rem}.xl_mt_q128{margin-top:8rem}.xl_mr_q128{margin-right:8rem}.xl_mb_q128{margin-bottom:8rem}.xl_ml_q128,.xl_mx_q128{margin-left:8rem}.xl_mx_q128{margin-right:8rem}.xl_my_q128{margin-bottom:8rem;margin-top:8rem}.xl_gap_q128{gap:8rem}.xl_gap_col_q128{-moz-column-gap:8rem;column-gap:8rem}.xl_gap_row_q128{row-gap:8rem}.xl_w_q128{width:8rem}.xl_min_w_q128{min-width:8rem}.xl_max_w_q128{max-width:8rem}.xl_h_q128{height:8rem}.xl_min_h_q128{min-height:8rem}.xl_max_h_q128{max-height:8rem}.xl_inset_q128{bottom:8rem;left:8rem;right:8rem;top:8rem}.xl_top_q128{top:8rem}.xl_right_q128{right:8rem}.xl_bottom_q128{bottom:8rem}.xl_left_q128{left:8rem}.xl_inset_x_q128{left:8rem;right:8rem}.xl_inset_y_q128{bottom:8rem;top:8rem}.xl_border_q128{border-width:8rem}.xl_border_t_q128{border-top-width:8rem}.xl_border_r_q128{border-right-width:8rem}.xl_border_b_q128{border-bottom-width:8rem}.xl_border_l_q128,.xl_border_x_q128{border-left-width:8rem}.xl_border_x_q128{border-right-width:8rem}.xl_border_y_q128{border-bottom-width:8rem;border-top-width:8rem}.xl_rounded_q128{border-radius:8rem}.xl_rounded_t_q128{border-top-left-radius:8rem;border-top-right-radius:8rem}.xl_rounded_r_q128{border-bottom-right-radius:8rem;border-top-right-radius:8rem}.xl_rounded_b_q128{border-bottom-left-radius:8rem;border-bottom-right-radius:8rem}.xl_rounded_l_q128{border-bottom-left-radius:8rem}.xl_rounded_l_q128,.xl_rounded_tl_q128{border-top-left-radius:8rem}.xl_rounded_tr_q128{border-top-right-radius:8rem}.xl_rounded_br_q128{border-bottom-right-radius:8rem}.xl_rounded_bl_q128{border-bottom-left-radius:8rem}.xl_p_q144{padding:9rem}.xl_pt_q144{padding-top:9rem}.xl_pr_q144{padding-right:9rem}.xl_pb_q144{padding-bottom:9rem}.xl_pl_q144,.xl_px_q144{padding-left:9rem}.xl_px_q144{padding-right:9rem}.xl_py_q144{padding-bottom:9rem;padding-top:9rem}.xl_m_q144{margin:9rem}.xl_mt_q144{margin-top:9rem}.xl_mr_q144{margin-right:9rem}.xl_mb_q144{margin-bottom:9rem}.xl_ml_q144,.xl_mx_q144{margin-left:9rem}.xl_mx_q144{margin-right:9rem}.xl_my_q144{margin-bottom:9rem;margin-top:9rem}.xl_gap_q144{gap:9rem}.xl_gap_col_q144{-moz-column-gap:9rem;column-gap:9rem}.xl_gap_row_q144{row-gap:9rem}.xl_w_q144{width:9rem}.xl_min_w_q144{min-width:9rem}.xl_max_w_q144{max-width:9rem}.xl_h_q144{height:9rem}.xl_min_h_q144{min-height:9rem}.xl_max_h_q144{max-height:9rem}.xl_inset_q144{bottom:9rem;left:9rem;right:9rem;top:9rem}.xl_top_q144{top:9rem}.xl_right_q144{right:9rem}.xl_bottom_q144{bottom:9rem}.xl_left_q144{left:9rem}.xl_inset_x_q144{left:9rem;right:9rem}.xl_inset_y_q144{bottom:9rem;top:9rem}.xl_border_q144{border-width:9rem}.xl_border_t_q144{border-top-width:9rem}.xl_border_r_q144{border-right-width:9rem}.xl_border_b_q144{border-bottom-width:9rem}.xl_border_l_q144,.xl_border_x_q144{border-left-width:9rem}.xl_border_x_q144{border-right-width:9rem}.xl_border_y_q144{border-bottom-width:9rem;border-top-width:9rem}.xl_rounded_q144{border-radius:9rem}.xl_rounded_t_q144{border-top-left-radius:9rem;border-top-right-radius:9rem}.xl_rounded_r_q144{border-bottom-right-radius:9rem;border-top-right-radius:9rem}.xl_rounded_b_q144{border-bottom-left-radius:9rem;border-bottom-right-radius:9rem}.xl_rounded_l_q144{border-bottom-left-radius:9rem}.xl_rounded_l_q144,.xl_rounded_tl_q144{border-top-left-radius:9rem}.xl_rounded_tr_q144{border-top-right-radius:9rem}.xl_rounded_br_q144{border-bottom-right-radius:9rem}.xl_rounded_bl_q144{border-bottom-left-radius:9rem}.xl_p_q160{padding:10rem}.xl_pt_q160{padding-top:10rem}.xl_pr_q160{padding-right:10rem}.xl_pb_q160{padding-bottom:10rem}.xl_pl_q160,.xl_px_q160{padding-left:10rem}.xl_px_q160{padding-right:10rem}.xl_py_q160{padding-bottom:10rem;padding-top:10rem}.xl_m_q160{margin:10rem}.xl_mt_q160{margin-top:10rem}.xl_mr_q160{margin-right:10rem}.xl_mb_q160{margin-bottom:10rem}.xl_ml_q160,.xl_mx_q160{margin-left:10rem}.xl_mx_q160{margin-right:10rem}.xl_my_q160{margin-bottom:10rem;margin-top:10rem}.xl_gap_q160{gap:10rem}.xl_gap_col_q160{-moz-column-gap:10rem;column-gap:10rem}.xl_gap_row_q160{row-gap:10rem}.xl_w_q160{width:10rem}.xl_min_w_q160{min-width:10rem}.xl_max_w_q160{max-width:10rem}.xl_h_q160{height:10rem}.xl_min_h_q160{min-height:10rem}.xl_max_h_q160{max-height:10rem}.xl_inset_q160{bottom:10rem;left:10rem;right:10rem;top:10rem}.xl_top_q160{top:10rem}.xl_right_q160{right:10rem}.xl_bottom_q160{bottom:10rem}.xl_left_q160{left:10rem}.xl_inset_x_q160{left:10rem;right:10rem}.xl_inset_y_q160{bottom:10rem;top:10rem}.xl_border_q160{border-width:10rem}.xl_border_t_q160{border-top-width:10rem}.xl_border_r_q160{border-right-width:10rem}.xl_border_b_q160{border-bottom-width:10rem}.xl_border_l_q160,.xl_border_x_q160{border-left-width:10rem}.xl_border_x_q160{border-right-width:10rem}.xl_border_y_q160{border-bottom-width:10rem;border-top-width:10rem}.xl_rounded_q160{border-radius:10rem}.xl_rounded_t_q160{border-top-left-radius:10rem;border-top-right-radius:10rem}.xl_rounded_r_q160{border-bottom-right-radius:10rem;border-top-right-radius:10rem}.xl_rounded_b_q160{border-bottom-left-radius:10rem;border-bottom-right-radius:10rem}.xl_rounded_l_q160{border-bottom-left-radius:10rem}.xl_rounded_l_q160,.xl_rounded_tl_q160{border-top-left-radius:10rem}.xl_rounded_tr_q160{border-top-right-radius:10rem}.xl_rounded_br_q160{border-bottom-right-radius:10rem}.xl_rounded_bl_q160{border-bottom-left-radius:10rem}.xl_p_q192{padding:12rem}.xl_pt_q192{padding-top:12rem}.xl_pr_q192{padding-right:12rem}.xl_pb_q192{padding-bottom:12rem}.xl_pl_q192,.xl_px_q192{padding-left:12rem}.xl_px_q192{padding-right:12rem}.xl_py_q192{padding-bottom:12rem;padding-top:12rem}.xl_m_q192{margin:12rem}.xl_mt_q192{margin-top:12rem}.xl_mr_q192{margin-right:12rem}.xl_mb_q192{margin-bottom:12rem}.xl_ml_q192,.xl_mx_q192{margin-left:12rem}.xl_mx_q192{margin-right:12rem}.xl_my_q192{margin-bottom:12rem;margin-top:12rem}.xl_gap_q192{gap:12rem}.xl_gap_col_q192{-moz-column-gap:12rem;column-gap:12rem}.xl_gap_row_q192{row-gap:12rem}.xl_w_q192{width:12rem}.xl_min_w_q192{min-width:12rem}.xl_max_w_q192{max-width:12rem}.xl_h_q192{height:12rem}.xl_min_h_q192{min-height:12rem}.xl_max_h_q192{max-height:12rem}.xl_inset_q192{bottom:12rem;left:12rem;right:12rem;top:12rem}.xl_top_q192{top:12rem}.xl_right_q192{right:12rem}.xl_bottom_q192{bottom:12rem}.xl_left_q192{left:12rem}.xl_inset_x_q192{left:12rem;right:12rem}.xl_inset_y_q192{bottom:12rem;top:12rem}.xl_border_q192{border-width:12rem}.xl_border_t_q192{border-top-width:12rem}.xl_border_r_q192{border-right-width:12rem}.xl_border_b_q192{border-bottom-width:12rem}.xl_border_l_q192,.xl_border_x_q192{border-left-width:12rem}.xl_border_x_q192{border-right-width:12rem}.xl_border_y_q192{border-bottom-width:12rem;border-top-width:12rem}.xl_rounded_q192{border-radius:12rem}.xl_rounded_t_q192{border-top-left-radius:12rem;border-top-right-radius:12rem}.xl_rounded_r_q192{border-bottom-right-radius:12rem;border-top-right-radius:12rem}.xl_rounded_b_q192{border-bottom-left-radius:12rem;border-bottom-right-radius:12rem}.xl_rounded_l_q192{border-bottom-left-radius:12rem}.xl_rounded_l_q192,.xl_rounded_tl_q192{border-top-left-radius:12rem}.xl_rounded_tr_q192{border-top-right-radius:12rem}.xl_rounded_br_q192{border-bottom-right-radius:12rem}.xl_rounded_bl_q192{border-bottom-left-radius:12rem}.xl_p_q224{padding:14rem}.xl_pt_q224{padding-top:14rem}.xl_pr_q224{padding-right:14rem}.xl_pb_q224{padding-bottom:14rem}.xl_pl_q224,.xl_px_q224{padding-left:14rem}.xl_px_q224{padding-right:14rem}.xl_py_q224{padding-bottom:14rem;padding-top:14rem}.xl_m_q224{margin:14rem}.xl_mt_q224{margin-top:14rem}.xl_mr_q224{margin-right:14rem}.xl_mb_q224{margin-bottom:14rem}.xl_ml_q224,.xl_mx_q224{margin-left:14rem}.xl_mx_q224{margin-right:14rem}.xl_my_q224{margin-bottom:14rem;margin-top:14rem}.xl_gap_q224{gap:14rem}.xl_gap_col_q224{-moz-column-gap:14rem;column-gap:14rem}.xl_gap_row_q224{row-gap:14rem}.xl_w_q224{width:14rem}.xl_min_w_q224{min-width:14rem}.xl_max_w_q224{max-width:14rem}.xl_h_q224{height:14rem}.xl_min_h_q224{min-height:14rem}.xl_max_h_q224{max-height:14rem}.xl_inset_q224{bottom:14rem;left:14rem;right:14rem;top:14rem}.xl_top_q224{top:14rem}.xl_right_q224{right:14rem}.xl_bottom_q224{bottom:14rem}.xl_left_q224{left:14rem}.xl_inset_x_q224{left:14rem;right:14rem}.xl_inset_y_q224{bottom:14rem;top:14rem}.xl_border_q224{border-width:14rem}.xl_border_t_q224{border-top-width:14rem}.xl_border_r_q224{border-right-width:14rem}.xl_border_b_q224{border-bottom-width:14rem}.xl_border_l_q224,.xl_border_x_q224{border-left-width:14rem}.xl_border_x_q224{border-right-width:14rem}.xl_border_y_q224{border-bottom-width:14rem;border-top-width:14rem}.xl_rounded_q224{border-radius:14rem}.xl_rounded_t_q224{border-top-left-radius:14rem;border-top-right-radius:14rem}.xl_rounded_r_q224{border-bottom-right-radius:14rem;border-top-right-radius:14rem}.xl_rounded_b_q224{border-bottom-left-radius:14rem;border-bottom-right-radius:14rem}.xl_rounded_l_q224{border-bottom-left-radius:14rem}.xl_rounded_l_q224,.xl_rounded_tl_q224{border-top-left-radius:14rem}.xl_rounded_tr_q224{border-top-right-radius:14rem}.xl_rounded_br_q224{border-bottom-right-radius:14rem}.xl_rounded_bl_q224{border-bottom-left-radius:14rem}.xl_p_q256{padding:16rem}.xl_pt_q256{padding-top:16rem}.xl_pr_q256{padding-right:16rem}.xl_pb_q256{padding-bottom:16rem}.xl_pl_q256,.xl_px_q256{padding-left:16rem}.xl_px_q256{padding-right:16rem}.xl_py_q256{padding-bottom:16rem;padding-top:16rem}.xl_m_q256{margin:16rem}.xl_mt_q256{margin-top:16rem}.xl_mr_q256{margin-right:16rem}.xl_mb_q256{margin-bottom:16rem}.xl_ml_q256,.xl_mx_q256{margin-left:16rem}.xl_mx_q256{margin-right:16rem}.xl_my_q256{margin-bottom:16rem;margin-top:16rem}.xl_gap_q256{gap:16rem}.xl_gap_col_q256{-moz-column-gap:16rem;column-gap:16rem}.xl_gap_row_q256{row-gap:16rem}.xl_w_q256{width:16rem}.xl_min_w_q256{min-width:16rem}.xl_max_w_q256{max-width:16rem}.xl_h_q256{height:16rem}.xl_min_h_q256{min-height:16rem}.xl_max_h_q256{max-height:16rem}.xl_inset_q256{bottom:16rem;left:16rem;right:16rem;top:16rem}.xl_top_q256{top:16rem}.xl_right_q256{right:16rem}.xl_bottom_q256{bottom:16rem}.xl_left_q256{left:16rem}.xl_inset_x_q256{left:16rem;right:16rem}.xl_inset_y_q256{bottom:16rem;top:16rem}.xl_border_q256{border-width:16rem}.xl_border_t_q256{border-top-width:16rem}.xl_border_r_q256{border-right-width:16rem}.xl_border_b_q256{border-bottom-width:16rem}.xl_border_l_q256,.xl_border_x_q256{border-left-width:16rem}.xl_border_x_q256{border-right-width:16rem}.xl_border_y_q256{border-bottom-width:16rem;border-top-width:16rem}.xl_rounded_q256{border-radius:16rem}.xl_rounded_t_q256{border-top-left-radius:16rem;border-top-right-radius:16rem}.xl_rounded_r_q256{border-bottom-right-radius:16rem;border-top-right-radius:16rem}.xl_rounded_b_q256{border-bottom-left-radius:16rem;border-bottom-right-radius:16rem}.xl_rounded_l_q256{border-bottom-left-radius:16rem}.xl_rounded_l_q256,.xl_rounded_tl_q256{border-top-left-radius:16rem}.xl_rounded_tr_q256{border-top-right-radius:16rem}.xl_rounded_br_q256{border-bottom-right-radius:16rem}.xl_rounded_bl_q256{border-bottom-left-radius:16rem}}@media(min-width:4320px){.ul_p_q0{padding:0}.ul_pt_q0{padding-top:0}.ul_pr_q0{padding-right:0}.ul_pb_q0{padding-bottom:0}.ul_pl_q0,.ul_px_q0{padding-left:0}.ul_px_q0{padding-right:0}.ul_py_q0{padding-bottom:0;padding-top:0}.ul_m_q0{margin:0}.ul_mt_q0{margin-top:0}.ul_mr_q0{margin-right:0}.ul_mb_q0{margin-bottom:0}.ul_ml_q0,.ul_mx_q0{margin-left:0}.ul_mx_q0{margin-right:0}.ul_my_q0{margin-bottom:0;margin-top:0}.ul_gap_q0{gap:0}.ul_gap_col_q0{-moz-column-gap:0;column-gap:0}.ul_gap_row_q0{row-gap:0}.ul_w_q0{width:0}.ul_min_w_q0{min-width:0}.ul_max_w_q0{max-width:0}.ul_h_q0{height:0}.ul_min_h_q0{min-height:0}.ul_max_h_q0{max-height:0}.ul_inset_q0{bottom:0;left:0;right:0;top:0}.ul_top_q0{top:0}.ul_right_q0{right:0}.ul_bottom_q0{bottom:0}.ul_left_q0{left:0}.ul_inset_x_q0{left:0;right:0}.ul_inset_y_q0{bottom:0;top:0}.ul_border_q0{border-width:0}.ul_border_t_q0{border-top-width:0}.ul_border_r_q0{border-right-width:0}.ul_border_b_q0{border-bottom-width:0}.ul_border_l_q0,.ul_border_x_q0{border-left-width:0}.ul_border_x_q0{border-right-width:0}.ul_border_y_q0{border-bottom-width:0;border-top-width:0}.ul_rounded_q0{border-radius:0}.ul_rounded_t_q0{border-top-left-radius:0;border-top-right-radius:0}.ul_rounded_r_q0{border-bottom-right-radius:0;border-top-right-radius:0}.ul_rounded_b_q0{border-bottom-left-radius:0;border-bottom-right-radius:0}.ul_rounded_l_q0{border-bottom-left-radius:0}.ul_rounded_l_q0,.ul_rounded_tl_q0{border-top-left-radius:0}.ul_rounded_tr_q0{border-top-right-radius:0}.ul_rounded_br_q0{border-bottom-right-radius:0}.ul_rounded_bl_q0{border-bottom-left-radius:0}.ul_p_q1{padding:.0625rem}.ul_pt_q1{padding-top:.0625rem}.ul_pr_q1{padding-right:.0625rem}.ul_pb_q1{padding-bottom:.0625rem}.ul_pl_q1,.ul_px_q1{padding-left:.0625rem}.ul_px_q1{padding-right:.0625rem}.ul_py_q1{padding-bottom:.0625rem;padding-top:.0625rem}.ul_m_q1{margin:.0625rem}.ul_mt_q1{margin-top:.0625rem}.ul_mr_q1{margin-right:.0625rem}.ul_mb_q1{margin-bottom:.0625rem}.ul_ml_q1,.ul_mx_q1{margin-left:.0625rem}.ul_mx_q1{margin-right:.0625rem}.ul_my_q1{margin-bottom:.0625rem;margin-top:.0625rem}.ul_gap_q1{gap:.0625rem}.ul_gap_col_q1{-moz-column-gap:.0625rem;column-gap:.0625rem}.ul_gap_row_q1{row-gap:.0625rem}.ul_w_q1{width:.0625rem}.ul_min_w_q1{min-width:.0625rem}.ul_max_w_q1{max-width:.0625rem}.ul_h_q1{height:.0625rem}.ul_min_h_q1{min-height:.0625rem}.ul_max_h_q1{max-height:.0625rem}.ul_inset_q1{bottom:.0625rem;left:.0625rem;right:.0625rem;top:.0625rem}.ul_top_q1{top:.0625rem}.ul_right_q1{right:.0625rem}.ul_bottom_q1{bottom:.0625rem}.ul_left_q1{left:.0625rem}.ul_inset_x_q1{left:.0625rem;right:.0625rem}.ul_inset_y_q1{bottom:.0625rem;top:.0625rem}.ul_border_q1{border-width:.0625rem}.ul_border_t_q1{border-top-width:.0625rem}.ul_border_r_q1{border-right-width:.0625rem}.ul_border_b_q1{border-bottom-width:.0625rem}.ul_border_l_q1,.ul_border_x_q1{border-left-width:.0625rem}.ul_border_x_q1{border-right-width:.0625rem}.ul_border_y_q1{border-bottom-width:.0625rem;border-top-width:.0625rem}.ul_rounded_q1{border-radius:.0625rem}.ul_rounded_t_q1{border-top-left-radius:.0625rem;border-top-right-radius:.0625rem}.ul_rounded_r_q1{border-top-right-radius:.0625rem}.ul_rounded_b_q1,.ul_rounded_r_q1{border-bottom-right-radius:.0625rem}.ul_rounded_b_q1,.ul_rounded_l_q1{border-bottom-left-radius:.0625rem}.ul_rounded_l_q1,.ul_rounded_tl_q1{border-top-left-radius:.0625rem}.ul_rounded_tr_q1{border-top-right-radius:.0625rem}.ul_rounded_br_q1{border-bottom-right-radius:.0625rem}.ul_rounded_bl_q1{border-bottom-left-radius:.0625rem}.ul_p_q2{padding:.125rem}.ul_pt_q2{padding-top:.125rem}.ul_pr_q2{padding-right:.125rem}.ul_pb_q2{padding-bottom:.125rem}.ul_pl_q2,.ul_px_q2{padding-left:.125rem}.ul_px_q2{padding-right:.125rem}.ul_py_q2{padding-bottom:.125rem;padding-top:.125rem}.ul_m_q2{margin:.125rem}.ul_mt_q2{margin-top:.125rem}.ul_mr_q2{margin-right:.125rem}.ul_mb_q2{margin-bottom:.125rem}.ul_ml_q2,.ul_mx_q2{margin-left:.125rem}.ul_mx_q2{margin-right:.125rem}.ul_my_q2{margin-bottom:.125rem;margin-top:.125rem}.ul_gap_q2{gap:.125rem}.ul_gap_col_q2{-moz-column-gap:.125rem;column-gap:.125rem}.ul_gap_row_q2{row-gap:.125rem}.ul_w_q2{width:.125rem}.ul_min_w_q2{min-width:.125rem}.ul_max_w_q2{max-width:.125rem}.ul_h_q2{height:.125rem}.ul_min_h_q2{min-height:.125rem}.ul_max_h_q2{max-height:.125rem}.ul_inset_q2{bottom:.125rem;left:.125rem;right:.125rem;top:.125rem}.ul_top_q2{top:.125rem}.ul_right_q2{right:.125rem}.ul_bottom_q2{bottom:.125rem}.ul_left_q2{left:.125rem}.ul_inset_x_q2{left:.125rem;right:.125rem}.ul_inset_y_q2{bottom:.125rem;top:.125rem}.ul_border_q2{border-width:.125rem}.ul_border_t_q2{border-top-width:.125rem}.ul_border_r_q2{border-right-width:.125rem}.ul_border_b_q2{border-bottom-width:.125rem}.ul_border_l_q2,.ul_border_x_q2{border-left-width:.125rem}.ul_border_x_q2{border-right-width:.125rem}.ul_border_y_q2{border-bottom-width:.125rem;border-top-width:.125rem}.ul_rounded_q2{border-radius:.125rem}.ul_rounded_t_q2{border-top-left-radius:.125rem;border-top-right-radius:.125rem}.ul_rounded_r_q2{border-top-right-radius:.125rem}.ul_rounded_b_q2,.ul_rounded_r_q2{border-bottom-right-radius:.125rem}.ul_rounded_b_q2,.ul_rounded_l_q2{border-bottom-left-radius:.125rem}.ul_rounded_l_q2,.ul_rounded_tl_q2{border-top-left-radius:.125rem}.ul_rounded_tr_q2{border-top-right-radius:.125rem}.ul_rounded_br_q2{border-bottom-right-radius:.125rem}.ul_rounded_bl_q2{border-bottom-left-radius:.125rem}.ul_p_q4{padding:.25rem}.ul_pt_q4{padding-top:.25rem}.ul_pr_q4{padding-right:.25rem}.ul_pb_q4{padding-bottom:.25rem}.ul_pl_q4,.ul_px_q4{padding-left:.25rem}.ul_px_q4{padding-right:.25rem}.ul_py_q4{padding-bottom:.25rem;padding-top:.25rem}.ul_m_q4{margin:.25rem}.ul_mt_q4{margin-top:.25rem}.ul_mr_q4{margin-right:.25rem}.ul_mb_q4{margin-bottom:.25rem}.ul_ml_q4,.ul_mx_q4{margin-left:.25rem}.ul_mx_q4{margin-right:.25rem}.ul_my_q4{margin-bottom:.25rem;margin-top:.25rem}.ul_gap_q4{gap:.25rem}.ul_gap_col_q4{-moz-column-gap:.25rem;column-gap:.25rem}.ul_gap_row_q4{row-gap:.25rem}.ul_w_q4{width:.25rem}.ul_min_w_q4{min-width:.25rem}.ul_max_w_q4{max-width:.25rem}.ul_h_q4{height:.25rem}.ul_min_h_q4{min-height:.25rem}.ul_max_h_q4{max-height:.25rem}.ul_inset_q4{bottom:.25rem;left:.25rem;right:.25rem;top:.25rem}.ul_top_q4{top:.25rem}.ul_right_q4{right:.25rem}.ul_bottom_q4{bottom:.25rem}.ul_left_q4{left:.25rem}.ul_inset_x_q4{left:.25rem;right:.25rem}.ul_inset_y_q4{bottom:.25rem;top:.25rem}.ul_border_q4{border-width:.25rem}.ul_border_t_q4{border-top-width:.25rem}.ul_border_r_q4{border-right-width:.25rem}.ul_border_b_q4{border-bottom-width:.25rem}.ul_border_l_q4,.ul_border_x_q4{border-left-width:.25rem}.ul_border_x_q4{border-right-width:.25rem}.ul_border_y_q4{border-bottom-width:.25rem;border-top-width:.25rem}.ul_rounded_q4{border-radius:.25rem}.ul_rounded_t_q4{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.ul_rounded_r_q4{border-bottom-right-radius:.25rem;border-top-right-radius:.25rem}.ul_rounded_b_q4{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.ul_rounded_l_q4{border-bottom-left-radius:.25rem}.ul_rounded_l_q4,.ul_rounded_tl_q4{border-top-left-radius:.25rem}.ul_rounded_tr_q4{border-top-right-radius:.25rem}.ul_rounded_br_q4{border-bottom-right-radius:.25rem}.ul_rounded_bl_q4{border-bottom-left-radius:.25rem}.ul_p_q6{padding:.375rem}.ul_pt_q6{padding-top:.375rem}.ul_pr_q6{padding-right:.375rem}.ul_pb_q6{padding-bottom:.375rem}.ul_pl_q6,.ul_px_q6{padding-left:.375rem}.ul_px_q6{padding-right:.375rem}.ul_py_q6{padding-bottom:.375rem;padding-top:.375rem}.ul_m_q6{margin:.375rem}.ul_mt_q6{margin-top:.375rem}.ul_mr_q6{margin-right:.375rem}.ul_mb_q6{margin-bottom:.375rem}.ul_ml_q6,.ul_mx_q6{margin-left:.375rem}.ul_mx_q6{margin-right:.375rem}.ul_my_q6{margin-bottom:.375rem;margin-top:.375rem}.ul_gap_q6{gap:.375rem}.ul_gap_col_q6{-moz-column-gap:.375rem;column-gap:.375rem}.ul_gap_row_q6{row-gap:.375rem}.ul_w_q6{width:.375rem}.ul_min_w_q6{min-width:.375rem}.ul_max_w_q6{max-width:.375rem}.ul_h_q6{height:.375rem}.ul_min_h_q6{min-height:.375rem}.ul_max_h_q6{max-height:.375rem}.ul_inset_q6{bottom:.375rem;left:.375rem;right:.375rem;top:.375rem}.ul_top_q6{top:.375rem}.ul_right_q6{right:.375rem}.ul_bottom_q6{bottom:.375rem}.ul_left_q6{left:.375rem}.ul_inset_x_q6{left:.375rem;right:.375rem}.ul_inset_y_q6{bottom:.375rem;top:.375rem}.ul_border_q6{border-width:.375rem}.ul_border_t_q6{border-top-width:.375rem}.ul_border_r_q6{border-right-width:.375rem}.ul_border_b_q6{border-bottom-width:.375rem}.ul_border_l_q6,.ul_border_x_q6{border-left-width:.375rem}.ul_border_x_q6{border-right-width:.375rem}.ul_border_y_q6{border-bottom-width:.375rem;border-top-width:.375rem}.ul_rounded_q6{border-radius:.375rem}.ul_rounded_t_q6{border-top-left-radius:.375rem;border-top-right-radius:.375rem}.ul_rounded_r_q6{border-top-right-radius:.375rem}.ul_rounded_b_q6,.ul_rounded_r_q6{border-bottom-right-radius:.375rem}.ul_rounded_b_q6,.ul_rounded_l_q6{border-bottom-left-radius:.375rem}.ul_rounded_l_q6,.ul_rounded_tl_q6{border-top-left-radius:.375rem}.ul_rounded_tr_q6{border-top-right-radius:.375rem}.ul_rounded_br_q6{border-bottom-right-radius:.375rem}.ul_rounded_bl_q6{border-bottom-left-radius:.375rem}.ul_p_q8{padding:.5rem}.ul_pt_q8{padding-top:.5rem}.ul_pr_q8{padding-right:.5rem}.ul_pb_q8{padding-bottom:.5rem}.ul_pl_q8,.ul_px_q8{padding-left:.5rem}.ul_px_q8{padding-right:.5rem}.ul_py_q8{padding-bottom:.5rem;padding-top:.5rem}.ul_m_q8{margin:.5rem}.ul_mt_q8{margin-top:.5rem}.ul_mr_q8{margin-right:.5rem}.ul_mb_q8{margin-bottom:.5rem}.ul_ml_q8,.ul_mx_q8{margin-left:.5rem}.ul_mx_q8{margin-right:.5rem}.ul_my_q8{margin-bottom:.5rem;margin-top:.5rem}.ul_gap_q8{gap:.5rem}.ul_gap_col_q8{-moz-column-gap:.5rem;column-gap:.5rem}.ul_gap_row_q8{row-gap:.5rem}.ul_w_q8{width:.5rem}.ul_min_w_q8{min-width:.5rem}.ul_max_w_q8{max-width:.5rem}.ul_h_q8{height:.5rem}.ul_min_h_q8{min-height:.5rem}.ul_max_h_q8{max-height:.5rem}.ul_inset_q8{bottom:.5rem;left:.5rem;right:.5rem;top:.5rem}.ul_top_q8{top:.5rem}.ul_right_q8{right:.5rem}.ul_bottom_q8{bottom:.5rem}.ul_left_q8{left:.5rem}.ul_inset_x_q8{left:.5rem;right:.5rem}.ul_inset_y_q8{bottom:.5rem;top:.5rem}.ul_border_q8{border-width:.5rem}.ul_border_t_q8{border-top-width:.5rem}.ul_border_r_q8{border-right-width:.5rem}.ul_border_b_q8{border-bottom-width:.5rem}.ul_border_l_q8,.ul_border_x_q8{border-left-width:.5rem}.ul_border_x_q8{border-right-width:.5rem}.ul_border_y_q8{border-bottom-width:.5rem;border-top-width:.5rem}.ul_rounded_q8{border-radius:.5rem}.ul_rounded_t_q8{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.ul_rounded_r_q8{border-bottom-right-radius:.5rem;border-top-right-radius:.5rem}.ul_rounded_b_q8{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.ul_rounded_l_q8{border-bottom-left-radius:.5rem}.ul_rounded_l_q8,.ul_rounded_tl_q8{border-top-left-radius:.5rem}.ul_rounded_tr_q8{border-top-right-radius:.5rem}.ul_rounded_br_q8{border-bottom-right-radius:.5rem}.ul_rounded_bl_q8{border-bottom-left-radius:.5rem}.ul_p_q12{padding:.75rem}.ul_pt_q12{padding-top:.75rem}.ul_pr_q12{padding-right:.75rem}.ul_pb_q12{padding-bottom:.75rem}.ul_pl_q12,.ul_px_q12{padding-left:.75rem}.ul_px_q12{padding-right:.75rem}.ul_py_q12{padding-bottom:.75rem;padding-top:.75rem}.ul_m_q12{margin:.75rem}.ul_mt_q12{margin-top:.75rem}.ul_mr_q12{margin-right:.75rem}.ul_mb_q12{margin-bottom:.75rem}.ul_ml_q12,.ul_mx_q12{margin-left:.75rem}.ul_mx_q12{margin-right:.75rem}.ul_my_q12{margin-bottom:.75rem;margin-top:.75rem}.ul_gap_q12{gap:.75rem}.ul_gap_col_q12{-moz-column-gap:.75rem;column-gap:.75rem}.ul_gap_row_q12{row-gap:.75rem}.ul_w_q12{width:.75rem}.ul_min_w_q12{min-width:.75rem}.ul_max_w_q12{max-width:.75rem}.ul_h_q12{height:.75rem}.ul_min_h_q12{min-height:.75rem}.ul_max_h_q12{max-height:.75rem}.ul_inset_q12{bottom:.75rem;left:.75rem;right:.75rem;top:.75rem}.ul_top_q12{top:.75rem}.ul_right_q12{right:.75rem}.ul_bottom_q12{bottom:.75rem}.ul_left_q12{left:.75rem}.ul_inset_x_q12{left:.75rem;right:.75rem}.ul_inset_y_q12{bottom:.75rem;top:.75rem}.ul_border_q12{border-width:.75rem}.ul_border_t_q12{border-top-width:.75rem}.ul_border_r_q12{border-right-width:.75rem}.ul_border_b_q12{border-bottom-width:.75rem}.ul_border_l_q12,.ul_border_x_q12{border-left-width:.75rem}.ul_border_x_q12{border-right-width:.75rem}.ul_border_y_q12{border-bottom-width:.75rem;border-top-width:.75rem}.ul_rounded_q12{border-radius:.75rem}.ul_rounded_t_q12{border-top-left-radius:.75rem;border-top-right-radius:.75rem}.ul_rounded_r_q12{border-bottom-right-radius:.75rem;border-top-right-radius:.75rem}.ul_rounded_b_q12{border-bottom-left-radius:.75rem;border-bottom-right-radius:.75rem}.ul_rounded_l_q12{border-bottom-left-radius:.75rem}.ul_rounded_l_q12,.ul_rounded_tl_q12{border-top-left-radius:.75rem}.ul_rounded_tr_q12{border-top-right-radius:.75rem}.ul_rounded_br_q12{border-bottom-right-radius:.75rem}.ul_rounded_bl_q12{border-bottom-left-radius:.75rem}.ul_p_q16{padding:1rem}.ul_pt_q16{padding-top:1rem}.ul_pr_q16{padding-right:1rem}.ul_pb_q16{padding-bottom:1rem}.ul_pl_q16,.ul_px_q16{padding-left:1rem}.ul_px_q16{padding-right:1rem}.ul_py_q16{padding-bottom:1rem;padding-top:1rem}.ul_m_q16{margin:1rem}.ul_mt_q16{margin-top:1rem}.ul_mr_q16{margin-right:1rem}.ul_mb_q16{margin-bottom:1rem}.ul_ml_q16,.ul_mx_q16{margin-left:1rem}.ul_mx_q16{margin-right:1rem}.ul_my_q16{margin-bottom:1rem;margin-top:1rem}.ul_gap_q16{gap:1rem}.ul_gap_col_q16{-moz-column-gap:1rem;column-gap:1rem}.ul_gap_row_q16{row-gap:1rem}.ul_w_q16{width:1rem}.ul_min_w_q16{min-width:1rem}.ul_max_w_q16{max-width:1rem}.ul_h_q16{height:1rem}.ul_min_h_q16{min-height:1rem}.ul_max_h_q16{max-height:1rem}.ul_inset_q16{bottom:1rem;left:1rem;right:1rem;top:1rem}.ul_top_q16{top:1rem}.ul_right_q16{right:1rem}.ul_bottom_q16{bottom:1rem}.ul_left_q16{left:1rem}.ul_inset_x_q16{left:1rem;right:1rem}.ul_inset_y_q16{bottom:1rem;top:1rem}.ul_border_q16{border-width:1rem}.ul_border_t_q16{border-top-width:1rem}.ul_border_r_q16{border-right-width:1rem}.ul_border_b_q16{border-bottom-width:1rem}.ul_border_l_q16,.ul_border_x_q16{border-left-width:1rem}.ul_border_x_q16{border-right-width:1rem}.ul_border_y_q16{border-bottom-width:1rem;border-top-width:1rem}.ul_rounded_q16{border-radius:1rem}.ul_rounded_t_q16{border-top-left-radius:1rem;border-top-right-radius:1rem}.ul_rounded_r_q16{border-bottom-right-radius:1rem;border-top-right-radius:1rem}.ul_rounded_b_q16{border-bottom-left-radius:1rem;border-bottom-right-radius:1rem}.ul_rounded_l_q16{border-bottom-left-radius:1rem}.ul_rounded_l_q16,.ul_rounded_tl_q16{border-top-left-radius:1rem}.ul_rounded_tr_q16{border-top-right-radius:1rem}.ul_rounded_br_q16{border-bottom-right-radius:1rem}.ul_rounded_bl_q16{border-bottom-left-radius:1rem}.ul_p_q20{padding:1.25rem}.ul_pt_q20{padding-top:1.25rem}.ul_pr_q20{padding-right:1.25rem}.ul_pb_q20{padding-bottom:1.25rem}.ul_pl_q20,.ul_px_q20{padding-left:1.25rem}.ul_px_q20{padding-right:1.25rem}.ul_py_q20{padding-bottom:1.25rem;padding-top:1.25rem}.ul_m_q20{margin:1.25rem}.ul_mt_q20{margin-top:1.25rem}.ul_mr_q20{margin-right:1.25rem}.ul_mb_q20{margin-bottom:1.25rem}.ul_ml_q20,.ul_mx_q20{margin-left:1.25rem}.ul_mx_q20{margin-right:1.25rem}.ul_my_q20{margin-bottom:1.25rem;margin-top:1.25rem}.ul_gap_q20{gap:1.25rem}.ul_gap_col_q20{-moz-column-gap:1.25rem;column-gap:1.25rem}.ul_gap_row_q20{row-gap:1.25rem}.ul_w_q20{width:1.25rem}.ul_min_w_q20{min-width:1.25rem}.ul_max_w_q20{max-width:1.25rem}.ul_h_q20{height:1.25rem}.ul_min_h_q20{min-height:1.25rem}.ul_max_h_q20{max-height:1.25rem}.ul_inset_q20{bottom:1.25rem;left:1.25rem;right:1.25rem;top:1.25rem}.ul_top_q20{top:1.25rem}.ul_right_q20{right:1.25rem}.ul_bottom_q20{bottom:1.25rem}.ul_left_q20{left:1.25rem}.ul_inset_x_q20{left:1.25rem;right:1.25rem}.ul_inset_y_q20{bottom:1.25rem;top:1.25rem}.ul_border_q20{border-width:1.25rem}.ul_border_t_q20{border-top-width:1.25rem}.ul_border_r_q20{border-right-width:1.25rem}.ul_border_b_q20{border-bottom-width:1.25rem}.ul_border_l_q20,.ul_border_x_q20{border-left-width:1.25rem}.ul_border_x_q20{border-right-width:1.25rem}.ul_border_y_q20{border-bottom-width:1.25rem;border-top-width:1.25rem}.ul_rounded_q20{border-radius:1.25rem}.ul_rounded_t_q20{border-top-left-radius:1.25rem;border-top-right-radius:1.25rem}.ul_rounded_r_q20{border-bottom-right-radius:1.25rem;border-top-right-radius:1.25rem}.ul_rounded_b_q20{border-bottom-left-radius:1.25rem;border-bottom-right-radius:1.25rem}.ul_rounded_l_q20{border-bottom-left-radius:1.25rem}.ul_rounded_l_q20,.ul_rounded_tl_q20{border-top-left-radius:1.25rem}.ul_rounded_tr_q20{border-top-right-radius:1.25rem}.ul_rounded_br_q20{border-bottom-right-radius:1.25rem}.ul_rounded_bl_q20{border-bottom-left-radius:1.25rem}.ul_p_q24{padding:1.5rem}.ul_pt_q24{padding-top:1.5rem}.ul_pr_q24{padding-right:1.5rem}.ul_pb_q24{padding-bottom:1.5rem}.ul_pl_q24,.ul_px_q24{padding-left:1.5rem}.ul_px_q24{padding-right:1.5rem}.ul_py_q24{padding-bottom:1.5rem;padding-top:1.5rem}.ul_m_q24{margin:1.5rem}.ul_mt_q24{margin-top:1.5rem}.ul_mr_q24{margin-right:1.5rem}.ul_mb_q24{margin-bottom:1.5rem}.ul_ml_q24,.ul_mx_q24{margin-left:1.5rem}.ul_mx_q24{margin-right:1.5rem}.ul_my_q24{margin-bottom:1.5rem;margin-top:1.5rem}.ul_gap_q24{gap:1.5rem}.ul_gap_col_q24{-moz-column-gap:1.5rem;column-gap:1.5rem}.ul_gap_row_q24{row-gap:1.5rem}.ul_w_q24{width:1.5rem}.ul_min_w_q24{min-width:1.5rem}.ul_max_w_q24{max-width:1.5rem}.ul_h_q24{height:1.5rem}.ul_min_h_q24{min-height:1.5rem}.ul_max_h_q24{max-height:1.5rem}.ul_inset_q24{bottom:1.5rem;left:1.5rem;right:1.5rem;top:1.5rem}.ul_top_q24{top:1.5rem}.ul_right_q24{right:1.5rem}.ul_bottom_q24{bottom:1.5rem}.ul_left_q24{left:1.5rem}.ul_inset_x_q24{left:1.5rem;right:1.5rem}.ul_inset_y_q24{bottom:1.5rem;top:1.5rem}.ul_border_q24{border-width:1.5rem}.ul_border_t_q24{border-top-width:1.5rem}.ul_border_r_q24{border-right-width:1.5rem}.ul_border_b_q24{border-bottom-width:1.5rem}.ul_border_l_q24,.ul_border_x_q24{border-left-width:1.5rem}.ul_border_x_q24{border-right-width:1.5rem}.ul_border_y_q24{border-bottom-width:1.5rem;border-top-width:1.5rem}.ul_rounded_q24{border-radius:1.5rem}.ul_rounded_t_q24{border-top-left-radius:1.5rem;border-top-right-radius:1.5rem}.ul_rounded_r_q24{border-bottom-right-radius:1.5rem;border-top-right-radius:1.5rem}.ul_rounded_b_q24{border-bottom-left-radius:1.5rem;border-bottom-right-radius:1.5rem}.ul_rounded_l_q24{border-bottom-left-radius:1.5rem}.ul_rounded_l_q24,.ul_rounded_tl_q24{border-top-left-radius:1.5rem}.ul_rounded_tr_q24{border-top-right-radius:1.5rem}.ul_rounded_br_q24{border-bottom-right-radius:1.5rem}.ul_rounded_bl_q24{border-bottom-left-radius:1.5rem}.ul_p_q32{padding:2rem}.ul_pt_q32{padding-top:2rem}.ul_pr_q32{padding-right:2rem}.ul_pb_q32{padding-bottom:2rem}.ul_pl_q32,.ul_px_q32{padding-left:2rem}.ul_px_q32{padding-right:2rem}.ul_py_q32{padding-bottom:2rem;padding-top:2rem}.ul_m_q32{margin:2rem}.ul_mt_q32{margin-top:2rem}.ul_mr_q32{margin-right:2rem}.ul_mb_q32{margin-bottom:2rem}.ul_ml_q32,.ul_mx_q32{margin-left:2rem}.ul_mx_q32{margin-right:2rem}.ul_my_q32{margin-bottom:2rem;margin-top:2rem}.ul_gap_q32{gap:2rem}.ul_gap_col_q32{-moz-column-gap:2rem;column-gap:2rem}.ul_gap_row_q32{row-gap:2rem}.ul_w_q32{width:2rem}.ul_min_w_q32{min-width:2rem}.ul_max_w_q32{max-width:2rem}.ul_h_q32{height:2rem}.ul_min_h_q32{min-height:2rem}.ul_max_h_q32{max-height:2rem}.ul_inset_q32{bottom:2rem;left:2rem;right:2rem;top:2rem}.ul_top_q32{top:2rem}.ul_right_q32{right:2rem}.ul_bottom_q32{bottom:2rem}.ul_left_q32{left:2rem}.ul_inset_x_q32{left:2rem;right:2rem}.ul_inset_y_q32{bottom:2rem;top:2rem}.ul_border_q32{border-width:2rem}.ul_border_t_q32{border-top-width:2rem}.ul_border_r_q32{border-right-width:2rem}.ul_border_b_q32{border-bottom-width:2rem}.ul_border_l_q32,.ul_border_x_q32{border-left-width:2rem}.ul_border_x_q32{border-right-width:2rem}.ul_border_y_q32{border-bottom-width:2rem;border-top-width:2rem}.ul_rounded_q32{border-radius:2rem}.ul_rounded_t_q32{border-top-left-radius:2rem;border-top-right-radius:2rem}.ul_rounded_r_q32{border-bottom-right-radius:2rem;border-top-right-radius:2rem}.ul_rounded_b_q32{border-bottom-left-radius:2rem;border-bottom-right-radius:2rem}.ul_rounded_l_q32{border-bottom-left-radius:2rem}.ul_rounded_l_q32,.ul_rounded_tl_q32{border-top-left-radius:2rem}.ul_rounded_tr_q32{border-top-right-radius:2rem}.ul_rounded_br_q32{border-bottom-right-radius:2rem}.ul_rounded_bl_q32{border-bottom-left-radius:2rem}.ul_p_q40{padding:2.5rem}.ul_pt_q40{padding-top:2.5rem}.ul_pr_q40{padding-right:2.5rem}.ul_pb_q40{padding-bottom:2.5rem}.ul_pl_q40,.ul_px_q40{padding-left:2.5rem}.ul_px_q40{padding-right:2.5rem}.ul_py_q40{padding-bottom:2.5rem;padding-top:2.5rem}.ul_m_q40{margin:2.5rem}.ul_mt_q40{margin-top:2.5rem}.ul_mr_q40{margin-right:2.5rem}.ul_mb_q40{margin-bottom:2.5rem}.ul_ml_q40,.ul_mx_q40{margin-left:2.5rem}.ul_mx_q40{margin-right:2.5rem}.ul_my_q40{margin-bottom:2.5rem;margin-top:2.5rem}.ul_gap_q40{gap:2.5rem}.ul_gap_col_q40{-moz-column-gap:2.5rem;column-gap:2.5rem}.ul_gap_row_q40{row-gap:2.5rem}.ul_w_q40{width:2.5rem}.ul_min_w_q40{min-width:2.5rem}.ul_max_w_q40{max-width:2.5rem}.ul_h_q40{height:2.5rem}.ul_min_h_q40{min-height:2.5rem}.ul_max_h_q40{max-height:2.5rem}.ul_inset_q40{bottom:2.5rem;left:2.5rem;right:2.5rem;top:2.5rem}.ul_top_q40{top:2.5rem}.ul_right_q40{right:2.5rem}.ul_bottom_q40{bottom:2.5rem}.ul_left_q40{left:2.5rem}.ul_inset_x_q40{left:2.5rem;right:2.5rem}.ul_inset_y_q40{bottom:2.5rem;top:2.5rem}.ul_border_q40{border-width:2.5rem}.ul_border_t_q40{border-top-width:2.5rem}.ul_border_r_q40{border-right-width:2.5rem}.ul_border_b_q40{border-bottom-width:2.5rem}.ul_border_l_q40,.ul_border_x_q40{border-left-width:2.5rem}.ul_border_x_q40{border-right-width:2.5rem}.ul_border_y_q40{border-bottom-width:2.5rem;border-top-width:2.5rem}.ul_rounded_q40{border-radius:2.5rem}.ul_rounded_t_q40{border-top-left-radius:2.5rem;border-top-right-radius:2.5rem}.ul_rounded_r_q40{border-bottom-right-radius:2.5rem;border-top-right-radius:2.5rem}.ul_rounded_b_q40{border-bottom-left-radius:2.5rem;border-bottom-right-radius:2.5rem}.ul_rounded_l_q40{border-bottom-left-radius:2.5rem}.ul_rounded_l_q40,.ul_rounded_tl_q40{border-top-left-radius:2.5rem}.ul_rounded_tr_q40{border-top-right-radius:2.5rem}.ul_rounded_br_q40{border-bottom-right-radius:2.5rem}.ul_rounded_bl_q40{border-bottom-left-radius:2.5rem}.ul_p_q48{padding:3rem}.ul_pt_q48{padding-top:3rem}.ul_pr_q48{padding-right:3rem}.ul_pb_q48{padding-bottom:3rem}.ul_pl_q48,.ul_px_q48{padding-left:3rem}.ul_px_q48{padding-right:3rem}.ul_py_q48{padding-bottom:3rem;padding-top:3rem}.ul_m_q48{margin:3rem}.ul_mt_q48{margin-top:3rem}.ul_mr_q48{margin-right:3rem}.ul_mb_q48{margin-bottom:3rem}.ul_ml_q48,.ul_mx_q48{margin-left:3rem}.ul_mx_q48{margin-right:3rem}.ul_my_q48{margin-bottom:3rem;margin-top:3rem}.ul_gap_q48{gap:3rem}.ul_gap_col_q48{-moz-column-gap:3rem;column-gap:3rem}.ul_gap_row_q48{row-gap:3rem}.ul_w_q48{width:3rem}.ul_min_w_q48{min-width:3rem}.ul_max_w_q48{max-width:3rem}.ul_h_q48{height:3rem}.ul_min_h_q48{min-height:3rem}.ul_max_h_q48{max-height:3rem}.ul_inset_q48{bottom:3rem;left:3rem;right:3rem;top:3rem}.ul_top_q48{top:3rem}.ul_right_q48{right:3rem}.ul_bottom_q48{bottom:3rem}.ul_left_q48{left:3rem}.ul_inset_x_q48{left:3rem;right:3rem}.ul_inset_y_q48{bottom:3rem;top:3rem}.ul_border_q48{border-width:3rem}.ul_border_t_q48{border-top-width:3rem}.ul_border_r_q48{border-right-width:3rem}.ul_border_b_q48{border-bottom-width:3rem}.ul_border_l_q48,.ul_border_x_q48{border-left-width:3rem}.ul_border_x_q48{border-right-width:3rem}.ul_border_y_q48{border-bottom-width:3rem;border-top-width:3rem}.ul_rounded_q48{border-radius:3rem}.ul_rounded_t_q48{border-top-left-radius:3rem;border-top-right-radius:3rem}.ul_rounded_r_q48{border-bottom-right-radius:3rem;border-top-right-radius:3rem}.ul_rounded_b_q48{border-bottom-left-radius:3rem;border-bottom-right-radius:3rem}.ul_rounded_l_q48{border-bottom-left-radius:3rem}.ul_rounded_l_q48,.ul_rounded_tl_q48{border-top-left-radius:3rem}.ul_rounded_tr_q48{border-top-right-radius:3rem}.ul_rounded_br_q48{border-bottom-right-radius:3rem}.ul_rounded_bl_q48{border-bottom-left-radius:3rem}.ul_p_q56{padding:3.5rem}.ul_pt_q56{padding-top:3.5rem}.ul_pr_q56{padding-right:3.5rem}.ul_pb_q56{padding-bottom:3.5rem}.ul_pl_q56,.ul_px_q56{padding-left:3.5rem}.ul_px_q56{padding-right:3.5rem}.ul_py_q56{padding-bottom:3.5rem;padding-top:3.5rem}.ul_m_q56{margin:3.5rem}.ul_mt_q56{margin-top:3.5rem}.ul_mr_q56{margin-right:3.5rem}.ul_mb_q56{margin-bottom:3.5rem}.ul_ml_q56,.ul_mx_q56{margin-left:3.5rem}.ul_mx_q56{margin-right:3.5rem}.ul_my_q56{margin-bottom:3.5rem;margin-top:3.5rem}.ul_gap_q56{gap:3.5rem}.ul_gap_col_q56{-moz-column-gap:3.5rem;column-gap:3.5rem}.ul_gap_row_q56{row-gap:3.5rem}.ul_w_q56{width:3.5rem}.ul_min_w_q56{min-width:3.5rem}.ul_max_w_q56{max-width:3.5rem}.ul_h_q56{height:3.5rem}.ul_min_h_q56{min-height:3.5rem}.ul_max_h_q56{max-height:3.5rem}.ul_inset_q56{bottom:3.5rem;left:3.5rem;right:3.5rem;top:3.5rem}.ul_top_q56{top:3.5rem}.ul_right_q56{right:3.5rem}.ul_bottom_q56{bottom:3.5rem}.ul_left_q56{left:3.5rem}.ul_inset_x_q56{left:3.5rem;right:3.5rem}.ul_inset_y_q56{bottom:3.5rem;top:3.5rem}.ul_border_q56{border-width:3.5rem}.ul_border_t_q56{border-top-width:3.5rem}.ul_border_r_q56{border-right-width:3.5rem}.ul_border_b_q56{border-bottom-width:3.5rem}.ul_border_l_q56,.ul_border_x_q56{border-left-width:3.5rem}.ul_border_x_q56{border-right-width:3.5rem}.ul_border_y_q56{border-bottom-width:3.5rem;border-top-width:3.5rem}.ul_rounded_q56{border-radius:3.5rem}.ul_rounded_t_q56{border-top-left-radius:3.5rem;border-top-right-radius:3.5rem}.ul_rounded_r_q56{border-bottom-right-radius:3.5rem;border-top-right-radius:3.5rem}.ul_rounded_b_q56{border-bottom-left-radius:3.5rem;border-bottom-right-radius:3.5rem}.ul_rounded_l_q56{border-bottom-left-radius:3.5rem}.ul_rounded_l_q56,.ul_rounded_tl_q56{border-top-left-radius:3.5rem}.ul_rounded_tr_q56{border-top-right-radius:3.5rem}.ul_rounded_br_q56{border-bottom-right-radius:3.5rem}.ul_rounded_bl_q56{border-bottom-left-radius:3.5rem}.ul_p_q64{padding:4rem}.ul_pt_q64{padding-top:4rem}.ul_pr_q64{padding-right:4rem}.ul_pb_q64{padding-bottom:4rem}.ul_pl_q64,.ul_px_q64{padding-left:4rem}.ul_px_q64{padding-right:4rem}.ul_py_q64{padding-bottom:4rem;padding-top:4rem}.ul_m_q64{margin:4rem}.ul_mt_q64{margin-top:4rem}.ul_mr_q64{margin-right:4rem}.ul_mb_q64{margin-bottom:4rem}.ul_ml_q64,.ul_mx_q64{margin-left:4rem}.ul_mx_q64{margin-right:4rem}.ul_my_q64{margin-bottom:4rem;margin-top:4rem}.ul_gap_q64{gap:4rem}.ul_gap_col_q64{-moz-column-gap:4rem;column-gap:4rem}.ul_gap_row_q64{row-gap:4rem}.ul_w_q64{width:4rem}.ul_min_w_q64{min-width:4rem}.ul_max_w_q64{max-width:4rem}.ul_h_q64{height:4rem}.ul_min_h_q64{min-height:4rem}.ul_max_h_q64{max-height:4rem}.ul_inset_q64{bottom:4rem;left:4rem;right:4rem;top:4rem}.ul_top_q64{top:4rem}.ul_right_q64{right:4rem}.ul_bottom_q64{bottom:4rem}.ul_left_q64{left:4rem}.ul_inset_x_q64{left:4rem;right:4rem}.ul_inset_y_q64{bottom:4rem;top:4rem}.ul_border_q64{border-width:4rem}.ul_border_t_q64{border-top-width:4rem}.ul_border_r_q64{border-right-width:4rem}.ul_border_b_q64{border-bottom-width:4rem}.ul_border_l_q64,.ul_border_x_q64{border-left-width:4rem}.ul_border_x_q64{border-right-width:4rem}.ul_border_y_q64{border-bottom-width:4rem;border-top-width:4rem}.ul_rounded_q64{border-radius:4rem}.ul_rounded_t_q64{border-top-left-radius:4rem;border-top-right-radius:4rem}.ul_rounded_r_q64{border-bottom-right-radius:4rem;border-top-right-radius:4rem}.ul_rounded_b_q64{border-bottom-left-radius:4rem;border-bottom-right-radius:4rem}.ul_rounded_l_q64{border-bottom-left-radius:4rem}.ul_rounded_l_q64,.ul_rounded_tl_q64{border-top-left-radius:4rem}.ul_rounded_tr_q64{border-top-right-radius:4rem}.ul_rounded_br_q64{border-bottom-right-radius:4rem}.ul_rounded_bl_q64{border-bottom-left-radius:4rem}.ul_p_q72{padding:4.5rem}.ul_pt_q72{padding-top:4.5rem}.ul_pr_q72{padding-right:4.5rem}.ul_pb_q72{padding-bottom:4.5rem}.ul_pl_q72,.ul_px_q72{padding-left:4.5rem}.ul_px_q72{padding-right:4.5rem}.ul_py_q72{padding-bottom:4.5rem;padding-top:4.5rem}.ul_m_q72{margin:4.5rem}.ul_mt_q72{margin-top:4.5rem}.ul_mr_q72{margin-right:4.5rem}.ul_mb_q72{margin-bottom:4.5rem}.ul_ml_q72,.ul_mx_q72{margin-left:4.5rem}.ul_mx_q72{margin-right:4.5rem}.ul_my_q72{margin-bottom:4.5rem;margin-top:4.5rem}.ul_gap_q72{gap:4.5rem}.ul_gap_col_q72{-moz-column-gap:4.5rem;column-gap:4.5rem}.ul_gap_row_q72{row-gap:4.5rem}.ul_w_q72{width:4.5rem}.ul_min_w_q72{min-width:4.5rem}.ul_max_w_q72{max-width:4.5rem}.ul_h_q72{height:4.5rem}.ul_min_h_q72{min-height:4.5rem}.ul_max_h_q72{max-height:4.5rem}.ul_inset_q72{bottom:4.5rem;left:4.5rem;right:4.5rem;top:4.5rem}.ul_top_q72{top:4.5rem}.ul_right_q72{right:4.5rem}.ul_bottom_q72{bottom:4.5rem}.ul_left_q72{left:4.5rem}.ul_inset_x_q72{left:4.5rem;right:4.5rem}.ul_inset_y_q72{bottom:4.5rem;top:4.5rem}.ul_border_q72{border-width:4.5rem}.ul_border_t_q72{border-top-width:4.5rem}.ul_border_r_q72{border-right-width:4.5rem}.ul_border_b_q72{border-bottom-width:4.5rem}.ul_border_l_q72,.ul_border_x_q72{border-left-width:4.5rem}.ul_border_x_q72{border-right-width:4.5rem}.ul_border_y_q72{border-bottom-width:4.5rem;border-top-width:4.5rem}.ul_rounded_q72{border-radius:4.5rem}.ul_rounded_t_q72{border-top-left-radius:4.5rem;border-top-right-radius:4.5rem}.ul_rounded_r_q72{border-bottom-right-radius:4.5rem;border-top-right-radius:4.5rem}.ul_rounded_b_q72{border-bottom-left-radius:4.5rem;border-bottom-right-radius:4.5rem}.ul_rounded_l_q72{border-bottom-left-radius:4.5rem}.ul_rounded_l_q72,.ul_rounded_tl_q72{border-top-left-radius:4.5rem}.ul_rounded_tr_q72{border-top-right-radius:4.5rem}.ul_rounded_br_q72{border-bottom-right-radius:4.5rem}.ul_rounded_bl_q72{border-bottom-left-radius:4.5rem}.ul_p_q80{padding:5rem}.ul_pt_q80{padding-top:5rem}.ul_pr_q80{padding-right:5rem}.ul_pb_q80{padding-bottom:5rem}.ul_pl_q80,.ul_px_q80{padding-left:5rem}.ul_px_q80{padding-right:5rem}.ul_py_q80{padding-bottom:5rem;padding-top:5rem}.ul_m_q80{margin:5rem}.ul_mt_q80{margin-top:5rem}.ul_mr_q80{margin-right:5rem}.ul_mb_q80{margin-bottom:5rem}.ul_ml_q80,.ul_mx_q80{margin-left:5rem}.ul_mx_q80{margin-right:5rem}.ul_my_q80{margin-bottom:5rem;margin-top:5rem}.ul_gap_q80{gap:5rem}.ul_gap_col_q80{-moz-column-gap:5rem;column-gap:5rem}.ul_gap_row_q80{row-gap:5rem}.ul_w_q80{width:5rem}.ul_min_w_q80{min-width:5rem}.ul_max_w_q80{max-width:5rem}.ul_h_q80{height:5rem}.ul_min_h_q80{min-height:5rem}.ul_max_h_q80{max-height:5rem}.ul_inset_q80{bottom:5rem;left:5rem;right:5rem;top:5rem}.ul_top_q80{top:5rem}.ul_right_q80{right:5rem}.ul_bottom_q80{bottom:5rem}.ul_left_q80{left:5rem}.ul_inset_x_q80{left:5rem;right:5rem}.ul_inset_y_q80{bottom:5rem;top:5rem}.ul_border_q80{border-width:5rem}.ul_border_t_q80{border-top-width:5rem}.ul_border_r_q80{border-right-width:5rem}.ul_border_b_q80{border-bottom-width:5rem}.ul_border_l_q80,.ul_border_x_q80{border-left-width:5rem}.ul_border_x_q80{border-right-width:5rem}.ul_border_y_q80{border-bottom-width:5rem;border-top-width:5rem}.ul_rounded_q80{border-radius:5rem}.ul_rounded_t_q80{border-top-left-radius:5rem;border-top-right-radius:5rem}.ul_rounded_r_q80{border-bottom-right-radius:5rem;border-top-right-radius:5rem}.ul_rounded_b_q80{border-bottom-left-radius:5rem;border-bottom-right-radius:5rem}.ul_rounded_l_q80{border-bottom-left-radius:5rem}.ul_rounded_l_q80,.ul_rounded_tl_q80{border-top-left-radius:5rem}.ul_rounded_tr_q80{border-top-right-radius:5rem}.ul_rounded_br_q80{border-bottom-right-radius:5rem}.ul_rounded_bl_q80{border-bottom-left-radius:5rem}.ul_p_q96{padding:6rem}.ul_pt_q96{padding-top:6rem}.ul_pr_q96{padding-right:6rem}.ul_pb_q96{padding-bottom:6rem}.ul_pl_q96,.ul_px_q96{padding-left:6rem}.ul_px_q96{padding-right:6rem}.ul_py_q96{padding-bottom:6rem;padding-top:6rem}.ul_m_q96{margin:6rem}.ul_mt_q96{margin-top:6rem}.ul_mr_q96{margin-right:6rem}.ul_mb_q96{margin-bottom:6rem}.ul_ml_q96,.ul_mx_q96{margin-left:6rem}.ul_mx_q96{margin-right:6rem}.ul_my_q96{margin-bottom:6rem;margin-top:6rem}.ul_gap_q96{gap:6rem}.ul_gap_col_q96{-moz-column-gap:6rem;column-gap:6rem}.ul_gap_row_q96{row-gap:6rem}.ul_w_q96{width:6rem}.ul_min_w_q96{min-width:6rem}.ul_max_w_q96{max-width:6rem}.ul_h_q96{height:6rem}.ul_min_h_q96{min-height:6rem}.ul_max_h_q96{max-height:6rem}.ul_inset_q96{bottom:6rem;left:6rem;right:6rem;top:6rem}.ul_top_q96{top:6rem}.ul_right_q96{right:6rem}.ul_bottom_q96{bottom:6rem}.ul_left_q96{left:6rem}.ul_inset_x_q96{left:6rem;right:6rem}.ul_inset_y_q96{bottom:6rem;top:6rem}.ul_border_q96{border-width:6rem}.ul_border_t_q96{border-top-width:6rem}.ul_border_r_q96{border-right-width:6rem}.ul_border_b_q96{border-bottom-width:6rem}.ul_border_l_q96,.ul_border_x_q96{border-left-width:6rem}.ul_border_x_q96{border-right-width:6rem}.ul_border_y_q96{border-bottom-width:6rem;border-top-width:6rem}.ul_rounded_q96{border-radius:6rem}.ul_rounded_t_q96{border-top-left-radius:6rem;border-top-right-radius:6rem}.ul_rounded_r_q96{border-bottom-right-radius:6rem;border-top-right-radius:6rem}.ul_rounded_b_q96{border-bottom-left-radius:6rem;border-bottom-right-radius:6rem}.ul_rounded_l_q96{border-bottom-left-radius:6rem}.ul_rounded_l_q96,.ul_rounded_tl_q96{border-top-left-radius:6rem}.ul_rounded_tr_q96{border-top-right-radius:6rem}.ul_rounded_br_q96{border-bottom-right-radius:6rem}.ul_rounded_bl_q96{border-bottom-left-radius:6rem}.ul_p_q112{padding:7rem}.ul_pt_q112{padding-top:7rem}.ul_pr_q112{padding-right:7rem}.ul_pb_q112{padding-bottom:7rem}.ul_pl_q112,.ul_px_q112{padding-left:7rem}.ul_px_q112{padding-right:7rem}.ul_py_q112{padding-bottom:7rem;padding-top:7rem}.ul_m_q112{margin:7rem}.ul_mt_q112{margin-top:7rem}.ul_mr_q112{margin-right:7rem}.ul_mb_q112{margin-bottom:7rem}.ul_ml_q112,.ul_mx_q112{margin-left:7rem}.ul_mx_q112{margin-right:7rem}.ul_my_q112{margin-bottom:7rem;margin-top:7rem}.ul_gap_q112{gap:7rem}.ul_gap_col_q112{-moz-column-gap:7rem;column-gap:7rem}.ul_gap_row_q112{row-gap:7rem}.ul_w_q112{width:7rem}.ul_min_w_q112{min-width:7rem}.ul_max_w_q112{max-width:7rem}.ul_h_q112{height:7rem}.ul_min_h_q112{min-height:7rem}.ul_max_h_q112{max-height:7rem}.ul_inset_q112{bottom:7rem;left:7rem;right:7rem;top:7rem}.ul_top_q112{top:7rem}.ul_right_q112{right:7rem}.ul_bottom_q112{bottom:7rem}.ul_left_q112{left:7rem}.ul_inset_x_q112{left:7rem;right:7rem}.ul_inset_y_q112{bottom:7rem;top:7rem}.ul_border_q112{border-width:7rem}.ul_border_t_q112{border-top-width:7rem}.ul_border_r_q112{border-right-width:7rem}.ul_border_b_q112{border-bottom-width:7rem}.ul_border_l_q112,.ul_border_x_q112{border-left-width:7rem}.ul_border_x_q112{border-right-width:7rem}.ul_border_y_q112{border-bottom-width:7rem;border-top-width:7rem}.ul_rounded_q112{border-radius:7rem}.ul_rounded_t_q112{border-top-left-radius:7rem;border-top-right-radius:7rem}.ul_rounded_r_q112{border-bottom-right-radius:7rem;border-top-right-radius:7rem}.ul_rounded_b_q112{border-bottom-left-radius:7rem;border-bottom-right-radius:7rem}.ul_rounded_l_q112{border-bottom-left-radius:7rem}.ul_rounded_l_q112,.ul_rounded_tl_q112{border-top-left-radius:7rem}.ul_rounded_tr_q112{border-top-right-radius:7rem}.ul_rounded_br_q112{border-bottom-right-radius:7rem}.ul_rounded_bl_q112{border-bottom-left-radius:7rem}.ul_p_q128{padding:8rem}.ul_pt_q128{padding-top:8rem}.ul_pr_q128{padding-right:8rem}.ul_pb_q128{padding-bottom:8rem}.ul_pl_q128,.ul_px_q128{padding-left:8rem}.ul_px_q128{padding-right:8rem}.ul_py_q128{padding-bottom:8rem;padding-top:8rem}.ul_m_q128{margin:8rem}.ul_mt_q128{margin-top:8rem}.ul_mr_q128{margin-right:8rem}.ul_mb_q128{margin-bottom:8rem}.ul_ml_q128,.ul_mx_q128{margin-left:8rem}.ul_mx_q128{margin-right:8rem}.ul_my_q128{margin-bottom:8rem;margin-top:8rem}.ul_gap_q128{gap:8rem}.ul_gap_col_q128{-moz-column-gap:8rem;column-gap:8rem}.ul_gap_row_q128{row-gap:8rem}.ul_w_q128{width:8rem}.ul_min_w_q128{min-width:8rem}.ul_max_w_q128{max-width:8rem}.ul_h_q128{height:8rem}.ul_min_h_q128{min-height:8rem}.ul_max_h_q128{max-height:8rem}.ul_inset_q128{bottom:8rem;left:8rem;right:8rem;top:8rem}.ul_top_q128{top:8rem}.ul_right_q128{right:8rem}.ul_bottom_q128{bottom:8rem}.ul_left_q128{left:8rem}.ul_inset_x_q128{left:8rem;right:8rem}.ul_inset_y_q128{bottom:8rem;top:8rem}.ul_border_q128{border-width:8rem}.ul_border_t_q128{border-top-width:8rem}.ul_border_r_q128{border-right-width:8rem}.ul_border_b_q128{border-bottom-width:8rem}.ul_border_l_q128,.ul_border_x_q128{border-left-width:8rem}.ul_border_x_q128{border-right-width:8rem}.ul_border_y_q128{border-bottom-width:8rem;border-top-width:8rem}.ul_rounded_q128{border-radius:8rem}.ul_rounded_t_q128{border-top-left-radius:8rem;border-top-right-radius:8rem}.ul_rounded_r_q128{border-bottom-right-radius:8rem;border-top-right-radius:8rem}.ul_rounded_b_q128{border-bottom-left-radius:8rem;border-bottom-right-radius:8rem}.ul_rounded_l_q128{border-bottom-left-radius:8rem}.ul_rounded_l_q128,.ul_rounded_tl_q128{border-top-left-radius:8rem}.ul_rounded_tr_q128{border-top-right-radius:8rem}.ul_rounded_br_q128{border-bottom-right-radius:8rem}.ul_rounded_bl_q128{border-bottom-left-radius:8rem}.ul_p_q144{padding:9rem}.ul_pt_q144{padding-top:9rem}.ul_pr_q144{padding-right:9rem}.ul_pb_q144{padding-bottom:9rem}.ul_pl_q144,.ul_px_q144{padding-left:9rem}.ul_px_q144{padding-right:9rem}.ul_py_q144{padding-bottom:9rem;padding-top:9rem}.ul_m_q144{margin:9rem}.ul_mt_q144{margin-top:9rem}.ul_mr_q144{margin-right:9rem}.ul_mb_q144{margin-bottom:9rem}.ul_ml_q144,.ul_mx_q144{margin-left:9rem}.ul_mx_q144{margin-right:9rem}.ul_my_q144{margin-bottom:9rem;margin-top:9rem}.ul_gap_q144{gap:9rem}.ul_gap_col_q144{-moz-column-gap:9rem;column-gap:9rem}.ul_gap_row_q144{row-gap:9rem}.ul_w_q144{width:9rem}.ul_min_w_q144{min-width:9rem}.ul_max_w_q144{max-width:9rem}.ul_h_q144{height:9rem}.ul_min_h_q144{min-height:9rem}.ul_max_h_q144{max-height:9rem}.ul_inset_q144{bottom:9rem;left:9rem;right:9rem;top:9rem}.ul_top_q144{top:9rem}.ul_right_q144{right:9rem}.ul_bottom_q144{bottom:9rem}.ul_left_q144{left:9rem}.ul_inset_x_q144{left:9rem;right:9rem}.ul_inset_y_q144{bottom:9rem;top:9rem}.ul_border_q144{border-width:9rem}.ul_border_t_q144{border-top-width:9rem}.ul_border_r_q144{border-right-width:9rem}.ul_border_b_q144{border-bottom-width:9rem}.ul_border_l_q144,.ul_border_x_q144{border-left-width:9rem}.ul_border_x_q144{border-right-width:9rem}.ul_border_y_q144{border-bottom-width:9rem;border-top-width:9rem}.ul_rounded_q144{border-radius:9rem}.ul_rounded_t_q144{border-top-left-radius:9rem;border-top-right-radius:9rem}.ul_rounded_r_q144{border-bottom-right-radius:9rem;border-top-right-radius:9rem}.ul_rounded_b_q144{border-bottom-left-radius:9rem;border-bottom-right-radius:9rem}.ul_rounded_l_q144{border-bottom-left-radius:9rem}.ul_rounded_l_q144,.ul_rounded_tl_q144{border-top-left-radius:9rem}.ul_rounded_tr_q144{border-top-right-radius:9rem}.ul_rounded_br_q144{border-bottom-right-radius:9rem}.ul_rounded_bl_q144{border-bottom-left-radius:9rem}.ul_p_q160{padding:10rem}.ul_pt_q160{padding-top:10rem}.ul_pr_q160{padding-right:10rem}.ul_pb_q160{padding-bottom:10rem}.ul_pl_q160,.ul_px_q160{padding-left:10rem}.ul_px_q160{padding-right:10rem}.ul_py_q160{padding-bottom:10rem;padding-top:10rem}.ul_m_q160{margin:10rem}.ul_mt_q160{margin-top:10rem}.ul_mr_q160{margin-right:10rem}.ul_mb_q160{margin-bottom:10rem}.ul_ml_q160,.ul_mx_q160{margin-left:10rem}.ul_mx_q160{margin-right:10rem}.ul_my_q160{margin-bottom:10rem;margin-top:10rem}.ul_gap_q160{gap:10rem}.ul_gap_col_q160{-moz-column-gap:10rem;column-gap:10rem}.ul_gap_row_q160{row-gap:10rem}.ul_w_q160{width:10rem}.ul_min_w_q160{min-width:10rem}.ul_max_w_q160{max-width:10rem}.ul_h_q160{height:10rem}.ul_min_h_q160{min-height:10rem}.ul_max_h_q160{max-height:10rem}.ul_inset_q160{bottom:10rem;left:10rem;right:10rem;top:10rem}.ul_top_q160{top:10rem}.ul_right_q160{right:10rem}.ul_bottom_q160{bottom:10rem}.ul_left_q160{left:10rem}.ul_inset_x_q160{left:10rem;right:10rem}.ul_inset_y_q160{bottom:10rem;top:10rem}.ul_border_q160{border-width:10rem}.ul_border_t_q160{border-top-width:10rem}.ul_border_r_q160{border-right-width:10rem}.ul_border_b_q160{border-bottom-width:10rem}.ul_border_l_q160,.ul_border_x_q160{border-left-width:10rem}.ul_border_x_q160{border-right-width:10rem}.ul_border_y_q160{border-bottom-width:10rem;border-top-width:10rem}.ul_rounded_q160{border-radius:10rem}.ul_rounded_t_q160{border-top-left-radius:10rem;border-top-right-radius:10rem}.ul_rounded_r_q160{border-bottom-right-radius:10rem;border-top-right-radius:10rem}.ul_rounded_b_q160{border-bottom-left-radius:10rem;border-bottom-right-radius:10rem}.ul_rounded_l_q160{border-bottom-left-radius:10rem}.ul_rounded_l_q160,.ul_rounded_tl_q160{border-top-left-radius:10rem}.ul_rounded_tr_q160{border-top-right-radius:10rem}.ul_rounded_br_q160{border-bottom-right-radius:10rem}.ul_rounded_bl_q160{border-bottom-left-radius:10rem}.ul_p_q192{padding:12rem}.ul_pt_q192{padding-top:12rem}.ul_pr_q192{padding-right:12rem}.ul_pb_q192{padding-bottom:12rem}.ul_pl_q192,.ul_px_q192{padding-left:12rem}.ul_px_q192{padding-right:12rem}.ul_py_q192{padding-bottom:12rem;padding-top:12rem}.ul_m_q192{margin:12rem}.ul_mt_q192{margin-top:12rem}.ul_mr_q192{margin-right:12rem}.ul_mb_q192{margin-bottom:12rem}.ul_ml_q192,.ul_mx_q192{margin-left:12rem}.ul_mx_q192{margin-right:12rem}.ul_my_q192{margin-bottom:12rem;margin-top:12rem}.ul_gap_q192{gap:12rem}.ul_gap_col_q192{-moz-column-gap:12rem;column-gap:12rem}.ul_gap_row_q192{row-gap:12rem}.ul_w_q192{width:12rem}.ul_min_w_q192{min-width:12rem}.ul_max_w_q192{max-width:12rem}.ul_h_q192{height:12rem}.ul_min_h_q192{min-height:12rem}.ul_max_h_q192{max-height:12rem}.ul_inset_q192{bottom:12rem;left:12rem;right:12rem;top:12rem}.ul_top_q192{top:12rem}.ul_right_q192{right:12rem}.ul_bottom_q192{bottom:12rem}.ul_left_q192{left:12rem}.ul_inset_x_q192{left:12rem;right:12rem}.ul_inset_y_q192{bottom:12rem;top:12rem}.ul_border_q192{border-width:12rem}.ul_border_t_q192{border-top-width:12rem}.ul_border_r_q192{border-right-width:12rem}.ul_border_b_q192{border-bottom-width:12rem}.ul_border_l_q192,.ul_border_x_q192{border-left-width:12rem}.ul_border_x_q192{border-right-width:12rem}.ul_border_y_q192{border-bottom-width:12rem;border-top-width:12rem}.ul_rounded_q192{border-radius:12rem}.ul_rounded_t_q192{border-top-left-radius:12rem;border-top-right-radius:12rem}.ul_rounded_r_q192{border-bottom-right-radius:12rem;border-top-right-radius:12rem}.ul_rounded_b_q192{border-bottom-left-radius:12rem;border-bottom-right-radius:12rem}.ul_rounded_l_q192{border-bottom-left-radius:12rem}.ul_rounded_l_q192,.ul_rounded_tl_q192{border-top-left-radius:12rem}.ul_rounded_tr_q192{border-top-right-radius:12rem}.ul_rounded_br_q192{border-bottom-right-radius:12rem}.ul_rounded_bl_q192{border-bottom-left-radius:12rem}.ul_p_q224{padding:14rem}.ul_pt_q224{padding-top:14rem}.ul_pr_q224{padding-right:14rem}.ul_pb_q224{padding-bottom:14rem}.ul_pl_q224,.ul_px_q224{padding-left:14rem}.ul_px_q224{padding-right:14rem}.ul_py_q224{padding-bottom:14rem;padding-top:14rem}.ul_m_q224{margin:14rem}.ul_mt_q224{margin-top:14rem}.ul_mr_q224{margin-right:14rem}.ul_mb_q224{margin-bottom:14rem}.ul_ml_q224,.ul_mx_q224{margin-left:14rem}.ul_mx_q224{margin-right:14rem}.ul_my_q224{margin-bottom:14rem;margin-top:14rem}.ul_gap_q224{gap:14rem}.ul_gap_col_q224{-moz-column-gap:14rem;column-gap:14rem}.ul_gap_row_q224{row-gap:14rem}.ul_w_q224{width:14rem}.ul_min_w_q224{min-width:14rem}.ul_max_w_q224{max-width:14rem}.ul_h_q224{height:14rem}.ul_min_h_q224{min-height:14rem}.ul_max_h_q224{max-height:14rem}.ul_inset_q224{bottom:14rem;left:14rem;right:14rem;top:14rem}.ul_top_q224{top:14rem}.ul_right_q224{right:14rem}.ul_bottom_q224{bottom:14rem}.ul_left_q224{left:14rem}.ul_inset_x_q224{left:14rem;right:14rem}.ul_inset_y_q224{bottom:14rem;top:14rem}.ul_border_q224{border-width:14rem}.ul_border_t_q224{border-top-width:14rem}.ul_border_r_q224{border-right-width:14rem}.ul_border_b_q224{border-bottom-width:14rem}.ul_border_l_q224,.ul_border_x_q224{border-left-width:14rem}.ul_border_x_q224{border-right-width:14rem}.ul_border_y_q224{border-bottom-width:14rem;border-top-width:14rem}.ul_rounded_q224{border-radius:14rem}.ul_rounded_t_q224{border-top-left-radius:14rem;border-top-right-radius:14rem}.ul_rounded_r_q224{border-bottom-right-radius:14rem;border-top-right-radius:14rem}.ul_rounded_b_q224{border-bottom-left-radius:14rem;border-bottom-right-radius:14rem}.ul_rounded_l_q224{border-bottom-left-radius:14rem}.ul_rounded_l_q224,.ul_rounded_tl_q224{border-top-left-radius:14rem}.ul_rounded_tr_q224{border-top-right-radius:14rem}.ul_rounded_br_q224{border-bottom-right-radius:14rem}.ul_rounded_bl_q224{border-bottom-left-radius:14rem}.ul_p_q256{padding:16rem}.ul_pt_q256{padding-top:16rem}.ul_pr_q256{padding-right:16rem}.ul_pb_q256{padding-bottom:16rem}.ul_pl_q256,.ul_px_q256{padding-left:16rem}.ul_px_q256{padding-right:16rem}.ul_py_q256{padding-bottom:16rem;padding-top:16rem}.ul_m_q256{margin:16rem}.ul_mt_q256{margin-top:16rem}.ul_mr_q256{margin-right:16rem}.ul_mb_q256{margin-bottom:16rem}.ul_ml_q256,.ul_mx_q256{margin-left:16rem}.ul_mx_q256{margin-right:16rem}.ul_my_q256{margin-bottom:16rem;margin-top:16rem}.ul_gap_q256{gap:16rem}.ul_gap_col_q256{-moz-column-gap:16rem;column-gap:16rem}.ul_gap_row_q256{row-gap:16rem}.ul_w_q256{width:16rem}.ul_min_w_q256{min-width:16rem}.ul_max_w_q256{max-width:16rem}.ul_h_q256{height:16rem}.ul_min_h_q256{min-height:16rem}.ul_max_h_q256{max-height:16rem}.ul_inset_q256{bottom:16rem;left:16rem;right:16rem;top:16rem}.ul_top_q256{top:16rem}.ul_right_q256{right:16rem}.ul_bottom_q256{bottom:16rem}.ul_left_q256{left:16rem}.ul_inset_x_q256{left:16rem;right:16rem}.ul_inset_y_q256{bottom:16rem;top:16rem}.ul_border_q256{border-width:16rem}.ul_border_t_q256{border-top-width:16rem}.ul_border_r_q256{border-right-width:16rem}.ul_border_b_q256{border-bottom-width:16rem}.ul_border_l_q256,.ul_border_x_q256{border-left-width:16rem}.ul_border_x_q256{border-right-width:16rem}.ul_border_y_q256{border-bottom-width:16rem;border-top-width:16rem}.ul_rounded_q256{border-radius:16rem}.ul_rounded_t_q256{border-top-left-radius:16rem;border-top-right-radius:16rem}.ul_rounded_r_q256{border-bottom-right-radius:16rem;border-top-right-radius:16rem}.ul_rounded_b_q256{border-bottom-left-radius:16rem;border-bottom-right-radius:16rem}.ul_rounded_l_q256{border-bottom-left-radius:16rem}.ul_rounded_l_q256,.ul_rounded_tl_q256{border-top-left-radius:16rem}.ul_rounded_tr_q256{border-top-right-radius:16rem}.ul_rounded_br_q256{border-bottom-right-radius:16rem}.ul_rounded_bl_q256{border-bottom-left-radius:16rem}}html{font-size:12px}@media screen and (min-width:360px){html{font-size:calc(10.90909px + .30303vw)}}@media screen and (min-width:4320px){html{font-size:24px}}html{box-sizing:border-box;-webkit-text-size-adjust:100%;height:100%;-moz-tab-size:4;tab-size:4;word-break:normal}body{margin:0;min-height:100%}body,html{height:100%;margin:0}*,:after,:before{background-repeat:no-repeat;box-sizing:inherit}:after,:before{text-decoration:inherit;vertical-align:inherit}*{margin:0;padding:0}.animate_glow_soft{animation-delay:0s;animation-direction:normal;animation-duration:2s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_glow_soft;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_glow_soft{0%,to{box-shadow:0 0 10px 0 rgba(54,150,193,.5)}50%{box-shadow:0 0 20px 5px rgba(54,150,193,.8)}}.animate_swing{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_swing;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_swing{0%,to{transform:rotate(0deg)}50%{transform:rotate(15deg)}}.animate_swing_slow{animation-delay:0s;animation-direction:normal;animation-duration:2s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_swing_slow;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_swing_slow{0%,to{transform:rotate(0deg)}50%{transform:rotate(10deg)}}.animate_swing_fast{animation-delay:0s;animation-direction:normal;animation-duration:.25s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_swing_fast;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_swing_fast{0%,to{transform:rotate(0deg)}50%{transform:rotate(20deg)}}.animate_swing_fade{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_swing_fade;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_swing_fade{0%,to{opacity:1;transform:rotate(0deg)}50%{opacity:.5;transform:rotate(15deg)}}.cursor-pointer{cursor:pointer}.cursor-text{cursor:text}.cursor-wait{cursor:wait}.cursor-crosshair{cursor:crosshair}.cursor-not-allowed{cursor:not-allowed}.cursor-zoom-in{cursor:zoom-in}.cursor-grab{cursor:grab}.cursor-grabbing{cursor:grabbing}.interactive-element{pointer-events:auto}.non-interactive-element{pointer-events:none}.custom-element{pointer-events:visiblePainted}::-webkit-scrollbar{background-color:transparent;width:12px}::-webkit-scrollbar-track{background-color:transparent;-webkit-box-shadow:none!important}::-webkit-scrollbar-track-piece{-webkit-border-radius:6px}::-webkit-scrollbar-thumb:window-inactive{background:none}.scrollable-content::-webkit-scrollbar{height:10px;width:10px}.scrollable-content::-webkit-scrollbar-track{background:#e0e0e0}.scrollable-content::-webkit-scrollbar-thumb{background:#4a4a4a;border:2px solid #e0e0e0;border-radius:5px}.scrollable-content::-webkit-scrollbar-thumb:hover{background:#313131}.scrollable-content{max-height:300px;overflow-y:scroll;scrollbar-color:#4a4a4a #e0e0e0;scrollbar-width:thin}.detailed-scrollable-content::-webkit-scrollbar{height:8px;width:8px}.detailed-scrollable-content::-webkit-scrollbar-track{background:#eaeaea;border-radius:4px;box-shadow:inset 0 0 5px gray}.detailed-scrollable-content::-webkit-scrollbar-thumb{background:#bcbcbc;border:3px solid #eaeaea;border-radius:4px}.detailed-scrollable-content::-webkit-scrollbar-thumb:hover{background:#a8a8a8}.detailed-scrollable-content::-webkit-scrollbar-thumb:active{background:#989898}.detailed-scrollable-content::-webkit-scrollbar-corner{background:#eaeaea}.detailed-scrollable-content{max-height:400px;overflow-y:auto;scrollbar-color:#bcbcbc #eaeaea;scrollbar-width:auto}.unique-vertical-scrollbar::-webkit-scrollbar{width:10px}.unique-vertical-scrollbar::-webkit-scrollbar-thumb{background:linear-gradient(180deg,#ff8a00,#e52e71);border-radius:5px}.unique-horizontal-scrollbar::-webkit-scrollbar{height:10px}.unique-horizontal-scrollbar::-webkit-scrollbar-thumb{background:linear-gradient(90deg,#ff8a00,#e52e71);border-radius:5px}@keyframes loader-dots-pulse{0%,80%,to{opacity:.3;transform:scale(.8)}40%{opacity:1;transform:scale(1)}}@keyframes loader-dots-bounce{0%,80%,to{transform:translateY(0)}40%{transform:translateY(-12px)}}@keyframes loader-dots-wave{0%,to{opacity:.5;transform:translateY(0)}50%{opacity:1;transform:translateY(-10px)}}@keyframes loader-dots-fade{0%,to{opacity:.2}50%{opacity:1}}@keyframes loader-dots-grow{0%,to{transform:scale(.6)}50%{transform:scale(1.2)}}@keyframes loader-typing{0%,60%,to{transform:translateY(0)}30%{transform:translateY(-6px)}}@keyframes loader-ellipsis{0%{transform:scale(1)}50%{transform:scale(.5)}to{transform:scale(1)}}@keyframes loader-bars-wave{0%,40%,to{height:10px}20%{height:30px}}@keyframes loader-wave-bar{0%,to{height:10px}50%{height:30px}}@keyframes loader-progress-slide{0%{transform:translateX(-100%)}to{transform:translateX(350%)}}@keyframes loader-ripple{0%{opacity:1;transform:scale(.5)}to{opacity:0;transform:scale(1.5)}}@keyframes loader-pulse{0%{opacity:1;transform:scale(.8)}50%{opacity:.5;transform:scale(1)}to{opacity:1;transform:scale(.8)}}@keyframes loader-orbit-top{0%,to{top:0}50%{top:calc(100% - 12px)}}@keyframes loader-orbit-bottom{0%,to{bottom:0}50%{bottom:calc(100% - 12px)}}@keyframes loader-atom-orbit{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes loader-heartbeat{0%,to{transform:scale(1)}14%{transform:scale(1.3)}28%{transform:scale(1)}42%{transform:scale(1.3)}70%{transform:scale(1)}}@keyframes loader-morph{0%,to{border-radius:0;transform:rotate(0deg)}25%{border-radius:50% 0 50% 0;transform:rotate(90deg)}50%{border-radius:50%;transform:rotate(180deg)}75%{border-radius:0 50% 0 50%;transform:rotate(270deg)}}@keyframes loader-flip-card{0%{transform:rotateX(0) rotateY(0)}25%{transform:rotateX(180deg) rotateY(0)}50%{transform:rotateX(180deg) rotateY(180deg)}75%{transform:rotateX(0) rotateY(180deg)}to{transform:rotateX(0) rotateY(1turn)}}@keyframes loader-square-rotate{0%{transform:rotate(0deg)}25%{transform:rotate(90deg)}50%{transform:rotate(180deg)}75%{transform:rotate(270deg)}to{transform:rotate(1turn)}}@keyframes loader-cube-flip{0%{transform:perspective(100px) rotateX(0) rotateY(0)}50%{transform:perspective(100px) rotateX(180deg) rotateY(0)}to{transform:perspective(100px) rotateX(180deg) rotateY(180deg)}}@keyframes loader-folding{0%,10%{opacity:1;transform:scale(1)}20%,to{opacity:0;transform:scale(0)}}@keyframes loader-clock-minute{0%{transform:translate(-50%,-100%) rotate(0deg)}to{transform:translate(-50%,-100%) rotate(1turn)}}@keyframes loader-clock-hour{0%{transform:translate(-50%,-100%) rotate(0deg)}to{transform:translate(-50%,-100%) rotate(1turn)}}@keyframes loader-bounce{0%{transform:translateY(0)}to{transform:translateY(-20px)}}@keyframes loader-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes loader-battery-charge{0%{width:0}50%{width:calc(100% - 6px)}to{width:0}}@keyframes loader-pendulum-left{0%{transform:translateX(-15px) translateY(-10px)}to{transform:translateX(0) translateY(0)}}@keyframes loader-pendulum-right{0%{transform:translateX(0) translateY(0)}to{transform:translateX(15px) translateY(-10px)}}@keyframes loader-seesaw{0%,to{transform:rotate(-15deg)}50%{transform:rotate(15deg)}}@keyframes loader-wifi-pulse{0%{opacity:0}30%{opacity:1}60%,to{opacity:0}}@keyframes loader-dna-top{0%,to{opacity:1;transform:translateX(-50%) scale(1)}50%{opacity:.5;transform:translateX(-50%) scale(.5)}}@keyframes loader-dna-bottom{0%,to{opacity:.5;transform:translateX(-50%) scale(.5)}50%{opacity:1;transform:translateX(-50%) scale(1)}}@keyframes loader-infinity-left{0%,to{transform:translateY(-50%) translateX(0)}50%{transform:translateY(-50%) translateX(20px)}}@keyframes loader-infinity-right{0%,to{transform:translateY(-50%) translateX(0)}50%{transform:translateY(-50%) translateX(-20px)}}.animate_beat{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_beat;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_beat{0%,90%{transform:scale(1)}45%{transform:scale(1.25)}}.animate_beat_fade{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_beat_fade;animation-play-state:running;animation-timing-function:cubic-bezier(.4,0,.6,1)}@keyframes animate_beat_fade{0%,to{opacity:.4;transform:scale(1)}50%{opacity:1;transform:scale(1.125)}}.animate_beat_double{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_beat_double;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_beat_double{0%,to{transform:scale(1)}25%{transform:scale(.8)}50%{transform:scale(1.5)}75%{transform:scale(.8)}}.animate_blink{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_blink;animation-play-state:running;animation-timing-function:step-end}@keyframes animate_blink{0%,to{opacity:1}50%{opacity:0}}.animate_blink_rapid{animation-delay:0s;animation-direction:normal;animation-duration:.25s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_blink_rapid;animation-play-state:running;animation-timing-function:steps(2)}@keyframes animate_blink_rapid{0%,to{opacity:1}50%{opacity:0}}.animate_blink_soft{animation-delay:0s;animation-direction:normal;animation-duration:2s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_blink_soft;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_blink_soft{0%,to{opacity:1}50%{opacity:.3}}.animate_blink_alternate{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_blink_alternate;animation-play-state:running;animation-timing-function:linear}@keyframes animate_blink_alternate{0%,to{opacity:1}25%,75%{opacity:0}}.animate_bounce{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_bounce;animation-play-state:running;animation-timing-function:cubic-bezier(.28,.84,.42,1)}@keyframes animate_bounce{0%,to{transform:translateY(0)}50%{transform:translateY(var(--animate-bounce-height,-20%))}}.animate_bounce_extended{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_bounce_extended;animation-play-state:running;animation-timing-function:cubic-bezier(.28,.84,.42,1)}@keyframes animate_bounce_extended{0%{transform:scale(1) translateY(0)}10%{transform:scale(1.1,.9) translateY(0)}30%{transform:scale(.9,1.1) translateY(-.5em)}50%{transform:scale(1.05,.95) translateY(0)}57%{transform:scale(1) translateY(-.125em)}64%{transform:scale(1) translateY(0)}to{transform:scale(1) translateY(0)}}.animate_bounce_rotate{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_bounce_rotate;animation-play-state:running;animation-timing-function:cubic-bezier(.28,.84,.42,1)}@keyframes animate_bounce_rotate{0%,to{transform:translateY(0) rotate(0)}50%{transform:translateY(-20%) rotate(1turn)}}.animate_bounce_multi{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_bounce_multi;animation-play-state:running;animation-timing-function:cubic-bezier(.28,.84,.42,1)}@keyframes animate_bounce_multi{0%,to{transform:translate(0)}25%{transform:translate(-10%)}50%{transform:translateY(-20%)}75%{transform:translate(-10%)}}.animate_elastic{animation-delay:0s;animation-direction:normal;animation-duration:2s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_elastic;animation-play-state:running;animation-timing-function:cubic-bezier(.68,-.55,.27,1.55)}@keyframes animate_elastic{0%,to{transform:scale(.5)}50%{transform:scale(1.25)}}.animate_fade{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_fade;animation-play-state:running;animation-timing-function:cubic-bezier(.4,0,.6,1)}@keyframes animate_fade{0%,to{opacity:var(--animate-opacity-start,1)}50%{opacity:var(--animate-opacity-fade,0)}}.animate_fade_in{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:forwards;animation-iteration-count:1;animation-name:animate_fade_in;animation-play-state:running;animation-timing-function:ease-in}@keyframes animate_fade_in{0%{opacity:0}to{opacity:1}}.animate_fade_out{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:forwards;animation-iteration-count:1;animation-name:animate_fade_out;animation-play-state:running;animation-timing-function:ease-out}@keyframes animate_fade_out{0%{opacity:1}to{opacity:0}}.animate_fade_gradual{animation-delay:0s;animation-direction:normal;animation-duration:2s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_fade_gradual;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_fade_gradual{0%,to{opacity:1}50%{opacity:.5}}.animate_flash{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_flash;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_flash{0%,to{opacity:1}50%{opacity:0}}.animate_flash_fade{animation-delay:0s;animation-direction:normal;animation-duration:2s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_flash_fade;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_flash_fade{0%,to{opacity:0}50%{opacity:1}}.animate_flash_strobe{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_flash_strobe;animation-play-state:running;animation-timing-function:step-end}@keyframes animate_flash_strobe{0%,to{opacity:1}50%{opacity:0}}.animate_flash_strobe{animation-duration:.1s}.animate_flash_fade_slow{animation-delay:0s;animation-direction:normal;animation-duration:2s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_flash_fade_slow;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_flash_fade_slow{0%,to{opacity:1}50%{opacity:0}}.animate_flip,.animate_flip_180_diagonal,.animate_flip_180_horizontal,.animate_flip_180_vertical,.animate_flip_diagonal,.animate_flip_horizontal,.animate_flip_vertical{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_flip;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_flip{0%{transform:rotate3d(1,1,0,0)}to{transform:rotate3d(1,1,0,-180deg)}}.animate_float{animation-delay:0s;animation-direction:normal;animation-duration:2s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_float;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_float{0%,to{transform:translateY(0)}50%{transform:translateY(10px)}}.animate_float_horizontal{animation-delay:0s;animation-direction:normal;animation-duration:2s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_float_horizontal;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_float_horizontal{0%,to{transform:translateX(0)}50%{transform:translateX(10px)}}.animate_float_rotate{animation-delay:0s;animation-direction:normal;animation-duration:2s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_float_rotate;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_float_rotate{0%,to{transform:translateY(0) rotate(0)}50%{transform:translateY(-10px) rotate(15deg)}}.animate_glow{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_glow;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_glow{0%,to{box-shadow:0 0 5px 0 #3696c1}50%{box-shadow:0 0 15px 5px #3696c1}}.animate_glow_pulse{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_glow_pulse;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_glow_pulse{0%,to{box-shadow:0 0 10px -5px #3696c1}50%{box-shadow:0 0 20px 0 #3696c1}}.animate_glow_multicolor{animation-delay:0s;animation-direction:normal;animation-duration:2s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_glow_multicolor;animation-play-state:running;animation-timing-function:linear}@keyframes animate_glow_multicolor{0%,33.3333333333%{box-shadow:0 0 10px 5px #3696c1}33.3333333333%,66.6666666667%{box-shadow:0 0 10px 5px #9582c2}66.6666666667%,to{box-shadow:0 0 10px 5px #c5728d}}.animate_heartbeat{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_heartbeat;animation-play-state:running;animation-timing-function:linear}@keyframes animate_heartbeat{0%,to{transform:scale(1)}25%{transform:scale(.9)}50%{transform:scale(1.1)}75%{transform:scale(.9)}}.animate_heartbeat_fast{animation-delay:0s;animation-direction:normal;animation-duration:.25s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_heartbeat_fast;animation-play-state:running;animation-timing-function:linear}@keyframes animate_heartbeat_fast{0%,to{transform:scale(1)}14%,86%{transform:scale(.85)}28%,72%{transform:scale(1.15)}42%,58%{transform:scale(.85)}}.animate_heartbeat_slow{animation-delay:0s;animation-direction:normal;animation-duration:2s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_heartbeat_slow;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_heartbeat_slow{0%,to{transform:scale(1)}25%{transform:scale(.95)}50%{transform:scale(1.05)}75%{transform:scale(.95)}}.animate_heartbeat_color{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_heartbeat_color;animation-play-state:running;animation-timing-function:linear}@keyframes animate_heartbeat_color{0%,to{color:#fff;transform:scale(1)}50%{color:#000;transform:scale(1.1)}}.animate_jiggle{animation-delay:0s;animation-direction:normal;animation-duration:.25s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_jiggle;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_jiggle{0%,to{transform:translateX(0)}25%{transform:translateX(-5px)}50%{transform:translateX(5px)}75%{transform:translateX(-5px)}}.animate_jiggle_vertical{animation-delay:0s;animation-direction:normal;animation-duration:.25s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_jiggle_vertical;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_jiggle_vertical{0%,to{transform:translateY(0)}25%{transform:translateY(-5px)}50%{transform:translateY(5px)}75%{transform:translateY(-5px)}}.animate_jiggle_multi{animation-delay:0s;animation-direction:normal;animation-duration:.25s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_jiggle_multi;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_jiggle_multi{0%,to{transform:translate(0)}25%{transform:translate(-5px,5px)}50%{transform:translate(5px,-5px)}75%{transform:translate(-5px,5px)}}.animate_jiggle_slow{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_jiggle_slow;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_jiggle_slow{0%,to{transform:translateX(0)}25%{transform:translateX(-3px)}50%{transform:translateX(3px)}75%{transform:translateX(-3px)}}.animate_nod{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_nod;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_nod{0%,to{transform:rotateX(0deg)}50%{transform:rotateX(10deg)}}.animate_nod_slow{animation-delay:0s;animation-direction:normal;animation-duration:2s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_nod_slow;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_nod_slow{0%,to{transform:rotateX(0deg)}50%{transform:rotateX(10deg)}}.animate_nod_bounce{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_nod_bounce;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_nod_bounce{0%,to{transform:rotateX(0deg) translateY(0)}50%{transform:rotateX(10deg) translateY(-5px)}}.animate_nod_continuous{animation-delay:0s;animation-direction:normal;animation-duration:.25s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_nod_continuous;animation-play-state:running;animation-timing-function:linear}@keyframes animate_nod_continuous{0%{transform:rotateX(0deg)}25%,75%{transform:rotateX(10deg)}50%,to{transform:rotateX(-10deg)}}.animate_pop{animation-delay:0s;animation-direction:normal;animation-duration:.25s;animation-fill-mode:both;animation-iteration-count:1;animation-name:animate_pop;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_pop{0%,to{transform:scale(1)}50%{transform:scale(1.2)}}.animate_pop_fast{animation-delay:0s;animation-direction:normal;animation-duration:.25s;animation-fill-mode:both;animation-iteration-count:1;animation-name:animate_pop_fast;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_pop_fast{0%,to{transform:scale(1)}50%{transform:scale(1.2)}}.animate_pop_slow{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:1;animation-name:animate_pop_slow;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_pop_slow{0%,to{transform:scale(1)}50%{transform:scale(1.1)}}.animate_pop_rotate{animation-delay:0s;animation-direction:normal;animation-duration:.25s;animation-fill-mode:both;animation-iteration-count:1;animation-name:animate_pop_rotate;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_pop_rotate{0%,to{transform:scale(1) rotate(0)}50%{transform:scale(1.2) rotate(10deg)}}.animate_pulse{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_pulse;animation-play-state:running;animation-timing-function:linear}@keyframes animate_pulse{0%,to{transform:scale(1)}50%{transform:scale(1.05)}}.animate_pulse_slow{animation-delay:0s;animation-direction:normal;animation-duration:2s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_pulse_slow;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_pulse_slow{0%,to{transform:scale(.95)}50%{transform:scale(1.05)}}.animate_pulse_fast{animation-delay:0s;animation-direction:normal;animation-duration:.25s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_pulse_fast;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_pulse_fast{0%,to{transform:scale(.9)}50%{transform:scale(1.2)}}.animate_pulse_color{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_pulse_color;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_pulse_color{0%,to{background-color:#fff}50%{background-color:#000}}.animate_ripple{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_ripple;animation-play-state:running;animation-timing-function:ease-out}@keyframes animate_ripple{0%{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(1.5)}}.animate_ripple_slow{animation-delay:0s;animation-direction:normal;animation-duration:2s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_ripple_slow;animation-play-state:running;animation-timing-function:ease-out}@keyframes animate_ripple_slow{0%{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(1.5)}}.animate_ripple_multi{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_ripple_multi;animation-play-state:running;animation-timing-function:ease-out}@keyframes animate_ripple_multi{0%,to{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(1.2)}to{opacity:0;transform:scale(1.5)}}.animate_ripple_color{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_ripple_color;animation-play-state:running;animation-timing-function:ease-out}@keyframes animate_ripple_color{0%{background-color:#fff;opacity:1;transform:scale(1)}to{background-color:#000;opacity:0;transform:scale(1.5)}}.animate_roll{animation-delay:0s;animation-direction:normal;animation-duration:2s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_roll;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_roll{0%{transform:translateX(0) rotate(0deg)}to{transform:translateX(100%) rotate(1turn)}}.animate_roll_reverse{animation-delay:0s;animation-direction:normal;animation-duration:2s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_roll_reverse;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_roll_reverse{0%{transform:translateX(0) rotate(0deg)}to{transform:translateX(-100%) rotate(-1turn)}}.animate_roll_slow{animation-delay:0s;animation-direction:normal;animation-duration:4s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_roll_slow;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_roll_slow{0%{transform:translateX(0) rotate(0deg)}to{transform:translateX(100%) rotate(1turn)}}.animate_roll_vertical{animation-delay:0s;animation-direction:normal;animation-duration:2s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_roll_vertical;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_roll_vertical{0%{transform:translateY(0) rotate(0deg)}to{transform:translateY(100%) rotate(1turn)}}.animate_scale_expand{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_scale_expand;animation-play-state:running;animation-timing-function:ease-out}@keyframes animate_scale_expand{0%,to{transform:scale(1)}50%{transform:scale(1.2)}}.animate_scale_shrink{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_scale_shrink;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_scale_shrink{0%{transform:scale(1.2)}50%{transform:scale(.8)}to{transform:scale(1.2)}}.animate_shake{animation-delay:0s;animation-direction:normal;animation-duration:.5s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_shake;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_shake{0%{transform:rotate(-10deg)}4%{transform:rotate(10deg)}24%,8%{transform:rotate(-12deg)}12%,28%{transform:rotate(12deg)}16%{transform:rotate(-14deg)}20%{transform:rotate(14deg)}32%{transform:rotate(-8deg)}36%{transform:rotate(8deg)}40%,to{transform:rotate(0deg)}}.animate_shake_slow{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_shake_slow;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_shake_slow{0%,to{transform:rotate(0deg)}10%,30%,50%,70%,90%{transform:rotate(-5deg)}20%,40%,60%,80%{transform:rotate(5deg)}}.animate_shake_horizontal{animation-delay:0s;animation-direction:normal;animation-duration:.5s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_shake_horizontal;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_shake_horizontal{0%,to{transform:translateX(0)}10%,30%,50%,70%,90%{transform:translateX(-10px)}20%,40%,60%,80%{transform:translateX(10px)}}.animate_slide_in_left{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:1;animation-name:animate_slide_in_left;animation-play-state:running;animation-timing-function:ease-out}@keyframes animate_slide_in_left{0%{opacity:0;transform:translateX(-100%)}to{opacity:1;transform:translateX(0)}}.animate_slide_in_right{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:1;animation-name:animate_slide_in_right;animation-play-state:running;animation-timing-function:ease-out}@keyframes animate_slide_in_right{0%{opacity:0;transform:translateX(100%)}to{opacity:1;transform:translateX(0)}}.animate_slide_in_up{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:1;animation-name:animate_slide_in_up;animation-play-state:running;animation-timing-function:ease-out}@keyframes animate_slide_in_up{0%{opacity:0;transform:translateY(100%)}to{opacity:1;transform:translateY(0)}}.animate_slide_in_down{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:1;animation-name:animate_slide_in_down;animation-play-state:running;animation-timing-function:ease-out}@keyframes animate_slide_in_down{0%{opacity:0;transform:translateY(-100%)}to{opacity:1;transform:translateY(0)}}.animate_slide_out_left{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:forwards;animation-iteration-count:1;animation-name:animate_slide_out_left;animation-play-state:running;animation-timing-function:ease-in}@keyframes animate_slide_out_left{0%{opacity:1;transform:translateX(0)}to{opacity:0;transform:translateX(-100%)}}.animate_slide_out_right{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:forwards;animation-iteration-count:1;animation-name:animate_slide_out_right;animation-play-state:running;animation-timing-function:ease-in}@keyframes animate_slide_out_right{0%{opacity:1;transform:translateX(0)}to{opacity:0;transform:translateX(100%)}}.animate_slide_out_up{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:forwards;animation-iteration-count:1;animation-name:animate_slide_out_up;animation-play-state:running;animation-timing-function:ease-in}@keyframes animate_slide_out_up{0%{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(-100%)}}.animate_slide_out_down{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:forwards;animation-iteration-count:1;animation-name:animate_slide_out_down;animation-play-state:running;animation-timing-function:ease-in}@keyframes animate_slide_out_down{0%{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(100%)}}.animate_slide_fade_in_up{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:1;animation-name:animate_slide_fade_in_up;animation-play-state:running;animation-timing-function:ease-out}@keyframes animate_slide_fade_in_up{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.animate_slide_fade_in_down{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:1;animation-name:animate_slide_fade_in_down;animation-play-state:running;animation-timing-function:ease-out}@keyframes animate_slide_fade_in_down{0%{opacity:0;transform:translateY(-20px)}to{opacity:1;transform:translateY(0)}}.animate_slide_fade_in_left{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:1;animation-name:animate_slide_fade_in_left;animation-play-state:running;animation-timing-function:ease-out}@keyframes animate_slide_fade_in_left{0%{opacity:0;transform:translateX(-20px)}to{opacity:1;transform:translateX(0)}}.animate_slide_fade_in_right{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:1;animation-name:animate_slide_fade_in_right;animation-play-state:running;animation-timing-function:ease-out}@keyframes animate_slide_fade_in_right{0%{opacity:0;transform:translateX(20px)}to{opacity:1;transform:translateX(0)}}.animate_spin{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_spin;animation-play-state:running;animation-timing-function:linear}@keyframes animate_spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.animate_spin_reverse{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_spin_reverse;animation-play-state:running;animation-timing-function:linear}@keyframes animate_spin_reverse{0%{transform:rotate(1turn)}to{transform:rotate(0deg)}}.animate_spin_grow{animation-delay:0s;animation-direction:normal;animation-duration:2s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_spin_grow;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_spin_grow{0%,to{transform:scale(1) rotate(0deg)}50%{transform:scale(1.2) rotate(180deg)}}.animate_spin_pulse{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_spin_pulse;animation-play-state:running;animation-timing-function:linear}@keyframes animate_spin_pulse{0%,to{transform:rotate(0deg) scale(1)}50%{transform:rotate(1turn) scale(1.1)}}.animate_spin_flip{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_spin_flip;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_spin_flip{0%{transform:rotate(0deg) rotateY(0deg)}50%{transform:rotate(180deg) rotateY(180deg)}to{transform:rotate(1turn) rotateY(1turn)}}.animate_sway{animation-delay:0s;animation-direction:normal;animation-duration:2s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_sway;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_sway{0%,to{transform:rotate(0deg)}50%{transform:rotate(5deg)}}.animate_sway_slow{animation-delay:0s;animation-direction:normal;animation-duration:4s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_sway_slow;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_sway_slow{0%,to{transform:rotate(0deg)}50%{transform:rotate(3deg)}}.animate_sway_fast{animation-delay:0s;animation-direction:normal;animation-duration:.5s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_sway_fast;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_sway_fast{0%,to{transform:rotate(0deg)}50%{transform:rotate(10deg)}}.animate_sway_fade{animation-delay:0s;animation-direction:normal;animation-duration:2s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_sway_fade;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_sway_fade{0%,to{opacity:1;transform:rotate(0deg)}50%{opacity:.5;transform:rotate(5deg)}}.animate_tada{animation-delay:0s;animation-direction:normal;animation-duration:2s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_tada;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_tada{0%,to{transform:scale(1)}10%,20%{transform:scale(.9) rotate(-3deg)}30%,50%,70%,90%{transform:scale(1.1) rotate(3deg)}40%,60%,80%{transform:scale(1.1) rotate(-3deg)}}.animate_tada_slow{animation-delay:0s;animation-direction:normal;animation-duration:4s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_tada_slow;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_tada_slow{0%,to{transform:scale(1)}10%,20%{transform:scale(.95) rotate(-2deg)}30%,50%,70%,90%{transform:scale(1.05) rotate(2deg)}40%,60%,80%{transform:scale(1.05) rotate(-2deg)}}.animate_tada_fast{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_tada_fast;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_tada_fast{0%,to{transform:scale(1)}10%,20%{transform:scale(.85) rotate(-4deg)}30%,50%,70%,90%{transform:scale(1.15) rotate(4deg)}40%,60%,80%{transform:scale(1.15) rotate(-4deg)}}.animate_tada_fade{animation-delay:0s;animation-direction:normal;animation-duration:2s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_tada_fade;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_tada_fade{0%,to{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(1.1) rotate(3deg)}}.animate_twist{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_twist;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_twist{0%,to{transform:scale(1) rotate(0deg)}50%{transform:scale(.9) rotate(10deg)}}.animate_twist_slow{animation-delay:0s;animation-direction:normal;animation-duration:2s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_twist_slow;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_twist_slow{0%,to{transform:scale(1) rotate(0deg)}50%{transform:scale(.95) rotate(5deg)}}.animate_twist_fast{animation-delay:0s;animation-direction:normal;animation-duration:.25s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_twist_fast;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_twist_fast{0%,to{transform:scale(1) rotate(0deg)}50%{transform:scale(.85) rotate(15deg)}}.animate_twist_color{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_twist_color;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_twist_color{0%,to{color:#fff;transform:scale(1) rotate(0deg)}50%{color:#000;transform:scale(.9) rotate(10deg)}}.animate_wave{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_wave;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_wave{0%,to{transform:rotate(0deg)}50%{transform:rotate(20deg)}}.animate_wave_slow{animation-delay:0s;animation-direction:normal;animation-duration:2s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_wave_slow;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_wave_slow{0%,to{transform:rotate(0deg)}50%{transform:rotate(10deg)}}.animate_wave_fast{animation-delay:0s;animation-direction:normal;animation-duration:.25s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_wave_fast;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_wave_fast{0%,to{transform:rotate(0deg)}50%{transform:rotate(30deg)}}.animate_wave_fade{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_wave_fade;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_wave_fade{0%,to{opacity:1;transform:rotate(0deg)}50%{opacity:.5;transform:rotate(20deg)}}.animate_wobble{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_wobble;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_wobble{0%,to{transform:rotate(0deg)}25%{transform:rotate(-15deg)}50%{transform:rotate(15deg)}75%{transform:rotate(-15deg)}}.animate_wobble_slow{animation-delay:0s;animation-direction:normal;animation-duration:2s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_wobble_slow;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_wobble_slow{0%,to{transform:rotate(0deg)}25%{transform:rotate(-3deg)}50%{transform:rotate(3deg)}75%{transform:rotate(-3deg)}}.animate_wobble_fast{animation-delay:0s;animation-direction:normal;animation-duration:.25s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_wobble_fast;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_wobble_fast{0%,to{transform:rotate(0deg)}25%{transform:rotate(-10deg)}50%{transform:rotate(10deg)}75%{transform:rotate(-10deg)}}.animate_wobble_scale{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_wobble_scale;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_wobble_scale{0%,to{transform:scale(1) rotate(0deg)}25%{transform:scale(1.1) rotate(-15deg)}50%{transform:scale(1.1) rotate(15deg)}75%{transform:scale(1.1) rotate(-15deg)}}.animate_zoom{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_zoom;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_zoom{0%,to{transform:scale(1)}50%{transform:scale(1.5)}}.animate_zoom_slow{animation-delay:0s;animation-direction:normal;animation-duration:2s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_zoom_slow;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_zoom_slow{0%,to{transform:scale(1)}50%{transform:scale(1.3)}}.animate_zoom_fast{animation-delay:0s;animation-direction:normal;animation-duration:.25s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_zoom_fast;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_zoom_fast{0%,to{transform:scale(1)}50%{transform:scale(1.7)}}.animate_zoom_fade{animation-delay:0s;animation-direction:normal;animation-duration:1s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:animate_zoom_fade;animation-play-state:running;animation-timing-function:ease-in-out}@keyframes animate_zoom_fade{0%,to{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(1.5)}}.cursor--auto{cursor:auto}.cursor--none{cursor:none}.cursor--context-menu{cursor:context-menu}.cursor--progress{cursor:progress}.cursor--vertical-text{cursor:vertical-text}.cursor--cell{cursor:cell}.cursor--copy{cursor:copy}.cursor--alias{cursor:alias}.cursor--no-drop{cursor:no-drop}.cursor--nesw-resize{cursor:nesw-resize}.cursor--nwse-resize{cursor:nwse-resize}.cursor--all-scroll{cursor:all-scroll}.scroll--smooth{scroll-behavior:smooth}.scroll--auto{scroll-behavior:auto}.overflow--auto{overflow:auto}.overflow--hidden{overflow:hidden}.overflow--visible{overflow:visible}.overflow--scroll{overflow:scroll}.overflow-x--auto{overflow-x:auto}.overflow-x--hidden{overflow-x:hidden}.overflow-x--scroll{overflow-x:scroll}.overflow-y--auto{overflow-y:auto}.overflow-y--hidden{overflow-y:hidden}.overflow-y--scroll{overflow-y:scroll}.overscroll--auto{overscroll-behavior:auto}.overscroll--contain{overscroll-behavior:contain}.overscroll--none{overscroll-behavior:none}.touch--auto{touch-action:auto}.touch--none{touch-action:none}.touch--pan-x{touch-action:pan-x}.touch--pan-y{touch-action:pan-y}.touch--pan-left{touch-action:pan-left}.touch--pan-right{touch-action:pan-right}.touch--pan-up{touch-action:pan-up}.touch--pan-down{touch-action:pan-down}.touch--pinch-zoom{touch-action:pinch-zoom}.touch--manipulation{touch-action:manipulation}.pointer--auto{pointer-events:auto}.pointer--none{pointer-events:none}.select--none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.select--text{-webkit-user-select:text;-moz-user-select:text;user-select:text}.select--all{-webkit-user-select:all;-moz-user-select:all;user-select:all}.select--auto{-webkit-user-select:auto;-moz-user-select:auto;user-select:auto}.hover--opacity-50:hover{opacity:.5}.hover--opacity-75:hover{opacity:.75}.hover--opacity-100:hover{opacity:1}.hover--scale-sm:hover{transform:scale(1.02)}.hover--scale-lg:hover{transform:scale(1.1)}.keyboard{background:var(--keyboard-bg,#2d2d44);border-radius:var(--keyboard-radius,12px);padding:var(--keyboard-padding,1rem)}.keyboard__row{display:flex;gap:var(--keyboard-gap,6px);justify-content:center;margin-bottom:var(--keyboard-gap,6px)}.keyboard__row:last-child{margin-bottom:0}.key{align-items:center;background:var(--key-bg,#3d3d5c);border:none;border-radius:var(--key-radius,6px);color:var(--key-color,#fff);cursor:pointer;display:flex;font-size:var(--key-font-size,16px);font-weight:500;height:var(--key-height,48px);justify-content:center;min-width:var(--key-min-width,40px);transition:all .15s ease;-webkit-user-select:none;-moz-user-select:none;user-select:none}.key:hover{background:var(--key-bg-hover,#4d4d6c);transform:translateY(-2px)}.key:active{background:var(--key-bg-active,#667eea);transform:translateY(0)}.key--space{flex:1;max-width:var(--key-space-max-width,300px)}.key--backspace,.key--enter,.key--mode,.key--shift{background:var(--key-special-bg,#4d4d6c);min-width:var(--key-special-width,80px)}.key--mode:hover{background:var(--key-mode-bg-hover,#5a6fd6)}.keyboard__input{background:var(--keyboard-input-bg,#0d1117);border:2px solid var(--keyboard-input-border,#444);border-radius:8px;color:var(--keyboard-input-color,#fff);font-size:18px;margin-bottom:1.5rem;padding:1rem;width:100%}.keyboard__input:focus{border-color:var(--keyboard-input-focus,#667eea);outline:none}.keyboard__modes{display:flex;gap:1rem;justify-content:center;margin-bottom:1rem}.keyboard__mode-btn{background:transparent;border:2px solid var(--keyboard-mode-border,#667eea);border-radius:8px;color:var(--keyboard-mode-color,#667eea);cursor:pointer;font-weight:500;padding:.5rem 1rem;transition:all .2s ease}.keyboard__mode-btn.active,.keyboard__mode-btn:hover{background:var(--keyboard-mode-active-bg,#667eea);color:var(--keyboard-mode-active-color,#fff)}.keyboard__stats{border-top:1px solid var(--keyboard-stats-border,#444);color:var(--keyboard-stats-color,#aaa);display:flex;font-size:14px;gap:2rem;justify-content:center;margin-top:1rem;padding-top:1rem}.keyboard__stats span{color:var(--keyboard-stats-value,#667eea);font-weight:600}[data-theme=dark] .keyboard{--keyboard-bg:#1a1a2e;--key-bg:#2d2d44;--key-bg-hover:#3d3d5c}@keyframes screensaver-float{0%,to{transform:translateY(0)}50%{transform:translateY(-20px)}}.screensaver{align-items:center;background:var(--screensaver-bg,rgba(0,0,0,.9));display:flex;flex-direction:column;inset:0;justify-content:center;opacity:0;position:fixed;transition:opacity var(--screensaver-fade,.5s) ease,visibility var(--screensaver-fade,.5s) ease;visibility:hidden;z-index:var(--screensaver-z-index,9999)}.screensaver.active{opacity:1;visibility:visible}.screensaver__content{color:var(--screensaver-color,#fff);text-align:center}.screensaver__icon{animation:screensaver-float 3s ease-in-out infinite;font-size:var(--screensaver-icon-size,4rem);margin-bottom:1rem}.screensaver__title{font-size:var(--screensaver-title-size,2rem);font-weight:600;margin-bottom:.5rem}.screensaver__hint{font-size:var(--screensaver-hint-size,1rem);opacity:.8}.screensaver__video{height:100%;inset:0;object-fit:cover;pointer-events:none;position:absolute;width:100%}.screensaver__overlay{background:linear-gradient(135deg,var(--screensaver-gradient-start,#667eea) 0,var(--screensaver-gradient-end,#764ba2) 100%);inset:0;opacity:var(--screensaver-overlay-opacity,1);position:absolute}.screensaver--dark{--screensaver-bg:#000;--screensaver-color:#fff}.screensaver--light{--screensaver-bg:#f0f0f0;--screensaver-color:#333}.screensaver--gradient{--screensaver-bg:transparent}.screensaver--gradient .screensaver__overlay{opacity:1}.filter--blur-sm{filter:blur(2px)}.filter--blur{filter:blur(4px)}.filter--blur-md{filter:blur(8px)}.filter--blur-lg{filter:blur(16px)}.filter--blur-xl{filter:blur(24px)}.filter--grayscale{filter:grayscale(100%)}.filter--grayscale-50{filter:grayscale(50%)}.filter--grayscale-0{filter:grayscale(0)}.filter--sepia{filter:sepia(100%)}.filter--sepia-50{filter:sepia(50%)}.filter--brightness-50{filter:brightness(.5)}.filter--brightness-75{filter:brightness(.75)}.filter--brightness-90{filter:brightness(.9)}.filter--brightness-100{filter:brightness(1)}.filter--brightness-110{filter:brightness(1.1)}.filter--brightness-125{filter:brightness(1.25)}.filter--brightness-150{filter:brightness(1.5)}.filter--contrast-50{filter:contrast(.5)}.filter--contrast-75{filter:contrast(.75)}.filter--contrast-100{filter:contrast(1)}.filter--contrast-125{filter:contrast(1.25)}.filter--contrast-150{filter:contrast(1.5)}.filter--contrast-200{filter:contrast(2)}.filter--saturate-0{filter:saturate(0)}.filter--saturate-50{filter:saturate(.5)}.filter--saturate-100{filter:saturate(1)}.filter--saturate-150{filter:saturate(1.5)}.filter--saturate-200{filter:saturate(2)}.filter--hue-rotate-0{filter:hue-rotate(0deg)}.filter--hue-rotate-30{filter:hue-rotate(30deg)}.filter--hue-rotate-60{filter:hue-rotate(60deg)}.filter--hue-rotate-90{filter:hue-rotate(90deg)}.filter--hue-rotate-180{filter:hue-rotate(180deg)}.filter--hue-rotate-270{filter:hue-rotate(270deg)}.filter--invert{filter:invert(100%)}.filter--invert-50{filter:invert(50%)}.filter--invert-0{filter:invert(0)}.filter--drop-shadow-sm{filter:drop-shadow(0 1px 1px rgba(0,0,0,.05))}.filter--drop-shadow{filter:drop-shadow(0 1px 2px rgba(0,0,0,.1))}.filter--drop-shadow-md{filter:drop-shadow(0 4px 3px rgba(0,0,0,.07))}.filter--drop-shadow-lg{filter:drop-shadow(0 10px 8px rgba(0,0,0,.04))}.filter--drop-shadow-xl{filter:drop-shadow(0 20px 13px rgba(0,0,0,.03))}.filter--drop-shadow-none{filter:drop-shadow(0 0 0 transparent)}.filter--noir{filter:grayscale(100%) contrast(120%) brightness(90%)}.filter--vintage{filter:sepia(50%) contrast(95%) brightness(90%) saturate(150%)}.filter--cold{filter:hue-rotate(180deg) saturate(80%) brightness(105%)}.filter--warm{filter:sepia(30%) brightness(105%) saturate(130%)}.filter--dramatic{filter:contrast(150%) brightness(90%) saturate(120%)}.backdrop--blur-sm{backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px)}.backdrop--blur{backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px)}.backdrop--blur-md{backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px)}.backdrop--blur-lg{backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px)}.backdrop--blur-xl{backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px)}.backdrop--blur-2xl{backdrop-filter:blur(40px);-webkit-backdrop-filter:blur(40px)}.backdrop--blur-3xl{backdrop-filter:blur(64px);-webkit-backdrop-filter:blur(64px)}.backdrop--brightness-50{backdrop-filter:brightness(.5);-webkit-backdrop-filter:brightness(.5)}.backdrop--brightness-75{backdrop-filter:brightness(.75);-webkit-backdrop-filter:brightness(.75)}.backdrop--brightness-90{backdrop-filter:brightness(.9);-webkit-backdrop-filter:brightness(.9)}.backdrop--brightness-100{backdrop-filter:brightness(1);-webkit-backdrop-filter:brightness(1)}.backdrop--brightness-105{backdrop-filter:brightness(1.05);-webkit-backdrop-filter:brightness(1.05)}.backdrop--brightness-110{backdrop-filter:brightness(1.1);-webkit-backdrop-filter:brightness(1.1)}.backdrop--brightness-125{backdrop-filter:brightness(1.25);-webkit-backdrop-filter:brightness(1.25)}.backdrop--brightness-150{backdrop-filter:brightness(1.5);-webkit-backdrop-filter:brightness(1.5)}.backdrop--contrast-50{backdrop-filter:contrast(.5);-webkit-backdrop-filter:contrast(.5)}.backdrop--contrast-75{backdrop-filter:contrast(.75);-webkit-backdrop-filter:contrast(.75)}.backdrop--contrast-100{backdrop-filter:contrast(1);-webkit-backdrop-filter:contrast(1)}.backdrop--contrast-125{backdrop-filter:contrast(1.25);-webkit-backdrop-filter:contrast(1.25)}.backdrop--contrast-150{backdrop-filter:contrast(1.5);-webkit-backdrop-filter:contrast(1.5)}.backdrop--contrast-200{backdrop-filter:contrast(2);-webkit-backdrop-filter:contrast(2)}.backdrop--grayscale-0{backdrop-filter:grayscale(0);-webkit-backdrop-filter:grayscale(0)}.backdrop--grayscale{backdrop-filter:grayscale(100%);-webkit-backdrop-filter:grayscale(100%)}.backdrop--saturate-0{backdrop-filter:saturate(0);-webkit-backdrop-filter:saturate(0)}.backdrop--saturate-50{backdrop-filter:saturate(.5);-webkit-backdrop-filter:saturate(.5)}.backdrop--saturate-100{backdrop-filter:saturate(1);-webkit-backdrop-filter:saturate(1)}.backdrop--saturate-150{backdrop-filter:saturate(1.5);-webkit-backdrop-filter:saturate(1.5)}.backdrop--saturate-200{backdrop-filter:saturate(2);-webkit-backdrop-filter:saturate(2)}.backdrop--sepia-0{backdrop-filter:sepia(0);-webkit-backdrop-filter:sepia(0)}.backdrop--sepia{backdrop-filter:sepia(100%);-webkit-backdrop-filter:sepia(100%)}.backdrop--invert-0{backdrop-filter:invert(0);-webkit-backdrop-filter:invert(0)}.backdrop--invert{backdrop-filter:invert(100%);-webkit-backdrop-filter:invert(100%)}.backdrop--glass{backdrop-filter:blur(10px) saturate(150%) brightness(100%);-webkit-backdrop-filter:blur(10px) saturate(150%) brightness(100%)}.backdrop--glass-dark{backdrop-filter:blur(10px) saturate(100%) brightness(80%);-webkit-backdrop-filter:blur(10px) saturate(100%) brightness(80%)}.shadow--none{box-shadow:none}.shadow--sm{box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1)}.shadow,.shadow--md{box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1)}.shadow--lg{box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1)}.shadow--xl{box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1)}.shadow--2xl{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)}.shadow--inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.05)}.shadow--primary{box-shadow:0 10px 20px rgba(59,130,246,.4)}.shadow--success{box-shadow:0 10px 20px rgba(34,197,94,.4)}.shadow--danger{box-shadow:0 10px 20px rgba(239,68,68,.4)}.shadow--warning{box-shadow:0 10px 20px rgba(245,158,11,.4)}.shadow--glow{box-shadow:0 0 20px rgba(59,130,246,.5)}.shadow--glow-sm{box-shadow:0 0 10px rgba(59,130,246,.3)}.shadow--glow-lg{box-shadow:0 0 40px rgba(59,130,246,.6)}.opacity--0{opacity:0}.opacity--5{opacity:.05}.opacity--10{opacity:.1}.opacity--20{opacity:.2}.opacity--25{opacity:.25}.opacity--30{opacity:.3}.opacity--40{opacity:.4}.opacity--50{opacity:.5}.opacity--60{opacity:.6}.opacity--70{opacity:.7}.opacity--75{opacity:.75}.opacity--80{opacity:.8}.opacity--90{opacity:.9}.opacity--95{opacity:.95}.opacity--100{opacity:1}.blend--normal{mix-blend-mode:normal}.blend--multiply{mix-blend-mode:multiply}.blend--screen{mix-blend-mode:screen}.blend--overlay{mix-blend-mode:overlay}.blend--darken{mix-blend-mode:darken}.blend--lighten{mix-blend-mode:lighten}.blend--color-dodge{mix-blend-mode:color-dodge}.blend--color-burn{mix-blend-mode:color-burn}.blend--hard-light{mix-blend-mode:hard-light}.blend--soft-light{mix-blend-mode:soft-light}.blend--difference{mix-blend-mode:difference}.blend--exclusion{mix-blend-mode:exclusion}.blend--hue{mix-blend-mode:hue}.blend--saturation{mix-blend-mode:saturation}.blend--color{mix-blend-mode:color}.blend--luminosity{mix-blend-mode:luminosity}.bg-blend--normal{background-blend-mode:normal}.bg-blend--multiply{background-blend-mode:multiply}.bg-blend--screen{background-blend-mode:screen}.bg-blend--overlay{background-blend-mode:overlay}.bg-blend--darken{background-blend-mode:darken}.bg-blend--lighten{background-blend-mode:lighten}.bg-blend--color-dodge{background-blend-mode:color-dodge}.bg-blend--color-burn{background-blend-mode:color-burn}.bg-blend--hard-light{background-blend-mode:hard-light}.bg-blend--soft-light{background-blend-mode:soft-light}.bg-blend--difference{background-blend-mode:difference}.bg-blend--exclusion{background-blend-mode:exclusion}.gradient--to-r{background:linear-gradient(to right,var(--gradient-from,#3b82f6),var(--gradient-to,#8b5cf6))}.gradient--to-l{background:linear-gradient(to left,var(--gradient-from,#3b82f6),var(--gradient-to,#8b5cf6))}.gradient--to-t{background:linear-gradient(to top,var(--gradient-from,#3b82f6),var(--gradient-to,#8b5cf6))}.gradient--to-b{background:linear-gradient(to bottom,var(--gradient-from,#3b82f6),var(--gradient-to,#8b5cf6))}.gradient--to-tr{background:linear-gradient(to top right,var(--gradient-from,#3b82f6),var(--gradient-to,#8b5cf6))}.gradient--to-tl{background:linear-gradient(to top left,var(--gradient-from,#3b82f6),var(--gradient-to,#8b5cf6))}.gradient--to-br{background:linear-gradient(to bottom right,var(--gradient-from,#3b82f6),var(--gradient-to,#8b5cf6))}.gradient--to-bl{background:linear-gradient(to bottom left,var(--gradient-from,#3b82f6),var(--gradient-to,#8b5cf6))}.gradient--radial{background:radial-gradient(circle,var(--gradient-from,#3b82f6),var(--gradient-to,#8b5cf6))}.gradient--radial-at-t{background:radial-gradient(at top,var(--gradient-from,#3b82f6),var(--gradient-to,#8b5cf6))}.gradient--radial-at-b{background:radial-gradient(at bottom,var(--gradient-from,#3b82f6),var(--gradient-to,#8b5cf6))}.gradient--radial-at-l{background:radial-gradient(at left,var(--gradient-from,#3b82f6),var(--gradient-to,#8b5cf6))}.gradient--radial-at-r{background:radial-gradient(at right,var(--gradient-from,#3b82f6),var(--gradient-to,#8b5cf6))}.gradient--conic{background:conic-gradient(var(--gradient-from,#3b82f6),var(--gradient-to,#8b5cf6))}.mask--fade-b{mask-image:linear-gradient(180deg,#000 60%,transparent);-webkit-mask-image:linear-gradient(180deg,#000 60%,transparent)}.mask--fade-t{mask-image:linear-gradient(0deg,#000 60%,transparent);-webkit-mask-image:linear-gradient(0deg,#000 60%,transparent)}.mask--fade-l{mask-image:linear-gradient(270deg,#000 60%,transparent);-webkit-mask-image:linear-gradient(270deg,#000 60%,transparent)}.mask--fade-r{mask-image:linear-gradient(90deg,#000 60%,transparent);-webkit-mask-image:linear-gradient(90deg,#000 60%,transparent)}.mask--radial{mask-image:radial-gradient(circle,#000 50%,transparent 100%);-webkit-mask-image:radial-gradient(circle,#000 50%,transparent 100%)}@keyframes spinner-border{to{transform:rotate(1turn)}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes circle-rotation{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes circle-clip{0%{clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}25%{clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}50%{clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}75%{clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)}to{clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)}}@keyframes circle-rotation-back{0%{transform:rotate(0deg)}to{transform:rotate(-1turn)}}@keyframes circle-pulse{0%{box-shadow:0 0 0 0 hsla(0,0%,100%,.5)}to{box-shadow:0 0 0 30px hsla(0,0%,100%,0)}}@keyframes circle-ripple{0%{opacity:1;transform:scale(0)}to{opacity:0;transform:scale(1)}}@keyframes progress-fill{0%{width:0}to{width:100%}}@keyframes progress-indeterminate{0%{left:0;right:100%}50%{left:25%;right:0}to{left:100%;right:0}}@keyframes progress-stripe{0%{background-position:0 0}to{background-position:30px 0}}@keyframes progress-pulse{0%{transform:scaleX(.1);transform-origin:left}50%{transform:scaleX(1);transform-origin:left}51%{transform:scaleX(1);transform-origin:right}to{transform:scaleX(.1);transform-origin:right}}@keyframes progress-split{0%{left:50%;width:0}50%{left:0;width:100%}to{left:50%;width:0}}@keyframes progress-flow{0%{background-position:-200% 0,0 0,0 0,0 0}to{background-position:200% 0,0 0,0 0,0 0}}@keyframes circle-progress{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes dot-active{0%,to{background:var(--loader-inactive,hsla(0,0%,100%,.3))}50%{background:var(--loader-color,#fff)}}@keyframes segment-fill{0%,20%{background:var(--loader-inactive,hsla(0,0%,100%,.15))}40%,to{background:var(--loader-color,#fff)}}@keyframes bubble-scale{0%,to{transform:scale(0)}50%{transform:scale(1)}}@keyframes bubble-fade{0%,80%,to{box-shadow:0 2.5em 0 -1.3em}40%{box-shadow:0 2.5em 0 0}}@keyframes bubble-flash{0%{background-color:hsla(0,0%,100%,.2);box-shadow:32px 0 hsla(0,0%,100%,.2),-32px 0 var(--loader-color,#fff)}50%{background-color:var(--loader-color,#fff);box-shadow:32px 0 hsla(0,0%,100%,.2),-32px 0 hsla(0,0%,100%,.2)}to{background-color:hsla(0,0%,100%,.2);box-shadow:32px 0 var(--loader-color,#fff),-32px 0 hsla(0,0%,100%,.2)}}@keyframes bubble-pulse{33%{background:var(--loader-color,#fff);box-shadow:-24px 0 var(--loader-accent,#ff3d00),24px 0 var(--loader-color,#fff)}66%{background:var(--loader-accent,#ff3d00);box-shadow:-24px 0 var(--loader-color,#fff),24px 0 var(--loader-color,#fff)}to{background:var(--loader-color,#fff);box-shadow:-24px 0 var(--loader-color,#fff),24px 0 var(--loader-accent,#ff3d00)}}@keyframes bubble-expand{0%{box-shadow:0 0,0 0;color:hsla(0,0%,100%,.2)}to{box-shadow:-24px 0,24px 0;color:hsla(0,0%,100%,.8)}}@keyframes bubble-collision-left{0%,to{transform:translate(-15px)}50%{transform:translate(15px)}}@keyframes bubble-collision-right{0%,to{transform:translate(15px)}50%{transform:translate(-15px)}}@keyframes rotation{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes flip{0%,50%{transform:rotateY(0deg)}50%,to{transform:rotateY(180deg)}}@keyframes rect-flip-x{0%{transform:perspective(200px) rotateX(0deg) rotateY(0deg)}50%{transform:perspective(200px) rotateX(-180deg) rotateY(0deg)}to{transform:perspective(200px) rotateX(-180deg) rotateY(-180deg)}}@keyframes rect-scale-out{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes rect-scale-fade{0%{opacity:1;transform:scale(0)}to{opacity:0;transform:scale(1)}}@keyframes rect-fill{0%{box-shadow:inset 0 0}to{box-shadow:inset 0 -48px}}@keyframes rect-diamond-fill{0%,10%{transform:translate(-64px,-64px) rotate(-45deg)}90%,to{transform:translate(0) rotate(-45deg)}}@keyframes rect-rotate-shrink{0%{transform:scale(1) rotate(0deg)}to{transform:scale(0) rotate(1turn)}}@keyframes rect-morph{0%{border-radius:10%;transform:rotate(0deg) scale(.2)}50%{border-radius:50%;transform:rotate(180deg) scale(1.5)}to{border-radius:10%;transform:rotate(1turn) scale(.2)}}@keyframes rect-walk{0%{transform:translate(0) rotateX(0) rotateY(0)}25%{transform:translate(100%) rotateX(0) rotateY(180deg)}50%{transform:translate(100%,100%) rotateX(-180deg) rotateY(180deg)}75%{transform:translateY(100%) rotateX(-180deg) rotateY(1turn)}to{transform:translate(0) rotateX(0) rotateY(1turn)}}@keyframes rect-rotation-break{0%{transform:rotate(0)}25%{transform:rotate(90deg)}50%{transform:rotate(180deg)}75%{transform:rotate(270deg)}to{transform:rotate(1turn)}}@keyframes bar-height{0%{height:48px}to{height:4.8px}}@keyframes bar-bounce{0%{height:40px;transform:translateY(0)}to{height:10px;transform:translateY(30px)}}@keyframes bar-scale-y{0%,80%,to{box-shadow:0 0;height:4em}40%{box-shadow:0 -2em;height:5em}}@keyframes bar-flash{0%{box-shadow:20px 0 hsla(0,0%,100%,.25),40px 0 #fff,60px 0 #fff}50%{box-shadow:20px 0 #fff,40px 0 hsla(0,0%,100%,.25),60px 0 #fff}to{box-shadow:20px 0 #fff,40px 0 #fff,60px 0 hsla(0,0%,100%,.25)}}@keyframes bar-wave{0%{box-shadow:20px -10px,40px 10px,60px 0}25%{box-shadow:20px 0,40px 0,60px 10px}50%{box-shadow:20px 10px,40px -10px,60px 0}75%{box-shadow:20px 0,40px 0,60px -10px}to{box-shadow:20px -10px,40px 10px,60px 0}}@keyframes bar-expand{0%{width:4.8px}to{width:48px}}@keyframes bar-reveal{0%{box-shadow:20px 0 hsla(0,0%,100%,0),40px 0 hsla(0,0%,100%,0),60px 0 hsla(0,0%,100%,0),80px 0 hsla(0,0%,100%,0),100px 0 hsla(0,0%,100%,0)}20%{box-shadow:20px 0 #fff,40px 0 hsla(0,0%,100%,0),60px 0 hsla(0,0%,100%,0),80px 0 hsla(0,0%,100%,0),100px 0 hsla(0,0%,100%,0)}40%{box-shadow:20px 0 #fff,40px 0 #fff,60px 0 hsla(0,0%,100%,0),80px 0 hsla(0,0%,100%,0),100px 0 hsla(0,0%,100%,0)}60%{box-shadow:20px 0 #fff,40px 0 #fff,60px 0 #fff,80px 0 hsla(0,0%,100%,0),100px 0 hsla(0,0%,100%,0)}80%{box-shadow:20px 0 #fff,40px 0 #fff,60px 0 #fff,80px 0 #fff,100px 0 hsla(0,0%,100%,0)}to{box-shadow:20px 0 #fff,40px 0 #fff,60px 0 #fff,80px 0 #fff,100px 0 #fff}}@keyframes bar-spike{0%{background-size:10px 3px}16%{background-size:10px 50px,10px 3px,10px 3px,10px 3px,10px 3px,10px 3px}33%{background-size:10px 30px,10px 50px,10px 3px,10px 3px,10px 3px,10px 3px}50%{background-size:10px 10px,10px 30px,10px 50px,10px 3px,10px 3px,10px 3px}66%{background-size:10px 3px,10px 10px,10px 30px,10px 50px,10px 3px,10px 3px}83%{background-size:10px 3px,10px 3px,10px 10px,10px 30px,10px 50px,10px 3px}to{background-size:10px 3px,10px 3px,10px 3px,10px 10px,10px 30px,10px 50px}}@keyframes bar-ht{to{height:0}}@keyframes matrix{0%{background-position:0 100%,50% 100%,100% 100%}to{background-position:0 0,50% 0,100% 0}}@keyframes text-fill{0%{clip-path:polygon(0 0,0 0,0 100%,0 100%)}to{clip-path:polygon(0 0,100% 0,100% 100%,0 100%)}}@keyframes text-bounce{0%,80%,to{transform:translateY(0)}40%{transform:translateY(-10px)}}@keyframes text-dots{0%{content:""}25%{content:"."}50%{content:".."}75%{content:"..."}}@keyframes text-letter-fade{0%,to{opacity:.3}50%{opacity:1}}@keyframes text-pulse{0%,to{opacity:1;transform:scale(1)}50%{opacity:.7;transform:scale(1.1)}}@keyframes text-spotlight{0%{background-position:-200%}to{background-position:200%}}@keyframes text-cursor{0%,to{opacity:0}50%{opacity:1}}@keyframes text-wave{0%,to{transform:translateY(0)}50%{transform:translateY(-20%)}}@keyframes text-shake{0%,to{transform:translateX(0)}10%,30%,50%,70%,90%{transform:translateX(-2px)}20%,40%,60%,80%{transform:translateX(2px)}}@keyframes paddles{0%{box-shadow:-25px -10px,25px 10px}50%{box-shadow:-25px 8px,25px -10px}to{box-shadow:-25px -10px,25px 10px}}@keyframes ball-bounce{0%{transform:translateX(-20px) scaleY(1.2)}25%{transform:scaleX(1.2)}50%{transform:translateX(15px) scaleY(1.2)}75%{transform:scaleX(1.2)}to{transform:translateX(-20px)}}@keyframes heartbeat{0%,to{transform:scale(1)}10%{transform:scale(1.1)}20%{transform:scale(1)}30%{transform:scale(1.15)}40%{transform:scale(1)}}@keyframes star-twinkle{0%,to{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(.8)}}@keyframes bracket-swing{0%,to{transform:rotate(-10deg)}50%{transform:rotate(10deg)}}@keyframes rolling-rock{0%{transform:translateY(-1em) rotate(-45deg)}5%{transform:translateY(-1em) rotate(-50deg)}20%{transform:translate(1em,-2em) rotate(47deg)}25%{transform:translate(1em,-2em) rotate(45deg)}30%{transform:translate(1em,-2em) rotate(40deg)}45%{transform:translate(2em,-3em) rotate(137deg)}50%{transform:translate(2em,-3em) rotate(135deg)}55%{transform:translate(2em,-3em) rotate(130deg)}70%{transform:translate(3em,-4em) rotate(217deg)}75%{transform:translate(3em,-4em) rotate(220deg)}to{transform:translateY(-1em) rotate(-225deg)}}@keyframes pendulum{0%{transform:rotate(30deg)}50%{transform:rotate(-30deg)}to{transform:rotate(30deg)}}@keyframes coin-flip{0%{transform:rotateY(0deg)}50%{transform:rotateY(180deg)}to{transform:rotateY(1turn)}}@keyframes bounce-up{0%,to{top:0;transform:scaleY(1)}30%{transform:scaleY(.8)}50%{top:0;transform:scaleY(1.1)}70%{transform:scaleY(.9)}}@keyframes bounce-shadow{0%,to{opacity:.5;transform:scaleX(1)}50%{opacity:.3;transform:scaleX(.5)}}@keyframes dna-rotate{0%{top:0;z-index:1}25%{top:50%;transform:scale(1.2);z-index:1}50%{top:100%;z-index:-1}75%{top:50%;transform:scale(.8);z-index:-1}to{top:0;z-index:1}}@keyframes infinity-rotate{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes write-down{0%{height:0;opacity:0}20%{height:0;opacity:1}80%{height:65%;opacity:1}to{height:65%;opacity:0}}@keyframes page-turn{0%,to{transform:rotateY(0deg)}50%{transform:rotateY(-180deg)}}@keyframes pencil-write{0%{transform:translate(0) rotate(-45deg)}25%{transform:translate(10px) rotate(-45deg)}50%{transform:translate(20px) rotate(-45deg)}75%{transform:translate(10px) rotate(-45deg)}to{transform:translate(0) rotate(-45deg)}}@keyframes checkmark{0%{stroke-dashoffset:100}to{stroke-dashoffset:0}}@keyframes hourglass-flip{0%{transform:rotate(0deg)}50%{transform:rotate(180deg)}to{transform:rotate(180deg)}}@keyframes sand-fall{0%{clip-path:polygon(0 0,100% 0,100% 0,50% 50%,0 0)}50%{clip-path:polygon(0 0,100% 0,100% 100%,50% 50%,0 100%)}to{clip-path:polygon(0 0,100% 0,100% 100%,50% 50%,0 100%)}}@keyframes clock-rotate{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes envelope-open{0%,to{transform:rotateX(0deg)}50%{transform:rotateX(-180deg)}}@keyframes search-wobble{0%,to{transform:rotate(-15deg)}50%{transform:rotate(15deg)}}@keyframes gear-rotate{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.loader{align-items:center;display:inline-flex;justify-content:center}.loader--spinner{animation:loader-spin .8s linear infinite;border:3px solid rgba(0,0,0,.1);border-radius:50%;border-top-color:initial;height:40px;width:40px}.loader--spinner-dots{animation:loader-spin 1.5s linear infinite;border:3px dotted;border-radius:50%;height:40px;width:40px}.loader--dual-ring{animation:loader-spin 1s linear infinite;border:3px solid transparent;border-bottom-color:initial;border-radius:50%;border-top-color:initial;height:40px;width:40px}.loader--hourglass{animation:hourglass-flip 2s ease-in-out infinite;height:72px;position:relative;width:48px}.loader--hourglass:after,.loader--hourglass:before{border:3px solid var(--loader-frame,#fff);content:"";left:0;position:absolute;right:0}.loader--hourglass:before{animation:sand-fall 2s ease-in-out infinite;background:var(--loader-sand,#ff3d00);border-radius:48px 48px 0 0;clip-path:polygon(0 0,100% 0,100% 100%,50% 50%,0 100%);height:45%;top:0}.loader--hourglass:after{background:var(--loader-sand,#ff3d00);border-radius:0 0 48px 48px;bottom:0;clip-path:polygon(50% 0,100% 100%,0 100%);height:45%}.loader--circle-notch{border:3px solid rgba(0,0,0,.1);border-radius:50%;height:40px;position:relative;width:40px}.loader--circle-notch:after{animation:loader-spin .8s linear infinite;border:3px solid transparent;border-radius:50%;border-top-color:initial;bottom:-3px;content:"";left:-3px;position:absolute;right:-3px;top:-3px}.loader--ring{border:4px solid rgba(0,0,0,.1);border-radius:50%;height:40px;position:relative;width:40px}.loader--ring:before{animation:loader-spin 1s ease-in-out infinite;border:4px solid transparent;border-top-color:initial;content:"";left:-4px;position:absolute;top:-4px}.loader--gradient,.loader--ring:before{border-radius:50%;height:40px;width:40px}.loader--gradient{animation:loader-spin 1s linear infinite;background:conic-gradient(from 0deg,transparent,currentColor);position:relative}.loader--gradient:after{background:#fff;border-radius:50%;content:"";inset:4px;position:absolute}.loader--dots{align-items:center;display:flex;gap:6px}.loader--dots>*{animation:loader-dots-pulse 1.4s ease-in-out infinite;background:currentColor;border-radius:50%;height:10px;width:10px}.loader--dots>:nth-child(2){animation-delay:.2s}.loader--dots>:nth-child(3){animation-delay:.4s}.loader--dots-bounce{align-items:center;display:flex;gap:6px}.loader--dots-bounce>*{animation:loader-dots-bounce 1.4s ease-in-out infinite;background:currentColor;border-radius:50%;height:10px;width:10px}.loader--dots-bounce>:nth-child(2){animation-delay:.16s}.loader--dots-bounce>:nth-child(3){animation-delay:.32s}.loader--dots-wave{align-items:center;display:flex;gap:4px}.loader--dots-wave>*{animation:loader-dots-wave 1.2s ease-in-out infinite;background:currentColor;border-radius:50%;height:8px;width:8px}.loader--dots-wave>:nth-child(2){animation-delay:.1s}.loader--dots-wave>:nth-child(3){animation-delay:.2s}.loader--dots-wave>:nth-child(4){animation-delay:.3s}.loader--dots-wave>:nth-child(5){animation-delay:.4s}.loader--dots-fade{align-items:center;display:flex;gap:6px}.loader--dots-fade>*{animation:loader-dots-fade 1.4s ease-in-out infinite;background:currentColor;border-radius:50%;height:10px;width:10px}.loader--dots-fade>:nth-child(2){animation-delay:.2s}.loader--dots-fade>:nth-child(3){animation-delay:.4s}.loader--dots-grow{align-items:center;display:flex;gap:6px}.loader--dots-grow>*{animation:loader-dots-grow 1s ease-in-out infinite;background:currentColor;border-radius:50%;height:10px;width:10px}.loader--dots-grow>:nth-child(2){animation-delay:.15s}.loader--dots-grow>:nth-child(3){animation-delay:.3s}.loader--typing{align-items:center;background:rgba(0,0,0,.1);border-radius:16px;display:flex;gap:4px;padding:8px 12px}.loader--typing>*{animation:loader-typing 1.4s ease-in-out infinite;background:currentColor;border-radius:50%;height:8px;width:8px}.loader--typing>:nth-child(2){animation-delay:.2s}.loader--typing>:nth-child(3){animation-delay:.4s}.loader--ellipsis{align-items:center;display:flex;gap:4px}.loader--ellipsis>*{animation:loader-ellipsis 1.4s ease-in-out infinite;background:currentColor;border-radius:50%;height:10px;width:10px}.loader--ellipsis>:first-child{animation-delay:0s}.loader--ellipsis>:nth-child(2){animation-delay:.2s}.loader--ellipsis>:nth-child(3){animation-delay:.4s}.loader--ellipsis>:nth-child(4){animation-delay:.6s}.loader--bars{align-items:flex-end;display:flex;gap:4px;height:30px}.loader--bars>*{animation:loader-bars-wave 1.2s ease-in-out infinite;background:currentColor;border-radius:2px;width:6px}.loader--bars>:first-child{animation-delay:0s}.loader--bars>:nth-child(2){animation-delay:.1s}.loader--bars>:nth-child(3){animation-delay:.2s}.loader--bars>:nth-child(4){animation-delay:.3s}.loader--wave-bar{align-items:center;display:flex;gap:3px;height:30px;width:60px}.loader--wave-bar>*{animation:loader-wave-bar 1s ease-in-out infinite;background:currentColor;border-radius:2px;flex:1}.loader--wave-bar>:first-child{animation-delay:0s}.loader--wave-bar>:nth-child(2){animation-delay:.1s}.loader--wave-bar>:nth-child(3){animation-delay:.2s}.loader--wave-bar>:nth-child(4){animation-delay:.3s}.loader--wave-bar>:nth-child(5){animation-delay:.4s}.loader--progress{background:rgba(0,0,0,.1);border-radius:2px;height:4px;overflow:hidden;width:100px}.loader--progress:after{animation:loader-progress-slide 1.5s ease-in-out infinite;background:currentColor;border-radius:2px;content:"";display:block;height:100%;width:40%}.loader--pulse{animation:loader-pulse 1.5s ease-in-out infinite;background:currentColor;border-radius:50%;height:40px;width:40px}.loader--ripple{height:40px;position:relative;width:40px}.loader--ripple>*{animation:loader-ripple 1.5s ease-out infinite;border:3px solid;border-radius:50%;inset:0;position:absolute}.loader--ripple>:nth-child(2){animation-delay:.495s}.loader--orbit{height:40px;position:relative;width:40px}.loader--orbit:after,.loader--orbit:before{background:currentColor;border-radius:50%;content:"";height:12px;position:absolute;width:12px}.loader--orbit:before{animation:loader-orbit-top 1s ease-in-out infinite;left:50%;top:0;transform:translateX(-50%)}.loader--orbit:after{animation:loader-orbit-bottom 1s ease-in-out infinite;bottom:0;left:50%;transform:translateX(-50%)}.loader--chase{animation:loader-spin 1.5s linear infinite;height:40px;position:relative;width:40px}.loader--chase>*{background:currentColor;border-radius:50%;height:8px;position:absolute;width:8px}.loader--chase>:first-child{left:50%;opacity:1;top:0;transform:translateX(-50%)}.loader--chase>:nth-child(2){opacity:.85;right:15%;top:15%}.loader--chase>:nth-child(3){opacity:.7;right:0;top:50%;transform:translateY(-50%)}.loader--chase>:nth-child(4){bottom:15%;opacity:.55;right:15%}.loader--chase>:nth-child(5){bottom:0;left:50%;opacity:.4;transform:translateX(-50%)}.loader--chase>:nth-child(6){bottom:15%;left:15%;opacity:.25}.loader--atom{height:40px;position:relative;width:40px}.loader--atom:before{background:currentColor;border-radius:50%;content:"";height:8px;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:8px}.loader--atom>*{border:2px solid transparent;border-radius:50%;border-top-color:initial;inset:0;position:absolute}.loader--atom>:first-child,.loader--atom>:nth-child(2){animation:loader-atom-orbit 1s linear infinite}.loader--atom>:nth-child(2){transform:rotate(60deg)}.loader--atom>:nth-child(3){animation:loader-atom-orbit 1s linear infinite;transform:rotate(120deg)}.loader--heartbeat{animation:loader-heartbeat 1.2s ease-in-out infinite;border-radius:50%}.loader--heartbeat,.loader--morph{background:currentColor;height:40px;width:40px}.loader--morph{animation:loader-morph 2s ease-in-out infinite}.loader--flip-card{height:40px;perspective:100px;width:40px}.loader--flip-card>*{animation:loader-flip-card 1.2s ease-in-out infinite;background:currentColor;display:block;height:100%;width:100%}.loader--square{animation:loader-square-rotate 1.2s ease-in-out infinite}.loader--cube,.loader--square{background:currentColor;height:30px;width:30px}.loader--cube{animation:loader-cube-flip 1.2s ease-in-out infinite;perspective:100px}.loader--folding{height:40px;position:relative;width:40px}.loader--folding>*{animation:loader-folding 2s ease infinite;background:currentColor;height:18px;position:absolute;width:18px}.loader--folding>:first-child{animation-delay:0s;left:0;top:0}.loader--folding>:nth-child(2){animation-delay:.5s;right:0;top:0}.loader--folding>:nth-child(3){animation-delay:1s;bottom:0;right:0}.loader--folding>:nth-child(4){animation-delay:1.5s;bottom:0;left:0}.loader--clock{background:var(--loader-face,hsla(0,0%,100%,.1));border:3px solid var(--loader-frame,#fff);border-radius:50%;height:48px;position:relative;width:48px}.loader--clock:after,.loader--clock:before{background:var(--loader-frame,#fff);content:"";left:50%;position:absolute;top:50%;transform-origin:center bottom}.loader--clock:before{animation:clock-rotate 2s linear infinite;height:35%;margin-left:-1px;margin-top:-35%;width:2px}.loader--clock:after{animation:clock-rotate 24s linear infinite;height:25%;margin-left:-1px;margin-top:-25%;width:2px}.loader--bounce{align-items:flex-end;display:flex;gap:8px;height:40px}.loader--bounce>*{animation:loader-bounce .6s ease-in-out infinite alternate;background:currentColor;border-radius:50%;height:12px;width:12px}.loader--bounce>:nth-child(2){animation-delay:.2s}.loader--bounce>:nth-child(3){animation-delay:.4s}.loader--windmill{animation:loader-spin 1.5s linear infinite;height:40px;position:relative;width:40px}.loader--windmill>*{background:currentColor;height:16px;left:50%;position:absolute;top:50%;transform-origin:center bottom;width:4px}.loader--windmill>:first-child{transform:translate(-50%,-100%) rotate(0deg)}.loader--windmill>:nth-child(2){transform:translate(-50%,-100%) rotate(90deg)}.loader--windmill>:nth-child(3){transform:translate(-50%,-100%) rotate(180deg)}.loader--windmill>:nth-child(4){transform:translate(-50%,-100%) rotate(270deg)}.loader--gear{animation:gear-rotate 2s linear infinite;height:48px;position:relative;width:48px}.loader--gear:before{background:var(--loader-color,#fff);inset:25%}.loader--gear:after,.loader--gear:before{border-radius:50%;content:"";position:absolute}.loader--gear:after{background:currentColor;inset:35%}.loader--battery{border:3px solid rgba(0,0,0,.1);border-radius:4px;height:24px;position:relative;width:50px}.loader--battery:before{background:rgba(0,0,0,.1);border-radius:0 2px 2px 0;content:"";height:10px;position:absolute;right:-6px;top:50%;transform:translateY(-50%);width:4px}.loader--battery:after{animation:loader-battery-charge 2s ease-in-out infinite;background:currentColor;border-radius:2px;bottom:3px;content:"";left:3px;position:absolute;top:3px;width:0}.loader--wifi{height:30px;position:relative;width:40px}.loader--wifi>*{animation:loader-wifi-pulse 1.5s ease-out infinite;border:3px solid transparent;border-radius:50%;border-top-color:initial;bottom:0;left:50%;opacity:0;position:absolute;transform:translateX(-50%)}.loader--wifi>:first-child{animation-delay:0s;height:10px;width:10px}.loader--wifi>:nth-child(2){animation-delay:.3s;height:22px;width:22px}.loader--wifi>:nth-child(3){animation-delay:.6s;height:34px;width:34px}.loader--dna{height:40px;position:relative;width:60px}.loader--dna span{animation:dna-rotate 1.5s linear infinite;border-radius:50%;height:10px;position:absolute;width:10px}.loader--dna span:nth-child(odd){background:var(--loader-color1,#fff)}.loader--dna span:nth-child(2n){background:var(--loader-color2,#ff3d00)}.loader--dna span:first-child{animation-delay:0s;left:0}.loader--dna span:nth-child(2){animation-delay:-.15s;left:12px}.loader--dna span:nth-child(3){animation-delay:-.3s;left:24px}.loader--dna span:nth-child(4){animation-delay:-.45s;left:36px}.loader--dna span:nth-child(5){animation-delay:-.6s;left:48px}.loader--dna span:nth-child(6){animation-delay:-.75s;left:60px}.loader--infinity{height:30px;position:relative;width:60px}.loader--infinity:after,.loader--infinity:before{animation:infinity-rotate 2s linear infinite;border:4px solid var(--loader-color,#fff);border-radius:50%;content:"";height:30px;position:absolute;width:30px}.loader--infinity:before{border-right-color:transparent;border-top-color:transparent;left:0}.loader--infinity:after{animation-delay:1s;border-bottom-color:transparent;border-left-color:transparent;right:0}.loader--pendulum{animation:pendulum 1.5s ease-in-out infinite;height:76px;position:relative;transform-origin:top center;width:16px}.loader--pendulum:before{background:var(--loader-string,hsla(0,0%,100%,.3));content:"";height:60px;left:50%;position:absolute;top:0;transform:translateX(-50%);width:2px}.loader--pendulum:after{background:var(--loader-ball,#fff);border-radius:50%;bottom:0;content:"";height:16px;left:0;position:absolute;width:16px}.loader--seesaw{height:20px;position:relative;width:50px}.loader--seesaw:before{border-bottom:10px solid rgba(0,0,0,.1);border-left:8px solid transparent;border-right:8px solid transparent;bottom:0;content:"";left:50%;position:absolute;transform:translateX(-50%)}.loader--seesaw:after{animation:loader-seesaw 1s ease-in-out infinite;background:currentColor;border-radius:2px;content:"";height:4px;left:0;position:absolute;right:0;top:5px;transform-origin:center center}.loader--progress-fill{background:var(--loader-bg,hsla(0,0%,100%,.15));border-radius:2.5px;height:5px;overflow:hidden;position:relative;width:240px}.loader--progress-fill:after{animation:progress-fill 2s ease infinite;background:var(--loader-color,#ff3d00);border-radius:inherit;content:"";height:100%;left:0;position:absolute;top:0;width:0}.loader--progress-indeterminate{background:var(--loader-bg,hsla(0,0%,100%,.15));border-radius:2.5px;height:5px;overflow:hidden;position:relative;width:240px}.loader--progress-indeterminate:after{animation:progress-indeterminate 1.5s ease-in-out infinite;background:var(--loader-color,#fff);border-radius:inherit;content:"";height:100%;position:absolute;top:0}.loader--progress-stripe{animation:progress-stripe 1s linear infinite;background:repeating-linear-gradient(135deg,var(--loader-color,#fff) 0 10px,var(--loader-accent,hsla(0,0%,100%,.5)) 10px 20px) 0/200%;border-radius:5px;height:10px;width:240px}.loader--progress-stripe-fill{background:var(--loader-bg,hsla(0,0%,100%,.15));border-radius:5px;height:10px;overflow:hidden;position:relative;width:240px}.loader--progress-stripe-fill:after{animation:progress-fill 3s ease infinite,progress-stripe .5s linear infinite;background:repeating-linear-gradient(135deg,var(--loader-color,#fff) 0 10px,hsla(0,0%,100%,.5) 10px 20px);background-size:200% 100%;border-radius:inherit;content:"";height:100%;left:0;position:absolute;top:0;width:0}.loader--progress-pulse{background:var(--loader-bg,hsla(0,0%,100%,.15));border-radius:4px;height:8px;overflow:hidden;position:relative;width:240px}.loader--progress-pulse:after{animation:progress-pulse 1s ease-in-out infinite;background:var(--loader-color,#fff);border-radius:inherit;content:"";height:100%;left:0;position:absolute;top:0;width:100%}.loader--progress-split{background:var(--loader-bg,hsla(0,0%,100%,.15));border-radius:2.5px;height:5px;overflow:hidden;position:relative;width:240px}.loader--progress-split:after{animation:progress-split 1.5s ease-in-out infinite;background:var(--loader-color,#fff);border-radius:inherit;content:"";height:100%;position:absolute;top:0}.loader--progress-gradient{animation:progress-flow 1.5s linear infinite;background:linear-gradient(90deg,var(--loader-start,#ff3d00) 50%,var(--loader-end,#fff) 0) calc(100% - var(--_p, 0%))/200%,linear-gradient(var(--loader-bg,hsla(0,0%,100%,.15)) 0 0) 0/var(--_p,0);background-repeat:no-repeat;border-radius:4px;height:8px;width:240px}.loader--progress-dots{align-items:center;display:flex;height:16px;justify-content:space-between;position:relative;width:240px}.loader--progress-dots span{animation:dot-active 1s ease-in-out infinite;background:var(--loader-inactive,hsla(0,0%,100%,.3));border-radius:50%;height:16px;width:16px}.loader--progress-dots span:first-child{animation-delay:0s}.loader--progress-dots span:nth-child(2){animation-delay:.1s}.loader--progress-dots span:nth-child(3){animation-delay:.2s}.loader--progress-dots span:nth-child(4){animation-delay:.3s}.loader--progress-dots span:nth-child(5){animation-delay:.4s}.loader--progress-dots span:nth-child(6){animation-delay:.5s}.loader--progress-dots span:nth-child(7){animation-delay:.6s}.loader--progress-dots span:nth-child(8){animation-delay:.7s}.loader--progress-dots span:nth-child(9){animation-delay:.8s}.loader--progress-dots span:nth-child(10){animation-delay:.9s}.loader--progress-segments{display:flex;gap:4px;height:20px;width:200px}.loader--progress-segments span{animation:segment-fill 2s ease infinite;background:var(--loader-inactive,hsla(0,0%,100%,.15));border-radius:2px;flex:1;height:100%}.loader--progress-segments span:first-child{animation-delay:0s}.loader--progress-segments span:nth-child(2){animation-delay:.4s}.loader--progress-segments span:nth-child(3){animation-delay:.8s}.loader--progress-segments span:nth-child(4){animation-delay:1.2s}.loader--progress-segments span:nth-child(5){animation-delay:1.6s}.loader--progress-circle{border:4px solid var(--loader-bg,hsla(0,0%,100%,.15));border-radius:50%;height:60px;position:relative;width:60px}.loader--progress-circle:after{animation:circle-progress 1.5s ease-in-out infinite;border:4px solid transparent;border-radius:50%;border-top:4px solid var(--loader-color,#fff);content:"";height:60px;left:-4px;position:absolute;top:-4px;width:60px}.loader--circle-spinner{border:5px solid var(--loader-color,#fff);border-bottom-color:var(--loader-accent,#ff3d00);border-radius:50%}.loader--circle-dual,.loader--circle-spinner{animation:circle-rotation 1s linear infinite;box-sizing:border-box;display:inline-block;height:var(--loader-size,48px);width:var(--loader-size,48px)}.loader--circle-dual{border:5px solid var(--loader-color,#fff);border-bottom:5px solid transparent;border-radius:50%}.loader--circle-clip{animation:circle-rotation 1s linear infinite;border-radius:50%;height:var(--loader-size,48px);position:relative;width:var(--loader-size,48px)}.loader--circle-clip:before{animation:circle-clip 2s linear infinite;border:5px solid var(--loader-color,#fff);border-radius:50%;box-sizing:border-box;content:"";inset:0;position:absolute}.loader--circle-clip-dual{animation:circle-rotation 1s linear infinite;border-radius:50%;height:var(--loader-size,48px);position:relative;width:var(--loader-size,48px)}.loader--circle-clip-dual:after,.loader--circle-clip-dual:before{animation:circle-clip 2s linear infinite;border:5px solid var(--loader-color,#fff);border-radius:50%;box-sizing:border-box;content:"";inset:0;position:absolute}.loader--circle-clip-dual:after{border-color:var(--loader-accent,#ff3d00);transform:rotate3d(90,90,0,180deg)}.loader--circle-nested{animation:circle-rotation 1s linear infinite;border:3px solid var(--loader-color,#fff);border-radius:50%;box-sizing:border-box;display:inline-block;height:var(--loader-size,48px);position:relative;width:var(--loader-size,48px)}.loader--circle-nested:after{border:3px solid transparent;border-bottom:3px solid var(--loader-accent,#ff3d00);border-radius:50%;box-sizing:border-box;content:"";height:calc(var(--loader-size, 48px) - 16px);left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:calc(var(--loader-size, 48px) - 16px)}.loader--circle-triple{animation:circle-rotation 2s linear infinite;border:2px solid var(--loader-color,#fff);box-sizing:border-box;display:inline-block;height:var(--loader-size,48px);position:relative;width:var(--loader-size,48px)}.loader--circle-triple:after,.loader--circle-triple:before{animation:circle-rotation-back 1.5s linear infinite;border:2px solid var(--loader-accent,#ff3d00);bottom:0;box-sizing:border-box;content:"";height:calc(var(--loader-size, 48px) - 10px);left:0;margin:auto;position:absolute;right:0;top:0;transform-origin:center center;width:calc(var(--loader-size, 48px) - 10px)}.loader--circle-triple:before{animation:circle-rotation 2s linear infinite;border-color:var(--loader-color,#fff);height:calc(var(--loader-size, 48px) - 20px);width:calc(var(--loader-size, 48px) - 20px)}.loader--circle-dot{animation:circle-rotation 1s linear infinite;border:2px solid var(--loader-color,#fff);border-radius:50%;box-sizing:border-box;display:inline-block;height:var(--loader-size,48px);position:relative;width:var(--loader-size,48px)}.loader--circle-dot:after,.loader--circle-dot:before{background:var(--loader-accent,#ff3d00);border-radius:50%;box-sizing:border-box;content:"";height:6px;left:0;position:absolute;top:0;width:6px}.loader--circle-dot:before{bottom:0;left:auto;right:0;top:auto}.loader--circle-pulse{animation:circle-pulse 1.5s ease-out infinite;background:var(--loader-color,#fff);border-radius:50%;box-shadow:0 0 0 0 hsla(0,0%,100%,.5)}.loader--circle-pulse,.loader--circle-ripple{display:inline-block;height:var(--loader-size,48px);position:relative;width:var(--loader-size,48px)}.loader--circle-ripple:after,.loader--circle-ripple:before{animation:circle-ripple 2s ease-in-out infinite;border:4px solid var(--loader-color,#fff);border-radius:50%;box-sizing:border-box;content:"";height:var(--loader-size,48px);left:0;position:absolute;top:0;width:var(--loader-size,48px)}.loader--circle-ripple:after{animation-delay:1s;border-color:var(--loader-accent,#ff3d00)}.loader--circle-orbit{animation:circle-rotation 1s linear infinite;border:2px solid var(--loader-accent,#ff3d00);border-radius:50%;box-sizing:border-box;display:inline-block;height:var(--loader-size,48px);position:relative;width:var(--loader-size,48px)}.loader--circle-orbit:after{border:2px solid var(--loader-color,#fff);border-radius:50%;box-sizing:border-box;content:"";height:12px;left:4px;position:absolute;top:4px;width:12px}.loader--bubble-rotate{animation:rotation 1s linear infinite;box-sizing:border-box;display:block;height:var(--loader-size,48px);position:relative;width:var(--loader-size,48px)}.loader--bubble-rotate:after,.loader--bubble-rotate:before{animation:bubble-scale 1s ease-in-out infinite;background-color:var(--loader-color,#fff);border-radius:50%;box-sizing:border-box;content:"";height:calc(var(--loader-size, 48px)/2);position:absolute;top:0;width:calc(var(--loader-size, 48px)/2)}.loader--bubble-rotate:before{animation-delay:.5s;background-color:var(--loader-accent,#ff3d00);bottom:0;top:auto}.loader--bubble-dots-bounce,.loader--bubble-dots-bounce:after,.loader--bubble-dots-bounce:before{animation-fill-mode:both;animation:bubble-fade 1.8s ease-in-out infinite;border-radius:50%;height:2.5em;width:2.5em}.loader--bubble-dots-bounce{animation-delay:-.16s;color:var(--loader-color,#fff);font-size:7px;position:relative;text-indent:-9999em;transform:translateZ(0)}.loader--bubble-dots-bounce:after,.loader--bubble-dots-bounce:before{content:"";position:absolute;top:0}.loader--bubble-dots-bounce:before{animation-delay:-.32s;left:-3.5em}.loader--bubble-dots-bounce:after{left:3.5em}.loader--bubble-dots-flash{animation:bubble-flash .5s ease-out infinite alternate;background-color:var(--loader-color,#fff);border-radius:50%;box-shadow:32px 0 var(--loader-color,#fff),-32px 0 var(--loader-color,#fff);height:16px;position:relative;width:16px}.loader--bubble-dots-pulse{animation:bubble-pulse 2s ease-in-out infinite}.loader--bubble-dots-pulse,.loader--bubble-dots-rotate{background:var(--loader-accent,#ff3d00);border-radius:50%;box-shadow:-24px 0,24px 0;box-sizing:border-box;color:var(--loader-color,#fff);display:block;height:16px;position:relative;width:16px}.loader--bubble-dots-rotate{animation:rotation 2s ease-in-out infinite}.loader--bubble-expand{animation:bubble-expand 2s linear infinite alternate;background:var(--loader-color,#fff);border-radius:50%;box-sizing:border-box;display:block;height:16px;position:relative;width:16px}.loader--bubble-collision{position:relative}.loader--bubble-collision:after,.loader--bubble-collision:before{animation:bubble-collision-left 1s ease-in-out infinite;background:var(--loader-color,#fff);border-radius:50%;content:"";display:block;height:15px;margin:10px auto;position:relative;width:15px}.loader--bubble-collision:after{animation:bubble-collision-right 1s ease-in-out infinite;background:var(--loader-accent,#ff3d00)}.loader--bubble-flip{animation:flip 1s linear infinite;box-sizing:border-box;height:var(--loader-size,48px);position:relative;width:var(--loader-size,48px)}.loader--bubble-flip:after,.loader--bubble-flip:before{animation:rotation 1s linear infinite;background:var(--loader-accent,#ff3d00);border-radius:50%;content:"";height:calc(var(--loader-size, 48px)/2);position:absolute;transform-origin:calc(var(--loader-size, 48px)/4) 100%;width:calc(var(--loader-size, 48px)/2)}.loader--bubble-flip:before{background:var(--loader-color,#fff);transform-origin:0 50%}.loader--rect-flip{animation:rect-flip-x 1s linear infinite;background:var(--loader-color,#fff);box-sizing:border-box}.loader--rect-dual,.loader--rect-flip{display:inline-block;height:var(--loader-size,48px);position:relative;width:var(--loader-size,48px)}.loader--rect-dual:after,.loader--rect-dual:before{animation:rotation 2s ease-in-out infinite;border:2px solid var(--loader-color,#fff);box-sizing:border-box;content:"";height:var(--loader-size,48px);left:0;position:absolute;top:0;width:var(--loader-size,48px)}.loader--rect-dual:after{animation-delay:1s;border-color:var(--loader-accent,#ff3d00)}.loader--rect-expand{display:inline-block;height:var(--loader-size,48px);position:relative;width:var(--loader-size,48px)}.loader--rect-expand:after,.loader--rect-expand:before{animation:rect-scale-fade 2s ease-in-out infinite;border:4px solid var(--loader-color,#fff);box-sizing:border-box;content:"";height:var(--loader-size,48px);left:0;position:absolute;top:0;width:var(--loader-size,48px)}.loader--rect-expand:after{animation-delay:1s;border-color:var(--loader-accent,#ff3d00)}.loader--rect-alternate{display:inline-block;height:var(--loader-size,48px);position:relative;width:var(--loader-size,48px)}.loader--rect-alternate:after,.loader--rect-alternate:before{animation:rotation 2s ease-in-out infinite alternate;border:2px solid var(--loader-color,#fff);box-sizing:border-box;content:"";height:var(--loader-size,48px);left:0;position:absolute;top:0;width:var(--loader-size,48px)}.loader--rect-alternate:after{animation-direction:alternate-reverse;border-color:var(--loader-accent,#ff3d00)}.loader--rect-fill{animation:rect-fill 2s linear infinite alternate;border:1px solid;color:var(--loader-color,#fff)}.loader--rect-fill,.loader--rect-shrink{box-sizing:border-box;display:inline-block;height:var(--loader-size,48px);position:relative;width:var(--loader-size,48px)}.loader--rect-shrink{animation:rect-rotate-shrink 1s ease infinite alternate-reverse;background:var(--loader-color,#fff)}.loader--rect-morph{animation:rect-morph 1s linear infinite;background:var(--loader-color,#fff);height:var(--loader-size,48px);width:var(--loader-size,48px)}.loader--rect-diamond{background-color:rgba(0,0,0,.5);height:64px;overflow:hidden;position:relative;transform:rotate(45deg);width:64px}.loader--rect-diamond:after{background:#222b32;content:"";inset:8px;margin:auto;position:absolute}.loader--rect-diamond:before{animation:rect-diamond-fill 2s linear infinite;background:var(--loader-accent,#de3500);content:"";inset:-15px;margin:auto;position:absolute}.loader--rect-walk{animation:rect-walk 2s linear infinite;background:var(--loader-color,#fff);height:24px;width:24px}.loader--rect-nested,.loader--rect-walk{box-sizing:border-box;display:inline-block;position:relative}.loader--rect-nested{animation:rotation 2s linear infinite;border:2px solid var(--loader-color,#fff);height:var(--loader-size,48px);width:var(--loader-size,48px)}.loader--rect-nested:after,.loader--rect-nested:before{animation:rotation 1.5s linear infinite reverse;border:2px solid var(--loader-accent,#ff3d00);bottom:0;box-sizing:border-box;content:"";height:calc(var(--loader-size, 48px) - 10px);left:0;margin:auto;position:absolute;right:0;top:0;transform-origin:center center;width:calc(var(--loader-size, 48px) - 10px)}.loader--rect-nested:before{animation:rotation 1s linear infinite;border-color:var(--loader-color,#fff);height:calc(var(--loader-size, 48px) - 20px);width:calc(var(--loader-size, 48px) - 20px)}.loader--rect-stepped{display:inline-block;height:var(--loader-size,48px);position:relative;width:var(--loader-size,48px)}.loader--rect-stepped:after,.loader--rect-stepped:before{animation:rect-rotation-break 3s ease-in-out infinite alternate;border:2px solid var(--loader-color,#fff);box-sizing:border-box;content:"";height:var(--loader-size,48px);left:0;position:absolute;top:0;width:var(--loader-size,48px)}.loader--rect-stepped:after{animation-direction:alternate-reverse;border-color:var(--loader-accent,#ff3d00)}.loader--bar-bounce{animation:bar-bounce .3s linear .3s infinite alternate;color:var(--loader-color,#fff);display:inline-block;margin-left:20px;margin-top:10px;position:relative}.loader--bar-bounce,.loader--bar-bounce:after,.loader--bar-bounce:before{background:currentColor;border-radius:4px;box-sizing:border-box;height:40px;width:8px}.loader--bar-bounce:after,.loader--bar-bounce:before{animation:bar-height .3s linear .45s infinite alternate;bottom:0;content:"";left:20px;position:absolute}.loader--bar-bounce:before{animation-delay:0s;left:-20px}.loader--bar-pulse{animation:bar-height .3s linear .3s infinite alternate;color:var(--loader-color,#fff);display:block;margin:20px auto;position:relative}.loader--bar-pulse,.loader--bar-pulse:after,.loader--bar-pulse:before{background:currentColor;border-radius:4px;box-sizing:border-box;height:40px;width:8px}.loader--bar-pulse:after,.loader--bar-pulse:before{animation:bar-height .3s linear .45s infinite alternate;content:"";left:20px;position:absolute;top:50%;transform:translateY(-50%)}.loader--bar-pulse:before{animation-delay:0s;left:-20px}.loader--bar-flash{animation:bar-flash 1s linear infinite alternate;display:block;left:-20px;margin:auto}.loader--bar-flash,.loader--bar-wave{border-radius:4px;box-sizing:border-box;height:48px;position:relative;width:8px}.loader--bar-wave{animation:bar-wave .6s linear infinite;color:var(--loader-color,#fff);display:inline-block}.loader--bar-equalizer{animation:bar-scale-y 1s ease-in-out infinite;animation-delay:-.16s;background:var(--loader-color,#fff);color:var(--loader-color,#fff);font-size:11px;height:4em;position:relative;width:1em}.loader--bar-equalizer:after,.loader--bar-equalizer:before{animation:bar-scale-y 1s ease-in-out infinite;background:var(--loader-color,#fff);content:"";height:4em;left:2em;position:absolute;top:0;width:1em}.loader--bar-equalizer:before{animation-delay:-.32s;left:-2em}.loader--bar-expand{animation:bar-expand .3s linear .3s infinite alternate;color:var(--loader-color,#fff);display:inline-block;margin-top:20px;position:relative}.loader--bar-expand,.loader--bar-expand:after,.loader--bar-expand:before{background:currentColor;border-radius:4px;box-sizing:border-box;height:4.8px;width:4.8px}.loader--bar-expand:after,.loader--bar-expand:before{animation:bar-expand .3s linear .45s infinite alternate;content:"";left:0;position:absolute;top:15px}.loader--bar-expand:after{animation-delay:0s;top:-15px}.loader--bar-reveal{animation:bar-reveal 1s linear infinite alternate;border-radius:4px;box-sizing:border-box;display:inline-block;height:48px;position:relative;width:8px}.loader--bar-sound-wave{animation:bar-spike .65s linear infinite alternate;background-image:linear-gradient(var(--loader-color,#fff) 50px,transparent 0),linear-gradient(var(--loader-color,#fff) 50px,transparent 0),linear-gradient(var(--loader-color,#fff) 50px,transparent 0),linear-gradient(var(--loader-color,#fff) 50px,transparent 0),linear-gradient(var(--loader-color,#fff) 50px,transparent 0),linear-gradient(var(--loader-color,#fff) 50px,transparent 0);background-position:0,15px,30px,45px,60px,75px;background-repeat:no-repeat;height:50px;position:relative;width:85px}.loader--bar-shrink{animation:bar-ht 1s ease-in infinite alternate;background:currentColor;border-radius:4px;box-shadow:15px 0 0 -1px,-15px 0 0 -1px,30px 0 0 -2px,-30px 0 0 -2px,45px 0 0 -3px,-45px 0 0 -3px;color:var(--loader-color,#fff);height:30px;position:relative;width:10px}.loader--bar-matrix{animation:matrix 1s linear infinite;background:linear-gradient(transparent 16.6666666667%,var(--loader-color,#fff) 0 50%,transparent 0),linear-gradient(transparent 33.3333333333%,var(--loader-color,#fff) 0 66.6666666667%,transparent 0),linear-gradient(transparent 50%,var(--loader-color,#fff) 0 83.3333333333%,transparent 0);background-repeat:no-repeat;background-size:10px 400%;height:40px;width:45px}.loader--text-fill{color:var(--loader-bg,hsla(0,0%,100%,.3));font-size:2rem;font-weight:700;position:relative}.loader--text-fill:after{animation:text-fill 2s ease-in-out infinite;clip-path:polygon(0 0,0 0,0 100%,0 100%);color:var(--loader-color,#fff);content:attr(data-text);left:0;position:absolute;top:0}.loader--text-dots{color:var(--loader-color,#fff);font-size:1.5rem;font-weight:500}.loader--text-dots:after{animation:text-dots 1.5s steps(4) infinite;content:""}.loader--text-bounce{color:var(--loader-color,#fff);display:inline-flex;font-size:1.5rem;font-weight:700;gap:.1em}.loader--text-bounce span{animation:text-bounce 1s ease-in-out infinite;display:inline-block}.loader--text-bounce span:first-child{animation-delay:0s}.loader--text-bounce span:nth-child(2){animation-delay:.1s}.loader--text-bounce span:nth-child(3){animation-delay:.2s}.loader--text-bounce span:nth-child(4){animation-delay:.3s}.loader--text-bounce span:nth-child(5){animation-delay:.4s}.loader--text-bounce span:nth-child(6){animation-delay:.5s}.loader--text-bounce span:nth-child(7){animation-delay:.6s}.loader--text-bounce span:nth-child(8){animation-delay:.7s}.loader--text-bounce span:nth-child(9){animation-delay:.8s}.loader--text-bounce span:nth-child(10){animation-delay:.9s}.loader--text-fade{color:var(--loader-color,#fff);display:inline-flex;font-size:1.5rem;font-weight:700;gap:.05em}.loader--text-fade span{animation:text-letter-fade 1.5s ease-in-out infinite}.loader--text-fade span:first-child{animation-delay:0s}.loader--text-fade span:nth-child(2){animation-delay:.1s}.loader--text-fade span:nth-child(3){animation-delay:.2s}.loader--text-fade span:nth-child(4){animation-delay:.3s}.loader--text-fade span:nth-child(5){animation-delay:.4s}.loader--text-fade span:nth-child(6){animation-delay:.5s}.loader--text-fade span:nth-child(7){animation-delay:.6s}.loader--text-fade span:nth-child(8){animation-delay:.7s}.loader--text-fade span:nth-child(9){animation-delay:.8s}.loader--text-fade span:nth-child(10){animation-delay:.9s}.loader--text-pulse{animation:text-pulse 1s ease-in-out infinite;color:var(--loader-color,#fff);font-size:2rem;font-weight:700}.loader--text-spotlight{background:linear-gradient(90deg,var(--loader-bg,hsla(0,0%,100%,.3)) 0,var(--loader-color,#fff) 50%,var(--loader-bg,hsla(0,0%,100%,.3)) 100%);background-clip:text;-webkit-background-clip:text;background-size:200% 100%;color:var(--loader-bg,hsla(0,0%,100%,.3));font-size:2rem;font-weight:700;-webkit-text-fill-color:transparent;animation:text-spotlight 2s linear infinite}.loader--text-typing{color:var(--loader-color,#fff);font-family:monospace;font-size:1.5rem;font-weight:500}.loader--text-typing:after{animation:text-cursor .8s ease-in-out infinite;color:var(--loader-cursor,#fff);content:"|"}.loader--text-wave{color:var(--loader-color,#fff);display:inline-flex;font-size:1.5rem;font-weight:700;gap:.05em}.loader--text-wave span{animation:text-wave 1.2s ease-in-out infinite;display:inline-block}.loader--text-wave span:first-child{animation-delay:0s}.loader--text-wave span:nth-child(2){animation-delay:.08s}.loader--text-wave span:nth-child(3){animation-delay:.16s}.loader--text-wave span:nth-child(4){animation-delay:.24s}.loader--text-wave span:nth-child(5){animation-delay:.32s}.loader--text-wave span:nth-child(6){animation-delay:.4s}.loader--text-wave span:nth-child(7){animation-delay:.48s}.loader--text-wave span:nth-child(8){animation-delay:.56s}.loader--text-wave span:nth-child(9){animation-delay:.64s}.loader--text-wave span:nth-child(10){animation-delay:.72s}.loader--text-shake{animation:text-shake .5s ease-in-out infinite;color:var(--loader-color,#ff3d00);font-size:1.5rem;font-weight:700}.loader--text-gradient{background:linear-gradient(90deg,var(--loader-color1,#ff3d00),var(--loader-color2,#fff),var(--loader-color3,#ff3d00));background-clip:text;-webkit-background-clip:text;background-size:200% auto;font-size:2rem;font-weight:700;-webkit-text-fill-color:transparent;animation:text-spotlight 3s linear infinite}.loader--text-spinner{animation:spin 1s linear infinite;color:var(--loader-color,#fff);display:inline-block;font-size:2rem}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.loader--text-percentage{color:var(--loader-color,#fff);font-family:monospace;font-size:3rem;font-variant-numeric:tabular-nums;font-weight:700}.loader--text-percentage:after{content:"%"}.loader--skeleton-shimmer{animation:skeleton-shimmer 1.5s ease-in-out infinite;background-color:var(--skeleton-bg,hsla(0,0%,100%,.1));background:linear-gradient(90deg,var(--skeleton-bg,hsla(0,0%,100%,.1)) 0,var(--skeleton-highlight,hsla(0,0%,100%,.2)) 50%,var(--skeleton-bg,hsla(0,0%,100%,.1)) 100%);background-size:200% 100%}.loader--skeleton-pulse,.loader--skeleton-shimmer{border-radius:4px;overflow:hidden;position:relative}.loader--skeleton-pulse{animation:skeleton-pulse 1.5s ease-in-out infinite}.loader--skeleton-pulse,.loader--skeleton-wave{background-color:var(--skeleton-bg,hsla(0,0%,100%,.1))}.loader--skeleton-wave{border-radius:4px;overflow:hidden;position:relative}.loader--skeleton-wave:after{animation:skeleton-wave 1.5s ease-in-out infinite;background:linear-gradient(90deg,transparent 0,var(--skeleton-highlight,hsla(0,0%,100%,.3)) 50%,transparent 100%);bottom:0;content:"";left:0;position:absolute;right:0;top:0}.loader--skeleton-fade{animation:skeleton-fade 2s ease-in-out infinite;background-color:var(--skeleton-bg,hsla(0,0%,100%,.1));border-radius:4px;overflow:hidden;position:relative}.loader--clipboard{background:var(--loader-bg,#fff);border-radius:4px;height:130px;position:relative;width:100px}.loader--clipboard:before{background-image:radial-gradient(ellipse at center,transparent 24%,var(--loader-accent,#ff3d00) 25%,var(--loader-accent,#ff3d00) 64%,transparent 65%),linear-gradient(to bottom,transparent 34%,var(--loader-accent,#ff3d00) 35%);background-position:top;background-repeat:no-repeat;background-size:12px 12px,100% auto;box-shadow:inset 0 -3px rgba(0,0,0,.25);content:"";height:20%;left:50%;position:absolute;top:0;transform:translate(-50%,-65%);width:54%}.loader--clipboard:after{animation:write-down 2s ease-out infinite;background:linear-gradient(to bottom,var(--loader-line,rgba(0,0,0,.3)) 30%,transparent 31%);background-size:100% 16px;content:"";height:60%;left:50%;position:absolute;top:20%;transform:translateX(-50%);width:66%}.loader--book{background:var(--loader-cover,#979794);border-radius:8px;box-sizing:border-box;height:140px;perspective:1000px;position:relative;width:200px}.loader--book:before{background:var(--loader-page,#f5f5f5) no-repeat;background-image:linear-gradient(var(--loader-line,#ddd) 100px,transparent 0),linear-gradient(var(--loader-line,#ddd) 100px,transparent 0),linear-gradient(var(--loader-line,#ddd) 100px,transparent 0),linear-gradient(var(--loader-line,#ddd) 100px,transparent 0),linear-gradient(var(--loader-line,#ddd) 100px,transparent 0),linear-gradient(var(--loader-line,#ddd) 100px,transparent 0);background-position:15px 30px,15px 60px,15px 90px,105px 30px,105px 60px,105px 90px;background-size:60px 10px;box-shadow:0 0 10px rgba(0,0,0,.25);left:10px}.loader--book:after,.loader--book:before{border-radius:8px;bottom:10px;content:"";position:absolute;right:10px;top:10px}.loader--book:after{animation:page-turn 2s ease-in-out infinite;background:var(--loader-page,#fff) no-repeat;background-image:linear-gradient(var(--loader-line,#ddd) 100px,transparent 0),linear-gradient(var(--loader-line,#ddd) 100px,transparent 0),linear-gradient(var(--loader-line,#ddd) 100px,transparent 0);background-position:50% 30px,50% 60px,50% 90px;background-size:60px 10px;transform:rotateY(0deg);transform-origin:left center;width:calc(50% - 10px)}.loader--document{background:var(--loader-bg,#fff);border-radius:4px;box-shadow:0 2px 8px rgba(0,0,0,.2);height:80px;position:relative;width:60px}.loader--document:before{animation:skeleton-pulse 1.5s ease-in-out infinite;background:repeating-linear-gradient(to bottom,var(--loader-line,#ddd) 0,var(--loader-line,#ddd) 4px,transparent 4px,transparent 12px);content:"";height:50%;left:15%;position:absolute;right:15%;top:20%}.loader--document:after{border-bottom:12px solid rgba(0,0,0,.1);border-left:12px solid var(--loader-bg,#fff);border-right:12px solid rgba(0,0,0,.1);border-top:12px solid transparent;content:"";height:0;position:absolute;right:0;top:0;width:0}.loader--envelope{background:var(--loader-bg,#fff);box-shadow:0 2px 4px rgba(0,0,0,.2);height:40px;position:relative;width:60px}.loader--envelope:before{animation:envelope-open 2s ease-in-out infinite;border-left:30px solid transparent;border-right:30px solid transparent;border-top:24px solid var(--loader-flap,#ddd);content:"";height:0;left:0;position:absolute;right:0;top:0;transform-origin:top center}.loader--envelope:after{background:linear-gradient(180deg,rgba(0,0,0,.1) 0,rgba(0,0,0,.1) 2px,transparent 0,transparent 4px,rgba(0,0,0,.1) 0,rgba(0,0,0,.1) 6px,transparent 0);content:"";height:8px;left:15%;position:absolute;right:15%;top:30%}.loader--search{border:4px solid var(--loader-color,#fff);border-radius:50%;height:32px;position:relative;width:32px}.loader--search:after{background:var(--loader-color,#fff);bottom:-11.2px;content:"";height:16px;position:absolute;right:-2px;transform:rotate(-45deg);transform-origin:top center;width:4px}.loader--search{animation:search-wobble 1s ease-in-out infinite}.loader--ping-pong{animation:paddles .75s ease-out infinite;color:var(--loader-paddle,#fff);height:40px;position:relative;width:6px}.loader--ping-pong:before{animation:ball-bounce .6s ease-out infinite;background:var(--loader-ball,#ff3d00);border-radius:50%;content:"";height:12px;left:0;margin:0 auto;position:absolute;right:0;top:15px;width:12px}.loader--heart{animation:heartbeat 1s ease-in-out infinite;height:36px;position:relative;transform:rotate(-45deg);width:40px}.loader--heart:after,.loader--heart:before{background:var(--loader-color,#ff3d00);border-radius:50%;content:"";height:40px;position:absolute;width:40px}.loader--heart:before{left:0;top:-20px}.loader--heart:after{left:20px;top:0}.loader--star{animation:star-twinkle 1.5s ease-in-out infinite;border-bottom:28px solid var(--loader-color,#fff);position:relative}.loader--star,.loader--star:after{border-left:20px solid transparent;border-right:20px solid transparent;height:0;width:0}.loader--star:after{border-top:28px solid var(--loader-color,#fff);content:"";left:-20px;position:absolute;top:8.8px}.loader--brackets{color:var(--loader-color,#fff);font-family:Consolas,Menlo,Monaco,monospace;font-size:78px;font-weight:700;opacity:.8}.loader--brackets:before{animation:bracket-swing 1s ease-in-out infinite;content:"{";display:inline-block}.loader--brackets:after{animation:bracket-swing 1s ease-in-out infinite reverse;content:"}";display:inline-block}.loader--rolling-rock{font-size:16px;height:5.5em;position:relative;width:5.5em}.loader--rolling-rock:before{background:var(--loader-slope,#fff);content:"";height:100%;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%) rotate(45deg);width:4px}.loader--rolling-rock:after{animation:rolling-rock 2.5s cubic-bezier(.79,0,.47,.97) infinite;background:var(--loader-rock,#ff3d00);border-radius:15%;bottom:.18em;content:"";height:1em;left:.2em;position:absolute;width:1em}.loader--coin{animation:coin-flip 1s linear infinite;background:linear-gradient(90deg,var(--loader-front,#fff) 50%,var(--loader-back,#ff3d00) 50%);border-radius:50%;height:40px;transform-style:preserve-3d;width:40px}.loader--bouncing-ball{height:72px;position:relative;width:24px}.loader--bouncing-ball:before{animation:bounce-up .6s ease-in-out infinite;background:var(--loader-color,#fff);border-radius:50%;content:"";height:24px;left:0;position:absolute;top:0;width:24px}.loader--bouncing-ball:after{animation:bounce-shadow .6s ease-in-out infinite;background:var(--loader-shadow,rgba(0,0,0,.3));border-radius:50%;bottom:0;content:"";height:6px;left:10%;position:absolute;width:80%}.transform_flip_horizontal{transform:scaleX(-1)}.transform_flip_vertical{transform:scaleY(-1)}.transform_flip_both,.transform_flip_horizontal.transform_flip_vertical{transform:scale(-1)}.transform_rotate_90{transform:rotate(90deg)}.transform_rotate_180{transform:rotate(180deg)}.transform_rotate_270{transform:rotate(270deg)}.transform_rotate_dynamic{transform:rotate(var(--rotation_angle))}.scale_up{transform:scale(1.2)}.scale_down{transform:scale(.8)}.translate_xy{transform:translate(10px,10px)}.skew_xy{transform:skew(10deg,10deg)}.transition-opacity{opacity:1;transition:opacity .3s ease}.transition-opacity:hover{opacity:.5}.transition-scale{transition:transform .3s ease-in-out}.transition-scale:hover{transform:scale(1.2)}.transition-translate{cursor:pointer;transition:transform .3s ease}.transition-translate:hover{transform:translateY(-10px)}.transition-rotate{transition:transform .3s ease}.transition-rotate:hover{transform:rotate(15deg)}.transition-color{transition:background-color .3s ease}.transition-color:hover{background-color:#ef4444}.transition-shadow{transition:box-shadow .3s ease}.transition-shadow:hover{box-shadow:0 8px 25px rgba(0,0,0,.15)}.timing-linear{transition:transform .6s linear}.timing-linear.active{transform:translateX(100px)}.timing-ease{transition:transform .6s ease}.timing-ease.active{transform:translateX(100px)}.timing-ease-in{transition:transform .6s ease-in}.timing-ease-in.active{transform:translateX(100px)}.timing-ease-out{transition:transform .6s ease-out}.timing-ease-out.active{transform:translateX(100px)}.timing-ease-in-out{transition:transform .6s ease-in-out}.timing-ease-in-out.active{transform:translateX(100px)}.timing-bounce{transition:transform .6s cubic-bezier(.68,-.55,.265,1.55)}.timing-bounce.active{transform:translateX(100px)}.transform-translate-x{transition:transform .3s ease}.transform-translate-x:hover{transform:translateX(20px)}.transform-translate-y{cursor:pointer;transition:transform .3s ease}.transform-translate-y:hover{transform:translateY(-20px)}.transform-scale{transition:transform .3s ease-in-out}.transform-scale:hover{transform:scale(1.3)}.transform-rotate{transition:transform .3s ease}.transform-rotate:hover{transform:rotate(45deg)}.transform-skew-x{transition:transform .3s ease}.transform-skew-x:hover{transform:skew(15deg,0)}.transform-skew-y{transition:transform .3s ease}.transform-skew-y:hover{transform:skew(0,15deg)}.transform-rotate-x{transition:transform .3s ease}.transform-rotate-x:hover{transform:rotateX(45deg)}.transform-rotate-y{transition:transform .3s ease}.transform-rotate-y:hover{transform:rotateY(45deg)}.transform-rotate-z{transition:transform .3s ease}.transform-rotate-z:hover{transform:rotate(45deg)}.transform-combined-1{cursor:pointer;transition:transform .3s ease}.transform-combined-1:hover{transform:scale(1.2) rotate(10deg)}.transform-combined-2{cursor:pointer;transition:transform .3s ease}.transform-combined-2:hover{transform:translateY(-10px) scale(1.1)}.transform-combined-3{cursor:pointer;transition:transform .3s ease}.transform-combined-3:hover{transform:rotateY(30deg) rotateX(15deg) scale(1.1)}.hover--scale{transition:transform .3s ease-in-out}.hover--scale:hover{transform:scale(1.05)}.hover--lift{transition:transform .3s ease,box-shadow .3s ease}.hover--lift:hover{box-shadow:0 10px 30px rgba(0,0,0,.15);transform:translateY(-4px)}.hover--glow{transition:box-shadow .3s ease}.hover--glow:hover{box-shadow:0 0 20px rgba(59,130,246,.5)}.hover--shadow{transition:box-shadow .3s ease}.hover--shadow:hover{box-shadow:0 8px 25px rgba(0,0,0,.15)}.hover--brighten{cursor:pointer;transition:background-color .3s ease}.hover--brighten:hover{background-color:#e0f2fe}.hover--darken{transition:filter .3s ease}.hover--darken:hover{filter:brightness(90%)}.hover--rotate{transition:transform .3s ease}.hover--rotate:hover{transform:rotate(5deg)}.hover--shake:hover{animation:shake-hover .5s ease}.cursor--default{cursor:default}.cursor--pointer{cursor:pointer}.cursor--text{cursor:text}.cursor--move{cursor:move}.cursor--grab{cursor:grab}.cursor--grabbing{cursor:grabbing}.cursor--not-allowed{cursor:not-allowed}.cursor--wait{cursor:wait}.cursor--help{cursor:help}.cursor--crosshair{cursor:crosshair}.cursor--zoom-in{cursor:zoom-in}.cursor--zoom-out{cursor:zoom-out}.cursor--n-resize{cursor:n-resize}.cursor--e-resize{cursor:e-resize}.cursor--s-resize{cursor:s-resize}.cursor--w-resize{cursor:w-resize}.cursor--ne-resize{cursor:ne-resize}.cursor--se-resize{cursor:se-resize}.cursor--sw-resize{cursor:sw-resize}.cursor--nw-resize{cursor:nw-resize}.cursor--ew-resize{cursor:ew-resize}.cursor--ns-resize{cursor:ns-resize}.cursor--col-resize{cursor:col-resize}.cursor--row-resize{cursor:row-resize}.perspective-container{perspective:500px;transform-style:preserve-3d}/*!
2
+ * ============================================================================
3
+ *
4
+ * Stylescape v1.0.0 (https://www.style.scape/)
5
+ * Copyright (c) 2020-2024 Scape Agency (https://www.scape.agency)
6
+ * All rights reserved under Apache 2.0 License terms.
7
+ *
8
+ * ============================================================================
9
+ *
10
+ * @description Layout Engine
11
+ * @author Scape Agency (https://www.scape.agency)
12
+ * @version v1.0.0
13
+ * @copyright 2020-2024 Scape Agency (https://www.scape.agency)
14
+ * @website https://www.style.scape/
15
+ * @repository https://github.com/scape-agency/stylescape/
16
+ * @license Apache 2.0 License (https://github.com/scape-agency/stylescape/blob/main/LICENSE)
17
+ *
18
+ * ============================================================================
19
+ */