@syncfusion/ej2-dropdowns 27.2.5 → 28.1.33

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 (222) hide show
  1. package/README.md +2 -2
  2. package/dist/ej2-dropdowns.min.js +3 -3
  3. package/dist/ej2-dropdowns.umd.min.js +3 -3
  4. package/dist/ej2-dropdowns.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-dropdowns.es2015.js +495 -37
  6. package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
  7. package/dist/es6/ej2-dropdowns.es5.js +494 -35
  8. package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
  9. package/dist/global/ej2-dropdowns.min.js +3 -3
  10. package/dist/global/ej2-dropdowns.min.js.map +1 -1
  11. package/dist/global/index.d.ts +2 -2
  12. package/package.json +13 -13
  13. package/src/auto-complete/auto-complete.js +5 -2
  14. package/src/combo-box/combo-box.js +1 -1
  15. package/src/common/incremental-search.d.ts +1 -1
  16. package/src/common/incremental-search.js +5 -1
  17. package/src/common/virtual-scroll.js +2 -1
  18. package/src/drop-down-base/drop-down-base.js +14 -2
  19. package/src/drop-down-list/drop-down-list-model.d.ts +31 -0
  20. package/src/drop-down-list/drop-down-list.d.ts +44 -1
  21. package/src/drop-down-list/drop-down-list.js +202 -13
  22. package/src/list-box/list-box.d.ts +4 -0
  23. package/src/list-box/list-box.js +9 -4
  24. package/src/mention/mention.js +6 -1
  25. package/src/multi-select/multi-select-model.d.ts +31 -0
  26. package/src/multi-select/multi-select.d.ts +45 -0
  27. package/src/multi-select/multi-select.js +250 -10
  28. package/styles/auto-complete/_tailwind3-definition.scss +2 -0
  29. package/styles/auto-complete/bds.css +75 -0
  30. package/styles/auto-complete/bds.scss +4 -0
  31. package/styles/auto-complete/highcontrast.css +1 -1
  32. package/styles/auto-complete/tailwind3.css +101 -0
  33. package/styles/auto-complete/tailwind3.scss +4 -0
  34. package/styles/bds-lite.css +3013 -0
  35. package/styles/bds-lite.scss +28 -0
  36. package/styles/bds.css +3855 -0
  37. package/styles/bds.scss +33 -0
  38. package/styles/bootstrap-dark-lite.css +41 -2
  39. package/styles/bootstrap-dark.css +41 -2
  40. package/styles/bootstrap-lite.css +30 -1
  41. package/styles/bootstrap.css +30 -1
  42. package/styles/bootstrap4-lite.css +30 -0
  43. package/styles/bootstrap4.css +30 -0
  44. package/styles/bootstrap5-dark-lite.css +30 -0
  45. package/styles/bootstrap5-dark.css +30 -0
  46. package/styles/bootstrap5-lite.css +30 -0
  47. package/styles/bootstrap5.3-lite.css +30 -3
  48. package/styles/bootstrap5.3.css +30 -3
  49. package/styles/bootstrap5.css +30 -0
  50. package/styles/combo-box/_tailwind3-definition.scss +2 -0
  51. package/styles/combo-box/bds.css +75 -0
  52. package/styles/combo-box/bds.scss +4 -0
  53. package/styles/combo-box/highcontrast.css +1 -1
  54. package/styles/combo-box/tailwind3.css +101 -0
  55. package/styles/combo-box/tailwind3.scss +4 -0
  56. package/styles/drop-down-base/_bigger.scss +3 -0
  57. package/styles/drop-down-base/_layout.scss +7 -0
  58. package/styles/drop-down-base/_tailwind3-definition.scss +98 -0
  59. package/styles/drop-down-base/bds.css +496 -0
  60. package/styles/drop-down-base/bds.scss +4 -0
  61. package/styles/drop-down-base/bootstrap-dark.css +4 -0
  62. package/styles/drop-down-base/bootstrap.css +4 -0
  63. package/styles/drop-down-base/bootstrap4.css +4 -0
  64. package/styles/drop-down-base/bootstrap5-dark.css +4 -0
  65. package/styles/drop-down-base/bootstrap5.3.css +4 -0
  66. package/styles/drop-down-base/bootstrap5.css +4 -0
  67. package/styles/drop-down-base/fabric-dark.css +4 -0
  68. package/styles/drop-down-base/fabric.css +4 -0
  69. package/styles/drop-down-base/fluent-dark.css +4 -0
  70. package/styles/drop-down-base/fluent.css +4 -0
  71. package/styles/drop-down-base/fluent2.css +9 -5
  72. package/styles/drop-down-base/highcontrast-light.css +4 -0
  73. package/styles/drop-down-base/highcontrast.css +4 -0
  74. package/styles/drop-down-base/material-dark.css +4 -0
  75. package/styles/drop-down-base/material.css +4 -0
  76. package/styles/drop-down-base/material3-dark.css +4 -0
  77. package/styles/drop-down-base/material3.css +4 -0
  78. package/styles/drop-down-base/tailwind-dark.css +4 -0
  79. package/styles/drop-down-base/tailwind.css +4 -0
  80. package/styles/drop-down-base/tailwind3.css +392 -0
  81. package/styles/drop-down-base/tailwind3.scss +4 -0
  82. package/styles/drop-down-list/_highcontrast-definition.scss +1 -1
  83. package/styles/drop-down-list/_layout.scss +18 -2
  84. package/styles/drop-down-list/_tailwind3-definition.scss +135 -0
  85. package/styles/drop-down-list/_theme.scss +3 -1
  86. package/styles/drop-down-list/bds.css +609 -0
  87. package/styles/drop-down-list/bds.scss +10 -0
  88. package/styles/drop-down-list/bootstrap-dark.css +18 -1
  89. package/styles/drop-down-list/bootstrap.css +13 -1
  90. package/styles/drop-down-list/bootstrap4.css +13 -0
  91. package/styles/drop-down-list/bootstrap5-dark.css +13 -0
  92. package/styles/drop-down-list/bootstrap5.3.css +13 -0
  93. package/styles/drop-down-list/bootstrap5.css +13 -0
  94. package/styles/drop-down-list/fabric-dark.css +18 -1
  95. package/styles/drop-down-list/fabric.css +13 -1
  96. package/styles/drop-down-list/fluent-dark.css +13 -1
  97. package/styles/drop-down-list/fluent.css +13 -1
  98. package/styles/drop-down-list/fluent2.css +13 -1
  99. package/styles/drop-down-list/highcontrast-light.css +9 -1
  100. package/styles/drop-down-list/highcontrast.css +19 -1
  101. package/styles/drop-down-list/icons/_bootstrap-dark.scss +4 -0
  102. package/styles/drop-down-list/icons/_bootstrap.scss +4 -0
  103. package/styles/drop-down-list/icons/_bootstrap4.scss +4 -0
  104. package/styles/drop-down-list/icons/_bootstrap5.3.scss +4 -0
  105. package/styles/drop-down-list/icons/_bootstrap5.scss +4 -0
  106. package/styles/drop-down-list/icons/_fabric-dark.scss +4 -0
  107. package/styles/drop-down-list/icons/_fabric.scss +4 -0
  108. package/styles/drop-down-list/icons/_fluent.scss +4 -0
  109. package/styles/drop-down-list/icons/_fluent2.scss +4 -0
  110. package/styles/drop-down-list/icons/_highcontrast.scss +4 -0
  111. package/styles/drop-down-list/icons/_material-dark.scss +4 -0
  112. package/styles/drop-down-list/icons/_material.scss +4 -0
  113. package/styles/drop-down-list/icons/_material3.scss +4 -0
  114. package/styles/drop-down-list/icons/_tailwind.scss +4 -0
  115. package/styles/drop-down-list/icons/_tailwind3.scss +14 -0
  116. package/styles/drop-down-list/material-dark.css +18 -1
  117. package/styles/drop-down-list/material.css +13 -1
  118. package/styles/drop-down-list/material3-dark.css +13 -1
  119. package/styles/drop-down-list/material3.css +13 -1
  120. package/styles/drop-down-list/tailwind-dark.css +13 -1
  121. package/styles/drop-down-list/tailwind.css +13 -1
  122. package/styles/drop-down-list/tailwind3.css +455 -0
  123. package/styles/drop-down-list/tailwind3.scss +10 -0
  124. package/styles/drop-down-tree/_bigger.scss +41 -7
  125. package/styles/drop-down-tree/_layout.scss +34 -10
  126. package/styles/drop-down-tree/_tailwind3-definition.scss +67 -0
  127. package/styles/drop-down-tree/_theme.scss +3 -3
  128. package/styles/drop-down-tree/bds.css +712 -0
  129. package/styles/drop-down-tree/bds.scss +10 -0
  130. package/styles/drop-down-tree/bootstrap5.3.css +0 -3
  131. package/styles/drop-down-tree/icons/_tailwind3.scss +11 -0
  132. package/styles/drop-down-tree/tailwind3.css +512 -0
  133. package/styles/drop-down-tree/tailwind3.scss +10 -0
  134. package/styles/fabric-dark-lite.css +40 -1
  135. package/styles/fabric-dark.css +40 -1
  136. package/styles/fabric-lite.css +30 -1
  137. package/styles/fabric.css +30 -1
  138. package/styles/fluent-dark-lite.css +30 -1
  139. package/styles/fluent-dark.css +30 -1
  140. package/styles/fluent-lite.css +30 -1
  141. package/styles/fluent.css +30 -1
  142. package/styles/fluent2-lite.css +45 -12
  143. package/styles/fluent2.css +45 -12
  144. package/styles/highcontrast-light-lite.css +22 -1
  145. package/styles/highcontrast-light.css +22 -1
  146. package/styles/highcontrast-lite.css +41 -1
  147. package/styles/highcontrast.css +41 -1
  148. package/styles/list-box/_bigger.scss +18 -1
  149. package/styles/list-box/_layout.scss +29 -3
  150. package/styles/list-box/_tailwind3-definition.scss +123 -0
  151. package/styles/list-box/_theme.scss +11 -0
  152. package/styles/list-box/bds.css +971 -0
  153. package/styles/list-box/bds.scss +6 -0
  154. package/styles/list-box/fluent2.css +1 -1
  155. package/styles/list-box/icons/_tailwind3.scss +25 -0
  156. package/styles/list-box/tailwind3.css +991 -0
  157. package/styles/list-box/tailwind3.scss +6 -0
  158. package/styles/material-dark-lite.css +40 -1
  159. package/styles/material-dark.css +40 -1
  160. package/styles/material-lite.css +30 -1
  161. package/styles/material.css +30 -1
  162. package/styles/material3-dark-lite.css +32 -5
  163. package/styles/material3-dark.css +32 -5
  164. package/styles/material3-lite.css +32 -5
  165. package/styles/material3.css +32 -5
  166. package/styles/mention/_tailwind3-definition.scss +1 -0
  167. package/styles/mention/bds.css +78 -0
  168. package/styles/mention/bds.scss +6 -0
  169. package/styles/mention/tailwind3.css +67 -0
  170. package/styles/mention/tailwind3.scss +6 -0
  171. package/styles/multi-select/_bigger.scss +2 -2
  172. package/styles/multi-select/_bootstrap-dark-definition.scss +1 -1
  173. package/styles/multi-select/_layout.scss +27 -2
  174. package/styles/multi-select/_material3-definition.scss +1 -1
  175. package/styles/multi-select/_tailwind3-definition.scss +227 -0
  176. package/styles/multi-select/_theme.scss +1 -1
  177. package/styles/multi-select/bds.css +1575 -0
  178. package/styles/multi-select/bds.scss +10 -0
  179. package/styles/multi-select/bootstrap-dark.css +19 -1
  180. package/styles/multi-select/bootstrap.css +13 -0
  181. package/styles/multi-select/bootstrap4.css +13 -0
  182. package/styles/multi-select/bootstrap5-dark.css +13 -0
  183. package/styles/multi-select/bootstrap5.3.css +13 -0
  184. package/styles/multi-select/bootstrap5.css +13 -0
  185. package/styles/multi-select/fabric-dark.css +18 -0
  186. package/styles/multi-select/fabric.css +13 -0
  187. package/styles/multi-select/fluent-dark.css +13 -0
  188. package/styles/multi-select/fluent.css +13 -0
  189. package/styles/multi-select/fluent2.css +22 -5
  190. package/styles/multi-select/highcontrast-light.css +9 -0
  191. package/styles/multi-select/highcontrast.css +18 -0
  192. package/styles/multi-select/icons/_bootstrap-dark.scss +4 -0
  193. package/styles/multi-select/icons/_bootstrap.scss +4 -0
  194. package/styles/multi-select/icons/_bootstrap4.scss +4 -0
  195. package/styles/multi-select/icons/_bootstrap5.3.scss +4 -0
  196. package/styles/multi-select/icons/_bootstrap5.scss +4 -0
  197. package/styles/multi-select/icons/_fabric-dark.scss +4 -0
  198. package/styles/multi-select/icons/_fabric.scss +4 -0
  199. package/styles/multi-select/icons/_fluent.scss +4 -0
  200. package/styles/multi-select/icons/_fluent2.scss +4 -0
  201. package/styles/multi-select/icons/_highcontrast.scss +4 -0
  202. package/styles/multi-select/icons/_material-dark.scss +4 -0
  203. package/styles/multi-select/icons/_material.scss +4 -0
  204. package/styles/multi-select/icons/_material3.scss +4 -0
  205. package/styles/multi-select/icons/_tailwind.scss +4 -0
  206. package/styles/multi-select/icons/_tailwind3.scss +26 -0
  207. package/styles/multi-select/material-dark.css +18 -0
  208. package/styles/multi-select/material.css +13 -0
  209. package/styles/multi-select/material3-dark.css +15 -4
  210. package/styles/multi-select/material3.css +15 -4
  211. package/styles/multi-select/tailwind-dark.css +13 -0
  212. package/styles/multi-select/tailwind.css +13 -0
  213. package/styles/multi-select/tailwind3.css +1398 -0
  214. package/styles/multi-select/tailwind3.scss +10 -0
  215. package/styles/tailwind-dark-lite.css +30 -1
  216. package/styles/tailwind-dark.css +30 -1
  217. package/styles/tailwind-lite.css +30 -1
  218. package/styles/tailwind.css +30 -1
  219. package/styles/tailwind3-lite.css +2889 -0
  220. package/styles/tailwind3-lite.scss +28 -0
  221. package/styles/tailwind3.css +3550 -0
  222. package/styles/tailwind3.scss +33 -0
@@ -0,0 +1,1575 @@
1
+
2
+
3
+
4
+
5
+ /* stylelint-disable property-no-vendor-prefix */
6
+ /* stylelint-disable */
7
+ .e-input:focus:not(.e-success):not(.e-warning).e-error,
8
+ .e-float-input:not(.e-success):not(.e-warning).e-error:not(.e-input-group) input:focus,
9
+ .e-float-input:not(.e-success):not(.e-warning).e-error:not(.e-input-group) textarea:focus,
10
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning).e-error:not(.e-input-group) input:focus,
11
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning).e-error:not(.e-input-group) textarea:focus,
12
+ .e-float-input:not(.e-success):not(.e-warning).e-error:not(.e-input-group).e-input-focus input,
13
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning).e-error:not(.e-input-group).e-input-focus input {
14
+ -webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(240, 68, 55, 0.24) !important;
15
+ box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(240, 68, 55, 0.24) !important;
16
+ }
17
+
18
+ .e-input:focus:not(.e-error):not(.e-warning).e-success,
19
+ .e-float-input:not(.e-error):not(.e-warning).e-success:not(.e-input-group) input:focus,
20
+ .e-float-input:not(.e-error):not(.e-warning).e-success:not(.e-input-group) textarea:focus,
21
+ .e-float-input.e-control-wrapper:not(.e-error):not(.e-warning).e-success:not(.e-input-group) input:focus,
22
+ .e-float-input.e-control-wrapper:not(.e-error):not(.e-warning).e-success:not(.e-input-group) textarea:focus,
23
+ .e-float-input:not(.e-error):not(.e-warning).e-success:not(.e-input-group).e-input-focus input,
24
+ .e-float-input.e-control-wrapper:not(.e-error):not(.e-warning).e-success:not(.e-input-group).e-input-focus input {
25
+ -webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(23, 177, 105, 0.24) !important;
26
+ box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(23, 177, 105, 0.24) !important;
27
+ }
28
+
29
+ .e-input:focus:not(.e-success):not(.e-error).e-warning,
30
+ .e-float-input:not(.e-success):not(.e-error).e-warning:not(.e-input-group) input:focus,
31
+ .e-float-input:not(.e-success):not(.e-error).e-warning:not(.e-input-group) textarea:focus,
32
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-error).e-warning:not(.e-input-group) input:focus,
33
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-error).e-warning:not(.e-input-group) textarea:focus,
34
+ .e-float-input:not(.e-success):not(.e-error).e-warning:not(.e-input-group).e-input-focus input,
35
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-error).e-warning:not(.e-input-group).e-input-focus input {
36
+ -webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(247, 143, 8, 0.24) !important;
37
+ box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(247, 143, 8, 0.24) !important;
38
+ }
39
+
40
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning).e-error,
41
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning).e-error {
42
+ -webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(240, 68, 55, 0.24) !important;
43
+ box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(240, 68, 55, 0.24) !important;
44
+ }
45
+
46
+ .e-input-group.e-input-focus:not(.e-error):not(.e-warning).e-success,
47
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-error):not(.e-warning).e-success {
48
+ -webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(23, 177, 105, 0.24) !important;
49
+ box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(23, 177, 105, 0.24) !important;
50
+ }
51
+
52
+ .e-input-group.e-input-focus:not(.e-success):not(.e-error).e-warning,
53
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-error).e-warning {
54
+ -webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(247, 143, 8, 0.24) !important;
55
+ box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(247, 143, 8, 0.24) !important;
56
+ }
57
+
58
+ .e-input-group:not(.e-disabled):active:not(.e-success):not(.e-warning).e-error,
59
+ .e-input-group.e-control-wrapper:not(.e-disabled):active:not(.e-success):not(.e-warning).e-error {
60
+ -webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(240, 68, 55, 0.24) !important;
61
+ box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(240, 68, 55, 0.24) !important;
62
+ }
63
+
64
+ .e-input-group:not(.e-disabled):active:not(.e-error):not(.e-warning).e-success,
65
+ .e-input-group.e-control-wrapper:not(.e-disabled):active:not(.e-error):not(.e-warning).e-success {
66
+ -webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(23, 177, 105, 0.24) !important;
67
+ box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(23, 177, 105, 0.24) !important;
68
+ }
69
+
70
+ .e-input-group:not(.e-disabled):active:not(.e-success):not(.e-error).e-warning,
71
+ .e-input-group.e-control-wrapper:not(.e-disabled):active:not(.e-success):not(.e-error).e-warning {
72
+ -webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(247, 143, 8, 0.24) !important;
73
+ box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(247, 143, 8, 0.24) !important;
74
+ }
75
+
76
+ .e-float-input.e-error label.e-float-text,
77
+ .e-float-input.e-control-wrapper.e-error label.e-float-text,
78
+ .e-float-input.e-error input:focus ~ label.e-float-text,
79
+ .e-float-input.e-control-wrapper.e-error input:focus ~ label.e-float-text,
80
+ .e-float-input.e-error.e-input-focus input ~ label.e-float-text,
81
+ .e-float-input.e-control-wrapper.e-error.e-input-focus input ~ label.e-float-text,
82
+ .e-float-input.e-error textarea:focus ~ label.e-float-text,
83
+ .e-float-input.e-control-wrapper.e-error textarea:focus ~ label.e-float-text {
84
+ color: var(--color-sf-utility-danger) !important;
85
+ }
86
+
87
+ .e-outline.e-float-input.e-error.e-input-focus input:focus ~ label.e-float-text,
88
+ .e-outline.e-float-input.e-input-group.e-error.e-valid-input label.e-label-top.e-float-text,
89
+ .e-outline.e-float-input.e-bigger.e-error.e-input-focus input:focus ~ label.e-float-text,
90
+ .e-bigger .e-outline.e-float-input.e-error.e-input-focus input:focus ~ label.e-float-text,
91
+ .e-outline.e-float-input.e-small.e-error.e-input-focus input:focus ~ label.e-float-text,
92
+ .e-small .e-outline.e-float-input.e-error input:focus ~ label.e-float-text,
93
+ .e-outline.e-float-input.e-small.e-bigger.e-error input:focus ~ label.e-float-text,
94
+ .e-bigger .e-outline.e-float-input.e-small:not(.e-error) input:focus ~ label.e-float-text,
95
+ .e-outline.e-float-input.e-error textarea:focus ~ label.e-float-text,
96
+ .e-outline.e-float-input.e-bigger.e-error textarea:focus ~ label.e-float-text,
97
+ .e-bigger .e-outline.e-float-input.e-error textarea:focus ~ label.e-float-text,
98
+ .e-outline.e-float-input.e-small.e-error textarea:focus ~ label.e-float-text,
99
+ .e-small .e-outline.e-float-input.e-error textarea:focus ~ label.e-float-text,
100
+ .e-outline.e-float-input.e-small.e-bigger.e-error textarea:focus ~ label.e-float-text,
101
+ .e-bigger .e-outline.e-float-input.e-small.e-error textarea:focus ~ label.e-float-text,
102
+ .e-outline.e-float-input.e-control-wrapper.e-error input:focus ~ label.e-float-text,
103
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-error input:focus ~ label.e-float-text,
104
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-error input:focus ~ label.e-float-text,
105
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-error input:focus ~ label.e-float-text,
106
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-error input:focus ~ label.e-float-text,
107
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-error input:focus ~ label.e-float-text,
108
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-error input:focus ~ label.e-float-text,
109
+ .e-outline.e-float-input.e-control-wrapper.e-error textarea:focus ~ label.e-float-text,
110
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-error textarea:focus ~ label.e-float-text,
111
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-error textarea:focus ~ label.e-float-text,
112
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-error textarea:focus ~ label.e-float-text,
113
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-error textarea:focus ~ label.e-float-text,
114
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-error textarea:focus ~ label.e-float-text,
115
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-error textarea:focus ~ label.e-float-text,
116
+ .e-outline.e-float-input.e-error label.e-float-text.e-label-top,
117
+ .e-outline.e-float-input.e-input-group.e-error label.e-float-text.e-label-top,
118
+ .e-outline.e-float-input.e-control-wrapper.e-error label.e-float-text.e-label-top,
119
+ .e-outline.e-float-input.e-valid-input.e-error:not(.e-input-focus) input:valid ~ label.e-float-text.e-label-top,
120
+ .e-outline.e-float-input.e-control-wrapper.e-valid-input.e-error:not(.e-input-focus) input:focus ~ label.e-float-text.e-label-top,
121
+ .e-outline.e-float-input.e-valid-input.e-error:not(.e-input-focus) textarea:valid ~ label.e-float-text.e-label-top,
122
+ .e-outline.e-float-input.e-control-wrapper.e-valid-input.e-error:not(.e-input-focus) textarea:focus ~ label.e-float-text.e-label-top,
123
+ .e-outline.e-float-input.e-error.e-input-focus input ~ label.e-float-text,
124
+ .e-outline.e-float-input.e-bigger.e-error.e-input-focus input ~ label.e-float-text,
125
+ .e-bigger .e-outline.e-float-input.e-error.e-input-focus input ~ label.e-float-text,
126
+ .e-outline.e-float-input.e-small.e-error.e-input-focus input ~ label.e-float-text,
127
+ .e-small .e-outline.e-float-input.e-error.e-input-focus input ~ label.e-float-text,
128
+ .e-outline.e-float-input.e-small.e-bigger.e-error.e-input-focus input ~ label.e-float-text,
129
+ .e-bigger .e-outline.e-float-input.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
130
+ .e-outline.e-float-input.e-control-wrapper.e-error.e-input-focus input ~ label.e-float-text,
131
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-error.e-input-focus input ~ label.e-float-text,
132
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-error.e-input-focus input ~ label.e-float-text,
133
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-error.e-input-focus input ~ label.e-float-text,
134
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-error.e-input-focus input ~ label.e-float-text,
135
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-error.e-input-focus input ~ label.e-float-text,
136
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-error.e-input-focus input ~ label.e-float-text {
137
+ color: var(--color-sf-utility-danger) !important;
138
+ }
139
+
140
+ .e-filled.e-float-input.e-error label.e-float-text,
141
+ .e-filled.e-float-input.e-control-wrapper.e-error label.e-float-text,
142
+ .e-filled.e-float-input.e-error input:focus ~ label.e-float-text,
143
+ .e-filled.e-float-input.e-control-wrapper.e-error input:focus ~ label.e-float-text,
144
+ .e-filled.e-float-input.e-error textarea:focus ~ label.e-float-text,
145
+ .e-filled.e-float-input.e-control-wrapper.e-error textarea:focus ~ label.e-float-text,
146
+ .e-filled.e-float-input.e-error.e-input-focus input ~ label.e-float-text,
147
+ .e-filled.e-float-input.e-control-wrapper.e-error.e-input-focus input ~ label.e-float-text {
148
+ color: var(--color-sf-utility-danger) !important;
149
+ }
150
+
151
+ /* stylelint-disable-line no-empty-source */
152
+ /* stylelint-disable property-no-vendor-prefix */
153
+ @-webkit-keyframes material-spinner-rotate {
154
+ 0% {
155
+ -webkit-transform: rotate(0);
156
+ transform: rotate(0);
157
+ }
158
+ 100% {
159
+ -webkit-transform: rotate(360deg);
160
+ transform: rotate(360deg);
161
+ }
162
+ }
163
+ @keyframes material-spinner-rotate {
164
+ 0% {
165
+ -webkit-transform: rotate(0);
166
+ transform: rotate(0);
167
+ }
168
+ 100% {
169
+ -webkit-transform: rotate(360deg);
170
+ transform: rotate(360deg);
171
+ }
172
+ }
173
+ @-webkit-keyframes fabric-spinner-rotate {
174
+ 0% {
175
+ -webkit-transform: rotate(0);
176
+ transform: rotate(0);
177
+ }
178
+ 100% {
179
+ -webkit-transform: rotate(360deg);
180
+ transform: rotate(360deg);
181
+ }
182
+ }
183
+ @keyframes fabric-spinner-rotate {
184
+ 0% {
185
+ -webkit-transform: rotate(0);
186
+ transform: rotate(0);
187
+ }
188
+ 100% {
189
+ -webkit-transform: rotate(360deg);
190
+ transform: rotate(360deg);
191
+ }
192
+ }
193
+ .e-dropdownbase .e-list-item.e-active,
194
+ .e-dropdownbase .e-list-item.e-active.e-hover {
195
+ font-weight: 500;
196
+ }
197
+
198
+ .e-dropdownbase .e-list-group-item,
199
+ .e-fixed-head {
200
+ font-size: 12px;
201
+ text-transform: uppercase;
202
+ }
203
+
204
+ .e-small .e-dropdownbase .e-list-group-item,
205
+ .e-small .e-fixed-head,
206
+ .e-small.e-dropdownbase .e-list-group-item,
207
+ .e-small.e-fixed-head {
208
+ font-size: 10px;
209
+ }
210
+
211
+ .e-dropdownbase .e-list-item .e-list-icon {
212
+ padding: 0 8px 0 0;
213
+ }
214
+
215
+ .e-small .e-dropdownbase .e-list-item .e-list-icon {
216
+ padding: 0 4px 0 0;
217
+ }
218
+
219
+ /* stylelint-disable */
220
+ .e-dropdownbase .e-list-item {
221
+ border-radius: 6px !important;
222
+ }
223
+
224
+ .e-multi-select-wrapper .e-chips-collection .e-chips .e-chips-close.e-icon::before {
225
+ line-height: 30px;
226
+ top: 0;
227
+ }
228
+
229
+ .e-multiselect .e-input-group-icon.e-ddl-icon {
230
+ border-radius: 0 4px 4px 0;
231
+ border-right-width: 0;
232
+ }
233
+
234
+ .e-multiselect.e-rtl .e-input-group-icon.e-ddl-icon {
235
+ border-left-width: 0;
236
+ border-radius: 4px 0 0 4px;
237
+ border-right-width: 0;
238
+ }
239
+
240
+ .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
241
+ height: 32px;
242
+ width: 32px;
243
+ }
244
+
245
+ .e-multi-select-wrapper .e-searcher input[type=text],
246
+ .e-multi-select-wrapper .e-multi-searcher input[type=text] {
247
+ color: var(--color-sf-text-primary);
248
+ height: 100%;
249
+ }
250
+
251
+ .e-multiselect.e-input-group .e-ddl-icon::before {
252
+ content: "\e729";
253
+ font-family: "e-icons";
254
+ }
255
+
256
+ .e-multi-select-wrapper .e-chips .e-chips-close::before {
257
+ content: "\e7e7";
258
+ cursor: pointer;
259
+ left: 0;
260
+ position: relative;
261
+ top: 0;
262
+ }
263
+
264
+ .e-multi-select-wrapper .e-close-hooker::before {
265
+ content: "\e7e7";
266
+ cursor: pointer;
267
+ left: 6px;
268
+ position: relative;
269
+ top: 6px;
270
+ }
271
+
272
+ .e-multiselect.e-input-group .e-ddl-disable-icon::before {
273
+ content: "";
274
+ }
275
+
276
+ .e-multi-select-wrapper {
277
+ -webkit-box-sizing: border-box;
278
+ box-sizing: border-box;
279
+ cursor: text;
280
+ line-height: normal;
281
+ min-height: 28px;
282
+ padding: 0 32px 0 0;
283
+ position: relative;
284
+ -webkit-user-select: none;
285
+ -moz-user-select: none;
286
+ -ms-user-select: none;
287
+ user-select: none;
288
+ width: 100%;
289
+ }
290
+ .e-multi-select-wrapper.e-delimiter .e-searcher, .e-multi-select-wrapper.e-delimiter .e-multi-searcher {
291
+ height: 27px;
292
+ vertical-align: middle;
293
+ }
294
+ .e-multi-select-wrapper.e-delimiter .e-searcher .e-dropdownbase, .e-multi-select-wrapper.e-delimiter .e-multi-searcher .e-dropdownbase {
295
+ height: 100%;
296
+ min-height: 100%;
297
+ }
298
+ .e-multi-select-wrapper .e-delim-view {
299
+ white-space: nowrap;
300
+ }
301
+ .e-multi-select-wrapper .e-delim-view.e-delim-values.e-delim-overflow, .e-multi-select-wrapper .e-delim-view.e-delim-values.e-delim-total {
302
+ -webkit-box-sizing: border-box;
303
+ box-sizing: border-box;
304
+ display: inline-block;
305
+ overflow: hidden;
306
+ text-overflow: ellipsis;
307
+ padding: 0;
308
+ }
309
+ .e-multi-select-wrapper .e-chips.e-mob-chip.e-chip-selected .e-chips-close::before {
310
+ color: var(--color-sf-text-primary);
311
+ font-size: 16px;
312
+ left: 12px;
313
+ top: 0;
314
+ }
315
+ .e-multi-select-wrapper .e-chips.e-mob-chip.e-chip-selected .e-chipcontent {
316
+ background-color: var(--color-sf-brand-primary);
317
+ color: var(--color-sf-text-primary);
318
+ padding: 12px 4px 11px 0;
319
+ }
320
+ .e-multi-select-wrapper .e-searcher.e-zero-size:not(.e-multiselect-box),
321
+ .e-multi-select-wrapper .e-multi-searcher.e-zero-size:not(.e-multiselect-box) {
322
+ width: 0;
323
+ }
324
+ .e-multi-select-wrapper .e-searcher.e-zero-size:not(.e-multiselect-box) input[type=text],
325
+ .e-multi-select-wrapper .e-multi-searcher.e-zero-size:not(.e-multiselect-box) input[type=text] {
326
+ height: 1px;
327
+ min-height: 1px;
328
+ }
329
+ .e-multi-select-wrapper .e-chips.e-mob-chip > .e-chipcontent {
330
+ max-width: 100%;
331
+ }
332
+
333
+ .e-multiselect.e-control-container .e-multi-select-wrapper .e-multi-searcher,
334
+ .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-multi-searcher {
335
+ display: -webkit-box;
336
+ display: -ms-flexbox;
337
+ display: flex;
338
+ float: left;
339
+ width: auto;
340
+ }
341
+ .e-multiselect.e-control-container .e-multi-select-wrapper.e-delimiter .e-multi-searcher,
342
+ .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper.e-delimiter .e-multi-searcher {
343
+ display: -webkit-inline-box;
344
+ display: -ms-inline-flexbox;
345
+ display: inline-flex;
346
+ float: none;
347
+ }
348
+ .e-multiselect.e-control-container .e-multi-select-wrapper .e-multi-searcher.e-zero-size:not(.e-multiselect-box),
349
+ .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-multi-searcher.e-zero-size:not(.e-multiselect-box) {
350
+ width: 0;
351
+ }
352
+ .e-multiselect.e-control-container .e-multi-select-wrapper .e-delim-values.e-delim-hide,
353
+ .e-multiselect.e-control-container .e-multi-select-wrapper .e-delim-view.e-delim-values.e-delim-hide,
354
+ .e-multiselect.e-control-container .e-multi-select-wrapper .e-chips-collection.e-delim-hide,
355
+ .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-delim-values.e-delim-hide,
356
+ .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-delim-view.e-delim-values.e-delim-hide,
357
+ .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-chips-collection.e-delim-hide {
358
+ display: none;
359
+ }
360
+ .e-multiselect.e-control-container .e-multi-select-wrapper.e-down-icon,
361
+ .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper.e-down-icon {
362
+ padding: 0 48px 0 0;
363
+ }
364
+ .e-multiselect.e-control-container .e-multi-select-wrapper .e-delim-values,
365
+ .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-delim-values {
366
+ -webkit-box-align: center;
367
+ -ms-flex-align: center;
368
+ align-items: center;
369
+ display: inline;
370
+ max-width: 100%;
371
+ word-break: break-word;
372
+ }
373
+ .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon,
374
+ .e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
375
+ .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-clear-icon,
376
+ .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
377
+ -webkit-box-align: center;
378
+ -ms-flex-align: center;
379
+ align-items: center;
380
+ cursor: pointer;
381
+ display: none;
382
+ -webkit-box-orient: horizontal;
383
+ -webkit-box-direction: normal;
384
+ -ms-flex-direction: row;
385
+ flex-direction: row;
386
+ margin-top: -2em;
387
+ margin-top: -1.55em;
388
+ outline: 0;
389
+ padding: 0;
390
+ position: absolute;
391
+ right: 5px;
392
+ top: 100%;
393
+ }
394
+ .e-multiselect.e-control-container :not(.e-disabled).e-multi-select-wrapper:hover .e-clear-icon,
395
+ .e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
396
+ .e-multiselect.e-control-container.e-input-group :not(.e-disabled).e-multi-select-wrapper:hover .e-clear-icon,
397
+ .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
398
+ display: -webkit-box;
399
+ display: -ms-flexbox;
400
+ display: flex;
401
+ }
402
+ .e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
403
+ .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
404
+ margin-right: 0;
405
+ margin-top: -1.3em;
406
+ right: 0;
407
+ min-width: 30px;
408
+ }
409
+ .e-multiselect.e-control-container .e-multi-select-wrapper.e-delimiter,
410
+ .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper.e-delimiter {
411
+ top: -1px;
412
+ }
413
+ .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon,
414
+ .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-clear-icon {
415
+ font-size: 18px;
416
+ height: 28px;
417
+ width: 28px;
418
+ }
419
+
420
+ .e-multiselect.e-control-container.e-rtl .e-multi-select-wrapper .e-multi-searcher,
421
+ .e-multiselect.e-control-container.e-input-group.e-rtl .e-multi-select-wrapper .e-multi-searcher {
422
+ float: right;
423
+ }
424
+ .e-multiselect.e-control-container.e-rtl .e-multi-select-wrapper .e-clear-icon,
425
+ .e-multiselect.e-control-container.e-rtl .e-multi-select-wrapper .e-ddl-icon,
426
+ .e-multiselect.e-control-container.e-input-group.e-rtl .e-multi-select-wrapper .e-clear-icon,
427
+ .e-multiselect.e-control-container.e-input-group.e-rtl .e-multi-select-wrapper .e-ddl-icon {
428
+ left: 0;
429
+ right: auto;
430
+ }
431
+ .e-multiselect.e-control-container.e-rtl .e-multi-select-wrapper.e-down-icon,
432
+ .e-multiselect.e-control-container.e-input-group.e-rtl .e-multi-select-wrapper.e-down-icon {
433
+ padding: 0 0 0 48px;
434
+ }
435
+
436
+ .e-popup.e-multi-select-list-wrapper .e-list-item.e-disabled,
437
+ .e-popup.e-multi-select-list-wrapper.e-multiselect-group.e-checkbox .e-list-group-item.e-disabled {
438
+ opacity: 0.7;
439
+ pointer-events: none;
440
+ }
441
+
442
+ .e-multiselect.e-input-group,
443
+ .e-multiselect.e-float-input {
444
+ word-wrap: initial;
445
+ }
446
+
447
+ .e-multiselect.e-input-group .e-searcher .e-label-top,
448
+ .e-multiselect.e-input-group .e-multi-searcher .e-label-top {
449
+ top: 15px;
450
+ }
451
+
452
+ .e-multi-select-wrapper.e-close-icon-hide {
453
+ padding-right: 0;
454
+ }
455
+
456
+ .e-multi-select-wrapper .e-chips-collection {
457
+ cursor: default;
458
+ display: block;
459
+ }
460
+
461
+ .e-multiselect.e-input-group.e-control-wrapper:not(.e-control-container) .e-multi-select-wrapper.e-down-icon .e-chips-collection {
462
+ margin-right: 30px;
463
+ }
464
+
465
+ .e-multi-select-wrapper .e-multi-hidden {
466
+ border: 0;
467
+ height: 0;
468
+ position: absolute;
469
+ visibility: hidden;
470
+ width: 0;
471
+ }
472
+
473
+ .e-multi-select-wrapper .e-chips {
474
+ -webkit-box-align: center;
475
+ -ms-flex-align: center;
476
+ align-items: center;
477
+ display: -webkit-inline-box;
478
+ display: -ms-inline-flexbox;
479
+ display: inline-flex;
480
+ float: left;
481
+ margin: 3px;
482
+ max-width: 100%;
483
+ overflow: hidden;
484
+ padding: 0 4px 0 8px;
485
+ text-overflow: ellipsis;
486
+ white-space: nowrap;
487
+ }
488
+
489
+ .e-multi-select-wrapper .e-chips > .e-chipcontent {
490
+ max-width: 100%;
491
+ overflow: hidden;
492
+ padding: 0 4px 0 0;
493
+ text-indent: 0;
494
+ text-overflow: ellipsis;
495
+ white-space: nowrap;
496
+ }
497
+
498
+ .e-multi-select-wrapper.e-delimiter .e-searcher {
499
+ display: inline-block;
500
+ float: none;
501
+ }
502
+
503
+ .e-multi-select-wrapper .e-mob-chip.e-chips > .e-chipcontent {
504
+ padding: 8px 4px 8px 0;
505
+ }
506
+
507
+ .e-multiselect.e-rtl .e-multi-select-wrapper .e-mob-chip.e-chips > .e-chipcontent {
508
+ padding: 8px 0 8px 4px;
509
+ }
510
+
511
+ .e-multi-select-wrapper .e-chips-close {
512
+ -ms-flex-item-align: center;
513
+ align-self: center;
514
+ display: -webkit-box;
515
+ display: -ms-flexbox;
516
+ display: flex;
517
+ float: right;
518
+ font-family: "e-icons";
519
+ height: 16px;
520
+ margin: 0 0 0;
521
+ width: 16px;
522
+ }
523
+
524
+ .e-rtl .e-multi-select-wrapper .e-chips-close {
525
+ margin: 0 0 0;
526
+ }
527
+
528
+ .e-multi-select-wrapper .e-mob-chip.e-chips .e-chips-close {
529
+ margin: 3px 0 0;
530
+ }
531
+
532
+ .e-multi-select-wrapper .e-chips-close.e-close-hooker {
533
+ cursor: default;
534
+ font-size: 18px;
535
+ height: 28px;
536
+ margin-top: -1.65em;
537
+ position: absolute;
538
+ right: 5px;
539
+ width: 28px;
540
+ top: 100%;
541
+ }
542
+
543
+ .e-multiselect .e-down-icon .e-chips-close.e-close-hooker,
544
+ .e-small.e-multiselect .e-down-icon .e-chips-close.e-close-hooker,
545
+ .e-multiselect.e-input-group.e-control-container .e-multi-select-wrapper.e-down-icon .e-clear-icon {
546
+ right: 32px;
547
+ }
548
+
549
+ .e-multiselect.e-input-group.e-control-container.e-rtl .e-multi-select-wrapper.e-down-icon .e-clear-icon {
550
+ left: 32px;
551
+ right: auto;
552
+ }
553
+
554
+ .e-multi-select-wrapper input[type=text] {
555
+ background: none;
556
+ border: 0;
557
+ font-family: "Inter";
558
+ font-size: 14px;
559
+ font-weight: normal;
560
+ height: 28px;
561
+ min-height: 28px;
562
+ outline: none;
563
+ padding: 4px 0 4px 12px;
564
+ text-indent: 0;
565
+ }
566
+
567
+ .e-multiselect.e-filled .e-multi-select-wrapper input[type=text] {
568
+ background: none;
569
+ border: 0;
570
+ color: inherit;
571
+ font-family: "Inter";
572
+ font-size: 14px;
573
+ font-weight: normal;
574
+ height: 28px;
575
+ min-height: 28px;
576
+ outline: none;
577
+ padding: 0;
578
+ text-indent: 10px;
579
+ }
580
+
581
+ .e-rtl.e-multiselect.e-filled .e-multi-select-wrapper input[type=text] {
582
+ padding: 5px;
583
+ }
584
+
585
+ /* stylelint-disable property-no-vendor-prefix */
586
+ .e-multi-select-wrapper input[type=text]::-ms-clear {
587
+ display: none;
588
+ }
589
+
590
+ .e-multi-select-wrapper .e-searcher {
591
+ display: block;
592
+ float: left;
593
+ width: auto;
594
+ }
595
+
596
+ .e-multiselect .e-multi-select-wrapper.e-down-icon .e-searcher.e-search-custom-width {
597
+ width: calc(100% - 32px);
598
+ }
599
+
600
+ .e-small .e-multiselect .e-multi-select-wrapper.e-down-icon .e-searcher.e-search-custom-width,
601
+ .e-small.e-multiselect .e-multi-select-wrapper.e-down-icon .e-searcher.e-search-custom-width {
602
+ width: calc(100% - 30px);
603
+ }
604
+
605
+ .e-multi-select-wrapper .e-delim-values {
606
+ font-family: "Inter";
607
+ font-size: 14px;
608
+ line-height: 28px;
609
+ max-width: 100%;
610
+ padding-left: 10px;
611
+ padding-right: 6px;
612
+ vertical-align: middle;
613
+ }
614
+
615
+ .e-small .e-multi-select-wrapper .e-delim-values .e-remain {
616
+ font-size: 12px;
617
+ }
618
+
619
+ .e-multi-select-list-wrapper .e-hide-listitem,
620
+ .e-multi-select-list-wrapper .e-hide-group-header {
621
+ display: none;
622
+ }
623
+
624
+ .e-multi-select-wrapper .e-delim-values .e-remain {
625
+ color: var(--color-sf-text-primary);
626
+ cursor: pointer;
627
+ display: inline-block;
628
+ font-size: 14px;
629
+ padding-left: 16px;
630
+ }
631
+
632
+ .e-multiselect.e-disabled .e-multi-select-wrapper,
633
+ .e-multiselect.e-disabled .e-multi-select-wrapper .e-chips .e-chips-close::before {
634
+ cursor: not-allowed;
635
+ }
636
+
637
+ .e-multi-select-wrapper .e-chips.e-mob-chip.e-chip-selected .e-chips-close {
638
+ height: 40px;
639
+ left: 0;
640
+ margin: 0 0 0 0;
641
+ margin-left: auto;
642
+ position: relative;
643
+ top: 0;
644
+ width: 40px;
645
+ }
646
+
647
+ .e-multi-select-wrapper .e-chips.e-mob-chip.e-chip-selected {
648
+ -ms-flex-item-align: center;
649
+ align-self: center;
650
+ -webkit-box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.21);
651
+ box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.21);
652
+ display: -webkit-inline-box;
653
+ display: -ms-inline-flexbox;
654
+ display: inline-flex;
655
+ padding: 0 0 0 16px;
656
+ width: 92%;
657
+ }
658
+
659
+ .e-multi-select-wrapper .e-ddl-disable-icon::before {
660
+ content: "";
661
+ }
662
+
663
+ .e-multiselect.e-rtl .e-multi-select-wrapper.e-delimiter .e-searcher {
664
+ float: none;
665
+ }
666
+
667
+ .e-multiselect.e-rtl .e-multi-select-wrapper.e-close-icon-hide {
668
+ padding-left: 0;
669
+ }
670
+ .e-multiselect.e-rtl .e-multi-select-wrapper {
671
+ padding: 0 2px 0 32px;
672
+ }
673
+ .e-multiselect.e-rtl .e-multi-select-wrapper .e-chips.e-mob-chip.e-chip-selected .e-chips-close::before {
674
+ left: -12px;
675
+ }
676
+ .e-multiselect.e-rtl .e-multi-select-wrapper .e-chips.e-mob-chip.e-chip-selected .e-chips-close {
677
+ margin: 0;
678
+ margin-right: auto;
679
+ }
680
+ .e-multiselect.e-rtl .e-multi-select-wrapper .e-searcher {
681
+ float: right;
682
+ }
683
+ .e-multiselect.e-rtl .e-multi-select-wrapper .e-chips {
684
+ float: right;
685
+ margin: 3px;
686
+ padding: 0 8px 0 4px;
687
+ }
688
+ .e-multiselect.e-rtl .e-multi-select-wrapper .e-chips .e-chipcontent {
689
+ padding: 5px 4px;
690
+ }
691
+ .e-multiselect.e-rtl .e-multi-select-wrapper .e-chips .e-chips-close {
692
+ float: left;
693
+ }
694
+ .e-multiselect.e-rtl .e-multi-select-wrapper .e-chips .e-chips-close::before {
695
+ left: 0;
696
+ }
697
+ .e-multiselect.e-rtl .e-multi-select-wrapper .e-chips.e-mob-chip {
698
+ padding: 0 4px 0 8px;
699
+ }
700
+ .e-multiselect.e-rtl .e-multi-select-wrapper .e-chips.e-mob-chip .e-chipcontent {
701
+ padding: 8px 4px;
702
+ }
703
+ .e-multiselect.e-rtl .e-multi-select-wrapper .e-chips.e-mob-chip.e-chip-selected {
704
+ padding: 0 8px 0 4px;
705
+ }
706
+ .e-multiselect.e-rtl .e-multi-select-wrapper .e-chips.e-mob-chip.e-chip-selected .e-chipcontent {
707
+ padding: 12px 4px;
708
+ }
709
+ .e-multiselect.e-rtl .e-multi-select-wrapper .e-chips-close.e-close-hooker {
710
+ left: 32px;
711
+ position: absolute;
712
+ right: auto;
713
+ left: 0;
714
+ }
715
+ .e-multiselect.e-rtl .e-multi-select-wrapper .e-close-hooker::before {
716
+ left: -4px;
717
+ }
718
+ .e-multiselect.e-rtl .e-multi-select-wrapper .e-delim-values .e-remain {
719
+ padding-right: 16px;
720
+ }
721
+
722
+ .e-multiselect.e-rtl .e-down-icon .e-chips-close.e-close-hooker {
723
+ left: 32px;
724
+ }
725
+
726
+ .e-multiselect.e-rtl .e-multi-select-wrapper.e-down-icon .e-close-hooker::before {
727
+ left: -7px;
728
+ }
729
+
730
+ .e-popup.e-multi-select-list-wrapper .e-list-item .e-checkbox-wrapper {
731
+ bottom: 1px;
732
+ margin-right: 8px;
733
+ position: relative;
734
+ text-indent: 0;
735
+ vertical-align: middle;
736
+ }
737
+
738
+ .e-popup.e-multi-select-list-wrapper.e-multiselect-group .e-list-group-item .e-checkbox-wrapper {
739
+ bottom: 1px;
740
+ margin-right: 8px;
741
+ position: relative;
742
+ text-indent: 0;
743
+ vertical-align: middle;
744
+ }
745
+
746
+ .e-popup.e-multi-select-list-wrapper.e-rtl .e-list-item .e-checkbox-wrapper {
747
+ margin-left: 12px;
748
+ margin-right: 0;
749
+ }
750
+
751
+ .e-popup.e-multi-select-list-wrapper.e-multiselect-group.e-rtl .e-list-group-item .e-checkbox-wrapper {
752
+ margin-left: 12px;
753
+ margin-right: 0;
754
+ }
755
+
756
+ .e-multi-select-list-wrapper .e-selectall-parent {
757
+ cursor: pointer;
758
+ display: block;
759
+ line-height: 30px;
760
+ overflow: hidden;
761
+ text-overflow: ellipsis;
762
+ padding-right: 16px;
763
+ position: relative;
764
+ text-indent: 12px;
765
+ white-space: nowrap;
766
+ width: 100%;
767
+ }
768
+
769
+ .e-rtl .e-multi-select-list-wrapper .e-selectall-parent,
770
+ .e-multi-select-list-wrapper.e-rtl .e-selectall-parent {
771
+ padding-left: 16px;
772
+ padding-right: 0;
773
+ }
774
+
775
+ .e-multi-select-list-wrapper .e-selectall-parent .e-all-text {
776
+ color: var(--color-sf-text-primary);
777
+ font-family: "Inter";
778
+ font-size: 14px;
779
+ }
780
+
781
+ .e-small.e-multi-select-list-wrapper .e-selectall-parent .e-all-text,
782
+ .e-small .e-multi-select-list-wrapper .e-selectall-parent .e-all-text {
783
+ font-size: 12px;
784
+ }
785
+
786
+ .e-multi-select-list-wrapper .e-selectall-parent .e-checkbox-wrapper {
787
+ bottom: 1px;
788
+ margin-right: 8px;
789
+ position: relative;
790
+ text-indent: 0;
791
+ vertical-align: middle;
792
+ }
793
+
794
+ .e-multi-select-list-wrapper.e-rtl .e-selectall-parent .e-checkbox-wrapper {
795
+ margin-left: 12px;
796
+ margin-right: 0;
797
+ }
798
+
799
+ .e-multiselect .e-input-group-icon.e-ddl-icon {
800
+ float: right;
801
+ margin-top: 0;
802
+ }
803
+
804
+ .e-multiselect.e-rtl .e-input-group-icon.e-ddl-icon {
805
+ float: left;
806
+ }
807
+
808
+ .e-multiselect.e-checkbox .e-multi-select-wrapper,
809
+ .e-multiselect .e-multi-select-wrapper.e-down-icon {
810
+ padding: 0;
811
+ }
812
+
813
+ .e-ddl.e-popup.e-multi-select-list-wrapper .e-filter-parent .e-input-group:not(.e-control-container) .e-clear-icon {
814
+ padding-left: 8px;
815
+ }
816
+
817
+ .e-ddl.e-popup.e-multi-select-list-wrapper .e-filter-parent .e-back-icon {
818
+ padding: 0 8px;
819
+ }
820
+
821
+ .e-checkbox .e-multi-select-wrapper .e-delim-values .e-remain {
822
+ line-height: 20px;
823
+ padding-left: 10px;
824
+ }
825
+
826
+ .e-popup.e-multi-select-list-wrapper .e-list-item.e-disable .e-checkbox-wrapper .e-frame,
827
+ .e-popup.e-multi-select-list-wrapper .e-list-group-item.e-disable .e-checkbox-wrapper .e-frame {
828
+ opacity: 0.3;
829
+ }
830
+
831
+ .e-popup.e-multi-select-list-wrapper .e-list-item.e-disable,
832
+ .e-popup.e-multi-select-list-wrapper.e-multiselect-group.e-checkbox .e-list-group-item.e-disable {
833
+ opacity: 0.7;
834
+ }
835
+
836
+ .e-multi-select-wrapper input[readonly=true] {
837
+ pointer-events: none;
838
+ }
839
+
840
+ .e-multiselect.e-checkbox .e-multi-select-wrapper .e-searcher {
841
+ pointer-events: none;
842
+ }
843
+
844
+ ejs-multiselect {
845
+ display: block;
846
+ }
847
+
848
+ .e-small.e-multi-select-list-wrapper .e-selectall-parent,
849
+ .e-small .e-multi-select-list-wrapper .e-selectall-parent {
850
+ line-height: 24px;
851
+ font-size: 12px;
852
+ text-indent: 8px;
853
+ }
854
+
855
+ .e-small .e-multi-select-wrapper .e-chips-close {
856
+ height: 14px;
857
+ width: 14px;
858
+ }
859
+
860
+ .e-small .e-multi-select-wrapper {
861
+ min-height: 24px;
862
+ }
863
+
864
+ .e-small .e-multi-select-wrapper.e-delimiter .e-searcher,
865
+ .e-small .e-multi-select-wrapper.e-delimiter .e-multi-searcher {
866
+ height: 24px;
867
+ }
868
+
869
+ .e-small .e-multi-select-wrapper input[type=text] {
870
+ font-size: 12px;
871
+ height: 24px;
872
+ min-height: 24px;
873
+ }
874
+
875
+ .e-small .e-multi-select-wrapper .e-delim-values {
876
+ font-size: 12px;
877
+ line-height: 24px;
878
+ }
879
+
880
+ .e-small .e-multi-select-wrapper .e-chips-close.e-close-hooker,
881
+ .e-small .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
882
+ margin-top: -1.65em;
883
+ font-size: 16px;
884
+ height: 24px;
885
+ width: 28px;
886
+ }
887
+
888
+ .e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
889
+ .e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
890
+ margin-top: -1.3em;
891
+ }
892
+
893
+ .e-content-placeholder.e-multiselect.e-placeholder-multiselect {
894
+ background-size: 300px 33px;
895
+ min-height: 33px;
896
+ }
897
+
898
+ .e-multiselect.e-outline .e-multi-select-wrapper input[type=text] {
899
+ color: inherit;
900
+ }
901
+
902
+ .e-multiselect.e-outline .e-multi-select-wrapper .e-chips-close.e-close-hooker,
903
+ .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
904
+ -webkit-box-align: normal;
905
+ -ms-flex-align: normal;
906
+ align-items: normal;
907
+ }
908
+
909
+ .e-filled.e-multiselect:not(.e-float-input) .e-multi-select-wrapper {
910
+ padding: 0 12px 0 8px;
911
+ }
912
+
913
+ .e-multiselect.e-filled.e-input-group.e-control-wrapper {
914
+ padding: 0;
915
+ }
916
+
917
+ .e-filled.e-float-input .e-multi-select-wrapper {
918
+ padding: 11px 12px 0;
919
+ }
920
+
921
+ .e-small.e-filled.e-float-input .e-multi-select-wrapper,
922
+ .e-small .e-filled.e-float-input .e-multi-select-wrapper {
923
+ padding: 12px 12px 0 8px;
924
+ }
925
+
926
+ .e-rtl.e-multiselect.e-filled.e-input-group.e-control-wrapper,
927
+ .e-rtl.e-multiselect.e-filled.e-float-input.e-control-wrapper {
928
+ padding: 0;
929
+ }
930
+
931
+ .e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips {
932
+ height: 28px;
933
+ }
934
+
935
+ .e-small.e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips,
936
+ .e-small .e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips,
937
+ .e-multiselect.e-filled.e-float-input .e-multi-select-wrapper.e-mob-wrapper .e-chips.e-mob-chip,
938
+ .e-small .e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips,
939
+ .e-small.e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips {
940
+ height: 24px;
941
+ }
942
+
943
+ .e-filled.e-float-input .e-multi-select-wrapper .e-chips {
944
+ height: 18px;
945
+ }
946
+
947
+ .e-filled.e-float-input .e-multi-select-wrapper .e-chips,
948
+ .e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips {
949
+ margin: 8px 8px 0 0;
950
+ padding: 0 8px;
951
+ }
952
+
953
+ .e-rtl.e-filled.e-float-input .e-multi-select-wrapper .e-chips,
954
+ .e-rtl.e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips {
955
+ margin: 8px 0 0 8px;
956
+ padding: 0 8px;
957
+ }
958
+
959
+ .e-small .e-filled .e-multi-select-wrapper .e-chips,
960
+ .e-small.e-filled .e-multi-select-wrapper .e-chips {
961
+ height: 16px;
962
+ margin: 4px 4px 0 0;
963
+ padding-right: 8px;
964
+ }
965
+
966
+ .e.rtl.e-small .e-filled.e-float-input .e-multi-select-wrapper .e-chips,
967
+ .e-rtl.e-small.e-filled.e-float-input .e-multi-select-wrapper .e-chips {
968
+ margin: 4px 0 0 4px;
969
+ }
970
+
971
+ .e-filled.e-multiselect:not(.e-float-input) .e-multi-select-wrapper .e-chips > .e-chipcontent {
972
+ font-size: 13px;
973
+ padding: 0 8px 0 0;
974
+ }
975
+
976
+ .e-small.e-filled.e-multiselect .e-multi-select-wrapper .e-chips > .e-chipcontent,
977
+ .e-small .e-filled.e-multiselect .e-multi-select-wrapper .e-chips > .e-chipcontent {
978
+ font-size: 12px;
979
+ }
980
+
981
+ .e-filled.e-float-input.e-multiselect .e-multi-select-wrapper .e-chips > .e-chipcontent {
982
+ font-size: 12px;
983
+ padding: 0 4px 0 0;
984
+ }
985
+
986
+ .e-rtl.e-filled.e-multiselect .e-multi-select-wrapper .e-chips > .e-chipcontent {
987
+ padding: 0 0 0 4px;
988
+ }
989
+
990
+ .e-small.e-filled.e-float-input.e-multiselect .e-multi-select-wrapper .e-chips > .e-chipcontent,
991
+ .e-small .e-filled.e-float-input.e-multiselect .e-multi-select-wrapper .e-chips > .e-chipcontent {
992
+ font-size: 10px;
993
+ }
994
+
995
+ .e-filled.e-multiselect.e-float-input .e-multi-select-wrapper.e-mob-wrapper .e-chips > .e-chipcontent {
996
+ font-size: 13px;
997
+ padding-right: 4px;
998
+ }
999
+
1000
+ .e-filled.e-multi-select-wrapper .e-chips-close.e-close-hooker,
1001
+ .e-multiselect.e-control-container .e-filled.e-multi-select-wrapper .e-clear-icon {
1002
+ height: 38px;
1003
+ margin-top: -38px;
1004
+ right: 12px;
1005
+ top: 100%;
1006
+ width: 16px;
1007
+ }
1008
+
1009
+ .e-multiselect.e-control-wrapper.e-input-group.e-readonly .e-clear-icon,
1010
+ .e-outline.e-multiselect.e-control-wrapper.e-input-group.e-readonly .e-clear-icon,
1011
+ .e-filled.e-multiselect.e-control-wrapper.e-input-group.e-readonly .e-clear-icon,
1012
+ .e-multiselect.e-readonly.e-control-wrapper.e-input-group.e-control-container :not(.e-disabled).e-multi-select-wrapper:hover .e-clear-icon,
1013
+ .e-multiselect.e-readonly.e-control-wrapper.e-input-group.e-control-container.e-input-group :not(.e-disabled).e-multi-select-wrapper:hover .e-clear-icon {
1014
+ display: none;
1015
+ }
1016
+
1017
+ .e-multiselect.e-input-group.e-control-wrapper .e-input-group-icon {
1018
+ margin-right: 0;
1019
+ }
1020
+
1021
+ .e-multiselect.e-control-container.e-input-group.e-disabled .e-input-group-icon.e-ddl-icon.e-icons,
1022
+ .e-multiselect.e-control-container.e-input-group.e-disabled .e-clear-icon {
1023
+ cursor: not-allowed;
1024
+ }
1025
+
1026
+ .e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-multi-select-wrapper.e-down-icon,
1027
+ .e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-multi-select-wrapper.e-down-icon .e-multi-searcher .e-dropdownbase.e-control.e-multiselect.e-lib {
1028
+ cursor: pointer;
1029
+ }
1030
+
1031
+ .e-popup.e-multi-select-list-wrapper.e-resize .e-resizer-right {
1032
+ bottom: 0;
1033
+ right: 0;
1034
+ cursor: nwse-resize;
1035
+ height: 15px;
1036
+ position: absolute;
1037
+ width: 15px;
1038
+ }
1039
+
1040
+ .e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
1041
+ color: var(--color-sf-text-primary);
1042
+ }
1043
+
1044
+ .e-multi-select-wrapper .e-chips.e-chip-selected {
1045
+ background-color: var(--color-sf-bg-secondary-alt);
1046
+ }
1047
+
1048
+ .e-multiselect:not(.e-disabled) .e-multi-select-wrapper .e-chips.e-chip-selected:hover {
1049
+ background-color: var(--color-sf-bg-secondary-alt);
1050
+ }
1051
+
1052
+ .e-multiselect {
1053
+ -webkit-box-sizing: border-box;
1054
+ box-sizing: border-box;
1055
+ }
1056
+
1057
+ /* stylelint-disable property-no-vendor-prefix */
1058
+ .e-multi-select-wrapper .e-chips > .e-chipcontent {
1059
+ -webkit-text-fill-color: var(--color-sf-text-primary);
1060
+ color: var(--color-sf-text-primary);
1061
+ font-family: "Inter";
1062
+ font-size: 14px;
1063
+ }
1064
+
1065
+ .e-multi-select-wrapper .e-chips.e-chip-selected > .e-chipcontent {
1066
+ color: var(--color-sf-text-primary);
1067
+ }
1068
+
1069
+ .e-multi-select-wrapper .e-chips.e-chip-selected > .e-chipcontent:hover {
1070
+ color: var(--color-sf-text-secondary-hover);
1071
+ }
1072
+
1073
+ .e-multi-select-wrapper .e-chips {
1074
+ background-color: var(--color-sf-bg-tertiary);
1075
+ border-radius: 6px;
1076
+ height: 22px;
1077
+ }
1078
+
1079
+ .e-multiselect:not(.e-disabled) .e-multi-select-wrapper .e-chips:hover {
1080
+ background-color: var(--color-sf-bg-quaternary);
1081
+ }
1082
+
1083
+ .e-multi-select-wrapper .e-chips > .e-chipcontent:hover {
1084
+ color: var(--color-sf-text-secondary-hover);
1085
+ }
1086
+
1087
+ .e-multi-select-wrapper .e-chips .e-chips-close::before {
1088
+ -webkit-text-fill-color: var(--color-sf-fg-secondary);
1089
+ color: var(--color-sf-fg-secondary);
1090
+ font-size: 16px;
1091
+ }
1092
+
1093
+ .e-multi-select-wrapper .e-chips.e-mob-chip.e-chip-selected {
1094
+ background-color: var(--color-sf-brand-primary);
1095
+ border-radius: 6px;
1096
+ color: var(--color-sf-text-primary);
1097
+ height: 40px;
1098
+ line-height: 40px;
1099
+ }
1100
+
1101
+ .e-multi-select-wrapper .e-chips.e-mob-chip.e-chip-selected .e-chipcontent {
1102
+ color: var(--color-sf-text-primary);
1103
+ }
1104
+
1105
+ .e-multi-select-wrapper .e-chips.e-mob-chip {
1106
+ height: 30px;
1107
+ }
1108
+
1109
+ .e-popup.e-multi-select-list-wrapper {
1110
+ -webkit-box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.05);
1111
+ box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.05);
1112
+ -webkit-box-sizing: content-box;
1113
+ box-sizing: content-box;
1114
+ overflow: initial;
1115
+ }
1116
+
1117
+ .e-popup.e-multi-select-list-wrapper.e-checkbox .e-list-item.e-active {
1118
+ background-color: transparent;
1119
+ border-color: transparent;
1120
+ color: var(--color-sf-text-primary);
1121
+ }
1122
+
1123
+ .e-popup.e-multi-select-list-wrapper.e-checkbox .e-dropdownbase .e-list-item.e-active,
1124
+ .e-popup.e-multi-select-list-wrapper.e-checkbox .e-dropdownbase .e-list-item.e-active.e-hover {
1125
+ font-weight: normal;
1126
+ }
1127
+
1128
+ .e-popup.e-multi-select-list-wrapper.e-multiselect-group.e-checkbox .e-list-group-item.e-active {
1129
+ background-color: transparent;
1130
+ border-color: transparent;
1131
+ color: var(--color-sf-text-primary);
1132
+ }
1133
+
1134
+ .e-popup.e-multi-select-list-wrapper.e-checkbox .e-list-item.e-active.e-item-focus {
1135
+ color: var(--color-sf-text-primary);
1136
+ }
1137
+
1138
+ .e-popup.e-multi-select-list-wrapper.e-multiselect-group.e-checkbox .e-list-group-item.e-active.e-item-focus {
1139
+ color: var(--color-sf-text-primary);
1140
+ }
1141
+
1142
+ .e-popup.e-multi-select-list-wrapper.e-checkbox .e-list-item.e-active.e-hover {
1143
+ background-color: var(--color-sf-bg-secondary-hover);
1144
+ }
1145
+
1146
+ .e-popup.e-multi-select-list-wrapper.e-multiselect-group.e-checkbox .e-list-group-item.e-active.e-hover {
1147
+ background-color: var(--color-sf-bg-secondary-hover);
1148
+ }
1149
+
1150
+ .e-popup.e-multi-select-list-wrapper .e-list-item.e-active.e-item-focus {
1151
+ background-color: var(--color-sf-utility-content-bg-color-selected);
1152
+ -webkit-box-shadow: none;
1153
+ box-shadow: none;
1154
+ color: var(--color-sf-text-primary);
1155
+ }
1156
+
1157
+ .e-popup.e-multi-select-list-wrapper.e-multiselect-group .e-list-group-item.e-active.e-item-focus {
1158
+ background-color: var(--color-sf-utility-content-bg-color-selected);
1159
+ -webkit-box-shadow: none;
1160
+ box-shadow: none;
1161
+ color: var(--color-sf-text-primary);
1162
+ }
1163
+
1164
+ .e-popup.e-multi-select-list-wrapper .e-list-item {
1165
+ border: 0 solid transparent;
1166
+ }
1167
+
1168
+ .e-popup.e-multi-select-list-wrapper.e-multiselect-group .e-list-group-item {
1169
+ border: 0 solid transparent;
1170
+ }
1171
+
1172
+ .e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
1173
+ color: var(--color-sf-text-placeholder);
1174
+ }
1175
+
1176
+ .e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
1177
+ color: var(--color-sf-text-placeholder);
1178
+ }
1179
+
1180
+ .e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
1181
+ color: var(--color-sf-text-placeholder);
1182
+ }
1183
+
1184
+ .e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
1185
+ color: var(--color-sf-text-placeholder);
1186
+ }
1187
+
1188
+ .e-ul.e-reorder {
1189
+ border-bottom: 1px solid var(--color-sf-border-secondary);
1190
+ }
1191
+
1192
+ .e-multi-select-list-wrapper .e-selectall-parent {
1193
+ border-bottom: 1px solid var(--color-sf-border-secondary);
1194
+ }
1195
+
1196
+ .e-multi-select-wrapper .e-delim-values {
1197
+ -webkit-text-fill-color: var(--color-sf-text-primary);
1198
+ color: var(--color-sf-text-primary);
1199
+ }
1200
+
1201
+ .e-multi-select-wrapper .e-chips-close.e-close-hooker {
1202
+ color: var(--color-sf-fg-secondary);
1203
+ }
1204
+
1205
+ .e-multiselect:not(.e-disabled) .e-multi-select-wrapper .e-chips-close.e-close-hooker:hover {
1206
+ color: var(--color-sf-fg-secondary-hover);
1207
+ }
1208
+
1209
+ .e-small .e-multi-select-wrapper .e-chips {
1210
+ height: 18px;
1211
+ }
1212
+
1213
+ .e-small .e-multi-select-wrapper .e-chips > .e-chipcontent {
1214
+ font-size: 12px;
1215
+ }
1216
+
1217
+ .e-small .e-multi-select-wrapper .e-chips .e-chips-close::before {
1218
+ font-size: 14px;
1219
+ }
1220
+
1221
+ .e-small .e-multi-select-wrapper .e-close-hooker::before {
1222
+ left: 6px;
1223
+ }
1224
+
1225
+ .e-multiselect.e-disabled .e-multi-select-wrapper .e-delim-values {
1226
+ -webkit-text-fill-color: var(--color-sf-text-disabled);
1227
+ color: var(--color-sf-text-disabled);
1228
+ }
1229
+
1230
+ .e-bigger .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon,
1231
+ .e-bigger.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
1232
+ margin-top: -1.3em;
1233
+ }
1234
+
1235
+ .e-bigger .e-multi-select-wrapper {
1236
+ min-height: 36px;
1237
+ }
1238
+
1239
+ .e-bigger .e-multi-select-wrapper .e-chips {
1240
+ margin: 3px;
1241
+ }
1242
+
1243
+ .e-bigger .e-multi-select-wrapper .e-chips > .e-chipcontent {
1244
+ font-size: 16px;
1245
+ }
1246
+
1247
+ .e-bigger .e-multi-select-wrapper .e-chips > .e-chipcontent {
1248
+ padding: 8px 4px 8px 0;
1249
+ }
1250
+
1251
+ .e-bigger .e-multiselect.e-rtl .e-multi-select-wrapper .e-chips > .e-chipcontent {
1252
+ padding: 8px 0 8px 4px;
1253
+ }
1254
+
1255
+ .e-bigger .e-multi-select-wrapper .e-chips-close.e-close-hooker {
1256
+ margin-top: -1.62em;
1257
+ height: 36px;
1258
+ width: 40px;
1259
+ }
1260
+
1261
+ .e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon,
1262
+ .e-bigger.e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
1263
+ margin-top: -1.62em;
1264
+ height: 36px;
1265
+ margin-top: -2em;
1266
+ width: 40px;
1267
+ }
1268
+
1269
+ .e-bigger .e-multi-select-wrapper .e-chips-close.e-close-hooker,
1270
+ .e-bigger.e-multiselect .e-down-icon .e-chips-close.e-close-hooker.e-multi-select-wrapper .e-chips-close.e-close-hooker {
1271
+ font-size: 22px;
1272
+ margin-top: -1.65em;
1273
+ margin-top: -1.62em;
1274
+ }
1275
+
1276
+ .e-bigger .e-multi-select-wrapper input[type=text],
1277
+ .e-multi-select-wrapper.e-mob-wrapper input[type=text] {
1278
+ height: 28px;
1279
+ min-height: 28px;
1280
+ }
1281
+
1282
+ .e-bigger .e-multi-select-wrapper input[type=text] {
1283
+ font-size: 16px;
1284
+ height: 36px;
1285
+ min-height: 36px;
1286
+ }
1287
+
1288
+ .e-bigger .e-multiselect .e-multi-select-wrapper.e-down-icon .e-searcher.e-search-custom-width,
1289
+ .e-bigger.e-multiselect .e-multi-select-wrapper.e-down-icon .e-searcher.e-search-custom-width {
1290
+ width: calc(100% - 50px);
1291
+ }
1292
+
1293
+ .e-bigger.e-small .e-multiselect .e-multi-select-wrapper.e-down-icon .e-searcher.e-search-custom-width,
1294
+ .e-bigger.e-small.e-multiselect .e-multi-select-wrapper.e-down-icon .e-searcher.e-search-custom-width,
1295
+ .e-bigger .e-small.e-multiselect .e-multi-select-wrapper.e-down-icon .e-searcher.e-search-custom-width,
1296
+ .e-small .e-bigger.e-multiselect .e-multi-select-wrapper.e-down-icon .e-searcher.e-search-custom-width {
1297
+ width: calc(100% - 32px);
1298
+ }
1299
+
1300
+ .e-bigger .e-multi-select-wrapper .e-delim-values {
1301
+ font-size: 16px;
1302
+ line-height: 36px;
1303
+ padding-left: 10px;
1304
+ }
1305
+
1306
+ .e-bigger .e-multi-select-wrapper .e-delim-values .e-remain {
1307
+ font-size: 16px;
1308
+ }
1309
+
1310
+ .e-bigger.e-small .e-multi-select-wrapper .e-delim-values .e-remain {
1311
+ font-size: 14px;
1312
+ }
1313
+
1314
+ .e-bigger .e-popup.e-multi-select-list-wrapper .e-list-item .e-checkbox-wrapper,
1315
+ .e-bigger.e-popup.e-multi-select-list-wrapper .e-list-item .e-checkbox-wrapper {
1316
+ bottom: 1px;
1317
+ margin-right: 12px;
1318
+ }
1319
+
1320
+ .e-bigger .e-popup.e-multi-select-list-wrapper.e-multiselect-group .e-list-group-item .e-checkbox-wrapper,
1321
+ .e-bigger.e-popup.e-multi-select-list-wrapper.e-multiselect-group .e-list-group-item .e-checkbox-wrapper {
1322
+ bottom: 1px;
1323
+ margin-right: 12px;
1324
+ }
1325
+
1326
+ .e-bigger.e-multi-select-list-wrapper .e-selectall-parent .e-all-text,
1327
+ .e-bigger .e-multi-select-list-wrapper .e-selectall-parent .e-all-text {
1328
+ font-size: 16px;
1329
+ }
1330
+
1331
+ .e-bigger.e-small.e-multi-select-list-wrapper .e-selectall-parent .e-all-text,
1332
+ .e-bigger.e-small .e-multi-select-list-wrapper .e-selectall-parent .e-all-text {
1333
+ font-size: 14px;
1334
+ }
1335
+
1336
+ .e-bigger.e-multi-select-list-wrapper .e-selectall-parent,
1337
+ .e-bigger .e-multi-select-list-wrapper .e-selectall-parent {
1338
+ font-size: 14px;
1339
+ line-height: 36px;
1340
+ text-indent: 16px;
1341
+ }
1342
+
1343
+ .e-bigger.e-multi-select-list-wrapper .e-selectall-parent .e-checkbox-wrapper,
1344
+ .e-bigger .e-multi-select-list-wrapper .e-selectall-parent .e-checkbox-wrapper {
1345
+ bottom: 1px;
1346
+ margin-right: 12px;
1347
+ }
1348
+
1349
+ .e-bigger .e-ddl.e-popup.e-multi-select-list-wrapper .e-filter-parent .e-input-group:not(.e-control-container) .e-clear-icon {
1350
+ padding-left: 8px;
1351
+ }
1352
+
1353
+ .e-bigger .e-checkbox .e-multi-select-wrapper .e-delim-values {
1354
+ line-height: 36px;
1355
+ }
1356
+
1357
+ .e-bigger .e-multi-select-wrapper .e-chips-close {
1358
+ height: 20px;
1359
+ width: 20px;
1360
+ }
1361
+
1362
+ .e-bigger .e-multi-select-wrapper .e-chips .e-chips-close::before {
1363
+ font-size: 20px;
1364
+ }
1365
+
1366
+ .e-bigger.e-small .e-multi-select-wrapper.e-delimiter .e-searcher,
1367
+ .e-bigger.e-small .e-multi-select-wrapper.e-delimiter .e-multi-searcher {
1368
+ height: 32px;
1369
+ }
1370
+
1371
+ .e-bigger .e-multi-select-wrapper.e-delimiter .e-searcher,
1372
+ .e-bigger .e-multi-select-wrapper.e-delimiter .e-multi-searcher {
1373
+ height: 36px;
1374
+ }
1375
+
1376
+ .e-bigger.e-small.e-multi-select-list-wrapper .e-selectall-parent,
1377
+ .e-bigger.e-small .e-multi-select-list-wrapper .e-selectall-parent {
1378
+ line-height: 32px;
1379
+ font-size: 14px;
1380
+ text-indent: 14px;
1381
+ }
1382
+
1383
+ .e-bigger.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
1384
+ .e-bigger.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
1385
+ margin-top: -1.3em;
1386
+ }
1387
+
1388
+ .e-bigger.e-small .e-multi-select-wrapper .e-chips-close {
1389
+ height: 18px;
1390
+ width: 18px;
1391
+ }
1392
+
1393
+ .e-bigger.e-small .e-multi-select-wrapper {
1394
+ min-height: 28px;
1395
+ }
1396
+
1397
+ .e-bigger.e-small .e-multi-select-wrapper input[type=text] {
1398
+ font-size: 14px;
1399
+ height: 32px;
1400
+ min-height: 32px;
1401
+ }
1402
+
1403
+ .e-small.e-bigger .e-multi-select-wrapper .e-delim-values {
1404
+ font-size: 14px;
1405
+ line-height: 32px;
1406
+ }
1407
+
1408
+ .e-bigger.e-small .e-multi-select-wrapper .e-chips-close.e-close-hooker,
1409
+ .e-bigger.e-small .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
1410
+ margin-top: -1.64em;
1411
+ font-size: 20px;
1412
+ height: 32px;
1413
+ width: 32px;
1414
+ }
1415
+
1416
+ .e-bigger .e-content-placeholder.e-multiselect.e-placeholder-multiselect,
1417
+ .e-bigger.e-content-placeholder.e-multiselect.e-placeholder-multiselect {
1418
+ background-size: 300px 40px;
1419
+ min-height: 40px;
1420
+ }
1421
+
1422
+ .e-small.e-filled:not(.e-bigger).e-multiselect:not(.e-float-input) .e-multi-select-wrapper,
1423
+ .e-small .e-filled:not(.e-bigger).e-multiselect:not(.e-float-input) .e-multi-select-wrapper {
1424
+ padding: 3px 12px 0 4px;
1425
+ }
1426
+
1427
+ .e-bigger.e-small.e-multiselect.e-filled.e-input-group.e-control-wrapper,
1428
+ .e-bigger.e-small .e-multiselect.e-filled.e-input-group.e-control-wrapper,
1429
+ .e-bigger .e-small.e-multiselect.e-filled.e-input-group.e-control-wrapper,
1430
+ .e-small .e-bigger.e-multiselect.e-filled.e-input-group.e-control-wrapper {
1431
+ padding: 0;
1432
+ }
1433
+
1434
+ .e-bigger.e-small.e-filled.e-float-input .e-multi-select-wrapper,
1435
+ .e-bigger.e-small .e-filled.e-float-input .e-multi-select-wrapper,
1436
+ .e-bigger .e-small.e-filled.e-float-input .e-multi-select-wrapper,
1437
+ .e-small .e-bigger.e-filled.e-float-input .e-multi-select-wrapper {
1438
+ padding: 11px 12px 0;
1439
+ }
1440
+
1441
+ .e-bigger.e-filled.e-float-input .e-multi-select-wrapper,
1442
+ .e-bigger .e-filled.e-float-input .e-multi-select-wrapper {
1443
+ padding: 19px 12px 0 16px;
1444
+ }
1445
+
1446
+ .e-bigger:not(.e-small).e-filled.e-multiselect:not(.e-float-input) .e-multi-select-wrapper {
1447
+ padding-top: 3px;
1448
+ }
1449
+
1450
+ .e-bigger.e-multiselect.e-filled.e-float-input .e-multi-select-wrapper.e-delimiter input[type=text],
1451
+ .e-bigger .e-multiselect.e-filled.e-float-input .e-multi-select-wrapper.e-delimiter input[type=text] {
1452
+ padding: 5px 0;
1453
+ }
1454
+
1455
+ .e-bigger.e-small.e-filled.e-multiselect:not(.e-float-input) .e-multi-select-wrapper .e-chips,
1456
+ .e-bigger.e-small .e-filled.e-multiselect:not(.e-float-input) .e-multi-select-wrapper .e-chips,
1457
+ .e-bigger .e-small.e-filled.e-multiselect:not(.e-float-input) .e-multi-select-wrapper .e-chips,
1458
+ .e-small .e-bigger.e-filled.e-multiselect:not(.e-float-input) .e-multi-select-wrapper .e-chips {
1459
+ height: 28px;
1460
+ }
1461
+
1462
+ .e-bigger.e-multiselect.e-filled.e-float-input .e-multi-select-wrapper .e-chips,
1463
+ .e-bigger .e-multiselect.e-filled.e-float-input .e-multi-select-wrapper .e-chips {
1464
+ height: 24px;
1465
+ }
1466
+
1467
+ .e-bigger.e-multiselect.e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips,
1468
+ .e-bigger .e-multiselect.e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips {
1469
+ height: 32px;
1470
+ }
1471
+
1472
+ .e-bigger.e-small.e-filled.e-float-input .e-multi-select-wrapper .e-chips,
1473
+ .e-bigger.e-small .e-filled.e-float-input .e-multi-select-wrapper .e-chips,
1474
+ .e-bigger .e-small.e-filled.e-float-input .e-multi-select-wrapper .e-chips,
1475
+ .e-small .e-bigger.e-filled.e-float-input .e-multi-select-wrapper .e-chips {
1476
+ height: 18px;
1477
+ }
1478
+
1479
+ .e-bigger.e-small.e-filled.e-float-input .e-multi-select-wrapper .e-chips,
1480
+ .e-bigger.e-small .e-filled.e-float-input .e-multi-select-wrapper .e-chips,
1481
+ .e-bigger .e-small.e-filled.e-float-input .e-multi-select-wrapper .e-chips,
1482
+ .e-small .e-bigger.e-filled.e-float-input .e-multi-select-wrapper .e-chips,
1483
+ .e-bigger.e-small.e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips,
1484
+ .e-bigger.e-small .e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips,
1485
+ .e-bigger .e-small.e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips,
1486
+ .e-small .e-bigger.e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips {
1487
+ margin: 8px 8px 0 0;
1488
+ padding: 0 8px;
1489
+ }
1490
+
1491
+ .e-rtl.e-bigger.e-small.e-filled.e-float-input .e-multi-select-wrapper .e-chips,
1492
+ .e-rtl.e-bigger.e-small .e-filled.e-float-input .e-multi-select-wrapper .e-chips,
1493
+ .e-rtl.e-bigger .e-small.e-filled.e-float-input .e-multi-select-wrapper .e-chips,
1494
+ .e-rtl.e-small .e-bigger.e-filled.e-float-input .e-multi-select-wrapper .e-chips,
1495
+ .e-rtl.e-bigger.e-small.e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips,
1496
+ .e-rtl.e-bigger.e-small .e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips,
1497
+ .e-rtl.e-bigger .e-small.e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips,
1498
+ .e-rtl.e-small .e-bigger.e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips {
1499
+ margin: 8px 0 0 8px;
1500
+ padding: 0 8px;
1501
+ }
1502
+
1503
+ .e-bigger.e-small.e-filled.e-float-input .e-multi-select-wrapper .e-chips,
1504
+ .e-bigger.e-small .e-filled.e-float-input .e-multi-select-wrapper .e-chips,
1505
+ .e-bigger .e-small.e-filled.e-float-input .e-multi-select-wrapper .e-chips,
1506
+ .e-small .e-bigger.e-filled.e-float-input .e-multi-select-wrapper .e-chips {
1507
+ padding-left: 8px;
1508
+ }
1509
+
1510
+ .e-bigger.e-small.e-filled.e-multiselect:not(.e-float-input) .e-multi-select-wrapper .e-chips > .e-chipcontent,
1511
+ .e-bigger.e-small .e-filled.e-multiselect:not(.e-float-input) .e-multi-select-wrapper .e-chips > .e-chipcontent,
1512
+ .e-bigger .e-small.e-filled.e-multiselect:not(.e-float-input) .e-multi-select-wrapper .e-chips > .e-chipcontent,
1513
+ .e-small .e-bigger.e-filled.e-multiselect:not(.e-float-input) .e-multi-select-wrapper .e-chips > .e-chipcontent {
1514
+ font-size: 13px;
1515
+ padding: 0 8px 0 0;
1516
+ }
1517
+
1518
+ .e-bigger.e-small.e-filled.e-float-input.e-multiselect .e-multi-select-wrapper .e-chips > .e-chipcontent,
1519
+ .e-bigger.e-small .e-filled.e-float-input.e-multiselect .e-multi-select-wrapper .e-chips > .e-chipcontent,
1520
+ .e-bigger .e-small.e-filled.e-float-input.e-multiselect .e-multi-select-wrapper .e-chips > .e-chipcontent,
1521
+ .e-small .e-bigger.e-filled.e-float-input.e-multiselect .e-multi-select-wrapper .e-chips > .e-chipcontent {
1522
+ font-size: 12px;
1523
+ padding: 0 4px 0 0;
1524
+ }
1525
+
1526
+ .e-rtl.e-bigger.e-small.e-filled.e-multiselect .e-multi-select-wrapper .e-chips > .e-chipcontent,
1527
+ .e-rtl.e-bigger.e-small .e-filled.e-multiselect .e-multi-select-wrapper .e-chips > .e-chipcontent,
1528
+ .e-rtl.e-bigger .e-small.e-filled.e-multiselect .e-multi-select-wrapper .e-chips > .e-chipcontent,
1529
+ .e-rtl.e-small .e-bigger.e-filled.e-multiselect .e-multi-select-wrapper .e-chips > .e-chipcontent {
1530
+ padding: 0 0 0 4px;
1531
+ }
1532
+
1533
+ .e-bigger.e-filled.e-float-input.e-multiselect .e-multi-select-wrapper .e-chips > .e-chipcontent,
1534
+ .e-bigger .e-filled.e-float-input.e-multiselect .e-multi-select-wrapper .e-chips > .e-chipcontent {
1535
+ font-size: 13px;
1536
+ }
1537
+
1538
+ .e-rtl.e-bigger.e-filled .e-multi-select-wrapper .e-chips,
1539
+ .e-rtl.e-bigger .e-filled .e-multi-select-wrapper .e-chips,
1540
+ .e-rtl.e-bigger.e-filled.e-float-input .e-multi-select-wrapper .e-chips,
1541
+ .e-rtl.e-bigger .e-filled.e-float-input .e-multi-select-wrapper .e-chips,
1542
+ .e-bigger.e-filled .e-multi-select-wrapper .e-chips,
1543
+ .e-bigger .e-filled .e-multi-select-wrapper .e-chips {
1544
+ padding: 0 12px;
1545
+ }
1546
+
1547
+ .e-bigger.e-filled.e-float-input .e-multi-select-wrapper .e-chips,
1548
+ .e-bigger .e-filled.e-float-input .e-multi-select-wrapper .e-chips {
1549
+ padding-right: 8px;
1550
+ }
1551
+
1552
+ .e-bigger.e-small .e-multi-select-wrapper .e-chips .e-chips-close::before {
1553
+ font-size: 18px;
1554
+ }
1555
+
1556
+ .e-bigger.e-small .e-multi-select-wrapper .e-chips {
1557
+ height: 26px;
1558
+ }
1559
+
1560
+ .e-bigger.e-small .e-multi-select-wrapper .e-chips > .e-chipcontent {
1561
+ font-size: 14px;
1562
+ }
1563
+
1564
+ .e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
1565
+ left: 6px;
1566
+ }
1567
+
1568
+ .e-bigger .e-multi-select-wrapper .e-chips {
1569
+ height: 30px;
1570
+ }
1571
+
1572
+ .e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
1573
+ height: 28px;
1574
+ width: 28px;
1575
+ }