@tagplus/components 5.2.18 → 5.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (149) hide show
  1. package/dist/es/_virtual/_plugin-vue_export-helper.mjs +10 -0
  2. package/dist/es/components.css +2391 -0
  3. package/dist/es/node_modules/@element-plus/icons-vue/dist/index.mjs +148 -0
  4. package/dist/es/node_modules/@popperjs/core/lib/enums.mjs +22 -0
  5. package/dist/es/node_modules/@vue/shared/dist/shared.esm-bundler.mjs +28 -0
  6. package/dist/es/node_modules/@vueuse/core/index.mjs +172 -0
  7. package/dist/es/node_modules/@vueuse/shared/index.mjs +68 -0
  8. package/dist/es/node_modules/element-plus/es/constants/size.mjs +4 -0
  9. package/dist/es/node_modules/element-plus/es/hooks/use-focus-controller/index.mjs +64 -0
  10. package/dist/es/node_modules/element-plus/es/hooks/use-id/index.mjs +30 -0
  11. package/dist/es/node_modules/element-plus/es/hooks/use-locale/index.mjs +29 -0
  12. package/dist/es/node_modules/element-plus/es/hooks/use-namespace/index.mjs +79 -0
  13. package/dist/es/node_modules/element-plus/es/hooks/use-prop/index.mjs +11 -0
  14. package/dist/es/node_modules/element-plus/es/hooks/use-size/index.mjs +20 -0
  15. package/dist/es/node_modules/element-plus/es/locale/lang/en.mjs +182 -0
  16. package/dist/es/node_modules/element-plus/es/utils/error.mjs +16 -0
  17. package/dist/es/node_modules/element-plus/es/utils/types.mjs +9 -0
  18. package/dist/es/node_modules/element-plus/es/utils/vue/props/runtime.mjs +42 -0
  19. package/dist/es/src/components/Autosuggest/Autosuggest.vue.mjs +446 -0
  20. package/dist/es/src/components/Autosuggest/Multisuggest.vue.mjs +17 -0
  21. package/dist/es/src/components/Autosuggest/autosuggest-props.mjs +204 -0
  22. package/dist/es/src/components/Autosuggest/core.mjs +56 -0
  23. package/dist/es/src/components/Autosuggest/multisuggest-props.mjs +11 -0
  24. package/dist/es/src/components/Autosuggest/option.vue.mjs +118 -0
  25. package/dist/es/src/components/Autosuggest/select-dropdown.vue.mjs +62 -0
  26. package/dist/es/src/components/Autosuggest/useOption.mjs +93 -0
  27. package/dist/es/src/components/Autosuggest/useSelect.mjs +803 -0
  28. package/dist/es/src/components/Inline/Inline.vue.mjs +125 -0
  29. package/dist/es/src/components/Inline/index.mjs +4 -0
  30. package/dist/es/src/components/InputNumber/InputNumber.vue.mjs +360 -0
  31. package/dist/es/src/components/InputNumber/index.mjs +4 -0
  32. package/dist/es/src/components/InputNumber/input-number.mjs +128 -0
  33. package/dist/es/src/components/Loader/Loader.vue.mjs +59 -0
  34. package/dist/es/src/components/Loader/index.mjs +4 -0
  35. package/dist/es/src/components/Money/Money.vue.mjs +72 -0
  36. package/dist/es/src/components/Money/index.mjs +4 -0
  37. package/dist/es/src/components/Multisuggest/index.mjs +4 -0
  38. package/dist/es/src/components/OptionsList/OptionsList.vue.mjs +28 -0
  39. package/dist/es/src/components/OptionsList/index.mjs +4 -0
  40. package/dist/es/src/components/OptionsListItem/OptionsListItem.vue.mjs +96 -0
  41. package/dist/es/src/components/OptionsListItem/index.mjs +4 -0
  42. package/dist/es/src/components/Percent/Percent.vue.mjs +73 -0
  43. package/dist/es/src/components/Percent/index.mjs +4 -0
  44. package/dist/es/src/components/Skeleton/Skeleton.vue.mjs +79 -0
  45. package/dist/es/src/components/Skeleton/index.mjs +4 -0
  46. package/dist/es/src/components/Step/Step.vue.mjs +206 -0
  47. package/dist/es/src/components/Step/index.mjs +4 -0
  48. package/dist/es/src/components/Steps/Steps.vue.mjs +15 -0
  49. package/dist/es/src/components/Steps/index.mjs +4 -0
  50. package/dist/es/src/components/Tip/Tip.vue.mjs +160 -0
  51. package/dist/es/src/components/Tip/index.mjs +4 -0
  52. package/dist/es/src/components/index.mjs +32 -0
  53. package/dist/es/src/locale/i18nCreator.mjs +93 -0
  54. package/dist/es/src/locale/lang/pt-br.mjs +21 -0
  55. package/dist/es/src/main.mjs +17 -0
  56. package/dist/es/src/mixins/floatFormatter.mjs +42 -0
  57. package/dist/es/src/plugins/currency.mjs +69 -0
  58. package/dist/es/src/utils/constants.mjs +6 -0
  59. package/dist/es/src/utils/error.mjs +22 -0
  60. package/dist/es/src/utils/i18n.mjs +4 -0
  61. package/dist/es/src/utils/icon.mjs +9 -0
  62. package/dist/es/src/utils/index.mjs +11 -0
  63. package/dist/es/src/utils/runtime.mjs +50 -0
  64. package/dist/es/src/utils/scroll.mjs +28 -0
  65. package/dist/es/src/utils/strings.mjs +4 -0
  66. package/dist/es/src/utils/types.mjs +9 -0
  67. package/dist/es/src/utils/use-derived-namespace.mjs +15 -0
  68. package/dist/es/src/utils/use-form-common-props.mjs +25 -0
  69. package/dist/es/src/utils/use-form-item.mjs +61 -0
  70. package/dist/es/src/utils/use-id.mjs +35 -0
  71. package/dist/es/src/utils/use-input.mjs +31 -0
  72. package/dist/lib/_virtual/_plugin-vue_export-helper.js +10 -0
  73. package/dist/lib/components.css +2391 -0
  74. package/dist/lib/node_modules/@element-plus/icons-vue/dist/index.js +148 -0
  75. package/dist/lib/node_modules/@popperjs/core/lib/enums.js +22 -0
  76. package/dist/lib/node_modules/@vue/shared/dist/shared.esm-bundler.js +28 -0
  77. package/dist/lib/node_modules/@vueuse/core/index.js +170 -0
  78. package/dist/lib/node_modules/@vueuse/shared/index.js +68 -0
  79. package/dist/lib/node_modules/element-plus/es/constants/size.js +4 -0
  80. package/dist/lib/node_modules/element-plus/es/hooks/use-focus-controller/index.js +64 -0
  81. package/dist/lib/node_modules/element-plus/es/hooks/use-id/index.js +30 -0
  82. package/dist/lib/node_modules/element-plus/es/hooks/use-locale/index.js +29 -0
  83. package/dist/lib/node_modules/element-plus/es/hooks/use-namespace/index.js +79 -0
  84. package/dist/lib/node_modules/element-plus/es/hooks/use-prop/index.js +11 -0
  85. package/dist/lib/node_modules/element-plus/es/hooks/use-size/index.js +20 -0
  86. package/dist/lib/node_modules/element-plus/es/locale/lang/en.js +182 -0
  87. package/dist/lib/node_modules/element-plus/es/utils/error.js +16 -0
  88. package/dist/lib/node_modules/element-plus/es/utils/types.js +9 -0
  89. package/dist/lib/node_modules/element-plus/es/utils/vue/props/runtime.js +42 -0
  90. package/dist/lib/src/components/Autosuggest/Autosuggest.vue.js +446 -0
  91. package/dist/lib/src/components/Autosuggest/Multisuggest.vue.js +17 -0
  92. package/dist/lib/src/components/Autosuggest/autosuggest-props.js +204 -0
  93. package/dist/lib/src/components/Autosuggest/core.js +56 -0
  94. package/dist/lib/src/components/Autosuggest/multisuggest-props.js +11 -0
  95. package/dist/lib/src/components/Autosuggest/option.vue.js +118 -0
  96. package/dist/lib/src/components/Autosuggest/select-dropdown.vue.js +62 -0
  97. package/dist/lib/src/components/Autosuggest/useOption.js +93 -0
  98. package/dist/lib/src/components/Autosuggest/useSelect.js +803 -0
  99. package/dist/lib/src/components/Inline/Inline.vue.js +125 -0
  100. package/dist/lib/src/components/Inline/index.js +4 -0
  101. package/dist/lib/src/components/InputNumber/InputNumber.vue.js +360 -0
  102. package/dist/lib/src/components/InputNumber/index.js +4 -0
  103. package/dist/lib/src/components/InputNumber/input-number.js +128 -0
  104. package/dist/lib/src/components/Loader/Loader.vue.js +59 -0
  105. package/dist/lib/src/components/Loader/index.js +4 -0
  106. package/dist/lib/src/components/Money/Money.vue.js +72 -0
  107. package/dist/lib/src/components/Money/index.js +4 -0
  108. package/dist/lib/src/components/Multisuggest/index.js +4 -0
  109. package/dist/lib/src/components/OptionsList/OptionsList.vue.js +28 -0
  110. package/dist/lib/src/components/OptionsList/index.js +4 -0
  111. package/dist/lib/src/components/OptionsListItem/OptionsListItem.vue.js +96 -0
  112. package/dist/lib/src/components/OptionsListItem/index.js +4 -0
  113. package/dist/lib/src/components/Percent/Percent.vue.js +73 -0
  114. package/dist/lib/src/components/Percent/index.js +4 -0
  115. package/dist/lib/src/components/Skeleton/Skeleton.vue.js +79 -0
  116. package/dist/lib/src/components/Skeleton/index.js +4 -0
  117. package/dist/lib/src/components/Step/Step.vue.js +206 -0
  118. package/dist/lib/src/components/Step/index.js +4 -0
  119. package/dist/lib/src/components/Steps/Steps.vue.js +15 -0
  120. package/dist/lib/src/components/Steps/index.js +4 -0
  121. package/dist/lib/src/components/Tip/Tip.vue.js +160 -0
  122. package/dist/lib/src/components/Tip/index.js +4 -0
  123. package/dist/lib/src/components/index.js +32 -0
  124. package/dist/lib/src/locale/i18nCreator.js +93 -0
  125. package/dist/lib/src/locale/lang/pt-br.js +21 -0
  126. package/dist/lib/src/main.js +17 -0
  127. package/dist/lib/src/mixins/floatFormatter.js +42 -0
  128. package/dist/lib/src/plugins/currency.js +69 -0
  129. package/dist/lib/src/utils/constants.js +6 -0
  130. package/dist/lib/src/utils/error.js +22 -0
  131. package/dist/lib/src/utils/i18n.js +4 -0
  132. package/dist/lib/src/utils/icon.js +9 -0
  133. package/dist/lib/src/utils/index.js +14 -0
  134. package/dist/lib/src/utils/runtime.js +50 -0
  135. package/dist/lib/src/utils/scroll.js +28 -0
  136. package/dist/lib/src/utils/strings.js +4 -0
  137. package/dist/lib/src/utils/types.js +12 -0
  138. package/dist/lib/src/utils/use-derived-namespace.js +15 -0
  139. package/dist/lib/src/utils/use-form-common-props.js +25 -0
  140. package/dist/lib/src/utils/use-form-item.js +61 -0
  141. package/dist/lib/src/utils/use-id.js +35 -0
  142. package/dist/lib/src/utils/use-input.js +31 -0
  143. package/package.json +19 -17
  144. package/dist/main.bundle.js +0 -2
  145. package/dist/main.bundle.js.LICENSE.txt +0 -15
  146. package/dist/main.css +0 -11
  147. package/src/locale/i18nCreator.js +0 -170
  148. package/src/locale/lang/en.js +0 -35
  149. package/src/locale/lang/pt-br.js +0 -35
@@ -0,0 +1,2391 @@
1
+ /* Element Chalk Variables */
2
+ /* Transition
3
+ -------------------------- */
4
+ /* Color
5
+ -------------------------- */
6
+ /* 53a8ff */
7
+ /* 66b1ff */
8
+ /* 79bbff */
9
+ /* 8cc5ff */
10
+ /* a0cfff */
11
+ /* b3d8ff */
12
+ /* c6e2ff */
13
+ /* d9ecff */
14
+ /* ecf5ff */
15
+ /* Link
16
+ -------------------------- */
17
+ /* Border
18
+ -------------------------- */
19
+ /* Fill
20
+ -------------------------- */
21
+ /* Typography
22
+ -------------------------- */
23
+ /* Size
24
+ -------------------------- */
25
+ /* z-index
26
+ -------------------------- */
27
+ /* Disable base
28
+ -------------------------- */
29
+ /* Icon
30
+ -------------------------- */
31
+ /* Checkbox
32
+ -------------------------- */
33
+ /* Radio
34
+ -------------------------- */
35
+ /* Select
36
+ -------------------------- */
37
+ /* Alert
38
+ -------------------------- */
39
+ /* MessageBox
40
+ -------------------------- */
41
+ /* Message
42
+ -------------------------- */
43
+ /* Notification
44
+ -------------------------- */
45
+ /* Input
46
+ -------------------------- */
47
+ /* Cascader
48
+ -------------------------- */
49
+ /* Group
50
+ -------------------------- */
51
+ /* Tab
52
+ -------------------------- */
53
+ /* Button
54
+ -------------------------- */
55
+ /* cascader
56
+ -------------------------- */
57
+ /* Switch
58
+ -------------------------- */
59
+ /* Dialog
60
+ -------------------------- */
61
+ /* Table
62
+ -------------------------- */
63
+ /* Pagination
64
+ -------------------------- */
65
+ /* Popup
66
+ -------------------------- */
67
+ /* Popover
68
+ -------------------------- */
69
+ /* Tooltip
70
+ -------------------------- */
71
+ /* Tag
72
+ -------------------------- */
73
+ /* Tree
74
+ -------------------------- */
75
+ /* Dropdown
76
+ -------------------------- */
77
+ /* Badge
78
+ -------------------------- */
79
+ /* Card
80
+ --------------------------*/
81
+ /* Slider
82
+ --------------------------*/
83
+ /* Steps
84
+ --------------------------*/
85
+ /* Menu
86
+ --------------------------*/
87
+ /* Rate
88
+ --------------------------*/
89
+ /* DatePicker
90
+ --------------------------*/
91
+ /* Loading
92
+ --------------------------*/
93
+ /* Scrollbar
94
+ --------------------------*/
95
+ /* Carousel
96
+ --------------------------*/
97
+ /* Collapse
98
+ --------------------------*/
99
+ /* Transfer
100
+ --------------------------*/
101
+ /* Header
102
+ --------------------------*/
103
+ /* Footer
104
+ --------------------------*/
105
+ /* Main
106
+ --------------------------*/
107
+ /* Timeline
108
+ --------------------------*/
109
+ /* Backtop
110
+ --------------------------*/
111
+ /* Link
112
+ --------------------------*/
113
+ /* Calendar
114
+ --------------------------*/
115
+ /* Form
116
+ -------------------------- */
117
+ /* Avatar
118
+ --------------------------*/
119
+ /* Empty
120
+ -------------------------- */
121
+ /* Descriptions
122
+ -------------------------- */
123
+ /* Skeleton
124
+ --------------------------*/
125
+ /* Svg
126
+ --------------- */
127
+ /* Result
128
+ -------------------------- */
129
+ /* Break-point
130
+ --------------------------*/
131
+ /**
132
+ * ReSass.
133
+ *
134
+ * MIXIN: Responsive Media Queries.
135
+ *
136
+ * Creates responsive media queries for seven different screen sizes.
137
+ * These are based on min-width which means if x is the size then your
138
+ * CSS will affect any device with screen width x and above.
139
+ *
140
+ * USAGE:
141
+ * @include r(240) { }
142
+ * @include r(320) { }
143
+ * @include r(480) { }
144
+ * @include r(768) { }
145
+ * @include r(1024) { }
146
+ * @include r(1140) { }
147
+ * @include r(1280) { }
148
+ * @include r(1500) { }
149
+ *
150
+ * CSS content goes inside {} brackets. These mixins should be used inside
151
+ * a class definition. For example:
152
+ *
153
+ * The following CSS will hide the .header on screen width 320px and above.
154
+ * .header {
155
+ * @include r(320) { display: none; }
156
+ * }
157
+ *
158
+ * @author Ahmad Awais (https://github.com/ahmadawais)
159
+ * @link https://github.com/ahmadawais/ReSass.git
160
+ * @version 1.0.0
161
+ */
162
+ .tp-autosuggest-clear-icon[data-v-8f8ea081] {
163
+ margin: 6px 6px 1px 6px;
164
+ }
165
+ [data-v-8f8ea081] .el-select__input-wrapper {
166
+ width: 100%;
167
+ }
168
+ [data-v-8f8ea081] .el-select__input-wrapper .el-input .el-input__inner {
169
+ width: 100%;
170
+ }
171
+ [data-v-8f8ea081] .el-select__input-wrapper .el-input .el-input-group__prepend {
172
+ padding: 0;
173
+ }
174
+ [data-v-8f8ea081] .el-select__input-wrapper .el-input .el-input-group__prepend::after {
175
+ display: none;
176
+ }
177
+ [data-v-8f8ea081] .el-select__input-wrapper .el-input .el-input__wrapper {
178
+ box-shadow: none;
179
+ border-top: 1px solid var(--el-input-border-color);
180
+ border-bottom: 1px solid var(--el-input-border-color);
181
+ padding-left: 8px;
182
+ }
183
+ [data-v-8f8ea081] .el-select__input-wrapper .el-input .el-input__wrapper .el-select__placeholder {
184
+ padding-left: 16px !important;
185
+ }
186
+ [data-v-8f8ea081] .el-select__input-wrapper .el-input.is-disabled .el-input__wrapper,[data-v-8f8ea081] .el-select__input-wrapper .el-input.is-disabled .el-tag {
187
+ cursor: not-allowed;
188
+ }
189
+ [data-v-8f8ea081] .el-select__input-wrapper .el-input .el-input-group__append {
190
+ padding: 0;
191
+ }
192
+ [data-v-8f8ea081] .el-select__input-wrapper .el-input .el-input-group__append .el-input__close {
193
+ width: 40px;
194
+ }
195
+ [data-v-8f8ea081] .el-select__input-wrapper .el-input .el-input-group__append .el-input__close .tp-btn-close {
196
+ margin: auto;
197
+ }
198
+ [data-v-8f8ea081] .el-select__input-wrapper .el-input .el-input-group__prepend,[data-v-8f8ea081] .el-select__input-wrapper .el-input .el-input-group__append {
199
+ background-color: var(--el-input-bg-color, var(--el-fill-color-blank));
200
+ }
201
+ [data-v-8f8ea081] .el-select__input-wrapper .el-input .el-input-group__prepend,[data-v-8f8ea081] .el-select__input-wrapper .el-input .el-input-group__append,[data-v-8f8ea081] .el-select__input-wrapper .el-input .tp-autosuggest-clear-icon {
202
+ cursor: pointer;
203
+ color: #606266;
204
+ }
205
+ .tp-autosuggest-vertical-divider[data-v-8f8ea081] {
206
+ height: 33.59px;
207
+ margin: 0;
208
+ }
209
+ .tp-autosuggest-input-prepend-icon[data-v-8f8ea081] {
210
+ display: flex;
211
+ margin: 0 10px -2px 12px;
212
+ }
213
+ .tp-autosuggest-loading[data-v-8f8ea081] {
214
+ text-align: center;
215
+ font-size: 1.5em;
216
+ padding: 10px;
217
+ margin: 0;
218
+ }
219
+ .tp-select-dropdown__list.el-select-dropdown__list li.el-select-dropdown__item[data-v-8f8ea081] {
220
+ line-height: 1.5em;
221
+ height: auto;
222
+ padding: 12px;
223
+ position: relative;
224
+ transition: 100ms all linear;
225
+ }
226
+ .tp-select-dropdown__list.el-select-dropdown__list li.el-select-dropdown__item.hover[data-v-8f8ea081] {
227
+ padding-left: 20px;
228
+ }
229
+ .tp-select-dropdown__list.el-select-dropdown__list li.el-select-dropdown__item.hover[data-v-8f8ea081]::before {
230
+ position: absolute;
231
+ display: inline-block;
232
+ width: 4px;
233
+ top: 5px;
234
+ bottom: 5px;
235
+ left: 5px;
236
+ background: #409EFF;
237
+ border-radius: 2px;
238
+ }
239
+ .tp-select-dropdown__list.el-select-dropdown__list li.el-select-dropdown__item.selected[data-v-8f8ea081] {
240
+ color: #606266;
241
+ }
242
+ .tp-select-dropdown__list.el-select-dropdown__list li.el-select-dropdown__item.created a[data-v-8f8ea081] {
243
+ color: #409EFF;
244
+ font-weight: normal;
245
+ border-bottom: 1px solid #409EFF;
246
+ line-height: 1.5em;
247
+ display: inline-block;
248
+ }
249
+ .tp-select-dropdown__list.el-select-dropdown__list li.el-select-dropdown__item small[data-v-8f8ea081] {
250
+ font-size: 14px;
251
+ color: color-mix(#FFFFFF, #909399, 40%);
252
+ }/* Element Chalk Variables */
253
+ /* Transition
254
+ -------------------------- */
255
+ /* Color
256
+ -------------------------- */
257
+ /* 53a8ff */
258
+ /* 66b1ff */
259
+ /* 79bbff */
260
+ /* 8cc5ff */
261
+ /* a0cfff */
262
+ /* b3d8ff */
263
+ /* c6e2ff */
264
+ /* d9ecff */
265
+ /* ecf5ff */
266
+ /* Link
267
+ -------------------------- */
268
+ /* Border
269
+ -------------------------- */
270
+ /* Fill
271
+ -------------------------- */
272
+ /* Typography
273
+ -------------------------- */
274
+ /* Size
275
+ -------------------------- */
276
+ /* z-index
277
+ -------------------------- */
278
+ /* Disable base
279
+ -------------------------- */
280
+ /* Icon
281
+ -------------------------- */
282
+ /* Checkbox
283
+ -------------------------- */
284
+ /* Radio
285
+ -------------------------- */
286
+ /* Select
287
+ -------------------------- */
288
+ /* Alert
289
+ -------------------------- */
290
+ /* MessageBox
291
+ -------------------------- */
292
+ /* Message
293
+ -------------------------- */
294
+ /* Notification
295
+ -------------------------- */
296
+ /* Input
297
+ -------------------------- */
298
+ /* Cascader
299
+ -------------------------- */
300
+ /* Group
301
+ -------------------------- */
302
+ /* Tab
303
+ -------------------------- */
304
+ /* Button
305
+ -------------------------- */
306
+ /* cascader
307
+ -------------------------- */
308
+ /* Switch
309
+ -------------------------- */
310
+ /* Dialog
311
+ -------------------------- */
312
+ /* Table
313
+ -------------------------- */
314
+ /* Pagination
315
+ -------------------------- */
316
+ /* Popup
317
+ -------------------------- */
318
+ /* Popover
319
+ -------------------------- */
320
+ /* Tooltip
321
+ -------------------------- */
322
+ /* Tag
323
+ -------------------------- */
324
+ /* Tree
325
+ -------------------------- */
326
+ /* Dropdown
327
+ -------------------------- */
328
+ /* Badge
329
+ -------------------------- */
330
+ /* Card
331
+ --------------------------*/
332
+ /* Slider
333
+ --------------------------*/
334
+ /* Steps
335
+ --------------------------*/
336
+ /* Menu
337
+ --------------------------*/
338
+ /* Rate
339
+ --------------------------*/
340
+ /* DatePicker
341
+ --------------------------*/
342
+ /* Loading
343
+ --------------------------*/
344
+ /* Scrollbar
345
+ --------------------------*/
346
+ /* Carousel
347
+ --------------------------*/
348
+ /* Collapse
349
+ --------------------------*/
350
+ /* Transfer
351
+ --------------------------*/
352
+ /* Header
353
+ --------------------------*/
354
+ /* Footer
355
+ --------------------------*/
356
+ /* Main
357
+ --------------------------*/
358
+ /* Timeline
359
+ --------------------------*/
360
+ /* Backtop
361
+ --------------------------*/
362
+ /* Link
363
+ --------------------------*/
364
+ /* Calendar
365
+ --------------------------*/
366
+ /* Form
367
+ -------------------------- */
368
+ /* Avatar
369
+ --------------------------*/
370
+ /* Empty
371
+ -------------------------- */
372
+ /* Descriptions
373
+ -------------------------- */
374
+ /* Skeleton
375
+ --------------------------*/
376
+ /* Svg
377
+ --------------- */
378
+ /* Result
379
+ -------------------------- */
380
+ /* Break-point
381
+ --------------------------*/
382
+ /**
383
+ * ReSass.
384
+ *
385
+ * MIXIN: Responsive Media Queries.
386
+ *
387
+ * Creates responsive media queries for seven different screen sizes.
388
+ * These are based on min-width which means if x is the size then your
389
+ * CSS will affect any device with screen width x and above.
390
+ *
391
+ * USAGE:
392
+ * @include r(240) { }
393
+ * @include r(320) { }
394
+ * @include r(480) { }
395
+ * @include r(768) { }
396
+ * @include r(1024) { }
397
+ * @include r(1140) { }
398
+ * @include r(1280) { }
399
+ * @include r(1500) { }
400
+ *
401
+ * CSS content goes inside {} brackets. These mixins should be used inside
402
+ * a class definition. For example:
403
+ *
404
+ * The following CSS will hide the .header on screen width 320px and above.
405
+ * .header {
406
+ * @include r(320) { display: none; }
407
+ * }
408
+ *
409
+ * @author Ahmad Awais (https://github.com/ahmadawais)
410
+ * @link https://github.com/ahmadawais/ReSass.git
411
+ * @version 1.0.0
412
+ */
413
+ .tp-inline .el-input-group__append[data-v-202cdb93],
414
+ .tp-inline .el-input-group__append button.el-button[data-v-202cdb93] {
415
+ background-color: #409EFF;
416
+ border-color: #409EFF;
417
+ color: #FFFFFF;
418
+ height: 100%;
419
+ border-radius: 0;
420
+ }
421
+ .tp-inline > span[data-v-202cdb93] {
422
+ display: inline-block;
423
+ padding: 12px 0;
424
+ }
425
+ .tp-inline a[data-v-202cdb93] {
426
+ cursor: pointer;
427
+ display: inline-block;
428
+ color: #303133;
429
+ border-bottom: 1px dotted transparent;
430
+ }
431
+ .tp-inline a[data-v-202cdb93]:focus, .tp-inline a[data-v-202cdb93]:hover {
432
+ border-bottom-color: #303133;
433
+ }/* Element Chalk Variables */
434
+ /* Transition
435
+ -------------------------- */
436
+ /* Color
437
+ -------------------------- */
438
+ /* 53a8ff */
439
+ /* 66b1ff */
440
+ /* 79bbff */
441
+ /* 8cc5ff */
442
+ /* a0cfff */
443
+ /* b3d8ff */
444
+ /* c6e2ff */
445
+ /* d9ecff */
446
+ /* ecf5ff */
447
+ /* Link
448
+ -------------------------- */
449
+ /* Border
450
+ -------------------------- */
451
+ /* Fill
452
+ -------------------------- */
453
+ /* Typography
454
+ -------------------------- */
455
+ /* Size
456
+ -------------------------- */
457
+ /* z-index
458
+ -------------------------- */
459
+ /* Disable base
460
+ -------------------------- */
461
+ /* Icon
462
+ -------------------------- */
463
+ /* Checkbox
464
+ -------------------------- */
465
+ /* Radio
466
+ -------------------------- */
467
+ /* Select
468
+ -------------------------- */
469
+ /* Alert
470
+ -------------------------- */
471
+ /* MessageBox
472
+ -------------------------- */
473
+ /* Message
474
+ -------------------------- */
475
+ /* Notification
476
+ -------------------------- */
477
+ /* Input
478
+ -------------------------- */
479
+ /* Cascader
480
+ -------------------------- */
481
+ /* Group
482
+ -------------------------- */
483
+ /* Tab
484
+ -------------------------- */
485
+ /* Button
486
+ -------------------------- */
487
+ /* cascader
488
+ -------------------------- */
489
+ /* Switch
490
+ -------------------------- */
491
+ /* Dialog
492
+ -------------------------- */
493
+ /* Table
494
+ -------------------------- */
495
+ /* Pagination
496
+ -------------------------- */
497
+ /* Popup
498
+ -------------------------- */
499
+ /* Popover
500
+ -------------------------- */
501
+ /* Tooltip
502
+ -------------------------- */
503
+ /* Tag
504
+ -------------------------- */
505
+ /* Tree
506
+ -------------------------- */
507
+ /* Dropdown
508
+ -------------------------- */
509
+ /* Badge
510
+ -------------------------- */
511
+ /* Card
512
+ --------------------------*/
513
+ /* Slider
514
+ --------------------------*/
515
+ /* Steps
516
+ --------------------------*/
517
+ /* Menu
518
+ --------------------------*/
519
+ /* Rate
520
+ --------------------------*/
521
+ /* DatePicker
522
+ --------------------------*/
523
+ /* Loading
524
+ --------------------------*/
525
+ /* Scrollbar
526
+ --------------------------*/
527
+ /* Carousel
528
+ --------------------------*/
529
+ /* Collapse
530
+ --------------------------*/
531
+ /* Transfer
532
+ --------------------------*/
533
+ /* Header
534
+ --------------------------*/
535
+ /* Footer
536
+ --------------------------*/
537
+ /* Main
538
+ --------------------------*/
539
+ /* Timeline
540
+ --------------------------*/
541
+ /* Backtop
542
+ --------------------------*/
543
+ /* Link
544
+ --------------------------*/
545
+ /* Calendar
546
+ --------------------------*/
547
+ /* Form
548
+ -------------------------- */
549
+ /* Avatar
550
+ --------------------------*/
551
+ /* Empty
552
+ -------------------------- */
553
+ /* Descriptions
554
+ -------------------------- */
555
+ /* Skeleton
556
+ --------------------------*/
557
+ /* Svg
558
+ --------------- */
559
+ /* Result
560
+ -------------------------- */
561
+ /* Break-point
562
+ --------------------------*/
563
+ /**
564
+ * ReSass.
565
+ *
566
+ * MIXIN: Responsive Media Queries.
567
+ *
568
+ * Creates responsive media queries for seven different screen sizes.
569
+ * These are based on min-width which means if x is the size then your
570
+ * CSS will affect any device with screen width x and above.
571
+ *
572
+ * USAGE:
573
+ * @include r(240) { }
574
+ * @include r(320) { }
575
+ * @include r(480) { }
576
+ * @include r(768) { }
577
+ * @include r(1024) { }
578
+ * @include r(1140) { }
579
+ * @include r(1280) { }
580
+ * @include r(1500) { }
581
+ *
582
+ * CSS content goes inside {} brackets. These mixins should be used inside
583
+ * a class definition. For example:
584
+ *
585
+ * The following CSS will hide the .header on screen width 320px and above.
586
+ * .header {
587
+ * @include r(320) { display: none; }
588
+ * }
589
+ *
590
+ * @author Ahmad Awais (https://github.com/ahmadawais)
591
+ * @link https://github.com/ahmadawais/ReSass.git
592
+ * @version 1.0.0
593
+ */
594
+ .tp-money input[data-v-9d3eeac0] {
595
+ text-align: right;
596
+ }/* Element Chalk Variables */
597
+ /* Transition
598
+ -------------------------- */
599
+ /* Color
600
+ -------------------------- */
601
+ /* 53a8ff */
602
+ /* 66b1ff */
603
+ /* 79bbff */
604
+ /* 8cc5ff */
605
+ /* a0cfff */
606
+ /* b3d8ff */
607
+ /* c6e2ff */
608
+ /* d9ecff */
609
+ /* ecf5ff */
610
+ /* Link
611
+ -------------------------- */
612
+ /* Border
613
+ -------------------------- */
614
+ /* Fill
615
+ -------------------------- */
616
+ /* Typography
617
+ -------------------------- */
618
+ /* Size
619
+ -------------------------- */
620
+ /* z-index
621
+ -------------------------- */
622
+ /* Disable base
623
+ -------------------------- */
624
+ /* Icon
625
+ -------------------------- */
626
+ /* Checkbox
627
+ -------------------------- */
628
+ /* Radio
629
+ -------------------------- */
630
+ /* Select
631
+ -------------------------- */
632
+ /* Alert
633
+ -------------------------- */
634
+ /* MessageBox
635
+ -------------------------- */
636
+ /* Message
637
+ -------------------------- */
638
+ /* Notification
639
+ -------------------------- */
640
+ /* Input
641
+ -------------------------- */
642
+ /* Cascader
643
+ -------------------------- */
644
+ /* Group
645
+ -------------------------- */
646
+ /* Tab
647
+ -------------------------- */
648
+ /* Button
649
+ -------------------------- */
650
+ /* cascader
651
+ -------------------------- */
652
+ /* Switch
653
+ -------------------------- */
654
+ /* Dialog
655
+ -------------------------- */
656
+ /* Table
657
+ -------------------------- */
658
+ /* Pagination
659
+ -------------------------- */
660
+ /* Popup
661
+ -------------------------- */
662
+ /* Popover
663
+ -------------------------- */
664
+ /* Tooltip
665
+ -------------------------- */
666
+ /* Tag
667
+ -------------------------- */
668
+ /* Tree
669
+ -------------------------- */
670
+ /* Dropdown
671
+ -------------------------- */
672
+ /* Badge
673
+ -------------------------- */
674
+ /* Card
675
+ --------------------------*/
676
+ /* Slider
677
+ --------------------------*/
678
+ /* Steps
679
+ --------------------------*/
680
+ /* Menu
681
+ --------------------------*/
682
+ /* Rate
683
+ --------------------------*/
684
+ /* DatePicker
685
+ --------------------------*/
686
+ /* Loading
687
+ --------------------------*/
688
+ /* Scrollbar
689
+ --------------------------*/
690
+ /* Carousel
691
+ --------------------------*/
692
+ /* Collapse
693
+ --------------------------*/
694
+ /* Transfer
695
+ --------------------------*/
696
+ /* Header
697
+ --------------------------*/
698
+ /* Footer
699
+ --------------------------*/
700
+ /* Main
701
+ --------------------------*/
702
+ /* Timeline
703
+ --------------------------*/
704
+ /* Backtop
705
+ --------------------------*/
706
+ /* Link
707
+ --------------------------*/
708
+ /* Calendar
709
+ --------------------------*/
710
+ /* Form
711
+ -------------------------- */
712
+ /* Avatar
713
+ --------------------------*/
714
+ /* Empty
715
+ -------------------------- */
716
+ /* Descriptions
717
+ -------------------------- */
718
+ /* Skeleton
719
+ --------------------------*/
720
+ /* Svg
721
+ --------------- */
722
+ /* Result
723
+ -------------------------- */
724
+ /* Break-point
725
+ --------------------------*/
726
+ /**
727
+ * ReSass.
728
+ *
729
+ * MIXIN: Responsive Media Queries.
730
+ *
731
+ * Creates responsive media queries for seven different screen sizes.
732
+ * These are based on min-width which means if x is the size then your
733
+ * CSS will affect any device with screen width x and above.
734
+ *
735
+ * USAGE:
736
+ * @include r(240) { }
737
+ * @include r(320) { }
738
+ * @include r(480) { }
739
+ * @include r(768) { }
740
+ * @include r(1024) { }
741
+ * @include r(1140) { }
742
+ * @include r(1280) { }
743
+ * @include r(1500) { }
744
+ *
745
+ * CSS content goes inside {} brackets. These mixins should be used inside
746
+ * a class definition. For example:
747
+ *
748
+ * The following CSS will hide the .header on screen width 320px and above.
749
+ * .header {
750
+ * @include r(320) { display: none; }
751
+ * }
752
+ *
753
+ * @author Ahmad Awais (https://github.com/ahmadawais)
754
+ * @link https://github.com/ahmadawais/ReSass.git
755
+ * @version 1.0.0
756
+ */
757
+ .tp-percent input[data-v-36120bea] {
758
+ text-align: right;
759
+ }/* Element Chalk Variables */
760
+ /* Transition
761
+ -------------------------- */
762
+ /* Color
763
+ -------------------------- */
764
+ /* 53a8ff */
765
+ /* 66b1ff */
766
+ /* 79bbff */
767
+ /* 8cc5ff */
768
+ /* a0cfff */
769
+ /* b3d8ff */
770
+ /* c6e2ff */
771
+ /* d9ecff */
772
+ /* ecf5ff */
773
+ /* Link
774
+ -------------------------- */
775
+ /* Border
776
+ -------------------------- */
777
+ /* Fill
778
+ -------------------------- */
779
+ /* Typography
780
+ -------------------------- */
781
+ /* Size
782
+ -------------------------- */
783
+ /* z-index
784
+ -------------------------- */
785
+ /* Disable base
786
+ -------------------------- */
787
+ /* Icon
788
+ -------------------------- */
789
+ /* Checkbox
790
+ -------------------------- */
791
+ /* Radio
792
+ -------------------------- */
793
+ /* Select
794
+ -------------------------- */
795
+ /* Alert
796
+ -------------------------- */
797
+ /* MessageBox
798
+ -------------------------- */
799
+ /* Message
800
+ -------------------------- */
801
+ /* Notification
802
+ -------------------------- */
803
+ /* Input
804
+ -------------------------- */
805
+ /* Cascader
806
+ -------------------------- */
807
+ /* Group
808
+ -------------------------- */
809
+ /* Tab
810
+ -------------------------- */
811
+ /* Button
812
+ -------------------------- */
813
+ /* cascader
814
+ -------------------------- */
815
+ /* Switch
816
+ -------------------------- */
817
+ /* Dialog
818
+ -------------------------- */
819
+ /* Table
820
+ -------------------------- */
821
+ /* Pagination
822
+ -------------------------- */
823
+ /* Popup
824
+ -------------------------- */
825
+ /* Popover
826
+ -------------------------- */
827
+ /* Tooltip
828
+ -------------------------- */
829
+ /* Tag
830
+ -------------------------- */
831
+ /* Tree
832
+ -------------------------- */
833
+ /* Dropdown
834
+ -------------------------- */
835
+ /* Badge
836
+ -------------------------- */
837
+ /* Card
838
+ --------------------------*/
839
+ /* Slider
840
+ --------------------------*/
841
+ /* Steps
842
+ --------------------------*/
843
+ /* Menu
844
+ --------------------------*/
845
+ /* Rate
846
+ --------------------------*/
847
+ /* DatePicker
848
+ --------------------------*/
849
+ /* Loading
850
+ --------------------------*/
851
+ /* Scrollbar
852
+ --------------------------*/
853
+ /* Carousel
854
+ --------------------------*/
855
+ /* Collapse
856
+ --------------------------*/
857
+ /* Transfer
858
+ --------------------------*/
859
+ /* Header
860
+ --------------------------*/
861
+ /* Footer
862
+ --------------------------*/
863
+ /* Main
864
+ --------------------------*/
865
+ /* Timeline
866
+ --------------------------*/
867
+ /* Backtop
868
+ --------------------------*/
869
+ /* Link
870
+ --------------------------*/
871
+ /* Calendar
872
+ --------------------------*/
873
+ /* Form
874
+ -------------------------- */
875
+ /* Avatar
876
+ --------------------------*/
877
+ /* Empty
878
+ -------------------------- */
879
+ /* Descriptions
880
+ -------------------------- */
881
+ /* Skeleton
882
+ --------------------------*/
883
+ /* Svg
884
+ --------------- */
885
+ /* Result
886
+ -------------------------- */
887
+ /* Break-point
888
+ --------------------------*/
889
+ /**
890
+ * ReSass.
891
+ *
892
+ * MIXIN: Responsive Media Queries.
893
+ *
894
+ * Creates responsive media queries for seven different screen sizes.
895
+ * These are based on min-width which means if x is the size then your
896
+ * CSS will affect any device with screen width x and above.
897
+ *
898
+ * USAGE:
899
+ * @include r(240) { }
900
+ * @include r(320) { }
901
+ * @include r(480) { }
902
+ * @include r(768) { }
903
+ * @include r(1024) { }
904
+ * @include r(1140) { }
905
+ * @include r(1280) { }
906
+ * @include r(1500) { }
907
+ *
908
+ * CSS content goes inside {} brackets. These mixins should be used inside
909
+ * a class definition. For example:
910
+ *
911
+ * The following CSS will hide the .header on screen width 320px and above.
912
+ * .header {
913
+ * @include r(320) { display: none; }
914
+ * }
915
+ *
916
+ * @author Ahmad Awais (https://github.com/ahmadawais)
917
+ * @link https://github.com/ahmadawais/ReSass.git
918
+ * @version 1.0.0
919
+ */
920
+ .tp-options-list[data-v-c8c0f83e] {
921
+ list-style: none;
922
+ display: flex;
923
+ flex-wrap: wrap;
924
+ }
925
+ .tp-options-list.space-between[data-v-c8c0f83e] {
926
+ justify-content: space-between;
927
+ }
928
+ .tp-options-list.center[data-v-c8c0f83e] {
929
+ justify-content: center;
930
+ }
931
+ .tp-options-list.disabled[data-v-c8c0f83e] {
932
+ pointer-events: none;
933
+ cursor: default;
934
+ filter: grayscale(100%);
935
+ }
936
+ @media screen and (width >= 992px) {
937
+ .tp-options-list div[data-v-c8c0f83e],
938
+ .tp-options-list li[data-v-c8c0f83e] {
939
+ margin-right: 10px;
940
+ }
941
+ }
942
+ ul[data-v-c8c0f83e] {
943
+ padding-inline-start: 0;
944
+ }/* Element Chalk Variables */
945
+ /* Transition
946
+ -------------------------- */
947
+ /* Color
948
+ -------------------------- */
949
+ /* 53a8ff */
950
+ /* 66b1ff */
951
+ /* 79bbff */
952
+ /* 8cc5ff */
953
+ /* a0cfff */
954
+ /* b3d8ff */
955
+ /* c6e2ff */
956
+ /* d9ecff */
957
+ /* ecf5ff */
958
+ /* Link
959
+ -------------------------- */
960
+ /* Border
961
+ -------------------------- */
962
+ /* Fill
963
+ -------------------------- */
964
+ /* Typography
965
+ -------------------------- */
966
+ /* Size
967
+ -------------------------- */
968
+ /* z-index
969
+ -------------------------- */
970
+ /* Disable base
971
+ -------------------------- */
972
+ /* Icon
973
+ -------------------------- */
974
+ /* Checkbox
975
+ -------------------------- */
976
+ /* Radio
977
+ -------------------------- */
978
+ /* Select
979
+ -------------------------- */
980
+ /* Alert
981
+ -------------------------- */
982
+ /* MessageBox
983
+ -------------------------- */
984
+ /* Message
985
+ -------------------------- */
986
+ /* Notification
987
+ -------------------------- */
988
+ /* Input
989
+ -------------------------- */
990
+ /* Cascader
991
+ -------------------------- */
992
+ /* Group
993
+ -------------------------- */
994
+ /* Tab
995
+ -------------------------- */
996
+ /* Button
997
+ -------------------------- */
998
+ /* cascader
999
+ -------------------------- */
1000
+ /* Switch
1001
+ -------------------------- */
1002
+ /* Dialog
1003
+ -------------------------- */
1004
+ /* Table
1005
+ -------------------------- */
1006
+ /* Pagination
1007
+ -------------------------- */
1008
+ /* Popup
1009
+ -------------------------- */
1010
+ /* Popover
1011
+ -------------------------- */
1012
+ /* Tooltip
1013
+ -------------------------- */
1014
+ /* Tag
1015
+ -------------------------- */
1016
+ /* Tree
1017
+ -------------------------- */
1018
+ /* Dropdown
1019
+ -------------------------- */
1020
+ /* Badge
1021
+ -------------------------- */
1022
+ /* Card
1023
+ --------------------------*/
1024
+ /* Slider
1025
+ --------------------------*/
1026
+ /* Steps
1027
+ --------------------------*/
1028
+ /* Menu
1029
+ --------------------------*/
1030
+ /* Rate
1031
+ --------------------------*/
1032
+ /* DatePicker
1033
+ --------------------------*/
1034
+ /* Loading
1035
+ --------------------------*/
1036
+ /* Scrollbar
1037
+ --------------------------*/
1038
+ /* Carousel
1039
+ --------------------------*/
1040
+ /* Collapse
1041
+ --------------------------*/
1042
+ /* Transfer
1043
+ --------------------------*/
1044
+ /* Header
1045
+ --------------------------*/
1046
+ /* Footer
1047
+ --------------------------*/
1048
+ /* Main
1049
+ --------------------------*/
1050
+ /* Timeline
1051
+ --------------------------*/
1052
+ /* Backtop
1053
+ --------------------------*/
1054
+ /* Link
1055
+ --------------------------*/
1056
+ /* Calendar
1057
+ --------------------------*/
1058
+ /* Form
1059
+ -------------------------- */
1060
+ /* Avatar
1061
+ --------------------------*/
1062
+ /* Empty
1063
+ -------------------------- */
1064
+ /* Descriptions
1065
+ -------------------------- */
1066
+ /* Skeleton
1067
+ --------------------------*/
1068
+ /* Svg
1069
+ --------------- */
1070
+ /* Result
1071
+ -------------------------- */
1072
+ /* Break-point
1073
+ --------------------------*/
1074
+ /**
1075
+ * ReSass.
1076
+ *
1077
+ * MIXIN: Responsive Media Queries.
1078
+ *
1079
+ * Creates responsive media queries for seven different screen sizes.
1080
+ * These are based on min-width which means if x is the size then your
1081
+ * CSS will affect any device with screen width x and above.
1082
+ *
1083
+ * USAGE:
1084
+ * @include r(240) { }
1085
+ * @include r(320) { }
1086
+ * @include r(480) { }
1087
+ * @include r(768) { }
1088
+ * @include r(1024) { }
1089
+ * @include r(1140) { }
1090
+ * @include r(1280) { }
1091
+ * @include r(1500) { }
1092
+ *
1093
+ * CSS content goes inside {} brackets. These mixins should be used inside
1094
+ * a class definition. For example:
1095
+ *
1096
+ * The following CSS will hide the .header on screen width 320px and above.
1097
+ * .header {
1098
+ * @include r(320) { display: none; }
1099
+ * }
1100
+ *
1101
+ * @author Ahmad Awais (https://github.com/ahmadawais)
1102
+ * @link https://github.com/ahmadawais/ReSass.git
1103
+ * @version 1.0.0
1104
+ */
1105
+ .tp-options-list-item[data-v-ace81497] {
1106
+ position: relative;
1107
+ height: 84px;
1108
+ min-width: 114px;
1109
+ border: 1px solid #dde5ee;
1110
+ border-radius: 6px;
1111
+ cursor: pointer;
1112
+ white-space: nowrap;
1113
+ display: flex;
1114
+ align-items: center;
1115
+ justify-content: center;
1116
+ background: #fff;
1117
+ transition: border-color 150ms ease-in-out;
1118
+ margin-right: 15px;
1119
+ margin-top: 15px;
1120
+ }
1121
+ .tp-options-list-item.entrada[data-v-ace81497]:hover {
1122
+ border-color: #08a19e;
1123
+ }
1124
+ .tp-options-list-item.entrada:hover .icon[data-v-ace81497] {
1125
+ color: #08a19e;
1126
+ }
1127
+ .tp-options-list-item.entrada.active[data-v-ace81497] {
1128
+ border-color: #08a19e;
1129
+ background: rgba(8, 161, 158, 0.1);
1130
+ }
1131
+ .tp-options-list-item.entrada.active .icon[data-v-ace81497] {
1132
+ color: #08a19e;
1133
+ }
1134
+ .tp-options-list-item.saida[data-v-ace81497]:hover {
1135
+ border-color: #ff7675;
1136
+ }
1137
+ .tp-options-list-item.saida:hover .icon[data-v-ace81497] {
1138
+ color: #ff7675;
1139
+ }
1140
+ .tp-options-list-item.saida.active[data-v-ace81497] {
1141
+ border-color: #ff7675;
1142
+ background: rgba(255, 118, 117, 0.1);
1143
+ }
1144
+ .tp-options-list-item.saida.active .icon[data-v-ace81497] {
1145
+ color: #ff7675;
1146
+ }
1147
+ .tp-options-list-item.default[data-v-ace81497]:hover {
1148
+ border-color: #437cf9;
1149
+ }
1150
+ .tp-options-list-item.default:hover .icon[data-v-ace81497] {
1151
+ color: #437cf9;
1152
+ }
1153
+ .tp-options-list-item.default.active[data-v-ace81497] {
1154
+ border-color: #437cf9;
1155
+ background: rgba(67, 124, 249, 0.1);
1156
+ }
1157
+ .tp-options-list-item.default.active .icon[data-v-ace81497] {
1158
+ color: #437cf9;
1159
+ }
1160
+ @media (width >= 1024px) {
1161
+ .tp-options-list-item.entrada[data-v-ace81497], .tp-options-list-item.saida[data-v-ace81497] {
1162
+ max-width: 165px;
1163
+ }
1164
+ }
1165
+ .tp-options-list-item[data-v-ace81497]:focus {
1166
+ border: 1px solid #437cf9;
1167
+ }
1168
+ .tp-options-list-item .icon[data-v-ace81497] {
1169
+ color: #565b66;
1170
+ display: flex;
1171
+ align-items: center;
1172
+ transition: color 150ms ease-in-out;
1173
+ line-height: 1.75em;
1174
+ min-width: 120px;
1175
+ }
1176
+ .tp-options-list-item .icon .text span[data-v-ace81497] {
1177
+ display: block;
1178
+ }
1179
+ .tp-options-list-item .icon .options-icon[data-v-ace81497] {
1180
+ font-size: 24px;
1181
+ }
1182
+ .tp-options-list-item .icon.vertical[data-v-ace81497] {
1183
+ flex-direction: column;
1184
+ }
1185
+ .tp-options-list-item .icon.vertical .text span[data-v-ace81497] {
1186
+ font-size: 14px;
1187
+ }
1188
+ .tp-options-list-item .icon.vertical .options-icon[data-v-ace81497] {
1189
+ font-size: 24px;
1190
+ }
1191
+ .tp-options-list-item .icon.horizontal[data-v-ace81497] {
1192
+ justify-content: space-around;
1193
+ min-width: 130px;
1194
+ }
1195
+ .tp-options-list-item .icon.horizontal .text[data-v-ace81497] {
1196
+ text-align: center;
1197
+ width: 70px;
1198
+ }
1199
+ .tp-options-list-item .icon.horizontal .text span[data-v-ace81497]:first-child {
1200
+ font-weight: 700;
1201
+ }
1202
+ .tp-options-list-item .icon.horizontal .options-icon[data-v-ace81497] {
1203
+ font-size: 47px;
1204
+ }
1205
+ .option-item-badge[data-v-ace81497] {
1206
+ background-color: #f56c6c;
1207
+ border: 1px solid #fff;
1208
+ position: absolute;
1209
+ top: 0;
1210
+ transform: translateY(-50%) translateX(100%);
1211
+ height: 12px;
1212
+ width: 12px;
1213
+ right: 5px;
1214
+ border-radius: 50%;
1215
+ }/* Element Chalk Variables */
1216
+ /* Transition
1217
+ -------------------------- */
1218
+ /* Color
1219
+ -------------------------- */
1220
+ /* 53a8ff */
1221
+ /* 66b1ff */
1222
+ /* 79bbff */
1223
+ /* 8cc5ff */
1224
+ /* a0cfff */
1225
+ /* b3d8ff */
1226
+ /* c6e2ff */
1227
+ /* d9ecff */
1228
+ /* ecf5ff */
1229
+ /* Link
1230
+ -------------------------- */
1231
+ /* Border
1232
+ -------------------------- */
1233
+ /* Fill
1234
+ -------------------------- */
1235
+ /* Typography
1236
+ -------------------------- */
1237
+ /* Size
1238
+ -------------------------- */
1239
+ /* z-index
1240
+ -------------------------- */
1241
+ /* Disable base
1242
+ -------------------------- */
1243
+ /* Icon
1244
+ -------------------------- */
1245
+ /* Checkbox
1246
+ -------------------------- */
1247
+ /* Radio
1248
+ -------------------------- */
1249
+ /* Select
1250
+ -------------------------- */
1251
+ /* Alert
1252
+ -------------------------- */
1253
+ /* MessageBox
1254
+ -------------------------- */
1255
+ /* Message
1256
+ -------------------------- */
1257
+ /* Notification
1258
+ -------------------------- */
1259
+ /* Input
1260
+ -------------------------- */
1261
+ /* Cascader
1262
+ -------------------------- */
1263
+ /* Group
1264
+ -------------------------- */
1265
+ /* Tab
1266
+ -------------------------- */
1267
+ /* Button
1268
+ -------------------------- */
1269
+ /* cascader
1270
+ -------------------------- */
1271
+ /* Switch
1272
+ -------------------------- */
1273
+ /* Dialog
1274
+ -------------------------- */
1275
+ /* Table
1276
+ -------------------------- */
1277
+ /* Pagination
1278
+ -------------------------- */
1279
+ /* Popup
1280
+ -------------------------- */
1281
+ /* Popover
1282
+ -------------------------- */
1283
+ /* Tooltip
1284
+ -------------------------- */
1285
+ /* Tag
1286
+ -------------------------- */
1287
+ /* Tree
1288
+ -------------------------- */
1289
+ /* Dropdown
1290
+ -------------------------- */
1291
+ /* Badge
1292
+ -------------------------- */
1293
+ /* Card
1294
+ --------------------------*/
1295
+ /* Slider
1296
+ --------------------------*/
1297
+ /* Steps
1298
+ --------------------------*/
1299
+ /* Menu
1300
+ --------------------------*/
1301
+ /* Rate
1302
+ --------------------------*/
1303
+ /* DatePicker
1304
+ --------------------------*/
1305
+ /* Loading
1306
+ --------------------------*/
1307
+ /* Scrollbar
1308
+ --------------------------*/
1309
+ /* Carousel
1310
+ --------------------------*/
1311
+ /* Collapse
1312
+ --------------------------*/
1313
+ /* Transfer
1314
+ --------------------------*/
1315
+ /* Header
1316
+ --------------------------*/
1317
+ /* Footer
1318
+ --------------------------*/
1319
+ /* Main
1320
+ --------------------------*/
1321
+ /* Timeline
1322
+ --------------------------*/
1323
+ /* Backtop
1324
+ --------------------------*/
1325
+ /* Link
1326
+ --------------------------*/
1327
+ /* Calendar
1328
+ --------------------------*/
1329
+ /* Form
1330
+ -------------------------- */
1331
+ /* Avatar
1332
+ --------------------------*/
1333
+ /* Empty
1334
+ -------------------------- */
1335
+ /* Descriptions
1336
+ -------------------------- */
1337
+ /* Skeleton
1338
+ --------------------------*/
1339
+ /* Svg
1340
+ --------------- */
1341
+ /* Result
1342
+ -------------------------- */
1343
+ /* Break-point
1344
+ --------------------------*/
1345
+ /**
1346
+ * ReSass.
1347
+ *
1348
+ * MIXIN: Responsive Media Queries.
1349
+ *
1350
+ * Creates responsive media queries for seven different screen sizes.
1351
+ * These are based on min-width which means if x is the size then your
1352
+ * CSS will affect any device with screen width x and above.
1353
+ *
1354
+ * USAGE:
1355
+ * @include r(240) { }
1356
+ * @include r(320) { }
1357
+ * @include r(480) { }
1358
+ * @include r(768) { }
1359
+ * @include r(1024) { }
1360
+ * @include r(1140) { }
1361
+ * @include r(1280) { }
1362
+ * @include r(1500) { }
1363
+ *
1364
+ * CSS content goes inside {} brackets. These mixins should be used inside
1365
+ * a class definition. For example:
1366
+ *
1367
+ * The following CSS will hide the .header on screen width 320px and above.
1368
+ * .header {
1369
+ * @include r(320) { display: none; }
1370
+ * }
1371
+ *
1372
+ * @author Ahmad Awais (https://github.com/ahmadawais)
1373
+ * @link https://github.com/ahmadawais/ReSass.git
1374
+ * @version 1.0.0
1375
+ */
1376
+ @keyframes expande-719fb911 {
1377
+ 0% {
1378
+ transform: scale(0);
1379
+ opacity: 1;
1380
+ }
1381
+ 25% {
1382
+ transform: scale(1);
1383
+ opacity: 1;
1384
+ }
1385
+ 40% {
1386
+ transform: scale(0.8);
1387
+ opacity: 0;
1388
+ }
1389
+ 50% {
1390
+ transform: scale(0);
1391
+ opacity: 0;
1392
+ }
1393
+ 100% {
1394
+ opacity: 0;
1395
+ transform: scale(0);
1396
+ }
1397
+ }
1398
+ @keyframes expandeInterno-719fb911 {
1399
+ 0%, 10%, 100% {
1400
+ transform: scale(0);
1401
+ }
1402
+ 50% {
1403
+ transform: scale(2);
1404
+ }
1405
+ }
1406
+ @keyframes residuo-719fb911 {
1407
+ 0%, 30% {
1408
+ opacity: 0;
1409
+ }
1410
+ 40% {
1411
+ opacity: 0.5;
1412
+ }
1413
+ 60% {
1414
+ opacity: 1;
1415
+ }
1416
+ 70% {
1417
+ opacity: 0;
1418
+ }
1419
+ 100% {
1420
+ opacity: 0;
1421
+ transform: scale(1.2);
1422
+ }
1423
+ }
1424
+ @keyframes icone-719fb911 {
1425
+ 0%, 15% {
1426
+ opacity: 1;
1427
+ transform: scale(0.1);
1428
+ }
1429
+ 35% {
1430
+ opacity: 1;
1431
+ transform: scale(1);
1432
+ }
1433
+ 85% {
1434
+ opacity: 1;
1435
+ transform: scale(1.2);
1436
+ }
1437
+ 100% {
1438
+ opacity: 0;
1439
+ transform: scale(1.8);
1440
+ }
1441
+ }
1442
+ .tp-loader[data-v-719fb911] {
1443
+ position: fixed;
1444
+ inset: 0;
1445
+ z-index: 5000;
1446
+ }
1447
+ .tp-loader > .overlay[data-v-719fb911] {
1448
+ position: absolute;
1449
+ width: 100%;
1450
+ height: 100%;
1451
+ inset: 0;
1452
+ background-color: #fff;
1453
+ opacity: 1;
1454
+ }
1455
+ .tp-loader .wrapper[data-v-719fb911] {
1456
+ text-align: center;
1457
+ display: flex;
1458
+ align-items: center;
1459
+ justify-content: center;
1460
+ flex-direction: column;
1461
+ height: 100%;
1462
+ }
1463
+ .tp-loader .wrapper > svg[data-v-719fb911] {
1464
+ position: relative;
1465
+ z-index: 98;
1466
+ margin-top: -10px;
1467
+ }
1468
+ .tp-loader .wrapper .circulo[data-v-719fb911] {
1469
+ transform-origin: 30% 32%;
1470
+ }
1471
+ .tp-loader .wrapper #circulo[data-v-719fb911] {
1472
+ animation-name: expande-719fb911;
1473
+ animation-duration: 2s;
1474
+ animation-direction: normal;
1475
+ animation-iteration-count: infinite;
1476
+ animation-timing-function: linear;
1477
+ }
1478
+ .tp-loader .wrapper #circulo-interno[data-v-719fb911] {
1479
+ animation-name: expandeInterno-719fb911;
1480
+ animation-duration: 2s;
1481
+ animation-direction: normal;
1482
+ animation-iteration-count: infinite;
1483
+ animation-timing-function: linear;
1484
+ }
1485
+ .tp-loader .wrapper .icones[data-v-719fb911] {
1486
+ position: absolute;
1487
+ z-index: 99;
1488
+ width: 50px;
1489
+ height: 50px;
1490
+ display: inline-flex;
1491
+ align-items: center;
1492
+ justify-content: center;
1493
+ flex-direction: row;
1494
+ }
1495
+ .tp-loader .wrapper .icones i[data-v-719fb911] {
1496
+ font-size: 3em;
1497
+ position: absolute;
1498
+ display: inline-block;
1499
+ width: 100%;
1500
+ line-height: 100%;
1501
+ opacity: 0;
1502
+ transform-origin: center center;
1503
+ color: #409EFF;
1504
+ animation-name: icone-719fb911;
1505
+ animation-duration: 2s;
1506
+ animation-timing-function: ease-out;
1507
+ animation-iteration-count: 1;
1508
+ /* stylelint-disable-next-line custom-property-pattern */
1509
+ animation-delay: calc(var(--iconsItem) * 2s);
1510
+ }
1511
+ .tp-loader .wrapper .icones i[data-v-719fb911]:last-child {
1512
+ animation-iteration-count: infinite;
1513
+ }
1514
+ .tp-loader .wrapper #bola .residuo[data-v-719fb911] {
1515
+ animation-name: residuo-719fb911;
1516
+ animation-duration: 2s;
1517
+ animation-direction: reverse;
1518
+ animation-iteration-count: infinite;
1519
+ animation-timing-function: ease-in;
1520
+ transform: scale(0.1);
1521
+ }
1522
+ .tp-loader .wrapper #bola .residuo.top[data-v-719fb911] {
1523
+ transform-origin: 30% 0;
1524
+ }
1525
+ .tp-loader .wrapper #bola .residuo.top.right[data-v-719fb911] {
1526
+ transform-origin: 45% 5%;
1527
+ transform: translate(40px, -40px) scale(0.1);
1528
+ }
1529
+ .tp-loader .wrapper #bola .residuo.top.left[data-v-719fb911] {
1530
+ transform-origin: 15% 5%;
1531
+ transform: translate(-40px, -40px) scale(0.1);
1532
+ }
1533
+ .tp-loader .wrapper #bola .residuo.bottom[data-v-719fb911] {
1534
+ transform-origin: 30% 70%;
1535
+ }
1536
+ .tp-loader .wrapper #bola .residuo.bottom.right[data-v-719fb911] {
1537
+ transform-origin: 45% 65%;
1538
+ transform: translate(40px, 40px) scale(0.1);
1539
+ }
1540
+ .tp-loader .wrapper #bola .residuo.bottom.left[data-v-719fb911] {
1541
+ transform-origin: 15% 65%;
1542
+ transform: translate(-40px, 40px) scale(0.1);
1543
+ }
1544
+ .tp-loader .wrapper #bola .residuo.middle.right[data-v-719fb911] {
1545
+ transform-origin: 65% 35%;
1546
+ }
1547
+ .tp-loader .wrapper #bola .residuo.middle.left[data-v-719fb911] {
1548
+ transform-origin: 0 35%;
1549
+ }
1550
+ .tp-loader .wrapper .texto[data-v-719fb911] {
1551
+ position: absolute;
1552
+ display: inline-flex;
1553
+ z-index: 5001;
1554
+ color: #303133;
1555
+ margin-top: 100px;
1556
+ font-size: 1.5em;
1557
+ font-weight: bold;
1558
+ }/* Element Chalk Variables */
1559
+ /* Transition
1560
+ -------------------------- */
1561
+ /* Color
1562
+ -------------------------- */
1563
+ /* 53a8ff */
1564
+ /* 66b1ff */
1565
+ /* 79bbff */
1566
+ /* 8cc5ff */
1567
+ /* a0cfff */
1568
+ /* b3d8ff */
1569
+ /* c6e2ff */
1570
+ /* d9ecff */
1571
+ /* ecf5ff */
1572
+ /* Link
1573
+ -------------------------- */
1574
+ /* Border
1575
+ -------------------------- */
1576
+ /* Fill
1577
+ -------------------------- */
1578
+ /* Typography
1579
+ -------------------------- */
1580
+ /* Size
1581
+ -------------------------- */
1582
+ /* z-index
1583
+ -------------------------- */
1584
+ /* Disable base
1585
+ -------------------------- */
1586
+ /* Icon
1587
+ -------------------------- */
1588
+ /* Checkbox
1589
+ -------------------------- */
1590
+ /* Radio
1591
+ -------------------------- */
1592
+ /* Select
1593
+ -------------------------- */
1594
+ /* Alert
1595
+ -------------------------- */
1596
+ /* MessageBox
1597
+ -------------------------- */
1598
+ /* Message
1599
+ -------------------------- */
1600
+ /* Notification
1601
+ -------------------------- */
1602
+ /* Input
1603
+ -------------------------- */
1604
+ /* Cascader
1605
+ -------------------------- */
1606
+ /* Group
1607
+ -------------------------- */
1608
+ /* Tab
1609
+ -------------------------- */
1610
+ /* Button
1611
+ -------------------------- */
1612
+ /* cascader
1613
+ -------------------------- */
1614
+ /* Switch
1615
+ -------------------------- */
1616
+ /* Dialog
1617
+ -------------------------- */
1618
+ /* Table
1619
+ -------------------------- */
1620
+ /* Pagination
1621
+ -------------------------- */
1622
+ /* Popup
1623
+ -------------------------- */
1624
+ /* Popover
1625
+ -------------------------- */
1626
+ /* Tooltip
1627
+ -------------------------- */
1628
+ /* Tag
1629
+ -------------------------- */
1630
+ /* Tree
1631
+ -------------------------- */
1632
+ /* Dropdown
1633
+ -------------------------- */
1634
+ /* Badge
1635
+ -------------------------- */
1636
+ /* Card
1637
+ --------------------------*/
1638
+ /* Slider
1639
+ --------------------------*/
1640
+ /* Steps
1641
+ --------------------------*/
1642
+ /* Menu
1643
+ --------------------------*/
1644
+ /* Rate
1645
+ --------------------------*/
1646
+ /* DatePicker
1647
+ --------------------------*/
1648
+ /* Loading
1649
+ --------------------------*/
1650
+ /* Scrollbar
1651
+ --------------------------*/
1652
+ /* Carousel
1653
+ --------------------------*/
1654
+ /* Collapse
1655
+ --------------------------*/
1656
+ /* Transfer
1657
+ --------------------------*/
1658
+ /* Header
1659
+ --------------------------*/
1660
+ /* Footer
1661
+ --------------------------*/
1662
+ /* Main
1663
+ --------------------------*/
1664
+ /* Timeline
1665
+ --------------------------*/
1666
+ /* Backtop
1667
+ --------------------------*/
1668
+ /* Link
1669
+ --------------------------*/
1670
+ /* Calendar
1671
+ --------------------------*/
1672
+ /* Form
1673
+ -------------------------- */
1674
+ /* Avatar
1675
+ --------------------------*/
1676
+ /* Empty
1677
+ -------------------------- */
1678
+ /* Descriptions
1679
+ -------------------------- */
1680
+ /* Skeleton
1681
+ --------------------------*/
1682
+ /* Svg
1683
+ --------------- */
1684
+ /* Result
1685
+ -------------------------- */
1686
+ /* Break-point
1687
+ --------------------------*/
1688
+ /**
1689
+ * ReSass.
1690
+ *
1691
+ * MIXIN: Responsive Media Queries.
1692
+ *
1693
+ * Creates responsive media queries for seven different screen sizes.
1694
+ * These are based on min-width which means if x is the size then your
1695
+ * CSS will affect any device with screen width x and above.
1696
+ *
1697
+ * USAGE:
1698
+ * @include r(240) { }
1699
+ * @include r(320) { }
1700
+ * @include r(480) { }
1701
+ * @include r(768) { }
1702
+ * @include r(1024) { }
1703
+ * @include r(1140) { }
1704
+ * @include r(1280) { }
1705
+ * @include r(1500) { }
1706
+ *
1707
+ * CSS content goes inside {} brackets. These mixins should be used inside
1708
+ * a class definition. For example:
1709
+ *
1710
+ * The following CSS will hide the .header on screen width 320px and above.
1711
+ * .header {
1712
+ * @include r(320) { display: none; }
1713
+ * }
1714
+ *
1715
+ * @author Ahmad Awais (https://github.com/ahmadawais)
1716
+ * @link https://github.com/ahmadawais/ReSass.git
1717
+ * @version 1.0.0
1718
+ */
1719
+ @keyframes skeleton-3fc0709e {
1720
+ 0% {
1721
+ background-position: -200px 0;
1722
+ }
1723
+ 100% {
1724
+ background-position: calc(200px + 100%) 0;
1725
+ }
1726
+ }
1727
+ .tp-skeleton[data-v-3fc0709e] {
1728
+ display: block;
1729
+ height: 100%;
1730
+ /* stylelint-disable-next-line custom-property-pattern */
1731
+ --baseColor: #ebeef2;
1732
+ }
1733
+ .tp-skeleton span[data-v-3fc0709e] {
1734
+ /* stylelint-disable-next-line custom-property-pattern */
1735
+ background-color: var(--baseColor);
1736
+ background-image: linear-gradient(90deg, var(--baseColor), color-mix(#FFFFFF, #E4E7ED, 70%), var(--baseColor));
1737
+ background-size: 200px 100%;
1738
+ background-repeat: no-repeat;
1739
+ background-position: -200px 0;
1740
+ border-radius: 4px;
1741
+ display: inline-block;
1742
+ line-height: 20px;
1743
+ margin-bottom: 3px;
1744
+ width: 100%;
1745
+ min-height: 15px;
1746
+ animation-name: skeleton-3fc0709e;
1747
+ animation-duration: calc(var(--duration) * 1s);
1748
+ animation-timing-function: ease-in-out;
1749
+ animation-iteration-count: infinite;
1750
+ }
1751
+ .tp-skeleton span.circle[data-v-3fc0709e] {
1752
+ width: inherit;
1753
+ border-radius: 50%;
1754
+ }/* Element Chalk Variables */
1755
+ /* Transition
1756
+ -------------------------- */
1757
+ /* Color
1758
+ -------------------------- */
1759
+ /* 53a8ff */
1760
+ /* 66b1ff */
1761
+ /* 79bbff */
1762
+ /* 8cc5ff */
1763
+ /* a0cfff */
1764
+ /* b3d8ff */
1765
+ /* c6e2ff */
1766
+ /* d9ecff */
1767
+ /* ecf5ff */
1768
+ /* Link
1769
+ -------------------------- */
1770
+ /* Border
1771
+ -------------------------- */
1772
+ /* Fill
1773
+ -------------------------- */
1774
+ /* Typography
1775
+ -------------------------- */
1776
+ /* Size
1777
+ -------------------------- */
1778
+ /* z-index
1779
+ -------------------------- */
1780
+ /* Disable base
1781
+ -------------------------- */
1782
+ /* Icon
1783
+ -------------------------- */
1784
+ /* Checkbox
1785
+ -------------------------- */
1786
+ /* Radio
1787
+ -------------------------- */
1788
+ /* Select
1789
+ -------------------------- */
1790
+ /* Alert
1791
+ -------------------------- */
1792
+ /* MessageBox
1793
+ -------------------------- */
1794
+ /* Message
1795
+ -------------------------- */
1796
+ /* Notification
1797
+ -------------------------- */
1798
+ /* Input
1799
+ -------------------------- */
1800
+ /* Cascader
1801
+ -------------------------- */
1802
+ /* Group
1803
+ -------------------------- */
1804
+ /* Tab
1805
+ -------------------------- */
1806
+ /* Button
1807
+ -------------------------- */
1808
+ /* cascader
1809
+ -------------------------- */
1810
+ /* Switch
1811
+ -------------------------- */
1812
+ /* Dialog
1813
+ -------------------------- */
1814
+ /* Table
1815
+ -------------------------- */
1816
+ /* Pagination
1817
+ -------------------------- */
1818
+ /* Popup
1819
+ -------------------------- */
1820
+ /* Popover
1821
+ -------------------------- */
1822
+ /* Tooltip
1823
+ -------------------------- */
1824
+ /* Tag
1825
+ -------------------------- */
1826
+ /* Tree
1827
+ -------------------------- */
1828
+ /* Dropdown
1829
+ -------------------------- */
1830
+ /* Badge
1831
+ -------------------------- */
1832
+ /* Card
1833
+ --------------------------*/
1834
+ /* Slider
1835
+ --------------------------*/
1836
+ /* Steps
1837
+ --------------------------*/
1838
+ /* Menu
1839
+ --------------------------*/
1840
+ /* Rate
1841
+ --------------------------*/
1842
+ /* DatePicker
1843
+ --------------------------*/
1844
+ /* Loading
1845
+ --------------------------*/
1846
+ /* Scrollbar
1847
+ --------------------------*/
1848
+ /* Carousel
1849
+ --------------------------*/
1850
+ /* Collapse
1851
+ --------------------------*/
1852
+ /* Transfer
1853
+ --------------------------*/
1854
+ /* Header
1855
+ --------------------------*/
1856
+ /* Footer
1857
+ --------------------------*/
1858
+ /* Main
1859
+ --------------------------*/
1860
+ /* Timeline
1861
+ --------------------------*/
1862
+ /* Backtop
1863
+ --------------------------*/
1864
+ /* Link
1865
+ --------------------------*/
1866
+ /* Calendar
1867
+ --------------------------*/
1868
+ /* Form
1869
+ -------------------------- */
1870
+ /* Avatar
1871
+ --------------------------*/
1872
+ /* Empty
1873
+ -------------------------- */
1874
+ /* Descriptions
1875
+ -------------------------- */
1876
+ /* Skeleton
1877
+ --------------------------*/
1878
+ /* Svg
1879
+ --------------- */
1880
+ /* Result
1881
+ -------------------------- */
1882
+ /* Break-point
1883
+ --------------------------*/
1884
+ /**
1885
+ * ReSass.
1886
+ *
1887
+ * MIXIN: Responsive Media Queries.
1888
+ *
1889
+ * Creates responsive media queries for seven different screen sizes.
1890
+ * These are based on min-width which means if x is the size then your
1891
+ * CSS will affect any device with screen width x and above.
1892
+ *
1893
+ * USAGE:
1894
+ * @include r(240) { }
1895
+ * @include r(320) { }
1896
+ * @include r(480) { }
1897
+ * @include r(768) { }
1898
+ * @include r(1024) { }
1899
+ * @include r(1140) { }
1900
+ * @include r(1280) { }
1901
+ * @include r(1500) { }
1902
+ *
1903
+ * CSS content goes inside {} brackets. These mixins should be used inside
1904
+ * a class definition. For example:
1905
+ *
1906
+ * The following CSS will hide the .header on screen width 320px and above.
1907
+ * .header {
1908
+ * @include r(320) { display: none; }
1909
+ * }
1910
+ *
1911
+ * @author Ahmad Awais (https://github.com/ahmadawais)
1912
+ * @link https://github.com/ahmadawais/ReSass.git
1913
+ * @version 1.0.0
1914
+ */
1915
+ .icone[data-v-2861430a] {
1916
+ align-self: start;
1917
+ }
1918
+ .far.fa-lightbulb-on[data-v-2861430a] {
1919
+ font-size: 20px;
1920
+ }
1921
+ .grid-content[data-v-2861430a] {
1922
+ flex-wrap: wrap;
1923
+ border-radius: 4px;
1924
+ background-color: rgba(76, 135, 251, 0.1);
1925
+ border: solid 1px rgba(76, 135, 251, 0.2);
1926
+ padding: 1rem;
1927
+ font-size: 14px;
1928
+ line-height: 24px;
1929
+ color: #586d93;
1930
+ }
1931
+ .info-text[data-v-2861430a] {
1932
+ font-size: 12px;
1933
+ font-stretch: normal;
1934
+ font-style: normal;
1935
+ line-height: 1.33;
1936
+ letter-spacing: normal;
1937
+ text-align: left;
1938
+ }
1939
+ .tp-tip-error[data-v-2861430a] {
1940
+ background: rgba(245, 108, 108, 0.1019607843) 0% 0% no-repeat padding-box;
1941
+ border: 1px solid #ff6077;
1942
+ }
1943
+ .tp-tip-error[data-v-2861430a] strong, .tp-tip-error[data-v-2861430a] b, .tp-tip-error[data-v-2861430a] em {
1944
+ color: #ff425f;
1945
+ }
1946
+ .tp-tip-warning[data-v-2861430a] {
1947
+ background: #fff9ea 0% 0% no-repeat padding-box;
1948
+ border: 1px solid #ffc437;
1949
+ }
1950
+ .tp-tip-warning[data-v-2861430a] strong, .tp-tip-warning[data-v-2861430a] b, .tp-tip-warning[data-v-2861430a] em {
1951
+ color: #ffc437;
1952
+ }
1953
+ .tp-tip-success[data-v-2861430a] {
1954
+ background: #f3fcfc 0% 0% no-repeat padding-box;
1955
+ border: 1px solid #08a19e;
1956
+ }
1957
+ .tp-tip-success[data-v-2861430a] strong, .tp-tip-success[data-v-2861430a] b, .tp-tip-success[data-v-2861430a] em {
1958
+ color: #08a19e;
1959
+ }
1960
+ .tp-close-button[data-v-2861430a] {
1961
+ cursor: pointer;
1962
+ }
1963
+ .tp-title[data-v-2861430a] {
1964
+ font-size: 16px;
1965
+ }
1966
+ .tp-text[data-v-2861430a] {
1967
+ height: auto;
1968
+ transition: 0.4s opacity ease-out;
1969
+ }
1970
+ .tp-vanish[data-v-2861430a] {
1971
+ position: absolute;
1972
+ max-height: 0;
1973
+ transform: scale(0);
1974
+ opacity: 0;
1975
+ transition: 0s opacity linear;
1976
+ }/* Element Chalk Variables */
1977
+ /* Transition
1978
+ -------------------------- */
1979
+ /* Color
1980
+ -------------------------- */
1981
+ /* 53a8ff */
1982
+ /* 66b1ff */
1983
+ /* 79bbff */
1984
+ /* 8cc5ff */
1985
+ /* a0cfff */
1986
+ /* b3d8ff */
1987
+ /* c6e2ff */
1988
+ /* d9ecff */
1989
+ /* ecf5ff */
1990
+ /* Link
1991
+ -------------------------- */
1992
+ /* Border
1993
+ -------------------------- */
1994
+ /* Fill
1995
+ -------------------------- */
1996
+ /* Typography
1997
+ -------------------------- */
1998
+ /* Size
1999
+ -------------------------- */
2000
+ /* z-index
2001
+ -------------------------- */
2002
+ /* Disable base
2003
+ -------------------------- */
2004
+ /* Icon
2005
+ -------------------------- */
2006
+ /* Checkbox
2007
+ -------------------------- */
2008
+ /* Radio
2009
+ -------------------------- */
2010
+ /* Select
2011
+ -------------------------- */
2012
+ /* Alert
2013
+ -------------------------- */
2014
+ /* MessageBox
2015
+ -------------------------- */
2016
+ /* Message
2017
+ -------------------------- */
2018
+ /* Notification
2019
+ -------------------------- */
2020
+ /* Input
2021
+ -------------------------- */
2022
+ /* Cascader
2023
+ -------------------------- */
2024
+ /* Group
2025
+ -------------------------- */
2026
+ /* Tab
2027
+ -------------------------- */
2028
+ /* Button
2029
+ -------------------------- */
2030
+ /* cascader
2031
+ -------------------------- */
2032
+ /* Switch
2033
+ -------------------------- */
2034
+ /* Dialog
2035
+ -------------------------- */
2036
+ /* Table
2037
+ -------------------------- */
2038
+ /* Pagination
2039
+ -------------------------- */
2040
+ /* Popup
2041
+ -------------------------- */
2042
+ /* Popover
2043
+ -------------------------- */
2044
+ /* Tooltip
2045
+ -------------------------- */
2046
+ /* Tag
2047
+ -------------------------- */
2048
+ /* Tree
2049
+ -------------------------- */
2050
+ /* Dropdown
2051
+ -------------------------- */
2052
+ /* Badge
2053
+ -------------------------- */
2054
+ /* Card
2055
+ --------------------------*/
2056
+ /* Slider
2057
+ --------------------------*/
2058
+ /* Steps
2059
+ --------------------------*/
2060
+ /* Menu
2061
+ --------------------------*/
2062
+ /* Rate
2063
+ --------------------------*/
2064
+ /* DatePicker
2065
+ --------------------------*/
2066
+ /* Loading
2067
+ --------------------------*/
2068
+ /* Scrollbar
2069
+ --------------------------*/
2070
+ /* Carousel
2071
+ --------------------------*/
2072
+ /* Collapse
2073
+ --------------------------*/
2074
+ /* Transfer
2075
+ --------------------------*/
2076
+ /* Header
2077
+ --------------------------*/
2078
+ /* Footer
2079
+ --------------------------*/
2080
+ /* Main
2081
+ --------------------------*/
2082
+ /* Timeline
2083
+ --------------------------*/
2084
+ /* Backtop
2085
+ --------------------------*/
2086
+ /* Link
2087
+ --------------------------*/
2088
+ /* Calendar
2089
+ --------------------------*/
2090
+ /* Form
2091
+ -------------------------- */
2092
+ /* Avatar
2093
+ --------------------------*/
2094
+ /* Empty
2095
+ -------------------------- */
2096
+ /* Descriptions
2097
+ -------------------------- */
2098
+ /* Skeleton
2099
+ --------------------------*/
2100
+ /* Svg
2101
+ --------------- */
2102
+ /* Result
2103
+ -------------------------- */
2104
+ /* Break-point
2105
+ --------------------------*/
2106
+ /**
2107
+ * ReSass.
2108
+ *
2109
+ * MIXIN: Responsive Media Queries.
2110
+ *
2111
+ * Creates responsive media queries for seven different screen sizes.
2112
+ * These are based on min-width which means if x is the size then your
2113
+ * CSS will affect any device with screen width x and above.
2114
+ *
2115
+ * USAGE:
2116
+ * @include r(240) { }
2117
+ * @include r(320) { }
2118
+ * @include r(480) { }
2119
+ * @include r(768) { }
2120
+ * @include r(1024) { }
2121
+ * @include r(1140) { }
2122
+ * @include r(1280) { }
2123
+ * @include r(1500) { }
2124
+ *
2125
+ * CSS content goes inside {} brackets. These mixins should be used inside
2126
+ * a class definition. For example:
2127
+ *
2128
+ * The following CSS will hide the .header on screen width 320px and above.
2129
+ * .header {
2130
+ * @include r(320) { display: none; }
2131
+ * }
2132
+ *
2133
+ * @author Ahmad Awais (https://github.com/ahmadawais)
2134
+ * @link https://github.com/ahmadawais/ReSass.git
2135
+ * @version 1.0.0
2136
+ */
2137
+ .tp-autosuggest-clear-icon[data-v-959c4f16] {
2138
+ margin: 6px 6px 1px 6px;
2139
+ }
2140
+ [data-v-959c4f16] .el-select__input-wrapper {
2141
+ width: 100%;
2142
+ }
2143
+ [data-v-959c4f16] .el-select__input-wrapper .el-input .el-input__inner {
2144
+ width: 100%;
2145
+ }
2146
+ [data-v-959c4f16] .el-select__input-wrapper .el-input .el-input-group__prepend {
2147
+ padding: 0;
2148
+ }
2149
+ [data-v-959c4f16] .el-select__input-wrapper .el-input .el-input-group__prepend::after {
2150
+ display: none;
2151
+ }
2152
+ [data-v-959c4f16] .el-select__input-wrapper .el-input .el-input__wrapper {
2153
+ box-shadow: none;
2154
+ border-top: 1px solid var(--el-input-border-color);
2155
+ border-bottom: 1px solid var(--el-input-border-color);
2156
+ padding-left: 8px;
2157
+ }
2158
+ [data-v-959c4f16] .el-select__input-wrapper .el-input .el-input__wrapper .el-select__placeholder {
2159
+ padding-left: 16px !important;
2160
+ }
2161
+ [data-v-959c4f16] .el-select__input-wrapper .el-input.is-disabled .el-input__wrapper,[data-v-959c4f16] .el-select__input-wrapper .el-input.is-disabled .el-tag {
2162
+ cursor: not-allowed;
2163
+ }
2164
+ [data-v-959c4f16] .el-select__input-wrapper .el-input .el-input-group__append {
2165
+ padding: 0;
2166
+ }
2167
+ [data-v-959c4f16] .el-select__input-wrapper .el-input .el-input-group__append .el-input__close {
2168
+ width: 40px;
2169
+ }
2170
+ [data-v-959c4f16] .el-select__input-wrapper .el-input .el-input-group__append .el-input__close .tp-btn-close {
2171
+ margin: auto;
2172
+ }
2173
+ [data-v-959c4f16] .el-select__input-wrapper .el-input .el-input-group__prepend,[data-v-959c4f16] .el-select__input-wrapper .el-input .el-input-group__append {
2174
+ background-color: var(--el-input-bg-color, var(--el-fill-color-blank));
2175
+ }
2176
+ [data-v-959c4f16] .el-select__input-wrapper .el-input .el-input-group__prepend,[data-v-959c4f16] .el-select__input-wrapper .el-input .el-input-group__append,[data-v-959c4f16] .el-select__input-wrapper .el-input .tp-autosuggest-clear-icon {
2177
+ cursor: pointer;
2178
+ color: #606266;
2179
+ }
2180
+ .tp-autosuggest-vertical-divider[data-v-959c4f16] {
2181
+ height: 33.59px;
2182
+ margin: 0;
2183
+ }
2184
+ .tp-autosuggest-input-prepend-icon[data-v-959c4f16] {
2185
+ display: flex;
2186
+ margin: 0 10px -2px 12px;
2187
+ }
2188
+ .tp-autosuggest-loading[data-v-959c4f16] {
2189
+ text-align: center;
2190
+ font-size: 1.5em;
2191
+ padding: 10px;
2192
+ margin: 0;
2193
+ }
2194
+ .tp-select-dropdown__list.el-select-dropdown__list li.el-select-dropdown__item[data-v-959c4f16] {
2195
+ line-height: 1.5em;
2196
+ height: auto;
2197
+ padding: 12px;
2198
+ position: relative;
2199
+ transition: 100ms all linear;
2200
+ }
2201
+ .tp-select-dropdown__list.el-select-dropdown__list li.el-select-dropdown__item.hover[data-v-959c4f16] {
2202
+ padding-left: 20px;
2203
+ }
2204
+ .tp-select-dropdown__list.el-select-dropdown__list li.el-select-dropdown__item.hover[data-v-959c4f16]::before {
2205
+ position: absolute;
2206
+ display: inline-block;
2207
+ width: 4px;
2208
+ top: 5px;
2209
+ bottom: 5px;
2210
+ left: 5px;
2211
+ background: #409EFF;
2212
+ border-radius: 2px;
2213
+ }
2214
+ .tp-select-dropdown__list.el-select-dropdown__list li.el-select-dropdown__item.selected[data-v-959c4f16] {
2215
+ color: #606266;
2216
+ }
2217
+ .tp-select-dropdown__list.el-select-dropdown__list li.el-select-dropdown__item.created a[data-v-959c4f16] {
2218
+ color: #409EFF;
2219
+ font-weight: normal;
2220
+ border-bottom: 1px solid #409EFF;
2221
+ line-height: 1.5em;
2222
+ display: inline-block;
2223
+ }
2224
+ .tp-select-dropdown__list.el-select-dropdown__list li.el-select-dropdown__item small[data-v-959c4f16] {
2225
+ font-size: 14px;
2226
+ color: color-mix(#FFFFFF, #909399, 40%);
2227
+ }/* Element Chalk Variables */
2228
+ /* Transition
2229
+ -------------------------- */
2230
+ /* Color
2231
+ -------------------------- */
2232
+ /* 53a8ff */
2233
+ /* 66b1ff */
2234
+ /* 79bbff */
2235
+ /* 8cc5ff */
2236
+ /* a0cfff */
2237
+ /* b3d8ff */
2238
+ /* c6e2ff */
2239
+ /* d9ecff */
2240
+ /* ecf5ff */
2241
+ /* Link
2242
+ -------------------------- */
2243
+ /* Border
2244
+ -------------------------- */
2245
+ /* Fill
2246
+ -------------------------- */
2247
+ /* Typography
2248
+ -------------------------- */
2249
+ /* Size
2250
+ -------------------------- */
2251
+ /* z-index
2252
+ -------------------------- */
2253
+ /* Disable base
2254
+ -------------------------- */
2255
+ /* Icon
2256
+ -------------------------- */
2257
+ /* Checkbox
2258
+ -------------------------- */
2259
+ /* Radio
2260
+ -------------------------- */
2261
+ /* Select
2262
+ -------------------------- */
2263
+ /* Alert
2264
+ -------------------------- */
2265
+ /* MessageBox
2266
+ -------------------------- */
2267
+ /* Message
2268
+ -------------------------- */
2269
+ /* Notification
2270
+ -------------------------- */
2271
+ /* Input
2272
+ -------------------------- */
2273
+ /* Cascader
2274
+ -------------------------- */
2275
+ /* Group
2276
+ -------------------------- */
2277
+ /* Tab
2278
+ -------------------------- */
2279
+ /* Button
2280
+ -------------------------- */
2281
+ /* cascader
2282
+ -------------------------- */
2283
+ /* Switch
2284
+ -------------------------- */
2285
+ /* Dialog
2286
+ -------------------------- */
2287
+ /* Table
2288
+ -------------------------- */
2289
+ /* Pagination
2290
+ -------------------------- */
2291
+ /* Popup
2292
+ -------------------------- */
2293
+ /* Popover
2294
+ -------------------------- */
2295
+ /* Tooltip
2296
+ -------------------------- */
2297
+ /* Tag
2298
+ -------------------------- */
2299
+ /* Tree
2300
+ -------------------------- */
2301
+ /* Dropdown
2302
+ -------------------------- */
2303
+ /* Badge
2304
+ -------------------------- */
2305
+ /* Card
2306
+ --------------------------*/
2307
+ /* Slider
2308
+ --------------------------*/
2309
+ /* Steps
2310
+ --------------------------*/
2311
+ /* Menu
2312
+ --------------------------*/
2313
+ /* Rate
2314
+ --------------------------*/
2315
+ /* DatePicker
2316
+ --------------------------*/
2317
+ /* Loading
2318
+ --------------------------*/
2319
+ /* Scrollbar
2320
+ --------------------------*/
2321
+ /* Carousel
2322
+ --------------------------*/
2323
+ /* Collapse
2324
+ --------------------------*/
2325
+ /* Transfer
2326
+ --------------------------*/
2327
+ /* Header
2328
+ --------------------------*/
2329
+ /* Footer
2330
+ --------------------------*/
2331
+ /* Main
2332
+ --------------------------*/
2333
+ /* Timeline
2334
+ --------------------------*/
2335
+ /* Backtop
2336
+ --------------------------*/
2337
+ /* Link
2338
+ --------------------------*/
2339
+ /* Calendar
2340
+ --------------------------*/
2341
+ /* Form
2342
+ -------------------------- */
2343
+ /* Avatar
2344
+ --------------------------*/
2345
+ /* Empty
2346
+ -------------------------- */
2347
+ /* Descriptions
2348
+ -------------------------- */
2349
+ /* Skeleton
2350
+ --------------------------*/
2351
+ /* Svg
2352
+ --------------- */
2353
+ /* Result
2354
+ -------------------------- */
2355
+ /* Break-point
2356
+ --------------------------*/
2357
+ /**
2358
+ * ReSass.
2359
+ *
2360
+ * MIXIN: Responsive Media Queries.
2361
+ *
2362
+ * Creates responsive media queries for seven different screen sizes.
2363
+ * These are based on min-width which means if x is the size then your
2364
+ * CSS will affect any device with screen width x and above.
2365
+ *
2366
+ * USAGE:
2367
+ * @include r(240) { }
2368
+ * @include r(320) { }
2369
+ * @include r(480) { }
2370
+ * @include r(768) { }
2371
+ * @include r(1024) { }
2372
+ * @include r(1140) { }
2373
+ * @include r(1280) { }
2374
+ * @include r(1500) { }
2375
+ *
2376
+ * CSS content goes inside {} brackets. These mixins should be used inside
2377
+ * a class definition. For example:
2378
+ *
2379
+ * The following CSS will hide the .header on screen width 320px and above.
2380
+ * .header {
2381
+ * @include r(320) { display: none; }
2382
+ * }
2383
+ *
2384
+ * @author Ahmad Awais (https://github.com/ahmadawais)
2385
+ * @link https://github.com/ahmadawais/ReSass.git
2386
+ * @version 1.0.0
2387
+ */
2388
+ .el-step__head.is-process[data-v-3c497fa9] {
2389
+ color: #2d6eda;
2390
+ border-color: #2d6eda;
2391
+ }