spectre.css 72 KB

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