select2.css 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683
  1. /*
  2. Version: 3.5.4 Timestamp: Sun Aug 30 13:30:32 EDT 2015
  3. */
  4. .select2-container {
  5. margin: 0;
  6. position: relative;
  7. display: inline-block;
  8. vertical-align: middle;
  9. }
  10. .select2-container,
  11. .select2-drop,
  12. .select2-search,
  13. .select2-search input {
  14. /*
  15. Force border-box so that % widths fit the parent
  16. container without overlap because of margin/padding.
  17. More Info : http://www.quirksmode.org/css/box.html
  18. */
  19. -webkit-box-sizing: border-box; /* webkit */
  20. -moz-box-sizing: border-box; /* firefox */
  21. box-sizing: border-box; /* css3 */
  22. }
  23. .select2-container .select2-choice {
  24. display: block;
  25. height: 26px;
  26. padding: 0 0 0 8px;
  27. overflow: hidden;
  28. position: relative;
  29. border: 1px solid #aaa;
  30. white-space: nowrap;
  31. line-height: 26px;
  32. color: #444;
  33. text-decoration: none;
  34. border-radius: 4px;
  35. background-clip: padding-box;
  36. -webkit-touch-callout: none;
  37. -webkit-user-select: none;
  38. -moz-user-select: none;
  39. -ms-user-select: none;
  40. user-select: none;
  41. background-color: #fff;
  42. background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff));
  43. background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%);
  44. background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
  45. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
  46. background-image: linear-gradient(to top, #eee 0%, #fff 50%);
  47. }
  48. html[dir="rtl"] .select2-container .select2-choice {
  49. padding: 0 8px 0 0;
  50. }
  51. .select2-container.select2-drop-above .select2-choice {
  52. border-bottom-color: #aaa;
  53. border-radius: 0 0 4px 4px;
  54. background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff));
  55. background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%);
  56. background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%);
  57. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
  58. background-image: linear-gradient(to bottom, #eee 0%, #fff 90%);
  59. }
  60. .select2-container.select2-allowclear .select2-choice .select2-chosen {
  61. margin-right: 42px;
  62. }
  63. .select2-container .select2-choice > .select2-chosen {
  64. margin-right: 26px;
  65. display: block;
  66. overflow: hidden;
  67. white-space: nowrap;
  68. text-overflow: ellipsis;
  69. float: none;
  70. width: auto;
  71. }
  72. html[dir="rtl"] .select2-container .select2-choice > .select2-chosen {
  73. margin-left: 26px;
  74. margin-right: 0;
  75. }
  76. .select2-container .select2-choice abbr {
  77. display: none;
  78. width: 12px;
  79. height: 12px;
  80. position: absolute;
  81. right: 24px;
  82. top: 8px;
  83. font-size: 1px;
  84. text-decoration: none;
  85. border: 0;
  86. cursor: pointer;
  87. outline: 0;
  88. }
  89. .select2-container.select2-allowclear .select2-choice abbr {
  90. display: inline-block;
  91. }
  92. .select2-container .select2-choice abbr:hover {
  93. background-position: right -11px;
  94. cursor: pointer;
  95. }
  96. .select2-drop-mask {
  97. border: 0;
  98. margin: 0;
  99. padding: 0;
  100. position: fixed;
  101. left: 0;
  102. top: 0;
  103. min-height: 100%;
  104. min-width: 100%;
  105. height: auto;
  106. width: auto;
  107. opacity: 0;
  108. z-index: 9998;
  109. /* styles required for IE to work */
  110. background-color: #fff;
  111. filter: alpha(opacity=0);
  112. }
  113. .select2-drop {
  114. width: 100%;
  115. margin-top: -1px;
  116. position: absolute;
  117. z-index: 9999;
  118. top: 100%;
  119. background: #fff;
  120. color: #000;
  121. border: 1px solid #aaa;
  122. border-top: 0;
  123. border-radius: 0 0 4px 4px;
  124. -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
  125. box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
  126. }
  127. .select2-drop.select2-drop-above {
  128. margin-top: 1px;
  129. border-top: 1px solid #aaa;
  130. border-bottom: 0;
  131. border-radius: 4px 4px 0 0;
  132. -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
  133. box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
  134. }
  135. .select2-drop-active {
  136. border: 1px solid #5897fb;
  137. border-top: none;
  138. }
  139. .select2-drop.select2-drop-above.select2-drop-active {
  140. border-top: 1px solid #5897fb;
  141. }
  142. .select2-drop-auto-width {
  143. border-top: 1px solid #aaa;
  144. width: auto;
  145. }
  146. .select2-container .select2-choice .select2-arrow {
  147. display: inline-block;
  148. width: 18px;
  149. height: 100%;
  150. position: absolute;
  151. right: 0;
  152. top: 0;
  153. border-left: 1px solid #aaa;
  154. border-radius: 0 4px 4px 0;
  155. background-clip: padding-box;
  156. background: #ccc;
  157. background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
  158. background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
  159. background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
  160. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#cccccc', GradientType = 0);
  161. background-image: linear-gradient(to top, #ccc 0%, #eee 60%);
  162. }
  163. html[dir="rtl"] .select2-container .select2-choice .select2-arrow {
  164. left: 0;
  165. right: auto;
  166. border-left: none;
  167. border-right: 1px solid #aaa;
  168. border-radius: 4px 0 0 4px;
  169. }
  170. .select2-container .select2-choice .select2-arrow b {
  171. display: block;
  172. width: 100%;
  173. height: 100%;
  174. }
  175. html[dir="rtl"] .select2-container .select2-choice .select2-arrow b {
  176. background-position: 2px 1px;
  177. }
  178. .select2-search {
  179. display: inline-block;
  180. width: 100%;
  181. min-height: 26px;
  182. margin: 0;
  183. padding: 4px 4px 0 4px;
  184. position: relative;
  185. z-index: 10000;
  186. white-space: nowrap;
  187. }
  188. .select2-search input {
  189. width: 100%;
  190. height: auto !important;
  191. min-height: 26px;
  192. padding: 4px 20px 4px 5px;
  193. margin: 0;
  194. outline: 0;
  195. font-family: sans-serif;
  196. font-size: 1em;
  197. border: 1px solid #aaa;
  198. border-radius: 0;
  199. -webkit-box-shadow: none;
  200. box-shadow: none;
  201. }
  202. html[dir="rtl"] .select2-search input {
  203. padding: 4px 5px 4px 20px;
  204. }
  205. .select2-search input.select2-active {
  206. }
  207. .select2-container-active .select2-choice,
  208. .select2-container-active .select2-choices {
  209. border: 1px solid #5897fb;
  210. outline: none;
  211. -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
  212. box-shadow: 0 0 5px rgba(0, 0, 0, .3);
  213. }
  214. .select2-dropdown-open .select2-choice {
  215. border-bottom-color: transparent;
  216. -webkit-box-shadow: 0 1px 0 #fff inset;
  217. box-shadow: 0 1px 0 #fff inset;
  218. border-bottom-left-radius: 0;
  219. border-bottom-right-radius: 0;
  220. background-color: #eee;
  221. background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(0.5, #eee));
  222. background-image: -webkit-linear-gradient(center bottom, #fff 0%, #eee 50%);
  223. background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%);
  224. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
  225. background-image: linear-gradient(to top, #fff 0%, #eee 50%);
  226. }
  227. .select2-dropdown-open.select2-drop-above .select2-choice,
  228. .select2-dropdown-open.select2-drop-above .select2-choices {
  229. border: 1px solid #5897fb;
  230. border-top-color: transparent;
  231. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #eee));
  232. background-image: -webkit-linear-gradient(center top, #fff 0%, #eee 50%);
  233. background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%);
  234. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
  235. background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
  236. }
  237. .select2-dropdown-open .select2-choice .select2-arrow {
  238. background: transparent;
  239. border-left: none;
  240. filter: none;
  241. }
  242. html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow {
  243. border-right: none;
  244. }
  245. .select2-dropdown-open .select2-choice .select2-arrow b {
  246. background-position: -18px 1px;
  247. }
  248. html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow b {
  249. background-position: -16px 1px;
  250. }
  251. .select2-hidden-accessible {
  252. border: 0;
  253. clip: rect(0 0 0 0);
  254. height: 1px;
  255. margin: -1px;
  256. overflow: hidden;
  257. padding: 0;
  258. position: absolute;
  259. width: 1px;
  260. }
  261. /* results */
  262. .select2-results {
  263. max-height: 200px;
  264. padding: 0 0 0 4px;
  265. margin: 4px 4px 4px 0;
  266. position: relative;
  267. overflow-x: hidden;
  268. overflow-y: auto;
  269. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  270. }
  271. html[dir="rtl"] .select2-results {
  272. padding: 0 4px 0 0;
  273. margin: 4px 0 4px 4px;
  274. }
  275. .select2-results ul.select2-result-sub {
  276. margin: 0;
  277. padding-left: 0;
  278. }
  279. .select2-results li {
  280. list-style: none;
  281. display: list-item;
  282. background-image: none;
  283. }
  284. .select2-results li.select2-result-with-children > .select2-result-label {
  285. font-weight: bold;
  286. }
  287. .select2-results .select2-result-label {
  288. padding: 3px 7px 4px;
  289. margin: 0;
  290. cursor: pointer;
  291. min-height: 1em;
  292. -webkit-touch-callout: none;
  293. -webkit-user-select: none;
  294. -moz-user-select: none;
  295. -ms-user-select: none;
  296. user-select: none;
  297. }
  298. .select2-results-dept-1 .select2-result-label { padding-left: 20px }
  299. .select2-results-dept-2 .select2-result-label { padding-left: 40px }
  300. .select2-results-dept-3 .select2-result-label { padding-left: 60px }
  301. .select2-results-dept-4 .select2-result-label { padding-left: 80px }
  302. .select2-results-dept-5 .select2-result-label { padding-left: 100px }
  303. .select2-results-dept-6 .select2-result-label { padding-left: 110px }
  304. .select2-results-dept-7 .select2-result-label { padding-left: 120px }
  305. .select2-results .select2-highlighted {
  306. background: #3875d7;
  307. color: #fff;
  308. }
  309. .select2-results li em {
  310. background: #feffde;
  311. font-style: normal;
  312. }
  313. .select2-results .select2-highlighted em {
  314. background: transparent;
  315. }
  316. .select2-results .select2-highlighted ul {
  317. background: #fff;
  318. color: #000;
  319. }
  320. .select2-results .select2-no-results,
  321. .select2-results .select2-searching,
  322. .select2-results .select2-ajax-error,
  323. .select2-results .select2-selection-limit {
  324. background: #f4f4f4;
  325. display: list-item;
  326. padding-left: 5px;
  327. }
  328. /*
  329. disabled look for disabled choices in the results dropdown
  330. */
  331. .select2-results .select2-disabled.select2-highlighted {
  332. color: #666;
  333. background: #f4f4f4;
  334. display: list-item;
  335. cursor: default;
  336. }
  337. .select2-results .select2-disabled {
  338. background: #f4f4f4;
  339. display: list-item;
  340. cursor: default;
  341. }
  342. .select2-results .select2-selected {
  343. display: none;
  344. }
  345. .select2-more-results.select2-active {
  346. background: #f4f4f4 url('select2-spinner.gif') no-repeat 100%;
  347. }
  348. .select2-results .select2-ajax-error {
  349. background: rgba(255, 50, 50, .2);
  350. }
  351. .select2-more-results {
  352. background: #f4f4f4;
  353. display: list-item;
  354. }
  355. /* disabled styles */
  356. .select2-container.select2-container-disabled .select2-choice {
  357. background-color: #f4f4f4;
  358. background-image: none;
  359. border: 1px solid #ddd;
  360. cursor: default;
  361. }
  362. .select2-container.select2-container-disabled .select2-choice .select2-arrow {
  363. background-color: #f4f4f4;
  364. background-image: none;
  365. border-left: 0;
  366. }
  367. .select2-container.select2-container-disabled .select2-choice abbr {
  368. display: none;
  369. }
  370. /* multiselect */
  371. .select2-container-multi .select2-choices {
  372. height: auto !important;
  373. height: 1%;
  374. margin: 0;
  375. padding: 0 5px 0 0;
  376. position: relative;
  377. border: 1px solid #aaa;
  378. cursor: text;
  379. overflow: hidden;
  380. background-color: #fff;
  381. background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eee), color-stop(15%, #fff));
  382. background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%);
  383. background-image: -moz-linear-gradient(top, #eee 1%, #fff 15%);
  384. background-image: linear-gradient(to bottom, #eee 1%, #fff 15%);
  385. }
  386. html[dir="rtl"] .select2-container-multi .select2-choices {
  387. padding: 0 0 0 5px;
  388. }
  389. .select2-locked {
  390. padding: 3px 5px 3px 5px !important;
  391. }
  392. .select2-container-multi .select2-choices {
  393. min-height: 26px;
  394. }
  395. .select2-container-multi.select2-container-active .select2-choices {
  396. border: 1px solid #5897fb;
  397. outline: none;
  398. -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
  399. box-shadow: 0 0 5px rgba(0, 0, 0, .3);
  400. }
  401. .select2-container-multi .select2-choices li {
  402. float: left;
  403. list-style: none;
  404. }
  405. html[dir="rtl"] .select2-container-multi .select2-choices li
  406. {
  407. float: right;
  408. }
  409. .select2-container-multi .select2-choices .select2-search-field {
  410. margin: 0;
  411. padding: 0;
  412. white-space: nowrap;
  413. }
  414. .select2-container-multi .select2-choices .select2-search-field input {
  415. padding: 5px;
  416. margin: 1px 0;
  417. font-family: sans-serif;
  418. font-size: 100%;
  419. color: #666;
  420. outline: 0;
  421. border: 0;
  422. -webkit-box-shadow: none;
  423. box-shadow: none;
  424. background: transparent !important;
  425. }
  426. .select2-container-multi .select2-choices .select2-search-field input.select2-active {
  427. background: #fff url('select2-spinner.gif') no-repeat 100% !important;
  428. }
  429. .select2-default {
  430. color: #999 !important;
  431. }
  432. .select2-container-multi .select2-choices .select2-search-choice {
  433. padding: 3px 5px 3px 18px;
  434. margin: 3px 0 3px 5px;
  435. position: relative;
  436. line-height: 13px;
  437. color: #333;
  438. cursor: default;
  439. border: 1px solid #aaaaaa;
  440. border-radius: 3px;
  441. -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  442. box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  443. background-clip: padding-box;
  444. -webkit-touch-callout: none;
  445. -webkit-user-select: none;
  446. -moz-user-select: none;
  447. -ms-user-select: none;
  448. user-select: none;
  449. background-color: #e4e4e4;
  450. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
  451. background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
  452. background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  453. background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  454. background-image: linear-gradient(to bottom, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  455. }
  456. html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice
  457. {
  458. margin: 3px 5px 3px 0;
  459. padding: 3px 18px 3px 5px;
  460. }
  461. .select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
  462. cursor: default;
  463. }
  464. .select2-container-multi .select2-choices .select2-search-choice-focus {
  465. background: #d4d4d4;
  466. }
  467. .select2-search-choice-close {
  468. display: block;
  469. width: 12px;
  470. height: 13px;
  471. position: absolute;
  472. right: 3px;
  473. top: 4px;
  474. font-size: 1px;
  475. outline: none;
  476. }
  477. html[dir="rtl"] .select2-search-choice-close {
  478. right: auto;
  479. left: 3px;
  480. }
  481. .select2-container-multi .select2-search-choice-close {
  482. left: 3px;
  483. }
  484. html[dir="rtl"] .select2-container-multi .select2-search-choice-close {
  485. left: auto;
  486. right: 2px;
  487. }
  488. .select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
  489. background-position: right -11px;
  490. }
  491. .select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
  492. background-position: right -11px;
  493. }
  494. /* disabled styles */
  495. .select2-container-multi.select2-container-disabled .select2-choices {
  496. background-color: #f4f4f4;
  497. background-image: none;
  498. border: 1px solid #ddd;
  499. cursor: default;
  500. }
  501. .select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
  502. padding: 3px 5px 3px 5px;
  503. border: 1px solid #ddd;
  504. background-image: none;
  505. background-color: #f4f4f4;
  506. }
  507. .select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close { display: none;
  508. background: none;
  509. }
  510. /* end multiselect */
  511. .select2-result-selectable .select2-match,
  512. .select2-result-unselectable .select2-match {
  513. text-decoration: underline;
  514. }
  515. .select2-offscreen, .select2-offscreen:focus {
  516. clip: rect(0 0 0 0) !important;
  517. width: 1px !important;
  518. height: 1px !important;
  519. border: 0 !important;
  520. margin: 0 !important;
  521. padding: 0 !important;
  522. overflow: hidden !important;
  523. position: absolute !important;
  524. outline: 0 !important;
  525. left: 0px !important;
  526. top: 0px !important;
  527. }
  528. .select2-display-none {
  529. display: none;
  530. }
  531. .select2-measure-scrollbar {
  532. position: absolute;
  533. top: -10000px;
  534. left: -10000px;
  535. width: 100px;
  536. height: 100px;
  537. overflow: scroll;
  538. }
  539. /* Retina-ize icons */
  540. @media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 2dppx) {
  541. .select2-search input,
  542. .select2-search-choice-close,
  543. .select2-container .select2-choice abbr,
  544. .select2-container .select2-choice .select2-arrow b {
  545. background-repeat: no-repeat !important;
  546. background-size: 60px 40px !important;
  547. }
  548. .select2-search input {
  549. background-position: 100% -21px !important;
  550. }
  551. }
  552. /*!
  553. * select2-skins
  554. * Released under MIT. Copyright 2014 Mienard Lumaad
  555. * http://ui.themepixels.com/select2-skins
  556. *
  557. * Github Repository: https://github.com/themepixels/select2-skins
  558. *
  559. */.tpx-select2-container{font-family:'Helvetica Neue',Helvetica,sans-serif}.tpx-select2-container .select2-choice{height:34px;background-image:none;border-radius:3px;border-color:rgba(0,0,0,0.2)}.tpx-select2-container .select2-choice>.select2-chosen{line-height:30px;font-size:14px;margin-right:34px}.tpx-select2-container .select2-choice .select2-arrow{background-image:none;background-color:#fff;width:30px;border-left-color:rgba(0,0,0,0.2)}.tpx-select2-container .select2-choice .select2-arrow b{display:none}.tpx-select2-container .select2-choice .select2-arrow:before{position:absolute;width:28px;content:'\f078';font-family:'FontAwesome';font-size:12px;text-align:center;line-height:32px;opacity:.5}.tpx-select2-container.select2-dropdown-open .select2-choice{background-color:#fff;border-bottom-left-radius:0;border-bottom-right-radius:0}.tpx-select2-container.select2-dropdown-open .select2-choice .select2-arrow{border-left:1px solid rgba(0,0,0,0.2)}.tpx-select2-container.select2-dropdown-open .select2-choice .select2-arrow:before{content:'\f077';opacity:.7}.tpx-select2-container.select2-dropdown-open.select2-container-active .select2-choice{box-shadow:none}.tpx-select2-container.select2-dropdown-open.select2-drop-above .select2-choice{background-image:none;border-top:1px solid rgba(0,0,0,0.3);border-radius:0 0 3px 3px}.tpx-select2-container.select2-container-active .select2-choice{border-color:rgba(0,0,0,0.3);box-shadow:0 0 3px rgba(0,0,0,0.2)}.tpx-select2-container.select2-container-active .select2-choice .select2-arrow{border-left-color:rgba(0,0,0,0.3)}.tpx-select2-container .select2-drop-active{border-color:rgba(0,0,0,0.3)}.tpx-select2-container.select2-container-disabled .select2-choice .select2-arrow{border-left:1px solid rgba(0,0,0,0.1)}.tpx-select2-container.select2-container-multi .select2-choices{min-height:34px;background-image:none;border-color:rgba(0,0,0,0.2);border-radius:3px}.tpx-select2-container.select2-container-multi .select2-choices .select2-search-choice{position:relative;border-color:rgba(0,0,0,0.2);background-image:none;box-shadow:none;font-size:13px;background-color:#f7f7f7;border-radius:2px;padding-top:4px;padding-bottom:4px;line-height:16px;margin-left:3px;margin-bottom:0}.tpx-select2-container.select2-container-multi .select2-choices .select2-search-choice:before{position:absolute;top:4px;left:5px;font-family:'FontAwesome';content:'\f00d';z-index:5;font-size:11px}.tpx-select2-container.select2-container-multi .select2-choices .select2-search-field input{font-family:'Helvetica Neue',Helvetica,sans-serif;font-size:14px;margin:0;padding-left:8px;line-height:21px}.tpx-select2-container.select2-container-multi.select2-container-active .select2-choices{box-shadow:0 0 3px rgba(0,0,0,0.2);border-color:rgba(0,0,0,0.3)}.tpx-select2-container.select2-container-multi.select2-container-active.select2-dropdown-open .select2-choices{border-radius:3px 3px 0 0}.tpx-select2-container.select2-container-multi.select2-container-active.select2-drop-above .select2-choices{border-radius:0 0 3px 3px}.tpx-select2-container .select2-search-choice-close{top:5px;background:none;z-index:10}.tpx-select2-drop{font-family:'Helvetica Neue',Helvetica,sans-serif;border-color:rgba(0,0,0,0.3);box-shadow:0 3px 3px rgba(0,0,0,0.15);border-top:1px solid rgba(0,0,0,0.3);border-radius:0 0 3px 3px}.tpx-select2-drop .select2-search{padding-top:5px;position:relative}.tpx-select2-drop .select2-search input{background-color:#fff;background-image:none;border-color:rgba(0,0,0,0.3);font-size:14px;padding:7px 20px 7px 5px}.tpx-select2-drop .select2-search:after{position:absolute;font-family:'FontAwesome';content:'\f002';top:10px;right:12px;font-size:15px;opacity:.5}.tpx-select2-drop .select2-results{font-size:14px}.tpx-select2-drop .select2-results li{line-height:1.42857}.tpx-select2-drop .select2-results .select2-highlighted{background-color:#428bca;border-radius:2px}.tpx-select2-drop.select2-drop-above{border-radius:3px 3px 0 0;border-bottom:1px solid rgba(0,0,0,0.3)}.tpx-select2-drop.select2-drop-above .select2-search input{margin-top:0}.tpx-select2-drop.select2-drop-above.select2-drop-active{border-top-color:rgba(0,0,0,0.3)}.select2-container-lg .select2-choice{height:46px;padding-left:12px}.select2-container-lg .select2-choice .select2-arrow{width:40px}.select2-container-lg .select2-choice .select2-arrow:before{width:38px;font-size:17px;top:6px}.select2-container-lg .select2-choice>.select2-chosen{font-size:16px;line-height:44px}.select2-container-lg.select2-container-multi .select2-choices{min-height:46px}.select2-container-lg.select2-container-multi .select2-choices .select2-search-field input{font-size:16px;padding-top:11px;padding-bottom:11px;padding-left:10px}.select2-container-lg.select2-container-multi .select2-choices .select2-search-choice{padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:25px;font-size:15px}.select2-container-lg.select2-container-multi .select2-choices .select2-search-choice:before{top:10px;left:8px}.select2-container-lg.select2-container-multi .select2-search-choice-close{top:12px;left:8px}.select2-container-sm .select2-choice{height:30px}.select2-container-sm .select2-choice .select2-arrow{width:28px}.select2-container-sm .select2-choice .select2-arrow:before{line-height:26px;width:26px;font-size:10px}.select2-container-sm .select2-choice>.select2-chosen{font-size:12px;line-height:26px}.select2-container-sm.select2-container-multi .select2-choices{min-height:30px}.select2-container-sm.select2-container-multi .select2-choices .select2-search-field input{padding-bottom:3px;padding-top:3px;font-size:12px;padding-left:8px}.select2-container-sm.select2-container-multi .select2-choices .select2-search-choice{font-size:11px;line-height:12px}.select2-container-sm.select2-container-multi .select2-search-choice-close{top:3px}.select2-drop-sm .select2-search input{font-size:12px}.select2-drop-sm .select2-results{font-size:12px}.tpx-select2-container.select2-error .select2-choice{border-color:#c00;background-color:#fff;box-shadow:none;color:#333}.tpx-select2-container.select2-error .select2-choice .select2-arrow{border-left-color:#c00;background-color:#fff;color:#333}.tpx-select2-container.select2-error .select2-default .select2-chosen{color:rgba(51,51,51,0.5)}.tpx-select2-container.select2-error.select2-container-multi .select2-choices .select2-search-choice{border-color:#b30000;background-color:#fff;color:#333}.tpx-select2-container.select2-error.select2-container-multi .select2-choices .select2-search-choice:before{color:rgba(51,51,51,0.5)}.tpx-select2-container.select2-error.select2-container-active .select2-choice{border-color:#a80000}.tpx-select2-container.select2-error.select2-container-active .select2-choice .select2-arrow{border-left-color:#a80000}.tpx-select2-drop.select2-error{border-color:#a80000;background-color:#fff}.tpx-select2-drop.select2-error .select2-search input{border-color:#a80000}.tpx-select2-drop.select2-error .select2-results{color:#333}.tpx-select2-drop.select2-error .select2-highlighted{background-color:#ccc}.tpx-select2-container.select2-success .select2-choice{border-color:#3c763d;background-color:#fff;box-shadow:none;color:#333}.tpx-select2-container.select2-success .select2-choice .select2-arrow{border-left-color:#3c763d;background-color:#fff;color:#333}.tpx-select2-container.select2-success .select2-default .select2-chosen{color:rgba(51,51,51,0.5)}.tpx-select2-container.select2-success.select2-container-multi .select2-choices .select2-search-choice{border-color:#336534;background-color:#fff;color:#333}.tpx-select2-container.select2-success.select2-container-multi .select2-choices .select2-search-choice:before{color:rgba(51,51,51,0.5)}.tpx-select2-container.select2-success.select2-container-active .select2-choice{border-color:#305e31}.tpx-select2-container.select2-success.select2-container-active .select2-choice .select2-arrow{border-left-color:#305e31}.tpx-select2-drop.select2-success{border-color:#305e31;background-color:#fff}.tpx-select2-drop.select2-success .select2-search input{border-color:#305e31}.tpx-select2-drop.select2-success .select2-results{color:#333}.tpx-select2-drop.select2-success .select2-highlighted{background-color:#ccc}.tpx-select2-container.select2-warning .select2-choice{border-color:#c0753b;background-color:#fff;box-shadow:none;color:#333}.tpx-select2-container.select2-warning .select2-choice .select2-arrow{border-left-color:#c0753b;background-color:#fff;color:#333}.tpx-select2-container.select2-warning .select2-default .select2-chosen{color:rgba(51,51,51,0.5)}.tpx-select2-container.select2-warning.select2-container-multi .select2-choices .select2-search-choice{border-color:#ac6935;background-color:#fff;color:#333}.tpx-select2-container.select2-warning.select2-container-multi .select2-choices .select2-search-choice:before{color:rgba(51,51,51,0.5)}.tpx-select2-container.select2-warning.select2-container-active .select2-choice{border-color:#a56433}.tpx-select2-container.select2-warning.select2-container-active .select2-choice .select2-arrow{border-left-color:#a56433}.tpx-select2-drop.select2-warning{border-color:#a56433;background-color:#fff}.tpx-select2-drop.select2-warning .select2-search input{border-color:#a56433}.tpx-select2-drop.select2-warning .select2-results{color:#333}.tpx-select2-drop.select2-warning .select2-highlighted{background-color:#ccc}.tpx-select2-container.select2-grey .select2-choice{border-color:#ccc;background-color:#eee;box-shadow:none;color:#333}.tpx-select2-container.select2-grey .select2-choice .select2-arrow{border-left-color:#ccc;background-color:#eee;color:#333}.tpx-select2-container.select2-grey .select2-default .select2-chosen{color:rgba(51,51,51,0.5)}.tpx-select2-container.select2-grey.select2-container-multi .select2-choices .select2-search-choice{border-color:#bfbfbf;background-color:#eee;color:#333}.tpx-select2-container.select2-grey.select2-container-multi .select2-choices .select2-search-choice:before{color:rgba(51,51,51,0.5)}.tpx-select2-container.select2-grey.select2-container-active .select2-choice{border-color:#bababa}.tpx-select2-container.select2-grey.select2-container-active .select2-choice .select2-arrow{border-left-color:#bababa}.tpx-select2-drop.select2-grey{border-color:#bababa;background-color:#eee}.tpx-select2-drop.select2-grey .select2-search input{border-color:#bababa}.tpx-select2-drop.select2-grey .select2-results{color:#333}.tpx-select2-drop.select2-grey .select2-highlighted{background-color:#bbb}.tpx-select2-container.select2-darkgrey .select2-choice{border-color:#555;background-color:#666;box-shadow:none;color:#fff}.tpx-select2-container.select2-darkgrey .select2-choice .select2-arrow{border-left-color:#555;background-color:#666;color:#fff}.tpx-select2-container.select2-darkgrey .select2-default .select2-chosen{color:rgba(255,255,255,0.5)}.tpx-select2-container.select2-darkgrey.select2-container-multi .select2-choices .select2-search-choice{border-color:#484848;background-color:#666;color:#fff}.tpx-select2-container.select2-darkgrey.select2-container-multi .select2-choices .select2-search-choice:before{color:rgba(255,255,255,0.5)}.tpx-select2-container.select2-darkgrey.select2-container-active .select2-choice{border-color:#434343}.tpx-select2-container.select2-darkgrey.select2-container-active .select2-choice .select2-arrow{border-left-color:#434343}.tpx-select2-drop.select2-darkgrey{border-color:#434343;background-color:#666}.tpx-select2-drop.select2-darkgrey .select2-search input{border-color:#434343}.tpx-select2-drop.select2-darkgrey .select2-results{color:#fff}.tpx-select2-drop.select2-darkgrey .select2-highlighted{background-color:#333}.tpx-select2-container.select2-lightblue .select2-choice{border-color:#bce8f1;background-color:#ebf6fc;box-shadow:none;color:#31708f}.tpx-select2-container.select2-lightblue .select2-choice .select2-arrow{border-left-color:#bce8f1;background-color:#ebf6fc;color:#31708f}.tpx-select2-container.select2-lightblue .select2-default .select2-chosen{color:rgba(49,112,143,0.5)}.tpx-select2-container.select2-lightblue.select2-container-multi .select2-choices .select2-search-choice{border-color:#a7e1ed;background-color:#ebf6fc;color:#31708f}.tpx-select2-container.select2-lightblue.select2-container-multi .select2-choices .select2-search-choice:before{color:rgba(49,112,143,0.5)}.tpx-select2-container.select2-lightblue.select2-container-active .select2-choice{border-color:#9edeeb}.tpx-select2-container.select2-lightblue.select2-container-active .select2-choice .select2-arrow{border-left-color:#9edeeb}.tpx-select2-drop.select2-lightblue{border-color:#9edeeb;background-color:#ebf6fc}.tpx-select2-drop.select2-lightblue .select2-search input{border-color:#9edeeb}.tpx-select2-drop.select2-lightblue .select2-results{color:#31708f}.tpx-select2-drop.select2-lightblue .select2-highlighted{background-color:#92ceef}.tpx-select2-container.select2-blue .select2-choice{border-color:#2e83cf;background-color:#3f8cd3;box-shadow:none;color:#fff}.tpx-select2-container.select2-blue .select2-choice .select2-arrow{border-left-color:#2e83cf;background-color:#3f8cd3;color:#fff}.tpx-select2-container.select2-blue .select2-default .select2-chosen{color:rgba(255,255,255,0.5)}.tpx-select2-container.select2-blue.select2-container-multi .select2-choices .select2-search-choice{border-color:#2976ba;background-color:#3f8cd3;color:#fff}.tpx-select2-container.select2-blue.select2-container-multi .select2-choices .select2-search-choice:before{color:rgba(255,255,255,0.5)}.tpx-select2-container.select2-blue.select2-container-active .select2-choice{border-color:#2871b2}.tpx-select2-container.select2-blue.select2-container-active .select2-choice .select2-arrow{border-left-color:#2871b2}.tpx-select2-drop.select2-blue{border-color:#2871b2;background-color:#3f8cd3}.tpx-select2-drop.select2-blue .select2-search input{border-color:#2871b2}.tpx-select2-drop.select2-blue .select2-results{color:#fff}.tpx-select2-drop.select2-blue .select2-highlighted{background-color:#20588c}.tpx-select2-container.select2-lime .select2-choice{border-color:#8ec400;background-color:#9dd800;box-shadow:none;color:#fff}.tpx-select2-container.select2-lime .select2-choice .select2-arrow{border-left-color:#8ec400;background-color:#9dd800;color:#fff}.tpx-select2-container.select2-lime .select2-default .select2-chosen{color:rgba(255,255,255,0.5)}.tpx-select2-container.select2-lime.select2-container-multi .select2-choices .select2-search-choice{border-color:#7caa00;background-color:#9dd800;color:#fff}.tpx-select2-container.select2-lime.select2-container-multi .select2-choices .select2-search-choice:before{color:rgba(255,255,255,0.5)}.tpx-select2-container.select2-lime.select2-container-active .select2-choice{border-color:#74a000}.tpx-select2-container.select2-lime.select2-container-active .select2-choice .select2-arrow{border-left-color:#74a000}.tpx-select2-drop.select2-lime{border-color:#74a000;background-color:#9dd800}.tpx-select2-drop.select2-lime .select2-search input{border-color:#74a000}.tpx-select2-drop.select2-lime .select2-results{color:#fff}.tpx-select2-drop.select2-lime .select2-highlighted{background-color:#537200}.tpx-select2-container.select2-pomelo .select2-choice{border-color:#ff6034;background-color:#ff744e;box-shadow:none;color:#fff}.tpx-select2-container.select2-pomelo .select2-choice .select2-arrow{border-left-color:#ff6034;background-color:#ff744e;color:#fff}.tpx-select2-container.select2-pomelo .select2-default .select2-chosen{color:rgba(255,255,255,0.5)}.tpx-select2-container.select2-pomelo.select2-container-multi .select2-choices .select2-search-choice{border-color:#ff4c1b;background-color:#ff744e;color:#fff}.tpx-select2-container.select2-pomelo.select2-container-multi .select2-choices .select2-search-choice:before{color:rgba(255,255,255,0.5)}.tpx-select2-container.select2-pomelo.select2-container-active .select2-choice{border-color:#f41}.tpx-select2-container.select2-pomelo.select2-container-active .select2-choice .select2-arrow{border-left-color:#f41}.tpx-select2-drop.select2-pomelo{border-color:#f41;background-color:#ff744e}.tpx-select2-drop.select2-pomelo .select2-search input{border-color:#f41}.tpx-select2-drop.select2-pomelo .select2-results{color:#fff}.tpx-select2-drop.select2-pomelo .select2-highlighted{background-color:#e73200}.tpx-select2-container.select2-orange .select2-choice{border-color:#e69800;background-color:#ffa900;box-shadow:none;color:#fff}.tpx-select2-container.select2-orange .select2-choice .select2-arrow{border-left-color:#e69800;background-color:#ffa900;color:#fff}.tpx-select2-container.select2-orange .select2-default .select2-chosen{color:rgba(255,255,255,0.5)}.tpx-select2-container.select2-orange.select2-container-multi .select2-choices .select2-search-choice{border-color:#cc8700;background-color:#ffa900;color:#fff}.tpx-select2-container.select2-orange.select2-container-multi .select2-choices .select2-search-choice:before{color:rgba(255,255,255,0.5)}.tpx-select2-container.select2-orange.select2-container-active .select2-choice{border-color:#c28000}.tpx-select2-container.select2-orange.select2-container-active .select2-choice .select2-arrow{border-left-color:#c28000}.tpx-select2-drop.select2-orange{border-color:#c28000;background-color:#ffa900}.tpx-select2-drop.select2-orange .select2-search input{border-color:#c28000}.tpx-select2-drop.select2-orange .select2-results{color:#fff}.tpx-select2-drop.select2-orange .select2-highlighted{background-color:#996500}.tpx-select2-container.select2-bluegreen .select2-choice{border-color:#00b7b1;background-color:#00d0ca;box-shadow:none;color:#fff}.tpx-select2-container.select2-bluegreen .select2-choice .select2-arrow{border-left-color:#00b7b1;background-color:#00d0ca;color:#fff}.tpx-select2-container.select2-bluegreen .select2-default .select2-chosen{color:rgba(255,255,255,0.5)}.tpx-select2-container.select2-bluegreen.select2-container-multi .select2-choices .select2-search-choice{border-color:#009d98;background-color:#00d0ca;color:#fff}.tpx-select2-container.select2-bluegreen.select2-container-multi .select2-choices .select2-search-choice:before{color:rgba(255,255,255,0.5)}.tpx-select2-container.select2-bluegreen.select2-container-active .select2-choice{border-color:#00938f}.tpx-select2-container.select2-bluegreen.select2-container-active .select2-choice .select2-arrow{border-left-color:#00938f}.tpx-select2-drop.select2-bluegreen{border-color:#00938f;background-color:#00d0ca}.tpx-select2-drop.select2-bluegreen .select2-search input{border-color:#00938f}.tpx-select2-drop.select2-bluegreen .select2-results{color:#fff}.tpx-select2-drop.select2-bluegreen .select2-highlighted{background-color:#006a67}