@syncfusion/ej2-angular-inputs 24.1.41-ngcc → 24.1.41

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 (717) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/color-picker/colorpicker-all.module.mjs +23 -0
  3. package/esm2020/src/color-picker/colorpicker.component.mjs +84 -0
  4. package/esm2020/src/color-picker/colorpicker.module.mjs +25 -0
  5. package/esm2020/src/form-validator/form-validator.mjs +193 -0
  6. package/esm2020/src/index.mjs +28 -0
  7. package/esm2020/src/maskedtextbox/maskedtextbox-all.module.mjs +23 -0
  8. package/esm2020/src/maskedtextbox/maskedtextbox.component.mjs +85 -0
  9. package/esm2020/src/maskedtextbox/maskedtextbox.module.mjs +25 -0
  10. package/esm2020/src/numerictextbox/numerictextbox-all.module.mjs +23 -0
  11. package/esm2020/src/numerictextbox/numerictextbox.component.mjs +85 -0
  12. package/esm2020/src/numerictextbox/numerictextbox.module.mjs +25 -0
  13. package/esm2020/src/rating/rating-all.module.mjs +23 -0
  14. package/esm2020/src/rating/rating.component.mjs +109 -0
  15. package/esm2020/src/rating/rating.module.mjs +25 -0
  16. package/esm2020/src/signature/signature-all.module.mjs +23 -0
  17. package/esm2020/src/signature/signature.component.mjs +84 -0
  18. package/esm2020/src/signature/signature.module.mjs +25 -0
  19. package/esm2020/src/slider/slider-all.module.mjs +23 -0
  20. package/esm2020/src/slider/slider.component.mjs +84 -0
  21. package/esm2020/src/slider/slider.module.mjs +25 -0
  22. package/esm2020/src/textbox/textbox-all.module.mjs +23 -0
  23. package/esm2020/src/textbox/textbox.component.mjs +85 -0
  24. package/esm2020/src/textbox/textbox.module.mjs +25 -0
  25. package/esm2020/src/uploader/files.directive.mjs +58 -0
  26. package/esm2020/src/uploader/uploader-all.module.mjs +23 -0
  27. package/esm2020/src/uploader/uploader.component.mjs +96 -0
  28. package/esm2020/src/uploader/uploader.module.mjs +34 -0
  29. package/esm2020/syncfusion-ej2-angular-inputs.mjs +5 -0
  30. package/fesm2015/syncfusion-ej2-angular-inputs.mjs +1245 -0
  31. package/fesm2015/syncfusion-ej2-angular-inputs.mjs.map +1 -0
  32. package/fesm2020/syncfusion-ej2-angular-inputs.mjs +1245 -0
  33. package/fesm2020/syncfusion-ej2-angular-inputs.mjs.map +1 -0
  34. package/package.json +26 -12
  35. package/src/color-picker/colorpicker-all.module.d.ts +6 -0
  36. package/src/color-picker/colorpicker.component.d.ts +3 -0
  37. package/src/color-picker/colorpicker.module.d.ts +6 -0
  38. package/src/maskedtextbox/maskedtextbox-all.module.d.ts +6 -0
  39. package/src/maskedtextbox/maskedtextbox.component.d.ts +3 -0
  40. package/src/maskedtextbox/maskedtextbox.module.d.ts +6 -0
  41. package/src/numerictextbox/numerictextbox-all.module.d.ts +6 -0
  42. package/src/numerictextbox/numerictextbox.component.d.ts +3 -0
  43. package/src/numerictextbox/numerictextbox.module.d.ts +6 -0
  44. package/src/rating/rating-all.module.d.ts +6 -0
  45. package/src/rating/rating.component.d.ts +3 -0
  46. package/src/rating/rating.module.d.ts +6 -0
  47. package/src/signature/signature-all.module.d.ts +6 -0
  48. package/src/signature/signature.component.d.ts +3 -0
  49. package/src/signature/signature.module.d.ts +6 -0
  50. package/src/slider/slider-all.module.d.ts +6 -0
  51. package/src/slider/slider.component.d.ts +3 -0
  52. package/src/slider/slider.module.d.ts +6 -0
  53. package/src/textbox/textbox-all.module.d.ts +6 -0
  54. package/src/textbox/textbox.component.d.ts +3 -0
  55. package/src/textbox/textbox.module.d.ts +6 -0
  56. package/src/uploader/files.directive.d.ts +5 -0
  57. package/src/uploader/uploader-all.module.d.ts +6 -0
  58. package/src/uploader/uploader.component.d.ts +3 -0
  59. package/src/uploader/uploader.module.d.ts +7 -0
  60. package/styles/bootstrap-dark.css +7321 -1
  61. package/styles/bootstrap.css +7300 -1
  62. package/styles/bootstrap4.css +7454 -1
  63. package/styles/bootstrap5-dark.css +7618 -1
  64. package/styles/bootstrap5.css +7618 -1
  65. package/styles/color-picker/_all.scss +2 -0
  66. package/styles/color-picker/_bootstrap-dark-definition.scss +131 -0
  67. package/styles/color-picker/_bootstrap-definition.scss +128 -0
  68. package/styles/color-picker/_bootstrap4-definition.scss +127 -0
  69. package/styles/color-picker/_bootstrap5-dark-definition.scss +1 -0
  70. package/styles/color-picker/_bootstrap5-definition.scss +133 -0
  71. package/styles/color-picker/_fabric-dark-definition.scss +131 -0
  72. package/styles/color-picker/_fabric-definition.scss +127 -0
  73. package/styles/color-picker/_fluent-dark-definition.scss +1 -0
  74. package/styles/color-picker/_fluent-definition.scss +133 -0
  75. package/styles/color-picker/_fusionnew-definition.scss +133 -0
  76. package/styles/color-picker/_highcontrast-definition.scss +127 -0
  77. package/styles/color-picker/_highcontrast-light-definition.scss +130 -0
  78. package/styles/color-picker/_layout.scss +1340 -0
  79. package/styles/color-picker/_material-dark-definition.scss +135 -0
  80. package/styles/color-picker/_material-definition.scss +130 -0
  81. package/styles/color-picker/_material3-dark-definition.scss +1 -0
  82. package/styles/color-picker/_material3-definition.scss +141 -0
  83. package/styles/color-picker/_tailwind-dark-definition.scss +1 -0
  84. package/styles/color-picker/_tailwind-definition.scss +132 -0
  85. package/styles/color-picker/_theme.scss +191 -0
  86. package/styles/color-picker/bootstrap-dark.css +745 -1
  87. package/styles/color-picker/bootstrap-dark.scss +11 -1
  88. package/styles/color-picker/bootstrap.css +745 -1
  89. package/styles/color-picker/bootstrap.scss +11 -1
  90. package/styles/color-picker/bootstrap4.css +828 -1
  91. package/styles/color-picker/bootstrap4.scss +11 -1
  92. package/styles/color-picker/bootstrap5-dark.css +809 -1
  93. package/styles/color-picker/bootstrap5-dark.scss +11 -1
  94. package/styles/color-picker/bootstrap5.css +809 -1
  95. package/styles/color-picker/bootstrap5.scss +11 -1
  96. package/styles/color-picker/fabric-dark.css +745 -1
  97. package/styles/color-picker/fabric-dark.scss +11 -1
  98. package/styles/color-picker/fabric.css +750 -1
  99. package/styles/color-picker/fabric.scss +11 -1
  100. package/styles/color-picker/fluent-dark.css +766 -1
  101. package/styles/color-picker/fluent-dark.scss +11 -1
  102. package/styles/color-picker/fluent.css +766 -1
  103. package/styles/color-picker/fluent.scss +11 -1
  104. package/styles/color-picker/highcontrast-light.css +745 -1
  105. package/styles/color-picker/highcontrast-light.scss +11 -1
  106. package/styles/color-picker/highcontrast.css +745 -1
  107. package/styles/color-picker/highcontrast.scss +11 -1
  108. package/styles/color-picker/icons/_bootstrap-dark.scss +9 -0
  109. package/styles/color-picker/icons/_bootstrap.scss +9 -0
  110. package/styles/color-picker/icons/_bootstrap4.scss +9 -0
  111. package/styles/color-picker/icons/_bootstrap5-dark.scss +1 -0
  112. package/styles/color-picker/icons/_bootstrap5.scss +9 -0
  113. package/styles/color-picker/icons/_fabric-dark.scss +9 -0
  114. package/styles/color-picker/icons/_fabric.scss +9 -0
  115. package/styles/color-picker/icons/_fluent-dark.scss +1 -0
  116. package/styles/color-picker/icons/_fluent.scss +9 -0
  117. package/styles/color-picker/icons/_fusionnew.scss +9 -0
  118. package/styles/color-picker/icons/_highcontrast-light.scss +9 -0
  119. package/styles/color-picker/icons/_highcontrast.scss +9 -0
  120. package/styles/color-picker/icons/_material-dark.scss +9 -0
  121. package/styles/color-picker/icons/_material.scss +9 -0
  122. package/styles/color-picker/icons/_material3-dark.scss +1 -0
  123. package/styles/color-picker/icons/_material3.scss +9 -0
  124. package/styles/color-picker/icons/_tailwind-dark.scss +9 -0
  125. package/styles/color-picker/icons/_tailwind.scss +9 -0
  126. package/styles/color-picker/material-dark.css +751 -1
  127. package/styles/color-picker/material-dark.scss +11 -1
  128. package/styles/color-picker/material.css +772 -1
  129. package/styles/color-picker/material.scss +11 -1
  130. package/styles/color-picker/material3-dark.css +897 -1
  131. package/styles/color-picker/material3-dark.scss +11 -1
  132. package/styles/color-picker/material3.css +953 -1
  133. package/styles/color-picker/material3.scss +11 -1
  134. package/styles/color-picker/tailwind-dark.css +786 -1
  135. package/styles/color-picker/tailwind-dark.scss +11 -1
  136. package/styles/color-picker/tailwind.css +786 -1
  137. package/styles/color-picker/tailwind.scss +11 -1
  138. package/styles/data-form/_all.scss +2 -0
  139. package/styles/data-form/_bootstrap-dark-definition.scss +42 -0
  140. package/styles/data-form/_bootstrap-definition.scss +41 -0
  141. package/styles/data-form/_bootstrap4-definition.scss +41 -0
  142. package/styles/data-form/_bootstrap5-dark-definition.scss +1 -0
  143. package/styles/data-form/_bootstrap5-definition.scss +41 -0
  144. package/styles/data-form/_fabric-dark-definition.scss +41 -0
  145. package/styles/data-form/_fabric-definition.scss +41 -0
  146. package/styles/data-form/_fluent-dark-definition.scss +1 -0
  147. package/styles/data-form/_fluent-definition.scss +41 -0
  148. package/styles/data-form/_fusionnew-definition.scss +41 -0
  149. package/styles/data-form/_highcontrast-definition.scss +41 -0
  150. package/styles/data-form/_highcontrast-light-definition.scss +41 -0
  151. package/styles/data-form/_layout.scss +223 -0
  152. package/styles/data-form/_material-dark-definition.scss +41 -0
  153. package/styles/data-form/_material-definition.scss +42 -0
  154. package/styles/data-form/_material3-dark-definition.scss +1 -0
  155. package/styles/data-form/_material3-definition.scss +41 -0
  156. package/styles/data-form/_tailwind-dark-definition.scss +1 -0
  157. package/styles/data-form/_tailwind-definition.scss +41 -0
  158. package/styles/data-form/_theme.scss +38 -0
  159. package/styles/data-form/bootstrap-dark.css +240 -1
  160. package/styles/data-form/bootstrap-dark.scss +3 -1
  161. package/styles/data-form/bootstrap.css +240 -1
  162. package/styles/data-form/bootstrap.scss +3 -1
  163. package/styles/data-form/bootstrap4.css +240 -1
  164. package/styles/data-form/bootstrap4.scss +3 -1
  165. package/styles/data-form/bootstrap5-dark.css +240 -1
  166. package/styles/data-form/bootstrap5-dark.scss +3 -1
  167. package/styles/data-form/bootstrap5.css +240 -1
  168. package/styles/data-form/bootstrap5.scss +3 -1
  169. package/styles/data-form/fabric-dark.css +240 -1
  170. package/styles/data-form/fabric-dark.scss +3 -1
  171. package/styles/data-form/fabric.css +240 -1
  172. package/styles/data-form/fabric.scss +3 -1
  173. package/styles/data-form/fluent-dark.css +240 -1
  174. package/styles/data-form/fluent-dark.scss +3 -1
  175. package/styles/data-form/fluent.css +240 -1
  176. package/styles/data-form/fluent.scss +3 -1
  177. package/styles/data-form/highcontrast-light.css +240 -1
  178. package/styles/data-form/highcontrast-light.scss +3 -1
  179. package/styles/data-form/highcontrast.css +240 -1
  180. package/styles/data-form/highcontrast.scss +3 -1
  181. package/styles/data-form/material-dark.css +240 -1
  182. package/styles/data-form/material-dark.scss +3 -1
  183. package/styles/data-form/material.css +240 -1
  184. package/styles/data-form/material.scss +3 -1
  185. package/styles/data-form/material3-dark.css +295 -1
  186. package/styles/data-form/material3-dark.scss +3 -1
  187. package/styles/data-form/material3.css +351 -1
  188. package/styles/data-form/material3.scss +3 -1
  189. package/styles/data-form/tailwind-dark.css +240 -1
  190. package/styles/data-form/tailwind-dark.scss +3 -1
  191. package/styles/data-form/tailwind.css +240 -1
  192. package/styles/data-form/tailwind.scss +3 -1
  193. package/styles/fabric-dark.css +7250 -1
  194. package/styles/fabric.css +7255 -1
  195. package/styles/fluent-dark.css +7399 -1
  196. package/styles/fluent.css +7399 -1
  197. package/styles/highcontrast-light.css +7566 -1
  198. package/styles/highcontrast.css +7566 -1
  199. package/styles/input/_all.scss +3 -0
  200. package/styles/input/_bootstrap-dark-definition.scss +329 -0
  201. package/styles/input/_bootstrap-definition.scss +320 -0
  202. package/styles/input/_bootstrap4-definition.scss +325 -0
  203. package/styles/input/_bootstrap5-dark-definition.scss +1 -0
  204. package/styles/input/_bootstrap5-definition.scss +336 -0
  205. package/styles/input/_definition.scss +232 -0
  206. package/styles/input/_fabric-dark-definition.scss +319 -0
  207. package/styles/input/_fabric-definition.scss +311 -0
  208. package/styles/input/_fluent-dark-definition.scss +1 -0
  209. package/styles/input/_fluent-definition.scss +338 -0
  210. package/styles/input/_fusionnew-definition.scss +336 -0
  211. package/styles/input/_highcontrast-definition.scss +312 -0
  212. package/styles/input/_highcontrast-light-definition.scss +320 -0
  213. package/styles/input/_layout.scss +11364 -0
  214. package/styles/input/_material-dark-definition.scss +573 -0
  215. package/styles/input/_material-definition.scss +573 -0
  216. package/styles/input/_material3-dark-definition.scss +1 -0
  217. package/styles/input/_material3-definition.scss +548 -0
  218. package/styles/input/_responsive.scss +1 -0
  219. package/styles/input/_tailwind-dark-definition.scss +1 -0
  220. package/styles/input/_tailwind-definition.scss +335 -0
  221. package/styles/input/_theme.scss +4284 -0
  222. package/styles/input/bootstrap-dark.css +4652 -1
  223. package/styles/input/bootstrap-dark.scss +4 -1
  224. package/styles/input/bootstrap.css +4652 -1
  225. package/styles/input/bootstrap.scss +4 -1
  226. package/styles/input/bootstrap4.css +4634 -1
  227. package/styles/input/bootstrap4.scss +4 -1
  228. package/styles/input/bootstrap5-dark.css +4745 -1
  229. package/styles/input/bootstrap5-dark.scss +4 -1
  230. package/styles/input/bootstrap5.css +4745 -1
  231. package/styles/input/bootstrap5.scss +4 -1
  232. package/styles/input/fabric-dark.css +4572 -1
  233. package/styles/input/fabric-dark.scss +4 -1
  234. package/styles/input/fabric.css +4572 -1
  235. package/styles/input/fabric.scss +4 -1
  236. package/styles/input/fluent-dark.css +4617 -1
  237. package/styles/input/fluent-dark.scss +4 -1
  238. package/styles/input/fluent.css +4617 -1
  239. package/styles/input/fluent.scss +4 -1
  240. package/styles/input/highcontrast-light.css +4846 -1
  241. package/styles/input/highcontrast-light.scss +4 -1
  242. package/styles/input/highcontrast.css +4846 -1
  243. package/styles/input/highcontrast.scss +4 -1
  244. package/styles/input/icons/_bootstrap-dark.scss +17 -0
  245. package/styles/input/icons/_bootstrap.scss +17 -0
  246. package/styles/input/icons/_bootstrap4.scss +17 -0
  247. package/styles/input/icons/_bootstrap5-dark.scss +1 -0
  248. package/styles/input/icons/_bootstrap5.scss +17 -0
  249. package/styles/input/icons/_fabric-dark.scss +17 -0
  250. package/styles/input/icons/_fabric.scss +17 -0
  251. package/styles/input/icons/_fluent-dark.scss +1 -0
  252. package/styles/input/icons/_fluent.scss +17 -0
  253. package/styles/input/icons/_fusionnew.scss +17 -0
  254. package/styles/input/icons/_highcontrast-light.scss +17 -0
  255. package/styles/input/icons/_highcontrast.scss +17 -0
  256. package/styles/input/icons/_material-dark.scss +49 -0
  257. package/styles/input/icons/_material.scss +49 -0
  258. package/styles/input/icons/_material3-dark.scss +1 -0
  259. package/styles/input/icons/_material3.scss +17 -0
  260. package/styles/input/icons/_tailwind-dark.scss +1 -0
  261. package/styles/input/icons/_tailwind.scss +17 -0
  262. package/styles/input/material-dark.css +12567 -1
  263. package/styles/input/material-dark.scss +4 -1
  264. package/styles/input/material.css +12575 -1
  265. package/styles/input/material.scss +4 -1
  266. package/styles/input/material3-dark.css +12444 -1
  267. package/styles/input/material3-dark.scss +4 -1
  268. package/styles/input/material3.css +12500 -1
  269. package/styles/input/material3.scss +4 -1
  270. package/styles/input/tailwind-dark.css +4588 -1
  271. package/styles/input/tailwind-dark.scss +4 -1
  272. package/styles/input/tailwind.css +4588 -1
  273. package/styles/input/tailwind.scss +4 -1
  274. package/styles/maskedtextbox/_all.scss +2 -0
  275. package/styles/maskedtextbox/_bootstrap-dark-definition.scss +7 -0
  276. package/styles/maskedtextbox/_bootstrap-definition.scss +4 -0
  277. package/styles/maskedtextbox/_bootstrap4-definition.scss +4 -0
  278. package/styles/maskedtextbox/_bootstrap5-dark-definition.scss +1 -0
  279. package/styles/maskedtextbox/_bootstrap5-definition.scss +7 -0
  280. package/styles/maskedtextbox/_fabric-dark-definition.scss +7 -0
  281. package/styles/maskedtextbox/_fabric-definition.scss +4 -0
  282. package/styles/maskedtextbox/_fluent-dark-definition.scss +1 -0
  283. package/styles/maskedtextbox/_fluent-definition.scss +7 -0
  284. package/styles/maskedtextbox/_fusionnew-definition.scss +7 -0
  285. package/styles/maskedtextbox/_highcontrast-definition.scss +4 -0
  286. package/styles/maskedtextbox/_highcontrast-light-definition.scss +7 -0
  287. package/styles/maskedtextbox/_layout.scss +33 -0
  288. package/styles/maskedtextbox/_material-dark-definition.scss +7 -0
  289. package/styles/maskedtextbox/_material-definition.scss +4 -0
  290. package/styles/maskedtextbox/_material3-dark-definition.scss +1 -0
  291. package/styles/maskedtextbox/_material3-definition.scss +4 -0
  292. package/styles/maskedtextbox/_tailwind-dark-definition.scss +1 -0
  293. package/styles/maskedtextbox/_tailwind-definition.scss +7 -0
  294. package/styles/maskedtextbox/_theme.scss +15 -0
  295. package/styles/maskedtextbox/bootstrap-dark.css +34 -1
  296. package/styles/maskedtextbox/bootstrap-dark.scss +4 -1
  297. package/styles/maskedtextbox/bootstrap.css +14 -1
  298. package/styles/maskedtextbox/bootstrap.scss +4 -1
  299. package/styles/maskedtextbox/bootstrap4.css +34 -1
  300. package/styles/maskedtextbox/bootstrap4.scss +4 -1
  301. package/styles/maskedtextbox/bootstrap5-dark.css +34 -1
  302. package/styles/maskedtextbox/bootstrap5-dark.scss +4 -1
  303. package/styles/maskedtextbox/bootstrap5.css +34 -1
  304. package/styles/maskedtextbox/bootstrap5.scss +4 -1
  305. package/styles/maskedtextbox/fabric-dark.css +34 -1
  306. package/styles/maskedtextbox/fabric-dark.scss +4 -1
  307. package/styles/maskedtextbox/fabric.css +34 -1
  308. package/styles/maskedtextbox/fabric.scss +4 -1
  309. package/styles/maskedtextbox/fluent-dark.css +27 -1
  310. package/styles/maskedtextbox/fluent-dark.scss +4 -1
  311. package/styles/maskedtextbox/fluent.css +27 -1
  312. package/styles/maskedtextbox/fluent.scss +4 -1
  313. package/styles/maskedtextbox/highcontrast-light.css +34 -1
  314. package/styles/maskedtextbox/highcontrast-light.scss +4 -1
  315. package/styles/maskedtextbox/highcontrast.css +34 -1
  316. package/styles/maskedtextbox/highcontrast.scss +4 -1
  317. package/styles/maskedtextbox/material-dark.css +40 -1
  318. package/styles/maskedtextbox/material-dark.scss +4 -1
  319. package/styles/maskedtextbox/material.css +48 -1
  320. package/styles/maskedtextbox/material.scss +4 -1
  321. package/styles/maskedtextbox/material3-dark.css +103 -1
  322. package/styles/maskedtextbox/material3-dark.scss +4 -1
  323. package/styles/maskedtextbox/material3.css +159 -1
  324. package/styles/maskedtextbox/material3.scss +4 -1
  325. package/styles/maskedtextbox/tailwind-dark.css +34 -1
  326. package/styles/maskedtextbox/tailwind-dark.scss +4 -1
  327. package/styles/maskedtextbox/tailwind.css +34 -1
  328. package/styles/maskedtextbox/tailwind.scss +4 -1
  329. package/styles/material-dark.css +15418 -1
  330. package/styles/material.css +15475 -1
  331. package/styles/material3-dark.css +15492 -1
  332. package/styles/material3-dark.scss +1 -0
  333. package/styles/material3.css +15548 -1
  334. package/styles/material3.scss +1 -0
  335. package/styles/numerictextbox/_all.scss +2 -0
  336. package/styles/numerictextbox/_bootstrap-dark-definition.scss +6 -0
  337. package/styles/numerictextbox/_bootstrap-definition.scss +3 -0
  338. package/styles/numerictextbox/_bootstrap4-definition.scss +3 -0
  339. package/styles/numerictextbox/_bootstrap5-dark-definition.scss +1 -0
  340. package/styles/numerictextbox/_bootstrap5-definition.scss +3 -0
  341. package/styles/numerictextbox/_fabric-dark-definition.scss +6 -0
  342. package/styles/numerictextbox/_fabric-definition.scss +3 -0
  343. package/styles/numerictextbox/_fluent-dark-definition.scss +1 -0
  344. package/styles/numerictextbox/_fluent-definition.scss +5 -0
  345. package/styles/numerictextbox/_fusionnew-definition.scss +3 -0
  346. package/styles/numerictextbox/_highcontrast-definition.scss +3 -0
  347. package/styles/numerictextbox/_highcontrast-light-definition.scss +6 -0
  348. package/styles/numerictextbox/_layout.scss +30 -0
  349. package/styles/numerictextbox/_material-dark-definition.scss +6 -0
  350. package/styles/numerictextbox/_material-definition.scss +3 -0
  351. package/styles/numerictextbox/_material3-dark-definition.scss +1 -0
  352. package/styles/numerictextbox/_material3-definition.scss +4 -0
  353. package/styles/numerictextbox/_tailwind-dark-definition.scss +1 -0
  354. package/styles/numerictextbox/_tailwind-definition.scss +3 -0
  355. package/styles/numerictextbox/_theme.scss +39 -0
  356. package/styles/numerictextbox/bootstrap-dark.css +52 -1
  357. package/styles/numerictextbox/bootstrap-dark.scss +5 -1
  358. package/styles/numerictextbox/bootstrap.css +52 -1
  359. package/styles/numerictextbox/bootstrap.scss +5 -1
  360. package/styles/numerictextbox/bootstrap4.css +48 -1
  361. package/styles/numerictextbox/bootstrap4.scss +5 -1
  362. package/styles/numerictextbox/bootstrap5-dark.css +48 -1
  363. package/styles/numerictextbox/bootstrap5-dark.scss +5 -1
  364. package/styles/numerictextbox/bootstrap5.css +48 -1
  365. package/styles/numerictextbox/bootstrap5.scss +5 -1
  366. package/styles/numerictextbox/fabric-dark.css +48 -1
  367. package/styles/numerictextbox/fabric-dark.scss +5 -1
  368. package/styles/numerictextbox/fabric.css +48 -1
  369. package/styles/numerictextbox/fabric.scss +5 -1
  370. package/styles/numerictextbox/fluent-dark.css +59 -1
  371. package/styles/numerictextbox/fluent-dark.scss +5 -1
  372. package/styles/numerictextbox/fluent.css +59 -1
  373. package/styles/numerictextbox/fluent.scss +5 -1
  374. package/styles/numerictextbox/highcontrast-light.css +48 -1
  375. package/styles/numerictextbox/highcontrast-light.scss +5 -1
  376. package/styles/numerictextbox/highcontrast.css +48 -1
  377. package/styles/numerictextbox/highcontrast.scss +5 -1
  378. package/styles/numerictextbox/icons/_bootstrap-dark.scss +11 -0
  379. package/styles/numerictextbox/icons/_bootstrap.scss +11 -0
  380. package/styles/numerictextbox/icons/_bootstrap4.scss +11 -0
  381. package/styles/numerictextbox/icons/_bootstrap5-dark.scss +1 -0
  382. package/styles/numerictextbox/icons/_bootstrap5.scss +11 -0
  383. package/styles/numerictextbox/icons/_fabric-dark.scss +11 -0
  384. package/styles/numerictextbox/icons/_fabric.scss +11 -0
  385. package/styles/numerictextbox/icons/_fluent-dark.scss +1 -0
  386. package/styles/numerictextbox/icons/_fluent.scss +11 -0
  387. package/styles/numerictextbox/icons/_fusionnew.scss +11 -0
  388. package/styles/numerictextbox/icons/_highcontrast-light.scss +11 -0
  389. package/styles/numerictextbox/icons/_highcontrast.scss +11 -0
  390. package/styles/numerictextbox/icons/_material-dark.scss +11 -0
  391. package/styles/numerictextbox/icons/_material.scss +11 -0
  392. package/styles/numerictextbox/icons/_material3-dark.scss +1 -0
  393. package/styles/numerictextbox/icons/_material3.scss +11 -0
  394. package/styles/numerictextbox/icons/_tailwind-dark.scss +1 -0
  395. package/styles/numerictextbox/icons/_tailwind.scss +11 -0
  396. package/styles/numerictextbox/material-dark.css +54 -1
  397. package/styles/numerictextbox/material-dark.scss +5 -1
  398. package/styles/numerictextbox/material.css +62 -1
  399. package/styles/numerictextbox/material.scss +5 -1
  400. package/styles/numerictextbox/material3-dark.css +117 -1
  401. package/styles/numerictextbox/material3-dark.scss +5 -1
  402. package/styles/numerictextbox/material3.css +173 -1
  403. package/styles/numerictextbox/material3.scss +5 -1
  404. package/styles/numerictextbox/tailwind-dark.css +48 -1
  405. package/styles/numerictextbox/tailwind-dark.scss +5 -1
  406. package/styles/numerictextbox/tailwind.css +48 -1
  407. package/styles/numerictextbox/tailwind.scss +5 -1
  408. package/styles/rating/_all.scss +2 -0
  409. package/styles/rating/_bootstrap-dark-definition.scss +47 -0
  410. package/styles/rating/_bootstrap-definition.scss +47 -0
  411. package/styles/rating/_bootstrap4-definition.scss +47 -0
  412. package/styles/rating/_bootstrap5-dark-definition.scss +1 -0
  413. package/styles/rating/_bootstrap5-definition.scss +47 -0
  414. package/styles/rating/_fabric-dark-definition.scss +47 -0
  415. package/styles/rating/_fabric-definition.scss +47 -0
  416. package/styles/rating/_fluent-dark-definition.scss +1 -0
  417. package/styles/rating/_fluent-definition.scss +47 -0
  418. package/styles/rating/_fusionnew-definition.scss +47 -0
  419. package/styles/rating/_highcontrast-definition.scss +47 -0
  420. package/styles/rating/_highcontrast-light-definition.scss +47 -0
  421. package/styles/rating/_layout.scss +221 -0
  422. package/styles/rating/_material-dark-definition.scss +47 -0
  423. package/styles/rating/_material-definition.scss +47 -0
  424. package/styles/rating/_material3-dark-definition.scss +1 -0
  425. package/styles/rating/_material3-definition.scss +47 -0
  426. package/styles/rating/_tailwind-dark-definition.scss +1 -0
  427. package/styles/rating/_tailwind-definition.scss +47 -0
  428. package/styles/rating/_theme.scss +198 -0
  429. package/styles/rating/bootstrap-dark.css +289 -1
  430. package/styles/rating/bootstrap-dark.scss +4 -1
  431. package/styles/rating/bootstrap.css +289 -1
  432. package/styles/rating/bootstrap.scss +4 -1
  433. package/styles/rating/bootstrap4.css +289 -1
  434. package/styles/rating/bootstrap4.scss +4 -1
  435. package/styles/rating/bootstrap5-dark.css +290 -1
  436. package/styles/rating/bootstrap5-dark.scss +4 -1
  437. package/styles/rating/bootstrap5.css +290 -1
  438. package/styles/rating/bootstrap5.scss +4 -1
  439. package/styles/rating/fabric-dark.css +289 -1
  440. package/styles/rating/fabric-dark.scss +4 -1
  441. package/styles/rating/fabric.css +289 -1
  442. package/styles/rating/fabric.scss +4 -1
  443. package/styles/rating/fluent-dark.css +289 -1
  444. package/styles/rating/fluent-dark.scss +4 -1
  445. package/styles/rating/fluent.css +289 -1
  446. package/styles/rating/fluent.scss +4 -1
  447. package/styles/rating/highcontrast-light.css +289 -1
  448. package/styles/rating/highcontrast-light.scss +4 -1
  449. package/styles/rating/highcontrast.css +289 -1
  450. package/styles/rating/highcontrast.scss +4 -1
  451. package/styles/rating/material-dark.css +289 -1
  452. package/styles/rating/material-dark.scss +4 -1
  453. package/styles/rating/material.css +289 -1
  454. package/styles/rating/material.scss +4 -1
  455. package/styles/rating/material3-dark.css +354 -1
  456. package/styles/rating/material3-dark.scss +4 -1
  457. package/styles/rating/material3.css +410 -1
  458. package/styles/rating/material3.scss +4 -1
  459. package/styles/rating/tailwind-dark.css +294 -1
  460. package/styles/rating/tailwind-dark.scss +4 -1
  461. package/styles/rating/tailwind.css +294 -1
  462. package/styles/rating/tailwind.scss +4 -1
  463. package/styles/signature/_all.scss +2 -0
  464. package/styles/signature/_bootstrap-dark-definition.scss +3 -0
  465. package/styles/signature/_bootstrap-definition.scss +3 -0
  466. package/styles/signature/_bootstrap4-definition.scss +3 -0
  467. package/styles/signature/_bootstrap5-dark-definition.scss +1 -0
  468. package/styles/signature/_bootstrap5-definition.scss +3 -0
  469. package/styles/signature/_fabric-dark-definition.scss +3 -0
  470. package/styles/signature/_fabric-definition.scss +3 -0
  471. package/styles/signature/_fluent-dark-definition.scss +1 -0
  472. package/styles/signature/_fluent-definition.scss +3 -0
  473. package/styles/signature/_fusionnew-definition.scss +3 -0
  474. package/styles/signature/_highcontrast-definition.scss +3 -0
  475. package/styles/signature/_highcontrast-light-definition.scss +3 -0
  476. package/styles/signature/_layout.scss +5 -0
  477. package/styles/signature/_material-dark-definition.scss +3 -0
  478. package/styles/signature/_material-definition.scss +3 -0
  479. package/styles/signature/_material3-dark-definition.scss +1 -0
  480. package/styles/signature/_material3-definition.scss +3 -0
  481. package/styles/signature/_tailwind-dark-definition.scss +1 -0
  482. package/styles/signature/_tailwind-definition.scss +3 -0
  483. package/styles/signature/_theme.scss +7 -0
  484. package/styles/signature/bootstrap-dark.css +9 -1
  485. package/styles/signature/bootstrap-dark.scss +3 -1
  486. package/styles/signature/bootstrap.css +9 -1
  487. package/styles/signature/bootstrap.scss +3 -1
  488. package/styles/signature/bootstrap4.css +9 -1
  489. package/styles/signature/bootstrap4.scss +3 -1
  490. package/styles/signature/bootstrap5-dark.css +9 -1
  491. package/styles/signature/bootstrap5-dark.scss +3 -1
  492. package/styles/signature/bootstrap5.css +9 -1
  493. package/styles/signature/bootstrap5.scss +3 -1
  494. package/styles/signature/fabric-dark.css +9 -1
  495. package/styles/signature/fabric-dark.scss +3 -1
  496. package/styles/signature/fabric.css +9 -1
  497. package/styles/signature/fabric.scss +3 -1
  498. package/styles/signature/fluent-dark.css +9 -1
  499. package/styles/signature/fluent-dark.scss +3 -1
  500. package/styles/signature/fluent.css +9 -1
  501. package/styles/signature/fluent.scss +3 -1
  502. package/styles/signature/highcontrast-light.css +9 -1
  503. package/styles/signature/highcontrast-light.scss +3 -1
  504. package/styles/signature/highcontrast.css +9 -1
  505. package/styles/signature/highcontrast.scss +3 -1
  506. package/styles/signature/material-dark.css +9 -1
  507. package/styles/signature/material-dark.scss +3 -1
  508. package/styles/signature/material.css +9 -1
  509. package/styles/signature/material.scss +3 -1
  510. package/styles/signature/material3-dark.css +64 -1
  511. package/styles/signature/material3-dark.scss +3 -1
  512. package/styles/signature/material3.css +120 -1
  513. package/styles/signature/material3.scss +3 -1
  514. package/styles/signature/tailwind-dark.css +9 -1
  515. package/styles/signature/tailwind-dark.scss +3 -1
  516. package/styles/signature/tailwind.css +9 -1
  517. package/styles/signature/tailwind.scss +3 -1
  518. package/styles/slider/_all.scss +3 -0
  519. package/styles/slider/_bootstrap-dark-definition.scss +156 -0
  520. package/styles/slider/_bootstrap-definition.scss +152 -0
  521. package/styles/slider/_bootstrap4-definition.scss +147 -0
  522. package/styles/slider/_bootstrap5-dark-definition.scss +1 -0
  523. package/styles/slider/_bootstrap5-definition.scss +90 -0
  524. package/styles/slider/_fabric-dark-definition.scss +162 -0
  525. package/styles/slider/_fabric-definition.scss +156 -0
  526. package/styles/slider/_fluent-dark-definition.scss +1 -0
  527. package/styles/slider/_fluent-definition.scss +74 -0
  528. package/styles/slider/_fusionnew-definition.scss +90 -0
  529. package/styles/slider/_highcontrast-definition.scss +145 -0
  530. package/styles/slider/_highcontrast-light-definition.scss +149 -0
  531. package/styles/slider/_icons.scss +1 -0
  532. package/styles/slider/_layout.scss +2489 -0
  533. package/styles/slider/_material-dark-definition.scss +159 -0
  534. package/styles/slider/_material-definition.scss +154 -0
  535. package/styles/slider/_material3-dark-definition.scss +1 -0
  536. package/styles/slider/_material3-definition.scss +97 -0
  537. package/styles/slider/_tailwind-dark-definition.scss +1 -0
  538. package/styles/slider/_tailwind-definition.scss +84 -0
  539. package/styles/slider/_theme.scss +249 -0
  540. package/styles/slider/bootstrap-dark.css +492 -1
  541. package/styles/slider/bootstrap-dark.scss +5 -1
  542. package/styles/slider/bootstrap.css +492 -1
  543. package/styles/slider/bootstrap.scss +5 -1
  544. package/styles/slider/bootstrap4.css +564 -1
  545. package/styles/slider/bootstrap4.scss +5 -1
  546. package/styles/slider/bootstrap5-dark.css +629 -1
  547. package/styles/slider/bootstrap5-dark.scss +5 -1
  548. package/styles/slider/bootstrap5.css +629 -1
  549. package/styles/slider/bootstrap5.scss +5 -1
  550. package/styles/slider/fabric-dark.css +504 -1
  551. package/styles/slider/fabric-dark.scss +5 -1
  552. package/styles/slider/fabric.css +504 -1
  553. package/styles/slider/fabric.scss +5 -1
  554. package/styles/slider/fluent-dark.css +532 -1
  555. package/styles/slider/fluent-dark.scss +5 -1
  556. package/styles/slider/fluent.css +532 -1
  557. package/styles/slider/fluent.scss +5 -1
  558. package/styles/slider/highcontrast-light.css +547 -1
  559. package/styles/slider/highcontrast-light.scss +5 -1
  560. package/styles/slider/highcontrast.css +547 -1
  561. package/styles/slider/highcontrast.scss +5 -1
  562. package/styles/slider/material-dark.css +654 -1
  563. package/styles/slider/material-dark.scss +5 -1
  564. package/styles/slider/material.css +654 -1
  565. package/styles/slider/material.scss +5 -1
  566. package/styles/slider/material3-dark.css +776 -1
  567. package/styles/slider/material3-dark.scss +5 -1
  568. package/styles/slider/material3.css +832 -1
  569. package/styles/slider/material3.scss +5 -1
  570. package/styles/slider/tailwind-dark.css +628 -1
  571. package/styles/slider/tailwind-dark.scss +5 -1
  572. package/styles/slider/tailwind.css +628 -1
  573. package/styles/slider/tailwind.scss +5 -1
  574. package/styles/tailwind-dark.css +7470 -1
  575. package/styles/tailwind.css +7470 -1
  576. package/styles/textbox/_all.scss +1 -0
  577. package/styles/textbox/_bootstrap-dark-definition.scss +4 -0
  578. package/styles/textbox/_bootstrap-definition.scss +4 -0
  579. package/styles/textbox/_bootstrap4-definition.scss +4 -0
  580. package/styles/textbox/_bootstrap5-dark-definition.scss +1 -0
  581. package/styles/textbox/_bootstrap5-definition.scss +4 -0
  582. package/styles/textbox/_fabric-dark-definition.scss +4 -0
  583. package/styles/textbox/_fabric-definition.scss +4 -0
  584. package/styles/textbox/_fluent-dark-definition.scss +1 -0
  585. package/styles/textbox/_fluent-definition.scss +4 -0
  586. package/styles/textbox/_fusionnew-definition.scss +4 -0
  587. package/styles/textbox/_highcontrast-definition.scss +4 -0
  588. package/styles/textbox/_highcontrast-light-definition.scss +4 -0
  589. package/styles/textbox/_layout.scss +37 -0
  590. package/styles/textbox/_material-dark-definition.scss +4 -0
  591. package/styles/textbox/_material-definition.scss +4 -0
  592. package/styles/textbox/_material3-dark-definition.scss +1 -0
  593. package/styles/textbox/_material3-definition.scss +4 -0
  594. package/styles/textbox/_tailwind-dark-definition.scss +1 -0
  595. package/styles/textbox/_tailwind-definition.scss +4 -0
  596. package/styles/textbox/_theme.scss +1 -0
  597. package/styles/textbox/bootstrap-dark.css +2 -1
  598. package/styles/textbox/bootstrap-dark.scss +4 -1
  599. package/styles/textbox/bootstrap.css +2 -1
  600. package/styles/textbox/bootstrap.scss +4 -1
  601. package/styles/textbox/bootstrap4.css +2 -1
  602. package/styles/textbox/bootstrap4.scss +4 -1
  603. package/styles/textbox/bootstrap5-dark.css +2 -1
  604. package/styles/textbox/bootstrap5-dark.scss +4 -1
  605. package/styles/textbox/bootstrap5.css +2 -1
  606. package/styles/textbox/bootstrap5.scss +4 -1
  607. package/styles/textbox/fabric-dark.css +2 -1
  608. package/styles/textbox/fabric-dark.scss +4 -1
  609. package/styles/textbox/fabric.css +2 -1
  610. package/styles/textbox/fabric.scss +4 -1
  611. package/styles/textbox/fluent-dark.css +2 -1
  612. package/styles/textbox/fluent-dark.scss +4 -1
  613. package/styles/textbox/fluent.css +2 -1
  614. package/styles/textbox/fluent.scss +4 -1
  615. package/styles/textbox/highcontrast-light.css +2 -1
  616. package/styles/textbox/highcontrast-light.scss +4 -1
  617. package/styles/textbox/highcontrast.css +2 -1
  618. package/styles/textbox/highcontrast.scss +4 -1
  619. package/styles/textbox/material-dark.css +8 -1
  620. package/styles/textbox/material-dark.scss +4 -1
  621. package/styles/textbox/material.css +16 -1
  622. package/styles/textbox/material.scss +4 -1
  623. package/styles/textbox/material3-dark.css +71 -1
  624. package/styles/textbox/material3-dark.scss +4 -1
  625. package/styles/textbox/material3.css +127 -1
  626. package/styles/textbox/material3.scss +4 -1
  627. package/styles/textbox/tailwind-dark.css +2 -1
  628. package/styles/textbox/tailwind-dark.scss +4 -1
  629. package/styles/textbox/tailwind.css +2 -1
  630. package/styles/textbox/tailwind.scss +4 -1
  631. package/styles/uploader/_all.scss +2 -0
  632. package/styles/uploader/_bootstrap-dark-definition.scss +213 -0
  633. package/styles/uploader/_bootstrap-definition.scss +208 -0
  634. package/styles/uploader/_bootstrap4-definition.scss +211 -0
  635. package/styles/uploader/_bootstrap5-dark-definition.scss +1 -0
  636. package/styles/uploader/_bootstrap5-definition.scss +216 -0
  637. package/styles/uploader/_definition.scss +142 -0
  638. package/styles/uploader/_fabric-dark-definition.scss +216 -0
  639. package/styles/uploader/_fabric-definition.scss +210 -0
  640. package/styles/uploader/_fluent-dark-definition.scss +1 -0
  641. package/styles/uploader/_fluent-definition.scss +234 -0
  642. package/styles/uploader/_fusionnew-definition.scss +216 -0
  643. package/styles/uploader/_highcontrast-definition.scss +211 -0
  644. package/styles/uploader/_highcontrast-light-definition.scss +219 -0
  645. package/styles/uploader/_layout.scss +989 -0
  646. package/styles/uploader/_material-dark-definition.scss +217 -0
  647. package/styles/uploader/_material-definition.scss +214 -0
  648. package/styles/uploader/_material3-dark-definition.scss +1 -0
  649. package/styles/uploader/_material3-definition.scss +215 -0
  650. package/styles/uploader/_tailwind-dark-definition.scss +1 -0
  651. package/styles/uploader/_tailwind-definition.scss +232 -0
  652. package/styles/uploader/_theme.scss +146 -0
  653. package/styles/uploader/bootstrap-dark.css +800 -1
  654. package/styles/uploader/bootstrap-dark.scss +6 -1
  655. package/styles/uploader/bootstrap.css +800 -1
  656. package/styles/uploader/bootstrap.scss +6 -1
  657. package/styles/uploader/bootstrap4.css +800 -1
  658. package/styles/uploader/bootstrap4.scss +6 -1
  659. package/styles/uploader/bootstrap5-dark.css +806 -1
  660. package/styles/uploader/bootstrap5-dark.scss +6 -1
  661. package/styles/uploader/bootstrap5.css +806 -1
  662. package/styles/uploader/bootstrap5.scss +6 -1
  663. package/styles/uploader/fabric-dark.css +800 -1
  664. package/styles/uploader/fabric-dark.scss +6 -1
  665. package/styles/uploader/fabric.css +800 -1
  666. package/styles/uploader/fabric.scss +6 -1
  667. package/styles/uploader/fluent-dark.css +852 -1
  668. package/styles/uploader/fluent-dark.scss +6 -1
  669. package/styles/uploader/fluent.css +852 -1
  670. package/styles/uploader/fluent.scss +6 -1
  671. package/styles/uploader/highcontrast-light.css +800 -1
  672. package/styles/uploader/highcontrast-light.scss +6 -1
  673. package/styles/uploader/highcontrast.css +800 -1
  674. package/styles/uploader/highcontrast.scss +6 -1
  675. package/styles/uploader/icons/_bootstrap-dark.scss +34 -0
  676. package/styles/uploader/icons/_bootstrap.scss +34 -0
  677. package/styles/uploader/icons/_bootstrap4.scss +34 -0
  678. package/styles/uploader/icons/_bootstrap5-dark.scss +1 -0
  679. package/styles/uploader/icons/_bootstrap5.scss +34 -0
  680. package/styles/uploader/icons/_fabric-dark.scss +34 -0
  681. package/styles/uploader/icons/_fabric.scss +34 -0
  682. package/styles/uploader/icons/_fluent-dark.scss +1 -0
  683. package/styles/uploader/icons/_fluent.scss +34 -0
  684. package/styles/uploader/icons/_fusionnew.scss +34 -0
  685. package/styles/uploader/icons/_highcontrast-light.scss +34 -0
  686. package/styles/uploader/icons/_highcontrast.scss +34 -0
  687. package/styles/uploader/icons/_material-dark.scss +34 -0
  688. package/styles/uploader/icons/_material.scss +34 -0
  689. package/styles/uploader/icons/_material3-dark.scss +1 -0
  690. package/styles/uploader/icons/_material3.scss +34 -0
  691. package/styles/uploader/icons/_tailwind-dark.scss +1 -0
  692. package/styles/uploader/icons/_tailwind.scss +34 -0
  693. package/styles/uploader/material-dark.css +800 -1
  694. package/styles/uploader/material-dark.scss +6 -1
  695. package/styles/uploader/material.css +804 -1
  696. package/styles/uploader/material.scss +6 -1
  697. package/styles/uploader/material3-dark.css +860 -1
  698. package/styles/uploader/material3-dark.scss +6 -1
  699. package/styles/uploader/material3.css +916 -1
  700. package/styles/uploader/material3.scss +6 -1
  701. package/styles/uploader/tailwind-dark.css +834 -1
  702. package/styles/uploader/tailwind-dark.scss +6 -1
  703. package/styles/uploader/tailwind.css +834 -1
  704. package/styles/uploader/tailwind.scss +6 -1
  705. package/syncfusion-ej2-angular-inputs.d.ts +5 -0
  706. package/@syncfusion/ej2-angular-inputs.es5.js +0 -1791
  707. package/@syncfusion/ej2-angular-inputs.es5.js.map +0 -1
  708. package/@syncfusion/ej2-angular-inputs.js +0 -1689
  709. package/@syncfusion/ej2-angular-inputs.js.map +0 -1
  710. package/CHANGELOG.md +0 -1459
  711. package/dist/ej2-angular-inputs.umd.js +0 -1880
  712. package/dist/ej2-angular-inputs.umd.js.map +0 -1
  713. package/dist/ej2-angular-inputs.umd.min.js +0 -11
  714. package/dist/ej2-angular-inputs.umd.min.js.map +0 -1
  715. package/ej2-angular-inputs.d.ts +0 -12
  716. package/ej2-angular-inputs.metadata.json +0 -1
  717. package/postinstall/tagchange.js +0 -18
@@ -1 +1,4588 @@
1
- @import '@syncfusion/ej2-inputs/styles/input/tailwind.css';
1
+ /* stylelint-disable property-no-vendor-prefix */
2
+ .e-float-input .e-clear-icon::before,
3
+ .e-float-input.e-control-wrapper .e-clear-icon::before {
4
+ content: "\e7e7";
5
+ font-family: "e-icons";
6
+ }
7
+
8
+ .e-input-group .e-clear-icon::before,
9
+ .e-input-group.e-control-wrapper .e-clear-icon::before {
10
+ content: "\e7e7";
11
+ font-family: "e-icons";
12
+ }
13
+
14
+ /*! input layout */
15
+ .e-input-group,
16
+ .e-input-group.e-control-wrapper {
17
+ display: table;
18
+ line-height: 1.4;
19
+ margin-bottom: 0;
20
+ }
21
+
22
+ input.e-input,
23
+ .e-input-group input.e-input,
24
+ .e-input-group.e-control-wrapper input.e-input,
25
+ textarea.e-input,
26
+ .e-input-group textarea.e-input,
27
+ .e-input-group.e-control-wrapper textarea.e-input {
28
+ border: 0 solid;
29
+ border-width: 1px;
30
+ height: auto;
31
+ line-height: inherit;
32
+ margin: 0;
33
+ margin-bottom: 0;
34
+ outline: none;
35
+ padding: 4px 0 4px 12px;
36
+ text-indent: 12px;
37
+ width: 100%;
38
+ }
39
+
40
+ input.e-input,
41
+ textarea.e-input,
42
+ .e-input-group,
43
+ .e-input-group.e-control-wrapper {
44
+ font-family: "Inter";
45
+ font-size: 14px;
46
+ font-weight: normal;
47
+ }
48
+
49
+ .e-input-group.e-disabled,
50
+ .e-input-group.e-control-wrapper.e-disabled {
51
+ font-family: "Inter";
52
+ font-size: 14px;
53
+ font-weight: normal;
54
+ }
55
+
56
+ .e-input-group input.e-input,
57
+ .e-input-group.e-control-wrapper input.e-input,
58
+ .e-input-group textarea.e-input,
59
+ .e-input-group.e-control-wrapper textarea.e-input {
60
+ font: inherit;
61
+ }
62
+
63
+ input.e-input,
64
+ .e-input-group input.e-input,
65
+ .e-input-group input,
66
+ .e-input-group.e-control-wrapper input.e-input,
67
+ .e-input-group.e-control-wrapper input,
68
+ .e-float-input input,
69
+ .e-float-input.e-input-group input,
70
+ .e-float-input.e-control-wrapper input,
71
+ .e-float-input.e-control-wrapper.e-input-group input,
72
+ input.e-input:focus,
73
+ .e-input-group input.e-input:focus,
74
+ .e-input-group input:focus,
75
+ .e-input-group.e-control-wrapper input.e-input:focus,
76
+ .e-input-group.e-control-wrapper input:focus,
77
+ .e-float-input input:focus,
78
+ .e-float-input.e-input-group input:focus,
79
+ .e-float-input.e-control-wrapper input:focus,
80
+ .e-float-input.e-control-wrapper.e-input-group input:focus {
81
+ overflow: hidden;
82
+ text-overflow: ellipsis;
83
+ white-space: nowrap;
84
+ }
85
+
86
+ .e-input-group.e-input-focus input.e-input,
87
+ .e-input-group.e-input-focus input,
88
+ .e-input-group.e-control-wrapper.e-input-focus input.e-input,
89
+ .e-input-group.e-control-wrapper.e-input-focus input,
90
+ .e-float-input.e-input-focus input,
91
+ .e-float-input.e-input-group.e-input-focus input,
92
+ .e-float-input.e-control-wrapper.e-input-focus input,
93
+ .e-float-input.e-control-wrapper.e-input-group.e-input-focus input {
94
+ overflow: hidden;
95
+ text-overflow: ellipsis;
96
+ white-space: nowrap;
97
+ }
98
+
99
+ input.e-input,
100
+ .e-input-group input.e-input,
101
+ .e-input-group input,
102
+ .e-input-group.e-control-wrapper input.e-input,
103
+ .e-input-group.e-control-wrapper input,
104
+ .e-float-input input,
105
+ .e-float-input.e-input-group input,
106
+ .e-float-input.e-control-wrapper input,
107
+ .e-float-input.e-control-wrapper.e-input-group input,
108
+ .e-input-group,
109
+ .e-input-group.e-control-wrapper,
110
+ .e-float-input,
111
+ .e-float-input.e-control-wrapper {
112
+ border-radius: 4px;
113
+ }
114
+
115
+ .e-input.e-small,
116
+ .e-input-group.e-small,
117
+ .e-input-group.e-control-wrapper.e-small,
118
+ .e-input-group.e-small .e-input,
119
+ .e-input-group.e-small input,
120
+ .e-input-group.e-control-wrapper.e-small .e-input,
121
+ .e-input-group.e-control-wrapper.e-small input,
122
+ .e-float-input.e-small input,
123
+ .e-float-input.e-input-group.e-small input,
124
+ .e-float-input.e-control-wrapper.e-small input,
125
+ .e-float-input.e-control-wrapper.e-input-group.e-small input,
126
+ .e-float-input.e-small,
127
+ .e-float-input.e-control-wrapper.e-small,
128
+ .e-small .e-input-group,
129
+ .e-small .e-input-group.e-control-wrapper,
130
+ .e-small .e-input-group .e-input,
131
+ .e-small .e-input-group input,
132
+ .e-small .e-input-group.e-control-wrapper .e-input,
133
+ .e-small .e-input-group.e-control-wrapper input,
134
+ .e-small .e-float-input input,
135
+ .e-small .e-float-input.e-input-group input,
136
+ .e-small .e-float-input.e-control-wrapper input,
137
+ .e-small .e-float-input.e-control-wrapper.e-input-group input,
138
+ .e-small .e-float-input,
139
+ .e-small .e-float-input.e-control-wrapper {
140
+ border-radius: 2px;
141
+ }
142
+
143
+ .e-input:focus {
144
+ border-width: 1px;
145
+ padding-bottom: 4px;
146
+ }
147
+
148
+ .e-input.e-small:focus {
149
+ border-width: 1px;
150
+ padding-bottom: 4px;
151
+ }
152
+
153
+ .e-input.e-bigger:focus,
154
+ .e-bigger .e-input:focus {
155
+ padding-bottom: 7px;
156
+ }
157
+
158
+ .e-input.e-small.e-bigger:focus,
159
+ .e-bigger .e-input.e-small:focus {
160
+ padding-bottom: 6px;
161
+ }
162
+
163
+ .e-input-group input.e-input:focus,
164
+ .e-input-group.e-control-wrapper input.e-input:focus,
165
+ .e-input-group textarea.e-input:focus,
166
+ .e-input-group.e-control-wrapper textarea.e-input:focus,
167
+ .e-input-group.e-input-focus input.e-input,
168
+ .e-input-group.e-control-wrapper.e-input-focus input.e-input {
169
+ padding: 4px 0 4px 12px;
170
+ }
171
+
172
+ .e-input-group textarea.e-input:focus,
173
+ .e-input-group.e-control-wrapper textarea.e-input:focus {
174
+ padding: 4px 8px 4px 12px;
175
+ }
176
+
177
+ input.e-input.e-bigger,
178
+ textarea.e-input.e-bigger,
179
+ .e-bigger input.e-input,
180
+ .e-bigger textarea.e-input,
181
+ .e-input-group.e-bigger,
182
+ .e-bigger .e-input-group,
183
+ .e-input-group.e-control-wrapper.e-bigger,
184
+ .e-bigger .e-input-group.e-control-wrapper {
185
+ border-radius: 6px;
186
+ font-size: 16px;
187
+ }
188
+
189
+ .e-input-group.e-bigger .e-input,
190
+ .e-input-group.e-bigger input,
191
+ .e-input-group.e-control-wrapper.e-bigger .e-input,
192
+ .e-input-group.e-control-wrapper.e-bigger input,
193
+ .e-float-input.e-bigger input,
194
+ .e-float-input.e-input-group.e-bigger input,
195
+ .e-float-input.e-control-wrapper.e-bigger input,
196
+ .e-float-input.e-control-wrapper.e-input-group.e-bigger input,
197
+ .e-float-input.e-bigger,
198
+ .e-float-input.e-control-wrapper.e-bigger,
199
+ .e-bigger .e-input-group .e-input,
200
+ .e-bigger .e-input-group input,
201
+ .e-bigger .e-input-group.e-control-wrapper .e-input,
202
+ .e-bigger .e-input-group.e-control-wrapper input,
203
+ .e-bigger .e-float-input input,
204
+ .e-bigger .e-float-input.e-input-group input,
205
+ .e-bigger .e-float-input.e-control-wrapper input,
206
+ .e-bigger .e-float-input.e-control-wrapper.e-input-group input,
207
+ .e-bigger .e-float-input,
208
+ .e-bigger .e-float-input.e-control-wrapper {
209
+ border-radius: 6px;
210
+ }
211
+
212
+ input.e-input.e-bigger.e-small,
213
+ textarea.e-input.e-bigger.e-small,
214
+ .e-bigger.e-small input.e-input,
215
+ .e-bigger.e-small textarea.e-input,
216
+ .e-input-group.e-bigger.e-small,
217
+ .e-bigger.e-small .e-input-group,
218
+ .e-bigger.e-small .e-input-group.e-control-wrapper {
219
+ border-radius: 4px;
220
+ }
221
+
222
+ .e-input-group.e-bigger.e-small .e-input,
223
+ .e-input-group.e-bigger.e-small input,
224
+ .e-input-group.e-control-wrapper.e-bigger.e-small .e-input,
225
+ .e-input-group.e-control-wrapper.e-bigger.e-small input,
226
+ .e-float-input.e-bigger.e-small input,
227
+ .e-float-input.e-input-group.e-bigger.e-small input,
228
+ .e-float-input.e-control-wrapper.e-bigger.e-small input,
229
+ .e-float-input.e-control-wrapper.e-input-group.e-bigger.e-small input,
230
+ .e-float-input.e-bigger.e-small,
231
+ .e-float-input.e-control-wrapper.e-bigger.e-small,
232
+ .e-bigger.e-small .e-input-group .e-input,
233
+ .e-bigger.e-small .e-input-group input,
234
+ .e-bigger.e-small .e-input-group.e-control-wrapper .e-input,
235
+ .e-bigger.e-small .e-input-group.e-control-wrapper input,
236
+ .e-bigger.e-small .e-float-input input,
237
+ .e-bigger.e-small .e-float-input.e-input-group input,
238
+ .e-bigger.e-small .e-float-input.e-control-wrapper input,
239
+ .e-bigger.e-small .e-float-input.e-control-wrapper.e-input-group input,
240
+ .e-bigger.e-small .e-float-input,
241
+ .e-bigger.e-small .e-float-input.e-control-wrapper {
242
+ border-radius: 4px;
243
+ }
244
+
245
+ .e-input-group.e-bigger .e-input,
246
+ .e-input-group.e-bigger.e-control-wrapper .e-input,
247
+ .e-bigger .e-input-group .e-input,
248
+ .e-bigger .e-input-group.e-control-wrapper .e-input {
249
+ font: inherit;
250
+ }
251
+
252
+ input.e-input.e-bigger,
253
+ textarea.e-input.e-bigger,
254
+ .e-input-group.e-bigger .e-input,
255
+ .e-input-group.e-bigger.e-control-wrapper .e-input,
256
+ .e-bigger input.e-input,
257
+ .e-bigger textarea.e-input,
258
+ .e-bigger .e-input-group .e-input,
259
+ .e-bigger .e-input-group.e-control-wrapper .e-input {
260
+ line-height: inherit;
261
+ margin-bottom: 0;
262
+ padding: 7px 0 7px 16px;
263
+ }
264
+
265
+ .e-input-group.e-bigger .e-input:focus,
266
+ .e-bigger .e-input-group .e-input:focus,
267
+ .e-input-group.e-control-wrapper.e-bigger .e-input:focus,
268
+ .e-bigger .e-input-group.e-control-wrapper .e-input:focus,
269
+ .e-input-group.e-bigger.e-input-focus .e-input,
270
+ .e-bigger .e-input-group.e-input-focus .e-input,
271
+ .e-input-group.e-control-wrapper.e-bigger.e-input-focus .e-input,
272
+ .e-bigger .e-input-group.e-control-wrapper.e-input-focus .e-input {
273
+ padding: 7px 0 7px 16px;
274
+ }
275
+
276
+ .e-input-group .e-input-group-icon,
277
+ .e-input-group.e-control-wrapper .e-input-group-icon {
278
+ -ms-flex-align: center;
279
+ align-items: center;
280
+ border: 0 solid;
281
+ border-width: 0;
282
+ box-sizing: content-box;
283
+ cursor: pointer;
284
+ -ms-flex-direction: column;
285
+ flex-direction: column;
286
+ font-size: 18px;
287
+ -ms-flex-pack: center;
288
+ justify-content: center;
289
+ line-height: 1;
290
+ min-height: 18px;
291
+ min-width: 20px;
292
+ padding: 5px 8px 5px 4px;
293
+ text-align: center;
294
+ }
295
+
296
+ /* stylelint-disable property-no-vendor-prefix */
297
+ .e-input-group .e-input-group-icon:first-child,
298
+ .e-input-group.e-control-wrapper .e-input-group-icon:first-child {
299
+ border-left-width: 0;
300
+ }
301
+
302
+ .e-input-group .e-input-group-icon:last-child,
303
+ .e-input-group.e-control-wrapper .e-input-group-icon:last-child {
304
+ border-bottom-right-radius: 3px;
305
+ border-top-right-radius: 3px;
306
+ }
307
+
308
+ .e-input-group .e-input-group-icon:first-child,
309
+ .e-input-group.e-control-wrapper .e-input-group-icon:first-child {
310
+ border-bottom-left-radius: 3px;
311
+ border-top-left-radius: 3px;
312
+ }
313
+
314
+ .e-input-group.e-rtl .e-input-group-icon:last-child,
315
+ .e-input-group.e-control-wrapper.e-rtl .e-input-group-icon:last-child,
316
+ .e-rtl .e-input-group .e-input-group-icon:last-child,
317
+ .e-rtl .e-input-group.e-control-wrapper .e-input-group-icon:last-child {
318
+ border-bottom-left-radius: 3px;
319
+ border-bottom-right-radius: 0;
320
+ border-top-left-radius: 3px;
321
+ border-top-right-radius: 0;
322
+ }
323
+
324
+ .e-input-group.e-bigger .e-input-group-icon,
325
+ .e-input-group .e-input-group-icon.e-bigger,
326
+ .e-bigger .e-input-group .e-input-group-icon,
327
+ .e-input-group.e-control-wrapper.e-bigger .e-input-group-icon,
328
+ .e-input-group.e-control-wrapper .e-input-group-icon.e-bigger,
329
+ .e-bigger .e-input-group.e-control-wrapper .e-input-group-icon {
330
+ min-height: 18px;
331
+ min-width: 20px;
332
+ }
333
+
334
+ .e-input-group.e-bigger .e-input-group-icon,
335
+ .e-input-group .e-input-group-icon.e-bigger,
336
+ .e-bigger .e-input-group .e-input-group-icon,
337
+ .e-input-group.e-control-wrapper.e-bigger .e-input-group-icon,
338
+ .e-input-group.e-control-wrapper .e-input-group-icon.e-bigger,
339
+ .e-bigger .e-input-group.e-control-wrapper .e-input-group-icon {
340
+ font-size: 22px;
341
+ padding: 7px 12px 7px 6px;
342
+ }
343
+
344
+ .e-input[disabled],
345
+ .e-input-group .e-input[disabled],
346
+ .e-input-group.e-control-wrapper .e-input[disabled],
347
+ .e-input-group.e-disabled,
348
+ .e-input-group.e-disabled input,
349
+ .e-input-group.e-disabled input.e-input,
350
+ .e-input-group.e-disabled textarea,
351
+ .e-input-group.e-disabled textarea.e-input,
352
+ .e-input-group.e-control-wrapper.e-disabled,
353
+ .e-input-group.e-control-wrapper.e-disabled input,
354
+ .e-input-group.e-control-wrapper.e-disabled input.e-input,
355
+ .e-input-group.e-control-wrapper.e-disabled textarea,
356
+ .e-input-group.e-control-wrapper.e-disabled textarea.e-input,
357
+ .e-float-input.e-disabled input,
358
+ .e-float-input.e-disabled textarea,
359
+ .e-float-input input[disabled],
360
+ .e-float-input input.e-disabled,
361
+ .e-float-input textarea[disabled],
362
+ .e-float-input textarea.e-disabled,
363
+ .e-float-input.e-control-wrapper.e-disabled input,
364
+ .e-float-input.e-control-wrapper.e-disabled textarea,
365
+ .e-float-input.e-control-wrapper input[disabled],
366
+ .e-float-input.e-control-wrapper input.e-disabled,
367
+ .e-float-input.e-control-wrapper textarea[disabled],
368
+ .e-float-input.e-control-wrapper textarea.e-disabled,
369
+ .e-input-group.e-disabled span,
370
+ .e-input-group.e-control-wrapper.e-disabled span {
371
+ cursor: not-allowed;
372
+ }
373
+
374
+ .e-input[disabled],
375
+ .e-input-group.e-disabled,
376
+ .e-input-group.e-control-wrapper.e-disabled,
377
+ .e-float-input input[disabled],
378
+ .e-float-input input.e-disabled,
379
+ .e-float-input.e-control-wrapper input[disabled],
380
+ .e-float-input.e-control-wrapper input.e-disabled {
381
+ border-color: #9ca3af;
382
+ border-style: solid;
383
+ }
384
+
385
+ .e-input-group.e-disabled,
386
+ .e-input-group.e-control-wrapper.e-disabled {
387
+ border-bottom-style: solid;
388
+ border-width: 1px;
389
+ }
390
+
391
+ .e-input[disabled],
392
+ .e-input-group.e-disabled,
393
+ .e-input-group.e-control-wrapper.e-disabled,
394
+ .e-float-input.e-disabled,
395
+ .e-float-input input[disabled],
396
+ .e-float-input input.e-disabled,
397
+ .e-float-input.e-disabled input,
398
+ .e-float-input.e-control-wrapper.e-disabled,
399
+ .e-float-input.e-control-wrapper input[disabled],
400
+ .e-float-input.e-control-wrapper input.e-disabled,
401
+ .e-float-input.e-control-wrapper.e-disabled input {
402
+ filter: alpha(opacity=100);
403
+ opacity: 1;
404
+ }
405
+
406
+ .e-input.e-rtl,
407
+ .e-input-group.e-rtl,
408
+ .e-input-group.e-control-wrapper.e-rtl {
409
+ direction: rtl;
410
+ }
411
+
412
+ .e-input.e-corner {
413
+ border-radius: 4px;
414
+ }
415
+
416
+ .e-input-group,
417
+ .e-input-group.e-control-wrapper {
418
+ display: -ms-inline-flexbox;
419
+ display: inline-flex;
420
+ vertical-align: middle;
421
+ }
422
+
423
+ .e-float-input:not(.e-input-group),
424
+ .e-float-input.e-control-wrapper:not(.e-input-group) {
425
+ display: inline-block;
426
+ }
427
+
428
+ .e-input-group .e-input-group-icon,
429
+ .e-input-group.e-control-wrapper .e-input-group-icon {
430
+ display: -ms-flexbox;
431
+ display: flex;
432
+ }
433
+
434
+ .e-input-group .e-input-group-icon,
435
+ .e-input-group.e-control-wrapper .e-input-group-icon {
436
+ white-space: nowrap;
437
+ }
438
+
439
+ .e-input-group .e-input-group-icon:not(:last-child),
440
+ .e-input-group.e-control-wrapper .e-input-group-icon:not(:last-child) {
441
+ border-right-width: 0;
442
+ }
443
+
444
+ .e-input + .e-input-group-icon,
445
+ .e-input-group .e-input + .e-input-group-icon,
446
+ .e-input-group.e-control-wrapper .e-input + .e-input-group-icon {
447
+ border-left-width: 0;
448
+ }
449
+
450
+ .e-input-group.e-corner .e-input:first-child,
451
+ .e-input-group.e-corner .e-input-group-icon:first-child,
452
+ .e-input-group.e-control-wrapper.e-corner .e-input:first-child,
453
+ .e-input-group.e-control-wrapper.e-corner .e-input-group-icon:first-child {
454
+ border-bottom-left-radius: 4px;
455
+ border-top-left-radius: 4px;
456
+ }
457
+
458
+ .e-input-group.e-corner .e-input:last-child,
459
+ .e-input-group.e-corner .e-input-group-icon:last-child,
460
+ .e-input-group.e-control-wrapper.e-corner .e-input:last-child,
461
+ .e-input-group.e-control-wrapper.e-corner .e-input-group-icon:last-child {
462
+ border-bottom-right-radius: 4px;
463
+ border-top-right-radius: 4px;
464
+ }
465
+
466
+ .e-input-group.e-rtl .e-input-group-icon:first-child,
467
+ .e-input-group.e-control-wrapper.e-rtl .e-input-group-icon:first-child {
468
+ border-left-width: 0;
469
+ border-right-width: 1px;
470
+ }
471
+
472
+ .e-input-group.e-rtl .e-input-group-icon + .e-input,
473
+ .e-input-group.e-control-wrapper.e-rtl .e-input-group-icon + .e-input {
474
+ border-right-width: 0;
475
+ }
476
+
477
+ input.e-input.e-small,
478
+ textarea.e-input.e-small,
479
+ .e-small input.e-input,
480
+ .e-small textarea.e-input,
481
+ .e-input-group.e-small,
482
+ .e-small .e-input-group,
483
+ .e-input-group.e-control-wrapper.e-small,
484
+ .e-small .e-input-group.e-control-wrapper,
485
+ .e-input-group.e-small.e-disabled,
486
+ .e-small .e-input-group.e-disabled,
487
+ .e-input-group.e-control-wrapper.e-small.e-disabled,
488
+ .e-small .e-input-group.e-control-wrapper.e-disabled {
489
+ font-size: 12px;
490
+ }
491
+
492
+ .e-input-group.e-small .e-input,
493
+ .e-input-group.e-small.e-control-wrapper .e-input,
494
+ .e-small .e-input-group .e-input,
495
+ .e-small .e-input-group.e-control-wrapper .e-input {
496
+ font: inherit;
497
+ }
498
+
499
+ .e-input.e-small,
500
+ .e-input-group.e-small .e-input,
501
+ .e-input-group.e-control-wrapper.e-small .e-input {
502
+ line-height: inherit;
503
+ padding: 4px 0 4px 8px;
504
+ }
505
+
506
+ .e-input-group.e-small .e-input:focus,
507
+ .e-input-group.e-control-wrapper.e-small .e-input:focus,
508
+ .e-input-group.e-small.e-input-focus .e-input,
509
+ .e-input-group.e-control-wrapper.e-small.e-input-focus .e-input {
510
+ padding: 4px 0 4px 8px;
511
+ }
512
+
513
+ .e-input.e-small.e-bigger,
514
+ .e-input-group.e-small.e-bigger,
515
+ .e-small.e-bigger .e-input-group,
516
+ .e-input-group.e-control-wrapper.e-small.e-bigger,
517
+ .e-small.e-bigger .e-input-group.e-control-wrapper,
518
+ .e-bigger .e-input.e-small,
519
+ .e-small .e-input.e-bigger,
520
+ .e-bigger .e-input-group.e-small,
521
+ .e-bigger .e-input-group.e-control-wrapper.e-small,
522
+ .e-small .e-input-group.e-bigger,
523
+ .e-small .e-input-group.e-control-wrapper.e-bigger {
524
+ font-size: 14px;
525
+ }
526
+
527
+ .e-input-group.e-small.e-bigger.e-disabled,
528
+ .e-small.e-bigger .e-input-group.e-disabled,
529
+ .e-input-group.e-control-wrapper.e-small.e-bigger.e-disabled,
530
+ .e-small.e-bigger .e-input-group.e-control-wrapper.e-disabled,
531
+ .e-bigger .e-input.e-small.e-disabled,
532
+ .e-small .e-input.e-bigger.e-disabled,
533
+ .e-bigger .e-input-group.e-small.e-disabled,
534
+ .e-bigger .e-input-group.e-control-wrapper.e-small.e-disabled,
535
+ .e-small .e-input-group.e-bigger.e-disabled,
536
+ .e-small .e-input-group.e-control-wrapper.e-bigger.e-disabled {
537
+ font-size: 14px;
538
+ }
539
+
540
+ .e-input.e-small.e-bigger,
541
+ .e-bigger .e-input.e-small,
542
+ .e-small .e-input.e-bigger {
543
+ padding: 6px 0 6px 14px;
544
+ }
545
+
546
+ .e-input-group.e-small.e-bigger .e-input,
547
+ .e-input-group.e-small .e-input.e-bigger,
548
+ .e-input-group.e-control-wrapper.e-small.e-bigger .e-input,
549
+ .e-input-group.e-control-wrapper.e-small .e-input.e-bigger,
550
+ .e-bigger .e-input-group.e-small .e-input,
551
+ .e-bigger .e-input-group.e-control-wrapper.e-small .e-input {
552
+ font: inherit;
553
+ padding: 6px 0 6px 14px;
554
+ }
555
+
556
+ .e-input-group.e-small.e-bigger .e-input:focus,
557
+ .e-input-group.e-small .e-input.e-bigger:focus,
558
+ .e-bigger .e-input-group.e-small .e-input:focus,
559
+ .e-input-group.e-control-wrapper.e-small.e-bigger .e-input:focus,
560
+ .e-input-group.e-control-wrapper.e-small .e-input.e-bigger:focus,
561
+ .e-bigger .e-input-group.e-control-wrapper.e-small .e-input:focus,
562
+ .e-input-group.e-small.e-bigger.e-input-focus .e-input,
563
+ .e-input-group.e-small.e-input-focus .e-input.e-bigger,
564
+ .e-bigger .e-input-group.e-small.e-input-focus .e-input,
565
+ .e-input-group.e-control-wrapper.e-small.e-bigger.e-input-focus .e-input,
566
+ .e-input-group.e-control-wrapper.e-small.e-input-focus .e-input.e-bigger,
567
+ .e-bigger .e-input-group.e-control-wrapper.e-small.e-input-focus .e-input {
568
+ padding: 6px 0 6px 14px;
569
+ }
570
+
571
+ .e-input-group.e-small .e-input-group-icon,
572
+ .e-input-group.e-control-wrapper.e-small .e-input-group-icon,
573
+ .e-small .e-input-group .e-input-group-icon,
574
+ .e-small .e-input-group.e-control-wrapper .e-input-group-icon {
575
+ font-size: 16px;
576
+ min-height: 18px;
577
+ min-width: 20px;
578
+ padding: 3px 6px 3px 3px;
579
+ }
580
+
581
+ .e-input-group.e-small.e-bigger .e-input-group-icon,
582
+ .e-input-group.e-small .e-input-group-icon.e-bigger,
583
+ .e-input-group.e-control-wrapper.e-small.e-bigger .e-input-group-icon,
584
+ .e-input-group.e-control-wrapper.e-small .e-input-group-icon.e-bigger,
585
+ .e-small.e-bigger .e-input-group .e-input-group-icon,
586
+ .e-small.e-bigger .e-input-group.e-control-wrapper .e-input-group-icon,
587
+ .e-bigger .e-input-group.e-small .e-input-group-icon,
588
+ .e-bigger .e-input-group.e-control-wrapper.e-small .e-input-group-icon {
589
+ font-size: 20px;
590
+ min-height: 18px;
591
+ min-width: 20px;
592
+ padding: 6px;
593
+ }
594
+
595
+ label.e-float-text,
596
+ .e-float-input label.e-float-text,
597
+ .e-float-input.e-control-wrapper label.e-float-text,
598
+ .e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
599
+ .e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
600
+ font-size: 14px;
601
+ font-style: normal;
602
+ font-weight: normal;
603
+ left: 0;
604
+ overflow: hidden;
605
+ padding-left: 10px;
606
+ pointer-events: none;
607
+ position: absolute;
608
+ text-overflow: ellipsis;
609
+ top: -11px;
610
+ transform: translate3d(0, 16px, 0) scale(1);
611
+ transform-origin: left top;
612
+ transition: 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
613
+ -webkit-user-select: none;
614
+ -ms-user-select: none;
615
+ user-select: none;
616
+ white-space: nowrap;
617
+ width: 100%;
618
+ }
619
+
620
+ label.e-float-text,
621
+ .e-float-input label.e-float-text,
622
+ .e-float-input.e-control-wrapper label.e-float-text,
623
+ .e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
624
+ .e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
625
+ top: -11px;
626
+ }
627
+
628
+ label.e-float-text,
629
+ .e-float-input label.e-float-text,
630
+ .e-float-input.e-control-wrapper label.e-float-text,
631
+ .e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
632
+ .e-float-input.e-bigger:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
633
+ .e-bigger .e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
634
+ .e-float-input.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
635
+ .e-small .e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
636
+ .e-bigger .e-float-input.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
637
+ .e-small .e-float-input.e-bigger:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
638
+ .e-float-input.e-bigger.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
639
+ .e-bigger.e-small .e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
640
+ .e-float-input.e-bigger.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
641
+ .e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
642
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
643
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
644
+ .e-float-input.e-control-wrapper.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
645
+ .e-small .e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
646
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
647
+ .e-small .e-float-input.e-control-wrapper.e-bigger:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
648
+ .e-float-input.e-control-wrapper.e-bigger.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
649
+ .e-bigger.e-small .e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
650
+ .e-float-input.e-control-wrapper.e-bigger.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
651
+ -moz-transform: translate(0%, -50%);
652
+ -ms-transform: translate(0%, -50%);
653
+ -o-transform: translate(0%, -50%);
654
+ -webkit-transform: translate(0%, -50%);
655
+ box-sizing: border-box;
656
+ left: 0%;
657
+ top: 50%;
658
+ transform: translate(0%, -50%);
659
+ -webkit-user-select: none;
660
+ -ms-user-select: none;
661
+ user-select: none;
662
+ width: 100%;
663
+ font-style: normal;
664
+ }
665
+
666
+ .e-float-input.e-bigger label.e-float-text,
667
+ .e-float-input label.e-float-text.e-bigger,
668
+ .e-float-input input.e-bigger ~ label.e-float-text,
669
+ .e-bigger .e-float-input label.e-float-text,
670
+ .e-float-input.e-bigger:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
671
+ .e-bigger .e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
672
+ .e-float-input.e-control-wrapper.e-bigger label.e-float-text,
673
+ .e-float-input.e-control-wrapper label.e-float-text.e-bigger,
674
+ .e-float-input.e-control-wrapper input.e-bigger ~ label.e-float-text,
675
+ .e-bigger .e-float-input.e-control-wrapper label.e-float-text,
676
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
677
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
678
+ font-size: 16px;
679
+ }
680
+
681
+ .e-float-input.e-small label.e-float-text,
682
+ .e-float-input.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
683
+ .e-small .e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
684
+ .e-float-input.e-control-wrapper.e-small label.e-float-text,
685
+ .e-float-input.e-control-wrapper.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
686
+ .e-small .e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
687
+ font-size: 12px;
688
+ }
689
+
690
+ .e-float-input.e-small.e-bigger label.e-float-text,
691
+ .e-bigger .e-float-input.e-small label.e-float-text,
692
+ .e-bigger .e-float-input.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
693
+ .e-small .e-float-input.e-bigger:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
694
+ .e-float-input.e-bigger.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
695
+ .e-bigger.e-small .e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
696
+ .e-float-input.e-bigger.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
697
+ .e-float-input.e-control-wrapper.e-small.e-bigger label.e-float-text,
698
+ .e-bigger .e-float-input.e-control-wrapper.e-small label.e-float-text,
699
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
700
+ .e-small .e-float-input.e-control-wrapper.e-bigger:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
701
+ .e-float-input.e-control-wrapper.e-bigger.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
702
+ .e-bigger.e-small .e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
703
+ .e-float-input.e-control-wrapper.e-bigger.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
704
+ font-size: 12px;
705
+ font-style: normal;
706
+ }
707
+
708
+ .e-float-input input:focus ~ label.e-float-text,
709
+ .e-float-input input:valid ~ label.e-float-text,
710
+ .e-float-input input ~ label.e-label-top.e-float-text,
711
+ .e-float-input input[readonly] ~ label.e-label-top.e-float-text,
712
+ .e-float-input input[disabled] ~ label.e-label-top.e-float-text,
713
+ .e-float-input input label.e-float-text.e-label-top,
714
+ .e-float-input.e-control-wrapper input:focus ~ label.e-float-text,
715
+ .e-float-input.e-control-wrapper input:valid ~ label.e-float-text,
716
+ .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text,
717
+ .e-float-input.e-control-wrapper input[readonly] ~ label.e-label-top.e-float-text,
718
+ .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text,
719
+ .e-float-input.e-control-wrapper input label.e-float-text.e-label-top,
720
+ .e-float-input.e-control-wrapper.e-input-focus input ~ label.e-float-text,
721
+ .e-float-input.e-input-focus input ~ label.e-float-text {
722
+ font-size: 12px;
723
+ font-weight: 500;
724
+ padding-right: 0;
725
+ transform: translate3d(-10px, -35px, 0) scale(1);
726
+ }
727
+
728
+ .e-float-input.e-small input:focus ~ label.e-float-text,
729
+ .e-float-input.e-small input:valid ~ label.e-float-text,
730
+ .e-float-input.e-small input ~ label.e-label-top.e-float-text,
731
+ .e-float-input.e-small input[readonly] ~ label.e-label-top.e-float-text,
732
+ .e-float-input.e-small input[disabled] ~ label.e-label-top.e-float-text,
733
+ .e-float-input.e-small input label.e-float-text.e-label-top,
734
+ .e-small .e-float-input input:focus ~ label.e-float-text,
735
+ .e-small .e-float-input input:valid ~ label.e-float-text,
736
+ .e-small .e-float-input input ~ label.e-label-top.e-float-text,
737
+ .e-small .e-float-input input[readonly] ~ label.e-label-top.e-float-text,
738
+ .e-small .e-float-input input[disabled] ~ label.e-label-top.e-float-text,
739
+ .e-small .e-float-input input label.e-float-text.e-label-top,
740
+ .e-float-input.e-control-wrapper.e-small input:focus ~ label.e-float-text,
741
+ .e-float-input.e-control-wrapper.e-small input:valid ~ label.e-float-text,
742
+ .e-float-input.e-control-wrapper.e-small input ~ label.e-label-top.e-float-text,
743
+ .e-float-input.e-control-wrapper.e-small input[readonly] ~ label.e-label-top.e-float-text,
744
+ .e-float-input.e-control-wrapper.e-small input[disabled] ~ label.e-label-top.e-float-text,
745
+ .e-float-input.e-control-wrapper.e-small input label.e-float-text.e-label-top,
746
+ .e-small .e-float-input.e-control-wrapper input:focus ~ label.e-float-text,
747
+ .e-small .e-float-input.e-control-wrapper input:valid ~ label.e-float-text,
748
+ .e-small .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text,
749
+ .e-small .e-float-input.e-control-wrapper input[readonly] ~ label.e-label-top.e-float-text,
750
+ .e-small .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text,
751
+ .e-small .e-float-input.e-control-wrapper input label.e-float-text.e-label-top,
752
+ .e-float-input.e-bigger.e-input-focus input ~ label.e-float-text,
753
+ .e-bigger .e-float-input.e-input-focus input ~ label.e-float-text,
754
+ .e-float-input.e-control-wrapper.e-bigger.e-input-focus input ~ label.e-float-text,
755
+ .e-bigger .e-float-input.e-control-wrapper.e-input-focus input ~ label.e-float-text {
756
+ font-size: 12px;
757
+ font-weight: 500;
758
+ padding-right: 0;
759
+ transform: translate3d(-10px, -34px, 0) scale(1);
760
+ }
761
+
762
+ .e-float-input.e-bigger input:focus ~ label.e-float-text,
763
+ .e-float-input.e-bigger input:valid ~ label.e-float-text,
764
+ .e-float-input.e-bigger input ~ label.e-label-top.e-float-text,
765
+ .e-float-input.e-bigger input[readonly] ~ label.e-label-top.e-float-text,
766
+ .e-float-input.e-bigger input[disabled] ~ label.e-label-top.e-float-text,
767
+ .e-float-input.e-bigger input label.e-float-text.e-label-top,
768
+ .e-bigger .e-float-input input:focus ~ label.e-float-text,
769
+ .e-bigger .e-float-input input:valid ~ label.e-float-text,
770
+ .e-bigger .e-float-input input ~ label.e-label-top.e-float-text,
771
+ .e-bigger .e-float-input input[readonly] ~ label.e-label-top.e-float-text,
772
+ .e-bigger .e-float-input input[disabled] ~ label.e-label-top.e-float-text,
773
+ .e-bigger .e-float-input input label.e-float-text.e-label-top,
774
+ .e-float-input.e-control-wrapper.e-bigger input:focus ~ label.e-float-text,
775
+ .e-float-input.e-control-wrapper.e-bigger input:valid ~ label.e-float-text,
776
+ .e-float-input.e-control-wrapper.e-bigger input ~ label.e-label-top.e-float-text,
777
+ .e-float-input.e-control-wrapper.e-bigger input[readonly] ~ label.e-label-top.e-float-text,
778
+ .e-float-input.e-control-wrapper.e-bigger input[disabled] ~ label.e-label-top.e-float-text,
779
+ .e-float-input.e-control-wrapper.e-bigger input label.e-float-text.e-label-top,
780
+ .e-bigger .e-float-input.e-control-wrapper input:focus ~ label.e-float-text,
781
+ .e-bigger .e-float-input.e-control-wrapper input:valid ~ label.e-float-text,
782
+ .e-bigger .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text,
783
+ .e-bigger .e-float-input.e-control-wrapper input[readonly] ~ label.e-label-top.e-float-text,
784
+ .e-bigger .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text,
785
+ .e-bigger .e-float-input.e-control-wrapper input label.e-float-text.e-label-top,
786
+ .e-float-input.e-bigger.e-input-focus input ~ label.e-float-text,
787
+ .e-bigger .e-float-input.e-input-focus input ~ label.e-float-text,
788
+ .e-float-input.e-control-wrapper.e-bigger.e-input-focus input ~ label.e-float-text,
789
+ .e-bigger .e-float-input.e-control-wrapper.e-input-focus input ~ label.e-float-text {
790
+ font-weight: 500;
791
+ padding-right: 0;
792
+ transform: translate3d(-10px, -37px, 0) scale(1);
793
+ }
794
+
795
+ .e-float-input.e-bigger.e-small input:focus ~ label.e-float-text,
796
+ .e-float-input.e-bigger.e-small input:valid ~ label.e-float-text,
797
+ .e-float-input.e-bigger.e-small input ~ label.e-label-top.e-float-text,
798
+ .e-float-input.e-bigger.e-small input[readonly] ~ label.e-label-top.e-float-text,
799
+ .e-float-input.e-bigger.e-small input[disabled] ~ label.e-label-top.e-float-text,
800
+ .e-float-input.e-bigger.e-small input label.e-float-text.e-label-top,
801
+ .e-bigger .e-float-input.e-small input:focus ~ label.e-float-text,
802
+ .e-bigger .e-float-input.e-small input:valid ~ label.e-float-text,
803
+ .e-bigger .e-float-input.e-small input ~ label.e-label-top.e-float-text,
804
+ .e-bigger .e-float-input.e-small input[readonly] ~ label.e-label-top.e-float-text,
805
+ .e-bigger .e-float-input.e-small input[disabled] ~ label.e-label-top.e-float-text,
806
+ .e-bigger .e-float-input.e-small input label.e-float-text.e-label-top,
807
+ .e-small .e-float-input.e-bigger input:focus ~ label.e-float-text,
808
+ .e-small .e-float-input.e-bigger input:valid ~ label.e-float-text,
809
+ .e-small .e-float-input.e-bigger input ~ label.e-label-top.e-float-text,
810
+ .e-small .e-float-input.e-bigger input[readonly] ~ label.e-label-top.e-float-text,
811
+ .e-small .e-float-input.e-bigger input[disabled] ~ label.e-label-top.e-float-text,
812
+ .e-small .e-float-input.e-bigger input label.e-float-text.e-label-top,
813
+ .e-float-input.e-control-wrapper.e-bigger.e-small input:focus ~ label.e-float-text,
814
+ .e-float-input.e-control-wrapper.e-bigger.e-small input:valid ~ label.e-float-text,
815
+ .e-float-input.e-control-wrapper.e-bigger.e-small input ~ label.e-label-top.e-float-text,
816
+ .e-float-input.e-control-wrapper.e-bigger.e-small input[readonly] ~ label.e-label-top.e-float-text,
817
+ .e-float-input.e-control-wrapper.e-bigger.e-small input[disabled] ~ label.e-label-top.e-float-text,
818
+ .e-float-input.e-control-wrapper.e-bigger.e-small input label.e-float-text.e-label-top,
819
+ .e-bigger .e-float-input.e-control-wrapper.e-small input:focus ~ label.e-float-text,
820
+ .e-bigger .e-float-input.e-control-wrapper.e-small input:valid ~ label.e-float-text,
821
+ .e-bigger .e-float-input.e-control-wrapper.e-small input ~ label.e-label-top.e-float-text,
822
+ .e-bigger .e-float-input.e-control-wrapper.e-small input[readonly] ~ label.e-label-top.e-float-text,
823
+ .e-bigger .e-float-input.e-control-wrapper.e-small input[disabled] ~ label.e-label-top.e-float-text,
824
+ .e-bigger .e-float-input.e-control-wrapper.e-small input label.e-float-text.e-label-top,
825
+ .e-small .e-float-input.e-control-wrapper.e-bigger input:focus ~ label.e-float-text,
826
+ .e-small .e-float-input.e-control-wrapper.e-bigger input:valid ~ label.e-float-text,
827
+ .e-small .e-float-input.e-control-wrapper.e-bigger input ~ label.e-label-top.e-float-text,
828
+ .e-small .e-float-input.e-control-wrapper.e-bigger input[readonly] ~ label.e-label-top.e-float-text,
829
+ .e-small .e-float-input.e-control-wrapper.e-bigger input[disabled] ~ label.e-label-top.e-float-text,
830
+ .e-small .e-float-input.e-control-wrapper.e-bigger input label.e-float-text.e-label-top,
831
+ .e-float-input.e-bigger.e-small.e-input-focus input ~ label.e-float-text,
832
+ .e-bigger .e-float-input.e-small.e-input-focus input-group-animation ~ label.e-float-text,
833
+ .e-small .e-float-input.e-bigger.e-input-focus input ~ label.e-float-text,
834
+ .e-float-input.e-control-wrapper.e-bigger.e-small.e-input-focus input ~ label.e-float-text,
835
+ .e-bigger .e-float-input.e-control-wrapper.e-small.e-input-focus input ~ label.e-float-text,
836
+ .e-small .e-float-input.e-control-wrapper.e-bigger.e-input-focus input ~ label.e-float-text {
837
+ font-weight: 500;
838
+ padding-right: 0;
839
+ transform: translate3d(-10px, -34px, 0) scale(1);
840
+ }
841
+
842
+ .e-float-input.e-bigger input:focus ~ label.e-float-text,
843
+ .e-float-input.e-bigger input:valid ~ label.e-float-text,
844
+ .e-float-input.e-bigger input ~ label.e-label-top.e-float-text,
845
+ .e-float-input.e-bigger input[readonly] ~ label.e-label-top.e-float-text,
846
+ .e-float-input.e-bigger input[disabled] ~ label.e-label-top.e-float-text,
847
+ .e-bigger .e-float-input input:focus ~ label.e-float-text,
848
+ .e-bigger .e-float-input input:valid ~ label.e-float-text,
849
+ .e-bigger .e-float-input input ~ label.e-label-top.e-float-text,
850
+ .e-bigger .e-float-input input[readonly] ~ label.e-label-top.e-float-text,
851
+ .e-bigger .e-float-input input[disabled] ~ label.e-label-top.e-float-text,
852
+ .e-float-input.e-control-wrapper.e-bigger input:focus ~ label.e-float-text,
853
+ .e-float-input.e-control-wrapper.e-bigger input:valid ~ label.e-float-text,
854
+ .e-float-input.e-control-wrapper.e-bigger input ~ label.e-label-top.e-float-text,
855
+ .e-float-input.e-control-wrapper.e-bigger input[readonly] ~ label.e-label-top.e-float-text,
856
+ .e-float-input.e-control-wrapper.e-bigger input[disabled] ~ label.e-label-top.e-float-text,
857
+ .e-bigger .e-float-input.e-control-wrapper input:focus ~ label.e-float-text,
858
+ .e-bigger .e-float-input.e-control-wrapper input:valid ~ label.e-float-text,
859
+ .e-bigger .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text,
860
+ .e-bigger .e-float-input.e-control-wrapper input[readonly] ~ label.e-label-top.e-float-text,
861
+ .e-bigger .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text,
862
+ .e-float-input.e-bigger.e-input-focus input ~ label.e-float-text,
863
+ .e-bigger .e-float-input.e-input-focus input ~ label.e-float-text,
864
+ .e-float-input.e-control-wrapper.e-bigger.e-input-focus input ~ label.e-float-text,
865
+ .e-bigger .e-float-input.e-control-wrapper.e-input-focus input ~ label.e-float-text {
866
+ font-size: 14px;
867
+ padding-right: 0;
868
+ top: 14px;
869
+ }
870
+
871
+ .e-float-input.e-small input:focus ~ label.e-float-text,
872
+ .e-float-input.e-small input:valid ~ label.e-float-text,
873
+ .e-float-input.e-small input ~ label.e-label-top.e-float-text,
874
+ .e-small .e-float-input input ~ label.e-label-top.e-float-text,
875
+ .e-float-input.e-small input[readonly] ~ label.e-label-top.e-float-text,
876
+ .e-float-input.e-small input[disabled] ~ label.e-label-top.e-float-text,
877
+ .e-float-input.e-control-wrapper.e-small input:focus ~ label.e-float-text,
878
+ .e-float-input.e-control-wrapper.e-small input:valid ~ label.e-float-text,
879
+ .e-float-input.e-control-wrapper.e-small input ~ label.e-label-top.e-float-text,
880
+ .e-small .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text,
881
+ .e-float-input.e-control-wrapper.e-small input[readonly] ~ label.e-label-top.e-float-text,
882
+ .e-float-input.e-control-wrapper.e-small input[disabled] ~ label.e-label-top.e-float-text,
883
+ .e-float-input.e-small.e-input-focus input-group-animation ~ label.e-float-text,
884
+ .e-float-input.e-control-wrapper.e-small.e-input-focus input ~ label.e-float-text {
885
+ font-size: 10px;
886
+ padding-right: 0;
887
+ top: 17px;
888
+ }
889
+
890
+ .e-float-input.e-small.e-bigger input:focus ~ label.e-float-text,
891
+ .e-float-input.e-small.e-bigger input:valid ~ label.e-float-text,
892
+ .e-float-input.e-small.e-bigger input ~ label.e-label-top.e-float-text,
893
+ .e-float-input.e-small.e-bigger input[readonly] ~ label.e-float-text,
894
+ .e-float-input.e-small.e-bigger input[disabled] ~ label.e-float-text,
895
+ .e-bigger .e-float-input.e-small input:focus ~ label.e-float-text,
896
+ .e-bigger .e-float-input.e-small input:valid ~ label.e-float-text,
897
+ .e-bigger .e-float-input.e-small input ~ label.e-label-top.e-float-text,
898
+ .e-bigger .e-float-input.e-small input[readonly] ~ label.e-float-text,
899
+ .e-bigger .e-float-input.e-small input[disabled] ~ label.e-float-text,
900
+ .e-bigger.e-small .e-float-input.e-control-wrapper input:focus ~ label.e-float-text,
901
+ .e-bigger.e-small .e-float-input.e-control-wrapper input:valid ~ label.e-float-text,
902
+ .e-bigger.e-small .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text,
903
+ .e-bigger.e-small .e-float-input.e-control-wrapper input[readonly] ~ label.e-float-text,
904
+ .e-bigger.e-small .e-float-input.e-control-wrapper input[disabled] ~ label.e-float-text,
905
+ .e-float-input.e-control-wrapper.e-small.e-bigger input:focus ~ label.e-float-text,
906
+ .e-float-input.e-control-wrapper.e-small.e-bigger input:valid ~ label.e-float-text,
907
+ .e-float-input.e-control-wrapper.e-small.e-bigger input ~ label.e-label-top.e-float-text,
908
+ .e-float-input.e-control-wrapper.e-small.e-bigger input[readonly] ~ label.e-float-text,
909
+ .e-float-input.e-control-wrapper.e-small.e-bigger input[disabled] ~ label.e-float-text,
910
+ .e-bigger .e-float-input.e-control-wrapper.e-small input:focus ~ label.e-float-text,
911
+ .e-bigger .e-float-input.e-control-wrapper.e-small input:valid ~ label.e-float-text,
912
+ .e-bigger .e-float-input.e-control-wrapper.e-small input ~ label.e-label-top.e-float-text,
913
+ .e-bigger .e-float-input.e-control-wrapper.e-small input[readonly] ~ label.e-float-text,
914
+ .e-bigger .e-float-input.e-control-wrapper.e-small input[disabled] ~ label.e-float-text,
915
+ .e-float-input.e-small.e-bigger.e-input-focus input ~ label.e-float-text,
916
+ .e-bigger .e-float-input.e-small.e-input-focus input ~ label.e-float-text,
917
+ .e-float-input.e-control-wrapper.e-small.e-bigger.e-input-focus input ~ label.e-float-text,
918
+ .e-bigger .e-float-input.e-control-wrapper.e-small.e-input-focus input ~ label.e-float-text {
919
+ font-size: 12px;
920
+ padding-right: 0;
921
+ top: 16px;
922
+ }
923
+
924
+ .e-float-input,
925
+ .e-float-input.e-control-wrapper {
926
+ line-height: 1.4;
927
+ margin-bottom: 0;
928
+ margin-top: 24px;
929
+ padding-top: 0;
930
+ position: relative;
931
+ width: 100%;
932
+ }
933
+
934
+ .e-float-input.e-bigger,
935
+ .e-bigger .e-float-input,
936
+ .e-float-input.e-control-wrapper.e-bigger,
937
+ .e-bigger .e-float-input.e-control-wrapper {
938
+ line-height: 1.5;
939
+ margin-bottom: 0;
940
+ margin-top: 24px;
941
+ padding-top: 0;
942
+ position: relative;
943
+ width: 100%;
944
+ }
945
+
946
+ .e-float-input.e-small,
947
+ .e-float-input.e-control-wrapper.e-small,
948
+ .e-small .e-float-input.e-control-wrapper {
949
+ line-height: 1.35;
950
+ margin-bottom: 0;
951
+ margin-top: 20px;
952
+ padding-top: 0;
953
+ }
954
+
955
+ .e-float-input.e-small.e-bigger,
956
+ .e-bigger.e-small .e-float-input.e-small,
957
+ .e-bigger .e-float-input.e-small,
958
+ .e-small .e-float-input.e-bigger,
959
+ .e-float-input.e-control-wrapper.e-small.e-bigger,
960
+ .e-bigger.e-small .e-float-input.e-control-wrapper.e-small,
961
+ .e-bigger .e-float-input.e-control-wrapper.e-small,
962
+ .e-small .e-float-input.e-control-wrapper.e-bigger {
963
+ line-height: 1.4;
964
+ margin-bottom: 0;
965
+ margin-top: 24px;
966
+ padding-top: 0;
967
+ }
968
+
969
+ .e-input-group.e-bigger,
970
+ .e-bigger .e-input-group,
971
+ .e-input-group.e-control-wrapper.e-bigger,
972
+ .e-bigger .e-input-group.e-control-wrapper {
973
+ line-height: 1.5;
974
+ }
975
+
976
+ .e-input-group.e-small,
977
+ .e-input-group.e-control-wrapper.e-small,
978
+ .e-small .e-input-group,
979
+ .e-small .e-input-group.e-control-wrapper,
980
+ .e-input-group.e-small.e-bigger,
981
+ .e-bigger.e-small .e-input-group.e-small,
982
+ .e-bigger .e-input-group.e-small,
983
+ .e-small .e-input-group.e-bigger,
984
+ .e-input-group.e-control-wrapper.e-small.e-bigger,
985
+ .e-bigger.e-small .e-input-group.e-control-wrapper.e-small,
986
+ .e-bigger .e-input-group.e-control-wrapper.e-small,
987
+ .e-small .e-input-group.e-control-wrapper.e-bigger {
988
+ line-height: normal;
989
+ }
990
+
991
+ .e-float-input.e-no-float-label,
992
+ .e-float-input.e-bigger.e-no-float-label,
993
+ .e-bigger .e-float-input.e-no-float-label,
994
+ .e-float-input.e-small.e-no-float-label,
995
+ .e-small .e-float-input.e-no-float-label,
996
+ .e-float-input.e-small.e-bigger.e-no-float-label,
997
+ .e-bigger .e-float-input.e-small.e-no-float-label,
998
+ .e-small .e-float-input.e-bigger.e-no-float-label,
999
+ .e-float-input.e-control-wrapper.e-no-float-label,
1000
+ .e-float-input.e-control-wrapper.e-bigger.e-no-float-label,
1001
+ .e-bigger .e-float-input.e-control-wrapper.e-no-float-label,
1002
+ .e-float-input.e-control-wrapper.e-small.e-no-float-label,
1003
+ .e-small .e-float-input.e-control-wrapper.e-no-float-label,
1004
+ .e-float-input.e-control-wrapper.e-small.e-bigger.e-no-float-label,
1005
+ .e-bigger .e-float-input.e-control-wrapper.e-small.e-no-float-label,
1006
+ .e-small .e-float-input.e-control-wrapper.e-bigger.e-no-float-label {
1007
+ margin-top: 0;
1008
+ }
1009
+
1010
+ .e-float-input,
1011
+ .e-float-input.e-control-wrapper,
1012
+ .e-float-input.e-disabled,
1013
+ .e-float-input.e-control-wrapper.e-disabled,
1014
+ .e-float-input.e-input-group.e-disabled,
1015
+ .e-float-input.e-input-group.e-control-wrapper.e-disabled {
1016
+ font-family: "Inter";
1017
+ font-size: 14px;
1018
+ font-weight: normal;
1019
+ }
1020
+
1021
+ .e-float-input input,
1022
+ .e-float-input textarea,
1023
+ .e-float-input.e-control-wrapper input,
1024
+ .e-float-input.e-control-wrapper textarea {
1025
+ border: 0 solid;
1026
+ border-width: 1px;
1027
+ display: block;
1028
+ font: inherit;
1029
+ width: 100%;
1030
+ }
1031
+
1032
+ .e-float-input input,
1033
+ .e-float-input.e-control-wrapper input {
1034
+ min-width: 0;
1035
+ padding: 0;
1036
+ }
1037
+
1038
+ .e-float-input input,
1039
+ .e-input-group input,
1040
+ .e-float-input.e-control-wrapper input,
1041
+ .e-input-group.e-control-wrapper input {
1042
+ text-indent: 12px;
1043
+ }
1044
+
1045
+ .e-float-input textarea,
1046
+ .e-input-group textarea,
1047
+ .e-float-input.e-control-wrapper textarea,
1048
+ .e-input-group.e-control-wrapper textarea {
1049
+ text-indent: 12px;
1050
+ }
1051
+
1052
+ .e-float-input.e-bigger,
1053
+ .e-bigger .e-float-input,
1054
+ .e-float-input.e-control-wrapper.e-bigger,
1055
+ .e-bigger .e-float-input.e-control-wrapper {
1056
+ font-size: 16px;
1057
+ }
1058
+
1059
+ .e-float-input.e-bigger.e-disabled,
1060
+ .e-bigger .e-float-input.e-disabled,
1061
+ .e-float-input.e-control-wrapper.e-bigger.e-disabled,
1062
+ .e-bigger .e-float-input.e-control-wrapper.e-disabled,
1063
+ .e-float-input.e-input-group.e-bigger.e-disabled,
1064
+ .e-bigger .e-float-input.e-input-group.e-disabled,
1065
+ .e-float-input.e-input-group.e-control-wrapper.e-bigger.e-disabled,
1066
+ .e-bigger .e-float-input.e-input-group.e-control-wrapper.e-disabled {
1067
+ font-size: 16px;
1068
+ }
1069
+
1070
+ .e-float-input.e-bigger input,
1071
+ .e-float-input input.e-bigger,
1072
+ .e-bigger .e-float-input input,
1073
+ .e-float-input.e-control-wrapper.e-bigger input,
1074
+ .e-float-input.e-control-wrapper input.e-bigger,
1075
+ .e-bigger .e-float-input.e-control-wrapper input {
1076
+ font: inherit;
1077
+ line-height: inherit;
1078
+ padding: 0;
1079
+ }
1080
+
1081
+ .e-float-input.e-small,
1082
+ .e-small .e-float-input,
1083
+ .e-float-input.e-control-wrapper.e-small,
1084
+ .e-small .e-float-input.e-control-wrapper {
1085
+ font-size: 12px;
1086
+ }
1087
+
1088
+ .e-float-input.e-small.e-disabled,
1089
+ .e-small .e-float-input.e-disabled,
1090
+ .e-float-input.e-control-wrapper.e-small.e-disabled,
1091
+ .e-small .e-float-input.e-control-wrapper.e-disabled,
1092
+ .e-float-input.e-input-group.e-small.e-disabled,
1093
+ .e-small .e-float-input.e-input-group.e-disabled,
1094
+ .e-float-input.e-input-group.e-control-wrapper.e-small.e-disabled,
1095
+ .e-small .e-float-input.e-input-group.e-control-wrapper.e-disabled {
1096
+ font-size: 12px;
1097
+ }
1098
+
1099
+ .e-float-input.e-small input,
1100
+ .e-float-input.e-control-wrapper.e-small input {
1101
+ font: inherit;
1102
+ line-height: inherit;
1103
+ padding: 0;
1104
+ }
1105
+
1106
+ .e-float-input.e-small.e-bigger,
1107
+ .e-small.e-bigger .e-float-input,
1108
+ .e-bigger .e-float-input.e-small,
1109
+ .e-small .e-float-input.e-bigger,
1110
+ .e-float-input.e-control-wrapper.e-small.e-bigger,
1111
+ .e-small.e-bigger .e-float-input.e-control-wrapper,
1112
+ .e-bigger .e-float-input.e-control-wrapper.e-small,
1113
+ .e-small .e-float-input.e-control-wrapper.e-bigger {
1114
+ font-size: 14px;
1115
+ }
1116
+
1117
+ .e-float-input.e-small.e-bigger.e-disabled,
1118
+ .e-small.e-bigger .e-float-input.e-disabled,
1119
+ .e-bigger .e-float-input.e-small.e-disabled,
1120
+ .e-small .e-float-input.e-bigger.e-disabled,
1121
+ .e-float-input.e-control-wrapper.e-small.e-bigger.e-disabled,
1122
+ .e-small.e-bigger .e-float-input.e-control-wrapper.e-disabled,
1123
+ .e-bigger .e-float-input.e-control-wrapper.e-small.e-disabled,
1124
+ .e-small .e-float-input.e-control-wrapper.e-bigger.e-disabled,
1125
+ .e-float-input.e-input-group.e-small.e-bigger.e-disabled,
1126
+ .e-small.e-bigger .e-float-input.e-input-group.e-disabled,
1127
+ .e-bigger .e-float-input.e-input-group.e-small.e-disabled,
1128
+ .e-small .e-float-input.e-input-group.e-bigger.e-disabled,
1129
+ .e-float-input.e-input-group.e-control-wrapper.e-small.e-bigger.e-disabled,
1130
+ .e-small.e-bigger .e-float-input.e-input-group.e-control-wrapper.e-disabled,
1131
+ .e-bigger .e-float-input.e-input-group.e-control-wrapper.e-small.e-disabled,
1132
+ .e-small .e-float-input.e-input-group.e-control-wrapper.e-bigger.e-disabled {
1133
+ font-size: 14px;
1134
+ }
1135
+
1136
+ .e-float-input.e-small.e-bigger input,
1137
+ .e-float-input.e-small input.e-bigger,
1138
+ .e-bigger .e-float-input.e-small input,
1139
+ .e-float-input.e-control-wrapper.e-small.e-bigger input,
1140
+ .e-float-input.e-control-wrapper.e-small input.e-bigger,
1141
+ .e-bigger .e-float-input.e-control-wrapper.e-small input {
1142
+ font: inherit;
1143
+ line-height: inherit;
1144
+ padding: 0;
1145
+ }
1146
+
1147
+ .e-float-input input:focus,
1148
+ .e-float-input.e-control-wrapper input:focus,
1149
+ .e-float-input textarea:focus,
1150
+ .e-float-input.e-control-wrapper textarea:focus,
1151
+ .e-float-input.e-input-focus input,
1152
+ .e-float-input.e-control-wrapper.e-input-focus input {
1153
+ outline: none;
1154
+ }
1155
+
1156
+ label.e-float-text,
1157
+ .e-float-input label.e-float-text,
1158
+ .e-float-input.e-control-wrapper label.e-float-text {
1159
+ font-family: inherit;
1160
+ }
1161
+
1162
+ .e-float-input input:valid ~ label.e-float-text,
1163
+ .e-float-input input:focus ~ label.e-float-text,
1164
+ .e-float-input input:valid ~ label.e-float-text.e-label-top,
1165
+ .e-float-input input ~ label.e-float-text.e-label-top,
1166
+ .e-float-input .e-input-in-wrap input:valid ~ label.e-float-text,
1167
+ .e-float-input .e-input-in-wrap input:valid ~ label.e-float-text.e-label-top,
1168
+ .e-float-input .e-input-in-wrap input ~ label.e-float-text.e-label-top,
1169
+ .e-float-input.e-control-wrapper input:valid ~ label.e-float-text,
1170
+ .e-float-input.e-control-wrapper input:focus ~ label.e-float-text,
1171
+ .e-float-input.e-control-wrapper input:valid ~ label.e-float-text.e-label-top,
1172
+ .e-float-input.e-control-wrapper input ~ label.e-float-text.e-label-top,
1173
+ .e-float-input.e-control-wrapper .e-input-in-wrap input:valid ~ label.e-float-text,
1174
+ .e-float-input.e-control-wrapper .e-input-in-wrap input:valid ~ label.e-float-text.e-label-top,
1175
+ .e-float-input.e-control-wrapper .e-input-in-wrap input ~ label.e-float-text.e-label-top,
1176
+ .e-float-input.e-input-focus input ~ label.e-float-text,
1177
+ .e-float-input.e-control-wrapper.e-input-focus input ~ label.e-float-text {
1178
+ -webkit-user-select: text;
1179
+ -ms-user-select: text;
1180
+ user-select: text;
1181
+ }
1182
+
1183
+ .e-float-input textarea:valid ~ label.e-float-text,
1184
+ .e-float-input textarea:focus ~ label.e-float-text,
1185
+ .e-float-input textarea:valid ~ label.e-float-text.e-label-top,
1186
+ .e-float-input textarea ~ label.e-float-text.e-label-top,
1187
+ .e-float-input.e-control-wrapper textarea:valid ~ label.e-float-text,
1188
+ .e-float-input.e-control-wrapper textarea:focus ~ label.e-float-text,
1189
+ .e-float-input.e-control-wrapper textarea:valid ~ label.e-float-text.e-label-top,
1190
+ .e-float-input.e-control-wrapper textarea ~ label.e-float-text.e-label-top {
1191
+ -webkit-user-select: text;
1192
+ -ms-user-select: text;
1193
+ user-select: text;
1194
+ }
1195
+
1196
+ label.e-float-text,
1197
+ .e-float-input label.e-float-text,
1198
+ .e-float-input.e-control-wrapper label.e-float-text,
1199
+ .e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1200
+ .e-float-input.e-control-wrapper:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1201
+ .e-float-input.e-bigger:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1202
+ .e-float-input.e-bigger.e-control-wrapper:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1203
+ .e-bigger .e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1204
+ .e-float-input.e-small:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1205
+ .e-small .e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1206
+ .e-float-input.e-small.e-bigger:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1207
+ .e-bigger .e-float-input.e-small:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1208
+ .e-float-input.e-control-wrapper:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1209
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1210
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1211
+ .e-float-input.e-control-wrapper.e-small:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1212
+ .e-small .e-float-input.e-control-wrapper:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1213
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1214
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
1215
+ font-weight: normal;
1216
+ }
1217
+
1218
+ .e-float-input:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1219
+ .e-float-input.e-control-wrapper:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1220
+ .e-float-input.e-bigger:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1221
+ .e-float-input.e-bigger.e-control-wrapper:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1222
+ .e-bigger .e-float-input:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1223
+ .e-float-input.e-small:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1224
+ .e-small .e-float-input:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1225
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1226
+ .e-bigger .e-float-input.e-small:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1227
+ .e-float-input.e-control-wrapper:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1228
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1229
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1230
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1231
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1232
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1233
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
1234
+ font-weight: normal;
1235
+ }
1236
+
1237
+ .e-float-input:not(.e-input-group) .e-float-line::before,
1238
+ .e-float-input:not(.e-input-group) .e-float-line::after,
1239
+ .e-float-input.e-control-wrapper:not(.e-input-group) .e-float-line::before,
1240
+ .e-float-input.e-control-wrapper:not(.e-input-group) .e-float-line::after {
1241
+ bottom: 0;
1242
+ content: "";
1243
+ height: 2px;
1244
+ position: absolute;
1245
+ transition: 0.2s ease;
1246
+ width: 0;
1247
+ }
1248
+
1249
+ .e-float-input:not(.e-input-group) .e-float-line::before,
1250
+ .e-float-input.e-control-wrapper:not(.e-input-group) .e-float-line::before {
1251
+ left: 50%;
1252
+ }
1253
+
1254
+ .e-float-input:not(.e-input-group) .e-float-line::after,
1255
+ .e-float-input.e-control-wrapper:not(.e-input-group) .e-float-line::after {
1256
+ right: 50%;
1257
+ }
1258
+
1259
+ .e-float-input:not(.e-input-group) input:focus ~ .e-float-line::before,
1260
+ .e-float-input:not(.e-input-group) textarea:focus ~ .e-float-line::before,
1261
+ .e-float-input:not(.e-input-group) input:focus ~ .e-float-line::after,
1262
+ .e-float-input:not(.e-input-group) textarea:focus ~ .e-float-line::after,
1263
+ .e-float-input.e-control-wrapper:not(.e-input-group) input:focus ~ .e-float-line::before,
1264
+ .e-float-input.e-control-wrapper:not(.e-input-group) textarea:focus ~ .e-float-line::before,
1265
+ .e-float-input.e-control-wrapper:not(.e-input-group) input:focus ~ .e-float-line::after,
1266
+ .e-float-input.e-control-wrapper:not(.e-input-group) textarea:focus ~ .e-float-line::after,
1267
+ .e-float-input:not(.e-input-group).e-input-focus input ~ .e-float-line::before,
1268
+ .e-float-input:not(.e-input-group).e-input-focus input ~ .e-float-line::after,
1269
+ .e-float-input.e-control-wrapper:not(.e-input-group).e-input-focus input ~ .e-float-line::before,
1270
+ .e-float-input.e-control-wrapper:not(.e-input-group).e-input-focus input ~ .e-float-line::after {
1271
+ width: 50%;
1272
+ }
1273
+
1274
+ .e-float-input .e-float-line,
1275
+ .e-float-input.e-control-wrapper .e-float-line {
1276
+ display: block;
1277
+ position: relative;
1278
+ width: 100%;
1279
+ }
1280
+
1281
+ .e-float-input.e-rtl,
1282
+ .e-float-input.e-control-wrapper.e-rtl {
1283
+ direction: rtl;
1284
+ }
1285
+
1286
+ .e-float-input.e-rtl label.e-float-text,
1287
+ .e-float-input.e-control-wrapper.e-rtl label.e-float-text,
1288
+ .e-rtl .e-float-input label.e-float-text,
1289
+ .e-rtl .e-float-input.e-control-wrapper label.e-float-text,
1290
+ .e-rtl label.e-float-text,
1291
+ .e-rtl .e-float-input.e-control-wrapper label.e-float-text,
1292
+ .e-rtl.e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1293
+ .e-rtl .e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1294
+ .e-rtl.e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1295
+ .e-rtl .e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1296
+ .e-rtl.e-float-input textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1297
+ .e-rtl.e-float-input.e-control-wrapper textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1298
+ .e-rtl .e-float-input textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1299
+ .e-rtl .e-float-input.e-control-wrapper textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
1300
+ right: 0;
1301
+ transform-origin: right top;
1302
+ }
1303
+
1304
+ /* stylelint-disable selector-max-empty-lines */
1305
+ .e-float-input.e-rtl:not(.e-input-focus) label.e-float-text.e-label-bottom,
1306
+ .e-rtl .e-float-input:not(.e-input-focus) label.e-float-text.e-label-bottom,
1307
+ .e-float-input.e-rtl.e-control-wrapper:not(.e-input-focus) label.e-float-text.e-label-bottom,
1308
+ .e-rtl .e-float-input.e-control-wrapper:not(.e-input-focus) label.e-float-text.e-label-bottom,
1309
+ .e-float-input.e-rtl input:not(:focus):not(:valid) label.e-float-text,
1310
+ .e-float-input.e-rtl input:not(:focus):not(:valid) label.e-float-text.e-label-bottom,
1311
+ .e-rtl .e-float-input input:not(:focus):not(:valid) label.e-float-text,
1312
+ .e-rtl .e-float-input input:not(:focus):not(:valid) label.e-float-text.e-label-bottom,
1313
+ .e-float-input.e-control-wrapper.e-rtl input:not(:focus):not(:valid) label.e-float-text,
1314
+ .e-rtl .e-float-input.e-control-wrapper input:not(:focus):not(:valid) label.e-float-text,
1315
+ .e-float-input.e-rtl.e-control-wrapper input:not(:focus):not(:valid) label.e-float-text.e-label-bottom,
1316
+ .e-rtl .e-float-input.e-control-wrapper input:not(:focus):not(:valid) label.e-float-text.e-label-bottom {
1317
+ padding-right: 10px;
1318
+ }
1319
+
1320
+ .e-float-input.e-rtl.e-bigger:not(.e-input-focus) label.e-float-text.e-label-bottom,
1321
+ .e-float-input.e-rtl.e-control-wrapper.e-bigger:not(.e-input-focus) label.e-float-text.e-label-bottom,
1322
+ .e-rtl .e-float-input.e-bigger:not(.e-input-focus) label.e-float-text.e-label-bottom,
1323
+ .e-rtl .e-float-input.e-control-wrapper.e-bigger:not(.e-input-focus) label.e-float-text.e-label-bottom,
1324
+ .e-bigger .e-float-input.e-rtl:not(.e-input-focus) label.e-float-text.e-label-bottom,
1325
+ .e-bigger .e-float-input.e-rtl.e-control-wrapper:not(.e-input-focus) label.e-float-text.e-label-bottom,
1326
+ .e-bigger.e-rtl .e-float-input:not(.e-input-focus) label.e-float-text.e-label-bottom,
1327
+ .e-bigger.e-rtl .e-float-input.e-control-wrapper:not(.e-input-focus) label.e-float-text.e-label-bottom,
1328
+ .e-float-input.e-bigger.e-rtl input:not(:focus):not(:valid) label.e-float-text,
1329
+ .e-float-input.e-rtl.e-bigger input:not(:focus):not(:valid) label.e-float-text.e-label-bottom,
1330
+ .e-rtl .e-float-input.e-bigger input:not(:focus):not(:valid) label.e-float-text,
1331
+ .e-rtl .e-float-input.e-bigger input:not(:focus):not(:valid) label.e-float-text.e-label-bottom,
1332
+ .e-bigger .e-float-input.e-rtl input:not(:focus):not(:valid) label.e-float-text,
1333
+ .e-bigger .e-float-input.e-rtl input:not(:focus):not(:valid) label.e-float-text.e-label-bottom,
1334
+ .e-bigger.e-rtl .e-float-input input:not(:focus):not(:valid) label.e-float-text,
1335
+ .e-bigger.e-rtl .e-float-input input:not(:focus):not(:valid) label.e-float-text.e-label-bottom,
1336
+ .e-float-input.e-control-wrapper.e-bigger.e-rtl input:not(:focus):not(:valid) label.e-float-text,
1337
+ .e-float-input.e-control-wrapper.e-rtl.e-bigger input:not(:focus):not(:valid) label.e-float-text.e-label-bottom,
1338
+ .e-rtl .e-float-input.e-control-wrapper.e-bigger input:not(:focus):not(:valid) label.e-float-text,
1339
+ .e-rtl .e-float-input.e-control-wrapper.e-bigger input:not(:focus):not(:valid) label.e-float-text.e-label-bottom,
1340
+ .e-bigger .e-float-input.e-control-wrapper.e-rtl input:not(:focus):not(:valid) label.e-float-text,
1341
+ .e-bigger .e-float-input.e-control-wrapper.e-rtl input:not(:focus):not(:valid) label.e-float-text.e-label-bottom,
1342
+ .e-bigger.e-rtl .e-float-input.e-control-wrapper input:not(:focus):not(:valid) label.e-float-text,
1343
+ .e-bigger.e-rtl .e-float-input.e-control-wrapper input:not(:focus):not(:valid) label.e-float-text.e-label-bottom {
1344
+ padding-right: 10px;
1345
+ }
1346
+
1347
+ .e-float-input.e-rtl.e-small:not(.e-input-focus) label.e-float-text.e-label-bottom,
1348
+ .e-float-input.e-rtl.e-control-wrapper.e-small:not(.e-input-focus) label.e-float-text.e-label-bottom,
1349
+ .e-rtl .e-float-input.e-small:not(.e-input-focus) label.e-float-text.e-label-bottom,
1350
+ .e-rtl .e-float-input.e-control-wrapper.e-small:not(.e-input-focus) label.e-float-text.e-label-bottom,
1351
+ .e-small .e-float-input.e-rtl:not(.e-input-focus) label.e-float-text.e-label-bottom,
1352
+ .e-small .e-float-input.e-rtl.e-control-wrapper:not(.e-input-focus) label.e-float-text.e-label-bottom,
1353
+ .e-small.e-rtl .e-float-input:not(.e-input-focus) label.e-float-text.e-label-bottom,
1354
+ .e-small.e-rtl .e-float-input.e-control-wrapper:not(.e-input-focus) label.e-float-text.e-label-bottom,
1355
+ .e-float-input.e-small.e-rtl input:not(:focus):not(:valid) label.e-float-text,
1356
+ .e-float-input.e-rtl.e-small input:not(:focus):not(:valid) label.e-float-text.e-label-bottom,
1357
+ .e-rtl .e-float-input.e-small input:not(:focus):not(:valid) label.e-float-text,
1358
+ .e-rtl .e-float-input.e-small input:not(:focus):not(:valid) label.e-float-text.e-label-bottom,
1359
+ .e-small .e-float-input.e-rtl input:not(:focus):not(:valid) label.e-float-text,
1360
+ .e-small .e-float-input.e-rtl input:not(:focus):not(:valid) label.e-float-text.e-label-bottom,
1361
+ .e-small.e-rtl .e-float-input input:not(:focus):not(:valid) label.e-float-text,
1362
+ .e-small.e-rtl .e-float-input input:not(:focus):not(:valid) label.e-float-text.e-label-bottom,
1363
+ .e-float-input.e-control-wrapper.e-small.e-rtl input:not(:focus):not(:valid) label.e-float-text,
1364
+ .e-float-input.e-control-wrapper.e-rtl.e-small input:not(:focus):not(:valid) label.e-float-text.e-label-bottom,
1365
+ .e-rtl .e-float-input.e-control-wrapper.e-small input:not(:focus):not(:valid) label.e-float-text,
1366
+ .e-rtl .e-float-input.e-control-wrapper.e-small input:not(:focus):not(:valid) label.e-float-text.e-label-bottom,
1367
+ .e-small .e-float-input.e-control-wrapper.e-rtl input:not(:focus):not(:valid) label.e-float-text,
1368
+ .e-small .e-float-input.e-control-wrapper.e-rtl input:not(:focus):not(:valid) label.e-float-text.e-label-bottom,
1369
+ .e-small.e-rtl .e-float-input.e-control-wrapper input:not(:focus):not(:valid) label.e-float-text,
1370
+ .e-small.e-rtl .e-float-input.e-control-wrapper input:not(:focus):not(:valid) label.e-float-text.e-label-bottom {
1371
+ padding-right: 10px;
1372
+ }
1373
+
1374
+ .e-float-input.e-rtl.e-bigger.e-small:not(.e-input-focus) label.e-float-text.e-label-bottom,
1375
+ .e-float-input.e-rtl.e-control-wrapper.e-bigger.e-small:not(.e-input-focus) label.e-float-text.e-label-bottom,
1376
+ .e-rtl .e-float-input.e-bigger.e-small:not(.e-input-focus) label.e-float-text.e-label-bottom,
1377
+ .e-rtl .e-float-input.e-control-wrapper.e-bigger.e-small:not(.e-input-focus) label.e-float-text.e-label-bottom,
1378
+ .e-bigger.e-small .e-float-input.e-rtl:not(.e-input-focus) label.e-float-text.e-label-bottom,
1379
+ .e-bigger.e-small .e-float-input.e-rtl.e-control-wrapper:not(.e-input-focus) label.e-float-text.e-label-bottom,
1380
+ .e-bigger.e-small.e-rtl .e-float-input:not(.e-input-focus) label.e-float-text.e-label-bottom,
1381
+ .e-bigger.e-small.e-rtl .e-float-input.e-control-wrapper:not(.e-input-focus) label.e-float-text.e-label-bottom,
1382
+ .e-float-input.e-bigger.e-small.e-rtl input:not(:focus):not(:valid) label.e-float-text,
1383
+ .e-float-input.e-rtl.e-bigger.e-small input:not(:focus):not(:valid) label.e-float-text.e-label-bottom,
1384
+ .e-rtl .e-float-input.e-bigger.e-small input:not(:focus):not(:valid) label.e-float-text,
1385
+ .e-rtl .e-float-input.e-bigger.e-small input:not(:focus):not(:valid) label.e-float-text.e-label-bottom,
1386
+ .e-bigger.e-small .e-float-input.e-rtl input:not(:focus):not(:valid) label.e-float-text,
1387
+ .e-bigger.e-small .e-float-input.e-rtl input:not(:focus):not(:valid) label.e-float-text.e-label-bottom,
1388
+ .e-bigger.e-small.e-rtl .e-float-input input:not(:focus):not(:valid) label.e-float-text,
1389
+ .e-bigger.e-small.e-rtl .e-float-input input:not(:focus):not(:valid) label.e-float-text.e-label-bottom,
1390
+ .e-float-input.e-control-wrapper.e-bigger.e-small.e-rtl input:not(:focus):not(:valid) label.e-float-text,
1391
+ .e-float-input.e-control-wrapper.e-rtl.e-bigger.e-small input:not(:focus):not(:valid) label.e-float-text.e-label-bottom,
1392
+ .e-rtl .e-float-input.e-control-wrapper.e-bigger.e-small input:not(:focus):not(:valid) label.e-float-text,
1393
+ .e-rtl .e-float-input.e-control-wrapper.e-bigger.e-small input:not(:focus):not(:valid) label.e-float-text.e-label-bottom,
1394
+ .e-bigger.e-small .e-float-input.e-control-wrapper.e-rtl input:not(:focus):not(:valid) label.e-float-text,
1395
+ .e-bigger.e-small .e-float-input.e-control-wrapper.e-rtl input:not(:focus):not(:valid) label.e-float-text.e-label-bottom,
1396
+ .e-bigger.e-small.e-rtl .e-float-input.e-control-wrapper input:not(:focus):not(:valid) label.e-float-text,
1397
+ .e-bigger.e-small.e-rtl .e-float-input.e-control-wrapper input:not(:focus):not(:valid) label.e-float-text.e-label-bottom {
1398
+ padding-right: 10px;
1399
+ }
1400
+
1401
+ /* stylelint-enable selector-max-empty-lines */
1402
+ .e-input-group.e-corner.e-rtl .e-input:first-child,
1403
+ .e-input-group.e-corner.e-rtl .e-input-group-icon:first-child,
1404
+ .e-input-group.e-control-wrapper.e-corner.e-rtl .e-input:first-child,
1405
+ .e-input-group.e-control-wrapper.e-corner.e-rtl .e-input-group-icon:first-child {
1406
+ border-bottom-left-radius: 0;
1407
+ border-bottom-right-radius: 4px;
1408
+ border-top-left-radius: 0;
1409
+ border-top-right-radius: 4px;
1410
+ }
1411
+
1412
+ .e-input-group.e-corner.e-rtl .e-input:last-child,
1413
+ .e-input-group.e-corner.e-rtl .e-input-group-icon:last-child,
1414
+ .e-input-group.e-control-wrapper.e-corner.e-rtl .e-input:last-child,
1415
+ .e-input-group.e-control-wrapper.e-corner.e-rtl .e-input-group-icon:last-child {
1416
+ border-bottom-left-radius: 4px;
1417
+ border-bottom-right-radius: 0;
1418
+ border-top-left-radius: 4px;
1419
+ border-top-right-radius: 0;
1420
+ }
1421
+
1422
+ .e-input-group.e-warning::before,
1423
+ .e-input-group.e-control-wrapper.e-warning::before {
1424
+ content: "";
1425
+ }
1426
+
1427
+ .e-float-input input[disabled],
1428
+ .e-float-input input.e-disabled,
1429
+ .e-float-input.e-control-wrapper input[disabled],
1430
+ .e-float-input.e-control-wrapper input.e-disabled {
1431
+ background: transparent;
1432
+ background-image: none;
1433
+ cursor: not-allowed;
1434
+ }
1435
+
1436
+ .e-input-group.e-corner.e-rtl input.e-input:only-child,
1437
+ .e-input-group.e-control-wrapper.e-corner.e-rtl input.e-input:only-child {
1438
+ border-radius: 4px;
1439
+ }
1440
+
1441
+ .e-input-group.e-rtl .e-input:not(:first-child):focus,
1442
+ .e-input-group.e-control-wrapper.e-rtl .e-input:not(:first-child):focus {
1443
+ border-right-width: 0;
1444
+ }
1445
+
1446
+ .e-input-group input.e-input,
1447
+ .e-input-group.e-control-wrapper input.e-input {
1448
+ min-width: 0;
1449
+ width: 100%;
1450
+ }
1451
+
1452
+ .e-input-group input.e-input,
1453
+ .e-input-group textarea.e-input,
1454
+ .e-input-group input.e-input:hover:not(.e-success):not(.e-warning):not(.e-error):not([disabled]):not(:focus),
1455
+ .e-input-group textarea.e-input:hover:not(.e-success):not(.e-warning):not(.e-error):not([disabled]),
1456
+ .e-input-group.e-control-wrapper input.e-input,
1457
+ .e-input-group.e-control-wrapper textarea.e-input,
1458
+ .e-input-group.e-control-wrapper input.e-input:hover:not(.e-success):not(.e-warning):not(.e-error):not([disabled]):not(:focus),
1459
+ .e-input-group.e-control-wrapper textarea.e-input:hover:not(.e-success):not(.e-warning):not(.e-error):not([disabled]) {
1460
+ border: 0 solid;
1461
+ border-width: 0;
1462
+ }
1463
+
1464
+ .e-input-group input.e-input,
1465
+ .e-input-group textarea.e-input,
1466
+ .e-input-group.e-bigger .e-input,
1467
+ .e-input-group.e-control-wrapper input.e-input,
1468
+ .e-input-group.e-control-wrapper textarea.e-input,
1469
+ .e-input-group.e-control-wrapper.e-bigger .e-input,
1470
+ .e-bigger .e-input-group .e-input,
1471
+ .e-bigger .e-input-group.e-control-wrapper .e-input {
1472
+ margin-bottom: 0;
1473
+ }
1474
+
1475
+ .e-input-group::before,
1476
+ .e-input-group::after,
1477
+ .e-input-group.e-control-wrapper::before,
1478
+ .e-input-group.e-control-wrapper::after {
1479
+ content: "";
1480
+ }
1481
+
1482
+ .e-input-group::before,
1483
+ .e-input-group.e-control-wrapper::before {
1484
+ content: "";
1485
+ }
1486
+
1487
+ .e-input-group.e-input-focus::before,
1488
+ .e-input-group.e-input-focus::after,
1489
+ .e-input-group.e-control-wrapper.e-input-focus::before,
1490
+ .e-input-group.e-control-wrapper.e-input-focus::after {
1491
+ content: "";
1492
+ }
1493
+
1494
+ .e-input-group::after,
1495
+ .e-input-group.e-control-wrapper::after {
1496
+ content: "";
1497
+ }
1498
+
1499
+ .e-input-group,
1500
+ .e-input-group.e-control-wrapper {
1501
+ position: relative;
1502
+ width: 100%;
1503
+ }
1504
+
1505
+ .e-input-group .e-input-group-icon:hover,
1506
+ .e-input-group.e-rtl.e-corner .e-input-group-icon:hover,
1507
+ .e-input-group.e-control-wrapper .e-input-group-icon:hover,
1508
+ .e-input-group.e-control-wrapper.e-rtl.e-corner .e-input-group-icon:hover {
1509
+ border-radius: 0;
1510
+ }
1511
+
1512
+ .e-input.e-small,
1513
+ .e-input-group.e-small,
1514
+ .e-input-group.e-control-wrapper.e-small {
1515
+ margin-bottom: 0;
1516
+ }
1517
+
1518
+ .e-input.e-small.e-bigger,
1519
+ .e-input-group.e-small.e-bigger,
1520
+ .e-input-group.e-control-wrapper.e-small.e-bigger,
1521
+ .e-bigger .e-input.e-small,
1522
+ .e-bigger .e-input-group.e-small,
1523
+ .e-bigger .e-input-group.e-control-wrapper.e-small {
1524
+ line-height: inherit;
1525
+ margin-bottom: 0;
1526
+ }
1527
+
1528
+ .e-input-group .e-input-group-icon,
1529
+ .e-input-group.e-control-wrapper .e-input-group-icon {
1530
+ margin-bottom: 0;
1531
+ margin-right: 0;
1532
+ margin-top: 0;
1533
+ }
1534
+
1535
+ .e-float-input.e-input-group .e-input-group-icon,
1536
+ .e-float-input.e-control-wrapper.e-input-group .e-input-group-icon {
1537
+ margin-top: 0;
1538
+ }
1539
+
1540
+ .e-input-group.e-bigger .e-input-group-icon,
1541
+ .e-input-group .e-input-group-icon.e-bigger,
1542
+ .e-input-group.e-control-wrapper.e-bigger .e-input-group-icon,
1543
+ .e-input-group.e-control-wrapper .e-input-group-icon.e-bigger,
1544
+ .e-bigger .e-input-group .e-input-group-icon,
1545
+ .e-bigger .e-input-group.e-control-wrapper .e-input-group-icon {
1546
+ margin-bottom: 0;
1547
+ margin-right: 0;
1548
+ margin-top: 0;
1549
+ }
1550
+
1551
+ .e-float-input.e-input-group.e-bigger .e-input-group-icon,
1552
+ .e-float-input.e-input-group .e-input-group-icon.e-bigger,
1553
+ .e-bigger .e-float-input.e-input-group .e-input-group-icon,
1554
+ .e-float-input.e-control-wrapper.e-input-group.e-bigger .e-input-group-icon,
1555
+ .e-float-input.e-control-wrapper.e-input-group .e-input-group-icon.e-bigger,
1556
+ .e-bigger .e-float-input.e-control-wrapper.e-input-group .e-input-group-icon {
1557
+ margin-top: 0;
1558
+ }
1559
+
1560
+ .e-input-group.e-small.e-bigger .e-input-group-icon,
1561
+ .e-input-group.e-small .e-input-group-icon.e-bigger,
1562
+ .e-input-group.e-control-wrapper.e-small.e-bigger .e-input-group-icon,
1563
+ .e-input-group.e-control-wrapper.e-small .e-input-group-icon.e-bigger,
1564
+ .e-small .e-bigger.e-input-group .e-input-group-icon,
1565
+ .e-small .e-bigger.e-input-group.e-control-wrapper .e-input-group-icon,
1566
+ .e-bigger .e-input-group.e-small .e-input-group-icon,
1567
+ .e-bigger .e-input-group.e-control-wrapper.e-small .e-input-group-icon {
1568
+ margin-bottom: 0;
1569
+ margin-right: 0;
1570
+ margin-top: 0;
1571
+ }
1572
+
1573
+ .e-float-input.e-input-group.e-small.e-bigger .e-input-group-icon,
1574
+ .e-float-input.e-input-group.e-small .e-input-group-icon.e-bigger,
1575
+ .e-bigger .e-float-input.e-input-group.e-small .e-input-group-icon,
1576
+ .e-float-input.e-control-wrapper.e-input-group.e-small.e-bigger .e-input-group-icon,
1577
+ .e-float-input.e-control-wrapper.e-input-group.e-small .e-input-group-icon.e-bigger,
1578
+ .e-bigger .e-float-input.e-control-wrapper.e-input-group.e-small .e-input-group-icon {
1579
+ margin-top: 0;
1580
+ }
1581
+
1582
+ .e-input-group.e-small .e-input-group-icon,
1583
+ .e-input-group.e-control-wrapper.e-small .e-input-group-icon,
1584
+ .e-small .e-input-group .e-input-group-icon,
1585
+ .e-small .e-input-group.e-control-wrapper .e-input-group-icon {
1586
+ margin-bottom: 0;
1587
+ margin-right: 0;
1588
+ margin-top: 0;
1589
+ }
1590
+
1591
+ .e-float-input.e-input-group.e-small .e-input-group-icon,
1592
+ .e-small .e-float-input.e-input-group .e-input-group-icon,
1593
+ .e-float-input.e-control-wrapper.e-input-group.e-small .e-input-group-icon,
1594
+ .e-small .e-float-input.e-control-wrapper.e-input-group .e-input-group-icon {
1595
+ margin-top: 0;
1596
+ }
1597
+
1598
+ .e-input-group .e-input-group-icon:last-child,
1599
+ .e-input-group.e-bigger .e-input-group-icon:last-child,
1600
+ .e-input-group .e-input-group-icon.e-bigger:last-child,
1601
+ .e-bigger .e-input-group .e-input-group-icon:last-child,
1602
+ .e-input-group.e-small .e-input-group-icon:last-child,
1603
+ .e-input-group.e-small.e-bigger .e-input-group-icon:last-child,
1604
+ .e-input-group.e-small .e-input-group-icon.e-bigger:last-child,
1605
+ .e-input-group.e-control-wrapper .e-input-group-icon:last-child,
1606
+ .e-input-group.e-control-wrapper.e-bigger .e-input-group-icon:last-child,
1607
+ .e-input-group.e-control-wrapper .e-input-group-icon.e-bigger:last-child,
1608
+ .e-input-group.e-control-wrapper.e-small .e-input-group-icon:last-child,
1609
+ .e-input-group.e-control-wrapper.e-small.e-bigger .e-input-group-icon:last-child,
1610
+ .e-input-group.e-control-wrapper.e-small .e-input-group-icon.e-bigger:last-child,
1611
+ .e-bigger .e-input-group.e-control-wrapper.e-small .e-input-group-icon:last-child,
1612
+ .e-bigger .e-input-group.e-small .e-input-group-icon:last-child {
1613
+ margin-right: 0;
1614
+ }
1615
+
1616
+ .e-input-group,
1617
+ .e-input-group.e-control-wrapper {
1618
+ border-bottom: 1px solid;
1619
+ }
1620
+
1621
+ .e-input-group,
1622
+ .e-input-group.e-success,
1623
+ .e-input-group.e-warning,
1624
+ .e-input-group.e-error,
1625
+ .e-input-group.e-control-wrapper,
1626
+ .e-input-group.e-control-wrapper.e-success,
1627
+ .e-input-group.e-control-wrapper.e-warning,
1628
+ .e-input-group.e-control-wrapper.e-error {
1629
+ border: 1px solid;
1630
+ border-width: 1px;
1631
+ }
1632
+
1633
+ .e-input-group.e-rtl.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input:not(:first-child):focus,
1634
+ .e-input-group.e-control-wrapper.e-rtl.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input:not(:first-child):focus {
1635
+ border-right-width: 0;
1636
+ }
1637
+
1638
+ .e-input-group.e-input-focus.e-corner,
1639
+ .e-input-group.e-control-wrapper.e-input-focus.e-corner {
1640
+ border-radius: 4px;
1641
+ }
1642
+
1643
+ .e-input-group:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left).e-disabled,
1644
+ .e-input-group.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error).e-disabled .e-input-in-wrap,
1645
+ .e-input-group.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left).e-disabled,
1646
+ .e-input-group.e-control-wrapper.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error).e-disabled .e-input-in-wrap {
1647
+ background: #f9fafb;
1648
+ color: #9ca3af;
1649
+ }
1650
+
1651
+ .e-input-group:not(.e-success):not(.e-warning):not(.e-error).e-disabled,
1652
+ .e-input-group.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error).e-disabled {
1653
+ border-style: solid;
1654
+ }
1655
+
1656
+ .e-float-custom-tag,
1657
+ .e-float-custom-tag.e-control-wrapper {
1658
+ display: inline-block;
1659
+ }
1660
+
1661
+ .e-float-custom-tag.e-input-group,
1662
+ .e-float-custom-tag.e-input-group.e-control-wrapper,
1663
+ .e-input-custom-tag,
1664
+ .e-input-custom-tag.e-input-group,
1665
+ .e-input-custom-tag.e-input-group.e-control-wrapper {
1666
+ display: -ms-inline-flexbox;
1667
+ display: inline-flex;
1668
+ vertical-align: middle;
1669
+ }
1670
+
1671
+ .e-input-group .e-input-group-icon,
1672
+ .e-input-group.e-control-wrapper .e-input-group-icon {
1673
+ content: "";
1674
+ }
1675
+
1676
+ .e-input-group:not(.e-filled) .e-input-group-icon::after,
1677
+ .e-input-group.e-control-wrapper:not(.e-filled) .e-input-group-icon::after {
1678
+ content: "";
1679
+ }
1680
+
1681
+ .e-input-group .e-input-group-icon.e-input-btn-ripple::after,
1682
+ .e-input-group.e-control-wrapper .e-input-group-icon.e-input-btn-ripple::after {
1683
+ content: "";
1684
+ }
1685
+
1686
+ input.e-input::-ms-clear,
1687
+ .e-float-input input::-ms-clear,
1688
+ .e-float-input.e-control-wrapper input::-ms-clear {
1689
+ display: none;
1690
+ }
1691
+
1692
+ input.e-input[type=search]::-webkit-search-decoration,
1693
+ input.e-input[type=search]::-webkit-search-cancel-button,
1694
+ input.e-input[type=search]::-webkit-search-results-button,
1695
+ input.e-input[type=search]::-webkit-search-results-decoration,
1696
+ .e-float-input input[type=search]::-webkit-search-decoration,
1697
+ .e-float-input input[type=search]::-webkit-search-cancel-button,
1698
+ .e-float-input input[type=search]::-webkit-search-results-button,
1699
+ .e-float-input input[type=search]::-webkit-search-results-decoration,
1700
+ .e-float-input.e-control-wrapper input[type=search]::-webkit-search-decoration,
1701
+ .e-float-input.e-control-wrapper input[type=search]::-webkit-search-cancel-button,
1702
+ .e-float-input.e-control-wrapper input[type=search]::-webkit-search-results-button,
1703
+ .e-float-input.e-control-wrapper input[type=search]::-webkit-search-results-decoration {
1704
+ -webkit-appearance: none;
1705
+ }
1706
+
1707
+ .e-float-input.e-input-group .e-float-line,
1708
+ .e-float-input.e-input-group.e-control-wrapper .e-float-line,
1709
+ .e-float-input.e-control-wrapper.e-input-group .e-float-line,
1710
+ .e-float-input.e-control-wrapper.e-input-group.e-control-wrapper .e-float-line {
1711
+ bottom: -1px;
1712
+ position: absolute;
1713
+ }
1714
+
1715
+ .e-float-input.e-input-group input,
1716
+ .e-float-input.e-input-group textarea,
1717
+ .e-float-input.e-input-group.e-control-wrapper input,
1718
+ .e-float-input.e-input-group.e-control-wrapper textarea {
1719
+ border: 0;
1720
+ }
1721
+
1722
+ .e-float-input.e-input-group input:focus,
1723
+ .e-input-group input:focus,
1724
+ .e-float-input.e-input-group textarea:focus,
1725
+ .e-float-input.e-input-group.e-control-wrapper input:focus,
1726
+ .e-float-input.e-input-group.e-control-wrapper textarea {
1727
+ box-shadow: none;
1728
+ }
1729
+
1730
+ .e-float-input.e-input-group .e-float-line,
1731
+ .e-float-input.e-input-group .e-float-text,
1732
+ .e-float-input.e-input-group.e-control-wrapper .e-float-line,
1733
+ .e-float-input.e-input-group.e-control-wrapper .e-float-text {
1734
+ right: 0;
1735
+ }
1736
+
1737
+ input.e-input::-webkit-input-placeholder,
1738
+ input.e-input:-moz-placeholder,
1739
+ input.e-input:-ms-input-placeholder,
1740
+ input.e-input::-moz-placeholder {
1741
+ font-size: 14px;
1742
+ font-style: normal;
1743
+ }
1744
+
1745
+ textarea.e-input::-webkit-input-placeholder,
1746
+ textarea.e-input:-moz-placeholder,
1747
+ textarea.e-input:-ms-input-placeholder,
1748
+ textarea.e-input::-moz-placeholder {
1749
+ font-size: 14px;
1750
+ font-style: normal;
1751
+ }
1752
+
1753
+ .e-bigger input.e-input::-webkit-input-placeholder,
1754
+ input.e-bigger.e-input::-webkit-input-placeholder,
1755
+ .e-bigger input.e-input:-moz-placeholder,
1756
+ input.e-bigger.e-input:-moz-placeholder,
1757
+ .e-bigger input.e-input:-ms-input-placeholder,
1758
+ input.e-bigger.e-input:-ms-input-placeholder,
1759
+ .e-bigger input.e-input::-moz-placeholder,
1760
+ input.e-bigger.e-input::-moz-placeholder {
1761
+ font-size: 16px;
1762
+ font-style: normal;
1763
+ }
1764
+
1765
+ .e-bigger textarea.e-input::-webkit-input-placeholder,
1766
+ textarea.e-bigger.e-input::-webkit-input-placeholder,
1767
+ .e-bigger textarea.e-input:-moz-placeholder,
1768
+ textarea.e-bigger.e-input:-moz-placeholder,
1769
+ .e-bigger textarea.e-input:-ms-input-placeholder,
1770
+ textarea.e-bigger.e-input:-ms-input-placeholder,
1771
+ .e-bigger textarea.e-input::-moz-placeholder,
1772
+ textarea.e-bigger.e-input::-moz-placeholder {
1773
+ font-size: 16px;
1774
+ font-style: normal;
1775
+ }
1776
+
1777
+ .e-small input.e-input::-webkit-input-placeholder,
1778
+ input.e-small.e-input::-webkit-input-placeholder,
1779
+ .e-small input.e-input:-moz-placeholder,
1780
+ input.e-small.e-input:-moz-placeholder,
1781
+ .e-small input.e-input:-ms-input-placeholder,
1782
+ input.e-small.e-input:-ms-input-placeholder,
1783
+ .e-small input.e-input::-moz-placeholder,
1784
+ input.e-small.e-input::-moz-placeholder {
1785
+ font-size: 12px;
1786
+ font-style: normal;
1787
+ }
1788
+
1789
+ .e-small textarea.e-input::-webkit-input-placeholder,
1790
+ textarea.e-small.e-input::-webkit-input-placeholder,
1791
+ .e-small textarea.e-input:-moz-placeholder,
1792
+ textarea.e-small.e-input:-moz-placeholder,
1793
+ .e-small textarea.e-input:-ms-input-placeholder,
1794
+ textarea.e-small.e-input:-ms-input-placeholder,
1795
+ .e-small textarea.e-input::-moz-placeholder,
1796
+ textarea.e-small.e-input::-moz-placeholder {
1797
+ font-size: 12px;
1798
+ font-style: normal;
1799
+ }
1800
+
1801
+ .e-bigger input.e-small.e-input::-webkit-input-placeholder,
1802
+ .e-small input.e-bigger.e-input::-webkit-input-placeholder,
1803
+ .e-bigger input.e-small.e-input:-moz-placeholder,
1804
+ .e-small input.e-bigger.e-input:-moz-placeholder,
1805
+ .e-bigger input.e-small.e-input:-ms-input-placeholder,
1806
+ .e-small input.e-bigger.e-input:-ms-input-placeholder,
1807
+ .e-bigger input.e-small.e-input::-moz-placeholder,
1808
+ .e-small input.e-bigger.e-input::-moz-placeholder {
1809
+ font-size: 14px;
1810
+ font-style: normal;
1811
+ }
1812
+
1813
+ .e-bigger textarea.e-small.e-input::-webkit-input-placeholder,
1814
+ .e-small textarea.e-bigger.e-input::-webkit-input-placeholder,
1815
+ .e-bigger textarea.e-small.e-input:-moz-placeholder,
1816
+ .e-small textarea.e-bigger.e-input:-moz-placeholder,
1817
+ .e-bigger intextareaput.e-small.e-input:-ms-input-placeholder,
1818
+ .e-small textarea.e-bigger.e-input:-ms-input-placeholder,
1819
+ .e-bigger textarea.e-small.e-input::-moz-placeholder,
1820
+ .e-small textarea.e-bigger.e-input::-moz-placeholder {
1821
+ font-size: 14px;
1822
+ font-style: normal;
1823
+ }
1824
+
1825
+ input.e-input:-moz-placeholder {
1826
+ font-style: normal;
1827
+ user-select: none;
1828
+ }
1829
+
1830
+ textarea.e-input:-moz-placeholder {
1831
+ font-style: normal;
1832
+ user-select: none;
1833
+ }
1834
+
1835
+ .e-input-group input.e-input:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
1836
+ font-style: normal;
1837
+ user-select: none;
1838
+ }
1839
+
1840
+ .e-input-group textarea.e-input:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
1841
+ font-style: normal;
1842
+ user-select: none;
1843
+ }
1844
+
1845
+ .e-input-group.e-control-wrapper input.e-input:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
1846
+ font-style: normal;
1847
+ user-select: none;
1848
+ }
1849
+
1850
+ .e-input-group.e-control-wrapper textarea.e-input:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
1851
+ font-style: normal;
1852
+ user-select: none;
1853
+ }
1854
+
1855
+ input.e-input:-moz-placeholder {
1856
+ font-style: normal;
1857
+ user-select: none;
1858
+ }
1859
+
1860
+ .e-input-group input.e-input:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
1861
+ font-style: normal;
1862
+ user-select: none;
1863
+ }
1864
+
1865
+ .e-input-group.e-control-wrapper input.e-input:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
1866
+ font-style: normal;
1867
+ user-select: none;
1868
+ }
1869
+
1870
+ textarea.e-input:-moz-placeholder {
1871
+ font-style: normal;
1872
+ user-select: none;
1873
+ }
1874
+
1875
+ input.e-input::-moz-placeholder {
1876
+ font-style: normal;
1877
+ user-select: none;
1878
+ }
1879
+
1880
+ textarea.e-input::-moz-placeholder {
1881
+ font-style: normal;
1882
+ user-select: none;
1883
+ }
1884
+
1885
+ input.e-input:-ms-input-placeholder {
1886
+ font-style: normal;
1887
+ }
1888
+
1889
+ textarea.e-input:-ms-input-placeholder {
1890
+ font-style: normal;
1891
+ }
1892
+
1893
+ input.e-input::-webkit-input-placeholder {
1894
+ font-style: normal;
1895
+ -webkit-user-select: none;
1896
+ user-select: none;
1897
+ }
1898
+
1899
+ textarea.e-input::-webkit-input-placeholder {
1900
+ font-style: normal;
1901
+ -webkit-user-select: none;
1902
+ user-select: none;
1903
+ }
1904
+
1905
+ input.e-input,
1906
+ .e-input-group input,
1907
+ .e-input-group.e-control-wrapper input,
1908
+ .e-input-group input.e-input,
1909
+ .e-input-group.e-control-wrapper input.e-input {
1910
+ box-sizing: border-box;
1911
+ height: 28px;
1912
+ }
1913
+
1914
+ .e-float-input:not(.e-input-group) input,
1915
+ .e-float-input.e-control-wrapper:not(.e-input-group) input {
1916
+ box-sizing: border-box;
1917
+ height: 30px;
1918
+ }
1919
+
1920
+ input.e-input.e-bigger,
1921
+ .e-bigger input.e-input,
1922
+ .e-input-group.e-bigger input,
1923
+ .e-input-group.e-bigger input.e-input,
1924
+ .e-input-group.e-control-wrapper.e-bigger input,
1925
+ .e-input-group.e-control-wrapper.e-bigger input.e-input,
1926
+ .e-bigger .e-input-group input,
1927
+ .e-bigger .e-input-group input.e-input,
1928
+ .e-bigger .e-input-group.e-control-wrapper input,
1929
+ .e-bigger .e-input-group.e-control-wrapper input.e-input,
1930
+ .e-float-input.e-bigger input,
1931
+ .e-float-input.e-bigger input.e-input,
1932
+ .e-bigger .e-float-input input,
1933
+ .e-bigger .e-float-input input.e-input,
1934
+ .e-float-input.e-control-wrapper.e-bigger input,
1935
+ .e-float-input.e-control-wrapper.e-bigger input.e-input,
1936
+ .e-bigger .e-float-input.e-control-wrapper input,
1937
+ .e-bigger .e-float-input.e-control-wrapper input.e-input {
1938
+ box-sizing: border-box;
1939
+ height: 36px;
1940
+ }
1941
+
1942
+ .e-float-input.e-bigger:not(.e-input-group) input,
1943
+ .e-float-input.e-bigger:not(.e-input-group) input.e-input,
1944
+ .e-bigger .e-float-input:not(.e-input-group) input,
1945
+ .e-bigger .e-float-input:not(.e-input-group) input.e-input,
1946
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-input-group) input,
1947
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-input-group) input.e-input,
1948
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-input-group) input,
1949
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-input-group) input.e-input {
1950
+ box-sizing: border-box;
1951
+ height: 38px;
1952
+ }
1953
+
1954
+ input.e-input.e-small,
1955
+ .e-input-group.e-small input,
1956
+ .e-input-group.e-small input.e-input,
1957
+ .e-small .e-input-group input,
1958
+ .e-small .e-input-group input.e-input,
1959
+ .e-input-group.e-control-wrapper.e-small input,
1960
+ .e-input-group.e-control-wrapper.e-small input.e-input,
1961
+ .e-small .e-input-group.e-control-wrapper input,
1962
+ .e-small .e-input-group.e-control-wrapper input.e-input,
1963
+ .e-float-input.e-small input,
1964
+ .e-float-input.e-small input.e-input,
1965
+ .e-small .e-float-input input,
1966
+ .e-small .e-float-input input.e-input,
1967
+ .e-float-input.e-control-wrapper.e-small input,
1968
+ .e-float-input.e-control-wrapper.e-small input.e-input,
1969
+ .e-small .e-float-input.e-control-wrapper input,
1970
+ .e-small .e-float-input.e-control-wrapper input.e-input {
1971
+ box-sizing: border-box;
1972
+ height: 24px;
1973
+ }
1974
+
1975
+ .e-float-input.e-small:not(.e-input-group) input,
1976
+ .e-float-input.e-small:not(.e-input-group) input.e-input,
1977
+ .e-small .e-float-input:not(.e-input-group) input,
1978
+ .e-small .e-float-input:not(.e-input-group) input.e-input .e-float-input.e-control-wrapper.e-small:not(.e-input-group) input,
1979
+ .e-float-input.e-control-wrapper.e-small:not(.e-input-group) input.e-input,
1980
+ .e-small .e-float-input.e-control-wrapper:not(.e-input-group) input,
1981
+ .e-small .e-float-input.e-control-wrapper:not(.e-input-group) input.e-input {
1982
+ box-sizing: border-box;
1983
+ height: 26px;
1984
+ }
1985
+
1986
+ input.e-input.e-small.e-bigger,
1987
+ .e-input-group.e-bigger.e-small input,
1988
+ .e-input-group.e-bigger.e-small input.e-input,
1989
+ .e-bigger.e-small .e-input-group input,
1990
+ .e-bigger.e-small .e-input-group input.e-input,
1991
+ .e-input-group.e-control-wrapper.e-bigger.e-small input,
1992
+ .e-input-group.e-control-wrapper.e-bigger.e-small input.e-input,
1993
+ .e-bigger.e-small .e-input-group.e-control-wrapper input,
1994
+ .e-bigger.e-small .e-input-group.e-control-wrapper input.e-input,
1995
+ .e-float-input.e-bigger.e-small input,
1996
+ .e-float-input.e-bigger.e-small input.e-input,
1997
+ .e-bigger.e-small .e-float-input input,
1998
+ .e-bigger.e-small .e-float-input input.e-input,
1999
+ .e-float-input.e-control-wrapper.e-bigger.e-small input,
2000
+ .e-float-input.e-control-wrapper.e-bigger.e-small input.e-input,
2001
+ .e-bigger.e-small .e-float-input.e-control-wrapper input,
2002
+ .e-bigger.e-small .e-float-input.e-control-wrapper input.e-input {
2003
+ box-sizing: border-box;
2004
+ height: 32px;
2005
+ }
2006
+
2007
+ .e-float-input.e-bigger.e-small:not(.e-input-group) input,
2008
+ .e-float-input.e-bigger.e-small:not(.e-input-group) input.e-input,
2009
+ .e-bigger.e-small .e-float-input:not(.e-input-group) input,
2010
+ .e-bigger.e-small .e-float-input:not(.e-input-group) input.e-input,
2011
+ .e-float-input.e-control-wrapper.e-bigger.e-small:not(.e-input-group) input,
2012
+ .e-float-input.e-control-wrapper.e-bigger.e-small:not(.e-input-group) input.e-input,
2013
+ .e-bigger.e-small .e-float-input.e-control-wrapper:not(.e-input-group) input,
2014
+ .e-bigger.e-small .e-float-input.e-control-wrapper:not(.e-input-group) input.e-input {
2015
+ box-sizing: border-box;
2016
+ height: 34px;
2017
+ }
2018
+
2019
+ textarea.e-input,
2020
+ .e-input-group textarea,
2021
+ .e-input-group.e-control-wrapper textarea,
2022
+ .e-float-input textarea,
2023
+ .e-float-input.e-control-wrapper textarea {
2024
+ box-sizing: border-box;
2025
+ height: auto;
2026
+ }
2027
+
2028
+ .e-input-group textarea.e-input.e-bigger,
2029
+ .e-input-group.e-control-wrapper textarea.e-input.e-bigger,
2030
+ textarea.e-input.e-bigger,
2031
+ .e-input-group.e-bigger textarea,
2032
+ .e-input-group.e-bigger textarea.e-input,
2033
+ .e-bigger .e-input-group textarea,
2034
+ .e-bigger .e-input-group textarea.e-input,
2035
+ .e-input-group.e-control-wrapper.e-bigger textarea,
2036
+ .e-input-group.e-control-wrapper.e-bigger textarea.e-input,
2037
+ .e-bigger .e-input-group.e-control-wrapper textarea,
2038
+ .e-bigger .e-input-group.e-control-wrapper textarea.e-input,
2039
+ .e-float-input.e-bigger textarea,
2040
+ .e-float-input.e-bigger textarea.e-input,
2041
+ .e-bigger .e-float-input textarea,
2042
+ .e-bigger .e-float-input textarea.e-input,
2043
+ .e-float-input.e-control-wrapper.e-bigger textarea,
2044
+ .e-float-input.e-control-wrapper.e-bigger textarea.e-input,
2045
+ .e-bigger .e-float-input.e-control-wrapper textarea,
2046
+ .e-bigger .e-float-input.e-control-wrapper textarea.e-input {
2047
+ box-sizing: border-box;
2048
+ height: auto;
2049
+ }
2050
+
2051
+ textarea.e-input.e-small,
2052
+ .e-input-group.e-small textarea,
2053
+ .e-input-group.e-small textarea.e-input,
2054
+ .e-small .e-input-group textarea,
2055
+ .e-small .e-input-group textarea.e-input,
2056
+ .e-input-group.e-control-wrapper.e-small textarea,
2057
+ .e-input-group.e-control-wrapper.e-small textarea.e-input,
2058
+ .e-small .e-input-group.e-control-wrapper textarea,
2059
+ .e-small .e-input-group.e-control-wrapper textarea.e-input,
2060
+ .e-float-input.e-small textarea,
2061
+ .e-float-input.e-small textarea.e-input,
2062
+ .e-small .e-float-input textarea,
2063
+ .e-small .e-float-input textarea.e-input,
2064
+ .e-float-input.e-control-wrapper.e-small textarea,
2065
+ .e-float-input.e-control-wrapper.e-small textarea.e-input,
2066
+ .e-small .e-float-input.e-control-wrapper textarea,
2067
+ .e-small .e-float-input.e-control-wrapper textarea.e-input {
2068
+ box-sizing: border-box;
2069
+ height: auto;
2070
+ }
2071
+
2072
+ textarea.e-input.e-small.e-bigger,
2073
+ .e-input-group.e-bigger.e-small textarea,
2074
+ .e-input-group.e-bigger.e-small textarea.e-input,
2075
+ .e-bigger.e-small .e-input-group textarea,
2076
+ .e-bigger.e-small .e-input-group textarea.e-input,
2077
+ .e-input-group.e-control-wrapper.e-bigger.e-small textarea,
2078
+ .e-input-group.e-control-wrapper.e-bigger.e-small textarea.e-input,
2079
+ .e-bigger.e-small .e-input-group.e-control-wrapper textarea,
2080
+ .e-bigger.e-small .e-input-group.e-control-wrapper textarea.e-input,
2081
+ .e-float-input.e-bigger.e-small textarea,
2082
+ .e-float-input.e-bigger.e-small textarea.e-input,
2083
+ .e-bigger.e-small .e-float-input textarea,
2084
+ .e-bigger.e-small .e-float-input textarea.e-input,
2085
+ .e-float-input.e-control-wrapper.e-bigger.e-small textarea,
2086
+ .e-float-input.e-control-wrapper.e-bigger.e-small textarea.e-input,
2087
+ .e-bigger.e-small .e-float-input.e-control-wrapper textarea,
2088
+ .e-bigger.e-small .e-float-input.e-control-wrapper textarea.e-input {
2089
+ box-sizing: border-box;
2090
+ height: auto;
2091
+ }
2092
+
2093
+ input.e-input.e-bigger,
2094
+ .e-input-group input.e-input.e-bigger,
2095
+ .e-input-group input.e-input.e-bigger,
2096
+ .e-input-group.e-control-wrapper input.e-input.e-bigger,
2097
+ .e-input-group.e-control-wrapper input.e-input.e-bigger,
2098
+ .e-input-group.e-bigger .e-input,
2099
+ .e-input-group.e-control-wrapper.e-bigger .e-input,
2100
+ .e-bigger input.e-input,
2101
+ .e-bigger .e-input-group .e-input,
2102
+ .e-bigger .e-input-group.e-control-wrapper .e-input,
2103
+ .e-float-input.e-bigger input,
2104
+ .e-float-input input.e-bigger,
2105
+ .e-bigger .e-float-input input,
2106
+ .e-float-input.e-control-wrapper.e-bigger input,
2107
+ .e-float-input.e-control-wrapper input.e-bigger,
2108
+ .e-bigger .e-float-input.e-control-wrapper input {
2109
+ text-indent: 16px;
2110
+ }
2111
+
2112
+ input.e-input.e-small,
2113
+ .e-input-group input.e-input.e-small,
2114
+ .e-input-group.e-control-wrapper input.e-input.e-small,
2115
+ .e-input-group.e-small .e-input,
2116
+ .e-input-group.e-control-wrapper.e-small .e-input,
2117
+ .e-small input.e-input,
2118
+ .e-small .e-input-group .e-input,
2119
+ .e-small .e-input-group.e-control-wrapper .e-input,
2120
+ .e-float-input.e-small input,
2121
+ .e-float-input input.e-small,
2122
+ .e-small .e-float-input input,
2123
+ .e-float-input.e-control-wrapper.e-small input,
2124
+ .e-float-input.e-control-wrapper input.e-small,
2125
+ .e-small .e-float-input.e-control-wrapper input {
2126
+ text-indent: 8px;
2127
+ }
2128
+
2129
+ textarea.e-input.e-small,
2130
+ .e-input-group textarea.e-input.e-small,
2131
+ .e-input-group.e-control-wrapper input.e-input-group textarea.e-input.e-small,
2132
+ .e-small input.e-input,
2133
+ .e-float-input.e-small textarea,
2134
+ .e-float-input textarea.e-small,
2135
+ .e-small .e-float-input textarea,
2136
+ .e-float-input.e-control-wrapper.e-small textarea,
2137
+ .e-float-input.e-control-wrapper textarea.e-small,
2138
+ .e-small .e-float-input.e-control-wrapper textarea {
2139
+ text-indent: 8px;
2140
+ }
2141
+
2142
+ input.e-input,
2143
+ .e-input-group input.e-input,
2144
+ .e-input-group input,
2145
+ .e-input-group.e-control-wrapper input.e-input,
2146
+ .e-input-group.e-control-wrapper input,
2147
+ .e-float-input input.e-input,
2148
+ .e-float-input input,
2149
+ .e-float-input.e-control-wrapper input.e-input,
2150
+ .e-float-input.e-control-wrapper input,
2151
+ .e-input-group input.e-input:focus,
2152
+ .e-input-group.e-control-wrapper input.e-input:focus,
2153
+ .e-float-input.e-control-wrapper input:focus,
2154
+ .e-float-input input:focus,
2155
+ .e-input-group.e-input-focus input.e-input,
2156
+ .e-input-group.e-control-wrapper.e-input-focus input.e-input,
2157
+ .e-float-input.e-control-wrapper.e-input-focus input,
2158
+ .e-float-input.e-input-focus input {
2159
+ padding-left: 12px;
2160
+ text-indent: 0;
2161
+ }
2162
+
2163
+ textarea.e-input,
2164
+ .e-input-group textarea.e-input,
2165
+ .e-input-group textarea,
2166
+ .e-input-group.e-control-wrapper textarea.e-input,
2167
+ .e-input-group.e-control-wrapper textarea,
2168
+ .e-float-input textarea.e-input,
2169
+ .e-float-input textarea,
2170
+ .e-float-input.e-control-wrapper textarea.e-input,
2171
+ .e-float-input.e-control-wrapper textarea,
2172
+ .e-input-group textarea.e-input:focus,
2173
+ .e-input-group.e-control-wrapper textarea.e-input:focus,
2174
+ .e-float-input.e-control-wrapper textarea:focus,
2175
+ .e-float-input textarea:focus {
2176
+ padding-left: 12px;
2177
+ text-indent: 0;
2178
+ }
2179
+
2180
+ input.e-input.e-rtl,
2181
+ .e-input-group.e-rtl input.e-input,
2182
+ .e-input-group.e-control-container.e-rtl input.e-control,
2183
+ .e-input-group.e-control-wrapper.e-rtl input.e-input,
2184
+ .e-float-input.e-rtl input,
2185
+ .e-float-input.e-control-wrapper.e-rtl input,
2186
+ .e-rtl .e-input-group input.e-input,
2187
+ .e-rtl .e-input-group.e-control-wrapper input.e-input,
2188
+ .e-rtl .e-float-input input,
2189
+ .e-rtl .e-float-input.e-control-wrapper input,
2190
+ .e-input-group.e-rtl input.e-input,
2191
+ .e-input-group.e-control-wrapper.e-rtl input.e-input,
2192
+ .e-float-input.e-rtl input,
2193
+ .e-float-input.e-control-wrapper.e-rtl input,
2194
+ .e-rtl .e-input-group input.e-input,
2195
+ .e-rtl .e-input-group.e-control-wrapper input.e-input,
2196
+ .e-rtl .e-float-input input,
2197
+ .e-rtl .e-float-input.e-control-wrapper input,
2198
+ .e-input-group.e-rtl input.e-input:focus,
2199
+ .e-input-group.e-control-wrapper.e-rtl input.e-input:focus,
2200
+ .e-float-input.e-rtl input:focus,
2201
+ .e-float-input.e-control-wrapper.e-rtl input:focus,
2202
+ .e-rtl .e-input-group input.e-input:focus,
2203
+ .e-rtl .e-input-group.e-control-wrapper input.e-input:focus,
2204
+ .e-rtl .e-float-input input:focus,
2205
+ .e-rtl .e-float-input.e-control-wrapper input:focus,
2206
+ .e-input-group.e-rtl.e-input-focus input.e-input,
2207
+ .e-input-group.e-control-wrapper.e-rtl.e-input-focus input.e-input,
2208
+ .e-rtl .e-input-group.e-input-focus input.e-input,
2209
+ .e-rtl .e-input-group.e-control-wrapper.e-input-focus input.e-input,
2210
+ .e-float-input.e-rtl.e-input-focus input,
2211
+ .e-float-input.e-control-wrapper.e-rtl.e-input-focus input,
2212
+ .e-rtl .e-float-input.e-input-focus input,
2213
+ .e-rtl .e-float-input.e-control-wrapper.e-input-focus input {
2214
+ padding-left: 0;
2215
+ padding-right: 12px;
2216
+ text-indent: 0;
2217
+ }
2218
+
2219
+ textarea.e-input.e-rtl,
2220
+ .e-input-group:not(.e-outline).e-rtl textarea.e-input,
2221
+ .e-input-group:not(.e-outline).e-control-wrapper.e-rtl textarea.e-input,
2222
+ .e-float-input:not(.e-outline).e-rtl textarea,
2223
+ .e-float-input:not(.e-outline).e-control-wrapper.e-rtl textarea,
2224
+ .e-rtl .e-input-group:not(.e-outline) textarea.e-input,
2225
+ .e-rtl .e-input-group:not(.e-outline).e-control-wrapper textarea.e-input,
2226
+ .e-rtl .e-float-input:not(.e-outline) textarea,
2227
+ .e-rtl .e-float-input:not(.e-outline).e-control-wrapper textarea,
2228
+ .e-input-group:not(.e-outline).e-rtl textarea.e-input,
2229
+ .e-input-group:not(.e-outline).e-control-wrapper.e-rtl textarea.e-input,
2230
+ .e-float-input:not(.e-outline).e-rtl textarea,
2231
+ .e-float-input:not(.e-outline).e-control-wrapper.e-rtl textarea,
2232
+ .e-rtl .e-input-group:not(.e-outline) textarea.e-input,
2233
+ .e-rtl .e-input-group:not(.e-outline).e-control-wrapper textarea.e-input,
2234
+ .e-rtl .e-float-input:not(.e-outline) textarea,
2235
+ .e-rtl .e-float-input:not(.e-outline).e-control-wrapper textarea,
2236
+ .e-input-group:not(.e-outline).e-rtl textarea.e-input:focus,
2237
+ .e-input-group:not(.e-outline).e-control-wrapper.e-rtl textarea.e-input:focus,
2238
+ .e-float-input:not(.e-outline).e-rtl textarea:focus,
2239
+ .e-float-input:not(.e-outline).e-control-wrapper.e-rtl textarea:focus,
2240
+ .e-rtl .e-input-group:not(.e-outline) textarea.e-input:focus,
2241
+ .e-rtl .e-input-group:not(.e-outline).e-control-wrapper textarea.e-input:focus,
2242
+ .e-rtl .e-float-input:not(.e-outline) textarea:focus,
2243
+ .e-rtl .e-float-input:not(.e-outline).e-control-wrapper textarea:focus {
2244
+ padding-right: 12px;
2245
+ text-indent: 0;
2246
+ }
2247
+
2248
+ input.e-input.e-small,
2249
+ .e-small input.e-input,
2250
+ .e-input-group.e-small input.e-input,
2251
+ .e-input-group.e-control-wrapper.e-small input.e-input,
2252
+ .e-float-input.e-small input,
2253
+ .e-float-input.e-control-wrapper input.e-small,
2254
+ .e-float-input.e-small input,
2255
+ .e-float-input.e-control-wrapper input.e-small,
2256
+ .e-input-group input.e-input.e-small,
2257
+ .e-input-group.e-control-wrapper input.e-input.e-small,
2258
+ .e-small .e-float-input input,
2259
+ .e-small .e-float-input.e-control-wrapper input,
2260
+ .e-small .e-input-group input.e-input,
2261
+ .e-small .e-input-group.e-control-wrapper input.e-input,
2262
+ .e-input-group.e-small input.e-input:focus,
2263
+ .e-input-group.e-control-wrapper.e-small input.e-input:focus,
2264
+ .e-float-input.e-small input:focus,
2265
+ .e-float-input.e-control-wrapper.e-small input:focus,
2266
+ .e-small .e-input-group.e-control-wrapper input.e-input:focus,
2267
+ .e-small .e-input-group input.e-input:focus,
2268
+ .e-small .e-float-input input:focus,
2269
+ .e-small .e-float-input.e-control-wrapper input:focus,
2270
+ .e-input-group.e-small.e-input-focus input.e-input,
2271
+ .e-input-group.e-control-wrapper.e-small.e-input-focus input.e-input,
2272
+ .e-small .e-input-group.e-control-wrapper.e-input-focus input.e-input,
2273
+ .e-small .e-input-group.e-input-focus input.e-input,
2274
+ .e-float-input.e-small.e-input-focus input,
2275
+ .e-float-input.e-control-wrapper.e-input-focus.e-small input,
2276
+ .e-small .e-float-input.e-input-focus input,
2277
+ .e-small .e-float-input.e-control-wrapper.e-input-focus input {
2278
+ padding-left: 8px;
2279
+ text-indent: 0;
2280
+ }
2281
+
2282
+ textarea.e-input.e-small,
2283
+ .e-small textarea.e-input,
2284
+ .e-input-group.e-small textarea.e-input,
2285
+ .e-input-group.e-control-wrapper.e-small textarea.e-input,
2286
+ .e-float-input.e-control-wrapper.e-small textarea,
2287
+ .e-float-input.e-control-wrapper textarea.e-small,
2288
+ .e-float-input.e-small textarea,
2289
+ .e-float-input textarea.e-small,
2290
+ .e-input-group textarea.e-input.e-small,
2291
+ .e-input-group.e-control-wrapper textarea.e-input.e-small,
2292
+ .e-small .e-float-input.e-control-wrapper textarea,
2293
+ .e-small .e-float-input textarea,
2294
+ .e-small .e-input-group textarea.e-input,
2295
+ .e-small .e-input-group.e-control-wrapper textarea.e-input,
2296
+ .e-input-group.e-small textarea.e-input:focus,
2297
+ .e-input-group.e-control-wrapper.e-small textarea.e-input:focus,
2298
+ .e-float-input.e-small textarea:focus,
2299
+ .e-float-input.e-control-wrapper.e-small textarea:focus,
2300
+ .e-small .e-input-group textarea.e-input:focus,
2301
+ .e-small .e-input-group.e-control-wrapper textarea.e-input:focus,
2302
+ .e-small .e-float-input.e-control-wrapper textarea:focus,
2303
+ .e-small .e-float-input textarea:focus {
2304
+ padding-left: 8px;
2305
+ text-indent: 0;
2306
+ }
2307
+
2308
+ .e-rtl input.e-input.e-small,
2309
+ input.e-input.e-small.e-rtl,
2310
+ .e-small.e-rtl input.e-input,
2311
+ .e-small input.e-input.e-rtl,
2312
+ .e-float-input.e-control-wrapper.e-small.e-rtl input,
2313
+ .e-float-input.e-small.e-rtl input,
2314
+ .e-input-group.e-small.e-rtl input.e-input,
2315
+ .e-input-group.e-control-wrapper.e-small.e-rtl input.e-input,
2316
+ .e-rtl .e-float-input.e-small input,
2317
+ .e-rtl .e-float-input.e-control-wrapper.e-small input,
2318
+ .e-rtl .e-input-group.e-small input.e-input,
2319
+ .e-rtl .e-input-group.e-control-wrapper.e-small input.e-input,
2320
+ .e-float-input.e-rtl input.e-small,
2321
+ .e-float-input.e-control-wrapper.e-rtl input.e-small,
2322
+ .e-input-group.e-rtl input.e-input.e-small,
2323
+ .e-input-group.e-control-wrapper.e-rtl input.e-input.e-small,
2324
+ .e-rtl .e-float-input input.e-small,
2325
+ .e-rtl .e-float-input.e-control-wrapper input.e-small,
2326
+ .e-rtl .e-input-group input.e-input.e-small,
2327
+ .e-rtl .e-input-group.e-control-wrapper input.e-input.e-small,
2328
+ .e-small .e-float-input.e-rtl input,
2329
+ .e-small .e-float-input.e-control-wrapper.e-rtl input,
2330
+ .e-small .e-input-group.e-rtl input.e-input,
2331
+ .e-small .e-input-group.e-control-wrapper.e-rtl input.e-input,
2332
+ .e-small.e-rtl .e-float-input.e-control-wrapper input,
2333
+ .e-small.e-rtl .e-float-input input,
2334
+ .e-small.e-rtl .e-input-group.e-control-wrapper input.e-input,
2335
+ .e-small.e-rtl .e-input-group input.e-input,
2336
+ .e-small.e-rtl .e-input-group.e-control-wrapper input.e-input:focus,
2337
+ .e-small.e-rtl .e-input-group input.e-input:focus,
2338
+ .e-small.e-rtl .e-float-input.e-control-wrapper input:focus,
2339
+ .e-small.e-rtl .e-float-input input:focus,
2340
+ .e-small .e-input-group.e-control-wrapper.e-rtl input.e-input:focus,
2341
+ .e-small .e-input-group.e-rtl input.e-input:focus,
2342
+ .e-small .e-float-input.e-control-wrapper.e-rtl input:focus,
2343
+ .e-small .e-float-input.e-rtl input:focus,
2344
+ .e-small.e-rtl .e-input-group.e-control-wrapper.e-input-focus input.e-input,
2345
+ .e-small.e-rtl .e-input-group.e-input-focus input.e-input,
2346
+ .e-small .e-input-group.e-control-wrapper.e-rtl.e-input-focus input.e-input,
2347
+ .e-small .e-input-group.e-rtl.e-input-focus input.e-input,
2348
+ .e-small.e-rtl .e-float-input.e-control-wrapper.e-input-focus input,
2349
+ .e-small.e-rtl .e-float-input.e-input-focus input,
2350
+ .e-small .e-float-input.e-control-wrapper.e-rtl.e-input-focus input,
2351
+ .e-small .e-float-input.e-rtl.e-input-focus input {
2352
+ padding-left: 0;
2353
+ padding-right: 8px;
2354
+ text-indent: 0;
2355
+ }
2356
+
2357
+ .e-rtl textarea.e-input.e-small,
2358
+ textarea.e-input.e-small.e-rtl,
2359
+ .e-small.e-rtl textarea.e-input,
2360
+ .e-small textarea.e-input.e-rtl,
2361
+ .e-float-input:not(.e-outline).e-small.e-rtl textarea,
2362
+ .e-float-input:not(.e-outline).e-control-wrapper.e-small.e-rtl textarea,
2363
+ .e-input-group:not(.e-outline).e-small.e-rtl textarea.e-input,
2364
+ .e-input-group:not(.e-outline).e-control-wrapper.e-small.e-rtl textarea.e-input,
2365
+ .e-rtl .e-float-input:not(.e-outline).e-control-wrapper.e-small textarea,
2366
+ .e-rtl .e-float-input:not(.e-outline).e-small textarea,
2367
+ .e-rtl .e-input-group:not(.e-outline).e-small textarea.e-input,
2368
+ .e-rtl .e-input-group:not(.e-outline).e-control-wrapper.e-small textarea.e-input,
2369
+ .e-float-input:not(.e-outline).e-control-wrapper.e-rtl textarea.e-small,
2370
+ .e-float-input:not(.e-outline).e-rtl textarea.e-small,
2371
+ .e-input-group:not(.e-outline).e-rtl textarea.e-input.e-small,
2372
+ .e-input-group:not(.e-outline).e-control-wrapper.e-rtl textarea.e-input.e-small,
2373
+ .e-rtl .e-float-input:not(.e-outline).e-control-wrapper textarea.e-small,
2374
+ .e-rtl .e-float-input:not(.e-outline) textarea.e-small,
2375
+ .e-rtl .e-input-group:not(.e-outline) textarea.e-input.e-small,
2376
+ .e-rtl .e-input-group:not(.e-outline).e-control-wrapper textarea.e-input.e-small,
2377
+ .e-small .e-float-input:not(.e-outline).e-control-wrapper.e-rtl textarea,
2378
+ .e-small .e-float-input:not(.e-outline).e-rtl textarea,
2379
+ .e-small .e-input-group:not(.e-outline).e-rtl textarea.e-input,
2380
+ .e-small .e-input-group:not(.e-outline).e-control-wrapper.e-rtl textarea.e-input,
2381
+ .e-small.e-rtl .e-float-input:not(.e-outline).e-control-wrapper textarea,
2382
+ .e-small.e-rtl .e-float-input:not(.e-outline) textarea,
2383
+ .e-small.e-rtl .e-input-group:not(.e-outline) textarea.e-input,
2384
+ .e-small.e-rtl .e-input-group:not(.e-outline).e-control-wrapper textarea.e-input,
2385
+ .e-small.e-rtl .e-input-group:not(.e-outline) textarea.e-input:focus,
2386
+ .e-small.e-rtl .e-input-group:not(.e-outline).e-control-wrapper textarea.e-input:focus,
2387
+ .e-small.e-rtl .e-float-input:not(.e-outline).e-control-wrapper textarea:focus,
2388
+ .e-small.e-rtl .e-float-input:not(.e-outline) textarea:focus,
2389
+ .e-small .e-input-group:not(.e-outline).e-rtl textarea.e-input:focus,
2390
+ .e-small .e-input-group:not(.e-outline).e-control-wrapper.e-rtl textarea.e-input:focus,
2391
+ .e-small .e-float-input:not(.e-outline).e-control-wrapper.e-rtl textarea:focus,
2392
+ .e-small .e-float-input:not(.e-outline).e-rtl textarea:focus {
2393
+ padding-right: 8px;
2394
+ text-indent: 0;
2395
+ }
2396
+
2397
+ input.e-input.e-bigger,
2398
+ .e-bigger input.e-input,
2399
+ .e-input-group.e-bigger input.e-input,
2400
+ .e-input-group.e-control-wrapper.e-bigger input.e-input,
2401
+ .e-float-input.e-control-wrapper.e-bigger input,
2402
+ .e-float-input.e-control-wrapper input.e-bigger,
2403
+ .e-float-input.e-bigger input,
2404
+ .e-float-input input.e-bigger,
2405
+ .e-input-group input.e-input.e-bigger,
2406
+ .e-input-group.e-control-wrapper input.e-input.e-bigger,
2407
+ .e-bigger .e-float-input.e-control-wrapper input,
2408
+ .e-bigger .e-float-input input,
2409
+ .e-bigger .e-input-group.e-control-wrapper input.e-input,
2410
+ .e-bigger .e-input-group input.e-input,
2411
+ .e-input-group.e-bigger input.e-input:focus,
2412
+ .e-input-group.e-control-wrapper.e-bigger input.e-input:focus,
2413
+ .e-float-input.e-control-wrapper.e-bigger input:focus,
2414
+ .e-float-input.e-bigger input:focus,
2415
+ .e-bigger .e-input-group input.e-input:focus,
2416
+ .e-bigger .e-input-group.e-control-wrapper input.e-input:focus,
2417
+ .e-bigger .e-float-input.e-control-wrapper input:focus,
2418
+ .e-bigger .e-float-input input:focus,
2419
+ .e-input-group.e-bigger.e-input-focus input.e-input,
2420
+ .e-input-group.e-control-wrapper.e-bigger.e-input-focus input.e-input,
2421
+ .e-bigger .e-input-group.e-input-focus input.e-input,
2422
+ .e-bigger .e-input-group.e-control-wrapper.e-input-focus input.e-input,
2423
+ .e-float-input.e-control-wrapper.e-bigger.e-input-focus input,
2424
+ .e-float-input.e-bigger.e-input-focus input,
2425
+ .e-bigger .e-float-input.e-control-wrapper.e-input-focus input,
2426
+ .e-bigger .e-float-input.e-input-focus input {
2427
+ padding-left: 16px;
2428
+ text-indent: 0;
2429
+ }
2430
+
2431
+ .e-rtl input.e-input.e-bigger,
2432
+ input.e-input.e-bigger.e-rtl,
2433
+ .e-bigger.e-rtl input.e-input,
2434
+ .e-bigger input.e-input.e-rtl,
2435
+ .e-float-input.e-control-wrapper.e-bigger.e-rtl input,
2436
+ .e-float-input.e-bigger.e-rtl input,
2437
+ .e-input-group.e-bigger.e-rtl input.e-input,
2438
+ .e-input-group.e-control-wrapper.e-bigger.e-rtl input.e-input,
2439
+ .e-rtl .e-float-input.e-control-wrapper.e-bigger input,
2440
+ .e-rtl .e-float-input.e-bigger input,
2441
+ .e-rtl .e-input-group.e-bigger input.e-input,
2442
+ .e-rtl .e-input-group.e-control-wrapper.e-bigger input.e-input,
2443
+ .e-float-input.e-control-wrapper.e-rtl input.e-bigger,
2444
+ .e-float-input.e-rtl input.e-bigger,
2445
+ .e-input-group.e-rtl input.e-input.e-bigger,
2446
+ .e-input-group.e-control-wrapper.e-rtl input.e-input.e-bigger,
2447
+ .e-rtl .e-float-input.e-control-wrapper input.e-bigger,
2448
+ .e-rtl .e-float-input input.e-bigger,
2449
+ .e-rtl .e-input-group input.e-input.e-bigger,
2450
+ .e-rtl .e-input-group.e-control-wrapper input.e-input.e-bigger,
2451
+ .e-bigger .e-float-input.e-control-wrapper.e-rtl input,
2452
+ .e-bigger .e-float-input.e-rtl input,
2453
+ .e-bigger .e-input-group.e-rtl input.e-input,
2454
+ .e-bigger .e-input-group.e-control-wrapper.e-rtl input.e-input,
2455
+ .e-bigger.e-rtl .e-float-input.e-control-wrapper input,
2456
+ .e-bigger.e-rtl .e-float-input input,
2457
+ .e-bigger.e-rtl .e-input-group input.e-input,
2458
+ .e-bigger.e-rtl .e-input-group.e-control-wrapper input.e-input,
2459
+ .e-bigger.e-rtl .e-input-group input.e-input:focus,
2460
+ .e-bigger.e-rtl .e-input-group.e-control-wrapper input.e-input:focus,
2461
+ .e-bigger.e-rtl .e-float-input.e-control-wrapper input:focus,
2462
+ .e-bigger.e-rtl .e-float-input input:focus,
2463
+ .e-bigger .e-input-group.e-rtl input.e-input:focus,
2464
+ .e-bigger .e-input-group.e-control-wrapper.e-rtl input.e-input:focus,
2465
+ .e-bigger .e-float-input.e-rtl input:focus,
2466
+ .e-bigger .e-float-input.e-control-wrapper.e-rtl input:focus,
2467
+ .e-bigger.e-rtl .e-input-group.e-input-focus input.e-input,
2468
+ .e-bigger.e-rtl .e-input-group.e-control-wrapper.e-input-focus input.e-input,
2469
+ .e-bigger .e-input-group.e-rtl.e-input-focus input.e-input,
2470
+ .e-bigger .e-input-group.e-control-wrapper.e-rtl.e-input-focus input.e-input,
2471
+ .e-bigger.e-rtl .e-float-input.e-control-wrapper.e-input-focus input,
2472
+ .e-bigger.e-rtl .e-float-input.e-input-focus input,
2473
+ .e-bigger .e-float-input.e-rtl.e-input-focus input,
2474
+ .e-bigger .e-float-input.e-control-wrapper.e-rtl.e-input-focus input {
2475
+ padding-left: 0;
2476
+ padding-right: 16px;
2477
+ text-indent: 0;
2478
+ }
2479
+
2480
+ textarea.e-input.e-bigger,
2481
+ .e-bigger textarea.e-input,
2482
+ .e-input-group.e-bigger textarea.e-input,
2483
+ .e-input-group.e-control-wrapper.e-bigger textarea.e-input,
2484
+ .e-float-input.e-control-wrapper.e-bigger textarea,
2485
+ .e-float-input.e-control-wrapper textarea.e-bigger,
2486
+ .e-float-input.e-bigger textarea,
2487
+ .e-float-input textarea.e-bigger,
2488
+ .e-input-group textarea.e-input.e-bigger,
2489
+ .e-input-group.e-control-wrapper textarea.e-input.e-bigger,
2490
+ .e-bigger .e-float-input.e-control-wrapper textarea,
2491
+ .e-bigger .e-float-input textarea,
2492
+ .e-bigger .e-input-group textarea.e-input,
2493
+ .e-bigger .e-input-group.e-control-wrapper textarea.e-input,
2494
+ .e-input-group.e-bigger textarea.e-input:focus,
2495
+ .e-input-group.e-control-wrapper.e-bigger textarea.e-input:focus,
2496
+ .e-float-input.e-control-wrapper.e-bigger textarea:focus,
2497
+ .e-float-input.e-bigger textarea:focus,
2498
+ .e-bigger .e-input-group textarea.e-input:focus,
2499
+ .e-bigger .e-input-group.e-control-wrapper textarea.e-input:focus,
2500
+ .e-bigger .e-float-input.e-control-wrapper textarea:focus,
2501
+ .e-bigger .e-float-input textarea:focus {
2502
+ padding-left: 16px;
2503
+ text-indent: 0;
2504
+ }
2505
+
2506
+ .e-rtl textarea.e-input.e-bigger,
2507
+ textarea.e-input.e-bigger.e-rtl,
2508
+ .e-bigger.e-rtl textarea.e-input,
2509
+ .e-bigger textarea.e-input.e-rtl,
2510
+ .e-float-input.e-control-wrapper:not(.e-outline).e-bigger.e-rtl textarea,
2511
+ .e-float-input:not(.e-outline).e-bigger.e-rtl textarea,
2512
+ .e-input-group:not(.e-outline).e-bigger.e-rtl textarea.e-input,
2513
+ .e-input-group:not(.e-outline).e-control-wrapper.e-bigger.e-rtl textarea.e-input,
2514
+ .e-rtl .e-float-input:not(.e-outline).e-control-wrapper.e-bigger textarea,
2515
+ .e-rtl .e-float-input:not(.e-outline).e-bigger textarea,
2516
+ .e-rtl .e-input-group:not(.e-outline).e-bigger textarea.e-input,
2517
+ .e-rtl .e-input-group:not(.e-outline).e-control-wrapper.e-bigger textarea.e-input,
2518
+ .e-float-input:not(.e-outline).e-rtl textarea.e-bigger,
2519
+ .e-float-input:not(.e-outline).e-control-wrapper.e-rtl textarea.e-bigger,
2520
+ .e-input-group:not(.e-outline).e-rtl textarea.e-input.e-bigger,
2521
+ .e-input-group:not(.e-outline).e-control-wrapper.e-rtl textarea.e-input.e-bigger,
2522
+ .e-rtl .e-float-input:not(.e-outline) textarea.e-bigger,
2523
+ .e-rtl .e-float-input:not(.e-outline).e-control-wrapper textarea.e-bigger,
2524
+ .e-rtl .e-input-group:not(.e-outline) textarea.e-input.e-bigger,
2525
+ .e-rtl .e-input-group:not(.e-outline).e-control-wrapper textarea.e-input.e-bigger,
2526
+ .e-bigger .e-float-input:not(.e-outline).e-rtl textarea,
2527
+ .e-bigger .e-float-input:not(.e-outline).e-control-wrapper.e-rtl textarea,
2528
+ .e-bigger .e-input-group:not(.e-outline).e-rtl textarea.e-input,
2529
+ .e-bigger .e-input-group:not(.e-outline).e-control-wrapper.e-rtl textarea.e-input,
2530
+ .e-bigger.e-rtl .e-float-input:not(.e-outline) textarea,
2531
+ .e-bigger.e-rtl .e-float-input:not(.e-outline).e-control-wrapper textarea,
2532
+ .e-bigger.e-rtl .e-input-group:not(.e-outline) textarea.e-input,
2533
+ .e-bigger.e-rtl .e-input-group:not(.e-outline).e-control-wrapper textarea.e-input,
2534
+ .e-bigger.e-rtl .e-input-group:not(.e-outline) textarea.e-input:focus,
2535
+ .e-bigger.e-rtl .e-input-group:not(.e-outline).e-control-wrapper textarea.e-input:focus,
2536
+ .e-bigger.e-rtl .e-float-input:not(.e-outline) textarea:focus,
2537
+ .e-bigger.e-rtl .e-float-input:not(.e-outline).e-control-wrapper textarea:focus,
2538
+ .e-bigger .e-input-group:not(.e-outline).e-rtl textarea.e-input:focus,
2539
+ .e-bigger .e-input-group:not(.e-outline).e-control-wrapper.e-rtl textarea.e-input:focus,
2540
+ .e-bigger .e-float-input:not(.e-outline).e-rtl textarea:focus,
2541
+ .e-bigger .e-float-input:not(.e-outline).e-control-wrapper.e-rtl textarea:focus {
2542
+ padding-right: 16px;
2543
+ text-indent: 0;
2544
+ }
2545
+
2546
+ input.e-input.e-bigger.e-small,
2547
+ .e-bigger input.e-input.e-small,
2548
+ .e-input-group.e-small.e-bigger input.e-input,
2549
+ .e-input-group.e-control-wrapper.e-small.e-bigger input.e-input,
2550
+ .e-input-group.e-small input.e-input.e-bigger,
2551
+ .e-input-group.e-control-wrapper.e-small input.e-input.e-bigger,
2552
+ .e-bigger .e-input-group.e-small input.e-input,
2553
+ .e-bigger .e-input-group.e-control-wrapper.e-small input.e-input,
2554
+ .e-float-input.e-small.e-bigger input,
2555
+ .e-float-input.e-small input.e-bigger,
2556
+ .e-bigger .e-float-input.e-small input,
2557
+ .e-float-input.e-control-wrapper.e-small.e-bigger input,
2558
+ .e-float-input.e-control-wrapper.e-small input.e-bigger,
2559
+ .e-bigger .e-float-input.e-control-wrapper.e-small input,
2560
+ .e-bigger .e-input-group.e-small input.e-input:focus,
2561
+ .e-bigger .e-input-group.e-control-wrapper.e-small input.e-input:focus,
2562
+ .e-bigger .e-float-input.e-control-wrapper.e-small input:focus,
2563
+ .e-bigger .e-float-input.e-small input:focus,
2564
+ .e-small .e-input-group.e-bigger input.e-input:focus,
2565
+ .e-small .e-input-group.e-control-wrapper.e-bigger input.e-input:focus,
2566
+ .e-small .e-float-input.e-control-wrapper.e-bigger input:focus,
2567
+ .e-small .e-float-input.e-bigger input:focus,
2568
+ .e-input-group.e-bigger.e-small input.e-input:focus,
2569
+ .e-input-group.e-control-wrapper.e-bigger.e-small input.e-input:focus,
2570
+ .e-float-input.e-control-wrapper.e-bigger.e-small input:focus,
2571
+ .e-float-input.e-bigger.e-small input:focus,
2572
+ .e-bigger .e-input-group.e-small.e-input-focus input.e-input,
2573
+ .e-bigger .e-input-group.e-control-wrapper.e-small.e-input-focus input.e-input,
2574
+ .e-small .e-input-group.e-bigger.e-input-focus input.e-input,
2575
+ .e-small .e-input-group.e-control-wrapper.e-bigger.e-input-focus input.e-input,
2576
+ .e-input-group.e-bigger.e-small.e-input-focus input.e-input,
2577
+ .e-input-group.e-control-wrapper.e-bigger.e-small.e-input-focus input.e-input,
2578
+ .e-bigger .e-float-input.e-control-wrapper.e-small.e-input-focus input,
2579
+ .e-bigger .e-float-input.e-small.e-input-focus input,
2580
+ .e-small .e-float-input.e-control-wrapper.e-bigger.e-input-focus input,
2581
+ .e-small .e-float-input.e-bigger.e-input-focus input,
2582
+ .e-float-input.e-control-wrapper.e-bigger.e-small.e-input-focus input,
2583
+ .e-float-input.e-bigger.e-small.e-input-focus input {
2584
+ padding-left: 14px;
2585
+ text-indent: 0;
2586
+ }
2587
+
2588
+ .e-bigger input.e-input.e-small.e-rtl,
2589
+ .e-input-group.e-small.e-bigger.e-rtl input.e-input,
2590
+ .e-input-group.e-control-wrapper.e-small.e-bigger.e-rtl input.e-input,
2591
+ .e-input-group.e-small.e-rtl input.e-input.e-bigger,
2592
+ .e-input-group.e-control-wrapper.e-small.e-rtl input.e-input.e-bigger,
2593
+ .e-bigger .e-input-group.e-small.e-rtl input.e-input,
2594
+ .e-bigger .e-input-group.e-control-wrapper.e-small.e-rtl input.e-input,
2595
+ .e-float-input.e-small.e-bigger.e-rtl input,
2596
+ .e-float-input.e-small.e-rtl input.e-bigger,
2597
+ .e-bigger .e-float-input.e-small.e-rtl input,
2598
+ .e-float-input.e-control-wrapper.e-small.e-bigger.e-rtl input,
2599
+ .e-float-input.e-control-wrapper.e-small.e-rtl input.e-bigger,
2600
+ .e-bigger .e-float-input.e-control-wrapper.e-small.e-rtl input,
2601
+ .e-bigger.e-rtl input.e-input.e-small,
2602
+ .e-rtl .e-input-group.e-small.e-bigger input.e-input,
2603
+ .e-rtl .e-input-group.e-control-wrapper.e-small.e-bigger input.e-input,
2604
+ .e-rtl .e-input-group.e-small input.e-input.e-bigger,
2605
+ .e-rtl .e-input-group.e-control-wrapper.e-small input.e-input.e-bigger,
2606
+ .e-bigger.e-rtl .e-input-group.e-small input.e-input,
2607
+ .e-bigger.e-rtl .e-input-group.e-control-wrapper.e-small input.e-input,
2608
+ .e-rtl .e-float-input.e-control-wrapper.e-small.e-bigger input,
2609
+ .e-rtl .e-float-input.e-control-wrapper.e-small input.e-bigger,
2610
+ .e-bigger.e-rtl .e-float-input.e-control-wrapper.e-small input,
2611
+ .e-rtl .e-float-input.e-small.e-bigger input,
2612
+ .e-rtl .e-float-input.e-small input.e-bigger,
2613
+ .e-bigger.e-rtl .e-float-input.e-small input,
2614
+ .e-bigger .e-input-group.e-small.e-rtl input.e-input:focus,
2615
+ .e-bigger .e-input-group.e-control-wrapper.e-small.e-rtl input.e-input:focus,
2616
+ .e-bigger .e-float-input.e-control-wrapper.e-small.e-rtl input:focus,
2617
+ .e-bigger .e-float-input.e-small.e-rtl input:focus,
2618
+ .e-small .e-input-group.e-bigger.e-rtl input.e-input:focus,
2619
+ .e-small .e-input-group.e-control-wrapper.e-bigger.e-rtl input.e-input:focus,
2620
+ .e-small .e-float-input.e-control-wrapper.e-bigger.e-rtl input:focus,
2621
+ .e-small .e-float-input.e-bigger.e-rtl input:focus,
2622
+ .e-input-group.e-bigger.e-small.e-rtl input.e-input:focus,
2623
+ .e-input-group.e-control-wrapper.e-bigger.e-small.e-rtl input.e-input:focus,
2624
+ .e-float-input.e-control-wrapper.e-bigger.e-small.e-rtl input:focus,
2625
+ .e-float-input.e-bigger.e-small.e-rtl input:focus,
2626
+ .e-bigger.e-rtl .e-input-group.e-small input.e-input:focus,
2627
+ .e-bigger.e-rtl .e-input-group.e-control-wrapper.e-small input.e-input:focus,
2628
+ .e-bigger.e-rtl .e-float-input.e-control-wrapper.e-small input:focus,
2629
+ .e-bigger.e-rtl .e-float-input.e-small input:focus,
2630
+ .e-small.e-rtl .e-input-group.e-bigger input.e-input:focus,
2631
+ .e-small.e-rtl .e-input-group.e-control-wrapper.e-bigger input.e-input:focus,
2632
+ .e-small.e-rtl .e-float-input.e-control-wrapper.e-bigger input:focus,
2633
+ .e-small.e-rtl .e-float-input.e-bigger input:focus,
2634
+ .e-rtl .e-input-group.e-bigger.e-small input.e-input:focus,
2635
+ .e-rtl .e-input-group.e-control-wrapper.e-bigger.e-small input.e-input:focus,
2636
+ .e-rtl .e-float-input.e-control-wrapper.e-bigger.e-small input:focus,
2637
+ .e-rtl .e-float-input.e-bigger.e-small input:focus,
2638
+ .e-bigger .e-float-input.e-control-wrapper.e-small.e-rtl.e-input-focus input,
2639
+ .e-bigger .e-float-input.e-small.e-rtl.e-input-focus input,
2640
+ .e-small .e-float-input.e-control-wrapper.e-bigger.e-rtl.e-input-focus input,
2641
+ .e-small .e-float-input.e-bigger.e-rtl.e-input-focus input,
2642
+ .e-float-input.e-control-wrapper.e-bigger.e-small.e-rtl.e-input-focus input,
2643
+ .e-float-input.e-bigger.e-small.e-rtl.e-input-focus input,
2644
+ .e-bigger.e-rtl .e-float-input.e-control-wrapper.e-small.e-input-focus input,
2645
+ .e-bigger.e-rtl .e-float-input.e-small.e-input-focus input,
2646
+ .e-small.e-rtl .e-float-input.e-control-wrapper.e-bigger.e-input-focus input,
2647
+ .e-small.e-rtl .e-float-input.e-bigger.e-input-focus input,
2648
+ .e-rtl .e-float-input.e-control-wrapper.e-bigger.e-small.e-input-focus input,
2649
+ .e-rtl .e-float-input.e-bigger.e-small.e-input-focus input,
2650
+ .e-bigger .e-input-group.e-small.e-rtl.e-input-focus input.e-input,
2651
+ .e-bigger .e-input-group.e-control-wrapper.e-small.e-rtl.e-input-focus input.e-input,
2652
+ .e-small .e-input-group.e-bigger.e-rtl.e-input-focus input.e-input,
2653
+ .e-small .e-input-group.e-control-wrapper.e-bigger.e-rtl.e-input-focus input.e-input,
2654
+ .e-input-group.e-bigger.e-small.e-rtl.e-input-focus input.e-input,
2655
+ .e-input-group.e-control-wrapper.e-bigger.e-small.e-rtl.e-input-focus input.e-input,
2656
+ .e-bigger.e-rtl .e-input-group.e-small.e-input-focus input.e-input,
2657
+ .e-bigger.e-rtl .e-input-group.e-control-wrapper.e-small.e-input-focus input.e-input,
2658
+ .e-small.e-rtl .e-input-group.e-bigger.e-input-focus input.e-input,
2659
+ .e-small.e-rtl .e-input-group.e-control-wrapper.e-bigger.e-input-focus input.e-input,
2660
+ .e-rtl .e-input-group.e-bigger.e-small.e-input-focus input.e-input,
2661
+ .e-rtl .e-input-group.e-control-wrapper.e-bigger.e-small.e-input-focus input.e-input {
2662
+ padding-left: 0;
2663
+ padding-right: 14px;
2664
+ text-indent: 0;
2665
+ }
2666
+
2667
+ textarea.e-input.e-bigger.e-small,
2668
+ .e-bigger textarea.e-input.e-small,
2669
+ .e-input-group.e-small.e-bigger textarea.e-input,
2670
+ .e-input-group.e-control-wrapper.e-small.e-bigger textarea.e-input,
2671
+ .e-input-group.e-small textarea.e-input.e-bigger,
2672
+ .e-input-group.e-control-wrapper.e-small textarea.e-input.e-bigger,
2673
+ .e-bigger .e-input-group.e-small textarea.e-input,
2674
+ .e-bigger .e-input-group.e-control-wrapper.e-small textarea.e-input,
2675
+ .e-float-input.e-small.e-bigger textarea,
2676
+ .e-float-input.e-small textarea.e-bigger,
2677
+ .e-bigger .e-float-input.e-small textarea,
2678
+ .e-float-input.e-control-wrapper.e-small.e-bigger textarea,
2679
+ .e-float-input.e-control-wrapper.e-small textarea.e-bigger,
2680
+ .e-bigger .e-float-input.e-control-wrapper.e-small textarea,
2681
+ .e-bigger .e-input-group.e-small textarea.e-input:focus,
2682
+ .e-bigger .e-input-group.e-control-wrapper.e-small textarea.e-input:focus,
2683
+ .e-bigger .e-float-input.e-control-wrapper.e-small textarea:focus,
2684
+ .e-bigger .e-float-input.e-small textarea:focus,
2685
+ .e-small .e-input-group.e-bigger textarea.e-input:focus,
2686
+ .e-small .e-input-group.e-control-wrapper.e-bigger textarea.e-input:focus,
2687
+ .e-small .e-float-input.e-control-wrapper.e-bigger textarea:focus,
2688
+ .e-small .e-float-input.e-bigger textarea:focus,
2689
+ .e-input-group.e-bigger.e-small textarea.e-input:focus,
2690
+ .e-input-group.e-control-wrapper.e-bigger.e-small textarea.e-input:focus,
2691
+ .e-float-input.e-control-wrapper.e-bigger.e-small textarea:focus,
2692
+ .e-float-input.e-bigger.e-small textarea:focus {
2693
+ padding-left: 14px;
2694
+ text-indent: 0;
2695
+ }
2696
+
2697
+ .e-bigger .e-input-group.e-small textarea.e-input:focus,
2698
+ .e-bigger .e-input-group.e-control-wrapper.e-small textarea.e-input:focus,
2699
+ .e-bigger .e-float-input.e-control-wrapper.e-small textarea:focus,
2700
+ .e-bigger .e-float-input.e-small textarea:focus,
2701
+ .e-small .e-input-group.e-bigger textarea.e-input:focus,
2702
+ .e-small .e-input-group.e-control-wrapper.e-bigger textarea.e-input:focus,
2703
+ .e-small .e-float-input.e-control-wrapper.e-bigger textarea:focus,
2704
+ .e-small .e-float-input.e-bigger textarea:focus,
2705
+ .e-input-group.e-bigger.e-small textarea.e-input:focus,
2706
+ .e-input-group.e-bigger textarea.e-input:focus,
2707
+ .e-input-group.e-small textarea.e-input:focus,
2708
+ .e-input-group textarea.e-input:focus,
2709
+ .e-input-group.e-control-wrapper.e-bigger.e-small textarea.e-input:focus,
2710
+ .e-float-input.e-control-wrapper.e-bigger.e-small textarea:focus,
2711
+ .e-float-input.e-bigger.e-small textarea:focus {
2712
+ box-shadow: 0 0 0 1px #4f46e5;
2713
+ }
2714
+
2715
+ .e-bigger textarea.e-input.e-small.e-rtl,
2716
+ .e-input-group:not(.e-outline).e-small.e-bigger.e-rtl textarea.e-input,
2717
+ .e-input-group:not(.e-outline).e-control-wrapper.e-small.e-bigger.e-rtl textarea.e-input,
2718
+ .e-input-group:not(.e-outline).e-small.e-rtl textarea.e-input.e-bigger,
2719
+ .e-input-group:not(.e-outline).e-control-wrapper.e-small.e-rtl textarea.e-input.e-bigger,
2720
+ .e-bigger .e-input-group:not(.e-outline).e-small.e-rtl textarea.e-input,
2721
+ .e-bigger .e-input-group:not(.e-outline).e-control-wrapper.e-small.e-rtl textarea.e-input,
2722
+ .e-float-input:not(.e-outline).e-small.e-bigger.e-rtl textarea,
2723
+ .e-float-input:not(.e-outline).e-small.e-rtl textarea.e-bigger,
2724
+ .e-bigger .e-float-input:not(.e-outline).e-small.e-rtl textarea,
2725
+ .e-float-input:not(.e-outline).e-control-wrapper.e-small.e-bigger.e-rtl textarea,
2726
+ .e-float-input:not(.e-outline).e-control-wrapper.e-small.e-rtl textarea.e-bigger,
2727
+ .e-bigger .e-float-input:not(.e-outline).e-control-wrapper.e-small.e-rtl textarea,
2728
+ .e-bigger.e-rtl textarea.e-input.e-small,
2729
+ .e-rtl .e-input-group:not(.e-outline).e-small.e-bigger textarea.e-input,
2730
+ .e-rtl .e-input-group:not(.e-outline).e-control-wrapper.e-small.e-bigger textarea.e-input,
2731
+ .e-rtl .e-input-group:not(.e-outline).e-small textarea.e-input.e-bigger,
2732
+ .e-rtl .e-input-group:not(.e-outline).e-control-wrapper.e-small textarea.e-input.e-bigger,
2733
+ .e-bigger.e-rtl .e-input-group:not(.e-outline).e-small textarea.e-input,
2734
+ .e-bigger.e-rtl .e-input-group:not(.e-outline).e-control-wrapper.e-small textarea.e-input,
2735
+ .e-rtl .e-float-input:not(.e-outline).e-control-wrapper.e-small.e-bigger textarea,
2736
+ .e-rtl .e-float-input:not(.e-outline).e-small textarea.e-bigger,
2737
+ .e-bigger.e-rtl .e-float-input:not(.e-outline).e-control-wrapper.e-small textarea,
2738
+ .e-rtl .e-float-input:not(.e-outline).e-control-wrapper.e-small.e-bigger textarea,
2739
+ .e-rtl .e-float-input:not(.e-outline).e-small textarea.e-bigger,
2740
+ .e-bigger.e-rtl .e-float-input:not(.e-outline).e-small textarea,
2741
+ .e-bigger.e-rtl .e-float-input:not(.e-outline).e-small.e-control-wrapper textarea,
2742
+ .e-bigger .e-input-group:not(.e-outline).e-small.e-rtl textarea.e-input:focus,
2743
+ .e-bigger .e-input-group:not(.e-outline).e-control-wrapper.e-small.e-rtl textarea.e-input:focus,
2744
+ .e-bigger .e-float-input:not(.e-outline).e-control-wrapper.e-small.e-rtl textarea:focus,
2745
+ .e-bigger .e-float-input:not(.e-outline).e-small.e-rtl textarea:focus,
2746
+ .e-small .e-input-group:not(.e-outline).e-bigger.e-rtl textarea.e-input:focus,
2747
+ .e-small .e-input-group:not(.e-outline).e-control-wrapper.e-bigger.e-rtl textarea.e-input:focus,
2748
+ .e-small .e-float-input:not(.e-outline).e-control-wrapper.e-bigger.e-rtl textarea:focus,
2749
+ .e-small .e-float-input:not(.e-outline).e-bigger.e-rtl textarea:focus,
2750
+ .e-input-group:not(.e-outline).e-bigger.e-small.e-rtl textarea.e-input:focus,
2751
+ .e-input-group:not(.e-outline).e-control-wrapper.e-bigger.e-small.e-rtl textarea.e-input:focus,
2752
+ .e-float-input:not(.e-outline).e-control-wrapper.e-bigger.e-small.e-rtl textarea:focus,
2753
+ .e-float-input:not(.e-outline).e-bigger.e-small.e-rtl textarea:focus,
2754
+ .e-bigger.e-rtl .e-input-group:not(.e-outline).e-small textarea.e-input:focus,
2755
+ .e-bigger.e-rtl .e-input-group:not(.e-outline).e-control-wrapper.e-small textarea.e-input:focus,
2756
+ .e-bigger.e-rtl .e-float-input:not(.e-outline).e-control-wrapper.e-small textarea:focus,
2757
+ .e-bigger.e-rtl .e-float-input:not(.e-outline).e-small textarea:focus,
2758
+ .e-small.e-rtl .e-input-group:not(.e-outline).e-bigger textarea.e-input:focus,
2759
+ .e-small.e-rtl .e-input-group:not(.e-outline).e-control-wrapper.e-bigger textarea.e-input:focus,
2760
+ .e-small.e-rtl .e-float-input:not(.e-outline).e-control-wrapper.e-bigger textarea:focus,
2761
+ .e-small.e-rtl .e-float-input:not(.e-outline).e-bigger textarea:focus,
2762
+ .e-rtl .e-input-group:not(.e-outline).e-bigger.e-small textarea.e-input:focus,
2763
+ .e-rtl .e-input-group:not(.e-outline).e-control-wrapper.e-bigger.e-small textarea.e-input:focus,
2764
+ .e-rtl .e-float-input:not(.e-outline).e-control-wrapper.e-bigger.e-small textarea:focus,
2765
+ .e-rtl .e-float-input:not(.e-outline).e-bigger.e-small textarea:focus {
2766
+ padding-right: 14px;
2767
+ text-indent: 0;
2768
+ }
2769
+
2770
+ .e-float-input .e-clear-icon,
2771
+ .e-float-input.e-control-wrapper .e-clear-icon,
2772
+ .e-input-group .e-clear-icon,
2773
+ .e-input-group.e-control-wrapper .e-clear-icon {
2774
+ background: transparent;
2775
+ border: 0;
2776
+ cursor: pointer;
2777
+ display: -ms-flexbox;
2778
+ display: flex;
2779
+ -ms-flex-direction: column;
2780
+ flex-direction: column;
2781
+ -ms-flex-pack: center;
2782
+ justify-content: center;
2783
+ line-height: 1;
2784
+ min-width: 24px;
2785
+ outline: none;
2786
+ padding: 0;
2787
+ text-align: center;
2788
+ }
2789
+
2790
+ .e-float-input .e-clear-icon::before,
2791
+ .e-float-input.e-control-wrapper .e-clear-icon::before,
2792
+ .e-input-group .e-clear-icon::before,
2793
+ .e-input-group.e-control-wrapper .e-clear-icon::before {
2794
+ font-size: 18px;
2795
+ padding: 0;
2796
+ text-align: center;
2797
+ vertical-align: middle;
2798
+ }
2799
+
2800
+ .e-float-input.e-static-clear .e-clear-icon.e-clear-icon-hide,
2801
+ .e-float-input.e-control-wrapper.e-static-clear .e-clear-icon.e-clear-icon-hide,
2802
+ .e-input-group.e-static-clear .e-clear-icon.e-clear-icon-hide,
2803
+ .e-input-group.e-control-wrapper.e-static-clear .e-clear-icon.e-clear-icon-hide {
2804
+ cursor: pointer;
2805
+ display: -ms-flexbox;
2806
+ display: flex;
2807
+ }
2808
+
2809
+ .e-float-input.e-small.e-bigger .e-clear-icon,
2810
+ .e-float-input.e-control-wrapper.e-small.e-bigger .e-clear-icon,
2811
+ .e-input-group.e-small.e-bigger .e-clear-icon,
2812
+ .e-input-group.e-control-wrapper.e-small.e-bigger .e-clear-icon,
2813
+ .e-small .e-input-group.e-bigger input:first-child ~ .e-clear-icon,
2814
+ .e-small .e-input-group.e-control-wrapper.e-bigger input:first-child ~ .e-clear-icon,
2815
+ .e-bigger .e-input-group.e-small input:first-child ~ .e-clear-icon,
2816
+ .e-bigger .e-input-group.e-control-wrapper.e-small input:first-child ~ .e-clear-icon,
2817
+ .e-small .e-float-input.e-control-wrapper.e-bigger input:first-child ~ .e-clear-icon,
2818
+ .e-small .e-float-input.e-bigger input:first-child ~ .e-clear-icon,
2819
+ .e-bigger .e-float-input.e-control-wrapper.e-small input:first-child ~ .e-clear-icon,
2820
+ .e-bigger .e-float-input.e-small input:first-child ~ .e-clear-icon {
2821
+ padding-bottom: 0;
2822
+ }
2823
+
2824
+ .e-float-input.e-small .e-clear-icon::before,
2825
+ .e-float-input.e-control-wrapper.e-small .e-clear-icon::before,
2826
+ .e-input-group.e-small .e-clear-icon::before,
2827
+ .e-input-group.e-control-wrapper.e-small .e-clear-icon::before,
2828
+ .e-float-input.e-control-wrapper input.e-small:first-child ~ .e-clear-icon::before,
2829
+ .e-small .e-float-input.e-control-wrapper .e-clear-icon::before,
2830
+ .e-float-input input.e-small:first-child ~ .e-clear-icon::before,
2831
+ .e-small .e-float-input .e-clear-icon::before,
2832
+ .e-small .e-input-group .e-clear-icon::before,
2833
+ .e-small .e-input-group.e-control-wrapper .e-clear-icon::before {
2834
+ font-size: 16px;
2835
+ }
2836
+
2837
+ .e-float-input.e-bigger .e-clear-icon::before,
2838
+ .e-float-input.e-control-wrapper.e-bigger .e-clear-icon::before,
2839
+ .e-input-group.e-bigger .e-clear-icon::before,
2840
+ .e-input-group.e-control-wrapper.e-bigger .e-clear-icon::before,
2841
+ .e-float-input.e-control-wrapper input.e-bigger:first-child ~ .e-clear-icon::before,
2842
+ .e-bigger .e-float-input.e-control-wrapper .e-clear-icon::before,
2843
+ .e-float-input input.e-bigger:first-child ~ .e-clear-icon::before,
2844
+ .e-bigger .e-float-input .e-clear-icon::before,
2845
+ .e-bigger .e-input-group .e-clear-icon::before,
2846
+ .e-bigger .e-input-group.e-control-wrapper .e-clear-icon::before {
2847
+ font-size: 22px;
2848
+ }
2849
+
2850
+ .e-float-input.e-small.e-bigger .e-clear-icon::before,
2851
+ .e-float-input.e-control-wrapper.e-small.e-bigger .e-clear-icon::before,
2852
+ .e-input-group.e-small.e-bigger .e-clear-icon::before,
2853
+ .e-input-group.e-control-wrapper.e-small.e-bigger .e-clear-icon::before,
2854
+ .e-small.e-bigger .e-float-input .e-clear-icon::before,
2855
+ .e-small.e-bigger .e-float-input.e-control-wrapper .e-clear-icon::before,
2856
+ .e-small.e-bigger .e-input-group .e-clear-icon::before,
2857
+ .e-small.e-bigger .e-input-group.e-control-wrapper .e-clear-icon::before,
2858
+ .e-small .e-input-group.e-bigger input:first-child ~ .e-clear-icon::before,
2859
+ .e-small .e-input-group.e-control-wrapper.e-bigger input:first-child ~ .e-clear-icon::before,
2860
+ .e-bigger .e-input-group.e-small input:first-child ~ .e-clear-icon::before,
2861
+ .e-bigger .e-input-group.e-control-wrapper.e-small input:first-child ~ .e-clear-icon::before,
2862
+ .e-small .e-float-input.e-control-wrapper.e-bigger input:first-child ~ .e-clear-icon::before,
2863
+ .e-small .e-float-input.e-bigger input:first-child ~ .e-clear-icon::before,
2864
+ .e-bigger .e-float-input.e-control-wrapper.e-small input:first-child ~ .e-clear-icon::before,
2865
+ .e-bigger .e-float-input.e-small input:first-child ~ .e-clear-icon::before {
2866
+ font-size: 20px;
2867
+ }
2868
+
2869
+ .e-input:not(:valid):not(.e-control):first-child ~ .e-clear-icon,
2870
+ .e-input-group input:not(.e-control).e-input:not(:valid):first-child ~ .e-clear-icon,
2871
+ .e-input-group.e-control-wrapper input.e-input:not(:valid):not(.e-control):first-child ~ .e-clear-icon,
2872
+ .e-float-input input:not(:valid):not(.e-control):first-child ~ .e-clear-icon,
2873
+ .e-float-input.e-control-wrapper input:not(:valid):not(.e-control):first-child ~ .e-clear-icon,
2874
+ .e-float-input.e-input-group input:not(:valid):not(.e-control):first-child ~ .e-clear-icon,
2875
+ .e-float-input.e-input-group.e-control-wrapper input:not(:valid):not(.e-control):first-child ~ .e-clear-icon {
2876
+ display: none;
2877
+ }
2878
+
2879
+ .e-input-group .e-clear-icon.e-clear-icon-hide,
2880
+ .e-input-group.e-control-wrapper .e-clear-icon.e-clear-icon-hide {
2881
+ display: none;
2882
+ }
2883
+
2884
+ .e-input-group.e-static-clear .e-clear-icon.e-clear-icon-hide,
2885
+ .e-input-group.e-control-wrapper.e-static-clear .e-clear-icon.e-clear-icon-hide {
2886
+ cursor: pointer;
2887
+ }
2888
+
2889
+ .e-input-group.e-disabled input.e-input:not(:valid):first-child ~ .e-clear-icon,
2890
+ .e-input-group.e-control-wrapper.e-disabled input.e-input:not(:valid):first-child ~ .e-clear-icon,
2891
+ .e-float-input.e-disabled input:not(:valid):first-child ~ .e-clear-icon,
2892
+ .e-float-input.e-input-group.e-disabled input:not(:valid):first-child ~ .e-clear-icon,
2893
+ .e-float-input.e-input-group.e-control-wrapper.e-disabled input:not(:valid):first-child ~ .e-clear-icon,
2894
+ .e-float-input.e-control-wrapper.e-disabled input:not(:valid):first-child ~ .e-clear-icon,
2895
+ .e-input-group.e-disabled .e-clear-icon.e-clear-icon-hide,
2896
+ .e-input-group.e-control-wrapper.e-disabled .e-clear-icon.e-clear-icon-hide {
2897
+ cursor: not-allowed;
2898
+ }
2899
+
2900
+ .e-float-input.e-control-wrapper input[readonly]:first-child ~ .e-clear-icon,
2901
+ .e-float-input.e-control-wrapper.e-input-group input[readonly]:first-child ~ .e-clear-icon,
2902
+ .e-float-input input[readonly]:first-child ~ .e-clear-icon,
2903
+ .e-float-input.e-input-group input[readonly]:first-child ~ .e-clear-icon,
2904
+ .e-input-group input[readonly]:first-child ~ .e-clear-icon.e-clear-icon-hide,
2905
+ .e-float-input.e-control-wrapper.e-input-group input[readonly]:first-child ~ .e-clear-icon,
2906
+ .e-float-input.e-input-group.e-control-wrapper input[readonly]:first-child ~ .e-clear-icon,
2907
+ .e-input-group.e-control-wrapper input[readonly]:first-child .e-clear-icon.e-clear-icon-hide {
2908
+ cursor: auto;
2909
+ }
2910
+
2911
+ .e-input-group .e-clear-icon,
2912
+ .e-input-group.e-control-wrapper .e-clear-icon {
2913
+ min-height: 0;
2914
+ min-width: 32px;
2915
+ padding-bottom: 0;
2916
+ padding-left: 0;
2917
+ padding-right: 0;
2918
+ padding-top: 0;
2919
+ }
2920
+
2921
+ .e-float-input.e-input-group .e-clear-icon,
2922
+ .e-float-input.e-input-group.e-control-wrapper .e-clear-icon {
2923
+ padding-right: 0;
2924
+ padding-top: 0;
2925
+ }
2926
+
2927
+ .e-input-group.e-bigger .e-clear-icon,
2928
+ .e-input-group.e-control-wrapper.e-bigger .e-clear-icon,
2929
+ .e-input-group .e-clear-icon.e-bigger,
2930
+ .e-input-group.e-control-wrapper .e-clear-icon.e-bigger,
2931
+ .e-bigger .e-input-group .e-clear-icon,
2932
+ .e-bigger .e-input-group.e-control-wrapper .e-clear-icon {
2933
+ min-width: 38px;
2934
+ min-height: 0;
2935
+ padding-bottom: 0;
2936
+ padding-right: 0;
2937
+ padding-top: 0;
2938
+ }
2939
+
2940
+ .e-input-group.e-float-input.e-bigger .e-clear-icon,
2941
+ .e-input-group.e-float-input .e-clear-icon.e-bigger,
2942
+ .e-bigger .e-input-group.e-float-input .e-clear-icon,
2943
+ .e-input-group.e-control-wrapper.e-float-input.e-bigger .e-clear-icon,
2944
+ .e-input-group.e-control-wrapper.e-float-input .e-clear-icon.e-bigger,
2945
+ .e-bigger .e-input-group.e-control-wrapper.e-float-input .e-clear-icon {
2946
+ padding-right: 0;
2947
+ padding-top: 0;
2948
+ }
2949
+
2950
+ .e-input-group.e-small .e-clear-icon,
2951
+ .e-input-group .e-clear-icon.e-small,
2952
+ .e-small.e-bigger .e-input-group .e-clear-icon,
2953
+ .e-input-group.e-control-wrapper.e-small .e-clear-icon,
2954
+ .e-input-group.e-control-wrapper .e-clear-icon.e-small,
2955
+ .e-small.e-bigger .e-input-group.e-control-wrapper .e-clear-icon {
2956
+ min-height: 0;
2957
+ min-width: 38px;
2958
+ padding-bottom: 0;
2959
+ padding-right: 0;
2960
+ padding-top: 0;
2961
+ }
2962
+
2963
+ .e-input-group.e-small.e-bigger .e-clear-icon,
2964
+ .e-input-group.e-small .e-clear-icon.e-bigger,
2965
+ .e-bigger .e-input-group.e-small .e-clear-icon,
2966
+ .e-input-group.e-control-wrapper.e-small.e-bigger .e-clear-icon,
2967
+ .e-input-group.e-control-wrapper.e-small .e-clear-icon.e-bigger,
2968
+ .e-bigger .e-input-group.e-control-wrapper.e-small .e-clear-icon {
2969
+ min-height: 0;
2970
+ min-width: 34px;
2971
+ padding-bottom: 0;
2972
+ padding-right: 0;
2973
+ padding-top: 0;
2974
+ }
2975
+
2976
+ .e-input-group.e-float-input.e-small.e-bigger .e-clear-icon,
2977
+ .e-input-group.e-float-input.e-small .e-clear-icon.e-bigger,
2978
+ .e-bigger .e-input-group.e-float-input.e-small .e-clear-icon,
2979
+ .e-input-group.e-control-wrapper.e-float-input.e-small.e-bigger .e-clear-icon,
2980
+ .e-input-group.e-control-wrapper.e-float-input.e-small .e-clear-icon.e-bigger,
2981
+ .e-bigger .e-input-group.e-control-wrapper.e-float-input.e-small .e-clear-icon,
2982
+ .e-input-group.e-float-input.e-control-wrapper.e-small.e-bigger .e-clear-icon,
2983
+ .e-input-group.e-float-input.e-control-wrapper.e-small .e-clear-icon.e-bigger,
2984
+ .e-bigger .e-input-group.e-float-input.e-control-wrapper.e-small .e-clear-icon,
2985
+ .e-input-group.e-control-wrapper.e-float-input.e-small.e-bigger .e-clear-icon,
2986
+ .e-input-group.e-control-wrapper.e-float-input.e-small .e-clear-icon.e-bigger,
2987
+ .e-bigger .e-input-group.e-control-wrapper.e-float-input.e-small .e-clear-icon {
2988
+ padding-right: 0;
2989
+ padding-top: 0;
2990
+ }
2991
+
2992
+ .e-input-group.e-small .e-clear-icon,
2993
+ .e-input-group .e-clear-icon.e-small,
2994
+ .e-small .e-input-group .e-clear-icon,
2995
+ .e-input-group.e-control-wrapper.e-small .e-clear-icon,
2996
+ .e-input-group.e-control-wrapper .e-clear-icon.e-small,
2997
+ .e-small .e-input-group.e-control-wrapper .e-clear-icon {
2998
+ min-height: 24px;
2999
+ min-width: 24px;
3000
+ padding-bottom: 0;
3001
+ padding-right: 0;
3002
+ padding-top: 0;
3003
+ }
3004
+
3005
+ .e-input-group.e-float-input.e-small .e-clear-icon,
3006
+ .e-input-group.e-float-input .e-clear-icon.e-small,
3007
+ .e-small .e-input-group.e-float-input .e-clear-icon,
3008
+ .e-input-group.e-control-wrapper.e-float-input.e-small .e-clear-icon,
3009
+ .e-input-group.e-control-wrapper.e-float-input .e-clear-icon.e-small,
3010
+ .e-small .e-input-group.e-control-wrapper.e-float-input .e-clear-icon,
3011
+ .e-input-group.e-float-input.e-control-wrapper.e-small .e-clear-icon,
3012
+ .e-input-group.e-float-input.e-control-wrapper .e-clear-icon.e-small,
3013
+ .e-small .e-input-group.e-float-input.e-control-wrapper .e-clear-icon,
3014
+ .e-input-group.e-control-wrapper.e-float-input.e-small .e-clear-icon,
3015
+ .e-input-group.e-control-wrapper.e-float-input .e-clear-icon.e-small,
3016
+ .e-small .e-input-group.e-control-wrapper.e-float-input .e-clear-icon {
3017
+ padding-right: 0;
3018
+ padding-top: 0;
3019
+ }
3020
+
3021
+ .e-input:not(:valid),
3022
+ .e-input:valid,
3023
+ .e-float-input.e-control-wrapper input:not(:valid),
3024
+ .e-float-input.e-control-wrapper input:valid,
3025
+ .e-float-input input:not(:valid),
3026
+ .e-float-input input:valid,
3027
+ .e-input-group input:not(:valid),
3028
+ .e-input-group input:valid,
3029
+ .e-input-group.e-control-wrapper input:not(:valid),
3030
+ .e-input-group.e-control-wrapper input:valid,
3031
+ .e-float-input.e-control-wrapper textarea:not(:valid),
3032
+ .e-float-input.e-control-wrapper textarea:valid,
3033
+ .e-float-input textarea:not(:valid),
3034
+ .e-float-input textarea:valid,
3035
+ .e-input-group.e-control-wrapper textarea:not(:valid),
3036
+ .e-input-group.e-control-wrapper textarea:valid,
3037
+ .e-input-group textarea:not(:valid),
3038
+ .e-input-group textarea:valid {
3039
+ box-shadow: none;
3040
+ }
3041
+
3042
+ .e-input-group .e-input-in-wrap,
3043
+ .e-input-group.e-control-wrapper .e-input-in-wrap,
3044
+ .e-float-input .e-input-in-wrap,
3045
+ .e-float-input.e-control-wrapper .e-input-in-wrap {
3046
+ width: 100%;
3047
+ display: -ms-flexbox;
3048
+ display: flex;
3049
+ position: relative;
3050
+ }
3051
+
3052
+ .e-float-input .e-input-in-wrap label.e-float-text,
3053
+ .e-float-input.e-control-wrapper .e-input-in-wrap label.e-float-text {
3054
+ right: 0;
3055
+ overflow: hidden;
3056
+ text-overflow: ellipsis;
3057
+ vertical-align: middle;
3058
+ white-space: nowrap;
3059
+ }
3060
+
3061
+ .e-float-input input.e-input,
3062
+ .e-float-input.e-bigger .e-input,
3063
+ .e-bigger .e-float-input .e-input,
3064
+ .e-float-input.e-control-wrapper input.e-input,
3065
+ .e-float-input.e-control-wrapper.e-bigger .e-input,
3066
+ .e-bigger .e-float-input.e-control-wrapper .e-input {
3067
+ margin-bottom: 0;
3068
+ }
3069
+
3070
+ .e-float-input textarea:focus ~ label.e-float-text,
3071
+ .e-float-input textarea:valid ~ label.e-float-text,
3072
+ .e-float-input textarea ~ label.e-label-top.e-float-text,
3073
+ .e-float-input textarea[readonly] ~ label.e-label-top.e-float-text,
3074
+ .e-float-input textarea[disabled] ~ label.e-label-top.e-float-text,
3075
+ .e-float-input textarea label.e-float-text.e-label-top,
3076
+ .e-float-input.e-control-wrapper textarea:focus ~ label.e-float-text,
3077
+ .e-float-input.e-control-wrapper textarea:valid ~ label.e-float-text,
3078
+ .e-float-input.e-control-wrapper textarea ~ label.e-label-top.e-float-text,
3079
+ .e-float-input.e-control-wrapper textarea[readonly] ~ label.e-label-top.e-float-text,
3080
+ .e-float-input.e-control-wrapper textarea[disabled] ~ label.e-label-top.e-float-text,
3081
+ .e-float-input.e-control-wrapper textarea label.e-float-text.e-label-top {
3082
+ font-size: 12px;
3083
+ font-weight: 500;
3084
+ padding-right: 0;
3085
+ transform: translate3d(-10px, -33px, 0) scale(1);
3086
+ }
3087
+
3088
+ .e-float-input.e-bigger textarea:focus ~ label.e-float-text,
3089
+ .e-float-input.e-bigger textarea:valid ~ label.e-float-text,
3090
+ .e-float-input.e-bigger textarea ~ label.e-label-top.e-float-text,
3091
+ .e-bigger .e-float-input textarea:focus ~ label.e-float-text,
3092
+ .e-bigger .e-float-input textarea:valid ~ label.e-float-text,
3093
+ .e-bigger .e-float-input textarea ~ label.e-label-top.e-float-text,
3094
+ .e-float-input.e-control-wrapper.e-bigger textarea:focus ~ label.e-float-text,
3095
+ .e-float-input.e-control-wrapper.e-bigger textarea:valid ~ label.e-float-text,
3096
+ .e-float-input.e-control-wrapper.e-bigger textarea ~ label.e-label-top.e-float-text,
3097
+ .e-bigger .e-float-input.e-control-wrapper textarea:focus ~ label.e-float-text,
3098
+ .e-bigger .e-float-input.e-control-wrapper textarea:valid ~ label.e-float-text,
3099
+ .e-bigger .e-float-input.e-control-wrapper textarea ~ label.e-label-top.e-float-text {
3100
+ font-size: 14px;
3101
+ top: 12px;
3102
+ }
3103
+
3104
+ .e-float-input.e-small textarea:focus ~ label.e-float-text,
3105
+ .e-float-input.e-small textarea:valid ~ label.e-float-text,
3106
+ .e-float-input.e-small textarea ~ label.e-label-top.e-float-text,
3107
+ .e-small .e-float-input textarea ~ label.e-label-top.e-float-text,
3108
+ .e-float-input.e-control-wrapper.e-small textarea:focus ~ label.e-float-text,
3109
+ .e-float-input.e-control-wrapper.e-small textarea:valid ~ label.e-float-text,
3110
+ .e-float-input.e-control-wrapper.e-small textarea ~ label.e-label-top.e-float-text,
3111
+ .e-small .e-float-input.e-control-wrapper textarea ~ label.e-label-top.e-float-text {
3112
+ font-size: 10px;
3113
+ top: 16px;
3114
+ }
3115
+
3116
+ .e-float-input.e-small.e-bigger textarea:focus ~ label.e-float-text,
3117
+ .e-float-input.e-small.e-bigger textarea:valid ~ label.e-float-text,
3118
+ .e-float-input.e-small.e-bigger textarea ~ label.e-label-top.e-float-text,
3119
+ .e-bigger .e-float-input.e-small textarea:focus ~ label.e-float-text,
3120
+ .e-bigger .e-float-input.e-small textarea:valid ~ label.e-float-text,
3121
+ .e-bigger .e-float-input.e-small textarea ~ label.e-label-top.e-float-text,
3122
+ .e-float-input.e-control-wrapper.e-small.e-bigger textarea:focus ~ label.e-float-text,
3123
+ .e-float-input.e-control-wrapper.e-small.e-bigger textarea:valid ~ label.e-float-text,
3124
+ .e-float-input.e-control-wrapper.e-small.e-bigger textarea ~ label.e-label-top.e-float-text,
3125
+ .e-bigger .e-float-input.e-control-wrapper.e-small textarea:focus ~ label.e-float-text,
3126
+ .e-bigger .e-float-input.e-control-wrapper.e-small textarea:valid ~ label.e-float-text,
3127
+ .e-bigger .e-float-input.e-control-wrapper.e-small textarea ~ label.e-label-top.e-float-text {
3128
+ font-size: 12px;
3129
+ top: 15px;
3130
+ }
3131
+
3132
+ .e-float-input textarea ~ .e-float-text,
3133
+ .e-float-input.e-control-wrapper textarea ~ .e-float-text {
3134
+ top: 13px;
3135
+ }
3136
+
3137
+ .e-float-input.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3138
+ .e-small .e-float-input textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3139
+ .e-float-input.e-control-wrapper.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3140
+ .e-small .e-float-input.e-control-wrapper textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
3141
+ font-size: 12px;
3142
+ }
3143
+
3144
+ .e-float-input.e-bigger textarea ~ label.e-float-text,
3145
+ .e-float-input textarea ~ label.e-float-text.e-bigger,
3146
+ .e-float-input textarea.e-bigger ~ label.e-float-text,
3147
+ .e-bigger .e-float-input textarea ~ label.e-float-text,
3148
+ .e-float-input.e-bigger textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3149
+ .e-bigger .e-float-input textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3150
+ .e-float-input.e-control-wrapper.e-bigger textarea ~ label.e-float-text,
3151
+ .e-float-input.e-control-wrapper textarea ~ label.e-float-text.e-bigger,
3152
+ .e-float-input.e-control-wrapper textarea.e-bigger ~ label.e-float-text,
3153
+ .e-bigger .e-float-input.e-control-wrapper textarea ~ label.e-float-text,
3154
+ .e-float-input.e-control-wrapper.e-bigger textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3155
+ .e-bigger .e-float-input.e-control-wrapper textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
3156
+ font-size: 16px;
3157
+ top: -11px;
3158
+ }
3159
+
3160
+ .e-float-input.e-small textarea ~ label.e-float-text,
3161
+ .e-float-input textarea ~ label.e-float-text.e-small,
3162
+ .e-float-input textarea.e-small ~ label.e-float-text,
3163
+ .e-small .e-float-input textarea ~ label.e-float-text,
3164
+ .e-float-input.e-control-wrapper.e-small textarea ~ label.e-float-text,
3165
+ .e-float-input.e-control-wrapper textarea ~ label.e-float-text.e-small,
3166
+ .e-float-input.e-control-wrapper textarea.e-small ~ label.e-float-text,
3167
+ .e-small .e-float-input.e-control-wrapper textarea ~ label.e-float-text {
3168
+ font-size: 12px;
3169
+ top: 15px;
3170
+ }
3171
+
3172
+ .e-input-group:hover:not(.e-disabled),
3173
+ .e-input-group.e-control-wrapper:hover:not(.e-disabled),
3174
+ .e-float-input:hover:not(.e-disabled),
3175
+ .e-float-input:hover:not(.e-input-group):not(.e-disabled) input:not([disabled]),
3176
+ .e-float-input:hover:not(.e-input-group):not(.e-disabled) textarea:not([disabled]),
3177
+ .e-float-input:hover:not(.e-input-group):not(.e-disabled) input:not([disabled]),
3178
+ .e-float-input:hover:not(.e-input-group):not(.e-disabled) textarea:not([disabled]),
3179
+ .e-float-input.e-control-wrapper:hover:not(.e-disabled),
3180
+ .e-float-input.e-control-wrapper:hover:not(.e-input-group):not(.e-disabled) input:not([disabled]),
3181
+ .e-float-input.e-control-wrapper:hover:not(.e-input-group):not(.e-disabled) textarea:not([disabled]),
3182
+ .e-float-input.e-control-wrapper:hover:not(.e-input-group):not(.e-disabled) input:not([disabled]),
3183
+ .e-float-input.e-control-wrapper:hover:not(.e-input-group):not(.e-disabled) textarea:not([disabled]) {
3184
+ border-bottom-width: 1px;
3185
+ }
3186
+
3187
+ .e-float-input:not(.e-outline) input:-webkit-autofill ~ label.e-float-text,
3188
+ .e-float-input.e-control-wrapper.e-autofill:not(.e-outline) input:-webkit-autofill ~ label.e-float-text,
3189
+ .e-float-input.e-control-wrapper.e-autofill:not(.e-input-focus):not(.e-outline) input:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom {
3190
+ font-size: 12px;
3191
+ -webkit-user-select: text;
3192
+ user-select: text;
3193
+ }
3194
+
3195
+ .e-bigger .e-float-input:not(.e-outline) input:-webkit-autofill ~ label.e-float-text,
3196
+ .e-bigger.e-float-input:not(.e-outline) input:-webkit-autofill ~ label.e-float-text,
3197
+ .e-bigger .e-float-input.e-control-wrapper.e-autofill:not(.e-outline) input:-webkit-autofill ~ label.e-float-text,
3198
+ .e-bigger.e-float-input.e-control-wrapper.e-autofill:not(.e-outline) input:-webkit-autofill ~ label.e-float-text,
3199
+ .e-bigger .e-float-input.e-control-wrapper.e-autofill:not(.e-input-focus):not(.e-outline) input:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom,
3200
+ .e-bigger.e-float-input.e-control-wrapper.e-autofill:not(.e-input-focus):not(.e-outline) input:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom {
3201
+ font-size: 14px;
3202
+ font-weight: 500;
3203
+ padding-right: 0;
3204
+ transform: translate3d(-10px, -40px, 0) scale(1);
3205
+ -webkit-user-select: text;
3206
+ user-select: text;
3207
+ }
3208
+
3209
+ .e-small .e-float-input:not(.e-outline) input:-webkit-autofill ~ label.e-float-text,
3210
+ .e-small.e-float-input:not(.e-outline) input:-webkit-autofill ~ label.e-float-text,
3211
+ .e-small .e-float-input.e-control-wrapper.e-autofill:not(.e-outline) input:-webkit-autofill ~ label.e-float-text,
3212
+ .e-small.e-float-input.e-control-wrapper.e-autofill:not(.e-outline) input:-webkit-autofill ~ label.e-float-text,
3213
+ .e-small .e-float-input.e-control-wrapper.e-autofill:not(.e-input-focus):not(.e-outline) input:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom,
3214
+ .e-small.e-float-input.e-control-wrapper.e-autofill:not(.e-input-focus):not(.e-outline) input:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom {
3215
+ font-size: 10px;
3216
+ -webkit-user-select: text;
3217
+ user-select: text;
3218
+ }
3219
+
3220
+ .e-bigger .e-float-input.e-small:not(.e-outline) input:-webkit-autofill ~ label.e-float-text,
3221
+ .e-bigger.e-small .e-float-input:not(.e-outline) input:-webkit-autofill ~ label.e-float-text,
3222
+ .e-float-input.e-bigger.e-small:not(.e-outline) input:-webkit-autofill ~ label.e-float-text,
3223
+ .e-bigger .e-float-input.e-small.e-control-wrapper.e-autofill:not(.e-outline) input:-webkit-autofill ~ label.e-float-text,
3224
+ .e-bigger.e-small .e-float-input.e-control-wrapper.e-autofill:not(.e-outline) input:-webkit-autofill ~ label.e-float-text,
3225
+ .e-float-input.e-bigger.e-small.e-control-wrapper.e-autofill:not(.e-outline) input:-webkit-autofill ~ label.e-float-text,
3226
+ .e-small.e-bigger .e-float-input.e-control-wrapper.e-autofill:not(.e-input-focus):not(.e-outline) input:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom,
3227
+ .e-small.e-bigger.e-float-input.e-control-wrapper.e-autofill:not(.e-input-focus):not(.e-outline) input:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom,
3228
+ .e-bigger .e-small.e-float-input.e-control-wrapper.e-autofill:not(.e-input-focus):not(.e-outline) input:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom,
3229
+ .e-small .e-bigger.e-float-input.e-control-wrapper.e-autofill:not(.e-input-focus):not(.e-outline) input:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom {
3230
+ font-size: 12px;
3231
+ -webkit-user-select: text;
3232
+ user-select: text;
3233
+ }
3234
+
3235
+ .e-bigger .e-float-input.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3236
+ .e-small .e-float-input.e-bigger textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3237
+ .e-float-input.e-bigger.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3238
+ .e-bigger.e-small .e-float-input textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3239
+ .e-float-input.e-bigger.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3240
+ .e-bigger .e-float-input.e-control-wrapper.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3241
+ .e-small .e-float-input.e-control-wrapper.e-bigger textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3242
+ .e-float-input.e-control-wrapper.e-bigger.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3243
+ .e-bigger.e-small .e-float-input.e-control-wrapper textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3244
+ .e-float-input.e-control-wrapper.e-bigger.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
3245
+ font-size: 12px;
3246
+ font-style: normal;
3247
+ }
3248
+
3249
+ .e-float-input textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3250
+ .e-float-input.e-control-wrapper textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
3251
+ font-size: 14px;
3252
+ font-style: normal;
3253
+ font-weight: normal;
3254
+ left: 0;
3255
+ overflow: hidden;
3256
+ padding-left: 10px;
3257
+ pointer-events: none;
3258
+ position: absolute;
3259
+ text-overflow: ellipsis;
3260
+ top: -11px;
3261
+ transform: translate3d(0, 16px, 0) scale(1);
3262
+ transform-origin: left top;
3263
+ transition: 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
3264
+ -webkit-user-select: none;
3265
+ -ms-user-select: none;
3266
+ user-select: none;
3267
+ white-space: nowrap;
3268
+ width: 100%;
3269
+ }
3270
+
3271
+ textarea.e-input::-webkit-textarea-placeholder,
3272
+ textarea.e-input:-moz-placeholder,
3273
+ textarea.e-input:-ms-textarea-placeholder,
3274
+ textarea.e-input::-moz-placeholder {
3275
+ font-size: 14px;
3276
+ font-style: normal;
3277
+ }
3278
+
3279
+ .e-small textarea.e-input::-webkit-textarea-placeholder,
3280
+ textarea.e-small.e-input::-webkit-textarea-placeholder,
3281
+ .e-small textarea.e-input:-moz-placeholder,
3282
+ textarea.e-small.e-input:-moz-placeholder,
3283
+ .e-small textarea.e-input:-ms-input-placeholder,
3284
+ textarea.e-small.e-input:-ms-input-placeholder,
3285
+ .e-small textarea.e-input::-moz-placeholder,
3286
+ textarea.e-small.e-input::-moz-placeholder {
3287
+ font-size: 12px;
3288
+ font-style: normal;
3289
+ }
3290
+
3291
+ .e-bigger textarea.e-small.e-input::-webkit-textarea-placeholder,
3292
+ .e-small textarea.e-bigger.e-input::-webkit-textarea-placeholder,
3293
+ .e-bigger textarea.e-small.e-input:-moz-placeholder,
3294
+ .e-small textarea.e-bigger.e-input:-moz-placeholder,
3295
+ .e-bigger textarea.e-small.e-input:-ms-input-placeholder,
3296
+ .e-small textarea.e-bigger.e-input:-ms-input-placeholder,
3297
+ .e-bigger textarea.e-small.e-input::-moz-placeholder,
3298
+ .e-small textarea.e-bigger.e-input::-moz-placeholder {
3299
+ font-size: 14px;
3300
+ font-style: normal;
3301
+ }
3302
+
3303
+ .e-bigger textarea.e-input::-webkit-textarea-placeholder,
3304
+ textarea.e-bigger.e-input::-webkit-textarea-placeholder,
3305
+ .e-bigger textarea.e-input:-moz-placeholder,
3306
+ textarea.e-bigger.e-input:-moz-placeholder,
3307
+ .e-bigger textarea.e-input:-ms-textarea-placeholder,
3308
+ textarea.e-bigger.e-input:-ms-textarea-placeholder,
3309
+ .e-bigger textarea.e-input::-moz-placeholder,
3310
+ textarea.e-bigger.e-input::-moz-placeholder {
3311
+ font-size: 16px;
3312
+ font-style: normal;
3313
+ }
3314
+
3315
+ .e-float-input textarea:-webkit-autofill ~ label.e-float-text,
3316
+ .e-float-input.e-control-wrapper.e-autofill textarea:-webkit-autofill ~ label.e-float-text,
3317
+ .e-float-input.e-control-wrapper.e-autofill textarea:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom {
3318
+ font-size: 12px;
3319
+ font-weight: 500;
3320
+ padding-right: 0;
3321
+ transform: translate3d(-10px, -40px, 0) scale(1);
3322
+ -webkit-user-select: text;
3323
+ user-select: text;
3324
+ }
3325
+
3326
+ .e-small .e-float-input textarea:-webkit-autofill ~ label.e-float-text,
3327
+ .e-small.e-float-input textarea:-webkit-autofill ~ label.e-float-text,
3328
+ .e-small .e-float-input.e-control-wrapper.e-autofill textarea:-webkit-autofill ~ label.e-float-text,
3329
+ .e-small.e-float-input.e-control-wrapper.e-autofill textarea:-webkit-autofill ~ label.e-float-text,
3330
+ .e-small .e-float-input.e-control-wrapper.e-autofill textarea:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom,
3331
+ .e-small.e-float-input.e-control-wrapper.e-autofill textarea:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom {
3332
+ font-size: 10px;
3333
+ -webkit-user-select: text;
3334
+ user-select: text;
3335
+ }
3336
+
3337
+ .e-bigger .e-float-input.e-small textarea:-webkit-autofill ~ label.e-float-text,
3338
+ .e-bigger.e-small .e-float-input textarea:-webkit-autofill ~ label.e-float-text,
3339
+ .e-float-input.e-bigger.e-small textarea:-webkit-autofill ~ label.e-float-text,
3340
+ .e-bigger .e-float-input.e-small.e-control-wrapper.e-autofill textarea:-webkit-autofill ~ label.e-float-text,
3341
+ .e-bigger.e-small .e-float-input.e-control-wrapper.e-autofill textarea:-webkit-autofill ~ label.e-float-text,
3342
+ .e-float-input.e-bigger.e-small.e-control-wrapper.e-autofill textarea:-webkit-autofill ~ label.e-float-text,
3343
+ .e-small.e-bigger .e-float-input.e-control-wrapper.e-autofill textarea:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom,
3344
+ .e-small.e-bigger.e-float-input.e-control-wrapper.e-autofill textarea:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom,
3345
+ .e-bigger .e-small.e-float-input.e-control-wrapper.e-autofill textarea:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom,
3346
+ .e-small .e-bigger.e-float-input.e-control-wrapper.e-autofill textarea:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom {
3347
+ font-size: 12px;
3348
+ -webkit-user-select: text;
3349
+ user-select: text;
3350
+ }
3351
+
3352
+ .e-bigger .e-float-input textarea:-webkit-autofill ~ label.e-float-text,
3353
+ .e-bigger.e-float-input textarea:-webkit-autofill ~ label.e-float-text,
3354
+ .e-bigger .e-float-input.e-control-wrapper.e-autofill textarea:-webkit-autofill ~ label.e-float-text,
3355
+ .e-bigger.e-float-input.e-control-wrapper.e-autofill textarea:-webkit-autofill ~ label.e-float-text,
3356
+ .e-bigger .e-float-input.e-control-wrapper.e-autofill textarea:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom,
3357
+ .e-bigger.e-float-input.e-control-wrapper.e-autofill textarea:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom {
3358
+ font-size: 14px;
3359
+ -webkit-user-select: text;
3360
+ user-select: text;
3361
+ }
3362
+
3363
+ .e-float-input.e-bigger textarea:focus ~ label.e-float-text,
3364
+ .e-float-input.e-bigger textarea:valid ~ label.e-float-text,
3365
+ .e-float-input.e-bigger textarea ~ label.e-label-top.e-float-text,
3366
+ .e-float-input.e-bigger textarea[readonly] ~ label.e-label-top.e-float-text,
3367
+ .e-float-input.e-bigger textarea[disabled] ~ label.e-label-top.e-float-text,
3368
+ .e-float-input.e-bigger textarea label.e-float-text.e-label-top,
3369
+ .e-bigger .e-float-input textarea:focus ~ label.e-float-text,
3370
+ .e-bigger .e-float-input textarea:valid ~ label.e-float-text,
3371
+ .e-bigger .e-float-input textarea ~ label.e-label-top.e-float-text,
3372
+ .e-bigger .e-float-input textarea[readonly] ~ label.e-label-top.e-float-text,
3373
+ .e-bigger .e-float-input textarea[disabled] ~ label.e-label-top.e-float-text,
3374
+ .e-bigger .e-float-input textarea label.e-float-text.e-label-top,
3375
+ .e-float-input.e-control-wrapper.e-bigger textarea:focus ~ label.e-float-text,
3376
+ .e-float-input.e-control-wrapper.e-bigger textarea:valid ~ label.e-float-text,
3377
+ .e-float-input.e-control-wrapper.e-bigger textarea ~ label.e-label-top.e-float-text,
3378
+ .e-float-input.e-control-wrapper.e-bigger textarea[readonly] ~ label.e-label-top.e-float-text,
3379
+ .e-float-input.e-control-wrapper.e-bigger textarea[disabled] ~ label.e-label-top.e-float-text,
3380
+ .e-float-input.e-control-wrapper.e-bigger textarea label.e-float-text.e-label-top,
3381
+ .e-bigger .e-float-input.e-control-wrapper textarea:focus ~ label.e-float-text,
3382
+ .e-bigger .e-float-input.e-control-wrapper textarea:valid ~ label.e-float-text,
3383
+ .e-bigger .e-float-input.e-control-wrapper textarea ~ label.e-label-top.e-float-text,
3384
+ .e-bigger .e-float-input.e-control-wrapper textarea[readonly] ~ label.e-label-top.e-float-text,
3385
+ .e-bigger .e-float-input.e-control-wrapper textarea[disabled] ~ label.e-label-top.e-float-text,
3386
+ .e-bigger .e-float-input.e-control-wrapper textarea label.e-float-text.e-label-top {
3387
+ font-weight: 500;
3388
+ padding-right: 0;
3389
+ transform: translate3d(-10px, -35px, 0) scale(1);
3390
+ }
3391
+
3392
+ .e-float-input.e-small.e-bigger textarea:focus ~ label.e-float-text,
3393
+ .e-float-input.e-small.e-bigger textarea:valid ~ label.e-float-text,
3394
+ .e-float-input.e-small.e-bigger textarea ~ label.e-label-top.e-float-text,
3395
+ .e-float-input.e-small.e-bigger textarea[readonly] ~ label.e-label-top.e-float-text,
3396
+ .e-float-input.e-small.e-bigger textarea[disabled] ~ label.e-label-top.e-float-text,
3397
+ .e-float-input.e-small.e-bigger textarea label.e-float-text.e-label-top,
3398
+ .e-bigger.e-small .e-float-input textarea:focus ~ label.e-float-text,
3399
+ .e-bigger.e-small .e-float-input textarea:valid ~ label.e-float-text,
3400
+ .e-bigger.e-small .e-float-input textarea ~ label.e-label-top.e-float-text,
3401
+ .e-bigger.e-small .e-float-input textarea[readonly] ~ label.e-label-top.e-float-text,
3402
+ .e-bigger.e-small .e-float-input textarea[disabled] ~ label.e-label-top.e-float-text,
3403
+ .e-bigger.e-small .e-float-input textarea label.e-float-text.e-label-top,
3404
+ .e-float-input.e-control-wrapper.e-bigger.e-small textarea:focus ~ label.e-float-text,
3405
+ .e-float-input.e-control-wrapper.e-bigger.e-small textarea:valid ~ label.e-float-text,
3406
+ .e-float-input.e-control-wrapper.e-bigger.e-small textarea ~ label.e-label-top.e-float-text,
3407
+ .e-float-input.e-control-wrapper.e-bigger.e-small textarea[readonly] ~ label.e-label-top.e-float-text,
3408
+ .e-float-input.e-control-wrapper.e-bigger.e-small textarea[disabled] ~ label.e-label-top.e-float-text,
3409
+ .e-float-input.e-control-wrapper.e-bigger.e-small textarea label.e-float-text.e-label-top,
3410
+ .e-small.e-bigger .e-float-input.e-control-wrapper textarea:focus ~ label.e-float-text,
3411
+ .e-small.e-bigger .e-float-input.e-control-wrapper textarea:valid ~ label.e-float-text,
3412
+ .e-small.e-bigger .e-float-input.e-control-wrapper textarea ~ label.e-label-top.e-float-text,
3413
+ .e-small.e-bigger .e-float-input.e-control-wrapper textarea[readonly] ~ label.e-label-top.e-float-text,
3414
+ .e-small.e-bigger .e-float-input.e-control-wrapper textarea[disabled] ~ label.e-label-top.e-float-text,
3415
+ .e-small.e-bigger .e-float-input.e-control-wrapper textarea label.e-float-text.e-label-top {
3416
+ font-weight: 500;
3417
+ padding-right: 0;
3418
+ transform: translate3d(-10px, -33px, 0) scale(1);
3419
+ }
3420
+
3421
+ .e-float-input.e-small textarea:focus ~ label.e-float-text,
3422
+ .e-float-input.e-small textarea:valid ~ label.e-float-text,
3423
+ .e-float-input.e-small textarea ~ label.e-label-top.e-float-text,
3424
+ .e-float-input.e-small textarea[readonly] ~ label.e-label-top.e-float-text,
3425
+ .e-float-input.e-small textarea[disabled] ~ label.e-label-top.e-float-text,
3426
+ .e-float-input.e-small textarea label.e-float-text.e-label-top,
3427
+ .e-small .e-float-input textarea:focus ~ label.e-float-text,
3428
+ .e-small .e-float-input textarea:valid ~ label.e-float-text,
3429
+ .e-small .e-float-input textarea ~ label.e-label-top.e-float-text,
3430
+ .e-small .e-float-input textarea[readonly] ~ label.e-label-top.e-float-text,
3431
+ .e-small .e-float-input textarea[disabled] ~ label.e-label-top.e-float-text,
3432
+ .e-small .e-float-input textarea label.e-float-text.e-label-top,
3433
+ .e-float-input.e-control-wrapper.e-small textarea:focus ~ label.e-float-text,
3434
+ .e-float-input.e-control-wrapper.e-small textarea:valid ~ label.e-float-text,
3435
+ .e-float-input.e-control-wrapper.e-small textarea ~ label.e-label-top.e-float-text,
3436
+ .e-float-input.e-control-wrapper.e-small textarea[readonly] ~ label.e-label-top.e-float-text,
3437
+ .e-float-input.e-control-wrapper.e-small textarea[disabled] ~ label.e-label-top.e-float-text,
3438
+ .e-float-input.e-control-wrapper.e-small textarea label.e-float-text.e-label-top,
3439
+ .e-small .e-float-input.e-control-wrapper textarea:focus ~ label.e-float-text,
3440
+ .e-small .e-float-input.e-control-wrapper textarea:valid ~ label.e-float-text,
3441
+ .e-small .e-float-input.e-control-wrapper textarea ~ label.e-label-top.e-float-text,
3442
+ .e-small .e-float-input.e-control-wrapper textarea[readonly] ~ label.e-label-top.e-float-text,
3443
+ .e-small .e-float-input.e-control-wrapper textarea[disabled] ~ label.e-label-top.e-float-text,
3444
+ .e-small .e-float-input.e-control-wrapper textarea label.e-float-text.e-label-top {
3445
+ font-weight: 500;
3446
+ padding-right: 0;
3447
+ transform: translate3d(-10px, -31px, 0) scale(1);
3448
+ }
3449
+
3450
+ .e-float-input textarea[disabled],
3451
+ .e-float-input textarea.e-disabled,
3452
+ .e-float-input.e-control-wrapper textarea[disabled],
3453
+ .e-float-input.e-control-wrapper textarea.e-disabled {
3454
+ border-color: #9ca3af;
3455
+ border-style: solid;
3456
+ }
3457
+
3458
+ .e-float-input textarea[disabled],
3459
+ .e-float-input textarea.e-disabled,
3460
+ .e-float-input.e-disabled textarea,
3461
+ .e-float-input.e-control-wrapper textarea[disabled],
3462
+ .e-float-input.e-control-wrapper textarea.e-disabled,
3463
+ .e-float-input.e-control-wrapper.e-disabled textarea {
3464
+ filter: alpha(opacity=100);
3465
+ opacity: 1;
3466
+ }
3467
+
3468
+ .e-float-input textarea[disabled],
3469
+ .e-float-input textarea.e-disabled,
3470
+ .e-float-input.e-control-wrapper textarea[disabled],
3471
+ .e-float-input.e-control-wrapper textarea.e-disabled {
3472
+ background: transparent;
3473
+ background-image: none;
3474
+ cursor: not-allowed;
3475
+ }
3476
+
3477
+ textarea.e-input,
3478
+ .e-input-group textarea.e-input,
3479
+ .e-input-group textarea,
3480
+ .e-input-group.e-control-wrapper textarea.e-input,
3481
+ .e-input-group.e-control-wrapper textarea,
3482
+ .e-float-input textarea,
3483
+ .e-float-input.e-input-group textarea,
3484
+ .e-float-input.e-control-wrapper textarea,
3485
+ .e-float-input.e-control-wrapper.e-input-group textarea {
3486
+ border-radius: 4px;
3487
+ }
3488
+
3489
+ textarea.e-input,
3490
+ .e-input-group textarea,
3491
+ .e-input-group textarea.e-input,
3492
+ .e-input-group.e-input-focus textarea,
3493
+ .e-input-group.e-input-focus textarea.e-input,
3494
+ .e-input-group.e-control-wrapper textarea,
3495
+ .e-input-group.e-control-wrapper.e-input-focus textarea,
3496
+ .e-input-group.e-control-wrapper textarea.e-input,
3497
+ .e-input-group.e-control-wrapper.e-input-focus textarea.e-input,
3498
+ .e-float-input textarea,
3499
+ .e-float-input.e-control-wrapper textarea {
3500
+ line-height: 1.5;
3501
+ min-height: 32px;
3502
+ min-width: 0;
3503
+ padding: 4px 8px 4px 12px;
3504
+ resize: vertical;
3505
+ }
3506
+
3507
+ .e-input-group.e-bigger textarea,
3508
+ .e-input-group.e-bigger textarea.e-input,
3509
+ .e-input-group textarea.e-bigger,
3510
+ .e-input-group textarea.e-input.e-bigger,
3511
+ .e-input-group.e-control-wrapper.e-bigger textarea,
3512
+ .e-input-group.e-control-wrapper.e-bigger textarea.e-input,
3513
+ .e-input-group.e-control-wrapper textarea.e-bigger,
3514
+ .e-input-group.e-control-wrapper textarea.e-input.e-bigger,
3515
+ .e-bigger .e-input-group textarea,
3516
+ .e-bigger .e-input-group textarea.e-input,
3517
+ .e-bigger .e-input-group.e-control-wrapper textarea,
3518
+ .e-bigger .e-input-group.e-control-wrapper textarea.e-input,
3519
+ .e-float-input.e-bigger textarea,
3520
+ .e-float-input textarea.e-bigger,
3521
+ .e-float-input.e-control-wrapper.e-bigger textarea,
3522
+ .e-float-input.e-control-wrapper textarea.e-bigger,
3523
+ .e-bigger .e-float-input textarea,
3524
+ .e-bigger .e-float-input.e-control-wrapper textarea {
3525
+ font: inherit;
3526
+ line-height: 1.5;
3527
+ min-height: 36px;
3528
+ padding: 6px 12px 6px 16px;
3529
+ }
3530
+
3531
+ .e-input-group.e-input-focus.e-bigger textarea,
3532
+ .e-input-group.e-input-focus.e-bigger textarea.e-input,
3533
+ .e-input-group.e-input-focus textarea.e-bigger,
3534
+ .e-input-group.e-input-focus textarea.e-input.e-bigger,
3535
+ .e-input-group.e-control-wrapper.e-input-focus.e-bigger textarea,
3536
+ .e-input-group.e-control-wrapper.e-input-focus.e-bigger textarea.e-input,
3537
+ .e-input-group.e-control-wrapper.e-input-focus textarea.e-bigger,
3538
+ .e-input-group.e-control-wrapper.e-input-focus textarea.e-input.e-bigger,
3539
+ .e-bigger .e-input-group.e-input-focus textarea,
3540
+ .e-bigger .e-input-group.e-control-wrapper.e-input-focus textarea,
3541
+ .e-bigger .e-input-group.e-control-wrapper.e-input-focus textarea.e-input,
3542
+ .e-input-group.e-control-wrapper textarea.e-bigger:focus,
3543
+ .e-input-group.e-control-wrapper textarea.e-input.e-bigger:focus,
3544
+ .e-bigger .e-input-group.e-control-wrapper textarea:focus,
3545
+ .e-bigger .e-input-group.e-control-wrapper.e-input-focus textarea:focus,
3546
+ .e-bigger .e-input-group.e-control-wrapper textarea.e-input:focus {
3547
+ font: inherit;
3548
+ line-height: 1.5;
3549
+ min-height: 36px;
3550
+ padding: 6px 12px 6px 16px;
3551
+ }
3552
+
3553
+ .e-input-group.e-small textarea,
3554
+ .e-input-group.e-small textarea.e-input,
3555
+ .e-input-group textarea.e-small,
3556
+ .e-input-group textarea.e-input.e-small,
3557
+ .e-input-group.e-control-wrapper.e-small textarea,
3558
+ .e-input-group.e-control-wrapper.e-small textarea.e-input,
3559
+ .e-small .e-input-group textarea,
3560
+ .e-small .e-input-group textarea.e-input,
3561
+ .e-float-input.e-small textarea,
3562
+ .e-float-input textarea.e-small,
3563
+ .e-float-input.e-control-wrapper.e-small textarea,
3564
+ .e-float-input.e-control-wrapper textarea.e-small,
3565
+ .e-small .e-float-input textarea,
3566
+ .e-small .e-float-input.e-control-wrapper textarea {
3567
+ font: inherit;
3568
+ min-height: 26px;
3569
+ padding: 4px 8px 4px 8px;
3570
+ }
3571
+
3572
+ .e-input-group.e-input-focus.e-small textarea,
3573
+ .e-input-group.e-input-focus.e-small textarea.e-input,
3574
+ .e-input-group.e-input-focus textarea.e-small,
3575
+ .e-input-group.e-input-focus textarea.e-input.e-small,
3576
+ .e-input-group.e-input-focus textarea.e-input.e-small,
3577
+ .e-input-group.e-control-wrapper.e-input-focus.e-small textarea,
3578
+ .e-input-group.e-control-wrapper.e-input-focus.e-small textarea.e-input,
3579
+ .e-small .e-input-group.e-input-focus textarea,
3580
+ .e-small .e-input-group.e-input-focus textarea.e-input {
3581
+ font: inherit;
3582
+ min-height: 26px;
3583
+ padding: 4px 8px 4px 8px;
3584
+ }
3585
+
3586
+ .e-input-group.e-small textarea:focus,
3587
+ .e-input-group.e-small textarea.e-input:focus,
3588
+ .e-input-group textarea.e-small:focus,
3589
+ .e-input-group textarea.e-input.e-small:focus,
3590
+ .e-input-group.e-control-wrapper.e-small textarea:focus,
3591
+ .e-input-group.e-control-wrapper.e-small textarea.e-input:focus,
3592
+ .e-small .e-input-group textarea:focus,
3593
+ .e-small .e-input-group textarea.e-input:focus,
3594
+ .e-float-input.e-small textarea:focus,
3595
+ .e-float-input textarea.e-small:focus,
3596
+ .e-float-input.e-control-wrapper.e-small textarea:focus,
3597
+ .e-float-input.e-control-wrapper textarea.e-small:focus,
3598
+ .e-small .e-float-input textarea:focus,
3599
+ .e-small .e-float-input.e-control-wrapper textarea:focus {
3600
+ padding: 4px 8px 4px 8px;
3601
+ }
3602
+
3603
+ .e-input-group.e-small.e-bigger textarea.e-input,
3604
+ .e-input-group.e-small textarea.e-input.e-bigger,
3605
+ .e-input-group textarea.e-input.e-bigger.e-small,
3606
+ .e-input-group.e-bigger textarea.e-small,
3607
+ .e-input-group.e-control-wrapper.e-small.e-bigger textarea.e-input,
3608
+ .e-input-group.e-control-wrapper.e-small textarea.e-input.e-bigger,
3609
+ .e-bigger.e-small .e-input-group textarea.e-input,
3610
+ .e-bigger.e-small .e-input-group.e-control-wrapper textarea.e-input,
3611
+ .e-bigger .input-group textarea.e-small,
3612
+ .e-bigger .e-input-group.e-small textarea.e-input,
3613
+ .e-bigger .e-input-group.e-control-wrapper.e-small textarea.e-input,
3614
+ .e-bigger .e-small.e-input-group.e-control-wrapper textarea.e-input,
3615
+ .e-small .input-group textarea.e-bigger,
3616
+ .e-small .e-input-group.e-bigger textarea.e-input,
3617
+ .e-small .e-input-group.e-control-wrapper textarea.e-input.e-bigger,
3618
+ .e-small .e-input-group.e-control-wrapper.e-input-focus textarea.e-input.e-bigger,
3619
+ .e-float-input textarea.e-bigger.e-small,
3620
+ .e-float-input.e-small.e-bigger textarea,
3621
+ .e-float-input.e-small textarea.e-bigger,
3622
+ .e-float-input.e-bigger textarea.e-small,
3623
+ .e-bigger .e-float-input.e-small textarea,
3624
+ .e-bigger.e-small .e-float-input textarea,
3625
+ .e-bigger .float-input textarea.e-small,
3626
+ .e-small .e-float-input.e-bigger textarea,
3627
+ .e-small .float-input textarea.e-bigger,
3628
+ .e-small .e-float-input.e-control-wrapper textarea.e-bigger,
3629
+ .e-float-input.e-control-wrapper.e-small.e-bigger textarea,
3630
+ .e-float-input.e-control-wrapper.e-small textarea.e-bigger,
3631
+ .e-bigger .e-float-input.e-control-wrapper.e-small textarea,
3632
+ .e-bigger.e-small .e-float-input.e-control-wrapper textarea,
3633
+ .e-bigger .e-small.e-float-input.e-control-wrapper textarea {
3634
+ font: inherit;
3635
+ line-height: 1.5;
3636
+ min-height: 32px;
3637
+ padding: 4px 8px 4px 14px;
3638
+ }
3639
+
3640
+ .e-input-group.e-input-focus textarea.e-input.e-bigger.e-small,
3641
+ .e-input-group.e-input-focus.e-small.e-bigger textarea.e-input,
3642
+ .e-input-group.e-input-focus.e-small textarea.e-input.e-bigger,
3643
+ .e-input-group.e-input-focus.e-bigger textarea.e-small,
3644
+ .e-input-group.e-control-wrapper.e-input-focus.e-small.e-bigger textarea.e-input,
3645
+ .e-input-group.e-control-wrapper.e-input-focus.e-small textarea.e-input.e-bigger,
3646
+ .e-bigger.e-small .e-input-group.e-input-focus textarea.e-input,
3647
+ .e-bigger .e-input-group.e-control-wrapper.e-input-focus.e-small textarea.e-input,
3648
+ .e-bigger.e-small .e-input-group.e-control-wrapper.e-input-focus textarea.e-input,
3649
+ .e-bigger .e-small.e-input-group.e-control-wrapper.e-input-focus textarea.e-input,
3650
+ .e-small .e-input-group.e-control-wrapper.e-input-focus.e-bigger textarea.e-input {
3651
+ font: inherit;
3652
+ line-height: 1.5;
3653
+ min-height: 32px;
3654
+ padding: 4px 8px 4px 14px;
3655
+ }
3656
+
3657
+ .e-filled.e-input-group,
3658
+ .e-filled.e-input-group.e-control-wrapper,
3659
+ .e-filled.e-float-input,
3660
+ .e-filled.e-float-input.e-control-wrapper {
3661
+ line-height: 1;
3662
+ }
3663
+
3664
+ .e-filled textarea.e-input,
3665
+ .e-filled.e-input-group.e-multi-line-input textarea,
3666
+ .e-filled.e-input-group.e-control-wrapper.e-multi-line-input textarea,
3667
+ .e-filled.e-float-input.e-multi-line-input textarea,
3668
+ .e-filled.e-float-input.e-control-wrapper.e-multi-line-input textarea {
3669
+ box-sizing: border-box;
3670
+ }
3671
+
3672
+ .e-float-input.e-control-wrapper.e-hidden,
3673
+ .e-input-group.e-control-wrapper.e-hidden {
3674
+ display: none;
3675
+ }
3676
+
3677
+ .e-input-group.e-control-container.valid.modified,
3678
+ .e-input-group.e-control-container.invalid,
3679
+ .e-float-input.e-control-container.valid.modified,
3680
+ .e-float-input.e-control-container.invalid {
3681
+ outline: none;
3682
+ }
3683
+
3684
+ /*! input theme */
3685
+ input.e-input,
3686
+ .e-input-group input.e-input,
3687
+ .e-input-group.e-control-wrapper input.e-input,
3688
+ .e-input-group textarea.e-input,
3689
+ .e-input-group.e-control-wrapper textarea.e-input,
3690
+ textarea.e-input,
3691
+ .e-float-input input,
3692
+ .e-float-input.e-control-wrapper input,
3693
+ .e-float-input textarea,
3694
+ .e-float-input.e-control-wrapper textarea {
3695
+ background: #fff;
3696
+ border-color: #d1d5db;
3697
+ color: #111827;
3698
+ }
3699
+
3700
+ .e-input-group,
3701
+ .e-input-group.e-control-wrapper,
3702
+ .e-float-input,
3703
+ .e-float-input.e-input-group,
3704
+ .e-float-input.e-control-wrapper,
3705
+ .e-float-input.e-input-group.e-control-wrapper {
3706
+ background: #fff;
3707
+ color: #111827;
3708
+ }
3709
+
3710
+ .e-input-group .e-input-group-icon,
3711
+ .e-input-group.e-control-wrapper .e-input-group-icon {
3712
+ background: transparent;
3713
+ border-color: #d1d5db;
3714
+ color: #6b7280;
3715
+ }
3716
+
3717
+ .e-input-group.e-disabled .e-input-group-icon,
3718
+ .e-input-group.e-control-wrapper.e-disabled .e-input-group-icon {
3719
+ color: #d1d5db;
3720
+ }
3721
+
3722
+ /* stylelint-disable property-no-vendor-prefix */
3723
+ /* stylelint-disable selector-no-vendor-prefix */
3724
+ .e-input[disabled],
3725
+ .e-input-group .e-input[disabled],
3726
+ .e-input-group.e-control-wrapper .e-input[disabled],
3727
+ .e-input-group.e-disabled,
3728
+ .e-input-group.e-control-wrapper.e-disabled,
3729
+ .e-float-input input[disabled],
3730
+ .e-float-input.e-control-wrapper input[disabled],
3731
+ .e-float-input textarea[disabled],
3732
+ .e-float-input.e-control-wrapper textarea[disabled],
3733
+ .e-float-input.e-disabled,
3734
+ .e-float-input.e-control-wrapper.e-disabled {
3735
+ -webkit-text-fill-color: #9ca3af;
3736
+ background: #f9fafb;
3737
+ color: #9ca3af;
3738
+ border-color: #9ca3af;
3739
+ }
3740
+
3741
+ .e-input-group input.e-input,
3742
+ .e-input-group.e-control-wrapper input.e-input,
3743
+ .e-float-input input,
3744
+ .e-float-input.e-control-wrapper input,
3745
+ .e-input-group textarea.e-input,
3746
+ .e-input-group.e-control-wrapper textarea.e-input,
3747
+ .e-float-input textarea,
3748
+ .e-float-input.e-control-wrapper textarea,
3749
+ .e-input-group .e-input[disabled],
3750
+ .e-input-group.e-control-wrapper .e-input[disabled],
3751
+ .e-input-group.e-disabled input.e-input,
3752
+ .e-input-group.e-control-wrapper.e-disabled input.e-input,
3753
+ .e-input-group.e-disabled textarea.e-input,
3754
+ .e-input-group.e-control-wrapper.e-disabled textarea.e-input {
3755
+ background: none;
3756
+ color: inherit;
3757
+ }
3758
+
3759
+ .e-input-group .e-input[readonly],
3760
+ .e-input-group.e-control-wrapper .e-input[readonly],
3761
+ .e-float-input input[readonly],
3762
+ .e-float-input.e-control-wrapper input[readonly],
3763
+ .e-float-input textarea[readonly],
3764
+ .e-float-input.e-control-wrapper textarea[readonly] {
3765
+ background: none;
3766
+ color: inherit;
3767
+ }
3768
+
3769
+ .e-float-input.e-disabled input,
3770
+ .e-float-input.e-control-wrapper.e-disabled input,
3771
+ .e-float-input.e-disabled textarea,
3772
+ .e-float-input.e-control-wrapper.e-disabled textarea,
3773
+ .e-float-input input[disabled],
3774
+ .e-float-input.e-control-wrapper input[disabled],
3775
+ .e-float-input textarea[disabled],
3776
+ .e-float-input.e-control-wrapper textarea[disabled] {
3777
+ color: inherit;
3778
+ }
3779
+
3780
+ /*! Added color to textbox for disbaled state */
3781
+ .e-float-input:not(.e-disabled) input[disabled],
3782
+ .e-float-input.e-control-wrapper:not(.e-disabled) input[disabled],
3783
+ .e-float-input:not(.e-disabled) textarea[disabled],
3784
+ .e-float-input.e-control-wrapper:not(.e-disabled) textarea[disabled] {
3785
+ -webkit-text-fill-color: #9ca3af;
3786
+ color: #9ca3af;
3787
+ }
3788
+
3789
+ .e-input-group.e-disabled .e-input-group-icon,
3790
+ .e-input-group.e-control-wrapper.e-disabled .e-input-group-icon {
3791
+ background: transparent;
3792
+ border-color: #9ca3af;
3793
+ }
3794
+
3795
+ .e-input-group:not(.e-disabled) .e-input-group-icon:hover,
3796
+ .e-input-group.e-control-wrapper:not(.e-disabled) .e-input-group-icon:hover {
3797
+ color: #374151;
3798
+ }
3799
+
3800
+ .e-input.e-success,
3801
+ .e-input.e-success:focus,
3802
+ .e-input-group.e-success input.e-input,
3803
+ .e-input-group.e-control-wrapper.e-success input.e-input,
3804
+ .e-input-group.e-success .e-input-group-icon,
3805
+ .e-input-group.e-control-wrapper.e-success .e-input-group-icon,
3806
+ .e-input-group.e-success textarea.e-input,
3807
+ .e-input-group.e-control-wrapper.e-success textarea.e-input {
3808
+ border-color: #15803d;
3809
+ }
3810
+
3811
+ .e-input.e-warning,
3812
+ .e-input.e-warning:focus,
3813
+ .e-input-group.e-warning input.e-input,
3814
+ .e-input-group.e-control-wrapper.e-warning input.e-input,
3815
+ .e-input-group.e-warning .e-input-group-icon,
3816
+ .e-input-group.e-control-wrapper.e-warning .e-input-group-icon,
3817
+ .e-input-group.e-warning textarea.e-input,
3818
+ .e-input-group.e-control-wrapper.e-warning textarea.e-input {
3819
+ border-color: #c2410c;
3820
+ }
3821
+
3822
+ .e-input.e-error,
3823
+ .e-input.e-error:focus,
3824
+ .e-input-group.e-error input.e-input,
3825
+ .e-input-group.e-control-wrapper.e-error input.e-input,
3826
+ .e-input-group.e-control-wrapper.e-error .e-input-group-icon,
3827
+ .e-input-group.e-error .e-input-group-icon,
3828
+ .e-input-group.e-error textarea.e-input,
3829
+ .e-input-group.e-control-wrapper.e-error textarea.e-input {
3830
+ border-color: #dc2626;
3831
+ }
3832
+
3833
+ label.e-float-text,
3834
+ .e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3835
+ .e-float-input.e-control-wrapper:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3836
+ .e-float-input.e-bigger:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3837
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3838
+ .e-bigger .e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3839
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3840
+ .e-float-input.e-small:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3841
+ .e-float-input.e-control-wrapper.e-small:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3842
+ .e-small .e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3843
+ .e-small .e-float-input.e-control-wrapper:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3844
+ .e-float-input.e-small.e-bigger:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3845
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3846
+ .e-bigger .e-float-input.e-small:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3847
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
3848
+ color: #4b5563;
3849
+ }
3850
+
3851
+ .e-float-input.e-error label.e-float-text,
3852
+ .e-float-input.e-control-wrapper.e-error label.e-float-text,
3853
+ .e-float-input.e-error input:focus ~ label.e-float-text,
3854
+ .e-float-input.e-control-wrapper.e-error input:focus ~ label.e-float-text,
3855
+ .e-float-input.e-error.e-input-focus input ~ label.e-float-text,
3856
+ .e-float-input.e-control-wrapper.e-error.e-input-focus input ~ label.e-float-text,
3857
+ .e-float-input.e-error textarea:focus ~ label.e-float-text,
3858
+ .e-float-input.e-control-wrapper.e-error textarea:focus ~ label.e-float-text {
3859
+ color: #dc2626;
3860
+ }
3861
+
3862
+ .e-float-input input,
3863
+ .e-float-input textarea,
3864
+ .e-float-input.e-control-wrapper input,
3865
+ .e-float-input.e-control-wrapper textarea {
3866
+ border-bottom-color: #d1d5db;
3867
+ }
3868
+
3869
+ .e-float-input.e-success input,
3870
+ .e-float-input.e-success textarea,
3871
+ .e-float-input.e-control-wrapper.e-success input,
3872
+ .e-float-input.e-control-wrapper.e-success textarea {
3873
+ border-color: #15803d;
3874
+ }
3875
+
3876
+ .e-float-input.e-warning input,
3877
+ .e-float-input.e-control-wrapper.e-warning input,
3878
+ .e-float-input.e-warning textarea,
3879
+ .e-float-input.e-control-wrapper.e-warning textarea {
3880
+ border-color: #c2410c;
3881
+ }
3882
+
3883
+ .e-float-input.e-error input,
3884
+ .e-float-input.e-control-wrapper.e-error input,
3885
+ .e-float-input.e-error textarea,
3886
+ .e-float-input.e-control-wrapper.e-error textarea {
3887
+ border-color: #dc2626;
3888
+ }
3889
+
3890
+ .e-float-input:not(.e-error):not(.e-input-focus):not(.e-disabled) input:not(:focus):not(:valid) ~ label.e-float-text:not(.e-label-top),
3891
+ .e-float-input:not(.e-error):not(.e-input-focus) textarea:not(:focus):not(:valid) ~ label.e-float-text:not(.e-label-top),
3892
+ .e-float-input.e-control-wrapper:not(.e-error):not(.e-input-focus):not(.e-disabled) input:not(:focus):not(:valid) ~ label.e-float-text:not(.e-label-top) {
3893
+ color: #6b7280;
3894
+ }
3895
+
3896
+ .e-input-group:not(.e-disabled) .e-input-group-icon:active,
3897
+ .e-input-group.e-control-wrapper:not(.e-disabled) .e-input-group-icon:active {
3898
+ background: transparent;
3899
+ color: #6b7280;
3900
+ }
3901
+
3902
+ input.e-input::selection,
3903
+ textarea.e-input::selection,
3904
+ .e-input-group input.e-input::selection,
3905
+ .e-input-group.e-control-wrapper input.e-input::selection,
3906
+ .e-float-input input::selection,
3907
+ .e-float-input.e-control-wrapper input::selection,
3908
+ .e-input-group textarea.e-input::selection,
3909
+ .e-input-group.e-control-wrapper textarea.e-input::selection,
3910
+ .e-float-input textarea::selection,
3911
+ .e-float-input.e-control-wrapper textarea::selection {
3912
+ background: #4f46e5;
3913
+ color: #fff;
3914
+ }
3915
+
3916
+ .e-float-input.e-small textarea::selection,
3917
+ .e-float-input textarea::selection {
3918
+ background: #4f46e5;
3919
+ color: #fff;
3920
+ }
3921
+
3922
+ input.e-input:-moz-placeholder {
3923
+ color: #6b7280;
3924
+ }
3925
+
3926
+ .e-input-group input.e-input:-moz-placeholder {
3927
+ color: #6b7280;
3928
+ }
3929
+
3930
+ .e-input-group input.e-input:-moz-placeholder,
3931
+ .e-input-group.e-control-wrapper input.e-input:-moz-placeholder {
3932
+ color: #6b7280;
3933
+ }
3934
+
3935
+ input.e-input:-moz-placeholder {
3936
+ color: #6b7280;
3937
+ }
3938
+
3939
+ .e-input-group input.e-input:-moz-placeholder {
3940
+ color: #6b7280;
3941
+ }
3942
+
3943
+ .e-input-group.e-control-wrapper input.e-input:-moz-placeholder {
3944
+ color: #6b7280;
3945
+ }
3946
+
3947
+ textarea.e-input:-moz-placeholder {
3948
+ color: #6b7280;
3949
+ }
3950
+
3951
+ .e-input-group textarea.e-input:-moz-placeholder {
3952
+ color: #6b7280;
3953
+ }
3954
+
3955
+ .e-input-group.e-control-wrapper textarea.e-input:-moz-placeholder {
3956
+ color: #6b7280;
3957
+ }
3958
+
3959
+ input.e-input::-moz-placeholder {
3960
+ color: #6b7280;
3961
+ }
3962
+
3963
+ .e-input-group input.e-input::-moz-placeholder {
3964
+ color: #6b7280;
3965
+ }
3966
+
3967
+ .e-input-group.e-control-wrapper input.e-input::-moz-placeholder {
3968
+ color: #6b7280;
3969
+ }
3970
+
3971
+ textarea.e-input::-moz-placeholder {
3972
+ color: #6b7280;
3973
+ }
3974
+
3975
+ .e-input-group textarea.e-input::-moz-placeholder {
3976
+ color: #6b7280;
3977
+ }
3978
+
3979
+ .e-input-group.e-control-wrapper textarea.e-input::-moz-placeholder {
3980
+ color: #6b7280;
3981
+ }
3982
+
3983
+ input.e-input:-ms-input-placeholder {
3984
+ color: #6b7280;
3985
+ }
3986
+
3987
+ .e-input-group input.e-input:-ms-input-placeholder {
3988
+ color: #6b7280;
3989
+ }
3990
+
3991
+ .e-input-group.e-control-wrapper input.e-input:-ms-input-placeholder {
3992
+ color: #6b7280;
3993
+ }
3994
+
3995
+ textarea.e-input:-ms-input-placeholder {
3996
+ color: #6b7280;
3997
+ }
3998
+
3999
+ .e-input-group.e-control-wrapper textarea.e-input:-ms-input-placeholder {
4000
+ color: #6b7280;
4001
+ }
4002
+
4003
+ .e-input-group textarea.e-input:-ms-input-placeholder {
4004
+ color: #6b7280;
4005
+ }
4006
+
4007
+ input.e-input::-webkit-input-placeholder {
4008
+ color: #6b7280;
4009
+ }
4010
+
4011
+ .e-input-group.e-control-wrapper input.e-input::-webkit-input-placeholder {
4012
+ color: #6b7280;
4013
+ }
4014
+
4015
+ .e-input-group input.e-input::-webkit-input-placeholder {
4016
+ color: #6b7280;
4017
+ }
4018
+
4019
+ textarea.e-input::-webkit-input-placeholder {
4020
+ color: #6b7280;
4021
+ }
4022
+
4023
+ .e-input-group textarea.e-input::-webkit-input-placeholder {
4024
+ color: #6b7280;
4025
+ }
4026
+
4027
+ .e-input-group.e-control-wrapper textarea.e-input::-webkit-input-placeholder {
4028
+ color: #6b7280;
4029
+ }
4030
+
4031
+ .e-input-group::before,
4032
+ .e-input-group::after,
4033
+ .e-input-group.e-control-wrapper::before,
4034
+ .e-input-group.e-control-wrapper::after {
4035
+ content: "";
4036
+ }
4037
+
4038
+ .e-input-group.e-success::before,
4039
+ .e-input-group.e-success::after,
4040
+ .e-input-group.e-control-wrapper.e-success::before,
4041
+ .e-input-group.e-control-wrapper.e-success::after {
4042
+ content: "";
4043
+ }
4044
+
4045
+ .e-input-group.e-warning::before,
4046
+ .e-input-group.e-warning::after,
4047
+ .e-input-group.e-control-wrapper.e-warning::before,
4048
+ .e-input-group.e-control-wrapper.e-warning::after {
4049
+ content: "";
4050
+ }
4051
+
4052
+ .e-input-group.e-error::before,
4053
+ .e-input-group.e-error::after,
4054
+ .e-input-group.e-control-wrapper.e-error::before,
4055
+ .e-input-group.e-control-wrapper.e-error::after {
4056
+ content: "";
4057
+ }
4058
+
4059
+ .e-input-group.e-success .e-input-group-icon,
4060
+ .e-input-group.e-control-wrapper.e-success .e-input-group-icon {
4061
+ color: #6b7280;
4062
+ }
4063
+
4064
+ .e-input-group.e-success:not(.e-disabled):not(:active) .e-input-group-icon:hover,
4065
+ .e-input-group.e-control-wrapper.e-success:not(.e-disabled):not(:active) .e-input-group-icon:hover {
4066
+ color: #6b7280;
4067
+ }
4068
+
4069
+ .e-input-group.e-warning .e-input-group-icon,
4070
+ .e-input-group.e-control-wrapper.e-warning .e-input-group-icon {
4071
+ color: #6b7280;
4072
+ }
4073
+
4074
+ .e-input-group.e-warning:not(.e-disabled):not(:active) .e-input-group-icon:hover,
4075
+ .e-input-group.e-control-wrapper.e-warning:not(.e-disabled):not(:active) .e-input-group-icon:hover {
4076
+ color: #6b7280;
4077
+ }
4078
+
4079
+ .e-input-group.e-error .e-input-group-icon,
4080
+ .e-input-group.e-control-wrapper.e-error .e-input-group-icon {
4081
+ color: #6b7280;
4082
+ }
4083
+
4084
+ .e-input-group.e-error:not(.e-disabled):not(:active) .e-input-group-icon:hover,
4085
+ .e-input-group.e-control-wrapper.e-error:not(.e-disabled):not(:active) .e-input-group-icon:hover {
4086
+ color: #6b7280;
4087
+ }
4088
+
4089
+ .e-input-group input.e-input,
4090
+ .e-input-group.e-control-wrapper input.e-input,
4091
+ .e-input-group textarea.e-input,
4092
+ .e-input-group.e-control-wrapper textarea.e-input {
4093
+ border-color: #d1d5db;
4094
+ }
4095
+
4096
+ .e-input:focus:not(.e-success):not(.e-warning):not(.e-error),
4097
+ .e-float-input:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group) input:focus,
4098
+ .e-float-input:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group) textarea:focus,
4099
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group) input:focus,
4100
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group) textarea:focus,
4101
+ .e-float-input:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group).e-input-focus input,
4102
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group).e-input-focus input {
4103
+ border-color: #4f46e5;
4104
+ border-radius: 4px;
4105
+ box-shadow: 0 0 0 1px #4f46e5;
4106
+ }
4107
+
4108
+ .e-input-group .e-input:focus:not(.e-success):not(.e-warning):not(.e-error),
4109
+ .e-input-group .e-float-input:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group) input:focus,
4110
+ .e-input-group .e-float-input:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group) textarea:focus,
4111
+ .e-input-group .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group) input:focus,
4112
+ .e-input-group .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group) textarea:focus,
4113
+ .e-input-group .e-float-input:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group).e-input-focus input,
4114
+ .e-input-group .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group).e-input-focus input {
4115
+ box-shadow: none;
4116
+ }
4117
+
4118
+ .e-input-group:not(.e-success):not(.e-warning):not(.e-error) input.e-input:focus,
4119
+ .e-input-group.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error) input.e-input:focus,
4120
+ .e-input-group:not(.e-success):not(.e-warning):not(.e-error).e-input-focus input.e-input,
4121
+ .e-input-group.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error).e-input-focus input.e-input,
4122
+ .e-input-group:not(.e-success):not(.e-warning):not(.e-error) textarea.e-input:focus,
4123
+ .e-input-group.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error) textarea.e-input:focus {
4124
+ border-color: transparent;
4125
+ }
4126
+
4127
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error),
4128
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
4129
+ border-color: #4f46e5;
4130
+ border-color: #4f46e5;
4131
+ border-radius: 4px;
4132
+ box-shadow: 0 0 0 1px #4f46e5;
4133
+ }
4134
+
4135
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input:focus,
4136
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input:focus,
4137
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input,
4138
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input {
4139
+ border-color: #d1d5db;
4140
+ }
4141
+
4142
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input:first-child:focus,
4143
+ .e-input-group.e-input-focus.e-rtl:not(.e-success):not(.e-warning):not(.e-error) span:last-child.e-input-group-icon,
4144
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input:first-child:focus,
4145
+ .e-input-group.e-control-wrapper.e-input-focus.e-rtl:not(.e-success):not(.e-warning):not(.e-error) span:last-child.e-input-group-icon {
4146
+ border-color: transparent;
4147
+ }
4148
+
4149
+ .e-input-group.e-input-focus.e-rtl:not(.e-success):not(.e-warning):not(.e-error) span.e-input-group-icon,
4150
+ .e-input-group.e-input-focus.e-rtl:not(.e-success):not(.e-warning):not(.e-error) span:first-child.e-input-group-icon,
4151
+ .e-input-focus.e-rtl:not(.e-success):not(.e-warning):not(.e-error) .e-input:first-child:focus,
4152
+ .e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input:last-child:focus,
4153
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) span.e-input-group-icon,
4154
+ .e-input-group.e-control-wrapper.e-input-focus.e-rtl:not(.e-success):not(.e-warning):not(.e-error) span.e-input-group-icon,
4155
+ .e-input-group.e-control-wrapper.e-input-focus.e-rtl:not(.e-success):not(.e-warning):not(.e-error) span:first-child.e-input-group-icon,
4156
+ .e-input-focus.e-control-wrapper.e-rtl:not(.e-success):not(.e-warning):not(.e-error) .e-input:first-child:focus,
4157
+ .e-input-focus.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error) .e-input:last-child:focus,
4158
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) span.e-input-group-icon {
4159
+ border-color: transparent;
4160
+ }
4161
+
4162
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) span:first-child.e-input-group-icon,
4163
+ .e-input-group.e-input-focus.e-rtl:not(.e-success):not(.e-warning):not(.e-error) .e-input:last-child:focus,
4164
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) span:first-child.e-input-group-icon,
4165
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) span:first-child.e-input-group-icon,
4166
+ .e-input-group.e-control-wrapper.e-input-focus.e-rtl:not(.e-success):not(.e-warning):not(.e-error) .e-input:last-child:focus,
4167
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) span:first-child.e-input-group-icon {
4168
+ border-color: transparent;
4169
+ }
4170
+
4171
+ .e-input-group:not(.e-success):not(.e-warning):not(.e-error),
4172
+ .e-input-group.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error) {
4173
+ border-color: #d1d5db;
4174
+ box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
4175
+ }
4176
+
4177
+ .e-input-group,
4178
+ .e-input-group.e-control-wrapper {
4179
+ border-bottom-color: #d1d5db;
4180
+ }
4181
+
4182
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input:focus,
4183
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input:focus,
4184
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input,
4185
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input {
4186
+ border-bottom-color: transparent;
4187
+ border-top-color: transparent;
4188
+ }
4189
+
4190
+ .e-input-group.e-success,
4191
+ .e-input-group.e-control-wrapper.e-success,
4192
+ .e-input-group.e-success:not(.e-float-icon-left),
4193
+ .e-input-group.e-control-wrapper.e-success:not(.e-float-icon-left) {
4194
+ border-color: #15803d;
4195
+ }
4196
+
4197
+ .e-input-group.e-warning,
4198
+ .e-input-group.e-control-wrapper.e-warning,
4199
+ .e-input-group.e-warning:not(.e-float-icon-left),
4200
+ .e-input-group.e-control-wrapper.e-warning:not(.e-float-icon-left) {
4201
+ border-color: #c2410c;
4202
+ }
4203
+
4204
+ .e-input-group.e-error,
4205
+ .e-input-group.e-control-wrapper.e-error,
4206
+ .e-input-group.e-error:not(.e-float-icon-left),
4207
+ .e-input-group.e-control-wrapper.e-error:not(.e-float-icon-left) {
4208
+ border-color: #dc2626;
4209
+ }
4210
+
4211
+ .e-float-input .e-clear-icon,
4212
+ .e-float-input.e-control-wrapper .e-clear-icon,
4213
+ .e-input-group .e-clear-icon,
4214
+ .e-input-group.e-control-wrapper .e-clear-icon {
4215
+ color: #6b7280;
4216
+ }
4217
+
4218
+ .e-float-input .e-clear-icon:hover,
4219
+ .e-float-input.e-control-wrapper .e-clear-icon:hover,
4220
+ .e-input-group .e-clear-icon:hover,
4221
+ .e-input-group.e-control-wrapper .e-clear-icon:hover {
4222
+ color: #374151;
4223
+ }
4224
+
4225
+ .e-float-input.e-disabled .e-clear-icon,
4226
+ .e-float-input.e-control-wrapper.e-disabled .e-clear-icon,
4227
+ .e-input-group.e-disabled .e-clear-icon,
4228
+ .e-input-group.e-control-wrapper.e-disabled .e-clear-icon {
4229
+ color: #d1d5db;
4230
+ }
4231
+
4232
+ .e-float-input.e-input-focus .e-input:focus,
4233
+ .e-float-input.e-control-wrapper.e-input-focus .e-input:focus {
4234
+ border-bottom-color: transparent;
4235
+ border-top-color: transparent;
4236
+ }
4237
+
4238
+ .e-float-input:not(.e-error) input:focus ~ label.e-float-text,
4239
+ .e-float-input:not(.e-error) input:valid ~ label.e-float-text,
4240
+ .e-float-input:not(.e-error) input ~ label.e-label-top.e-float-text,
4241
+ .e-float-input:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
4242
+ .e-float-input:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
4243
+ .e-float-input:not(.e-error) input label.e-float-text.e-label-top,
4244
+ .e-float-input.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
4245
+ .e-float-input.e-bigger:not(.e-error) input:valid ~ label.e-float-text,
4246
+ .e-float-input.e-bigger:not(.e-error) input ~ label.e-label-top.e-float-text,
4247
+ .e-float-input.e-bigger:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
4248
+ .e-float-input.e-bigger:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
4249
+ .e-bigger .e-float-input:not(.e-error) input:focus ~ label.e-float-text,
4250
+ .e-bigger .e-float-input:not(.e-error) input:valid ~ label.e-float-text,
4251
+ .e-bigger .e-float-input:not(.e-error) input ~ label.e-label-top.e-float-text,
4252
+ .e-bigger .e-float-input:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
4253
+ .e-bigger .e-float-input:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
4254
+ .e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text,
4255
+ .e-float-input.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
4256
+ .e-bigger .e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text {
4257
+ color: #374151;
4258
+ }
4259
+
4260
+ .e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
4261
+ .e-float-input.e-control-wrapper:not(.e-error) input:valid ~ label.e-float-text,
4262
+ .e-float-input.e-control-wrapper:not(.e-error) input ~ label.e-label-top.e-float-text,
4263
+ .e-float-input.e-control-wrapper:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
4264
+ .e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
4265
+ .e-float-input .e-control-wrapper:not(.e-error) input label.e-float-text.e-label-top,
4266
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
4267
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) input:valid ~ label.e-float-text,
4268
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) input ~ label.e-label-top.e-float-text,
4269
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
4270
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
4271
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
4272
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) input:valid ~ label.e-float-text,
4273
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) input ~ label.e-label-top.e-float-text,
4274
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
4275
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
4276
+ .e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text,
4277
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
4278
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text {
4279
+ color: #374151;
4280
+ }
4281
+
4282
+ .e-float-input.e-small:not(.e-error) input:focus ~ label.e-float-text,
4283
+ .e-float-input.e-small:not(.e-error) input:valid ~ label.e-float-text,
4284
+ .e-float-input.e-small:not(.e-error) input ~ label.e-label-top.e-float-text,
4285
+ .e-float-input.e-small:not(.e-error) input[readonly] ~ label.e-float-text,
4286
+ .e-float-input.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
4287
+ .e-small .e-float-input:not(.e-error) input:focus ~ label.e-float-text,
4288
+ .e-small .e-float-input:not(.e-error) input:valid ~ label.e-float-text,
4289
+ .e-small .e-float-input:not(.e-error) input ~ label.e-label-top.e-float-text,
4290
+ .e-small .e-float-input:not(.e-error) input[readonly] ~ label.e-float-text.e-label-top,
4291
+ .e-small .e-float-input:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
4292
+ .e-float-input.e-small.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
4293
+ .e-float-input.e-small.e-bigger:not(.e-error) input:valid ~ label.e-float-text,
4294
+ .e-float-input.e-small.e-bigger:not(.e-error) input ~ label.e-label-top.e-float-text,
4295
+ .e-float-input.e-small.e-bigger:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
4296
+ .e-float-input.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
4297
+ .e-bigger .e-float-input.e-small:not(.e-error) input:focus ~ label.e-float-text,
4298
+ .e-bigger .e-float-input.e-small:not(.e-error) input:valid ~ label.e-float-text,
4299
+ .e-bigger .e-float-input.e-small:not(.e-error) input ~ label.e-label-top.e-float-text,
4300
+ .e-bigger .e-float-input.e-small:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
4301
+ .e-bigger .e-float-input.e-small:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
4302
+ .e-float-input.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
4303
+ .e-small .e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text,
4304
+ .e-float-input.e-small.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
4305
+ .e-bigger .e-float-input.e-small:not(.e-error).e-input-focus input ~ label.e-float-text {
4306
+ color: #374151;
4307
+ }
4308
+
4309
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) input:focus ~ label.e-float-text,
4310
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) input:valid ~ label.e-float-text,
4311
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) input ~ label.e-label-top.e-float-text,
4312
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) input[readonly] ~ label.e-float-text,
4313
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
4314
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
4315
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) input:valid ~ label.e-float-text,
4316
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) input ~ label.e-label-top.e-float-text,
4317
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) input[readonly] ~ label.e-float-text.e-label-top,
4318
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
4319
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
4320
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input:valid ~ label.e-float-text,
4321
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input ~ label.e-label-top.e-float-text,
4322
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
4323
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
4324
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) input:focus ~ label.e-float-text,
4325
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) input:valid ~ label.e-float-text,
4326
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) input ~ label.e-label-top.e-float-text,
4327
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
4328
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
4329
+ .e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
4330
+ .e-small .e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text,
4331
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
4332
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus input ~ label.e-float-text {
4333
+ color: #374151;
4334
+ }
4335
+
4336
+ .e-float-input:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4337
+ .e-float-input.e-control-wrapper:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4338
+ .e-float-input.e-bigger:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4339
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4340
+ .e-bigger .e-float-input:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4341
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4342
+ .e-float-input.e-small:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4343
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4344
+ .e-small .e-float-input:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4345
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4346
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4347
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4348
+ .e-bigger .e-float-input.e-small:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4349
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
4350
+ color: #4b5563;
4351
+ }
4352
+
4353
+ .e-float-input:not(.e-input-focus):not(.e-disabled) textarea:not(:focus):not(:valid) ~ label.e-float-text:not(.e-label-top),
4354
+ .e-float-input:not(.e-input-focus) textarea:not(:focus):not(:valid) ~ label.e-float-text:not(.e-label-top),
4355
+ .e-float-input.e-control-wrapper:not(.e-input-focus):not(.e-disabled) textarea:not(:focus):not(:valid) ~ label.e-float-text:not(.e-label-top) {
4356
+ color: #6b7280;
4357
+ }
4358
+
4359
+ .e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
4360
+ .e-float-input:not(.e-error) textarea:valid ~ label.e-float-text,
4361
+ .e-float-input:not(.e-error) textarea ~ label.e-label-top.e-float-text,
4362
+ .e-float-input:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
4363
+ .e-float-input:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
4364
+ .e-float-input:not(.e-error) textarea label.e-float-text.e-label-top,
4365
+ .e-float-input.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
4366
+ .e-float-input.e-bigger:not(.e-error) textarea:valid ~ label.e-float-text,
4367
+ .e-float-input.e-bigger:not(.e-error) textarea ~ label.e-label-top.e-float-text,
4368
+ .e-float-input.e-bigger:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
4369
+ .e-float-input.e-bigger:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
4370
+ .e-bigger .e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
4371
+ .e-bigger .e-float-input:not(.e-error) textarea:valid ~ label.e-float-text,
4372
+ .e-bigger .e-float-input:not(.e-error) textarea ~ label.e-label-top.e-float-text,
4373
+ .e-bigger .e-float-input:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
4374
+ .e-bigger .e-float-input:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text {
4375
+ color: #374151;
4376
+ }
4377
+
4378
+ .e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
4379
+ .e-float-input.e-control-wrapper:not(.e-error) textarea:valid ~ label.e-float-text,
4380
+ .e-float-input.e-control-wrapper:not(.e-error) textarea ~ label.e-label-top.e-float-text,
4381
+ .e-float-input.e-control-wrapper:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
4382
+ .e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
4383
+ .e-float-input.e-control-wrapper:not(.e-error) textarea label.e-float-text.e-label-top,
4384
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
4385
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea:valid ~ label.e-float-text,
4386
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea ~ label.e-label-top.e-float-text,
4387
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
4388
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
4389
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
4390
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) textarea:valid ~ label.e-float-text,
4391
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) textarea ~ label.e-label-top.e-float-text,
4392
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
4393
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text {
4394
+ color: #374151;
4395
+ }
4396
+
4397
+ .e-float-input.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
4398
+ .e-float-input.e-small:not(.e-error) textarea:valid ~ label.e-float-text,
4399
+ .e-float-input.e-small:not(.e-error) textarea ~ label.e-label-top.e-float-text,
4400
+ .e-float-input.e-small:not(.e-error) textarea[readonly] ~ label.e-float-text,
4401
+ .e-float-input.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
4402
+ .e-small .e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
4403
+ .e-small .e-float-input:not(.e-error) textarea:valid ~ label.e-float-text,
4404
+ .e-small .e-float-input:not(.e-error) textarea ~ label.e-label-top.e-float-text,
4405
+ .e-small .e-float-input:not(.e-error) textarea[readonly] ~ label.e-float-text.e-label-top,
4406
+ .e-small .e-float-input:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
4407
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
4408
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea:valid ~ label.e-float-text,
4409
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea ~ label.e-label-top.e-float-text,
4410
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
4411
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
4412
+ .e-bigger .e-float-input.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
4413
+ .e-bigger .e-float-input.e-small:not(.e-error) textarea:valid ~ label.e-float-text,
4414
+ .e-bigger .e-float-input.e-small:not(.e-error) textarea ~ label.e-label-top.e-float-text,
4415
+ .e-bigger .e-float-input.e-small:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
4416
+ .e-bigger .e-float-input.e-small:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text {
4417
+ color: #374151;
4418
+ }
4419
+
4420
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
4421
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:valid ~ label.e-float-text,
4422
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea ~ label.e-label-top.e-float-text,
4423
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[readonly] ~ label.e-float-text,
4424
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
4425
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
4426
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) textarea:valid ~ label.e-float-text,
4427
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) textarea ~ label.e-label-top.e-float-text,
4428
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) textarea[readonly] ~ label.e-float-text.e-label-top,
4429
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
4430
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
4431
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea:valid ~ label.e-float-text,
4432
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea ~ label.e-label-top.e-float-text,
4433
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
4434
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
4435
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
4436
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:valid ~ label.e-float-text,
4437
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea ~ label.e-label-top.e-float-text,
4438
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
4439
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text {
4440
+ color: #374151;
4441
+ }
4442
+
4443
+ .e-float-input.e-input-group.e-disabled .e-float-text,
4444
+ .e-float-input.e-input-group.e-disabled .e-float-text.e-label-top,
4445
+ .e-float-input input[disabled] ~ label.e-float-text,
4446
+ .e-float-input input[disabled] ~ label.e-label-top.e-float-text,
4447
+ .e-float-input.e-disabled label.e-float-text,
4448
+ .e-float-input.e-disabled label.e-float-text.e-label-top,
4449
+ .e-float-input:not(.e-error) input[disabled] ~ label.e-float-text,
4450
+ .e-float-input:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
4451
+ .e-float-input.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
4452
+ .e-float-input.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
4453
+ .e-float-input.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
4454
+ .e-float-input.e-small:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
4455
+ .e-float-input.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
4456
+ .e-float-input.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top {
4457
+ color: #9ca3af;
4458
+ }
4459
+
4460
+ .e-float-input textarea[disabled] ~ label.e-float-text,
4461
+ .e-float-input textarea[disabled] ~ label.e-label-top.e-float-text,
4462
+ .e-float-input:not(.e-error) textarea[disabled] ~ label.e-float-text,
4463
+ .e-float-input:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
4464
+ .e-float-input.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
4465
+ .e-float-input.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
4466
+ .e-float-input.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
4467
+ .e-float-input.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
4468
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
4469
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top {
4470
+ color: #9ca3af;
4471
+ }
4472
+
4473
+ .e-float-input.e-control-wrapper.e-input-group.e-disabled .e-float-text,
4474
+ .e-float-input.e-control-wrapper.e-input-group.e-disabled .e-float-text.e-label-top,
4475
+ .e-float-input.e-control-wrapper.e-disabled input[disabled] ~ label.e-float-text,
4476
+ .e-float-input.e-control-wrapper.e-disabled input[disabled] ~ label.e-label-top.e-float-text,
4477
+ .e-float-input.e-control-wrapper input[disabled] ~ label.e-float-text,
4478
+ .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text,
4479
+ .e-float-input.e-control-wrapper.e-disabled label.e-float-text,
4480
+ .e-float-input.e-control-wrapper.e-disabled label.e-float-text.e-label-top,
4481
+ .e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-float-text,
4482
+ .e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
4483
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
4484
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
4485
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
4486
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
4487
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
4488
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
4489
+ .e-float-input.e-control-wrapper.e-disabled:not(.e-error) input[disabled] ~ label.e-float-text,
4490
+ .e-float-input.e-control-wrapper.e-disabled:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
4491
+ .e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
4492
+ .e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
4493
+ .e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
4494
+ .e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
4495
+ .e-float-input.e-control-wrapper.e-disabled.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
4496
+ .e-float-input.e-control-wrapper.e-disabled.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top {
4497
+ color: #9ca3af;
4498
+ }
4499
+
4500
+ .e-float-input.e-control-wrapper.e-disabled textarea[disabled] ~ label.e-float-text,
4501
+ .e-float-input.e-control-wrapper.e-disabled textarea[disabled] ~ label.e-label-top.e-float-text,
4502
+ .e-float-input.e-control-wrapper textarea[disabled] ~ label.e-float-text,
4503
+ .e-float-input.e-control-wrapper textarea[disabled] ~ label.e-label-top.e-float-text,
4504
+ .e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-float-text,
4505
+ .e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
4506
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
4507
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
4508
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
4509
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
4510
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
4511
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
4512
+ .e-float-input.e-control-wrapper.e-disabled:not(.e-error) textarea[disabled] ~ label.e-float-text,
4513
+ .e-float-input.e-control-wrapper.e-disabled:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
4514
+ .e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
4515
+ .e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
4516
+ .e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
4517
+ .e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
4518
+ .e-float-input.e-control-wrapper.e-disabled.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
4519
+ .e-float-input.e-control-wrapper.e-disabled.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top {
4520
+ color: #9ca3af;
4521
+ }
4522
+
4523
+ .e-input-group.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
4524
+ .e-input-group.e-control-wrapper.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
4525
+ .e-float-input.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
4526
+ .e-float-input.e-control-wrapper.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
4527
+ .e-float-input.e-input-focus:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) input:not([disabled]),
4528
+ .e-float-input.e-control-wrapper.e-input-focus:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) input:not([disabled]),
4529
+ .e-float-input.e-input-focus:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) textarea:not([disabled]),
4530
+ .e-float-input.e-control-wrapper.e-input-focus:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) textarea:not([disabled]) {
4531
+ border-color: #4f46e5;
4532
+ }
4533
+
4534
+ .e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
4535
+ .e-bigger .e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
4536
+ .e-bigger.e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
4537
+ .e-small .e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
4538
+ .e-small.e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
4539
+ .e-bigger .e-float-input.e-small:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
4540
+ .e-bigger.e-small .e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
4541
+ .e-float-input.e-bigger.e-small:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
4542
+ .e-float-input.e-control-wrapper.e-autofill:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
4543
+ .e-bigger .e-float-input.e-control-wrapper.e-autofill:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
4544
+ .e-bigger.e-float-input.e-control-wrapper.e-autofill:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
4545
+ .e-small .e-float-input.e-control-wrapper.e-autofill:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
4546
+ .e-small.e-float-input.e-control-wrapper.e-autofill:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
4547
+ .e-bigger .e-float-input.e-small.e-control-wrapper.e-autofill:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
4548
+ .e-bigger.e-small .e-float-input.e-control-wrapper.e-autofill:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
4549
+ .e-float-input.e-bigger.e-small.e-control-wrapper.e-autofill:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text {
4550
+ color: #374151;
4551
+ }
4552
+
4553
+ .e-float-input:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4554
+ .e-bigger .e-float-input:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4555
+ .e-bigger.e-float-input:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4556
+ .e-small .e-float-input:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4557
+ .e-small.e-float-input:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4558
+ .e-bigger .e-float-input.e-small:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4559
+ .e-bigger.e-small .e-float-input:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4560
+ .e-float-input.e-bigger.e-small:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4561
+ .e-float-input.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4562
+ .e-bigger .e-float-input.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4563
+ .e-bigger.e-float-input.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4564
+ .e-small .e-float-input.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4565
+ .e-small.e-float-input.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4566
+ .e-bigger .e-float-input.e-small.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4567
+ .e-bigger.e-small .e-float-input.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4568
+ .e-float-input.e-bigger.e-small.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text {
4569
+ color: #374151;
4570
+ }
4571
+
4572
+ .e-input-group textarea.e-input:-ms-input-placeholder {
4573
+ color: #6b7280;
4574
+ }
4575
+
4576
+ .e-input-group textarea.e-input:-moz-placeholder {
4577
+ color: #6b7280;
4578
+ }
4579
+
4580
+ .e-input-group .e-input:-ms-input-placeholder {
4581
+ color: #6b7280;
4582
+ }
4583
+
4584
+ input.e-input::-webkit-input-placeholder {
4585
+ color: #6b7280;
4586
+ }
4587
+
4588
+ /* stylelint-disable-line no-empty-source */