@alfalab/core-components 48.29.0-beta.1 → 48.29.0-snapshot.2-b4d1ee6

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 (743) hide show
  1. package/bottom-sheet/component.js +27 -17
  2. package/bottom-sheet/components/footer/Component.d.ts +5 -0
  3. package/bottom-sheet/components/footer/Component.js +13 -5
  4. package/bottom-sheet/components/footer/default.css +45 -0
  5. package/bottom-sheet/components/footer/index.css +9 -78
  6. package/bottom-sheet/components/footer/inverted.css +45 -0
  7. package/bottom-sheet/components/header/Component.d.ts +3 -0
  8. package/bottom-sheet/components/header/Component.js +17 -7
  9. package/bottom-sheet/components/header/default.css +46 -0
  10. package/bottom-sheet/components/header/index.css +23 -9
  11. package/bottom-sheet/components/header/inverted.css +46 -0
  12. package/bottom-sheet/cssm/component.js +25 -17
  13. package/bottom-sheet/cssm/components/footer/Component.d.ts +5 -0
  14. package/bottom-sheet/cssm/components/footer/Component.js +10 -4
  15. package/bottom-sheet/cssm/components/footer/default.module.css +44 -0
  16. package/bottom-sheet/cssm/components/footer/index.module.css +9 -78
  17. package/bottom-sheet/cssm/components/footer/inverted.module.css +44 -0
  18. package/bottom-sheet/cssm/components/header/Component.d.ts +3 -0
  19. package/bottom-sheet/cssm/components/header/Component.js +14 -6
  20. package/bottom-sheet/cssm/components/header/default.module.css +45 -0
  21. package/bottom-sheet/cssm/components/header/index.module.css +25 -9
  22. package/bottom-sheet/cssm/components/header/inverted.module.css +45 -0
  23. package/bottom-sheet/cssm/default.module.css +47 -0
  24. package/bottom-sheet/cssm/index.module.css +21 -22
  25. package/bottom-sheet/cssm/inverted.module.css +47 -0
  26. package/bottom-sheet/cssm/types.d.ts +9 -2
  27. package/bottom-sheet/cssm/utils.d.ts +3 -1
  28. package/bottom-sheet/cssm/utils.js +5 -0
  29. package/bottom-sheet/cssm/vars.css +7 -2
  30. package/bottom-sheet/default.css +48 -0
  31. package/bottom-sheet/esm/component.js +28 -18
  32. package/bottom-sheet/esm/components/footer/Component.d.ts +5 -0
  33. package/bottom-sheet/esm/components/footer/Component.js +14 -5
  34. package/bottom-sheet/esm/components/footer/default.css +45 -0
  35. package/bottom-sheet/esm/components/footer/index.css +9 -78
  36. package/bottom-sheet/esm/components/footer/inverted.css +45 -0
  37. package/bottom-sheet/esm/components/header/Component.d.ts +3 -0
  38. package/bottom-sheet/esm/components/header/Component.js +18 -7
  39. package/bottom-sheet/esm/components/header/default.css +46 -0
  40. package/bottom-sheet/esm/components/header/index.css +23 -9
  41. package/bottom-sheet/esm/components/header/inverted.css +46 -0
  42. package/bottom-sheet/esm/default.css +48 -0
  43. package/bottom-sheet/esm/index.css +21 -22
  44. package/bottom-sheet/esm/inverted.css +48 -0
  45. package/bottom-sheet/esm/types.d.ts +9 -2
  46. package/bottom-sheet/esm/utils.d.ts +3 -1
  47. package/bottom-sheet/esm/utils.js +5 -1
  48. package/bottom-sheet/index.css +21 -22
  49. package/bottom-sheet/inverted.css +48 -0
  50. package/bottom-sheet/modern/component.js +24 -13
  51. package/bottom-sheet/modern/components/footer/Component.d.ts +5 -0
  52. package/bottom-sheet/modern/components/footer/Component.js +13 -4
  53. package/bottom-sheet/modern/components/footer/default.css +45 -0
  54. package/bottom-sheet/modern/components/footer/index.css +9 -78
  55. package/bottom-sheet/modern/components/footer/inverted.css +45 -0
  56. package/bottom-sheet/modern/components/header/Component.d.ts +3 -0
  57. package/bottom-sheet/modern/components/header/Component.js +17 -6
  58. package/bottom-sheet/modern/components/header/default.css +46 -0
  59. package/bottom-sheet/modern/components/header/index.css +23 -9
  60. package/bottom-sheet/modern/components/header/inverted.css +46 -0
  61. package/bottom-sheet/modern/default.css +48 -0
  62. package/bottom-sheet/modern/index.css +21 -22
  63. package/bottom-sheet/modern/inverted.css +48 -0
  64. package/bottom-sheet/modern/types.d.ts +9 -2
  65. package/bottom-sheet/modern/utils.d.ts +3 -1
  66. package/bottom-sheet/modern/utils.js +2 -1
  67. package/bottom-sheet/moderncssm/component.js +24 -13
  68. package/bottom-sheet/moderncssm/components/footer/Component.d.ts +5 -0
  69. package/bottom-sheet/moderncssm/components/footer/Component.js +8 -3
  70. package/bottom-sheet/moderncssm/components/footer/default.module.css +22 -0
  71. package/bottom-sheet/moderncssm/components/footer/index.module.css +7 -26
  72. package/bottom-sheet/moderncssm/components/footer/inverted.module.css +22 -0
  73. package/bottom-sheet/moderncssm/components/header/Component.d.ts +3 -0
  74. package/bottom-sheet/moderncssm/components/header/Component.js +12 -5
  75. package/bottom-sheet/moderncssm/components/header/default.module.css +26 -0
  76. package/bottom-sheet/moderncssm/components/header/index.module.css +27 -8
  77. package/bottom-sheet/moderncssm/components/header/inverted.module.css +26 -0
  78. package/bottom-sheet/moderncssm/default.module.css +27 -0
  79. package/bottom-sheet/moderncssm/index.js +6 -0
  80. package/bottom-sheet/moderncssm/index.module.css +8 -6
  81. package/bottom-sheet/moderncssm/inverted.module.css +27 -0
  82. package/bottom-sheet/moderncssm/types.d.ts +9 -2
  83. package/bottom-sheet/moderncssm/utils.d.ts +3 -1
  84. package/bottom-sheet/moderncssm/utils.js +2 -1
  85. package/bottom-sheet/moderncssm/vars.css +7 -2
  86. package/bottom-sheet/types.d.ts +9 -2
  87. package/bottom-sheet/utils.d.ts +3 -1
  88. package/bottom-sheet/utils.js +5 -0
  89. package/calendar/components/calendar-mobile/Component.js +1 -1
  90. package/calendar/components/calendar-mobile/calendarMonthOnlyView.js +1 -1
  91. package/calendar/components/calendar-mobile/index.d.ts +1 -1
  92. package/calendar/components/calendar-mobile/index.js +1 -1
  93. package/calendar/esm/Component.responsive.js +1 -1
  94. package/calendar/esm/components/calendar-mobile/Component.js +1 -1
  95. package/calendar/esm/components/calendar-mobile/calendarMonthOnlyView.js +1 -1
  96. package/calendar/esm/components/calendar-mobile/index.d.ts +1 -1
  97. package/calendar/esm/components/calendar-mobile/index.js +1 -1
  98. package/calendar/esm/index.js +1 -1
  99. package/calendar/esm/mobile/index.js +1 -1
  100. package/calendar/mobile/index.js +1 -1
  101. package/calendar/modern/Component.responsive.js +1 -1
  102. package/calendar/modern/components/calendar-mobile/Component.js +1 -1
  103. package/calendar/modern/components/calendar-mobile/calendarMonthOnlyView.js +1 -1
  104. package/calendar/modern/components/calendar-mobile/index.d.ts +1 -1
  105. package/calendar/modern/components/calendar-mobile/index.js +1 -1
  106. package/calendar/modern/index.js +1 -1
  107. package/calendar/modern/mobile/index.js +1 -1
  108. package/calendar-input/cssm/components/calendar-input/Component.d.ts +1 -1
  109. package/cdn-icon/cssm/hooks/use-icon.js +1 -1
  110. package/cdn-icon/esm/hooks/use-icon.js +1 -1
  111. package/cdn-icon/hooks/use-icon.js +1 -1
  112. package/cdn-icon/modern/hooks/use-icon.js +1 -1
  113. package/cdn-icon/moderncssm/hooks/use-icon.js +1 -1
  114. package/collapse/Component.d.ts +5 -0
  115. package/collapse/Component.js +3 -3
  116. package/collapse/cssm/Component.d.ts +5 -0
  117. package/collapse/cssm/Component.js +3 -3
  118. package/collapse/esm/Component.d.ts +5 -0
  119. package/collapse/esm/Component.js +3 -3
  120. package/collapse/modern/Component.d.ts +5 -0
  121. package/collapse/modern/Component.js +2 -2
  122. package/collapse/moderncssm/Component.d.ts +5 -0
  123. package/collapse/moderncssm/Component.js +2 -2
  124. package/confirmation/components/screens/initial/component.js +1 -1
  125. package/confirmation/components/screens/initial/countdown-section.js +1 -1
  126. package/confirmation/esm/component.responsive.js +1 -1
  127. package/confirmation/esm/components/base-confirmation/component.js +1 -1
  128. package/confirmation/esm/components/base-confirmation/index.js +1 -1
  129. package/confirmation/esm/components/index.js +1 -1
  130. package/confirmation/esm/components/screens/index.js +1 -1
  131. package/confirmation/esm/components/screens/initial/component.js +1 -1
  132. package/confirmation/esm/components/screens/initial/countdown-section.js +1 -1
  133. package/confirmation/esm/components/screens/initial/index.js +1 -1
  134. package/confirmation/esm/desktop/component.desktop.js +1 -1
  135. package/confirmation/esm/desktop/index.js +1 -1
  136. package/confirmation/esm/index.js +1 -1
  137. package/confirmation/esm/mobile/component.mobile.js +1 -1
  138. package/confirmation/esm/mobile/index.js +1 -1
  139. package/confirmation/esm/shared/index.js +1 -1
  140. package/confirmation/modern/component.responsive.js +1 -1
  141. package/confirmation/modern/components/base-confirmation/component.js +1 -1
  142. package/confirmation/modern/components/base-confirmation/index.js +1 -1
  143. package/confirmation/modern/components/index.js +1 -1
  144. package/confirmation/modern/components/screens/index.js +1 -1
  145. package/confirmation/modern/components/screens/initial/component.js +1 -1
  146. package/confirmation/modern/components/screens/initial/countdown-section.js +1 -1
  147. package/confirmation/modern/components/screens/initial/index.js +1 -1
  148. package/confirmation/modern/desktop/component.desktop.js +1 -1
  149. package/confirmation/modern/desktop/index.js +1 -1
  150. package/confirmation/modern/index.js +1 -1
  151. package/confirmation/modern/mobile/component.mobile.js +1 -1
  152. package/confirmation/modern/mobile/index.js +1 -1
  153. package/confirmation/modern/shared/index.js +1 -1
  154. package/file-upload-item/components/actions-control/actions.js +1 -1
  155. package/file-upload-item/components/actions-control/components/delete-button/delete-button.js +1 -1
  156. package/file-upload-item/components/actions-control/components/download-button/download-button.js +1 -1
  157. package/file-upload-item/components/actions-control/components/restore-button/restore-button.js +1 -1
  158. package/file-upload-item/esm/Component.js +1 -1
  159. package/file-upload-item/esm/components/actions-control/actions.js +1 -1
  160. package/file-upload-item/esm/components/actions-control/components/delete-button/delete-button.js +1 -1
  161. package/file-upload-item/esm/components/actions-control/components/delete-button/index.js +1 -1
  162. package/file-upload-item/esm/components/actions-control/components/download-button/download-button.js +1 -1
  163. package/file-upload-item/esm/components/actions-control/components/download-button/index.js +1 -1
  164. package/file-upload-item/esm/components/actions-control/components/restore-button/index.js +1 -1
  165. package/file-upload-item/esm/components/actions-control/components/restore-button/restore-button.js +1 -1
  166. package/file-upload-item/esm/components/actions-control/index.js +1 -1
  167. package/file-upload-item/esm/index.js +1 -1
  168. package/file-upload-item/modern/Component.js +1 -1
  169. package/file-upload-item/modern/components/actions-control/actions.js +1 -1
  170. package/file-upload-item/modern/components/actions-control/components/delete-button/delete-button.js +1 -1
  171. package/file-upload-item/modern/components/actions-control/components/delete-button/index.js +1 -1
  172. package/file-upload-item/modern/components/actions-control/components/download-button/download-button.js +1 -1
  173. package/file-upload-item/modern/components/actions-control/components/download-button/index.js +1 -1
  174. package/file-upload-item/modern/components/actions-control/components/restore-button/index.js +1 -1
  175. package/file-upload-item/modern/components/actions-control/components/restore-button/restore-button.js +1 -1
  176. package/file-upload-item/modern/components/actions-control/index.js +1 -1
  177. package/file-upload-item/modern/index.js +1 -1
  178. package/gallery/components/image-viewer/component.js +1 -1
  179. package/gallery/components/image-viewer/hooks.js +1 -1
  180. package/gallery/components/image-viewer/single.js +1 -1
  181. package/gallery/components/image-viewer/slide.js +1 -1
  182. package/gallery/esm/Component.js +1 -1
  183. package/gallery/esm/components/image-viewer/component.js +1 -1
  184. package/gallery/esm/components/image-viewer/hooks.js +1 -1
  185. package/gallery/esm/components/image-viewer/index.js +1 -1
  186. package/gallery/esm/components/image-viewer/single.js +1 -1
  187. package/gallery/esm/components/image-viewer/slide.js +1 -1
  188. package/gallery/esm/components/index.js +1 -1
  189. package/gallery/esm/index.js +1 -1
  190. package/gallery/modern/Component.js +1 -1
  191. package/gallery/modern/components/image-viewer/component.js +1 -1
  192. package/gallery/modern/components/image-viewer/hooks.js +1 -1
  193. package/gallery/modern/components/image-viewer/index.js +1 -1
  194. package/gallery/modern/components/image-viewer/single.js +1 -1
  195. package/gallery/modern/components/image-viewer/slide.js +1 -1
  196. package/gallery/modern/components/index.js +1 -1
  197. package/gallery/modern/index.js +1 -1
  198. package/input-autocomplete/cssm/mobile/Component.mobile.js +3 -1
  199. package/input-autocomplete/esm/mobile/Component.mobile.js +3 -1
  200. package/input-autocomplete/mobile/Component.mobile.js +3 -1
  201. package/input-autocomplete/modern/mobile/Component.mobile.js +7 -1
  202. package/input-autocomplete/moderncssm/mobile/Component.mobile.js +7 -1
  203. package/international-phone-input/components/country-select/Component.js +1 -0
  204. package/international-phone-input/cssm/components/country-select/Component.js +1 -0
  205. package/international-phone-input/cssm/typings-d515b24c.d.ts +31 -1
  206. package/international-phone-input/esm/components/country-select/Component.js +1 -0
  207. package/international-phone-input/esm/typings-d515b24c.d.ts +31 -1
  208. package/international-phone-input/modern/components/country-select/Component.js +1 -0
  209. package/international-phone-input/modern/typings-d515b24c.d.ts +31 -1
  210. package/international-phone-input/moderncssm/components/country-select/Component.js +1 -0
  211. package/international-phone-input/moderncssm/typings-d515b24c.d.ts +31 -1
  212. package/international-phone-input/typings-d515b24c.d.ts +594 -11
  213. package/list/Component.js +1 -1
  214. package/list/components/item/Component.js +1 -1
  215. package/list/components/item/index.d.ts +1 -1
  216. package/list/components/item/index.js +1 -1
  217. package/list/esm/Component.js +1 -1
  218. package/list/esm/components/item/Component.js +1 -1
  219. package/list/esm/components/item/index.d.ts +1 -1
  220. package/list/esm/components/item/index.js +1 -1
  221. package/list/esm/index.js +1 -1
  222. package/list/index.js +1 -1
  223. package/list/modern/Component.js +1 -1
  224. package/list/modern/components/item/Component.js +1 -1
  225. package/list/modern/components/item/index.d.ts +1 -1
  226. package/list/modern/components/item/index.js +1 -1
  227. package/list/modern/index.js +1 -1
  228. package/modal/components/controls/Component.js +1 -1
  229. package/modal/components/footer/Component.js +1 -1
  230. package/modal/esm/Component.responsive.js +1 -1
  231. package/modal/esm/components/controls/Component.js +1 -1
  232. package/modal/esm/components/controls/index.js +1 -1
  233. package/modal/esm/components/footer/Component.js +1 -1
  234. package/modal/esm/desktop/Component.desktop.js +1 -1
  235. package/modal/esm/desktop/index.js +1 -1
  236. package/modal/esm/index.js +1 -1
  237. package/modal/esm/mobile/Component.mobile.js +1 -1
  238. package/modal/esm/mobile/index.js +1 -1
  239. package/modal/modern/Component.responsive.js +1 -1
  240. package/modal/modern/components/controls/Component.js +1 -1
  241. package/modal/modern/components/controls/index.js +1 -1
  242. package/modal/modern/components/footer/Component.js +1 -1
  243. package/modal/modern/desktop/Component.desktop.js +1 -1
  244. package/modal/modern/desktop/index.js +1 -1
  245. package/modal/modern/index.js +1 -1
  246. package/modal/modern/mobile/Component.mobile.js +1 -1
  247. package/modal/modern/mobile/index.js +1 -1
  248. package/navigation-bar-private/Component.js +6 -6
  249. package/navigation-bar-private/components/back-arrow-addon/Component.d.ts +5 -0
  250. package/navigation-bar-private/components/back-arrow-addon/Component.js +14 -3
  251. package/navigation-bar-private/components/back-arrow-addon/default.css +75 -0
  252. package/navigation-bar-private/components/back-arrow-addon/index.css +4 -18
  253. package/navigation-bar-private/components/back-arrow-addon/inverted.css +77 -0
  254. package/navigation-bar-private/components/closer/default.css +2 -0
  255. package/navigation-bar-private/components/closer/inverted.css +2 -0
  256. package/navigation-bar-private/cssm/Component.js +6 -6
  257. package/navigation-bar-private/cssm/components/back-arrow-addon/Component.d.ts +5 -0
  258. package/navigation-bar-private/cssm/components/back-arrow-addon/Component.js +12 -3
  259. package/navigation-bar-private/cssm/components/back-arrow-addon/default.module.css +74 -0
  260. package/navigation-bar-private/cssm/components/back-arrow-addon/index.module.css +4 -18
  261. package/navigation-bar-private/cssm/components/back-arrow-addon/inverted.module.css +76 -0
  262. package/navigation-bar-private/cssm/components/closer/default.module.css +2 -0
  263. package/navigation-bar-private/cssm/components/closer/inverted.module.css +2 -0
  264. package/navigation-bar-private/cssm/types.d.ts +10 -1
  265. package/navigation-bar-private/cssm/vars.css +2 -0
  266. package/navigation-bar-private/esm/Component.js +6 -6
  267. package/navigation-bar-private/esm/components/back-arrow-addon/Component.d.ts +5 -0
  268. package/navigation-bar-private/esm/components/back-arrow-addon/Component.js +14 -3
  269. package/navigation-bar-private/esm/components/back-arrow-addon/default.css +75 -0
  270. package/navigation-bar-private/esm/components/back-arrow-addon/index.css +4 -18
  271. package/navigation-bar-private/esm/components/back-arrow-addon/inverted.css +77 -0
  272. package/navigation-bar-private/esm/components/closer/default.css +2 -0
  273. package/navigation-bar-private/esm/components/closer/inverted.css +2 -0
  274. package/navigation-bar-private/esm/types.d.ts +10 -1
  275. package/navigation-bar-private/modern/Component.js +4 -4
  276. package/navigation-bar-private/modern/components/back-arrow-addon/Component.d.ts +5 -0
  277. package/navigation-bar-private/modern/components/back-arrow-addon/Component.js +14 -3
  278. package/navigation-bar-private/modern/components/back-arrow-addon/default.css +75 -0
  279. package/navigation-bar-private/modern/components/back-arrow-addon/index.css +4 -18
  280. package/navigation-bar-private/modern/components/back-arrow-addon/inverted.css +77 -0
  281. package/navigation-bar-private/modern/components/closer/default.css +2 -0
  282. package/navigation-bar-private/modern/components/closer/inverted.css +2 -0
  283. package/navigation-bar-private/modern/types.d.ts +10 -1
  284. package/navigation-bar-private/moderncssm/Component.js +6 -4
  285. package/navigation-bar-private/moderncssm/components/back-arrow-addon/Component.d.ts +5 -0
  286. package/navigation-bar-private/moderncssm/components/back-arrow-addon/Component.js +10 -3
  287. package/navigation-bar-private/moderncssm/components/back-arrow-addon/default.module.css +35 -0
  288. package/navigation-bar-private/moderncssm/components/back-arrow-addon/index.js +2 -0
  289. package/navigation-bar-private/moderncssm/components/back-arrow-addon/index.module.css +2 -16
  290. package/navigation-bar-private/moderncssm/components/back-arrow-addon/inverted.module.css +37 -0
  291. package/navigation-bar-private/moderncssm/components/closer/default.module.css +2 -0
  292. package/navigation-bar-private/moderncssm/components/closer/inverted.module.css +2 -0
  293. package/navigation-bar-private/moderncssm/index.js +2 -0
  294. package/navigation-bar-private/moderncssm/shared/index.js +2 -0
  295. package/navigation-bar-private/moderncssm/types.d.ts +10 -1
  296. package/navigation-bar-private/moderncssm/vars.css +2 -0
  297. package/navigation-bar-private/types.d.ts +10 -1
  298. package/package.json +1 -1
  299. package/picker-button/Component-c44170fe.d.ts +1 -1
  300. package/picker-button/cssm/mobile/Component.mobile.js +1 -1
  301. package/picker-button/cssm/typings-d515b24c.d.ts +31 -1
  302. package/picker-button/esm/mobile/Component.mobile.js +1 -1
  303. package/picker-button/esm/typings-d515b24c.d.ts +31 -1
  304. package/picker-button/mobile/Component.mobile.js +1 -1
  305. package/picker-button/modern/mobile/Component.mobile.js +1 -0
  306. package/picker-button/modern/typings-d515b24c.d.ts +31 -1
  307. package/picker-button/moderncssm/mobile/Component.mobile.js +1 -0
  308. package/picker-button/moderncssm/typings-d515b24c.d.ts +31 -1
  309. package/picker-button/transformSize-ebda875c.d.ts +1 -1
  310. package/picker-button/typings-d515b24c.d.ts +31 -1
  311. package/pure-cell/component.js +1 -1
  312. package/pure-cell/components/addon/component.js +1 -1
  313. package/pure-cell/components/addon/index.d.ts +1 -1
  314. package/pure-cell/components/addon/index.js +1 -1
  315. package/pure-cell/components/amount/component.js +1 -1
  316. package/pure-cell/components/amount/index.d.ts +1 -1
  317. package/pure-cell/components/amount/index.js +1 -1
  318. package/pure-cell/components/amount-title/component.js +1 -1
  319. package/pure-cell/components/amount-title/index.d.ts +1 -1
  320. package/pure-cell/components/amount-title/index.js +1 -1
  321. package/pure-cell/components/category/component.js +1 -1
  322. package/pure-cell/components/category/index.d.ts +1 -1
  323. package/pure-cell/components/category/index.js +1 -1
  324. package/pure-cell/components/content/component.js +1 -1
  325. package/pure-cell/components/content/index.d.ts +1 -1
  326. package/pure-cell/components/content/index.js +1 -1
  327. package/pure-cell/components/footer/component.js +1 -1
  328. package/pure-cell/components/footer/index.d.ts +1 -1
  329. package/pure-cell/components/footer/index.js +1 -1
  330. package/pure-cell/components/footer-button/component.js +1 -1
  331. package/pure-cell/components/footer-button/index.d.ts +1 -1
  332. package/pure-cell/components/footer-button/index.js +1 -1
  333. package/pure-cell/components/footer-text/component.js +1 -1
  334. package/pure-cell/components/footer-text/index.d.ts +1 -1
  335. package/pure-cell/components/footer-text/index.js +1 -1
  336. package/pure-cell/components/graphics/component.js +1 -1
  337. package/pure-cell/components/graphics/index.d.ts +1 -1
  338. package/pure-cell/components/graphics/index.js +1 -1
  339. package/pure-cell/components/main/component.js +1 -1
  340. package/pure-cell/components/main/index.d.ts +1 -1
  341. package/pure-cell/components/main/index.js +1 -1
  342. package/pure-cell/components/text/component.js +1 -1
  343. package/pure-cell/components/text/index.d.ts +1 -1
  344. package/pure-cell/components/text/index.js +1 -1
  345. package/pure-cell/esm/component.js +1 -1
  346. package/pure-cell/esm/components/addon/component.js +1 -1
  347. package/pure-cell/esm/components/addon/index.d.ts +1 -1
  348. package/pure-cell/esm/components/addon/index.js +1 -1
  349. package/pure-cell/esm/components/amount/component.js +1 -1
  350. package/pure-cell/esm/components/amount/index.d.ts +1 -1
  351. package/pure-cell/esm/components/amount/index.js +1 -1
  352. package/pure-cell/esm/components/amount-title/component.js +1 -1
  353. package/pure-cell/esm/components/amount-title/index.d.ts +1 -1
  354. package/pure-cell/esm/components/amount-title/index.js +1 -1
  355. package/pure-cell/esm/components/category/component.js +1 -1
  356. package/pure-cell/esm/components/category/index.d.ts +1 -1
  357. package/pure-cell/esm/components/category/index.js +1 -1
  358. package/pure-cell/esm/components/content/component.js +1 -1
  359. package/pure-cell/esm/components/content/index.d.ts +1 -1
  360. package/pure-cell/esm/components/content/index.js +1 -1
  361. package/pure-cell/esm/components/footer/component.js +1 -1
  362. package/pure-cell/esm/components/footer/index.d.ts +1 -1
  363. package/pure-cell/esm/components/footer/index.js +1 -1
  364. package/pure-cell/esm/components/footer-button/component.js +1 -1
  365. package/pure-cell/esm/components/footer-button/index.d.ts +1 -1
  366. package/pure-cell/esm/components/footer-button/index.js +1 -1
  367. package/pure-cell/esm/components/footer-text/component.js +1 -1
  368. package/pure-cell/esm/components/footer-text/index.d.ts +1 -1
  369. package/pure-cell/esm/components/footer-text/index.js +1 -1
  370. package/pure-cell/esm/components/graphics/component.js +1 -1
  371. package/pure-cell/esm/components/graphics/index.d.ts +1 -1
  372. package/pure-cell/esm/components/graphics/index.js +1 -1
  373. package/pure-cell/esm/components/main/component.js +1 -1
  374. package/pure-cell/esm/components/main/index.d.ts +1 -1
  375. package/pure-cell/esm/components/main/index.js +1 -1
  376. package/pure-cell/esm/components/text/component.js +1 -1
  377. package/pure-cell/esm/components/text/index.d.ts +1 -1
  378. package/pure-cell/esm/components/text/index.js +1 -1
  379. package/pure-cell/esm/index.js +1 -1
  380. package/pure-cell/index.js +1 -1
  381. package/pure-cell/modern/component.js +1 -1
  382. package/pure-cell/modern/components/addon/component.js +1 -1
  383. package/pure-cell/modern/components/addon/index.d.ts +1 -1
  384. package/pure-cell/modern/components/addon/index.js +1 -1
  385. package/pure-cell/modern/components/amount/component.js +1 -1
  386. package/pure-cell/modern/components/amount/index.d.ts +1 -1
  387. package/pure-cell/modern/components/amount/index.js +1 -1
  388. package/pure-cell/modern/components/amount-title/component.js +1 -1
  389. package/pure-cell/modern/components/amount-title/index.d.ts +1 -1
  390. package/pure-cell/modern/components/amount-title/index.js +1 -1
  391. package/pure-cell/modern/components/category/component.js +1 -1
  392. package/pure-cell/modern/components/category/index.d.ts +1 -1
  393. package/pure-cell/modern/components/category/index.js +1 -1
  394. package/pure-cell/modern/components/content/component.js +1 -1
  395. package/pure-cell/modern/components/content/index.d.ts +1 -1
  396. package/pure-cell/modern/components/content/index.js +1 -1
  397. package/pure-cell/modern/components/footer/component.js +1 -1
  398. package/pure-cell/modern/components/footer/index.d.ts +1 -1
  399. package/pure-cell/modern/components/footer/index.js +1 -1
  400. package/pure-cell/modern/components/footer-button/component.js +1 -1
  401. package/pure-cell/modern/components/footer-button/index.d.ts +1 -1
  402. package/pure-cell/modern/components/footer-button/index.js +1 -1
  403. package/pure-cell/modern/components/footer-text/component.js +1 -1
  404. package/pure-cell/modern/components/footer-text/index.d.ts +1 -1
  405. package/pure-cell/modern/components/footer-text/index.js +1 -1
  406. package/pure-cell/modern/components/graphics/component.js +1 -1
  407. package/pure-cell/modern/components/graphics/index.d.ts +1 -1
  408. package/pure-cell/modern/components/graphics/index.js +1 -1
  409. package/pure-cell/modern/components/main/component.js +1 -1
  410. package/pure-cell/modern/components/main/index.d.ts +1 -1
  411. package/pure-cell/modern/components/main/index.js +1 -1
  412. package/pure-cell/modern/components/text/component.js +1 -1
  413. package/pure-cell/modern/components/text/index.d.ts +1 -1
  414. package/pure-cell/modern/components/text/index.js +1 -1
  415. package/pure-cell/modern/index.js +1 -1
  416. package/select/components/base-select/Component.js +2 -2
  417. package/select/components/base-select/components/list-desktop/list-popover-desktop.js +1 -1
  418. package/select/components/base-select/components/list-mobile/list-bottom-sheet-mobile.js +1 -1
  419. package/select/components/base-select/components/list-mobile/list-modal-mobile.js +1 -1
  420. package/select/cssm/components/base-select/components/list-desktop/helpers/get-list-popover-desktop-props.d.ts +1 -1
  421. package/select/cssm/mobile/Component.mobile.js +1 -1
  422. package/select/esm/Component.responsive.js +3 -3
  423. package/select/esm/components/base-select/Component.js +2 -2
  424. package/select/esm/components/base-select/components/list-desktop/list-popover-desktop.js +1 -1
  425. package/select/esm/components/base-select/components/list-mobile/list-bottom-sheet-mobile.js +1 -1
  426. package/select/esm/components/base-select/components/list-mobile/list-mobile.js +1 -1
  427. package/select/esm/components/base-select/components/list-mobile/list-modal-mobile.js +1 -1
  428. package/select/esm/components/base-select/index.js +2 -2
  429. package/select/esm/components/index.js +2 -2
  430. package/select/esm/desktop/Component.desktop.js +2 -2
  431. package/select/esm/desktop/index.js +2 -2
  432. package/select/esm/index.js +3 -3
  433. package/select/esm/mobile/Component.mobile.js +4 -4
  434. package/select/esm/mobile/Component.modal.mobile.js +3 -3
  435. package/select/esm/mobile/index.js +3 -3
  436. package/select/esm/presets/index.js +1 -1
  437. package/select/esm/presets/useSelectWithApply/hook.js +1 -1
  438. package/select/esm/presets/useSelectWithApply/options-list-with-apply/Component.js +1 -1
  439. package/select/esm/presets/useSelectWithApply/options-list-with-apply/index.d.ts +1 -1
  440. package/select/esm/presets/useSelectWithApply/options-list-with-apply/index.js +1 -1
  441. package/select/esm/shared/index.js +3 -3
  442. package/select/mobile/Component.mobile.js +2 -2
  443. package/select/modern/Component.responsive.js +3 -3
  444. package/select/modern/components/base-select/Component.js +2 -2
  445. package/select/modern/components/base-select/components/list-desktop/list-popover-desktop.js +1 -1
  446. package/select/modern/components/base-select/components/list-mobile/list-bottom-sheet-mobile.js +1 -1
  447. package/select/modern/components/base-select/components/list-mobile/list-mobile.js +1 -1
  448. package/select/modern/components/base-select/components/list-mobile/list-modal-mobile.js +1 -1
  449. package/select/modern/components/base-select/index.js +2 -2
  450. package/select/modern/components/index.js +2 -2
  451. package/select/modern/desktop/Component.desktop.js +2 -2
  452. package/select/modern/desktop/index.js +2 -2
  453. package/select/modern/index.js +3 -3
  454. package/select/modern/mobile/Component.mobile.js +4 -3
  455. package/select/modern/mobile/Component.modal.mobile.js +3 -3
  456. package/select/modern/mobile/index.js +3 -3
  457. package/select/modern/presets/index.js +1 -1
  458. package/select/modern/presets/useSelectWithApply/hook.js +1 -1
  459. package/select/modern/presets/useSelectWithApply/options-list-with-apply/Component.js +1 -1
  460. package/select/modern/presets/useSelectWithApply/options-list-with-apply/index.d.ts +1 -1
  461. package/select/modern/presets/useSelectWithApply/options-list-with-apply/index.js +1 -1
  462. package/select/modern/shared/index.js +3 -3
  463. package/select/moderncssm/mobile/Component.mobile.js +1 -0
  464. package/select/presets/index.js +1 -1
  465. package/select/presets/useSelectWithApply/hook.js +1 -1
  466. package/select/presets/useSelectWithApply/options-list-with-apply/Component.js +1 -1
  467. package/select/presets/useSelectWithApply/options-list-with-apply/index.d.ts +1 -1
  468. package/select/presets/useSelectWithApply/options-list-with-apply/index.js +1 -1
  469. package/select/shared/index.js +1 -1
  470. package/select-with-tags/components/base-select-with-tags/Component.js +1 -0
  471. package/select-with-tags/cssm/components/base-select-with-tags/Component.js +1 -0
  472. package/select-with-tags/esm/components/base-select-with-tags/Component.js +1 -0
  473. package/select-with-tags/modern/components/base-select-with-tags/Component.js +1 -0
  474. package/select-with-tags/moderncssm/components/base-select-with-tags/Component.js +1 -0
  475. package/side-panel/components/controls/Component.js +1 -1
  476. package/side-panel/components/footer/Component.js +1 -1
  477. package/side-panel/esm/Component.responsive.js +1 -1
  478. package/side-panel/esm/components/controls/Component.js +1 -1
  479. package/side-panel/esm/components/controls/index.js +1 -1
  480. package/side-panel/esm/components/footer/Component.desktop.js +1 -1
  481. package/side-panel/esm/components/footer/Component.js +1 -1
  482. package/side-panel/esm/components/footer/Component.mobile.js +1 -1
  483. package/side-panel/esm/desktop/Component.desktop.js +1 -1
  484. package/side-panel/esm/desktop/index.js +1 -1
  485. package/side-panel/esm/index.js +1 -1
  486. package/side-panel/esm/mobile/Component.mobile.js +1 -1
  487. package/side-panel/esm/mobile/index.js +1 -1
  488. package/side-panel/modern/Component.responsive.js +1 -1
  489. package/side-panel/modern/components/controls/Component.js +1 -1
  490. package/side-panel/modern/components/controls/index.js +1 -1
  491. package/side-panel/modern/components/footer/Component.desktop.js +1 -1
  492. package/side-panel/modern/components/footer/Component.js +1 -1
  493. package/side-panel/modern/components/footer/Component.mobile.js +1 -1
  494. package/side-panel/modern/desktop/Component.desktop.js +1 -1
  495. package/side-panel/modern/desktop/index.js +1 -1
  496. package/side-panel/modern/index.js +1 -1
  497. package/side-panel/modern/mobile/Component.mobile.js +1 -1
  498. package/side-panel/modern/mobile/index.js +1 -1
  499. package/tab-bar/cssm/index.module.css +1 -7
  500. package/tab-bar/esm/index.css +1 -7
  501. package/tab-bar/index.css +1 -7
  502. package/tab-bar/modern/index.css +1 -7
  503. package/tab-bar/moderncssm/index.module.css +4 -8
  504. package/tabs/components/primary-tablist/Component.collapsible.js +1 -1
  505. package/tabs/components/primary-tablist/Component.desktop.js +1 -1
  506. package/tabs/components/primary-tablist/Component.mobile.js +1 -1
  507. package/tabs/components/secondary-tablist/Component.desktop.js +1 -1
  508. package/tabs/components/secondary-tablist/Component.mobile.js +1 -1
  509. package/tabs/esm/collapsible/index.js +1 -1
  510. package/tabs/esm/components/primary-tablist/Component.collapsible.js +1 -1
  511. package/tabs/esm/components/primary-tablist/Component.desktop.js +1 -1
  512. package/tabs/esm/components/primary-tablist/Component.mobile.js +1 -1
  513. package/tabs/esm/components/primary-tablist/Component.responsive.js +1 -1
  514. package/tabs/esm/components/secondary-tablist/Component.desktop.js +1 -1
  515. package/tabs/esm/components/secondary-tablist/Component.mobile.js +1 -1
  516. package/tabs/esm/components/secondary-tablist/Component.responsive.js +1 -1
  517. package/tabs/esm/components/tabs/Component.collapsible.js +1 -1
  518. package/tabs/esm/components/tabs/Component.desktop.js +2 -2
  519. package/tabs/esm/components/tabs/Component.mobile.js +2 -2
  520. package/tabs/esm/components/tabs/Component.responsive.js +2 -2
  521. package/tabs/esm/desktop/index.js +2 -2
  522. package/tabs/esm/index.js +2 -2
  523. package/tabs/esm/mobile/index.js +2 -2
  524. package/tabs/modern/collapsible/index.js +1 -1
  525. package/tabs/modern/components/primary-tablist/Component.collapsible.js +1 -1
  526. package/tabs/modern/components/primary-tablist/Component.desktop.js +1 -1
  527. package/tabs/modern/components/primary-tablist/Component.mobile.js +1 -1
  528. package/tabs/modern/components/primary-tablist/Component.responsive.js +1 -1
  529. package/tabs/modern/components/secondary-tablist/Component.desktop.js +1 -1
  530. package/tabs/modern/components/secondary-tablist/Component.mobile.js +1 -1
  531. package/tabs/modern/components/secondary-tablist/Component.responsive.js +1 -1
  532. package/tabs/modern/components/tabs/Component.collapsible.js +1 -1
  533. package/tabs/modern/components/tabs/Component.desktop.js +2 -2
  534. package/tabs/modern/components/tabs/Component.mobile.js +2 -2
  535. package/tabs/modern/components/tabs/Component.responsive.js +2 -2
  536. package/tabs/modern/desktop/index.js +2 -2
  537. package/tabs/modern/index.js +2 -2
  538. package/tabs/modern/mobile/index.js +2 -2
  539. package/themes/bottom-sheet/click.css +0 -3
  540. package/themes/click.css +0 -3
  541. package/themes/click.d.ts +1 -1
  542. package/themes/click.js +1 -1
  543. package/themes/compiled/mobile-dark-bluetint.css +440 -421
  544. package/themes/compiled/mobile-dark-bluetint.d.ts +1 -1
  545. package/themes/compiled/mobile-dark-bluetint.js +1 -1
  546. package/themes/esm/click.d.ts +1 -1
  547. package/themes/esm/click.js +1 -1
  548. package/themes/esm/compiled/mobile-dark-bluetint.d.ts +1 -1
  549. package/themes/esm/compiled/mobile-dark-bluetint.js +1 -1
  550. package/themes/esm/intranet.d.ts +1 -1
  551. package/themes/esm/intranet.js +1 -1
  552. package/themes/esm/mobile.d.ts +1 -1
  553. package/themes/esm/mobile.js +1 -1
  554. package/themes/esm/site.d.ts +1 -1
  555. package/themes/esm/site.js +1 -1
  556. package/themes/intranet.css +0 -1
  557. package/themes/intranet.d.ts +1 -1
  558. package/themes/intranet.js +1 -1
  559. package/themes/mixins/bottom-sheet/click.css +0 -3
  560. package/themes/mixins/intranet.css +0 -2
  561. package/themes/mixins/mobile.css +0 -2
  562. package/themes/mixins/site.css +0 -2
  563. package/themes/mobile.css +0 -2
  564. package/themes/mobile.d.ts +1 -1
  565. package/themes/mobile.js +1 -1
  566. package/themes/modern/click.d.ts +1 -1
  567. package/themes/modern/click.js +0 -3
  568. package/themes/modern/compiled/mobile-dark-bluetint.d.ts +1 -1
  569. package/themes/modern/compiled/mobile-dark-bluetint.js +440 -421
  570. package/themes/modern/intranet.d.ts +1 -1
  571. package/themes/modern/intranet.js +0 -1
  572. package/themes/modern/mobile.d.ts +1 -1
  573. package/themes/modern/mobile.js +0 -2
  574. package/themes/modern/site.d.ts +1 -1
  575. package/themes/modern/site.js +0 -1
  576. package/themes/site.css +0 -1
  577. package/themes/site.d.ts +1 -1
  578. package/themes/site.js +1 -1
  579. package/tooltip/cssm/mobile/Component.mobile.js +1 -1
  580. package/tooltip/esm/mobile/Component.mobile.js +1 -1
  581. package/tooltip/mobile/Component.mobile.js +1 -1
  582. package/tooltip/modern/mobile/Component.mobile.js +1 -1
  583. package/tooltip/moderncssm/mobile/Component.mobile.js +1 -1
  584. package/typography/cssm/title/alfasans-index.module.css +10 -0
  585. package/typography/esm/component.js +2 -2
  586. package/typography/esm/index.js +2 -2
  587. package/typography/esm/text/component.js +1 -1
  588. package/typography/esm/text/index.js +1 -1
  589. package/typography/esm/title/component.js +1 -1
  590. package/typography/esm/title/index.js +2 -2
  591. package/typography/esm/title-mobile/component.js +2 -2
  592. package/typography/esm/title-mobile/index.js +2 -2
  593. package/typography/esm/title-responsive/component.js +2 -2
  594. package/typography/esm/title-responsive/index.js +2 -2
  595. package/typography/modern/component.js +2 -2
  596. package/typography/modern/index.js +2 -2
  597. package/typography/modern/text/component.js +1 -1
  598. package/typography/modern/text/index.js +1 -1
  599. package/typography/modern/title/component.js +1 -1
  600. package/typography/modern/title/index.js +2 -2
  601. package/typography/modern/title-mobile/component.js +2 -2
  602. package/typography/modern/title-mobile/index.js +2 -2
  603. package/typography/modern/title-responsive/component.js +2 -2
  604. package/typography/modern/title-responsive/index.js +2 -2
  605. package/typography/moderncssm/text/alfasans-index.module.css +0 -16
  606. package/typography/moderncssm/title/alfasans-index.module.css +10 -0
  607. package/typography/text/component.js +1 -1
  608. package/typography/title/component.d.ts +1 -1
  609. package/typography/title/component.js +1 -1
  610. package/typography/title/index.d.ts +1 -1
  611. package/typography/title/index.js +1 -1
  612. package/typography/title-mobile/component.d.ts +1 -1
  613. package/typography/title-mobile/component.js +1 -1
  614. package/typography/title-responsive/component.d.ts +1 -1
  615. package/underlay/Component.js +1 -1
  616. package/underlay/cssm/index.module.css +13 -13
  617. package/underlay/esm/Component.js +1 -1
  618. package/underlay/esm/index.css +13 -13
  619. package/underlay/esm/index.js +1 -1
  620. package/underlay/esm/utils/getBorderCorners.js +1 -1
  621. package/underlay/esm/utils/getClasses.js +1 -1
  622. package/underlay/index.css +13 -13
  623. package/underlay/modern/Component.js +1 -1
  624. package/underlay/modern/index.css +13 -13
  625. package/underlay/modern/index.js +1 -1
  626. package/underlay/modern/utils/getBorderCorners.js +1 -1
  627. package/underlay/modern/utils/getClasses.js +1 -1
  628. package/underlay/moderncssm/index.module.css +1 -1
  629. package/underlay/utils/getBorderCorners.js +1 -1
  630. package/underlay/utils/getClasses.js +1 -1
  631. package/universal-date-input/cssm/index-5712fce2.d.ts +14 -0
  632. package/universal-date-input/esm/index-5712fce2.d.ts +14 -0
  633. package/universal-date-input/index-5712fce2.d.ts +14 -0
  634. package/universal-date-input/modern/index-5712fce2.d.ts +14 -0
  635. package/universal-date-input/moderncssm/index-5712fce2.d.ts +14 -0
  636. package/universal-modal/components/header/desktop/Component.desktop.js +1 -1
  637. package/universal-modal/components/header/mobile/Component.mobile.js +1 -1
  638. package/universal-modal/esm/Component.responsive.d.ts +4 -4
  639. package/universal-modal/esm/Component.responsive.js +1 -1
  640. package/universal-modal/esm/components/header/desktop/Component.desktop.js +1 -1
  641. package/universal-modal/esm/components/header/index.js +1 -1
  642. package/universal-modal/esm/components/header/mobile/Component.mobile.js +1 -1
  643. package/universal-modal/esm/components/header/responsive/Component.responsive.js +1 -1
  644. package/universal-modal/esm/desktop/Component.desktop.d.ts +2 -2
  645. package/universal-modal/esm/desktop/Component.desktop.js +1 -1
  646. package/universal-modal/esm/desktop/components/center-modal/center-modal.d.ts +1 -1
  647. package/universal-modal/esm/desktop/components/side-modal/side-modal.d.ts +1 -1
  648. package/universal-modal/esm/desktop/index.js +1 -1
  649. package/universal-modal/esm/index.js +1 -1
  650. package/universal-modal/esm/mobile/Component.mobile.d.ts +2 -2
  651. package/universal-modal/esm/mobile/Component.mobile.js +1 -1
  652. package/universal-modal/esm/mobile/index.js +1 -1
  653. package/universal-modal/modern/Component.responsive.js +1 -1
  654. package/universal-modal/modern/components/header/desktop/Component.desktop.js +1 -1
  655. package/universal-modal/modern/components/header/index.js +1 -1
  656. package/universal-modal/modern/components/header/mobile/Component.mobile.js +1 -1
  657. package/universal-modal/modern/components/header/responsive/Component.responsive.js +1 -1
  658. package/universal-modal/modern/desktop/Component.desktop.js +1 -1
  659. package/universal-modal/modern/desktop/index.js +1 -1
  660. package/universal-modal/modern/index.js +1 -1
  661. package/universal-modal/modern/mobile/Component.mobile.js +1 -1
  662. package/universal-modal/modern/mobile/index.js +1 -1
  663. package/vars/mixins.css +1 -1
  664. package/international-phone-input/index-235f6347.d.ts +0 -277
  665. package/international-phone-input/types-464d40a4.d.ts +0 -293
  666. package/themes/bottom-sheet/intranet.css +0 -3
  667. package/themes/bottom-sheet/mobile.css +0 -4
  668. package/themes/bottom-sheet/site.css +0 -3
  669. package/themes/mixins/bottom-sheet/intranet.css +0 -3
  670. package/themes/mixins/bottom-sheet/mobile.css +0 -4
  671. package/themes/mixins/bottom-sheet/site.css +0 -3
  672. /package/calendar/{calendarMonthOnlyView-9387df6a.d.ts → calendarMonthOnlyView-ae3554d3.d.ts} +0 -0
  673. /package/calendar/{calendarMonthOnlyView-9387df6a.js → calendarMonthOnlyView-ae3554d3.js} +0 -0
  674. /package/calendar/esm/{calendarMonthOnlyView-8c223aba.d.ts → calendarMonthOnlyView-57744d42.d.ts} +0 -0
  675. /package/calendar/esm/{calendarMonthOnlyView-8c223aba.js → calendarMonthOnlyView-57744d42.js} +0 -0
  676. /package/calendar/modern/{calendarMonthOnlyView-ab23a98d.d.ts → calendarMonthOnlyView-acdad43b.d.ts} +0 -0
  677. /package/calendar/modern/{calendarMonthOnlyView-ab23a98d.js → calendarMonthOnlyView-acdad43b.js} +0 -0
  678. /package/confirmation/{countdown-section-651b0e6c.d.ts → countdown-section-8e5606d8.d.ts} +0 -0
  679. /package/confirmation/{countdown-section-651b0e6c.js → countdown-section-8e5606d8.js} +0 -0
  680. /package/confirmation/esm/{countdown-section-1776b60e.d.ts → countdown-section-f1f836d4.d.ts} +0 -0
  681. /package/confirmation/esm/{countdown-section-1776b60e.js → countdown-section-f1f836d4.js} +0 -0
  682. /package/confirmation/modern/{countdown-section-75ee45f6.d.ts → countdown-section-81fc2619.d.ts} +0 -0
  683. /package/confirmation/modern/{countdown-section-75ee45f6.js → countdown-section-81fc2619.js} +0 -0
  684. /package/file-upload-item/{actions-control.module-a8d00632.js → actions-control.module-89fafdd1.js} +0 -0
  685. /package/file-upload-item/esm/{actions-control.module-86185915.js → actions-control.module-6d46bee9.js} +0 -0
  686. /package/file-upload-item/modern/{actions-control.module-b571dbe3.js → actions-control.module-f3f65872.js} +0 -0
  687. /package/gallery/esm/{hooks-0e7e2122.d.ts → hooks-e6ff26c2.d.ts} +0 -0
  688. /package/gallery/esm/{hooks-0e7e2122.js → hooks-e6ff26c2.js} +0 -0
  689. /package/gallery/{hooks-a9361672.d.ts → hooks-13137381.d.ts} +0 -0
  690. /package/gallery/{hooks-a9361672.js → hooks-13137381.js} +0 -0
  691. /package/gallery/modern/{hooks-7188b4af.d.ts → hooks-ce6f3214.d.ts} +0 -0
  692. /package/gallery/modern/{hooks-7188b4af.js → hooks-ce6f3214.js} +0 -0
  693. /package/list/{Component-c467565e.d.ts → Component-d8e8e561.d.ts} +0 -0
  694. /package/list/{Component-c467565e.js → Component-d8e8e561.js} +0 -0
  695. /package/list/esm/{Component-f356b84f.d.ts → Component-798079a1.d.ts} +0 -0
  696. /package/list/esm/{Component-f356b84f.js → Component-798079a1.js} +0 -0
  697. /package/list/modern/{Component-8b757227.d.ts → Component-62f5c191.d.ts} +0 -0
  698. /package/list/modern/{Component-8b757227.js → Component-62f5c191.js} +0 -0
  699. /package/modal/esm/{layout.module-865d13fc.js → layout.module-451a6c6e.js} +0 -0
  700. /package/modal/{layout.module-6314c4f6.js → layout.module-9106d1aa.js} +0 -0
  701. /package/modal/modern/{layout.module-e3bafb3b.js → layout.module-7b011b62.js} +0 -0
  702. /package/pure-cell/{component-3cca70a8.d.ts → component-4ce0344f.d.ts} +0 -0
  703. /package/pure-cell/{component-3cca70a8.js → component-4ce0344f.js} +0 -0
  704. /package/pure-cell/esm/{component-bd09c34c.d.ts → component-3be0ed17.d.ts} +0 -0
  705. /package/pure-cell/esm/{component-bd09c34c.js → component-3be0ed17.js} +0 -0
  706. /package/pure-cell/modern/{component-3170301e.d.ts → component-7ee1b6f6.d.ts} +0 -0
  707. /package/pure-cell/modern/{component-3170301e.js → component-7ee1b6f6.js} +0 -0
  708. /package/select/esm/{hook-ead48ce0.d.ts → hook-ec604dd8.d.ts} +0 -0
  709. /package/select/esm/{hook-ead48ce0.js → hook-ec604dd8.js} +0 -0
  710. /package/select/esm/{list-popover-desktop-dfbee153.d.ts → list-popover-desktop-09250785.d.ts} +0 -0
  711. /package/select/esm/{list-popover-desktop-dfbee153.js → list-popover-desktop-09250785.js} +0 -0
  712. /package/select/esm/{mobile.module-82d5a12a.js → mobile.module-5186258d.js} +0 -0
  713. /package/select/{hook-378136f7.d.ts → hook-009721bc.d.ts} +0 -0
  714. /package/select/{hook-378136f7.js → hook-009721bc.js} +0 -0
  715. /package/select/{list-popover-desktop-40ad7c9e.d.ts → list-popover-desktop-0dbaa593.d.ts} +0 -0
  716. /package/select/{list-popover-desktop-40ad7c9e.js → list-popover-desktop-0dbaa593.js} +0 -0
  717. /package/select/{mobile.module-325bde99.js → mobile.module-c6844b03.js} +0 -0
  718. /package/select/modern/{hook-3dd3f16d.d.ts → hook-626d9e78.d.ts} +0 -0
  719. /package/select/modern/{hook-3dd3f16d.js → hook-626d9e78.js} +0 -0
  720. /package/select/modern/{list-popover-desktop-c77777c8.d.ts → list-popover-desktop-b8b8dfb0.d.ts} +0 -0
  721. /package/select/modern/{list-popover-desktop-c77777c8.js → list-popover-desktop-b8b8dfb0.js} +0 -0
  722. /package/select/modern/{mobile.module-ffc9c3a5.js → mobile.module-1be9c79e.js} +0 -0
  723. /package/side-panel/esm/{layout.module-1ad954ab.js → layout.module-967e9373.js} +0 -0
  724. /package/side-panel/{layout.module-609eebc7.js → layout.module-d253bd44.js} +0 -0
  725. /package/side-panel/modern/{layout.module-0e290f8e.js → layout.module-05cf0c8b.js} +0 -0
  726. /package/tabs/esm/{index.module-d5b4798f.js → index.module-71c7b809.js} +0 -0
  727. /package/tabs/esm/{index.module-65ac9084.js → index.module-c7b1270c.js} +0 -0
  728. /package/tabs/{index.module-730e5da6.js → index.module-01c05e46.js} +0 -0
  729. /package/tabs/{index.module-45bfce70.js → index.module-59aefec7.js} +0 -0
  730. /package/tabs/modern/{index.module-03185542.js → index.module-2e43b405.js} +0 -0
  731. /package/tabs/modern/{index.module-5c5d366e.js → index.module-770b3536.js} +0 -0
  732. /package/typography/{colors.module-ab3fe803.js → colors.module-a6e0da27.js} +0 -0
  733. /package/typography/{common.module-e96c83f3.js → common.module-c7f0e486.js} +0 -0
  734. /package/typography/esm/{colors.module-faa4d4fc.js → colors.module-b73c8885.js} +0 -0
  735. /package/typography/esm/{common.module-cfe81402.js → common.module-f2307db8.js} +0 -0
  736. /package/typography/modern/{colors.module-571427f1.js → colors.module-fde05f10.js} +0 -0
  737. /package/typography/modern/{common.module-4cd410f7.js → common.module-a5dc65e9.js} +0 -0
  738. /package/underlay/esm/{index.module-cca3b871.js → index.module-0952e8df.js} +0 -0
  739. /package/underlay/{index.module-85882065.js → index.module-749d95bc.js} +0 -0
  740. /package/underlay/modern/{index.module-39af6e8f.js → index.module-5f1b2ac1.js} +0 -0
  741. /package/universal-modal/esm/{index.module-be0199ee.js → index.module-f796cf80.js} +0 -0
  742. /package/universal-modal/{index.module-0d86949c.js → index.module-26b1b7d5.js} +0 -0
  743. /package/universal-modal/modern/{index.module-ee058ea2.js → index.module-94595b39.js} +0 -0
@@ -1,4 +1,4 @@
1
1
  // THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2
- var mobileDarkBluetint = ".card-image__cardImage_ll3kr {\n background: #e7e8ea;\n} .card-image__loaded_ll3kr {\n background: transparent\n}.backdrop__backdrop_10lfj {\n -webkit-tap-highlight-color: transparent;\n} .backdrop__appear_10lfj,\n.backdrop__enter_10lfj {\n background-color: transparent;\n} .backdrop__appearActive_10lfj,\n.backdrop__enterActive_10lfj,\n.backdrop__appearDone_10lfj,\n.backdrop__enterDone_10lfj {\n background-color: rgba(0, 0, 0, 0.7);\n} .backdrop__exit_10lfj {\n background-color: rgba(0, 0, 0, 0.7);\n} .backdrop__exitActive_10lfj,\n.backdrop__exitDone_10lfj {\n background-color: transparent;\n} .backdrop__transparent_10lfj.backdrop__transparent_10lfj {\n background-color: transparent;\n}.badge__component_120dx.badge__background-accent_120dx {\n background-color: #f83a2a;\n color: rgba(255, 255, 255, 0.94);\n } .badge__component_120dx.badge__background-specialbg-secondary-transparent_120dx {\n background-color: rgba(225, 225, 248, 0.09);\n color: rgba(255, 255, 255, 0.94);\n } .badge__component_120dx.badge__background-primary_120dx {\n background-color: #262629;\n color: rgba(255, 255, 255, 0.94);\n } .badge__outlineCount_120dx {\n border: 2px solid rgba(3, 3, 6, 0.88);\n} .badge__heightS_120dx.badge__outlineCount_120dx {\n border: 1px solid rgba(3, 3, 6, 0.88);\n} .badge__icon_120dx {\n color: #17d055\n} .badge__icon_120dx.badge__positive_120dx {\n color: #17d055;\n background-color: #17d055;\n } .badge__icon_120dx.badge__attention_120dx {\n color: #fda136;\n background-color: #fda136;\n } .badge__icon_120dx.badge__negative_120dx {\n color: #ff4837;\n background-color: #ff4837;\n } .badge__icon_120dx.badge__link_120dx {\n color: #3193fc;\n background-color: #3193fc;\n } .badge__icon_120dx.badge__tertiary_120dx {\n color: #4a4a51;\n background-color: #4a4a51;\n } .badge__icon_120dx.badge__secondary_120dx {\n color: #898991;\n background-color: #898991;\n } .badge__icon_120dx.badge__primary_120dx {\n color: rgba(255, 255, 255, 0.94);\n background-color: rgba(255, 255, 255, 0.94);\n } .badge__graphic-static-light_120dx.badge__icon_120dx:before {\n background-color: rgba(255, 255, 255, 0.94);\n} .badge__graphic-primary_120dx.badge__icon_120dx:before {\n background-color: rgba(255, 255, 255, 0.94);\n} .badge__outline_120dx {\n background-color: rgba(3, 3, 6, 0.88);\n} .badge__outlineColor_120dx {\n background-color: #f83a2a\n} .badge__outlineColor_120dx.badge__attention_120dx {\n background-color: #fda136;\n } .badge__outlineColor_120dx.badge__positive_120dx {\n background-color: #17d055;\n } .badge__outlineColor_120dx.badge__negative_120dx {\n background-color: #ff4837;\n } .badge__outlineColor_120dx.badge__link_120dx {\n background-color: #3193fc;\n } .badge__outlineColor_120dx.badge__tertiary_120dx {\n background-color: #4a4a51;\n } .badge__outlineColor_120dx.badge__secondary_120dx {\n background-color: #898991;\n } .badge__outlineColor_120dx.badge__primary_120dx {\n background-color: rgba(255, 255, 255, 0.94);\n } .badge__dot_120dx.badge__outlineCount_120dx {\n border: 1px solid rgba(3, 3, 6, 0.88);\n}.divider__component_ip3af {\n border-bottom: 1px solid #353539;\n}.dropzone__component_1ta7y {\n border: 1px dashed rgba(255, 255, 255, 0.94);\n} .dropzone__component_1ta7y:not(.dropzone__disabled_1ta7y):hover {\n background-color: transparent;\n} .dropzone__dragOver_1ta7y {\n background-color: transparent;\n} .dropzone__error_1ta7y {\n border-color: #ff4837;\n}\n.dropzone__overlay_n2jsj {\n background: rgba(214, 214, 229, 0.07);\n} .dropzone__text_n2jsj {\n color: rgba(255, 255, 255, 0.94);\n}.hatching-progress-bar__container_ykyxq {\n background: rgba(222, 222, 238, 0.13);\n} .hatching-progress-bar__hatch_ykyxq {\n background: repeating-linear-gradient(\n -45deg,\n rgba(222, 222, 238, 0.13) 6px 10px,\n rgba(255, 255, 255, 0) 10px 18px\n );\n} .hatching-progress-bar__positive_ykyxq {\n background: #17d055;\n } .hatching-progress-bar__attention_ykyxq {\n background: #fda136;\n } .hatching-progress-bar__negative_ykyxq {\n background: #ff4837;\n } .hatching-progress-bar__link_ykyxq {\n background: #3193fc;\n } .hatching-progress-bar__tertiary_ykyxq {\n background: #4a4a51;\n } .hatching-progress-bar__secondary_ykyxq {\n background: #898991;\n } .hatching-progress-bar__primary_ykyxq {\n background: rgba(255, 255, 255, 0.94);\n } .hatching-progress-bar__accent_ykyxq {\n background: #f83a2a;\n }@media (max-width: 599px) {\n }\n@media (min-width: 320px) {\n }\n@media (min-width: 360px) {\n }\n@media (min-width: 375px) {\n }\n@media (min-width: 412px) {\n }\n@media (min-width: 600px) and (max-width: 1023px) {\n }\n@media (min-width: 600px) {\n }\n@media (min-width: 768px) {\n }\n@media (min-width: 1024px) {\n }\n@media (min-width: 1024px) {\n }\n@media (min-width: 1280px) {\n }\n@media (min-width: 1440px) {\n }\n@media (min-width: 1920px) {\n }\n@media (max-width: 599px) {\n }\n@media (min-width: 320px) {\n }\n@media (min-width: 360px) {\n }\n@media (min-width: 375px) {\n }\n@media (min-width: 412px) {\n }\n@media (min-width: 600px) and (max-width: 1023px) {\n }\n@media (min-width: 600px) {\n }\n@media (min-width: 768px) {\n }\n@media (min-width: 1024px) {\n }\n@media (min-width: 1024px) {\n }\n@media (min-width: 1280px) {\n }\n@media (min-width: 1440px) {\n }\n@media (min-width: 1920px) {\n }\n.icon-view__component_1lzkx {\n color: rgba(238, 238, 251, 0.55)\n} .icon-view__bg_1lzkx {\n fill: #1c1c1e;\n} .icon-view__border_1lzkx {\n stroke: rgba(225, 225, 248, 0.09);\n fill: transparent;\n}.indicator__component_1n5a7 {\n color: rgba(255, 255, 255, 0.94);\n background-color: #f83a2a;\n} .indicator__red_1n5a7 {\n background-color: #f83a2a;\n color: rgba(255, 255, 255, 0.94)\n} .indicator__red_1n5a7.indicator__border_1n5a7 {\n outline: 2px solid #121213;\n } .indicator__white_1n5a7 {\n background-color: #262629;\n color: rgba(255, 255, 255, 0.94)\n} .indicator__white_1n5a7.indicator__border_1n5a7 {\n outline: 2px solid #121213;\n } .indicator__grey_1n5a7 {\n background-color: rgba(225, 225, 248, 0.09);\n color: rgba(255, 255, 255, 0.94)\n} .indicator__grey_1n5a7.indicator__border_1n5a7 {\n outline: 2px solid #121213;\n }.link__primary_142ul {\n color: rgba(255, 255, 255, 0.94);\n border-bottom-color: rgba(255, 255, 255, 0.94)\n} @media (hover: hover) {\n .link__primary_142ul:hover {\n color: rgba(255, 255, 255, 0.7);\n }\n } .link__primary_142ul:active {\n color: rgba(255, 255, 255, 0.6);\n } .link__secondary_142ul {\n color: rgba(238, 238, 251, 0.55);\n border-bottom-color: rgba(238, 238, 251, 0.55)\n} @media (hover: hover) {\n .link__secondary_142ul:hover {\n color: rgba(239, 240, 252, 0.65);\n }\n } .link__secondary_142ul:active {\n color: rgba(243, 245, 254, 0.75);\n } .link__defaultView_142ul {\n color: #4a9dfc;\n border-bottom-color: #4a9dfc\n} @media (hover: hover) {\n .link__defaultView_142ul:hover {\n color: #63aafd;\n }\n } .link__defaultView_142ul:active {\n color: #7fb6ff;\n }\n@media (hover: hover) {\n .link__component_10j2b:hover .link__text_10j2b {\n border-bottom-color: rgba(0, 0, 0, 0);\n }\n } .link__component_10j2b:active .link__text_10j2b {\n border-bottom-color: rgba(0, 0, 0, 0);\n } .link__focused_10j2b {\n outline: 2px solid #3193fc;\n} .link__pseudo_10j2b {\n background-color: transparent;\n}\n.link__primary_1cahd {\n color: rgba(3, 3, 6, 0.88);\n border-bottom-color: rgba(3, 3, 6, 0.88)\n} @media (hover: hover) {\n .link__primary_1cahd:hover {\n color: rgba(1, 1, 12, 0.63);\n }\n } .link__primary_1cahd:active {\n color: rgba(4, 4, 19, 0.55);\n } .link__secondary_1cahd {\n color: rgba(4, 4, 19, 0.55);\n border-bottom-color: rgba(4, 4, 19, 0.55)\n} @media (hover: hover) {\n .link__secondary_1cahd:hover {\n color: rgba(1, 1, 12, 0.63);\n }\n } .link__secondary_1cahd:active {\n color: rgba(0, 0, 10, 0.71);\n } .link__defaultView_1cahd {\n color: #2a77ef;\n border-bottom-color: #2a77ef\n} @media (hover: hover) {\n .link__defaultView_1cahd:hover {\n color: #2c64d4;\n }\n } .link__defaultView_1cahd:active {\n color: #2453b4;\n }@keyframes loader__blink_x2k9b {\n}.progress-bar__container_14j0f {\n background-color: rgba(222, 222, 238, 0.13);\n}\n.progress-bar__filled_10kre.progress-bar__positive_10kre {\n background: #17d055;\n } .progress-bar__filled_10kre.progress-bar__negative_10kre {\n background: #ff4837;\n } .progress-bar__filled_10kre.progress-bar__attention_10kre {\n background: #fda136;\n } .progress-bar__filled_10kre.progress-bar__link_10kre {\n background: #3193fc;\n } .progress-bar__filled_10kre.progress-bar__tertiary_10kre {\n background: #4a4a51;\n } .progress-bar__filled_10kre.progress-bar__secondary_10kre {\n background: #898991;\n } .progress-bar__filled_10kre.progress-bar__primary_10kre {\n background: rgba(255, 255, 255, 0.94);\n } .progress-bar__filled_10kre.progress-bar__accent_10kre {\n background: #f83a2a;\n }\n.progress-bar__container_r7jtg {\n background-color: rgba(15, 25, 55, 0.1);\n}.scrollbar__component_1fu06 .scrollbar:before {\n background-color: rgba(228, 228, 251, 0.28);\n } .scrollbar__component_1fu06.dragging .track .scrollbar.visible:before {\n background-color: rgba(238, 238, 254, 0.46);\n }\n\n.scrollbar__component_o7sjm .scrollbar:before {\n background-color: rgba(9, 12, 37, 0.28);\n } .scrollbar__component_o7sjm.dragging .track .scrollbar.visible:before {\n background-color: rgba(4, 4, 21, 0.47);\n }.skeleton__component_178a3 {\n background: rgba(214, 214, 229, 0.07);\n} @keyframes skeleton__background_178a3 {\n 0% {\n background: rgba(214, 214, 229, 0.07);\n }\n 100% {\n background: rgba(222, 222, 238, 0.13);\n }\n}\n.skeleton__component_1skbv {\n color: transparent\n} .skeleton__component_1skbv:before {\n background: transparent;\n}\n.skeleton__component_qenue {\n background: rgba(38, 55, 88, 0.06);\n} @keyframes skeleton__background-inverted_qenue {\n 0% {\n background: rgba(38, 55, 88, 0.06);\n }\n 100% {\n background: rgba(15, 25, 55, 0.1);\n }\n}\n.segmented-control__wrapper_v4ab2 {\n background-color: rgba(225, 225, 248, 0.09);\n} .segmented-control__segment_v4ab2.segmented-control__selected_v4ab2 {\n color: rgba(255, 255, 255, 0.94);\n} .segmented-control__selectedBox_v4ab2 {\n border: 0.5px solid rgba(225, 225, 248, 0.09);\n background-color: rgba(214, 214, 229, 0.07);\n}\n.segmented-control__selectedBox_1ikso {\n box-shadow: 0 12px 16px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.04),\n 0 0 1px rgba(0, 0, 0, 0.04);\n}\n.segmented-control__wrapper_stu4g {\n background-color: rgba(30, 43, 68, 0.08);\n} .segmented-control__segment_stu4g.segmented-control__selected_stu4g {\n color: rgba(3, 3, 6, 0.88);\n} .segmented-control__selectedBox_stu4g {\n border: 0.5px solid rgba(30, 43, 68, 0.08);\n background-color: #fff;\n}\n.segmented-control__segment_ghynd {\n color: rgba(255, 255, 255, 0.94)\n} .segmented-control__segment_ghynd:not(:first-child):before {\n background-color: rgba(222, 222, 238, 0.13);\n }\n.segmented-control__segment_dl15i {\n background-color: transparent\n} .segmented-control__focused_dl15i {\n outline: 2px solid #3193fc;\n}\n.segmented-control__segment_1qjhk {\n color: rgba(3, 3, 6, 0.88)\n} .segmented-control__segment_1qjhk:not(:first-child):before {\n background-color: rgba(15, 25, 55, 0.1);\n }.slider__component_1cp1w .noUi-base:hover .noUi-connects {\n background: rgba(222, 222, 238, 0.13);\n } .slider__component_1cp1w .noUi-base:hover .noUi-connect {\n background: #f83a2a;\n } .slider__component_1cp1w .noUi-handle:hover .noUi-touch-area {\n background: #ff503e;\n } .slider__component_1cp1w .noUi-handle:active .noUi-touch-area {\n background: #fd624e;\n } .slider__component_1cp1w .noUi-connects {\n background: rgba(222, 222, 238, 0.13);\n } .slider__component_1cp1w .noUi-connect {\n background: #f83a2a;\n } .slider__component_1cp1w .noUi-handle {\n border: 2px solid transparent;\n } .slider__component_1cp1w .noUi-touch-area {\n background: #f83a2a;\n } .slider__component_1cp1w .noUi-pips {\n color: rgba(238, 238, 251, 0.55);\n }.status__soft_1ou3b.status__green_1ou3b, .status__muted-alt_1ou3b.status__green_1ou3b {\n background: #d1f1d7;\n color: #0d9336;\n } .status__soft_1ou3b.status__orange_1ou3b, .status__muted-alt_1ou3b.status__orange_1ou3b {\n background: #fde6c8;\n color: #ea8313;\n } .status__soft_1ou3b.status__red_1ou3b, .status__muted-alt_1ou3b.status__red_1ou3b {\n background: #ffdfdf;\n color: #ec2d20;\n } .status__soft_1ou3b.status__blue_1ou3b, .status__muted-alt_1ou3b.status__blue_1ou3b {\n background: #d8eaff;\n color: #2a77ef;\n } .status__soft_1ou3b.status__teal_1ou3b, .status__muted-alt_1ou3b.status__teal_1ou3b {\n background: #c8f1f3;\n color: #058a8f;\n } .status__soft_1ou3b.status__grey_1ou3b, .status__muted-alt_1ou3b.status__grey_1ou3b {\n background: rgba(222, 222, 238, 0.13);\n color: rgba(238, 238, 251, 0.55);\n } .status__soft_1ou3b.status__purple_1ou3b, .status__muted-alt_1ou3b.status__purple_1ou3b {\n background: #e3e6fe;\n color: #7a63f1;\n } .status__contrast_1ou3b {\n color: rgba(3, 3, 6, 0.88)\n} .status__contrast_1ou3b.status__green_1ou3b {\n background: #0cc44d;\n } .status__contrast_1ou3b.status__orange_1ou3b {\n background: #fa9313;\n } .status__contrast_1ou3b.status__red_1ou3b {\n background: #fe5e48;\n } .status__contrast_1ou3b.status__blue_1ou3b {\n background: #3193fc;\n } .status__contrast_1ou3b.status__teal_1ou3b {\n background: #09b9be;\n } .status__contrast_1ou3b.status__grey_1ou3b {\n background: #898991;\n } .status__contrast_1ou3b.status__purple_1ou3b {\n background: #897eff;\n } .status__muted_1ou3b.status__green_1ou3b {\n background: #dff8e5;\n color: #0d9336;\n } .status__muted_1ou3b.status__orange_1ou3b {\n background: #ffefd9;\n color: #ea8313;\n } .status__muted_1ou3b.status__red_1ou3b {\n background: #ffebeb;\n color: #ec2d20;\n } .status__muted_1ou3b.status__blue_1ou3b {\n background: #e4f0ff;\n color: #2a77ef;\n } .status__muted_1ou3b.status__teal_1ou3b {\n background: #daf7f8;\n color: #058a8f;\n } .status__muted_1ou3b.status__grey_1ou3b {\n background: rgba(225, 225, 248, 0.09);\n color: rgba(238, 238, 251, 0.55);\n } .status__muted_1ou3b.status__purple_1ou3b {\n background: #eeedff;\n color: #7a63f1;\n }.status-badge__positive-checkmark_e5swm {\n background-color: #17d055;\n} .status-badge__negative-cross_e5swm,\n.status-badge__negative-alert_e5swm,\n.status-badge__negative-block_e5swm {\n background-color: #ff4837;\n} .status-badge__attention-alert_e5swm {\n background-color: #fda136;\n} .status-badge__neutral-information_e5swm,\n.status-badge__neutral-operation_e5swm,\n.status-badge__neutral-cross_e5swm {\n background-color: #898991;\n}\n.status-badge__component_1ie0m {\n color: rgba(255, 255, 255, 0.94);\n}\n.status-badge__positive-checkmark_1f3lp {\n background-color: #0cc44d;\n} .status-badge__negative-cross_1f3lp,\n.status-badge__negative-alert_1f3lp,\n.status-badge__negative-block_1f3lp {\n background-color: #ff4837;\n} .status-badge__attention-alert_1f3lp {\n background-color: #fa9313;\n} .status-badge__neutral-information_1f3lp,\n.status-badge__neutral-operation_1f3lp,\n.status-badge__neutral-cross_1f3lp {\n background-color: #898991;\n}.underlay__background-accent_mckhd {\n background-color: #ef3124;\n } .underlay__background-info_mckhd {\n background-color: #001c3c;\n } .underlay__background-attention-muted_mckhd {\n background-color: #36291f;\n } .underlay__background-positive-muted_mckhd {\n background-color: #232d25;\n } .underlay__background-negative-muted_mckhd {\n background-color: #392523;\n } .underlay__background-primary_mckhd {\n background-color: #121213;\n } .underlay__background-primary-inverted_mckhd {\n background-color: #fff;\n } .underlay__background-secondary_mckhd {\n background-color: #1c1c1e;\n } .underlay__background-secondary-inverted_mckhd {\n background-color: #f2f3f5;\n } .underlay__background-tertiary_mckhd {\n background-color: #27272a;\n } .underlay__background-tertiary-inverted_mckhd {\n background-color: #e7e8ea;\n } .underlay__background-quaternary_mckhd {\n background-color: #36363a;\n } .underlay__background-quaternary-inverted_mckhd {\n background-color: #dcdee2;\n } .underlay__background-specialbg-component_mckhd {\n background-color: rgba(255, 255, 255, 0.1);\n } .underlay__background-specialbg-component-inverted_mckhd {\n background-color: rgba(11, 31, 53, 0.07);\n } .underlay__background-specialbg-primary-grouped_mckhd {\n background-color: #1c1c1e;\n } .underlay__background-specialbg-secondary-grouped_mckhd {\n background-color: #27272a;\n } .underlay__background-specialbg-tertiary-grouped_mckhd {\n background-color: #36363a;\n } .underlay__background-specialbg-secondary-transparent_mckhd {\n background-color: rgba(214, 214, 229, 0.07);\n } .underlay__background-specialbg-secondary-transparent-inverted_mckhd {\n background-color: rgba(38, 55, 88, 0.06);\n } .underlay__background-specialbg-tertiary-transparent_mckhd {\n background-color: rgba(222, 222, 240, 0.12);\n } .underlay__background-specialbg-tertiary-transparent-inverted_mckhd {\n background-color: rgba(30, 43, 68, 0.08);\n } .underlay__shadow-xs_mckhd {\n box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.04);\n } .underlay__shadow-s_mckhd {\n box-shadow: 0 12px 16px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.04),\n 0 0 1px rgba(0, 0, 0, 0.04);\n } .underlay__shadow-m_mckhd {\n box-shadow: 0 20px 24px rgba(0, 0, 0, 0.08), 0 12px 16px rgba(0, 0, 0, 0.04),\n 0 4px 8px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.04);\n } .underlay__shadow-l_mckhd {\n box-shadow: 0 24px 32px rgba(0, 0, 0, 0.08), 0 20px 24px rgba(0, 0, 0, 0.08),\n 0 12px 16px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.04);\n } .underlay__shadow-xl_mckhd {\n box-shadow: 0 32px 40px rgba(0, 0, 0, 0.08), 0 24px 32px rgba(0, 0, 0, 0.08),\n 0 20px 24px rgba(0, 0, 0, 0.08), 0 12px 16px rgba(0, 0, 0, 0.04),\n 0 4px 8px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.04);\n } .underlay__shadow-xs-hard_mckhd {\n box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16), 0 0 1px rgba(0, 0, 0, 0.16);\n } .underlay__shadow-s-hard_mckhd {\n box-shadow: 0 12px 16px rgba(0, 0, 0, 0.16), 0 4px 8px rgba(0, 0, 0, 0.16),\n 0 0 1px rgba(0, 0, 0, 0.16);\n } .underlay__shadow-m-hard_mckhd {\n box-shadow: 0 20px 24px rgba(0, 0, 0, 0.2), 0 12px 16px rgba(0, 0, 0, 0.16),\n 0 4px 8px rgba(0, 0, 0, 0.16), 0 0 1px rgba(0, 0, 0, 0.16);\n } .underlay__shadow-l-hard_mckhd {\n box-shadow: 0 24px 32px rgba(0, 0, 0, 0.2), 0 20px 24px rgba(0, 0, 0, 0.2),\n 0 12px 16px rgba(0, 0, 0, 0.16), 0 4px 8px rgba(0, 0, 0, 0.16), 0 0 1px rgba(0, 0, 0, 0.16);\n } .underlay__shadow-xl-hard_mckhd {\n box-shadow: 0 32px 40px rgba(0, 0, 0, 0.2), 0 24px 32px rgba(0, 0, 0, 0.2),\n 0 20px 24px rgba(0, 0, 0, 0.2), 0 12px 16px rgba(0, 0, 0, 0.16),\n 0 4px 8px rgba(0, 0, 0, 0.16), 0 0 1px rgba(0, 0, 0, 0.16);\n } .underlay__shadow-xs-up_mckhd {\n box-shadow: 0 0 4px rgba(0, 0, 0, 0.02), 0 -2px 4px rgba(0, 0, 0, 0.04);\n } .underlay__shadow-s-up_mckhd {\n box-shadow: 0 0 8px rgba(0, 0, 0, 0.04), 0 -4px 8px rgba(0, 0, 0, 0.08);\n } .underlay__shadow-m-up_mckhd {\n box-shadow: 0 0 16px rgba(0, 0, 0, 0.08), 0 -8px 16px rgba(0, 0, 0, 0.16);\n } .underlay__shadow-l-up_mckhd {\n box-shadow: 0 0 24px rgba(0, 0, 0, 0.12), 0 -12px 24px rgba(0, 0, 0, 0.24);\n } .underlay__shadow-xl-up_mckhd {\n box-shadow: 0 0 32px rgba(0, 0, 0, 0.16), 0 -16px 32px rgba(0, 0, 0, 0.32);\n } .underlay__shadow-xs-hard-up_mckhd {\n box-shadow: 0 0 4px rgba(0, 0, 0, 0.02), 0 -2px 4px rgba(0, 0, 0, 0.04),\n 0 -2px 4px rgba(0, 0, 0, 0.16);\n } .underlay__shadow-s-hard-up_mckhd {\n box-shadow: 0 0 8px rgba(0, 0, 0, 0.04), 0 -4px 8px rgba(0, 0, 0, 0.08),\n 0 -4px 8px rgba(0, 0, 0, 0.16);\n } .underlay__shadow-m-hard-up_mckhd {\n box-shadow: 0 0 16px rgba(0, 0, 0, 0.08), 0 -8px 16px rgba(0, 0, 0, 0.16),\n 0 -8px 16px rgba(0, 0, 0, 0.16);\n } .underlay__shadow-l-hard-up_mckhd {\n box-shadow: 0 0 24px rgba(0, 0, 0, 0.12), 0 -12px 24px rgba(0, 0, 0, 0.24),\n 0 -12px 24px rgba(0, 0, 0, 0.16);\n } .underlay__shadow-xl-hard-up_mckhd {\n box-shadow: 0 0 32px rgba(0, 0, 0, 0.16), 0 -16px 32px rgba(0, 0, 0, 0.32),\n 0 -16px 32px rgba(0, 0, 0, 0.16);\n } .underlay__border-color-accent_mckhd {\n border-color: #f83a2a;\n } .underlay__border-color-key_mckhd {\n border-color: rgba(255, 255, 255, 0.94);\n } .underlay__border-color-key-inverted_mckhd {\n border-color: rgba(3, 3, 6, 0.88);\n } .underlay__border-color-link_mckhd {\n border-color: #3193fc;\n } .underlay__border-color-primary_mckhd {\n border-color: #353539;\n } .underlay__border-color-primary-inverted_mckhd {\n border-color: #d2d3d9;\n } .underlay__border-color-secondary_mckhd {\n border-color: #29292c;\n } .underlay__border-color-secondary-inverted_mckhd {\n border-color: #e7e8eb;\n } .underlay__border-color-tertiary_mckhd {\n border-color: #212124;\n } .underlay__border-color-tertiary-inverted_mckhd {\n border-color: #edeef0;\n } .underlay__border-color-underline_mckhd {\n border-color: #4a4a51;\n } .underlay__border-color-underline-inverted_mckhd {\n border-color: #babbc2;\n } .underlay__border-color-graphic-attention_mckhd {\n border-color: #fda136;\n } .underlay__border-color-graphic-link_mckhd {\n border-color: #3193fc;\n } .underlay__border-color-graphic-negative_mckhd {\n border-color: #ff4837;\n } .underlay__border-color-graphic-positive_mckhd {\n border-color: #17d055;\n } .underlay__border-color-specialbg-secondary-transparent_mckhd {\n border-color: rgba(225, 225, 248, 0.09);\n } .underlay__border-color-specialbg-secondary-transparent-inverted_mckhd {\n border-color: rgba(30, 43, 68, 0.08);\n } .underlay__border-color-specialbg-tertiary-transparent_mckhd {\n border-color: rgba(222, 222, 238, 0.13);\n } .underlay__border-color-specialbg-tertiary-transparent-inverted_mckhd {\n border-color: rgba(15, 25, 55, 0.1);\n }.checkbox-group__label_1ja6m {\n color: rgba(255, 255, 255, 0.94);\n}\n.checkbox-group__label_1o2ak {\n color: rgba(238, 238, 251, 0.55);\n}\n.checkbox-group__error_ceu8t {\n border-left: 1px solid #ff4837\n} .checkbox-group__errorMessage_ceu8t {\n color: #ff4837;\n} .checkbox-group__hint_ceu8t {\n color: rgba(238, 238, 251, 0.55);\n}.checkbox__box_1vgb6 {\n color: rgba(3, 3, 6, 0.88);\n background-color: #262629;\n border: 1.5px solid rgba(238, 238, 251, 0.55);\n} .checkbox__checkedIcon_1vgb6 {\n color: rgba(3, 3, 6, 0.88);\n} @media (hover: hover) {\n .checkbox__component_1vgb6:hover:not(.checkbox__disabled_1vgb6) .checkbox__box_1vgb6 {\n background-color: #2f2f32;\n border-color: rgba(238, 238, 251, 0.55);\n }\n} .checkbox__component_1vgb6:active:not(.checkbox__disabled_1vgb6) .checkbox__box_1vgb6 {\n background-color: #353539;\n border-color: rgba(238, 238, 251, 0.55);\n} .checkbox__checked_1vgb6 .checkbox__box_1vgb6 {\n background-color: #f2f3f5;\n border-color: transparent;\n} .checkbox__checked_1vgb6:hover:not(.checkbox__disabled_1vgb6) .checkbox__box_1vgb6 {\n background-color: #dcdde1;\n border-color: transparent;\n} .checkbox__checked_1vgb6:active:not(.checkbox__disabled_1vgb6) .checkbox__box_1vgb6 {\n background-color: #d2d3d9;\n border-color: transparent;\n} .checkbox__indeterminate_1vgb6 .checkbox__box_1vgb6 {\n background-color: #f2f3f5;\n border-color: transparent;\n} .checkbox__indeterminate_1vgb6:hover:not(.checkbox__disabled_1vgb6) .checkbox__box_1vgb6 {\n background-color: #dcdde1;\n border-color: transparent;\n} .checkbox__indeterminate_1vgb6:active:not(.checkbox__disabled_1vgb6) .checkbox__box_1vgb6 {\n background-color: #d2d3d9;\n border-color: transparent;\n} .checkbox__disabled_1vgb6 .checkbox__box_1vgb6 {\n background-color: #262629;\n border-color: rgba(222, 222, 238, 0.13);\n} .checkbox__disabled_1vgb6.checkbox__checked_1vgb6 .checkbox__box_1vgb6 {\n background-color: rgba(225, 225, 248, 0.09);\n border-color: transparent;\n .checkbox__checkedIcon_1vgb6 {\n color: rgba(228, 228, 251, 0.28);\n }\n} .checkbox__disabled_1vgb6.checkbox__indeterminate_1vgb6 .checkbox__box_1vgb6 {\n background-color: rgba(225, 225, 248, 0.09);\n border-color: transparent\n} .checkbox__disabled_1vgb6.checkbox__indeterminate_1vgb6 .checkbox__box_1vgb6 .checkbox__indeterminateLine_1vgb6 {\n background-color: rgba(228, 228, 251, 0.28);\n } .checkbox__disabled_1vgb6 .checkbox__label_1vgb6 {\n color: rgba(238, 238, 251, 0.55);\n} .checkbox__disabled_1vgb6 .checkbox__hint_1vgb6 {\n color: rgba(238, 238, 251, 0.55);\n} .checkbox__label_1vgb6 {\n color: rgba(255, 255, 255, 0.94);\n} .checkbox__hint_1vgb6 {\n color: rgba(238, 238, 251, 0.55);\n} .checkbox__indeterminateLine_1vgb6 {\n background-color: rgba(3, 3, 6, 0.88);\n}\n.checkbox__focused_spjkm .checkbox__box_spjkm {\n outline: 2px solid #3193fc;\n} .checkbox__errorMessage_spjkm {\n color: #ff4837;\n}\n.checkbox__box_110o5 {\n color: rgba(255, 255, 255, 0.94);\n background-color: #fff;\n border: 1.5px solid rgba(4, 4, 21, 0.47);\n} .checkbox__checkedIcon_110o5 {\n color: rgba(255, 255, 255, 0.94);\n} @media (hover: hover) {\n .checkbox__component_110o5:hover:not(.checkbox__disabled_110o5) .checkbox__box_110o5 {\n background-color: #e7e8eb;\n border-color: rgba(4, 4, 21, 0.47);\n }\n} .checkbox__component_110o5:active:not(.checkbox__disabled_110o5) .checkbox__box_110o5 {\n background-color: #dcdde1;\n border-color: rgba(4, 4, 21, 0.47);\n} .checkbox__checked_110o5 .checkbox__box_110o5 {\n background-color: #212124;\n border-color: transparent;\n} .checkbox__checked_110o5:hover:not(.checkbox__disabled_110o5) .checkbox__box_110o5 {\n background-color: #2f2f32;\n border-color: transparent;\n} .checkbox__checked_110o5:active:not(.checkbox__disabled_110o5) .checkbox__box_110o5 {\n background-color: #353539;\n border-color: transparent;\n} .checkbox__indeterminate_110o5 .checkbox__box_110o5 {\n background-color: #212124;\n border-color: transparent;\n} .checkbox__indeterminate_110o5:hover:not(.checkbox__disabled_110o5) .checkbox__box_110o5 {\n background-color: #2f2f32;\n border-color: transparent;\n} .checkbox__indeterminate_110o5:active:not(.checkbox__disabled_110o5) .checkbox__box_110o5 {\n background-color: #353539;\n border-color: transparent;\n} .checkbox__disabled_110o5 .checkbox__box_110o5 {\n background-color: #fff;\n border-color: rgba(15, 25, 55, 0.1);\n} .checkbox__disabled_110o5.checkbox__checked_110o5 .checkbox__box_110o5 {\n background-color: rgba(30, 43, 68, 0.08);\n border-color: transparent;\n .checkbox__checkedIcon_110o5 {\n color: rgba(9, 12, 37, 0.28);\n }\n} .checkbox__disabled_110o5.checkbox__indeterminate_110o5 .checkbox__box_110o5 {\n background-color: rgba(30, 43, 68, 0.08);\n border-color: transparent\n} .checkbox__disabled_110o5.checkbox__indeterminate_110o5 .checkbox__box_110o5 .checkbox__indeterminateLine_110o5 {\n background-color: rgba(9, 12, 37, 0.28);\n } .checkbox__disabled_110o5 .checkbox__label_110o5 {\n color: rgba(4, 4, 19, 0.55);\n} .checkbox__disabled_110o5 .checkbox__hint_110o5 {\n color: rgba(4, 4, 19, 0.55);\n} .checkbox__label_110o5 {\n color: rgba(3, 3, 6, 0.88);\n} .checkbox__hint_110o5 {\n color: rgba(4, 4, 19, 0.55);\n} .checkbox__indeterminateLine_110o5 {\n background-color: rgba(255, 255, 255, 0.94);\n}.code-input__component_c18aj {\n background-color: rgba(222, 222, 238, 0.13)\n}\n.code-input__component_zosyi {\n background-color: rgba(214, 214, 229, 0.07);\n}\n.code-input__error_1vqhl {\n color: #ff4837;\n} @keyframes code-input__shake_1vqhl {\n}\n.code-input__input_p0d8p {\n color: rgba(255, 255, 255, 0.94)\n} .code-input__input_p0d8p.code-input__hasError_p0d8p {\n color: #ff4837;\n caret-color: rgba(255, 255, 255, 0.94);\n background-color: #392523;\n } .code-input__input_p0d8p.code-input__disabled_p0d8p {\n color: rgba(233, 233, 250, 0.37);\n } .code-input__input_p0d8p:-webkit-autofill {\n -webkit-text-fill-color: rgba(255, 255, 255, 0.94);\n }.filter-tag__valueButton_6tmxc.filter-tag__filled_6tmxc {\n background-color: rgba(222, 222, 238, 0.13)\n } .filter-tag__valueButton_6tmxc.filter-tag__filled_6tmxc:disabled {\n background-color: rgba(214, 214, 229, 0.07);\n } @media (hover: hover) {\n .filter-tag__valueButton_6tmxc.filter-tag__filled_6tmxc:not(:disabled):hover {\n background-color: rgba(234, 234, 248, 0.15);\n }\n } .filter-tag__valueButton_6tmxc.filter-tag__filled_6tmxc:not(:disabled):active {\n background-color: rgba(231, 231, 248, 0.18);\n }\n\n.filter-tag__valueButton_lht8x.filter-tag__filled_lht8x {\n background-color: rgba(15, 25, 55, 0.1)\n } .filter-tag__valueButton_lht8x.filter-tag__filled_lht8x:disabled {\n background-color: rgba(38, 55, 88, 0.06);\n } @media (hover: hover) {\n .filter-tag__valueButton_lht8x.filter-tag__filled_lht8x:not(:disabled):hover {\n background-color: rgba(5, 12, 41, 0.14);\n }\n } .filter-tag__valueButton_lht8x.filter-tag__filled_lht8x:not(:disabled):active {\n background-color: rgba(5, 11, 44, 0.18);\n }\n.filter-tag__valueButton_1n873.filter-tag__filled_1n873 {\n background-color: rgba(214, 214, 229, 0.07)\n } .filter-tag__valueButton_1n873.filter-tag__filled_1n873:disabled {\n background-color: rgba(214, 214, 229, 0.07);\n } @media (hover: hover) {\n .filter-tag__valueButton_1n873.filter-tag__filled_1n873:not(:disabled):hover {\n background-color: rgba(214, 214, 229, 0.07);\n }\n } .filter-tag__valueButton_1n873.filter-tag__filled_1n873:not(:disabled):active {\n background-color: rgba(222, 222, 238, 0.13);\n }\n.filter-tag__valueButton_1l3b1.filter-tag__filled_1l3b1 {\n background-color: rgba(38, 55, 88, 0.06)\n } .filter-tag__valueButton_1l3b1.filter-tag__filled_1l3b1:disabled {\n background-color: rgba(38, 55, 88, 0.06);\n } @media (hover: hover) {\n .filter-tag__valueButton_1l3b1.filter-tag__filled_1l3b1:not(:disabled):hover {\n background-color: rgba(38, 55, 88, 0.06);\n }\n } .filter-tag__valueButton_1l3b1.filter-tag__filled_1l3b1:not(:disabled):active {\n background-color: rgba(5, 12, 41, 0.14);\n }\n\n.filter-tag__component_t6vcp.filter-tag__disabled_t6vcp {\n background-color: transparent;\n } .filter-tag__component_t6vcp.filter-tag__checked_t6vcp:not(.filter-tag__disabled_t6vcp) {\n background-color: #f2f3f5;\n } @media (hover: hover) {\n .filter-tag__component_t6vcp.filter-tag__checked_t6vcp:not(.filter-tag__disabled_t6vcp):hover {\n background-color: #dcdde1;\n }\n } .filter-tag__component_t6vcp.filter-tag__checked_t6vcp:not(.filter-tag__disabled_t6vcp):active {\n background-color: #d2d3d9;\n } .filter-tag__chevron_t6vcp {\n color: rgba(255, 255, 255, 0.94);\n} .filter-tag__valueButton_t6vcp {\n color: rgba(255, 255, 255, 0.94);\n background-color: transparent;\n border: 1px solid rgba(228, 228, 251, 0.28)\n} .filter-tag__valueButton_t6vcp:disabled > .filter-tag__chevron_t6vcp {\n color: #4a4a51;\n } .filter-tag__valueButton_t6vcp.filter-tag__outlined_t6vcp {\n color: rgba(255, 255, 255, 0.94);\n border-color: rgba(228, 228, 251, 0.28);\n background-color: transparent\n } .filter-tag__valueButton_t6vcp.filter-tag__outlined_t6vcp:disabled {\n border-color: rgba(228, 228, 251, 0.28);\n color: rgba(233, 233, 250, 0.37);\n background-color: transparent;\n } @media (hover: hover) {\n .filter-tag__valueButton_t6vcp.filter-tag__outlined_t6vcp:not(:disabled):hover {\n border-color: rgba(228, 228, 251, 0.28);\n background-color: rgba(214, 214, 229, 0.07);\n }\n } .filter-tag__valueButton_t6vcp.filter-tag__outlined_t6vcp:not(:disabled):active {\n border-color: rgba(228, 228, 251, 0.28);\n background-color: rgba(225, 225, 248, 0.09);\n } .filter-tag__valueButton_t6vcp.filter-tag__filled_t6vcp {\n color: rgba(255, 255, 255, 0.94);\n border-color: transparent\n } .filter-tag__valueButton_t6vcp.filter-tag__filled_t6vcp:disabled {\n color: rgba(233, 233, 250, 0.37);\n } .filter-tag__valueButton_t6vcp.filter-tag__checked_t6vcp {\n color: rgba(3, 3, 6, 0.88);\n background-color: #f2f3f5;\n border-color: #f2f3f5\n } .filter-tag__valueButton_t6vcp.filter-tag__checked_t6vcp > .filter-tag__chevron_t6vcp {\n color: rgba(3, 3, 6, 0.88);\n } @media (hover: hover) {\n .filter-tag__valueButton_t6vcp.filter-tag__checked_t6vcp:not(:disabled):hover {\n background-color: #dcdde1;\n }\n } .filter-tag__valueButton_t6vcp.filter-tag__checked_t6vcp:not(:disabled):active {\n background-color: #d2d3d9;\n } @media (hover: hover) {\n .filter-tag__valueButton_t6vcp.filter-tag__checked_t6vcp:not(:disabled):hover + .filter-tag__clear_t6vcp:before {\n background-color: transparent;\n }\n } .filter-tag__valueButton_t6vcp.filter-tag__checked_t6vcp:not(:disabled):active + .filter-tag__clear_t6vcp:before {\n background-color: transparent;\n } .filter-tag__valueButton_t6vcp.filter-tag__checked_t6vcp:disabled {\n color: rgba(233, 233, 250, 0.37);\n background-color: rgba(214, 214, 229, 0.07)\n } .filter-tag__valueButton_t6vcp.filter-tag__checked_t6vcp:disabled > .filter-tag__chevron_t6vcp {\n color: #4a4a51;\n } .filter-tag__clear_t6vcp {\n color: rgba(4, 4, 21, 0.47);\n background-color: #f2f3f5\n} .filter-tag__clear_t6vcp:before {\n background-color: rgba(9, 12, 37, 0.28);\n } @media (hover: hover) {\n .filter-tag__clear_t6vcp:hover:before {\n background-color: transparent;\n }\n } .filter-tag__clear_t6vcp:active:before {\n background-color: transparent;\n } @media (hover: hover) {\n .filter-tag__clear_t6vcp:hover {\n color: rgba(4, 4, 19, 0.55);\n background-color: #dcdde1;\n }\n } .filter-tag__clear_t6vcp:active {\n color: rgba(1, 1, 12, 0.63);\n background-color: #d2d3d9;\n }\n.filter-tag__focused_ynm3c {\n outline: 2px solid #3193fc;\n} .filter-tag__valueButton_ynm3c.filter-tag__checked_ynm3c:disabled {\n border-color: transparent;\n }\n.filter-tag__component_kecm2.filter-tag__disabled_kecm2 {\n background-color: transparent;\n } .filter-tag__component_kecm2.filter-tag__checked_kecm2:not(.filter-tag__disabled_kecm2) {\n background-color: #212124;\n } @media (hover: hover) {\n .filter-tag__component_kecm2.filter-tag__checked_kecm2:not(.filter-tag__disabled_kecm2):hover {\n background-color: #2f2f32;\n }\n } .filter-tag__component_kecm2.filter-tag__checked_kecm2:not(.filter-tag__disabled_kecm2):active {\n background-color: #353539;\n } .filter-tag__chevron_kecm2 {\n color: rgba(3, 3, 6, 0.88);\n} .filter-tag__valueButton_kecm2 {\n color: rgba(3, 3, 6, 0.88);\n background-color: transparent;\n border: 1px solid rgba(9, 12, 37, 0.28)\n} .filter-tag__valueButton_kecm2:disabled > .filter-tag__chevron_kecm2 {\n color: #babbc2;\n } .filter-tag__valueButton_kecm2.filter-tag__outlined_kecm2 {\n color: rgba(3, 3, 6, 0.88);\n border-color: rgba(9, 12, 37, 0.28);\n background-color: transparent\n } .filter-tag__valueButton_kecm2.filter-tag__outlined_kecm2:disabled {\n border-color: rgba(9, 12, 37, 0.28);\n color: rgba(5, 8, 29, 0.38);\n background-color: transparent;\n } @media (hover: hover) {\n .filter-tag__valueButton_kecm2.filter-tag__outlined_kecm2:not(:disabled):hover {\n border-color: rgba(9, 12, 37, 0.28);\n background-color: rgba(38, 55, 88, 0.06);\n }\n } .filter-tag__valueButton_kecm2.filter-tag__outlined_kecm2:not(:disabled):active {\n border-color: rgba(9, 12, 37, 0.28);\n background-color: rgba(30, 43, 68, 0.08);\n } .filter-tag__valueButton_kecm2.filter-tag__filled_kecm2 {\n color: rgba(3, 3, 6, 0.88);\n border-color: transparent\n } .filter-tag__valueButton_kecm2.filter-tag__filled_kecm2:disabled {\n color: rgba(5, 8, 29, 0.38);\n } .filter-tag__valueButton_kecm2.filter-tag__checked_kecm2 {\n color: rgba(255, 255, 255, 0.94);\n background-color: #212124;\n border-color: #212124\n } .filter-tag__valueButton_kecm2.filter-tag__checked_kecm2 > .filter-tag__chevron_kecm2 {\n color: rgba(255, 255, 255, 0.94);\n } @media (hover: hover) {\n .filter-tag__valueButton_kecm2.filter-tag__checked_kecm2:not(:disabled):hover {\n background-color: #2f2f32;\n }\n } .filter-tag__valueButton_kecm2.filter-tag__checked_kecm2:not(:disabled):active {\n background-color: #353539;\n } @media (hover: hover) {\n .filter-tag__valueButton_kecm2.filter-tag__checked_kecm2:not(:disabled):hover + .filter-tag__clear_kecm2:before {\n background-color: transparent;\n }\n } .filter-tag__valueButton_kecm2.filter-tag__checked_kecm2:not(:disabled):active + .filter-tag__clear_kecm2:before {\n background-color: transparent;\n } .filter-tag__valueButton_kecm2.filter-tag__checked_kecm2:disabled {\n color: rgba(5, 8, 29, 0.38);\n background-color: rgba(38, 55, 88, 0.06)\n } .filter-tag__valueButton_kecm2.filter-tag__checked_kecm2:disabled > .filter-tag__chevron_kecm2 {\n color: #babbc2;\n } .filter-tag__clear_kecm2 {\n color: rgba(238, 238, 251, 0.55);\n background-color: #212124\n} .filter-tag__clear_kecm2:before {\n background-color: rgba(228, 228, 251, 0.28);\n } @media (hover: hover) {\n .filter-tag__clear_kecm2:hover:before {\n background-color: transparent;\n }\n } .filter-tag__clear_kecm2:active:before {\n background-color: transparent;\n } @media (hover: hover) {\n .filter-tag__clear_kecm2:hover {\n color: rgba(239, 240, 252, 0.65);\n background-color: #2f2f32;\n }\n } .filter-tag__clear_kecm2:active {\n color: rgba(243, 245, 254, 0.75);\n background-color: #353539;\n }.form-control__inner_1kqrd {\n background-color: rgba(214, 214, 229, 0.07);\n} .form-control__disabled_1kqrd.form-control__hasError_1kqrd {\n box-shadow: inset 0 0 0 2px #ff4837;\n}\n.form-control__inner_ah9vw {\n background-color: rgba(38, 55, 88, 0.06);\n} .form-control__disabled_ah9vw.form-control__hasError_ah9vw {\n box-shadow: inset 0 0 0 2px\n #ff4837;\n}\n\n.form-control__inner_6e8dl {\n background-color: rgba(222, 222, 238, 0.13);\n} .form-control__inner_6e8dl.form-control__hasError_6e8dl {\n background-color: rgba(225, 225, 248, 0.09);\n} .form-control__disabled_6e8dl.form-control__hasError_6e8dl {\n box-shadow: inset 0 0 0 2px #ff4837;\n}\n\n.form-control__inner_1bv5r {\n background-color: rgba(15, 25, 55, 0.1);\n} .form-control__inner_1bv5r.form-control__hasError_1bv5r {\n background-color: rgba(30, 43, 68, 0.08);\n} .form-control__disabled_1bv5r.form-control__hasError_1bv5r {\n box-shadow: inset 0 0 0 2px\n #ff4837;\n}\n.form-control__component_1w6ez {\n color: rgba(255, 255, 255, 0.94);\n} .form-control__label_1w6ez {\n color: rgba(238, 238, 251, 0.55);\n} .form-control__hint_1w6ez {\n color: rgba(238, 238, 251, 0.55);\n} .form-control__inner_1w6ez.form-control__disabled_1w6ez {\n color: rgba(238, 238, 251, 0.55);\n background-color: rgba(214, 214, 229, 0.07);\n} .form-control__disabled_1w6ez .form-control__label_1w6ez {\n color: rgba(233, 233, 250, 0.37);\n} .form-control__disabled_1w6ez.form-control__hasError_1w6ez {\n background-color: rgba(214, 214, 229, 0.07);\n} .form-control__inner_1w6ez:not(.form-control__disabled_1w6ez):hover {\n background-color: rgba(214, 214, 229, 0.07);\n} .form-control__focused_1w6ez.form-control__inner_1w6ez,\n.form-control__focused_1w6ez.form-control__inner_1w6ez:hover {\n background-color: rgba(214, 214, 229, 0.07);\n box-shadow: inset 0 0 0 2px rgba(238, 238, 251, 0.55)\n} .form-control__focused_1w6ez.form-control__inner_1w6ez.form-control__hasError_1w6ez, .form-control__focused_1w6ez.form-control__inner_1w6ez:hover.form-control__hasError_1w6ez {\n box-shadow: inset 0 0 0 2px #ff4837;\n background-color: rgba(214, 214, 229, 0.07);\n } .form-control__error_1w6ez {\n color: #ff4837;\n} .form-control__hasError_1w6ez {\n box-shadow: inset 0 0 0 2px #ff4837;\n} .form-control__hasError_1w6ez .form-control__label_1w6ez {\n color: rgba(238, 238, 251, 0.55);\n}\n\n.form-control__component_1fhlp {\n color: rgba(3, 3, 6, 0.88);\n} .form-control__label_1fhlp {\n color: rgba(4, 4, 19, 0.55);\n} .form-control__hint_1fhlp {\n color: rgba(4, 4, 19, 0.55);\n} .form-control__inner_1fhlp.form-control__disabled_1fhlp {\n color: rgba(4, 4, 19, 0.55);\n background-color: rgba(38, 55, 88, 0.06);\n} .form-control__disabled_1fhlp .form-control__label_1fhlp {\n color: rgba(5, 8, 29, 0.38);\n} .form-control__disabled_1fhlp.form-control__hasError_1fhlp {\n background-color: rgba(38, 55, 88, 0.06);\n} .form-control__inner_1fhlp:not(.form-control__disabled_1fhlp):hover {\n background-color: rgba(38, 55, 88, 0.06);\n} .form-control__focused_1fhlp.form-control__inner_1fhlp,\n.form-control__focused_1fhlp.form-control__inner_1fhlp:hover {\n background-color: #fff;\n box-shadow: inset 0 0 0 2px\n rgba(4, 4, 21, 0.47)\n} .form-control__focused_1fhlp.form-control__inner_1fhlp.form-control__hasError_1fhlp, .form-control__focused_1fhlp.form-control__inner_1fhlp:hover.form-control__hasError_1fhlp {\n box-shadow: inset 0 0 0 2px\n #ff4837;\n background-color: #fff;\n } .form-control__error_1fhlp {\n color: #ff4837;\n} .form-control__hasError_1fhlp {\n box-shadow: inset 0 0 0 2px\n #ff4837;\n} .form-control__hasError_1fhlp .form-control__label_1fhlp {\n color: rgba(4, 4, 19, 0.55);\n}.radio-group__label_1gg5s {\n color: rgba(255, 255, 255, 0.94);\n}\n.radio-group__label_wi0hl {\n color: rgba(238, 238, 251, 0.55);\n}\n.radio-group__error_1adqh {\n border-left: 1px solid #ff4837\n} .radio-group__errorMessage_1adqh {\n color: #ff4837;\n} .radio-group__hint_1adqh {\n color: rgba(238, 238, 251, 0.55);\n} .radio-group__hiddenInput_1adqh:focus ~ button {\n outline: 2px solid #3193fc;\n }.radio__container_gp98a:not(.radio__checked_gp98a):not(.radio__disabled_gp98a) .radio__circle_gp98a {\n background-color: #262629;\n border: 1.5px solid rgba(238, 238, 251, 0.55);\n } .radio__container_gp98a:not(.radio__checked_gp98a):not(.radio__disabled_gp98a):hover:not(:active) .radio__circle_gp98a {\n background-color: #2f2f32;\n border-color: rgba(238, 238, 251, 0.55);\n } .radio__container_gp98a:not(.radio__checked_gp98a):not(.radio__disabled_gp98a):active .radio__circle_gp98a {\n background-color: #353539;\n border-color: rgba(238, 238, 251, 0.55);\n } .radio__container_gp98a.radio__disabled_gp98a .radio__circle_gp98a {\n background-color: #262629;\n border: 1.5px solid rgba(222, 222, 238, 0.13);\n } .radio__container_gp98a.radio__disabled_gp98a .radio__label_gp98a {\n color: rgba(238, 238, 251, 0.55);\n } .radio__container_gp98a.radio__disabled_gp98a .radio__hint_gp98a {\n color: rgba(238, 238, 251, 0.55);\n } .radio__container_gp98a.radio__disabled_gp98a.radio__checked_gp98a .radio__circle_gp98a:before {\n background-color: rgba(228, 228, 251, 0.28);\n } .radio__container_gp98a.radio__checked_gp98a .radio__circle_gp98a {\n background-color: #f2f3f5;\n border: 1.5px solid transparent;\n } .radio__container_gp98a.radio__checked_gp98a:hover .radio__circle_gp98a {\n background-color: #dcdde1;\n border-color: transparent;\n } .radio__container_gp98a.radio__checked_gp98a:active .radio__circle_gp98a {\n background-color: #d2d3d9;\n border-color: transparent;\n } .radio__container_gp98a.radio__disabled_gp98a.radio__checked_gp98a .radio__circle_gp98a {\n background-color: rgba(225, 225, 248, 0.09);\n border-color: transparent;\n } .radio__circle_gp98a:before {\n background-color: rgba(3, 3, 6, 0.88);\n } .radio__label_gp98a {\n color: rgba(255, 255, 255, 0.94);\n} .radio__hint_gp98a {\n color: rgba(238, 238, 251, 0.55);\n}\n.radio__container_1ijv1.radio__focused_1ijv1 .radio__circle_1ijv1 {\n outline: 2px solid #3193fc;\n }\n.radio__container_16qog:not(.radio__checked_16qog):not(.radio__disabled_16qog) .radio__circle_16qog {\n background-color: #fff;\n border: 1.5px solid rgba(4, 4, 21, 0.47);\n } .radio__container_16qog:not(.radio__checked_16qog):not(.radio__disabled_16qog):hover:not(:active) .radio__circle_16qog {\n background-color: #e7e8eb;\n border-color: rgba(4, 4, 21, 0.47);\n } .radio__container_16qog:not(.radio__checked_16qog):not(.radio__disabled_16qog):active .radio__circle_16qog {\n background-color: #dcdde1;\n border-color: rgba(4, 4, 21, 0.47);\n } .radio__container_16qog.radio__disabled_16qog .radio__circle_16qog {\n background-color: #fff;\n border: 1.5px solid rgba(15, 25, 55, 0.1);\n } .radio__container_16qog.radio__disabled_16qog .radio__label_16qog {\n color: rgba(4, 4, 19, 0.55);\n } .radio__container_16qog.radio__disabled_16qog .radio__hint_16qog {\n color: rgba(4, 4, 19, 0.55);\n } .radio__container_16qog.radio__disabled_16qog.radio__checked_16qog .radio__circle_16qog:before {\n background-color: rgba(9, 12, 37, 0.28);\n } .radio__container_16qog.radio__checked_16qog .radio__circle_16qog {\n background-color: #212124;\n border: 1.5px solid transparent;\n } .radio__container_16qog.radio__checked_16qog:hover .radio__circle_16qog {\n background-color: #2f2f32;\n border-color: transparent;\n } .radio__container_16qog.radio__checked_16qog:active .radio__circle_16qog {\n background-color: #353539;\n border-color: transparent;\n } .radio__container_16qog.radio__disabled_16qog.radio__checked_16qog .radio__circle_16qog {\n background-color: rgba(30, 43, 68, 0.08);\n border-color: transparent;\n } .radio__circle_16qog:before {\n background-color: rgba(255, 255, 255, 0.94);\n } .radio__label_16qog {\n color: rgba(3, 3, 6, 0.88);\n} .radio__hint_16qog {\n color: rgba(4, 4, 19, 0.55);\n}.spinner__component_98he5 {\n color: rgba(255, 255, 255, 0.94);\n}\n@keyframes spinner__spin_animation_maei4 {\n}\n.spinner__component_2oeq8 {\n color: rgba(3, 3, 6, 0.88);\n}\n.page-indicator__element_117t1 {\n background: rgba(222, 222, 238, 0.13)\n} .page-indicator__element_117t1.page-indicator__active_117t1 {\n background: rgba(255, 255, 255, 0.94);\n }\n\n.page-indicator__element_3eb5k {\n background: rgba(15, 25, 55, 0.1)\n} .page-indicator__element_3eb5k.page-indicator__active_3eb5k {\n background: rgba(3, 3, 6, 0.88);\n }\n.page-indicator__element_12xza {\n background: rgba(222, 222, 238, 0.13)\n} .page-indicator__element_12xza.page-indicator__active_12xza {\n background: #f2f3f5;\n }\n.page-indicator__element_1rz5k {\n background: rgba(15, 25, 55, 0.1)\n} .page-indicator__element_1rz5k.page-indicator__active_1rz5k {\n background: #212124;\n }\n.page-indicator__element_10nj4 {\n background: rgba(222, 222, 238, 0.13)\n} .page-indicator__element_10nj4.page-indicator__active_10nj4 {\n .page-indicator__progress_10nj4 {\n background: rgba(255, 255, 255, 0.94);\n }\n }\n.page-indicator__element_1yh3b:not(.page-indicator__active_1yh3b) {\n } .page-indicator__element_1yh3b {\n}\n.page-indicator__element_8tglr {\n background: rgba(15, 25, 55, 0.1)\n} .page-indicator__element_8tglr.page-indicator__active_8tglr {\n .page-indicator__progress_8tglr {\n background: rgba(3, 3, 6, 0.88);\n }\n }\n.page-indicator__element_1oife {\n background: rgba(222, 222, 238, 0.13)\n} .page-indicator__element_1oife.page-indicator__active_1oife {\n .page-indicator__progress_1oife {\n background: #f2f3f5;\n }\n }\n.page-indicator__element_13mhq {\n background: rgba(15, 25, 55, 0.1)\n} .page-indicator__element_13mhq.page-indicator__active_13mhq {\n .page-indicator__progress_13mhq {\n background: #212124;\n }\n }\n.page-indicator__pageIndicator_1x9b8 {\n background: rgba(222, 222, 238, 0.13);\n} .page-indicator__element_1x9b8 {\n background: rgba(255, 255, 255, 0.94);\n}\n\n.page-indicator__pageIndicator_1i98g {\n background: rgba(15, 25, 55, 0.1);\n} .page-indicator__element_1i98g {\n background: rgba(3, 3, 6, 0.88);\n}\n.page-indicator__pageIndicator_3br00 {\n background: rgba(222, 222, 238, 0.13);\n} .page-indicator__element_3br00 {\n background: #f2f3f5;\n}\n.page-indicator__pageIndicator_4ubo6 {\n background: rgba(15, 25, 55, 0.1);\n} .page-indicator__element_4ubo6 {\n background: #212124;\n}\n.page-indicator__element_mezwp {\n background: rgba(222, 222, 238, 0.13)\n} .page-indicator__element_mezwp.page-indicator__active_mezwp {\n background: rgba(255, 255, 255, 0.94);\n }\n\n.page-indicator__element_1kqr8 {\n background: rgba(15, 25, 55, 0.1)\n} .page-indicator__element_1kqr8.page-indicator__active_1kqr8 {\n background: rgba(3, 3, 6, 0.88);\n }\n.page-indicator__element_s1iun {\n background: rgba(222, 222, 238, 0.13)\n} .page-indicator__element_s1iun.page-indicator__active_s1iun {\n background: #f2f3f5;\n }\n.page-indicator__element_1v6mm {\n background: rgba(15, 25, 55, 0.1)\n} .page-indicator__element_1v6mm.page-indicator__active_1v6mm {\n background: #212124;\n }\n.steps__option_1y13z {\n color: rgba(255, 255, 255, 0.94);\n background: rgba(222, 222, 238, 0.13)\n} .steps__dash_1y13z {\n border-top: 2px solid rgba(222, 222, 238, 0.13)\n} .steps__dash_1y13z.steps__completed_1y13z {\n border-top: 2px solid rgba(255, 255, 255, 0.94);\n } .steps__dash_1y13z.steps__vertical_1y13z {\n border-left: 2px solid rgba(222, 222, 238, 0.13);\n } .steps__dash_1y13z.steps__completed_1y13z.steps__vertical_1y13z {\n border-left: 2px solid rgba(255, 255, 255, 0.94);\n } .steps__text_1y13z {\n color: rgba(255, 255, 255, 0.94)\n} .steps__text_1y13z.steps__interactive_1y13z:not(.steps__disabled_1y13z):hover {\n background: rgba(214, 214, 229, 0.07);\n } .steps__text_1y13z.steps__interactive_1y13z:not(.steps__disabled_1y13z):active {\n background: rgba(225, 225, 248, 0.09);\n } .steps__focused_1y13z {\n outline: 2px solid #3193fc;\n} .steps__selected_1y13z .steps__text_1y13z {\n color: rgba(255, 255, 255, 0.94);\n } .steps__selected_1y13z .steps__option_1y13z {\n color: rgba(3, 3, 6, 0.88);\n background: rgba(255, 255, 255, 0.94);\n } .steps__checkbox_1y13z {\n border: 2px solid rgba(222, 222, 238, 0.13);\n} .steps__dot_1y13z {\n background: rgba(222, 222, 238, 0.13);\n} .steps__selected_1y13z .steps__checkbox_1y13z {\n border: 2px solid rgba(255, 255, 255, 0.94)\n} .steps__selected_1y13z .steps__checkbox_1y13z .steps__dot_1y13z {\n background: rgba(255, 255, 255, 0.94);\n } .steps__completedIndicator_1y13z > [class*='positive'] {\n color: rgba(255, 255, 255, 0.94);\n background-color: rgba(255, 255, 255, 0.94);\n}\n.switch__switch_n9rr1 {\n background-color: rgba(238, 238, 251, 0.55)\n} .switch__switch_n9rr1:hover {\n background-color: rgba(239, 240, 252, 0.65);\n } .switch__label_n9rr1 {\n color: rgba(255, 255, 255, 0.94);\n} .switch__hint_n9rr1 {\n color: rgba(238, 238, 251, 0.55);\n} .switch__checked_n9rr1 .switch__switch_n9rr1 {\n background-color: #17d055\n} .switch__checked_n9rr1 .switch__switch_n9rr1:hover {\n background-color: #22e068;\n } .switch__disabled_n9rr1 .switch__label_n9rr1 {\n color: rgba(238, 238, 251, 0.55);\n} .switch__disabled_n9rr1 .switch__hint_n9rr1 {\n color: rgba(238, 238, 251, 0.55);\n} .switch__disabled_n9rr1 .switch__switch_n9rr1 {\n background-color: rgba(225, 225, 248, 0.09)\n} .switch__disabled_n9rr1 .switch__switch_n9rr1:before {\n background-color: rgba(228, 228, 251, 0.28);\n } .switch__disabled_n9rr1.switch__checked_n9rr1 .switch__switch_n9rr1 {\n background-color: rgba(225, 225, 248, 0.09);\n}\n.switch__component_1ljxn {\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n} .switch__switch_1ljxn {\n border: 2px solid transparent;\n} .switch__switch_1ljxn:before {\n background-color: #fff;\n} .switch__errorMessage_1ljxn {\n color: #ff4837;\n} .switch__focused_1ljxn .switch__switch_1ljxn {\n outline: 2px solid #3193fc;\n}\n.switch__switch_xt62a {\n background-color: rgba(4, 4, 21, 0.47)\n} .switch__switch_xt62a:hover {\n background-color: rgba(4, 4, 19, 0.55);\n } .switch__label_xt62a {\n color: rgba(3, 3, 6, 0.88);\n} .switch__hint_xt62a {\n color: rgba(4, 4, 19, 0.55);\n} .switch__checked_xt62a .switch__switch_xt62a {\n background-color: #0cc44d\n} .switch__checked_xt62a .switch__switch_xt62a:hover {\n background-color: #04b545;\n } .switch__disabled_xt62a .switch__label_xt62a {\n color: rgba(4, 4, 19, 0.55);\n} .switch__disabled_xt62a .switch__hint_xt62a {\n color: rgba(4, 4, 19, 0.55);\n} .switch__disabled_xt62a .switch__switch_xt62a {\n background-color: rgba(30, 43, 68, 0.08)\n} .switch__disabled_xt62a .switch__switch_xt62a:before {\n background-color: rgba(9, 12, 37, 0.28);\n } .switch__disabled_xt62a.switch__checked_xt62a .switch__switch_xt62a {\n background-color: rgba(30, 43, 68, 0.08);\n}\n.system-message__component_1vhdq {\n color: rgba(238, 238, 251, 0.55);\n}\n\n\n.system-message__component_1hnh8 {\n color: rgba(255, 255, 255, 0.94);\n}\n\n.system-message__component_1mhue {\n color: rgba(255, 255, 255, 0.94);\n}\n.base-modal__component_1x4v3 {\n background: #1c1c1e;\n}.popover__component_ebmxs {\n background-color: transparent;\n color: rgba(255, 255, 255, 0.94);\n} .popover__inner_ebmxs {\n background-color: #1c1c1e;\n box-shadow: 0 20px 24px rgba(0, 0, 0, 0.08), 0 12px 16px rgba(0, 0, 0, 0.04),\n 0 4px 8px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.04);\n border: 1px solid transparent;\n} .popover__arrow_ebmxs:after {\n background-color: #1c1c1e;\n border: 1px solid transparent;\n}.tag__filled_173rf {\n background-color: rgba(222, 222, 238, 0.13)\n} .tag__filled_173rf:disabled {\n background-color: rgba(214, 214, 229, 0.07);\n border-color: transparent;\n } @media (hover: hover) {\n .tag__filled_173rf:hover:not(:disabled) {\n background-color: rgba(234, 234, 248, 0.15);\n }\n } .tag__filled_173rf:active:not(:disabled) {\n background-color: rgba(231, 231, 248, 0.18);\n }\n\n.tag__filled_15un7 {\n background-color: rgba(15, 25, 55, 0.1)\n} .tag__filled_15un7:disabled {\n background-color: rgba(38, 55, 88, 0.06);\n } @media (hover: hover) {\n .tag__filled_15un7:hover:not(:disabled) {\n background-color: rgba(5, 12, 41, 0.14);\n }\n } .tag__filled_15un7:active:not(:disabled) {\n background-color: rgba(5, 11, 44, 0.18);\n }\n.tag__filled_1pudn {\n background-color: rgba(214, 214, 229, 0.07)\n} .tag__filled_1pudn:disabled {\n background-color: rgba(214, 214, 229, 0.07);\n } @media (hover: hover) {\n .tag__filled_1pudn:hover:not(:disabled) {\n background-color: rgba(214, 214, 229, 0.07);\n }\n } .tag__filled_1pudn:active:not(:disabled) {\n background-color: rgba(222, 222, 238, 0.13);\n }\n.tag__filled_1342y {\n background-color: rgba(38, 55, 88, 0.06)\n} .tag__filled_1342y:disabled {\n background-color: rgba(38, 55, 88, 0.06);\n } @media (hover: hover) {\n .tag__filled_1342y:hover:not(:disabled) {\n background-color: rgba(38, 55, 88, 0.06);\n }\n } .tag__filled_1342y:active:not(:disabled) {\n background-color: rgba(5, 12, 41, 0.14);\n }\n\n.tag__component_1my7p.tag__outlined_1my7p {\n color: rgba(255, 255, 255, 0.94);\n border-color: rgba(228, 228, 251, 0.28);\n background-color: transparent\n } .tag__component_1my7p.tag__outlined_1my7p:disabled {\n border-color: rgba(228, 228, 251, 0.28);\n color: rgba(233, 233, 250, 0.37);\n background-color: transparent;\n } @media (hover: hover) {\n .tag__component_1my7p.tag__outlined_1my7p:hover:not(:disabled) {\n border-color: rgba(228, 228, 251, 0.28);\n background-color: rgba(214, 214, 229, 0.07);\n }\n } .tag__component_1my7p.tag__outlined_1my7p:active:not(:disabled) {\n border-color: rgba(228, 228, 251, 0.28);\n background-color: rgba(225, 225, 248, 0.09);\n } .tag__component_1my7p.tag__transparent_1my7p {\n color: rgba(255, 255, 255, 0.94);\n border-color: transparent;\n background-color: transparent\n } .tag__component_1my7p.tag__transparent_1my7p:disabled {\n color: rgba(233, 233, 250, 0.37);\n background-color: transparent;\n } @media (hover: hover) {\n .tag__component_1my7p.tag__transparent_1my7p:hover:not(:disabled) {\n background-color: rgba(214, 214, 229, 0.07);\n }\n } .tag__component_1my7p.tag__transparent_1my7p:active:not(:disabled) {\n background-color: rgba(225, 225, 248, 0.09);\n } .tag__component_1my7p.tag__filled_1my7p {\n color: rgba(255, 255, 255, 0.94);\n border-color: transparent\n } .tag__component_1my7p.tag__filled_1my7p:disabled {\n color: rgba(233, 233, 250, 0.37);\n } .tag__component_1my7p.tag__checked_1my7p {\n color: rgba(3, 3, 6, 0.88);\n border-color: #f2f3f5;\n background-color: #f2f3f5\n } .tag__component_1my7p.tag__checked_1my7p:disabled {\n border-color: transparent;\n color: rgba(233, 233, 250, 0.37);\n background-color: rgba(214, 214, 229, 0.07);\n } @media (hover: hover) {\n .tag__component_1my7p.tag__checked_1my7p:hover:not(:disabled) {\n background-color: #dcdde1;\n border-color: #dcdde1;\n }\n } .tag__component_1my7p.tag__checked_1my7p:active:not(:disabled) {\n background-color: #d2d3d9;\n border-color: #d2d3d9;\n }\n.tag__focused_1i6do {\n outline: 2px solid #3193fc;\n}\n.tag__component_14mj5.tag__outlined_14mj5 {\n color: rgba(3, 3, 6, 0.88);\n border-color: rgba(9, 12, 37, 0.28);\n background-color: transparent\n } .tag__component_14mj5.tag__outlined_14mj5:disabled {\n border-color: rgba(9, 12, 37, 0.28);\n color: rgba(5, 8, 29, 0.38);\n background-color: transparent;\n } @media (hover: hover) {\n .tag__component_14mj5.tag__outlined_14mj5:hover:not(:disabled) {\n border-color: rgba(9, 12, 37, 0.28);\n background-color: rgba(38, 55, 88, 0.06);\n }\n } .tag__component_14mj5.tag__outlined_14mj5:active:not(:disabled) {\n border-color: rgba(9, 12, 37, 0.28);\n background-color: rgba(30, 43, 68, 0.08);\n } .tag__component_14mj5.tag__transparent_14mj5 {\n color: rgba(3, 3, 6, 0.88);\n border-color: transparent;\n background-color: transparent\n } .tag__component_14mj5.tag__transparent_14mj5:disabled {\n color: rgba(5, 8, 29, 0.38);\n background-color: transparent;\n } @media (hover: hover) {\n .tag__component_14mj5.tag__transparent_14mj5:hover:not(:disabled) {\n background-color: rgba(38, 55, 88, 0.06);\n }\n } .tag__component_14mj5.tag__transparent_14mj5:active:not(:disabled) {\n background-color: rgba(30, 43, 68, 0.08);\n } .tag__component_14mj5.tag__filled_14mj5 {\n color: rgba(3, 3, 6, 0.88);\n border-color: transparent\n } .tag__component_14mj5.tag__filled_14mj5:disabled {\n color: rgba(5, 8, 29, 0.38);\n } .tag__component_14mj5.tag__checked_14mj5 {\n color: rgba(255, 255, 255, 0.94);\n border-color: #212124;\n background-color: #212124\n } .tag__component_14mj5.tag__checked_14mj5:disabled {\n border-color: transparent;\n color: rgba(5, 8, 29, 0.38);\n background-color: rgba(38, 55, 88, 0.06);\n } @media (hover: hover) {\n .tag__component_14mj5.tag__checked_14mj5:hover:not(:disabled) {\n background-color: #2f2f32;\n border-color: #2f2f32;\n }\n } .tag__component_14mj5.tag__checked_14mj5:active:not(:disabled) {\n background-color: #353539;\n border-color: #353539;\n }.typography__tertiary_131py {\n color: rgba(233, 233, 250, 0.37);\n} .typography__disabled_131py {\n color: rgba(231, 231, 248, 0.18);\n} .typography__accent_131py {\n color: #f83a2a;\n} .typography__primary_131py {\n color: rgba(255, 255, 255, 0.94);\n} .typography__attention_131py {\n color: #fa9313;\n} .typography__positive_131py {\n color: #0cc44d;\n} .typography__secondary_131py {\n color: rgba(238, 238, 251, 0.55);\n} .typography__tertiary-inverted_131py {\n color: rgba(5, 8, 29, 0.38);\n} .typography__primary-inverted_131py {\n color: rgba(3, 3, 6, 0.88);\n} .typography__secondary-inverted_131py {\n color: rgba(4, 4, 19, 0.55);\n} .typography__link_131py {\n color: #4a9dfc;\n} .typography__negative_131py {\n color: #ff4837;\n} .typography__static-primary-light_131py {\n color: #fff;\n} .typography__static-secondary-light_131py {\n color: rgba(238, 238, 251, 0.55);\n} .typography__static-tertiary-light_131py {\n color: rgba(233, 233, 250, 0.37);\n} .typography__static-primary-dark_131py {\n color: #0e0e0e;\n} .typography__static-secondary-dark_131py {\n color: rgba(4, 4, 19, 0.55);\n} .typography__static-tertiary-dark_131py {\n color: rgba(5, 8, 29, 0.38);\n} .typography__static-accent_131py {\n color: #ef3124;\n} .typography__static-positive_131py {\n color: #0d9336;\n}\n\n\n\n\n\n\n.sortable-list__primary_owtx5 {\n background: #262629;\n} .sortable-list__secondary_owtx5 {\n background: #1c1c1e;\n}\n.sortable-list__component_q3vn2:hover .sortable-list__icon_q3vn2 {\n color: rgba(255, 255, 255, 0.94);\n } .sortable-list__icon_q3vn2 {\n color: rgba(238, 238, 251, 0.55);\n} .sortable-list__dragOverlay_q3vn2 {\n box-shadow: 0 12px 16px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.04),\n 0 0 1px rgba(0, 0, 0, 0.04)\n} .sortable-list__dragOverlay_q3vn2 .sortable-list__icon_q3vn2 {\n color: rgba(255, 255, 255, 0.94);\n } @keyframes sortable-list__pop_q3vn2 {\n to {\n box-shadow: 0 12px 16px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.04),\n 0 0 1px rgba(0, 0, 0, 0.04);\n }\n}.textarea__input_1n9em {\n color: rgba(255, 255, 255, 0.94);\n caret-color: rgba(255, 255, 255, 0.94);\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n} .textarea__input_1n9em:-webkit-autofill {\n -webkit-text-fill-color: rgba(255, 255, 255, 0.94);\n} .textarea__input_1n9em::placeholder {\n color: rgba(238, 238, 251, 0.55);\n} .textarea__hasInnerLabel_1n9em::placeholder {\n color: rgba(233, 233, 250, 0.37);\n} .textarea__input_1n9em:read-only:not(.textarea__disableUserInput_1n9em) {\n color: rgba(233, 233, 250, 0.37)\n} .textarea__input_1n9em:read-only:not(.textarea__disableUserInput_1n9em):focus::placeholder {\n color: rgba(238, 238, 251, 0.55);\n } .textarea__input_1n9em:disabled {\n color: rgba(233, 233, 250, 0.37);\n -webkit-text-fill-color: rgba(233, 233, 250, 0.37);\n} .textarea__input_1n9em:focus::placeholder {\n color: rgba(233, 233, 250, 0.37);\n} .textarea__error_1n9em {\n color: rgba(255, 255, 255, 0.94);\n caret-color: rgba(255, 255, 255, 0.94);\n} .textarea__textarea_1n9em {\n color: rgba(255, 255, 255, 0.94);\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n} .textarea__textarea_1n9em::placeholder {\n color: rgba(238, 238, 251, 0.55);\n} .textarea__hasInnerLabel_1n9em::placeholder {\n color: rgba(233, 233, 250, 0.37);\n} .textarea__textarea_1n9em:disabled {\n color: rgba(233, 233, 250, 0.37);\n -webkit-text-fill-color: rgba(233, 233, 250, 0.37);\n} .textarea__textarea_1n9em:read-only {\n color: rgba(233, 233, 250, 0.37);\n} .textarea__textarea_1n9em:focus::placeholder {\n color: rgba(233, 233, 250, 0.37);\n} .textarea__hint_1n9em {\n color: rgba(238, 238, 251, 0.55);\n} .textarea__error_1n9em {\n color: #ff4837;\n}\n.textarea__textarea_1tpwy.textarea__overflow_1tpwy {\n color: transparent;\n caret-color: rgba(255, 255, 255, 0.94);\n } .textarea__customScrollbar_1tpwy::-webkit-scrollbar-track {\n background-color: transparent;\n } .textarea__customScrollbar_1tpwy::-webkit-scrollbar-track-piece {\n background-color: transparent;\n } .textarea__customScrollbar_1tpwy::-webkit-scrollbar-thumb {\n background-color: rgba(228, 228, 251, 0.28);\n border-color: transparent;\n } .textarea__customScrollbar_1tpwy::-webkit-scrollbar-thumb:active {\n background-color: rgba(238, 238, 251, 0.55);\n } .textarea__pseudoTextarea_1tpwy span {\n color: rgba(255, 255, 255, 0.94);\n } .textarea__pseudoTextarea_1tpwy .textarea__overflow_1tpwy {\n color: rgba(233, 233, 250, 0.37);\n } .textarea__pseudoTextarea_1tpwy::-webkit-scrollbar-thumb {\n background-color: transparent;\n } .textarea__focusVisible_1tpwy {\n outline: 2px solid #3193fc;\n} .textarea__textarea_1tpwy.textarea__textarea_1tpwy.textarea__size-40_1tpwy {\n border-top: 11px solid transparent;\n border-bottom: 11px solid transparent;\n } .textarea__textarea_1tpwy.textarea__textarea_1tpwy.textarea__size-48_1tpwy {\n border-top: 14px solid transparent;\n border-bottom: 14px solid transparent;\n } .textarea__textarea_1tpwy.textarea__textarea_1tpwy.textarea__size-56_1tpwy {\n border-top: 18px solid transparent;\n border-bottom: 18px solid transparent;\n } .textarea__textarea_1tpwy.textarea__textarea_1tpwy.textarea__size-64_1tpwy {\n border-top: 22px solid transparent;\n border-bottom: 22px solid transparent;\n } .textarea__textarea_1tpwy.textarea__textarea_1tpwy.textarea__size-72_1tpwy {\n border-top: 24px solid transparent;\n border-bottom: 24px solid transparent;\n } .textarea__textarea_1tpwy.textarea__textarea_1tpwy.textarea__hasInnerLabel_1tpwy.textarea__size-40_1tpwy {\n border-top: 19px solid transparent;\n border-bottom: 3px solid transparent;\n } .textarea__textarea_1tpwy.textarea__textarea_1tpwy.textarea__hasInnerLabel_1tpwy.textarea__size-48_1tpwy {\n border-top: 24px solid transparent;\n border-bottom: 4px solid transparent;\n } .textarea__textarea_1tpwy.textarea__textarea_1tpwy.textarea__hasInnerLabel_1tpwy.textarea__size-56_1tpwy {\n border-top: 24px solid transparent;\n border-bottom: 8px solid transparent;\n } .textarea__textarea_1tpwy.textarea__textarea_1tpwy.textarea__hasInnerLabel_1tpwy.textarea__size-64_1tpwy {\n border-top: 32px solid transparent;\n border-bottom: 12px solid transparent;\n } .textarea__textarea_1tpwy.textarea__textarea_1tpwy.textarea__hasInnerLabel_1tpwy.textarea__size-72_1tpwy {\n border-top: 34px solid transparent;\n border-bottom: 14px solid transparent;\n }\n.textarea__input_1pkkk {\n color: rgba(3, 3, 6, 0.88);\n caret-color: rgba(3, 3, 6, 0.88);\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n} .textarea__input_1pkkk:-webkit-autofill {\n -webkit-text-fill-color: rgba(3, 3, 6, 0.88);\n} .textarea__input_1pkkk::placeholder {\n color: rgba(4, 4, 19, 0.55);\n} .textarea__hasInnerLabel_1pkkk::placeholder {\n color: rgba(5, 8, 29, 0.38);\n} .textarea__input_1pkkk:read-only:not(.textarea__disableUserInput_1pkkk) {\n color: rgba(5, 8, 29, 0.38)\n} .textarea__input_1pkkk:read-only:not(.textarea__disableUserInput_1pkkk):focus::placeholder {\n color: rgba(4, 4, 19, 0.55);\n } .textarea__input_1pkkk:disabled {\n color: rgba(5, 8, 29, 0.38);\n -webkit-text-fill-color: rgba(5, 8, 29, 0.38);\n} .textarea__input_1pkkk:focus::placeholder {\n color: rgba(5, 8, 29, 0.38);\n} .textarea__error_1pkkk {\n color: rgba(3, 3, 6, 0.88);\n caret-color: rgba(3, 3, 6, 0.88);\n} .textarea__textarea_1pkkk {\n color: rgba(3, 3, 6, 0.88);\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n} .textarea__textarea_1pkkk::placeholder {\n color: rgba(4, 4, 19, 0.55);\n} .textarea__hasInnerLabel_1pkkk::placeholder {\n color: rgba(5, 8, 29, 0.38);\n} .textarea__textarea_1pkkk:disabled {\n color: rgba(5, 8, 29, 0.38);\n -webkit-text-fill-color: rgba(5, 8, 29, 0.38);\n} .textarea__textarea_1pkkk:read-only {\n color: rgba(5, 8, 29, 0.38);\n} .textarea__textarea_1pkkk:focus::placeholder {\n color: rgba(5, 8, 29, 0.38);\n} .textarea__hint_1pkkk {\n color: rgba(238, 238, 251, 0.55);\n} .textarea__error_1pkkk {\n color: #ff4837;\n}.action-button__primary_oc583 {\n color: rgba(255, 255, 255, 0.94)\n} .action-button__primary_oc583 .action-button__iconWrapper_oc583 {\n color: rgba(3, 3, 6, 0.88);\n background-color: #f2f3f5;\n } .action-button__primary_oc583:hover .action-button__iconWrapper_oc583 {\n background-color: #dcdde1;\n } .action-button__primary_oc583:active .action-button__iconWrapper_oc583 {\n background-color: #d2d3d9;\n } .action-button__primary_oc583 .action-button__loader_oc583 {\n color: rgba(3, 3, 6, 0.88);\n } .action-button__secondary_oc583 {\n color: rgba(255, 255, 255, 0.94)\n} .action-button__secondary_oc583 .action-button__iconWrapper_oc583 {\n color: rgba(255, 255, 255, 0.94);\n background-color: #1c1c1e;\n } .action-button__secondary_oc583:hover .action-button__iconWrapper_oc583 {\n background-color: #212124;\n } .action-button__secondary_oc583:active .action-button__iconWrapper_oc583 {\n background-color: #29292c;\n } .action-button__secondary_oc583 .action-button__loader_oc583 {\n color: rgba(255, 255, 255, 0.94);\n } .action-button__disabled_oc583 {\n color: rgba(233, 233, 250, 0.37)\n} .action-button__disabled_oc583 .action-button__iconWrapper_oc583 {\n color: #4a4a51;\n background-color: #1c1c1e;\n }\n.action-button__component_pwjf4 {\n -webkit-tap-highlight-color: transparent\n} .action-button__focused_pwjf4 {\n outline: 2px solid #3193fc;\n}\n.action-button__primary_7pexp {\n color: rgba(3, 3, 6, 0.88)\n} .action-button__primary_7pexp .action-button__iconWrapper_7pexp {\n color: rgba(255, 255, 255, 0.94);\n background-color: #212124;\n } .action-button__primary_7pexp:hover .action-button__iconWrapper_7pexp {\n background-color: #2f2f32;\n } .action-button__primary_7pexp:active .action-button__iconWrapper_7pexp {\n background-color: #353539;\n } .action-button__primary_7pexp .action-button__loader_7pexp {\n color: rgba(3, 3, 6, 0.88);\n } .action-button__secondary_7pexp {\n color: rgba(3, 3, 6, 0.88)\n} .action-button__secondary_7pexp .action-button__iconWrapper_7pexp {\n color: rgba(3, 3, 6, 0.88);\n background-color: #f2f3f5;\n } .action-button__secondary_7pexp:hover .action-button__iconWrapper_7pexp {\n background-color: #e7e8eb;\n } .action-button__secondary_7pexp:active .action-button__iconWrapper_7pexp {\n background-color: #dcdde1;\n } .action-button__secondary_7pexp .action-button__loader_7pexp {\n color: rgba(255, 255, 255, 0.94);\n } .action-button__disabled_7pexp {\n color: rgba(5, 8, 29, 0.38)\n} .action-button__disabled_7pexp .action-button__iconWrapper_7pexp {\n color: #babbc2;\n background-color: #f2f3f5;\n }\n.action-button__primary_1sxn6 {\n color: rgba(3, 3, 6, 0.88)\n} .action-button__primary_1sxn6 .action-button__iconWrapper_1sxn6 {\n color: rgba(255, 255, 255, 0.94);\n background-color: #212124;\n } .action-button__primary_1sxn6 .action-button__loader_1sxn6 {\n color: rgba(255, 255, 255, 0.94);\n } .action-button__secondary_1sxn6 {\n color: rgba(3, 3, 6, 0.88)\n} .action-button__secondary_1sxn6 .action-button__iconWrapper_1sxn6 {\n color: rgba(3, 3, 6, 0.88);\n background-color: #f2f3f5;\n } .action-button__secondary_1sxn6 .action-button__loader_1sxn6 {\n color: rgba(3, 3, 6, 0.88);\n } .action-button__disabled_1sxn6 {\n color: rgba(5, 8, 29, 0.38)\n} .action-button__disabled_1sxn6 .action-button__iconWrapper_1sxn6 {\n color: #babbc2;\n background-color: #f2f3f5;\n }.drawer__customScrollbar_tiv6x::-webkit-scrollbar-track {\n background-color: transparent;\n } .drawer__customScrollbar_tiv6x::-webkit-scrollbar-track-piece {\n background-color: transparent;\n } .drawer__customScrollbar_tiv6x::-webkit-scrollbar-thumb {\n background-color: rgba(228, 228, 251, 0.28);\n border-color: transparent;\n } .drawer__customScrollbar_tiv6x::-webkit-scrollbar-thumb:active {\n background-color: rgba(238, 238, 251, 0.55);\n } .drawer__backdropEnter_tiv6x {\n background-color: transparent;\n} .drawer__backdropEnterActive_tiv6x,\n.drawer__backdropEnterDone_tiv6x {\n background-color: rgba(0, 0, 0, 0.7);\n} .drawer__backdropExit_tiv6x {\n background-color: rgba(0, 0, 0, 0.7);\n} .drawer__backdropExitActive_tiv6x,\n.drawer__backdropExitDone_tiv6x {\n background-color: transparent;\n}.button__primary_afm85 {\n color: rgba(3, 3, 6, 0.88);\n background-color: #f2f3f5\n} @media (hover: hover) {\n .button__primary_afm85:hover {\n background-color: #dcdde1;\n }\n } .button__primary_afm85:active {\n background-color: #d2d3d9;\n } .button__primary_afm85 > .button__loader_afm85 {\n color: rgba(3, 3, 6, 0.88);\n } .button__secondary_afm85 {\n background-color: rgba(222, 222, 238, 0.13)\n} .button__secondary_afm85:hover {\n background-color: rgba(234, 234, 248, 0.15);\n } .button__secondary_afm85:active {\n background-color: rgba(231, 231, 248, 0.18);\n } .button__text_afm85:active {\n color: rgba(255, 255, 255, 0.6);\n } .button__ghost_afm85:active {\n color: rgba(255, 255, 255, 0.6);\n } .button__component_afm85[disabled].button__primary_afm85 {\n color: rgba(233, 233, 250, 0.37);\n background-color: rgba(214, 214, 229, 0.07)\n } .button__component_afm85[disabled].button__primary_afm85.button__loading_afm85 {\n color: rgba(3, 3, 6, 0.88);\n background-color: #f2f3f5;\n } .button__component_afm85[disabled].button__secondary_afm85 {\n color: rgba(233, 233, 250, 0.37);\n background-color: rgba(214, 214, 229, 0.07);\n } .button__component_afm85[disabled].button__outlined_afm85 {\n color: rgba(233, 233, 250, 0.37);\n border-color: rgba(228, 228, 251, 0.28);\n } .button__component_afm85[disabled].button__tertiary_afm85 {\n color: rgba(233, 233, 250, 0.37);\n border-color: rgba(228, 228, 251, 0.28);\n } .button__component_afm85[disabled].button__transparent_afm85 {\n color: rgba(233, 233, 250, 0.37);\n } .button__component_afm85[disabled].button__link_afm85 {\n color: rgba(233, 233, 250, 0.37);\n } .button__component_afm85[disabled].button__text_afm85 {\n color: rgba(233, 233, 250, 0.37);\n } .button__component_afm85[disabled].button__ghost_afm85 {\n color: rgba(233, 233, 250, 0.37);\n }\n\n.button__primary_1rn2g {\n color: rgba(255, 255, 255, 0.94);\n background-color: #212124\n} @media (hover: hover) {\n .button__primary_1rn2g:hover {\n background-color: #2f2f32;\n }\n } .button__primary_1rn2g:active {\n background-color: #353539;\n } .button__primary_1rn2g > .button__loader_1rn2g {\n color: rgba(255, 255, 255, 0.94);\n } .button__secondary_1rn2g {\n background-color: rgba(15, 25, 55, 0.1)\n} .button__secondary_1rn2g:hover {\n background-color: rgba(5, 12, 41, 0.14);\n } .button__secondary_1rn2g:active {\n background-color: rgba(5, 11, 44, 0.18);\n } .button__text_1rn2g:active {\n color: rgba(4, 4, 19, 0.55);\n } .button__ghost_1rn2g:active {\n color: rgba(4, 4, 19, 0.55);\n } .button__component_1rn2g[disabled].button__primary_1rn2g {\n color: rgba(5, 8, 29, 0.38);\n background-color: rgba(38, 55, 88, 0.06)\n } .button__component_1rn2g[disabled].button__primary_1rn2g.button__loading_1rn2g {\n color: rgba(255, 255, 255, 0.94);\n background-color: #212124;\n } .button__component_1rn2g[disabled].button__secondary_1rn2g {\n color: rgba(5, 8, 29, 0.38);\n background-color: rgba(38, 55, 88, 0.06);\n } .button__component_1rn2g[disabled].button__outlined_1rn2g {\n color: rgba(5, 8, 29, 0.38);\n border-color: rgba(9, 12, 37, 0.28);\n } .button__component_1rn2g[disabled].button__tertiary_1rn2g {\n color: rgba(5, 8, 29, 0.38);\n border-color: rgba(9, 12, 37, 0.28);\n } .button__component_1rn2g[disabled].button__transparent_1rn2g {\n color: rgba(5, 8, 29, 0.38);\n } .button__component_1rn2g[disabled].button__link_1rn2g {\n color: rgba(5, 8, 29, 0.38);\n } .button__component_1rn2g[disabled].button__text_1rn2g {\n color: rgba(5, 8, 29, 0.38);\n } .button__component_1rn2g[disabled].button__ghost_1rn2g {\n color: rgba(5, 8, 29, 0.38);\n }\n.button__primary_eekaz {\n color: rgba(3, 3, 6, 0.88);\n background-color: #f2f3f5\n} @media (hover: hover) {\n .button__primary_eekaz:hover {\n background-color: #dcdde1;\n }\n } .button__primary_eekaz:active {\n background-color: #d2d3d9;\n } .button__primary_eekaz > .button__loader_eekaz {\n color: rgba(3, 3, 6, 0.88);\n } .button__secondary_eekaz {\n background-color: rgba(214, 214, 229, 0.07)\n} .button__secondary_eekaz:active {\n background-color: rgba(222, 222, 238, 0.13);\n } .button__text_eekaz:active {\n color: rgba(255, 255, 255, 0.6);\n } .button__ghost_eekaz:active {\n color: rgba(255, 255, 255, 0.6);\n } .button__component_eekaz[disabled].button__primary_eekaz {\n color: rgba(233, 233, 250, 0.37);\n background-color: rgba(214, 214, 229, 0.07)\n } .button__component_eekaz[disabled].button__primary_eekaz.button__loading_eekaz {\n color: rgba(3, 3, 6, 0.88);\n background-color: #f2f3f5;\n } .button__component_eekaz[disabled].button__secondary_eekaz {\n color: rgba(233, 233, 250, 0.37);\n background-color: rgba(214, 214, 229, 0.07);\n } .button__component_eekaz[disabled].button__outlined_eekaz {\n color: rgba(233, 233, 250, 0.37);\n border-color: rgba(228, 228, 251, 0.28);\n } .button__component_eekaz[disabled].button__tertiary_eekaz {\n color: rgba(233, 233, 250, 0.37);\n border-color: rgba(228, 228, 251, 0.28);\n } .button__component_eekaz[disabled].button__transparent_eekaz {\n color: rgba(233, 233, 250, 0.37);\n } .button__component_eekaz[disabled].button__link_eekaz {\n color: rgba(233, 233, 250, 0.37);\n } .button__component_eekaz[disabled].button__text_eekaz {\n color: rgba(233, 233, 250, 0.37);\n } .button__component_eekaz[disabled].button__ghost_eekaz {\n color: rgba(233, 233, 250, 0.37);\n }\n.button__primary_142ln {\n color: rgba(255, 255, 255, 0.94);\n background-color: #212124\n} @media (hover: hover) {\n .button__primary_142ln:hover {\n background-color: #2f2f32;\n }\n } .button__primary_142ln:active {\n background-color: #353539;\n } .button__primary_142ln > .button__loader_142ln {\n color: rgba(255, 255, 255, 0.94);\n } .button__secondary_142ln {\n background-color: rgba(38, 55, 88, 0.06)\n} .button__secondary_142ln:active {\n background-color: rgba(5, 12, 41, 0.14);\n } .button__text_142ln:active {\n color: rgba(4, 4, 19, 0.55);\n } .button__ghost_142ln:active {\n color: rgba(4, 4, 19, 0.55);\n } .button__component_142ln[disabled].button__primary_142ln {\n color: rgba(5, 8, 29, 0.38);\n background-color: rgba(38, 55, 88, 0.06)\n } .button__component_142ln[disabled].button__primary_142ln.button__loading_142ln {\n color: rgba(255, 255, 255, 0.94);\n background-color: #212124;\n } .button__component_142ln[disabled].button__secondary_142ln {\n color: rgba(5, 8, 29, 0.38);\n background-color: rgba(38, 55, 88, 0.06);\n } .button__component_142ln[disabled].button__outlined_142ln {\n color: rgba(5, 8, 29, 0.38);\n border-color: rgba(9, 12, 37, 0.28);\n } .button__component_142ln[disabled].button__tertiary_142ln {\n color: rgba(5, 8, 29, 0.38);\n border-color: rgba(9, 12, 37, 0.28);\n } .button__component_142ln[disabled].button__transparent_142ln {\n color: rgba(5, 8, 29, 0.38);\n } .button__component_142ln[disabled].button__link_142ln {\n color: rgba(5, 8, 29, 0.38);\n } .button__component_142ln[disabled].button__text_142ln {\n color: rgba(5, 8, 29, 0.38);\n } .button__component_142ln[disabled].button__ghost_142ln {\n color: rgba(5, 8, 29, 0.38);\n }\n\n.button__accent_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n background-color: #f83a2a;\n border: 1px solid transparent\n} @media (hover: hover) {\n .button__accent_tozm2:hover {\n background-color: #ff503e;\n }\n } .button__accent_tozm2:active {\n background-color: #fd624e;\n } .button__accent_tozm2 > .button__loader_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n } .button__primary_tozm2 {\n border: 1px solid transparent\n} .button__primary_tozm2 .button__hint_tozm2 {\n color: rgba(4, 4, 19, 0.55);\n } .button__secondary_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n border: 1px solid transparent\n} .button__secondary_tozm2 > .button__loader_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n } .button__secondary_tozm2 .button__hint_tozm2 {\n color: rgba(238, 238, 251, 0.55);\n } .button__outlined_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n background-color: rgba(255, 255, 255, 0);\n border: 1px solid rgba(255, 255, 255, 0.94)\n} @media (hover: hover) {\n .button__outlined_tozm2:hover {\n background-color: rgba(214, 214, 229, 0.07);\n border-color: rgba(255, 255, 255, 0.94);\n }\n } .button__outlined_tozm2:active {\n background-color: rgba(225, 225, 248, 0.09);\n } .button__outlined_tozm2 > .button__loader_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n } .button__outlined_tozm2 .button__hint_tozm2 {\n color: rgba(238, 238, 251, 0.55);\n } .button__tertiary_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n background-color: rgba(255, 255, 255, 0);\n border: 1px solid rgba(255, 255, 255, 0.94)\n} @media (hover: hover) {\n .button__tertiary_tozm2:hover {\n background-color: rgba(214, 214, 229, 0.07);\n border-color: rgba(255, 255, 255, 0.94);\n }\n } .button__tertiary_tozm2:active {\n background-color: rgba(225, 225, 248, 0.09);\n } .button__tertiary_tozm2 > .button__loader_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n } .button__tertiary_tozm2 .button__hint_tozm2 {\n color: rgba(238, 238, 251, 0.55);\n } .button__filled_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n background-color: rgba(222, 222, 238, 0.13);\n border: 1px solid transparent\n} @media (hover: hover) {\n .button__filled_tozm2:hover {\n background-color: rgba(234, 234, 248, 0.15);\n }\n } .button__filled_tozm2:active {\n background-color: rgba(231, 231, 248, 0.18);\n } .button__filled_tozm2 > .button__loader_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n } .button__transparent_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n background-color: transparent;\n border: 1px solid transparent\n} @media (hover: hover) {\n .button__transparent_tozm2:hover {\n background-color: rgba(214, 214, 229, 0.07);\n }\n } .button__transparent_tozm2:active {\n background-color: rgba(225, 225, 248, 0.09);\n } .button__transparent_tozm2 > .button__loader_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n } .button__transparent_tozm2 .button__hint_tozm2 {\n color: rgba(238, 238, 251, 0.55);\n } .button__link_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n background-color: transparent;\n border: 1px solid transparent\n} @media (hover: hover) {\n .button__link_tozm2:hover {\n background-color: rgba(214, 214, 229, 0.07);\n }\n } .button__link_tozm2:active {\n background-color: rgba(225, 225, 248, 0.09);\n } .button__link_tozm2 > .button__loader_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n } .button__text_tozm2 {\n background-color: transparent;\n color: rgba(255, 255, 255, 0.94)\n} @media (hover: hover) {\n .button__text_tozm2:hover {\n color: rgba(255, 255, 255, 0.7);\n }\n } .button__text_tozm2 > .button__loader_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n } .button__text_tozm2 .button__hint_tozm2 {\n color: rgba(238, 238, 251, 0.55);\n } .button__ghost_tozm2 {\n background-color: transparent;\n color: rgba(255, 255, 255, 0.94)\n} @media (hover: hover) {\n .button__ghost_tozm2:hover {\n color: rgba(255, 255, 255, 0.7);\n }\n } .button__ghost_tozm2 > .button__loader_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n } .button__component_tozm2[disabled].button__accent_tozm2 {\n color: rgba(233, 233, 250, 0.37);\n background-color: rgba(214, 214, 229, 0.07)\n } .button__component_tozm2[disabled].button__accent_tozm2.button__loading_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n background-color: #f83a2a;\n } .button__component_tozm2[disabled].button__secondary_tozm2 {\n border-color: transparent\n } .button__component_tozm2[disabled].button__secondary_tozm2.button__loading_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n background-color: rgba(222, 222, 238, 0.13);\n border-color: transparent;\n } .button__component_tozm2[disabled].button__outlined_tozm2 {\n background-color: rgba(255, 255, 255, 0)\n } .button__component_tozm2[disabled].button__outlined_tozm2.button__loading_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n border-color: rgba(255, 255, 255, 0.94);\n } .button__component_tozm2[disabled].button__tertiary_tozm2 {\n background-color: rgba(255, 255, 255, 0)\n } .button__component_tozm2[disabled].button__tertiary_tozm2.button__loading_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n border-color: rgba(255, 255, 255, 0.94);\n } .button__component_tozm2[disabled].button__filled_tozm2 {\n color: rgba(233, 233, 250, 0.37);\n background-color: rgba(214, 214, 229, 0.07)\n } .button__component_tozm2[disabled].button__filled_tozm2.button__loading_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n background-color: rgba(222, 222, 238, 0.13);\n } .button__component_tozm2[disabled].button__transparent_tozm2 {\n background-color: transparent\n } .button__component_tozm2[disabled].button__transparent_tozm2.button__loading_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n } .button__component_tozm2[disabled].button__link_tozm2 {\n background-color: transparent\n } .button__component_tozm2[disabled].button__link_tozm2.button__loading_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n } .button__component_tozm2[disabled].button__text_tozm2.button__loading_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n } .button__component_tozm2[disabled].button__ghost_tozm2.button__loading_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n }\n.button__component_c0wb2 {\n -webkit-tap-highlight-color: transparent;\n} .button__focused_c0wb2 {\n outline: 2px solid #3193fc;\n}\n.button__accent_1n55i {\n color: rgba(255, 255, 255, 0.94);\n background-color: #ef3124;\n border: 1px solid transparent\n} @media (hover: hover) {\n .button__accent_1n55i:hover {\n background-color: #e32a17;\n }\n } .button__accent_1n55i:active {\n background-color: #d72505;\n } .button__accent_1n55i > .button__loader_1n55i {\n color: rgba(255, 255, 255, 0.94);\n } .button__primary_1n55i {\n border: 1px solid transparent\n} .button__primary_1n55i .button__hint_1n55i {\n color: rgba(238, 238, 251, 0.55);\n } .button__secondary_1n55i {\n color: rgba(3, 3, 6, 0.88);\n border: 1px solid transparent\n} .button__secondary_1n55i > .button__loader_1n55i {\n color: rgba(3, 3, 6, 0.88);\n } .button__secondary_1n55i .button__hint_1n55i {\n color: rgba(4, 4, 19, 0.55);\n } .button__outlined_1n55i {\n color: rgba(3, 3, 6, 0.88);\n background-color: rgba(255, 255, 255, 0);\n border: 1px solid rgba(3, 3, 6, 0.88)\n} @media (hover: hover) {\n .button__outlined_1n55i:hover {\n background-color: rgba(38, 55, 88, 0.06);\n border-color: rgba(3, 3, 6, 0.88);\n }\n } .button__outlined_1n55i:active {\n background-color: rgba(30, 43, 68, 0.08);\n } .button__outlined_1n55i > .button__loader_1n55i {\n color: rgba(3, 3, 6, 0.88);\n } .button__outlined_1n55i .button__hint_1n55i {\n color: rgba(4, 4, 19, 0.55);\n } .button__tertiary_1n55i {\n color: rgba(3, 3, 6, 0.88);\n background-color: rgba(255, 255, 255, 0);\n border: 1px solid rgba(3, 3, 6, 0.88)\n} @media (hover: hover) {\n .button__tertiary_1n55i:hover {\n background-color: rgba(38, 55, 88, 0.06);\n border-color: rgba(3, 3, 6, 0.88);\n }\n } .button__tertiary_1n55i:active {\n background-color: rgba(30, 43, 68, 0.08);\n } .button__tertiary_1n55i > .button__loader_1n55i {\n color: rgba(3, 3, 6, 0.88);\n } .button__tertiary_1n55i .button__hint_1n55i {\n color: rgba(4, 4, 19, 0.55);\n } .button__filled_1n55i {\n color: rgba(3, 3, 6, 0.88);\n background-color: rgba(15, 25, 55, 0.1);\n border: 1px solid transparent\n} @media (hover: hover) {\n .button__filled_1n55i:hover {\n background-color: rgba(5, 12, 41, 0.14);\n }\n } .button__filled_1n55i:active {\n background-color: rgba(5, 11, 44, 0.18);\n } .button__filled_1n55i > .button__loader_1n55i {\n color: rgba(3, 3, 6, 0.88);\n } .button__transparent_1n55i {\n color: rgba(3, 3, 6, 0.88);\n background-color: transparent;\n border: 1px solid transparent\n} @media (hover: hover) {\n .button__transparent_1n55i:hover {\n background-color: rgba(38, 55, 88, 0.06);\n }\n } .button__transparent_1n55i:active {\n background-color: rgba(30, 43, 68, 0.08);\n } .button__transparent_1n55i > .button__loader_1n55i {\n color: rgba(3, 3, 6, 0.88);\n } .button__transparent_1n55i .button__hint_1n55i {\n color: rgba(4, 4, 19, 0.55);\n } .button__link_1n55i {\n color: rgba(3, 3, 6, 0.88);\n background-color: transparent;\n border: 1px solid transparent\n} @media (hover: hover) {\n .button__link_1n55i:hover {\n background-color: rgba(38, 55, 88, 0.06);\n }\n } .button__link_1n55i:active {\n background-color: rgba(30, 43, 68, 0.08);\n } .button__link_1n55i > .button__loader_1n55i {\n color: rgba(3, 3, 6, 0.88);\n } .button__text_1n55i {\n background-color: transparent;\n color: rgba(3, 3, 6, 0.88)\n} @media (hover: hover) {\n .button__text_1n55i:hover {\n color: rgba(1, 1, 12, 0.63);\n }\n } .button__text_1n55i > .button__loader_1n55i {\n color: rgba(3, 3, 6, 0.88);\n } .button__text_1n55i .button__hint_1n55i {\n color: rgba(4, 4, 19, 0.55);\n } .button__ghost_1n55i {\n background-color: transparent;\n color: rgba(3, 3, 6, 0.88)\n} @media (hover: hover) {\n .button__ghost_1n55i:hover {\n color: rgba(1, 1, 12, 0.63);\n }\n } .button__ghost_1n55i > .button__loader_1n55i {\n color: rgba(3, 3, 6, 0.88);\n } .button__component_1n55i[disabled].button__accent_1n55i {\n color: rgba(5, 8, 29, 0.38);\n background-color: rgba(38, 55, 88, 0.06)\n } .button__component_1n55i[disabled].button__accent_1n55i.button__loading_1n55i {\n color: rgba(255, 255, 255, 0.94);\n background-color: #ef3124;\n } .button__component_1n55i[disabled].button__secondary_1n55i {\n border-color: transparent\n } .button__component_1n55i[disabled].button__secondary_1n55i.button__loading_1n55i {\n color: rgba(3, 3, 6, 0.88);\n background-color: rgba(15, 25, 55, 0.1);\n border-color: transparent;\n } .button__component_1n55i[disabled].button__outlined_1n55i {\n background-color: rgba(255, 255, 255, 0)\n } .button__component_1n55i[disabled].button__outlined_1n55i.button__loading_1n55i {\n color: rgba(3, 3, 6, 0.88);\n } .button__component_1n55i[disabled].button__tertiary_1n55i {\n background-color: rgba(255, 255, 255, 0)\n } .button__component_1n55i[disabled].button__tertiary_1n55i.button__loading_1n55i {\n color: rgba(3, 3, 6, 0.88);\n } .button__component_1n55i[disabled].button__filled_1n55i {\n color: rgba(5, 8, 29, 0.38);\n background-color: rgba(38, 55, 88, 0.06)\n } .button__component_1n55i[disabled].button__filled_1n55i.button__loading_1n55i {\n color: rgba(3, 3, 6, 0.88);\n background-color: rgba(15, 25, 55, 0.1);\n } .button__component_1n55i[disabled].button__transparent_1n55i {\n background-color: transparent\n } .button__component_1n55i[disabled].button__transparent_1n55i.button__loading_1n55i {\n color: rgba(3, 3, 6, 0.88);\n } .button__component_1n55i[disabled].button__link_1n55i {\n background-color: transparent\n } .button__component_1n55i[disabled].button__link_1n55i.button__loading_1n55i {\n color: rgba(3, 3, 6, 0.88);\n } .button__component_1n55i[disabled].button__text_1n55i.button__loading_1n55i {\n color: rgba(3, 3, 6, 0.88);\n } .button__component_1n55i[disabled].button__ghost_1n55i.button__loading_1n55i {\n color: rgba(3, 3, 6, 0.88);\n }.pagination__component_14zfk {\n color: rgba(255, 255, 255, 0.94);\n}\n.pagination__dots_w3qrm {\n color: rgba(238, 238, 251, 0.55);\n}\n\nbutton.pagination__tag_b1whi.pagination__tag_b1whi {\n color: rgba(238, 238, 251, 0.55)\n} button.pagination__tag_b1whi.pagination__tag_b1whi:hover:not(:disabled) {\n background-color: rgba(214, 214, 229, 0.07);\n color: rgba(255, 255, 255, 0.94);\n } button.pagination__tag_b1whi.pagination__tag_b1whi:active:not(:disabled) {\n background-color: rgba(225, 225, 248, 0.09);\n } button.pagination__tag_b1whi.pagination__tag_b1whi.pagination__checked_b1whi {\n background-color: #f2f3f5;\n color: rgba(3, 3, 6, 0.88);\n } button.pagination__tag_b1whi.pagination__tag_b1whi.pagination__checked_b1whi:hover:not(:disabled) {\n color: rgba(3, 3, 6, 0.88);\n } button.pagination__tag_b1whi.pagination__tag_b1whi.pagination__checked_b1whi:active:not(:disabled) {\n color: rgba(255, 255, 255, 0.94);\n }.chart__coreChart_1tpn6 .recharts-text tspan {\n fill: rgba(255, 255, 255, 0.94);\n }\n@keyframes chart__showDot_o8dmm {\n}\n\n.chart__tickText_19h3g {\n fill: rgba(255, 255, 255, 0.94);\n} .chart__circle_19h3g {\n fill: #121213;\n} .chart__circle_19h3g {\n fill: #121213;\n}\n.chart__tooltip_bfwgc {\n background-color: #121213;\n border: 1px solid #353539;\n box-shadow: 0 24px 32px rgba(0, 0, 0, 0.08), 0 20px 24px rgba(0, 0, 0, 0.08),\n 0 12px 16px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.04);\n} .chart__tooltipArrow_bfwgc {\n border: 1px solid #353539;\n background-color: #121213;\n} .chart__tooltipArrow_bfwgc:before {\n border-color: transparent #121213 transparent transparent;\n}.circular-progress-bar__component_3bcq9.circular-progress-bar__bg-positive_3bcq9 {\n background: #17d055;\n } .circular-progress-bar__component_3bcq9.circular-progress-bar__bg-negative_3bcq9 {\n background: #ff4837;\n } .circular-progress-bar__backgroundCircle_3bcq9,\n.circular-progress-bar__progressCircle_3bcq9 {\n fill: transparent;\n} .circular-progress-bar__positive_3bcq9 {\n stroke: #17d055;\n} .circular-progress-bar__negative_3bcq9 {\n stroke: #ff4837;\n} .circular-progress-bar__backgroundCircle_3bcq9 {\n stroke: rgba(222, 222, 238, 0.13)\n} .circular-progress-bar__backgroundCircle_3bcq9.circular-progress-bar__stroke_3bcq9 {\n stroke: transparent;\n } .circular-progress-bar__iconWrapper_3bcq9.circular-progress-bar__icon-tertiary_3bcq9 {\n color: #4a4a51;\n } .circular-progress-bar__iconWrapper_3bcq9.circular-progress-bar__icon-positive_3bcq9 {\n color: #17d055;\n } .circular-progress-bar__iconWrapper_3bcq9.circular-progress-bar__icon-negative_3bcq9 {\n color: #ff4837;\n } .circular-progress-bar__iconWrapper_3bcq9.circular-progress-bar__icon-primary-inverted_3bcq9 {\n color: rgba(3, 3, 6, 0.88);\n } .circular-progress-bar__iconWrapper_3bcq9.circular-progress-bar__icon-primary_3bcq9 {\n color: rgba(255, 255, 255, 0.94);\n } .circular-progress-bar__iconWrapper_3bcq9.circular-progress-bar__icon-secondary_3bcq9 {\n color: #898991;\n }.comment__component_j3kkk {\n background-color: #1c1c1e;\n}.list-header__filled_1h09o {\n background-color: #212124;\n}.list__list_62bi3 {\n color: rgba(255, 255, 255, 0.94);\n}\n.list__slot_7f9lb.list__defaultColor_7f9lb {\n color: rgba(255, 255, 255, 0.94);\n }.attach__component_z339h {\n} .attach__file_z339h,\n.attach__noFile_z339h {\n color: rgba(238, 238, 251, 0.55);\n} .attach__focused_z339h {\n outline: 2px solid #3193fc;\n}.tab-bar__component_wkct2.tab-bar__modal-bg-primary_wkct2 {\n background-color: #121213;\n } .tab-bar__component_wkct2.tab-bar__modal-bg-alt-primary_wkct2 {\n background-color: #121213;\n } .tab-bar__border_wkct2 {\n box-shadow: 0 -1px 0 0 rgba(222, 222, 238, 0.13);\n}\n.tab-bar__component_1e6se {\n -webkit-tap-highlight-color: transparent;\n background-color: transparent;\n color: rgba(238, 238, 251, 0.55);\n} .tab-bar__primary_1e6se {\n color: #f83a2a;\n} .tab-bar__secondary_1e6se {\n color: #f2f3f5;\n} .tab-bar__label_1e6se {\n color: rgba(238, 238, 251, 0.55);\n}.stepped-progress-bar__bar_f913g {\n background: rgba(222, 222, 238, 0.13);\n} .stepped-progress-bar__description_f913g {\n color: rgba(238, 238, 251, 0.55);\n}\n\n.stepped-progress-bar__bar_17bvp {\n background: rgba(15, 25, 55, 0.1);\n} .stepped-progress-bar__description_17bvp {\n color: rgba(4, 4, 19, 0.55);\n}\n.stepped-progress-bar__bar_1pjw6.stepped-progress-bar__positive_1pjw6 {\n background: #17d055;\n } .stepped-progress-bar__bar_1pjw6.stepped-progress-bar__attention_1pjw6 {\n background: #fda136;\n } .stepped-progress-bar__bar_1pjw6.stepped-progress-bar__negative_1pjw6 {\n background: #ff4837;\n } .stepped-progress-bar__bar_1pjw6.stepped-progress-bar__link_1pjw6 {\n background: #3193fc;\n } .stepped-progress-bar__bar_1pjw6.stepped-progress-bar__tertiary_1pjw6 {\n background: #4a4a51;\n } .stepped-progress-bar__bar_1pjw6.stepped-progress-bar__secondary_1pjw6 {\n background: #898991;\n } .stepped-progress-bar__bar_1pjw6.stepped-progress-bar__primary_1pjw6 {\n background: rgba(255, 255, 255, 0.94);\n } .stepped-progress-bar__bar_1pjw6.stepped-progress-bar__accent_1pjw6 {\n background: #f83a2a;\n }.confirmation-v1__errorHeader_1fy7i {\n color: rgba(255, 255, 255, 0.94);\n color: rgba(255, 255, 255, 0.94);\n} .confirmation-v1__errorText_1fy7i {\n color: rgba(238, 238, 251, 0.55);\n color: rgba(238, 238, 251, 0.55);\n} .confirmation-v1__phoneHintText_1fy7i {\n color: rgba(238, 238, 251, 0.55);\n color: rgba(238, 238, 251, 0.55);\n} .confirmation-v1__phonesWrap_1fy7i {\n color: rgba(238, 238, 251, 0.55);\n} .confirmation-v1__phoneDescription_1fy7i {\n color: rgba(238, 238, 251, 0.55);\n}\n.confirmation-v1__input_1846h {\n background-color: rgba(222, 222, 238, 0.13);\n color: rgba(255, 255, 255, 0.94)\n} .confirmation-v1__input_1846h.confirmation-v1__hasError_1846h {\n color: #ff4837;\n caret-color: rgba(255, 255, 255, 0.94);\n background-color: #392523;\n } .confirmation-v1__input_1846h.confirmation-v1__disabled_1846h {\n color: rgba(233, 233, 250, 0.37);\n } @keyframes confirmation-v1__shake_1846h {\n}\n.confirmation-v1__component_12iks {\n color: rgba(238, 238, 251, 0.55);\n color: rgba(238, 238, 251, 0.55);\n}\n.confirmation-v1__circle_7a4uq {\n fill: transparent;\n stroke: #4a4a51;\n}\n.confirmation-v1__title_19xx7 {\n color: rgba(255, 255, 255, 0.94);\n} .confirmation-v1__description_19xx7 {\n color: rgba(238, 238, 251, 0.55);\n} .confirmation-v1__alertIcon_19xx7 {\n color: #d91d0b;\n}\n.confirmation-v1__header_11kv3 {\n color: rgba(255, 255, 255, 0.94);\n color: rgba(255, 255, 255, 0.94);\n} .confirmation-v1__error_11kv3 {\n color: #ff4837;\n} .confirmation-v1__loaderText_11kv3 {\n color: rgba(238, 238, 251, 0.55);\n color: rgba(238, 238, 251, 0.55);\n}.custom-button__customButton_1bied.custom-button__border_1bied {\n border: 1px solid transparent;\n } .custom-button__customButton_1bied.custom-button__white_1bied * {\n color: rgba(3, 3, 6, 0.88);\n } .custom-button__customButton_1bied.custom-button__black_1bied * {\n color: rgba(255, 255, 255, 0.94);\n } .custom-button__customButton_1bied.custom-button__static-white_1bied * {\n color: rgba(255, 255, 255, 0.94);\n } .custom-button__customButton_1bied.custom-button__static-black_1bied * {\n color: rgba(3, 3, 6, 0.88);\n } .custom-button__customButton_1bied:before {\n background-color: rgba(0, 0, 0, 0);\n } .custom-button__customButton_1bied.custom-button__darkening_1bied:hover:before {\n background-color: rgba(225, 225, 248, 0.09);\n } .custom-button__customButton_1bied.custom-button__darkening_1bied:active:before {\n background-color: rgba(231, 231, 248, 0.18);\n } .custom-button__customButton_1bied.custom-button__lightening_1bied:hover:before {\n background-color: rgba(30, 43, 68, 0.08);\n } .custom-button__customButton_1bied.custom-button__lightening_1bied:active:before {\n background-color: rgba(5, 11, 44, 0.18);\n } .custom-button__customButton_1bied.custom-button__static-darkening_1bied:hover:before {\n background-color: rgba(0, 0, 0, 0.07);\n } .custom-button__customButton_1bied.custom-button__static-darkening_1bied:active:before {\n background-color: rgba(0, 0, 0, 0.15);\n } .custom-button__customButton_1bied.custom-button__static-lightening_1bied:hover:before {\n background-color: rgba(255, 255, 255, 0.07);\n } .custom-button__customButton_1bied.custom-button__static-lightening_1bied:active:before {\n background-color: rgba(255, 255, 255, 0.15);\n } .custom-button__customButton_1bied:disabled.custom-button__disableType-default_1bied {\n background-color: rgba(214, 214, 229, 0.07)\n } .custom-button__customButton_1bied:disabled.custom-button__disableType-default_1bied span {\n color: rgba(233, 233, 250, 0.37);\n } .custom-button__customButton_1bied:disabled.custom-button__disableType-static_1bied {\n background-color: rgba(38, 55, 88, 0.06)\n } .custom-button__customButton_1bied:disabled.custom-button__disableType-static_1bied span {\n color: rgba(5, 8, 29, 0.38);\n } .custom-button__customButton_1bied:disabled.custom-button__disableType-inverted_1bied {\n background-color: rgba(38, 55, 88, 0.06)\n } .custom-button__customButton_1bied:disabled.custom-button__disableType-inverted_1bied span {\n color: rgba(5, 8, 29, 0.38);\n } .custom-button__customButton_1bied:disabled.custom-button__disableType-static-inverted_1bied {\n background-color: rgba(214, 214, 229, 0.07)\n } .custom-button__customButton_1bied:disabled.custom-button__disableType-static-inverted_1bied span {\n color: rgba(233, 233, 250, 0.37);\n }\n.confirmation__component_g697q {\n color: rgba(238, 238, 251, 0.55)\n}\n.confirmation__circle_13zu0 {\n fill: transparent;\n stroke: #4a4a51;\n}\n\n.confirmation__typographyTheme_136rh.confirmation__typographyTheme_136rh {\n color: rgba(238, 238, 251, 0.55);\n} .confirmation__typographyThemeMobile_136rh.confirmation__typographyThemeMobile_136rh {\n color: rgba(238, 238, 251, 0.55);\n}\n.confirmation__typographyTheme_18yv3.confirmation__typographyTheme_18yv3 {\n color: rgba(238, 238, 251, 0.55);\n} .confirmation__typographyThemeMobile_18yv3.confirmation__typographyThemeMobile_18yv3 {\n color: rgba(238, 238, 251, 0.55);\n}\n.confirmation__phone_yq97g.confirmation__phone_yq97g {\n color: rgba(255, 255, 255, 0.94);\n} .confirmation__typographyTheme_yq97g.confirmation__typographyTheme_yq97g {\n color: rgba(238, 238, 251, 0.55);\n} .confirmation__typographyThemeMobile_yq97g.confirmation__typographyThemeMobile_yq97g {\n color: rgba(238, 238, 251, 0.55);\n} .confirmation__countdownContainer_yq97g.confirmation__countdownContainer_yq97g {\n color: rgba(238, 238, 251, 0.55);\n} .confirmation__timeCounter_yq97g {\n color: rgba(238, 238, 251, 0.55);\n}\n.confirmation__typographyTheme_ay4tc.confirmation__typographyTheme_ay4tc {\n color: rgba(238, 238, 251, 0.55);\n} .confirmation__typographyThemeMobile_ay4tc.confirmation__typographyThemeMobile_ay4tc {\n color: rgba(238, 238, 251, 0.55);\n} .confirmation__timeCounter_ay4tc {\n color: rgba(238, 238, 251, 0.55);\n}\n.confirmation__typographyTheme_1imyf.confirmation__typographyTheme_1imyf {\n color: rgba(238, 238, 251, 0.55);\n} .confirmation__typographyThemeMobile_1imyf.confirmation__typographyThemeMobile_1imyf {\n color: rgba(238, 238, 251, 0.55);\n}.cc-icon-button.icon-button__primary_ih8nv {\n color: rgba(255, 255, 255, 0.94)\n } .cc-icon-button.icon-button__primary_ih8nv:hover {\n color: rgba(255, 255, 255, 0.7);\n } .cc-icon-button.icon-button__primary_ih8nv:active {\n color: rgba(255, 255, 255, 0.6);\n } .cc-icon-button.icon-button__secondary_ih8nv {\n color: rgba(238, 238, 251, 0.55)\n } .cc-icon-button.icon-button__secondary_ih8nv:hover {\n color: rgba(239, 240, 252, 0.65);\n } .cc-icon-button.icon-button__secondary_ih8nv:active {\n color: rgba(243, 245, 254, 0.75);\n } .cc-icon-button.icon-button__transparent_ih8nv {\n color: rgba(228, 228, 251, 0.28)\n } .cc-icon-button.icon-button__transparent_ih8nv:hover {\n color: rgba(233, 233, 250, 0.37);\n } .cc-icon-button.icon-button__transparent_ih8nv:active {\n color: rgba(238, 238, 254, 0.46);\n } .cc-icon-button.icon-button__negative_ih8nv {\n color: #ff4837\n } .cc-icon-button.icon-button__negative_ih8nv:hover {\n color: #ff755e;\n } .cc-icon-button.icon-button__negative_ih8nv:active {\n color: #ff8d79;\n } .cc-icon-button.icon-button__tertiary_ih8nv {\n color: rgba(228, 228, 251, 0.28)\n } .cc-icon-button.icon-button__tertiary_ih8nv:hover {\n color: rgba(233, 233, 250, 0.37);\n } .cc-icon-button.icon-button__tertiary_ih8nv:active {\n color: rgba(238, 238, 254, 0.46);\n } .cc-icon-button.icon-button__transparentBg_ih8nv.icon-button__primary_ih8nv {\n color: rgba(255, 255, 255, 0.94)\n } .cc-icon-button.icon-button__transparentBg_ih8nv.icon-button__primary_ih8nv:hover {\n background: rgba(214, 214, 229, 0.07);\n } .cc-icon-button.icon-button__transparentBg_ih8nv.icon-button__primary_ih8nv:active {\n background: rgba(225, 225, 248, 0.09);\n } .cc-icon-button.icon-button__transparentBg_ih8nv.icon-button__secondary_ih8nv {\n color: rgba(238, 238, 251, 0.55)\n } .cc-icon-button.icon-button__transparentBg_ih8nv.icon-button__secondary_ih8nv:hover {\n background: rgba(214, 214, 229, 0.07);\n } .cc-icon-button.icon-button__transparentBg_ih8nv.icon-button__secondary_ih8nv:active {\n background: rgba(225, 225, 248, 0.09);\n } .cc-icon-button.icon-button__transparentBg_ih8nv.icon-button__negative_ih8nv {\n color: #ff4837\n } .cc-icon-button.icon-button__transparentBg_ih8nv.icon-button__negative_ih8nv:hover {\n background: rgba(214, 214, 229, 0.07);\n } .cc-icon-button.icon-button__transparentBg_ih8nv.icon-button__negative_ih8nv:active {\n background: rgba(225, 225, 248, 0.09);\n } .cc-icon-button.icon-button__transparentBg_ih8nv.icon-button__tertiary_ih8nv {\n color: rgba(233, 233, 250, 0.37)\n } .cc-icon-button.icon-button__transparentBg_ih8nv.icon-button__tertiary_ih8nv:hover {\n background: rgba(214, 214, 229, 0.07);\n } .cc-icon-button.icon-button__transparentBg_ih8nv.icon-button__tertiary_ih8nv:active {\n background: rgba(225, 225, 248, 0.09);\n } .cc-icon-button.icon-button__component_ih8nv:disabled.icon-button__primary_ih8nv {\n color: rgba(222, 222, 238, 0.13)\n } .cc-icon-button.icon-button__component_ih8nv:disabled.icon-button__primary_ih8nv.icon-button__loader_ih8nv {\n color: rgba(255, 255, 255, 0.94);\n } .cc-icon-button.icon-button__component_ih8nv:disabled.icon-button__secondary_ih8nv {\n color: rgba(222, 222, 238, 0.13)\n } .cc-icon-button.icon-button__component_ih8nv:disabled.icon-button__secondary_ih8nv.icon-button__loader_ih8nv {\n color: rgba(238, 238, 251, 0.55);\n } .cc-icon-button.icon-button__component_ih8nv:disabled.icon-button__negative_ih8nv {\n color: rgba(222, 222, 238, 0.13)\n } .cc-icon-button.icon-button__component_ih8nv:disabled.icon-button__negative_ih8nv.icon-button__loader_ih8nv {\n color: #ff4837;\n } .cc-icon-button.icon-button__component_ih8nv:disabled.icon-button__tertiary_ih8nv {\n color: rgba(222, 222, 238, 0.13)\n } .cc-icon-button.icon-button__component_ih8nv:disabled.icon-button__tertiary_ih8nv.icon-button__loader_ih8nv {\n color: rgba(228, 228, 251, 0.28);\n } .cc-icon-button.icon-button__component_ih8nv:disabled.icon-button__transparentBg_ih8nv {\n background: transparent;\n }\n\n.cc-icon-button.icon-button__primary_1529w {\n color: rgba(3, 3, 6, 0.88)\n } .cc-icon-button.icon-button__primary_1529w:hover {\n color: rgba(2, 2, 10, 0.76);\n } .cc-icon-button.icon-button__primary_1529w:active {\n color: rgba(1, 1, 12, 0.63);\n } .cc-icon-button.icon-button__secondary_1529w {\n color: rgba(4, 4, 21, 0.47)\n } .cc-icon-button.icon-button__secondary_1529w:hover {\n color: rgba(4, 4, 19, 0.55);\n } .cc-icon-button.icon-button__secondary_1529w:active {\n color: rgba(1, 1, 12, 0.63);\n } .cc-icon-button.icon-button__transparent_1529w {\n color: rgba(9, 12, 37, 0.28)\n } .cc-icon-button.icon-button__transparent_1529w:hover {\n color: rgba(5, 8, 29, 0.38);\n } .cc-icon-button.icon-button__transparent_1529w:active {\n color: rgba(4, 4, 21, 0.47);\n } .cc-icon-button.icon-button__negative_1529w {\n color: #ff4837\n } .cc-icon-button.icon-button__negative_1529w:hover {\n color: #ec2d20;\n } .cc-icon-button.icon-button__negative_1529w:active {\n color: #c7241f;\n } .cc-icon-button.icon-button__tertiary_1529w {\n color: rgba(9, 12, 37, 0.28)\n } .cc-icon-button.icon-button__tertiary_1529w:hover {\n color: rgba(5, 8, 29, 0.38);\n } .cc-icon-button.icon-button__tertiary_1529w:active {\n color: rgba(4, 4, 21, 0.47);\n } .cc-icon-button.icon-button__transparentBg_1529w.icon-button__primary_1529w {\n color: rgba(3, 3, 6, 0.88)\n } .cc-icon-button.icon-button__transparentBg_1529w.icon-button__primary_1529w:hover {\n background: rgba(38, 55, 88, 0.06);\n } .cc-icon-button.icon-button__transparentBg_1529w.icon-button__primary_1529w:active {\n background: rgba(30, 43, 68, 0.08);\n } .cc-icon-button.icon-button__transparentBg_1529w.icon-button__secondary_1529w {\n color: rgba(4, 4, 19, 0.55)\n } .cc-icon-button.icon-button__transparentBg_1529w.icon-button__secondary_1529w:hover {\n background: rgba(38, 55, 88, 0.06);\n } .cc-icon-button.icon-button__transparentBg_1529w.icon-button__secondary_1529w:active {\n background: rgba(30, 43, 68, 0.08);\n } .cc-icon-button.icon-button__transparentBg_1529w.icon-button__negative_1529w {\n color: #ec2d20\n } .cc-icon-button.icon-button__transparentBg_1529w.icon-button__negative_1529w:hover {\n background: rgba(38, 55, 88, 0.06);\n } .cc-icon-button.icon-button__transparentBg_1529w.icon-button__negative_1529w:active {\n background: rgba(30, 43, 68, 0.08);\n } .cc-icon-button.icon-button__transparentBg_1529w.icon-button__tertiary_1529w {\n color: rgba(5, 8, 29, 0.38)\n } .cc-icon-button.icon-button__transparentBg_1529w.icon-button__tertiary_1529w:hover {\n background: rgba(38, 55, 88, 0.06);\n } .cc-icon-button.icon-button__transparentBg_1529w.icon-button__tertiary_1529w:active {\n background: rgba(30, 43, 68, 0.08);\n } .cc-icon-button.icon-button__component_1529w:disabled.icon-button__primary_1529w {\n color: rgba(15, 25, 55, 0.1)\n } .cc-icon-button.icon-button__component_1529w:disabled.icon-button__primary_1529w.icon-button__loader_1529w {\n color: rgba(3, 3, 6, 0.88);\n } .cc-icon-button.icon-button__component_1529w:disabled.icon-button__secondary_1529w {\n color: rgba(15, 25, 55, 0.1)\n } .cc-icon-button.icon-button__component_1529w:disabled.icon-button__secondary_1529w.icon-button__loader_1529w {\n color: rgba(4, 4, 21, 0.47);\n } .cc-icon-button.icon-button__component_1529w:disabled.icon-button__negative_1529w {\n color: rgba(15, 25, 55, 0.1)\n } .cc-icon-button.icon-button__component_1529w:disabled.icon-button__negative_1529w.icon-button__loader_1529w {\n color: #ff4837;\n } .cc-icon-button.icon-button__component_1529w:disabled.icon-button__tertiary_1529w {\n color: rgba(15, 25, 55, 0.1)\n } .cc-icon-button.icon-button__component_1529w:disabled.icon-button__tertiary_1529w.icon-button__loader_1529w {\n color: rgba(9, 12, 37, 0.28);\n } .cc-icon-button.icon-button__component_1529w:disabled.icon-button__transparentBg_1529w {\n background: transparent;\n }.input__input_1tjba {\n color: rgba(255, 255, 255, 0.94);\n caret-color: rgba(255, 255, 255, 0.94);\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n} .input__input_1tjba:-webkit-autofill {\n -webkit-text-fill-color: rgba(255, 255, 255, 0.94);\n} .input__input_1tjba::placeholder {\n color: rgba(238, 238, 251, 0.55);\n} .input__hasInnerLabel_1tjba::placeholder {\n color: rgba(233, 233, 250, 0.37);\n} .input__input_1tjba:read-only:not(.input__disableUserInput_1tjba) {\n color: rgba(233, 233, 250, 0.37)\n} .input__input_1tjba:read-only:not(.input__disableUserInput_1tjba):focus::placeholder {\n color: rgba(238, 238, 251, 0.55);\n } .input__input_1tjba:disabled {\n color: rgba(233, 233, 250, 0.37);\n -webkit-text-fill-color: rgba(233, 233, 250, 0.37);\n} .input__input_1tjba:focus::placeholder {\n color: rgba(233, 233, 250, 0.37);\n} .input__error_1tjba {\n color: rgba(255, 255, 255, 0.94);\n caret-color: rgba(255, 255, 255, 0.94);\n}\n.input__focusVisible_v8r7z {\n outline: 2px solid #3193fc;\n} @keyframes input__onautofillstart_v8r7z {\n from {\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n }\n to {\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0.01);\n }\n} @keyframes input__onautofillcancel_v8r7z {\n from {\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n }\n to {\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0.01);\n }\n}\n.input__input_vgd4s {\n color: rgba(3, 3, 6, 0.88);\n caret-color: rgba(3, 3, 6, 0.88);\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n} .input__input_vgd4s:-webkit-autofill {\n -webkit-text-fill-color: rgba(3, 3, 6, 0.88);\n} .input__input_vgd4s::placeholder {\n color: rgba(4, 4, 19, 0.55);\n} .input__hasInnerLabel_vgd4s::placeholder {\n color: rgba(5, 8, 29, 0.38);\n} .input__input_vgd4s:read-only:not(.input__disableUserInput_vgd4s) {\n color: rgba(5, 8, 29, 0.38)\n} .input__input_vgd4s:read-only:not(.input__disableUserInput_vgd4s):focus::placeholder {\n color: rgba(4, 4, 19, 0.55);\n } .input__input_vgd4s:disabled {\n color: rgba(5, 8, 29, 0.38);\n -webkit-text-fill-color: rgba(5, 8, 29, 0.38);\n} .input__input_vgd4s:focus::placeholder {\n color: rgba(5, 8, 29, 0.38);\n} .input__error_vgd4s {\n color: rgba(3, 3, 6, 0.88);\n caret-color: rgba(3, 3, 6, 0.88);\n}\n.input__clearIcon_107ku {\n color: rgba(228, 228, 251, 0.28)\n} .input__clearIcon_107ku:hover {\n color: rgba(233, 233, 250, 0.37);\n } .input__clearIcon_107ku:active {\n color: rgba(238, 238, 254, 0.46);\n }\n\n.input__clearIcon_121m4 {\n color: rgba(9, 12, 37, 0.28)\n} .input__clearIcon_121m4:hover {\n color: rgba(5, 8, 29, 0.38);\n } .input__clearIcon_121m4:active {\n color: rgba(4, 4, 21, 0.47);\n }.navigation-bar__border_1jhen {\n box-shadow: 0 1px 0 0 #29292c;\n} .navigation-bar__content_1jhen {\n color: rgba(255, 255, 255, 0.94)\n} .navigation-bar__subtitle_1jhen {\n color: rgba(238, 238, 251, 0.55);\n}\n.navigation-bar__iconWrapper_1nvqp {\n background: rgba(214, 214, 229, 0.07)\n} .navigation-bar__iconWrapper_1nvqp.navigation-bar__back_1nvqp {\n background: transparent;\n } .navigation-bar__floating_1nvqp path {\n fill: rgba(238, 238, 251, 0.55);\n } .navigation-bar__floating_1nvqp:hover path {\n fill: rgba(239, 240, 252, 0.65);\n } .navigation-bar__floating_1nvqp:active path {\n fill: rgba(243, 245, 254, 0.75);\n }\n.pass-code-v1__message_1h1t8 {\n color: rgba(255, 255, 255, 0.94);\n} .pass-code-v1__error_1h1t8 {\n color: #ff4837;\n}\n.pass-code-v1__dot_k0u6l {\n background: rgba(222, 222, 238, 0.13)\n} .pass-code-v1__dot_k0u6l.pass-code-v1__error_k0u6l {\n background: #ff4837;\n } .pass-code-v1__filled_k0u6l {\n background: rgba(255, 255, 255, 0.94);\n}\n@keyframes pass-code-v1__shake_wdcqb {\n}\n\n.pass-code-v1__secondary_1jisr.pass-code-v1__secondary_1jisr {\n color: rgba(255, 255, 255, 0.94);\n background: rgba(225, 225, 248, 0.09)\n} .pass-code-v1__secondary_1jisr.pass-code-v1__secondary_1jisr:hover {\n color: rgba(255, 255, 255, 0.94);\n } .pass-code-v1__secondary_1jisr.pass-code-v1__secondary_1jisr:active {\n background: rgba(234, 234, 248, 0.15);\n } .pass-code-v1__ghost_1jisr.pass-code-v1__ghost_1jisr {\n color: rgba(255, 255, 255, 0.94)\n} .pass-code-v1__ghost_1jisr.pass-code-v1__ghost_1jisr:hover {\n color: rgba(255, 255, 255, 0.94);\n } .pass-code-v1__ghost_1jisr.pass-code-v1__ghost_1jisr:active {\n background: rgba(234, 234, 248, 0.15);\n }\n@media screen and (min-width: 360px) {\n} @media screen and (min-width: 390px) {\n}\n.pattern-lock-v1__message_1tjmm {\n color: rgba(255, 255, 255, 0.94);\n} .pattern-lock-v1__error_1tjmm {\n color: #ff4837;\n}\n\n\n.pass-code__dot_1qq5k {\n background: rgba(222, 222, 238, 0.13)\n} .pass-code__dot_1qq5k.pass-code__filled_1qq5k {\n background: rgba(255, 255, 255, 0.94);\n } .pass-code__dot_1qq5k.pass-code__animatedFill_1qq5k {\n background: rgba(255, 255, 255, 0.94);\n } .pass-code__dot_1qq5k.pass-code__error_1qq5k {\n background: #ff4837;\n } .pass-code__dot_1qq5k.pass-code__success_1qq5k {\n background: #17d055;\n } .pass-code__dot_1qq5k.pass-code__rawSuccess_1qq5k {\n background: #17d055;\n }\n@keyframes pass-code__shake_1ihq2 {\n}\n\n.pass-code__secondary_1k4rz.pass-code__secondary_1k4rz,\n.pass-code__button_1k4rz.pass-code__button_1k4rz {\n color: rgba(255, 255, 255, 0.94);\n background-color: rgba(255, 255, 255, 0)\n} .pass-code__secondary_1k4rz.pass-code__secondary_1k4rz:active, .pass-code__button_1k4rz.pass-code__button_1k4rz:active {\n background-color: rgba(225, 225, 248, 0.09);\n } .pass-code__secondary_1k4rz.pass-code__secondary_1k4rz:not(.pass-code__isIOS_1k4rz):hover, .pass-code__button_1k4rz.pass-code__button_1k4rz:not(.pass-code__isIOS_1k4rz):hover {\n background-color: rgba(214, 214, 229, 0.07);\n } .pass-code__secondary_1k4rz.pass-code__secondary_1k4rz:not(.pass-code__isIOS_1k4rz):active, .pass-code__button_1k4rz.pass-code__button_1k4rz:not(.pass-code__isIOS_1k4rz):active {\n background-color: rgba(225, 225, 248, 0.09);\n }.product-cover__component_8vpib {\n background-color: #4a4a51\n}\n\n.product-cover__cardMack_34awr {\n background-color: rgba(3, 3, 6, 0.88);\n}\n.product-cover__default_9i714 {\n background: rgba(238, 238, 251, 0.55);\n} .product-cover__inverted_9i714 {\n background: rgba(4, 4, 21, 0.47);\n}\n.product-cover__buttonEye_pba53.product-cover__buttonEye_pba53 {\n color: #fff\n} .product-cover__buttonEye_pba53.product-cover__buttonEye_pba53:hover {\n color: #fff;\n } .product-cover__buttonEye_pba53.product-cover__buttonEye_pba53:active {\n color: #fff;\n }.file-upload-item-v1__component_eadit {\n color: rgba(238, 238, 251, 0.55);\n box-shadow: 0 -1px 0 0 #29292c inset\n} .file-upload-item-v1__icon_eadit {\n color: rgba(255, 255, 255, 0.94);\n} .file-upload-item-v1__errorIcon_eadit {\n color: #ff4837;\n} .file-upload-item-v1__successIcon_eadit {\n color: #17d055;\n} .file-upload-item-v1__name_eadit {\n color: rgba(255, 255, 255, 0.94)\n} .file-upload-item-v1__errorWrapper_eadit {\n color: #ff4837;\n}.pure-cell__focused_a65q3 {\n outline: 2px solid #3193fc;\n}\n.pure-cell__button_1gvhi {\n -webkit-tap-highlight-color: transparent;\n background-color: transparent\n}\n.pure-cell__hidden_1l0qi {\n background: rgba(231, 231, 248, 0.18);\n}\n.pure-cell__hidden_yate9 {\n background: rgba(231, 231, 248, 0.18);\n}\n.pure-cell__categoryPercent_8mwjx {\n background-color: #1c1c1e;\n}\n\n\n\n.pure-cell__button_5ayfm {\n -webkit-tap-highlight-color: transparent;\n background-color: transparent\n}\n.pure-cell__component_594gd.pure-cell__button_594gd {\n -webkit-tap-highlight-color: transparent;\n background-color: transparent\n }\n\n.file-upload-item__deleteIconColor_1fzih {\n fill: rgba(233, 233, 250, 0.37)\n} .file-upload-item__deleteIconColor_1fzih:hover {\n fill: rgba(238, 238, 254, 0.46);\n } .file-upload-item__downloadIconColor_1fzih {\n fill: rgba(233, 233, 250, 0.37)\n} .file-upload-item__downloadIconColor_1fzih:hover {\n fill: rgba(238, 238, 254, 0.46);\n } .file-upload-item__restoreIconColor_1fzih {\n fill: rgba(233, 233, 250, 0.37)\n} .file-upload-item__restoreIconColor_1fzih:hover {\n fill: rgba(238, 238, 254, 0.46);\n }\n.file-upload-item__container_jnj0i .file-upload-item__title_jnj0i.file-upload-item__restore_jnj0i {\n color: rgba(233, 233, 250, 0.37);\n }\n.file-upload-item__container_58erk .file-upload-item__progress_58erk {\n -webkit-mask-image: conic-gradient(black 0, transparent 0);\n mask-image: conic-gradient(black 0, transparent 0)\n } .file-upload-item__container_58erk .file-upload-item__progress_58erk.file-upload-item__success_58erk,\n .file-upload-item__container_58erk .file-upload-item__progress_58erk.file-upload-item__error_58erk {\n -webkit-mask-image: conic-gradient(black 360deg, transparent 0);\n mask-image: conic-gradient(black 360deg, transparent 0);\n } .file-upload-item__container_58erk .file-upload-item__progressBarTransparent_58erk {\n fill: transparent;\n } .file-upload-item__container_58erk .file-upload-item__progressBarUploading_58erk {\n fill: #4a4a51;\n } .file-upload-item__container_58erk .file-upload-item__progressBarSuccess_58erk {\n fill: #17d055;\n } .file-upload-item__container_58erk .file-upload-item__progressBarError_58erk {\n fill: #ff4837;\n }\n\n\n.file-upload-item__iconPDFColored_1qyfx {\n fill: #fe5e48;\n} .file-upload-item__iconDOCColored_1qyfx {\n fill: #3193fc;\n} .file-upload-item__iconExcelColored_1qyfx {\n fill: #0cc44d;\n} .file-upload-item__icon1CColored_1qyfx {\n fill: #fa9313;\n} .file-upload-item__iconDocumentColored_1qyfx {\n fill: rgba(255, 255, 255, 0.94);\n}.navigation-bar-private__content_1dj6d {\n color: rgba(255, 255, 255, 0.94)\n} .navigation-bar-private__subtitle_1dj6d {\n color: rgba(238, 238, 251, 0.55);\n}\n.navigation-bar-private__component_t4qx3 {\n background: rgba(255, 255, 255, 0.04)\n} .navigation-bar-private__component_t4qx3 svg > path {\n fill: rgba(255, 255, 255, 0.94);\n } .navigation-bar-private__component_t4qx3:hover svg > path {\n fill: rgba(255, 255, 255, 0.7);\n } .navigation-bar-private__component_t4qx3:active svg > path {\n fill: rgba(255, 255, 255, 0.6);\n } .navigation-bar-private__mobileWrapper_t4qx3 {\n background: rgba(214, 214, 229, 0.07)\n} .navigation-bar-private__mobileWrapper_t4qx3 svg > path {\n fill: rgba(238, 238, 251, 0.55);\n }\n.navigation-bar-private__button_93jsx {\n background: rgba(255, 255, 255, 0.04);\n color: rgba(255, 255, 255, 0.94)\n}\n.navigation-bar-private__button_93jsx.navigation-bar-private__mobile_93jsx {\n background: rgba(214, 214, 229, 0.07);\n color: rgba(238, 238, 251, 0.55);\n }\n\n.navigation-bar-private__button_13w7k {\n background: rgba(0, 0, 0, 0.04);\n color: rgba(3, 3, 6, 0.88)\n}\n.navigation-bar-private__button_13w7k.navigation-bar-private__mobile_13w7k {\n background: rgba(38, 55, 88, 0.06);\n color: rgba(4, 4, 21, 0.47);\n }\n\n.plate__component_sout2 {\n color: rgba(255, 255, 255, 0.94)\n} .plate__focused_sout2 {\n outline: 2px solid #3193fc;\n} .plate__shadow_sout2:after {\n box-shadow: 0 12px 16px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.04),\n 0 0 1px rgba(0, 0, 0, 0.04);\n} .plate__common_sout2 {\n background-color: rgba(225, 225, 248, 0.09);\n border: 1px solid rgba(238, 238, 251, 0.55)\n} .plate__common_sout2:before {\n background-color: rgba(238, 238, 251, 0.55);\n } .plate__negative_sout2 {\n background-color: #392523;\n border: 1px solid #ff4837\n} .plate__negative_sout2:before {\n background-color: #ff4837;\n } .plate__positive_sout2 {\n background-color: #232d25;\n border: 1px solid #17d055\n} .plate__positive_sout2:before {\n background-color: #17d055;\n } .plate__attention_sout2 {\n background-color: #36291f;\n border: 1px solid #fda136\n} .plate__attention_sout2:before {\n background-color: #fda136;\n } .plate__custom_sout2 {\n background: transparent;\n border: 1px solid rgba(238, 238, 251, 0.55)\n} .plate__custom_sout2:before {\n background-color: rgba(238, 238, 251, 0.55);\n }\n\n.toast-plate__component_1bff7 {\n color: rgba(3, 3, 6, 0.88);\n background-color: #fff;\n} .toast-plate__closeButtonWrapper_1bff7:before {\n background-color: #e7e8eb;\n }\n\n.toast-plate__component_xcyyk {\n color: rgba(255, 255, 255, 0.94);\n background-color: #1c1c1e;\n} .toast-plate__closeButtonWrapper_xcyyk:before {\n background-color: #29292c;\n }.number-input__separator_122g0 {\n background-color: rgba(222, 222, 238, 0.13);\n} .number-input__steppers_122g0 {\n background-color: rgba(214, 214, 229, 0.07);\n} .number-input__steppersFocused_122g0,\n.number-input__steppersDisabled_122g0 {\n background-color: rgba(225, 225, 248, 0.09);\n}\n\n.number-input__separator_dkibq {\n background-color: rgba(15, 25, 55, 0.1);\n} .number-input__steppers_dkibq {\n background-color: #fff;\n} .number-input__steppersFocused_dkibq,\n.number-input__steppersDisabled_dkibq {\n background-color: rgba(15, 25, 55, 0.1);\n}.slider-input__slider_j09xl .noUi-base:hover > .noUi-connects {\n background-color: #898991;\n } .slider-input__slider_j09xl .noUi-connects {\n background-color: #898991;\n } .slider-input__steps_j09xl {\n color: rgba(238, 238, 251, 0.55);\n} .slider-input__info_j09xl {\n color: rgba(238, 238, 251, 0.55);\n}.with-suffix__hasSuffix_1iuu2 input:focus::placeholder {\n color: transparent;\n} .with-suffix__disabled_1iuu2 {\n color: rgba(233, 233, 250, 0.37)\n} .with-suffix__disabled_1iuu2.with-suffix__inverted_1iuu2 {\n color: rgba(5, 8, 29, 0.38);\n } .with-suffix__readOnly_1iuu2 {\n color: rgba(233, 233, 250, 0.37)\n} .with-suffix__readOnly_1iuu2.with-suffix__inverted_1iuu2 {\n color: rgba(5, 8, 29, 0.38);\n }.bottom-sheet__modal_1002u.bottom-sheet__modal_1002u {\n background-color: transparent;\n} .bottom-sheet__component_1002u {\n background-color: #1c1c1e;\n} .bottom-sheet__defaultMarker_1002u {\n background-color: rgba(222, 222, 238, 0.13);\n} .bottom-sheet__content_1002u {\n color: rgba(255, 255, 255, 0.94);\n} .bottom-sheet__background-accent_1002u {\n background-color: #ef3124;\n } .bottom-sheet__background-info_1002u {\n background-color: #001c3c;\n } .bottom-sheet__background-attention-muted_1002u {\n background-color: #36291f;\n } .bottom-sheet__background-positive-muted_1002u {\n background-color: #232d25;\n } .bottom-sheet__background-negative-muted_1002u {\n background-color: #392523;\n } .bottom-sheet__background-primary_1002u {\n background-color: #121213;\n } .bottom-sheet__background-primary-inverted_1002u {\n background-color: #fff;\n } .bottom-sheet__background-secondary_1002u {\n background-color: #1c1c1e;\n } .bottom-sheet__background-secondary-inverted_1002u {\n background-color: #f2f3f5;\n } .bottom-sheet__background-tertiary_1002u {\n background-color: #27272a;\n } .bottom-sheet__background-tertiary-inverted_1002u {\n background-color: #e7e8ea;\n } .bottom-sheet__background-quaternary_1002u {\n background-color: #36363a;\n } .bottom-sheet__background-quaternary-inverted_1002u {\n background-color: #dcdee2;\n } .bottom-sheet__background-specialbg-component_1002u {\n background-color: rgba(255, 255, 255, 0.1);\n } .bottom-sheet__background-specialbg-component-inverted_1002u {\n background-color: rgba(11, 31, 53, 0.07);\n } .bottom-sheet__background-specialbg-primary-grouped_1002u {\n background-color: #1c1c1e;\n } .bottom-sheet__background-specialbg-secondary-grouped_1002u {\n background-color: #27272a;\n } .bottom-sheet__background-specialbg-tertiary-grouped_1002u {\n background-color: #36363a;\n } .bottom-sheet__background-specialbg-secondary-transparent_1002u {\n background-color: rgba(214, 214, 229, 0.07);\n } .bottom-sheet__background-specialbg-secondary-transparent-inverted_1002u {\n background-color: rgba(38, 55, 88, 0.06);\n } .bottom-sheet__background-specialbg-tertiary-transparent_1002u {\n background-color: rgba(222, 222, 240, 0.12);\n } .bottom-sheet__background-specialbg-tertiary-transparent-inverted_1002u {\n background-color: rgba(30, 43, 68, 0.08);\n }\n.bottom-sheet__footer_b6ua7 {\n background-color: #1c1c1e;\n} .bottom-sheet__highlighted_b6ua7 {\n border-top: 1px solid #353539;\n background-color: #1c1c1e;\n} .bottom-sheet__background-accent_b6ua7 {\n background-color: #ef3124;\n } .bottom-sheet__background-info_b6ua7 {\n background-color: #001c3c;\n } .bottom-sheet__background-attention-muted_b6ua7 {\n background-color: #36291f;\n } .bottom-sheet__background-positive-muted_b6ua7 {\n background-color: #232d25;\n } .bottom-sheet__background-negative-muted_b6ua7 {\n background-color: #392523;\n } .bottom-sheet__background-primary_b6ua7 {\n background-color: #121213;\n } .bottom-sheet__background-primary-inverted_b6ua7 {\n background-color: #fff;\n } .bottom-sheet__background-secondary_b6ua7 {\n background-color: #1c1c1e;\n } .bottom-sheet__background-secondary-inverted_b6ua7 {\n background-color: #f2f3f5;\n } .bottom-sheet__background-tertiary_b6ua7 {\n background-color: #27272a;\n } .bottom-sheet__background-tertiary-inverted_b6ua7 {\n background-color: #e7e8ea;\n } .bottom-sheet__background-quaternary_b6ua7 {\n background-color: #36363a;\n } .bottom-sheet__background-quaternary-inverted_b6ua7 {\n background-color: #dcdee2;\n } .bottom-sheet__background-specialbg-component_b6ua7 {\n background-color: rgba(255, 255, 255, 0.1);\n } .bottom-sheet__background-specialbg-component-inverted_b6ua7 {\n background-color: rgba(11, 31, 53, 0.07);\n } .bottom-sheet__background-specialbg-primary-grouped_b6ua7 {\n background-color: #1c1c1e;\n } .bottom-sheet__background-specialbg-secondary-grouped_b6ua7 {\n background-color: #27272a;\n } .bottom-sheet__background-specialbg-tertiary-grouped_b6ua7 {\n background-color: #36363a;\n } .bottom-sheet__background-specialbg-secondary-transparent_b6ua7 {\n background-color: rgba(214, 214, 229, 0.07);\n } .bottom-sheet__background-specialbg-secondary-transparent-inverted_b6ua7 {\n background-color: rgba(38, 55, 88, 0.06);\n } .bottom-sheet__background-specialbg-tertiary-transparent_b6ua7 {\n background-color: rgba(222, 222, 240, 0.12);\n } .bottom-sheet__background-specialbg-tertiary-transparent-inverted_b6ua7 {\n background-color: rgba(30, 43, 68, 0.08);\n }\n.bottom-sheet__highlighted_7aj6w {\n border-bottom: 1px solid #353539;\n}\n.popup-sheet__appear_cvu3j,\n.popup-sheet__enter_cvu3j {\n background-color: transparent;\n} .popup-sheet__appearActive_cvu3j,\n.popup-sheet__enterActive_cvu3j,\n.popup-sheet__appearDone_cvu3j,\n.popup-sheet__enterDone_cvu3j {\n background-color: rgba(0, 0, 0, 0.7);\n} .popup-sheet__exit_cvu3j {\n background-color: rgba(0, 0, 0, 0.7);\n} .popup-sheet__exitActive_cvu3j,\n.popup-sheet__exitDone_cvu3j {\n background-color: transparent;\n}\n\n\n\n\n\n\n\n.modal__sticky_yxe09 {\n background: #1c1c1e;\n} .modal__highlighted_yxe09 {\n background: #1c1c1e;\n box-shadow: 0 -1px 0 0 #29292c;\n}\n\n\n\n.modal__highlighted_1mnza {\n background: #1c1c1e;\n box-shadow: 0 1px 0 0 #29292c;\n} .modal__sticky_1mnza.modal__hasContent_1mnza {\n background: #1c1c1e;\n }\n\n\n\n\n\n\n\n\n\n.side-panel__sticky_1ud2b {\n background: #1c1c1e;\n} .side-panel__highlighted_1ud2b {\n background: #1c1c1e;\n box-shadow: 0 -1px 0 0 #29292c;\n}\n\n\n\n.side-panel__highlighted_raorr {\n background: #1c1c1e;\n box-shadow: 0 1px 0 0 #29292c;\n} .side-panel__sticky_raorr.side-panel__hasContent_raorr {\n background: #1c1c1e;\n }\n.toast__toastPlate_tvn4h {\n box-shadow: 0 20px 24px rgba(0, 0, 0, 0.08), 0 12px 16px rgba(0, 0, 0, 0.04),\n 0 4px 8px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.04);\n} .toast__popoverInner_tvn4h {\n box-shadow: 0 20px 24px rgba(0, 0, 0, 0.08), 0 12px 16px rgba(0, 0, 0, 0.04),\n 0 4px 8px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.04);\n background-color: transparent;\n}.bank-card__component_1gzw2 {\n --form-control-bg-color: transparent;\n --form-control-focus-shadow: transparent;\n --form-control-hover-bg-color: transparent;\n --form-control-focus-bg-color: transparent;\n} .bank-card__label_1gzw2 {\n color: rgba(238, 238, 251, 0.55)\n} .bank-card__focused_1gzw2 .bank-card__label_1gzw2,\n.bank-card__filled_1gzw2 .bank-card__label_1gzw2 {\n color: rgba(255, 255, 255, 0.94)\n} .bank-card__input_1gzw2 {\n color: rgba(255, 255, 255, 0.94);\n caret-color: rgba(255, 255, 255, 0.94)\n} .bank-card__bankLogo_1gzw2 svg g {\n fill: rgba(255, 255, 255, 0.94);\n } .bank-card__brandLogo_1gzw2 svg {\n fill: rgba(255, 255, 255, 0.94);\n } .bank-card__usePhoto_1gzw2 {\n background-color: transparent\n} .bank-card__usePhoto_1gzw2 svg {\n fill: rgba(255, 255, 255, 0.94);\n }\n\n\n\n\n\n.universal-modal__sticky_1ddjq {\n background: #1c1c1e;\n} .universal-modal__highlighted_1ddjq {\n background: #1c1c1e;\n box-shadow: 0 -1px 0 0 #29292c;\n}\n\n\n\n\n.universal-modal__highlighted_13j2o {\n background: #1c1c1e;\n box-shadow: 0 1px 0 0 #29292c;\n} .universal-modal__sticky_13j2o.universal-modal__hasContent_13j2o {\n background: #1c1c1e;\n }\n\n\n.universal-modal__component_1x1mv.universal-modal__overlayHidden_1x1mv {\n box-shadow: 0 20px 24px rgba(0, 0, 0, 0.08), 0 12px 16px rgba(0, 0, 0, 0.04),\n 0 4px 8px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.04);\n }\n\n.universal-modal__component_1luzi.universal-modal__overlayHidden_1luzi {\n box-shadow: 0 20px 24px rgba(0, 0, 0, 0.08), 0 12px 16px rgba(0, 0, 0, 0.04),\n 0 4px 8px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.04);\n }\n@keyframes universal-modal__step_1_1yr2t {\n} @keyframes universal-modal__step_2_1yr2t {\n 100% {\n background-color: transparent;\n }\n} .universal-modal__appear_1yr2t,\n.universal-modal__enter_1yr2t {\n background-color: transparent;\n} .universal-modal__appearActive_1yr2t,\n.universal-modal__enterActive_1yr2t,\n.universal-modal__appearDone_1yr2t,\n.universal-modal__enterDone_1yr2t {\n background-color: rgba(0, 0, 0, 0.7);\n} .universal-modal__exit_1yr2t {\n background-color: rgba(0, 0, 0, 0.7);\n} .universal-modal__exitDone_1yr2t {\n background-color: transparent;\n}\n\n\n\n.universal-modal__button_9zt1r.universal-modal__button_9zt1r {\n background-color: rgba(18, 18, 19, 0.4);\n}\n.universal-modal__button_uo1mq.universal-modal__button_uo1mq {\n background-color: rgba(255, 255, 255, 0.04);\n}\n\n\n\n.universal-modal__icon_mwxrj {\n fill: rgba(238, 238, 251, 0.55);\n}\n.universal-modal__icon_13ids {\n fill: rgba(238, 238, 251, 0.55);\n}.amount-input__minorPartAndCurrency_1rbr8 {\n color: rgba(238, 238, 251, 0.55)\n} .amount-input__minorPartAndCurrency_1rbr8.amount-input__disabled_1rbr8,\n .amount-input__minorPartAndCurrency_1rbr8.amount-input__readOnly_1rbr8 {\n color: rgba(233, 233, 250, 0.37);\n }\n.amount-input__filled_5a4kr .amount-input__input_5a4kr,\n.amount-input__input_5a4kr:focus {\n -webkit-text-fill-color: transparent;\n}\n.amount-input__minorPartAndCurrency_y4xcf {\n color: rgba(4, 4, 19, 0.55)\n} .amount-input__minorPartAndCurrency_y4xcf.amount-input__disabled_y4xcf,\n .amount-input__minorPartAndCurrency_y4xcf.amount-input__readOnly_y4xcf {\n color: rgba(5, 8, 29, 0.38);\n }@media (min-width: 600px) {\n}.tooltip__hint_1xf6x {\n background-color: #fff;\n box-shadow: 0 20px 24px rgba(0, 0, 0, 0.2), 0 12px 16px rgba(0, 0, 0, 0.16),\n 0 4px 8px rgba(0, 0, 0, 0.16), 0 0 1px rgba(0, 0, 0, 0.16);\n color: rgba(3, 3, 6, 0.88);\n} .tooltip__hint_1xf6x .tooltip__arrow_1xf6x:after {\n background-color: #fff;\n border-color: #fff;\n} .tooltip__tooltip_1xf6x {\n border: 1px solid #29292c;\n background-color: #1c1c1e\n} .tooltip__tooltip_1xf6x .tooltip__arrow_1xf6x:after {\n border-color: #29292c;\n background-color: #1c1c1e;\n }\n\n.tooltip__tooltip_43rvu {\n background-color: #fff;\n color: rgba(3, 3, 6, 0.88);\n box-shadow: 0 20px 24px rgba(0, 0, 0, 0.2), 0 12px 16px rgba(0, 0, 0, 0.16),\n 0 4px 8px rgba(0, 0, 0, 0.16), 0 0 1px rgba(0, 0, 0, 0.16);\n} .tooltip__tooltip_43rvu .tooltip__arrow_43rvu:after {\n background-color: #fff;\n} .tooltip__hint_43rvu {\n background-color: #1c1c1e;\n box-shadow: 0 20px 24px rgba(0, 0, 0, 0.08), 0 12px 16px rgba(0, 0, 0, 0.04),\n 0 4px 8px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.04);\n color: rgba(255, 255, 255, 0.94);\n} .tooltip__hint_43rvu .tooltip__arrow_43rvu:after {\n background-color: #1c1c1e;\n}\n\n.calendar__container_1jyfq.calendar__customScrollbar_1jyfq::-webkit-scrollbar-track {\n background-color: transparent;\n } .calendar__container_1jyfq.calendar__customScrollbar_1jyfq::-webkit-scrollbar-track-piece {\n background-color: transparent;\n } .calendar__container_1jyfq.calendar__customScrollbar_1jyfq::-webkit-scrollbar-thumb {\n background-color: rgba(228, 228, 251, 0.28);\n border-color: transparent;\n } .calendar__container_1jyfq.calendar__customScrollbar_1jyfq::-webkit-scrollbar-thumb:active {\n background-color: rgba(238, 238, 251, 0.55);\n }\n.calendar__appear_yv6yl,\n.calendar__enter_yv6yl {\n background-color: transparent;\n} .calendar__appearActive_yv6yl,\n.calendar__enterActive_yv6yl,\n.calendar__appearDone_yv6yl,\n.calendar__enterDone_yv6yl {\n background-color: rgba(222, 222, 238, 0.13);\n} .calendar__exit_yv6yl {\n background-color: rgba(222, 222, 238, 0.13);\n} .calendar__exitActive_yv6yl,\n.calendar__exitDone_yv6yl {\n background-color: transparent;\n}\n.calendar__calendar_xowpt th {\n border-bottom: 1px solid #29292c;\n} .calendar__dayNames_xowpt {\n background: #1c1c1e\n} .calendar__month_xowpt {\n color: rgba(255, 255, 255, 0.94)\n} .calendar__month_xowpt.calendar__clickableMonth_xowpt {\n background-color: rgba(214, 214, 229, 0.07)\n } .calendar__month_xowpt.calendar__clickableMonth_xowpt.calendar__active_xowpt {\n background-color: #f2f3f5\n } .calendar__month_xowpt.calendar__clickableMonth_xowpt.calendar__active_xowpt .calendar__monthTitle_xowpt {\n color: rgba(3, 3, 6, 0.88);\n } .calendar__month_xowpt.calendar__clickableMonth_xowpt.calendar__disabled_xowpt .calendar__monthTitle_xowpt {\n color: rgba(233, 233, 250, 0.37);\n } .calendar__dayName_xowpt {\n color: rgba(238, 238, 251, 0.55)\n}\n\n.calendar__dayName_1ip91 {\n color: rgba(238, 238, 251, 0.55)\n} .calendar__day_1ip91 {\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n color: rgba(255, 255, 255, 0.94)\n} .calendar__day_1ip91.calendar__highlighted_1ip91,\n .calendar__day_1ip91.calendar__range_1ip91.calendar__highlighted_1ip91:not(.calendar__disabled_1ip91) {\n color: rgba(255, 255, 255, 0.94);\n background: rgba(214, 214, 229, 0.07);\n } .calendar__day_1ip91.calendar__holiday_1ip91 {\n color: #ff4837;\n } .calendar__day_1ip91.calendar__disabled_1ip91 {\n color: rgba(233, 233, 250, 0.37);\n background: transparent;\n } .calendar__day_1ip91.calendar__today_1ip91 {\n color: #4a9dfc;\n } .calendar__day_1ip91.calendar__rangeComplete_1ip91 {\n background: #293044;\n } .calendar__day_1ip91.calendar__selected_1ip91,\n .calendar__day_1ip91.calendar__disabled_1ip91.calendar__selected_1ip91 {\n color: rgba(3, 3, 6, 0.88);\n background: #f2f3f5;\n } @media (hover) {\n .calendar__day_1ip91.calendar__selected_1ip91:hover {\n background: #dcdde1;\n }\n } .calendar__dayWrapper_1ip91 {\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0)\n} .calendar__range_1ip91 .calendar__day_1ip91:not(.calendar__selected_1ip91):not(.calendar__disabled_1ip91):not(.calendar__today_1ip91):not(.calendar__holiday_1ip91) {\n color: rgba(255, 255, 255, 0.94);\n } .calendar__range_1ip91:before {\n background: rgba(225, 225, 248, 0.09);\n } .calendar__rangeComplete_1ip91:before {\n background: #293044;\n } .calendar__transitLeft_1ip91:after {\n background: linear-gradient(\n 270deg,\n rgba(225, 225, 248, 0.09) 0%,\n rgba(255, 255, 255, 0) 100%\n );\n } .calendar__transitRight_1ip91:after {\n background: linear-gradient(\n 270deg,\n rgba(255, 255, 255, 0) 0%,\n rgba(225, 225, 248, 0.09) 100%\n );\n } .calendar__rangeComplete_1ip91.calendar__transitLeft_1ip91:after {\n background: linear-gradient(\n 270deg,\n #293044 0%,\n rgba(255, 255, 255, 0) 100%\n );\n } .calendar__rangeComplete_1ip91.calendar__transitRight_1ip91:after {\n background: linear-gradient(\n 270deg,\n rgba(255, 255, 255, 0) 0%,\n #293044 100%\n );\n } .calendar__dot_1ip91 {\n background: rgba(255, 255, 255, 0.94);\n} .calendar__selected_1ip91 .calendar__dot_1ip91 {\n background: rgba(3, 3, 6, 0.88);\n} .calendar__bottomAddon_1ip91.calendar__selected_1ip91,\n .calendar__bottomAddon_1ip91.calendar__selected_1ip91 > * {\n color: rgba(3, 3, 6, 0.88);\n }\n.calendar__withShadow_ibjhx {\n box-shadow: 0 1px 0 0 #29292c;\n}\n\n\n.calendar__empty_10uz4 {\n color: rgba(238, 238, 251, 0.55);\n}\n@media (max-width: 374px) {\n }\n.cc-calendar .calendar__button_nd934.calendar__button_nd934 {\n background-color: transparent\n } .cc-calendar .calendar__button_nd934.calendar__button_nd934:not(:disabled):hover {\n background-color: rgba(214, 214, 229, 0.07);\n color: rgba(255, 255, 255, 0.94);\n } .cc-calendar .calendar__button_nd934.calendar__button_nd934.calendar__filled_nd934 {\n background-color: rgba(222, 222, 238, 0.13)\n } .cc-calendar .calendar__button_nd934.calendar__button_nd934.calendar__filled_nd934:not(:disabled):hover {\n background-color: rgba(234, 234, 248, 0.15);\n } .cc-calendar .calendar__button_nd934.calendar__button_nd934.calendar__current_nd934 {\n color: #4a9dfc;\n } .cc-calendar .calendar__button_nd934.calendar__button_nd934.calendar__selected_nd934,\n .cc-calendar .calendar__button_nd934.calendar__button_nd934.calendar__selected_nd934:disabled {\n background-color: #f2f3f5;\n color: rgba(3, 3, 6, 0.88)\n } .cc-calendar .calendar__button_nd934.calendar__button_nd934.calendar__selected_nd934:not(:disabled):hover, .cc-calendar .calendar__button_nd934.calendar__button_nd934.calendar__selected_nd934:disabled:not(:disabled):hover {\n background-color: #f2f3f5;\n color: rgba(3, 3, 6, 0.88);\n }\n@media (max-width: 374px) {\n }.gallery__container_1thot {\n background-color: #262629\n} .gallery__modal_1thot {\n background: transparent;\n} .gallery__bottomButton_1thot {\n background-color: rgba(228, 228, 251, 0.28);\n}\n.gallery__component_dtzjz {\n background-color: rgba(228, 228, 251, 0.28);\n} .gallery__component_dtzjz:hover {\n background-color: rgba(233, 233, 250, 0.37);\n } .gallery__component_dtzjz:active {\n background-color: rgba(238, 238, 254, 0.46);\n }\n.gallery__buttons_167ax path {\n color: rgba(255, 255, 255, 0.94);\n } .gallery__iconButton_167ax path {\n color: #f2f3f5;\n } .gallery__iconButton_167ax:hover path {\n color: #e7e8eb;\n } .gallery__iconButton_167ax:active path {\n color: #dcdde1;\n }\n\n\n.gallery__headerMobile_m7be4.gallery__video_m7be4 {\n background-color: #262629;\n }\n.gallery__loading_jt23k {\n background-color: #1c1c1e\n} .gallery__loading_jt23k .gallery__active_jt23k {\n background-color: #29292c;\n } .gallery__brokenImageWrapper_jt23k {\n background-color: #29292c\n} .gallery__focused_jt23k {\n outline: 2px solid #3193fc;\n}\n.gallery__component_1qar0 {\n background-color: #262629;\n} .gallery__slideLoading_1qar0 {\n background-color: rgba(214, 214, 229, 0.07);\n} .gallery__spinner_1qar0 {\n color: rgba(255, 255, 255, 0.94);\n} .gallery__arrow_1qar0 {\n color: rgba(255, 255, 255, 0.94)\n} .gallery__arrow_1qar0:hover {\n background-color: #2f2f32;\n } .gallery__arrow_1qar0:active {\n background-color: #353539;\n } .gallery__focused_1qar0 {\n outline: 2px solid #3193fc;\n} .gallery__placeholder_1qar0 {\n background-color: #29292c;\n} .gallery__fullScreenImage_1qar0 {\n background-color: #121213;\n}\n.gallery__infoWrapper_7u7qp {\n background-color: #262629\n}\n.gallery__component_s1ljr {\n background-color: #262629\n}\n\n.gallery__icon_1tud1 {\n color: #fff;\n} .gallery__iconShape_1tud1 {\n fill: rgba(4, 4, 21, 0.47);\n}.select__arrow_f5abt {\n color: rgba(238, 238, 251, 0.55)\n} .select__arrow_f5abt.select__disabled_f5abt {\n color: rgba(228, 228, 251, 0.28);\n }\n\n.select__option_1ipra {\n background: #1c1c1e;\n color: rgba(255, 255, 255, 0.94)\n} .select__option_1ipra:not(.select__disabled_1ipra):active {\n background: rgba(225, 225, 248, 0.09);\n color: rgba(255, 255, 255, 0.94);\n } .select__selected_1ipra {\n background: #1c1c1e;\n color: rgba(255, 255, 255, 0.94);\n} .select__highlighted_1ipra {\n background: rgba(214, 214, 229, 0.07);\n color: rgba(255, 255, 255, 0.94);\n} .select__disabled_1ipra {\n background: #1c1c1e;\n color: rgba(238, 238, 251, 0.55);\n}\n.select__popoverInner_82re6 {\n background: transparent;\n} .select__optionsListWrapper_82re6 {\n box-shadow: 0 20px 24px rgba(0, 0, 0, 0.08), 0 12px 16px rgba(0, 0, 0, 0.04),\n 0 4px 8px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.04);\n background: #1c1c1e;\n} .select__optionsListBorder_82re6 {\n box-shadow: inset 0 0 0 1px #29292c;\n}\n\n.select__single_g11sa {\n background: rgba(255, 255, 255, 0.94)\n} .select__colorIcon_g11sa {\n color: #17d055;\n}\n\n.select__clearIcon_171i6 {\n color: rgba(228, 228, 251, 0.28)\n} .select__clearIcon_171i6:hover {\n color: rgba(233, 233, 250, 0.37);\n } .select__clearIcon_171i6:active {\n color: rgba(238, 238, 254, 0.46);\n }\n.select__placeholder_1eq0j {\n color: rgba(238, 238, 251, 0.55)\n} .select__placeholder_1eq0j.select__focused_1eq0j {\n color: rgba(233, 233, 250, 0.37);\n } .select__focusVisible_1eq0j {\n outline: 2px solid #3193fc;\n} @keyframes select__show-placeholder_1eq0j {\n}\n.select__footer_1hnvc {\n background-color: #1c1c1e\n} .select__highlighted_1hnvc {\n border-top: 1px solid #29292c;\n background-color: #1c1c1e;\n}\n.select__optgroup_12g29 {\n background: #1c1c1e\n} .select__label_12g29 {\n color: rgba(238, 238, 251, 0.55);\n}\n.select__optionsListHeader_ok75i {\n border-bottom: 1px solid transparent\n} .select__optionsListHeader_ok75i.select__headerHighlighted_ok75i {\n border-bottom-color: #29292c;\n } .select__optionsListFooter_ok75i {\n border-top: 1px solid transparent\n} .select__optionsListFooter_ok75i.select__withBorder_ok75i {\n border-top-color: #29292c;\n } .select__emptyPlaceholder_ok75i {\n color: rgba(238, 238, 251, 0.55);\n}\n\n.select__virtualOptionsListHeader_rqsiu {\n border-bottom: 1px solid #29292c;\n} .select__virtualOptionsListFooter_rqsiu {\n border-top: 1px solid transparent\n} .select__virtualOptionsListFooter_rqsiu.select__withBorder_rqsiu {\n border-top: 1px solid #29292c;\n } .select__virtualRow_rqsiu:before {\n background: #353539;\n } .select__emptyPlaceholder_rqsiu {\n color: rgba(238, 238, 251, 0.55);\n}\n\n.select__option_1hevb {\n background: #1c1c1e;\n color: rgba(255, 255, 255, 0.94)\n} .select__option_1hevb:not(.select__disabled_1hevb):active {\n background: rgba(225, 225, 248, 0.09);\n color: rgba(255, 255, 255, 0.94);\n } .select__option_1hevb:before {\n background: #353539;\n } .select__selected_1hevb {\n background: #1c1c1e;\n color: rgba(255, 255, 255, 0.94);\n} .select__highlighted_1hevb {\n background: rgba(214, 214, 229, 0.07);\n color: rgba(255, 255, 255, 0.94)\n} .select__disabled_1hevb {\n background: #1c1c1e;\n color: rgba(238, 238, 251, 0.55);\n} .select__highlighted_1hevb {\n background: rgba(214, 214, 229, 0.07);\n color: rgba(255, 255, 255, 0.94)\n}\n.select__option_kjknn {\n background: #1c1c1e;\n color: rgba(255, 255, 255, 0.94)\n} .select__option_kjknn:not(.select__disabled_kjknn):active {\n background: rgba(225, 225, 248, 0.09);\n color: rgba(255, 255, 255, 0.94);\n } .select__option_kjknn:before {\n background: #353539;\n } .select__selected_kjknn {\n background: #1c1c1e;\n color: rgba(255, 255, 255, 0.94);\n} .select__highlighted_kjknn {\n background: rgba(214, 214, 229, 0.07);\n color: rgba(255, 255, 255, 0.94)\n} .select__disabled_kjknn {\n background: #1c1c1e;\n color: rgba(238, 238, 251, 0.55);\n}\n.select__footer_15wof {\n background-color: #121213\n}\n.calendar-with-skeleton__skeleton_18njb {\n background-color: #1c1c1e;\n}.date-range-input__calendarContainer_rw1at {\n border: 1px solid #29292c\n}.calendar-input__calendarContainer_q90qf {\n border: 1px solid #29292c\n} .calendar-input__calendarIcon_q90qf {\n color: rgba(238, 238, 251, 0.55)\n}.date-time-input__calendarContainer_1rlz1 {\n border: 1px solid #29292c\n}.universal-date-input__calendarIcon_1u54x {\n color: rgba(238, 238, 251, 0.55)\n} .universal-date-input__calendarContainer_1u54x {\n border: 1px solid #29292c\n} .universal-date-input__blink_1u54x.universal-date-input__blink_1u54x.universal-date-input__blink_1u54x {\n background-color: #392523;\n}\n\n.calendar-range__component_16hcz:after {\n background-color: rgba(255, 255, 255, 0.94);\n }\n.input-autocomplete__placeholder_1mqb4 {\n color: rgba(238, 238, 251, 0.55);\n} .input-autocomplete__focusVisible_1mqb4 {\n outline: 2px solid #3193fc;\n}\n\n.picker-button__linkOpen_11gdq:not(:hover) {\n background-color: rgba(214, 214, 229, 0.07);\n}\n.select-with-tags__tag_vjncy:not(.select-with-tags__tagNoClose_vjncy):active:not(:disabled) {\n background-color: #f2f3f5;\n color: rgba(3, 3, 6, 0.88);\n } .select-with-tags__tag_vjncy:not(.select-with-tags__tagNoClose_vjncy):hover:not(:disabled):not(:active) {\n background-color: #f2f3f5;\n color: rgba(3, 3, 6, 0.88);\n } .select-with-tags__tagCross_vjncy > svg {\n fill: rgba(4, 4, 21, 0.47);\n } .select-with-tags__tagCross_vjncy:hover > svg {\n fill: rgba(4, 4, 19, 0.55);\n } .select-with-tags__tagCross_vjncy:active > svg {\n fill: rgba(1, 1, 12, 0.63);\n }\n.select-with-tags__input_5icx1 {\n background-color: transparent;\n color: rgba(255, 255, 255, 0.94)\n} .select-with-tags__input_5icx1:disabled,\n .select-with-tags__input_5icx1:disabled::placeholder {\n color: rgba(233, 233, 250, 0.37);\n } .select-with-tags__input_5icx1::placeholder {\n color: rgba(238, 238, 251, 0.55);\n } .select-with-tags__input_5icx1:focus::placeholder {\n color: rgba(233, 233, 250, 0.37);\n } .select-with-tags__focusVisible_5icx1 {\n outline: 2px solid #3193fc;\n} .select-with-tags__placeholder_5icx1 {\n color: rgba(238, 238, 251, 0.55);\n}.table__component_zxtli {\n border-top: 1px solid #353539;\n}\n.table__wrapper_14zd0 {\n background: #121213;\n box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16), 0 0 1px rgba(0, 0, 0, 0.16);\n}\n\n.table__component_m6og9 {\n color: rgba(255, 255, 255, 0.94);\n border-top: 1px solid #353539\n}\n\n.table__component_1nfq1 th:not(:last-child):not(:empty):after {\n background-color: #353539;\n }\n.table__component_1k9er {\n color: rgba(255, 255, 255, 0.94);\n border-bottom: 1px solid #353539;\n background: #121213\n} .table__sorted_1k9er {\n color: rgba(255, 255, 255, 0.94);\n} .table__stickyHeader_1k9er {\n box-shadow: inset 0 -1px 0 0 rgba(11, 31, 53, 0.16);\n}\n.table__component_5j9e5 {\n background: #121213\n} .table__clickable_5j9e5:hover {\n background-color: #1c1c1e;\n } .table__selected_5j9e5 {\n background-color: #f2f8ff\n} .table__selected_5j9e5:hover {\n background-color: #e8f2fe;\n }\n.table__icon_1n6ch {\n color: #898991\n} .table__icon_1n6ch:hover {\n color: rgba(255, 255, 255, 0.94);\n } .table__sorted_1n6ch {\n color: #3193fc\n} .table__sorted_1n6ch:hover {\n color: #3193fc;\n }\n.table__open_3k8hh,\n.table__open_3k8hh:hover {\n background-color: rgba(222, 222, 238, 0.13);\n}.intl-phone-input__emptyCountryIcon_tkyk0 {\n color: #898991;\n}\n.intl-phone-input__flagPlaceholder_1f7na {\n background-color: rgba(222, 222, 238, 0.13);\n}\n.intl-phone-input__dialCode_1jz4b {\n color: rgba(238, 238, 251, 0.55);\n}\n.intl-phone-input__emptyCountryIcon_19y90 {\n color: #898991;\n} .intl-phone-input__focusVisible_19y90 {\n outline: 2px solid #3193fc;\n}\n.international-phone-input__dialCode_1frgs {\n color: rgba(238, 238, 251, 0.55);\n} .international-phone-input__emptyCountryIcon_1frgs {\n color: rgba(238, 238, 251, 0.55);\n}\n.international-phone-input__flagPlaceholder_167vd {\n background-color: rgba(214, 214, 229, 0.07);\n}\n.international-phone-input__emptyCountryIcon_polk2 {\n color: rgba(238, 238, 251, 0.55);\n} .international-phone-input__focusVisible_polk2 {\n outline: 2px solid #3193fc;\n}.tabs__component_16m4w:before {\n background-color: rgba(228, 228, 251, 0.28);\n } .tabs__title_16m4w {\n color: rgba(238, 238, 251, 0.55)\n} .tabs__title_16m4w:not(:disabled):hover {\n color: rgba(255, 255, 255, 0.94);\n } .tabs__focused_16m4w {\n outline: 2px solid #3193fc;\n} .tabs__selected_16m4w {\n color: rgba(255, 255, 255, 0.94);\n} .tabs__disabled_16m4w {\n color: rgba(233, 233, 250, 0.37);\n} .tabs__line_16m4w {\n background-color: #f83a2a;\n} .tabs__option_16m4w {\n color: rgba(255, 255, 255, 0.94);\n}\n.tabs__component_16m4w:before {\n background-color: rgba(228, 228, 251, 0.28);\n }.tabs__title_16m4w {\n color: rgba(238, 238, 251, 0.55)\n}.tabs__title_16m4w:not(:disabled):hover {\n color: rgba(255, 255, 255, 0.94);\n }.tabs__focused_16m4w {\n outline: 2px solid #3193fc;\n}.tabs__selected_16m4w {\n color: rgba(255, 255, 255, 0.94);\n}.tabs__disabled_16m4w {\n color: rgba(233, 233, 250, 0.37);\n}.tabs__line_16m4w {\n background-color: #f83a2a;\n}.tabs__option_16m4w {\n color: rgba(255, 255, 255, 0.94);\n}\n\n.tabs__primary_zl6d6:after {\n background-color: rgba(228, 228, 251, 0.28);\n } .tabs__primary_zl6d6 {\n} .tabs__secondary_zl6d6:before {\n background-color: transparent;\n } .tabs__secondary_zl6d6.tabs__xs_zl6d6 {\n } .tabs__borderVisible_zl6d6:before {\n background-color: rgba(222, 222, 238, 0.13);\n}\n\n\n";
2
+ var mobileDarkBluetint = ".divider__component_ip3af {\n border-bottom: 1px solid #353539;\n}.backdrop__backdrop_10lfj {\n -webkit-tap-highlight-color: transparent;\n} .backdrop__appear_10lfj,\n.backdrop__enter_10lfj {\n background-color: transparent;\n} .backdrop__appearActive_10lfj,\n.backdrop__enterActive_10lfj,\n.backdrop__appearDone_10lfj,\n.backdrop__enterDone_10lfj {\n background-color: rgba(0, 0, 0, 0.7);\n} .backdrop__exit_10lfj {\n background-color: rgba(0, 0, 0, 0.7);\n} .backdrop__exitActive_10lfj,\n.backdrop__exitDone_10lfj {\n background-color: transparent;\n} .backdrop__transparent_10lfj.backdrop__transparent_10lfj {\n background-color: transparent;\n}.card-image__cardImage_ll3kr {\n background: #e7e8ea;\n} .card-image__loaded_ll3kr {\n background: transparent\n}.badge__component_120dx.badge__background-accent_120dx {\n background-color: #f83a2a;\n color: rgba(255, 255, 255, 0.94);\n } .badge__component_120dx.badge__background-specialbg-secondary-transparent_120dx {\n background-color: rgba(225, 225, 248, 0.09);\n color: rgba(255, 255, 255, 0.94);\n } .badge__component_120dx.badge__background-primary_120dx {\n background-color: #262629;\n color: rgba(255, 255, 255, 0.94);\n } .badge__outlineCount_120dx {\n border: 2px solid rgba(3, 3, 6, 0.88);\n} .badge__heightS_120dx.badge__outlineCount_120dx {\n border: 1px solid rgba(3, 3, 6, 0.88);\n} .badge__icon_120dx {\n color: #17d055\n} .badge__icon_120dx.badge__positive_120dx {\n color: #17d055;\n background-color: #17d055;\n } .badge__icon_120dx.badge__attention_120dx {\n color: #fda136;\n background-color: #fda136;\n } .badge__icon_120dx.badge__negative_120dx {\n color: #ff4837;\n background-color: #ff4837;\n } .badge__icon_120dx.badge__link_120dx {\n color: #3193fc;\n background-color: #3193fc;\n } .badge__icon_120dx.badge__tertiary_120dx {\n color: #4a4a51;\n background-color: #4a4a51;\n } .badge__icon_120dx.badge__secondary_120dx {\n color: #898991;\n background-color: #898991;\n } .badge__icon_120dx.badge__primary_120dx {\n color: rgba(255, 255, 255, 0.94);\n background-color: rgba(255, 255, 255, 0.94);\n } .badge__graphic-static-light_120dx.badge__icon_120dx:before {\n background-color: rgba(255, 255, 255, 0.94);\n} .badge__graphic-primary_120dx.badge__icon_120dx:before {\n background-color: rgba(255, 255, 255, 0.94);\n} .badge__outline_120dx {\n background-color: rgba(3, 3, 6, 0.88);\n} .badge__outlineColor_120dx {\n background-color: #f83a2a\n} .badge__outlineColor_120dx.badge__attention_120dx {\n background-color: #fda136;\n } .badge__outlineColor_120dx.badge__positive_120dx {\n background-color: #17d055;\n } .badge__outlineColor_120dx.badge__negative_120dx {\n background-color: #ff4837;\n } .badge__outlineColor_120dx.badge__link_120dx {\n background-color: #3193fc;\n } .badge__outlineColor_120dx.badge__tertiary_120dx {\n background-color: #4a4a51;\n } .badge__outlineColor_120dx.badge__secondary_120dx {\n background-color: #898991;\n } .badge__outlineColor_120dx.badge__primary_120dx {\n background-color: rgba(255, 255, 255, 0.94);\n } .badge__dot_120dx.badge__outlineCount_120dx {\n border: 1px solid rgba(3, 3, 6, 0.88);\n}.hatching-progress-bar__container_ykyxq {\n background: rgba(222, 222, 238, 0.13);\n} .hatching-progress-bar__hatch_ykyxq {\n background: repeating-linear-gradient(\n -45deg,\n rgba(222, 222, 238, 0.13) 6px 10px,\n rgba(255, 255, 255, 0) 10px 18px\n );\n} .hatching-progress-bar__positive_ykyxq {\n background: #17d055;\n } .hatching-progress-bar__attention_ykyxq {\n background: #fda136;\n } .hatching-progress-bar__negative_ykyxq {\n background: #ff4837;\n } .hatching-progress-bar__link_ykyxq {\n background: #3193fc;\n } .hatching-progress-bar__tertiary_ykyxq {\n background: #4a4a51;\n } .hatching-progress-bar__secondary_ykyxq {\n background: #898991;\n } .hatching-progress-bar__primary_ykyxq {\n background: rgba(255, 255, 255, 0.94);\n } .hatching-progress-bar__accent_ykyxq {\n background: #f83a2a;\n }.dropzone__component_1ta7y {\n border: 1px dashed rgba(255, 255, 255, 0.94);\n} .dropzone__component_1ta7y:not(.dropzone__disabled_1ta7y):hover {\n background-color: transparent;\n} .dropzone__dragOver_1ta7y {\n background-color: transparent;\n} .dropzone__error_1ta7y {\n border-color: #ff4837;\n}\n.dropzone__overlay_n2jsj {\n background: rgba(214, 214, 229, 0.07);\n} .dropzone__text_n2jsj {\n color: rgba(255, 255, 255, 0.94);\n}@media (max-width: 599px) {\n }\n@media (min-width: 320px) {\n }\n@media (min-width: 360px) {\n }\n@media (min-width: 375px) {\n }\n@media (min-width: 412px) {\n }\n@media (min-width: 600px) and (max-width: 1023px) {\n }\n@media (min-width: 600px) {\n }\n@media (min-width: 768px) {\n }\n@media (min-width: 1024px) {\n }\n@media (min-width: 1024px) {\n }\n@media (min-width: 1280px) {\n }\n@media (min-width: 1440px) {\n }\n@media (min-width: 1920px) {\n }\n@media (max-width: 599px) {\n }\n@media (min-width: 320px) {\n }\n@media (min-width: 360px) {\n }\n@media (min-width: 375px) {\n }\n@media (min-width: 412px) {\n }\n@media (min-width: 600px) and (max-width: 1023px) {\n }\n@media (min-width: 600px) {\n }\n@media (min-width: 768px) {\n }\n@media (min-width: 1024px) {\n }\n@media (min-width: 1024px) {\n }\n@media (min-width: 1280px) {\n }\n@media (min-width: 1440px) {\n }\n@media (min-width: 1920px) {\n }\n.icon-view__component_1lzkx {\n color: rgba(238, 238, 251, 0.55)\n} .icon-view__bg_1lzkx {\n fill: #1c1c1e;\n} .icon-view__border_1lzkx {\n stroke: rgba(225, 225, 248, 0.09);\n fill: transparent;\n}.indicator__component_1n5a7 {\n color: rgba(255, 255, 255, 0.94);\n background-color: #f83a2a;\n} .indicator__red_1n5a7 {\n background-color: #f83a2a;\n color: rgba(255, 255, 255, 0.94)\n} .indicator__red_1n5a7.indicator__border_1n5a7 {\n outline: 2px solid #121213;\n } .indicator__white_1n5a7 {\n background-color: #262629;\n color: rgba(255, 255, 255, 0.94)\n} .indicator__white_1n5a7.indicator__border_1n5a7 {\n outline: 2px solid #121213;\n } .indicator__grey_1n5a7 {\n background-color: rgba(225, 225, 248, 0.09);\n color: rgba(255, 255, 255, 0.94)\n} .indicator__grey_1n5a7.indicator__border_1n5a7 {\n outline: 2px solid #121213;\n }.link__primary_142ul {\n color: rgba(255, 255, 255, 0.94);\n border-bottom-color: rgba(255, 255, 255, 0.94)\n} @media (hover: hover) {\n .link__primary_142ul:hover {\n color: rgba(255, 255, 255, 0.7);\n }\n } .link__primary_142ul:active {\n color: rgba(255, 255, 255, 0.6);\n } .link__secondary_142ul {\n color: rgba(238, 238, 251, 0.55);\n border-bottom-color: rgba(238, 238, 251, 0.55)\n} @media (hover: hover) {\n .link__secondary_142ul:hover {\n color: rgba(239, 240, 252, 0.65);\n }\n } .link__secondary_142ul:active {\n color: rgba(243, 245, 254, 0.75);\n } .link__defaultView_142ul {\n color: #4a9dfc;\n border-bottom-color: #4a9dfc\n} @media (hover: hover) {\n .link__defaultView_142ul:hover {\n color: #63aafd;\n }\n } .link__defaultView_142ul:active {\n color: #7fb6ff;\n }\n@media (hover: hover) {\n .link__component_10j2b:hover .link__text_10j2b {\n border-bottom-color: rgba(0, 0, 0, 0);\n }\n } .link__component_10j2b:active .link__text_10j2b {\n border-bottom-color: rgba(0, 0, 0, 0);\n } .link__focused_10j2b {\n outline: 2px solid #3193fc;\n} .link__pseudo_10j2b {\n background-color: transparent;\n}\n.link__primary_1cahd {\n color: rgba(3, 3, 6, 0.88);\n border-bottom-color: rgba(3, 3, 6, 0.88)\n} @media (hover: hover) {\n .link__primary_1cahd:hover {\n color: rgba(1, 1, 12, 0.63);\n }\n } .link__primary_1cahd:active {\n color: rgba(4, 4, 19, 0.55);\n } .link__secondary_1cahd {\n color: rgba(4, 4, 19, 0.55);\n border-bottom-color: rgba(4, 4, 19, 0.55)\n} @media (hover: hover) {\n .link__secondary_1cahd:hover {\n color: rgba(1, 1, 12, 0.63);\n }\n } .link__secondary_1cahd:active {\n color: rgba(0, 0, 10, 0.71);\n } .link__defaultView_1cahd {\n color: #2a77ef;\n border-bottom-color: #2a77ef\n} @media (hover: hover) {\n .link__defaultView_1cahd:hover {\n color: #2c64d4;\n }\n } .link__defaultView_1cahd:active {\n color: #2453b4;\n }@keyframes loader__blink_x2k9b {\n}.progress-bar__container_14j0f {\n background-color: rgba(222, 222, 238, 0.13);\n}\n.progress-bar__filled_10kre.progress-bar__positive_10kre {\n background: #17d055;\n } .progress-bar__filled_10kre.progress-bar__negative_10kre {\n background: #ff4837;\n } .progress-bar__filled_10kre.progress-bar__attention_10kre {\n background: #fda136;\n } .progress-bar__filled_10kre.progress-bar__link_10kre {\n background: #3193fc;\n } .progress-bar__filled_10kre.progress-bar__tertiary_10kre {\n background: #4a4a51;\n } .progress-bar__filled_10kre.progress-bar__secondary_10kre {\n background: #898991;\n } .progress-bar__filled_10kre.progress-bar__primary_10kre {\n background: rgba(255, 255, 255, 0.94);\n } .progress-bar__filled_10kre.progress-bar__accent_10kre {\n background: #f83a2a;\n }\n.progress-bar__container_r7jtg {\n background-color: rgba(15, 25, 55, 0.1);\n}.scrollbar__component_1fu06 .scrollbar:before {\n background-color: rgba(228, 228, 251, 0.28);\n } .scrollbar__component_1fu06.dragging .track .scrollbar.visible:before {\n background-color: rgba(238, 238, 254, 0.46);\n }\n\n.scrollbar__component_o7sjm .scrollbar:before {\n background-color: rgba(9, 12, 37, 0.28);\n } .scrollbar__component_o7sjm.dragging .track .scrollbar.visible:before {\n background-color: rgba(4, 4, 21, 0.47);\n }.skeleton__component_178a3 {\n background: rgba(214, 214, 229, 0.07);\n} @keyframes skeleton__background_178a3 {\n 0% {\n background: rgba(214, 214, 229, 0.07);\n }\n 100% {\n background: rgba(222, 222, 238, 0.13);\n }\n}\n.skeleton__component_1skbv {\n color: transparent\n} .skeleton__component_1skbv:before {\n background: transparent;\n}\n.skeleton__component_qenue {\n background: rgba(38, 55, 88, 0.06);\n} @keyframes skeleton__background-inverted_qenue {\n 0% {\n background: rgba(38, 55, 88, 0.06);\n }\n 100% {\n background: rgba(15, 25, 55, 0.1);\n }\n}\n.segmented-control__wrapper_v4ab2 {\n background-color: rgba(225, 225, 248, 0.09);\n} .segmented-control__segment_v4ab2.segmented-control__selected_v4ab2 {\n color: rgba(255, 255, 255, 0.94);\n} .segmented-control__selectedBox_v4ab2 {\n border: 0.5px solid rgba(225, 225, 248, 0.09);\n background-color: rgba(214, 214, 229, 0.07);\n}\n.segmented-control__selectedBox_1ikso {\n box-shadow: 0 12px 16px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.04),\n 0 0 1px rgba(0, 0, 0, 0.04);\n}\n.segmented-control__wrapper_stu4g {\n background-color: rgba(30, 43, 68, 0.08);\n} .segmented-control__segment_stu4g.segmented-control__selected_stu4g {\n color: rgba(3, 3, 6, 0.88);\n} .segmented-control__selectedBox_stu4g {\n border: 0.5px solid rgba(30, 43, 68, 0.08);\n background-color: #fff;\n}\n.segmented-control__segment_ghynd {\n color: rgba(255, 255, 255, 0.94)\n} .segmented-control__segment_ghynd:not(:first-child):before {\n background-color: rgba(222, 222, 238, 0.13);\n }\n.segmented-control__segment_dl15i {\n background-color: transparent\n} .segmented-control__focused_dl15i {\n outline: 2px solid #3193fc;\n}\n.segmented-control__segment_1qjhk {\n color: rgba(3, 3, 6, 0.88)\n} .segmented-control__segment_1qjhk:not(:first-child):before {\n background-color: rgba(15, 25, 55, 0.1);\n }.slider__component_1cp1w .noUi-base:hover .noUi-connects {\n background: rgba(222, 222, 238, 0.13);\n } .slider__component_1cp1w .noUi-base:hover .noUi-connect {\n background: #f83a2a;\n } .slider__component_1cp1w .noUi-handle:hover .noUi-touch-area {\n background: #ff503e;\n } .slider__component_1cp1w .noUi-handle:active .noUi-touch-area {\n background: #fd624e;\n } .slider__component_1cp1w .noUi-connects {\n background: rgba(222, 222, 238, 0.13);\n } .slider__component_1cp1w .noUi-connect {\n background: #f83a2a;\n } .slider__component_1cp1w .noUi-handle {\n border: 2px solid transparent;\n } .slider__component_1cp1w .noUi-touch-area {\n background: #f83a2a;\n } .slider__component_1cp1w .noUi-pips {\n color: rgba(238, 238, 251, 0.55);\n }.status__soft_1ou3b.status__green_1ou3b, .status__muted-alt_1ou3b.status__green_1ou3b {\n background: #d1f1d7;\n color: #0d9336;\n } .status__soft_1ou3b.status__orange_1ou3b, .status__muted-alt_1ou3b.status__orange_1ou3b {\n background: #fde6c8;\n color: #ea8313;\n } .status__soft_1ou3b.status__red_1ou3b, .status__muted-alt_1ou3b.status__red_1ou3b {\n background: #ffdfdf;\n color: #ec2d20;\n } .status__soft_1ou3b.status__blue_1ou3b, .status__muted-alt_1ou3b.status__blue_1ou3b {\n background: #d8eaff;\n color: #2a77ef;\n } .status__soft_1ou3b.status__teal_1ou3b, .status__muted-alt_1ou3b.status__teal_1ou3b {\n background: #c8f1f3;\n color: #058a8f;\n } .status__soft_1ou3b.status__grey_1ou3b, .status__muted-alt_1ou3b.status__grey_1ou3b {\n background: rgba(222, 222, 238, 0.13);\n color: rgba(238, 238, 251, 0.55);\n } .status__soft_1ou3b.status__purple_1ou3b, .status__muted-alt_1ou3b.status__purple_1ou3b {\n background: #e3e6fe;\n color: #7a63f1;\n } .status__contrast_1ou3b {\n color: rgba(3, 3, 6, 0.88)\n} .status__contrast_1ou3b.status__green_1ou3b {\n background: #0cc44d;\n } .status__contrast_1ou3b.status__orange_1ou3b {\n background: #fa9313;\n } .status__contrast_1ou3b.status__red_1ou3b {\n background: #fe5e48;\n } .status__contrast_1ou3b.status__blue_1ou3b {\n background: #3193fc;\n } .status__contrast_1ou3b.status__teal_1ou3b {\n background: #09b9be;\n } .status__contrast_1ou3b.status__grey_1ou3b {\n background: #898991;\n } .status__contrast_1ou3b.status__purple_1ou3b {\n background: #897eff;\n } .status__muted_1ou3b.status__green_1ou3b {\n background: #dff8e5;\n color: #0d9336;\n } .status__muted_1ou3b.status__orange_1ou3b {\n background: #ffefd9;\n color: #ea8313;\n } .status__muted_1ou3b.status__red_1ou3b {\n background: #ffebeb;\n color: #ec2d20;\n } .status__muted_1ou3b.status__blue_1ou3b {\n background: #e4f0ff;\n color: #2a77ef;\n } .status__muted_1ou3b.status__teal_1ou3b {\n background: #daf7f8;\n color: #058a8f;\n } .status__muted_1ou3b.status__grey_1ou3b {\n background: rgba(225, 225, 248, 0.09);\n color: rgba(238, 238, 251, 0.55);\n } .status__muted_1ou3b.status__purple_1ou3b {\n background: #eeedff;\n color: #7a63f1;\n }.status-badge__positive-checkmark_e5swm {\n background-color: #17d055;\n} .status-badge__negative-cross_e5swm,\n.status-badge__negative-alert_e5swm,\n.status-badge__negative-block_e5swm {\n background-color: #ff4837;\n} .status-badge__attention-alert_e5swm {\n background-color: #fda136;\n} .status-badge__neutral-information_e5swm,\n.status-badge__neutral-operation_e5swm,\n.status-badge__neutral-cross_e5swm {\n background-color: #898991;\n}\n.status-badge__component_1ie0m {\n color: rgba(255, 255, 255, 0.94);\n}\n.status-badge__positive-checkmark_1f3lp {\n background-color: #0cc44d;\n} .status-badge__negative-cross_1f3lp,\n.status-badge__negative-alert_1f3lp,\n.status-badge__negative-block_1f3lp {\n background-color: #ff4837;\n} .status-badge__attention-alert_1f3lp {\n background-color: #fa9313;\n} .status-badge__neutral-information_1f3lp,\n.status-badge__neutral-operation_1f3lp,\n.status-badge__neutral-cross_1f3lp {\n background-color: #898991;\n}.underlay__background-accent_mckhd[class] {\n background-color: #ef3124;\n } .underlay__background-info_mckhd[class] {\n background-color: #001c3c;\n } .underlay__background-attention-muted_mckhd[class] {\n background-color: #36291f;\n } .underlay__background-positive-muted_mckhd[class] {\n background-color: #232d25;\n } .underlay__background-negative-muted_mckhd[class] {\n background-color: #392523;\n } .underlay__background-primary_mckhd[class] {\n background-color: #121213;\n } .underlay__background-primary-inverted_mckhd[class] {\n background-color: #fff;\n } .underlay__background-secondary_mckhd[class] {\n background-color: #1c1c1e;\n } .underlay__background-secondary-inverted_mckhd[class] {\n background-color: #f2f3f5;\n } .underlay__background-tertiary_mckhd[class] {\n background-color: #27272a;\n } .underlay__background-tertiary-inverted_mckhd[class] {\n background-color: #e7e8ea;\n } .underlay__background-quaternary_mckhd[class] {\n background-color: #36363a;\n } .underlay__background-quaternary-inverted_mckhd[class] {\n background-color: #dcdee2;\n } .underlay__background-specialbg-component_mckhd {\n background-color: rgba(255, 255, 255, 0.1);\n } .underlay__background-specialbg-component-inverted_mckhd {\n background-color: rgba(11, 31, 53, 0.07);\n } .underlay__background-specialbg-primary-grouped_mckhd {\n background-color: #1c1c1e;\n } .underlay__background-specialbg-secondary-grouped_mckhd {\n background-color: #27272a;\n } .underlay__background-specialbg-tertiary-grouped_mckhd {\n background-color: #36363a;\n } .underlay__background-specialbg-secondary-transparent_mckhd {\n background-color: rgba(214, 214, 229, 0.07);\n } .underlay__background-specialbg-secondary-transparent-inverted_mckhd {\n background-color: rgba(38, 55, 88, 0.06);\n } .underlay__background-specialbg-tertiary-transparent_mckhd {\n background-color: rgba(222, 222, 240, 0.12);\n } .underlay__background-specialbg-tertiary-transparent-inverted_mckhd {\n background-color: rgba(30, 43, 68, 0.08);\n } .underlay__shadow-xs_mckhd {\n box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.04);\n } .underlay__shadow-s_mckhd {\n box-shadow: 0 12px 16px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.04),\n 0 0 1px rgba(0, 0, 0, 0.04);\n } .underlay__shadow-m_mckhd {\n box-shadow: 0 20px 24px rgba(0, 0, 0, 0.08), 0 12px 16px rgba(0, 0, 0, 0.04),\n 0 4px 8px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.04);\n } .underlay__shadow-l_mckhd {\n box-shadow: 0 24px 32px rgba(0, 0, 0, 0.08), 0 20px 24px rgba(0, 0, 0, 0.08),\n 0 12px 16px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.04);\n } .underlay__shadow-xl_mckhd {\n box-shadow: 0 32px 40px rgba(0, 0, 0, 0.08), 0 24px 32px rgba(0, 0, 0, 0.08),\n 0 20px 24px rgba(0, 0, 0, 0.08), 0 12px 16px rgba(0, 0, 0, 0.04),\n 0 4px 8px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.04);\n } .underlay__shadow-xs-hard_mckhd {\n box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16), 0 0 1px rgba(0, 0, 0, 0.16);\n } .underlay__shadow-s-hard_mckhd {\n box-shadow: 0 12px 16px rgba(0, 0, 0, 0.16), 0 4px 8px rgba(0, 0, 0, 0.16),\n 0 0 1px rgba(0, 0, 0, 0.16);\n } .underlay__shadow-m-hard_mckhd {\n box-shadow: 0 20px 24px rgba(0, 0, 0, 0.2), 0 12px 16px rgba(0, 0, 0, 0.16),\n 0 4px 8px rgba(0, 0, 0, 0.16), 0 0 1px rgba(0, 0, 0, 0.16);\n } .underlay__shadow-l-hard_mckhd {\n box-shadow: 0 24px 32px rgba(0, 0, 0, 0.2), 0 20px 24px rgba(0, 0, 0, 0.2),\n 0 12px 16px rgba(0, 0, 0, 0.16), 0 4px 8px rgba(0, 0, 0, 0.16), 0 0 1px rgba(0, 0, 0, 0.16);\n } .underlay__shadow-xl-hard_mckhd {\n box-shadow: 0 32px 40px rgba(0, 0, 0, 0.2), 0 24px 32px rgba(0, 0, 0, 0.2),\n 0 20px 24px rgba(0, 0, 0, 0.2), 0 12px 16px rgba(0, 0, 0, 0.16),\n 0 4px 8px rgba(0, 0, 0, 0.16), 0 0 1px rgba(0, 0, 0, 0.16);\n } .underlay__shadow-xs-up_mckhd {\n box-shadow: 0 0 4px rgba(0, 0, 0, 0.02), 0 -2px 4px rgba(0, 0, 0, 0.04);\n } .underlay__shadow-s-up_mckhd {\n box-shadow: 0 0 8px rgba(0, 0, 0, 0.04), 0 -4px 8px rgba(0, 0, 0, 0.08);\n } .underlay__shadow-m-up_mckhd {\n box-shadow: 0 0 16px rgba(0, 0, 0, 0.08), 0 -8px 16px rgba(0, 0, 0, 0.16);\n } .underlay__shadow-l-up_mckhd {\n box-shadow: 0 0 24px rgba(0, 0, 0, 0.12), 0 -12px 24px rgba(0, 0, 0, 0.24);\n } .underlay__shadow-xl-up_mckhd {\n box-shadow: 0 0 32px rgba(0, 0, 0, 0.16), 0 -16px 32px rgba(0, 0, 0, 0.32);\n } .underlay__shadow-xs-hard-up_mckhd {\n box-shadow: 0 0 4px rgba(0, 0, 0, 0.02), 0 -2px 4px rgba(0, 0, 0, 0.04),\n 0 -2px 4px rgba(0, 0, 0, 0.16);\n } .underlay__shadow-s-hard-up_mckhd {\n box-shadow: 0 0 8px rgba(0, 0, 0, 0.04), 0 -4px 8px rgba(0, 0, 0, 0.08),\n 0 -4px 8px rgba(0, 0, 0, 0.16);\n } .underlay__shadow-m-hard-up_mckhd {\n box-shadow: 0 0 16px rgba(0, 0, 0, 0.08), 0 -8px 16px rgba(0, 0, 0, 0.16),\n 0 -8px 16px rgba(0, 0, 0, 0.16);\n } .underlay__shadow-l-hard-up_mckhd {\n box-shadow: 0 0 24px rgba(0, 0, 0, 0.12), 0 -12px 24px rgba(0, 0, 0, 0.24),\n 0 -12px 24px rgba(0, 0, 0, 0.16);\n } .underlay__shadow-xl-hard-up_mckhd {\n box-shadow: 0 0 32px rgba(0, 0, 0, 0.16), 0 -16px 32px rgba(0, 0, 0, 0.32),\n 0 -16px 32px rgba(0, 0, 0, 0.16);\n } .underlay__border-color-accent_mckhd {\n border-color: #f83a2a;\n } .underlay__border-color-key_mckhd {\n border-color: rgba(255, 255, 255, 0.94);\n } .underlay__border-color-key-inverted_mckhd {\n border-color: rgba(3, 3, 6, 0.88);\n } .underlay__border-color-link_mckhd {\n border-color: #3193fc;\n } .underlay__border-color-primary_mckhd {\n border-color: #353539;\n } .underlay__border-color-primary-inverted_mckhd {\n border-color: #d2d3d9;\n } .underlay__border-color-secondary_mckhd {\n border-color: #29292c;\n } .underlay__border-color-secondary-inverted_mckhd {\n border-color: #e7e8eb;\n } .underlay__border-color-tertiary_mckhd {\n border-color: #212124;\n } .underlay__border-color-tertiary-inverted_mckhd {\n border-color: #edeef0;\n } .underlay__border-color-underline_mckhd {\n border-color: #4a4a51;\n } .underlay__border-color-underline-inverted_mckhd {\n border-color: #babbc2;\n } .underlay__border-color-graphic-attention_mckhd {\n border-color: #fda136;\n } .underlay__border-color-graphic-link_mckhd {\n border-color: #3193fc;\n } .underlay__border-color-graphic-negative_mckhd {\n border-color: #ff4837;\n } .underlay__border-color-graphic-positive_mckhd {\n border-color: #17d055;\n } .underlay__border-color-specialbg-secondary-transparent_mckhd {\n border-color: rgba(225, 225, 248, 0.09);\n } .underlay__border-color-specialbg-secondary-transparent-inverted_mckhd {\n border-color: rgba(30, 43, 68, 0.08);\n } .underlay__border-color-specialbg-tertiary-transparent_mckhd {\n border-color: rgba(222, 222, 238, 0.13);\n } .underlay__border-color-specialbg-tertiary-transparent-inverted_mckhd {\n border-color: rgba(15, 25, 55, 0.1);\n }.checkbox-group__label_1ja6m {\n color: rgba(255, 255, 255, 0.94);\n}\n.checkbox-group__label_1o2ak {\n color: rgba(238, 238, 251, 0.55);\n}\n.checkbox-group__error_ceu8t {\n border-left: 1px solid #ff4837\n} .checkbox-group__errorMessage_ceu8t {\n color: #ff4837;\n} .checkbox-group__hint_ceu8t {\n color: rgba(238, 238, 251, 0.55);\n}.checkbox__box_1vgb6 {\n color: rgba(3, 3, 6, 0.88);\n background-color: #262629;\n border: 1.5px solid rgba(238, 238, 251, 0.55);\n} .checkbox__checkedIcon_1vgb6 {\n color: rgba(3, 3, 6, 0.88);\n} @media (hover: hover) {\n .checkbox__component_1vgb6:hover:not(.checkbox__disabled_1vgb6) .checkbox__box_1vgb6 {\n background-color: #2f2f32;\n border-color: rgba(238, 238, 251, 0.55);\n }\n} .checkbox__component_1vgb6:active:not(.checkbox__disabled_1vgb6) .checkbox__box_1vgb6 {\n background-color: #353539;\n border-color: rgba(238, 238, 251, 0.55);\n} .checkbox__checked_1vgb6 .checkbox__box_1vgb6 {\n background-color: #f2f3f5;\n border-color: transparent;\n} .checkbox__checked_1vgb6:hover:not(.checkbox__disabled_1vgb6) .checkbox__box_1vgb6 {\n background-color: #dcdde1;\n border-color: transparent;\n} .checkbox__checked_1vgb6:active:not(.checkbox__disabled_1vgb6) .checkbox__box_1vgb6 {\n background-color: #d2d3d9;\n border-color: transparent;\n} .checkbox__indeterminate_1vgb6 .checkbox__box_1vgb6 {\n background-color: #f2f3f5;\n border-color: transparent;\n} .checkbox__indeterminate_1vgb6:hover:not(.checkbox__disabled_1vgb6) .checkbox__box_1vgb6 {\n background-color: #dcdde1;\n border-color: transparent;\n} .checkbox__indeterminate_1vgb6:active:not(.checkbox__disabled_1vgb6) .checkbox__box_1vgb6 {\n background-color: #d2d3d9;\n border-color: transparent;\n} .checkbox__disabled_1vgb6 .checkbox__box_1vgb6 {\n background-color: #262629;\n border-color: rgba(222, 222, 238, 0.13);\n} .checkbox__disabled_1vgb6.checkbox__checked_1vgb6 .checkbox__box_1vgb6 {\n background-color: rgba(225, 225, 248, 0.09);\n border-color: transparent;\n .checkbox__checkedIcon_1vgb6 {\n color: rgba(228, 228, 251, 0.28);\n }\n} .checkbox__disabled_1vgb6.checkbox__indeterminate_1vgb6 .checkbox__box_1vgb6 {\n background-color: rgba(225, 225, 248, 0.09);\n border-color: transparent\n} .checkbox__disabled_1vgb6.checkbox__indeterminate_1vgb6 .checkbox__box_1vgb6 .checkbox__indeterminateLine_1vgb6 {\n background-color: rgba(228, 228, 251, 0.28);\n } .checkbox__disabled_1vgb6 .checkbox__label_1vgb6 {\n color: rgba(238, 238, 251, 0.55);\n} .checkbox__disabled_1vgb6 .checkbox__hint_1vgb6 {\n color: rgba(238, 238, 251, 0.55);\n} .checkbox__label_1vgb6 {\n color: rgba(255, 255, 255, 0.94);\n} .checkbox__hint_1vgb6 {\n color: rgba(238, 238, 251, 0.55);\n} .checkbox__indeterminateLine_1vgb6 {\n background-color: rgba(3, 3, 6, 0.88);\n}\n.checkbox__focused_spjkm .checkbox__box_spjkm {\n outline: 2px solid #3193fc;\n} .checkbox__errorMessage_spjkm {\n color: #ff4837;\n}\n.checkbox__box_110o5 {\n color: rgba(255, 255, 255, 0.94);\n background-color: #fff;\n border: 1.5px solid rgba(4, 4, 21, 0.47);\n} .checkbox__checkedIcon_110o5 {\n color: rgba(255, 255, 255, 0.94);\n} @media (hover: hover) {\n .checkbox__component_110o5:hover:not(.checkbox__disabled_110o5) .checkbox__box_110o5 {\n background-color: #e7e8eb;\n border-color: rgba(4, 4, 21, 0.47);\n }\n} .checkbox__component_110o5:active:not(.checkbox__disabled_110o5) .checkbox__box_110o5 {\n background-color: #dcdde1;\n border-color: rgba(4, 4, 21, 0.47);\n} .checkbox__checked_110o5 .checkbox__box_110o5 {\n background-color: #212124;\n border-color: transparent;\n} .checkbox__checked_110o5:hover:not(.checkbox__disabled_110o5) .checkbox__box_110o5 {\n background-color: #2f2f32;\n border-color: transparent;\n} .checkbox__checked_110o5:active:not(.checkbox__disabled_110o5) .checkbox__box_110o5 {\n background-color: #353539;\n border-color: transparent;\n} .checkbox__indeterminate_110o5 .checkbox__box_110o5 {\n background-color: #212124;\n border-color: transparent;\n} .checkbox__indeterminate_110o5:hover:not(.checkbox__disabled_110o5) .checkbox__box_110o5 {\n background-color: #2f2f32;\n border-color: transparent;\n} .checkbox__indeterminate_110o5:active:not(.checkbox__disabled_110o5) .checkbox__box_110o5 {\n background-color: #353539;\n border-color: transparent;\n} .checkbox__disabled_110o5 .checkbox__box_110o5 {\n background-color: #fff;\n border-color: rgba(15, 25, 55, 0.1);\n} .checkbox__disabled_110o5.checkbox__checked_110o5 .checkbox__box_110o5 {\n background-color: rgba(30, 43, 68, 0.08);\n border-color: transparent;\n .checkbox__checkedIcon_110o5 {\n color: rgba(9, 12, 37, 0.28);\n }\n} .checkbox__disabled_110o5.checkbox__indeterminate_110o5 .checkbox__box_110o5 {\n background-color: rgba(30, 43, 68, 0.08);\n border-color: transparent\n} .checkbox__disabled_110o5.checkbox__indeterminate_110o5 .checkbox__box_110o5 .checkbox__indeterminateLine_110o5 {\n background-color: rgba(9, 12, 37, 0.28);\n } .checkbox__disabled_110o5 .checkbox__label_110o5 {\n color: rgba(4, 4, 19, 0.55);\n} .checkbox__disabled_110o5 .checkbox__hint_110o5 {\n color: rgba(4, 4, 19, 0.55);\n} .checkbox__label_110o5 {\n color: rgba(3, 3, 6, 0.88);\n} .checkbox__hint_110o5 {\n color: rgba(4, 4, 19, 0.55);\n} .checkbox__indeterminateLine_110o5 {\n background-color: rgba(255, 255, 255, 0.94);\n}.code-input__component_c18aj {\n background-color: rgba(222, 222, 238, 0.13)\n}\n.code-input__component_zosyi {\n background-color: rgba(214, 214, 229, 0.07);\n}\n.code-input__error_1vqhl {\n color: #ff4837;\n} @keyframes code-input__shake_1vqhl {\n}\n.code-input__input_p0d8p {\n color: rgba(255, 255, 255, 0.94)\n} .code-input__input_p0d8p.code-input__hasError_p0d8p {\n color: #ff4837;\n caret-color: rgba(255, 255, 255, 0.94);\n background-color: #392523;\n } .code-input__input_p0d8p.code-input__disabled_p0d8p {\n color: rgba(233, 233, 250, 0.37);\n } .code-input__input_p0d8p:-webkit-autofill {\n -webkit-text-fill-color: rgba(255, 255, 255, 0.94);\n }.filter-tag__valueButton_6tmxc.filter-tag__filled_6tmxc {\n background-color: rgba(222, 222, 238, 0.13)\n } .filter-tag__valueButton_6tmxc.filter-tag__filled_6tmxc:disabled {\n background-color: rgba(214, 214, 229, 0.07);\n } @media (hover: hover) {\n .filter-tag__valueButton_6tmxc.filter-tag__filled_6tmxc:not(:disabled):hover {\n background-color: rgba(234, 234, 248, 0.15);\n }\n } .filter-tag__valueButton_6tmxc.filter-tag__filled_6tmxc:not(:disabled):active {\n background-color: rgba(231, 231, 248, 0.18);\n }\n\n.filter-tag__valueButton_lht8x.filter-tag__filled_lht8x {\n background-color: rgba(15, 25, 55, 0.1)\n } .filter-tag__valueButton_lht8x.filter-tag__filled_lht8x:disabled {\n background-color: rgba(38, 55, 88, 0.06);\n } @media (hover: hover) {\n .filter-tag__valueButton_lht8x.filter-tag__filled_lht8x:not(:disabled):hover {\n background-color: rgba(5, 12, 41, 0.14);\n }\n } .filter-tag__valueButton_lht8x.filter-tag__filled_lht8x:not(:disabled):active {\n background-color: rgba(5, 11, 44, 0.18);\n }\n.filter-tag__valueButton_1n873.filter-tag__filled_1n873 {\n background-color: rgba(214, 214, 229, 0.07)\n } .filter-tag__valueButton_1n873.filter-tag__filled_1n873:disabled {\n background-color: rgba(214, 214, 229, 0.07);\n } @media (hover: hover) {\n .filter-tag__valueButton_1n873.filter-tag__filled_1n873:not(:disabled):hover {\n background-color: rgba(214, 214, 229, 0.07);\n }\n } .filter-tag__valueButton_1n873.filter-tag__filled_1n873:not(:disabled):active {\n background-color: rgba(222, 222, 238, 0.13);\n }\n.filter-tag__valueButton_1l3b1.filter-tag__filled_1l3b1 {\n background-color: rgba(38, 55, 88, 0.06)\n } .filter-tag__valueButton_1l3b1.filter-tag__filled_1l3b1:disabled {\n background-color: rgba(38, 55, 88, 0.06);\n } @media (hover: hover) {\n .filter-tag__valueButton_1l3b1.filter-tag__filled_1l3b1:not(:disabled):hover {\n background-color: rgba(38, 55, 88, 0.06);\n }\n } .filter-tag__valueButton_1l3b1.filter-tag__filled_1l3b1:not(:disabled):active {\n background-color: rgba(5, 12, 41, 0.14);\n }\n\n.filter-tag__component_t6vcp.filter-tag__disabled_t6vcp {\n background-color: transparent;\n } .filter-tag__component_t6vcp.filter-tag__checked_t6vcp:not(.filter-tag__disabled_t6vcp) {\n background-color: #f2f3f5;\n } @media (hover: hover) {\n .filter-tag__component_t6vcp.filter-tag__checked_t6vcp:not(.filter-tag__disabled_t6vcp):hover {\n background-color: #dcdde1;\n }\n } .filter-tag__component_t6vcp.filter-tag__checked_t6vcp:not(.filter-tag__disabled_t6vcp):active {\n background-color: #d2d3d9;\n } .filter-tag__chevron_t6vcp {\n color: rgba(255, 255, 255, 0.94);\n} .filter-tag__valueButton_t6vcp {\n color: rgba(255, 255, 255, 0.94);\n background-color: transparent;\n border: 1px solid rgba(228, 228, 251, 0.28)\n} .filter-tag__valueButton_t6vcp:disabled > .filter-tag__chevron_t6vcp {\n color: #4a4a51;\n } .filter-tag__valueButton_t6vcp.filter-tag__outlined_t6vcp {\n color: rgba(255, 255, 255, 0.94);\n border-color: rgba(228, 228, 251, 0.28);\n background-color: transparent\n } .filter-tag__valueButton_t6vcp.filter-tag__outlined_t6vcp:disabled {\n border-color: rgba(228, 228, 251, 0.28);\n color: rgba(233, 233, 250, 0.37);\n background-color: transparent;\n } @media (hover: hover) {\n .filter-tag__valueButton_t6vcp.filter-tag__outlined_t6vcp:not(:disabled):hover {\n border-color: rgba(228, 228, 251, 0.28);\n background-color: rgba(214, 214, 229, 0.07);\n }\n } .filter-tag__valueButton_t6vcp.filter-tag__outlined_t6vcp:not(:disabled):active {\n border-color: rgba(228, 228, 251, 0.28);\n background-color: rgba(225, 225, 248, 0.09);\n } .filter-tag__valueButton_t6vcp.filter-tag__filled_t6vcp {\n color: rgba(255, 255, 255, 0.94);\n border-color: transparent\n } .filter-tag__valueButton_t6vcp.filter-tag__filled_t6vcp:disabled {\n color: rgba(233, 233, 250, 0.37);\n } .filter-tag__valueButton_t6vcp.filter-tag__checked_t6vcp {\n color: rgba(3, 3, 6, 0.88);\n background-color: #f2f3f5;\n border-color: #f2f3f5\n } .filter-tag__valueButton_t6vcp.filter-tag__checked_t6vcp > .filter-tag__chevron_t6vcp {\n color: rgba(3, 3, 6, 0.88);\n } @media (hover: hover) {\n .filter-tag__valueButton_t6vcp.filter-tag__checked_t6vcp:not(:disabled):hover {\n background-color: #dcdde1;\n }\n } .filter-tag__valueButton_t6vcp.filter-tag__checked_t6vcp:not(:disabled):active {\n background-color: #d2d3d9;\n } @media (hover: hover) {\n .filter-tag__valueButton_t6vcp.filter-tag__checked_t6vcp:not(:disabled):hover + .filter-tag__clear_t6vcp:before {\n background-color: transparent;\n }\n } .filter-tag__valueButton_t6vcp.filter-tag__checked_t6vcp:not(:disabled):active + .filter-tag__clear_t6vcp:before {\n background-color: transparent;\n } .filter-tag__valueButton_t6vcp.filter-tag__checked_t6vcp:disabled {\n color: rgba(233, 233, 250, 0.37);\n background-color: rgba(214, 214, 229, 0.07)\n } .filter-tag__valueButton_t6vcp.filter-tag__checked_t6vcp:disabled > .filter-tag__chevron_t6vcp {\n color: #4a4a51;\n } .filter-tag__clear_t6vcp {\n color: rgba(4, 4, 21, 0.47);\n background-color: #f2f3f5\n} .filter-tag__clear_t6vcp:before {\n background-color: rgba(9, 12, 37, 0.28);\n } @media (hover: hover) {\n .filter-tag__clear_t6vcp:hover:before {\n background-color: transparent;\n }\n } .filter-tag__clear_t6vcp:active:before {\n background-color: transparent;\n } @media (hover: hover) {\n .filter-tag__clear_t6vcp:hover {\n color: rgba(4, 4, 19, 0.55);\n background-color: #dcdde1;\n }\n } .filter-tag__clear_t6vcp:active {\n color: rgba(1, 1, 12, 0.63);\n background-color: #d2d3d9;\n }\n.filter-tag__focused_ynm3c {\n outline: 2px solid #3193fc;\n} .filter-tag__valueButton_ynm3c.filter-tag__checked_ynm3c:disabled {\n border-color: transparent;\n }\n.filter-tag__component_kecm2.filter-tag__disabled_kecm2 {\n background-color: transparent;\n } .filter-tag__component_kecm2.filter-tag__checked_kecm2:not(.filter-tag__disabled_kecm2) {\n background-color: #212124;\n } @media (hover: hover) {\n .filter-tag__component_kecm2.filter-tag__checked_kecm2:not(.filter-tag__disabled_kecm2):hover {\n background-color: #2f2f32;\n }\n } .filter-tag__component_kecm2.filter-tag__checked_kecm2:not(.filter-tag__disabled_kecm2):active {\n background-color: #353539;\n } .filter-tag__chevron_kecm2 {\n color: rgba(3, 3, 6, 0.88);\n} .filter-tag__valueButton_kecm2 {\n color: rgba(3, 3, 6, 0.88);\n background-color: transparent;\n border: 1px solid rgba(9, 12, 37, 0.28)\n} .filter-tag__valueButton_kecm2:disabled > .filter-tag__chevron_kecm2 {\n color: #babbc2;\n } .filter-tag__valueButton_kecm2.filter-tag__outlined_kecm2 {\n color: rgba(3, 3, 6, 0.88);\n border-color: rgba(9, 12, 37, 0.28);\n background-color: transparent\n } .filter-tag__valueButton_kecm2.filter-tag__outlined_kecm2:disabled {\n border-color: rgba(9, 12, 37, 0.28);\n color: rgba(5, 8, 29, 0.38);\n background-color: transparent;\n } @media (hover: hover) {\n .filter-tag__valueButton_kecm2.filter-tag__outlined_kecm2:not(:disabled):hover {\n border-color: rgba(9, 12, 37, 0.28);\n background-color: rgba(38, 55, 88, 0.06);\n }\n } .filter-tag__valueButton_kecm2.filter-tag__outlined_kecm2:not(:disabled):active {\n border-color: rgba(9, 12, 37, 0.28);\n background-color: rgba(30, 43, 68, 0.08);\n } .filter-tag__valueButton_kecm2.filter-tag__filled_kecm2 {\n color: rgba(3, 3, 6, 0.88);\n border-color: transparent\n } .filter-tag__valueButton_kecm2.filter-tag__filled_kecm2:disabled {\n color: rgba(5, 8, 29, 0.38);\n } .filter-tag__valueButton_kecm2.filter-tag__checked_kecm2 {\n color: rgba(255, 255, 255, 0.94);\n background-color: #212124;\n border-color: #212124\n } .filter-tag__valueButton_kecm2.filter-tag__checked_kecm2 > .filter-tag__chevron_kecm2 {\n color: rgba(255, 255, 255, 0.94);\n } @media (hover: hover) {\n .filter-tag__valueButton_kecm2.filter-tag__checked_kecm2:not(:disabled):hover {\n background-color: #2f2f32;\n }\n } .filter-tag__valueButton_kecm2.filter-tag__checked_kecm2:not(:disabled):active {\n background-color: #353539;\n } @media (hover: hover) {\n .filter-tag__valueButton_kecm2.filter-tag__checked_kecm2:not(:disabled):hover + .filter-tag__clear_kecm2:before {\n background-color: transparent;\n }\n } .filter-tag__valueButton_kecm2.filter-tag__checked_kecm2:not(:disabled):active + .filter-tag__clear_kecm2:before {\n background-color: transparent;\n } .filter-tag__valueButton_kecm2.filter-tag__checked_kecm2:disabled {\n color: rgba(5, 8, 29, 0.38);\n background-color: rgba(38, 55, 88, 0.06)\n } .filter-tag__valueButton_kecm2.filter-tag__checked_kecm2:disabled > .filter-tag__chevron_kecm2 {\n color: #babbc2;\n } .filter-tag__clear_kecm2 {\n color: rgba(238, 238, 251, 0.55);\n background-color: #212124\n} .filter-tag__clear_kecm2:before {\n background-color: rgba(228, 228, 251, 0.28);\n } @media (hover: hover) {\n .filter-tag__clear_kecm2:hover:before {\n background-color: transparent;\n }\n } .filter-tag__clear_kecm2:active:before {\n background-color: transparent;\n } @media (hover: hover) {\n .filter-tag__clear_kecm2:hover {\n color: rgba(239, 240, 252, 0.65);\n background-color: #2f2f32;\n }\n } .filter-tag__clear_kecm2:active {\n color: rgba(243, 245, 254, 0.75);\n background-color: #353539;\n }.form-control__inner_6e8dl {\n background-color: rgba(222, 222, 238, 0.13);\n} .form-control__inner_6e8dl.form-control__hasError_6e8dl {\n background-color: rgba(225, 225, 248, 0.09);\n} .form-control__disabled_6e8dl.form-control__hasError_6e8dl {\n box-shadow: inset 0 0 0 2px #ff4837;\n}\n\n.form-control__inner_1bv5r {\n background-color: rgba(15, 25, 55, 0.1);\n} .form-control__inner_1bv5r.form-control__hasError_1bv5r {\n background-color: rgba(30, 43, 68, 0.08);\n} .form-control__disabled_1bv5r.form-control__hasError_1bv5r {\n box-shadow: inset 0 0 0 2px\n #ff4837;\n}\n.form-control__inner_1kqrd {\n background-color: rgba(214, 214, 229, 0.07);\n} .form-control__disabled_1kqrd.form-control__hasError_1kqrd {\n box-shadow: inset 0 0 0 2px #ff4837;\n}\n.form-control__inner_ah9vw {\n background-color: rgba(38, 55, 88, 0.06);\n} .form-control__disabled_ah9vw.form-control__hasError_ah9vw {\n box-shadow: inset 0 0 0 2px\n #ff4837;\n}\n\n.form-control__component_1w6ez {\n color: rgba(255, 255, 255, 0.94);\n} .form-control__label_1w6ez {\n color: rgba(238, 238, 251, 0.55);\n} .form-control__hint_1w6ez {\n color: rgba(238, 238, 251, 0.55);\n} .form-control__inner_1w6ez.form-control__disabled_1w6ez {\n color: rgba(238, 238, 251, 0.55);\n background-color: rgba(214, 214, 229, 0.07);\n} .form-control__disabled_1w6ez .form-control__label_1w6ez {\n color: rgba(233, 233, 250, 0.37);\n} .form-control__disabled_1w6ez.form-control__hasError_1w6ez {\n background-color: rgba(214, 214, 229, 0.07);\n} .form-control__inner_1w6ez:not(.form-control__disabled_1w6ez):hover {\n background-color: rgba(214, 214, 229, 0.07);\n} .form-control__focused_1w6ez.form-control__inner_1w6ez,\n.form-control__focused_1w6ez.form-control__inner_1w6ez:hover {\n background-color: rgba(214, 214, 229, 0.07);\n box-shadow: inset 0 0 0 2px rgba(238, 238, 251, 0.55)\n} .form-control__focused_1w6ez.form-control__inner_1w6ez.form-control__hasError_1w6ez, .form-control__focused_1w6ez.form-control__inner_1w6ez:hover.form-control__hasError_1w6ez {\n box-shadow: inset 0 0 0 2px #ff4837;\n background-color: rgba(214, 214, 229, 0.07);\n } .form-control__error_1w6ez {\n color: #ff4837;\n} .form-control__hasError_1w6ez {\n box-shadow: inset 0 0 0 2px #ff4837;\n} .form-control__hasError_1w6ez .form-control__label_1w6ez {\n color: rgba(238, 238, 251, 0.55);\n}\n\n.form-control__component_1fhlp {\n color: rgba(3, 3, 6, 0.88);\n} .form-control__label_1fhlp {\n color: rgba(4, 4, 19, 0.55);\n} .form-control__hint_1fhlp {\n color: rgba(4, 4, 19, 0.55);\n} .form-control__inner_1fhlp.form-control__disabled_1fhlp {\n color: rgba(4, 4, 19, 0.55);\n background-color: rgba(38, 55, 88, 0.06);\n} .form-control__disabled_1fhlp .form-control__label_1fhlp {\n color: rgba(5, 8, 29, 0.38);\n} .form-control__disabled_1fhlp.form-control__hasError_1fhlp {\n background-color: rgba(38, 55, 88, 0.06);\n} .form-control__inner_1fhlp:not(.form-control__disabled_1fhlp):hover {\n background-color: rgba(38, 55, 88, 0.06);\n} .form-control__focused_1fhlp.form-control__inner_1fhlp,\n.form-control__focused_1fhlp.form-control__inner_1fhlp:hover {\n background-color: #fff;\n box-shadow: inset 0 0 0 2px\n rgba(4, 4, 21, 0.47)\n} .form-control__focused_1fhlp.form-control__inner_1fhlp.form-control__hasError_1fhlp, .form-control__focused_1fhlp.form-control__inner_1fhlp:hover.form-control__hasError_1fhlp {\n box-shadow: inset 0 0 0 2px\n #ff4837;\n background-color: #fff;\n } .form-control__error_1fhlp {\n color: #ff4837;\n} .form-control__hasError_1fhlp {\n box-shadow: inset 0 0 0 2px\n #ff4837;\n} .form-control__hasError_1fhlp .form-control__label_1fhlp {\n color: rgba(4, 4, 19, 0.55);\n}.radio-group__label_1gg5s {\n color: rgba(255, 255, 255, 0.94);\n}\n.radio-group__label_wi0hl {\n color: rgba(238, 238, 251, 0.55);\n}\n.radio-group__error_1adqh {\n border-left: 1px solid #ff4837\n} .radio-group__errorMessage_1adqh {\n color: #ff4837;\n} .radio-group__hint_1adqh {\n color: rgba(238, 238, 251, 0.55);\n} .radio-group__hiddenInput_1adqh:focus ~ button {\n outline: 2px solid #3193fc;\n }.radio__container_gp98a:not(.radio__checked_gp98a):not(.radio__disabled_gp98a) .radio__circle_gp98a {\n background-color: #262629;\n border: 1.5px solid rgba(238, 238, 251, 0.55);\n } .radio__container_gp98a:not(.radio__checked_gp98a):not(.radio__disabled_gp98a):hover:not(:active) .radio__circle_gp98a {\n background-color: #2f2f32;\n border-color: rgba(238, 238, 251, 0.55);\n } .radio__container_gp98a:not(.radio__checked_gp98a):not(.radio__disabled_gp98a):active .radio__circle_gp98a {\n background-color: #353539;\n border-color: rgba(238, 238, 251, 0.55);\n } .radio__container_gp98a.radio__disabled_gp98a .radio__circle_gp98a {\n background-color: #262629;\n border: 1.5px solid rgba(222, 222, 238, 0.13);\n } .radio__container_gp98a.radio__disabled_gp98a .radio__label_gp98a {\n color: rgba(238, 238, 251, 0.55);\n } .radio__container_gp98a.radio__disabled_gp98a .radio__hint_gp98a {\n color: rgba(238, 238, 251, 0.55);\n } .radio__container_gp98a.radio__disabled_gp98a.radio__checked_gp98a .radio__circle_gp98a:before {\n background-color: rgba(228, 228, 251, 0.28);\n } .radio__container_gp98a.radio__checked_gp98a .radio__circle_gp98a {\n background-color: #f2f3f5;\n border: 1.5px solid transparent;\n } .radio__container_gp98a.radio__checked_gp98a:hover .radio__circle_gp98a {\n background-color: #dcdde1;\n border-color: transparent;\n } .radio__container_gp98a.radio__checked_gp98a:active .radio__circle_gp98a {\n background-color: #d2d3d9;\n border-color: transparent;\n } .radio__container_gp98a.radio__disabled_gp98a.radio__checked_gp98a .radio__circle_gp98a {\n background-color: rgba(225, 225, 248, 0.09);\n border-color: transparent;\n } .radio__circle_gp98a:before {\n background-color: rgba(3, 3, 6, 0.88);\n } .radio__label_gp98a {\n color: rgba(255, 255, 255, 0.94);\n} .radio__hint_gp98a {\n color: rgba(238, 238, 251, 0.55);\n}\n.radio__container_1ijv1.radio__focused_1ijv1 .radio__circle_1ijv1 {\n outline: 2px solid #3193fc;\n }\n.radio__container_16qog:not(.radio__checked_16qog):not(.radio__disabled_16qog) .radio__circle_16qog {\n background-color: #fff;\n border: 1.5px solid rgba(4, 4, 21, 0.47);\n } .radio__container_16qog:not(.radio__checked_16qog):not(.radio__disabled_16qog):hover:not(:active) .radio__circle_16qog {\n background-color: #e7e8eb;\n border-color: rgba(4, 4, 21, 0.47);\n } .radio__container_16qog:not(.radio__checked_16qog):not(.radio__disabled_16qog):active .radio__circle_16qog {\n background-color: #dcdde1;\n border-color: rgba(4, 4, 21, 0.47);\n } .radio__container_16qog.radio__disabled_16qog .radio__circle_16qog {\n background-color: #fff;\n border: 1.5px solid rgba(15, 25, 55, 0.1);\n } .radio__container_16qog.radio__disabled_16qog .radio__label_16qog {\n color: rgba(4, 4, 19, 0.55);\n } .radio__container_16qog.radio__disabled_16qog .radio__hint_16qog {\n color: rgba(4, 4, 19, 0.55);\n } .radio__container_16qog.radio__disabled_16qog.radio__checked_16qog .radio__circle_16qog:before {\n background-color: rgba(9, 12, 37, 0.28);\n } .radio__container_16qog.radio__checked_16qog .radio__circle_16qog {\n background-color: #212124;\n border: 1.5px solid transparent;\n } .radio__container_16qog.radio__checked_16qog:hover .radio__circle_16qog {\n background-color: #2f2f32;\n border-color: transparent;\n } .radio__container_16qog.radio__checked_16qog:active .radio__circle_16qog {\n background-color: #353539;\n border-color: transparent;\n } .radio__container_16qog.radio__disabled_16qog.radio__checked_16qog .radio__circle_16qog {\n background-color: rgba(30, 43, 68, 0.08);\n border-color: transparent;\n } .radio__circle_16qog:before {\n background-color: rgba(255, 255, 255, 0.94);\n } .radio__label_16qog {\n color: rgba(3, 3, 6, 0.88);\n} .radio__hint_16qog {\n color: rgba(4, 4, 19, 0.55);\n}\n.steps__option_1y13z {\n color: rgba(255, 255, 255, 0.94);\n background: rgba(222, 222, 238, 0.13)\n} .steps__dash_1y13z {\n border-top: 2px solid rgba(222, 222, 238, 0.13)\n} .steps__dash_1y13z.steps__completed_1y13z {\n border-top: 2px solid rgba(255, 255, 255, 0.94);\n } .steps__dash_1y13z.steps__vertical_1y13z {\n border-left: 2px solid rgba(222, 222, 238, 0.13);\n } .steps__dash_1y13z.steps__completed_1y13z.steps__vertical_1y13z {\n border-left: 2px solid rgba(255, 255, 255, 0.94);\n } .steps__text_1y13z {\n color: rgba(255, 255, 255, 0.94)\n} .steps__text_1y13z.steps__interactive_1y13z:not(.steps__disabled_1y13z):hover {\n background: rgba(214, 214, 229, 0.07);\n } .steps__text_1y13z.steps__interactive_1y13z:not(.steps__disabled_1y13z):active {\n background: rgba(225, 225, 248, 0.09);\n } .steps__focused_1y13z {\n outline: 2px solid #3193fc;\n} .steps__selected_1y13z .steps__text_1y13z {\n color: rgba(255, 255, 255, 0.94);\n } .steps__selected_1y13z .steps__option_1y13z {\n color: rgba(3, 3, 6, 0.88);\n background: rgba(255, 255, 255, 0.94);\n } .steps__checkbox_1y13z {\n border: 2px solid rgba(222, 222, 238, 0.13);\n} .steps__dot_1y13z {\n background: rgba(222, 222, 238, 0.13);\n} .steps__selected_1y13z .steps__checkbox_1y13z {\n border: 2px solid rgba(255, 255, 255, 0.94)\n} .steps__selected_1y13z .steps__checkbox_1y13z .steps__dot_1y13z {\n background: rgba(255, 255, 255, 0.94);\n } .steps__completedIndicator_1y13z > [class*='positive'] {\n color: rgba(255, 255, 255, 0.94);\n background-color: rgba(255, 255, 255, 0.94);\n}\n.spinner__component_98he5 {\n color: rgba(255, 255, 255, 0.94);\n}\n@keyframes spinner__spin_animation_maei4 {\n}\n.spinner__component_2oeq8 {\n color: rgba(3, 3, 6, 0.88);\n}\n.page-indicator__pageIndicator_1x9b8 {\n background: rgba(222, 222, 238, 0.13);\n} .page-indicator__element_1x9b8 {\n background: rgba(255, 255, 255, 0.94);\n}\n\n.page-indicator__pageIndicator_1i98g {\n background: rgba(15, 25, 55, 0.1);\n} .page-indicator__element_1i98g {\n background: rgba(3, 3, 6, 0.88);\n}\n.page-indicator__pageIndicator_3br00 {\n background: rgba(222, 222, 238, 0.13);\n} .page-indicator__element_3br00 {\n background: #f2f3f5;\n}\n.page-indicator__pageIndicator_4ubo6 {\n background: rgba(15, 25, 55, 0.1);\n} .page-indicator__element_4ubo6 {\n background: #212124;\n}\n.page-indicator__element_10nj4 {\n background: rgba(222, 222, 238, 0.13)\n} .page-indicator__element_10nj4.page-indicator__active_10nj4 {\n .page-indicator__progress_10nj4 {\n background: rgba(255, 255, 255, 0.94);\n }\n }\n.page-indicator__element_1yh3b:not(.page-indicator__active_1yh3b) {\n } .page-indicator__element_1yh3b {\n}\n.page-indicator__element_8tglr {\n background: rgba(15, 25, 55, 0.1)\n} .page-indicator__element_8tglr.page-indicator__active_8tglr {\n .page-indicator__progress_8tglr {\n background: rgba(3, 3, 6, 0.88);\n }\n }\n.page-indicator__element_1oife {\n background: rgba(222, 222, 238, 0.13)\n} .page-indicator__element_1oife.page-indicator__active_1oife {\n .page-indicator__progress_1oife {\n background: #f2f3f5;\n }\n }\n.page-indicator__element_13mhq {\n background: rgba(15, 25, 55, 0.1)\n} .page-indicator__element_13mhq.page-indicator__active_13mhq {\n .page-indicator__progress_13mhq {\n background: #212124;\n }\n }\n.page-indicator__element_117t1 {\n background: rgba(222, 222, 238, 0.13)\n} .page-indicator__element_117t1.page-indicator__active_117t1 {\n background: rgba(255, 255, 255, 0.94);\n }\n\n.page-indicator__element_3eb5k {\n background: rgba(15, 25, 55, 0.1)\n} .page-indicator__element_3eb5k.page-indicator__active_3eb5k {\n background: rgba(3, 3, 6, 0.88);\n }\n.page-indicator__element_12xza {\n background: rgba(222, 222, 238, 0.13)\n} .page-indicator__element_12xza.page-indicator__active_12xza {\n background: #f2f3f5;\n }\n.page-indicator__element_1rz5k {\n background: rgba(15, 25, 55, 0.1)\n} .page-indicator__element_1rz5k.page-indicator__active_1rz5k {\n background: #212124;\n }\n.page-indicator__element_mezwp {\n background: rgba(222, 222, 238, 0.13)\n} .page-indicator__element_mezwp.page-indicator__active_mezwp {\n background: rgba(255, 255, 255, 0.94);\n }\n\n.page-indicator__element_1kqr8 {\n background: rgba(15, 25, 55, 0.1)\n} .page-indicator__element_1kqr8.page-indicator__active_1kqr8 {\n background: rgba(3, 3, 6, 0.88);\n }\n.page-indicator__element_s1iun {\n background: rgba(222, 222, 238, 0.13)\n} .page-indicator__element_s1iun.page-indicator__active_s1iun {\n background: #f2f3f5;\n }\n.page-indicator__element_1v6mm {\n background: rgba(15, 25, 55, 0.1)\n} .page-indicator__element_1v6mm.page-indicator__active_1v6mm {\n background: #212124;\n }.switch__switch_n9rr1 {\n background-color: rgba(238, 238, 251, 0.55)\n} .switch__switch_n9rr1:hover {\n background-color: rgba(239, 240, 252, 0.65);\n } .switch__label_n9rr1 {\n color: rgba(255, 255, 255, 0.94);\n} .switch__hint_n9rr1 {\n color: rgba(238, 238, 251, 0.55);\n} .switch__checked_n9rr1 .switch__switch_n9rr1 {\n background-color: #17d055\n} .switch__checked_n9rr1 .switch__switch_n9rr1:hover {\n background-color: #22e068;\n } .switch__disabled_n9rr1 .switch__label_n9rr1 {\n color: rgba(238, 238, 251, 0.55);\n} .switch__disabled_n9rr1 .switch__hint_n9rr1 {\n color: rgba(238, 238, 251, 0.55);\n} .switch__disabled_n9rr1 .switch__switch_n9rr1 {\n background-color: rgba(225, 225, 248, 0.09)\n} .switch__disabled_n9rr1 .switch__switch_n9rr1:before {\n background-color: rgba(228, 228, 251, 0.28);\n } .switch__disabled_n9rr1.switch__checked_n9rr1 .switch__switch_n9rr1 {\n background-color: rgba(225, 225, 248, 0.09);\n}\n.switch__component_1ljxn {\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n} .switch__switch_1ljxn {\n border: 2px solid transparent;\n} .switch__switch_1ljxn:before {\n background-color: #fff;\n} .switch__errorMessage_1ljxn {\n color: #ff4837;\n} .switch__focused_1ljxn .switch__switch_1ljxn {\n outline: 2px solid #3193fc;\n}\n.switch__switch_xt62a {\n background-color: rgba(4, 4, 21, 0.47)\n} .switch__switch_xt62a:hover {\n background-color: rgba(4, 4, 19, 0.55);\n } .switch__label_xt62a {\n color: rgba(3, 3, 6, 0.88);\n} .switch__hint_xt62a {\n color: rgba(4, 4, 19, 0.55);\n} .switch__checked_xt62a .switch__switch_xt62a {\n background-color: #0cc44d\n} .switch__checked_xt62a .switch__switch_xt62a:hover {\n background-color: #04b545;\n } .switch__disabled_xt62a .switch__label_xt62a {\n color: rgba(4, 4, 19, 0.55);\n} .switch__disabled_xt62a .switch__hint_xt62a {\n color: rgba(4, 4, 19, 0.55);\n} .switch__disabled_xt62a .switch__switch_xt62a {\n background-color: rgba(30, 43, 68, 0.08)\n} .switch__disabled_xt62a .switch__switch_xt62a:before {\n background-color: rgba(9, 12, 37, 0.28);\n } .switch__disabled_xt62a.switch__checked_xt62a .switch__switch_xt62a {\n background-color: rgba(30, 43, 68, 0.08);\n}\n.system-message__component_1vhdq {\n color: rgba(238, 238, 251, 0.55);\n}\n\n\n.system-message__component_1hnh8 {\n color: rgba(255, 255, 255, 0.94);\n}\n\n.system-message__component_1mhue {\n color: rgba(255, 255, 255, 0.94);\n}\n.base-modal__component_1x4v3 {\n background: #1c1c1e;\n}.popover__component_ebmxs {\n background-color: transparent;\n color: rgba(255, 255, 255, 0.94);\n} .popover__inner_ebmxs {\n background-color: #1c1c1e;\n box-shadow: 0 20px 24px rgba(0, 0, 0, 0.08), 0 12px 16px rgba(0, 0, 0, 0.04),\n 0 4px 8px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.04);\n border: 1px solid transparent;\n} .popover__arrow_ebmxs:after {\n background-color: #1c1c1e;\n border: 1px solid transparent;\n}.tag__filled_173rf {\n background-color: rgba(222, 222, 238, 0.13)\n} .tag__filled_173rf:disabled {\n background-color: rgba(214, 214, 229, 0.07);\n border-color: transparent;\n } @media (hover: hover) {\n .tag__filled_173rf:hover:not(:disabled) {\n background-color: rgba(234, 234, 248, 0.15);\n }\n } .tag__filled_173rf:active:not(:disabled) {\n background-color: rgba(231, 231, 248, 0.18);\n }\n\n.tag__filled_15un7 {\n background-color: rgba(15, 25, 55, 0.1)\n} .tag__filled_15un7:disabled {\n background-color: rgba(38, 55, 88, 0.06);\n } @media (hover: hover) {\n .tag__filled_15un7:hover:not(:disabled) {\n background-color: rgba(5, 12, 41, 0.14);\n }\n } .tag__filled_15un7:active:not(:disabled) {\n background-color: rgba(5, 11, 44, 0.18);\n }\n.tag__filled_1pudn {\n background-color: rgba(214, 214, 229, 0.07)\n} .tag__filled_1pudn:disabled {\n background-color: rgba(214, 214, 229, 0.07);\n } @media (hover: hover) {\n .tag__filled_1pudn:hover:not(:disabled) {\n background-color: rgba(214, 214, 229, 0.07);\n }\n } .tag__filled_1pudn:active:not(:disabled) {\n background-color: rgba(222, 222, 238, 0.13);\n }\n.tag__filled_1342y {\n background-color: rgba(38, 55, 88, 0.06)\n} .tag__filled_1342y:disabled {\n background-color: rgba(38, 55, 88, 0.06);\n } @media (hover: hover) {\n .tag__filled_1342y:hover:not(:disabled) {\n background-color: rgba(38, 55, 88, 0.06);\n }\n } .tag__filled_1342y:active:not(:disabled) {\n background-color: rgba(5, 12, 41, 0.14);\n }\n\n.tag__component_1my7p.tag__outlined_1my7p {\n color: rgba(255, 255, 255, 0.94);\n border-color: rgba(228, 228, 251, 0.28);\n background-color: transparent\n } .tag__component_1my7p.tag__outlined_1my7p:disabled {\n border-color: rgba(228, 228, 251, 0.28);\n color: rgba(233, 233, 250, 0.37);\n background-color: transparent;\n } @media (hover: hover) {\n .tag__component_1my7p.tag__outlined_1my7p:hover:not(:disabled) {\n border-color: rgba(228, 228, 251, 0.28);\n background-color: rgba(214, 214, 229, 0.07);\n }\n } .tag__component_1my7p.tag__outlined_1my7p:active:not(:disabled) {\n border-color: rgba(228, 228, 251, 0.28);\n background-color: rgba(225, 225, 248, 0.09);\n } .tag__component_1my7p.tag__transparent_1my7p {\n color: rgba(255, 255, 255, 0.94);\n border-color: transparent;\n background-color: transparent\n } .tag__component_1my7p.tag__transparent_1my7p:disabled {\n color: rgba(233, 233, 250, 0.37);\n background-color: transparent;\n } @media (hover: hover) {\n .tag__component_1my7p.tag__transparent_1my7p:hover:not(:disabled) {\n background-color: rgba(214, 214, 229, 0.07);\n }\n } .tag__component_1my7p.tag__transparent_1my7p:active:not(:disabled) {\n background-color: rgba(225, 225, 248, 0.09);\n } .tag__component_1my7p.tag__filled_1my7p {\n color: rgba(255, 255, 255, 0.94);\n border-color: transparent\n } .tag__component_1my7p.tag__filled_1my7p:disabled {\n color: rgba(233, 233, 250, 0.37);\n } .tag__component_1my7p.tag__checked_1my7p {\n color: rgba(3, 3, 6, 0.88);\n border-color: #f2f3f5;\n background-color: #f2f3f5\n } .tag__component_1my7p.tag__checked_1my7p:disabled {\n border-color: transparent;\n color: rgba(233, 233, 250, 0.37);\n background-color: rgba(214, 214, 229, 0.07);\n } @media (hover: hover) {\n .tag__component_1my7p.tag__checked_1my7p:hover:not(:disabled) {\n background-color: #dcdde1;\n border-color: #dcdde1;\n }\n } .tag__component_1my7p.tag__checked_1my7p:active:not(:disabled) {\n background-color: #d2d3d9;\n border-color: #d2d3d9;\n }\n.tag__focused_1i6do {\n outline: 2px solid #3193fc;\n}\n.tag__component_14mj5.tag__outlined_14mj5 {\n color: rgba(3, 3, 6, 0.88);\n border-color: rgba(9, 12, 37, 0.28);\n background-color: transparent\n } .tag__component_14mj5.tag__outlined_14mj5:disabled {\n border-color: rgba(9, 12, 37, 0.28);\n color: rgba(5, 8, 29, 0.38);\n background-color: transparent;\n } @media (hover: hover) {\n .tag__component_14mj5.tag__outlined_14mj5:hover:not(:disabled) {\n border-color: rgba(9, 12, 37, 0.28);\n background-color: rgba(38, 55, 88, 0.06);\n }\n } .tag__component_14mj5.tag__outlined_14mj5:active:not(:disabled) {\n border-color: rgba(9, 12, 37, 0.28);\n background-color: rgba(30, 43, 68, 0.08);\n } .tag__component_14mj5.tag__transparent_14mj5 {\n color: rgba(3, 3, 6, 0.88);\n border-color: transparent;\n background-color: transparent\n } .tag__component_14mj5.tag__transparent_14mj5:disabled {\n color: rgba(5, 8, 29, 0.38);\n background-color: transparent;\n } @media (hover: hover) {\n .tag__component_14mj5.tag__transparent_14mj5:hover:not(:disabled) {\n background-color: rgba(38, 55, 88, 0.06);\n }\n } .tag__component_14mj5.tag__transparent_14mj5:active:not(:disabled) {\n background-color: rgba(30, 43, 68, 0.08);\n } .tag__component_14mj5.tag__filled_14mj5 {\n color: rgba(3, 3, 6, 0.88);\n border-color: transparent\n } .tag__component_14mj5.tag__filled_14mj5:disabled {\n color: rgba(5, 8, 29, 0.38);\n } .tag__component_14mj5.tag__checked_14mj5 {\n color: rgba(255, 255, 255, 0.94);\n border-color: #212124;\n background-color: #212124\n } .tag__component_14mj5.tag__checked_14mj5:disabled {\n border-color: transparent;\n color: rgba(5, 8, 29, 0.38);\n background-color: rgba(38, 55, 88, 0.06);\n } @media (hover: hover) {\n .tag__component_14mj5.tag__checked_14mj5:hover:not(:disabled) {\n background-color: #2f2f32;\n border-color: #2f2f32;\n }\n } .tag__component_14mj5.tag__checked_14mj5:active:not(:disabled) {\n background-color: #353539;\n border-color: #353539;\n }.typography__tertiary_131py {\n color: rgba(233, 233, 250, 0.37);\n} .typography__disabled_131py {\n color: rgba(231, 231, 248, 0.18);\n} .typography__accent_131py {\n color: #f83a2a;\n} .typography__primary_131py {\n color: rgba(255, 255, 255, 0.94);\n} .typography__attention_131py {\n color: #fa9313;\n} .typography__positive_131py {\n color: #0cc44d;\n} .typography__secondary_131py {\n color: rgba(238, 238, 251, 0.55);\n} .typography__tertiary-inverted_131py {\n color: rgba(5, 8, 29, 0.38);\n} .typography__primary-inverted_131py {\n color: rgba(3, 3, 6, 0.88);\n} .typography__secondary-inverted_131py {\n color: rgba(4, 4, 19, 0.55);\n} .typography__link_131py {\n color: #4a9dfc;\n} .typography__negative_131py {\n color: #ff4837;\n} .typography__static-primary-light_131py {\n color: #fff;\n} .typography__static-secondary-light_131py {\n color: rgba(238, 238, 251, 0.55);\n} .typography__static-tertiary-light_131py {\n color: rgba(233, 233, 250, 0.37);\n} .typography__static-primary-dark_131py {\n color: #0e0e0e;\n} .typography__static-secondary-dark_131py {\n color: rgba(4, 4, 19, 0.55);\n} .typography__static-tertiary-dark_131py {\n color: rgba(5, 8, 29, 0.38);\n} .typography__static-accent_131py {\n color: #ef3124;\n} .typography__static-positive_131py {\n color: #0d9336;\n}\n\n\n\n\n\n\n.sortable-list__primary_owtx5 {\n background: #262629;\n} .sortable-list__secondary_owtx5 {\n background: #1c1c1e;\n}\n.sortable-list__component_q3vn2:hover .sortable-list__icon_q3vn2 {\n color: rgba(255, 255, 255, 0.94);\n } .sortable-list__icon_q3vn2 {\n color: rgba(238, 238, 251, 0.55);\n} .sortable-list__dragOverlay_q3vn2 {\n box-shadow: 0 12px 16px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.04),\n 0 0 1px rgba(0, 0, 0, 0.04)\n} .sortable-list__dragOverlay_q3vn2 .sortable-list__icon_q3vn2 {\n color: rgba(255, 255, 255, 0.94);\n } @keyframes sortable-list__pop_q3vn2 {\n to {\n box-shadow: 0 12px 16px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.04),\n 0 0 1px rgba(0, 0, 0, 0.04);\n }\n}.textarea__input_1n9em {\n color: rgba(255, 255, 255, 0.94);\n caret-color: rgba(255, 255, 255, 0.94);\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n} .textarea__input_1n9em:-webkit-autofill {\n -webkit-text-fill-color: rgba(255, 255, 255, 0.94);\n} .textarea__input_1n9em::placeholder {\n color: rgba(238, 238, 251, 0.55);\n} .textarea__hasInnerLabel_1n9em::placeholder {\n color: rgba(233, 233, 250, 0.37);\n} .textarea__input_1n9em:read-only:not(.textarea__disableUserInput_1n9em) {\n color: rgba(233, 233, 250, 0.37)\n} .textarea__input_1n9em:read-only:not(.textarea__disableUserInput_1n9em):focus::placeholder {\n color: rgba(238, 238, 251, 0.55);\n } .textarea__input_1n9em:disabled {\n color: rgba(233, 233, 250, 0.37);\n -webkit-text-fill-color: rgba(233, 233, 250, 0.37);\n} .textarea__input_1n9em:focus::placeholder {\n color: rgba(233, 233, 250, 0.37);\n} .textarea__error_1n9em {\n color: rgba(255, 255, 255, 0.94);\n caret-color: rgba(255, 255, 255, 0.94);\n} .textarea__textarea_1n9em {\n color: rgba(255, 255, 255, 0.94);\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n} .textarea__textarea_1n9em::placeholder {\n color: rgba(238, 238, 251, 0.55);\n} .textarea__hasInnerLabel_1n9em::placeholder {\n color: rgba(233, 233, 250, 0.37);\n} .textarea__textarea_1n9em:disabled {\n color: rgba(233, 233, 250, 0.37);\n -webkit-text-fill-color: rgba(233, 233, 250, 0.37);\n} .textarea__textarea_1n9em:read-only {\n color: rgba(233, 233, 250, 0.37);\n} .textarea__textarea_1n9em:focus::placeholder {\n color: rgba(233, 233, 250, 0.37);\n} .textarea__hint_1n9em {\n color: rgba(238, 238, 251, 0.55);\n} .textarea__error_1n9em {\n color: #ff4837;\n}\n.textarea__textarea_1tpwy.textarea__overflow_1tpwy {\n color: transparent;\n caret-color: rgba(255, 255, 255, 0.94);\n } .textarea__customScrollbar_1tpwy::-webkit-scrollbar-track {\n background-color: transparent;\n } .textarea__customScrollbar_1tpwy::-webkit-scrollbar-track-piece {\n background-color: transparent;\n } .textarea__customScrollbar_1tpwy::-webkit-scrollbar-thumb {\n background-color: rgba(228, 228, 251, 0.28);\n border-color: transparent;\n } .textarea__customScrollbar_1tpwy::-webkit-scrollbar-thumb:active {\n background-color: rgba(238, 238, 251, 0.55);\n } .textarea__pseudoTextarea_1tpwy span {\n color: rgba(255, 255, 255, 0.94);\n } .textarea__pseudoTextarea_1tpwy .textarea__overflow_1tpwy {\n color: rgba(233, 233, 250, 0.37);\n } .textarea__pseudoTextarea_1tpwy::-webkit-scrollbar-thumb {\n background-color: transparent;\n } .textarea__focusVisible_1tpwy {\n outline: 2px solid #3193fc;\n} .textarea__textarea_1tpwy.textarea__textarea_1tpwy.textarea__size-40_1tpwy {\n border-top: 11px solid transparent;\n border-bottom: 11px solid transparent;\n } .textarea__textarea_1tpwy.textarea__textarea_1tpwy.textarea__size-48_1tpwy {\n border-top: 14px solid transparent;\n border-bottom: 14px solid transparent;\n } .textarea__textarea_1tpwy.textarea__textarea_1tpwy.textarea__size-56_1tpwy {\n border-top: 18px solid transparent;\n border-bottom: 18px solid transparent;\n } .textarea__textarea_1tpwy.textarea__textarea_1tpwy.textarea__size-64_1tpwy {\n border-top: 22px solid transparent;\n border-bottom: 22px solid transparent;\n } .textarea__textarea_1tpwy.textarea__textarea_1tpwy.textarea__size-72_1tpwy {\n border-top: 24px solid transparent;\n border-bottom: 24px solid transparent;\n } .textarea__textarea_1tpwy.textarea__textarea_1tpwy.textarea__hasInnerLabel_1tpwy.textarea__size-40_1tpwy {\n border-top: 19px solid transparent;\n border-bottom: 3px solid transparent;\n } .textarea__textarea_1tpwy.textarea__textarea_1tpwy.textarea__hasInnerLabel_1tpwy.textarea__size-48_1tpwy {\n border-top: 24px solid transparent;\n border-bottom: 4px solid transparent;\n } .textarea__textarea_1tpwy.textarea__textarea_1tpwy.textarea__hasInnerLabel_1tpwy.textarea__size-56_1tpwy {\n border-top: 24px solid transparent;\n border-bottom: 8px solid transparent;\n } .textarea__textarea_1tpwy.textarea__textarea_1tpwy.textarea__hasInnerLabel_1tpwy.textarea__size-64_1tpwy {\n border-top: 32px solid transparent;\n border-bottom: 12px solid transparent;\n } .textarea__textarea_1tpwy.textarea__textarea_1tpwy.textarea__hasInnerLabel_1tpwy.textarea__size-72_1tpwy {\n border-top: 34px solid transparent;\n border-bottom: 14px solid transparent;\n }\n.textarea__input_1pkkk {\n color: rgba(3, 3, 6, 0.88);\n caret-color: rgba(3, 3, 6, 0.88);\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n} .textarea__input_1pkkk:-webkit-autofill {\n -webkit-text-fill-color: rgba(3, 3, 6, 0.88);\n} .textarea__input_1pkkk::placeholder {\n color: rgba(4, 4, 19, 0.55);\n} .textarea__hasInnerLabel_1pkkk::placeholder {\n color: rgba(5, 8, 29, 0.38);\n} .textarea__input_1pkkk:read-only:not(.textarea__disableUserInput_1pkkk) {\n color: rgba(5, 8, 29, 0.38)\n} .textarea__input_1pkkk:read-only:not(.textarea__disableUserInput_1pkkk):focus::placeholder {\n color: rgba(4, 4, 19, 0.55);\n } .textarea__input_1pkkk:disabled {\n color: rgba(5, 8, 29, 0.38);\n -webkit-text-fill-color: rgba(5, 8, 29, 0.38);\n} .textarea__input_1pkkk:focus::placeholder {\n color: rgba(5, 8, 29, 0.38);\n} .textarea__error_1pkkk {\n color: rgba(3, 3, 6, 0.88);\n caret-color: rgba(3, 3, 6, 0.88);\n} .textarea__textarea_1pkkk {\n color: rgba(3, 3, 6, 0.88);\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n} .textarea__textarea_1pkkk::placeholder {\n color: rgba(4, 4, 19, 0.55);\n} .textarea__hasInnerLabel_1pkkk::placeholder {\n color: rgba(5, 8, 29, 0.38);\n} .textarea__textarea_1pkkk:disabled {\n color: rgba(5, 8, 29, 0.38);\n -webkit-text-fill-color: rgba(5, 8, 29, 0.38);\n} .textarea__textarea_1pkkk:read-only {\n color: rgba(5, 8, 29, 0.38);\n} .textarea__textarea_1pkkk:focus::placeholder {\n color: rgba(5, 8, 29, 0.38);\n} .textarea__hint_1pkkk {\n color: rgba(238, 238, 251, 0.55);\n} .textarea__error_1pkkk {\n color: #ff4837;\n}.action-button__primary_oc583 {\n color: rgba(255, 255, 255, 0.94)\n} .action-button__primary_oc583 .action-button__iconWrapper_oc583 {\n color: rgba(3, 3, 6, 0.88);\n background-color: #f2f3f5;\n } .action-button__primary_oc583:hover .action-button__iconWrapper_oc583 {\n background-color: #dcdde1;\n } .action-button__primary_oc583:active .action-button__iconWrapper_oc583 {\n background-color: #d2d3d9;\n } .action-button__primary_oc583 .action-button__loader_oc583 {\n color: rgba(3, 3, 6, 0.88);\n } .action-button__secondary_oc583 {\n color: rgba(255, 255, 255, 0.94)\n} .action-button__secondary_oc583 .action-button__iconWrapper_oc583 {\n color: rgba(255, 255, 255, 0.94);\n background-color: #1c1c1e;\n } .action-button__secondary_oc583:hover .action-button__iconWrapper_oc583 {\n background-color: #212124;\n } .action-button__secondary_oc583:active .action-button__iconWrapper_oc583 {\n background-color: #29292c;\n } .action-button__secondary_oc583 .action-button__loader_oc583 {\n color: rgba(255, 255, 255, 0.94);\n } .action-button__disabled_oc583 {\n color: rgba(233, 233, 250, 0.37)\n} .action-button__disabled_oc583 .action-button__iconWrapper_oc583 {\n color: #4a4a51;\n background-color: #1c1c1e;\n }\n.action-button__component_pwjf4 {\n -webkit-tap-highlight-color: transparent\n} .action-button__focused_pwjf4 {\n outline: 2px solid #3193fc;\n}\n.action-button__primary_7pexp {\n color: rgba(3, 3, 6, 0.88)\n} .action-button__primary_7pexp .action-button__iconWrapper_7pexp {\n color: rgba(255, 255, 255, 0.94);\n background-color: #212124;\n } .action-button__primary_7pexp:hover .action-button__iconWrapper_7pexp {\n background-color: #2f2f32;\n } .action-button__primary_7pexp:active .action-button__iconWrapper_7pexp {\n background-color: #353539;\n } .action-button__primary_7pexp .action-button__loader_7pexp {\n color: rgba(3, 3, 6, 0.88);\n } .action-button__secondary_7pexp {\n color: rgba(3, 3, 6, 0.88)\n} .action-button__secondary_7pexp .action-button__iconWrapper_7pexp {\n color: rgba(3, 3, 6, 0.88);\n background-color: #f2f3f5;\n } .action-button__secondary_7pexp:hover .action-button__iconWrapper_7pexp {\n background-color: #e7e8eb;\n } .action-button__secondary_7pexp:active .action-button__iconWrapper_7pexp {\n background-color: #dcdde1;\n } .action-button__secondary_7pexp .action-button__loader_7pexp {\n color: rgba(255, 255, 255, 0.94);\n } .action-button__disabled_7pexp {\n color: rgba(5, 8, 29, 0.38)\n} .action-button__disabled_7pexp .action-button__iconWrapper_7pexp {\n color: #babbc2;\n background-color: #f2f3f5;\n }\n.action-button__primary_1sxn6 {\n color: rgba(3, 3, 6, 0.88)\n} .action-button__primary_1sxn6 .action-button__iconWrapper_1sxn6 {\n color: rgba(255, 255, 255, 0.94);\n background-color: #212124;\n } .action-button__primary_1sxn6 .action-button__loader_1sxn6 {\n color: rgba(255, 255, 255, 0.94);\n } .action-button__secondary_1sxn6 {\n color: rgba(3, 3, 6, 0.88)\n} .action-button__secondary_1sxn6 .action-button__iconWrapper_1sxn6 {\n color: rgba(3, 3, 6, 0.88);\n background-color: #f2f3f5;\n } .action-button__secondary_1sxn6 .action-button__loader_1sxn6 {\n color: rgba(3, 3, 6, 0.88);\n } .action-button__disabled_1sxn6 {\n color: rgba(5, 8, 29, 0.38)\n} .action-button__disabled_1sxn6 .action-button__iconWrapper_1sxn6 {\n color: #babbc2;\n background-color: #f2f3f5;\n }.drawer__customScrollbar_tiv6x::-webkit-scrollbar-track {\n background-color: transparent;\n } .drawer__customScrollbar_tiv6x::-webkit-scrollbar-track-piece {\n background-color: transparent;\n } .drawer__customScrollbar_tiv6x::-webkit-scrollbar-thumb {\n background-color: rgba(228, 228, 251, 0.28);\n border-color: transparent;\n } .drawer__customScrollbar_tiv6x::-webkit-scrollbar-thumb:active {\n background-color: rgba(238, 238, 251, 0.55);\n } .drawer__backdropEnter_tiv6x {\n background-color: transparent;\n} .drawer__backdropEnterActive_tiv6x,\n.drawer__backdropEnterDone_tiv6x {\n background-color: rgba(0, 0, 0, 0.7);\n} .drawer__backdropExit_tiv6x {\n background-color: rgba(0, 0, 0, 0.7);\n} .drawer__backdropExitActive_tiv6x,\n.drawer__backdropExitDone_tiv6x {\n background-color: transparent;\n}.pagination__component_14zfk {\n color: rgba(255, 255, 255, 0.94);\n}\n.pagination__dots_w3qrm {\n color: rgba(238, 238, 251, 0.55);\n}\n\nbutton.pagination__tag_b1whi.pagination__tag_b1whi {\n color: rgba(238, 238, 251, 0.55)\n} button.pagination__tag_b1whi.pagination__tag_b1whi:hover:not(:disabled) {\n background-color: rgba(214, 214, 229, 0.07);\n color: rgba(255, 255, 255, 0.94);\n } button.pagination__tag_b1whi.pagination__tag_b1whi:active:not(:disabled) {\n background-color: rgba(225, 225, 248, 0.09);\n } button.pagination__tag_b1whi.pagination__tag_b1whi.pagination__checked_b1whi {\n background-color: #f2f3f5;\n color: rgba(3, 3, 6, 0.88);\n } button.pagination__tag_b1whi.pagination__tag_b1whi.pagination__checked_b1whi:hover:not(:disabled) {\n color: rgba(3, 3, 6, 0.88);\n } button.pagination__tag_b1whi.pagination__tag_b1whi.pagination__checked_b1whi:active:not(:disabled) {\n color: rgba(255, 255, 255, 0.94);\n }.button__primary_afm85 {\n color: rgba(3, 3, 6, 0.88);\n background-color: #f2f3f5\n} @media (hover: hover) {\n .button__primary_afm85:hover {\n background-color: #dcdde1;\n }\n } .button__primary_afm85:active {\n background-color: #d2d3d9;\n } .button__primary_afm85 > .button__loader_afm85 {\n color: rgba(3, 3, 6, 0.88);\n } .button__secondary_afm85 {\n background-color: rgba(222, 222, 238, 0.13)\n} .button__secondary_afm85:hover {\n background-color: rgba(234, 234, 248, 0.15);\n } .button__secondary_afm85:active {\n background-color: rgba(231, 231, 248, 0.18);\n } .button__text_afm85:active {\n color: rgba(255, 255, 255, 0.6);\n } .button__ghost_afm85:active {\n color: rgba(255, 255, 255, 0.6);\n } .button__component_afm85[disabled].button__primary_afm85 {\n color: rgba(233, 233, 250, 0.37);\n background-color: rgba(214, 214, 229, 0.07)\n } .button__component_afm85[disabled].button__primary_afm85.button__loading_afm85 {\n color: rgba(3, 3, 6, 0.88);\n background-color: #f2f3f5;\n } .button__component_afm85[disabled].button__secondary_afm85 {\n color: rgba(233, 233, 250, 0.37);\n background-color: rgba(214, 214, 229, 0.07);\n } .button__component_afm85[disabled].button__outlined_afm85 {\n color: rgba(233, 233, 250, 0.37);\n border-color: rgba(228, 228, 251, 0.28);\n } .button__component_afm85[disabled].button__tertiary_afm85 {\n color: rgba(233, 233, 250, 0.37);\n border-color: rgba(228, 228, 251, 0.28);\n } .button__component_afm85[disabled].button__transparent_afm85 {\n color: rgba(233, 233, 250, 0.37);\n } .button__component_afm85[disabled].button__link_afm85 {\n color: rgba(233, 233, 250, 0.37);\n } .button__component_afm85[disabled].button__text_afm85 {\n color: rgba(233, 233, 250, 0.37);\n } .button__component_afm85[disabled].button__ghost_afm85 {\n color: rgba(233, 233, 250, 0.37);\n }\n\n.button__primary_1rn2g {\n color: rgba(255, 255, 255, 0.94);\n background-color: #212124\n} @media (hover: hover) {\n .button__primary_1rn2g:hover {\n background-color: #2f2f32;\n }\n } .button__primary_1rn2g:active {\n background-color: #353539;\n } .button__primary_1rn2g > .button__loader_1rn2g {\n color: rgba(255, 255, 255, 0.94);\n } .button__secondary_1rn2g {\n background-color: rgba(15, 25, 55, 0.1)\n} .button__secondary_1rn2g:hover {\n background-color: rgba(5, 12, 41, 0.14);\n } .button__secondary_1rn2g:active {\n background-color: rgba(5, 11, 44, 0.18);\n } .button__text_1rn2g:active {\n color: rgba(4, 4, 19, 0.55);\n } .button__ghost_1rn2g:active {\n color: rgba(4, 4, 19, 0.55);\n } .button__component_1rn2g[disabled].button__primary_1rn2g {\n color: rgba(5, 8, 29, 0.38);\n background-color: rgba(38, 55, 88, 0.06)\n } .button__component_1rn2g[disabled].button__primary_1rn2g.button__loading_1rn2g {\n color: rgba(255, 255, 255, 0.94);\n background-color: #212124;\n } .button__component_1rn2g[disabled].button__secondary_1rn2g {\n color: rgba(5, 8, 29, 0.38);\n background-color: rgba(38, 55, 88, 0.06);\n } .button__component_1rn2g[disabled].button__outlined_1rn2g {\n color: rgba(5, 8, 29, 0.38);\n border-color: rgba(9, 12, 37, 0.28);\n } .button__component_1rn2g[disabled].button__tertiary_1rn2g {\n color: rgba(5, 8, 29, 0.38);\n border-color: rgba(9, 12, 37, 0.28);\n } .button__component_1rn2g[disabled].button__transparent_1rn2g {\n color: rgba(5, 8, 29, 0.38);\n } .button__component_1rn2g[disabled].button__link_1rn2g {\n color: rgba(5, 8, 29, 0.38);\n } .button__component_1rn2g[disabled].button__text_1rn2g {\n color: rgba(5, 8, 29, 0.38);\n } .button__component_1rn2g[disabled].button__ghost_1rn2g {\n color: rgba(5, 8, 29, 0.38);\n }\n.button__primary_eekaz {\n color: rgba(3, 3, 6, 0.88);\n background-color: #f2f3f5\n} @media (hover: hover) {\n .button__primary_eekaz:hover {\n background-color: #dcdde1;\n }\n } .button__primary_eekaz:active {\n background-color: #d2d3d9;\n } .button__primary_eekaz > .button__loader_eekaz {\n color: rgba(3, 3, 6, 0.88);\n } .button__secondary_eekaz {\n background-color: rgba(214, 214, 229, 0.07)\n} .button__secondary_eekaz:active {\n background-color: rgba(222, 222, 238, 0.13);\n } .button__text_eekaz:active {\n color: rgba(255, 255, 255, 0.6);\n } .button__ghost_eekaz:active {\n color: rgba(255, 255, 255, 0.6);\n } .button__component_eekaz[disabled].button__primary_eekaz {\n color: rgba(233, 233, 250, 0.37);\n background-color: rgba(214, 214, 229, 0.07)\n } .button__component_eekaz[disabled].button__primary_eekaz.button__loading_eekaz {\n color: rgba(3, 3, 6, 0.88);\n background-color: #f2f3f5;\n } .button__component_eekaz[disabled].button__secondary_eekaz {\n color: rgba(233, 233, 250, 0.37);\n background-color: rgba(214, 214, 229, 0.07);\n } .button__component_eekaz[disabled].button__outlined_eekaz {\n color: rgba(233, 233, 250, 0.37);\n border-color: rgba(228, 228, 251, 0.28);\n } .button__component_eekaz[disabled].button__tertiary_eekaz {\n color: rgba(233, 233, 250, 0.37);\n border-color: rgba(228, 228, 251, 0.28);\n } .button__component_eekaz[disabled].button__transparent_eekaz {\n color: rgba(233, 233, 250, 0.37);\n } .button__component_eekaz[disabled].button__link_eekaz {\n color: rgba(233, 233, 250, 0.37);\n } .button__component_eekaz[disabled].button__text_eekaz {\n color: rgba(233, 233, 250, 0.37);\n } .button__component_eekaz[disabled].button__ghost_eekaz {\n color: rgba(233, 233, 250, 0.37);\n }\n.button__primary_142ln {\n color: rgba(255, 255, 255, 0.94);\n background-color: #212124\n} @media (hover: hover) {\n .button__primary_142ln:hover {\n background-color: #2f2f32;\n }\n } .button__primary_142ln:active {\n background-color: #353539;\n } .button__primary_142ln > .button__loader_142ln {\n color: rgba(255, 255, 255, 0.94);\n } .button__secondary_142ln {\n background-color: rgba(38, 55, 88, 0.06)\n} .button__secondary_142ln:active {\n background-color: rgba(5, 12, 41, 0.14);\n } .button__text_142ln:active {\n color: rgba(4, 4, 19, 0.55);\n } .button__ghost_142ln:active {\n color: rgba(4, 4, 19, 0.55);\n } .button__component_142ln[disabled].button__primary_142ln {\n color: rgba(5, 8, 29, 0.38);\n background-color: rgba(38, 55, 88, 0.06)\n } .button__component_142ln[disabled].button__primary_142ln.button__loading_142ln {\n color: rgba(255, 255, 255, 0.94);\n background-color: #212124;\n } .button__component_142ln[disabled].button__secondary_142ln {\n color: rgba(5, 8, 29, 0.38);\n background-color: rgba(38, 55, 88, 0.06);\n } .button__component_142ln[disabled].button__outlined_142ln {\n color: rgba(5, 8, 29, 0.38);\n border-color: rgba(9, 12, 37, 0.28);\n } .button__component_142ln[disabled].button__tertiary_142ln {\n color: rgba(5, 8, 29, 0.38);\n border-color: rgba(9, 12, 37, 0.28);\n } .button__component_142ln[disabled].button__transparent_142ln {\n color: rgba(5, 8, 29, 0.38);\n } .button__component_142ln[disabled].button__link_142ln {\n color: rgba(5, 8, 29, 0.38);\n } .button__component_142ln[disabled].button__text_142ln {\n color: rgba(5, 8, 29, 0.38);\n } .button__component_142ln[disabled].button__ghost_142ln {\n color: rgba(5, 8, 29, 0.38);\n }\n\n.button__accent_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n background-color: #f83a2a;\n border: 1px solid transparent\n} @media (hover: hover) {\n .button__accent_tozm2:hover {\n background-color: #ff503e;\n }\n } .button__accent_tozm2:active {\n background-color: #fd624e;\n } .button__accent_tozm2 > .button__loader_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n } .button__primary_tozm2 {\n border: 1px solid transparent\n} .button__primary_tozm2 .button__hint_tozm2 {\n color: rgba(4, 4, 19, 0.55);\n } .button__secondary_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n border: 1px solid transparent\n} .button__secondary_tozm2 > .button__loader_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n } .button__secondary_tozm2 .button__hint_tozm2 {\n color: rgba(238, 238, 251, 0.55);\n } .button__outlined_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n background-color: rgba(255, 255, 255, 0);\n border: 1px solid rgba(255, 255, 255, 0.94)\n} @media (hover: hover) {\n .button__outlined_tozm2:hover {\n background-color: rgba(214, 214, 229, 0.07);\n border-color: rgba(255, 255, 255, 0.94);\n }\n } .button__outlined_tozm2:active {\n background-color: rgba(225, 225, 248, 0.09);\n } .button__outlined_tozm2 > .button__loader_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n } .button__outlined_tozm2 .button__hint_tozm2 {\n color: rgba(238, 238, 251, 0.55);\n } .button__tertiary_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n background-color: rgba(255, 255, 255, 0);\n border: 1px solid rgba(255, 255, 255, 0.94)\n} @media (hover: hover) {\n .button__tertiary_tozm2:hover {\n background-color: rgba(214, 214, 229, 0.07);\n border-color: rgba(255, 255, 255, 0.94);\n }\n } .button__tertiary_tozm2:active {\n background-color: rgba(225, 225, 248, 0.09);\n } .button__tertiary_tozm2 > .button__loader_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n } .button__tertiary_tozm2 .button__hint_tozm2 {\n color: rgba(238, 238, 251, 0.55);\n } .button__filled_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n background-color: rgba(222, 222, 238, 0.13);\n border: 1px solid transparent\n} @media (hover: hover) {\n .button__filled_tozm2:hover {\n background-color: rgba(234, 234, 248, 0.15);\n }\n } .button__filled_tozm2:active {\n background-color: rgba(231, 231, 248, 0.18);\n } .button__filled_tozm2 > .button__loader_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n } .button__transparent_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n background-color: transparent;\n border: 1px solid transparent\n} @media (hover: hover) {\n .button__transparent_tozm2:hover {\n background-color: rgba(214, 214, 229, 0.07);\n }\n } .button__transparent_tozm2:active {\n background-color: rgba(225, 225, 248, 0.09);\n } .button__transparent_tozm2 > .button__loader_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n } .button__transparent_tozm2 .button__hint_tozm2 {\n color: rgba(238, 238, 251, 0.55);\n } .button__link_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n background-color: transparent;\n border: 1px solid transparent\n} @media (hover: hover) {\n .button__link_tozm2:hover {\n background-color: rgba(214, 214, 229, 0.07);\n }\n } .button__link_tozm2:active {\n background-color: rgba(225, 225, 248, 0.09);\n } .button__link_tozm2 > .button__loader_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n } .button__text_tozm2 {\n background-color: transparent;\n color: rgba(255, 255, 255, 0.94)\n} @media (hover: hover) {\n .button__text_tozm2:hover {\n color: rgba(255, 255, 255, 0.7);\n }\n } .button__text_tozm2 > .button__loader_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n } .button__text_tozm2 .button__hint_tozm2 {\n color: rgba(238, 238, 251, 0.55);\n } .button__ghost_tozm2 {\n background-color: transparent;\n color: rgba(255, 255, 255, 0.94)\n} @media (hover: hover) {\n .button__ghost_tozm2:hover {\n color: rgba(255, 255, 255, 0.7);\n }\n } .button__ghost_tozm2 > .button__loader_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n } .button__component_tozm2[disabled].button__accent_tozm2 {\n color: rgba(233, 233, 250, 0.37);\n background-color: rgba(214, 214, 229, 0.07)\n } .button__component_tozm2[disabled].button__accent_tozm2.button__loading_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n background-color: #f83a2a;\n } .button__component_tozm2[disabled].button__secondary_tozm2 {\n border-color: transparent\n } .button__component_tozm2[disabled].button__secondary_tozm2.button__loading_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n background-color: rgba(222, 222, 238, 0.13);\n border-color: transparent;\n } .button__component_tozm2[disabled].button__outlined_tozm2 {\n background-color: rgba(255, 255, 255, 0)\n } .button__component_tozm2[disabled].button__outlined_tozm2.button__loading_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n border-color: rgba(255, 255, 255, 0.94);\n } .button__component_tozm2[disabled].button__tertiary_tozm2 {\n background-color: rgba(255, 255, 255, 0)\n } .button__component_tozm2[disabled].button__tertiary_tozm2.button__loading_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n border-color: rgba(255, 255, 255, 0.94);\n } .button__component_tozm2[disabled].button__filled_tozm2 {\n color: rgba(233, 233, 250, 0.37);\n background-color: rgba(214, 214, 229, 0.07)\n } .button__component_tozm2[disabled].button__filled_tozm2.button__loading_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n background-color: rgba(222, 222, 238, 0.13);\n } .button__component_tozm2[disabled].button__transparent_tozm2 {\n background-color: transparent\n } .button__component_tozm2[disabled].button__transparent_tozm2.button__loading_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n } .button__component_tozm2[disabled].button__link_tozm2 {\n background-color: transparent\n } .button__component_tozm2[disabled].button__link_tozm2.button__loading_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n } .button__component_tozm2[disabled].button__text_tozm2.button__loading_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n } .button__component_tozm2[disabled].button__ghost_tozm2.button__loading_tozm2 {\n color: rgba(255, 255, 255, 0.94);\n }\n.button__component_c0wb2 {\n -webkit-tap-highlight-color: transparent;\n} .button__focused_c0wb2 {\n outline: 2px solid #3193fc;\n}\n.button__accent_1n55i {\n color: rgba(255, 255, 255, 0.94);\n background-color: #ef3124;\n border: 1px solid transparent\n} @media (hover: hover) {\n .button__accent_1n55i:hover {\n background-color: #e32a17;\n }\n } .button__accent_1n55i:active {\n background-color: #d72505;\n } .button__accent_1n55i > .button__loader_1n55i {\n color: rgba(255, 255, 255, 0.94);\n } .button__primary_1n55i {\n border: 1px solid transparent\n} .button__primary_1n55i .button__hint_1n55i {\n color: rgba(238, 238, 251, 0.55);\n } .button__secondary_1n55i {\n color: rgba(3, 3, 6, 0.88);\n border: 1px solid transparent\n} .button__secondary_1n55i > .button__loader_1n55i {\n color: rgba(3, 3, 6, 0.88);\n } .button__secondary_1n55i .button__hint_1n55i {\n color: rgba(4, 4, 19, 0.55);\n } .button__outlined_1n55i {\n color: rgba(3, 3, 6, 0.88);\n background-color: rgba(255, 255, 255, 0);\n border: 1px solid rgba(3, 3, 6, 0.88)\n} @media (hover: hover) {\n .button__outlined_1n55i:hover {\n background-color: rgba(38, 55, 88, 0.06);\n border-color: rgba(3, 3, 6, 0.88);\n }\n } .button__outlined_1n55i:active {\n background-color: rgba(30, 43, 68, 0.08);\n } .button__outlined_1n55i > .button__loader_1n55i {\n color: rgba(3, 3, 6, 0.88);\n } .button__outlined_1n55i .button__hint_1n55i {\n color: rgba(4, 4, 19, 0.55);\n } .button__tertiary_1n55i {\n color: rgba(3, 3, 6, 0.88);\n background-color: rgba(255, 255, 255, 0);\n border: 1px solid rgba(3, 3, 6, 0.88)\n} @media (hover: hover) {\n .button__tertiary_1n55i:hover {\n background-color: rgba(38, 55, 88, 0.06);\n border-color: rgba(3, 3, 6, 0.88);\n }\n } .button__tertiary_1n55i:active {\n background-color: rgba(30, 43, 68, 0.08);\n } .button__tertiary_1n55i > .button__loader_1n55i {\n color: rgba(3, 3, 6, 0.88);\n } .button__tertiary_1n55i .button__hint_1n55i {\n color: rgba(4, 4, 19, 0.55);\n } .button__filled_1n55i {\n color: rgba(3, 3, 6, 0.88);\n background-color: rgba(15, 25, 55, 0.1);\n border: 1px solid transparent\n} @media (hover: hover) {\n .button__filled_1n55i:hover {\n background-color: rgba(5, 12, 41, 0.14);\n }\n } .button__filled_1n55i:active {\n background-color: rgba(5, 11, 44, 0.18);\n } .button__filled_1n55i > .button__loader_1n55i {\n color: rgba(3, 3, 6, 0.88);\n } .button__transparent_1n55i {\n color: rgba(3, 3, 6, 0.88);\n background-color: transparent;\n border: 1px solid transparent\n} @media (hover: hover) {\n .button__transparent_1n55i:hover {\n background-color: rgba(38, 55, 88, 0.06);\n }\n } .button__transparent_1n55i:active {\n background-color: rgba(30, 43, 68, 0.08);\n } .button__transparent_1n55i > .button__loader_1n55i {\n color: rgba(3, 3, 6, 0.88);\n } .button__transparent_1n55i .button__hint_1n55i {\n color: rgba(4, 4, 19, 0.55);\n } .button__link_1n55i {\n color: rgba(3, 3, 6, 0.88);\n background-color: transparent;\n border: 1px solid transparent\n} @media (hover: hover) {\n .button__link_1n55i:hover {\n background-color: rgba(38, 55, 88, 0.06);\n }\n } .button__link_1n55i:active {\n background-color: rgba(30, 43, 68, 0.08);\n } .button__link_1n55i > .button__loader_1n55i {\n color: rgba(3, 3, 6, 0.88);\n } .button__text_1n55i {\n background-color: transparent;\n color: rgba(3, 3, 6, 0.88)\n} @media (hover: hover) {\n .button__text_1n55i:hover {\n color: rgba(1, 1, 12, 0.63);\n }\n } .button__text_1n55i > .button__loader_1n55i {\n color: rgba(3, 3, 6, 0.88);\n } .button__text_1n55i .button__hint_1n55i {\n color: rgba(4, 4, 19, 0.55);\n } .button__ghost_1n55i {\n background-color: transparent;\n color: rgba(3, 3, 6, 0.88)\n} @media (hover: hover) {\n .button__ghost_1n55i:hover {\n color: rgba(1, 1, 12, 0.63);\n }\n } .button__ghost_1n55i > .button__loader_1n55i {\n color: rgba(3, 3, 6, 0.88);\n } .button__component_1n55i[disabled].button__accent_1n55i {\n color: rgba(5, 8, 29, 0.38);\n background-color: rgba(38, 55, 88, 0.06)\n } .button__component_1n55i[disabled].button__accent_1n55i.button__loading_1n55i {\n color: rgba(255, 255, 255, 0.94);\n background-color: #ef3124;\n } .button__component_1n55i[disabled].button__secondary_1n55i {\n border-color: transparent\n } .button__component_1n55i[disabled].button__secondary_1n55i.button__loading_1n55i {\n color: rgba(3, 3, 6, 0.88);\n background-color: rgba(15, 25, 55, 0.1);\n border-color: transparent;\n } .button__component_1n55i[disabled].button__outlined_1n55i {\n background-color: rgba(255, 255, 255, 0)\n } .button__component_1n55i[disabled].button__outlined_1n55i.button__loading_1n55i {\n color: rgba(3, 3, 6, 0.88);\n } .button__component_1n55i[disabled].button__tertiary_1n55i {\n background-color: rgba(255, 255, 255, 0)\n } .button__component_1n55i[disabled].button__tertiary_1n55i.button__loading_1n55i {\n color: rgba(3, 3, 6, 0.88);\n } .button__component_1n55i[disabled].button__filled_1n55i {\n color: rgba(5, 8, 29, 0.38);\n background-color: rgba(38, 55, 88, 0.06)\n } .button__component_1n55i[disabled].button__filled_1n55i.button__loading_1n55i {\n color: rgba(3, 3, 6, 0.88);\n background-color: rgba(15, 25, 55, 0.1);\n } .button__component_1n55i[disabled].button__transparent_1n55i {\n background-color: transparent\n } .button__component_1n55i[disabled].button__transparent_1n55i.button__loading_1n55i {\n color: rgba(3, 3, 6, 0.88);\n } .button__component_1n55i[disabled].button__link_1n55i {\n background-color: transparent\n } .button__component_1n55i[disabled].button__link_1n55i.button__loading_1n55i {\n color: rgba(3, 3, 6, 0.88);\n } .button__component_1n55i[disabled].button__text_1n55i.button__loading_1n55i {\n color: rgba(3, 3, 6, 0.88);\n } .button__component_1n55i[disabled].button__ghost_1n55i.button__loading_1n55i {\n color: rgba(3, 3, 6, 0.88);\n }.circular-progress-bar__component_3bcq9.circular-progress-bar__bg-positive_3bcq9 {\n background: #17d055;\n } .circular-progress-bar__component_3bcq9.circular-progress-bar__bg-negative_3bcq9 {\n background: #ff4837;\n } .circular-progress-bar__backgroundCircle_3bcq9,\n.circular-progress-bar__progressCircle_3bcq9 {\n fill: transparent;\n} .circular-progress-bar__positive_3bcq9 {\n stroke: #17d055;\n} .circular-progress-bar__negative_3bcq9 {\n stroke: #ff4837;\n} .circular-progress-bar__backgroundCircle_3bcq9 {\n stroke: rgba(222, 222, 238, 0.13)\n} .circular-progress-bar__backgroundCircle_3bcq9.circular-progress-bar__stroke_3bcq9 {\n stroke: transparent;\n } .circular-progress-bar__iconWrapper_3bcq9.circular-progress-bar__icon-tertiary_3bcq9 {\n color: #4a4a51;\n } .circular-progress-bar__iconWrapper_3bcq9.circular-progress-bar__icon-positive_3bcq9 {\n color: #17d055;\n } .circular-progress-bar__iconWrapper_3bcq9.circular-progress-bar__icon-negative_3bcq9 {\n color: #ff4837;\n } .circular-progress-bar__iconWrapper_3bcq9.circular-progress-bar__icon-primary-inverted_3bcq9 {\n color: rgba(3, 3, 6, 0.88);\n } .circular-progress-bar__iconWrapper_3bcq9.circular-progress-bar__icon-primary_3bcq9 {\n color: rgba(255, 255, 255, 0.94);\n } .circular-progress-bar__iconWrapper_3bcq9.circular-progress-bar__icon-secondary_3bcq9 {\n color: #898991;\n }.chart__coreChart_1tpn6 .recharts-text tspan {\n fill: rgba(255, 255, 255, 0.94);\n }\n@keyframes chart__showDot_o8dmm {\n}\n\n.chart__tickText_19h3g {\n fill: rgba(255, 255, 255, 0.94);\n} .chart__circle_19h3g {\n fill: #121213;\n} .chart__circle_19h3g {\n fill: #121213;\n}\n.chart__tooltip_bfwgc {\n background-color: #121213;\n border: 1px solid #353539;\n box-shadow: 0 24px 32px rgba(0, 0, 0, 0.08), 0 20px 24px rgba(0, 0, 0, 0.08),\n 0 12px 16px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.04);\n} .chart__tooltipArrow_bfwgc {\n border: 1px solid #353539;\n background-color: #121213;\n} .chart__tooltipArrow_bfwgc:before {\n border-color: transparent #121213 transparent transparent;\n}.comment__component_j3kkk {\n background-color: #1c1c1e;\n}.list-header__filled_1h09o {\n background-color: #212124;\n}.list__list_62bi3 {\n color: rgba(255, 255, 255, 0.94);\n}\n.list__slot_7f9lb.list__defaultColor_7f9lb {\n color: rgba(255, 255, 255, 0.94);\n }.tab-bar__component_wkct2.tab-bar__modal-bg-primary_wkct2 {\n background-color: #121213;\n } .tab-bar__component_wkct2.tab-bar__modal-bg-alt-primary_wkct2 {\n background-color: #121213;\n } .tab-bar__border_wkct2 {\n box-shadow: 0 -1px 0 0 rgba(222, 222, 238, 0.13);\n}\n.tab-bar__component_1e6se {\n -webkit-tap-highlight-color: transparent;\n background-color: transparent;\n color: rgba(238, 238, 251, 0.55);\n} .tab-bar__primary_1e6se {\n color: #f83a2a;\n} .tab-bar__secondary_1e6se {\n color: #f2f3f5;\n} .tab-bar__label_1e6se {\n color: rgba(238, 238, 251, 0.55);\n}.stepped-progress-bar__bar_f913g {\n background: rgba(222, 222, 238, 0.13);\n} .stepped-progress-bar__description_f913g {\n color: rgba(238, 238, 251, 0.55);\n}\n\n.stepped-progress-bar__bar_17bvp {\n background: rgba(15, 25, 55, 0.1);\n} .stepped-progress-bar__description_17bvp {\n color: rgba(4, 4, 19, 0.55);\n}\n.stepped-progress-bar__bar_1pjw6.stepped-progress-bar__positive_1pjw6 {\n background: #17d055;\n } .stepped-progress-bar__bar_1pjw6.stepped-progress-bar__attention_1pjw6 {\n background: #fda136;\n } .stepped-progress-bar__bar_1pjw6.stepped-progress-bar__negative_1pjw6 {\n background: #ff4837;\n } .stepped-progress-bar__bar_1pjw6.stepped-progress-bar__link_1pjw6 {\n background: #3193fc;\n } .stepped-progress-bar__bar_1pjw6.stepped-progress-bar__tertiary_1pjw6 {\n background: #4a4a51;\n } .stepped-progress-bar__bar_1pjw6.stepped-progress-bar__secondary_1pjw6 {\n background: #898991;\n } .stepped-progress-bar__bar_1pjw6.stepped-progress-bar__primary_1pjw6 {\n background: rgba(255, 255, 255, 0.94);\n } .stepped-progress-bar__bar_1pjw6.stepped-progress-bar__accent_1pjw6 {\n background: #f83a2a;\n }.attach__component_z339h {\n} .attach__file_z339h,\n.attach__noFile_z339h {\n color: rgba(238, 238, 251, 0.55);\n} .attach__focused_z339h {\n outline: 2px solid #3193fc;\n}.confirmation-v1__errorHeader_1fy7i {\n color: rgba(255, 255, 255, 0.94);\n color: rgba(255, 255, 255, 0.94);\n} .confirmation-v1__errorText_1fy7i {\n color: rgba(238, 238, 251, 0.55);\n color: rgba(238, 238, 251, 0.55);\n} .confirmation-v1__phoneHintText_1fy7i {\n color: rgba(238, 238, 251, 0.55);\n color: rgba(238, 238, 251, 0.55);\n} .confirmation-v1__phonesWrap_1fy7i {\n color: rgba(238, 238, 251, 0.55);\n} .confirmation-v1__phoneDescription_1fy7i {\n color: rgba(238, 238, 251, 0.55);\n}\n.confirmation-v1__input_1846h {\n background-color: rgba(222, 222, 238, 0.13);\n color: rgba(255, 255, 255, 0.94)\n} .confirmation-v1__input_1846h.confirmation-v1__hasError_1846h {\n color: #ff4837;\n caret-color: rgba(255, 255, 255, 0.94);\n background-color: #392523;\n } .confirmation-v1__input_1846h.confirmation-v1__disabled_1846h {\n color: rgba(233, 233, 250, 0.37);\n } @keyframes confirmation-v1__shake_1846h {\n}\n.confirmation-v1__component_12iks {\n color: rgba(238, 238, 251, 0.55);\n color: rgba(238, 238, 251, 0.55);\n}\n.confirmation-v1__circle_7a4uq {\n fill: transparent;\n stroke: #4a4a51;\n}\n.confirmation-v1__title_19xx7 {\n color: rgba(255, 255, 255, 0.94);\n} .confirmation-v1__description_19xx7 {\n color: rgba(238, 238, 251, 0.55);\n} .confirmation-v1__alertIcon_19xx7 {\n color: #d91d0b;\n}\n.confirmation-v1__header_11kv3 {\n color: rgba(255, 255, 255, 0.94);\n color: rgba(255, 255, 255, 0.94);\n} .confirmation-v1__error_11kv3 {\n color: #ff4837;\n} .confirmation-v1__loaderText_11kv3 {\n color: rgba(238, 238, 251, 0.55);\n color: rgba(238, 238, 251, 0.55);\n}.custom-button__customButton_1bied.custom-button__border_1bied {\n border: 1px solid transparent;\n } .custom-button__customButton_1bied.custom-button__white_1bied * {\n color: rgba(3, 3, 6, 0.88);\n } .custom-button__customButton_1bied.custom-button__black_1bied * {\n color: rgba(255, 255, 255, 0.94);\n } .custom-button__customButton_1bied.custom-button__static-white_1bied * {\n color: rgba(255, 255, 255, 0.94);\n } .custom-button__customButton_1bied.custom-button__static-black_1bied * {\n color: rgba(3, 3, 6, 0.88);\n } .custom-button__customButton_1bied:before {\n background-color: rgba(0, 0, 0, 0);\n } .custom-button__customButton_1bied.custom-button__darkening_1bied:hover:before {\n background-color: rgba(225, 225, 248, 0.09);\n } .custom-button__customButton_1bied.custom-button__darkening_1bied:active:before {\n background-color: rgba(231, 231, 248, 0.18);\n } .custom-button__customButton_1bied.custom-button__lightening_1bied:hover:before {\n background-color: rgba(30, 43, 68, 0.08);\n } .custom-button__customButton_1bied.custom-button__lightening_1bied:active:before {\n background-color: rgba(5, 11, 44, 0.18);\n } .custom-button__customButton_1bied.custom-button__static-darkening_1bied:hover:before {\n background-color: rgba(0, 0, 0, 0.07);\n } .custom-button__customButton_1bied.custom-button__static-darkening_1bied:active:before {\n background-color: rgba(0, 0, 0, 0.15);\n } .custom-button__customButton_1bied.custom-button__static-lightening_1bied:hover:before {\n background-color: rgba(255, 255, 255, 0.07);\n } .custom-button__customButton_1bied.custom-button__static-lightening_1bied:active:before {\n background-color: rgba(255, 255, 255, 0.15);\n } .custom-button__customButton_1bied:disabled.custom-button__disableType-default_1bied {\n background-color: rgba(214, 214, 229, 0.07)\n } .custom-button__customButton_1bied:disabled.custom-button__disableType-default_1bied span {\n color: rgba(233, 233, 250, 0.37);\n } .custom-button__customButton_1bied:disabled.custom-button__disableType-static_1bied {\n background-color: rgba(38, 55, 88, 0.06)\n } .custom-button__customButton_1bied:disabled.custom-button__disableType-static_1bied span {\n color: rgba(5, 8, 29, 0.38);\n } .custom-button__customButton_1bied:disabled.custom-button__disableType-inverted_1bied {\n background-color: rgba(38, 55, 88, 0.06)\n } .custom-button__customButton_1bied:disabled.custom-button__disableType-inverted_1bied span {\n color: rgba(5, 8, 29, 0.38);\n } .custom-button__customButton_1bied:disabled.custom-button__disableType-static-inverted_1bied {\n background-color: rgba(214, 214, 229, 0.07)\n } .custom-button__customButton_1bied:disabled.custom-button__disableType-static-inverted_1bied span {\n color: rgba(233, 233, 250, 0.37);\n }.cc-icon-button.icon-button__primary_ih8nv {\n color: rgba(255, 255, 255, 0.94)\n } .cc-icon-button.icon-button__primary_ih8nv:hover {\n color: rgba(255, 255, 255, 0.7);\n } .cc-icon-button.icon-button__primary_ih8nv:active {\n color: rgba(255, 255, 255, 0.6);\n } .cc-icon-button.icon-button__secondary_ih8nv {\n color: rgba(238, 238, 251, 0.55)\n } .cc-icon-button.icon-button__secondary_ih8nv:hover {\n color: rgba(239, 240, 252, 0.65);\n } .cc-icon-button.icon-button__secondary_ih8nv:active {\n color: rgba(243, 245, 254, 0.75);\n } .cc-icon-button.icon-button__transparent_ih8nv {\n color: rgba(228, 228, 251, 0.28)\n } .cc-icon-button.icon-button__transparent_ih8nv:hover {\n color: rgba(233, 233, 250, 0.37);\n } .cc-icon-button.icon-button__transparent_ih8nv:active {\n color: rgba(238, 238, 254, 0.46);\n } .cc-icon-button.icon-button__negative_ih8nv {\n color: #ff4837\n } .cc-icon-button.icon-button__negative_ih8nv:hover {\n color: #ff755e;\n } .cc-icon-button.icon-button__negative_ih8nv:active {\n color: #ff8d79;\n } .cc-icon-button.icon-button__tertiary_ih8nv {\n color: rgba(228, 228, 251, 0.28)\n } .cc-icon-button.icon-button__tertiary_ih8nv:hover {\n color: rgba(233, 233, 250, 0.37);\n } .cc-icon-button.icon-button__tertiary_ih8nv:active {\n color: rgba(238, 238, 254, 0.46);\n } .cc-icon-button.icon-button__transparentBg_ih8nv.icon-button__primary_ih8nv {\n color: rgba(255, 255, 255, 0.94)\n } .cc-icon-button.icon-button__transparentBg_ih8nv.icon-button__primary_ih8nv:hover {\n background: rgba(214, 214, 229, 0.07);\n } .cc-icon-button.icon-button__transparentBg_ih8nv.icon-button__primary_ih8nv:active {\n background: rgba(225, 225, 248, 0.09);\n } .cc-icon-button.icon-button__transparentBg_ih8nv.icon-button__secondary_ih8nv {\n color: rgba(238, 238, 251, 0.55)\n } .cc-icon-button.icon-button__transparentBg_ih8nv.icon-button__secondary_ih8nv:hover {\n background: rgba(214, 214, 229, 0.07);\n } .cc-icon-button.icon-button__transparentBg_ih8nv.icon-button__secondary_ih8nv:active {\n background: rgba(225, 225, 248, 0.09);\n } .cc-icon-button.icon-button__transparentBg_ih8nv.icon-button__negative_ih8nv {\n color: #ff4837\n } .cc-icon-button.icon-button__transparentBg_ih8nv.icon-button__negative_ih8nv:hover {\n background: rgba(214, 214, 229, 0.07);\n } .cc-icon-button.icon-button__transparentBg_ih8nv.icon-button__negative_ih8nv:active {\n background: rgba(225, 225, 248, 0.09);\n } .cc-icon-button.icon-button__transparentBg_ih8nv.icon-button__tertiary_ih8nv {\n color: rgba(233, 233, 250, 0.37)\n } .cc-icon-button.icon-button__transparentBg_ih8nv.icon-button__tertiary_ih8nv:hover {\n background: rgba(214, 214, 229, 0.07);\n } .cc-icon-button.icon-button__transparentBg_ih8nv.icon-button__tertiary_ih8nv:active {\n background: rgba(225, 225, 248, 0.09);\n } .cc-icon-button.icon-button__component_ih8nv:disabled.icon-button__primary_ih8nv {\n color: rgba(222, 222, 238, 0.13)\n } .cc-icon-button.icon-button__component_ih8nv:disabled.icon-button__primary_ih8nv.icon-button__loader_ih8nv {\n color: rgba(255, 255, 255, 0.94);\n } .cc-icon-button.icon-button__component_ih8nv:disabled.icon-button__secondary_ih8nv {\n color: rgba(222, 222, 238, 0.13)\n } .cc-icon-button.icon-button__component_ih8nv:disabled.icon-button__secondary_ih8nv.icon-button__loader_ih8nv {\n color: rgba(238, 238, 251, 0.55);\n } .cc-icon-button.icon-button__component_ih8nv:disabled.icon-button__negative_ih8nv {\n color: rgba(222, 222, 238, 0.13)\n } .cc-icon-button.icon-button__component_ih8nv:disabled.icon-button__negative_ih8nv.icon-button__loader_ih8nv {\n color: #ff4837;\n } .cc-icon-button.icon-button__component_ih8nv:disabled.icon-button__tertiary_ih8nv {\n color: rgba(222, 222, 238, 0.13)\n } .cc-icon-button.icon-button__component_ih8nv:disabled.icon-button__tertiary_ih8nv.icon-button__loader_ih8nv {\n color: rgba(228, 228, 251, 0.28);\n } .cc-icon-button.icon-button__component_ih8nv:disabled.icon-button__transparentBg_ih8nv {\n background: transparent;\n }\n\n.cc-icon-button.icon-button__primary_1529w {\n color: rgba(3, 3, 6, 0.88)\n } .cc-icon-button.icon-button__primary_1529w:hover {\n color: rgba(2, 2, 10, 0.76);\n } .cc-icon-button.icon-button__primary_1529w:active {\n color: rgba(1, 1, 12, 0.63);\n } .cc-icon-button.icon-button__secondary_1529w {\n color: rgba(4, 4, 21, 0.47)\n } .cc-icon-button.icon-button__secondary_1529w:hover {\n color: rgba(4, 4, 19, 0.55);\n } .cc-icon-button.icon-button__secondary_1529w:active {\n color: rgba(1, 1, 12, 0.63);\n } .cc-icon-button.icon-button__transparent_1529w {\n color: rgba(9, 12, 37, 0.28)\n } .cc-icon-button.icon-button__transparent_1529w:hover {\n color: rgba(5, 8, 29, 0.38);\n } .cc-icon-button.icon-button__transparent_1529w:active {\n color: rgba(4, 4, 21, 0.47);\n } .cc-icon-button.icon-button__negative_1529w {\n color: #ff4837\n } .cc-icon-button.icon-button__negative_1529w:hover {\n color: #ec2d20;\n } .cc-icon-button.icon-button__negative_1529w:active {\n color: #c7241f;\n } .cc-icon-button.icon-button__tertiary_1529w {\n color: rgba(9, 12, 37, 0.28)\n } .cc-icon-button.icon-button__tertiary_1529w:hover {\n color: rgba(5, 8, 29, 0.38);\n } .cc-icon-button.icon-button__tertiary_1529w:active {\n color: rgba(4, 4, 21, 0.47);\n } .cc-icon-button.icon-button__transparentBg_1529w.icon-button__primary_1529w {\n color: rgba(3, 3, 6, 0.88)\n } .cc-icon-button.icon-button__transparentBg_1529w.icon-button__primary_1529w:hover {\n background: rgba(38, 55, 88, 0.06);\n } .cc-icon-button.icon-button__transparentBg_1529w.icon-button__primary_1529w:active {\n background: rgba(30, 43, 68, 0.08);\n } .cc-icon-button.icon-button__transparentBg_1529w.icon-button__secondary_1529w {\n color: rgba(4, 4, 19, 0.55)\n } .cc-icon-button.icon-button__transparentBg_1529w.icon-button__secondary_1529w:hover {\n background: rgba(38, 55, 88, 0.06);\n } .cc-icon-button.icon-button__transparentBg_1529w.icon-button__secondary_1529w:active {\n background: rgba(30, 43, 68, 0.08);\n } .cc-icon-button.icon-button__transparentBg_1529w.icon-button__negative_1529w {\n color: #ec2d20\n } .cc-icon-button.icon-button__transparentBg_1529w.icon-button__negative_1529w:hover {\n background: rgba(38, 55, 88, 0.06);\n } .cc-icon-button.icon-button__transparentBg_1529w.icon-button__negative_1529w:active {\n background: rgba(30, 43, 68, 0.08);\n } .cc-icon-button.icon-button__transparentBg_1529w.icon-button__tertiary_1529w {\n color: rgba(5, 8, 29, 0.38)\n } .cc-icon-button.icon-button__transparentBg_1529w.icon-button__tertiary_1529w:hover {\n background: rgba(38, 55, 88, 0.06);\n } .cc-icon-button.icon-button__transparentBg_1529w.icon-button__tertiary_1529w:active {\n background: rgba(30, 43, 68, 0.08);\n } .cc-icon-button.icon-button__component_1529w:disabled.icon-button__primary_1529w {\n color: rgba(15, 25, 55, 0.1)\n } .cc-icon-button.icon-button__component_1529w:disabled.icon-button__primary_1529w.icon-button__loader_1529w {\n color: rgba(3, 3, 6, 0.88);\n } .cc-icon-button.icon-button__component_1529w:disabled.icon-button__secondary_1529w {\n color: rgba(15, 25, 55, 0.1)\n } .cc-icon-button.icon-button__component_1529w:disabled.icon-button__secondary_1529w.icon-button__loader_1529w {\n color: rgba(4, 4, 21, 0.47);\n } .cc-icon-button.icon-button__component_1529w:disabled.icon-button__negative_1529w {\n color: rgba(15, 25, 55, 0.1)\n } .cc-icon-button.icon-button__component_1529w:disabled.icon-button__negative_1529w.icon-button__loader_1529w {\n color: #ff4837;\n } .cc-icon-button.icon-button__component_1529w:disabled.icon-button__tertiary_1529w {\n color: rgba(15, 25, 55, 0.1)\n } .cc-icon-button.icon-button__component_1529w:disabled.icon-button__tertiary_1529w.icon-button__loader_1529w {\n color: rgba(9, 12, 37, 0.28);\n } .cc-icon-button.icon-button__component_1529w:disabled.icon-button__transparentBg_1529w {\n background: transparent;\n }\n.confirmation__component_g697q {\n color: rgba(238, 238, 251, 0.55)\n}\n.confirmation__circle_13zu0 {\n fill: transparent;\n stroke: #4a4a51;\n}\n\n.confirmation__typographyTheme_136rh.confirmation__typographyTheme_136rh {\n color: rgba(238, 238, 251, 0.55);\n} .confirmation__typographyThemeMobile_136rh.confirmation__typographyThemeMobile_136rh {\n color: rgba(238, 238, 251, 0.55);\n}\n.confirmation__typographyTheme_18yv3.confirmation__typographyTheme_18yv3 {\n color: rgba(238, 238, 251, 0.55);\n} .confirmation__typographyThemeMobile_18yv3.confirmation__typographyThemeMobile_18yv3 {\n color: rgba(238, 238, 251, 0.55);\n}\n.confirmation__phone_yq97g.confirmation__phone_yq97g {\n color: rgba(255, 255, 255, 0.94);\n} .confirmation__typographyTheme_yq97g.confirmation__typographyTheme_yq97g {\n color: rgba(238, 238, 251, 0.55);\n} .confirmation__typographyThemeMobile_yq97g.confirmation__typographyThemeMobile_yq97g {\n color: rgba(238, 238, 251, 0.55);\n} .confirmation__countdownContainer_yq97g.confirmation__countdownContainer_yq97g {\n color: rgba(238, 238, 251, 0.55);\n} .confirmation__timeCounter_yq97g {\n color: rgba(238, 238, 251, 0.55);\n}\n.confirmation__typographyTheme_ay4tc.confirmation__typographyTheme_ay4tc {\n color: rgba(238, 238, 251, 0.55);\n} .confirmation__typographyThemeMobile_ay4tc.confirmation__typographyThemeMobile_ay4tc {\n color: rgba(238, 238, 251, 0.55);\n} .confirmation__timeCounter_ay4tc {\n color: rgba(238, 238, 251, 0.55);\n}\n.confirmation__typographyTheme_1imyf.confirmation__typographyTheme_1imyf {\n color: rgba(238, 238, 251, 0.55);\n} .confirmation__typographyThemeMobile_1imyf.confirmation__typographyThemeMobile_1imyf {\n color: rgba(238, 238, 251, 0.55);\n}.input__input_1tjba {\n color: rgba(255, 255, 255, 0.94);\n caret-color: rgba(255, 255, 255, 0.94);\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n} .input__input_1tjba:-webkit-autofill {\n -webkit-text-fill-color: rgba(255, 255, 255, 0.94);\n} .input__input_1tjba::placeholder {\n color: rgba(238, 238, 251, 0.55);\n} .input__hasInnerLabel_1tjba::placeholder {\n color: rgba(233, 233, 250, 0.37);\n} .input__input_1tjba:read-only:not(.input__disableUserInput_1tjba) {\n color: rgba(233, 233, 250, 0.37)\n} .input__input_1tjba:read-only:not(.input__disableUserInput_1tjba):focus::placeholder {\n color: rgba(238, 238, 251, 0.55);\n } .input__input_1tjba:disabled {\n color: rgba(233, 233, 250, 0.37);\n -webkit-text-fill-color: rgba(233, 233, 250, 0.37);\n} .input__input_1tjba:focus::placeholder {\n color: rgba(233, 233, 250, 0.37);\n} .input__error_1tjba {\n color: rgba(255, 255, 255, 0.94);\n caret-color: rgba(255, 255, 255, 0.94);\n}\n.input__focusVisible_v8r7z {\n outline: 2px solid #3193fc;\n} @keyframes input__onautofillstart_v8r7z {\n from {\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n }\n to {\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0.01);\n }\n} @keyframes input__onautofillcancel_v8r7z {\n from {\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n }\n to {\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0.01);\n }\n}\n.input__input_vgd4s {\n color: rgba(3, 3, 6, 0.88);\n caret-color: rgba(3, 3, 6, 0.88);\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n} .input__input_vgd4s:-webkit-autofill {\n -webkit-text-fill-color: rgba(3, 3, 6, 0.88);\n} .input__input_vgd4s::placeholder {\n color: rgba(4, 4, 19, 0.55);\n} .input__hasInnerLabel_vgd4s::placeholder {\n color: rgba(5, 8, 29, 0.38);\n} .input__input_vgd4s:read-only:not(.input__disableUserInput_vgd4s) {\n color: rgba(5, 8, 29, 0.38)\n} .input__input_vgd4s:read-only:not(.input__disableUserInput_vgd4s):focus::placeholder {\n color: rgba(4, 4, 19, 0.55);\n } .input__input_vgd4s:disabled {\n color: rgba(5, 8, 29, 0.38);\n -webkit-text-fill-color: rgba(5, 8, 29, 0.38);\n} .input__input_vgd4s:focus::placeholder {\n color: rgba(5, 8, 29, 0.38);\n} .input__error_vgd4s {\n color: rgba(3, 3, 6, 0.88);\n caret-color: rgba(3, 3, 6, 0.88);\n}\n.input__clearIcon_107ku {\n color: rgba(228, 228, 251, 0.28)\n} .input__clearIcon_107ku:hover {\n color: rgba(233, 233, 250, 0.37);\n } .input__clearIcon_107ku:active {\n color: rgba(238, 238, 254, 0.46);\n }\n\n.input__clearIcon_121m4 {\n color: rgba(9, 12, 37, 0.28)\n} .input__clearIcon_121m4:hover {\n color: rgba(5, 8, 29, 0.38);\n } .input__clearIcon_121m4:active {\n color: rgba(4, 4, 21, 0.47);\n }.navigation-bar__border_1jhen {\n box-shadow: 0 1px 0 0 #29292c;\n} .navigation-bar__content_1jhen {\n color: rgba(255, 255, 255, 0.94)\n} .navigation-bar__subtitle_1jhen {\n color: rgba(238, 238, 251, 0.55);\n}\n.navigation-bar__iconWrapper_1nvqp {\n background: rgba(214, 214, 229, 0.07)\n} .navigation-bar__iconWrapper_1nvqp.navigation-bar__back_1nvqp {\n background: transparent;\n } .navigation-bar__floating_1nvqp path {\n fill: rgba(238, 238, 251, 0.55);\n } .navigation-bar__floating_1nvqp:hover path {\n fill: rgba(239, 240, 252, 0.65);\n } .navigation-bar__floating_1nvqp:active path {\n fill: rgba(243, 245, 254, 0.75);\n }\n.pass-code-v1__message_1h1t8 {\n color: rgba(255, 255, 255, 0.94);\n} .pass-code-v1__error_1h1t8 {\n color: #ff4837;\n}\n.pass-code-v1__dot_k0u6l {\n background: rgba(222, 222, 238, 0.13)\n} .pass-code-v1__dot_k0u6l.pass-code-v1__error_k0u6l {\n background: #ff4837;\n } .pass-code-v1__filled_k0u6l {\n background: rgba(255, 255, 255, 0.94);\n}\n@keyframes pass-code-v1__shake_wdcqb {\n}\n\n.pass-code-v1__secondary_1jisr.pass-code-v1__secondary_1jisr {\n color: rgba(255, 255, 255, 0.94);\n background: rgba(225, 225, 248, 0.09)\n} .pass-code-v1__secondary_1jisr.pass-code-v1__secondary_1jisr:hover {\n color: rgba(255, 255, 255, 0.94);\n } .pass-code-v1__secondary_1jisr.pass-code-v1__secondary_1jisr:active {\n background: rgba(234, 234, 248, 0.15);\n } .pass-code-v1__ghost_1jisr.pass-code-v1__ghost_1jisr {\n color: rgba(255, 255, 255, 0.94)\n} .pass-code-v1__ghost_1jisr.pass-code-v1__ghost_1jisr:hover {\n color: rgba(255, 255, 255, 0.94);\n } .pass-code-v1__ghost_1jisr.pass-code-v1__ghost_1jisr:active {\n background: rgba(234, 234, 248, 0.15);\n }\n@media screen and (min-width: 360px) {\n} @media screen and (min-width: 390px) {\n}\n.pattern-lock-v1__message_1tjmm {\n color: rgba(255, 255, 255, 0.94);\n} .pattern-lock-v1__error_1tjmm {\n color: #ff4837;\n}\n\n\n.pass-code__dot_1qq5k {\n background: rgba(222, 222, 238, 0.13)\n} .pass-code__dot_1qq5k.pass-code__filled_1qq5k {\n background: rgba(255, 255, 255, 0.94);\n } .pass-code__dot_1qq5k.pass-code__animatedFill_1qq5k {\n background: rgba(255, 255, 255, 0.94);\n } .pass-code__dot_1qq5k.pass-code__error_1qq5k {\n background: #ff4837;\n } .pass-code__dot_1qq5k.pass-code__success_1qq5k {\n background: #17d055;\n } .pass-code__dot_1qq5k.pass-code__rawSuccess_1qq5k {\n background: #17d055;\n }\n@keyframes pass-code__shake_1ihq2 {\n}\n\n.pass-code__secondary_1k4rz.pass-code__secondary_1k4rz,\n.pass-code__button_1k4rz.pass-code__button_1k4rz {\n color: rgba(255, 255, 255, 0.94);\n background-color: rgba(255, 255, 255, 0)\n} .pass-code__secondary_1k4rz.pass-code__secondary_1k4rz:active, .pass-code__button_1k4rz.pass-code__button_1k4rz:active {\n background-color: rgba(225, 225, 248, 0.09);\n } .pass-code__secondary_1k4rz.pass-code__secondary_1k4rz:not(.pass-code__isIOS_1k4rz):hover, .pass-code__button_1k4rz.pass-code__button_1k4rz:not(.pass-code__isIOS_1k4rz):hover {\n background-color: rgba(214, 214, 229, 0.07);\n } .pass-code__secondary_1k4rz.pass-code__secondary_1k4rz:not(.pass-code__isIOS_1k4rz):active, .pass-code__button_1k4rz.pass-code__button_1k4rz:not(.pass-code__isIOS_1k4rz):active {\n background-color: rgba(225, 225, 248, 0.09);\n }.product-cover__component_8vpib {\n background-color: #4a4a51\n}\n\n.product-cover__cardMack_34awr {\n background-color: rgba(3, 3, 6, 0.88);\n}\n.product-cover__default_9i714 {\n background: rgba(238, 238, 251, 0.55);\n} .product-cover__inverted_9i714 {\n background: rgba(4, 4, 21, 0.47);\n}\n.product-cover__buttonEye_pba53.product-cover__buttonEye_pba53 {\n color: #fff\n} .product-cover__buttonEye_pba53.product-cover__buttonEye_pba53:hover {\n color: #fff;\n } .product-cover__buttonEye_pba53.product-cover__buttonEye_pba53:active {\n color: #fff;\n }.file-upload-item-v1__component_eadit {\n color: rgba(238, 238, 251, 0.55);\n box-shadow: 0 -1px 0 0 #29292c inset\n} .file-upload-item-v1__icon_eadit {\n color: rgba(255, 255, 255, 0.94);\n} .file-upload-item-v1__errorIcon_eadit {\n color: #ff4837;\n} .file-upload-item-v1__successIcon_eadit {\n color: #17d055;\n} .file-upload-item-v1__name_eadit {\n color: rgba(255, 255, 255, 0.94)\n} .file-upload-item-v1__errorWrapper_eadit {\n color: #ff4837;\n}.pure-cell__focused_a65q3 {\n outline: 2px solid #3193fc;\n}\n.pure-cell__button_1gvhi {\n -webkit-tap-highlight-color: transparent;\n background-color: transparent\n}\n.pure-cell__hidden_1l0qi {\n background: rgba(231, 231, 248, 0.18);\n}\n.pure-cell__hidden_yate9 {\n background: rgba(231, 231, 248, 0.18);\n}\n.pure-cell__categoryPercent_8mwjx {\n background-color: #1c1c1e;\n}\n\n\n\n.pure-cell__button_5ayfm {\n -webkit-tap-highlight-color: transparent;\n background-color: transparent\n}\n.pure-cell__component_594gd.pure-cell__button_594gd {\n -webkit-tap-highlight-color: transparent;\n background-color: transparent\n }\n\n.file-upload-item__deleteIconColor_1fzih {\n fill: rgba(233, 233, 250, 0.37)\n} .file-upload-item__deleteIconColor_1fzih:hover {\n fill: rgba(238, 238, 254, 0.46);\n } .file-upload-item__downloadIconColor_1fzih {\n fill: rgba(233, 233, 250, 0.37)\n} .file-upload-item__downloadIconColor_1fzih:hover {\n fill: rgba(238, 238, 254, 0.46);\n } .file-upload-item__restoreIconColor_1fzih {\n fill: rgba(233, 233, 250, 0.37)\n} .file-upload-item__restoreIconColor_1fzih:hover {\n fill: rgba(238, 238, 254, 0.46);\n }\n.file-upload-item__container_jnj0i .file-upload-item__title_jnj0i.file-upload-item__restore_jnj0i {\n color: rgba(233, 233, 250, 0.37);\n }\n.file-upload-item__container_58erk .file-upload-item__progress_58erk {\n -webkit-mask-image: conic-gradient(black 0, transparent 0);\n mask-image: conic-gradient(black 0, transparent 0)\n } .file-upload-item__container_58erk .file-upload-item__progress_58erk.file-upload-item__success_58erk,\n .file-upload-item__container_58erk .file-upload-item__progress_58erk.file-upload-item__error_58erk {\n -webkit-mask-image: conic-gradient(black 360deg, transparent 0);\n mask-image: conic-gradient(black 360deg, transparent 0);\n } .file-upload-item__container_58erk .file-upload-item__progressBarTransparent_58erk {\n fill: transparent;\n } .file-upload-item__container_58erk .file-upload-item__progressBarUploading_58erk {\n fill: #4a4a51;\n } .file-upload-item__container_58erk .file-upload-item__progressBarSuccess_58erk {\n fill: #17d055;\n } .file-upload-item__container_58erk .file-upload-item__progressBarError_58erk {\n fill: #ff4837;\n }\n\n\n.file-upload-item__iconPDFColored_1qyfx {\n fill: #fe5e48;\n} .file-upload-item__iconDOCColored_1qyfx {\n fill: #3193fc;\n} .file-upload-item__iconExcelColored_1qyfx {\n fill: #0cc44d;\n} .file-upload-item__icon1CColored_1qyfx {\n fill: #fa9313;\n} .file-upload-item__iconDocumentColored_1qyfx {\n fill: rgba(255, 255, 255, 0.94);\n}.navigation-bar-private__content_1dj6d {\n color: rgba(255, 255, 255, 0.94)\n} .navigation-bar-private__subtitle_1dj6d {\n color: rgba(238, 238, 251, 0.55);\n}\n.navigation-bar-private__component_iai7e {\n background: rgba(255, 255, 255, 0.04)\n}\n.navigation-bar-private__component_iai7e svg > path {\n fill: rgba(255, 255, 255, 0.94);\n }\n.navigation-bar-private__component_iai7e:hover svg > path {\n fill: rgba(255, 255, 255, 0.7);\n }\n.navigation-bar-private__component_iai7e:active svg > path {\n fill: rgba(255, 255, 255, 0.6);\n }\n.navigation-bar-private__text_iai7e {\n color: rgba(255, 255, 255, 0.94);\n}\n.navigation-bar-private__mobileWrapper_iai7e {\n background: rgba(214, 214, 229, 0.07);\n color: rgba(214, 214, 229, 0.07)\n}\n.navigation-bar-private__mobileWrapper_iai7e svg > path {\n fill: rgba(238, 238, 251, 0.55);\n }\n\n.navigation-bar-private__component_f1uct {\n background: rgba(0, 0, 0, 0.04)\n}\n.navigation-bar-private__component_f1uct svg > path {\n fill: rgba(3, 3, 6, 0.88);\n }\n.navigation-bar-private__component_f1uct:hover svg > path {\n fill: rgba(2, 2, 10, 0.76);\n }\n.navigation-bar-private__component_f1uct:active svg > path {\n fill: rgba(1, 1, 12, 0.63);\n }\n.navigation-bar-private__text_f1uct {\n color: rgba(3, 3, 6, 0.88);\n}\n.navigation-bar-private__mobileWrapper_f1uct {\n background: rgba(38, 55, 88, 0.06);\n color: rgba(4, 4, 21, 0.47)\n}\n.navigation-bar-private__mobileWrapper_f1uct svg > path {\n fill: rgba(4, 4, 21, 0.47);\n }\n.navigation-bar-private__button_93jsx {\n background: rgba(255, 255, 255, 0.04);\n color: rgba(255, 255, 255, 0.94)\n}\n.navigation-bar-private__button_93jsx.navigation-bar-private__mobile_93jsx {\n background: rgba(214, 214, 229, 0.07);\n color: rgba(238, 238, 251, 0.55);\n }\n\n.navigation-bar-private__button_13w7k {\n background: rgba(0, 0, 0, 0.04);\n color: rgba(3, 3, 6, 0.88)\n}\n.navigation-bar-private__button_13w7k.navigation-bar-private__mobile_13w7k {\n background: rgba(38, 55, 88, 0.06);\n color: rgba(4, 4, 21, 0.47);\n }\n\n.plate__component_sout2 {\n color: rgba(255, 255, 255, 0.94)\n} .plate__focused_sout2 {\n outline: 2px solid #3193fc;\n} .plate__shadow_sout2:after {\n box-shadow: 0 12px 16px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.04),\n 0 0 1px rgba(0, 0, 0, 0.04);\n} .plate__common_sout2 {\n background-color: rgba(225, 225, 248, 0.09);\n border: 1px solid rgba(238, 238, 251, 0.55)\n} .plate__common_sout2:before {\n background-color: rgba(238, 238, 251, 0.55);\n } .plate__negative_sout2 {\n background-color: #392523;\n border: 1px solid #ff4837\n} .plate__negative_sout2:before {\n background-color: #ff4837;\n } .plate__positive_sout2 {\n background-color: #232d25;\n border: 1px solid #17d055\n} .plate__positive_sout2:before {\n background-color: #17d055;\n } .plate__attention_sout2 {\n background-color: #36291f;\n border: 1px solid #fda136\n} .plate__attention_sout2:before {\n background-color: #fda136;\n } .plate__custom_sout2 {\n background: transparent;\n border: 1px solid rgba(238, 238, 251, 0.55)\n} .plate__custom_sout2:before {\n background-color: rgba(238, 238, 251, 0.55);\n }\n\n.toast-plate__component_1bff7 {\n color: rgba(3, 3, 6, 0.88);\n background-color: #fff;\n} .toast-plate__closeButtonWrapper_1bff7:before {\n background-color: #e7e8eb;\n }\n\n.toast-plate__component_xcyyk {\n color: rgba(255, 255, 255, 0.94);\n background-color: #1c1c1e;\n} .toast-plate__closeButtonWrapper_xcyyk:before {\n background-color: #29292c;\n }.number-input__separator_122g0 {\n background-color: rgba(222, 222, 238, 0.13);\n} .number-input__steppers_122g0 {\n background-color: rgba(214, 214, 229, 0.07);\n} .number-input__steppersFocused_122g0,\n.number-input__steppersDisabled_122g0 {\n background-color: rgba(225, 225, 248, 0.09);\n}\n\n.number-input__separator_dkibq {\n background-color: rgba(15, 25, 55, 0.1);\n} .number-input__steppers_dkibq {\n background-color: #fff;\n} .number-input__steppersFocused_dkibq,\n.number-input__steppersDisabled_dkibq {\n background-color: rgba(15, 25, 55, 0.1);\n}.slider-input__slider_j09xl .noUi-base:hover > .noUi-connects {\n background-color: #898991;\n } .slider-input__slider_j09xl .noUi-connects {\n background-color: #898991;\n } .slider-input__steps_j09xl {\n color: rgba(238, 238, 251, 0.55);\n} .slider-input__info_j09xl {\n color: rgba(238, 238, 251, 0.55);\n}.with-suffix__hasSuffix_1iuu2 input:focus::placeholder {\n color: transparent;\n} .with-suffix__disabled_1iuu2 {\n color: rgba(233, 233, 250, 0.37)\n} .with-suffix__disabled_1iuu2.with-suffix__inverted_1iuu2 {\n color: rgba(5, 8, 29, 0.38);\n } .with-suffix__readOnly_1iuu2 {\n color: rgba(233, 233, 250, 0.37)\n} .with-suffix__readOnly_1iuu2.with-suffix__inverted_1iuu2 {\n color: rgba(5, 8, 29, 0.38);\n }\n.popup-sheet__appear_cvu3j,\n.popup-sheet__enter_cvu3j {\n background-color: transparent;\n} .popup-sheet__appearActive_cvu3j,\n.popup-sheet__enterActive_cvu3j,\n.popup-sheet__appearDone_cvu3j,\n.popup-sheet__enterDone_cvu3j {\n background-color: rgba(0, 0, 0, 0.7);\n} .popup-sheet__exit_cvu3j {\n background-color: rgba(0, 0, 0, 0.7);\n} .popup-sheet__exitActive_cvu3j,\n.popup-sheet__exitDone_cvu3j {\n background-color: transparent;\n}.bottom-sheet__component_znr4f {\n background-color: #1c1c1e;\n} .bottom-sheet__content_znr4f {\n color: rgba(255, 255, 255, 0.94);\n} .bottom-sheet__defaultMarker_znr4f {\n background-color: rgba(222, 222, 238, 0.13);\n} .bottom-sheet__hasContent_znr4f {\n color: rgba(255, 255, 255, 0.94);\n}\n.bottom-sheet__modal_1002u.bottom-sheet__modal_1002u {\n background-color: transparent;\n} .bottom-sheet__background-accent_1002u[class] {\n background-color: #ef3124;\n } .bottom-sheet__background-info_1002u[class] {\n background-color: #001c3c;\n } .bottom-sheet__background-attention-muted_1002u[class] {\n background-color: #36291f;\n } .bottom-sheet__background-positive-muted_1002u[class] {\n background-color: #232d25;\n } .bottom-sheet__background-negative-muted_1002u[class] {\n background-color: #392523;\n } .bottom-sheet__background-primary_1002u[class] {\n background-color: #121213;\n } .bottom-sheet__background-primary-inverted_1002u[class] {\n background-color: #fff;\n } .bottom-sheet__background-secondary_1002u[class] {\n background-color: #1c1c1e;\n } .bottom-sheet__background-secondary-inverted_1002u[class] {\n background-color: #f2f3f5;\n } .bottom-sheet__background-tertiary_1002u[class] {\n background-color: #27272a;\n } .bottom-sheet__background-tertiary-inverted_1002u[class] {\n background-color: #e7e8ea;\n } .bottom-sheet__background-quaternary_1002u[class] {\n background-color: #36363a;\n } .bottom-sheet__background-quaternary-inverted_1002u[class] {\n background-color: #dcdee2;\n } .bottom-sheet__background-specialbg-component_1002u {\n background-color: rgba(255, 255, 255, 0.1);\n } .bottom-sheet__background-specialbg-component-inverted_1002u {\n background-color: rgba(11, 31, 53, 0.07);\n } .bottom-sheet__background-specialbg-primary-grouped_1002u {\n background-color: #1c1c1e;\n } .bottom-sheet__background-specialbg-secondary-grouped_1002u {\n background-color: #27272a;\n } .bottom-sheet__background-specialbg-tertiary-grouped_1002u {\n background-color: #36363a;\n } .bottom-sheet__background-specialbg-secondary-transparent_1002u {\n background-color: rgba(214, 214, 229, 0.07);\n } .bottom-sheet__background-specialbg-secondary-transparent-inverted_1002u {\n background-color: rgba(38, 55, 88, 0.06);\n } .bottom-sheet__background-specialbg-tertiary-transparent_1002u {\n background-color: rgba(222, 222, 240, 0.12);\n } .bottom-sheet__background-specialbg-tertiary-transparent-inverted_1002u {\n background-color: rgba(30, 43, 68, 0.08);\n }\n.bottom-sheet__component_1e8nz {\n background-color: #fff;\n} .bottom-sheet__content_1e8nz {\n color: rgba(3, 3, 6, 0.88);\n} .bottom-sheet__defaultMarker_1e8nz {\n background-color: rgba(15, 25, 55, 0.1);\n} .bottom-sheet__hasContent_1e8nz {\n color: rgba(3, 3, 6, 0.88);\n}\n.bottom-sheet__highlighted_1r3f0 {\n background-color: #1c1c1e;\n border-top: 1px solid #29292c;\n} .bottom-sheet__hasContent_1r3f0 {\n color: rgba(255, 255, 255, 0.94);\n}\n\n.bottom-sheet__highlighted_qtv0i {\n background-color: #fff;\n border-top: 1px solid #e7e8eb;\n} .bottom-sheet__hasContent_qtv0i {\n color: rgba(3, 3, 6, 0.88);\n}\n.bottom-sheet__title_tamb7 {\n color: rgba(255, 255, 255, 0.94);\n} .bottom-sheet__subtitle_tamb7 {\n color: rgba(255, 255, 255, 0.94);\n} .bottom-sheet__highlighted_tamb7 {\n border-bottom: 1px solid #29292c;\n}\n\n.bottom-sheet__title_14o7d {\n color: rgba(3, 3, 6, 0.88);\n} .bottom-sheet__subtitle_14o7d {\n color: rgba(3, 3, 6, 0.88);\n} .bottom-sheet__highlighted_14o7d {\n border-bottom: 1px solid #e7e8eb;\n}\n\n\n\n\n\n\n\n.modal__sticky_yxe09 {\n background: #1c1c1e;\n} .modal__highlighted_yxe09 {\n background: #1c1c1e;\n box-shadow: 0 -1px 0 0 #29292c;\n}\n\n\n\n.modal__highlighted_1mnza {\n background: #1c1c1e;\n box-shadow: 0 1px 0 0 #29292c;\n} .modal__sticky_1mnza.modal__hasContent_1mnza {\n background: #1c1c1e;\n }\n\n\n\n\n\n\n\n\n\n.side-panel__sticky_1ud2b {\n background: #1c1c1e;\n} .side-panel__highlighted_1ud2b {\n background: #1c1c1e;\n box-shadow: 0 -1px 0 0 #29292c;\n}\n\n\n\n.side-panel__highlighted_raorr {\n background: #1c1c1e;\n box-shadow: 0 1px 0 0 #29292c;\n} .side-panel__sticky_raorr.side-panel__hasContent_raorr {\n background: #1c1c1e;\n }\n.toast__toastPlate_tvn4h {\n box-shadow: 0 20px 24px rgba(0, 0, 0, 0.08), 0 12px 16px rgba(0, 0, 0, 0.04),\n 0 4px 8px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.04);\n} .toast__popoverInner_tvn4h {\n box-shadow: 0 20px 24px rgba(0, 0, 0, 0.08), 0 12px 16px rgba(0, 0, 0, 0.04),\n 0 4px 8px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.04);\n background-color: transparent;\n}\n\n\n\n\n\n.universal-modal__sticky_1ddjq {\n background: #1c1c1e;\n} .universal-modal__highlighted_1ddjq {\n background: #1c1c1e;\n box-shadow: 0 -1px 0 0 #29292c;\n}\n\n\n\n\n.universal-modal__highlighted_13j2o {\n background: #1c1c1e;\n box-shadow: 0 1px 0 0 #29292c;\n} .universal-modal__sticky_13j2o.universal-modal__hasContent_13j2o {\n background: #1c1c1e;\n }\n\n\n.universal-modal__component_1x1mv.universal-modal__overlayHidden_1x1mv {\n box-shadow: 0 20px 24px rgba(0, 0, 0, 0.08), 0 12px 16px rgba(0, 0, 0, 0.04),\n 0 4px 8px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.04);\n }\n\n.universal-modal__component_1luzi.universal-modal__overlayHidden_1luzi {\n box-shadow: 0 20px 24px rgba(0, 0, 0, 0.08), 0 12px 16px rgba(0, 0, 0, 0.04),\n 0 4px 8px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.04);\n }\n@keyframes universal-modal__step_1_1yr2t {\n} @keyframes universal-modal__step_2_1yr2t {\n 100% {\n background-color: transparent;\n }\n} .universal-modal__appear_1yr2t,\n.universal-modal__enter_1yr2t {\n background-color: transparent;\n} .universal-modal__appearActive_1yr2t,\n.universal-modal__enterActive_1yr2t,\n.universal-modal__appearDone_1yr2t,\n.universal-modal__enterDone_1yr2t {\n background-color: rgba(0, 0, 0, 0.7);\n} .universal-modal__exit_1yr2t {\n background-color: rgba(0, 0, 0, 0.7);\n} .universal-modal__exitDone_1yr2t {\n background-color: transparent;\n}\n\n\n\n.universal-modal__button_9zt1r.universal-modal__button_9zt1r {\n background-color: rgba(18, 18, 19, 0.4);\n}\n.universal-modal__button_uo1mq.universal-modal__button_uo1mq {\n background-color: rgba(255, 255, 255, 0.04);\n}\n\n\n\n.universal-modal__icon_mwxrj {\n fill: rgba(238, 238, 251, 0.55);\n}\n.universal-modal__icon_13ids {\n fill: rgba(238, 238, 251, 0.55);\n}.bank-card__component_1gzw2 {\n --form-control-bg-color: transparent;\n --form-control-focus-shadow: transparent;\n --form-control-hover-bg-color: transparent;\n --form-control-focus-bg-color: transparent;\n} .bank-card__label_1gzw2 {\n color: rgba(238, 238, 251, 0.55)\n} .bank-card__focused_1gzw2 .bank-card__label_1gzw2,\n.bank-card__filled_1gzw2 .bank-card__label_1gzw2 {\n color: rgba(255, 255, 255, 0.94)\n} .bank-card__input_1gzw2 {\n color: rgba(255, 255, 255, 0.94);\n caret-color: rgba(255, 255, 255, 0.94)\n} .bank-card__bankLogo_1gzw2 svg g {\n fill: rgba(255, 255, 255, 0.94);\n } .bank-card__brandLogo_1gzw2 svg {\n fill: rgba(255, 255, 255, 0.94);\n } .bank-card__usePhoto_1gzw2 {\n background-color: transparent\n} .bank-card__usePhoto_1gzw2 svg {\n fill: rgba(255, 255, 255, 0.94);\n }.amount-input__minorPartAndCurrency_1rbr8 {\n color: rgba(238, 238, 251, 0.55)\n} .amount-input__minorPartAndCurrency_1rbr8.amount-input__disabled_1rbr8,\n .amount-input__minorPartAndCurrency_1rbr8.amount-input__readOnly_1rbr8 {\n color: rgba(233, 233, 250, 0.37);\n }\n.amount-input__filled_5a4kr .amount-input__input_5a4kr,\n.amount-input__input_5a4kr:focus {\n -webkit-text-fill-color: transparent;\n}\n.amount-input__minorPartAndCurrency_y4xcf {\n color: rgba(4, 4, 19, 0.55)\n} .amount-input__minorPartAndCurrency_y4xcf.amount-input__disabled_y4xcf,\n .amount-input__minorPartAndCurrency_y4xcf.amount-input__readOnly_y4xcf {\n color: rgba(5, 8, 29, 0.38);\n }.tooltip__hint_1xf6x {\n background-color: #fff;\n box-shadow: 0 20px 24px rgba(0, 0, 0, 0.2), 0 12px 16px rgba(0, 0, 0, 0.16),\n 0 4px 8px rgba(0, 0, 0, 0.16), 0 0 1px rgba(0, 0, 0, 0.16);\n color: rgba(3, 3, 6, 0.88);\n} .tooltip__hint_1xf6x .tooltip__arrow_1xf6x:after {\n background-color: #fff;\n border-color: #fff;\n} .tooltip__tooltip_1xf6x {\n border: 1px solid #29292c;\n background-color: #1c1c1e\n} .tooltip__tooltip_1xf6x .tooltip__arrow_1xf6x:after {\n border-color: #29292c;\n background-color: #1c1c1e;\n }\n\n.tooltip__tooltip_43rvu {\n background-color: #fff;\n color: rgba(3, 3, 6, 0.88);\n box-shadow: 0 20px 24px rgba(0, 0, 0, 0.2), 0 12px 16px rgba(0, 0, 0, 0.16),\n 0 4px 8px rgba(0, 0, 0, 0.16), 0 0 1px rgba(0, 0, 0, 0.16);\n} .tooltip__tooltip_43rvu .tooltip__arrow_43rvu:after {\n background-color: #fff;\n} .tooltip__hint_43rvu {\n background-color: #1c1c1e;\n box-shadow: 0 20px 24px rgba(0, 0, 0, 0.08), 0 12px 16px rgba(0, 0, 0, 0.04),\n 0 4px 8px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.04);\n color: rgba(255, 255, 255, 0.94);\n} .tooltip__hint_43rvu .tooltip__arrow_43rvu:after {\n background-color: #1c1c1e;\n}\n\n@media (min-width: 600px) {\n}.calendar__container_1jyfq.calendar__customScrollbar_1jyfq::-webkit-scrollbar-track {\n background-color: transparent;\n } .calendar__container_1jyfq.calendar__customScrollbar_1jyfq::-webkit-scrollbar-track-piece {\n background-color: transparent;\n } .calendar__container_1jyfq.calendar__customScrollbar_1jyfq::-webkit-scrollbar-thumb {\n background-color: rgba(228, 228, 251, 0.28);\n border-color: transparent;\n } .calendar__container_1jyfq.calendar__customScrollbar_1jyfq::-webkit-scrollbar-thumb:active {\n background-color: rgba(238, 238, 251, 0.55);\n }\n.calendar__appear_yv6yl,\n.calendar__enter_yv6yl {\n background-color: transparent;\n} .calendar__appearActive_yv6yl,\n.calendar__enterActive_yv6yl,\n.calendar__appearDone_yv6yl,\n.calendar__enterDone_yv6yl {\n background-color: rgba(222, 222, 238, 0.13);\n} .calendar__exit_yv6yl {\n background-color: rgba(222, 222, 238, 0.13);\n} .calendar__exitActive_yv6yl,\n.calendar__exitDone_yv6yl {\n background-color: transparent;\n}\n.calendar__calendar_xowpt th {\n border-bottom: 1px solid #29292c;\n} .calendar__dayNames_xowpt {\n background: #1c1c1e\n} .calendar__month_xowpt {\n color: rgba(255, 255, 255, 0.94)\n} .calendar__month_xowpt.calendar__clickableMonth_xowpt {\n background-color: rgba(214, 214, 229, 0.07)\n } .calendar__month_xowpt.calendar__clickableMonth_xowpt.calendar__active_xowpt {\n background-color: #f2f3f5\n } .calendar__month_xowpt.calendar__clickableMonth_xowpt.calendar__active_xowpt .calendar__monthTitle_xowpt {\n color: rgba(3, 3, 6, 0.88);\n } .calendar__month_xowpt.calendar__clickableMonth_xowpt.calendar__disabled_xowpt .calendar__monthTitle_xowpt {\n color: rgba(233, 233, 250, 0.37);\n } .calendar__dayName_xowpt {\n color: rgba(238, 238, 251, 0.55)\n}\n\n.calendar__dayName_1ip91 {\n color: rgba(238, 238, 251, 0.55)\n} .calendar__day_1ip91 {\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n color: rgba(255, 255, 255, 0.94)\n} .calendar__day_1ip91.calendar__highlighted_1ip91,\n .calendar__day_1ip91.calendar__range_1ip91.calendar__highlighted_1ip91:not(.calendar__disabled_1ip91) {\n color: rgba(255, 255, 255, 0.94);\n background: rgba(214, 214, 229, 0.07);\n } .calendar__day_1ip91.calendar__holiday_1ip91 {\n color: #ff4837;\n } .calendar__day_1ip91.calendar__disabled_1ip91 {\n color: rgba(233, 233, 250, 0.37);\n background: transparent;\n } .calendar__day_1ip91.calendar__today_1ip91 {\n color: #4a9dfc;\n } .calendar__day_1ip91.calendar__rangeComplete_1ip91 {\n background: #293044;\n } .calendar__day_1ip91.calendar__selected_1ip91,\n .calendar__day_1ip91.calendar__disabled_1ip91.calendar__selected_1ip91 {\n color: rgba(3, 3, 6, 0.88);\n background: #f2f3f5;\n } @media (hover) {\n .calendar__day_1ip91.calendar__selected_1ip91:hover {\n background: #dcdde1;\n }\n } .calendar__dayWrapper_1ip91 {\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0)\n} .calendar__range_1ip91 .calendar__day_1ip91:not(.calendar__selected_1ip91):not(.calendar__disabled_1ip91):not(.calendar__today_1ip91):not(.calendar__holiday_1ip91) {\n color: rgba(255, 255, 255, 0.94);\n } .calendar__range_1ip91:before {\n background: rgba(225, 225, 248, 0.09);\n } .calendar__rangeComplete_1ip91:before {\n background: #293044;\n } .calendar__transitLeft_1ip91:after {\n background: linear-gradient(\n 270deg,\n rgba(225, 225, 248, 0.09) 0%,\n rgba(255, 255, 255, 0) 100%\n );\n } .calendar__transitRight_1ip91:after {\n background: linear-gradient(\n 270deg,\n rgba(255, 255, 255, 0) 0%,\n rgba(225, 225, 248, 0.09) 100%\n );\n } .calendar__rangeComplete_1ip91.calendar__transitLeft_1ip91:after {\n background: linear-gradient(\n 270deg,\n #293044 0%,\n rgba(255, 255, 255, 0) 100%\n );\n } .calendar__rangeComplete_1ip91.calendar__transitRight_1ip91:after {\n background: linear-gradient(\n 270deg,\n rgba(255, 255, 255, 0) 0%,\n #293044 100%\n );\n } .calendar__dot_1ip91 {\n background: rgba(255, 255, 255, 0.94);\n} .calendar__selected_1ip91 .calendar__dot_1ip91 {\n background: rgba(3, 3, 6, 0.88);\n} .calendar__bottomAddon_1ip91.calendar__selected_1ip91,\n .calendar__bottomAddon_1ip91.calendar__selected_1ip91 > * {\n color: rgba(3, 3, 6, 0.88);\n }\n.calendar__withShadow_ibjhx {\n box-shadow: 0 1px 0 0 #29292c;\n}\n\n\n@media (max-width: 374px) {\n }\n.calendar__empty_10uz4 {\n color: rgba(238, 238, 251, 0.55);\n}\n.cc-calendar .calendar__button_nd934.calendar__button_nd934 {\n background-color: transparent\n } .cc-calendar .calendar__button_nd934.calendar__button_nd934:not(:disabled):hover {\n background-color: rgba(214, 214, 229, 0.07);\n color: rgba(255, 255, 255, 0.94);\n } .cc-calendar .calendar__button_nd934.calendar__button_nd934.calendar__filled_nd934 {\n background-color: rgba(222, 222, 238, 0.13)\n } .cc-calendar .calendar__button_nd934.calendar__button_nd934.calendar__filled_nd934:not(:disabled):hover {\n background-color: rgba(234, 234, 248, 0.15);\n } .cc-calendar .calendar__button_nd934.calendar__button_nd934.calendar__current_nd934 {\n color: #4a9dfc;\n } .cc-calendar .calendar__button_nd934.calendar__button_nd934.calendar__selected_nd934,\n .cc-calendar .calendar__button_nd934.calendar__button_nd934.calendar__selected_nd934:disabled {\n background-color: #f2f3f5;\n color: rgba(3, 3, 6, 0.88)\n } .cc-calendar .calendar__button_nd934.calendar__button_nd934.calendar__selected_nd934:not(:disabled):hover, .cc-calendar .calendar__button_nd934.calendar__button_nd934.calendar__selected_nd934:disabled:not(:disabled):hover {\n background-color: #f2f3f5;\n color: rgba(3, 3, 6, 0.88);\n }\n@media (max-width: 374px) {\n }.select__arrow_f5abt {\n color: rgba(238, 238, 251, 0.55)\n} .select__arrow_f5abt.select__disabled_f5abt {\n color: rgba(228, 228, 251, 0.28);\n }\n\n.select__option_1ipra {\n background: #1c1c1e;\n color: rgba(255, 255, 255, 0.94)\n} .select__option_1ipra:not(.select__disabled_1ipra):active {\n background: rgba(225, 225, 248, 0.09);\n color: rgba(255, 255, 255, 0.94);\n } .select__selected_1ipra {\n background: #1c1c1e;\n color: rgba(255, 255, 255, 0.94);\n} .select__highlighted_1ipra {\n background: rgba(214, 214, 229, 0.07);\n color: rgba(255, 255, 255, 0.94);\n} .select__disabled_1ipra {\n background: #1c1c1e;\n color: rgba(238, 238, 251, 0.55);\n}\n.select__popoverInner_82re6 {\n background: transparent;\n} .select__optionsListWrapper_82re6 {\n box-shadow: 0 20px 24px rgba(0, 0, 0, 0.08), 0 12px 16px rgba(0, 0, 0, 0.04),\n 0 4px 8px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.04);\n background: #1c1c1e;\n} .select__optionsListBorder_82re6 {\n box-shadow: inset 0 0 0 1px #29292c;\n}\n\n.select__single_g11sa {\n background: rgba(255, 255, 255, 0.94)\n} .select__colorIcon_g11sa {\n color: #17d055;\n}\n\n.select__clearIcon_171i6 {\n color: rgba(228, 228, 251, 0.28)\n} .select__clearIcon_171i6:hover {\n color: rgba(233, 233, 250, 0.37);\n } .select__clearIcon_171i6:active {\n color: rgba(238, 238, 254, 0.46);\n }\n.select__placeholder_1eq0j {\n color: rgba(238, 238, 251, 0.55)\n} .select__placeholder_1eq0j.select__focused_1eq0j {\n color: rgba(233, 233, 250, 0.37);\n } .select__focusVisible_1eq0j {\n outline: 2px solid #3193fc;\n} @keyframes select__show-placeholder_1eq0j {\n}\n.select__footer_1hnvc {\n background-color: #1c1c1e\n} .select__highlighted_1hnvc {\n border-top: 1px solid #29292c;\n background-color: #1c1c1e;\n}\n.select__optgroup_12g29 {\n background: #1c1c1e\n} .select__label_12g29 {\n color: rgba(238, 238, 251, 0.55);\n}\n.select__optionsListHeader_ok75i {\n border-bottom: 1px solid transparent\n} .select__optionsListHeader_ok75i.select__headerHighlighted_ok75i {\n border-bottom-color: #29292c;\n } .select__optionsListFooter_ok75i {\n border-top: 1px solid transparent\n} .select__optionsListFooter_ok75i.select__withBorder_ok75i {\n border-top-color: #29292c;\n } .select__emptyPlaceholder_ok75i {\n color: rgba(238, 238, 251, 0.55);\n}\n\n.select__virtualOptionsListHeader_rqsiu {\n border-bottom: 1px solid #29292c;\n} .select__virtualOptionsListFooter_rqsiu {\n border-top: 1px solid transparent\n} .select__virtualOptionsListFooter_rqsiu.select__withBorder_rqsiu {\n border-top: 1px solid #29292c;\n } .select__virtualRow_rqsiu:before {\n background: #353539;\n } .select__emptyPlaceholder_rqsiu {\n color: rgba(238, 238, 251, 0.55);\n}\n\n.select__option_1hevb {\n background: #1c1c1e;\n color: rgba(255, 255, 255, 0.94)\n} .select__option_1hevb:not(.select__disabled_1hevb):active {\n background: rgba(225, 225, 248, 0.09);\n color: rgba(255, 255, 255, 0.94);\n } .select__option_1hevb:before {\n background: #353539;\n } .select__selected_1hevb {\n background: #1c1c1e;\n color: rgba(255, 255, 255, 0.94);\n} .select__highlighted_1hevb {\n background: rgba(214, 214, 229, 0.07);\n color: rgba(255, 255, 255, 0.94)\n} .select__disabled_1hevb {\n background: #1c1c1e;\n color: rgba(238, 238, 251, 0.55);\n} .select__highlighted_1hevb {\n background: rgba(214, 214, 229, 0.07);\n color: rgba(255, 255, 255, 0.94)\n}\n.select__option_kjknn {\n background: #1c1c1e;\n color: rgba(255, 255, 255, 0.94)\n} .select__option_kjknn:not(.select__disabled_kjknn):active {\n background: rgba(225, 225, 248, 0.09);\n color: rgba(255, 255, 255, 0.94);\n } .select__option_kjknn:before {\n background: #353539;\n } .select__selected_kjknn {\n background: #1c1c1e;\n color: rgba(255, 255, 255, 0.94);\n} .select__highlighted_kjknn {\n background: rgba(214, 214, 229, 0.07);\n color: rgba(255, 255, 255, 0.94)\n} .select__disabled_kjknn {\n background: #1c1c1e;\n color: rgba(238, 238, 251, 0.55);\n}\n\n.select__footer_15wof {\n background-color: #121213\n}.gallery__container_1thot {\n background-color: #262629\n} .gallery__modal_1thot {\n background: transparent;\n} .gallery__bottomButton_1thot {\n background-color: rgba(228, 228, 251, 0.28);\n}\n.gallery__component_dtzjz {\n background-color: rgba(228, 228, 251, 0.28);\n} .gallery__component_dtzjz:hover {\n background-color: rgba(233, 233, 250, 0.37);\n } .gallery__component_dtzjz:active {\n background-color: rgba(238, 238, 254, 0.46);\n }\n.gallery__buttons_167ax path {\n color: rgba(255, 255, 255, 0.94);\n } .gallery__iconButton_167ax path {\n color: #f2f3f5;\n } .gallery__iconButton_167ax:hover path {\n color: #e7e8eb;\n } .gallery__iconButton_167ax:active path {\n color: #dcdde1;\n }\n\n\n.gallery__headerMobile_m7be4.gallery__video_m7be4 {\n background-color: #262629;\n }\n.gallery__loading_jt23k {\n background-color: #1c1c1e\n} .gallery__loading_jt23k .gallery__active_jt23k {\n background-color: #29292c;\n } .gallery__brokenImageWrapper_jt23k {\n background-color: #29292c\n} .gallery__focused_jt23k {\n outline: 2px solid #3193fc;\n}\n.gallery__component_1qar0 {\n background-color: #262629;\n} .gallery__slideLoading_1qar0 {\n background-color: rgba(214, 214, 229, 0.07);\n} .gallery__spinner_1qar0 {\n color: rgba(255, 255, 255, 0.94);\n} .gallery__arrow_1qar0 {\n color: rgba(255, 255, 255, 0.94)\n} .gallery__arrow_1qar0:hover {\n background-color: #2f2f32;\n } .gallery__arrow_1qar0:active {\n background-color: #353539;\n } .gallery__focused_1qar0 {\n outline: 2px solid #3193fc;\n} .gallery__placeholder_1qar0 {\n background-color: #29292c;\n} .gallery__fullScreenImage_1qar0 {\n background-color: #121213;\n}\n.gallery__infoWrapper_7u7qp {\n background-color: #262629\n}\n.gallery__component_s1ljr {\n background-color: #262629\n}\n\n.gallery__icon_1tud1 {\n color: #fff;\n} .gallery__iconShape_1tud1 {\n fill: rgba(4, 4, 21, 0.47);\n}.calendar-with-skeleton__skeleton_18njb {\n background-color: #1c1c1e;\n}.calendar-input__calendarContainer_q90qf {\n border: 1px solid #29292c\n} .calendar-input__calendarIcon_q90qf {\n color: rgba(238, 238, 251, 0.55)\n}.date-range-input__calendarContainer_rw1at {\n border: 1px solid #29292c\n}.date-time-input__calendarContainer_1rlz1 {\n border: 1px solid #29292c\n}.universal-date-input__calendarIcon_1u54x {\n color: rgba(238, 238, 251, 0.55)\n} .universal-date-input__calendarContainer_1u54x {\n border: 1px solid #29292c\n} .universal-date-input__blink_1u54x.universal-date-input__blink_1u54x.universal-date-input__blink_1u54x {\n background-color: #392523;\n}\n\n.input-autocomplete__placeholder_1mqb4 {\n color: rgba(238, 238, 251, 0.55);\n} .input-autocomplete__focusVisible_1mqb4 {\n outline: 2px solid #3193fc;\n}\n.select-with-tags__tag_vjncy:not(.select-with-tags__tagNoClose_vjncy):active:not(:disabled) {\n background-color: #f2f3f5;\n color: rgba(3, 3, 6, 0.88);\n } .select-with-tags__tag_vjncy:not(.select-with-tags__tagNoClose_vjncy):hover:not(:disabled):not(:active) {\n background-color: #f2f3f5;\n color: rgba(3, 3, 6, 0.88);\n } .select-with-tags__tagCross_vjncy > svg {\n fill: rgba(4, 4, 21, 0.47);\n } .select-with-tags__tagCross_vjncy:hover > svg {\n fill: rgba(4, 4, 19, 0.55);\n } .select-with-tags__tagCross_vjncy:active > svg {\n fill: rgba(1, 1, 12, 0.63);\n }\n.select-with-tags__input_5icx1 {\n background-color: transparent;\n color: rgba(255, 255, 255, 0.94)\n} .select-with-tags__input_5icx1:disabled,\n .select-with-tags__input_5icx1:disabled::placeholder {\n color: rgba(233, 233, 250, 0.37);\n } .select-with-tags__input_5icx1::placeholder {\n color: rgba(238, 238, 251, 0.55);\n } .select-with-tags__input_5icx1:focus::placeholder {\n color: rgba(233, 233, 250, 0.37);\n } .select-with-tags__focusVisible_5icx1 {\n outline: 2px solid #3193fc;\n} .select-with-tags__placeholder_5icx1 {\n color: rgba(238, 238, 251, 0.55);\n}\n.picker-button__linkOpen_11gdq:not(:hover) {\n background-color: rgba(214, 214, 229, 0.07);\n}\n.table__wrapper_14zd0 {\n background: #121213;\n box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16), 0 0 1px rgba(0, 0, 0, 0.16);\n}\n.table__component_zxtli {\n border-top: 1px solid #353539;\n}\n\n.table__component_m6og9 {\n color: rgba(255, 255, 255, 0.94);\n border-top: 1px solid #353539\n}\n\n.table__component_1nfq1 th:not(:last-child):not(:empty):after {\n background-color: #353539;\n }\n.table__component_1k9er {\n color: rgba(255, 255, 255, 0.94);\n border-bottom: 1px solid #353539;\n background: #121213\n} .table__sorted_1k9er {\n color: rgba(255, 255, 255, 0.94);\n} .table__stickyHeader_1k9er {\n box-shadow: inset 0 -1px 0 0 rgba(11, 31, 53, 0.16);\n}\n.table__component_5j9e5 {\n background: #121213\n} .table__clickable_5j9e5:hover {\n background-color: #1c1c1e;\n } .table__selected_5j9e5 {\n background-color: #f2f8ff\n} .table__selected_5j9e5:hover {\n background-color: #e8f2fe;\n }\n.table__icon_1n6ch {\n color: #898991\n} .table__icon_1n6ch:hover {\n color: rgba(255, 255, 255, 0.94);\n } .table__sorted_1n6ch {\n color: #3193fc\n} .table__sorted_1n6ch:hover {\n color: #3193fc;\n }\n.table__open_3k8hh,\n.table__open_3k8hh:hover {\n background-color: rgba(222, 222, 238, 0.13);\n}\n.calendar-range__component_16hcz:after {\n background-color: rgba(255, 255, 255, 0.94);\n }.intl-phone-input__emptyCountryIcon_tkyk0 {\n color: #898991;\n}\n.intl-phone-input__flagPlaceholder_1f7na {\n background-color: rgba(222, 222, 238, 0.13);\n}\n.intl-phone-input__dialCode_1jz4b {\n color: rgba(238, 238, 251, 0.55);\n}\n.intl-phone-input__emptyCountryIcon_19y90 {\n color: #898991;\n} .intl-phone-input__focusVisible_19y90 {\n outline: 2px solid #3193fc;\n}\n.international-phone-input__dialCode_1frgs {\n color: rgba(238, 238, 251, 0.55);\n} .international-phone-input__emptyCountryIcon_1frgs {\n color: rgba(238, 238, 251, 0.55);\n}\n.international-phone-input__flagPlaceholder_167vd {\n background-color: rgba(214, 214, 229, 0.07);\n}\n.international-phone-input__emptyCountryIcon_polk2 {\n color: rgba(238, 238, 251, 0.55);\n} .international-phone-input__focusVisible_polk2 {\n outline: 2px solid #3193fc;\n}.tabs__component_16m4w:before {\n background-color: rgba(228, 228, 251, 0.28);\n } .tabs__title_16m4w {\n color: rgba(238, 238, 251, 0.55)\n} .tabs__title_16m4w:not(:disabled):hover {\n color: rgba(255, 255, 255, 0.94);\n } .tabs__focused_16m4w {\n outline: 2px solid #3193fc;\n} .tabs__selected_16m4w {\n color: rgba(255, 255, 255, 0.94);\n} .tabs__disabled_16m4w {\n color: rgba(233, 233, 250, 0.37);\n} .tabs__line_16m4w {\n background-color: #f83a2a;\n} .tabs__option_16m4w {\n color: rgba(255, 255, 255, 0.94);\n}\n.tabs__component_16m4w:before {\n background-color: rgba(228, 228, 251, 0.28);\n }.tabs__title_16m4w {\n color: rgba(238, 238, 251, 0.55)\n}.tabs__title_16m4w:not(:disabled):hover {\n color: rgba(255, 255, 255, 0.94);\n }.tabs__focused_16m4w {\n outline: 2px solid #3193fc;\n}.tabs__selected_16m4w {\n color: rgba(255, 255, 255, 0.94);\n}.tabs__disabled_16m4w {\n color: rgba(233, 233, 250, 0.37);\n}.tabs__line_16m4w {\n background-color: #f83a2a;\n}.tabs__option_16m4w {\n color: rgba(255, 255, 255, 0.94);\n}\n.tabs__primary_zl6d6:after {\n background-color: rgba(228, 228, 251, 0.28);\n } .tabs__primary_zl6d6 {\n} .tabs__secondary_zl6d6:before {\n background-color: transparent;\n } .tabs__secondary_zl6d6.tabs__xs_zl6d6 {\n } .tabs__borderVisible_zl6d6:before {\n background-color: rgba(222, 222, 238, 0.13);\n}\n\n\n\n";
3
3
 
4
4
  export { mobileDarkBluetint as default };