spectre.css 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760
  1. /*! Spectre.css | MIT License | github.com/picturepan2/spectre */
  2. /* Manually forked from Normalize.css */
  3. /* normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
  4. /**
  5. * 1. Change the default font family in all browsers (opinionated).
  6. * 2. Correct the line height in all browsers.
  7. * 3. Prevent adjustments of font size after orientation changes in
  8. * IE on Windows Phone and in iOS.
  9. */
  10. /* Document
  11. ========================================================================== */
  12. html {
  13. font-family: sans-serif;
  14. /* 1 */
  15. line-height: 1.15;
  16. /* 3 */
  17. -webkit-text-size-adjust: 100%;
  18. /* 2 */
  19. -ms-text-size-adjust: 100%;
  20. /* 3 */
  21. }
  22. /* Sections
  23. ========================================================================== */
  24. /**
  25. * Remove the margin in all browsers (opinionated).
  26. */
  27. body {
  28. margin: 0;
  29. }
  30. /**
  31. * Add the correct display in IE 9-.
  32. */
  33. article,
  34. aside,
  35. footer,
  36. header,
  37. nav,
  38. section {
  39. display: block;
  40. }
  41. /**
  42. * Correct the font size and margin on `h1` elements within `section` and
  43. * `article` contexts in Chrome, Firefox, and Safari.
  44. */
  45. h1 {
  46. font-size: 2em;
  47. margin: .67em 0;
  48. }
  49. /* Grouping content
  50. ========================================================================== */
  51. /**
  52. * Add the correct display in IE 9-.
  53. * 1. Add the correct display in IE.
  54. */
  55. figcaption,
  56. figure,
  57. main {
  58. /* 1 */
  59. display: block;
  60. }
  61. /**
  62. * Add the correct margin in IE 8 (removed).
  63. */
  64. /**
  65. * 1. Add the correct box sizing in Firefox.
  66. * 2. Show the overflow in Edge and IE.
  67. */
  68. hr {
  69. box-sizing: content-box;
  70. /* 1 */
  71. height: 0;
  72. /* 1 */
  73. overflow: visible;
  74. /* 2 */
  75. }
  76. /**
  77. * 1. Correct the inheritance and scaling of font size in all browsers. (removed)
  78. * 2. Correct the odd `em` font sizing in all browsers.
  79. */
  80. /* Text-level semantics
  81. ========================================================================== */
  82. /**
  83. * 1. Remove the gray background on active links in IE 10.
  84. * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
  85. */
  86. a {
  87. background-color: transparent;
  88. /* 1 */
  89. -webkit-text-decoration-skip: objects;
  90. /* 2 */
  91. }
  92. /**
  93. * Remove the outline on focused links when they are also active or hovered
  94. * in all browsers (opinionated).
  95. */
  96. a:active,
  97. a:hover {
  98. outline-width: 0;
  99. }
  100. /**
  101. * 1. Remove the bottom border in Firefox 39-.
  102. * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. (removed)
  103. */
  104. /**
  105. * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
  106. */
  107. b,
  108. strong {
  109. font-weight: inherit;
  110. }
  111. /**
  112. * Add the correct font weight in Chrome, Edge, and Safari.
  113. */
  114. b,
  115. strong {
  116. font-weight: bolder;
  117. }
  118. /**
  119. * 1. Correct the inheritance and scaling of font size in all browsers.
  120. * 2. Correct the odd `em` font sizing in all browsers.
  121. */
  122. code,
  123. kbd,
  124. pre,
  125. samp {
  126. font-family: monospace, monospace;
  127. /* 1 */
  128. font-size: 1em;
  129. /* 2 */
  130. }
  131. /**
  132. * Add the correct font style in Android 4.3-.
  133. */
  134. dfn {
  135. font-style: italic;
  136. }
  137. /**
  138. * Add the correct background and color in IE 9-. (Removed)
  139. */
  140. /**
  141. * Add the correct font size in all browsers.
  142. */
  143. small {
  144. font-size: 80%;
  145. }
  146. /**
  147. * Prevent `sub` and `sup` elements from affecting the line height in
  148. * all browsers.
  149. */
  150. sub,
  151. sup {
  152. font-size: 75%;
  153. line-height: 0;
  154. position: relative;
  155. vertical-align: baseline;
  156. }
  157. sub {
  158. bottom: -.25em;
  159. }
  160. sup {
  161. top: -.5em;
  162. }
  163. /* Embedded content
  164. ========================================================================== */
  165. /**
  166. * Add the correct display in IE 9-.
  167. */
  168. audio,
  169. video {
  170. display: inline-block;
  171. }
  172. /**
  173. * Add the correct display in iOS 4-7.
  174. */
  175. audio:not([controls]) {
  176. display: none;
  177. height: 0;
  178. }
  179. /**
  180. * Remove the border on images inside links in IE 10-.
  181. */
  182. img {
  183. border-style: none;
  184. }
  185. /**
  186. * Hide the overflow in IE.
  187. */
  188. svg:not(:root) {
  189. overflow: hidden;
  190. }
  191. /* Forms
  192. ========================================================================== */
  193. /**
  194. * 1. Change the font styles in all browsers (opinionated).
  195. * 2. Remove the margin in Firefox and Safari.
  196. */
  197. button,
  198. input,
  199. optgroup,
  200. select,
  201. textarea {
  202. font-family: inherit;
  203. /* 1 (changed) */
  204. font-size: inherit;
  205. /* 1 (changed) */
  206. line-height: inherit;
  207. /* 1 (changed) */
  208. margin: 0;
  209. /* 2 */
  210. }
  211. /**
  212. * Show the overflow in IE.
  213. * 1. Show the overflow in Edge.
  214. */
  215. button,
  216. input {
  217. /* 1 */
  218. overflow: visible;
  219. }
  220. /**
  221. * Remove the inheritance of text transform in Edge, Firefox, and IE.
  222. * 1. Remove the inheritance of text transform in Firefox.
  223. */
  224. button,
  225. select {
  226. /* 1 */
  227. text-transform: none;
  228. }
  229. /**
  230. * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
  231. * controls in Android 4.
  232. * 2. Correct the inability to style clickable types in iOS and Safari.
  233. */
  234. button,
  235. html [type="button"],
  236. [type="reset"],
  237. [type="submit"] {
  238. -webkit-appearance: button;
  239. /* 2 */
  240. }
  241. /**
  242. * Remove the inner border and padding in Firefox.
  243. */
  244. button::-moz-focus-inner,
  245. [type="button"]::-moz-focus-inner,
  246. [type="reset"]::-moz-focus-inner,
  247. [type="submit"]::-moz-focus-inner {
  248. border-style: none;
  249. padding: 0;
  250. }
  251. /**
  252. * Restore the focus styles unset by the previous rule (removed).
  253. */
  254. /**
  255. * Change the border, margin, and padding in all browsers (opinionated) (changed).
  256. */
  257. fieldset {
  258. border: 0;
  259. margin: 0;
  260. padding: 0;
  261. }
  262. /**
  263. * 1. Correct the text wrapping in Edge and IE.
  264. * 2. Correct the color inheritance from `fieldset` elements in IE.
  265. * 3. Remove the padding so developers are not caught out when they zero out
  266. * `fieldset` elements in all browsers.
  267. */
  268. legend {
  269. box-sizing: border-box;
  270. /* 1 */
  271. color: inherit;
  272. /* 2 */
  273. display: table;
  274. /* 1 */
  275. max-width: 100%;
  276. /* 1 */
  277. padding: 0;
  278. /* 3 */
  279. white-space: normal;
  280. /* 1 */
  281. }
  282. /**
  283. * 1. Add the correct display in IE 9-.
  284. * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
  285. */
  286. progress {
  287. display: inline-block;
  288. /* 1 */
  289. vertical-align: baseline;
  290. /* 2 */
  291. }
  292. /**
  293. * Remove the default vertical scrollbar in IE.
  294. */
  295. textarea {
  296. overflow: auto;
  297. }
  298. /**
  299. * 1. Add the correct box sizing in IE 10-.
  300. * 2. Remove the padding in IE 10-.
  301. */
  302. [type="checkbox"],
  303. [type="radio"] {
  304. box-sizing: border-box;
  305. /* 1 */
  306. padding: 0;
  307. /* 2 */
  308. }
  309. /**
  310. * Correct the cursor style of increment and decrement buttons in Chrome.
  311. */
  312. [type="number"]::-webkit-inner-spin-button,
  313. [type="number"]::-webkit-outer-spin-button {
  314. height: auto;
  315. }
  316. /**
  317. * 1. Correct the odd appearance in Chrome and Safari.
  318. * 2. Correct the outline style in Safari.
  319. */
  320. [type="search"] {
  321. -webkit-appearance: textfield;
  322. /* 1 */
  323. outline-offset: -2px;
  324. /* 2 */
  325. }
  326. /**
  327. * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
  328. */
  329. [type="search"]::-webkit-search-cancel-button,
  330. [type="search"]::-webkit-search-decoration {
  331. -webkit-appearance: none;
  332. }
  333. /**
  334. * 1. Correct the inability to style clickable types in iOS and Safari.
  335. * 2. Change font properties to `inherit` in Safari.
  336. */
  337. ::-webkit-file-upload-button {
  338. -webkit-appearance: button;
  339. /* 1 */
  340. font: inherit;
  341. /* 2 */
  342. }
  343. /* Interactive
  344. ========================================================================== */
  345. /*
  346. * Add the correct display in IE 9-.
  347. * 1. Add the correct display in Edge, IE, and Firefox.
  348. */
  349. details,
  350. menu {
  351. display: block;
  352. }
  353. /*
  354. * Add the correct display in all browsers.
  355. */
  356. summary {
  357. display: list-item;
  358. }
  359. /* Scripting
  360. ========================================================================== */
  361. /**
  362. * Add the correct display in IE 9-.
  363. */
  364. canvas {
  365. display: inline-block;
  366. }
  367. /**
  368. * Add the correct display in IE.
  369. */
  370. template {
  371. display: none;
  372. }
  373. /* Hidden
  374. ========================================================================== */
  375. /**
  376. * Add the correct display in IE 10-.
  377. */
  378. [hidden] {
  379. display: none;
  380. }
  381. *,
  382. *::before,
  383. *::after {
  384. box-sizing: inherit;
  385. }
  386. html {
  387. box-sizing: border-box;
  388. font-size: 10px;
  389. line-height: 1.42857143;
  390. -webkit-tap-highlight-color: transparent;
  391. }
  392. body {
  393. background: #fff;
  394. color: #333;
  395. font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  396. font-size: 1.4rem;
  397. overflow-x: hidden;
  398. text-rendering: optimizeLegibility;
  399. }
  400. a {
  401. color: #5764c6;
  402. text-decoration: none;
  403. }
  404. a:focus,
  405. a:hover,
  406. a:active,
  407. a.active {
  408. color: #3b49af;
  409. text-decoration: underline;
  410. }
  411. :focus {
  412. box-shadow: 0 0 0 .2rem rgba(87, 100, 198, .15);
  413. outline: 0;
  414. }
  415. .btn .icon,
  416. .toast .icon,
  417. .menu .icon {
  418. font-size: 1.3333em;
  419. line-height: .8em;
  420. vertical-align: -20%;
  421. }
  422. .icon-caret {
  423. border-left: .4rem solid transparent;
  424. border-right: .4rem solid transparent;
  425. border-top: .4rem solid currentColor;
  426. display: inline-block;
  427. height: 0;
  428. margin: 0;
  429. vertical-align: middle;
  430. width: 0;
  431. }
  432. h1,
  433. h2,
  434. h3,
  435. h4,
  436. h5,
  437. h6 {
  438. color: inherit;
  439. font-weight: 300;
  440. line-height: 1.2;
  441. margin-bottom: 1.5rem;
  442. margin-top: 0;
  443. }
  444. h1 {
  445. font-size: 5rem;
  446. }
  447. h2 {
  448. font-size: 4rem;
  449. }
  450. h3 {
  451. font-size: 3rem;
  452. }
  453. h4 {
  454. font-size: 2.4rem;
  455. }
  456. h5 {
  457. font-size: 2rem;
  458. }
  459. h6 {
  460. font-size: 1.6rem;
  461. }
  462. p {
  463. line-height: 2.4rem;
  464. margin: 0 0 1rem;
  465. }
  466. a,
  467. ins,
  468. u {
  469. -webkit-text-decoration-skip: ink edges;
  470. text-decoration-skip: ink edges;
  471. }
  472. blockquote {
  473. border-left: .2rem solid #efefef;
  474. margin-left: 0;
  475. padding: 1rem 2rem;
  476. }
  477. blockquote p:last-child {
  478. margin-bottom: 0;
  479. }
  480. blockquote cite {
  481. color: #999;
  482. }
  483. ul,
  484. ol {
  485. margin: 2rem 0 2rem 2rem;
  486. padding: 0;
  487. }
  488. ul ul,
  489. ol ul,
  490. ul ol,
  491. ol ol {
  492. margin: 1.5rem 0 1.5rem 2rem;
  493. }
  494. ul li,
  495. ol li {
  496. margin-top: 1rem;
  497. }
  498. ul {
  499. list-style: disc inside;
  500. }
  501. ul ul {
  502. list-style-type: circle;
  503. }
  504. ol {
  505. list-style: decimal inside;
  506. }
  507. ol ol {
  508. list-style-type: lower-alpha;
  509. }
  510. dl dt {
  511. font-weight: bold;
  512. }
  513. dl dd {
  514. margin: .5rem 0 1.5rem 0;
  515. }
  516. mark {
  517. background: #ffe9b3;
  518. border-radius: .2rem;
  519. display: inline-block;
  520. line-height: 1;
  521. padding: .3rem .4rem;
  522. vertical-align: baseline;
  523. }
  524. kbd {
  525. background: #333;
  526. border-radius: .2rem;
  527. color: #fff;
  528. display: inline-block;
  529. line-height: 1;
  530. padding: .3rem .4rem;
  531. vertical-align: baseline;
  532. }
  533. abbr[title] {
  534. border-bottom: .1rem dotted;
  535. cursor: help;
  536. text-decoration: none;
  537. }
  538. .table {
  539. border-collapse: collapse;
  540. border-spacing: 0;
  541. text-align: left;
  542. width: 100%;
  543. }
  544. .table.table-striped tbody tr:nth-of-type(odd) {
  545. background: #f8f8f8;
  546. }
  547. .table.table-hover tbody tr:hover {
  548. background: #f0f0f0;
  549. }
  550. .table tbody tr.active,
  551. .table.table-striped tbody tr.active {
  552. background: #f0f0f0;
  553. }
  554. .table td {
  555. border-bottom: .1rem solid #efefef;
  556. padding: 1.5rem 1rem;
  557. }
  558. .table th {
  559. border-bottom: .2rem solid #333;
  560. padding: 1.5rem 1rem;
  561. }
  562. .btn {
  563. -webkit-appearance: none;
  564. background: #fff;
  565. border: .1rem solid #5764c6;
  566. border-radius: .2rem;
  567. color: #5764c6;
  568. cursor: pointer;
  569. display: inline-block;
  570. font-size: 1.4rem;
  571. height: 3.2rem;
  572. line-height: 2rem;
  573. padding: .5rem 1.2rem;
  574. text-align: center;
  575. text-decoration: none;
  576. transition: all .2s ease;
  577. -webkit-user-select: none;
  578. -moz-user-select: none;
  579. -ms-user-select: none;
  580. user-select: none;
  581. vertical-align: middle;
  582. white-space: nowrap;
  583. }
  584. .btn:focus {
  585. background: #f7f8fc;
  586. text-decoration: none;
  587. }
  588. .btn:hover {
  589. background: #5764c6;
  590. border-color: #4452c0;
  591. color: #fff;
  592. text-decoration: none;
  593. }
  594. .btn:active,
  595. .btn.active {
  596. background: #4452c0;
  597. border-color: #3b49af;
  598. color: #fff;
  599. }
  600. .btn[disabled],
  601. .btn:disabled,
  602. .btn.disabled {
  603. cursor: default;
  604. opacity: .5;
  605. pointer-events: none;
  606. }
  607. .btn.btn-primary {
  608. background: #5764c6;
  609. border-color: #4452c0;
  610. color: #fff;
  611. }
  612. .btn.btn-primary:focus {
  613. background: #4452c0;
  614. border-color: #3f4eba;
  615. color: #fff;
  616. }
  617. .btn.btn-primary:hover {
  618. background: #3f4eba;
  619. border-color: #3946a7;
  620. color: #fff;
  621. }
  622. .btn.btn-primary:active,
  623. .btn.btn-primary.active {
  624. background: #3d4ab3;
  625. border-color: #36429f;
  626. color: #fff;
  627. }
  628. .btn.btn-primary.loading::after {
  629. border-color: #fff;
  630. border-right-color: transparent;
  631. border-top-color: transparent;
  632. }
  633. .btn.btn-link {
  634. background: transparent;
  635. border-color: transparent;
  636. color: #5764c6;
  637. }
  638. .btn.btn-link:focus,
  639. .btn.btn-link:hover,
  640. .btn.btn-link:active,
  641. .btn.btn-link.active {
  642. color: #3b49af;
  643. }
  644. .btn.btn-sm {
  645. font-size: 1.2rem;
  646. height: 2.4rem;
  647. padding: .1rem .8rem;
  648. }
  649. .btn.btn-lg {
  650. font-size: 1.8rem;
  651. height: 4rem;
  652. padding: .9rem 1.5rem;
  653. }
  654. .btn.btn-block {
  655. display: block;
  656. width: 100%;
  657. }
  658. .btn.btn-action {
  659. padding-left: .2rem;
  660. padding-right: .2rem;
  661. width: 3.2rem;
  662. }
  663. .btn.btn-action.btn-sm {
  664. width: 2.4rem;
  665. }
  666. .btn.btn-action.btn-lg {
  667. width: 4rem;
  668. }
  669. .btn.btn-clear {
  670. background: transparent;
  671. border: 0;
  672. color: currentColor;
  673. height: 2rem;
  674. margin-left: .2rem;
  675. margin-right: -.4rem;
  676. opacity: .45;
  677. padding: 0 .4rem;
  678. text-decoration: none;
  679. width: 2rem;
  680. }
  681. .btn.btn-clear:hover {
  682. opacity: .85;
  683. }
  684. .btn.btn-clear::before {
  685. content: "\00d7";
  686. display: inline-block;
  687. font-family: sans-serif;
  688. font-size: 2rem;
  689. }
  690. .btn-group {
  691. display: inline-flex;
  692. display: -ms-inline-flexbox;
  693. display: -webkit-inline-flex;
  694. -webkit-flex-wrap: wrap;
  695. -ms-flex-wrap: wrap;
  696. flex-wrap: wrap;
  697. }
  698. .btn-group .btn {
  699. -webkit-flex: 1 0 auto;
  700. -ms-flex: 1 0 auto;
  701. flex: 1 0 auto;
  702. }
  703. .btn-group .btn:first-child:not(:last-child) {
  704. border-bottom-right-radius: 0;
  705. border-top-right-radius: 0;
  706. }
  707. .btn-group .btn:not(:first-child):not(:last-child) {
  708. border-radius: 0;
  709. margin-left: -.1rem;
  710. }
  711. .btn-group .btn:last-child:not(:first-child) {
  712. border-bottom-left-radius: 0;
  713. border-top-left-radius: 0;
  714. margin-left: -.1rem;
  715. }
  716. .btn-group .btn:hover,
  717. .btn-group .btn:focus,
  718. .btn-group .btn:active,
  719. .btn-group .btn.active {
  720. z-index: 9;
  721. }
  722. .btn-group.btn-group-block {
  723. display: flex;
  724. display: -ms-flexbox;
  725. display: -webkit-flex;
  726. }
  727. .form-group:not(:last-child) {
  728. margin-bottom: 1rem;
  729. }
  730. .form-input {
  731. -webkit-appearance: none;
  732. -moz-appearance: none;
  733. appearance: none;
  734. background: #fff;
  735. background-image: none;
  736. border: .1rem solid #ccc;
  737. border-radius: .2rem;
  738. color: #333;
  739. display: block;
  740. font-size: 1.4rem;
  741. height: 3.2rem;
  742. line-height: 2rem;
  743. max-width: 100%;
  744. outline: 0;
  745. padding: .5rem .8rem;
  746. position: relative;
  747. transition: all .2s ease;
  748. width: 100%;
  749. }
  750. .form-input:focus {
  751. border-color: #5764c6;
  752. }
  753. .form-input.input-sm {
  754. font-size: 1.2rem;
  755. height: 2.4rem;
  756. padding: .1rem .6rem;
  757. }
  758. .form-input.input-lg {
  759. font-size: 1.6rem;
  760. height: 4rem;
  761. padding: .9rem .8rem;
  762. }
  763. .form-input.input-inline {
  764. display: inline-block;
  765. vertical-align: middle;
  766. width: auto;
  767. }
  768. textarea.form-input {
  769. height: auto;
  770. line-height: 2rem;
  771. }
  772. .form-input[type=file] {
  773. height: auto;
  774. }
  775. .form-input-hint {
  776. color: #999;
  777. margin-top: .4rem;
  778. }
  779. .has-success .form-input-hint,
  780. .is-success + .form-input-hint {
  781. color: #32b643;
  782. }
  783. .has-danger .form-input-hint,
  784. .is-danger + .form-input-hint {
  785. color: #e85600;
  786. }
  787. .form-label {
  788. display: block;
  789. line-height: 1.6rem;
  790. margin-bottom: .5rem;
  791. }
  792. .form-select {
  793. -webkit-appearance: none;
  794. -moz-appearance: none;
  795. appearance: none;
  796. border: .1rem solid #ccc;
  797. border-radius: .2rem;
  798. font-size: 1.4rem;
  799. line-height: 2rem;
  800. min-width: 18rem;
  801. outline: 0;
  802. padding: .5rem .8rem;
  803. vertical-align: middle;
  804. }
  805. .form-select[multiple] option {
  806. padding: .2rem .4rem;
  807. }
  808. .form-select:not([multiple]) {
  809. background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAMAAACzvE1FAAAADFBMVEUzMzMzMzMzMzMzMzMKAG/3AAAAA3RSTlMAf4C/aSLHAAAAPElEQVR42q3NMQ4AIAgEQTn//2cLdRKppSGzBYwzVXvznNWs8C58CiussPJj8h6NwgorrKRdTvuV9v16Afn0AYFOB7aYAAAAAElFTkSuQmCC) no-repeat right .75rem center / .8rem 1rem;
  810. height: 3.2rem;
  811. padding-right: 2.4rem;
  812. }
  813. .form-select:focus {
  814. border-color: #5764c6;
  815. }
  816. .form-select::-ms-expand {
  817. display: none;
  818. }
  819. .form-select.select-sm {
  820. font-size: 1.2rem;
  821. height: 2.4rem;
  822. padding: .1rem 2rem .1rem .6rem;
  823. }
  824. .form-select.select-lg {
  825. font-size: 1.6rem;
  826. height: 4rem;
  827. padding: .9rem 2.4rem .9rem .8rem;
  828. }
  829. .has-success .form-input,
  830. .has-success .form-select,
  831. .form-input.is-success,
  832. .form-select.is-success {
  833. border-color: #32b643;
  834. }
  835. .has-success .form-input:focus,
  836. .has-success .form-select:focus,
  837. .form-input.is-success:focus,
  838. .form-select.is-success:focus {
  839. box-shadow: 0 0 0 .2rem rgba(50, 182, 67, .15);
  840. }
  841. .has-danger .form-input,
  842. .has-danger .form-select,
  843. .form-input.is-danger,
  844. .form-select.is-danger {
  845. border-color: #e85600;
  846. }
  847. .has-danger .form-input:focus,
  848. .has-danger .form-select:focus,
  849. .form-input.is-danger:focus,
  850. .form-select.is-danger:focus {
  851. box-shadow: 0 0 0 .2rem rgba(232, 86, 0, .15);
  852. }
  853. .form-checkbox input,
  854. .form-radio input,
  855. .form-switch input {
  856. clip: rect(0, 0, 0, 0);
  857. height: .1rem;
  858. margin: -.1rem;
  859. overflow: hidden;
  860. position: absolute;
  861. width: .1rem;
  862. }
  863. .form-checkbox input:focus + .form-icon,
  864. .form-radio input:focus + .form-icon,
  865. .form-switch input:focus + .form-icon {
  866. border-color: #5764c6;
  867. box-shadow: 0 0 0 .2rem rgba(87, 100, 198, .15);
  868. }
  869. .form-checkbox,
  870. .form-radio {
  871. display: inline-block;
  872. line-height: 1.8rem;
  873. padding: .3rem 2rem;
  874. position: relative;
  875. }
  876. .form-checkbox .form-icon,
  877. .form-radio .form-icon {
  878. border: .1rem solid #ccc;
  879. cursor: pointer;
  880. display: inline-block;
  881. font-size: 1.4rem;
  882. height: 1.4rem;
  883. left: 0;
  884. line-height: 2.4rem;
  885. outline: none;
  886. padding: 0;
  887. position: absolute;
  888. top: .5rem;
  889. transition: all .2s ease;
  890. vertical-align: top;
  891. width: 1.4rem;
  892. }
  893. .form-checkbox input:checked + .form-icon,
  894. .form-radio input:checked + .form-icon {
  895. background: #5764c6;
  896. border-color: #5764c6;
  897. }
  898. .form-checkbox input:active + .form-icon,
  899. .form-radio input:active + .form-icon {
  900. background: #efefef;
  901. }
  902. .form-checkbox .form-icon {
  903. border-radius: .2rem;
  904. }
  905. .form-checkbox input:checked + .form-icon::after {
  906. background-clip: padding-box;
  907. border: .2rem solid #fff;
  908. border-left-width: 0;
  909. border-top-width: 0;
  910. content: "";
  911. height: 1rem;
  912. left: 50%;
  913. margin-left: -.3rem;
  914. margin-top: -.6rem;
  915. position: absolute;
  916. top: 50%;
  917. -webkit-transform: rotate(45deg);
  918. -ms-transform: rotate(45deg);
  919. transform: rotate(45deg);
  920. width: .6rem;
  921. }
  922. .form-checkbox input:indeterminate + .form-icon {
  923. background: #5764c6;
  924. border-color: #5764c6;
  925. }
  926. .form-checkbox input:indeterminate + .form-icon::after {
  927. background: #fff;
  928. content: "";
  929. height: .2rem;
  930. left: 50%;
  931. margin-left: -.4rem;
  932. margin-top: -.1rem;
  933. position: absolute;
  934. top: 50%;
  935. width: .8rem;
  936. }
  937. .form-radio .form-icon {
  938. border-radius: .7rem;
  939. }
  940. .form-radio input:checked + .form-icon::after {
  941. background: #fff;
  942. border-radius: .2rem;
  943. content: "";
  944. height: .4rem;
  945. left: 50%;
  946. margin-left: -.2rem;
  947. margin-top: -.2rem;
  948. position: absolute;
  949. top: 50%;
  950. width: .4rem;
  951. }
  952. .form-switch {
  953. display: inline-block;
  954. line-height: 2rem;
  955. padding: .2rem 2rem .2rem 3.6rem;
  956. position: relative;
  957. }
  958. .form-switch .form-icon {
  959. background: #ccc;
  960. background-clip: padding-box;
  961. border: .1rem solid #ccc;
  962. border-radius: .9rem;
  963. cursor: pointer;
  964. display: inline-block;
  965. height: 1.8rem;
  966. left: 0;
  967. line-height: 2.6rem;
  968. outline: none;
  969. padding: 0;
  970. position: absolute;
  971. top: .3rem;
  972. vertical-align: top;
  973. width: 3rem;
  974. }
  975. .form-switch .form-icon::after {
  976. background: #fff;
  977. border-radius: .8rem;
  978. content: "";
  979. display: block;
  980. height: 1.6rem;
  981. left: 0;
  982. position: absolute;
  983. top: 0;
  984. transition: left .2s ease;
  985. width: 1.6rem;
  986. }
  987. .form-switch input:checked + .form-icon {
  988. background: #5764c6;
  989. border-color: #5764c6;
  990. }
  991. .form-switch input:checked + .form-icon::after {
  992. left: 1.2rem;
  993. }
  994. .form-switch input:active + .form-icon::after {
  995. background: #efefef;
  996. }
  997. .input-group {
  998. display: flex;
  999. display: -ms-flexbox;
  1000. display: -webkit-flex;
  1001. }
  1002. .input-group .input-group-addon {
  1003. background: #f8f8f8;
  1004. border: .1rem solid #ccc;
  1005. border-radius: .2rem;
  1006. line-height: 2rem;
  1007. padding: .5rem .8rem;
  1008. }
  1009. .input-group .input-group-addon.addon-sm {
  1010. font-size: 1.2rem;
  1011. padding: .1rem .6rem;
  1012. }
  1013. .input-group .input-group-addon.addon-lg {
  1014. font-size: 1.6rem;
  1015. line-height: 2rem;
  1016. padding: .9rem .8rem;
  1017. }
  1018. .input-group .input-group-addon,
  1019. .input-group .input-group-btn {
  1020. -webkit-flex: 1 0 auto;
  1021. -ms-flex: 1 0 auto;
  1022. flex: 1 0 auto;
  1023. }
  1024. .input-group .form-input:first-child:not(:last-child),
  1025. .input-group .input-group-addon:first-child:not(:last-child),
  1026. .input-group .input-group-btn:first-child:not(:last-child) {
  1027. border-bottom-right-radius: 0;
  1028. border-top-right-radius: 0;
  1029. }
  1030. .input-group .form-input:not(:first-child):not(:last-child),
  1031. .input-group .input-group-addon:not(:first-child):not(:last-child),
  1032. .input-group .input-group-btn:not(:first-child):not(:last-child) {
  1033. border-radius: 0;
  1034. margin-left: -.1rem;
  1035. }
  1036. .input-group .form-input:last-child:not(:first-child),
  1037. .input-group .input-group-addon:last-child:not(:first-child),
  1038. .input-group .input-group-btn:last-child:not(:first-child) {
  1039. border-bottom-left-radius: 0;
  1040. border-top-left-radius: 0;
  1041. margin-left: -.1rem;
  1042. }
  1043. .input-group .form-input:focus,
  1044. .input-group .input-group-addon:focus,
  1045. .input-group .input-group-btn:focus {
  1046. z-index: 99;
  1047. }
  1048. .input-group.input-inline {
  1049. display: inline-flex;
  1050. display: -ms-inline-flexbox;
  1051. display: -webkit-inline-flex;
  1052. }
  1053. .form-input:disabled,
  1054. .form-select:disabled,
  1055. .form-input.disabled,
  1056. .form-select.disabled {
  1057. background-color: #f0f0f0;
  1058. cursor: not-allowed;
  1059. opacity: .5;
  1060. }
  1061. input:disabled + .form-icon,
  1062. input.disabled + .form-icon {
  1063. background: #f0f0f0;
  1064. border-color: #ccc;
  1065. cursor: not-allowed;
  1066. opacity: .5;
  1067. }
  1068. .form-switch input:disabled + .form-icon::after,
  1069. .form-switch input.disabled + .form-icon::after {
  1070. background: #fff;
  1071. }
  1072. .form-horizontal {
  1073. padding: 1rem;
  1074. }
  1075. .form-horizontal .form-group {
  1076. display: flex;
  1077. display: -ms-flexbox;
  1078. display: -webkit-flex;
  1079. }
  1080. .form-horizontal .form-label {
  1081. margin-bottom: 0;
  1082. padding: .8rem .4rem;
  1083. }
  1084. .form-horizontal .form-checkbox,
  1085. .form-horizontal .form-radio,
  1086. .form-horizontal .form-switch {
  1087. margin: .4rem 0;
  1088. }
  1089. .label {
  1090. background: #f8f8f8;
  1091. border-radius: .2rem;
  1092. color: #666;
  1093. display: inline-block;
  1094. line-height: 1;
  1095. padding: .3rem .4rem;
  1096. vertical-align: baseline;
  1097. }
  1098. .label.label-primary {
  1099. background: #5764c6;
  1100. color: #fff;
  1101. }
  1102. .label.label-success {
  1103. background: #32b643;
  1104. color: #fff;
  1105. }
  1106. .label.label-warning {
  1107. background: #ffb700;
  1108. color: #fff;
  1109. }
  1110. .label.label-danger {
  1111. background: #e85600;
  1112. color: #fff;
  1113. }
  1114. code {
  1115. background: #f8f8f8;
  1116. border-radius: .2rem;
  1117. color: #e06870;
  1118. display: inline-block;
  1119. line-height: 1;
  1120. padding: .3rem .4rem;
  1121. vertical-align: baseline;
  1122. }
  1123. .code {
  1124. border-radius: .2rem;
  1125. color: #666;
  1126. line-height: 2rem;
  1127. position: relative;
  1128. }
  1129. .code::before {
  1130. color: #ccc;
  1131. content: attr(data-lang);
  1132. font-size: 1.2rem;
  1133. position: absolute;
  1134. right: 1rem;
  1135. top: .2rem;
  1136. }
  1137. .code code {
  1138. color: inherit;
  1139. display: block;
  1140. line-height: inherit;
  1141. overflow-x: auto;
  1142. padding: 2rem;
  1143. width: 100%;
  1144. }
  1145. .img-responsive {
  1146. display: block;
  1147. height: auto;
  1148. max-width: 100%;
  1149. }
  1150. .video-responsive {
  1151. display: block;
  1152. overflow: hidden;
  1153. padding: 0;
  1154. position: relative;
  1155. width: 100%;
  1156. }
  1157. .video-responsive::before {
  1158. content: "";
  1159. display: block;
  1160. padding-bottom: 56.25%;
  1161. /* Default 16:9, you can calculate this value by dividing 9 by 16 */
  1162. }
  1163. .video-responsive iframe,
  1164. .video-responsive object,
  1165. .video-responsive embed {
  1166. bottom: 0;
  1167. height: 100%;
  1168. left: 0;
  1169. position: absolute;
  1170. right: 0;
  1171. top: 0;
  1172. width: 100%;
  1173. }
  1174. .video-responsive video {
  1175. height: auto;
  1176. max-width: 100%;
  1177. width: 100%;
  1178. }
  1179. .video-responsive-4-3::before {
  1180. padding-bottom: 75%;
  1181. /* 4:3 */
  1182. }
  1183. .video-responsive-1-1::before {
  1184. padding-bottom: 100%;
  1185. /* 1:1 */
  1186. }
  1187. .figure {
  1188. margin: 0 0 1rem 0;
  1189. }
  1190. .figure .figure-caption {
  1191. color: #666;
  1192. margin-top: 1rem;
  1193. }
  1194. .container {
  1195. margin-left: auto;
  1196. margin-right: auto;
  1197. padding-left: 1rem;
  1198. padding-right: 1rem;
  1199. width: 100%;
  1200. }
  1201. .container.grid-960 {
  1202. max-width: 98rem;
  1203. }
  1204. .container.grid-480 {
  1205. max-width: 50rem;
  1206. }
  1207. .columns {
  1208. display: flex;
  1209. display: -ms-flexbox;
  1210. display: -webkit-flex;
  1211. -webkit-flex-wrap: wrap;
  1212. -ms-flex-wrap: wrap;
  1213. flex-wrap: wrap;
  1214. margin-left: -1rem;
  1215. margin-right: -1rem;
  1216. }
  1217. .columns.col-gapless {
  1218. margin-left: 0;
  1219. margin-right: 0;
  1220. }
  1221. .columns.col-gapless .column {
  1222. padding-left: 0;
  1223. padding-right: 0;
  1224. }
  1225. .columns.col-oneline {
  1226. -webkit-flex-wrap: nowrap;
  1227. -ms-flex-wrap: nowrap;
  1228. flex-wrap: nowrap;
  1229. overflow-x: auto;
  1230. }
  1231. .column {
  1232. -webkit-flex: 1;
  1233. -ms-flex: 1;
  1234. flex: 1;
  1235. padding: 1rem;
  1236. }
  1237. .column.col-12,
  1238. .column.col-11,
  1239. .column.col-10,
  1240. .column.col-9,
  1241. .column.col-8,
  1242. .column.col-7,
  1243. .column.col-6,
  1244. .column.col-5,
  1245. .column.col-4,
  1246. .column.col-3,
  1247. .column.col-2,
  1248. .column.col-1 {
  1249. -webkit-flex: none;
  1250. -ms-flex: none;
  1251. flex: none;
  1252. }
  1253. .col-12 {
  1254. width: 100%;
  1255. }
  1256. .col-11 {
  1257. width: 91.66666667%;
  1258. }
  1259. .col-10 {
  1260. width: 83.33333333%;
  1261. }
  1262. .col-9 {
  1263. width: 75%;
  1264. }
  1265. .col-8 {
  1266. width: 66.66666667%;
  1267. }
  1268. .col-7 {
  1269. width: 58.33333333%;
  1270. }
  1271. .col-6 {
  1272. width: 50%;
  1273. }
  1274. .col-5 {
  1275. width: 41.66666667%;
  1276. }
  1277. .col-4 {
  1278. width: 33.33333333%;
  1279. }
  1280. .col-3 {
  1281. width: 25%;
  1282. }
  1283. .col-2 {
  1284. width: 16.66666667%;
  1285. }
  1286. .col-1 {
  1287. width: 8.33333333%;
  1288. }
  1289. @media screen and (max-width: 1280px) {
  1290. .col-xl-12,
  1291. .col-xl-11,
  1292. .col-xl-10,
  1293. .col-xl-9,
  1294. .col-xl-8,
  1295. .col-xl-7,
  1296. .col-xl-6,
  1297. .col-xl-5,
  1298. .col-xl-4,
  1299. .col-xl-3,
  1300. .col-xl-2,
  1301. .col-xl-1 {
  1302. -webkit-flex: none;
  1303. -ms-flex: none;
  1304. flex: none;
  1305. }
  1306. .col-xl-12 {
  1307. width: 100%;
  1308. }
  1309. .col-xl-11 {
  1310. width: 91.66666667%;
  1311. }
  1312. .col-xl-10 {
  1313. width: 83.33333333%;
  1314. }
  1315. .col-xl-9 {
  1316. width: 75%;
  1317. }
  1318. .col-xl-8 {
  1319. width: 66.66666667%;
  1320. }
  1321. .col-xl-7 {
  1322. width: 58.33333333%;
  1323. }
  1324. .col-xl-6 {
  1325. width: 50%;
  1326. }
  1327. .col-xl-5 {
  1328. width: 41.66666667%;
  1329. }
  1330. .col-xl-4 {
  1331. width: 33.33333333%;
  1332. }
  1333. .col-xl-3 {
  1334. width: 25%;
  1335. }
  1336. .col-xl-2 {
  1337. width: 16.66666667%;
  1338. }
  1339. .col-xl-1 {
  1340. width: 8.33333333%;
  1341. }
  1342. }
  1343. @media screen and (max-width: 960px) {
  1344. .col-lg-12,
  1345. .col-lg-11,
  1346. .col-lg-10,
  1347. .col-lg-9,
  1348. .col-lg-8,
  1349. .col-lg-7,
  1350. .col-lg-6,
  1351. .col-lg-5,
  1352. .col-lg-4,
  1353. .col-lg-3,
  1354. .col-lg-2,
  1355. .col-lg-1 {
  1356. -webkit-flex: none;
  1357. -ms-flex: none;
  1358. flex: none;
  1359. }
  1360. .col-lg-12 {
  1361. width: 100%;
  1362. }
  1363. .col-lg-11 {
  1364. width: 91.66666667%;
  1365. }
  1366. .col-lg-10 {
  1367. width: 83.33333333%;
  1368. }
  1369. .col-lg-9 {
  1370. width: 75%;
  1371. }
  1372. .col-lg-8 {
  1373. width: 66.66666667%;
  1374. }
  1375. .col-lg-7 {
  1376. width: 58.33333333%;
  1377. }
  1378. .col-lg-6 {
  1379. width: 50%;
  1380. }
  1381. .col-lg-5 {
  1382. width: 41.66666667%;
  1383. }
  1384. .col-lg-4 {
  1385. width: 33.33333333%;
  1386. }
  1387. .col-lg-3 {
  1388. width: 25%;
  1389. }
  1390. .col-lg-2 {
  1391. width: 16.66666667%;
  1392. }
  1393. .col-lg-1 {
  1394. width: 8.33333333%;
  1395. }
  1396. }
  1397. @media screen and (max-width: 840px) {
  1398. .col-md-12,
  1399. .col-md-11,
  1400. .col-md-10,
  1401. .col-md-9,
  1402. .col-md-8,
  1403. .col-md-7,
  1404. .col-md-6,
  1405. .col-md-5,
  1406. .col-md-4,
  1407. .col-md-3,
  1408. .col-md-2,
  1409. .col-md-1 {
  1410. -webkit-flex: none;
  1411. -ms-flex: none;
  1412. flex: none;
  1413. }
  1414. .col-md-12 {
  1415. width: 100%;
  1416. }
  1417. .col-md-11 {
  1418. width: 91.66666667%;
  1419. }
  1420. .col-md-10 {
  1421. width: 83.33333333%;
  1422. }
  1423. .col-md-9 {
  1424. width: 75%;
  1425. }
  1426. .col-md-8 {
  1427. width: 66.66666667%;
  1428. }
  1429. .col-md-7 {
  1430. width: 58.33333333%;
  1431. }
  1432. .col-md-6 {
  1433. width: 50%;
  1434. }
  1435. .col-md-5 {
  1436. width: 41.66666667%;
  1437. }
  1438. .col-md-4 {
  1439. width: 33.33333333%;
  1440. }
  1441. .col-md-3 {
  1442. width: 25%;
  1443. }
  1444. .col-md-2 {
  1445. width: 16.66666667%;
  1446. }
  1447. .col-md-1 {
  1448. width: 8.33333333%;
  1449. }
  1450. }
  1451. @media screen and (max-width: 600px) {
  1452. .col-sm-12,
  1453. .col-sm-11,
  1454. .col-sm-10,
  1455. .col-sm-9,
  1456. .col-sm-8,
  1457. .col-sm-7,
  1458. .col-sm-6,
  1459. .col-sm-5,
  1460. .col-sm-4,
  1461. .col-sm-3,
  1462. .col-sm-2,
  1463. .col-sm-1 {
  1464. -webkit-flex: none;
  1465. -ms-flex: none;
  1466. flex: none;
  1467. }
  1468. .col-sm-12 {
  1469. width: 100%;
  1470. }
  1471. .col-sm-11 {
  1472. width: 91.66666667%;
  1473. }
  1474. .col-sm-10 {
  1475. width: 83.33333333%;
  1476. }
  1477. .col-sm-9 {
  1478. width: 75%;
  1479. }
  1480. .col-sm-8 {
  1481. width: 66.66666667%;
  1482. }
  1483. .col-sm-7 {
  1484. width: 58.33333333%;
  1485. }
  1486. .col-sm-6 {
  1487. width: 50%;
  1488. }
  1489. .col-sm-5 {
  1490. width: 41.66666667%;
  1491. }
  1492. .col-sm-4 {
  1493. width: 33.33333333%;
  1494. }
  1495. .col-sm-3 {
  1496. width: 25%;
  1497. }
  1498. .col-sm-2 {
  1499. width: 16.66666667%;
  1500. }
  1501. .col-sm-1 {
  1502. width: 8.33333333%;
  1503. }
  1504. }
  1505. @media screen and (max-width: 480px) {
  1506. .col-xs-12,
  1507. .col-xs-11,
  1508. .col-xs-10,
  1509. .col-xs-9,
  1510. .col-xs-8,
  1511. .col-xs-7,
  1512. .col-xs-6,
  1513. .col-xs-5,
  1514. .col-xs-4,
  1515. .col-xs-3,
  1516. .col-xs-2,
  1517. .col-xs-1 {
  1518. -webkit-flex: none;
  1519. -ms-flex: none;
  1520. flex: none;
  1521. }
  1522. .col-xs-12 {
  1523. width: 100%;
  1524. }
  1525. .col-xs-11 {
  1526. width: 91.66666667%;
  1527. }
  1528. .col-xs-10 {
  1529. width: 83.33333333%;
  1530. }
  1531. .col-xs-9 {
  1532. width: 75%;
  1533. }
  1534. .col-xs-8 {
  1535. width: 66.66666667%;
  1536. }
  1537. .col-xs-7 {
  1538. width: 58.33333333%;
  1539. }
  1540. .col-xs-6 {
  1541. width: 50%;
  1542. }
  1543. .col-xs-5 {
  1544. width: 41.66666667%;
  1545. }
  1546. .col-xs-4 {
  1547. width: 33.33333333%;
  1548. }
  1549. .col-xs-3 {
  1550. width: 25%;
  1551. }
  1552. .col-xs-2 {
  1553. width: 16.66666667%;
  1554. }
  1555. .col-xs-1 {
  1556. width: 8.33333333%;
  1557. }
  1558. }
  1559. .show-xs,
  1560. .show-sm,
  1561. .show-md,
  1562. .show-lg,
  1563. .show-xl {
  1564. display: none !important;
  1565. }
  1566. @media screen and (max-width: 480px) {
  1567. .hide-xs {
  1568. display: none !important;
  1569. }
  1570. .show-xs {
  1571. display: block !important;
  1572. }
  1573. }
  1574. @media screen and (max-width: 600px) {
  1575. .hide-sm {
  1576. display: none !important;
  1577. }
  1578. .show-sm {
  1579. display: block !important;
  1580. }
  1581. }
  1582. @media screen and (max-width: 840px) {
  1583. .hide-md {
  1584. display: none !important;
  1585. }
  1586. .show-md {
  1587. display: block !important;
  1588. }
  1589. }
  1590. @media screen and (max-width: 960px) {
  1591. .hide-lg {
  1592. display: none !important;
  1593. }
  1594. .show-lg {
  1595. display: block !important;
  1596. }
  1597. }
  1598. @media screen and (max-width: 1280px) {
  1599. .hide-xl {
  1600. display: none !important;
  1601. }
  1602. .show-xl {
  1603. display: block !important;
  1604. }
  1605. }
  1606. .navbar {
  1607. -webkit-align-items: stretch;
  1608. align-items: stretch;
  1609. display: flex;
  1610. display: -ms-flexbox;
  1611. display: -webkit-flex;
  1612. -ms-flex-align: stretch;
  1613. -webkit-flex-wrap: wrap;
  1614. -ms-flex-wrap: wrap;
  1615. flex-wrap: wrap;
  1616. }
  1617. .navbar .navbar-section {
  1618. -webkit-align-items: center;
  1619. align-items: center;
  1620. display: flex;
  1621. display: -ms-flexbox;
  1622. display: -webkit-flex;
  1623. -webkit-flex: 1 0 0;
  1624. -ms-flex: 1 0 0;
  1625. flex: 1 0 0;
  1626. -ms-flex-align: center;
  1627. }
  1628. .navbar .navbar-section:last-of-type {
  1629. -ms-flex-pack: end;
  1630. -webkit-justify-content: flex-end;
  1631. justify-content: flex-end;
  1632. }
  1633. .navbar .navbar-primary {
  1634. -webkit-align-items: center;
  1635. align-items: center;
  1636. display: flex;
  1637. display: -ms-flexbox;
  1638. display: -webkit-flex;
  1639. -webkit-flex: 0 0 auto;
  1640. -ms-flex: 0 0 auto;
  1641. flex: 0 0 auto;
  1642. -ms-flex-align: center;
  1643. }
  1644. .navbar .navbar-brand {
  1645. font-size: 1.6rem;
  1646. font-weight: 500;
  1647. text-decoration: none;
  1648. }
  1649. .panel {
  1650. border: .1rem solid #efefef;
  1651. border-radius: .2rem;
  1652. display: flex;
  1653. display: -ms-flexbox;
  1654. display: -webkit-flex;
  1655. -webkit-flex-direction: column;
  1656. -ms-flex-direction: column;
  1657. flex-direction: column;
  1658. }
  1659. .panel .panel-header,
  1660. .panel .panel-footer {
  1661. -webkit-flex: 0 0 auto;
  1662. -ms-flex: 0 0 auto;
  1663. flex: 0 0 auto;
  1664. padding: 1.5rem;
  1665. }
  1666. .panel .panel-nav {
  1667. -webkit-flex: 0 0 auto;
  1668. -ms-flex: 0 0 auto;
  1669. flex: 0 0 auto;
  1670. }
  1671. .panel .panel-body {
  1672. -webkit-flex: 1 1 auto;
  1673. -ms-flex: 1 1 auto;
  1674. flex: 1 1 auto;
  1675. overflow-y: auto;
  1676. }
  1677. .panel .panel-body {
  1678. padding: 0 1.5rem;
  1679. }
  1680. .panel .panel-title {
  1681. font-size: 2rem;
  1682. line-height: 1.4;
  1683. }
  1684. .empty {
  1685. background: #f8f8f8;
  1686. border-radius: .2rem;
  1687. color: #666;
  1688. padding: 4rem;
  1689. text-align: center;
  1690. }
  1691. .empty .empty-title,
  1692. .empty .empty-meta {
  1693. margin: 1rem auto;
  1694. }
  1695. .empty .empty-meta {
  1696. color: #999;
  1697. }
  1698. .empty .empty-action {
  1699. margin-top: 1.5rem;
  1700. }
  1701. .form-autocomplete {
  1702. position: relative;
  1703. }
  1704. .form-autocomplete .form-autocomplete-input {
  1705. -webkit-align-content: flex-start;
  1706. align-content: flex-start;
  1707. display: flex;
  1708. display: -ms-flexbox;
  1709. display: -webkit-flex;
  1710. -ms-flex-line-pack: start;
  1711. -webkit-flex-wrap: wrap;
  1712. -ms-flex-wrap: wrap;
  1713. flex-wrap: wrap;
  1714. height: auto;
  1715. min-height: 3.6rem;
  1716. padding: .1rem 0 .1rem .2rem;
  1717. }
  1718. .form-autocomplete .form-autocomplete-input.is-focused {
  1719. border-color: #5764c6;
  1720. box-shadow: 0 0 0 .2rem rgba(87, 100, 198, .15);
  1721. }
  1722. .form-autocomplete .form-autocomplete-input .form-input {
  1723. border-color: transparent;
  1724. box-shadow: none;
  1725. display: inline-block;
  1726. -webkit-flex: 1 0 auto;
  1727. -ms-flex: 1 0 auto;
  1728. flex: 1 0 auto;
  1729. padding: .3rem;
  1730. width: auto;
  1731. }
  1732. .form-autocomplete mark {
  1733. font-size: 1;
  1734. padding: .1em 0;
  1735. }
  1736. .form-autocomplete .menu {
  1737. left: 0;
  1738. position: absolute;
  1739. top: 100%;
  1740. width: 100%;
  1741. }
  1742. .avatar {
  1743. background: #5764c6;
  1744. border-radius: 50%;
  1745. color: rgba(255, 255, 255, .75);
  1746. display: inline-block;
  1747. font-size: 1.4rem;
  1748. font-weight: 300;
  1749. height: 3.2rem;
  1750. line-height: 1;
  1751. margin: 0;
  1752. position: relative;
  1753. vertical-align: middle;
  1754. width: 3.2rem;
  1755. }
  1756. .avatar.avatar-xs {
  1757. font-size: 1.4rem;
  1758. height: 1.6rem;
  1759. width: 1.6rem;
  1760. }
  1761. .avatar.avatar-sm {
  1762. font-size: 1rem;
  1763. height: 2.4rem;
  1764. width: 2.4rem;
  1765. }
  1766. .avatar.avatar-lg {
  1767. font-size: 2rem;
  1768. height: 4.8rem;
  1769. width: 4.8rem;
  1770. }
  1771. .avatar.avatar-xl {
  1772. font-size: 2.6rem;
  1773. height: 6.4rem;
  1774. width: 6.4rem;
  1775. }
  1776. .avatar img {
  1777. border-radius: 50%;
  1778. height: 100%;
  1779. position: relative;
  1780. width: 100%;
  1781. z-index: 99;
  1782. }
  1783. .avatar .avatar-icon {
  1784. background: #fff;
  1785. bottom: -.2em;
  1786. height: 50%;
  1787. padding: 5%;
  1788. position: absolute;
  1789. right: -.2em;
  1790. width: 50%;
  1791. }
  1792. .avatar[data-initial]::before {
  1793. color: currentColor;
  1794. content: attr(data-initial);
  1795. left: 50%;
  1796. position: absolute;
  1797. top: 50%;
  1798. -webkit-transform: translate(-50%, -50%);
  1799. -ms-transform: translate(-50%, -50%);
  1800. transform: translate(-50%, -50%);
  1801. vertical-align: middle;
  1802. z-index: 1;
  1803. }
  1804. .avatar.avatar-xs[data-initial]::before {
  1805. -webkit-transform: translate(-50%, -50%) scale(.5);
  1806. -ms-transform: translate(-50%, -50%) scale(.5);
  1807. transform: translate(-50%, -50%) scale(.5);
  1808. }
  1809. .badge {
  1810. display: inline-block;
  1811. position: relative;
  1812. }
  1813. .badge[data-badge]::after,
  1814. .badge:not([data-badge])::after {
  1815. background: #5764c6;
  1816. background-clip: padding-box;
  1817. border: .1rem solid #fff;
  1818. border-radius: 1rem;
  1819. color: #fff;
  1820. content: attr(data-badge);
  1821. display: inline-block;
  1822. -webkit-transform: translate(-.4rem, -1rem);
  1823. -ms-transform: translate(-.4rem, -1rem);
  1824. transform: translate(-.4rem, -1rem);
  1825. }
  1826. .badge[data-badge]::after {
  1827. font-size: 1.2rem;
  1828. height: 2rem;
  1829. line-height: 1.4rem;
  1830. min-width: 2rem;
  1831. padding: .2rem .5rem;
  1832. text-align: center;
  1833. white-space: nowrap;
  1834. }
  1835. .badge:not([data-badge])::after,
  1836. .badge[data-badge=""]::after {
  1837. height: .8rem;
  1838. min-width: .8rem;
  1839. padding: 0;
  1840. width: .8rem;
  1841. }
  1842. .badge.btn::after {
  1843. position: absolute;
  1844. right: 0;
  1845. top: 0;
  1846. -webkit-transform: translate(50%, -50%);
  1847. -ms-transform: translate(50%, -50%);
  1848. transform: translate(50%, -50%);
  1849. }
  1850. .bar {
  1851. background: #efefef;
  1852. border-radius: .2rem;
  1853. display: flex;
  1854. display: -ms-flexbox;
  1855. display: -webkit-flex;
  1856. -webkit-flex-wrap: nowrap;
  1857. -ms-flex-wrap: nowrap;
  1858. flex-wrap: nowrap;
  1859. height: 1.6rem;
  1860. width: 100%;
  1861. }
  1862. .bar.bar-sm {
  1863. height: .4rem;
  1864. }
  1865. .bar .bar-item {
  1866. background: #5764c6;
  1867. color: #fff;
  1868. display: block;
  1869. -ms-flex-negative: 0;
  1870. -webkit-flex-shrink: 0;
  1871. flex-shrink: 0;
  1872. font-size: 1.2rem;
  1873. height: 100%;
  1874. line-height: 1;
  1875. padding: .2rem 0;
  1876. text-align: center;
  1877. width: 0;
  1878. }
  1879. .bar .bar-item:first-of-type {
  1880. border-bottom-left-radius: .2rem;
  1881. border-top-left-radius: .2rem;
  1882. }
  1883. .bar .bar-item:last-of-type {
  1884. border-bottom-right-radius: .2rem;
  1885. border-top-right-radius: .2rem;
  1886. -ms-flex-negative: 1;
  1887. -webkit-flex-shrink: 1;
  1888. flex-shrink: 1;
  1889. }
  1890. .card {
  1891. background: #fff;
  1892. border: .1rem solid #efefef;
  1893. border-radius: .2rem;
  1894. display: block;
  1895. margin: 0;
  1896. padding: 0;
  1897. text-align: left;
  1898. }
  1899. .card .card-header,
  1900. .card .card-body,
  1901. .card .card-footer {
  1902. padding: 1.5rem 1.5rem 0 1.5rem;
  1903. }
  1904. .card .card-header:last-child,
  1905. .card .card-body:last-child,
  1906. .card .card-footer:last-child {
  1907. padding-bottom: 1.5rem;
  1908. }
  1909. .card .card-image {
  1910. padding-top: 1.5rem;
  1911. }
  1912. .card .card-image:first-child {
  1913. padding-top: 0;
  1914. }
  1915. .card .card-image:first-child img {
  1916. border-top-left-radius: .2rem;
  1917. border-top-right-radius: .2rem;
  1918. }
  1919. .card .card-image:last-child img {
  1920. border-bottom-left-radius: .2rem;
  1921. border-bottom-right-radius: .2rem;
  1922. }
  1923. .card .card-title {
  1924. font-size: 2rem;
  1925. line-height: 1.4;
  1926. }
  1927. .card .card-meta {
  1928. color: #999;
  1929. font-size: 1.3rem;
  1930. }
  1931. .chip {
  1932. -webkit-align-items: center;
  1933. align-items: center;
  1934. background: #efefef;
  1935. border-radius: .2rem;
  1936. color: #666;
  1937. display: -ms-inline-flexbox;
  1938. display: inline-flex;
  1939. display: -webkit-inline-flex;
  1940. -ms-flex-align: center;
  1941. height: 3rem;
  1942. margin: .1rem .2rem .1rem 0;
  1943. max-width: 100%;
  1944. padding: .3rem .8rem;
  1945. text-decoration: none;
  1946. vertical-align: middle;
  1947. }
  1948. .chip.active {
  1949. background: #5764c6;
  1950. color: #fff;
  1951. }
  1952. .chip .avatar {
  1953. margin-left: -.4rem;
  1954. margin-right: .4rem;
  1955. }
  1956. .dropdown {
  1957. display: inline-block;
  1958. position: relative;
  1959. }
  1960. .dropdown .menu {
  1961. -webkit-animation: slide-down .2s 1;
  1962. animation: slide-down .2s 1;
  1963. display: none;
  1964. left: 0;
  1965. position: absolute;
  1966. top: 100%;
  1967. }
  1968. .dropdown.dropdown-right .menu {
  1969. left: auto;
  1970. right: 0;
  1971. }
  1972. .dropdown.active .menu,
  1973. .dropdown .dropdown-toggle:focus + .menu,
  1974. .dropdown .menu:hover {
  1975. display: block;
  1976. }
  1977. .menu {
  1978. background: #fff;
  1979. border-radius: .2rem;
  1980. box-shadow: 0 .1rem .4rem rgba(0, 0, 0, .3);
  1981. list-style: none;
  1982. margin: 0;
  1983. min-width: 18rem;
  1984. padding: .8rem;
  1985. text-align: left;
  1986. -webkit-transform: translateY(.5rem);
  1987. -ms-transform: translateY(.5rem);
  1988. transform: translateY(.5rem);
  1989. z-index: 999;
  1990. }
  1991. .menu .menu-item {
  1992. border-radius: .2rem;
  1993. margin-top: 0;
  1994. padding: 0 .8rem;
  1995. text-decoration: none;
  1996. -webkit-user-select: none;
  1997. -moz-user-select: none;
  1998. -ms-user-select: none;
  1999. user-select: none;
  2000. }
  2001. .menu .menu-item > a {
  2002. border-radius: .2rem;
  2003. color: inherit;
  2004. display: block;
  2005. line-height: 2.4rem;
  2006. margin: 0 -.8rem;
  2007. padding: .4rem .8rem;
  2008. text-decoration: none;
  2009. }
  2010. .menu .menu-item > a:focus,
  2011. .menu .menu-item > a:hover {
  2012. color: #5764c6;
  2013. }
  2014. .menu .menu-item > a:active,
  2015. .menu .menu-item > a.active {
  2016. background: #f7f8fc;
  2017. color: #5764c6;
  2018. }
  2019. .menu .menu-header {
  2020. color: #ccc;
  2021. font-size: 1.2rem;
  2022. line-height: 2rem;
  2023. margin-top: 0;
  2024. padding: .2rem 0;
  2025. position: relative;
  2026. }
  2027. .menu .menu-header::after {
  2028. border-bottom: .1rem solid #efefef;
  2029. content: "";
  2030. display: block;
  2031. height: .1rem;
  2032. position: absolute;
  2033. top: 50%;
  2034. width: 100%;
  2035. }
  2036. .menu .menu-header .menu-header-text {
  2037. background: #fff;
  2038. display: inline-block;
  2039. padding: 0 .8rem;
  2040. position: relative;
  2041. z-index: 99;
  2042. }
  2043. .menu .menu-badge {
  2044. float: right;
  2045. padding: .4rem 0;
  2046. }
  2047. .menu .menu-badge .label {
  2048. margin: .2rem 0;
  2049. }
  2050. .modal {
  2051. -webkit-align-items: center;
  2052. align-items: center;
  2053. bottom: 0;
  2054. display: none;
  2055. -ms-flex-align: center;
  2056. -ms-flex-pack: center;
  2057. -webkit-justify-content: center;
  2058. justify-content: center;
  2059. left: 0;
  2060. opacity: 0;
  2061. overflow: hidden;
  2062. padding: 1rem;
  2063. position: fixed;
  2064. right: 0;
  2065. top: 0;
  2066. }
  2067. .modal:target,
  2068. .modal.active {
  2069. display: flex;
  2070. display: -ms-flexbox;
  2071. display: -webkit-flex;
  2072. opacity: 1;
  2073. z-index: 1988;
  2074. }
  2075. .modal:target .modal-overlay,
  2076. .modal.active .modal-overlay {
  2077. background: rgba(51, 51, 51, .5);
  2078. bottom: 0;
  2079. display: block;
  2080. left: 0;
  2081. position: absolute;
  2082. right: 0;
  2083. top: 0;
  2084. }
  2085. .modal:target .modal-container,
  2086. .modal.active .modal-container {
  2087. -webkit-animation: slide-down .2s;
  2088. animation: slide-down .2s;
  2089. max-width: 64rem;
  2090. }
  2091. .modal.modal-sm .modal-container {
  2092. max-width: 32rem;
  2093. }
  2094. .modal-container {
  2095. background: #fff;
  2096. border-radius: .2rem;
  2097. box-shadow: 0 .1rem .4rem rgba(0, 0, 0, .3);
  2098. display: block;
  2099. margin: 0 auto;
  2100. padding: 0;
  2101. text-align: left;
  2102. z-index: 1988;
  2103. }
  2104. .modal-container .modal-header {
  2105. padding: 1.5rem;
  2106. }
  2107. .modal-container .modal-header .modal-title {
  2108. font-size: 1.6rem;
  2109. margin: 0;
  2110. }
  2111. .modal-container .modal-body {
  2112. max-height: 50vh;
  2113. overflow-y: auto;
  2114. padding: 1.5rem;
  2115. position: relative;
  2116. }
  2117. .modal-container .modal-footer {
  2118. padding: 1.5rem;
  2119. text-align: right;
  2120. }
  2121. .breadcrumb,
  2122. .tab,
  2123. .pagination,
  2124. .nav {
  2125. list-style: none;
  2126. margin: .5rem 0;
  2127. }
  2128. .breadcrumb {
  2129. padding: 1.2rem;
  2130. }
  2131. .breadcrumb .breadcrumb-item {
  2132. display: inline-block;
  2133. margin: 0;
  2134. }
  2135. .breadcrumb .breadcrumb-item:last-child {
  2136. color: #999;
  2137. }
  2138. .breadcrumb .breadcrumb-item:not(:first-child)::before {
  2139. color: #ccc;
  2140. content: "/";
  2141. padding: 0 .4rem;
  2142. }
  2143. .tab {
  2144. -webkit-align-items: center;
  2145. align-items: center;
  2146. border-bottom: .1rem solid #efefef;
  2147. display: flex;
  2148. display: -ms-flexbox;
  2149. display: -webkit-flex;
  2150. -ms-flex-align: center;
  2151. -webkit-flex-wrap: wrap;
  2152. -ms-flex-wrap: wrap;
  2153. flex-wrap: wrap;
  2154. }
  2155. .tab .tab-item {
  2156. margin-top: 0;
  2157. }
  2158. .tab .tab-item.tab-action {
  2159. -webkit-flex: 1 0 auto;
  2160. -ms-flex: 1 0 auto;
  2161. flex: 1 0 auto;
  2162. text-align: right;
  2163. }
  2164. .tab .tab-item a {
  2165. border-bottom: .2rem solid transparent;
  2166. color: inherit;
  2167. display: block;
  2168. margin-bottom: -.1rem;
  2169. margin-top: 0;
  2170. padding: .6rem 1.2rem;
  2171. text-decoration: none;
  2172. }
  2173. .tab .tab-item a:focus,
  2174. .tab .tab-item a:hover {
  2175. color: #5764c6;
  2176. }
  2177. .tab .tab-item.active a,
  2178. .tab .tab-item a.active {
  2179. border-bottom-color: #5764c6;
  2180. color: #5764c6;
  2181. }
  2182. .tab.tab-block .tab-item {
  2183. -webkit-flex: 1 0 auto;
  2184. -ms-flex: 1 0 auto;
  2185. flex: 1 0 auto;
  2186. text-align: center;
  2187. }
  2188. .tab.tab-block .tab-item .badge[data-badge]::after {
  2189. position: absolute;
  2190. right: -.4rem;
  2191. top: -.4rem;
  2192. -webkit-transform: translate(0, 0);
  2193. -ms-transform: translate(0, 0);
  2194. transform: translate(0, 0);
  2195. }
  2196. .tab:not(.tab-block) .badge {
  2197. padding-right: 0;
  2198. }
  2199. .pagination {
  2200. display: flex;
  2201. display: -ms-flexbox;
  2202. display: -webkit-flex;
  2203. }
  2204. .pagination .page-item {
  2205. margin: 1rem .1rem;
  2206. }
  2207. .pagination .page-item span {
  2208. display: inline-block;
  2209. padding: .6rem .4rem;
  2210. }
  2211. .pagination .page-item a {
  2212. border-radius: .2rem;
  2213. color: #666;
  2214. display: inline-block;
  2215. padding: .6rem .8rem;
  2216. text-decoration: none;
  2217. }
  2218. .pagination .page-item a:focus,
  2219. .pagination .page-item a:hover {
  2220. color: #5764c6;
  2221. }
  2222. .pagination .page-item a[disabled],
  2223. .pagination .page-item a.disabled {
  2224. cursor: default;
  2225. opacity: .5;
  2226. pointer-events: none;
  2227. }
  2228. .pagination .page-item.active a {
  2229. background: #5764c6;
  2230. color: #fff;
  2231. }
  2232. .pagination .page-item.page-prev,
  2233. .pagination .page-item.page-next {
  2234. -webkit-flex: 1 0 50%;
  2235. -ms-flex: 1 0 50%;
  2236. flex: 1 0 50%;
  2237. }
  2238. .pagination .page-item.page-next {
  2239. text-align: right;
  2240. }
  2241. .pagination .page-item .page-item-title {
  2242. margin: 0;
  2243. }
  2244. .pagination .page-item .page-item-meta {
  2245. margin: 0;
  2246. opacity: .5;
  2247. }
  2248. .nav {
  2249. display: flex;
  2250. display: -ms-flexbox;
  2251. display: -webkit-flex;
  2252. -webkit-flex-direction: column;
  2253. -ms-flex-direction: column;
  2254. flex-direction: column;
  2255. }
  2256. .nav .nav-item a {
  2257. color: #666;
  2258. padding: .6rem .8rem;
  2259. text-decoration: none;
  2260. }
  2261. .nav .nav-item a:focus,
  2262. .nav .nav-item a:hover {
  2263. color: #5764c6;
  2264. }
  2265. .nav .nav-item.active > a {
  2266. color: #666;
  2267. font-weight: bold;
  2268. }
  2269. .nav .nav-item.active > a:focus,
  2270. .nav .nav-item.active > a:hover {
  2271. color: #5764c6;
  2272. }
  2273. .nav .nav {
  2274. margin-bottom: 1rem;
  2275. margin-left: 2rem;
  2276. }
  2277. .nav .nav a {
  2278. color: #999;
  2279. }
  2280. .step {
  2281. display: flex;
  2282. display: -ms-flexbox;
  2283. display: -webkit-flex;
  2284. -webkit-flex-wrap: nowrap;
  2285. -ms-flex-wrap: nowrap;
  2286. flex-wrap: nowrap;
  2287. list-style: none;
  2288. margin: .5rem 0;
  2289. width: 100%;
  2290. }
  2291. .step .step-item {
  2292. -webkit-flex: 1 1 0;
  2293. -ms-flex: 1 1 0;
  2294. flex: 1 1 0;
  2295. margin-top: 0;
  2296. min-height: 2rem;
  2297. position: relative;
  2298. text-align: center;
  2299. }
  2300. .step .step-item:not(:first-child)::before {
  2301. background: #5764c6;
  2302. content: "";
  2303. height: .2rem;
  2304. left: -50%;
  2305. position: absolute;
  2306. top: .9rem;
  2307. width: 100%;
  2308. }
  2309. .step .step-item a {
  2310. color: #999;
  2311. display: inline-block;
  2312. padding: 2rem 1rem 0;
  2313. text-decoration: none;
  2314. }
  2315. .step .step-item a::before {
  2316. background: #5764c6;
  2317. border: .2rem solid #fff;
  2318. border-radius: 50%;
  2319. content: "";
  2320. display: block;
  2321. height: 1.2rem;
  2322. left: 50%;
  2323. position: absolute;
  2324. top: .4rem;
  2325. -webkit-transform: translateX(-50%);
  2326. -ms-transform: translateX(-50%);
  2327. transform: translateX(-50%);
  2328. width: 1.2rem;
  2329. z-index: 99;
  2330. }
  2331. .step .step-item.active a::before {
  2332. background: #fff;
  2333. border: .2rem solid #5764c6;
  2334. }
  2335. .step .step-item.active ~ .step-item::before {
  2336. background: #efefef;
  2337. }
  2338. .step .step-item.active ~ .step-item a::before {
  2339. background: #ccc;
  2340. }
  2341. .tile {
  2342. -webkit-align-content: space-between;
  2343. align-content: space-between;
  2344. -webkit-align-items: flex-start;
  2345. align-items: flex-start;
  2346. display: flex;
  2347. display: -ms-flexbox;
  2348. display: -webkit-flex;
  2349. -ms-flex-align: start;
  2350. -ms-flex-line-pack: justify;
  2351. margin: .5rem 0;
  2352. padding: .5rem 0;
  2353. }
  2354. .tile .tile-icon,
  2355. .tile .tile-action {
  2356. -webkit-flex: 0 0 auto;
  2357. -ms-flex: 0 0 auto;
  2358. flex: 0 0 auto;
  2359. }
  2360. .tile .tile-content {
  2361. -webkit-flex: 1 1 auto;
  2362. -ms-flex: 1 1 auto;
  2363. flex: 1 1 auto;
  2364. }
  2365. .tile .tile-content:not(:first-child) {
  2366. padding-left: 1rem;
  2367. }
  2368. .tile .tile-content:not(:last-child) {
  2369. padding-right: 1rem;
  2370. }
  2371. .tile .tile-title {
  2372. font-weight: 500;
  2373. }
  2374. .tile .tile-meta {
  2375. color: #999;
  2376. line-height: 2rem;
  2377. }
  2378. .tile.tile-centered {
  2379. -webkit-align-items: center;
  2380. align-items: center;
  2381. -ms-flex-align: center;
  2382. }
  2383. .tile.tile-centered .tile-content {
  2384. overflow: hidden;
  2385. }
  2386. .tile.tile-centered .tile-title,
  2387. .tile.tile-centered .tile-meta {
  2388. overflow: hidden;
  2389. text-overflow: ellipsis;
  2390. white-space: nowrap;
  2391. }
  2392. .toast {
  2393. background: rgba(51, 51, 51, .9);
  2394. border: .1rem solid #333;
  2395. border-color: #333;
  2396. border-radius: .2rem;
  2397. color: #fff;
  2398. display: block;
  2399. padding: 1.4rem;
  2400. width: 100%;
  2401. }
  2402. .toast.toast-primary {
  2403. background: rgba(87, 100, 198, .9);
  2404. border-color: #5764c6;
  2405. }
  2406. .toast.toast-success {
  2407. background: rgba(50, 182, 67, .9);
  2408. border-color: #32b643;
  2409. }
  2410. .toast.toast-danger {
  2411. background: rgba(232, 86, 0, .9);
  2412. border-color: #e85600;
  2413. }
  2414. .toast a {
  2415. color: #fff;
  2416. text-decoration: underline;
  2417. }
  2418. .toast a:hover,
  2419. .toast a:focus,
  2420. .toast a:active {
  2421. opacity: .75;
  2422. }
  2423. .tooltip {
  2424. position: relative;
  2425. }
  2426. .tooltip::after {
  2427. background: rgba(51, 51, 51, .9);
  2428. border-radius: .2rem;
  2429. bottom: 100%;
  2430. color: #fff;
  2431. content: attr(data-tooltip);
  2432. display: block;
  2433. font-size: 1.2rem;
  2434. left: 50%;
  2435. line-height: 1.6rem;
  2436. max-width: 32rem;
  2437. opacity: 0;
  2438. overflow: hidden;
  2439. padding: .6rem 1rem;
  2440. pointer-events: none;
  2441. position: absolute;
  2442. text-overflow: ellipsis;
  2443. -webkit-transform: translate(-50%, 0);
  2444. -ms-transform: translate(-50%, 0);
  2445. transform: translate(-50%, 0);
  2446. transition: transform .2s ease, -webkit-transform .2s ease;
  2447. transition: transform .2s ease;
  2448. transition: -webkit-transform .2s ease;
  2449. white-space: nowrap;
  2450. z-index: 999;
  2451. }
  2452. .tooltip:focus::after,
  2453. .tooltip:hover::after {
  2454. opacity: 1;
  2455. -webkit-transform: translate(-50%, -.5rem);
  2456. -ms-transform: translate(-50%, -.5rem);
  2457. transform: translate(-50%, -.5rem);
  2458. }
  2459. .tooltip[disabled],
  2460. .tooltip.disabled {
  2461. pointer-events: auto;
  2462. }
  2463. .tooltip.tooltip-right::after {
  2464. bottom: 50%;
  2465. left: 100%;
  2466. -webkit-transform: translate(0, 50%);
  2467. -ms-transform: translate(0, 50%);
  2468. transform: translate(0, 50%);
  2469. }
  2470. .tooltip.tooltip-right:focus::after,
  2471. .tooltip.tooltip-right:hover::after {
  2472. -webkit-transform: translate(.5rem, 50%);
  2473. -ms-transform: translate(.5rem, 50%);
  2474. transform: translate(.5rem, 50%);
  2475. }
  2476. .tooltip.tooltip-bottom::after {
  2477. bottom: auto;
  2478. top: 100%;
  2479. -webkit-transform: translate(-50%, 0);
  2480. -ms-transform: translate(-50%, 0);
  2481. transform: translate(-50%, 0);
  2482. }
  2483. .tooltip.tooltip-bottom:focus::after,
  2484. .tooltip.tooltip-bottom:hover::after {
  2485. -webkit-transform: translate(-50%, .5rem);
  2486. -ms-transform: translate(-50%, .5rem);
  2487. transform: translate(-50%, .5rem);
  2488. }
  2489. .tooltip.tooltip-left::after {
  2490. bottom: 50%;
  2491. left: auto;
  2492. right: 100%;
  2493. -webkit-transform: translate(0, 50%);
  2494. -ms-transform: translate(0, 50%);
  2495. transform: translate(0, 50%);
  2496. }
  2497. .tooltip.tooltip-left:focus::after,
  2498. .tooltip.tooltip-left:hover::after {
  2499. -webkit-transform: translate(-.5rem, 50%);
  2500. -ms-transform: translate(-.5rem, 50%);
  2501. transform: translate(-.5rem, 50%);
  2502. }
  2503. @-webkit-keyframes loading {
  2504. 0% {
  2505. -webkit-transform: rotate(0deg);
  2506. transform: rotate(0deg);
  2507. }
  2508. 100% {
  2509. -webkit-transform: rotate(360deg);
  2510. transform: rotate(360deg);
  2511. }
  2512. }
  2513. @keyframes loading {
  2514. 0% {
  2515. -webkit-transform: rotate(0deg);
  2516. transform: rotate(0deg);
  2517. }
  2518. 100% {
  2519. -webkit-transform: rotate(360deg);
  2520. transform: rotate(360deg);
  2521. }
  2522. }
  2523. @-webkit-keyframes slide-down {
  2524. 0% {
  2525. opacity: 0;
  2526. -webkit-transform: translateY(-3rem);
  2527. transform: translateY(-3rem);
  2528. }
  2529. 100% {
  2530. opacity: 1;
  2531. -webkit-transform: translateY(0);
  2532. transform: translateY(0);
  2533. }
  2534. }
  2535. @keyframes slide-down {
  2536. 0% {
  2537. opacity: 0;
  2538. -webkit-transform: translateY(-3rem);
  2539. transform: translateY(-3rem);
  2540. }
  2541. 100% {
  2542. opacity: 1;
  2543. -webkit-transform: translateY(0);
  2544. transform: translateY(0);
  2545. }
  2546. }
  2547. .divider {
  2548. border-bottom: .1rem solid #efefef;
  2549. display: block;
  2550. margin: .8rem 0;
  2551. }
  2552. .loading {
  2553. color: transparent !important;
  2554. min-height: 1.6rem;
  2555. pointer-events: none;
  2556. position: relative;
  2557. }
  2558. .loading::after {
  2559. -webkit-animation: loading 500ms infinite linear;
  2560. animation: loading 500ms infinite linear;
  2561. border: .2rem solid #5764c6;
  2562. border-radius: .8rem;
  2563. border-right-color: transparent;
  2564. border-top-color: transparent;
  2565. content: "";
  2566. display: block;
  2567. height: 1.6rem;
  2568. left: 50%;
  2569. margin-left: -.8rem;
  2570. margin-top: -.8rem;
  2571. position: absolute;
  2572. top: 50%;
  2573. width: 1.6rem;
  2574. }
  2575. .clearfix::after,
  2576. .container::after {
  2577. clear: both;
  2578. content: "";
  2579. display: table;
  2580. }
  2581. .float-left {
  2582. float: left !important;
  2583. }
  2584. .float-right {
  2585. float: right !important;
  2586. }
  2587. .rel {
  2588. position: relative;
  2589. }
  2590. .abs {
  2591. position: absolute;
  2592. }
  2593. .fixed {
  2594. position: fixed;
  2595. }
  2596. .centered {
  2597. display: block;
  2598. float: none;
  2599. margin-left: auto;
  2600. margin-right: auto;
  2601. }
  2602. .mt-10 {
  2603. margin-top: 1rem;
  2604. }
  2605. .mr-10 {
  2606. margin-right: 1rem;
  2607. }
  2608. .mb-10 {
  2609. margin-bottom: 1rem;
  2610. }
  2611. .ml-10 {
  2612. margin-left: 1rem;
  2613. }
  2614. .mt-5 {
  2615. margin-top: .5rem;
  2616. }
  2617. .mr-5 {
  2618. margin-right: .5rem;
  2619. }
  2620. .mb-5 {
  2621. margin-bottom: .5rem;
  2622. }
  2623. .ml-5 {
  2624. margin-left: .5rem;
  2625. }
  2626. .pt-10 {
  2627. padding-top: 1rem;
  2628. }
  2629. .pr-10 {
  2630. padding-right: 1rem;
  2631. }
  2632. .pb-10 {
  2633. padding-bottom: 1rem;
  2634. }
  2635. .pl-10 {
  2636. padding-left: 1rem;
  2637. }
  2638. .pt-5 {
  2639. padding-top: .5rem;
  2640. }
  2641. .pr-5 {
  2642. padding-right: .5rem;
  2643. }
  2644. .pb-5 {
  2645. padding-bottom: .5rem;
  2646. }
  2647. .pl-5 {
  2648. padding-left: .5rem;
  2649. }
  2650. .block {
  2651. display: block;
  2652. }
  2653. .inline {
  2654. display: inline;
  2655. }
  2656. .inline-block {
  2657. display: inline-block;
  2658. }
  2659. .flex {
  2660. display: flex;
  2661. display: -ms-flexbox;
  2662. display: -webkit-flex;
  2663. }
  2664. .inline-flex {
  2665. display: inline-flex;
  2666. display: -ms-inline-flexbox;
  2667. display: -webkit-inline-flex;
  2668. }
  2669. .hide {
  2670. display: none !important;
  2671. }
  2672. .visible {
  2673. visibility: visible;
  2674. }
  2675. .invisible {
  2676. visibility: hidden;
  2677. }
  2678. .text-hide {
  2679. background: transparent;
  2680. border: 0;
  2681. color: transparent;
  2682. font-size: 0;
  2683. line-height: 0;
  2684. text-shadow: none;
  2685. }
  2686. .text-assistive {
  2687. border: 0;
  2688. clip: rect(0, 0, 0, 0);
  2689. height: .1rem;
  2690. margin: -.1rem;
  2691. overflow: hidden;
  2692. padding: 0;
  2693. position: absolute;
  2694. width: .1rem;
  2695. }
  2696. .text-left {
  2697. text-align: left;
  2698. }
  2699. .text-right {
  2700. text-align: right;
  2701. }
  2702. .text-center {
  2703. text-align: center;
  2704. }
  2705. .text-justify {
  2706. text-align: justify;
  2707. }
  2708. .text-lowercase {
  2709. text-transform: lowercase;
  2710. }
  2711. .text-uppercase {
  2712. text-transform: uppercase;
  2713. }
  2714. .text-capitalize {
  2715. text-transform: capitalize;
  2716. }
  2717. .text-normal {
  2718. font-weight: normal;
  2719. }
  2720. .text-bold {
  2721. font-weight: bold;
  2722. }
  2723. .text-italic {
  2724. font-style: italic;
  2725. }
  2726. .text-large {
  2727. font-size: 1.2em;
  2728. }
  2729. .text-ellipsis {
  2730. overflow: hidden;
  2731. text-overflow: ellipsis;
  2732. white-space: nowrap;
  2733. }
  2734. .text-clip {
  2735. overflow: hidden;
  2736. text-overflow: clip;
  2737. white-space: nowrap;
  2738. }
  2739. .text-break {
  2740. -webkit-hyphens: auto;
  2741. -ms-hyphens: auto;
  2742. hyphens: auto;
  2743. word-break: break-word;
  2744. word-wrap: break-word;
  2745. }
  2746. .hand {
  2747. cursor: pointer;
  2748. }
  2749. .shadow {
  2750. box-shadow: 0 .1rem .4rem rgba(0, 0, 0, .3);
  2751. }
  2752. .light-shadow {
  2753. box-shadow: 0 .1rem .2rem rgba(0, 0, 0, .15);
  2754. }
  2755. .rounded {
  2756. border-radius: .2rem;
  2757. }
  2758. .circle {
  2759. border-radius: 50%;
  2760. }