bootstrap.min.css 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884
  1. @font-face {
  2. font-family: 'Glyphicons Halflings';
  3. src: url('../fonts/glyphicons-halflings-regular.eot');
  4. src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
  5. }
  6. .glyphicon {
  7. position: relative;
  8. top: 1px;
  9. display: inline-block;
  10. font-family: 'Glyphicons Halflings';
  11. font-style: normal;
  12. font-weight: normal;
  13. line-height: 1;
  14. -webkit-font-smoothing: antialiased;
  15. -moz-osx-font-smoothing: grayscale;
  16. }
  17. .glyphicon-asterisk:before {
  18. content: "\2a";
  19. }
  20. .glyphicon-plus:before {
  21. content: "\2b";
  22. }
  23. .glyphicon-euro:before,
  24. .glyphicon-eur:before {
  25. content: "\20ac";
  26. }
  27. .glyphicon-minus:before {
  28. content: "\2212";
  29. }
  30. .glyphicon-cloud:before {
  31. content: "\2601";
  32. }
  33. .glyphicon-envelope:before {
  34. content: "\2709";
  35. }
  36. .glyphicon-pencil:before {
  37. content: "\270f";
  38. }
  39. .glyphicon-glass:before {
  40. content: "\e001";
  41. }
  42. .glyphicon-music:before {
  43. content: "\e002";
  44. }
  45. .glyphicon-search:before {
  46. content: "\e003";
  47. }
  48. .glyphicon-heart:before {
  49. content: "\e005";
  50. }
  51. .glyphicon-star:before {
  52. content: "\e006";
  53. }
  54. .glyphicon-star-empty:before {
  55. content: "\e007";
  56. }
  57. .glyphicon-user:before {
  58. content: "\e008";
  59. }
  60. .glyphicon-film:before {
  61. content: "\e009";
  62. }
  63. .glyphicon-th-large:before {
  64. content: "\e010";
  65. }
  66. .glyphicon-th:before {
  67. content: "\e011";
  68. }
  69. .glyphicon-th-list:before {
  70. content: "\e012";
  71. }
  72. .glyphicon-ok:before {
  73. content: "\e013";
  74. }
  75. .glyphicon-remove:before {
  76. content: "\e014";
  77. }
  78. .glyphicon-zoom-in:before {
  79. content: "\e015";
  80. }
  81. .glyphicon-zoom-out:before {
  82. content: "\e016";
  83. }
  84. .glyphicon-off:before {
  85. content: "\e017";
  86. }
  87. .glyphicon-signal:before {
  88. content: "\e018";
  89. }
  90. .glyphicon-cog:before {
  91. content: "\e019";
  92. }
  93. .glyphicon-trash:before {
  94. content: "\e020";
  95. }
  96. .glyphicon-home:before {
  97. content: "\e021";
  98. }
  99. .glyphicon-file:before {
  100. content: "\e022";
  101. }
  102. .glyphicon-time:before {
  103. content: "\e023";
  104. }
  105. .glyphicon-road:before {
  106. content: "\e024";
  107. }
  108. .glyphicon-download-alt:before {
  109. content: "\e025";
  110. }
  111. .glyphicon-download:before {
  112. content: "\e026";
  113. }
  114. .glyphicon-upload:before {
  115. content: "\e027";
  116. }
  117. .glyphicon-inbox:before {
  118. content: "\e028";
  119. }
  120. .glyphicon-play-circle:before {
  121. content: "\e029";
  122. }
  123. .glyphicon-repeat:before {
  124. content: "\e030";
  125. }
  126. .glyphicon-refresh:before {
  127. content: "\e031";
  128. }
  129. .glyphicon-list-alt:before {
  130. content: "\e032";
  131. }
  132. .glyphicon-lock:before {
  133. content: "\e033";
  134. }
  135. .glyphicon-flag:before {
  136. content: "\e034";
  137. }
  138. .glyphicon-headphones:before {
  139. content: "\e035";
  140. }
  141. .glyphicon-volume-off:before {
  142. content: "\e036";
  143. }
  144. .glyphicon-volume-down:before {
  145. content: "\e037";
  146. }
  147. .glyphicon-volume-up:before {
  148. content: "\e038";
  149. }
  150. .glyphicon-qrcode:before {
  151. content: "\e039";
  152. }
  153. .glyphicon-barcode:before {
  154. content: "\e040";
  155. }
  156. .glyphicon-tag:before {
  157. content: "\e041";
  158. }
  159. .glyphicon-tags:before {
  160. content: "\e042";
  161. }
  162. .glyphicon-book:before {
  163. content: "\e043";
  164. }
  165. .glyphicon-bookmark:before {
  166. content: "\e044";
  167. }
  168. .glyphicon-print:before {
  169. content: "\e045";
  170. }
  171. .glyphicon-camera:before {
  172. content: "\e046";
  173. }
  174. .glyphicon-font:before {
  175. content: "\e047";
  176. }
  177. .glyphicon-bold:before {
  178. content: "\e048";
  179. }
  180. .glyphicon-italic:before {
  181. content: "\e049";
  182. }
  183. .glyphicon-text-height:before {
  184. content: "\e050";
  185. }
  186. .glyphicon-text-width:before {
  187. content: "\e051";
  188. }
  189. .glyphicon-align-left:before {
  190. content: "\e052";
  191. }
  192. .glyphicon-align-center:before {
  193. content: "\e053";
  194. }
  195. .glyphicon-align-right:before {
  196. content: "\e054";
  197. }
  198. .glyphicon-align-justify:before {
  199. content: "\e055";
  200. }
  201. .glyphicon-list:before {
  202. content: "\e056";
  203. }
  204. .glyphicon-indent-left:before {
  205. content: "\e057";
  206. }
  207. .glyphicon-indent-right:before {
  208. content: "\e058";
  209. }
  210. .glyphicon-facetime-video:before {
  211. content: "\e059";
  212. }
  213. .glyphicon-picture:before {
  214. content: "\e060";
  215. }
  216. .glyphicon-map-marker:before {
  217. content: "\e062";
  218. }
  219. .glyphicon-adjust:before {
  220. content: "\e063";
  221. }
  222. .glyphicon-tint:before {
  223. content: "\e064";
  224. }
  225. .glyphicon-edit:before {
  226. content: "\e065";
  227. }
  228. .glyphicon-share:before {
  229. content: "\e066";
  230. }
  231. .glyphicon-check:before {
  232. content: "\e067";
  233. }
  234. .glyphicon-move:before {
  235. content: "\e068";
  236. }
  237. .glyphicon-step-backward:before {
  238. content: "\e069";
  239. }
  240. .glyphicon-fast-backward:before {
  241. content: "\e070";
  242. }
  243. .glyphicon-backward:before {
  244. content: "\e071";
  245. }
  246. .glyphicon-play:before {
  247. content: "\e072";
  248. }
  249. .glyphicon-pause:before {
  250. content: "\e073";
  251. }
  252. .glyphicon-stop:before {
  253. content: "\e074";
  254. }
  255. .glyphicon-forward:before {
  256. content: "\e075";
  257. }
  258. .glyphicon-fast-forward:before {
  259. content: "\e076";
  260. }
  261. .glyphicon-step-forward:before {
  262. content: "\e077";
  263. }
  264. .glyphicon-eject:before {
  265. content: "\e078";
  266. }
  267. .glyphicon-chevron-left:before {
  268. content: "\e079";
  269. }
  270. .glyphicon-chevron-right:before {
  271. content: "\e080";
  272. }
  273. .glyphicon-plus-sign:before {
  274. content: "\e081";
  275. }
  276. .glyphicon-minus-sign:before {
  277. content: "\e082";
  278. }
  279. .glyphicon-remove-sign:before {
  280. content: "\e083";
  281. }
  282. .glyphicon-ok-sign:before {
  283. content: "\e084";
  284. }
  285. .glyphicon-question-sign:before {
  286. content: "\e085";
  287. }
  288. .glyphicon-info-sign:before {
  289. content: "\e086";
  290. }
  291. .glyphicon-screenshot:before {
  292. content: "\e087";
  293. }
  294. .glyphicon-remove-circle:before {
  295. content: "\e088";
  296. }
  297. .glyphicon-ok-circle:before {
  298. content: "\e089";
  299. }
  300. .glyphicon-ban-circle:before {
  301. content: "\e090";
  302. }
  303. .glyphicon-arrow-left:before {
  304. content: "\e091";
  305. }
  306. .glyphicon-arrow-right:before {
  307. content: "\e092";
  308. }
  309. .glyphicon-arrow-up:before {
  310. content: "\e093";
  311. }
  312. .glyphicon-arrow-down:before {
  313. content: "\e094";
  314. }
  315. .glyphicon-share-alt:before {
  316. content: "\e095";
  317. }
  318. .glyphicon-resize-full:before {
  319. content: "\e096";
  320. }
  321. .glyphicon-resize-small:before {
  322. content: "\e097";
  323. }
  324. .glyphicon-exclamation-sign:before {
  325. content: "\e101";
  326. }
  327. .glyphicon-gift:before {
  328. content: "\e102";
  329. }
  330. .glyphicon-leaf:before {
  331. content: "\e103";
  332. }
  333. .glyphicon-fire:before {
  334. content: "\e104";
  335. }
  336. .glyphicon-eye-open:before {
  337. content: "\e105";
  338. }
  339. .glyphicon-eye-close:before {
  340. content: "\e106";
  341. }
  342. .glyphicon-warning-sign:before {
  343. content: "\e107";
  344. }
  345. .glyphicon-plane:before {
  346. content: "\e108";
  347. }
  348. .glyphicon-calendar:before {
  349. content: "\e109";
  350. }
  351. .glyphicon-random:before {
  352. content: "\e110";
  353. }
  354. .glyphicon-comment:before {
  355. content: "\e111";
  356. }
  357. .glyphicon-magnet:before {
  358. content: "\e112";
  359. }
  360. .glyphicon-chevron-up:before {
  361. content: "\e113";
  362. }
  363. .glyphicon-chevron-down:before {
  364. content: "\e114";
  365. }
  366. .glyphicon-retweet:before {
  367. content: "\e115";
  368. }
  369. .glyphicon-shopping-cart:before {
  370. content: "\e116";
  371. }
  372. .glyphicon-folder-close:before {
  373. content: "\e117";
  374. }
  375. .glyphicon-folder-open:before {
  376. content: "\e118";
  377. }
  378. .glyphicon-resize-vertical:before {
  379. content: "\e119";
  380. }
  381. .glyphicon-resize-horizontal:before {
  382. content: "\e120";
  383. }
  384. .glyphicon-hdd:before {
  385. content: "\e121";
  386. }
  387. .glyphicon-bullhorn:before {
  388. content: "\e122";
  389. }
  390. .glyphicon-bell:before {
  391. content: "\e123";
  392. }
  393. .glyphicon-certificate:before {
  394. content: "\e124";
  395. }
  396. .glyphicon-thumbs-up:before {
  397. content: "\e125";
  398. }
  399. .glyphicon-thumbs-down:before {
  400. content: "\e126";
  401. }
  402. .glyphicon-hand-right:before {
  403. content: "\e127";
  404. }
  405. .glyphicon-hand-left:before {
  406. content: "\e128";
  407. }
  408. .glyphicon-hand-up:before {
  409. content: "\e129";
  410. }
  411. .glyphicon-hand-down:before {
  412. content: "\e130";
  413. }
  414. .glyphicon-circle-arrow-right:before {
  415. content: "\e131";
  416. }
  417. .glyphicon-circle-arrow-left:before {
  418. content: "\e132";
  419. }
  420. .glyphicon-circle-arrow-up:before {
  421. content: "\e133";
  422. }
  423. .glyphicon-circle-arrow-down:before {
  424. content: "\e134";
  425. }
  426. .glyphicon-globe:before {
  427. content: "\e135";
  428. }
  429. .glyphicon-wrench:before {
  430. content: "\e136";
  431. }
  432. .glyphicon-tasks:before {
  433. content: "\e137";
  434. }
  435. .glyphicon-filter:before {
  436. content: "\e138";
  437. }
  438. .glyphicon-briefcase:before {
  439. content: "\e139";
  440. }
  441. .glyphicon-fullscreen:before {
  442. content: "\e140";
  443. }
  444. .glyphicon-dashboard:before {
  445. content: "\e141";
  446. }
  447. .glyphicon-paperclip:before {
  448. content: "\e142";
  449. }
  450. .glyphicon-heart-empty:before {
  451. content: "\e143";
  452. }
  453. .glyphicon-link:before {
  454. content: "\e144";
  455. }
  456. .glyphicon-phone:before {
  457. content: "\e145";
  458. }
  459. .glyphicon-pushpin:before {
  460. content: "\e146";
  461. }
  462. .glyphicon-usd:before {
  463. content: "\e148";
  464. }
  465. .glyphicon-gbp:before {
  466. content: "\e149";
  467. }
  468. .glyphicon-sort:before {
  469. content: "\e150";
  470. }
  471. .glyphicon-sort-by-alphabet:before {
  472. content: "\e151";
  473. }
  474. .glyphicon-sort-by-alphabet-alt:before {
  475. content: "\e152";
  476. }
  477. .glyphicon-sort-by-order:before {
  478. content: "\e153";
  479. }
  480. .glyphicon-sort-by-order-alt:before {
  481. content: "\e154";
  482. }
  483. .glyphicon-sort-by-attributes:before {
  484. content: "\e155";
  485. }
  486. .glyphicon-sort-by-attributes-alt:before {
  487. content: "\e156";
  488. }
  489. .glyphicon-unchecked:before {
  490. content: "\e157";
  491. }
  492. .glyphicon-expand:before {
  493. content: "\e158";
  494. }
  495. .glyphicon-collapse-down:before {
  496. content: "\e159";
  497. }
  498. .glyphicon-collapse-up:before {
  499. content: "\e160";
  500. }
  501. .glyphicon-log-in:before {
  502. content: "\e161";
  503. }
  504. .glyphicon-flash:before {
  505. content: "\e162";
  506. }
  507. .glyphicon-log-out:before {
  508. content: "\e163";
  509. }
  510. .glyphicon-new-window:before {
  511. content: "\e164";
  512. }
  513. .glyphicon-record:before {
  514. content: "\e165";
  515. }
  516. .glyphicon-save:before {
  517. content: "\e166";
  518. }
  519. .glyphicon-open:before {
  520. content: "\e167";
  521. }
  522. .glyphicon-saved:before {
  523. content: "\e168";
  524. }
  525. .glyphicon-import:before {
  526. content: "\e169";
  527. }
  528. .glyphicon-export:before {
  529. content: "\e170";
  530. }
  531. .glyphicon-send:before {
  532. content: "\e171";
  533. }
  534. .glyphicon-floppy-disk:before {
  535. content: "\e172";
  536. }
  537. .glyphicon-floppy-saved:before {
  538. content: "\e173";
  539. }
  540. .glyphicon-floppy-remove:before {
  541. content: "\e174";
  542. }
  543. .glyphicon-floppy-save:before {
  544. content: "\e175";
  545. }
  546. .glyphicon-floppy-open:before {
  547. content: "\e176";
  548. }
  549. .glyphicon-credit-card:before {
  550. content: "\e177";
  551. }
  552. .glyphicon-transfer:before {
  553. content: "\e178";
  554. }
  555. .glyphicon-cutlery:before {
  556. content: "\e179";
  557. }
  558. .glyphicon-header:before {
  559. content: "\e180";
  560. }
  561. .glyphicon-compressed:before {
  562. content: "\e181";
  563. }
  564. .glyphicon-earphone:before {
  565. content: "\e182";
  566. }
  567. .glyphicon-phone-alt:before {
  568. content: "\e183";
  569. }
  570. .glyphicon-tower:before {
  571. content: "\e184";
  572. }
  573. .glyphicon-stats:before {
  574. content: "\e185";
  575. }
  576. .glyphicon-sd-video:before {
  577. content: "\e186";
  578. }
  579. .glyphicon-hd-video:before {
  580. content: "\e187";
  581. }
  582. .glyphicon-subtitles:before {
  583. content: "\e188";
  584. }
  585. .glyphicon-sound-stereo:before {
  586. content: "\e189";
  587. }
  588. .glyphicon-sound-dolby:before {
  589. content: "\e190";
  590. }
  591. .glyphicon-sound-5-1:before {
  592. content: "\e191";
  593. }
  594. .glyphicon-sound-6-1:before {
  595. content: "\e192";
  596. }
  597. .glyphicon-sound-7-1:before {
  598. content: "\e193";
  599. }
  600. .glyphicon-copyright-mark:before {
  601. content: "\e194";
  602. }
  603. .glyphicon-registration-mark:before {
  604. content: "\e195";
  605. }
  606. .glyphicon-cloud-download:before {
  607. content: "\e197";
  608. }
  609. .glyphicon-cloud-upload:before {
  610. content: "\e198";
  611. }
  612. .glyphicon-tree-conifer:before {
  613. content: "\e199";
  614. }
  615. .glyphicon-tree-deciduous:before {
  616. content: "\e200";
  617. }
  618. .glyphicon-cd:before {
  619. content: "\e201";
  620. }
  621. .glyphicon-save-file:before {
  622. content: "\e202";
  623. }
  624. .glyphicon-open-file:before {
  625. content: "\e203";
  626. }
  627. .glyphicon-level-up:before {
  628. content: "\e204";
  629. }
  630. .glyphicon-copy:before {
  631. content: "\e205";
  632. }
  633. .glyphicon-paste:before {
  634. content: "\e206";
  635. }
  636. .glyphicon-alert:before {
  637. content: "\e209";
  638. }
  639. .glyphicon-equalizer:before {
  640. content: "\e210";
  641. }
  642. .glyphicon-king:before {
  643. content: "\e211";
  644. }
  645. .glyphicon-queen:before {
  646. content: "\e212";
  647. }
  648. .glyphicon-pawn:before {
  649. content: "\e213";
  650. }
  651. .glyphicon-bishop:before {
  652. content: "\e214";
  653. }
  654. .glyphicon-knight:before {
  655. content: "\e215";
  656. }
  657. .glyphicon-baby-formula:before {
  658. content: "\e216";
  659. }
  660. .glyphicon-tent:before {
  661. content: "\26fa";
  662. }
  663. .glyphicon-blackboard:before {
  664. content: "\e218";
  665. }
  666. .glyphicon-bed:before {
  667. content: "\e219";
  668. }
  669. .glyphicon-apple:before {
  670. content: "\f8ff";
  671. }
  672. .glyphicon-erase:before {
  673. content: "\e221";
  674. }
  675. .glyphicon-hourglass:before {
  676. content: "\231b";
  677. }
  678. .glyphicon-lamp:before {
  679. content: "\e223";
  680. }
  681. .glyphicon-duplicate:before {
  682. content: "\e224";
  683. }
  684. .glyphicon-piggy-bank:before {
  685. content: "\e225";
  686. }
  687. .glyphicon-scissors:before {
  688. content: "\e226";
  689. }
  690. .glyphicon-bitcoin:before {
  691. content: "\e227";
  692. }
  693. .glyphicon-btc:before {
  694. content: "\e227";
  695. }
  696. .glyphicon-xbt:before {
  697. content: "\e227";
  698. }
  699. .glyphicon-yen:before {
  700. content: "\00a5";
  701. }
  702. .glyphicon-jpy:before {
  703. content: "\00a5";
  704. }
  705. .glyphicon-ruble:before {
  706. content: "\20bd";
  707. }
  708. .glyphicon-rub:before {
  709. content: "\20bd";
  710. }
  711. .glyphicon-scale:before {
  712. content: "\e230";
  713. }
  714. .glyphicon-ice-lolly:before {
  715. content: "\e231";
  716. }
  717. .glyphicon-ice-lolly-tasted:before {
  718. content: "\e232";
  719. }
  720. .glyphicon-education:before {
  721. content: "\e233";
  722. }
  723. .glyphicon-option-horizontal:before {
  724. content: "\e234";
  725. }
  726. .glyphicon-option-vertical:before {
  727. content: "\e235";
  728. }
  729. .glyphicon-menu-hamburger:before {
  730. content: "\e236";
  731. }
  732. .glyphicon-modal-window:before {
  733. content: "\e237";
  734. }
  735. .glyphicon-oil:before {
  736. content: "\e238";
  737. }
  738. .glyphicon-grain:before {
  739. content: "\e239";
  740. }
  741. .glyphicon-sunglasses:before {
  742. content: "\e240";
  743. }
  744. .glyphicon-text-size:before {
  745. content: "\e241";
  746. }
  747. .glyphicon-text-color:before {
  748. content: "\e242";
  749. }
  750. .glyphicon-text-background:before {
  751. content: "\e243";
  752. }
  753. .glyphicon-object-align-top:before {
  754. content: "\e244";
  755. }
  756. .glyphicon-object-align-bottom:before {
  757. content: "\e245";
  758. }
  759. .glyphicon-object-align-horizontal:before {
  760. content: "\e246";
  761. }
  762. .glyphicon-object-align-left:before {
  763. content: "\e247";
  764. }
  765. .glyphicon-object-align-vertical:before {
  766. content: "\e248";
  767. }
  768. .glyphicon-object-align-right:before {
  769. content: "\e249";
  770. }
  771. .glyphicon-triangle-right:before {
  772. content: "\e250";
  773. }
  774. .glyphicon-triangle-left:before {
  775. content: "\e251";
  776. }
  777. .glyphicon-triangle-bottom:before {
  778. content: "\e252";
  779. }
  780. .glyphicon-triangle-top:before {
  781. content: "\e253";
  782. }
  783. .glyphicon-console:before {
  784. content: "\e254";
  785. }
  786. .glyphicon-superscript:before {
  787. content: "\e255";
  788. }
  789. .glyphicon-subscript:before {
  790. content: "\e256";
  791. }
  792. .glyphicon-menu-left:before {
  793. content: "\e257";
  794. }
  795. .glyphicon-menu-right:before {
  796. content: "\e258";
  797. }
  798. .glyphicon-menu-down:before {
  799. content: "\e259";
  800. }
  801. .glyphicon-menu-up:before {
  802. content: "\e260";
  803. }
  804. /*ALERTS*/
  805. .alert {
  806. padding: 15px;
  807. margin-bottom: 20px;
  808. border: 1px solid transparent;
  809. border-radius: 4px;
  810. }
  811. .alert h4 {
  812. margin-top: 0;
  813. color: inherit;
  814. }
  815. .alert .alert-link {
  816. font-weight: bold;
  817. }
  818. .alert > p,
  819. .alert > ul {
  820. margin-bottom: 0;
  821. }
  822. .alert > p + p {
  823. margin-top: 5px;
  824. }
  825. .alert-dismissable,
  826. .alert-dismissible {
  827. padding-right: 35px;
  828. }
  829. .alert-dismissable .close,
  830. .alert-dismissible .close {
  831. position: relative;
  832. top: -2px;
  833. right: -21px;
  834. color: inherit;
  835. }
  836. .alert-success {
  837. background-color: #dff0d8;
  838. border-color: #d6e9c6;
  839. color: #3c763d;
  840. }
  841. .alert-success hr {
  842. border-top-color: #c9e2b3;
  843. }
  844. .alert-success .alert-link {
  845. color: #2b542c;
  846. }
  847. .alert-info {
  848. background-color: #d9edf7;
  849. border-color: #bce8f1;
  850. color: #31708f;
  851. }
  852. .alert-info hr {
  853. border-top-color: #a6e1ec;
  854. }
  855. .alert-info .alert-link {
  856. color: #245269;
  857. }
  858. .alert-warning {
  859. background-color: #fcf8e3;
  860. border-color: #faebcc;
  861. color: #8a6d3b;
  862. }
  863. .alert-warning hr {
  864. border-top-color: #f7e1b5;
  865. }
  866. .alert-warning .alert-link {
  867. color: #66512c;
  868. }
  869. .alert-danger {
  870. background-color: #f2dede;
  871. border-color: #ebccd1;
  872. color: #a94442;
  873. }
  874. .alert-danger hr {
  875. border-top-color: #e4b9c0;
  876. }
  877. .alert-danger .alert-link {
  878. color: #843534;
  879. }
  880. /* BUTTONS */
  881. [role="button"] {
  882. cursor: pointer;
  883. }
  884. .btn {
  885. display: inline-block;
  886. margin-bottom: 0;
  887. font-weight: normal;
  888. text-align: center;
  889. vertical-align: middle;
  890. -ms-touch-action: manipulation;
  891. touch-action: manipulation;
  892. cursor: pointer;
  893. background-image: none;
  894. border: 1px solid transparent;
  895. white-space: nowrap;
  896. padding: 6px 12px;
  897. font-size: 14px;
  898. line-height: 1.42857143;
  899. border-radius: 4px;
  900. -webkit-user-select: none;
  901. -moz-user-select: none;
  902. -ms-user-select: none;
  903. user-select: none;
  904. }
  905. .btn:focus,
  906. .btn:active:focus,
  907. .btn.active:focus,
  908. .btn.focus,
  909. .btn:active.focus,
  910. .btn.active.focus {
  911. outline: thin dotted;
  912. outline: 5px auto -webkit-focus-ring-color;
  913. outline-offset: -2px;
  914. }
  915. .btn:hover,
  916. .btn:focus,
  917. .btn.focus {
  918. color: #333333;
  919. text-decoration: none;
  920. }
  921. .btn:active,
  922. .btn.active {
  923. outline: 0;
  924. background-image: none;
  925. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  926. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  927. }
  928. .btn.disabled,
  929. .btn[disabled],
  930. fieldset[disabled] .btn {
  931. cursor: not-allowed;
  932. opacity: 0.65;
  933. filter: alpha(opacity=65);
  934. -webkit-box-shadow: none;
  935. box-shadow: none;
  936. }
  937. a.btn.disabled,
  938. fieldset[disabled] a.btn {
  939. pointer-events: none;
  940. }
  941. .btn-default {
  942. color: #333333;
  943. background-color: #ffffff;
  944. border-color: #cccccc;
  945. }
  946. .btn-default:focus,
  947. .btn-default.focus {
  948. color: #333333;
  949. background-color: #e6e6e6;
  950. border-color: #8c8c8c;
  951. }
  952. .btn-default:hover {
  953. color: #333333;
  954. background-color: #e6e6e6;
  955. border-color: #adadad;
  956. }
  957. .btn-default:active,
  958. .btn-default.active,
  959. .open > .dropdown-toggle.btn-default {
  960. color: #333333;
  961. background-color: #e6e6e6;
  962. border-color: #adadad;
  963. }
  964. .btn-default:active:hover,
  965. .btn-default.active:hover,
  966. .open > .dropdown-toggle.btn-default:hover,
  967. .btn-default:active:focus,
  968. .btn-default.active:focus,
  969. .open > .dropdown-toggle.btn-default:focus,
  970. .btn-default:active.focus,
  971. .btn-default.active.focus,
  972. .open > .dropdown-toggle.btn-default.focus {
  973. color: #333333;
  974. background-color: #d4d4d4;
  975. border-color: #8c8c8c;
  976. }
  977. .btn-default:active,
  978. .btn-default.active,
  979. .open > .dropdown-toggle.btn-default {
  980. background-image: none;
  981. }
  982. .btn-default.disabled,
  983. .btn-default[disabled],
  984. fieldset[disabled] .btn-default,
  985. .btn-default.disabled:hover,
  986. .btn-default[disabled]:hover,
  987. fieldset[disabled] .btn-default:hover,
  988. .btn-default.disabled:focus,
  989. .btn-default[disabled]:focus,
  990. fieldset[disabled] .btn-default:focus,
  991. .btn-default.disabled.focus,
  992. .btn-default[disabled].focus,
  993. fieldset[disabled] .btn-default.focus,
  994. .btn-default.disabled:active,
  995. .btn-default[disabled]:active,
  996. fieldset[disabled] .btn-default:active,
  997. .btn-default.disabled.active,
  998. .btn-default[disabled].active,
  999. fieldset[disabled] .btn-default.active {
  1000. background-color: #ffffff;
  1001. border-color: #cccccc;
  1002. }
  1003. .btn-default .badge {
  1004. color: #ffffff;
  1005. background-color: #333333;
  1006. }
  1007. .btn-primary {
  1008. color: #ffffff;
  1009. background-color: #337ab7;
  1010. border-color: #2e6da4;
  1011. }
  1012. .btn-primary:focus,
  1013. .btn-primary.focus {
  1014. color: #ffffff;
  1015. background-color: #286090;
  1016. border-color: #122b40;
  1017. }
  1018. .btn-primary:hover {
  1019. color: #ffffff;
  1020. background-color: #286090;
  1021. border-color: #204d74;
  1022. }
  1023. .btn-primary:active,
  1024. .btn-primary.active,
  1025. .open > .dropdown-toggle.btn-primary {
  1026. color: #ffffff;
  1027. background-color: #286090;
  1028. border-color: #204d74;
  1029. }
  1030. .btn-primary:active:hover,
  1031. .btn-primary.active:hover,
  1032. .open > .dropdown-toggle.btn-primary:hover,
  1033. .btn-primary:active:focus,
  1034. .btn-primary.active:focus,
  1035. .open > .dropdown-toggle.btn-primary:focus,
  1036. .btn-primary:active.focus,
  1037. .btn-primary.active.focus,
  1038. .open > .dropdown-toggle.btn-primary.focus {
  1039. color: #ffffff;
  1040. background-color: #204d74;
  1041. border-color: #122b40;
  1042. }
  1043. .btn-primary:active,
  1044. .btn-primary.active,
  1045. .open > .dropdown-toggle.btn-primary {
  1046. background-image: none;
  1047. }
  1048. .btn-primary.disabled,
  1049. .btn-primary[disabled],
  1050. fieldset[disabled] .btn-primary,
  1051. .btn-primary.disabled:hover,
  1052. .btn-primary[disabled]:hover,
  1053. fieldset[disabled] .btn-primary:hover,
  1054. .btn-primary.disabled:focus,
  1055. .btn-primary[disabled]:focus,
  1056. fieldset[disabled] .btn-primary:focus,
  1057. .btn-primary.disabled.focus,
  1058. .btn-primary[disabled].focus,
  1059. fieldset[disabled] .btn-primary.focus,
  1060. .btn-primary.disabled:active,
  1061. .btn-primary[disabled]:active,
  1062. fieldset[disabled] .btn-primary:active,
  1063. .btn-primary.disabled.active,
  1064. .btn-primary[disabled].active,
  1065. fieldset[disabled] .btn-primary.active {
  1066. background-color: #337ab7;
  1067. border-color: #2e6da4;
  1068. }
  1069. .btn-primary .badge {
  1070. color: #337ab7;
  1071. background-color: #ffffff;
  1072. }
  1073. .btn-success {
  1074. color: #ffffff;
  1075. background-color: #5cb85c;
  1076. border-color: #4cae4c;
  1077. }
  1078. .btn-success:focus,
  1079. .btn-success.focus {
  1080. color: #ffffff;
  1081. background-color: #449d44;
  1082. border-color: #255625;
  1083. }
  1084. .btn-success:hover {
  1085. color: #ffffff;
  1086. background-color: #449d44;
  1087. border-color: #398439;
  1088. }
  1089. .btn-success:active,
  1090. .btn-success.active,
  1091. .open > .dropdown-toggle.btn-success {
  1092. color: #ffffff;
  1093. background-color: #449d44;
  1094. border-color: #398439;
  1095. }
  1096. .btn-success:active:hover,
  1097. .btn-success.active:hover,
  1098. .open > .dropdown-toggle.btn-success:hover,
  1099. .btn-success:active:focus,
  1100. .btn-success.active:focus,
  1101. .open > .dropdown-toggle.btn-success:focus,
  1102. .btn-success:active.focus,
  1103. .btn-success.active.focus,
  1104. .open > .dropdown-toggle.btn-success.focus {
  1105. color: #ffffff;
  1106. background-color: #398439;
  1107. border-color: #255625;
  1108. }
  1109. .btn-success:active,
  1110. .btn-success.active,
  1111. .open > .dropdown-toggle.btn-success {
  1112. background-image: none;
  1113. }
  1114. .btn-success.disabled,
  1115. .btn-success[disabled],
  1116. fieldset[disabled] .btn-success,
  1117. .btn-success.disabled:hover,
  1118. .btn-success[disabled]:hover,
  1119. fieldset[disabled] .btn-success:hover,
  1120. .btn-success.disabled:focus,
  1121. .btn-success[disabled]:focus,
  1122. fieldset[disabled] .btn-success:focus,
  1123. .btn-success.disabled.focus,
  1124. .btn-success[disabled].focus,
  1125. fieldset[disabled] .btn-success.focus,
  1126. .btn-success.disabled:active,
  1127. .btn-success[disabled]:active,
  1128. fieldset[disabled] .btn-success:active,
  1129. .btn-success.disabled.active,
  1130. .btn-success[disabled].active,
  1131. fieldset[disabled] .btn-success.active {
  1132. background-color: #5cb85c;
  1133. border-color: #4cae4c;
  1134. }
  1135. .btn-success .badge {
  1136. color: #5cb85c;
  1137. background-color: #ffffff;
  1138. }
  1139. .btn-info {
  1140. color: #ffffff;
  1141. background-color: #5bc0de;
  1142. border-color: #46b8da;
  1143. }
  1144. .btn-info:focus,
  1145. .btn-info.focus {
  1146. color: #ffffff;
  1147. background-color: #31b0d5;
  1148. border-color: #1b6d85;
  1149. }
  1150. .btn-info:hover {
  1151. color: #ffffff;
  1152. background-color: #31b0d5;
  1153. border-color: #269abc;
  1154. }
  1155. .btn-info:active,
  1156. .btn-info.active,
  1157. .open > .dropdown-toggle.btn-info {
  1158. color: #ffffff;
  1159. background-color: #31b0d5;
  1160. border-color: #269abc;
  1161. }
  1162. .btn-info:active:hover,
  1163. .btn-info.active:hover,
  1164. .open > .dropdown-toggle.btn-info:hover,
  1165. .btn-info:active:focus,
  1166. .btn-info.active:focus,
  1167. .open > .dropdown-toggle.btn-info:focus,
  1168. .btn-info:active.focus,
  1169. .btn-info.active.focus,
  1170. .open > .dropdown-toggle.btn-info.focus {
  1171. color: #ffffff;
  1172. background-color: #269abc;
  1173. border-color: #1b6d85;
  1174. }
  1175. .btn-info:active,
  1176. .btn-info.active,
  1177. .open > .dropdown-toggle.btn-info {
  1178. background-image: none;
  1179. }
  1180. .btn-info.disabled,
  1181. .btn-info[disabled],
  1182. fieldset[disabled] .btn-info,
  1183. .btn-info.disabled:hover,
  1184. .btn-info[disabled]:hover,
  1185. fieldset[disabled] .btn-info:hover,
  1186. .btn-info.disabled:focus,
  1187. .btn-info[disabled]:focus,
  1188. fieldset[disabled] .btn-info:focus,
  1189. .btn-info.disabled.focus,
  1190. .btn-info[disabled].focus,
  1191. fieldset[disabled] .btn-info.focus,
  1192. .btn-info.disabled:active,
  1193. .btn-info[disabled]:active,
  1194. fieldset[disabled] .btn-info:active,
  1195. .btn-info.disabled.active,
  1196. .btn-info[disabled].active,
  1197. fieldset[disabled] .btn-info.active {
  1198. background-color: #5bc0de;
  1199. border-color: #46b8da;
  1200. }
  1201. .btn-info .badge {
  1202. color: #5bc0de;
  1203. background-color: #ffffff;
  1204. }
  1205. .btn-warning {
  1206. color: #ffffff;
  1207. background-color: #f0ad4e;
  1208. border-color: #eea236;
  1209. }
  1210. .btn-warning:focus,
  1211. .btn-warning.focus {
  1212. color: #ffffff;
  1213. background-color: #ec971f;
  1214. border-color: #985f0d;
  1215. }
  1216. .btn-warning:hover {
  1217. color: #ffffff;
  1218. background-color: #ec971f;
  1219. border-color: #d58512;
  1220. }
  1221. .btn-warning:active,
  1222. .btn-warning.active,
  1223. .open > .dropdown-toggle.btn-warning {
  1224. color: #ffffff;
  1225. background-color: #ec971f;
  1226. border-color: #d58512;
  1227. }
  1228. .btn-warning:active:hover,
  1229. .btn-warning.active:hover,
  1230. .open > .dropdown-toggle.btn-warning:hover,
  1231. .btn-warning:active:focus,
  1232. .btn-warning.active:focus,
  1233. .open > .dropdown-toggle.btn-warning:focus,
  1234. .btn-warning:active.focus,
  1235. .btn-warning.active.focus,
  1236. .open > .dropdown-toggle.btn-warning.focus {
  1237. color: #ffffff;
  1238. background-color: #d58512;
  1239. border-color: #985f0d;
  1240. }
  1241. .btn-warning:active,
  1242. .btn-warning.active,
  1243. .open > .dropdown-toggle.btn-warning {
  1244. background-image: none;
  1245. }
  1246. .btn-warning.disabled,
  1247. .btn-warning[disabled],
  1248. fieldset[disabled] .btn-warning,
  1249. .btn-warning.disabled:hover,
  1250. .btn-warning[disabled]:hover,
  1251. fieldset[disabled] .btn-warning:hover,
  1252. .btn-warning.disabled:focus,
  1253. .btn-warning[disabled]:focus,
  1254. fieldset[disabled] .btn-warning:focus,
  1255. .btn-warning.disabled.focus,
  1256. .btn-warning[disabled].focus,
  1257. fieldset[disabled] .btn-warning.focus,
  1258. .btn-warning.disabled:active,
  1259. .btn-warning[disabled]:active,
  1260. fieldset[disabled] .btn-warning:active,
  1261. .btn-warning.disabled.active,
  1262. .btn-warning[disabled].active,
  1263. fieldset[disabled] .btn-warning.active {
  1264. background-color: #f0ad4e;
  1265. border-color: #eea236;
  1266. }
  1267. .btn-warning .badge {
  1268. color: #f0ad4e;
  1269. background-color: #ffffff;
  1270. }
  1271. .btn-danger {
  1272. color: #ffffff;
  1273. background-color: #d9534f;
  1274. border-color: #d43f3a;
  1275. }
  1276. .btn-danger:focus,
  1277. .btn-danger.focus {
  1278. color: #ffffff;
  1279. background-color: #c9302c;
  1280. border-color: #761c19;
  1281. }
  1282. .btn-danger:hover {
  1283. color: #ffffff;
  1284. background-color: #c9302c;
  1285. border-color: #ac2925;
  1286. }
  1287. .btn-danger:active,
  1288. .btn-danger.active,
  1289. .open > .dropdown-toggle.btn-danger {
  1290. color: #ffffff;
  1291. background-color: #c9302c;
  1292. border-color: #ac2925;
  1293. }
  1294. .btn-danger:active:hover,
  1295. .btn-danger.active:hover,
  1296. .open > .dropdown-toggle.btn-danger:hover,
  1297. .btn-danger:active:focus,
  1298. .btn-danger.active:focus,
  1299. .open > .dropdown-toggle.btn-danger:focus,
  1300. .btn-danger:active.focus,
  1301. .btn-danger.active.focus,
  1302. .open > .dropdown-toggle.btn-danger.focus {
  1303. color: #ffffff;
  1304. background-color: #ac2925;
  1305. border-color: #761c19;
  1306. }
  1307. .btn-danger:active,
  1308. .btn-danger.active,
  1309. .open > .dropdown-toggle.btn-danger {
  1310. background-image: none;
  1311. }
  1312. .btn-danger.disabled,
  1313. .btn-danger[disabled],
  1314. fieldset[disabled] .btn-danger,
  1315. .btn-danger.disabled:hover,
  1316. .btn-danger[disabled]:hover,
  1317. fieldset[disabled] .btn-danger:hover,
  1318. .btn-danger.disabled:focus,
  1319. .btn-danger[disabled]:focus,
  1320. fieldset[disabled] .btn-danger:focus,
  1321. .btn-danger.disabled.focus,
  1322. .btn-danger[disabled].focus,
  1323. fieldset[disabled] .btn-danger.focus,
  1324. .btn-danger.disabled:active,
  1325. .btn-danger[disabled]:active,
  1326. fieldset[disabled] .btn-danger:active,
  1327. .btn-danger.disabled.active,
  1328. .btn-danger[disabled].active,
  1329. fieldset[disabled] .btn-danger.active {
  1330. background-color: #d9534f;
  1331. border-color: #d43f3a;
  1332. }
  1333. .btn-danger .badge {
  1334. color: #d9534f;
  1335. background-color: #ffffff;
  1336. }
  1337. .btn-link {
  1338. color: #337ab7;
  1339. font-weight: normal;
  1340. border-radius: 0;
  1341. }
  1342. .btn-link,
  1343. .btn-link:active,
  1344. .btn-link.active,
  1345. .btn-link[disabled],
  1346. fieldset[disabled] .btn-link {
  1347. background-color: transparent;
  1348. -webkit-box-shadow: none;
  1349. box-shadow: none;
  1350. }
  1351. .btn-link,
  1352. .btn-link:hover,
  1353. .btn-link:focus,
  1354. .btn-link:active {
  1355. border-color: transparent;
  1356. }
  1357. .btn-link:hover,
  1358. .btn-link:focus {
  1359. color: #23527c;
  1360. text-decoration: underline;
  1361. background-color: transparent;
  1362. }
  1363. .btn-link[disabled]:hover,
  1364. fieldset[disabled] .btn-link:hover,
  1365. .btn-link[disabled]:focus,
  1366. fieldset[disabled] .btn-link:focus {
  1367. color: #777777;
  1368. text-decoration: none;
  1369. }
  1370. .btn-lg {
  1371. padding: 10px 16px;
  1372. font-size: 18px;
  1373. line-height: 1.3333333;
  1374. border-radius: 6px;
  1375. }
  1376. .btn-sm {
  1377. padding: 5px 10px;
  1378. font-size: 12px;
  1379. line-height: 1.5;
  1380. border-radius: 3px;
  1381. }
  1382. .btn-xs {
  1383. padding: 1px 5px;
  1384. font-size: 12px;
  1385. line-height: 1.5;
  1386. border-radius: 3px;
  1387. }
  1388. .btn-block {
  1389. display: block;
  1390. width: 100%;
  1391. }
  1392. .btn-block + .btn-block {
  1393. margin-top: 5px;
  1394. }
  1395. /*LABELS*/
  1396. .label {
  1397. display: inline;
  1398. padding: .2em .6em .3em;
  1399. font-size: 75%;
  1400. font-weight: bold;
  1401. line-height: 1;
  1402. color: #ffffff;
  1403. text-align: center;
  1404. white-space: nowrap;
  1405. vertical-align: baseline;
  1406. border-radius: .25em;
  1407. }
  1408. a.label:hover,
  1409. a.label:focus {
  1410. color: #ffffff;
  1411. text-decoration: none;
  1412. cursor: pointer;
  1413. }
  1414. .label:empty {
  1415. display: none;
  1416. }
  1417. .btn .label {
  1418. position: relative;
  1419. top: -1px;
  1420. }
  1421. .label-default {
  1422. background-color: #777777;
  1423. }
  1424. .label-default[href]:hover,
  1425. .label-default[href]:focus {
  1426. background-color: #5e5e5e;
  1427. }
  1428. .label-primary {
  1429. background-color: #337ab7;
  1430. }
  1431. .label-primary[href]:hover,
  1432. .label-primary[href]:focus {
  1433. background-color: #286090;
  1434. }
  1435. .label-success {
  1436. background-color: #5cb85c;
  1437. }
  1438. .label-success[href]:hover,
  1439. .label-success[href]:focus {
  1440. background-color: #449d44;
  1441. }
  1442. .label-info {
  1443. background-color: #5bc0de;
  1444. }
  1445. .label-info[href]:hover,
  1446. .label-info[href]:focus {
  1447. background-color: #31b0d5;
  1448. }
  1449. .label-warning {
  1450. background-color: #f0ad4e;
  1451. }
  1452. .label-warning[href]:hover,
  1453. .label-warning[href]:focus {
  1454. background-color: #ec971f;
  1455. }
  1456. .label-danger {
  1457. background-color: #d9534f;
  1458. }
  1459. .label-danger[href]:hover,
  1460. .label-danger[href]:focus {
  1461. background-color: #c9302c;
  1462. }
  1463. /*PANELS*/
  1464. .badge {
  1465. display: inline-block;
  1466. min-width: 10px;
  1467. padding: 3px 7px;
  1468. font-size: 12px;
  1469. font-weight: bold;
  1470. color: #ffffff;
  1471. line-height: 1;
  1472. vertical-align: middle;
  1473. white-space: nowrap;
  1474. text-align: center;
  1475. background-color: #777777;
  1476. border-radius: 10px;
  1477. }
  1478. .badge:empty {
  1479. display: none;
  1480. }
  1481. .btn .badge {
  1482. position: relative;
  1483. top: -1px;
  1484. }
  1485. .btn-xs .badge,
  1486. .btn-group-xs > .btn .badge {
  1487. top: 0;
  1488. padding: 1px 5px;
  1489. }
  1490. a.badge:hover,
  1491. a.badge:focus {
  1492. color: #ffffff;
  1493. text-decoration: none;
  1494. cursor: pointer;
  1495. }
  1496. .list-group-item.active > .badge,
  1497. .nav-pills > .active > a > .badge {
  1498. color: #337ab7;
  1499. background-color: #ffffff;
  1500. }
  1501. .list-group-item > .badge {
  1502. float: right;
  1503. }
  1504. .list-group-item > .badge + .badge {
  1505. margin-right: 5px;
  1506. }
  1507. .nav-pills > li > a > .badge {
  1508. margin-left: 3px;
  1509. }
  1510. /*PANELS*/
  1511. .panel {
  1512. margin-bottom: 20px;
  1513. background-color: #ffffff;
  1514. border: 1px solid transparent;
  1515. border-radius: 4px;
  1516. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  1517. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  1518. }
  1519. .panel-body {
  1520. padding: 15px;
  1521. }
  1522. .panel-heading {
  1523. padding: 10px 15px;
  1524. border-bottom: 1px solid transparent;
  1525. border-top-right-radius: 3px;
  1526. border-top-left-radius: 3px;
  1527. }
  1528. .panel-heading > .dropdown .dropdown-toggle {
  1529. color: inherit;
  1530. }
  1531. .panel-title {
  1532. margin-top: 0;
  1533. margin-bottom: 0;
  1534. font-size: 16px;
  1535. color: inherit;
  1536. }
  1537. .panel-title > a,
  1538. .panel-title > small,
  1539. .panel-title > .small,
  1540. .panel-title > small > a,
  1541. .panel-title > .small > a {
  1542. color: inherit;
  1543. }
  1544. .panel-footer {
  1545. padding: 10px 15px;
  1546. background-color: #f5f5f5;
  1547. border-top: 1px solid #dddddd;
  1548. border-bottom-right-radius: 3px;
  1549. border-bottom-left-radius: 3px;
  1550. }
  1551. .panel > .list-group,
  1552. .panel > .panel-collapse > .list-group {
  1553. margin-bottom: 0;
  1554. }
  1555. .panel > .list-group .list-group-item,
  1556. .panel > .panel-collapse > .list-group .list-group-item {
  1557. border-width: 1px 0;
  1558. border-radius: 0;
  1559. }
  1560. .panel > .list-group:first-child .list-group-item:first-child,
  1561. .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  1562. border-top: 0;
  1563. border-top-right-radius: 3px;
  1564. border-top-left-radius: 3px;
  1565. }
  1566. .panel > .list-group:last-child .list-group-item:last-child,
  1567. .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  1568. border-bottom: 0;
  1569. border-bottom-right-radius: 3px;
  1570. border-bottom-left-radius: 3px;
  1571. }
  1572. .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  1573. border-top-right-radius: 0;
  1574. border-top-left-radius: 0;
  1575. }
  1576. .panel-heading + .list-group .list-group-item:first-child {
  1577. border-top-width: 0;
  1578. }
  1579. .list-group + .panel-footer {
  1580. border-top-width: 0;
  1581. }
  1582. .panel > .table,
  1583. .panel > .table-responsive > .table,
  1584. .panel > .panel-collapse > .table {
  1585. margin-bottom: 0;
  1586. }
  1587. .panel > .table caption,
  1588. .panel > .table-responsive > .table caption,
  1589. .panel > .panel-collapse > .table caption {
  1590. padding-left: 15px;
  1591. padding-right: 15px;
  1592. }
  1593. .panel > .table:first-child,
  1594. .panel > .table-responsive:first-child > .table:first-child {
  1595. border-top-right-radius: 3px;
  1596. border-top-left-radius: 3px;
  1597. }
  1598. .panel > .table:first-child > thead:first-child > tr:first-child,
  1599. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
  1600. .panel > .table:first-child > tbody:first-child > tr:first-child,
  1601. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  1602. border-top-left-radius: 3px;
  1603. border-top-right-radius: 3px;
  1604. }
  1605. .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
  1606. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
  1607. .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
  1608. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
  1609. .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
  1610. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
  1611. .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
  1612. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  1613. border-top-left-radius: 3px;
  1614. }
  1615. .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
  1616. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
  1617. .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
  1618. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
  1619. .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
  1620. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
  1621. .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
  1622. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  1623. border-top-right-radius: 3px;
  1624. }
  1625. .panel > .table:last-child,
  1626. .panel > .table-responsive:last-child > .table:last-child {
  1627. border-bottom-right-radius: 3px;
  1628. border-bottom-left-radius: 3px;
  1629. }
  1630. .panel > .table:last-child > tbody:last-child > tr:last-child,
  1631. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
  1632. .panel > .table:last-child > tfoot:last-child > tr:last-child,
  1633. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  1634. border-bottom-left-radius: 3px;
  1635. border-bottom-right-radius: 3px;
  1636. }
  1637. .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
  1638. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
  1639. .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
  1640. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
  1641. .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
  1642. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
  1643. .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
  1644. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  1645. border-bottom-left-radius: 3px;
  1646. }
  1647. .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
  1648. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
  1649. .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
  1650. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
  1651. .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
  1652. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
  1653. .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
  1654. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  1655. border-bottom-right-radius: 3px;
  1656. }
  1657. .panel > .panel-body + .table,
  1658. .panel > .panel-body + .table-responsive,
  1659. .panel > .table + .panel-body,
  1660. .panel > .table-responsive + .panel-body {
  1661. border-top: 1px solid #dddddd;
  1662. }
  1663. .panel > .table > tbody:first-child > tr:first-child th,
  1664. .panel > .table > tbody:first-child > tr:first-child td {
  1665. border-top: 0;
  1666. }
  1667. .panel > .table-bordered,
  1668. .panel > .table-responsive > .table-bordered {
  1669. border: 0;
  1670. }
  1671. .panel > .table-bordered > thead > tr > th:first-child,
  1672. .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
  1673. .panel > .table-bordered > tbody > tr > th:first-child,
  1674. .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
  1675. .panel > .table-bordered > tfoot > tr > th:first-child,
  1676. .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  1677. .panel > .table-bordered > thead > tr > td:first-child,
  1678. .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
  1679. .panel > .table-bordered > tbody > tr > td:first-child,
  1680. .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
  1681. .panel > .table-bordered > tfoot > tr > td:first-child,
  1682. .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  1683. border-left: 0;
  1684. }
  1685. .panel > .table-bordered > thead > tr > th:last-child,
  1686. .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
  1687. .panel > .table-bordered > tbody > tr > th:last-child,
  1688. .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
  1689. .panel > .table-bordered > tfoot > tr > th:last-child,
  1690. .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  1691. .panel > .table-bordered > thead > tr > td:last-child,
  1692. .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
  1693. .panel > .table-bordered > tbody > tr > td:last-child,
  1694. .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
  1695. .panel > .table-bordered > tfoot > tr > td:last-child,
  1696. .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  1697. border-right: 0;
  1698. }
  1699. .panel > .table-bordered > thead > tr:first-child > td,
  1700. .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
  1701. .panel > .table-bordered > tbody > tr:first-child > td,
  1702. .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
  1703. .panel > .table-bordered > thead > tr:first-child > th,
  1704. .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
  1705. .panel > .table-bordered > tbody > tr:first-child > th,
  1706. .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  1707. border-bottom: 0;
  1708. }
  1709. .panel > .table-bordered > tbody > tr:last-child > td,
  1710. .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
  1711. .panel > .table-bordered > tfoot > tr:last-child > td,
  1712. .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
  1713. .panel > .table-bordered > tbody > tr:last-child > th,
  1714. .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
  1715. .panel > .table-bordered > tfoot > tr:last-child > th,
  1716. .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  1717. border-bottom: 0;
  1718. }
  1719. .panel > .table-responsive {
  1720. border: 0;
  1721. margin-bottom: 0;
  1722. }
  1723. .panel-group {
  1724. margin-bottom: 20px;
  1725. }
  1726. .panel-group .panel {
  1727. margin-bottom: 0;
  1728. border-radius: 4px;
  1729. }
  1730. .panel-group .panel + .panel {
  1731. margin-top: 5px;
  1732. }
  1733. .panel-group .panel-heading {
  1734. border-bottom: 0;
  1735. }
  1736. .panel-group .panel-heading + .panel-collapse > .panel-body,
  1737. .panel-group .panel-heading + .panel-collapse > .list-group {
  1738. border-top: 1px solid #dddddd;
  1739. }
  1740. .panel-group .panel-footer {
  1741. border-top: 0;
  1742. }
  1743. .panel-group .panel-footer + .panel-collapse .panel-body {
  1744. border-bottom: 1px solid #dddddd;
  1745. }
  1746. .panel-default {
  1747. border-color: #dddddd;
  1748. }
  1749. .panel-default > .panel-heading {
  1750. color: #333333;
  1751. background-color: #f5f5f5;
  1752. border-color: #dddddd;
  1753. }
  1754. .panel-default > .panel-heading + .panel-collapse > .panel-body {
  1755. border-top-color: #dddddd;
  1756. }
  1757. .panel-default > .panel-heading .badge {
  1758. color: #f5f5f5;
  1759. background-color: #333333;
  1760. }
  1761. .panel-default > .panel-footer + .panel-collapse > .panel-body {
  1762. border-bottom-color: #dddddd;
  1763. }
  1764. .panel-primary {
  1765. border-color: #337ab7;
  1766. }
  1767. .panel-primary > .panel-heading {
  1768. color: #ffffff;
  1769. background-color: #337ab7;
  1770. border-color: #337ab7;
  1771. }
  1772. .panel-primary > .panel-heading + .panel-collapse > .panel-body {
  1773. border-top-color: #337ab7;
  1774. }
  1775. .panel-primary > .panel-heading .badge {
  1776. color: #337ab7;
  1777. background-color: #ffffff;
  1778. }
  1779. .panel-primary > .panel-footer + .panel-collapse > .panel-body {
  1780. border-bottom-color: #337ab7;
  1781. }
  1782. .panel-success {
  1783. border-color: #d6e9c6;
  1784. }
  1785. .panel-success > .panel-heading {
  1786. color: #3c763d;
  1787. background-color: #dff0d8;
  1788. border-color: #d6e9c6;
  1789. }
  1790. .panel-success > .panel-heading + .panel-collapse > .panel-body {
  1791. border-top-color: #d6e9c6;
  1792. }
  1793. .panel-success > .panel-heading .badge {
  1794. color: #dff0d8;
  1795. background-color: #3c763d;
  1796. }
  1797. .panel-success > .panel-footer + .panel-collapse > .panel-body {
  1798. border-bottom-color: #d6e9c6;
  1799. }
  1800. .panel-info {
  1801. border-color: #bce8f1;
  1802. }
  1803. .panel-info > .panel-heading {
  1804. color: #31708f;
  1805. background-color: #d9edf7;
  1806. border-color: #bce8f1;
  1807. }
  1808. .panel-info > .panel-heading + .panel-collapse > .panel-body {
  1809. border-top-color: #bce8f1;
  1810. }
  1811. .panel-info > .panel-heading .badge {
  1812. color: #d9edf7;
  1813. background-color: #31708f;
  1814. }
  1815. .panel-info > .panel-footer + .panel-collapse > .panel-body {
  1816. border-bottom-color: #bce8f1;
  1817. }
  1818. .panel-warning {
  1819. border-color: #faebcc;
  1820. }
  1821. .panel-warning > .panel-heading {
  1822. color: #8a6d3b;
  1823. background-color: #fcf8e3;
  1824. border-color: #faebcc;
  1825. }
  1826. .panel-warning > .panel-heading + .panel-collapse > .panel-body {
  1827. border-top-color: #faebcc;
  1828. }
  1829. .panel-warning > .panel-heading .badge {
  1830. color: #fcf8e3;
  1831. background-color: #8a6d3b;
  1832. }
  1833. .panel-warning > .panel-footer + .panel-collapse > .panel-body {
  1834. border-bottom-color: #faebcc;
  1835. }
  1836. .panel-danger {
  1837. border-color: #ebccd1;
  1838. }
  1839. .panel-danger > .panel-heading {
  1840. color: #a94442;
  1841. background-color: #f2dede;
  1842. border-color: #ebccd1;
  1843. }
  1844. .panel-danger > .panel-heading + .panel-collapse > .panel-body {
  1845. border-top-color: #ebccd1;
  1846. }
  1847. .panel-danger > .panel-heading .badge {
  1848. color: #f2dede;
  1849. background-color: #a94442;
  1850. }
  1851. .panel-danger > .panel-footer + .panel-collapse > .panel-body {
  1852. border-bottom-color: #ebccd1;
  1853. }
  1854. .well {
  1855. min-height: 20px;
  1856. padding: 19px;
  1857. margin-bottom: 20px;
  1858. background-color: #f5f5f5;
  1859. border: 1px solid #e3e3e3;
  1860. border-radius: 4px;
  1861. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  1862. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  1863. }
  1864. .well blockquote {
  1865. border-color: #ddd;
  1866. border-color: rgba(0, 0, 0, 0.15);
  1867. }
  1868. .well-lg {
  1869. padding: 24px;
  1870. border-radius: 6px;
  1871. }
  1872. .well-sm {
  1873. padding: 9px;
  1874. border-radius: 3px;
  1875. }