@cloudbase/weda-ui-mp 0.2.20

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 (635) hide show
  1. package/README.md +1 -0
  2. package/actions/showMessage/index.js +3 -0
  3. package/actions/showModal/index.js +3 -0
  4. package/actions/showToast/index.js +3 -0
  5. package/app.js +0 -0
  6. package/components/button/index.js +89 -0
  7. package/components/button/index.json +4 -0
  8. package/components/button/index.wxml +22 -0
  9. package/components/button/index.wxss +13 -0
  10. package/components/calendar/arrowright--line.svg +3 -0
  11. package/components/calendar/index.js +439 -0
  12. package/components/calendar/index.json +5 -0
  13. package/components/calendar/index.wxml +35 -0
  14. package/components/calendar/index.wxss +203 -0
  15. package/components/carousel/index.js +91 -0
  16. package/components/carousel/index.json +7 -0
  17. package/components/carousel/index.wxml +6 -0
  18. package/components/chart/bar/index.js +331 -0
  19. package/components/chart/bar/index.json +6 -0
  20. package/components/chart/bar/index.wxml +1 -0
  21. package/components/chart/bar/index.wxss +9 -0
  22. package/components/chart/common/config/bar.js +50 -0
  23. package/components/chart/common/config/global.js +16 -0
  24. package/components/chart/common/config/line.js +48 -0
  25. package/components/chart/common/config/pie.js +36 -0
  26. package/components/chart/common/core/eChartBar.js +267 -0
  27. package/components/chart/common/core/eChartBase.js +450 -0
  28. package/components/chart/common/core/eChartLine.js +251 -0
  29. package/components/chart/common/core/eChartPie.js +169 -0
  30. package/components/chart/common/data-transform.js +284 -0
  31. package/components/chart/common/lib/echarts.min.js +18 -0
  32. package/components/chart/ec-canvas/ec-canvas.js +277 -0
  33. package/components/chart/ec-canvas/ec-canvas.json +4 -0
  34. package/components/chart/ec-canvas/ec-canvas.wxml +4 -0
  35. package/components/chart/ec-canvas/ec-canvas.wxss +4 -0
  36. package/components/chart/ec-canvas/wx-canvas.js +111 -0
  37. package/components/chart/line/index.js +326 -0
  38. package/components/chart/line/index.json +6 -0
  39. package/components/chart/line/index.wxml +1 -0
  40. package/components/chart/line/index.wxss +9 -0
  41. package/components/chart/pie/index.js +257 -0
  42. package/components/chart/pie/index.json +6 -0
  43. package/components/chart/pie/index.wxml +1 -0
  44. package/components/chart/pie/index.wxss +9 -0
  45. package/components/chart/statisticsCard/index.js +255 -0
  46. package/components/chart/statisticsCard/index.json +4 -0
  47. package/components/chart/statisticsCard/index.wxml +9 -0
  48. package/components/chart/statisticsCard/index.wxss +42 -0
  49. package/components/common/form-item-wrapper/index.js +20 -0
  50. package/components/common/form-item-wrapper/index.json +5 -0
  51. package/components/common/form-item-wrapper/index.wxml +3 -0
  52. package/components/container/index.js +32 -0
  53. package/components/container/index.json +4 -0
  54. package/components/container/index.wxml +3 -0
  55. package/components/customer-service/index.js +37 -0
  56. package/components/customer-service/index.json +5 -0
  57. package/components/customer-service/index.wxml +3 -0
  58. package/components/customer-service/index.wxss +11 -0
  59. package/components/dataView/index.js +125 -0
  60. package/components/dataView/index.json +7 -0
  61. package/components/dataView/index.wxml +28 -0
  62. package/components/form/checkbox/index.js +145 -0
  63. package/components/form/checkbox/index.json +7 -0
  64. package/components/form/checkbox/index.wxml +13 -0
  65. package/components/form/checkbox/index.wxss +1 -0
  66. package/components/form/form/index.js +189 -0
  67. package/components/form/form/index.json +4 -0
  68. package/components/form/form/index.wxml +5 -0
  69. package/components/form/form/index.wxss +3 -0
  70. package/components/form/form/wd-form.wxss +1113 -0
  71. package/components/form/formcell/index.js +57 -0
  72. package/components/form/formcell/index.json +4 -0
  73. package/components/form/formcell/index.wxml +11 -0
  74. package/components/form/formcell/index.wxss +31 -0
  75. package/components/form/input/index.js +116 -0
  76. package/components/form/input/index.json +7 -0
  77. package/components/form/input/index.wxml +25 -0
  78. package/components/form/input/index.wxss +22 -0
  79. package/components/form/location/components/mapChoose/index.js +516 -0
  80. package/components/form/location/components/mapChoose/index.json +4 -0
  81. package/components/form/location/components/mapChoose/index.wxml +54 -0
  82. package/components/form/location/components/mapChoose/index.wxss +301 -0
  83. package/components/form/location/index.js +520 -0
  84. package/components/form/location/index.json +10 -0
  85. package/components/form/location/index.wxml +29 -0
  86. package/components/form/location/index.wxss +151 -0
  87. package/components/form/location/location-btn.svg +4 -0
  88. package/components/form/location/location.svg +4 -0
  89. package/components/form/radio/index.js +124 -0
  90. package/components/form/radio/index.json +7 -0
  91. package/components/form/radio/index.wxml +13 -0
  92. package/components/form/radio/index.wxss +1 -0
  93. package/components/form/select/allTimePicker/dataUtils.js +377 -0
  94. package/components/form/select/allTimePicker/index.js +487 -0
  95. package/components/form/select/allTimePicker/index.json +7 -0
  96. package/components/form/select/allTimePicker/index.wxml +35 -0
  97. package/components/form/select/allTimePicker/index.wxss +118 -0
  98. package/components/form/select/dropdown-select/index.js +287 -0
  99. package/components/form/select/dropdown-select/index.json +4 -0
  100. package/components/form/select/dropdown-select/index.wxml +35 -0
  101. package/components/form/select/dropdown-select/index.wxss +293 -0
  102. package/components/form/select/formats-util.js +15 -0
  103. package/components/form/select/index.js +1032 -0
  104. package/components/form/select/index.json +10 -0
  105. package/components/form/select/index.wxml +57 -0
  106. package/components/form/select/index.wxss +61 -0
  107. package/components/form/select/region/index.js +120 -0
  108. package/components/form/selectMultiple/dropdown-select/index.js +231 -0
  109. package/components/form/selectMultiple/dropdown-select/index.json +4 -0
  110. package/components/form/selectMultiple/dropdown-select/index.wxml +37 -0
  111. package/components/form/selectMultiple/dropdown-select/index.wxss +305 -0
  112. package/components/form/selectMultiple/index.js +366 -0
  113. package/components/form/selectMultiple/index.json +9 -0
  114. package/components/form/selectMultiple/index.wxml +34 -0
  115. package/components/form/selectMultiple/index.wxss +127 -0
  116. package/components/form/switch/index.js +90 -0
  117. package/components/form/switch/index.json +7 -0
  118. package/components/form/switch/index.wxml +11 -0
  119. package/components/form/switch/index.wxss +1 -0
  120. package/components/form/textarea/index.js +90 -0
  121. package/components/form/textarea/index.json +7 -0
  122. package/components/form/textarea/index.wxml +8 -0
  123. package/components/form/textarea/index.wxss +10 -0
  124. package/components/form/tips/index.js +41 -0
  125. package/components/form/tips/index.json +4 -0
  126. package/components/form/tips/index.wxml +1 -0
  127. package/components/form/tips/index.wxss +5 -0
  128. package/components/form/uploader/compress.js +31 -0
  129. package/components/form/uploader/index.js +289 -0
  130. package/components/form/uploader/index.json +10 -0
  131. package/components/form/uploader/index.wxml +38 -0
  132. package/components/form/uploader/index.wxss +47 -0
  133. package/components/form/uploader/weui-uploader.js +305 -0
  134. package/components/form/uploader/weui-uploader.json +7 -0
  135. package/components/form/uploader/weui-uploader.wxml +49 -0
  136. package/components/form/uploader/weui-uploader.wxss +26 -0
  137. package/components/form/uploaderFile/index.js +489 -0
  138. package/components/form/uploaderFile/index.json +9 -0
  139. package/components/form/uploaderFile/index.wxml +52 -0
  140. package/components/form/uploaderFile/index.wxss +171 -0
  141. package/components/form-checkbox/index.js +78 -0
  142. package/components/form-checkbox/index.json +9 -0
  143. package/components/form-checkbox/index.wxml +6 -0
  144. package/components/form-date/index.js +72 -0
  145. package/components/form-date/index.json +9 -0
  146. package/components/form-date/index.wxml +25 -0
  147. package/components/form-email/index.js +99 -0
  148. package/components/form-email/index.json +9 -0
  149. package/components/form-email/index.wxml +28 -0
  150. package/components/form-field-behavior/form-field-behavior.js +472 -0
  151. package/components/form-field-behavior/item-behavior.js +455 -0
  152. package/components/form-field-behavior/validator.js +137 -0
  153. package/components/form-image-uploader/index.js +83 -0
  154. package/components/form-image-uploader/index.json +9 -0
  155. package/components/form-image-uploader/index.wxml +27 -0
  156. package/components/form-input/index.js +103 -0
  157. package/components/form-input/index.json +9 -0
  158. package/components/form-input/index.wxml +29 -0
  159. package/components/form-location/index.js +98 -0
  160. package/components/form-location/index.json +9 -0
  161. package/components/form-location/index.wxml +28 -0
  162. package/components/form-multi-region/index.js +62 -0
  163. package/components/form-multi-region/index.json +9 -0
  164. package/components/form-multi-region/index.wxml +6 -0
  165. package/components/form-phone/index.js +95 -0
  166. package/components/form-phone/index.json +9 -0
  167. package/components/form-phone/index.wxml +28 -0
  168. package/components/form-radio/index.js +70 -0
  169. package/components/form-radio/index.json +9 -0
  170. package/components/form-radio/index.wxml +6 -0
  171. package/components/form-region/index.js +59 -0
  172. package/components/form-region/index.json +9 -0
  173. package/components/form-region/index.wxml +6 -0
  174. package/components/form-select/index.js +114 -0
  175. package/components/form-select/index.json +9 -0
  176. package/components/form-select/index.wxml +31 -0
  177. package/components/form-select-multiple/index.js +97 -0
  178. package/components/form-select-multiple/index.json +9 -0
  179. package/components/form-select-multiple/index.wxml +29 -0
  180. package/components/form-switch/index.js +43 -0
  181. package/components/form-switch/index.json +9 -0
  182. package/components/form-switch/index.wxml +6 -0
  183. package/components/form-text-area/index.js +95 -0
  184. package/components/form-text-area/index.json +9 -0
  185. package/components/form-text-area/index.wxml +26 -0
  186. package/components/form-time/index.js +72 -0
  187. package/components/form-time/index.json +9 -0
  188. package/components/form-time/index.wxml +6 -0
  189. package/components/form-upload-file/index.js +73 -0
  190. package/components/form-upload-file/index.json +9 -0
  191. package/components/form-upload-file/index.wxml +26 -0
  192. package/components/form-url/index.js +104 -0
  193. package/components/form-url/index.json +9 -0
  194. package/components/form-url/index.wxml +28 -0
  195. package/components/formdetail/index.js +328 -0
  196. package/components/formdetail/index.json +7 -0
  197. package/components/formdetail/index.wxml +7 -0
  198. package/components/formdetail/index.wxss +277 -0
  199. package/components/formdetail/wd-form-detail.wxss +250 -0
  200. package/components/graphicCard/chevron-right.svg +3 -0
  201. package/components/graphicCard/index.js +205 -0
  202. package/components/graphicCard/index.json +7 -0
  203. package/components/graphicCard/index.wxml +27 -0
  204. package/components/graphicCard/index.wxss +165 -0
  205. package/components/grid/_util.wxss +67 -0
  206. package/components/grid/col/index.js +110 -0
  207. package/components/grid/col/index.json +4 -0
  208. package/components/grid/col/index.wxml +3 -0
  209. package/components/grid/index.js +94 -0
  210. package/components/grid/index.json +4 -0
  211. package/components/grid/index.wxml +3 -0
  212. package/components/grid/index.wxss +1206 -0
  213. package/components/grid/row/index.js +78 -0
  214. package/components/grid/row/index.json +4 -0
  215. package/components/grid/row/index.wxml +3 -0
  216. package/components/image/index.js +203 -0
  217. package/components/image/index.json +7 -0
  218. package/components/image/index.wxml +9 -0
  219. package/components/image/index.wxss +49 -0
  220. package/components/listView/arrow-right-line.svg +3 -0
  221. package/components/listView/emptyText.svg +7 -0
  222. package/components/listView/index.js +710 -0
  223. package/components/listView/index.json +7 -0
  224. package/components/listView/index.wxml +82 -0
  225. package/components/listView/index.wxss +290 -0
  226. package/components/listView/more-line.svg +3 -0
  227. package/components/lottery/index.js +303 -0
  228. package/components/lottery/index.json +4 -0
  229. package/components/lottery/index.wxml +41 -0
  230. package/components/lottery/index.wxss +340 -0
  231. package/components/modal/index.js +66 -0
  232. package/components/modal/index.json +9 -0
  233. package/components/modal/index.wxml +18 -0
  234. package/components/modal/index.wxss +56 -0
  235. package/components/navLayout/index.js +123 -0
  236. package/components/navLayout/index.json +8 -0
  237. package/components/navLayout/index.wxml +22 -0
  238. package/components/navLayout/index.wxss +135 -0
  239. package/components/navigationBar/index.js +205 -0
  240. package/components/navigationBar/index.json +5 -0
  241. package/components/navigationBar/index.wxml +83 -0
  242. package/components/navigationBar/index.wxss +205 -0
  243. package/components/qrcode/index.js +155 -0
  244. package/components/qrcode/index.json +5 -0
  245. package/components/qrcode/index.wxml +2 -0
  246. package/components/qrcode/index.wxss +10 -0
  247. package/components/richText/index.js +90 -0
  248. package/components/richText/index.json +7 -0
  249. package/components/richText/index.wxml +3 -0
  250. package/components/richText/index.wxss +70 -0
  251. package/components/richText/mp-html/index.js +2 -0
  252. package/components/richText/mp-html/index.json +6 -0
  253. package/components/richText/mp-html/index.wxml +1 -0
  254. package/components/richText/mp-html/index.wxss +10 -0
  255. package/components/richText/mp-html/node/node.js +178 -0
  256. package/components/richText/mp-html/node/node.json +7 -0
  257. package/components/richText/mp-html/node/node.wxml +60 -0
  258. package/components/richText/mp-html/node/node.wxss +156 -0
  259. package/components/richText/mp-html/parser.js +2 -0
  260. package/components/scrollView/index.js +144 -0
  261. package/components/scrollView/index.json +4 -0
  262. package/components/scrollView/index.wxml +38 -0
  263. package/components/slot/index.js +25 -0
  264. package/components/slot/index.json +4 -0
  265. package/components/slot/index.wxml +3 -0
  266. package/components/status-content/arrow-right.svg +1 -0
  267. package/components/status-content/close.svg +1 -0
  268. package/components/status-content/error.svg +6 -0
  269. package/components/status-content/index.js +51 -0
  270. package/components/status-content/index.json +4 -0
  271. package/components/status-content/index.wxml +28 -0
  272. package/components/status-content/index.wxss +145 -0
  273. package/components/swiper/index.js +65 -0
  274. package/components/swiper/index.json +4 -0
  275. package/components/swiper/index.wxml +3 -0
  276. package/components/tabs/index.js +67 -0
  277. package/components/tabs/index.json +4 -0
  278. package/components/tabs/index.wxml +10 -0
  279. package/components/tabs/index.wxss +61 -0
  280. package/components/text/index.js +40 -0
  281. package/components/text/index.json +4 -0
  282. package/components/text/index.wxml +7 -0
  283. package/components/text/index.wxss +27 -0
  284. package/components/tooltip/index.js +290 -0
  285. package/components/tooltip/index.json +4 -0
  286. package/components/tooltip/index.wxml +18 -0
  287. package/components/tooltip/index.wxss +72 -0
  288. package/components/tooltip/wd-tooltip.wxss +31 -0
  289. package/components/wd-ad/index.js +66 -0
  290. package/components/wd-ad/index.json +5 -0
  291. package/components/wd-ad/index.wxml +3 -0
  292. package/components/wd-ad/index.wxss +3 -0
  293. package/components/wd-audio/index.js +273 -0
  294. package/components/wd-audio/index.json +5 -0
  295. package/components/wd-audio/index.wxml +3 -0
  296. package/components/wd-button/index.js +284 -0
  297. package/components/wd-button/index.json +7 -0
  298. package/components/wd-button/index.wxml +32 -0
  299. package/components/wd-button/index.wxss +2 -0
  300. package/components/wd-button/wd-button.wxss +513 -0
  301. package/components/wd-calendar/arrowright--line.svg +3 -0
  302. package/components/wd-calendar/index.js +157 -0
  303. package/components/wd-calendar/index.json +5 -0
  304. package/components/wd-calendar/index.wxml +36 -0
  305. package/components/wd-calendar/index.wxss +203 -0
  306. package/components/wd-calendar/weeks.js +41 -0
  307. package/components/wd-canvas/index.js +250 -0
  308. package/components/wd-canvas/index.json +5 -0
  309. package/components/wd-canvas/index.wxml +2 -0
  310. package/components/wd-canvas/index.wxss +0 -0
  311. package/components/wd-card/index.js +76 -0
  312. package/components/wd-card/index.json +5 -0
  313. package/components/wd-card/index.wxml +11 -0
  314. package/components/wd-card/index.wxss +6 -0
  315. package/components/wd-card/wd-card.wxss +120 -0
  316. package/components/wd-cascader/index.js +201 -0
  317. package/components/wd-cascader/index.json +12 -0
  318. package/components/wd-cascader/index.wxml +59 -0
  319. package/components/wd-cascader/index.wxss +2 -0
  320. package/components/wd-cascader/utils.js +73 -0
  321. package/components/wd-cascader/wd-cascader.wxss +284 -0
  322. package/components/wd-checkbox-list/index.js +170 -0
  323. package/components/wd-checkbox-list/index.json +7 -0
  324. package/components/wd-checkbox-list/index.wxml +37 -0
  325. package/components/wd-checkbox-list/index.wxss +2 -0
  326. package/components/wd-checkbox-list/wd-checkbox-list.wxss +259 -0
  327. package/components/wd-date/calendar/index.js +111 -0
  328. package/components/wd-date/calendar/index.json +7 -0
  329. package/components/wd-date/calendar/index.wxml +38 -0
  330. package/components/wd-date/date-picker/index.js +101 -0
  331. package/components/wd-date/date-picker/index.json +9 -0
  332. package/components/wd-date/date-picker/index.wxml +41 -0
  333. package/components/wd-date/date-picker/index.wxss +7 -0
  334. package/components/wd-date/index.js +129 -0
  335. package/components/wd-date/index.json +10 -0
  336. package/components/wd-date/index.wxml +36 -0
  337. package/components/wd-date/index.wxss +9 -0
  338. package/components/wd-date/modal/index.js +31 -0
  339. package/components/wd-date/modal/index.json +5 -0
  340. package/components/wd-date/modal/index.wxml +14 -0
  341. package/components/wd-date/modal/index.wxss +3 -0
  342. package/components/wd-date/time-picker/index.js +202 -0
  343. package/components/wd-date/time-picker/index.json +5 -0
  344. package/components/wd-date/time-picker/index.wxml +13 -0
  345. package/components/wd-date/time-picker/index.wxss +9 -0
  346. package/components/wd-date/wd-date.wxss +5 -0
  347. package/components/wd-date/year-month-picker/index.js +128 -0
  348. package/components/wd-date/year-month-picker/index.json +5 -0
  349. package/components/wd-date/year-month-picker/index.wxml +8 -0
  350. package/components/wd-date/year-month-picker/index.wxss +9 -0
  351. package/components/wd-date-range/index.js +172 -0
  352. package/components/wd-date-range/index.json +10 -0
  353. package/components/wd-date-range/index.wxml +41 -0
  354. package/components/wd-date-range/index.wxss +9 -0
  355. package/components/wd-date-range/wd-date-range.wxss +5 -0
  356. package/components/wd-divider/index.js +46 -0
  357. package/components/wd-divider/index.json +5 -0
  358. package/components/wd-divider/index.wxml +1 -0
  359. package/components/wd-divider/index.wxss +2 -0
  360. package/components/wd-divider/wd-divider.wxss +32 -0
  361. package/components/wd-form/form-utils.js +59 -0
  362. package/components/wd-form/index.js +769 -0
  363. package/components/wd-form/index.json +5 -0
  364. package/components/wd-form/index.wxml +15 -0
  365. package/components/wd-form/index.wxss +38 -0
  366. package/components/wd-form/remote-value.js +76 -0
  367. package/components/wd-form/wd-form.wxss +1113 -0
  368. package/components/wd-form-arr/index.js +348 -0
  369. package/components/wd-form-arr/index.json +7 -0
  370. package/components/wd-form-arr/index.wxml +5 -0
  371. package/components/wd-form-arr/index.wxss +2 -0
  372. package/components/wd-form-arr/wd-form-obj.wxss +104 -0
  373. package/components/wd-form-item/index.js +106 -0
  374. package/components/wd-form-item/index.json +7 -0
  375. package/components/wd-form-item/index.wxml +47 -0
  376. package/components/wd-form-item/index.wxss +2 -0
  377. package/components/wd-form-item/wd-form-item.wxss +1113 -0
  378. package/components/wd-form-item-obj/index.js +113 -0
  379. package/components/wd-form-item-obj/index.json +8 -0
  380. package/components/wd-form-item-obj/index.wxml +51 -0
  381. package/components/wd-form-item-obj/index.wxss +2 -0
  382. package/components/wd-form-item-obj/wd-form-item.wxss +1113 -0
  383. package/components/wd-form-item-read-only/index.js +59 -0
  384. package/components/wd-form-item-read-only/index.json +5 -0
  385. package/components/wd-form-item-read-only/index.wxml +10 -0
  386. package/components/wd-form-obj/index.js +305 -0
  387. package/components/wd-form-obj/index.json +7 -0
  388. package/components/wd-form-obj/index.wxml +5 -0
  389. package/components/wd-form-obj/index.wxss +2 -0
  390. package/components/wd-form-obj/wd-form-obj.wxss +104 -0
  391. package/components/wd-icon/index.js +148 -0
  392. package/components/wd-icon/index.json +7 -0
  393. package/components/wd-icon/index.wxml +4 -0
  394. package/components/wd-icon/index.wxss +4 -0
  395. package/components/wd-icon/wd-icon.wxss +154 -0
  396. package/components/wd-image/index.js +244 -0
  397. package/components/wd-image/index.json +7 -0
  398. package/components/wd-image/index.wxml +11 -0
  399. package/components/wd-image/index.wxss +11 -0
  400. package/components/wd-image/wd-image.wxss +86 -0
  401. package/components/wd-input/index.js +62 -0
  402. package/components/wd-input/index.json +7 -0
  403. package/components/wd-input/index.wxml +58 -0
  404. package/components/wd-input/inner-input/index.js +210 -0
  405. package/components/wd-input/inner-input/index.json +9 -0
  406. package/components/wd-input/inner-input/index.wxml +79 -0
  407. package/components/wd-input/inner-input/index.wxss +2 -0
  408. package/components/wd-input/inner-input/wd-input.wxss +1599 -0
  409. package/components/wd-input-email/index.js +63 -0
  410. package/components/wd-input-email/index.json +7 -0
  411. package/components/wd-input-email/index.wxml +56 -0
  412. package/components/wd-input-group/index.js +65 -0
  413. package/components/wd-input-group/index.json +5 -0
  414. package/components/wd-input-group/index.wxml +16 -0
  415. package/components/wd-input-group/index.wxss +2 -0
  416. package/components/wd-input-group/wd-input-group.wxss +105 -0
  417. package/components/wd-input-number/index.js +595 -0
  418. package/components/wd-input-number/index.json +10 -0
  419. package/components/wd-input-number/index.wxml +66 -0
  420. package/components/wd-input-number/index.wxss +8 -0
  421. package/components/wd-input-number/number.js +309 -0
  422. package/components/wd-input-number/wd-input-number.wxss +249 -0
  423. package/components/wd-input-phone/index.js +83 -0
  424. package/components/wd-input-phone/index.json +7 -0
  425. package/components/wd-input-phone/index.wxml +56 -0
  426. package/components/wd-input-url/index.js +63 -0
  427. package/components/wd-input-url/index.json +7 -0
  428. package/components/wd-input-url/index.wxml +56 -0
  429. package/components/wd-input-wrap/index.js +112 -0
  430. package/components/wd-input-wrap/index.json +7 -0
  431. package/components/wd-input-wrap/index.wxml +32 -0
  432. package/components/wd-input-wrap/index.wxss +2 -0
  433. package/components/wd-input-wrap/wd-input-wrap.wxss +229 -0
  434. package/components/wd-layout/index.js +41 -0
  435. package/components/wd-layout/index.json +5 -0
  436. package/components/wd-layout/index.wxml +13 -0
  437. package/components/wd-layout/index.wxss +2 -0
  438. package/components/wd-layout/wd-layout.wxss +84 -0
  439. package/components/wd-location/index.js +57 -0
  440. package/components/wd-location/index.json +10 -0
  441. package/components/wd-location/index.wxml +49 -0
  442. package/components/wd-markdown/index.js +99 -0
  443. package/components/wd-markdown/index.json +7 -0
  444. package/components/wd-markdown/index.wxml +3 -0
  445. package/components/wd-markdown/index.wxss +128 -0
  446. package/components/wd-markdown/utils/highlight.min.js +1 -0
  447. package/components/wd-markdown/utils/hljs_css.min.js +1 -0
  448. package/components/wd-markdown/utils/hljs_javascript.min.js +1 -0
  449. package/components/wd-markdown/utils/markdown-it.min.js +3 -0
  450. package/components/wd-menu-base-layout/index.js +20 -0
  451. package/components/wd-menu-base-layout/index.json +5 -0
  452. package/components/wd-menu-base-layout/index.wxml +3 -0
  453. package/components/wd-menu-horizontal-layout/index.js +20 -0
  454. package/components/wd-menu-horizontal-layout/index.json +5 -0
  455. package/components/wd-menu-horizontal-layout/index.wxml +3 -0
  456. package/components/wd-menu-layout/index.js +73 -0
  457. package/components/wd-menu-layout/index.json +8 -0
  458. package/components/wd-menu-layout/index.wxml +69 -0
  459. package/components/wd-menu-layout/index.wxss +13 -0
  460. package/components/wd-menu-layout/utils/index.js +40 -0
  461. package/components/wd-menu-layout/wd-menu-layout.wxss +647 -0
  462. package/components/wd-menu-list/index.js +256 -0
  463. package/components/wd-menu-list/index.json +7 -0
  464. package/components/wd-menu-list/index.wxml +50 -0
  465. package/components/wd-menu-list/index.wxss +146 -0
  466. package/components/wd-menu-list/wd-menu-list.wxss +636 -0
  467. package/components/wd-menu-nav-layout/index.js +20 -0
  468. package/components/wd-menu-nav-layout/index.json +5 -0
  469. package/components/wd-menu-nav-layout/index.wxml +3 -0
  470. package/components/wd-menu-nav-tab-layout/index.js +20 -0
  471. package/components/wd-menu-nav-tab-layout/index.json +5 -0
  472. package/components/wd-menu-nav-tab-layout/index.wxml +3 -0
  473. package/components/wd-menu-plant-layout/index.js +20 -0
  474. package/components/wd-menu-plant-layout/index.json +5 -0
  475. package/components/wd-menu-plant-layout/index.wxml +3 -0
  476. package/components/wd-menu-tab-layout/index.js +20 -0
  477. package/components/wd-menu-tab-layout/index.json +5 -0
  478. package/components/wd-menu-tab-layout/index.wxml +3 -0
  479. package/components/wd-menu-vertical-layout/index.js +20 -0
  480. package/components/wd-menu-vertical-layout/index.json +5 -0
  481. package/components/wd-menu-vertical-layout/index.wxml +3 -0
  482. package/components/wd-modal/index.js +184 -0
  483. package/components/wd-modal/index.json +5 -0
  484. package/components/wd-modal/index.wxml +16 -0
  485. package/components/wd-modal/index.wxss +2 -0
  486. package/components/wd-modal/wd-modal.wxss +213 -0
  487. package/components/wd-official-account/index.js +28 -0
  488. package/components/wd-official-account/index.json +5 -0
  489. package/components/wd-official-account/index.wxml +1 -0
  490. package/components/wd-official-account/index.wxss +4 -0
  491. package/components/wd-progress/index.js +134 -0
  492. package/components/wd-progress/index.json +7 -0
  493. package/components/wd-progress/index.wxml +32 -0
  494. package/components/wd-progress/index.wxss +2 -0
  495. package/components/wd-progress/wd-progress.wxss +1148 -0
  496. package/components/wd-radio-list/index.js +157 -0
  497. package/components/wd-radio-list/index.json +7 -0
  498. package/components/wd-radio-list/index.wxml +37 -0
  499. package/components/wd-radio-list/index.wxss +2 -0
  500. package/components/wd-radio-list/wd-radio-list.wxss +187 -0
  501. package/components/wd-rating/index.js +359 -0
  502. package/components/wd-rating/index.json +9 -0
  503. package/components/wd-rating/index.wxml +38 -0
  504. package/components/wd-rating/index.wxss +2 -0
  505. package/components/wd-rating/wd-rating.wxss +1138 -0
  506. package/components/wd-region/index.js +38 -0
  507. package/components/wd-region/index.json +10 -0
  508. package/components/wd-region/index.wxml +28 -0
  509. package/components/wd-region/index.wxss +4 -0
  510. package/components/wd-select/index.js +78 -0
  511. package/components/wd-select/index.json +10 -0
  512. package/components/wd-select/index.wxml +52 -0
  513. package/components/wd-select/select.wxss +749 -0
  514. package/components/wd-select-multiple/index.js +74 -0
  515. package/components/wd-select-multiple/index.json +10 -0
  516. package/components/wd-select-multiple/index.wxml +52 -0
  517. package/components/wd-side-tab/index.js +121 -0
  518. package/components/wd-side-tab/index.json +7 -0
  519. package/components/wd-side-tab/index.wxml +7 -0
  520. package/components/wd-side-tab/index.wxss +1 -0
  521. package/components/wd-switch/index.js +67 -0
  522. package/components/wd-switch/index.json +7 -0
  523. package/components/wd-switch/index.wxml +28 -0
  524. package/components/wd-switch/index.wxss +2 -0
  525. package/components/wd-switch/wd-switch.wxss +1234 -0
  526. package/components/wd-tabbar/index.js +196 -0
  527. package/components/wd-tabbar/index.json +7 -0
  528. package/components/wd-tabbar/index.wxml +10 -0
  529. package/components/wd-tabbar/index.wxss +2 -0
  530. package/components/wd-tabbar/wd-tabbar.wxss +96 -0
  531. package/components/wd-tabs/index.js +62 -0
  532. package/components/wd-tabs/index.json +5 -0
  533. package/components/wd-tabs/index.wxml +34 -0
  534. package/components/wd-tabs/index.wxss +8 -0
  535. package/components/wd-tabs/wd-tabs.wxss +278 -0
  536. package/components/wd-tag/index.js +171 -0
  537. package/components/wd-tag/index.json +7 -0
  538. package/components/wd-tag/index.wxml +22 -0
  539. package/components/wd-tag/index.wxss +3 -0
  540. package/components/wd-tag/tag-behavior.js +57 -0
  541. package/components/wd-tag/tag-item/index.js +198 -0
  542. package/components/wd-tag/tag-item/index.json +7 -0
  543. package/components/wd-tag/tag-item/index.wxml +15 -0
  544. package/components/wd-tag/wd-tag.wxss +325 -0
  545. package/components/wd-tag-select/index.js +107 -0
  546. package/components/wd-tag-select/index.json +8 -0
  547. package/components/wd-tag-select/index.wxml +42 -0
  548. package/components/wd-tag-select/index.wxss +4 -0
  549. package/components/wd-tag-select/wd-tag-select.wxss +1275 -0
  550. package/components/wd-text/index.js +162 -0
  551. package/components/wd-text/index.json +5 -0
  552. package/components/wd-text/index.wxml +8 -0
  553. package/components/wd-text/index.wxss +2 -0
  554. package/components/wd-text/wd-text.wxss +261 -0
  555. package/components/wd-textarea/index.js +97 -0
  556. package/components/wd-textarea/index.json +7 -0
  557. package/components/wd-textarea/index.wxml +31 -0
  558. package/components/wd-textarea/index.wxss +7 -0
  559. package/components/wd-textarea/wd-textarea.wxss +98 -0
  560. package/components/wd-time/index.js +124 -0
  561. package/components/wd-time/index.json +11 -0
  562. package/components/wd-time/index.wxml +36 -0
  563. package/components/wd-time/index.wxss +9 -0
  564. package/components/wd-time/wd-time.wxss +5 -0
  565. package/components/wd-top-tab/index.js +121 -0
  566. package/components/wd-top-tab/index.json +7 -0
  567. package/components/wd-top-tab/index.wxml +6 -0
  568. package/components/wd-top-tab/index.wxss +5 -0
  569. package/components/wd-unified-link/index.js +115 -0
  570. package/components/wd-unified-link/index.json +5 -0
  571. package/components/wd-unified-link/index.wxml +3 -0
  572. package/components/wd-unified-link/index.wxss +2 -0
  573. package/components/wd-unified-link/wd-link.wxss +51 -0
  574. package/components/wd-upload-file/index.js +54 -0
  575. package/components/wd-upload-file/index.json +8 -0
  576. package/components/wd-upload-file/index.wxml +41 -0
  577. package/components/wd-upload-image/index.js +64 -0
  578. package/components/wd-upload-image/index.json +8 -0
  579. package/components/wd-upload-image/index.wxml +45 -0
  580. package/components/web-view/index.js +69 -0
  581. package/components/web-view/index.json +5 -0
  582. package/components/web-view/index.wxml +1 -0
  583. package/components/web-view/index.wxss +1 -0
  584. package/components/wedaVideo/index.js +183 -0
  585. package/components/wedaVideo/index.json +4 -0
  586. package/components/wedaVideo/index.wxml +29 -0
  587. package/components/wedaVideo/index.wxss +20 -0
  588. package/components/wxOpenApi/phone/index.js +122 -0
  589. package/components/wxOpenApi/phone/index.json +4 -0
  590. package/components/wxOpenApi/phone/index.wxml +4 -0
  591. package/components/wxOpenApi/phone/index.wxss +26 -0
  592. package/components/wxOpenApi/phoneCode/index.js +102 -0
  593. package/components/wxOpenApi/phoneCode/index.json +4 -0
  594. package/components/wxOpenApi/phoneCode/index.wxml +4 -0
  595. package/components/wxOpenApi/phoneCode/index.wxss +26 -0
  596. package/components/wxOpenApi/share/index.js +134 -0
  597. package/components/wxOpenApi/share/index.json +4 -0
  598. package/components/wxOpenApi/share/index.wxml +4 -0
  599. package/components/wxOpenApi/share/index.wxss +26 -0
  600. package/components/wxOpenApi/userInfo/index.js +97 -0
  601. package/components/wxOpenApi/userInfo/index.json +4 -0
  602. package/components/wxOpenApi/userInfo/index.wxml +4 -0
  603. package/components/wxOpenApi/userInfo/index.wxss +26 -0
  604. package/index.json +133 -0
  605. package/package.json +19 -0
  606. package/style/utils.wxss +167 -0
  607. package/style/wd-design.wxss +628 -0
  608. package/style/wd-font-icon.wxss +4656 -0
  609. package/style/weda-ui.wxss +475 -0
  610. package/style/wedatea2td.wxss +56 -0
  611. package/utils/classnames.js +39 -0
  612. package/utils/color.js +81 -0
  613. package/utils/common-behavior.js +1 -0
  614. package/utils/constant.js +132 -0
  615. package/utils/date.js +51 -0
  616. package/utils/dayjs.min.js +1 -0
  617. package/utils/debounce.js +134 -0
  618. package/utils/deepEqual.js +42 -0
  619. package/utils/destr.js +49 -0
  620. package/utils/dr_square_point.js +29 -0
  621. package/utils/enum.js +1268 -0
  622. package/utils/error.js +26 -0
  623. package/utils/getCustomInfo.js +34 -0
  624. package/utils/getFormLegacy.js +401 -0
  625. package/utils/getModelParams.js +149 -0
  626. package/utils/getWedaApi.js +1 -0
  627. package/utils/handleEvents.js +34 -0
  628. package/utils/lodash.js +65 -0
  629. package/utils/platform.js +162 -0
  630. package/utils/qqmap-wx-jssdk1.2/qqmap-wx-jssdk.js +1323 -0
  631. package/utils/qrcode/weapp.qrcode.min.js +911 -0
  632. package/utils/range.js +82 -0
  633. package/utils/tcb.js +177 -0
  634. package/utils/tool.js +74 -0
  635. package/utils/widget-api.js +28 -0
@@ -0,0 +1,4656 @@
1
+ @font-face {
2
+ font-family: WdTd;
3
+ src: url('https://comp-public-1303824488.cos.ap-shanghai.myqcloud.com/icon/0.0.7/t.eot'),
4
+ url('https://comp-public-1303824488.cos.ap-shanghai.myqcloud.com/icon/0.0.7/t_iefix.eot')
5
+ format('embedded-opentype'),
6
+ url('https://comp-public-1303824488.cos.ap-shanghai.myqcloud.com/icon/0.0.7/t.woff')
7
+ format('woff'),
8
+ url('https://comp-public-1303824488.cos.ap-shanghai.myqcloud.com/icon/0.0.7/t.ttf')
9
+ format('truetype'),
10
+ url('https://comp-public-1303824488.cos.ap-shanghai.myqcloud.com/icon/0.0.7/t.svg')
11
+ format('svg');
12
+ font-weight: 400;
13
+ font-style: normal;
14
+ }
15
+ .t-icon {
16
+ font-family: WdTd !important;
17
+ speak: none;
18
+ font-style: normal;
19
+ font-weight: 400;
20
+ font-variant: normal;
21
+ text-transform: none;
22
+ line-height: 1;
23
+ text-align: center;
24
+ -webkit-font-smoothing: antialiased;
25
+ -moz-osx-font-smoothing: grayscale;
26
+ }
27
+ .t-icon-activity:before {
28
+ content: '\E001';
29
+ }
30
+ .t-icon-add-and-subtract:before {
31
+ content: '\E002';
32
+ }
33
+ .t-icon-add-circle:before {
34
+ content: '\E003';
35
+ }
36
+ .t-icon-add-rectangle:before {
37
+ content: '\E004';
38
+ }
39
+ .t-icon-add:before {
40
+ content: '\E005';
41
+ }
42
+ .t-icon-address-book:before {
43
+ content: '\E006';
44
+ }
45
+ .t-icon-adjustment:before {
46
+ content: '\E007';
47
+ }
48
+ .t-icon-airplay-wave:before {
49
+ content: '\E008';
50
+ }
51
+ .t-icon-alarm-add:before {
52
+ content: '\E009';
53
+ }
54
+ .t-icon-alarm-off:before {
55
+ content: '\E00A';
56
+ }
57
+ .t-icon-alarm:before {
58
+ content: '\E00B';
59
+ }
60
+ .t-icon-align-top:before {
61
+ content: '\E00C';
62
+ }
63
+ .t-icon-align-vertical:before {
64
+ content: '\E00D';
65
+ }
66
+ .t-icon-alpha:before {
67
+ content: '\E00E';
68
+ }
69
+ .t-icon-analytics:before {
70
+ content: '\E00F';
71
+ }
72
+ .t-icon-anchor:before {
73
+ content: '\E010';
74
+ }
75
+ .t-icon-angry:before {
76
+ content: '\E011';
77
+ }
78
+ .t-icon-animation-1:before {
79
+ content: '\E012';
80
+ }
81
+ .t-icon-animation:before {
82
+ content: '\E013';
83
+ }
84
+ .t-icon-anticlockwise:before {
85
+ content: '\E014';
86
+ }
87
+ .t-icon-api:before {
88
+ content: '\E015';
89
+ }
90
+ .t-icon-app:before {
91
+ content: '\E016';
92
+ }
93
+ .t-icon-apple:before {
94
+ content: '\E017';
95
+ }
96
+ .t-icon-application:before {
97
+ content: '\E018';
98
+ }
99
+ .t-icon-architecture-hui-style:before {
100
+ content: '\E019';
101
+ }
102
+ .t-icon-archway-1:before {
103
+ content: '\E01A';
104
+ }
105
+ .t-icon-archway:before {
106
+ content: '\E01B';
107
+ }
108
+ .t-icon-arrow-down-circle:before {
109
+ content: '\E01C';
110
+ }
111
+ .t-icon-arrow-down-rectangle:before {
112
+ content: '\E01D';
113
+ }
114
+ .t-icon-arrow-down:before {
115
+ content: '\E01E';
116
+ }
117
+ .t-icon-arrow-left-circle:before {
118
+ content: '\E01F';
119
+ }
120
+ .t-icon-arrow-left-down-circle:before {
121
+ content: '\E020';
122
+ }
123
+ .t-icon-arrow-left-down:before {
124
+ content: '\E021';
125
+ }
126
+ .t-icon-arrow-left-right-1:before {
127
+ content: '\E022';
128
+ }
129
+ .t-icon-arrow-left-right-2:before {
130
+ content: '\E023';
131
+ }
132
+ .t-icon-arrow-left-right-3:before {
133
+ content: '\E024';
134
+ }
135
+ .t-icon-arrow-left-right-circle:before {
136
+ content: '\E025';
137
+ }
138
+ .t-icon-arrow-left-up-circle:before {
139
+ content: '\E026';
140
+ }
141
+ .t-icon-arrow-left-up:before {
142
+ content: '\E027';
143
+ }
144
+ .t-icon-arrow-left:before {
145
+ content: '\E028';
146
+ }
147
+ .t-icon-arrow-right-circle:before {
148
+ content: '\E029';
149
+ }
150
+ .t-icon-arrow-right-down-circle:before {
151
+ content: '\E02A';
152
+ }
153
+ .t-icon-arrow-right-down:before {
154
+ content: '\E02B';
155
+ }
156
+ .t-icon-arrow-right-up-circle:before {
157
+ content: '\E02C';
158
+ }
159
+ .t-icon-arrow-right-up:before {
160
+ content: '\E02D';
161
+ }
162
+ .t-icon-arrow-right:before {
163
+ content: '\E02E';
164
+ }
165
+ .t-icon-arrow-triangle-down-filled:before {
166
+ content: '\E02F';
167
+ }
168
+ .t-icon-arrow-triangle-down:before {
169
+ content: '\E030';
170
+ }
171
+ .t-icon-arrow-triangle-up-filled:before {
172
+ content: '\E031';
173
+ }
174
+ .t-icon-arrow-triangle-up:before {
175
+ content: '\E032';
176
+ }
177
+ .t-icon-arrow-up-circle:before {
178
+ content: '\E033';
179
+ }
180
+ .t-icon-arrow-up-down-1:before {
181
+ content: '\E034';
182
+ }
183
+ .t-icon-arrow-up-down-2:before {
184
+ content: '\E035';
185
+ }
186
+ .t-icon-arrow-up-down-3:before {
187
+ content: '\E036';
188
+ }
189
+ .t-icon-arrow-up-down-circle:before {
190
+ content: '\E037';
191
+ }
192
+ .t-icon-arrow-up:before {
193
+ content: '\E038';
194
+ }
195
+ .t-icon-artboard:before {
196
+ content: '\E039';
197
+ }
198
+ .t-icon-article:before {
199
+ content: '\E03A';
200
+ }
201
+ .t-icon-assignment-checked:before {
202
+ content: '\E03B';
203
+ }
204
+ .t-icon-assignment-code:before {
205
+ content: '\E03C';
206
+ }
207
+ .t-icon-assignment-error:before {
208
+ content: '\E03D';
209
+ }
210
+ .t-icon-assignment-user:before {
211
+ content: '\E03E';
212
+ }
213
+ .t-icon-assignment:before {
214
+ content: '\E03F';
215
+ }
216
+ .t-icon-attach:before {
217
+ content: '\E040';
218
+ }
219
+ .t-icon-attic-1:before {
220
+ content: '\E041';
221
+ }
222
+ .t-icon-attic:before {
223
+ content: '\E042';
224
+ }
225
+ .t-icon-audio:before {
226
+ content: '\E043';
227
+ }
228
+ .t-icon-awkward:before {
229
+ content: '\E044';
230
+ }
231
+ .t-icon-backtop-rectangle:before {
232
+ content: '\E045';
233
+ }
234
+ .t-icon-backtop:before {
235
+ content: '\E046';
236
+ }
237
+ .t-icon-backup:before {
238
+ content: '\E047';
239
+ }
240
+ .t-icon-backward:before {
241
+ content: '\E048';
242
+ }
243
+ .t-icon-bad-laugh:before {
244
+ content: '\E049';
245
+ }
246
+ .t-icon-bamboo-shoot:before {
247
+ content: '\E04A';
248
+ }
249
+ .t-icon-banana:before {
250
+ content: '\E04B';
251
+ }
252
+ .t-icon-barbecue:before {
253
+ content: '\E04C';
254
+ }
255
+ .t-icon-barcode-1:before {
256
+ content: '\E04D';
257
+ }
258
+ .t-icon-barcode:before {
259
+ content: '\E04E';
260
+ }
261
+ .t-icon-base-station:before {
262
+ content: '\E04F';
263
+ }
264
+ .t-icon-battery-add:before {
265
+ content: '\E050';
266
+ }
267
+ .t-icon-battery-charging:before {
268
+ content: '\E051';
269
+ }
270
+ .t-icon-battery-low:before {
271
+ content: '\E052';
272
+ }
273
+ .t-icon-battery:before {
274
+ content: '\E053';
275
+ }
276
+ .t-icon-bean:before {
277
+ content: '\E054';
278
+ }
279
+ .t-icon-beer:before {
280
+ content: '\E055';
281
+ }
282
+ .t-icon-beta:before {
283
+ content: '\E056';
284
+ }
285
+ .t-icon-bifurcate:before {
286
+ content: '\E057';
287
+ }
288
+ .t-icon-bill:before {
289
+ content: '\E058';
290
+ }
291
+ .t-icon-blockchain:before {
292
+ content: '\E059';
293
+ }
294
+ .t-icon-bluetooth:before {
295
+ content: '\E05A';
296
+ }
297
+ .t-icon-bone:before {
298
+ content: '\E05B';
299
+ }
300
+ .t-icon-book-open:before {
301
+ content: '\E05C';
302
+ }
303
+ .t-icon-book:before {
304
+ content: '\E05D';
305
+ }
306
+ .t-icon-bookmark-add:before {
307
+ content: '\E05E';
308
+ }
309
+ .t-icon-bookmark-checked:before {
310
+ content: '\E05F';
311
+ }
312
+ .t-icon-bookmark-double:before {
313
+ content: '\E060';
314
+ }
315
+ .t-icon-bookmark-minus:before {
316
+ content: '\E061';
317
+ }
318
+ .t-icon-bookmark:before {
319
+ content: '\E062';
320
+ }
321
+ .t-icon-braces:before {
322
+ content: '\E063';
323
+ }
324
+ .t-icon-brackets:before {
325
+ content: '\E064';
326
+ }
327
+ .t-icon-bread:before {
328
+ content: '\E065';
329
+ }
330
+ .t-icon-bridge-1:before {
331
+ content: '\E066';
332
+ }
333
+ .t-icon-bridge-2:before {
334
+ content: '\E067';
335
+ }
336
+ .t-icon-bridge-3:before {
337
+ content: '\E068';
338
+ }
339
+ .t-icon-bridge-4:before {
340
+ content: '\E069';
341
+ }
342
+ .t-icon-bridge-5:before {
343
+ content: '\E06A';
344
+ }
345
+ .t-icon-bridge-6:before {
346
+ content: '\E06B';
347
+ }
348
+ .t-icon-bridge:before {
349
+ content: '\E06C';
350
+ }
351
+ .t-icon-brightness-1:before {
352
+ content: '\E06D';
353
+ }
354
+ .t-icon-brightness:before {
355
+ content: '\E06E';
356
+ }
357
+ .t-icon-broccoli:before {
358
+ content: '\E06F';
359
+ }
360
+ .t-icon-browse-gallery:before {
361
+ content: '\E070';
362
+ }
363
+ .t-icon-browse-off:before {
364
+ content: '\E071';
365
+ }
366
+ .t-icon-browse:before {
367
+ content: '\E072';
368
+ }
369
+ .t-icon-brush:before {
370
+ content: '\E073';
371
+ }
372
+ .t-icon-bug-report:before {
373
+ content: '\E074';
374
+ }
375
+ .t-icon-bug:before {
376
+ content: '\E075';
377
+ }
378
+ .t-icon-building-1:before {
379
+ content: '\E076';
380
+ }
381
+ .t-icon-building-2:before {
382
+ content: '\E077';
383
+ }
384
+ .t-icon-building-3:before {
385
+ content: '\E078';
386
+ }
387
+ .t-icon-building-4:before {
388
+ content: '\E079';
389
+ }
390
+ .t-icon-building-5:before {
391
+ content: '\E07A';
392
+ }
393
+ .t-icon-building:before {
394
+ content: '\E07B';
395
+ }
396
+ .t-icon-bulletpoint:before {
397
+ content: '\E07C';
398
+ }
399
+ .t-icon-button:before {
400
+ content: '\E07D';
401
+ }
402
+ .t-icon-cabbage:before {
403
+ content: '\E07E';
404
+ }
405
+ .t-icon-cake:before {
406
+ content: '\E07F';
407
+ }
408
+ .t-icon-calculation-1:before {
409
+ content: '\E080';
410
+ }
411
+ .t-icon-calculation:before {
412
+ content: '\E081';
413
+ }
414
+ .t-icon-calculator-1:before {
415
+ content: '\E082';
416
+ }
417
+ .t-icon-calculator:before {
418
+ content: '\E083';
419
+ }
420
+ .t-icon-calendar-1:before {
421
+ content: '\E084';
422
+ }
423
+ .t-icon-calendar-2:before {
424
+ content: '\E085';
425
+ }
426
+ .t-icon-calendar-edit:before {
427
+ content: '\E086';
428
+ }
429
+ .t-icon-calendar-event:before {
430
+ content: '\E087';
431
+ }
432
+ .t-icon-calendar:before {
433
+ content: '\E088';
434
+ }
435
+ .t-icon-call-1:before {
436
+ content: '\E089';
437
+ }
438
+ .t-icon-call-cancel:before {
439
+ content: '\E08A';
440
+ }
441
+ .t-icon-call-forwarded:before {
442
+ content: '\E08B';
443
+ }
444
+ .t-icon-call-incoming:before {
445
+ content: '\E08C';
446
+ }
447
+ .t-icon-call-off:before {
448
+ content: '\E08D';
449
+ }
450
+ .t-icon-call:before {
451
+ content: '\E08E';
452
+ }
453
+ .t-icon-calm-1:before {
454
+ content: '\E08F';
455
+ }
456
+ .t-icon-calm:before {
457
+ content: '\E090';
458
+ }
459
+ .t-icon-camera-1:before {
460
+ content: '\E091';
461
+ }
462
+ .t-icon-camera-2:before {
463
+ content: '\E092';
464
+ }
465
+ .t-icon-camera-off:before {
466
+ content: '\E093';
467
+ }
468
+ .t-icon-camera:before {
469
+ content: '\E094';
470
+ }
471
+ .t-icon-candy:before {
472
+ content: '\E095';
473
+ }
474
+ .t-icon-card:before {
475
+ content: '\E096';
476
+ }
477
+ .t-icon-cardmembership:before {
478
+ content: '\E097';
479
+ }
480
+ .t-icon-caret-down-small:before {
481
+ content: '\E098';
482
+ }
483
+ .t-icon-caret-down:before {
484
+ content: '\E099';
485
+ }
486
+ .t-icon-caret-left-small:before {
487
+ content: '\E09A';
488
+ }
489
+ .t-icon-caret-left:before {
490
+ content: '\E09B';
491
+ }
492
+ .t-icon-caret-right-small:before {
493
+ content: '\E09C';
494
+ }
495
+ .t-icon-caret-right:before {
496
+ content: '\E09D';
497
+ }
498
+ .t-icon-caret-up-small:before {
499
+ content: '\E09E';
500
+ }
501
+ .t-icon-caret-up:before {
502
+ content: '\E09F';
503
+ }
504
+ .t-icon-cart-add:before {
505
+ content: '\E0A0';
506
+ }
507
+ .t-icon-cart:before {
508
+ content: '\E0A1';
509
+ }
510
+ .t-icon-cast:before {
511
+ content: '\E0A2';
512
+ }
513
+ .t-icon-castle-1:before {
514
+ content: '\E0A3';
515
+ }
516
+ .t-icon-castle-2:before {
517
+ content: '\E0A4';
518
+ }
519
+ .t-icon-castle-3:before {
520
+ content: '\E0A5';
521
+ }
522
+ .t-icon-castle-4:before {
523
+ content: '\E0A6';
524
+ }
525
+ .t-icon-castle-5:before {
526
+ content: '\E0A7';
527
+ }
528
+ .t-icon-castle-6:before {
529
+ content: '\E0A8';
530
+ }
531
+ .t-icon-castle-7:before {
532
+ content: '\E0A9';
533
+ }
534
+ .t-icon-castle:before {
535
+ content: '\E0AA';
536
+ }
537
+ .t-icon-cat:before {
538
+ content: '\E0AB';
539
+ }
540
+ .t-icon-catalog:before {
541
+ content: '\E0AC';
542
+ }
543
+ .t-icon-cd:before {
544
+ content: '\E0AD';
545
+ }
546
+ .t-icon-celsius:before {
547
+ content: '\E0AE';
548
+ }
549
+ .t-icon-center-focus-strong:before {
550
+ content: '\E0AF';
551
+ }
552
+ .t-icon-centimeter:before {
553
+ content: '\E0B0';
554
+ }
555
+ .t-icon-certificate-1:before {
556
+ content: '\E0B1';
557
+ }
558
+ .t-icon-certificate:before {
559
+ content: '\E0B2';
560
+ }
561
+ .t-icon-chart-3d:before {
562
+ content: '\E0B3';
563
+ }
564
+ .t-icon-chart-add:before {
565
+ content: '\E0B4';
566
+ }
567
+ .t-icon-chart-analytics:before {
568
+ content: '\E0B5';
569
+ }
570
+ .t-icon-chart-area-multi:before {
571
+ content: '\E0B6';
572
+ }
573
+ .t-icon-chart-area:before {
574
+ content: '\E0B7';
575
+ }
576
+ .t-icon-chart-bar:before {
577
+ content: '\E0B8';
578
+ }
579
+ .t-icon-chart-bubble:before {
580
+ content: '\E0B9';
581
+ }
582
+ .t-icon-chart-colum:before {
583
+ content: '\E0BA';
584
+ }
585
+ .t-icon-chart-combo:before {
586
+ content: '\E0BB';
587
+ }
588
+ .t-icon-chart-line-data-1:before {
589
+ content: '\E0BC';
590
+ }
591
+ .t-icon-chart-line-data:before {
592
+ content: '\E0BD';
593
+ }
594
+ .t-icon-chart-line-multi:before {
595
+ content: '\E0BE';
596
+ }
597
+ .t-icon-chart-line:before {
598
+ content: '\E0BF';
599
+ }
600
+ .t-icon-chart-maximum:before {
601
+ content: '\E0C0';
602
+ }
603
+ .t-icon-chart-median:before {
604
+ content: '\E0C1';
605
+ }
606
+ .t-icon-chart-minimum:before {
607
+ content: '\E0C2';
608
+ }
609
+ .t-icon-chart-pie:before {
610
+ content: '\E0C3';
611
+ }
612
+ .t-icon-chart-radar:before {
613
+ content: '\E0C4';
614
+ }
615
+ .t-icon-chart-radial:before {
616
+ content: '\E0C5';
617
+ }
618
+ .t-icon-chart-ring-1:before {
619
+ content: '\E0C6';
620
+ }
621
+ .t-icon-chart-ring:before {
622
+ content: '\E0C7';
623
+ }
624
+ .t-icon-chart-scatter:before {
625
+ content: '\E0C8';
626
+ }
627
+ .t-icon-chart-stacked:before {
628
+ content: '\E0C9';
629
+ }
630
+ .t-icon-chart:before {
631
+ content: '\E0CA';
632
+ }
633
+ .t-icon-chat-add:before {
634
+ content: '\E0CB';
635
+ }
636
+ .t-icon-chat-bubble-1:before {
637
+ content: '\E0CC';
638
+ }
639
+ .t-icon-chat-bubble-add:before {
640
+ content: '\E0CD';
641
+ }
642
+ .t-icon-chat-bubble-error:before {
643
+ content: '\E0CE';
644
+ }
645
+ .t-icon-chat-bubble-help:before {
646
+ content: '\E0CF';
647
+ }
648
+ .t-icon-chat-bubble-history:before {
649
+ content: '\E0D0';
650
+ }
651
+ .t-icon-chat-bubble-locked:before {
652
+ content: '\E0D1';
653
+ }
654
+ .t-icon-chat-bubble-smile:before {
655
+ content: '\E0D2';
656
+ }
657
+ .t-icon-chat-bubble:before {
658
+ content: '\E0D3';
659
+ }
660
+ .t-icon-chat-checked:before {
661
+ content: '\E0D4';
662
+ }
663
+ .t-icon-chat-clear:before {
664
+ content: '\E0D5';
665
+ }
666
+ .t-icon-chat-double:before {
667
+ content: '\E0D6';
668
+ }
669
+ .t-icon-chat-error:before {
670
+ content: '\E0D7';
671
+ }
672
+ .t-icon-chat-heart:before {
673
+ content: '\E0D8';
674
+ }
675
+ .t-icon-chat-message:before {
676
+ content: '\E0D9';
677
+ }
678
+ .t-icon-chat-off:before {
679
+ content: '\E0DA';
680
+ }
681
+ .t-icon-chat-poll:before {
682
+ content: '\E0DB';
683
+ }
684
+ .t-icon-chat-setting:before {
685
+ content: '\E0DC';
686
+ }
687
+ .t-icon-chat:before {
688
+ content: '\E0DD';
689
+ }
690
+ .t-icon-check-circle-filled:before {
691
+ content: '\E0DE';
692
+ }
693
+ .t-icon-check-circle:before {
694
+ content: '\E0DF';
695
+ }
696
+ .t-icon-check-double:before {
697
+ content: '\E0E0';
698
+ }
699
+ .t-icon-check-rectangle-filled:before {
700
+ content: '\E0E1';
701
+ }
702
+ .t-icon-check-rectangle:before {
703
+ content: '\E0E2';
704
+ }
705
+ .t-icon-check:before {
706
+ content: '\E0E3';
707
+ }
708
+ .t-icon-cheese:before {
709
+ content: '\E0E4';
710
+ }
711
+ .t-icon-cherry:before {
712
+ content: '\E0E5';
713
+ }
714
+ .t-icon-chevron-down-circle:before {
715
+ content: '\E0E6';
716
+ }
717
+ .t-icon-chevron-down-double-s:before {
718
+ content: '\E0E7';
719
+ }
720
+ .t-icon-chevron-down-double:before {
721
+ content: '\E0E8';
722
+ }
723
+ .t-icon-chevron-down-rectangle:before {
724
+ content: '\E0E9';
725
+ }
726
+ .t-icon-chevron-down-s:before {
727
+ content: '\E0EA';
728
+ }
729
+ .t-icon-chevron-down:before {
730
+ content: '\E0EB';
731
+ }
732
+ .t-icon-chevron-left-circle:before {
733
+ content: '\E0EC';
734
+ }
735
+ .t-icon-chevron-left-double-s:before {
736
+ content: '\E0ED';
737
+ }
738
+ .t-icon-chevron-left-double:before {
739
+ content: '\E0EE';
740
+ }
741
+ .t-icon-chevron-left-rectangle:before {
742
+ content: '\E0EF';
743
+ }
744
+ .t-icon-chevron-left-s:before {
745
+ content: '\E0F0';
746
+ }
747
+ .t-icon-chevron-left:before {
748
+ content: '\E0F1';
749
+ }
750
+ .t-icon-chevron-right-circle:before {
751
+ content: '\E0F2';
752
+ }
753
+ .t-icon-chevron-right-double-s:before {
754
+ content: '\E0F3';
755
+ }
756
+ .t-icon-chevron-right-double:before {
757
+ content: '\E0F4';
758
+ }
759
+ .t-icon-chevron-right-rectangle:before {
760
+ content: '\E0F5';
761
+ }
762
+ .t-icon-chevron-right-s:before {
763
+ content: '\E0F6';
764
+ }
765
+ .t-icon-chevron-right:before {
766
+ content: '\E0F7';
767
+ }
768
+ .t-icon-chevron-up-circle:before {
769
+ content: '\E0F8';
770
+ }
771
+ .t-icon-chevron-up-double-s:before {
772
+ content: '\E0F9';
773
+ }
774
+ .t-icon-chevron-up-double:before {
775
+ content: '\E0FA';
776
+ }
777
+ .t-icon-chevron-up-rectangle:before {
778
+ content: '\E0FB';
779
+ }
780
+ .t-icon-chevron-up-s:before {
781
+ content: '\E0FC';
782
+ }
783
+ .t-icon-chevron-up:before {
784
+ content: '\E0FD';
785
+ }
786
+ .t-icon-chicken:before {
787
+ content: '\E0FE';
788
+ }
789
+ .t-icon-chili:before {
790
+ content: '\E0FF';
791
+ }
792
+ .t-icon-chimney-1:before {
793
+ content: '\E100';
794
+ }
795
+ .t-icon-chimney-2:before {
796
+ content: '\E101';
797
+ }
798
+ .t-icon-chimney:before {
799
+ content: '\E102';
800
+ }
801
+ .t-icon-chinese-cabbage:before {
802
+ content: '\E103';
803
+ }
804
+ .t-icon-church:before {
805
+ content: '\E104';
806
+ }
807
+ .t-icon-circle:before {
808
+ content: '\E105';
809
+ }
810
+ .t-icon-city-1:before {
811
+ content: '\E106';
812
+ }
813
+ .t-icon-city-10:before {
814
+ content: '\E107';
815
+ }
816
+ .t-icon-city-11:before {
817
+ content: '\E108';
818
+ }
819
+ .t-icon-city-12:before {
820
+ content: '\E109';
821
+ }
822
+ .t-icon-city-13:before {
823
+ content: '\E10A';
824
+ }
825
+ .t-icon-city-14:before {
826
+ content: '\E10B';
827
+ }
828
+ .t-icon-city-15:before {
829
+ content: '\E10C';
830
+ }
831
+ .t-icon-city-2:before {
832
+ content: '\E10D';
833
+ }
834
+ .t-icon-city-3:before {
835
+ content: '\E10E';
836
+ }
837
+ .t-icon-city-4:before {
838
+ content: '\E10F';
839
+ }
840
+ .t-icon-city-5:before {
841
+ content: '\E110';
842
+ }
843
+ .t-icon-city-6:before {
844
+ content: '\E111';
845
+ }
846
+ .t-icon-city-7:before {
847
+ content: '\E112';
848
+ }
849
+ .t-icon-city-8:before {
850
+ content: '\E113';
851
+ }
852
+ .t-icon-city-9:before {
853
+ content: '\E114';
854
+ }
855
+ .t-icon-city-ancient-1:before {
856
+ content: '\E115';
857
+ }
858
+ .t-icon-city-ancient-2:before {
859
+ content: '\E116';
860
+ }
861
+ .t-icon-city-ancient:before {
862
+ content: '\E117';
863
+ }
864
+ .t-icon-city:before {
865
+ content: '\E118';
866
+ }
867
+ .t-icon-clear-formatting-1:before {
868
+ content: '\E119';
869
+ }
870
+ .t-icon-clear-formatting:before {
871
+ content: '\E11A';
872
+ }
873
+ .t-icon-clear:before {
874
+ content: '\E11B';
875
+ }
876
+ .t-icon-close-circle-filled:before {
877
+ content: '\E11C';
878
+ }
879
+ .t-icon-close-circle:before {
880
+ content: '\E11D';
881
+ }
882
+ .t-icon-close-octagon:before {
883
+ content: '\E11E';
884
+ }
885
+ .t-icon-close-rectangle:before {
886
+ content: '\E11F';
887
+ }
888
+ .t-icon-close:before {
889
+ content: '\E120';
890
+ }
891
+ .t-icon-cloud-download:before {
892
+ content: '\E121';
893
+ }
894
+ .t-icon-cloud-upload:before {
895
+ content: '\E122';
896
+ }
897
+ .t-icon-cloud:before {
898
+ content: '\E123';
899
+ }
900
+ .t-icon-cloudy-day:before {
901
+ content: '\E124';
902
+ }
903
+ .t-icon-cloudy-night-rain:before {
904
+ content: '\E125';
905
+ }
906
+ .t-icon-cloudy-night:before {
907
+ content: '\E126';
908
+ }
909
+ .t-icon-cloudy-rain:before {
910
+ content: '\E127';
911
+ }
912
+ .t-icon-cloudy-sunny:before {
913
+ content: '\E128';
914
+ }
915
+ .t-icon-code-1:before {
916
+ content: '\E129';
917
+ }
918
+ .t-icon-code-off:before {
919
+ content: '\E12A';
920
+ }
921
+ .t-icon-code:before {
922
+ content: '\E12B';
923
+ }
924
+ .t-icon-cola:before {
925
+ content: '\E12C';
926
+ }
927
+ .t-icon-collage:before {
928
+ content: '\E12D';
929
+ }
930
+ .t-icon-collection:before {
931
+ content: '\E12E';
932
+ }
933
+ .t-icon-color-invert:before {
934
+ content: '\E12F';
935
+ }
936
+ .t-icon-combination:before {
937
+ content: '\E130';
938
+ }
939
+ .t-icon-command:before {
940
+ content: '\E131';
941
+ }
942
+ .t-icon-compass-1:before {
943
+ content: '\E132';
944
+ }
945
+ .t-icon-compass:before {
946
+ content: '\E133';
947
+ }
948
+ .t-icon-component-breadcrumb:before {
949
+ content: '\E134';
950
+ }
951
+ .t-icon-component-checkbox:before {
952
+ content: '\E135';
953
+ }
954
+ .t-icon-component-divider-horizontal:before {
955
+ content: '\E136';
956
+ }
957
+ .t-icon-component-divider-vertical:before {
958
+ content: '\E137';
959
+ }
960
+ .t-icon-component-dropdown:before {
961
+ content: '\E138';
962
+ }
963
+ .t-icon-component-grid:before {
964
+ content: '\E139';
965
+ }
966
+ .t-icon-component-input:before {
967
+ content: '\E13A';
968
+ }
969
+ .t-icon-component-layout:before {
970
+ content: '\E13B';
971
+ }
972
+ .t-icon-component-radio:before {
973
+ content: '\E13C';
974
+ }
975
+ .t-icon-component-space:before {
976
+ content: '\E13D';
977
+ }
978
+ .t-icon-component-steps:before {
979
+ content: '\E13E';
980
+ }
981
+ .t-icon-component-switch:before {
982
+ content: '\E13F';
983
+ }
984
+ .t-icon-constraint:before {
985
+ content: '\E140';
986
+ }
987
+ .t-icon-contrast-1:before {
988
+ content: '\E141';
989
+ }
990
+ .t-icon-contrast:before {
991
+ content: '\E142';
992
+ }
993
+ .t-icon-control-platform:before {
994
+ content: '\E143';
995
+ }
996
+ .t-icon-cooperate:before {
997
+ content: '\E144';
998
+ }
999
+ .t-icon-coordinate-system:before {
1000
+ content: '\E145';
1001
+ }
1002
+ .t-icon-copy:before {
1003
+ content: '\E146';
1004
+ }
1005
+ .t-icon-copyright:before {
1006
+ content: '\E147';
1007
+ }
1008
+ .t-icon-corn:before {
1009
+ content: '\E148';
1010
+ }
1011
+ .t-icon-coupon:before {
1012
+ content: '\E149';
1013
+ }
1014
+ .t-icon-course:before {
1015
+ content: '\E14A';
1016
+ }
1017
+ .t-icon-cpu:before {
1018
+ content: '\E14B';
1019
+ }
1020
+ .t-icon-crack:before {
1021
+ content: '\E14C';
1022
+ }
1023
+ .t-icon-creditcard-add:before {
1024
+ content: '\E14D';
1025
+ }
1026
+ .t-icon-creditcard-off:before {
1027
+ content: '\E14E';
1028
+ }
1029
+ .t-icon-creditcard:before {
1030
+ content: '\E14F';
1031
+ }
1032
+ .t-icon-crooked-smile:before {
1033
+ content: '\E150';
1034
+ }
1035
+ .t-icon-cry-and-laugh:before {
1036
+ content: '\E151';
1037
+ }
1038
+ .t-icon-cry-loudly:before {
1039
+ content: '\E152';
1040
+ }
1041
+ .t-icon-css3:before {
1042
+ content: '\E153';
1043
+ }
1044
+ .t-icon-cucumber:before {
1045
+ content: '\E154';
1046
+ }
1047
+ .t-icon-currency-exchange:before {
1048
+ content: '\E155';
1049
+ }
1050
+ .t-icon-cursor:before {
1051
+ content: '\E156';
1052
+ }
1053
+ .t-icon-curtain:before {
1054
+ content: '\E157';
1055
+ }
1056
+ .t-icon-curve:before {
1057
+ content: '\E158';
1058
+ }
1059
+ .t-icon-cut-1:before {
1060
+ content: '\E159';
1061
+ }
1062
+ .t-icon-cut:before {
1063
+ content: '\E15A';
1064
+ }
1065
+ .t-icon-dam-1:before {
1066
+ content: '\E15B';
1067
+ }
1068
+ .t-icon-dam-2:before {
1069
+ content: '\E15C';
1070
+ }
1071
+ .t-icon-dam-3:before {
1072
+ content: '\E15D';
1073
+ }
1074
+ .t-icon-dam-4:before {
1075
+ content: '\E15E';
1076
+ }
1077
+ .t-icon-dam-5:before {
1078
+ content: '\E15F';
1079
+ }
1080
+ .t-icon-dam-6:before {
1081
+ content: '\E160';
1082
+ }
1083
+ .t-icon-dam-7:before {
1084
+ content: '\E161';
1085
+ }
1086
+ .t-icon-dam:before {
1087
+ content: '\E162';
1088
+ }
1089
+ .t-icon-dart-board:before {
1090
+ content: '\E163';
1091
+ }
1092
+ .t-icon-dashboard-1:before {
1093
+ content: '\E164';
1094
+ }
1095
+ .t-icon-dashboard:before {
1096
+ content: '\E165';
1097
+ }
1098
+ .t-icon-data-base:before {
1099
+ content: '\E166';
1100
+ }
1101
+ .t-icon-data-checked:before {
1102
+ content: '\E167';
1103
+ }
1104
+ .t-icon-data-display:before {
1105
+ content: '\E168';
1106
+ }
1107
+ .t-icon-data-error:before {
1108
+ content: '\E169';
1109
+ }
1110
+ .t-icon-data-search:before {
1111
+ content: '\E16A';
1112
+ }
1113
+ .t-icon-data:before {
1114
+ content: '\E16B';
1115
+ }
1116
+ .t-icon-delete-1:before {
1117
+ content: '\E16C';
1118
+ }
1119
+ .t-icon-delete-time:before {
1120
+ content: '\E16D';
1121
+ }
1122
+ .t-icon-delete:before {
1123
+ content: '\E16E';
1124
+ }
1125
+ .t-icon-delta:before {
1126
+ content: '\E16F';
1127
+ }
1128
+ .t-icon-depressed:before {
1129
+ content: '\E170';
1130
+ }
1131
+ .t-icon-desktop-1:before {
1132
+ content: '\E171';
1133
+ }
1134
+ .t-icon-desktop:before {
1135
+ content: '\E172';
1136
+ }
1137
+ .t-icon-despise:before {
1138
+ content: '\E173';
1139
+ }
1140
+ .t-icon-device:before {
1141
+ content: '\E174';
1142
+ }
1143
+ .t-icon-discount-filled:before {
1144
+ content: '\E175';
1145
+ }
1146
+ .t-icon-discount:before {
1147
+ content: '\E176';
1148
+ }
1149
+ .t-icon-dissatisfaction:before {
1150
+ content: '\E177';
1151
+ }
1152
+ .t-icon-divide:before {
1153
+ content: '\E178';
1154
+ }
1155
+ .t-icon-dividers-1:before {
1156
+ content: '\E179';
1157
+ }
1158
+ .t-icon-dividers:before {
1159
+ content: '\E17A';
1160
+ }
1161
+ .t-icon-doge:before {
1162
+ content: '\E17B';
1163
+ }
1164
+ .t-icon-double-storey:before {
1165
+ content: '\E17C';
1166
+ }
1167
+ .t-icon-download-1:before {
1168
+ content: '\E17D';
1169
+ }
1170
+ .t-icon-download:before {
1171
+ content: '\E17E';
1172
+ }
1173
+ .t-icon-downscale:before {
1174
+ content: '\E17F';
1175
+ }
1176
+ .t-icon-drag-drop:before {
1177
+ content: '\E180';
1178
+ }
1179
+ .t-icon-drag-move:before {
1180
+ content: '\E181';
1181
+ }
1182
+ .t-icon-drink:before {
1183
+ content: '\E182';
1184
+ }
1185
+ .t-icon-drumstick:before {
1186
+ content: '\E183';
1187
+ }
1188
+ .t-icon-dv:before {
1189
+ content: '\E184';
1190
+ }
1191
+ .t-icon-dvd:before {
1192
+ content: '\E185';
1193
+ }
1194
+ .t-icon-earphone:before {
1195
+ content: '\E186';
1196
+ }
1197
+ .t-icon-earth:before {
1198
+ content: '\E187';
1199
+ }
1200
+ .t-icon-edit-1:before {
1201
+ content: '\E188';
1202
+ }
1203
+ .t-icon-edit-2:before {
1204
+ content: '\E189';
1205
+ }
1206
+ .t-icon-edit-off:before {
1207
+ content: '\E18A';
1208
+ }
1209
+ .t-icon-edit:before {
1210
+ content: '\E18B';
1211
+ }
1212
+ .t-icon-education:before {
1213
+ content: '\E18C';
1214
+ }
1215
+ .t-icon-eggplant:before {
1216
+ content: '\E18D';
1217
+ }
1218
+ .t-icon-ellipsis:before {
1219
+ content: '\E18E';
1220
+ }
1221
+ .t-icon-emo-emotional:before {
1222
+ content: '\E18F';
1223
+ }
1224
+ .t-icon-enter:before {
1225
+ content: '\E190';
1226
+ }
1227
+ .t-icon-equal:before {
1228
+ content: '\E191';
1229
+ }
1230
+ .t-icon-error-circle-filled:before {
1231
+ content: '\E192';
1232
+ }
1233
+ .t-icon-error-circle:before {
1234
+ content: '\E193';
1235
+ }
1236
+ .t-icon-error-triangle:before {
1237
+ content: '\E194';
1238
+ }
1239
+ .t-icon-error:before {
1240
+ content: '\E195';
1241
+ }
1242
+ .t-icon-excited-1:before {
1243
+ content: '\E196';
1244
+ }
1245
+ .t-icon-excited:before {
1246
+ content: '\E197';
1247
+ }
1248
+ .t-icon-expand-horizontal:before {
1249
+ content: '\E198';
1250
+ }
1251
+ .t-icon-expand-vertical:before {
1252
+ content: '\E199';
1253
+ }
1254
+ .t-icon-explore-off:before {
1255
+ content: '\E19A';
1256
+ }
1257
+ .t-icon-explore:before {
1258
+ content: '\E19B';
1259
+ }
1260
+ .t-icon-exposure:before {
1261
+ content: '\E19C';
1262
+ }
1263
+ .t-icon-extension-off:before {
1264
+ content: '\E19D';
1265
+ }
1266
+ .t-icon-extension:before {
1267
+ content: '\E19E';
1268
+ }
1269
+ .t-icon-face-retouching:before {
1270
+ content: '\E19F';
1271
+ }
1272
+ .t-icon-fact-check:before {
1273
+ content: '\E1A0';
1274
+ }
1275
+ .t-icon-fahrenheit-scale:before {
1276
+ content: '\E1A1';
1277
+ }
1278
+ .t-icon-feel-at-ease:before {
1279
+ content: '\E1A2';
1280
+ }
1281
+ .t-icon-ferocious:before {
1282
+ content: '\E1A3';
1283
+ }
1284
+ .t-icon-ferris-wheel:before {
1285
+ content: '\E1A4';
1286
+ }
1287
+ .t-icon-file-1:before {
1288
+ content: '\E1A5';
1289
+ }
1290
+ .t-icon-file-add-1:before {
1291
+ content: '\E1A6';
1292
+ }
1293
+ .t-icon-file-add:before {
1294
+ content: '\E1A7';
1295
+ }
1296
+ .t-icon-file-attachment:before {
1297
+ content: '\E1A8';
1298
+ }
1299
+ .t-icon-file-blocked:before {
1300
+ content: '\E1A9';
1301
+ }
1302
+ .t-icon-file-code-1:before {
1303
+ content: '\E1AA';
1304
+ }
1305
+ .t-icon-file-code:before {
1306
+ content: '\E1AB';
1307
+ }
1308
+ .t-icon-file-copy:before {
1309
+ content: '\E1AC';
1310
+ }
1311
+ .t-icon-file-download:before {
1312
+ content: '\E1AD';
1313
+ }
1314
+ .t-icon-file-excel:before {
1315
+ content: '\E1AE';
1316
+ }
1317
+ .t-icon-file-export:before {
1318
+ content: '\E1AF';
1319
+ }
1320
+ .t-icon-file-icon:before {
1321
+ content: '\E1B0';
1322
+ }
1323
+ .t-icon-file-image:before {
1324
+ content: '\E1B1';
1325
+ }
1326
+ .t-icon-file-import:before {
1327
+ content: '\E1B2';
1328
+ }
1329
+ .t-icon-file-locked:before {
1330
+ content: '\E1B3';
1331
+ }
1332
+ .t-icon-file-minus:before {
1333
+ content: '\E1B4';
1334
+ }
1335
+ .t-icon-file-music:before {
1336
+ content: '\E1B5';
1337
+ }
1338
+ .t-icon-file-onenote:before {
1339
+ content: '\E1B6';
1340
+ }
1341
+ .t-icon-file-outlook:before {
1342
+ content: '\E1B7';
1343
+ }
1344
+ .t-icon-file-paste:before {
1345
+ content: '\E1B8';
1346
+ }
1347
+ .t-icon-file-pdf:before {
1348
+ content: '\E1B9';
1349
+ }
1350
+ .t-icon-file-powerpoint:before {
1351
+ content: '\E1BA';
1352
+ }
1353
+ .t-icon-file-restore:before {
1354
+ content: '\E1BB';
1355
+ }
1356
+ .t-icon-file-safety:before {
1357
+ content: '\E1BC';
1358
+ }
1359
+ .t-icon-file-search:before {
1360
+ content: '\E1BD';
1361
+ }
1362
+ .t-icon-file-setting:before {
1363
+ content: '\E1BE';
1364
+ }
1365
+ .t-icon-file-teams:before {
1366
+ content: '\E1BF';
1367
+ }
1368
+ .t-icon-file-unknown:before {
1369
+ content: '\E1C0';
1370
+ }
1371
+ .t-icon-file-unlocked:before {
1372
+ content: '\E1C1';
1373
+ }
1374
+ .t-icon-file-word:before {
1375
+ content: '\E1C2';
1376
+ }
1377
+ .t-icon-file-zip:before {
1378
+ content: '\E1C3';
1379
+ }
1380
+ .t-icon-file:before {
1381
+ content: '\E1C4';
1382
+ }
1383
+ .t-icon-fill-color-1:before {
1384
+ content: '\E1C5';
1385
+ }
1386
+ .t-icon-fill-color:before {
1387
+ content: '\E1C6';
1388
+ }
1389
+ .t-icon-film-1:before {
1390
+ content: '\E1C7';
1391
+ }
1392
+ .t-icon-film:before {
1393
+ content: '\E1C8';
1394
+ }
1395
+ .t-icon-filter-1:before {
1396
+ content: '\E1C9';
1397
+ }
1398
+ .t-icon-filter-2:before {
1399
+ content: '\E1CA';
1400
+ }
1401
+ .t-icon-filter-3:before {
1402
+ content: '\E1CB';
1403
+ }
1404
+ .t-icon-filter-clear:before {
1405
+ content: '\E1CC';
1406
+ }
1407
+ .t-icon-filter-off:before {
1408
+ content: '\E1CD';
1409
+ }
1410
+ .t-icon-filter:before {
1411
+ content: '\E1CE';
1412
+ }
1413
+ .t-icon-fingerprint-1:before {
1414
+ content: '\E1CF';
1415
+ }
1416
+ .t-icon-fingerprint-2:before {
1417
+ content: '\E1D0';
1418
+ }
1419
+ .t-icon-fingerprint-3:before {
1420
+ content: '\E1D1';
1421
+ }
1422
+ .t-icon-fingerprint:before {
1423
+ content: '\E1D2';
1424
+ }
1425
+ .t-icon-fish:before {
1426
+ content: '\E1D3';
1427
+ }
1428
+ .t-icon-flag-1:before {
1429
+ content: '\E1D4';
1430
+ }
1431
+ .t-icon-flag-2:before {
1432
+ content: '\E1D5';
1433
+ }
1434
+ .t-icon-flag-3:before {
1435
+ content: '\E1D6';
1436
+ }
1437
+ .t-icon-flag-4:before {
1438
+ content: '\E1D7';
1439
+ }
1440
+ .t-icon-flag:before {
1441
+ content: '\E1D8';
1442
+ }
1443
+ .t-icon-flashlight:before {
1444
+ content: '\E1D9';
1445
+ }
1446
+ .t-icon-flight-landing:before {
1447
+ content: '\E1DA';
1448
+ }
1449
+ .t-icon-flight-takeoff:before {
1450
+ content: '\E1DB';
1451
+ }
1452
+ .t-icon-flip-smiling-face:before {
1453
+ content: '\E1DC';
1454
+ }
1455
+ .t-icon-flip-to-back:before {
1456
+ content: '\E1DD';
1457
+ }
1458
+ .t-icon-flip-to-front:before {
1459
+ content: '\E1DE';
1460
+ }
1461
+ .t-icon-focus:before {
1462
+ content: '\E1DF';
1463
+ }
1464
+ .t-icon-fog-night:before {
1465
+ content: '\E1E0';
1466
+ }
1467
+ .t-icon-fog-sunny:before {
1468
+ content: '\E1E1';
1469
+ }
1470
+ .t-icon-fog:before {
1471
+ content: '\E1E2';
1472
+ }
1473
+ .t-icon-folder-1:before {
1474
+ content: '\E1E3';
1475
+ }
1476
+ .t-icon-folder-add-1:before {
1477
+ content: '\E1E4';
1478
+ }
1479
+ .t-icon-folder-add:before {
1480
+ content: '\E1E5';
1481
+ }
1482
+ .t-icon-folder-blocked:before {
1483
+ content: '\E1E6';
1484
+ }
1485
+ .t-icon-folder-details:before {
1486
+ content: '\E1E7';
1487
+ }
1488
+ .t-icon-folder-export:before {
1489
+ content: '\E1E8';
1490
+ }
1491
+ .t-icon-folder-import:before {
1492
+ content: '\E1E9';
1493
+ }
1494
+ .t-icon-folder-locked:before {
1495
+ content: '\E1EA';
1496
+ }
1497
+ .t-icon-folder-minus:before {
1498
+ content: '\E1EB';
1499
+ }
1500
+ .t-icon-folder-move:before {
1501
+ content: '\E1EC';
1502
+ }
1503
+ .t-icon-folder-off:before {
1504
+ content: '\E1ED';
1505
+ }
1506
+ .t-icon-folder-open-1:before {
1507
+ content: '\E1EE';
1508
+ }
1509
+ .t-icon-folder-open:before {
1510
+ content: '\E1EF';
1511
+ }
1512
+ .t-icon-folder-search:before {
1513
+ content: '\E1F0';
1514
+ }
1515
+ .t-icon-folder-setting:before {
1516
+ content: '\E1F1';
1517
+ }
1518
+ .t-icon-folder-shared:before {
1519
+ content: '\E1F2';
1520
+ }
1521
+ .t-icon-folder-unlocked:before {
1522
+ content: '\E1F3';
1523
+ }
1524
+ .t-icon-folder-zip:before {
1525
+ content: '\E1F4';
1526
+ }
1527
+ .t-icon-folder:before {
1528
+ content: '\E1F5';
1529
+ }
1530
+ .t-icon-forest:before {
1531
+ content: '\E1F6';
1532
+ }
1533
+ .t-icon-fork:before {
1534
+ content: '\E1F7';
1535
+ }
1536
+ .t-icon-form:before {
1537
+ content: '\E1F8';
1538
+ }
1539
+ .t-icon-format-horizontal-align-bottom:before {
1540
+ content: '\E1F9';
1541
+ }
1542
+ .t-icon-format-horizontal-align-center:before {
1543
+ content: '\E1FA';
1544
+ }
1545
+ .t-icon-format-horizontal-align-top:before {
1546
+ content: '\E1FB';
1547
+ }
1548
+ .t-icon-format-vertical-align-center:before {
1549
+ content: '\E1FC';
1550
+ }
1551
+ .t-icon-format-vertical-align-left:before {
1552
+ content: '\E1FD';
1553
+ }
1554
+ .t-icon-format-vertical-align-right:before {
1555
+ content: '\E1FE';
1556
+ }
1557
+ .t-icon-forward:before {
1558
+ content: '\E1FF';
1559
+ }
1560
+ .t-icon-frame-1:before {
1561
+ content: '\E200';
1562
+ }
1563
+ .t-icon-frame:before {
1564
+ content: '\E201';
1565
+ }
1566
+ .t-icon-fries:before {
1567
+ content: '\E202';
1568
+ }
1569
+ .t-icon-fullscreen-1:before {
1570
+ content: '\E203';
1571
+ }
1572
+ .t-icon-fullscreen-2:before {
1573
+ content: '\E204';
1574
+ }
1575
+ .t-icon-fullscreen-exit-1:before {
1576
+ content: '\E205';
1577
+ }
1578
+ .t-icon-fullscreen-exit:before {
1579
+ content: '\E206';
1580
+ }
1581
+ .t-icon-fullscreen:before {
1582
+ content: '\E207';
1583
+ }
1584
+ .t-icon-function-curve:before {
1585
+ content: '\E208';
1586
+ }
1587
+ .t-icon-functions-1:before {
1588
+ content: '\E209';
1589
+ }
1590
+ .t-icon-functions:before {
1591
+ content: '\E20A';
1592
+ }
1593
+ .t-icon-gamepad-1:before {
1594
+ content: '\E20B';
1595
+ }
1596
+ .t-icon-gamepad:before {
1597
+ content: '\E20C';
1598
+ }
1599
+ .t-icon-gamma:before {
1600
+ content: '\E20D';
1601
+ }
1602
+ .t-icon-garlic:before {
1603
+ content: '\E20E';
1604
+ }
1605
+ .t-icon-gender-female:before {
1606
+ content: '\E20F';
1607
+ }
1608
+ .t-icon-gender-male:before {
1609
+ content: '\E210';
1610
+ }
1611
+ .t-icon-gesture-applause:before {
1612
+ content: '\E211';
1613
+ }
1614
+ .t-icon-gesture-click:before {
1615
+ content: '\E212';
1616
+ }
1617
+ .t-icon-gesture-down:before {
1618
+ content: '\E213';
1619
+ }
1620
+ .t-icon-gesture-expansion:before {
1621
+ content: '\E214';
1622
+ }
1623
+ .t-icon-gesture-left-slip:before {
1624
+ content: '\E215';
1625
+ }
1626
+ .t-icon-gesture-left:before {
1627
+ content: '\E216';
1628
+ }
1629
+ .t-icon-gesture-pray-1:before {
1630
+ content: '\E217';
1631
+ }
1632
+ .t-icon-gesture-pray:before {
1633
+ content: '\E218';
1634
+ }
1635
+ .t-icon-gesture-press:before {
1636
+ content: '\E219';
1637
+ }
1638
+ .t-icon-gesture-ranslation-1:before {
1639
+ content: '\E21A';
1640
+ }
1641
+ .t-icon-gesture-ranslation:before {
1642
+ content: '\E21B';
1643
+ }
1644
+ .t-icon-gesture-right-slip:before {
1645
+ content: '\E21C';
1646
+ }
1647
+ .t-icon-gesture-right:before {
1648
+ content: '\E21D';
1649
+ }
1650
+ .t-icon-gesture-slide-up:before {
1651
+ content: '\E21E';
1652
+ }
1653
+ .t-icon-gesture-up-1:before {
1654
+ content: '\E21F';
1655
+ }
1656
+ .t-icon-gesture-up-2:before {
1657
+ content: '\E220';
1658
+ }
1659
+ .t-icon-gesture-up-and-down:before {
1660
+ content: '\E221';
1661
+ }
1662
+ .t-icon-gesture-up:before {
1663
+ content: '\E222';
1664
+ }
1665
+ .t-icon-gesture-wipe-down:before {
1666
+ content: '\E223';
1667
+ }
1668
+ .t-icon-gift:before {
1669
+ content: '\E224';
1670
+ }
1671
+ .t-icon-giggle:before {
1672
+ content: '\E225';
1673
+ }
1674
+ .t-icon-git-branch:before {
1675
+ content: '\E226';
1676
+ }
1677
+ .t-icon-git-commit:before {
1678
+ content: '\E227';
1679
+ }
1680
+ .t-icon-git-merge:before {
1681
+ content: '\E228';
1682
+ }
1683
+ .t-icon-git-pull-request:before {
1684
+ content: '\E229';
1685
+ }
1686
+ .t-icon-git-repository-commits:before {
1687
+ content: '\E22A';
1688
+ }
1689
+ .t-icon-git-repository-private:before {
1690
+ content: '\E22B';
1691
+ }
1692
+ .t-icon-git-repository:before {
1693
+ content: '\E22C';
1694
+ }
1695
+ .t-icon-gps:before {
1696
+ content: '\E22D';
1697
+ }
1698
+ .t-icon-grape:before {
1699
+ content: '\E22E';
1700
+ }
1701
+ .t-icon-greater-than-or-equal:before {
1702
+ content: '\E22F';
1703
+ }
1704
+ .t-icon-greater-than:before {
1705
+ content: '\E230';
1706
+ }
1707
+ .t-icon-green-onion:before {
1708
+ content: '\E231';
1709
+ }
1710
+ .t-icon-grid-add:before {
1711
+ content: '\E232';
1712
+ }
1713
+ .t-icon-grid-view:before {
1714
+ content: '\E233';
1715
+ }
1716
+ .t-icon-guitar:before {
1717
+ content: '\E234';
1718
+ }
1719
+ .t-icon-hamburger:before {
1720
+ content: '\E235';
1721
+ }
1722
+ .t-icon-happy:before {
1723
+ content: '\E236';
1724
+ }
1725
+ .t-icon-hard-disk-storage:before {
1726
+ content: '\E237';
1727
+ }
1728
+ .t-icon-hard-drive:before {
1729
+ content: '\E238';
1730
+ }
1731
+ .t-icon-hashtag:before {
1732
+ content: '\E239';
1733
+ }
1734
+ .t-icon-hd:before {
1735
+ content: '\E23A';
1736
+ }
1737
+ .t-icon-heart-filled:before {
1738
+ content: '\E23B';
1739
+ }
1740
+ .t-icon-heart:before {
1741
+ content: '\E23C';
1742
+ }
1743
+ .t-icon-help-circle-filled:before {
1744
+ content: '\E23D';
1745
+ }
1746
+ .t-icon-help-circle:before {
1747
+ content: '\E23E';
1748
+ }
1749
+ .t-icon-help-rectangle:before {
1750
+ content: '\E23F';
1751
+ }
1752
+ .t-icon-help:before {
1753
+ content: '\E240';
1754
+ }
1755
+ .t-icon-highlight-1:before {
1756
+ content: '\E241';
1757
+ }
1758
+ .t-icon-highlight:before {
1759
+ content: '\E242';
1760
+ }
1761
+ .t-icon-history-setting:before {
1762
+ content: '\E243';
1763
+ }
1764
+ .t-icon-history:before {
1765
+ content: '\E244';
1766
+ }
1767
+ .t-icon-home:before {
1768
+ content: '\E245';
1769
+ }
1770
+ .t-icon-hospital-1:before {
1771
+ content: '\E246';
1772
+ }
1773
+ .t-icon-hospital:before {
1774
+ content: '\E247';
1775
+ }
1776
+ .t-icon-hotspot-wave:before {
1777
+ content: '\E248';
1778
+ }
1779
+ .t-icon-hourglass:before {
1780
+ content: '\E249';
1781
+ }
1782
+ .t-icon-houses-1:before {
1783
+ content: '\E24A';
1784
+ }
1785
+ .t-icon-houses-2:before {
1786
+ content: '\E24B';
1787
+ }
1788
+ .t-icon-houses:before {
1789
+ content: '\E24C';
1790
+ }
1791
+ .t-icon-html5:before {
1792
+ content: '\E24D';
1793
+ }
1794
+ .t-icon-https:before {
1795
+ content: '\E24E';
1796
+ }
1797
+ .t-icon-ice-cream:before {
1798
+ content: '\E24F';
1799
+ }
1800
+ .t-icon-icon:before {
1801
+ content: '\E250';
1802
+ }
1803
+ .t-icon-image-1:before {
1804
+ content: '\E251';
1805
+ }
1806
+ .t-icon-image-add:before {
1807
+ content: '\E252';
1808
+ }
1809
+ .t-icon-image-edit:before {
1810
+ content: '\E253';
1811
+ }
1812
+ .t-icon-image-error:before {
1813
+ content: '\E254';
1814
+ }
1815
+ .t-icon-image-off:before {
1816
+ content: '\E255';
1817
+ }
1818
+ .t-icon-image-search:before {
1819
+ content: '\E256';
1820
+ }
1821
+ .t-icon-image:before {
1822
+ content: '\E257';
1823
+ }
1824
+ .t-icon-indent-left:before {
1825
+ content: '\E258';
1826
+ }
1827
+ .t-icon-indent-right:before {
1828
+ content: '\E259';
1829
+ }
1830
+ .t-icon-indicator:before {
1831
+ content: '\E25A';
1832
+ }
1833
+ .t-icon-info-circle-filled:before {
1834
+ content: '\E25B';
1835
+ }
1836
+ .t-icon-info-circle:before {
1837
+ content: '\E25C';
1838
+ }
1839
+ .t-icon-ink:before {
1840
+ content: '\E25D';
1841
+ }
1842
+ .t-icon-install-desktop:before {
1843
+ content: '\E25E';
1844
+ }
1845
+ .t-icon-install-mobile:before {
1846
+ content: '\E25F';
1847
+ }
1848
+ .t-icon-install:before {
1849
+ content: '\E260';
1850
+ }
1851
+ .t-icon-institution-checked:before {
1852
+ content: '\E261';
1853
+ }
1854
+ .t-icon-institution:before {
1855
+ content: '\E262';
1856
+ }
1857
+ .t-icon-internet:before {
1858
+ content: '\E263';
1859
+ }
1860
+ .t-icon-ipod:before {
1861
+ content: '\E264';
1862
+ }
1863
+ .t-icon-joyful:before {
1864
+ content: '\E265';
1865
+ }
1866
+ .t-icon-jump-off:before {
1867
+ content: '\E266';
1868
+ }
1869
+ .t-icon-jump:before {
1870
+ content: '\E267';
1871
+ }
1872
+ .t-icon-keyboard:before {
1873
+ content: '\E268';
1874
+ }
1875
+ .t-icon-laptop:before {
1876
+ content: '\E269';
1877
+ }
1878
+ .t-icon-layers:before {
1879
+ content: '\E26A';
1880
+ }
1881
+ .t-icon-layout:before {
1882
+ content: '\E26B';
1883
+ }
1884
+ .t-icon-leaderboard:before {
1885
+ content: '\E26C';
1886
+ }
1887
+ .t-icon-lemon-slice:before {
1888
+ content: '\E26D';
1889
+ }
1890
+ .t-icon-lemon:before {
1891
+ content: '\E26E';
1892
+ }
1893
+ .t-icon-less-than-or-equal:before {
1894
+ content: '\E26F';
1895
+ }
1896
+ .t-icon-less-than:before {
1897
+ content: '\E270';
1898
+ }
1899
+ .t-icon-letters-a:before {
1900
+ content: '\E271';
1901
+ }
1902
+ .t-icon-letters-b:before {
1903
+ content: '\E272';
1904
+ }
1905
+ .t-icon-letters-c:before {
1906
+ content: '\E273';
1907
+ }
1908
+ .t-icon-letters-d:before {
1909
+ content: '\E274';
1910
+ }
1911
+ .t-icon-letters-e:before {
1912
+ content: '\E275';
1913
+ }
1914
+ .t-icon-letters-f:before {
1915
+ content: '\E276';
1916
+ }
1917
+ .t-icon-letters-g:before {
1918
+ content: '\E277';
1919
+ }
1920
+ .t-icon-letters-h:before {
1921
+ content: '\E278';
1922
+ }
1923
+ .t-icon-letters-i:before {
1924
+ content: '\E279';
1925
+ }
1926
+ .t-icon-letters-j:before {
1927
+ content: '\E27A';
1928
+ }
1929
+ .t-icon-letters-k:before {
1930
+ content: '\E27B';
1931
+ }
1932
+ .t-icon-letters-l:before {
1933
+ content: '\E27C';
1934
+ }
1935
+ .t-icon-letters-m:before {
1936
+ content: '\E27D';
1937
+ }
1938
+ .t-icon-letters-n:before {
1939
+ content: '\E27E';
1940
+ }
1941
+ .t-icon-letters-o:before {
1942
+ content: '\E27F';
1943
+ }
1944
+ .t-icon-letters-p:before {
1945
+ content: '\E280';
1946
+ }
1947
+ .t-icon-letters-q:before {
1948
+ content: '\E281';
1949
+ }
1950
+ .t-icon-letters-r:before {
1951
+ content: '\E282';
1952
+ }
1953
+ .t-icon-letters-s:before {
1954
+ content: '\E283';
1955
+ }
1956
+ .t-icon-letters-t:before {
1957
+ content: '\E284';
1958
+ }
1959
+ .t-icon-letters-u:before {
1960
+ content: '\E285';
1961
+ }
1962
+ .t-icon-letters-v:before {
1963
+ content: '\E286';
1964
+ }
1965
+ .t-icon-letters-w:before {
1966
+ content: '\E287';
1967
+ }
1968
+ .t-icon-letters-x:before {
1969
+ content: '\E288';
1970
+ }
1971
+ .t-icon-letters-y:before {
1972
+ content: '\E289';
1973
+ }
1974
+ .t-icon-letters-z:before {
1975
+ content: '\E28A';
1976
+ }
1977
+ .t-icon-lightbulb-circle:before {
1978
+ content: '\E28B';
1979
+ }
1980
+ .t-icon-lightbulb:before {
1981
+ content: '\E28C';
1982
+ }
1983
+ .t-icon-lighthouse-1:before {
1984
+ content: '\E28D';
1985
+ }
1986
+ .t-icon-lighthouse-2:before {
1987
+ content: '\E28E';
1988
+ }
1989
+ .t-icon-lighthouse:before {
1990
+ content: '\E28F';
1991
+ }
1992
+ .t-icon-lighting-circle:before {
1993
+ content: '\E290';
1994
+ }
1995
+ .t-icon-line-height:before {
1996
+ content: '\E291';
1997
+ }
1998
+ .t-icon-link-1:before {
1999
+ content: '\E292';
2000
+ }
2001
+ .t-icon-link-unlink:before {
2002
+ content: '\E293';
2003
+ }
2004
+ .t-icon-link:before {
2005
+ content: '\E294';
2006
+ }
2007
+ .t-icon-liquor:before {
2008
+ content: '\E295';
2009
+ }
2010
+ .t-icon-list:before {
2011
+ content: '\E296';
2012
+ }
2013
+ .t-icon-load:before {
2014
+ content: '\E297';
2015
+ }
2016
+ .t-icon-loading:before {
2017
+ content: '\E298';
2018
+ }
2019
+ .t-icon-location-1:before {
2020
+ content: '\E299';
2021
+ }
2022
+ .t-icon-location-enlargement:before {
2023
+ content: '\E29A';
2024
+ }
2025
+ .t-icon-location-error:before {
2026
+ content: '\E29B';
2027
+ }
2028
+ .t-icon-location-parking-place:before {
2029
+ content: '\E29C';
2030
+ }
2031
+ .t-icon-location-reduction:before {
2032
+ content: '\E29D';
2033
+ }
2034
+ .t-icon-location-setting:before {
2035
+ content: '\E29E';
2036
+ }
2037
+ .t-icon-location:before {
2038
+ content: '\E29F';
2039
+ }
2040
+ .t-icon-lock-off:before {
2041
+ content: '\E2A0';
2042
+ }
2043
+ .t-icon-lock-on:before {
2044
+ content: '\E2A1';
2045
+ }
2046
+ .t-icon-lock-time:before {
2047
+ content: '\E2A2';
2048
+ }
2049
+ .t-icon-login:before {
2050
+ content: '\E2A3';
2051
+ }
2052
+ .t-icon-logo-adobe-illustrate:before {
2053
+ content: '\E2A4';
2054
+ }
2055
+ .t-icon-logo-adobe-photoshop-1:before {
2056
+ content: '\E2A5';
2057
+ }
2058
+ .t-icon-logo-adobe-photoshop:before {
2059
+ content: '\E2A6';
2060
+ }
2061
+ .t-icon-logo-android:before {
2062
+ content: '\E2A7';
2063
+ }
2064
+ .t-icon-logo-apple-filled:before {
2065
+ content: '\E2A8';
2066
+ }
2067
+ .t-icon-logo-apple:before {
2068
+ content: '\E2A9';
2069
+ }
2070
+ .t-icon-logo-behance:before {
2071
+ content: '\E2AA';
2072
+ }
2073
+ .t-icon-logo-chrome-filled:before {
2074
+ content: '\E2AB';
2075
+ }
2076
+ .t-icon-logo-chrome:before {
2077
+ content: '\E2AC';
2078
+ }
2079
+ .t-icon-logo-cinema4d:before {
2080
+ content: '\E2AD';
2081
+ }
2082
+ .t-icon-logo-codepen:before {
2083
+ content: '\E2AE';
2084
+ }
2085
+ .t-icon-logo-codesandbox:before {
2086
+ content: '\E2AF';
2087
+ }
2088
+ .t-icon-logo-dribbble:before {
2089
+ content: '\E2B0';
2090
+ }
2091
+ .t-icon-logo-facebook:before {
2092
+ content: '\E2B1';
2093
+ }
2094
+ .t-icon-logo-figma:before {
2095
+ content: '\E2B2';
2096
+ }
2097
+ .t-icon-logo-framer:before {
2098
+ content: '\E2B3';
2099
+ }
2100
+ .t-icon-logo-github-filled:before {
2101
+ content: '\E2B4';
2102
+ }
2103
+ .t-icon-logo-github:before {
2104
+ content: '\E2B5';
2105
+ }
2106
+ .t-icon-logo-gitlab:before {
2107
+ content: '\E2B6';
2108
+ }
2109
+ .t-icon-logo-ie-filled:before {
2110
+ content: '\E2B7';
2111
+ }
2112
+ .t-icon-logo-ie:before {
2113
+ content: '\E2B8';
2114
+ }
2115
+ .t-icon-logo-instagram:before {
2116
+ content: '\E2B9';
2117
+ }
2118
+ .t-icon-logo-qq:before {
2119
+ content: '\E2BA';
2120
+ }
2121
+ .t-icon-logo-twitter:before {
2122
+ content: '\E2BB';
2123
+ }
2124
+ .t-icon-logo-wechat-stroke:before {
2125
+ content: '\E2BC';
2126
+ }
2127
+ .t-icon-logo-wechat:before {
2128
+ content: '\E2BD';
2129
+ }
2130
+ .t-icon-logo-wecom:before {
2131
+ content: '\E2BE';
2132
+ }
2133
+ .t-icon-logo-windows-filled:before {
2134
+ content: '\E2BF';
2135
+ }
2136
+ .t-icon-logo-windows:before {
2137
+ content: '\E2C0';
2138
+ }
2139
+ .t-icon-logo-youtube:before {
2140
+ content: '\E2C1';
2141
+ }
2142
+ .t-icon-logout:before {
2143
+ content: '\E2C2';
2144
+ }
2145
+ .t-icon-look-around:before {
2146
+ content: '\E2C3';
2147
+ }
2148
+ .t-icon-loudspeaker:before {
2149
+ content: '\E2C4';
2150
+ }
2151
+ .t-icon-mail:before {
2152
+ content: '\E2C5';
2153
+ }
2154
+ .t-icon-map-3d:before {
2155
+ content: '\E2C6';
2156
+ }
2157
+ .t-icon-map-add:before {
2158
+ content: '\E2C7';
2159
+ }
2160
+ .t-icon-map-aiming:before {
2161
+ content: '\E2C8';
2162
+ }
2163
+ .t-icon-map-blocked:before {
2164
+ content: '\E2C9';
2165
+ }
2166
+ .t-icon-map-bubble:before {
2167
+ content: '\E2CA';
2168
+ }
2169
+ .t-icon-map-cancel:before {
2170
+ content: '\E2CB';
2171
+ }
2172
+ .t-icon-map-chat:before {
2173
+ content: '\E2CC';
2174
+ }
2175
+ .t-icon-map-checked:before {
2176
+ content: '\E2CD';
2177
+ }
2178
+ .t-icon-map-collection:before {
2179
+ content: '\E2CE';
2180
+ }
2181
+ .t-icon-map-connection:before {
2182
+ content: '\E2CF';
2183
+ }
2184
+ .t-icon-map-distance:before {
2185
+ content: '\E2D0';
2186
+ }
2187
+ .t-icon-map-double:before {
2188
+ content: '\E2D1';
2189
+ }
2190
+ .t-icon-map-edit:before {
2191
+ content: '\E2D2';
2192
+ }
2193
+ .t-icon-map-grid:before {
2194
+ content: '\E2D3';
2195
+ }
2196
+ .t-icon-map-information-1:before {
2197
+ content: '\E2D4';
2198
+ }
2199
+ .t-icon-map-information-2:before {
2200
+ content: '\E2D5';
2201
+ }
2202
+ .t-icon-map-information:before {
2203
+ content: '\E2D6';
2204
+ }
2205
+ .t-icon-map-location:before {
2206
+ content: '\E2D7';
2207
+ }
2208
+ .t-icon-map-locked:before {
2209
+ content: '\E2D8';
2210
+ }
2211
+ .t-icon-map-marked:before {
2212
+ content: '\E2D9';
2213
+ }
2214
+ .t-icon-map-navigation:before {
2215
+ content: '\E2DA';
2216
+ }
2217
+ .t-icon-map-outline:before {
2218
+ content: '\E2DB';
2219
+ }
2220
+ .t-icon-map-route-planning:before {
2221
+ content: '\E2DC';
2222
+ }
2223
+ .t-icon-map-ruler:before {
2224
+ content: '\E2DD';
2225
+ }
2226
+ .t-icon-map-safety:before {
2227
+ content: '\E2DE';
2228
+ }
2229
+ .t-icon-map-search-1:before {
2230
+ content: '\E2DF';
2231
+ }
2232
+ .t-icon-map-search:before {
2233
+ content: '\E2E0';
2234
+ }
2235
+ .t-icon-map-setting:before {
2236
+ content: '\E2E1';
2237
+ }
2238
+ .t-icon-map-unlocked:before {
2239
+ content: '\E2E2';
2240
+ }
2241
+ .t-icon-map:before {
2242
+ content: '\E2E3';
2243
+ }
2244
+ .t-icon-mark-as-unread:before {
2245
+ content: '\E2E4';
2246
+ }
2247
+ .t-icon-markup:before {
2248
+ content: '\E2E5';
2249
+ }
2250
+ .t-icon-mathematics:before {
2251
+ content: '\E2E6';
2252
+ }
2253
+ .t-icon-measurement-1:before {
2254
+ content: '\E2E7';
2255
+ }
2256
+ .t-icon-measurement-2:before {
2257
+ content: '\E2E8';
2258
+ }
2259
+ .t-icon-measurement:before {
2260
+ content: '\E2E9';
2261
+ }
2262
+ .t-icon-meat-pepper:before {
2263
+ content: '\E2EA';
2264
+ }
2265
+ .t-icon-media-library:before {
2266
+ content: '\E2EB';
2267
+ }
2268
+ .t-icon-member:before {
2269
+ content: '\E2EC';
2270
+ }
2271
+ .t-icon-menu-application:before {
2272
+ content: '\E2ED';
2273
+ }
2274
+ .t-icon-menu-fold:before {
2275
+ content: '\E2EE';
2276
+ }
2277
+ .t-icon-menu-unfold:before {
2278
+ content: '\E2EF';
2279
+ }
2280
+ .t-icon-menu:before {
2281
+ content: '\E2F0';
2282
+ }
2283
+ .t-icon-merge-cells:before {
2284
+ content: '\E2F1';
2285
+ }
2286
+ .t-icon-microphone-1:before {
2287
+ content: '\E2F2';
2288
+ }
2289
+ .t-icon-microphone-2:before {
2290
+ content: '\E2F3';
2291
+ }
2292
+ .t-icon-microphone:before {
2293
+ content: '\E2F4';
2294
+ }
2295
+ .t-icon-milk:before {
2296
+ content: '\E2F5';
2297
+ }
2298
+ .t-icon-minus-circle-filled:before {
2299
+ content: '\E2F6';
2300
+ }
2301
+ .t-icon-minus-circle:before {
2302
+ content: '\E2F7';
2303
+ }
2304
+ .t-icon-minus-rectangle-filled:before {
2305
+ content: '\E2F8';
2306
+ }
2307
+ .t-icon-minus-rectangle:before {
2308
+ content: '\E2F9';
2309
+ }
2310
+ .t-icon-minus:before {
2311
+ content: '\E2FA';
2312
+ }
2313
+ .t-icon-mirror:before {
2314
+ content: '\E2FB';
2315
+ }
2316
+ .t-icon-mobile-blocked:before {
2317
+ content: '\E2FC';
2318
+ }
2319
+ .t-icon-mobile-list:before {
2320
+ content: '\E2FD';
2321
+ }
2322
+ .t-icon-mobile-navigation:before {
2323
+ content: '\E2FE';
2324
+ }
2325
+ .t-icon-mobile-shortcut:before {
2326
+ content: '\E2FF';
2327
+ }
2328
+ .t-icon-mobile-vibrate:before {
2329
+ content: '\E300';
2330
+ }
2331
+ .t-icon-mobile:before {
2332
+ content: '\E301';
2333
+ }
2334
+ .t-icon-mode-dark:before {
2335
+ content: '\E302';
2336
+ }
2337
+ .t-icon-mode-light:before {
2338
+ content: '\E303';
2339
+ }
2340
+ .t-icon-module:before {
2341
+ content: '\E304';
2342
+ }
2343
+ .t-icon-money:before {
2344
+ content: '\E305';
2345
+ }
2346
+ .t-icon-monument:before {
2347
+ content: '\E306';
2348
+ }
2349
+ .t-icon-moon-fall:before {
2350
+ content: '\E307';
2351
+ }
2352
+ .t-icon-moon-rising:before {
2353
+ content: '\E308';
2354
+ }
2355
+ .t-icon-moon:before {
2356
+ content: '\E309';
2357
+ }
2358
+ .t-icon-more:before {
2359
+ content: '\E30A';
2360
+ }
2361
+ .t-icon-mosque-1:before {
2362
+ content: '\E30B';
2363
+ }
2364
+ .t-icon-mosque:before {
2365
+ content: '\E30C';
2366
+ }
2367
+ .t-icon-mouse:before {
2368
+ content: '\E30D';
2369
+ }
2370
+ .t-icon-move-1:before {
2371
+ content: '\E30E';
2372
+ }
2373
+ .t-icon-move:before {
2374
+ content: '\E30F';
2375
+ }
2376
+ .t-icon-movie-clapper:before {
2377
+ content: '\E310';
2378
+ }
2379
+ .t-icon-multiply:before {
2380
+ content: '\E311';
2381
+ }
2382
+ .t-icon-museum-1:before {
2383
+ content: '\E312';
2384
+ }
2385
+ .t-icon-museum-2:before {
2386
+ content: '\E313';
2387
+ }
2388
+ .t-icon-museum:before {
2389
+ content: '\E314';
2390
+ }
2391
+ .t-icon-mushroom-1:before {
2392
+ content: '\E315';
2393
+ }
2394
+ .t-icon-mushroom:before {
2395
+ content: '\E316';
2396
+ }
2397
+ .t-icon-music-1:before {
2398
+ content: '\E317';
2399
+ }
2400
+ .t-icon-music-2:before {
2401
+ content: '\E318';
2402
+ }
2403
+ .t-icon-music-rectangle-add:before {
2404
+ content: '\E319';
2405
+ }
2406
+ .t-icon-music:before {
2407
+ content: '\E31A';
2408
+ }
2409
+ .t-icon-navigation-arrow:before {
2410
+ content: '\E31B';
2411
+ }
2412
+ .t-icon-next:before {
2413
+ content: '\E31C';
2414
+ }
2415
+ .t-icon-no-expression:before {
2416
+ content: '\E31D';
2417
+ }
2418
+ .t-icon-noodle:before {
2419
+ content: '\E31E';
2420
+ }
2421
+ .t-icon-notification-add:before {
2422
+ content: '\E31F';
2423
+ }
2424
+ .t-icon-notification-circle:before {
2425
+ content: '\E320';
2426
+ }
2427
+ .t-icon-notification-error:before {
2428
+ content: '\E321';
2429
+ }
2430
+ .t-icon-notification-filled:before {
2431
+ content: '\E322';
2432
+ }
2433
+ .t-icon-notification:before {
2434
+ content: '\E323';
2435
+ }
2436
+ .t-icon-numbers-0-1:before {
2437
+ content: '\E324';
2438
+ }
2439
+ .t-icon-numbers-0:before {
2440
+ content: '\E325';
2441
+ }
2442
+ .t-icon-numbers-1-1:before {
2443
+ content: '\E326';
2444
+ }
2445
+ .t-icon-numbers-1:before {
2446
+ content: '\E327';
2447
+ }
2448
+ .t-icon-numbers-2-1:before {
2449
+ content: '\E328';
2450
+ }
2451
+ .t-icon-numbers-2:before {
2452
+ content: '\E329';
2453
+ }
2454
+ .t-icon-numbers-3-1:before {
2455
+ content: '\E32A';
2456
+ }
2457
+ .t-icon-numbers-3:before {
2458
+ content: '\E32B';
2459
+ }
2460
+ .t-icon-numbers-4-1:before {
2461
+ content: '\E32C';
2462
+ }
2463
+ .t-icon-numbers-4:before {
2464
+ content: '\E32D';
2465
+ }
2466
+ .t-icon-numbers-5-1:before {
2467
+ content: '\E32E';
2468
+ }
2469
+ .t-icon-numbers-5:before {
2470
+ content: '\E32F';
2471
+ }
2472
+ .t-icon-numbers-6-1:before {
2473
+ content: '\E330';
2474
+ }
2475
+ .t-icon-numbers-6:before {
2476
+ content: '\E331';
2477
+ }
2478
+ .t-icon-numbers-7-1:before {
2479
+ content: '\E332';
2480
+ }
2481
+ .t-icon-numbers-7:before {
2482
+ content: '\E333';
2483
+ }
2484
+ .t-icon-numbers-8-1:before {
2485
+ content: '\E334';
2486
+ }
2487
+ .t-icon-numbers-8:before {
2488
+ content: '\E335';
2489
+ }
2490
+ .t-icon-numbers-9-1:before {
2491
+ content: '\E336';
2492
+ }
2493
+ .t-icon-numbers-9:before {
2494
+ content: '\E337';
2495
+ }
2496
+ .t-icon-nut:before {
2497
+ content: '\E338';
2498
+ }
2499
+ .t-icon-object-storage:before {
2500
+ content: '\E339';
2501
+ }
2502
+ .t-icon-open-mouth:before {
2503
+ content: '\E33A';
2504
+ }
2505
+ .t-icon-opera:before {
2506
+ content: '\E33B';
2507
+ }
2508
+ .t-icon-order-adjustment-column:before {
2509
+ content: '\E33C';
2510
+ }
2511
+ .t-icon-order-ascending:before {
2512
+ content: '\E33D';
2513
+ }
2514
+ .t-icon-order-descending:before {
2515
+ content: '\E33E';
2516
+ }
2517
+ .t-icon-outbox:before {
2518
+ content: '\E33F';
2519
+ }
2520
+ .t-icon-page-first:before {
2521
+ content: '\E340';
2522
+ }
2523
+ .t-icon-page-head:before {
2524
+ content: '\E341';
2525
+ }
2526
+ .t-icon-page-last:before {
2527
+ content: '\E342';
2528
+ }
2529
+ .t-icon-palace-1:before {
2530
+ content: '\E343';
2531
+ }
2532
+ .t-icon-palace-2:before {
2533
+ content: '\E344';
2534
+ }
2535
+ .t-icon-palace-3:before {
2536
+ content: '\E345';
2537
+ }
2538
+ .t-icon-palace-4:before {
2539
+ content: '\E346';
2540
+ }
2541
+ .t-icon-palace:before {
2542
+ content: '\E347';
2543
+ }
2544
+ .t-icon-palette-1:before {
2545
+ content: '\E348';
2546
+ }
2547
+ .t-icon-palette:before {
2548
+ content: '\E349';
2549
+ }
2550
+ .t-icon-panorama-horizontal:before {
2551
+ content: '\E34A';
2552
+ }
2553
+ .t-icon-panorama-vertical:before {
2554
+ content: '\E34B';
2555
+ }
2556
+ .t-icon-pantone:before {
2557
+ content: '\E34C';
2558
+ }
2559
+ .t-icon-parabola:before {
2560
+ content: '\E34D';
2561
+ }
2562
+ .t-icon-parentheses:before {
2563
+ content: '\E34E';
2564
+ }
2565
+ .t-icon-paste:before {
2566
+ content: '\E34F';
2567
+ }
2568
+ .t-icon-patio:before {
2569
+ content: '\E350';
2570
+ }
2571
+ .t-icon-pause-circle-filled:before {
2572
+ content: '\E351';
2573
+ }
2574
+ .t-icon-pause-circle-stroke:before {
2575
+ content: '\E352';
2576
+ }
2577
+ .t-icon-pause-circle:before {
2578
+ content: '\E353';
2579
+ }
2580
+ .t-icon-pause:before {
2581
+ content: '\E354';
2582
+ }
2583
+ .t-icon-pea:before {
2584
+ content: '\E355';
2585
+ }
2586
+ .t-icon-peach:before {
2587
+ content: '\E356';
2588
+ }
2589
+ .t-icon-pear:before {
2590
+ content: '\E357';
2591
+ }
2592
+ .t-icon-pearl-of-the-orient:before {
2593
+ content: '\E358';
2594
+ }
2595
+ .t-icon-pen-ball:before {
2596
+ content: '\E359';
2597
+ }
2598
+ .t-icon-pen-brush:before {
2599
+ content: '\E35A';
2600
+ }
2601
+ .t-icon-pen-mark:before {
2602
+ content: '\E35B';
2603
+ }
2604
+ .t-icon-pen-quill:before {
2605
+ content: '\E35C';
2606
+ }
2607
+ .t-icon-pen:before {
2608
+ content: '\E35D';
2609
+ }
2610
+ .t-icon-pending:before {
2611
+ content: '\E35E';
2612
+ }
2613
+ .t-icon-percent:before {
2614
+ content: '\E35F';
2615
+ }
2616
+ .t-icon-personal-information:before {
2617
+ content: '\E360';
2618
+ }
2619
+ .t-icon-phone-locked:before {
2620
+ content: '\E361';
2621
+ }
2622
+ .t-icon-phone-search:before {
2623
+ content: '\E362';
2624
+ }
2625
+ .t-icon-pi:before {
2626
+ content: '\E363';
2627
+ }
2628
+ .t-icon-piano:before {
2629
+ content: '\E364';
2630
+ }
2631
+ .t-icon-pin-filled:before {
2632
+ content: '\E365';
2633
+ }
2634
+ .t-icon-pin:before {
2635
+ content: '\E366';
2636
+ }
2637
+ .t-icon-play-circle-filled:before {
2638
+ content: '\E367';
2639
+ }
2640
+ .t-icon-play-circle-stroke-add:before {
2641
+ content: '\E368';
2642
+ }
2643
+ .t-icon-play-circle-stroke:before {
2644
+ content: '\E369';
2645
+ }
2646
+ .t-icon-play-circle:before {
2647
+ content: '\E36A';
2648
+ }
2649
+ .t-icon-play-demo:before {
2650
+ content: '\E36B';
2651
+ }
2652
+ .t-icon-play-rectangle:before {
2653
+ content: '\E36C';
2654
+ }
2655
+ .t-icon-play:before {
2656
+ content: '\E36D';
2657
+ }
2658
+ .t-icon-plus:before {
2659
+ content: '\E36E';
2660
+ }
2661
+ .t-icon-popsicle:before {
2662
+ content: '\E36F';
2663
+ }
2664
+ .t-icon-portrait:before {
2665
+ content: '\E370';
2666
+ }
2667
+ .t-icon-pout:before {
2668
+ content: '\E371';
2669
+ }
2670
+ .t-icon-poweroff:before {
2671
+ content: '\E372';
2672
+ }
2673
+ .t-icon-precise-monitor:before {
2674
+ content: '\E373';
2675
+ }
2676
+ .t-icon-previous:before {
2677
+ content: '\E374';
2678
+ }
2679
+ .t-icon-print:before {
2680
+ content: '\E375';
2681
+ }
2682
+ .t-icon-pumpkin:before {
2683
+ content: '\E376';
2684
+ }
2685
+ .t-icon-pyramid-maya:before {
2686
+ content: '\E377';
2687
+ }
2688
+ .t-icon-pyramid:before {
2689
+ content: '\E378';
2690
+ }
2691
+ .t-icon-qrcode:before {
2692
+ content: '\E379';
2693
+ }
2694
+ .t-icon-quadratic:before {
2695
+ content: '\E37A';
2696
+ }
2697
+ .t-icon-questionnaire:before {
2698
+ content: '\E37B';
2699
+ }
2700
+ .t-icon-queue:before {
2701
+ content: '\E37C';
2702
+ }
2703
+ .t-icon-radar:before {
2704
+ content: '\E37D';
2705
+ }
2706
+ .t-icon-radio-1:before {
2707
+ content: '\E37E';
2708
+ }
2709
+ .t-icon-radio-2:before {
2710
+ content: '\E37F';
2711
+ }
2712
+ .t-icon-radish:before {
2713
+ content: '\E380';
2714
+ }
2715
+ .t-icon-rain-heavy:before {
2716
+ content: '\E381';
2717
+ }
2718
+ .t-icon-rain-light:before {
2719
+ content: '\E382';
2720
+ }
2721
+ .t-icon-rain-medium:before {
2722
+ content: '\E383';
2723
+ }
2724
+ .t-icon-rainbow:before {
2725
+ content: '\E384';
2726
+ }
2727
+ .t-icon-rectangle:before {
2728
+ content: '\E385';
2729
+ }
2730
+ .t-icon-refresh:before {
2731
+ content: '\E386';
2732
+ }
2733
+ .t-icon-relation:before {
2734
+ content: '\E387';
2735
+ }
2736
+ .t-icon-relativity:before {
2737
+ content: '\E388';
2738
+ }
2739
+ .t-icon-remote-wave:before {
2740
+ content: '\E389';
2741
+ }
2742
+ .t-icon-remove:before {
2743
+ content: '\E38A';
2744
+ }
2745
+ .t-icon-replay:before {
2746
+ content: '\E38B';
2747
+ }
2748
+ .t-icon-rice-ball:before {
2749
+ content: '\E38C';
2750
+ }
2751
+ .t-icon-rice:before {
2752
+ content: '\E38D';
2753
+ }
2754
+ .t-icon-roast:before {
2755
+ content: '\E38E';
2756
+ }
2757
+ .t-icon-rocket:before {
2758
+ content: '\E38F';
2759
+ }
2760
+ .t-icon-rollback:before {
2761
+ content: '\E390';
2762
+ }
2763
+ .t-icon-rollfront:before {
2764
+ content: '\E391';
2765
+ }
2766
+ .t-icon-root-list:before {
2767
+ content: '\E392';
2768
+ }
2769
+ .t-icon-rotate-locked:before {
2770
+ content: '\E393';
2771
+ }
2772
+ .t-icon-rotate:before {
2773
+ content: '\E394';
2774
+ }
2775
+ .t-icon-rotation:before {
2776
+ content: '\E395';
2777
+ }
2778
+ .t-icon-round:before {
2779
+ content: '\E396';
2780
+ }
2781
+ .t-icon-router-wave:before {
2782
+ content: '\E397';
2783
+ }
2784
+ .t-icon-rss:before {
2785
+ content: '\E398';
2786
+ }
2787
+ .t-icon-ruler:before {
2788
+ content: '\E399';
2789
+ }
2790
+ .t-icon-sailing-hotel:before {
2791
+ content: '\E39A';
2792
+ }
2793
+ .t-icon-sandwich:before {
2794
+ content: '\E39B';
2795
+ }
2796
+ .t-icon-saturation:before {
2797
+ content: '\E39C';
2798
+ }
2799
+ .t-icon-sausage:before {
2800
+ content: '\E39D';
2801
+ }
2802
+ .t-icon-save:before {
2803
+ content: '\E39E';
2804
+ }
2805
+ .t-icon-saving-pot:before {
2806
+ content: '\E39F';
2807
+ }
2808
+ .t-icon-scan:before {
2809
+ content: '\E3A0';
2810
+ }
2811
+ .t-icon-screen-4k:before {
2812
+ content: '\E3A1';
2813
+ }
2814
+ .t-icon-screencast:before {
2815
+ content: '\E3A2';
2816
+ }
2817
+ .t-icon-screenshot:before {
2818
+ content: '\E3A3';
2819
+ }
2820
+ .t-icon-scroll-bar:before {
2821
+ content: '\E3A4';
2822
+ }
2823
+ .t-icon-sd-card-1:before {
2824
+ content: '\E3A5';
2825
+ }
2826
+ .t-icon-sd-card:before {
2827
+ content: '\E3A6';
2828
+ }
2829
+ .t-icon-search-error:before {
2830
+ content: '\E3A7';
2831
+ }
2832
+ .t-icon-search:before {
2833
+ content: '\E3A8';
2834
+ }
2835
+ .t-icon-secured:before {
2836
+ content: '\E3A9';
2837
+ }
2838
+ .t-icon-send-cancel:before {
2839
+ content: '\E3AA';
2840
+ }
2841
+ .t-icon-send:before {
2842
+ content: '\E3AB';
2843
+ }
2844
+ .t-icon-sensors-1:before {
2845
+ content: '\E3AC';
2846
+ }
2847
+ .t-icon-sensors-2:before {
2848
+ content: '\E3AD';
2849
+ }
2850
+ .t-icon-sensors-off:before {
2851
+ content: '\E3AE';
2852
+ }
2853
+ .t-icon-sensors:before {
2854
+ content: '\E3AF';
2855
+ }
2856
+ .t-icon-serenity:before {
2857
+ content: '\E3B0';
2858
+ }
2859
+ .t-icon-server:before {
2860
+ content: '\E3B1';
2861
+ }
2862
+ .t-icon-service:before {
2863
+ content: '\E3B2';
2864
+ }
2865
+ .t-icon-setting-1:before {
2866
+ content: '\E3B3';
2867
+ }
2868
+ .t-icon-setting:before {
2869
+ content: '\E3B4';
2870
+ }
2871
+ .t-icon-share-1:before {
2872
+ content: '\E3B5';
2873
+ }
2874
+ .t-icon-share:before {
2875
+ content: '\E3B6';
2876
+ }
2877
+ .t-icon-sharpness:before {
2878
+ content: '\E3B7';
2879
+ }
2880
+ .t-icon-shield-error:before {
2881
+ content: '\E3B8';
2882
+ }
2883
+ .t-icon-shimen:before {
2884
+ content: '\E3B9';
2885
+ }
2886
+ .t-icon-shop-1:before {
2887
+ content: '\E3BA';
2888
+ }
2889
+ .t-icon-shop-2:before {
2890
+ content: '\E3BB';
2891
+ }
2892
+ .t-icon-shop-3:before {
2893
+ content: '\E3BC';
2894
+ }
2895
+ .t-icon-shop-4:before {
2896
+ content: '\E3BD';
2897
+ }
2898
+ .t-icon-shop-5:before {
2899
+ content: '\E3BE';
2900
+ }
2901
+ .t-icon-shop:before {
2902
+ content: '\E3BF';
2903
+ }
2904
+ .t-icon-shrimp:before {
2905
+ content: '\E3C0';
2906
+ }
2907
+ .t-icon-shrink-horizontal:before {
2908
+ content: '\E3C1';
2909
+ }
2910
+ .t-icon-shrink-vertical:before {
2911
+ content: '\E3C2';
2912
+ }
2913
+ .t-icon-shutter:before {
2914
+ content: '\E3C3';
2915
+ }
2916
+ .t-icon-shutup:before {
2917
+ content: '\E3C4';
2918
+ }
2919
+ .t-icon-sim-card-1:before {
2920
+ content: '\E3C5';
2921
+ }
2922
+ .t-icon-sim-card-2:before {
2923
+ content: '\E3C6';
2924
+ }
2925
+ .t-icon-sim-card:before {
2926
+ content: '\E3C7';
2927
+ }
2928
+ .t-icon-sinister-smile:before {
2929
+ content: '\E3C8';
2930
+ }
2931
+ .t-icon-sip:before {
2932
+ content: '\E3C9';
2933
+ }
2934
+ .t-icon-slash:before {
2935
+ content: '\E3CA';
2936
+ }
2937
+ .t-icon-sleep:before {
2938
+ content: '\E3CB';
2939
+ }
2940
+ .t-icon-slice:before {
2941
+ content: '\E3CC';
2942
+ }
2943
+ .t-icon-slideshow:before {
2944
+ content: '\E3CD';
2945
+ }
2946
+ .t-icon-smile:before {
2947
+ content: '\E3CE';
2948
+ }
2949
+ .t-icon-sneer:before {
2950
+ content: '\E3CF';
2951
+ }
2952
+ .t-icon-snowflake:before {
2953
+ content: '\E3D0';
2954
+ }
2955
+ .t-icon-sonic:before {
2956
+ content: '\E3D1';
2957
+ }
2958
+ .t-icon-sound-down:before {
2959
+ content: '\E3D2';
2960
+ }
2961
+ .t-icon-sound-high:before {
2962
+ content: '\E3D3';
2963
+ }
2964
+ .t-icon-sound-low:before {
2965
+ content: '\E3D4';
2966
+ }
2967
+ .t-icon-sound-mute-1:before {
2968
+ content: '\E3D5';
2969
+ }
2970
+ .t-icon-sound-mute:before {
2971
+ content: '\E3D6';
2972
+ }
2973
+ .t-icon-sound-up:before {
2974
+ content: '\E3D7';
2975
+ }
2976
+ .t-icon-sound:before {
2977
+ content: '\E3D8';
2978
+ }
2979
+ .t-icon-space:before {
2980
+ content: '\E3D9';
2981
+ }
2982
+ .t-icon-speechless-1:before {
2983
+ content: '\E3DA';
2984
+ }
2985
+ .t-icon-star-filled:before {
2986
+ content: '\E3DB';
2987
+ }
2988
+ .t-icon-star:before {
2989
+ content: '\E3DC';
2990
+ }
2991
+ .t-icon-statue-of-jesus:before {
2992
+ content: '\E3DD';
2993
+ }
2994
+ .t-icon-sticky-note:before {
2995
+ content: '\E3DE';
2996
+ }
2997
+ .t-icon-stop-circle-filled:before {
2998
+ content: '\E3DF';
2999
+ }
3000
+ .t-icon-stop-circle-stroke:before {
3001
+ content: '\E3E0';
3002
+ }
3003
+ .t-icon-stop-circle:before {
3004
+ content: '\E3E1';
3005
+ }
3006
+ .t-icon-stop:before {
3007
+ content: '\E3E2';
3008
+ }
3009
+ .t-icon-store:before {
3010
+ content: '\E3E3';
3011
+ }
3012
+ .t-icon-street-road-1:before {
3013
+ content: '\E3E4';
3014
+ }
3015
+ .t-icon-street-road:before {
3016
+ content: '\E3E5';
3017
+ }
3018
+ .t-icon-subtitle:before {
3019
+ content: '\E3E6';
3020
+ }
3021
+ .t-icon-subway-line:before {
3022
+ content: '\E3E7';
3023
+ }
3024
+ .t-icon-sum:before {
3025
+ content: '\E3E8';
3026
+ }
3027
+ .t-icon-sun-fall:before {
3028
+ content: '\E3E9';
3029
+ }
3030
+ .t-icon-sun-rising:before {
3031
+ content: '\E3EA';
3032
+ }
3033
+ .t-icon-sunny:before {
3034
+ content: '\E3EB';
3035
+ }
3036
+ .t-icon-support:before {
3037
+ content: '\E3EC';
3038
+ }
3039
+ .t-icon-surprised-1:before {
3040
+ content: '\E3ED';
3041
+ }
3042
+ .t-icon-surprised:before {
3043
+ content: '\E3EE';
3044
+ }
3045
+ .t-icon-swap-left:before {
3046
+ content: '\E3EF';
3047
+ }
3048
+ .t-icon-swap-right:before {
3049
+ content: '\E3F0';
3050
+ }
3051
+ .t-icon-swap:before {
3052
+ content: '\E3F1';
3053
+ }
3054
+ .t-icon-swear-1:before {
3055
+ content: '\E3F2';
3056
+ }
3057
+ .t-icon-swear-2:before {
3058
+ content: '\E3F3';
3059
+ }
3060
+ .t-icon-system-2:before {
3061
+ content: '\E3F4';
3062
+ }
3063
+ .t-icon-system-3:before {
3064
+ content: '\E3F5';
3065
+ }
3066
+ .t-icon-system-application:before {
3067
+ content: '\E3F6';
3068
+ }
3069
+ .t-icon-system-blocked:before {
3070
+ content: '\E3F7';
3071
+ }
3072
+ .t-icon-system-code:before {
3073
+ content: '\E3F8';
3074
+ }
3075
+ .t-icon-system-components:before {
3076
+ content: '\E3F9';
3077
+ }
3078
+ .t-icon-system-coordinate:before {
3079
+ content: '\E3FA';
3080
+ }
3081
+ .t-icon-system-device:before {
3082
+ content: '\E3FB';
3083
+ }
3084
+ .t-icon-system-interface:before {
3085
+ content: '\E3FC';
3086
+ }
3087
+ .t-icon-system-location:before {
3088
+ content: '\E3FD';
3089
+ }
3090
+ .t-icon-system-locked:before {
3091
+ content: '\E3FE';
3092
+ }
3093
+ .t-icon-system-log:before {
3094
+ content: '\E3FF';
3095
+ }
3096
+ .t-icon-system-marked:before {
3097
+ content: '\E400';
3098
+ }
3099
+ .t-icon-system-messages:before {
3100
+ content: '\E401';
3101
+ }
3102
+ .t-icon-system-regulation:before {
3103
+ content: '\E402';
3104
+ }
3105
+ .t-icon-system-search:before {
3106
+ content: '\E403';
3107
+ }
3108
+ .t-icon-system-setting:before {
3109
+ content: '\E404';
3110
+ }
3111
+ .t-icon-system-storage:before {
3112
+ content: '\E405';
3113
+ }
3114
+ .t-icon-system-sum:before {
3115
+ content: '\E406';
3116
+ }
3117
+ .t-icon-system-unlocked:before {
3118
+ content: '\E407';
3119
+ }
3120
+ .t-icon-tab:before {
3121
+ content: '\E408';
3122
+ }
3123
+ .t-icon-table-1:before {
3124
+ content: '\E409';
3125
+ }
3126
+ .t-icon-table-2:before {
3127
+ content: '\E40A';
3128
+ }
3129
+ .t-icon-table-add:before {
3130
+ content: '\E40B';
3131
+ }
3132
+ .t-icon-table-split:before {
3133
+ content: '\E40C';
3134
+ }
3135
+ .t-icon-table:before {
3136
+ content: '\E40D';
3137
+ }
3138
+ .t-icon-tag:before {
3139
+ content: '\E40E';
3140
+ }
3141
+ .t-icon-tangerinr:before {
3142
+ content: '\E40F';
3143
+ }
3144
+ .t-icon-tape:before {
3145
+ content: '\E410';
3146
+ }
3147
+ .t-icon-task-1:before {
3148
+ content: '\E411';
3149
+ }
3150
+ .t-icon-task-add-1:before {
3151
+ content: '\E412';
3152
+ }
3153
+ .t-icon-task-add:before {
3154
+ content: '\E413';
3155
+ }
3156
+ .t-icon-task-checked:before {
3157
+ content: '\E414';
3158
+ }
3159
+ .t-icon-task-error:before {
3160
+ content: '\E415';
3161
+ }
3162
+ .t-icon-task-location:before {
3163
+ content: '\E416';
3164
+ }
3165
+ .t-icon-task-marked:before {
3166
+ content: '\E417';
3167
+ }
3168
+ .t-icon-task-setting:before {
3169
+ content: '\E418';
3170
+ }
3171
+ .t-icon-task-visible:before {
3172
+ content: '\E419';
3173
+ }
3174
+ .t-icon-task:before {
3175
+ content: '\E41A';
3176
+ }
3177
+ .t-icon-tea:before {
3178
+ content: '\E41B';
3179
+ }
3180
+ .t-icon-teahouse:before {
3181
+ content: '\E41C';
3182
+ }
3183
+ .t-icon-template:before {
3184
+ content: '\E41D';
3185
+ }
3186
+ .t-icon-temple:before {
3187
+ content: '\E41E';
3188
+ }
3189
+ .t-icon-terminal-rectangle-1:before {
3190
+ content: '\E41F';
3191
+ }
3192
+ .t-icon-terminal-rectangle:before {
3193
+ content: '\E420';
3194
+ }
3195
+ .t-icon-terminal-window:before {
3196
+ content: '\E421';
3197
+ }
3198
+ .t-icon-terminal:before {
3199
+ content: '\E422';
3200
+ }
3201
+ .t-icon-textbox:before {
3202
+ content: '\E423';
3203
+ }
3204
+ .t-icon-textformat-bold:before {
3205
+ content: '\E424';
3206
+ }
3207
+ .t-icon-textformat-color:before {
3208
+ content: '\E425';
3209
+ }
3210
+ .t-icon-textformat-italic:before {
3211
+ content: '\E426';
3212
+ }
3213
+ .t-icon-textformat-strikethrough:before {
3214
+ content: '\E427';
3215
+ }
3216
+ .t-icon-textformat-underline:before {
3217
+ content: '\E428';
3218
+ }
3219
+ .t-icon-textformat-wrap:before {
3220
+ content: '\E429';
3221
+ }
3222
+ .t-icon-theaters:before {
3223
+ content: '\E42A';
3224
+ }
3225
+ .t-icon-thumb-down-1:before {
3226
+ content: '\E42B';
3227
+ }
3228
+ .t-icon-thumb-down-2:before {
3229
+ content: '\E42C';
3230
+ }
3231
+ .t-icon-thumb-down:before {
3232
+ content: '\E42D';
3233
+ }
3234
+ .t-icon-thumb-up-1:before {
3235
+ content: '\E42E';
3236
+ }
3237
+ .t-icon-thumb-up-2:before {
3238
+ content: '\E42F';
3239
+ }
3240
+ .t-icon-thumb-up:before {
3241
+ content: '\E430';
3242
+ }
3243
+ .t-icon-thunder:before {
3244
+ content: '\E431';
3245
+ }
3246
+ .t-icon-thunderstorm-night:before {
3247
+ content: '\E432';
3248
+ }
3249
+ .t-icon-thunderstorm-sunny:before {
3250
+ content: '\E433';
3251
+ }
3252
+ .t-icon-thunderstorm:before {
3253
+ content: '\E434';
3254
+ }
3255
+ .t-icon-ticket:before {
3256
+ content: '\E435';
3257
+ }
3258
+ .t-icon-time-filled:before {
3259
+ content: '\E436';
3260
+ }
3261
+ .t-icon-time:before {
3262
+ content: '\E437';
3263
+ }
3264
+ .t-icon-tips-double:before {
3265
+ content: '\E438';
3266
+ }
3267
+ .t-icon-tips:before {
3268
+ content: '\E439';
3269
+ }
3270
+ .t-icon-tomato:before {
3271
+ content: '\E43A';
3272
+ }
3273
+ .t-icon-tools-circle:before {
3274
+ content: '\E43B';
3275
+ }
3276
+ .t-icon-tools:before {
3277
+ content: '\E43C';
3278
+ }
3279
+ .t-icon-tornado:before {
3280
+ content: '\E43D';
3281
+ }
3282
+ .t-icon-tower-1:before {
3283
+ content: '\E43E';
3284
+ }
3285
+ .t-icon-tower-2:before {
3286
+ content: '\E43F';
3287
+ }
3288
+ .t-icon-tower-3:before {
3289
+ content: '\E440';
3290
+ }
3291
+ .t-icon-tower-clock:before {
3292
+ content: '\E441';
3293
+ }
3294
+ .t-icon-tower:before {
3295
+ content: '\E442';
3296
+ }
3297
+ .t-icon-town:before {
3298
+ content: '\E443';
3299
+ }
3300
+ .t-icon-traffic-events:before {
3301
+ content: '\E444';
3302
+ }
3303
+ .t-icon-traffic:before {
3304
+ content: '\E445';
3305
+ }
3306
+ .t-icon-transform-1:before {
3307
+ content: '\E446';
3308
+ }
3309
+ .t-icon-transform-2:before {
3310
+ content: '\E447';
3311
+ }
3312
+ .t-icon-transform-3:before {
3313
+ content: '\E448';
3314
+ }
3315
+ .t-icon-transform:before {
3316
+ content: '\E449';
3317
+ }
3318
+ .t-icon-translate-1:before {
3319
+ content: '\E44A';
3320
+ }
3321
+ .t-icon-translate:before {
3322
+ content: '\E44B';
3323
+ }
3324
+ .t-icon-tree-list:before {
3325
+ content: '\E44C';
3326
+ }
3327
+ .t-icon-tree-round-dot-vertical:before {
3328
+ content: '\E44D';
3329
+ }
3330
+ .t-icon-tree-round-dot:before {
3331
+ content: '\E44E';
3332
+ }
3333
+ .t-icon-tree-square-dot-vertical:before {
3334
+ content: '\E44F';
3335
+ }
3336
+ .t-icon-tree-square-dot:before {
3337
+ content: '\E450';
3338
+ }
3339
+ .t-icon-trending-down:before {
3340
+ content: '\E451';
3341
+ }
3342
+ .t-icon-trending-up:before {
3343
+ content: '\E452';
3344
+ }
3345
+ .t-icon-tv-1:before {
3346
+ content: '\E453';
3347
+ }
3348
+ .t-icon-tv-2:before {
3349
+ content: '\E454';
3350
+ }
3351
+ .t-icon-tv:before {
3352
+ content: '\E455';
3353
+ }
3354
+ .t-icon-typography:before {
3355
+ content: '\E456';
3356
+ }
3357
+ .t-icon-uncomfortable-1:before {
3358
+ content: '\E457';
3359
+ }
3360
+ .t-icon-uncomfortable-2:before {
3361
+ content: '\E458';
3362
+ }
3363
+ .t-icon-uncomfortable:before {
3364
+ content: '\E459';
3365
+ }
3366
+ .t-icon-undertake-delivery:before {
3367
+ content: '\E45A';
3368
+ }
3369
+ .t-icon-undertake-environment-protection:before {
3370
+ content: '\E45B';
3371
+ }
3372
+ .t-icon-undertake-hold-up:before {
3373
+ content: '\E45C';
3374
+ }
3375
+ .t-icon-undertake-transaction:before {
3376
+ content: '\E45D';
3377
+ }
3378
+ .t-icon-undertake:before {
3379
+ content: '\E45E';
3380
+ }
3381
+ .t-icon-unfold-less:before {
3382
+ content: '\E45F';
3383
+ }
3384
+ .t-icon-unfold-more:before {
3385
+ content: '\E460';
3386
+ }
3387
+ .t-icon-unhappy-1:before {
3388
+ content: '\E461';
3389
+ }
3390
+ .t-icon-unhappy:before {
3391
+ content: '\E462';
3392
+ }
3393
+ .t-icon-uninstall:before {
3394
+ content: '\E463';
3395
+ }
3396
+ .t-icon-upload-1:before {
3397
+ content: '\E464';
3398
+ }
3399
+ .t-icon-upload:before {
3400
+ content: '\E465';
3401
+ }
3402
+ .t-icon-upscale:before {
3403
+ content: '\E466';
3404
+ }
3405
+ .t-icon-usb:before {
3406
+ content: '\E467';
3407
+ }
3408
+ .t-icon-user-1:before {
3409
+ content: '\E468';
3410
+ }
3411
+ .t-icon-user-add:before {
3412
+ content: '\E469';
3413
+ }
3414
+ .t-icon-user-arrow-down:before {
3415
+ content: '\E46A';
3416
+ }
3417
+ .t-icon-user-arrow-left:before {
3418
+ content: '\E46B';
3419
+ }
3420
+ .t-icon-user-arrow-right:before {
3421
+ content: '\E46C';
3422
+ }
3423
+ .t-icon-user-arrow-up:before {
3424
+ content: '\E46D';
3425
+ }
3426
+ .t-icon-user-avatar:before {
3427
+ content: '\E46E';
3428
+ }
3429
+ .t-icon-user-blocked:before {
3430
+ content: '\E46F';
3431
+ }
3432
+ .t-icon-user-business:before {
3433
+ content: '\E470';
3434
+ }
3435
+ .t-icon-user-checked-1:before {
3436
+ content: '\E471';
3437
+ }
3438
+ .t-icon-user-checked:before {
3439
+ content: '\E472';
3440
+ }
3441
+ .t-icon-user-circle:before {
3442
+ content: '\E473';
3443
+ }
3444
+ .t-icon-user-clear:before {
3445
+ content: '\E474';
3446
+ }
3447
+ .t-icon-user-error-1:before {
3448
+ content: '\E475';
3449
+ }
3450
+ .t-icon-user-invisible:before {
3451
+ content: '\E476';
3452
+ }
3453
+ .t-icon-user-list:before {
3454
+ content: '\E477';
3455
+ }
3456
+ .t-icon-user-locked:before {
3457
+ content: '\E478';
3458
+ }
3459
+ .t-icon-user-marked:before {
3460
+ content: '\E479';
3461
+ }
3462
+ .t-icon-user-password:before {
3463
+ content: '\E47A';
3464
+ }
3465
+ .t-icon-user-safety:before {
3466
+ content: '\E47B';
3467
+ }
3468
+ .t-icon-user-search:before {
3469
+ content: '\E47C';
3470
+ }
3471
+ .t-icon-user-setting:before {
3472
+ content: '\E47D';
3473
+ }
3474
+ .t-icon-user-talk-1:before {
3475
+ content: '\E47E';
3476
+ }
3477
+ .t-icon-user-talk-off-1:before {
3478
+ content: '\E47F';
3479
+ }
3480
+ .t-icon-user-talk:before {
3481
+ content: '\E480';
3482
+ }
3483
+ .t-icon-user-time:before {
3484
+ content: '\E481';
3485
+ }
3486
+ .t-icon-user-transmit:before {
3487
+ content: '\E482';
3488
+ }
3489
+ .t-icon-user-unknown:before {
3490
+ content: '\E483';
3491
+ }
3492
+ .t-icon-user-unlocked:before {
3493
+ content: '\E484';
3494
+ }
3495
+ .t-icon-user-vip:before {
3496
+ content: '\E485';
3497
+ }
3498
+ .t-icon-user-visible:before {
3499
+ content: '\E486';
3500
+ }
3501
+ .t-icon-user:before {
3502
+ content: '\E487';
3503
+ }
3504
+ .t-icon-usergroup-add:before {
3505
+ content: '\E488';
3506
+ }
3507
+ .t-icon-usergroup-clear:before {
3508
+ content: '\E489';
3509
+ }
3510
+ .t-icon-usergroup:before {
3511
+ content: '\E48A';
3512
+ }
3513
+ .t-icon-vehicle:before {
3514
+ content: '\E48B';
3515
+ }
3516
+ .t-icon-verified:before {
3517
+ content: '\E48C';
3518
+ }
3519
+ .t-icon-verify:before {
3520
+ content: '\E48D';
3521
+ }
3522
+ .t-icon-video-camera-1:before {
3523
+ content: '\E48E';
3524
+ }
3525
+ .t-icon-video-camera-2:before {
3526
+ content: '\E48F';
3527
+ }
3528
+ .t-icon-video-camera-dollar:before {
3529
+ content: '\E490';
3530
+ }
3531
+ .t-icon-video-camera-minus:before {
3532
+ content: '\E491';
3533
+ }
3534
+ .t-icon-video-camera-music:before {
3535
+ content: '\E492';
3536
+ }
3537
+ .t-icon-video-camera-off:before {
3538
+ content: '\E493';
3539
+ }
3540
+ .t-icon-video-camera:before {
3541
+ content: '\E494';
3542
+ }
3543
+ .t-icon-video-library:before {
3544
+ content: '\E495';
3545
+ }
3546
+ .t-icon-video:before {
3547
+ content: '\E496';
3548
+ }
3549
+ .t-icon-view-agenda:before {
3550
+ content: '\E497';
3551
+ }
3552
+ .t-icon-view-column:before {
3553
+ content: '\E498';
3554
+ }
3555
+ .t-icon-view-in-ar:before {
3556
+ content: '\E499';
3557
+ }
3558
+ .t-icon-view-list:before {
3559
+ content: '\E49A';
3560
+ }
3561
+ .t-icon-view-module:before {
3562
+ content: '\E49B';
3563
+ }
3564
+ .t-icon-visual-recognition:before {
3565
+ content: '\E49C';
3566
+ }
3567
+ .t-icon-wallet:before {
3568
+ content: '\E49D';
3569
+ }
3570
+ .t-icon-watch:before {
3571
+ content: '\E49E';
3572
+ }
3573
+ .t-icon-watermelon:before {
3574
+ content: '\E49F';
3575
+ }
3576
+ .t-icon-wave-left:before {
3577
+ content: '\E4A0';
3578
+ }
3579
+ .t-icon-wave-right:before {
3580
+ content: '\E4A1';
3581
+ }
3582
+ .t-icon-wealth-1:before {
3583
+ content: '\E4A2';
3584
+ }
3585
+ .t-icon-wealth:before {
3586
+ content: '\E4A3';
3587
+ }
3588
+ .t-icon-widget:before {
3589
+ content: '\E4A4';
3590
+ }
3591
+ .t-icon-wifi-1:before {
3592
+ content: '\E4A5';
3593
+ }
3594
+ .t-icon-wifi-off-1:before {
3595
+ content: '\E4A6';
3596
+ }
3597
+ .t-icon-wifi-off:before {
3598
+ content: '\E4A7';
3599
+ }
3600
+ .t-icon-wifi:before {
3601
+ content: '\E4A8';
3602
+ }
3603
+ .t-icon-window-1:before {
3604
+ content: '\E4A9';
3605
+ }
3606
+ .t-icon-window:before {
3607
+ content: '\E4AA';
3608
+ }
3609
+ .t-icon-windy-rain:before {
3610
+ content: '\E4AB';
3611
+ }
3612
+ .t-icon-windy:before {
3613
+ content: '\E4AC';
3614
+ }
3615
+ .t-icon-wink:before {
3616
+ content: '\E4AD';
3617
+ }
3618
+ .t-icon-work-history:before {
3619
+ content: '\E4AE';
3620
+ }
3621
+ .t-icon-work-off:before {
3622
+ content: '\E4AF';
3623
+ }
3624
+ .t-icon-work:before {
3625
+ content: '\E4B0';
3626
+ }
3627
+ .t-icon-wry-smile:before {
3628
+ content: '\E4B1';
3629
+ }
3630
+ .t-icon-zoom-in:before {
3631
+ content: '\E4B2';
3632
+ }
3633
+ .t-icon-zoom-out:before {
3634
+ content: '\E4B3';
3635
+ }
3636
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon,
3637
+ i.t-icon {
3638
+ font-family: WdTd !important;
3639
+ }
3640
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-add-circle:before,
3641
+ i.t-icon-add-circle:before {
3642
+ content: '\E003';
3643
+ }
3644
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-add-rectangle:before,
3645
+ i.t-icon-add-rectangle:before {
3646
+ content: '\E004';
3647
+ }
3648
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-add:before,
3649
+ i.t-icon-add:before {
3650
+ content: '\E005';
3651
+ }
3652
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-app:before,
3653
+ i.t-icon-app:before {
3654
+ content: '\E016';
3655
+ }
3656
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-arrow-down-rectangle:before,
3657
+ i.t-icon-arrow-down-rectangle:before {
3658
+ content: '\E01D';
3659
+ }
3660
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-arrow-down:before,
3661
+ i.t-icon-arrow-down:before {
3662
+ content: '\E01E';
3663
+ }
3664
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-arrow-left:before,
3665
+ i.t-icon-arrow-left:before {
3666
+ content: '\E028';
3667
+ }
3668
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-arrow-right:before,
3669
+ i.t-icon-arrow-right:before {
3670
+ content: '\E02E';
3671
+ }
3672
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-arrow-up:before,
3673
+ i.t-icon-arrow-up:before {
3674
+ content: '\E038';
3675
+ }
3676
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-attach:before,
3677
+ i.t-icon-attach:before {
3678
+ content: '\E040';
3679
+ }
3680
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-backtop-rectangle:before,
3681
+ i.t-icon-backtop-rectangle:before {
3682
+ content: '\E045';
3683
+ }
3684
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-backtop:before,
3685
+ i.t-icon-backtop:before {
3686
+ content: '\E046';
3687
+ }
3688
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-backward:before,
3689
+ i.t-icon-backward:before {
3690
+ content: '\E048';
3691
+ }
3692
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-barcode:before,
3693
+ i.t-icon-barcode:before {
3694
+ content: '\E04E';
3695
+ }
3696
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-browse-off:before,
3697
+ i.t-icon-browse-off:before {
3698
+ content: '\E071';
3699
+ }
3700
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-browse:before,
3701
+ i.t-icon-browse:before {
3702
+ content: '\E072';
3703
+ }
3704
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-bulletpoint:before,
3705
+ i.t-icon-bulletpoint:before {
3706
+ content: '\E07C';
3707
+ }
3708
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-calendar:before,
3709
+ i.t-icon-calendar:before {
3710
+ content: '\E088';
3711
+ }
3712
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-call:before,
3713
+ i.t-icon-call:before {
3714
+ content: '\E08E';
3715
+ }
3716
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-caret-down-small:before,
3717
+ i.t-icon-caret-down-small:before {
3718
+ content: '\E098';
3719
+ }
3720
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-caret-down:before,
3721
+ i.t-icon-caret-down:before {
3722
+ content: '\E099';
3723
+ }
3724
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-caret-left-small:before,
3725
+ i.t-icon-caret-left-small:before {
3726
+ content: '\E09A';
3727
+ }
3728
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-caret-left:before,
3729
+ i.t-icon-caret-left:before {
3730
+ content: '\E09B';
3731
+ }
3732
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-caret-right-small:before,
3733
+ i.t-icon-caret-right-small:before {
3734
+ content: '\E09C';
3735
+ }
3736
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-caret-right:before,
3737
+ i.t-icon-caret-right:before {
3738
+ content: '\E09D';
3739
+ }
3740
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-caret-up-small:before,
3741
+ i.t-icon-caret-up-small:before {
3742
+ content: '\E09E';
3743
+ }
3744
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-caret-up:before,
3745
+ i.t-icon-caret-up:before {
3746
+ content: '\E09F';
3747
+ }
3748
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-cart:before,
3749
+ i.t-icon-cart:before {
3750
+ content: '\E0A1';
3751
+ }
3752
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-chart-bar:before,
3753
+ i.t-icon-chart-bar:before {
3754
+ content: '\E0B8';
3755
+ }
3756
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-chart-bubble:before,
3757
+ i.t-icon-chart-bubble:before {
3758
+ content: '\E0B9';
3759
+ }
3760
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-chart-pie:before,
3761
+ i.t-icon-chart-pie:before {
3762
+ content: '\E0C3';
3763
+ }
3764
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-chart:before,
3765
+ i.t-icon-chart:before {
3766
+ content: '\E0CA';
3767
+ }
3768
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-chat:before,
3769
+ i.t-icon-chat:before {
3770
+ content: '\E0DD';
3771
+ }
3772
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-check-circle-filled:before,
3773
+ i.t-icon-check-circle-filled:before {
3774
+ content: '\E0DE';
3775
+ }
3776
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-check-circle:before,
3777
+ i.t-icon-check-circle:before {
3778
+ content: '\E0DF';
3779
+ }
3780
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-check-rectangle-filled:before,
3781
+ i.t-icon-check-rectangle-filled:before {
3782
+ content: '\E0E1';
3783
+ }
3784
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-check-rectangle:before,
3785
+ i.t-icon-check-rectangle:before {
3786
+ content: '\E0E2';
3787
+ }
3788
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-check:before,
3789
+ i.t-icon-check:before {
3790
+ content: '\E0E3';
3791
+ }
3792
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-chevron-down-circle:before,
3793
+ i.t-icon-chevron-down-circle:before {
3794
+ content: '\E0E6';
3795
+ }
3796
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-chevron-down-rectangle:before,
3797
+ i.t-icon-chevron-down-rectangle:before {
3798
+ content: '\E0E9';
3799
+ }
3800
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-chevron-down:before,
3801
+ i.t-icon-chevron-down:before {
3802
+ content: '\E0EB';
3803
+ }
3804
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-chevron-left-circle:before,
3805
+ i.t-icon-chevron-left-circle:before {
3806
+ content: '\E0EC';
3807
+ }
3808
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-chevron-left-double:before,
3809
+ i.t-icon-chevron-left-double:before {
3810
+ content: '\E0EE';
3811
+ }
3812
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-chevron-left-rectangle:before,
3813
+ i.t-icon-chevron-left-rectangle:before {
3814
+ content: '\E0EF';
3815
+ }
3816
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-chevron-left:before,
3817
+ i.t-icon-chevron-left:before {
3818
+ content: '\E0F1';
3819
+ }
3820
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-chevron-right-circle:before,
3821
+ i.t-icon-chevron-right-circle:before {
3822
+ content: '\E0F2';
3823
+ }
3824
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-chevron-right-double:before,
3825
+ i.t-icon-chevron-right-double:before {
3826
+ content: '\E0F4';
3827
+ }
3828
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-chevron-right-rectangle:before,
3829
+ i.t-icon-chevron-right-rectangle:before {
3830
+ content: '\E0F5';
3831
+ }
3832
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-chevron-right:before,
3833
+ i.t-icon-chevron-right:before {
3834
+ content: '\E0F7';
3835
+ }
3836
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-chevron-up-circle:before,
3837
+ i.t-icon-chevron-up-circle:before {
3838
+ content: '\E0F8';
3839
+ }
3840
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-chevron-up-rectangle:before,
3841
+ i.t-icon-chevron-up-rectangle:before {
3842
+ content: '\E0FB';
3843
+ }
3844
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-chevron-up:before,
3845
+ i.t-icon-chevron-up:before {
3846
+ content: '\E0FD';
3847
+ }
3848
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-circle:before,
3849
+ i.t-icon-circle:before {
3850
+ content: '\E105';
3851
+ }
3852
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-clear:before,
3853
+ i.t-icon-clear:before {
3854
+ content: '\E11B';
3855
+ }
3856
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-close-circle-filled:before,
3857
+ i.t-icon-close-circle-filled:before {
3858
+ content: '\E11C';
3859
+ }
3860
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-close-circle:before,
3861
+ i.t-icon-close-circle:before {
3862
+ content: '\E11D';
3863
+ }
3864
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-close-rectangle:before,
3865
+ i.t-icon-close-rectangle:before {
3866
+ content: '\E11F';
3867
+ }
3868
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-close:before,
3869
+ i.t-icon-close:before {
3870
+ content: '\E120';
3871
+ }
3872
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-cloud-download:before,
3873
+ i.t-icon-cloud-download:before {
3874
+ content: '\E121';
3875
+ }
3876
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-cloud-upload:before,
3877
+ i.t-icon-cloud-upload:before {
3878
+ content: '\E122';
3879
+ }
3880
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-cloud:before,
3881
+ i.t-icon-cloud:before {
3882
+ content: '\E123';
3883
+ }
3884
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-code:before,
3885
+ i.t-icon-code:before {
3886
+ content: '\E12B';
3887
+ }
3888
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-control-platform:before,
3889
+ i.t-icon-control-platform:before {
3890
+ content: '\E143';
3891
+ }
3892
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-creditcard:before,
3893
+ i.t-icon-creditcard:before {
3894
+ content: '\E14F';
3895
+ }
3896
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-dashboard:before,
3897
+ i.t-icon-dashboard:before {
3898
+ content: '\E165';
3899
+ }
3900
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-delete:before,
3901
+ i.t-icon-delete:before {
3902
+ content: '\E16E';
3903
+ }
3904
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-desktop:before,
3905
+ i.t-icon-desktop:before {
3906
+ content: '\E172';
3907
+ }
3908
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-discount-filled:before,
3909
+ i.t-icon-discount-filled:before {
3910
+ content: '\E175';
3911
+ }
3912
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-discount:before,
3913
+ i.t-icon-discount:before {
3914
+ content: '\E176';
3915
+ }
3916
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-download:before,
3917
+ i.t-icon-download:before {
3918
+ content: '\E17E';
3919
+ }
3920
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-edit-1:before,
3921
+ i.t-icon-edit-1:before {
3922
+ content: '\E188';
3923
+ }
3924
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-edit:before,
3925
+ i.t-icon-edit:before {
3926
+ content: '\E18B';
3927
+ }
3928
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-ellipsis:before,
3929
+ i.t-icon-ellipsis:before {
3930
+ content: '\E18E';
3931
+ }
3932
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-enter:before,
3933
+ i.t-icon-enter:before {
3934
+ content: '\E190';
3935
+ }
3936
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-error-circle-filled:before,
3937
+ i.t-icon-error-circle-filled:before {
3938
+ content: '\E192';
3939
+ }
3940
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-error-circle:before,
3941
+ i.t-icon-error-circle:before {
3942
+ content: '\E193';
3943
+ }
3944
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-error:before,
3945
+ i.t-icon-error:before {
3946
+ content: '\E195';
3947
+ }
3948
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-file-add:before,
3949
+ i.t-icon-file-add:before {
3950
+ content: '\E1A7';
3951
+ }
3952
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-file-copy:before,
3953
+ i.t-icon-file-copy:before {
3954
+ content: '\E1AC';
3955
+ }
3956
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-file-excel:before,
3957
+ i.t-icon-file-excel:before {
3958
+ content: '\E1AE';
3959
+ }
3960
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-file-image:before,
3961
+ i.t-icon-file-image:before {
3962
+ content: '\E1B1';
3963
+ }
3964
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-file-paste:before,
3965
+ i.t-icon-file-paste:before {
3966
+ content: '\E1B8';
3967
+ }
3968
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-file-pdf:before,
3969
+ i.t-icon-file-pdf:before {
3970
+ content: '\E1B9';
3971
+ }
3972
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-file-powerpoint:before,
3973
+ i.t-icon-file-powerpoint:before {
3974
+ content: '\E1BA';
3975
+ }
3976
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-file-unknown:before,
3977
+ i.t-icon-file-unknown:before {
3978
+ content: '\E1C0';
3979
+ }
3980
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-file-word:before,
3981
+ i.t-icon-file-word:before {
3982
+ content: '\E1C2';
3983
+ }
3984
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-file:before,
3985
+ i.t-icon-file:before {
3986
+ content: '\E1C4';
3987
+ }
3988
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-filter-clear:before,
3989
+ i.t-icon-filter-clear:before {
3990
+ content: '\E1CC';
3991
+ }
3992
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-filter:before,
3993
+ i.t-icon-filter:before {
3994
+ content: '\E1CE';
3995
+ }
3996
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-flag:before,
3997
+ i.t-icon-flag:before {
3998
+ content: '\E1D8';
3999
+ }
4000
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-folder-add:before,
4001
+ i.t-icon-folder-add:before {
4002
+ content: '\E1E5';
4003
+ }
4004
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-folder-open:before,
4005
+ i.t-icon-folder-open:before {
4006
+ content: '\E1EF';
4007
+ }
4008
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-folder:before,
4009
+ i.t-icon-folder:before {
4010
+ content: '\E1F5';
4011
+ }
4012
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-fork:before,
4013
+ i.t-icon-fork:before {
4014
+ content: '\E1F7';
4015
+ }
4016
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-format-horizontal-align-bottom:before,
4017
+ i.t-icon-format-horizontal-align-bottom:before {
4018
+ content: '\E1F9';
4019
+ }
4020
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-format-horizontal-align-center:before,
4021
+ i.t-icon-format-horizontal-align-center:before {
4022
+ content: '\E1FA';
4023
+ }
4024
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-format-horizontal-align-top:before,
4025
+ i.t-icon-format-horizontal-align-top:before {
4026
+ content: '\E1FB';
4027
+ }
4028
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-format-vertical-align-center:before,
4029
+ i.t-icon-format-vertical-align-center:before {
4030
+ content: '\E1FC';
4031
+ }
4032
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-format-vertical-align-left:before,
4033
+ i.t-icon-format-vertical-align-left:before {
4034
+ content: '\E1FD';
4035
+ }
4036
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-format-vertical-align-right:before,
4037
+ i.t-icon-format-vertical-align-right:before {
4038
+ content: '\E1FE';
4039
+ }
4040
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-forward:before,
4041
+ i.t-icon-forward:before {
4042
+ content: '\E1FF';
4043
+ }
4044
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-fullscreen-exit:before,
4045
+ i.t-icon-fullscreen-exit:before {
4046
+ content: '\E206';
4047
+ }
4048
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-fullscreen:before,
4049
+ i.t-icon-fullscreen:before {
4050
+ content: '\E207';
4051
+ }
4052
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-gender-female:before,
4053
+ i.t-icon-gender-female:before {
4054
+ content: '\E20F';
4055
+ }
4056
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-gender-male:before,
4057
+ i.t-icon-gender-male:before {
4058
+ content: '\E210';
4059
+ }
4060
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-gift:before,
4061
+ i.t-icon-gift:before {
4062
+ content: '\E224';
4063
+ }
4064
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-heart-filled:before,
4065
+ i.t-icon-heart-filled:before {
4066
+ content: '\E23B';
4067
+ }
4068
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-heart:before,
4069
+ i.t-icon-heart:before {
4070
+ content: '\E23C';
4071
+ }
4072
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-help-circle-filled:before,
4073
+ i.t-icon-help-circle-filled:before {
4074
+ content: '\E23D';
4075
+ }
4076
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-help-circle:before,
4077
+ i.t-icon-help-circle:before {
4078
+ content: '\E23E';
4079
+ }
4080
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-help:before,
4081
+ i.t-icon-help:before {
4082
+ content: '\E240';
4083
+ }
4084
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-history:before,
4085
+ i.t-icon-history:before {
4086
+ content: '\E244';
4087
+ }
4088
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-home:before,
4089
+ i.t-icon-home:before {
4090
+ content: '\E245';
4091
+ }
4092
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-hourglass:before,
4093
+ i.t-icon-hourglass:before {
4094
+ content: '\E249';
4095
+ }
4096
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-image:before,
4097
+ i.t-icon-image:before {
4098
+ content: '\E257';
4099
+ }
4100
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-info-circle-filled:before,
4101
+ i.t-icon-info-circle-filled:before {
4102
+ content: '\E25B';
4103
+ }
4104
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-info-circle:before,
4105
+ i.t-icon-info-circle:before {
4106
+ content: '\E25C';
4107
+ }
4108
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-internet:before,
4109
+ i.t-icon-internet:before {
4110
+ content: '\E263';
4111
+ }
4112
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-jump:before,
4113
+ i.t-icon-jump:before {
4114
+ content: '\E267';
4115
+ }
4116
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-laptop:before,
4117
+ i.t-icon-laptop:before {
4118
+ content: '\E269';
4119
+ }
4120
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-layers:before,
4121
+ i.t-icon-layers:before {
4122
+ content: '\E26A';
4123
+ }
4124
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-link-unlink:before,
4125
+ i.t-icon-link-unlink:before {
4126
+ content: '\E293';
4127
+ }
4128
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-link:before,
4129
+ i.t-icon-link:before {
4130
+ content: '\E294';
4131
+ }
4132
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-loading:before,
4133
+ i.t-icon-loading:before {
4134
+ content: '\E298';
4135
+ }
4136
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-location:before,
4137
+ i.t-icon-location:before {
4138
+ content: '\E29F';
4139
+ }
4140
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-lock-off:before,
4141
+ i.t-icon-lock-off:before {
4142
+ content: '\E2A0';
4143
+ }
4144
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-lock-on:before,
4145
+ i.t-icon-lock-on:before {
4146
+ content: '\E2A1';
4147
+ }
4148
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-login:before,
4149
+ i.t-icon-login:before {
4150
+ content: '\E2A3';
4151
+ }
4152
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-logo-android:before,
4153
+ i.t-icon-logo-android:before {
4154
+ content: '\E2A7';
4155
+ }
4156
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-logo-apple-filled:before,
4157
+ i.t-icon-logo-apple-filled:before {
4158
+ content: '\E2A8';
4159
+ }
4160
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-logo-apple:before,
4161
+ i.t-icon-logo-apple:before {
4162
+ content: '\E2A9';
4163
+ }
4164
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-logo-chrome-filled:before,
4165
+ i.t-icon-logo-chrome-filled:before {
4166
+ content: '\E2AB';
4167
+ }
4168
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-logo-chrome:before,
4169
+ i.t-icon-logo-chrome:before {
4170
+ content: '\E2AC';
4171
+ }
4172
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-logo-codepen:before,
4173
+ i.t-icon-logo-codepen:before {
4174
+ content: '\E2AE';
4175
+ }
4176
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-logo-github-filled:before,
4177
+ i.t-icon-logo-github-filled:before {
4178
+ content: '\E2B4';
4179
+ }
4180
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-logo-github:before,
4181
+ i.t-icon-logo-github:before {
4182
+ content: '\E2B5';
4183
+ }
4184
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-logo-ie-filled:before,
4185
+ i.t-icon-logo-ie-filled:before {
4186
+ content: '\E2B7';
4187
+ }
4188
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-logo-ie:before,
4189
+ i.t-icon-logo-ie:before {
4190
+ content: '\E2B8';
4191
+ }
4192
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-logo-windows-filled:before,
4193
+ i.t-icon-logo-windows-filled:before {
4194
+ content: '\E2BF';
4195
+ }
4196
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-logo-windows:before,
4197
+ i.t-icon-logo-windows:before {
4198
+ content: '\E2C0';
4199
+ }
4200
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-logout:before,
4201
+ i.t-icon-logout:before {
4202
+ content: '\E2C2';
4203
+ }
4204
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-mail:before,
4205
+ i.t-icon-mail:before {
4206
+ content: '\E2C5';
4207
+ }
4208
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-menu-fold:before,
4209
+ i.t-icon-menu-fold:before {
4210
+ content: '\E2EE';
4211
+ }
4212
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-menu-unfold:before,
4213
+ i.t-icon-menu-unfold:before {
4214
+ content: '\E2EF';
4215
+ }
4216
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-minus-circle-filled:before,
4217
+ i.t-icon-minus-circle-filled:before {
4218
+ content: '\E2F6';
4219
+ }
4220
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-minus-circle:before,
4221
+ i.t-icon-minus-circle:before {
4222
+ content: '\E2F7';
4223
+ }
4224
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-minus-rectangle:before,
4225
+ i.t-icon-minus-rectangle:before {
4226
+ content: '\E2F9';
4227
+ }
4228
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-mobile-vibrate:before,
4229
+ i.t-icon-mobile-vibrate:before {
4230
+ content: '\E300';
4231
+ }
4232
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-mobile:before,
4233
+ i.t-icon-mobile:before {
4234
+ content: '\E301';
4235
+ }
4236
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-more:before,
4237
+ i.t-icon-more:before {
4238
+ content: '\E30A';
4239
+ }
4240
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-move:before,
4241
+ i.t-icon-move:before {
4242
+ content: '\E30F';
4243
+ }
4244
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-next:before,
4245
+ i.t-icon-next:before {
4246
+ content: '\E31C';
4247
+ }
4248
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-notification-filled:before,
4249
+ i.t-icon-notification-filled:before {
4250
+ content: '\E322';
4251
+ }
4252
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-notification:before,
4253
+ i.t-icon-notification:before {
4254
+ content: '\E323';
4255
+ }
4256
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-order-adjustment-column:before,
4257
+ i.t-icon-order-adjustment-column:before {
4258
+ content: '\E33C';
4259
+ }
4260
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-order-ascending:before,
4261
+ i.t-icon-order-ascending:before {
4262
+ content: '\E33D';
4263
+ }
4264
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-order-descending:before,
4265
+ i.t-icon-order-descending:before {
4266
+ content: '\E33E';
4267
+ }
4268
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-page-first:before,
4269
+ i.t-icon-page-first:before {
4270
+ content: '\E340';
4271
+ }
4272
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-page-last:before,
4273
+ i.t-icon-page-last:before {
4274
+ content: '\E342';
4275
+ }
4276
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-pause-circle-filled:before,
4277
+ i.t-icon-pause-circle-filled:before {
4278
+ content: '\E351';
4279
+ }
4280
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-pin:before,
4281
+ i.t-icon-pin:before {
4282
+ content: '\E366';
4283
+ }
4284
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-play-circle-filled:before,
4285
+ i.t-icon-play-circle-filled:before {
4286
+ content: '\E367';
4287
+ }
4288
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-play-circle-stroke:before,
4289
+ i.t-icon-play-circle-stroke:before {
4290
+ content: '\E369';
4291
+ }
4292
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-play-circle:before,
4293
+ i.t-icon-play-circle:before {
4294
+ content: '\E36A';
4295
+ }
4296
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-play:before,
4297
+ i.t-icon-play:before {
4298
+ content: '\E36D';
4299
+ }
4300
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-poweroff:before,
4301
+ i.t-icon-poweroff:before {
4302
+ content: '\E372';
4303
+ }
4304
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-precise-monitor:before,
4305
+ i.t-icon-precise-monitor:before {
4306
+ content: '\E373';
4307
+ }
4308
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-previous:before,
4309
+ i.t-icon-previous:before {
4310
+ content: '\E374';
4311
+ }
4312
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-print:before,
4313
+ i.t-icon-print:before {
4314
+ content: '\E375';
4315
+ }
4316
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-qrcode:before,
4317
+ i.t-icon-qrcode:before {
4318
+ content: '\E379';
4319
+ }
4320
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-queue:before,
4321
+ i.t-icon-queue:before {
4322
+ content: '\E37C';
4323
+ }
4324
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-rectangle:before,
4325
+ i.t-icon-rectangle:before {
4326
+ content: '\E385';
4327
+ }
4328
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-refresh:before,
4329
+ i.t-icon-refresh:before {
4330
+ content: '\E386';
4331
+ }
4332
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-remove:before,
4333
+ i.t-icon-remove:before {
4334
+ content: '\E38A';
4335
+ }
4336
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-rollback:before,
4337
+ i.t-icon-rollback:before {
4338
+ content: '\E390';
4339
+ }
4340
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-root-list:before,
4341
+ i.t-icon-root-list:before {
4342
+ content: '\E392';
4343
+ }
4344
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-round:before,
4345
+ i.t-icon-round:before {
4346
+ content: '\E396';
4347
+ }
4348
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-save:before,
4349
+ i.t-icon-save:before {
4350
+ content: '\E39E';
4351
+ }
4352
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-scan:before,
4353
+ i.t-icon-scan:before {
4354
+ content: '\E3A0';
4355
+ }
4356
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-search:before,
4357
+ i.t-icon-search:before {
4358
+ content: '\E3A8';
4359
+ }
4360
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-secured:before,
4361
+ i.t-icon-secured:before {
4362
+ content: '\E3A9';
4363
+ }
4364
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-server:before,
4365
+ i.t-icon-server:before {
4366
+ content: '\E3B1';
4367
+ }
4368
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-service:before,
4369
+ i.t-icon-service:before {
4370
+ content: '\E3B2';
4371
+ }
4372
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-setting:before,
4373
+ i.t-icon-setting:before {
4374
+ content: '\E3B4';
4375
+ }
4376
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-share:before,
4377
+ i.t-icon-share:before {
4378
+ content: '\E3B6';
4379
+ }
4380
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-shop:before,
4381
+ i.t-icon-shop:before {
4382
+ content: '\E3BF';
4383
+ }
4384
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-slash:before,
4385
+ i.t-icon-slash:before {
4386
+ content: '\E3CA';
4387
+ }
4388
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-sound:before,
4389
+ i.t-icon-sound:before {
4390
+ content: '\E3D8';
4391
+ }
4392
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-star-filled:before,
4393
+ i.t-icon-star-filled:before {
4394
+ content: '\E3DB';
4395
+ }
4396
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-star:before,
4397
+ i.t-icon-star:before {
4398
+ content: '\E3DC';
4399
+ }
4400
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-stop-circle-filled:before,
4401
+ i.t-icon-stop-circle-filled:before {
4402
+ content: '\E3DF';
4403
+ }
4404
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-stop-circle:before,
4405
+ i.t-icon-stop-circle:before {
4406
+ content: '\E3E1';
4407
+ }
4408
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-stop:before,
4409
+ i.t-icon-stop:before {
4410
+ content: '\E3E2';
4411
+ }
4412
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-swap-left:before,
4413
+ i.t-icon-swap-left:before {
4414
+ content: '\E3EF';
4415
+ }
4416
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-swap-right:before,
4417
+ i.t-icon-swap-right:before {
4418
+ content: '\E3F0';
4419
+ }
4420
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-swap:before,
4421
+ i.t-icon-swap:before {
4422
+ content: '\E3F1';
4423
+ }
4424
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-thumb-down:before,
4425
+ i.t-icon-thumb-down:before {
4426
+ content: '\E42D';
4427
+ }
4428
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-thumb-up:before,
4429
+ i.t-icon-thumb-up:before {
4430
+ content: '\E430';
4431
+ }
4432
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-time-filled:before,
4433
+ i.t-icon-time-filled:before {
4434
+ content: '\E436';
4435
+ }
4436
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-time:before,
4437
+ i.t-icon-time:before {
4438
+ content: '\E437';
4439
+ }
4440
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-tips:before,
4441
+ i.t-icon-tips:before {
4442
+ content: '\E439';
4443
+ }
4444
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-tools:before,
4445
+ i.t-icon-tools:before {
4446
+ content: '\E43C';
4447
+ }
4448
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-unfold-less:before,
4449
+ i.t-icon-unfold-less:before {
4450
+ content: '\E45F';
4451
+ }
4452
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-unfold-more:before,
4453
+ i.t-icon-unfold-more:before {
4454
+ content: '\E460';
4455
+ }
4456
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-upload:before,
4457
+ i.t-icon-upload:before {
4458
+ content: '\E465';
4459
+ }
4460
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-usb:before,
4461
+ i.t-icon-usb:before {
4462
+ content: '\E467';
4463
+ }
4464
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-user-add:before,
4465
+ i.t-icon-user-add:before {
4466
+ content: '\E469';
4467
+ }
4468
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-user-avatar:before,
4469
+ i.t-icon-user-avatar:before {
4470
+ content: '\E46E';
4471
+ }
4472
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-user-circle:before,
4473
+ i.t-icon-user-circle:before {
4474
+ content: '\E473';
4475
+ }
4476
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-user-clear:before,
4477
+ i.t-icon-user-clear:before {
4478
+ content: '\E474';
4479
+ }
4480
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-user-talk:before,
4481
+ i.t-icon-user-talk:before {
4482
+ content: '\E480';
4483
+ }
4484
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-user:before,
4485
+ i.t-icon-user:before {
4486
+ content: '\E487';
4487
+ }
4488
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-usergroup-add:before,
4489
+ i.t-icon-usergroup-add:before {
4490
+ content: '\E488';
4491
+ }
4492
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-usergroup-clear:before,
4493
+ i.t-icon-usergroup-clear:before {
4494
+ content: '\E489';
4495
+ }
4496
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-usergroup:before,
4497
+ i.t-icon-usergroup:before {
4498
+ content: '\E48A';
4499
+ }
4500
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-video:before,
4501
+ i.t-icon-video:before {
4502
+ content: '\E496';
4503
+ }
4504
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-view-column:before,
4505
+ i.t-icon-view-column:before {
4506
+ content: '\E498';
4507
+ }
4508
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-view-list:before,
4509
+ i.t-icon-view-list:before {
4510
+ content: '\E49A';
4511
+ }
4512
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-view-module:before,
4513
+ i.t-icon-view-module:before {
4514
+ content: '\E49B';
4515
+ }
4516
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-wallet:before,
4517
+ i.t-icon-wallet:before {
4518
+ content: '\E49D';
4519
+ }
4520
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-wifi:before,
4521
+ i.t-icon-wifi:before {
4522
+ content: '\E4A8';
4523
+ }
4524
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-zoom-in:before,
4525
+ i.t-icon-zoom-in:before {
4526
+ content: '\E4B2';
4527
+ }
4528
+ .wa-comp-CLOUDBASE_STANDARD-Icon .t-icon-zoom-out:before,
4529
+ i.t-icon-zoom-out:before {
4530
+ content: '\E4B3';
4531
+ }
4532
+ @font-face {
4533
+ font-family: wd-lcap-icon;
4534
+ font-weight: 400;
4535
+ font-style: normal;
4536
+ src: url(data:application/font-woff2;charset=utf-8;base64,d09GMgABAAAAAAkMAA0AAAAAFZgAAAi1AAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP0ZGVE0cGh4GYACCXhEICpxYlmoLTgABNgIkA1gEIAWDMweDBRtzEVGUTVKf7GdCpjLGY/HIYGvbDpn6q7Qdj3xvUaZJUNFads3M7geYVSSiCgsZJYFkhEfn2DjU9//jpn8D1QTqVBQqSrtAVZAq1bwkpTOo0Hbz2tnYfkP3ZzAxpv6ZiSFf3OHh8/b+/oqzxIt4QmFX5ImmIe0SWAOEOJL2n9ZSO5PcCwErnTjzLxOYud0Az24IS8AOXSWgBtyL2lbFtkKxMAhSoPNdlrMFakJqTjuamX+3E3teqiTm6/UpPkH213oLGNahKuAtpQ0wbERrXcnzO1bBpK388B4D6I5fCT9kh69EbSy65RKsi/26+7qKtJv2oREq98FIbnbJO3TaMjBjPcwtqFDG9qp0XxcX/7ndSrUHxotP16TcVrHOGHgIM0PwK6JIMvN/BgpiRTDc/CFwhO+x7ZDYI/ONMoO4NDIX3PYHqpDAWg0a1byp4P4j3ft6fX2jqrvbO6bLU5gtI53w8U4ueG4vS7h0Ze7t9hJUld5xMnwpJp2X5O8KxChB4KG0IQ8pBk+JUXq17qFT7cTN1G17zf2SrGdNz1yMi7Agh0PzRINR0otFF515Z3Fzzml7wfmCrEvFl1zV9wiL6o6j8ELh5LgzjkKpbVTilkw1XLvyYxiCxZHZhpkOEZY3gDto5Ci7PcrBzbTTOYWZGNeqCfoBN0loREx3AceICXbDYFPHIUNaFz37kj0Ei2vbd+MI4fpcJncQ7UiqZzDbycj160Ox7c5YRB0pveJQ3YE71D9yKW5lF9orrq/YQX3XWXa1DDNuc8TQbUcr6ezQQEfN/bEOsmgp7+bEmaOZvxxKsTdORFitIiMxPsBbiIQUJqBxjw7Wv8OPnYIEBlpoYHgDFN/AoHKaGqHoEsTMoJkyCk1BVClDG4WIgACMYEihHNcRrEBLtAtpPsHDR2hmg0XUYuVCqJIuijEgI33NhR3cq+UqR216c91Dp/wkZso+5ap/RFhqHzhkJ4Ajj9tr7uMGA+qimQHUTFOtDN2GmBajgI/zBCDkEXwh4w9+mIFgtQSf4BnP447P8fViKWSgKXpaMshoRh0H+cu3QzkPLQgxwaTGgeAMY/ghgFIpHsHHMdj5HbMQztMOgb/zYwQf563lK4EO80vM9IqwvADuubD+SUa9lp2M2E6dlqEoRFMMzTAISVqNV2EVu7Sr56jz2sxHZjtwV+30MZNzR3xwy21IHgdOdsJR++Am9Zt9CjPJTzrrHuLtgGMdFpJ1ODVE+FlngnUbAXDTnowNG8IEpR+LmWy4+WA4AI6ZXASAQ/ns1179PmP6cMbfFYRCYcu/y9mmz/j9VfqqVaNZCkJB1NRw8qntmA5j2+3S7mEU94VLJnN9kTsNd0vtEw8emBAfnpqbmxq+cD5wcGI6F/cmlVry6X2VpHdNr6Xvf1rSvP+bcZL9jQJdTsRoQE+A5wbKsH26JDoJjXFsEpPYo0OJngPHJaIkWtedxCay3JhNEKPrYXTS2JhPmNNNdkiaOoaGbWfJeLYhXiMZGBY3Spo6WEkDjAwMNoh5TaajSdwkGRqI/85r2Mv4W9bZExPemzd86sLG6h4vaayTkWiWcjU1CztzohIpnwYMBwSSrQLtf/8wX5QPVMJFuYT2nZU9wWaYtxy8b9j4ycHg9GvxOXpEXvFWi15LSkvyVb982ls3NjD1eoTi/oXBFnWoKlRTPH+eTr5nHQE5LXdU5x0d91arTmOl7NfU2gWzp2U+OD/YyufPYa0AvG7aeCnBkDem4EbDmiFgcdP5cRt6rdm6r7ybGqu++K73XLQKuNOvuTk7a9TmvjYiDXn5AmMeu/+zvSyv9SP3/7COdc7nr56/vDw0MvTPL6llXDLchuypmJq2bicN9M7+8ji/uK9zHCjU/W+0Fgp6Q+sq76fRAX5q7ly1+lHCpe8vJV4q1n7c3789MWF7/xTJQ0DB8YnLlmWmzaqoj66MqtTrKr2O+vpKRusqSj+6vkE2UjEr7aWim/dsdJEoqa6utbKosKqlrj5RVNSWiflSLVWFRZWtXCaxGbg0zd/fHNFqX76CZaHY9tNPj34UIY9+Mn8s7wClLQ7bIfqQDaUzYN7x9WTMOV1ntYtmtaZz6SDmI1Yj1kgGBsQXUbdLGhpU1/ckK4uVaMRS43e0s5XdMDDAv+fsxfFK5eMn+flK1c8/L15MHlG+YTYTKW4025bWp7UUQH2n1j/y9Tt6J+5mykLynYv6i9HZvqC/QNV2kZ7HXO/X7/bDf9+T1/Rpe/YolYsWYXO1XS/CmOv6KUuBnUoITNTDEhJNqb1rYTOf1sRhF1D0EvKOkYiRSHnElw9UGd7bkVIq17pUYpqZfGAtizVSDozNPORXtY3YTig+HhCnpergJhqZl1ZlhDTKQz8O+lKEtWVWLTXTaNPBSmt1Z6faC6hmaq+/j+gGT66PrtpKxquCKzUqTFI36xjltiipsN34AAhYK30U0Si9PDd4Qrlx5gXZbykCAdhWAj3p+F8DA+WBim/aNhq9g86DAocD+KIj0VJtIEzs137fvNcn+Zf8+xChp637Q/Eo/0gLUBkjiCckExRp4iSCSMhV8TToMmywXB/GhkcF5ziw45OB87l85aUMFg0NLu2/zrqV/BH9vE5gRJkaL8IilGuqC03JjHIZdlQAzgqTSpcqAx7mVejwNSGWWs4aGlmhqdGjnCFPBYAqTFrMVhmw/tErzDrt1E1nqkx9Os0wHbxR48t8+rYA9icsgyFzkc5s8Ne9hwCEXWH8WM82YAhjUzGZLCR46/+MZFkk2djoLT1IzKCbi3WV1hnUrcvSm+MZtRSpiYWanQU+67DN62G7tnPGP8h5DgBGvMgjgCILl0eQyJQoo5wKKqmimhpqqSOQIIIJQUQoYYQTQSRRRBNDLHGIkRBPAonZMHXOzF6Z99D0PpIk80xVIUlCBjmykYNc5CEfBShEJaqggBIqjzpSRkIGObKRg1zkIR8FKEQlqqCAEiqPulNOAgAA)
4537
+ format('woff2');
4538
+ }
4539
+ .wd-lcap-icon {
4540
+ font-family: wd-lcap-icon !important;
4541
+ speak: none;
4542
+ font-style: normal;
4543
+ font-weight: 400;
4544
+ font-variant: normal;
4545
+ text-transform: none;
4546
+ text-rendering: auto;
4547
+ line-height: 1;
4548
+ -webkit-font-smoothing: antialiased;
4549
+ -moz-osx-font-smoothing: grayscale;
4550
+ display: inline-block;
4551
+ text-align: center;
4552
+ -webkit-font-smoothing: antialiased;
4553
+ -moz-osx-font-smoothing: grayscale;
4554
+ vertical-align: middle;
4555
+ width: 1em;
4556
+ height: 1em;
4557
+ }
4558
+ .wd-lcap-icon-nointernet:before {
4559
+ content: '\e900';
4560
+ }
4561
+ .wd-lcap-icon-success:before {
4562
+ content: '\e901';
4563
+ }
4564
+ .wd-lcap-icon-warning:before {
4565
+ content: '\e902';
4566
+ }
4567
+ .wd-lcap-icon-pending:before {
4568
+ content: '\e903';
4569
+ }
4570
+ .wd-lcap-icon-refresh:before {
4571
+ content: '\e904';
4572
+ }
4573
+ .wd-lcap-icon-folder:before {
4574
+ content: '\e905';
4575
+ }
4576
+ .wd-lcap-icon-arrowup:before {
4577
+ content: '\e906';
4578
+ }
4579
+ .wd-lcap-icon-arrowdown:before {
4580
+ content: '\e907';
4581
+ }
4582
+ .wd-lcap-icon-arrowleft:before {
4583
+ content: '\e908';
4584
+ }
4585
+ .wd-lcap-icon-arrowright:before {
4586
+ content: '\e909';
4587
+ }
4588
+ .wd-lcap-icon-chevronup:before {
4589
+ content: '\e90a';
4590
+ }
4591
+ .wd-lcap-icon-chevrondown:before {
4592
+ content: '\e90b';
4593
+ }
4594
+ .wd-lcap-icon-chevronleft:before {
4595
+ content: '\e90c';
4596
+ }
4597
+ .wd-lcap-icon-chevronright:before {
4598
+ content: '\e90d';
4599
+ }
4600
+ .wd-lcap-icon-delete:before {
4601
+ content: '\e90e';
4602
+ }
4603
+ .wd-lcap-icon-edit:before {
4604
+ content: '\e90f';
4605
+ }
4606
+ .wd-lcap-icon-search:before {
4607
+ content: '\e910';
4608
+ }
4609
+ .wd-lcap-icon-check:before {
4610
+ content: '\e911';
4611
+ }
4612
+ .wd-lcap-icon-close:before {
4613
+ content: '\e912';
4614
+ }
4615
+ .wd-lcap-icon-add:before {
4616
+ content: '\e913';
4617
+ }
4618
+ .wd-lcap-icon-download:before {
4619
+ content: '\e914';
4620
+ }
4621
+ .wd-lcap-icon-success-fill:before {
4622
+ content: '\e915';
4623
+ }
4624
+ .wd-lcap-icon-close-fill:before {
4625
+ content: '\e916';
4626
+ }
4627
+ .wd-lcap-icon-minus-fill:before {
4628
+ content: '\e917';
4629
+ }
4630
+ .wd-lcap-icon-add-fill:before {
4631
+ content: '\e918';
4632
+ }
4633
+ .wd-lcap-icon-info-fill:before {
4634
+ content: '\e919';
4635
+ }
4636
+ .wd-lcap-icon-pending-fill:before {
4637
+ content: '\e91a';
4638
+ }
4639
+ .wd-lcap-icon-warning-fill:before {
4640
+ content: '\e91b';
4641
+ }
4642
+ .wd-lcap-icon-more:before {
4643
+ content: '\e91c';
4644
+ }
4645
+ .wd-lcap-icon-star:before {
4646
+ content: '\e91d';
4647
+ }
4648
+ .wd-lcap-icon-star-fill:before {
4649
+ content: '\e91e';
4650
+ }
4651
+ .wd-lcap-icon-location:before {
4652
+ content: '\e91f';
4653
+ }
4654
+ .wd-lcap-icon-question:before {
4655
+ content: '\e920';
4656
+ }