select2.css 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608
  1. /*
  2. Version: @@ver@@ Timestamp: @@timestamp@@
  3. */
  4. .select2-container {
  5. position: relative;
  6. display: inline-block;
  7. /* inline-block for ie7 */
  8. zoom: 1;
  9. *display: inline;
  10. vertical-align: top;
  11. }
  12. .select2-container,
  13. .select2-drop,
  14. .select2-search,
  15. .select2-search input{
  16. /*
  17. Force border-box so that % widths fit the parent
  18. container without overlap because of margin/padding.
  19. More Info : http://www.quirksmode.org/css/box.html
  20. */
  21. -webkit-box-sizing: border-box; /* webkit */
  22. -khtml-box-sizing: border-box; /* konqueror */
  23. -moz-box-sizing: border-box; /* firefox */
  24. -ms-box-sizing: border-box; /* ie */
  25. box-sizing: border-box; /* css3 */
  26. }
  27. .select2-container .select2-choice {
  28. display: block;
  29. height: 26px;
  30. padding: 0 0 0 8px;
  31. overflow: hidden;
  32. position: relative;
  33. border: 1px solid #aaa;
  34. white-space: nowrap;
  35. line-height: 26px;
  36. color: #444;
  37. text-decoration: none;
  38. -webkit-border-radius: 4px;
  39. -moz-border-radius: 4px;
  40. border-radius: 4px;
  41. -webkit-background-clip: padding-box;
  42. -moz-background-clip: padding;
  43. background-clip: padding-box;
  44. -webkit-touch-callout: none;
  45. -webkit-user-select: none;
  46. -khtml-user-select: none;
  47. -moz-user-select: none;
  48. -ms-user-select: none;
  49. user-select: none;
  50. background-color: #fff;
  51. background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eeeeee), color-stop(0.5, white));
  52. background-image: -webkit-linear-gradient(center bottom, #eeeeee 0%, white 50%);
  53. background-image: -moz-linear-gradient(center bottom, #eeeeee 0%, white 50%);
  54. background-image: -o-linear-gradient(bottom, #eeeeee 0%, #ffffff 50%);
  55. background-image: -ms-linear-gradient(top, #ffffff 0%, #eeeeee 50%);
  56. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
  57. background-image: linear-gradient(top, #ffffff 0%, #eeeeee 50%);
  58. }
  59. .select2-container.select2-drop-above .select2-choice {
  60. border-bottom-color: #aaa;
  61. -webkit-border-radius:0 0 4px 4px;
  62. -moz-border-radius:0 0 4px 4px;
  63. border-radius:0 0 4px 4px;
  64. background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eeeeee), color-stop(0.9, white));
  65. background-image: -webkit-linear-gradient(center bottom, #eeeeee 0%, white 90%);
  66. background-image: -moz-linear-gradient(center bottom, #eeeeee 0%, white 90%);
  67. background-image: -o-linear-gradient(bottom, #eeeeee 0%, white 90%);
  68. background-image: -ms-linear-gradient(top, #eeeeee 0%,#ffffff 90%);
  69. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eeeeee',GradientType=0 );
  70. background-image: linear-gradient(top, #eeeeee 0%,#ffffff 90%);
  71. }
  72. .select2-container .select2-choice span {
  73. margin-right: 26px;
  74. display: block;
  75. overflow: hidden;
  76. white-space: nowrap;
  77. -ms-text-overflow: ellipsis;
  78. -o-text-overflow: ellipsis;
  79. text-overflow: ellipsis;
  80. }
  81. .select2-container .select2-choice abbr {
  82. display: block;
  83. width: 12px;
  84. height: 12px;
  85. position: absolute;
  86. right: 26px;
  87. top: 8px;
  88. font-size: 1px;
  89. text-decoration: none;
  90. border: 0;
  91. background: url('select2.png') right top no-repeat;
  92. cursor: pointer;
  93. outline: 0;
  94. }
  95. .select2-container .select2-choice abbr:hover {
  96. background-position: right -11px;
  97. cursor: pointer;
  98. }
  99. .select2-drop-mask {
  100. position: absolute;
  101. left: 0;
  102. top: 0;
  103. z-index: 9998;
  104. opacity: 0;
  105. }
  106. .select2-drop {
  107. width: 100%;
  108. margin-top:-1px;
  109. position: absolute;
  110. z-index: 9999;
  111. top: 100%;
  112. background: #fff;
  113. color: #000;
  114. border: 1px solid #aaa;
  115. border-top: 0;
  116. -webkit-border-radius: 0 0 4px 4px;
  117. -moz-border-radius: 0 0 4px 4px;
  118. border-radius: 0 0 4px 4px;
  119. -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
  120. -moz-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
  121. -o-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
  122. box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
  123. }
  124. .select2-drop.select2-drop-above {
  125. margin-top: 1px;
  126. border-top: 1px solid #aaa;
  127. border-bottom: 0;
  128. -webkit-border-radius: 4px 4px 0 0;
  129. -moz-border-radius: 4px 4px 0 0;
  130. border-radius: 4px 4px 0 0;
  131. -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
  132. -moz-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
  133. -o-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
  134. box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
  135. }
  136. .select2-container .select2-choice div {
  137. display: block;
  138. width: 18px;
  139. height: 100%;
  140. position: absolute;
  141. right: 0;
  142. top: 0;
  143. border-left: 1px solid #aaa;
  144. -webkit-border-radius: 0 4px 4px 0;
  145. -moz-border-radius: 0 4px 4px 0;
  146. border-radius: 0 4px 4px 0;
  147. -webkit-background-clip: padding-box;
  148. -moz-background-clip: padding;
  149. background-clip: padding-box;
  150. background: #ccc;
  151. background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
  152. background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
  153. background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
  154. background-image: -o-linear-gradient(bottom, #ccc 0%, #eee 60%);
  155. background-image: -ms-linear-gradient(top, #cccccc 0%, #eeeeee 60%);
  156. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#cccccc', GradientType = 0);
  157. background-image: linear-gradient(top, #cccccc 0%, #eeeeee 60%);
  158. }
  159. .select2-container .select2-choice div b {
  160. display: block;
  161. width: 100%;
  162. height: 100%;
  163. background: url('select2.png') no-repeat 0 1px;
  164. }
  165. .select2-search {
  166. display: inline-block;
  167. width: 100%;
  168. min-height: 26px;
  169. margin: 0;
  170. padding-left: 4px;
  171. padding-right: 4px;
  172. position: relative;
  173. z-index: 10000;
  174. white-space: nowrap;
  175. }
  176. .select2-search-hidden {
  177. display: block;
  178. position: absolute;
  179. left: -10000px;
  180. }
  181. .select2-search input {
  182. width: 100%;
  183. height: auto !important;
  184. min-height: 26px;
  185. padding: 4px 20px 4px 5px;
  186. margin: 0;
  187. outline: 0;
  188. font-family: sans-serif;
  189. font-size: 1em;
  190. border: 1px solid #aaa;
  191. -webkit-border-radius: 0;
  192. -moz-border-radius: 0;
  193. border-radius: 0;
  194. -webkit-box-shadow: none;
  195. -moz-box-shadow: none;
  196. box-shadow: none;
  197. background: #fff url('select2.png') no-repeat 100% -22px;
  198. background: url('select2.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee));
  199. background: url('select2.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%);
  200. background: url('select2.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%);
  201. background: url('select2.png') no-repeat 100% -22px, -o-linear-gradient(bottom, white 85%, #eeeeee 99%);
  202. background: url('select2.png') no-repeat 100% -22px, -ms-linear-gradient(top, #ffffff 85%, #eeeeee 99%);
  203. background: url('select2.png') no-repeat 100% -22px, linear-gradient(top, #ffffff 85%, #eeeeee 99%);
  204. }
  205. .select2-drop.select2-drop-above .select2-search input {
  206. margin-top: 4px;
  207. }
  208. .select2-search input.select2-active {
  209. background: #fff url('select2-spinner.gif') no-repeat 100%;
  210. background: url('select2-spinner.gif') no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee));
  211. background: url('select2-spinner.gif') no-repeat 100%, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%);
  212. background: url('select2-spinner.gif') no-repeat 100%, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%);
  213. background: url('select2-spinner.gif') no-repeat 100%, -o-linear-gradient(bottom, white 85%, #eeeeee 99%);
  214. background: url('select2-spinner.gif') no-repeat 100%, -ms-linear-gradient(top, #ffffff 85%, #eeeeee 99%);
  215. background: url('select2-spinner.gif') no-repeat 100%, linear-gradient(top, #ffffff 85%, #eeeeee 99%);
  216. }
  217. .select2-container-active .select2-choice,
  218. .select2-container-active .select2-choices {
  219. border: 1px solid #5897fb;
  220. outline: none;
  221. -webkit-box-shadow: 0 0 5px rgba(0,0,0,.3);
  222. -moz-box-shadow: 0 0 5px rgba(0,0,0,.3);
  223. -o-box-shadow: 0 0 5px rgba(0,0,0,.3);
  224. box-shadow: 0 0 5px rgba(0,0,0,.3);
  225. }
  226. .select2-dropdown-open .select2-choice {
  227. border-bottom-color: transparent;
  228. -webkit-box-shadow: 0 1px 0 #fff inset;
  229. -moz-box-shadow: 0 1px 0 #fff inset;
  230. -o-box-shadow: 0 1px 0 #fff inset;
  231. box-shadow: 0 1px 0 #fff inset;
  232. -webkit-border-bottom-left-radius: 0;
  233. -moz-border-radius-bottomleft: 0;
  234. border-bottom-left-radius: 0;
  235. -webkit-border-bottom-right-radius: 0;
  236. -moz-border-radius-bottomright: 0;
  237. border-bottom-right-radius: 0;
  238. background-color: #eee;
  239. background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, white), color-stop(0.5, #eeeeee));
  240. background-image: -webkit-linear-gradient(center bottom, white 0%, #eeeeee 50%);
  241. background-image: -moz-linear-gradient(center bottom, white 0%, #eeeeee 50%);
  242. background-image: -o-linear-gradient(bottom, white 0%, #eeeeee 50%);
  243. background-image: -ms-linear-gradient(top, #ffffff 0%,#eeeeee 50%);
  244. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#ffffff',GradientType=0 );
  245. background-image: linear-gradient(top, #ffffff 0%,#eeeeee 50%);
  246. }
  247. .select2-dropdown-open .select2-choice div {
  248. background: transparent;
  249. border-left: none;
  250. filter: none;
  251. }
  252. .select2-dropdown-open .select2-choice div b {
  253. background-position: -18px 1px;
  254. }
  255. /* results */
  256. .select2-results {
  257. max-height: 200px;
  258. padding: 0 0 0 4px;
  259. margin: 4px 4px 4px 0;
  260. position: relative;
  261. overflow-x: hidden;
  262. overflow-y: auto;
  263. }
  264. .select2-results ul.select2-result-sub {
  265. margin: 0;
  266. }
  267. .select2-results ul.select2-result-sub > li .select2-result-label { padding-left: 20px }
  268. .select2-results ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 40px }
  269. .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 60px }
  270. .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 80px }
  271. .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 100px }
  272. .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 110px }
  273. .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 120px }
  274. .select2-results li {
  275. list-style: none;
  276. display: list-item;
  277. background-image: none;
  278. }
  279. .select2-results li.select2-result-with-children > .select2-result-label {
  280. font-weight: bold;
  281. }
  282. .select2-results .select2-result-label {
  283. padding: 3px 7px 4px;
  284. margin: 0;
  285. cursor: pointer;
  286. -webkit-touch-callout: none;
  287. -webkit-user-select: none;
  288. -khtml-user-select: none;
  289. -moz-user-select: none;
  290. -ms-user-select: none;
  291. user-select: none;
  292. }
  293. .select2-results .select2-highlighted {
  294. background: #3875d7;
  295. color: #fff;
  296. }
  297. .select2-results li em {
  298. background: #feffde;
  299. font-style: normal;
  300. }
  301. .select2-results .select2-highlighted em {
  302. background: transparent;
  303. }
  304. .select2-results .select2-highlighted ul {
  305. background: white;
  306. color: #000;
  307. }
  308. .select2-results .select2-no-results,
  309. .select2-results .select2-searching,
  310. .select2-results .select2-selection-limit {
  311. background: #f4f4f4;
  312. display: list-item;
  313. }
  314. /*
  315. disabled look for disabled choices in the results dropdown
  316. */
  317. .select2-results .select2-disabled.select2-highlighted {
  318. color: #666;
  319. background: #f4f4f4;
  320. display: list-item;
  321. cursor: default;
  322. }
  323. .select2-results .select2-disabled {
  324. background: #f4f4f4;
  325. display: list-item;
  326. cursor: default;
  327. }
  328. .select2-results .select2-selected {
  329. display: none;
  330. }
  331. .select2-more-results.select2-active {
  332. background: #f4f4f4 url('select2-spinner.gif') no-repeat 100%;
  333. }
  334. .select2-more-results {
  335. background: #f4f4f4;
  336. display: list-item;
  337. }
  338. /* disabled styles */
  339. .select2-container.select2-container-disabled .select2-choice {
  340. background-color: #f4f4f4;
  341. background-image: none;
  342. border: 1px solid #ddd;
  343. cursor: default;
  344. }
  345. .select2-container.select2-container-disabled .select2-choice div {
  346. background-color: #f4f4f4;
  347. background-image: none;
  348. border-left: 0;
  349. }
  350. .select2-container.select2-container-disabled .select2-choice abbr {
  351. display: none
  352. }
  353. /* multiselect */
  354. .select2-container-multi .select2-choices {
  355. height: auto !important;
  356. height: 1%;
  357. margin: 0;
  358. padding: 0;
  359. position: relative;
  360. border: 1px solid #aaa;
  361. cursor: text;
  362. overflow: hidden;
  363. background-color: #fff;
  364. background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
  365. background-image: -webkit-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
  366. background-image: -moz-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
  367. background-image: -o-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
  368. background-image: -ms-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
  369. background-image: linear-gradient(top, #eeeeee 1%, #ffffff 15%);
  370. }
  371. .select2-locked {
  372. padding: 3px 5px 3px 5px !important;
  373. }
  374. .select2-container-multi .select2-choices {
  375. min-height: 26px;
  376. }
  377. .select2-container-multi.select2-container-active .select2-choices {
  378. border: 1px solid #5897fb;
  379. outline: none;
  380. -webkit-box-shadow: 0 0 5px rgba(0,0,0,.3);
  381. -moz-box-shadow: 0 0 5px rgba(0,0,0,.3);
  382. -o-box-shadow: 0 0 5px rgba(0,0,0,.3);
  383. box-shadow: 0 0 5px rgba(0,0,0,.3);
  384. }
  385. .select2-container-multi .select2-choices li {
  386. float: left;
  387. list-style: none;
  388. }
  389. .select2-container-multi .select2-choices .select2-search-field {
  390. margin: 0;
  391. padding: 0;
  392. white-space: nowrap;
  393. }
  394. .select2-container-multi .select2-choices .select2-search-field input {
  395. padding: 5px;
  396. margin: 1px 0;
  397. font-family: sans-serif;
  398. font-size: 100%;
  399. color: #666;
  400. outline: 0;
  401. border: 0;
  402. -webkit-box-shadow: none;
  403. -moz-box-shadow: none;
  404. -o-box-shadow: none;
  405. box-shadow: none;
  406. background: transparent !important;
  407. }
  408. .select2-container-multi .select2-choices .select2-search-field input.select2-active {
  409. background: #fff url('select2-spinner.gif') no-repeat 100% !important;
  410. }
  411. .select2-default {
  412. color: #999 !important;
  413. }
  414. .select2-container-multi .select2-choices .select2-search-choice {
  415. padding: 3px 5px 3px 18px;
  416. margin: 3px 0 3px 5px;
  417. position: relative;
  418. line-height: 13px;
  419. color: #333;
  420. cursor: default;
  421. border: 1px solid #aaaaaa;
  422. -webkit-border-radius: 3px;
  423. -moz-border-radius: 3px;
  424. border-radius: 3px;
  425. -webkit-box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05);
  426. -moz-box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05);
  427. box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05);
  428. -webkit-background-clip: padding-box;
  429. -moz-background-clip: padding;
  430. background-clip: padding-box;
  431. -webkit-touch-callout: none;
  432. -webkit-user-select: none;
  433. -khtml-user-select: none;
  434. -moz-user-select: none;
  435. -ms-user-select: none;
  436. user-select: none;
  437. background-color: #e4e4e4;
  438. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0 );
  439. background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
  440. background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  441. background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  442. background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  443. background-image: -ms-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  444. background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  445. }
  446. .select2-container-multi .select2-choices .select2-search-choice span {
  447. cursor: default;
  448. }
  449. .select2-container-multi .select2-choices .select2-search-choice-focus {
  450. background: #d4d4d4;
  451. }
  452. .select2-search-choice-close {
  453. display: block;
  454. width: 12px;
  455. height: 13px;
  456. position: absolute;
  457. right: 3px;
  458. top: 4px;
  459. font-size: 1px;
  460. outline: none;
  461. background: url('select2.png') right top no-repeat;
  462. }
  463. .select2-container-multi .select2-search-choice-close {
  464. left: 3px;
  465. }
  466. .select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
  467. background-position: right -11px;
  468. }
  469. .select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
  470. background-position: right -11px;
  471. }
  472. /* disabled styles */
  473. .select2-container-multi.select2-container-disabled .select2-choices{
  474. background-color: #f4f4f4;
  475. background-image: none;
  476. border: 1px solid #ddd;
  477. cursor: default;
  478. }
  479. .select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
  480. padding: 3px 5px 3px 5px;
  481. border: 1px solid #ddd;
  482. background-image: none;
  483. background-color: #f4f4f4;
  484. }
  485. .select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {
  486. display: none;
  487. }
  488. /* end multiselect */
  489. .select2-result-selectable .select2-match,
  490. .select2-result-unselectable .select2-match {
  491. text-decoration: underline;
  492. }
  493. .select2-offscreen {
  494. position: absolute;
  495. left: -10000px;
  496. }
  497. /* Retina-ize icons */
  498. @media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  499. .select2-search input, .select2-search-choice-close, .select2-container .select2-choice abbr, .select2-container .select2-choice div b {
  500. background-image: url('select2x2.png') !important;
  501. background-repeat: no-repeat !important;
  502. background-size: 60px 40px !important;
  503. }
  504. .select2-search input {
  505. background-position: 100% -21px !important;
  506. }
  507. }