2
0

website.css 127 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676
  1. :root {
  2. --blue: #007bff;
  3. --indigo: #6610f2;
  4. --purple: #6f42c1;
  5. --pink: #e83e8c;
  6. --red: #dc3545;
  7. --orange: #fd7e14;
  8. --yellow: #ffc107;
  9. --green: #28a745;
  10. --teal: #20c997;
  11. --cyan: #17a2b8;
  12. --white: #fff;
  13. --gray: #6c757d;
  14. --gray-dark: #343a40;
  15. --primary: #007bff;
  16. --secondary: #6c757d;
  17. --success: #28a745;
  18. --info: #17a2b8;
  19. --warning: #ffc107;
  20. --danger: #dc3545;
  21. --light: #f8f9fa;
  22. --dark: #343a40;
  23. --breakpoint-xs: 0;
  24. --breakpoint-sm: 576px;
  25. --breakpoint-md: 768px;
  26. --breakpoint-lg: 992px;
  27. --breakpoint-xl: 1200px;
  28. --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  29. --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }
  30. *,
  31. *::before,
  32. *::after {
  33. box-sizing: border-box; }
  34. html {
  35. font-family: sans-serif;
  36. line-height: 1.15;
  37. -webkit-text-size-adjust: 100%;
  38. -ms-text-size-adjust: 100%;
  39. -ms-overflow-style: scrollbar;
  40. -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  41. @-ms-viewport {
  42. width: device-width; }
  43. article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
  44. display: block; }
  45. body {
  46. margin: 0;
  47. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  48. font-size: 1rem;
  49. font-weight: 400;
  50. line-height: 1.5;
  51. color: #212529;
  52. text-align: left;
  53. background-color: #fff; }
  54. [tabindex="-1"]:focus {
  55. outline: 0 !important; }
  56. hr {
  57. box-sizing: content-box;
  58. height: 0;
  59. overflow: visible; }
  60. h1, h2, h3, h4, h5, h6 {
  61. margin-top: 0;
  62. margin-bottom: 0.5rem; }
  63. p {
  64. margin-top: 0;
  65. margin-bottom: 1rem; }
  66. abbr[title],
  67. abbr[data-original-title] {
  68. text-decoration: underline;
  69. text-decoration: underline dotted;
  70. cursor: help;
  71. border-bottom: 0; }
  72. address {
  73. margin-bottom: 1rem;
  74. font-style: normal;
  75. line-height: inherit; }
  76. ol,
  77. ul,
  78. dl {
  79. margin-top: 0;
  80. margin-bottom: 1rem; }
  81. ol ol,
  82. ul ul,
  83. ol ul,
  84. ul ol {
  85. margin-bottom: 0; }
  86. dt {
  87. font-weight: 700; }
  88. dd {
  89. margin-bottom: .5rem;
  90. margin-left: 0; }
  91. blockquote {
  92. margin: 0 0 1rem; }
  93. dfn {
  94. font-style: italic; }
  95. b,
  96. strong {
  97. font-weight: bolder; }
  98. small {
  99. font-size: 80%; }
  100. sub,
  101. sup {
  102. position: relative;
  103. font-size: 75%;
  104. line-height: 0;
  105. vertical-align: baseline; }
  106. sub {
  107. bottom: -.25em; }
  108. sup {
  109. top: -.5em; }
  110. a {
  111. color: #007bff;
  112. text-decoration: none;
  113. background-color: transparent;
  114. -webkit-text-decoration-skip: objects; }
  115. a:hover {
  116. color: #0056b3;
  117. text-decoration: underline; }
  118. a:not([href]):not([tabindex]) {
  119. color: inherit;
  120. text-decoration: none; }
  121. a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  122. color: inherit;
  123. text-decoration: none; }
  124. a:not([href]):not([tabindex]):focus {
  125. outline: 0; }
  126. pre,
  127. code,
  128. kbd,
  129. samp {
  130. font-family: monospace, monospace;
  131. font-size: 1em; }
  132. pre {
  133. margin-top: 0;
  134. margin-bottom: 1rem;
  135. overflow: auto;
  136. -ms-overflow-style: scrollbar; }
  137. figure {
  138. margin: 0 0 1rem; }
  139. img {
  140. vertical-align: middle;
  141. border-style: none; }
  142. svg:not(:root) {
  143. overflow: hidden; }
  144. table {
  145. border-collapse: collapse; }
  146. caption {
  147. padding-top: 0.75rem;
  148. padding-bottom: 0.75rem;
  149. color: #6c757d;
  150. text-align: left;
  151. caption-side: bottom; }
  152. th {
  153. text-align: inherit; }
  154. label {
  155. display: inline-block;
  156. margin-bottom: .5rem; }
  157. button {
  158. border-radius: 0; }
  159. button:focus {
  160. outline: 1px dotted;
  161. outline: 5px auto -webkit-focus-ring-color; }
  162. input,
  163. button,
  164. select,
  165. optgroup,
  166. textarea {
  167. margin: 0;
  168. font-family: inherit;
  169. font-size: inherit;
  170. line-height: inherit; }
  171. button,
  172. input {
  173. overflow: visible; }
  174. button,
  175. select {
  176. text-transform: none; }
  177. button,
  178. html [type="button"],
  179. [type="reset"],
  180. [type="submit"] {
  181. -webkit-appearance: button; }
  182. button::-moz-focus-inner,
  183. [type="button"]::-moz-focus-inner,
  184. [type="reset"]::-moz-focus-inner,
  185. [type="submit"]::-moz-focus-inner {
  186. padding: 0;
  187. border-style: none; }
  188. input[type="radio"],
  189. input[type="checkbox"] {
  190. box-sizing: border-box;
  191. padding: 0; }
  192. input[type="date"],
  193. input[type="time"],
  194. input[type="datetime-local"],
  195. input[type="month"] {
  196. -webkit-appearance: listbox; }
  197. textarea {
  198. overflow: auto;
  199. resize: vertical; }
  200. fieldset {
  201. min-width: 0;
  202. padding: 0;
  203. margin: 0;
  204. border: 0; }
  205. legend {
  206. display: block;
  207. width: 100%;
  208. max-width: 100%;
  209. padding: 0;
  210. margin-bottom: .5rem;
  211. font-size: 1.5rem;
  212. line-height: inherit;
  213. color: inherit;
  214. white-space: normal; }
  215. progress {
  216. vertical-align: baseline; }
  217. [type="number"]::-webkit-inner-spin-button,
  218. [type="number"]::-webkit-outer-spin-button {
  219. height: auto; }
  220. [type="search"] {
  221. outline-offset: -2px;
  222. -webkit-appearance: none; }
  223. [type="search"]::-webkit-search-cancel-button,
  224. [type="search"]::-webkit-search-decoration {
  225. -webkit-appearance: none; }
  226. ::-webkit-file-upload-button {
  227. font: inherit;
  228. -webkit-appearance: button; }
  229. output {
  230. display: inline-block; }
  231. summary {
  232. display: list-item;
  233. cursor: pointer; }
  234. template {
  235. display: none; }
  236. [hidden] {
  237. display: none !important; }
  238. h1, h2, h3, h4, h5, h6,
  239. .h1, .h2, .h3, .h4, .h5, .h6 {
  240. margin-bottom: 0.5rem;
  241. font-family: inherit;
  242. font-weight: 500;
  243. line-height: 1.2;
  244. color: inherit; }
  245. h1, .h1 {
  246. font-size: 2.5rem; }
  247. h2, .h2 {
  248. font-size: 2rem; }
  249. h3, .h3 {
  250. font-size: 1.75rem; }
  251. h4, .h4 {
  252. font-size: 1.5rem; }
  253. h5, .h5 {
  254. font-size: 1.25rem; }
  255. h6, .h6 {
  256. font-size: 1rem; }
  257. .lead {
  258. font-size: 1.25rem;
  259. font-weight: 300; }
  260. .display-1 {
  261. font-size: 6rem;
  262. font-weight: 300;
  263. line-height: 1.2; }
  264. .display-2 {
  265. font-size: 5.5rem;
  266. font-weight: 300;
  267. line-height: 1.2; }
  268. .display-3 {
  269. font-size: 4.5rem;
  270. font-weight: 300;
  271. line-height: 1.2; }
  272. .display-4 {
  273. font-size: 3.5rem;
  274. font-weight: 300;
  275. line-height: 1.2; }
  276. hr {
  277. margin-top: 1rem;
  278. margin-bottom: 1rem;
  279. border: 0;
  280. border-top: 1px solid rgba(0, 0, 0, 0.1); }
  281. small,
  282. .small {
  283. font-size: 80%;
  284. font-weight: 400; }
  285. mark,
  286. .mark {
  287. padding: 0.2em;
  288. background-color: #fcf8e3; }
  289. .list-unstyled {
  290. padding-left: 0;
  291. list-style: none; }
  292. .list-inline {
  293. padding-left: 0;
  294. list-style: none; }
  295. .list-inline-item {
  296. display: inline-block; }
  297. .list-inline-item:not(:last-child) {
  298. margin-right: 0.5rem; }
  299. .initialism {
  300. font-size: 90%;
  301. text-transform: uppercase; }
  302. .blockquote {
  303. margin-bottom: 1rem;
  304. font-size: 1.25rem; }
  305. .blockquote-footer {
  306. display: block;
  307. font-size: 80%;
  308. color: #6c757d; }
  309. .blockquote-footer::before {
  310. content: "\2014 \00A0"; }
  311. .img-fluid {
  312. max-width: 100%;
  313. height: auto; }
  314. .img-thumbnail {
  315. padding: 0.25rem;
  316. background-color: #fff;
  317. border: 1px solid #dee2e6;
  318. border-radius: 0.25rem;
  319. max-width: 100%;
  320. height: auto; }
  321. .figure {
  322. display: inline-block; }
  323. .figure-img {
  324. margin-bottom: 0.5rem;
  325. line-height: 1; }
  326. .figure-caption {
  327. font-size: 90%;
  328. color: #6c757d; }
  329. .container {
  330. width: 100%;
  331. padding-right: 15px;
  332. padding-left: 15px;
  333. margin-right: auto;
  334. margin-left: auto; }
  335. @media (min-width: 576px) {
  336. .container {
  337. max-width: 540px; } }
  338. @media (min-width: 768px) {
  339. .container {
  340. max-width: 720px; } }
  341. @media (min-width: 992px) {
  342. .container {
  343. max-width: 960px; } }
  344. @media (min-width: 1200px) {
  345. .container {
  346. max-width: 1140px; } }
  347. .container-fluid {
  348. width: 100%;
  349. padding-right: 15px;
  350. padding-left: 15px;
  351. margin-right: auto;
  352. margin-left: auto; }
  353. .row {
  354. display: flex;
  355. flex-wrap: wrap;
  356. margin-right: -15px;
  357. margin-left: -15px; }
  358. .no-gutters {
  359. margin-right: 0;
  360. margin-left: 0; }
  361. .no-gutters > .col,
  362. .no-gutters > [class*="col-"] {
  363. padding-right: 0;
  364. padding-left: 0; }
  365. .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
  366. .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
  367. .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
  368. .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
  369. .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
  370. .col-xl-auto {
  371. position: relative;
  372. width: 100%;
  373. min-height: 1px;
  374. padding-right: 15px;
  375. padding-left: 15px; }
  376. .col {
  377. flex-basis: 0;
  378. flex-grow: 1;
  379. max-width: 100%; }
  380. .col-auto {
  381. flex: 0 0 auto;
  382. width: auto;
  383. max-width: none; }
  384. .col-1 {
  385. flex: 0 0 8.3333333333%;
  386. max-width: 8.3333333333%; }
  387. .col-2 {
  388. flex: 0 0 16.6666666667%;
  389. max-width: 16.6666666667%; }
  390. .col-3 {
  391. flex: 0 0 25%;
  392. max-width: 25%; }
  393. .col-4 {
  394. flex: 0 0 33.3333333333%;
  395. max-width: 33.3333333333%; }
  396. .col-5 {
  397. flex: 0 0 41.6666666667%;
  398. max-width: 41.6666666667%; }
  399. .col-6 {
  400. flex: 0 0 50%;
  401. max-width: 50%; }
  402. .col-7 {
  403. flex: 0 0 58.3333333333%;
  404. max-width: 58.3333333333%; }
  405. .col-8 {
  406. flex: 0 0 66.6666666667%;
  407. max-width: 66.6666666667%; }
  408. .col-9 {
  409. flex: 0 0 75%;
  410. max-width: 75%; }
  411. .col-10 {
  412. flex: 0 0 83.3333333333%;
  413. max-width: 83.3333333333%; }
  414. .col-11 {
  415. flex: 0 0 91.6666666667%;
  416. max-width: 91.6666666667%; }
  417. .col-12 {
  418. flex: 0 0 100%;
  419. max-width: 100%; }
  420. .order-first {
  421. order: -1; }
  422. .order-last {
  423. order: 13; }
  424. .order-0 {
  425. order: 0; }
  426. .order-1 {
  427. order: 1; }
  428. .order-2 {
  429. order: 2; }
  430. .order-3 {
  431. order: 3; }
  432. .order-4 {
  433. order: 4; }
  434. .order-5 {
  435. order: 5; }
  436. .order-6 {
  437. order: 6; }
  438. .order-7 {
  439. order: 7; }
  440. .order-8 {
  441. order: 8; }
  442. .order-9 {
  443. order: 9; }
  444. .order-10 {
  445. order: 10; }
  446. .order-11 {
  447. order: 11; }
  448. .order-12 {
  449. order: 12; }
  450. .offset-1 {
  451. margin-left: 8.3333333333%; }
  452. .offset-2 {
  453. margin-left: 16.6666666667%; }
  454. .offset-3 {
  455. margin-left: 25%; }
  456. .offset-4 {
  457. margin-left: 33.3333333333%; }
  458. .offset-5 {
  459. margin-left: 41.6666666667%; }
  460. .offset-6 {
  461. margin-left: 50%; }
  462. .offset-7 {
  463. margin-left: 58.3333333333%; }
  464. .offset-8 {
  465. margin-left: 66.6666666667%; }
  466. .offset-9 {
  467. margin-left: 75%; }
  468. .offset-10 {
  469. margin-left: 83.3333333333%; }
  470. .offset-11 {
  471. margin-left: 91.6666666667%; }
  472. @media (min-width: 576px) {
  473. .col-sm {
  474. flex-basis: 0;
  475. flex-grow: 1;
  476. max-width: 100%; }
  477. .col-sm-auto {
  478. flex: 0 0 auto;
  479. width: auto;
  480. max-width: none; }
  481. .col-sm-1 {
  482. flex: 0 0 8.3333333333%;
  483. max-width: 8.3333333333%; }
  484. .col-sm-2 {
  485. flex: 0 0 16.6666666667%;
  486. max-width: 16.6666666667%; }
  487. .col-sm-3 {
  488. flex: 0 0 25%;
  489. max-width: 25%; }
  490. .col-sm-4 {
  491. flex: 0 0 33.3333333333%;
  492. max-width: 33.3333333333%; }
  493. .col-sm-5 {
  494. flex: 0 0 41.6666666667%;
  495. max-width: 41.6666666667%; }
  496. .col-sm-6 {
  497. flex: 0 0 50%;
  498. max-width: 50%; }
  499. .col-sm-7 {
  500. flex: 0 0 58.3333333333%;
  501. max-width: 58.3333333333%; }
  502. .col-sm-8 {
  503. flex: 0 0 66.6666666667%;
  504. max-width: 66.6666666667%; }
  505. .col-sm-9 {
  506. flex: 0 0 75%;
  507. max-width: 75%; }
  508. .col-sm-10 {
  509. flex: 0 0 83.3333333333%;
  510. max-width: 83.3333333333%; }
  511. .col-sm-11 {
  512. flex: 0 0 91.6666666667%;
  513. max-width: 91.6666666667%; }
  514. .col-sm-12 {
  515. flex: 0 0 100%;
  516. max-width: 100%; }
  517. .order-sm-first {
  518. order: -1; }
  519. .order-sm-last {
  520. order: 13; }
  521. .order-sm-0 {
  522. order: 0; }
  523. .order-sm-1 {
  524. order: 1; }
  525. .order-sm-2 {
  526. order: 2; }
  527. .order-sm-3 {
  528. order: 3; }
  529. .order-sm-4 {
  530. order: 4; }
  531. .order-sm-5 {
  532. order: 5; }
  533. .order-sm-6 {
  534. order: 6; }
  535. .order-sm-7 {
  536. order: 7; }
  537. .order-sm-8 {
  538. order: 8; }
  539. .order-sm-9 {
  540. order: 9; }
  541. .order-sm-10 {
  542. order: 10; }
  543. .order-sm-11 {
  544. order: 11; }
  545. .order-sm-12 {
  546. order: 12; }
  547. .offset-sm-0 {
  548. margin-left: 0; }
  549. .offset-sm-1 {
  550. margin-left: 8.3333333333%; }
  551. .offset-sm-2 {
  552. margin-left: 16.6666666667%; }
  553. .offset-sm-3 {
  554. margin-left: 25%; }
  555. .offset-sm-4 {
  556. margin-left: 33.3333333333%; }
  557. .offset-sm-5 {
  558. margin-left: 41.6666666667%; }
  559. .offset-sm-6 {
  560. margin-left: 50%; }
  561. .offset-sm-7 {
  562. margin-left: 58.3333333333%; }
  563. .offset-sm-8 {
  564. margin-left: 66.6666666667%; }
  565. .offset-sm-9 {
  566. margin-left: 75%; }
  567. .offset-sm-10 {
  568. margin-left: 83.3333333333%; }
  569. .offset-sm-11 {
  570. margin-left: 91.6666666667%; } }
  571. @media (min-width: 768px) {
  572. .col-md {
  573. flex-basis: 0;
  574. flex-grow: 1;
  575. max-width: 100%; }
  576. .col-md-auto {
  577. flex: 0 0 auto;
  578. width: auto;
  579. max-width: none; }
  580. .col-md-1 {
  581. flex: 0 0 8.3333333333%;
  582. max-width: 8.3333333333%; }
  583. .col-md-2 {
  584. flex: 0 0 16.6666666667%;
  585. max-width: 16.6666666667%; }
  586. .col-md-3 {
  587. flex: 0 0 25%;
  588. max-width: 25%; }
  589. .col-md-4 {
  590. flex: 0 0 33.3333333333%;
  591. max-width: 33.3333333333%; }
  592. .col-md-5 {
  593. flex: 0 0 41.6666666667%;
  594. max-width: 41.6666666667%; }
  595. .col-md-6 {
  596. flex: 0 0 50%;
  597. max-width: 50%; }
  598. .col-md-7 {
  599. flex: 0 0 58.3333333333%;
  600. max-width: 58.3333333333%; }
  601. .col-md-8 {
  602. flex: 0 0 66.6666666667%;
  603. max-width: 66.6666666667%; }
  604. .col-md-9 {
  605. flex: 0 0 75%;
  606. max-width: 75%; }
  607. .col-md-10 {
  608. flex: 0 0 83.3333333333%;
  609. max-width: 83.3333333333%; }
  610. .col-md-11 {
  611. flex: 0 0 91.6666666667%;
  612. max-width: 91.6666666667%; }
  613. .col-md-12 {
  614. flex: 0 0 100%;
  615. max-width: 100%; }
  616. .order-md-first {
  617. order: -1; }
  618. .order-md-last {
  619. order: 13; }
  620. .order-md-0 {
  621. order: 0; }
  622. .order-md-1 {
  623. order: 1; }
  624. .order-md-2 {
  625. order: 2; }
  626. .order-md-3 {
  627. order: 3; }
  628. .order-md-4 {
  629. order: 4; }
  630. .order-md-5 {
  631. order: 5; }
  632. .order-md-6 {
  633. order: 6; }
  634. .order-md-7 {
  635. order: 7; }
  636. .order-md-8 {
  637. order: 8; }
  638. .order-md-9 {
  639. order: 9; }
  640. .order-md-10 {
  641. order: 10; }
  642. .order-md-11 {
  643. order: 11; }
  644. .order-md-12 {
  645. order: 12; }
  646. .offset-md-0 {
  647. margin-left: 0; }
  648. .offset-md-1 {
  649. margin-left: 8.3333333333%; }
  650. .offset-md-2 {
  651. margin-left: 16.6666666667%; }
  652. .offset-md-3 {
  653. margin-left: 25%; }
  654. .offset-md-4 {
  655. margin-left: 33.3333333333%; }
  656. .offset-md-5 {
  657. margin-left: 41.6666666667%; }
  658. .offset-md-6 {
  659. margin-left: 50%; }
  660. .offset-md-7 {
  661. margin-left: 58.3333333333%; }
  662. .offset-md-8 {
  663. margin-left: 66.6666666667%; }
  664. .offset-md-9 {
  665. margin-left: 75%; }
  666. .offset-md-10 {
  667. margin-left: 83.3333333333%; }
  668. .offset-md-11 {
  669. margin-left: 91.6666666667%; } }
  670. @media (min-width: 992px) {
  671. .col-lg {
  672. flex-basis: 0;
  673. flex-grow: 1;
  674. max-width: 100%; }
  675. .col-lg-auto {
  676. flex: 0 0 auto;
  677. width: auto;
  678. max-width: none; }
  679. .col-lg-1 {
  680. flex: 0 0 8.3333333333%;
  681. max-width: 8.3333333333%; }
  682. .col-lg-2 {
  683. flex: 0 0 16.6666666667%;
  684. max-width: 16.6666666667%; }
  685. .col-lg-3 {
  686. flex: 0 0 25%;
  687. max-width: 25%; }
  688. .col-lg-4 {
  689. flex: 0 0 33.3333333333%;
  690. max-width: 33.3333333333%; }
  691. .col-lg-5 {
  692. flex: 0 0 41.6666666667%;
  693. max-width: 41.6666666667%; }
  694. .col-lg-6 {
  695. flex: 0 0 50%;
  696. max-width: 50%; }
  697. .col-lg-7 {
  698. flex: 0 0 58.3333333333%;
  699. max-width: 58.3333333333%; }
  700. .col-lg-8 {
  701. flex: 0 0 66.6666666667%;
  702. max-width: 66.6666666667%; }
  703. .col-lg-9 {
  704. flex: 0 0 75%;
  705. max-width: 75%; }
  706. .col-lg-10 {
  707. flex: 0 0 83.3333333333%;
  708. max-width: 83.3333333333%; }
  709. .col-lg-11 {
  710. flex: 0 0 91.6666666667%;
  711. max-width: 91.6666666667%; }
  712. .col-lg-12 {
  713. flex: 0 0 100%;
  714. max-width: 100%; }
  715. .order-lg-first {
  716. order: -1; }
  717. .order-lg-last {
  718. order: 13; }
  719. .order-lg-0 {
  720. order: 0; }
  721. .order-lg-1 {
  722. order: 1; }
  723. .order-lg-2 {
  724. order: 2; }
  725. .order-lg-3 {
  726. order: 3; }
  727. .order-lg-4 {
  728. order: 4; }
  729. .order-lg-5 {
  730. order: 5; }
  731. .order-lg-6 {
  732. order: 6; }
  733. .order-lg-7 {
  734. order: 7; }
  735. .order-lg-8 {
  736. order: 8; }
  737. .order-lg-9 {
  738. order: 9; }
  739. .order-lg-10 {
  740. order: 10; }
  741. .order-lg-11 {
  742. order: 11; }
  743. .order-lg-12 {
  744. order: 12; }
  745. .offset-lg-0 {
  746. margin-left: 0; }
  747. .offset-lg-1 {
  748. margin-left: 8.3333333333%; }
  749. .offset-lg-2 {
  750. margin-left: 16.6666666667%; }
  751. .offset-lg-3 {
  752. margin-left: 25%; }
  753. .offset-lg-4 {
  754. margin-left: 33.3333333333%; }
  755. .offset-lg-5 {
  756. margin-left: 41.6666666667%; }
  757. .offset-lg-6 {
  758. margin-left: 50%; }
  759. .offset-lg-7 {
  760. margin-left: 58.3333333333%; }
  761. .offset-lg-8 {
  762. margin-left: 66.6666666667%; }
  763. .offset-lg-9 {
  764. margin-left: 75%; }
  765. .offset-lg-10 {
  766. margin-left: 83.3333333333%; }
  767. .offset-lg-11 {
  768. margin-left: 91.6666666667%; } }
  769. @media (min-width: 1200px) {
  770. .col-xl {
  771. flex-basis: 0;
  772. flex-grow: 1;
  773. max-width: 100%; }
  774. .col-xl-auto {
  775. flex: 0 0 auto;
  776. width: auto;
  777. max-width: none; }
  778. .col-xl-1 {
  779. flex: 0 0 8.3333333333%;
  780. max-width: 8.3333333333%; }
  781. .col-xl-2 {
  782. flex: 0 0 16.6666666667%;
  783. max-width: 16.6666666667%; }
  784. .col-xl-3 {
  785. flex: 0 0 25%;
  786. max-width: 25%; }
  787. .col-xl-4 {
  788. flex: 0 0 33.3333333333%;
  789. max-width: 33.3333333333%; }
  790. .col-xl-5 {
  791. flex: 0 0 41.6666666667%;
  792. max-width: 41.6666666667%; }
  793. .col-xl-6 {
  794. flex: 0 0 50%;
  795. max-width: 50%; }
  796. .col-xl-7 {
  797. flex: 0 0 58.3333333333%;
  798. max-width: 58.3333333333%; }
  799. .col-xl-8 {
  800. flex: 0 0 66.6666666667%;
  801. max-width: 66.6666666667%; }
  802. .col-xl-9 {
  803. flex: 0 0 75%;
  804. max-width: 75%; }
  805. .col-xl-10 {
  806. flex: 0 0 83.3333333333%;
  807. max-width: 83.3333333333%; }
  808. .col-xl-11 {
  809. flex: 0 0 91.6666666667%;
  810. max-width: 91.6666666667%; }
  811. .col-xl-12 {
  812. flex: 0 0 100%;
  813. max-width: 100%; }
  814. .order-xl-first {
  815. order: -1; }
  816. .order-xl-last {
  817. order: 13; }
  818. .order-xl-0 {
  819. order: 0; }
  820. .order-xl-1 {
  821. order: 1; }
  822. .order-xl-2 {
  823. order: 2; }
  824. .order-xl-3 {
  825. order: 3; }
  826. .order-xl-4 {
  827. order: 4; }
  828. .order-xl-5 {
  829. order: 5; }
  830. .order-xl-6 {
  831. order: 6; }
  832. .order-xl-7 {
  833. order: 7; }
  834. .order-xl-8 {
  835. order: 8; }
  836. .order-xl-9 {
  837. order: 9; }
  838. .order-xl-10 {
  839. order: 10; }
  840. .order-xl-11 {
  841. order: 11; }
  842. .order-xl-12 {
  843. order: 12; }
  844. .offset-xl-0 {
  845. margin-left: 0; }
  846. .offset-xl-1 {
  847. margin-left: 8.3333333333%; }
  848. .offset-xl-2 {
  849. margin-left: 16.6666666667%; }
  850. .offset-xl-3 {
  851. margin-left: 25%; }
  852. .offset-xl-4 {
  853. margin-left: 33.3333333333%; }
  854. .offset-xl-5 {
  855. margin-left: 41.6666666667%; }
  856. .offset-xl-6 {
  857. margin-left: 50%; }
  858. .offset-xl-7 {
  859. margin-left: 58.3333333333%; }
  860. .offset-xl-8 {
  861. margin-left: 66.6666666667%; }
  862. .offset-xl-9 {
  863. margin-left: 75%; }
  864. .offset-xl-10 {
  865. margin-left: 83.3333333333%; }
  866. .offset-xl-11 {
  867. margin-left: 91.6666666667%; } }
  868. .form-control {
  869. display: block;
  870. width: 100%;
  871. padding: 0.375rem 0.75rem;
  872. font-size: 1rem;
  873. line-height: 1.5;
  874. color: #495057;
  875. background-color: #fff;
  876. background-clip: padding-box;
  877. border: 1px solid #ced4da;
  878. border-radius: 0.25rem;
  879. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  880. .form-control::-ms-expand {
  881. background-color: transparent;
  882. border: 0; }
  883. .form-control:focus {
  884. color: #495057;
  885. background-color: #fff;
  886. border-color: #80bdff;
  887. outline: 0;
  888. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
  889. .form-control::placeholder {
  890. color: #6c757d;
  891. opacity: 1; }
  892. .form-control:disabled, .form-control[readonly] {
  893. background-color: #e9ecef;
  894. opacity: 1; }
  895. select.form-control:not([size]):not([multiple]) {
  896. height: calc(2.25rem + 2px); }
  897. select.form-control:focus::-ms-value {
  898. color: #495057;
  899. background-color: #fff; }
  900. .form-control-file,
  901. .form-control-range {
  902. display: block;
  903. width: 100%; }
  904. .col-form-label {
  905. padding-top: calc(0.375rem + 1px);
  906. padding-bottom: calc(0.375rem + 1px);
  907. margin-bottom: 0;
  908. font-size: inherit;
  909. line-height: 1.5; }
  910. .col-form-label-lg {
  911. padding-top: calc(0.5rem + 1px);
  912. padding-bottom: calc(0.5rem + 1px);
  913. font-size: 1.25rem;
  914. line-height: 1.5; }
  915. .col-form-label-sm {
  916. padding-top: calc(0.25rem + 1px);
  917. padding-bottom: calc(0.25rem + 1px);
  918. font-size: 0.875rem;
  919. line-height: 1.5; }
  920. .form-control-plaintext {
  921. display: block;
  922. width: 100%;
  923. padding-top: 0.375rem;
  924. padding-bottom: 0.375rem;
  925. margin-bottom: 0;
  926. line-height: 1.5;
  927. background-color: transparent;
  928. border: solid transparent;
  929. border-width: 1px 0; }
  930. .form-control-plaintext.form-control-sm, .input-group-sm > .form-control-plaintext.form-control,
  931. .input-group-sm > .input-group-prepend > .form-control-plaintext.input-group-text,
  932. .input-group-sm > .input-group-append > .form-control-plaintext.input-group-text,
  933. .input-group-sm > .input-group-prepend > .form-control-plaintext.btn,
  934. .input-group-sm > .input-group-append > .form-control-plaintext.btn, .form-control-plaintext.form-control-lg, .input-group-lg > .form-control-plaintext.form-control,
  935. .input-group-lg > .input-group-prepend > .form-control-plaintext.input-group-text,
  936. .input-group-lg > .input-group-append > .form-control-plaintext.input-group-text,
  937. .input-group-lg > .input-group-prepend > .form-control-plaintext.btn,
  938. .input-group-lg > .input-group-append > .form-control-plaintext.btn {
  939. padding-right: 0;
  940. padding-left: 0; }
  941. .form-control-sm, .input-group-sm > .form-control,
  942. .input-group-sm > .input-group-prepend > .input-group-text,
  943. .input-group-sm > .input-group-append > .input-group-text,
  944. .input-group-sm > .input-group-prepend > .btn,
  945. .input-group-sm > .input-group-append > .btn {
  946. padding: 0.25rem 0.5rem;
  947. font-size: 0.875rem;
  948. line-height: 1.5;
  949. border-radius: 0.2rem; }
  950. select.form-control-sm:not([size]):not([multiple]), .input-group-sm > select.form-control:not([size]):not([multiple]),
  951. .input-group-sm > .input-group-prepend > select.input-group-text:not([size]):not([multiple]),
  952. .input-group-sm > .input-group-append > select.input-group-text:not([size]):not([multiple]),
  953. .input-group-sm > .input-group-prepend > select.btn:not([size]):not([multiple]),
  954. .input-group-sm > .input-group-append > select.btn:not([size]):not([multiple]) {
  955. height: calc(1.8125rem + 2px); }
  956. .form-control-lg, .input-group-lg > .form-control,
  957. .input-group-lg > .input-group-prepend > .input-group-text,
  958. .input-group-lg > .input-group-append > .input-group-text,
  959. .input-group-lg > .input-group-prepend > .btn,
  960. .input-group-lg > .input-group-append > .btn {
  961. padding: 0.5rem 1rem;
  962. font-size: 1.25rem;
  963. line-height: 1.5;
  964. border-radius: 0.3rem; }
  965. select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.form-control:not([size]):not([multiple]),
  966. .input-group-lg > .input-group-prepend > select.input-group-text:not([size]):not([multiple]),
  967. .input-group-lg > .input-group-append > select.input-group-text:not([size]):not([multiple]),
  968. .input-group-lg > .input-group-prepend > select.btn:not([size]):not([multiple]),
  969. .input-group-lg > .input-group-append > select.btn:not([size]):not([multiple]) {
  970. height: calc(2.875rem + 2px); }
  971. .form-group {
  972. margin-bottom: 1rem; }
  973. .form-text {
  974. display: block;
  975. margin-top: 0.25rem; }
  976. .form-row {
  977. display: flex;
  978. flex-wrap: wrap;
  979. margin-right: -5px;
  980. margin-left: -5px; }
  981. .form-row > .col,
  982. .form-row > [class*="col-"] {
  983. padding-right: 5px;
  984. padding-left: 5px; }
  985. .form-check {
  986. position: relative;
  987. display: block;
  988. padding-left: 1.25rem; }
  989. .form-check-input {
  990. position: absolute;
  991. margin-top: 0.3rem;
  992. margin-left: -1.25rem; }
  993. .form-check-input:disabled ~ .form-check-label {
  994. color: #6c757d; }
  995. .form-check-label {
  996. margin-bottom: 0; }
  997. .form-check-inline {
  998. display: inline-flex;
  999. align-items: center;
  1000. padding-left: 0;
  1001. margin-right: 0.75rem; }
  1002. .form-check-inline .form-check-input {
  1003. position: static;
  1004. margin-top: 0;
  1005. margin-right: 0.3125rem;
  1006. margin-left: 0; }
  1007. .valid-feedback {
  1008. display: none;
  1009. width: 100%;
  1010. margin-top: 0.25rem;
  1011. font-size: 80%;
  1012. color: #28a745; }
  1013. .valid-tooltip {
  1014. position: absolute;
  1015. top: 100%;
  1016. z-index: 5;
  1017. display: none;
  1018. max-width: 100%;
  1019. padding: .5rem;
  1020. margin-top: .1rem;
  1021. font-size: .875rem;
  1022. line-height: 1;
  1023. color: #fff;
  1024. background-color: rgba(40, 167, 69, 0.8);
  1025. border-radius: .2rem; }
  1026. .was-validated .form-control:valid, .form-control.is-valid,
  1027. .was-validated .custom-select:valid,
  1028. .custom-select.is-valid {
  1029. border-color: #28a745; }
  1030. .was-validated .form-control:valid:focus, .form-control.is-valid:focus,
  1031. .was-validated .custom-select:valid:focus,
  1032. .custom-select.is-valid:focus {
  1033. border-color: #28a745;
  1034. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }
  1035. .was-validated .form-control:valid ~ .valid-feedback,
  1036. .was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,
  1037. .form-control.is-valid ~ .valid-tooltip,
  1038. .was-validated .custom-select:valid ~ .valid-feedback,
  1039. .was-validated .custom-select:valid ~ .valid-tooltip,
  1040. .custom-select.is-valid ~ .valid-feedback,
  1041. .custom-select.is-valid ~ .valid-tooltip {
  1042. display: block; }
  1043. .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  1044. color: #28a745; }
  1045. .was-validated .form-check-input:valid ~ .valid-feedback,
  1046. .was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
  1047. .form-check-input.is-valid ~ .valid-tooltip {
  1048. display: block; }
  1049. .was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  1050. color: #28a745; }
  1051. .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  1052. background-color: #71dd8a; }
  1053. .was-validated .custom-control-input:valid ~ .valid-feedback,
  1054. .was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,
  1055. .custom-control-input.is-valid ~ .valid-tooltip {
  1056. display: block; }
  1057. .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  1058. background-color: #34ce57; }
  1059. .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  1060. box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }
  1061. .was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  1062. border-color: #28a745; }
  1063. .was-validated .custom-file-input:valid ~ .custom-file-label::before, .custom-file-input.is-valid ~ .custom-file-label::before {
  1064. border-color: inherit; }
  1065. .was-validated .custom-file-input:valid ~ .valid-feedback,
  1066. .was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,
  1067. .custom-file-input.is-valid ~ .valid-tooltip {
  1068. display: block; }
  1069. .was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  1070. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }
  1071. .invalid-feedback {
  1072. display: none;
  1073. width: 100%;
  1074. margin-top: 0.25rem;
  1075. font-size: 80%;
  1076. color: #dc3545; }
  1077. .invalid-tooltip {
  1078. position: absolute;
  1079. top: 100%;
  1080. z-index: 5;
  1081. display: none;
  1082. max-width: 100%;
  1083. padding: .5rem;
  1084. margin-top: .1rem;
  1085. font-size: .875rem;
  1086. line-height: 1;
  1087. color: #fff;
  1088. background-color: rgba(220, 53, 69, 0.8);
  1089. border-radius: .2rem; }
  1090. .was-validated .form-control:invalid, .form-control.is-invalid,
  1091. .was-validated .custom-select:invalid,
  1092. .custom-select.is-invalid {
  1093. border-color: #dc3545; }
  1094. .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus,
  1095. .was-validated .custom-select:invalid:focus,
  1096. .custom-select.is-invalid:focus {
  1097. border-color: #dc3545;
  1098. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }
  1099. .was-validated .form-control:invalid ~ .invalid-feedback,
  1100. .was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,
  1101. .form-control.is-invalid ~ .invalid-tooltip,
  1102. .was-validated .custom-select:invalid ~ .invalid-feedback,
  1103. .was-validated .custom-select:invalid ~ .invalid-tooltip,
  1104. .custom-select.is-invalid ~ .invalid-feedback,
  1105. .custom-select.is-invalid ~ .invalid-tooltip {
  1106. display: block; }
  1107. .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  1108. color: #dc3545; }
  1109. .was-validated .form-check-input:invalid ~ .invalid-feedback,
  1110. .was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
  1111. .form-check-input.is-invalid ~ .invalid-tooltip {
  1112. display: block; }
  1113. .was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  1114. color: #dc3545; }
  1115. .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  1116. background-color: #efa2a9; }
  1117. .was-validated .custom-control-input:invalid ~ .invalid-feedback,
  1118. .was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,
  1119. .custom-control-input.is-invalid ~ .invalid-tooltip {
  1120. display: block; }
  1121. .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  1122. background-color: #e4606d; }
  1123. .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  1124. box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }
  1125. .was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  1126. border-color: #dc3545; }
  1127. .was-validated .custom-file-input:invalid ~ .custom-file-label::before, .custom-file-input.is-invalid ~ .custom-file-label::before {
  1128. border-color: inherit; }
  1129. .was-validated .custom-file-input:invalid ~ .invalid-feedback,
  1130. .was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,
  1131. .custom-file-input.is-invalid ~ .invalid-tooltip {
  1132. display: block; }
  1133. .was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  1134. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }
  1135. .form-inline {
  1136. display: flex;
  1137. flex-flow: row wrap;
  1138. align-items: center; }
  1139. .form-inline .form-check {
  1140. width: 100%; }
  1141. @media (min-width: 576px) {
  1142. .form-inline label {
  1143. display: flex;
  1144. align-items: center;
  1145. justify-content: center;
  1146. margin-bottom: 0; }
  1147. .form-inline .form-group {
  1148. display: flex;
  1149. flex: 0 0 auto;
  1150. flex-flow: row wrap;
  1151. align-items: center;
  1152. margin-bottom: 0; }
  1153. .form-inline .form-control {
  1154. display: inline-block;
  1155. width: auto;
  1156. vertical-align: middle; }
  1157. .form-inline .form-control-plaintext {
  1158. display: inline-block; }
  1159. .form-inline .input-group {
  1160. width: auto; }
  1161. .form-inline .form-check {
  1162. display: flex;
  1163. align-items: center;
  1164. justify-content: center;
  1165. width: auto;
  1166. padding-left: 0; }
  1167. .form-inline .form-check-input {
  1168. position: relative;
  1169. margin-top: 0;
  1170. margin-right: 0.25rem;
  1171. margin-left: 0; }
  1172. .form-inline .custom-control {
  1173. align-items: center;
  1174. justify-content: center; }
  1175. .form-inline .custom-control-label {
  1176. margin-bottom: 0; } }
  1177. .btn {
  1178. display: inline-block;
  1179. font-weight: 400;
  1180. text-align: center;
  1181. white-space: nowrap;
  1182. vertical-align: middle;
  1183. user-select: none;
  1184. border: 1px solid transparent;
  1185. padding: 0.375rem 0.75rem;
  1186. font-size: 1rem;
  1187. line-height: 1.5;
  1188. border-radius: 0.25rem;
  1189. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  1190. .btn:hover, .btn:focus {
  1191. text-decoration: none; }
  1192. .btn:focus, .btn.focus {
  1193. outline: 0;
  1194. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
  1195. .btn.disabled, .btn:disabled {
  1196. opacity: 0.65; }
  1197. .btn:not(:disabled):not(.disabled) {
  1198. cursor: pointer; }
  1199. .btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active {
  1200. background-image: none; }
  1201. a.btn.disabled,
  1202. fieldset:disabled a.btn {
  1203. pointer-events: none; }
  1204. .btn-primary {
  1205. color: #fff;
  1206. background-color: #007bff;
  1207. border-color: #007bff; }
  1208. .btn-primary:hover {
  1209. color: #fff;
  1210. background-color: #0069d9;
  1211. border-color: #0062cc; }
  1212. .btn-primary:focus, .btn-primary.focus {
  1213. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); }
  1214. .btn-primary.disabled, .btn-primary:disabled {
  1215. color: #fff;
  1216. background-color: #007bff;
  1217. border-color: #007bff; }
  1218. .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  1219. color: #fff;
  1220. background-color: #0062cc;
  1221. border-color: #005cbf; }
  1222. .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  1223. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); }
  1224. .btn-secondary {
  1225. color: #fff;
  1226. background-color: #6c757d;
  1227. border-color: #6c757d; }
  1228. .btn-secondary:hover {
  1229. color: #fff;
  1230. background-color: #5a6268;
  1231. border-color: #545b62; }
  1232. .btn-secondary:focus, .btn-secondary.focus {
  1233. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); }
  1234. .btn-secondary.disabled, .btn-secondary:disabled {
  1235. color: #fff;
  1236. background-color: #6c757d;
  1237. border-color: #6c757d; }
  1238. .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  1239. color: #fff;
  1240. background-color: #545b62;
  1241. border-color: #4e555b; }
  1242. .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  1243. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); }
  1244. .btn-success {
  1245. color: #fff;
  1246. background-color: #28a745;
  1247. border-color: #28a745; }
  1248. .btn-success:hover {
  1249. color: #fff;
  1250. background-color: #218838;
  1251. border-color: #1e7e34; }
  1252. .btn-success:focus, .btn-success.focus {
  1253. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); }
  1254. .btn-success.disabled, .btn-success:disabled {
  1255. color: #fff;
  1256. background-color: #28a745;
  1257. border-color: #28a745; }
  1258. .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  1259. color: #fff;
  1260. background-color: #1e7e34;
  1261. border-color: #1c7430; }
  1262. .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
  1263. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); }
  1264. .btn-info {
  1265. color: #fff;
  1266. background-color: #17a2b8;
  1267. border-color: #17a2b8; }
  1268. .btn-info:hover {
  1269. color: #fff;
  1270. background-color: #138496;
  1271. border-color: #117a8b; }
  1272. .btn-info:focus, .btn-info.focus {
  1273. box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }
  1274. .btn-info.disabled, .btn-info:disabled {
  1275. color: #fff;
  1276. background-color: #17a2b8;
  1277. border-color: #17a2b8; }
  1278. .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  1279. color: #fff;
  1280. background-color: #117a8b;
  1281. border-color: #10707f; }
  1282. .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
  1283. box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }
  1284. .btn-warning {
  1285. color: #212529;
  1286. background-color: #ffc107;
  1287. border-color: #ffc107; }
  1288. .btn-warning:hover {
  1289. color: #212529;
  1290. background-color: #e0a800;
  1291. border-color: #d39e00; }
  1292. .btn-warning:focus, .btn-warning.focus {
  1293. box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }
  1294. .btn-warning.disabled, .btn-warning:disabled {
  1295. color: #212529;
  1296. background-color: #ffc107;
  1297. border-color: #ffc107; }
  1298. .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  1299. color: #212529;
  1300. background-color: #d39e00;
  1301. border-color: #c69500; }
  1302. .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
  1303. box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }
  1304. .btn-danger {
  1305. color: #fff;
  1306. background-color: #dc3545;
  1307. border-color: #dc3545; }
  1308. .btn-danger:hover {
  1309. color: #fff;
  1310. background-color: #c82333;
  1311. border-color: #bd2130; }
  1312. .btn-danger:focus, .btn-danger.focus {
  1313. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }
  1314. .btn-danger.disabled, .btn-danger:disabled {
  1315. color: #fff;
  1316. background-color: #dc3545;
  1317. border-color: #dc3545; }
  1318. .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  1319. color: #fff;
  1320. background-color: #bd2130;
  1321. border-color: #b21f2d; }
  1322. .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
  1323. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }
  1324. .btn-light {
  1325. color: #212529;
  1326. background-color: #f8f9fa;
  1327. border-color: #f8f9fa; }
  1328. .btn-light:hover {
  1329. color: #212529;
  1330. background-color: #e2e6ea;
  1331. border-color: #dae0e5; }
  1332. .btn-light:focus, .btn-light.focus {
  1333. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }
  1334. .btn-light.disabled, .btn-light:disabled {
  1335. color: #212529;
  1336. background-color: #f8f9fa;
  1337. border-color: #f8f9fa; }
  1338. .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  1339. color: #212529;
  1340. background-color: #dae0e5;
  1341. border-color: #d3d9df; }
  1342. .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
  1343. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }
  1344. .btn-dark {
  1345. color: #fff;
  1346. background-color: #343a40;
  1347. border-color: #343a40; }
  1348. .btn-dark:hover {
  1349. color: #fff;
  1350. background-color: #23272b;
  1351. border-color: #1d2124; }
  1352. .btn-dark:focus, .btn-dark.focus {
  1353. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }
  1354. .btn-dark.disabled, .btn-dark:disabled {
  1355. color: #fff;
  1356. background-color: #343a40;
  1357. border-color: #343a40; }
  1358. .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  1359. color: #fff;
  1360. background-color: #1d2124;
  1361. border-color: #171a1d; }
  1362. .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
  1363. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }
  1364. .btn-outline-primary {
  1365. color: #007bff;
  1366. background-color: transparent;
  1367. background-image: none;
  1368. border-color: #007bff; }
  1369. .btn-outline-primary:hover {
  1370. color: #fff;
  1371. background-color: #007bff;
  1372. border-color: #007bff; }
  1373. .btn-outline-primary:focus, .btn-outline-primary.focus {
  1374. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); }
  1375. .btn-outline-primary.disabled, .btn-outline-primary:disabled {
  1376. color: #007bff;
  1377. background-color: transparent; }
  1378. .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  1379. color: #fff;
  1380. background-color: #007bff;
  1381. border-color: #007bff; }
  1382. .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  1383. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); }
  1384. .btn-outline-secondary {
  1385. color: #6c757d;
  1386. background-color: transparent;
  1387. background-image: none;
  1388. border-color: #6c757d; }
  1389. .btn-outline-secondary:hover {
  1390. color: #fff;
  1391. background-color: #6c757d;
  1392. border-color: #6c757d; }
  1393. .btn-outline-secondary:focus, .btn-outline-secondary.focus {
  1394. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); }
  1395. .btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  1396. color: #6c757d;
  1397. background-color: transparent; }
  1398. .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  1399. color: #fff;
  1400. background-color: #6c757d;
  1401. border-color: #6c757d; }
  1402. .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  1403. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); }
  1404. .btn-outline-success {
  1405. color: #28a745;
  1406. background-color: transparent;
  1407. background-image: none;
  1408. border-color: #28a745; }
  1409. .btn-outline-success:hover {
  1410. color: #fff;
  1411. background-color: #28a745;
  1412. border-color: #28a745; }
  1413. .btn-outline-success:focus, .btn-outline-success.focus {
  1414. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); }
  1415. .btn-outline-success.disabled, .btn-outline-success:disabled {
  1416. color: #28a745;
  1417. background-color: transparent; }
  1418. .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
  1419. color: #fff;
  1420. background-color: #28a745;
  1421. border-color: #28a745; }
  1422. .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
  1423. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); }
  1424. .btn-outline-info {
  1425. color: #17a2b8;
  1426. background-color: transparent;
  1427. background-image: none;
  1428. border-color: #17a2b8; }
  1429. .btn-outline-info:hover {
  1430. color: #fff;
  1431. background-color: #17a2b8;
  1432. border-color: #17a2b8; }
  1433. .btn-outline-info:focus, .btn-outline-info.focus {
  1434. box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }
  1435. .btn-outline-info.disabled, .btn-outline-info:disabled {
  1436. color: #17a2b8;
  1437. background-color: transparent; }
  1438. .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
  1439. color: #fff;
  1440. background-color: #17a2b8;
  1441. border-color: #17a2b8; }
  1442. .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
  1443. box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }
  1444. .btn-outline-warning {
  1445. color: #ffc107;
  1446. background-color: transparent;
  1447. background-image: none;
  1448. border-color: #ffc107; }
  1449. .btn-outline-warning:hover {
  1450. color: #212529;
  1451. background-color: #ffc107;
  1452. border-color: #ffc107; }
  1453. .btn-outline-warning:focus, .btn-outline-warning.focus {
  1454. box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }
  1455. .btn-outline-warning.disabled, .btn-outline-warning:disabled {
  1456. color: #ffc107;
  1457. background-color: transparent; }
  1458. .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
  1459. color: #212529;
  1460. background-color: #ffc107;
  1461. border-color: #ffc107; }
  1462. .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
  1463. box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }
  1464. .btn-outline-danger {
  1465. color: #dc3545;
  1466. background-color: transparent;
  1467. background-image: none;
  1468. border-color: #dc3545; }
  1469. .btn-outline-danger:hover {
  1470. color: #fff;
  1471. background-color: #dc3545;
  1472. border-color: #dc3545; }
  1473. .btn-outline-danger:focus, .btn-outline-danger.focus {
  1474. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }
  1475. .btn-outline-danger.disabled, .btn-outline-danger:disabled {
  1476. color: #dc3545;
  1477. background-color: transparent; }
  1478. .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
  1479. color: #fff;
  1480. background-color: #dc3545;
  1481. border-color: #dc3545; }
  1482. .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
  1483. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }
  1484. .btn-outline-light {
  1485. color: #f8f9fa;
  1486. background-color: transparent;
  1487. background-image: none;
  1488. border-color: #f8f9fa; }
  1489. .btn-outline-light:hover {
  1490. color: #212529;
  1491. background-color: #f8f9fa;
  1492. border-color: #f8f9fa; }
  1493. .btn-outline-light:focus, .btn-outline-light.focus {
  1494. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }
  1495. .btn-outline-light.disabled, .btn-outline-light:disabled {
  1496. color: #f8f9fa;
  1497. background-color: transparent; }
  1498. .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
  1499. color: #212529;
  1500. background-color: #f8f9fa;
  1501. border-color: #f8f9fa; }
  1502. .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
  1503. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }
  1504. .btn-outline-dark {
  1505. color: #343a40;
  1506. background-color: transparent;
  1507. background-image: none;
  1508. border-color: #343a40; }
  1509. .btn-outline-dark:hover {
  1510. color: #fff;
  1511. background-color: #343a40;
  1512. border-color: #343a40; }
  1513. .btn-outline-dark:focus, .btn-outline-dark.focus {
  1514. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }
  1515. .btn-outline-dark.disabled, .btn-outline-dark:disabled {
  1516. color: #343a40;
  1517. background-color: transparent; }
  1518. .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  1519. color: #fff;
  1520. background-color: #343a40;
  1521. border-color: #343a40; }
  1522. .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
  1523. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }
  1524. .btn-link {
  1525. font-weight: 400;
  1526. color: #007bff;
  1527. background-color: transparent; }
  1528. .btn-link:hover {
  1529. color: #0056b3;
  1530. text-decoration: underline;
  1531. background-color: transparent;
  1532. border-color: transparent; }
  1533. .btn-link:focus, .btn-link.focus {
  1534. text-decoration: underline;
  1535. border-color: transparent;
  1536. box-shadow: none; }
  1537. .btn-link:disabled, .btn-link.disabled {
  1538. color: #6c757d; }
  1539. .btn-lg, .btn-group-lg > .btn {
  1540. padding: 0.5rem 1rem;
  1541. font-size: 1.25rem;
  1542. line-height: 1.5;
  1543. border-radius: 0.3rem; }
  1544. .btn-sm, .btn-group-sm > .btn {
  1545. padding: 0.25rem 0.5rem;
  1546. font-size: 0.875rem;
  1547. line-height: 1.5;
  1548. border-radius: 0.2rem; }
  1549. .btn-block {
  1550. display: block;
  1551. width: 100%; }
  1552. .btn-block + .btn-block {
  1553. margin-top: 0.5rem; }
  1554. input[type="submit"].btn-block,
  1555. input[type="reset"].btn-block,
  1556. input[type="button"].btn-block {
  1557. width: 100%; }
  1558. .fade {
  1559. opacity: 0;
  1560. transition: opacity 0.15s linear; }
  1561. .fade.show {
  1562. opacity: 1; }
  1563. .collapse {
  1564. display: none; }
  1565. .collapse.show {
  1566. display: block; }
  1567. tr.collapse.show {
  1568. display: table-row; }
  1569. tbody.collapse.show {
  1570. display: table-row-group; }
  1571. .collapsing {
  1572. position: relative;
  1573. height: 0;
  1574. overflow: hidden;
  1575. transition: height 0.35s ease; }
  1576. .dropup,
  1577. .dropdown {
  1578. position: relative; }
  1579. .dropdown-toggle::after {
  1580. display: inline-block;
  1581. width: 0;
  1582. height: 0;
  1583. margin-left: 0.255em;
  1584. vertical-align: 0.255em;
  1585. content: "";
  1586. border-top: 0.3em solid;
  1587. border-right: 0.3em solid transparent;
  1588. border-bottom: 0;
  1589. border-left: 0.3em solid transparent; }
  1590. .dropdown-toggle:empty::after {
  1591. margin-left: 0; }
  1592. .dropdown-menu {
  1593. position: absolute;
  1594. top: 100%;
  1595. left: 0;
  1596. z-index: 1000;
  1597. display: none;
  1598. float: left;
  1599. min-width: 10rem;
  1600. padding: 0.5rem 0;
  1601. margin: 0.125rem 0 0;
  1602. font-size: 1rem;
  1603. color: #212529;
  1604. text-align: left;
  1605. list-style: none;
  1606. background-color: #fff;
  1607. background-clip: padding-box;
  1608. border: 1px solid rgba(0, 0, 0, 0.15);
  1609. border-radius: 0.25rem; }
  1610. .dropup .dropdown-menu {
  1611. margin-top: 0;
  1612. margin-bottom: 0.125rem; }
  1613. .dropup .dropdown-toggle::after {
  1614. display: inline-block;
  1615. width: 0;
  1616. height: 0;
  1617. margin-left: 0.255em;
  1618. vertical-align: 0.255em;
  1619. content: "";
  1620. border-top: 0;
  1621. border-right: 0.3em solid transparent;
  1622. border-bottom: 0.3em solid;
  1623. border-left: 0.3em solid transparent; }
  1624. .dropup .dropdown-toggle:empty::after {
  1625. margin-left: 0; }
  1626. .dropright .dropdown-menu {
  1627. margin-top: 0;
  1628. margin-left: 0.125rem; }
  1629. .dropright .dropdown-toggle::after {
  1630. display: inline-block;
  1631. width: 0;
  1632. height: 0;
  1633. margin-left: 0.255em;
  1634. vertical-align: 0.255em;
  1635. content: "";
  1636. border-top: 0.3em solid transparent;
  1637. border-bottom: 0.3em solid transparent;
  1638. border-left: 0.3em solid; }
  1639. .dropright .dropdown-toggle:empty::after {
  1640. margin-left: 0; }
  1641. .dropright .dropdown-toggle::after {
  1642. vertical-align: 0; }
  1643. .dropleft .dropdown-menu {
  1644. margin-top: 0;
  1645. margin-right: 0.125rem; }
  1646. .dropleft .dropdown-toggle::after {
  1647. display: inline-block;
  1648. width: 0;
  1649. height: 0;
  1650. margin-left: 0.255em;
  1651. vertical-align: 0.255em;
  1652. content: ""; }
  1653. .dropleft .dropdown-toggle::after {
  1654. display: none; }
  1655. .dropleft .dropdown-toggle::before {
  1656. display: inline-block;
  1657. width: 0;
  1658. height: 0;
  1659. margin-right: 0.255em;
  1660. vertical-align: 0.255em;
  1661. content: "";
  1662. border-top: 0.3em solid transparent;
  1663. border-right: 0.3em solid;
  1664. border-bottom: 0.3em solid transparent; }
  1665. .dropleft .dropdown-toggle:empty::after {
  1666. margin-left: 0; }
  1667. .dropleft .dropdown-toggle::before {
  1668. vertical-align: 0; }
  1669. .dropdown-divider {
  1670. height: 0;
  1671. margin: 0.5rem 0;
  1672. overflow: hidden;
  1673. border-top: 1px solid #e9ecef; }
  1674. .dropdown-item {
  1675. display: block;
  1676. width: 100%;
  1677. padding: 0.25rem 1.5rem;
  1678. clear: both;
  1679. font-weight: 400;
  1680. color: #212529;
  1681. text-align: inherit;
  1682. white-space: nowrap;
  1683. background-color: transparent;
  1684. border: 0; }
  1685. .dropdown-item:hover, .dropdown-item:focus {
  1686. color: #16181b;
  1687. text-decoration: none;
  1688. background-color: #f8f9fa; }
  1689. .dropdown-item.active, .dropdown-item:active {
  1690. color: #fff;
  1691. text-decoration: none;
  1692. background-color: #007bff; }
  1693. .dropdown-item.disabled, .dropdown-item:disabled {
  1694. color: #6c757d;
  1695. background-color: transparent; }
  1696. .dropdown-menu.show {
  1697. display: block; }
  1698. .dropdown-header {
  1699. display: block;
  1700. padding: 0.5rem 1.5rem;
  1701. margin-bottom: 0;
  1702. font-size: 0.875rem;
  1703. color: #6c757d;
  1704. white-space: nowrap; }
  1705. .btn-group,
  1706. .btn-group-vertical {
  1707. position: relative;
  1708. display: inline-flex;
  1709. vertical-align: middle; }
  1710. .btn-group > .btn,
  1711. .btn-group-vertical > .btn {
  1712. position: relative;
  1713. flex: 0 1 auto; }
  1714. .btn-group > .btn:hover,
  1715. .btn-group-vertical > .btn:hover {
  1716. z-index: 1; }
  1717. .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
  1718. .btn-group-vertical > .btn:focus,
  1719. .btn-group-vertical > .btn:active,
  1720. .btn-group-vertical > .btn.active {
  1721. z-index: 1; }
  1722. .btn-group .btn + .btn,
  1723. .btn-group .btn + .btn-group,
  1724. .btn-group .btn-group + .btn,
  1725. .btn-group .btn-group + .btn-group,
  1726. .btn-group-vertical .btn + .btn,
  1727. .btn-group-vertical .btn + .btn-group,
  1728. .btn-group-vertical .btn-group + .btn,
  1729. .btn-group-vertical .btn-group + .btn-group {
  1730. margin-left: -1px; }
  1731. .btn-toolbar {
  1732. display: flex;
  1733. flex-wrap: wrap;
  1734. justify-content: flex-start; }
  1735. .btn-toolbar .input-group {
  1736. width: auto; }
  1737. .btn-group > .btn:first-child {
  1738. margin-left: 0; }
  1739. .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
  1740. .btn-group > .btn-group:not(:last-child) > .btn {
  1741. border-top-right-radius: 0;
  1742. border-bottom-right-radius: 0; }
  1743. .btn-group > .btn:not(:first-child),
  1744. .btn-group > .btn-group:not(:first-child) > .btn {
  1745. border-top-left-radius: 0;
  1746. border-bottom-left-radius: 0; }
  1747. .dropdown-toggle-split {
  1748. padding-right: 0.5625rem;
  1749. padding-left: 0.5625rem; }
  1750. .dropdown-toggle-split::after {
  1751. margin-left: 0; }
  1752. .btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  1753. padding-right: 0.375rem;
  1754. padding-left: 0.375rem; }
  1755. .btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  1756. padding-right: 0.75rem;
  1757. padding-left: 0.75rem; }
  1758. .btn-group-vertical {
  1759. flex-direction: column;
  1760. align-items: flex-start;
  1761. justify-content: center; }
  1762. .btn-group-vertical .btn,
  1763. .btn-group-vertical .btn-group {
  1764. width: 100%; }
  1765. .btn-group-vertical > .btn + .btn,
  1766. .btn-group-vertical > .btn + .btn-group,
  1767. .btn-group-vertical > .btn-group + .btn,
  1768. .btn-group-vertical > .btn-group + .btn-group {
  1769. margin-top: -1px;
  1770. margin-left: 0; }
  1771. .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
  1772. .btn-group-vertical > .btn-group:not(:last-child) > .btn {
  1773. border-bottom-right-radius: 0;
  1774. border-bottom-left-radius: 0; }
  1775. .btn-group-vertical > .btn:not(:first-child),
  1776. .btn-group-vertical > .btn-group:not(:first-child) > .btn {
  1777. border-top-left-radius: 0;
  1778. border-top-right-radius: 0; }
  1779. .btn-group-toggle > .btn,
  1780. .btn-group-toggle > .btn-group > .btn {
  1781. margin-bottom: 0; }
  1782. .btn-group-toggle > .btn input[type="radio"],
  1783. .btn-group-toggle > .btn input[type="checkbox"],
  1784. .btn-group-toggle > .btn-group > .btn input[type="radio"],
  1785. .btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
  1786. position: absolute;
  1787. clip: rect(0, 0, 0, 0);
  1788. pointer-events: none; }
  1789. .input-group {
  1790. position: relative;
  1791. display: flex;
  1792. flex-wrap: wrap;
  1793. align-items: stretch;
  1794. width: 100%; }
  1795. .input-group > .form-control,
  1796. .input-group > .custom-select,
  1797. .input-group > .custom-file {
  1798. position: relative;
  1799. flex: 1 1 auto;
  1800. width: 1%;
  1801. margin-bottom: 0; }
  1802. .input-group > .form-control:focus,
  1803. .input-group > .custom-select:focus,
  1804. .input-group > .custom-file:focus {
  1805. z-index: 3; }
  1806. .input-group > .form-control + .form-control,
  1807. .input-group > .form-control + .custom-select,
  1808. .input-group > .form-control + .custom-file,
  1809. .input-group > .custom-select + .form-control,
  1810. .input-group > .custom-select + .custom-select,
  1811. .input-group > .custom-select + .custom-file,
  1812. .input-group > .custom-file + .form-control,
  1813. .input-group > .custom-file + .custom-select,
  1814. .input-group > .custom-file + .custom-file {
  1815. margin-left: -1px; }
  1816. .input-group > .form-control:not(:last-child),
  1817. .input-group > .custom-select:not(:last-child) {
  1818. border-top-right-radius: 0;
  1819. border-bottom-right-radius: 0; }
  1820. .input-group > .form-control:not(:first-child),
  1821. .input-group > .custom-select:not(:first-child) {
  1822. border-top-left-radius: 0;
  1823. border-bottom-left-radius: 0; }
  1824. .input-group > .custom-file {
  1825. display: flex;
  1826. align-items: center; }
  1827. .input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::before {
  1828. border-top-right-radius: 0;
  1829. border-bottom-right-radius: 0; }
  1830. .input-group > .custom-file:not(:first-child) .custom-file-label, .input-group > .custom-file:not(:first-child) .custom-file-label::before {
  1831. border-top-left-radius: 0;
  1832. border-bottom-left-radius: 0; }
  1833. .input-group-prepend,
  1834. .input-group-append {
  1835. display: flex; }
  1836. .input-group-prepend .btn,
  1837. .input-group-append .btn {
  1838. position: relative;
  1839. z-index: 2; }
  1840. .input-group-prepend .btn + .btn,
  1841. .input-group-prepend .btn + .input-group-text,
  1842. .input-group-prepend .input-group-text + .input-group-text,
  1843. .input-group-prepend .input-group-text + .btn,
  1844. .input-group-append .btn + .btn,
  1845. .input-group-append .btn + .input-group-text,
  1846. .input-group-append .input-group-text + .input-group-text,
  1847. .input-group-append .input-group-text + .btn {
  1848. margin-left: -1px; }
  1849. .input-group-prepend {
  1850. margin-right: -1px; }
  1851. .input-group-append {
  1852. margin-left: -1px; }
  1853. .input-group-text {
  1854. display: flex;
  1855. align-items: center;
  1856. padding: 0.375rem 0.75rem;
  1857. margin-bottom: 0;
  1858. font-size: 1rem;
  1859. font-weight: 400;
  1860. line-height: 1.5;
  1861. color: #495057;
  1862. text-align: center;
  1863. white-space: nowrap;
  1864. background-color: #e9ecef;
  1865. border: 1px solid #ced4da;
  1866. border-radius: 0.25rem; }
  1867. .input-group-text input[type="radio"],
  1868. .input-group-text input[type="checkbox"] {
  1869. margin-top: 0; }
  1870. .input-group > .input-group-prepend > .btn,
  1871. .input-group > .input-group-prepend > .input-group-text,
  1872. .input-group > .input-group-append:not(:last-child) > .btn,
  1873. .input-group > .input-group-append:not(:last-child) > .input-group-text,
  1874. .input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  1875. .input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  1876. border-top-right-radius: 0;
  1877. border-bottom-right-radius: 0; }
  1878. .input-group > .input-group-append > .btn,
  1879. .input-group > .input-group-append > .input-group-text,
  1880. .input-group > .input-group-prepend:not(:first-child) > .btn,
  1881. .input-group > .input-group-prepend:not(:first-child) > .input-group-text,
  1882. .input-group > .input-group-prepend:first-child > .btn:not(:first-child),
  1883. .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  1884. border-top-left-radius: 0;
  1885. border-bottom-left-radius: 0; }
  1886. .custom-control {
  1887. position: relative;
  1888. display: block;
  1889. min-height: 1.5rem;
  1890. padding-left: 1.5rem; }
  1891. .custom-control-inline {
  1892. display: inline-flex;
  1893. margin-right: 1rem; }
  1894. .custom-control-input {
  1895. position: absolute;
  1896. z-index: -1;
  1897. opacity: 0; }
  1898. .custom-control-input:checked ~ .custom-control-label::before {
  1899. color: #fff;
  1900. background-color: #007bff; }
  1901. .custom-control-input:focus ~ .custom-control-label::before {
  1902. box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
  1903. .custom-control-input:active ~ .custom-control-label::before {
  1904. color: #fff;
  1905. background-color: #b3d7ff; }
  1906. .custom-control-input:disabled ~ .custom-control-label {
  1907. color: #6c757d; }
  1908. .custom-control-input:disabled ~ .custom-control-label::before {
  1909. background-color: #e9ecef; }
  1910. .custom-control-label {
  1911. margin-bottom: 0; }
  1912. .custom-control-label::before {
  1913. position: absolute;
  1914. top: 0.25rem;
  1915. left: 0;
  1916. display: block;
  1917. width: 1rem;
  1918. height: 1rem;
  1919. pointer-events: none;
  1920. content: "";
  1921. user-select: none;
  1922. background-color: #dee2e6; }
  1923. .custom-control-label::after {
  1924. position: absolute;
  1925. top: 0.25rem;
  1926. left: 0;
  1927. display: block;
  1928. width: 1rem;
  1929. height: 1rem;
  1930. content: "";
  1931. background-repeat: no-repeat;
  1932. background-position: center center;
  1933. background-size: 50% 50%; }
  1934. .custom-checkbox .custom-control-label::before {
  1935. border-radius: 0.25rem; }
  1936. .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  1937. background-color: #007bff; }
  1938. .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  1939. background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E"); }
  1940. .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  1941. background-color: #007bff; }
  1942. .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  1943. background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E"); }
  1944. .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  1945. background-color: rgba(0, 123, 255, 0.5); }
  1946. .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  1947. background-color: rgba(0, 123, 255, 0.5); }
  1948. .custom-radio .custom-control-label::before {
  1949. border-radius: 50%; }
  1950. .custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  1951. background-color: #007bff; }
  1952. .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  1953. background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E"); }
  1954. .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  1955. background-color: rgba(0, 123, 255, 0.5); }
  1956. .custom-select {
  1957. display: inline-block;
  1958. width: 100%;
  1959. height: calc(2.25rem + 2px);
  1960. padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  1961. line-height: 1.5;
  1962. color: #495057;
  1963. vertical-align: middle;
  1964. background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  1965. background-size: 8px 10px;
  1966. border: 1px solid #ced4da;
  1967. border-radius: 0.25rem;
  1968. appearance: none; }
  1969. .custom-select:focus {
  1970. border-color: #80bdff;
  1971. outline: 0;
  1972. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(128, 189, 255, 0.5); }
  1973. .custom-select:focus::-ms-value {
  1974. color: #495057;
  1975. background-color: #fff; }
  1976. .custom-select[multiple], .custom-select[size]:not([size="1"]) {
  1977. height: auto;
  1978. padding-right: 0.75rem;
  1979. background-image: none; }
  1980. .custom-select:disabled {
  1981. color: #6c757d;
  1982. background-color: #e9ecef; }
  1983. .custom-select::-ms-expand {
  1984. opacity: 0; }
  1985. .custom-select-sm {
  1986. height: calc(1.8125rem + 2px);
  1987. padding-top: 0.375rem;
  1988. padding-bottom: 0.375rem;
  1989. font-size: 75%; }
  1990. .custom-select-lg {
  1991. height: calc(2.875rem + 2px);
  1992. padding-top: 0.375rem;
  1993. padding-bottom: 0.375rem;
  1994. font-size: 125%; }
  1995. .custom-file {
  1996. position: relative;
  1997. display: inline-block;
  1998. width: 100%;
  1999. height: calc(2.25rem + 2px);
  2000. margin-bottom: 0; }
  2001. .custom-file-input {
  2002. position: relative;
  2003. z-index: 2;
  2004. width: 100%;
  2005. height: calc(2.25rem + 2px);
  2006. margin: 0;
  2007. opacity: 0; }
  2008. .custom-file-input:focus ~ .custom-file-control {
  2009. border-color: #80bdff;
  2010. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
  2011. .custom-file-input:focus ~ .custom-file-control::before {
  2012. border-color: #80bdff; }
  2013. .custom-file-input:lang(en) ~ .custom-file-label::after {
  2014. content: "Browse"; }
  2015. .custom-file-label {
  2016. position: absolute;
  2017. top: 0;
  2018. right: 0;
  2019. left: 0;
  2020. z-index: 1;
  2021. height: calc(2.25rem + 2px);
  2022. padding: 0.375rem 0.75rem;
  2023. line-height: 1.5;
  2024. color: #495057;
  2025. background-color: #fff;
  2026. border: 1px solid #ced4da;
  2027. border-radius: 0.25rem; }
  2028. .custom-file-label::after {
  2029. position: absolute;
  2030. top: 0;
  2031. right: 0;
  2032. bottom: 0;
  2033. z-index: 3;
  2034. display: block;
  2035. height: calc(calc(2.25rem + 2px) - 1px * 2);
  2036. padding: 0.375rem 0.75rem;
  2037. line-height: 1.5;
  2038. color: #495057;
  2039. content: "Browse";
  2040. background-color: #e9ecef;
  2041. border-left: 1px solid #ced4da;
  2042. border-radius: 0 0.25rem 0.25rem 0; }
  2043. .nav {
  2044. display: flex;
  2045. flex-wrap: wrap;
  2046. padding-left: 0;
  2047. margin-bottom: 0;
  2048. list-style: none; }
  2049. .nav-link {
  2050. display: block;
  2051. padding: 0.5rem 1rem; }
  2052. .nav-link:hover, .nav-link:focus {
  2053. text-decoration: none; }
  2054. .nav-link.disabled {
  2055. color: #6c757d; }
  2056. .nav-tabs {
  2057. border-bottom: 1px solid #dee2e6; }
  2058. .nav-tabs .nav-item {
  2059. margin-bottom: -1px; }
  2060. .nav-tabs .nav-link {
  2061. border: 1px solid transparent;
  2062. border-top-left-radius: 0.25rem;
  2063. border-top-right-radius: 0.25rem; }
  2064. .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  2065. border-color: #e9ecef #e9ecef #dee2e6; }
  2066. .nav-tabs .nav-link.disabled {
  2067. color: #6c757d;
  2068. background-color: transparent;
  2069. border-color: transparent; }
  2070. .nav-tabs .nav-link.active,
  2071. .nav-tabs .nav-item.show .nav-link {
  2072. color: #495057;
  2073. background-color: #fff;
  2074. border-color: #dee2e6 #dee2e6 #fff; }
  2075. .nav-tabs .dropdown-menu {
  2076. margin-top: -1px;
  2077. border-top-left-radius: 0;
  2078. border-top-right-radius: 0; }
  2079. .nav-pills .nav-link {
  2080. border-radius: 0.25rem; }
  2081. .nav-pills .nav-link.active,
  2082. .nav-pills .show > .nav-link {
  2083. color: #fff;
  2084. background-color: #007bff; }
  2085. .nav-fill .nav-item {
  2086. flex: 1 1 auto;
  2087. text-align: center; }
  2088. .nav-justified .nav-item {
  2089. flex-basis: 0;
  2090. flex-grow: 1;
  2091. text-align: center; }
  2092. .tab-content > .tab-pane {
  2093. display: none; }
  2094. .tab-content > .active {
  2095. display: block; }
  2096. .navbar {
  2097. position: relative;
  2098. display: flex;
  2099. flex-wrap: wrap;
  2100. align-items: center;
  2101. justify-content: space-between;
  2102. padding: 0.5rem 1rem; }
  2103. .navbar > .container,
  2104. .navbar > .container-fluid {
  2105. display: flex;
  2106. flex-wrap: wrap;
  2107. align-items: center;
  2108. justify-content: space-between; }
  2109. .navbar-brand {
  2110. display: inline-block;
  2111. padding-top: 0.3125rem;
  2112. padding-bottom: 0.3125rem;
  2113. margin-right: 1rem;
  2114. font-size: 1.25rem;
  2115. line-height: inherit;
  2116. white-space: nowrap; }
  2117. .navbar-brand:hover, .navbar-brand:focus {
  2118. text-decoration: none; }
  2119. .navbar-nav {
  2120. display: flex;
  2121. flex-direction: column;
  2122. padding-left: 0;
  2123. margin-bottom: 0;
  2124. list-style: none; }
  2125. .navbar-nav .nav-link {
  2126. padding-right: 0;
  2127. padding-left: 0; }
  2128. .navbar-nav .dropdown-menu {
  2129. position: static;
  2130. float: none; }
  2131. .navbar-text {
  2132. display: inline-block;
  2133. padding-top: 0.5rem;
  2134. padding-bottom: 0.5rem; }
  2135. .navbar-collapse {
  2136. flex-basis: 100%;
  2137. flex-grow: 1;
  2138. align-items: center; }
  2139. .navbar-toggler {
  2140. padding: 0.25rem 0.75rem;
  2141. font-size: 1.25rem;
  2142. line-height: 1;
  2143. background-color: transparent;
  2144. border: 1px solid transparent;
  2145. border-radius: 0.25rem; }
  2146. .navbar-toggler:hover, .navbar-toggler:focus {
  2147. text-decoration: none; }
  2148. .navbar-toggler:not(:disabled):not(.disabled) {
  2149. cursor: pointer; }
  2150. .navbar-toggler-icon {
  2151. display: inline-block;
  2152. width: 1.5em;
  2153. height: 1.5em;
  2154. vertical-align: middle;
  2155. content: "";
  2156. background: no-repeat center center;
  2157. background-size: 100% 100%; }
  2158. @media (max-width: 575.98px) {
  2159. .navbar-expand-sm > .container,
  2160. .navbar-expand-sm > .container-fluid {
  2161. padding-right: 0;
  2162. padding-left: 0; } }
  2163. @media (min-width: 576px) {
  2164. .navbar-expand-sm {
  2165. flex-flow: row nowrap;
  2166. justify-content: flex-start; }
  2167. .navbar-expand-sm .navbar-nav {
  2168. flex-direction: row; }
  2169. .navbar-expand-sm .navbar-nav .dropdown-menu {
  2170. position: absolute; }
  2171. .navbar-expand-sm .navbar-nav .dropdown-menu-right {
  2172. right: 0;
  2173. left: auto; }
  2174. .navbar-expand-sm .navbar-nav .nav-link {
  2175. padding-right: 0.5rem;
  2176. padding-left: 0.5rem; }
  2177. .navbar-expand-sm > .container,
  2178. .navbar-expand-sm > .container-fluid {
  2179. flex-wrap: nowrap; }
  2180. .navbar-expand-sm .navbar-collapse {
  2181. display: flex !important;
  2182. flex-basis: auto; }
  2183. .navbar-expand-sm .navbar-toggler {
  2184. display: none; }
  2185. .navbar-expand-sm .dropup .dropdown-menu {
  2186. top: auto;
  2187. bottom: 100%; } }
  2188. @media (max-width: 767.98px) {
  2189. .navbar-expand-md > .container,
  2190. .navbar-expand-md > .container-fluid {
  2191. padding-right: 0;
  2192. padding-left: 0; } }
  2193. @media (min-width: 768px) {
  2194. .navbar-expand-md {
  2195. flex-flow: row nowrap;
  2196. justify-content: flex-start; }
  2197. .navbar-expand-md .navbar-nav {
  2198. flex-direction: row; }
  2199. .navbar-expand-md .navbar-nav .dropdown-menu {
  2200. position: absolute; }
  2201. .navbar-expand-md .navbar-nav .dropdown-menu-right {
  2202. right: 0;
  2203. left: auto; }
  2204. .navbar-expand-md .navbar-nav .nav-link {
  2205. padding-right: 0.5rem;
  2206. padding-left: 0.5rem; }
  2207. .navbar-expand-md > .container,
  2208. .navbar-expand-md > .container-fluid {
  2209. flex-wrap: nowrap; }
  2210. .navbar-expand-md .navbar-collapse {
  2211. display: flex !important;
  2212. flex-basis: auto; }
  2213. .navbar-expand-md .navbar-toggler {
  2214. display: none; }
  2215. .navbar-expand-md .dropup .dropdown-menu {
  2216. top: auto;
  2217. bottom: 100%; } }
  2218. @media (max-width: 991.98px) {
  2219. .navbar-expand-lg > .container,
  2220. .navbar-expand-lg > .container-fluid {
  2221. padding-right: 0;
  2222. padding-left: 0; } }
  2223. @media (min-width: 992px) {
  2224. .navbar-expand-lg {
  2225. flex-flow: row nowrap;
  2226. justify-content: flex-start; }
  2227. .navbar-expand-lg .navbar-nav {
  2228. flex-direction: row; }
  2229. .navbar-expand-lg .navbar-nav .dropdown-menu {
  2230. position: absolute; }
  2231. .navbar-expand-lg .navbar-nav .dropdown-menu-right {
  2232. right: 0;
  2233. left: auto; }
  2234. .navbar-expand-lg .navbar-nav .nav-link {
  2235. padding-right: 0.5rem;
  2236. padding-left: 0.5rem; }
  2237. .navbar-expand-lg > .container,
  2238. .navbar-expand-lg > .container-fluid {
  2239. flex-wrap: nowrap; }
  2240. .navbar-expand-lg .navbar-collapse {
  2241. display: flex !important;
  2242. flex-basis: auto; }
  2243. .navbar-expand-lg .navbar-toggler {
  2244. display: none; }
  2245. .navbar-expand-lg .dropup .dropdown-menu {
  2246. top: auto;
  2247. bottom: 100%; } }
  2248. @media (max-width: 1199.98px) {
  2249. .navbar-expand-xl > .container,
  2250. .navbar-expand-xl > .container-fluid {
  2251. padding-right: 0;
  2252. padding-left: 0; } }
  2253. @media (min-width: 1200px) {
  2254. .navbar-expand-xl {
  2255. flex-flow: row nowrap;
  2256. justify-content: flex-start; }
  2257. .navbar-expand-xl .navbar-nav {
  2258. flex-direction: row; }
  2259. .navbar-expand-xl .navbar-nav .dropdown-menu {
  2260. position: absolute; }
  2261. .navbar-expand-xl .navbar-nav .dropdown-menu-right {
  2262. right: 0;
  2263. left: auto; }
  2264. .navbar-expand-xl .navbar-nav .nav-link {
  2265. padding-right: 0.5rem;
  2266. padding-left: 0.5rem; }
  2267. .navbar-expand-xl > .container,
  2268. .navbar-expand-xl > .container-fluid {
  2269. flex-wrap: nowrap; }
  2270. .navbar-expand-xl .navbar-collapse {
  2271. display: flex !important;
  2272. flex-basis: auto; }
  2273. .navbar-expand-xl .navbar-toggler {
  2274. display: none; }
  2275. .navbar-expand-xl .dropup .dropdown-menu {
  2276. top: auto;
  2277. bottom: 100%; } }
  2278. .navbar-expand {
  2279. flex-flow: row nowrap;
  2280. justify-content: flex-start; }
  2281. .navbar-expand > .container,
  2282. .navbar-expand > .container-fluid {
  2283. padding-right: 0;
  2284. padding-left: 0; }
  2285. .navbar-expand .navbar-nav {
  2286. flex-direction: row; }
  2287. .navbar-expand .navbar-nav .dropdown-menu {
  2288. position: absolute; }
  2289. .navbar-expand .navbar-nav .dropdown-menu-right {
  2290. right: 0;
  2291. left: auto; }
  2292. .navbar-expand .navbar-nav .nav-link {
  2293. padding-right: 0.5rem;
  2294. padding-left: 0.5rem; }
  2295. .navbar-expand > .container,
  2296. .navbar-expand > .container-fluid {
  2297. flex-wrap: nowrap; }
  2298. .navbar-expand .navbar-collapse {
  2299. display: flex !important;
  2300. flex-basis: auto; }
  2301. .navbar-expand .navbar-toggler {
  2302. display: none; }
  2303. .navbar-expand .dropup .dropdown-menu {
  2304. top: auto;
  2305. bottom: 100%; }
  2306. .navbar-light .navbar-brand {
  2307. color: rgba(0, 0, 0, 0.9); }
  2308. .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  2309. color: rgba(0, 0, 0, 0.9); }
  2310. .navbar-light .navbar-nav .nav-link {
  2311. color: rgba(0, 0, 0, 0.5); }
  2312. .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  2313. color: rgba(0, 0, 0, 0.7); }
  2314. .navbar-light .navbar-nav .nav-link.disabled {
  2315. color: rgba(0, 0, 0, 0.3); }
  2316. .navbar-light .navbar-nav .show > .nav-link,
  2317. .navbar-light .navbar-nav .active > .nav-link,
  2318. .navbar-light .navbar-nav .nav-link.show,
  2319. .navbar-light .navbar-nav .nav-link.active {
  2320. color: rgba(0, 0, 0, 0.9); }
  2321. .navbar-light .navbar-toggler {
  2322. color: rgba(0, 0, 0, 0.5);
  2323. border-color: rgba(0, 0, 0, 0.1); }
  2324. .navbar-light .navbar-toggler-icon {
  2325. background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); }
  2326. .navbar-light .navbar-text {
  2327. color: rgba(0, 0, 0, 0.5); }
  2328. .navbar-light .navbar-text a {
  2329. color: rgba(0, 0, 0, 0.9); }
  2330. .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  2331. color: rgba(0, 0, 0, 0.9); }
  2332. .navbar-dark .navbar-brand {
  2333. color: #fff; }
  2334. .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  2335. color: #fff; }
  2336. .navbar-dark .navbar-nav .nav-link {
  2337. color: rgba(255, 255, 255, 0.5); }
  2338. .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  2339. color: rgba(255, 255, 255, 0.75); }
  2340. .navbar-dark .navbar-nav .nav-link.disabled {
  2341. color: rgba(255, 255, 255, 0.25); }
  2342. .navbar-dark .navbar-nav .show > .nav-link,
  2343. .navbar-dark .navbar-nav .active > .nav-link,
  2344. .navbar-dark .navbar-nav .nav-link.show,
  2345. .navbar-dark .navbar-nav .nav-link.active {
  2346. color: #fff; }
  2347. .navbar-dark .navbar-toggler {
  2348. color: rgba(255, 255, 255, 0.5);
  2349. border-color: rgba(255, 255, 255, 0.1); }
  2350. .navbar-dark .navbar-toggler-icon {
  2351. background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); }
  2352. .navbar-dark .navbar-text {
  2353. color: rgba(255, 255, 255, 0.5); }
  2354. .navbar-dark .navbar-text a {
  2355. color: #fff; }
  2356. .navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  2357. color: #fff; }
  2358. .badge {
  2359. display: inline-block;
  2360. padding: 0.25em 0.4em;
  2361. font-size: 75%;
  2362. font-weight: 700;
  2363. line-height: 1;
  2364. text-align: center;
  2365. white-space: nowrap;
  2366. vertical-align: baseline;
  2367. border-radius: 0.25rem; }
  2368. .badge:empty {
  2369. display: none; }
  2370. .btn .badge {
  2371. position: relative;
  2372. top: -1px; }
  2373. .badge-pill {
  2374. padding-right: 0.6em;
  2375. padding-left: 0.6em;
  2376. border-radius: 10rem; }
  2377. .badge-primary {
  2378. color: #fff;
  2379. background-color: #007bff; }
  2380. .badge-primary[href]:hover, .badge-primary[href]:focus {
  2381. color: #fff;
  2382. text-decoration: none;
  2383. background-color: #0062cc; }
  2384. .badge-secondary {
  2385. color: #fff;
  2386. background-color: #6c757d; }
  2387. .badge-secondary[href]:hover, .badge-secondary[href]:focus {
  2388. color: #fff;
  2389. text-decoration: none;
  2390. background-color: #545b62; }
  2391. .badge-success {
  2392. color: #fff;
  2393. background-color: #28a745; }
  2394. .badge-success[href]:hover, .badge-success[href]:focus {
  2395. color: #fff;
  2396. text-decoration: none;
  2397. background-color: #1e7e34; }
  2398. .badge-info {
  2399. color: #fff;
  2400. background-color: #17a2b8; }
  2401. .badge-info[href]:hover, .badge-info[href]:focus {
  2402. color: #fff;
  2403. text-decoration: none;
  2404. background-color: #117a8b; }
  2405. .badge-warning {
  2406. color: #212529;
  2407. background-color: #ffc107; }
  2408. .badge-warning[href]:hover, .badge-warning[href]:focus {
  2409. color: #212529;
  2410. text-decoration: none;
  2411. background-color: #d39e00; }
  2412. .badge-danger {
  2413. color: #fff;
  2414. background-color: #dc3545; }
  2415. .badge-danger[href]:hover, .badge-danger[href]:focus {
  2416. color: #fff;
  2417. text-decoration: none;
  2418. background-color: #bd2130; }
  2419. .badge-light {
  2420. color: #212529;
  2421. background-color: #f8f9fa; }
  2422. .badge-light[href]:hover, .badge-light[href]:focus {
  2423. color: #212529;
  2424. text-decoration: none;
  2425. background-color: #dae0e5; }
  2426. .badge-dark {
  2427. color: #fff;
  2428. background-color: #343a40; }
  2429. .badge-dark[href]:hover, .badge-dark[href]:focus {
  2430. color: #fff;
  2431. text-decoration: none;
  2432. background-color: #1d2124; }
  2433. .media {
  2434. display: flex;
  2435. align-items: flex-start; }
  2436. .media-body {
  2437. flex: 1; }
  2438. .list-group {
  2439. display: flex;
  2440. flex-direction: column;
  2441. padding-left: 0;
  2442. margin-bottom: 0; }
  2443. .list-group-item-action {
  2444. width: 100%;
  2445. color: #495057;
  2446. text-align: inherit; }
  2447. .list-group-item-action:hover, .list-group-item-action:focus {
  2448. color: #495057;
  2449. text-decoration: none;
  2450. background-color: #f8f9fa; }
  2451. .list-group-item-action:active {
  2452. color: #212529;
  2453. background-color: #e9ecef; }
  2454. .list-group-item {
  2455. position: relative;
  2456. display: block;
  2457. padding: 0.75rem 1.25rem;
  2458. margin-bottom: -1px;
  2459. background-color: #fff;
  2460. border: 1px solid rgba(0, 0, 0, 0.125); }
  2461. .list-group-item:first-child {
  2462. border-top-left-radius: 0.25rem;
  2463. border-top-right-radius: 0.25rem; }
  2464. .list-group-item:last-child {
  2465. margin-bottom: 0;
  2466. border-bottom-right-radius: 0.25rem;
  2467. border-bottom-left-radius: 0.25rem; }
  2468. .list-group-item:hover, .list-group-item:focus {
  2469. z-index: 1;
  2470. text-decoration: none; }
  2471. .list-group-item.disabled, .list-group-item:disabled {
  2472. color: #6c757d;
  2473. background-color: #fff; }
  2474. .list-group-item.active {
  2475. z-index: 2;
  2476. color: #fff;
  2477. background-color: #007bff;
  2478. border-color: #007bff; }
  2479. .list-group-flush .list-group-item {
  2480. border-right: 0;
  2481. border-left: 0;
  2482. border-radius: 0; }
  2483. .list-group-flush:first-child .list-group-item:first-child {
  2484. border-top: 0; }
  2485. .list-group-flush:last-child .list-group-item:last-child {
  2486. border-bottom: 0; }
  2487. .list-group-item-primary {
  2488. color: #004085;
  2489. background-color: #b8daff; }
  2490. .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  2491. color: #004085;
  2492. background-color: #9fcdff; }
  2493. .list-group-item-primary.list-group-item-action.active {
  2494. color: #fff;
  2495. background-color: #004085;
  2496. border-color: #004085; }
  2497. .list-group-item-secondary {
  2498. color: #383d41;
  2499. background-color: #d6d8db; }
  2500. .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  2501. color: #383d41;
  2502. background-color: #c8cbcf; }
  2503. .list-group-item-secondary.list-group-item-action.active {
  2504. color: #fff;
  2505. background-color: #383d41;
  2506. border-color: #383d41; }
  2507. .list-group-item-success {
  2508. color: #155724;
  2509. background-color: #c3e6cb; }
  2510. .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  2511. color: #155724;
  2512. background-color: #b1dfbb; }
  2513. .list-group-item-success.list-group-item-action.active {
  2514. color: #fff;
  2515. background-color: #155724;
  2516. border-color: #155724; }
  2517. .list-group-item-info {
  2518. color: #0c5460;
  2519. background-color: #bee5eb; }
  2520. .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  2521. color: #0c5460;
  2522. background-color: #abdde5; }
  2523. .list-group-item-info.list-group-item-action.active {
  2524. color: #fff;
  2525. background-color: #0c5460;
  2526. border-color: #0c5460; }
  2527. .list-group-item-warning {
  2528. color: #856404;
  2529. background-color: #ffeeba; }
  2530. .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  2531. color: #856404;
  2532. background-color: #ffe8a1; }
  2533. .list-group-item-warning.list-group-item-action.active {
  2534. color: #fff;
  2535. background-color: #856404;
  2536. border-color: #856404; }
  2537. .list-group-item-danger {
  2538. color: #721c24;
  2539. background-color: #f5c6cb; }
  2540. .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  2541. color: #721c24;
  2542. background-color: #f1b0b7; }
  2543. .list-group-item-danger.list-group-item-action.active {
  2544. color: #fff;
  2545. background-color: #721c24;
  2546. border-color: #721c24; }
  2547. .list-group-item-light {
  2548. color: #818182;
  2549. background-color: #fdfdfe; }
  2550. .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  2551. color: #818182;
  2552. background-color: #ececf6; }
  2553. .list-group-item-light.list-group-item-action.active {
  2554. color: #fff;
  2555. background-color: #818182;
  2556. border-color: #818182; }
  2557. .list-group-item-dark {
  2558. color: #1b1e21;
  2559. background-color: #c6c8ca; }
  2560. .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  2561. color: #1b1e21;
  2562. background-color: #b9bbbe; }
  2563. .list-group-item-dark.list-group-item-action.active {
  2564. color: #fff;
  2565. background-color: #1b1e21;
  2566. border-color: #1b1e21; }
  2567. .close {
  2568. float: right;
  2569. font-size: 1.5rem;
  2570. font-weight: 700;
  2571. line-height: 1;
  2572. color: #000;
  2573. text-shadow: 0 1px 0 #fff;
  2574. opacity: .5; }
  2575. .close:hover, .close:focus {
  2576. color: #000;
  2577. text-decoration: none;
  2578. opacity: .75; }
  2579. .close:not(:disabled):not(.disabled) {
  2580. cursor: pointer; }
  2581. button.close {
  2582. padding: 0;
  2583. background-color: transparent;
  2584. border: 0;
  2585. -webkit-appearance: none; }
  2586. .align-baseline {
  2587. vertical-align: baseline !important; }
  2588. .align-top {
  2589. vertical-align: top !important; }
  2590. .align-middle {
  2591. vertical-align: middle !important; }
  2592. .align-bottom {
  2593. vertical-align: bottom !important; }
  2594. .align-text-bottom {
  2595. vertical-align: text-bottom !important; }
  2596. .align-text-top {
  2597. vertical-align: text-top !important; }
  2598. .bg-primary {
  2599. background-color: #007bff !important; }
  2600. a.bg-primary:hover, a.bg-primary:focus,
  2601. button.bg-primary:hover,
  2602. button.bg-primary:focus {
  2603. background-color: #0062cc !important; }
  2604. .bg-secondary {
  2605. background-color: #6c757d !important; }
  2606. a.bg-secondary:hover, a.bg-secondary:focus,
  2607. button.bg-secondary:hover,
  2608. button.bg-secondary:focus {
  2609. background-color: #545b62 !important; }
  2610. .bg-success {
  2611. background-color: #28a745 !important; }
  2612. a.bg-success:hover, a.bg-success:focus,
  2613. button.bg-success:hover,
  2614. button.bg-success:focus {
  2615. background-color: #1e7e34 !important; }
  2616. .bg-info {
  2617. background-color: #17a2b8 !important; }
  2618. a.bg-info:hover, a.bg-info:focus,
  2619. button.bg-info:hover,
  2620. button.bg-info:focus {
  2621. background-color: #117a8b !important; }
  2622. .bg-warning {
  2623. background-color: #ffc107 !important; }
  2624. a.bg-warning:hover, a.bg-warning:focus,
  2625. button.bg-warning:hover,
  2626. button.bg-warning:focus {
  2627. background-color: #d39e00 !important; }
  2628. .bg-danger {
  2629. background-color: #dc3545 !important; }
  2630. a.bg-danger:hover, a.bg-danger:focus,
  2631. button.bg-danger:hover,
  2632. button.bg-danger:focus {
  2633. background-color: #bd2130 !important; }
  2634. .bg-light {
  2635. background-color: #f8f9fa !important; }
  2636. a.bg-light:hover, a.bg-light:focus,
  2637. button.bg-light:hover,
  2638. button.bg-light:focus {
  2639. background-color: #dae0e5 !important; }
  2640. .bg-dark {
  2641. background-color: #343a40 !important; }
  2642. a.bg-dark:hover, a.bg-dark:focus,
  2643. button.bg-dark:hover,
  2644. button.bg-dark:focus {
  2645. background-color: #1d2124 !important; }
  2646. .bg-white {
  2647. background-color: #fff !important; }
  2648. .bg-transparent {
  2649. background-color: transparent !important; }
  2650. .border {
  2651. border: 1px solid #dee2e6 !important; }
  2652. .border-top {
  2653. border-top: 1px solid #dee2e6 !important; }
  2654. .border-right {
  2655. border-right: 1px solid #dee2e6 !important; }
  2656. .border-bottom {
  2657. border-bottom: 1px solid #dee2e6 !important; }
  2658. .border-left {
  2659. border-left: 1px solid #dee2e6 !important; }
  2660. .border-0 {
  2661. border: 0 !important; }
  2662. .border-top-0 {
  2663. border-top: 0 !important; }
  2664. .border-right-0 {
  2665. border-right: 0 !important; }
  2666. .border-bottom-0 {
  2667. border-bottom: 0 !important; }
  2668. .border-left-0 {
  2669. border-left: 0 !important; }
  2670. .border-primary {
  2671. border-color: #007bff !important; }
  2672. .border-secondary {
  2673. border-color: #6c757d !important; }
  2674. .border-success {
  2675. border-color: #28a745 !important; }
  2676. .border-info {
  2677. border-color: #17a2b8 !important; }
  2678. .border-warning {
  2679. border-color: #ffc107 !important; }
  2680. .border-danger {
  2681. border-color: #dc3545 !important; }
  2682. .border-light {
  2683. border-color: #f8f9fa !important; }
  2684. .border-dark {
  2685. border-color: #343a40 !important; }
  2686. .border-white {
  2687. border-color: #fff !important; }
  2688. .rounded {
  2689. border-radius: 0.25rem !important; }
  2690. .rounded-top {
  2691. border-top-left-radius: 0.25rem !important;
  2692. border-top-right-radius: 0.25rem !important; }
  2693. .rounded-right {
  2694. border-top-right-radius: 0.25rem !important;
  2695. border-bottom-right-radius: 0.25rem !important; }
  2696. .rounded-bottom {
  2697. border-bottom-right-radius: 0.25rem !important;
  2698. border-bottom-left-radius: 0.25rem !important; }
  2699. .rounded-left {
  2700. border-top-left-radius: 0.25rem !important;
  2701. border-bottom-left-radius: 0.25rem !important; }
  2702. .rounded-circle {
  2703. border-radius: 50% !important; }
  2704. .rounded-0 {
  2705. border-radius: 0 !important; }
  2706. .clearfix::after {
  2707. display: block;
  2708. clear: both;
  2709. content: ""; }
  2710. .d-none {
  2711. display: none !important; }
  2712. .d-inline {
  2713. display: inline !important; }
  2714. .d-inline-block {
  2715. display: inline-block !important; }
  2716. .d-block {
  2717. display: block !important; }
  2718. .d-table {
  2719. display: table !important; }
  2720. .d-table-row {
  2721. display: table-row !important; }
  2722. .d-table-cell {
  2723. display: table-cell !important; }
  2724. .d-flex {
  2725. display: flex !important; }
  2726. .d-inline-flex {
  2727. display: inline-flex !important; }
  2728. @media (min-width: 576px) {
  2729. .d-sm-none {
  2730. display: none !important; }
  2731. .d-sm-inline {
  2732. display: inline !important; }
  2733. .d-sm-inline-block {
  2734. display: inline-block !important; }
  2735. .d-sm-block {
  2736. display: block !important; }
  2737. .d-sm-table {
  2738. display: table !important; }
  2739. .d-sm-table-row {
  2740. display: table-row !important; }
  2741. .d-sm-table-cell {
  2742. display: table-cell !important; }
  2743. .d-sm-flex {
  2744. display: flex !important; }
  2745. .d-sm-inline-flex {
  2746. display: inline-flex !important; } }
  2747. @media (min-width: 768px) {
  2748. .d-md-none {
  2749. display: none !important; }
  2750. .d-md-inline {
  2751. display: inline !important; }
  2752. .d-md-inline-block {
  2753. display: inline-block !important; }
  2754. .d-md-block {
  2755. display: block !important; }
  2756. .d-md-table {
  2757. display: table !important; }
  2758. .d-md-table-row {
  2759. display: table-row !important; }
  2760. .d-md-table-cell {
  2761. display: table-cell !important; }
  2762. .d-md-flex {
  2763. display: flex !important; }
  2764. .d-md-inline-flex {
  2765. display: inline-flex !important; } }
  2766. @media (min-width: 992px) {
  2767. .d-lg-none {
  2768. display: none !important; }
  2769. .d-lg-inline {
  2770. display: inline !important; }
  2771. .d-lg-inline-block {
  2772. display: inline-block !important; }
  2773. .d-lg-block {
  2774. display: block !important; }
  2775. .d-lg-table {
  2776. display: table !important; }
  2777. .d-lg-table-row {
  2778. display: table-row !important; }
  2779. .d-lg-table-cell {
  2780. display: table-cell !important; }
  2781. .d-lg-flex {
  2782. display: flex !important; }
  2783. .d-lg-inline-flex {
  2784. display: inline-flex !important; } }
  2785. @media (min-width: 1200px) {
  2786. .d-xl-none {
  2787. display: none !important; }
  2788. .d-xl-inline {
  2789. display: inline !important; }
  2790. .d-xl-inline-block {
  2791. display: inline-block !important; }
  2792. .d-xl-block {
  2793. display: block !important; }
  2794. .d-xl-table {
  2795. display: table !important; }
  2796. .d-xl-table-row {
  2797. display: table-row !important; }
  2798. .d-xl-table-cell {
  2799. display: table-cell !important; }
  2800. .d-xl-flex {
  2801. display: flex !important; }
  2802. .d-xl-inline-flex {
  2803. display: inline-flex !important; } }
  2804. @media print {
  2805. .d-print-none {
  2806. display: none !important; }
  2807. .d-print-inline {
  2808. display: inline !important; }
  2809. .d-print-inline-block {
  2810. display: inline-block !important; }
  2811. .d-print-block {
  2812. display: block !important; }
  2813. .d-print-table {
  2814. display: table !important; }
  2815. .d-print-table-row {
  2816. display: table-row !important; }
  2817. .d-print-table-cell {
  2818. display: table-cell !important; }
  2819. .d-print-flex {
  2820. display: flex !important; }
  2821. .d-print-inline-flex {
  2822. display: inline-flex !important; } }
  2823. .embed-responsive {
  2824. position: relative;
  2825. display: block;
  2826. width: 100%;
  2827. padding: 0;
  2828. overflow: hidden; }
  2829. .embed-responsive::before {
  2830. display: block;
  2831. content: ""; }
  2832. .embed-responsive .embed-responsive-item,
  2833. .embed-responsive iframe,
  2834. .embed-responsive embed,
  2835. .embed-responsive object,
  2836. .embed-responsive video {
  2837. position: absolute;
  2838. top: 0;
  2839. bottom: 0;
  2840. left: 0;
  2841. width: 100%;
  2842. height: 100%;
  2843. border: 0; }
  2844. .embed-responsive-21by9::before {
  2845. padding-top: 42.8571428571%; }
  2846. .embed-responsive-16by9::before {
  2847. padding-top: 56.25%; }
  2848. .embed-responsive-4by3::before {
  2849. padding-top: 75%; }
  2850. .embed-responsive-1by1::before {
  2851. padding-top: 100%; }
  2852. .flex-row {
  2853. flex-direction: row !important; }
  2854. .flex-column {
  2855. flex-direction: column !important; }
  2856. .flex-row-reverse {
  2857. flex-direction: row-reverse !important; }
  2858. .flex-column-reverse {
  2859. flex-direction: column-reverse !important; }
  2860. .flex-wrap {
  2861. flex-wrap: wrap !important; }
  2862. .flex-nowrap {
  2863. flex-wrap: nowrap !important; }
  2864. .flex-wrap-reverse {
  2865. flex-wrap: wrap-reverse !important; }
  2866. .justify-content-start {
  2867. justify-content: flex-start !important; }
  2868. .justify-content-end {
  2869. justify-content: flex-end !important; }
  2870. .justify-content-center {
  2871. justify-content: center !important; }
  2872. .justify-content-between {
  2873. justify-content: space-between !important; }
  2874. .justify-content-around {
  2875. justify-content: space-around !important; }
  2876. .align-items-start {
  2877. align-items: flex-start !important; }
  2878. .align-items-end {
  2879. align-items: flex-end !important; }
  2880. .align-items-center {
  2881. align-items: center !important; }
  2882. .align-items-baseline {
  2883. align-items: baseline !important; }
  2884. .align-items-stretch {
  2885. align-items: stretch !important; }
  2886. .align-content-start {
  2887. align-content: flex-start !important; }
  2888. .align-content-end {
  2889. align-content: flex-end !important; }
  2890. .align-content-center {
  2891. align-content: center !important; }
  2892. .align-content-between {
  2893. align-content: space-between !important; }
  2894. .align-content-around {
  2895. align-content: space-around !important; }
  2896. .align-content-stretch {
  2897. align-content: stretch !important; }
  2898. .align-self-auto {
  2899. align-self: auto !important; }
  2900. .align-self-start {
  2901. align-self: flex-start !important; }
  2902. .align-self-end {
  2903. align-self: flex-end !important; }
  2904. .align-self-center {
  2905. align-self: center !important; }
  2906. .align-self-baseline {
  2907. align-self: baseline !important; }
  2908. .align-self-stretch {
  2909. align-self: stretch !important; }
  2910. @media (min-width: 576px) {
  2911. .flex-sm-row {
  2912. flex-direction: row !important; }
  2913. .flex-sm-column {
  2914. flex-direction: column !important; }
  2915. .flex-sm-row-reverse {
  2916. flex-direction: row-reverse !important; }
  2917. .flex-sm-column-reverse {
  2918. flex-direction: column-reverse !important; }
  2919. .flex-sm-wrap {
  2920. flex-wrap: wrap !important; }
  2921. .flex-sm-nowrap {
  2922. flex-wrap: nowrap !important; }
  2923. .flex-sm-wrap-reverse {
  2924. flex-wrap: wrap-reverse !important; }
  2925. .justify-content-sm-start {
  2926. justify-content: flex-start !important; }
  2927. .justify-content-sm-end {
  2928. justify-content: flex-end !important; }
  2929. .justify-content-sm-center {
  2930. justify-content: center !important; }
  2931. .justify-content-sm-between {
  2932. justify-content: space-between !important; }
  2933. .justify-content-sm-around {
  2934. justify-content: space-around !important; }
  2935. .align-items-sm-start {
  2936. align-items: flex-start !important; }
  2937. .align-items-sm-end {
  2938. align-items: flex-end !important; }
  2939. .align-items-sm-center {
  2940. align-items: center !important; }
  2941. .align-items-sm-baseline {
  2942. align-items: baseline !important; }
  2943. .align-items-sm-stretch {
  2944. align-items: stretch !important; }
  2945. .align-content-sm-start {
  2946. align-content: flex-start !important; }
  2947. .align-content-sm-end {
  2948. align-content: flex-end !important; }
  2949. .align-content-sm-center {
  2950. align-content: center !important; }
  2951. .align-content-sm-between {
  2952. align-content: space-between !important; }
  2953. .align-content-sm-around {
  2954. align-content: space-around !important; }
  2955. .align-content-sm-stretch {
  2956. align-content: stretch !important; }
  2957. .align-self-sm-auto {
  2958. align-self: auto !important; }
  2959. .align-self-sm-start {
  2960. align-self: flex-start !important; }
  2961. .align-self-sm-end {
  2962. align-self: flex-end !important; }
  2963. .align-self-sm-center {
  2964. align-self: center !important; }
  2965. .align-self-sm-baseline {
  2966. align-self: baseline !important; }
  2967. .align-self-sm-stretch {
  2968. align-self: stretch !important; } }
  2969. @media (min-width: 768px) {
  2970. .flex-md-row {
  2971. flex-direction: row !important; }
  2972. .flex-md-column {
  2973. flex-direction: column !important; }
  2974. .flex-md-row-reverse {
  2975. flex-direction: row-reverse !important; }
  2976. .flex-md-column-reverse {
  2977. flex-direction: column-reverse !important; }
  2978. .flex-md-wrap {
  2979. flex-wrap: wrap !important; }
  2980. .flex-md-nowrap {
  2981. flex-wrap: nowrap !important; }
  2982. .flex-md-wrap-reverse {
  2983. flex-wrap: wrap-reverse !important; }
  2984. .justify-content-md-start {
  2985. justify-content: flex-start !important; }
  2986. .justify-content-md-end {
  2987. justify-content: flex-end !important; }
  2988. .justify-content-md-center {
  2989. justify-content: center !important; }
  2990. .justify-content-md-between {
  2991. justify-content: space-between !important; }
  2992. .justify-content-md-around {
  2993. justify-content: space-around !important; }
  2994. .align-items-md-start {
  2995. align-items: flex-start !important; }
  2996. .align-items-md-end {
  2997. align-items: flex-end !important; }
  2998. .align-items-md-center {
  2999. align-items: center !important; }
  3000. .align-items-md-baseline {
  3001. align-items: baseline !important; }
  3002. .align-items-md-stretch {
  3003. align-items: stretch !important; }
  3004. .align-content-md-start {
  3005. align-content: flex-start !important; }
  3006. .align-content-md-end {
  3007. align-content: flex-end !important; }
  3008. .align-content-md-center {
  3009. align-content: center !important; }
  3010. .align-content-md-between {
  3011. align-content: space-between !important; }
  3012. .align-content-md-around {
  3013. align-content: space-around !important; }
  3014. .align-content-md-stretch {
  3015. align-content: stretch !important; }
  3016. .align-self-md-auto {
  3017. align-self: auto !important; }
  3018. .align-self-md-start {
  3019. align-self: flex-start !important; }
  3020. .align-self-md-end {
  3021. align-self: flex-end !important; }
  3022. .align-self-md-center {
  3023. align-self: center !important; }
  3024. .align-self-md-baseline {
  3025. align-self: baseline !important; }
  3026. .align-self-md-stretch {
  3027. align-self: stretch !important; } }
  3028. @media (min-width: 992px) {
  3029. .flex-lg-row {
  3030. flex-direction: row !important; }
  3031. .flex-lg-column {
  3032. flex-direction: column !important; }
  3033. .flex-lg-row-reverse {
  3034. flex-direction: row-reverse !important; }
  3035. .flex-lg-column-reverse {
  3036. flex-direction: column-reverse !important; }
  3037. .flex-lg-wrap {
  3038. flex-wrap: wrap !important; }
  3039. .flex-lg-nowrap {
  3040. flex-wrap: nowrap !important; }
  3041. .flex-lg-wrap-reverse {
  3042. flex-wrap: wrap-reverse !important; }
  3043. .justify-content-lg-start {
  3044. justify-content: flex-start !important; }
  3045. .justify-content-lg-end {
  3046. justify-content: flex-end !important; }
  3047. .justify-content-lg-center {
  3048. justify-content: center !important; }
  3049. .justify-content-lg-between {
  3050. justify-content: space-between !important; }
  3051. .justify-content-lg-around {
  3052. justify-content: space-around !important; }
  3053. .align-items-lg-start {
  3054. align-items: flex-start !important; }
  3055. .align-items-lg-end {
  3056. align-items: flex-end !important; }
  3057. .align-items-lg-center {
  3058. align-items: center !important; }
  3059. .align-items-lg-baseline {
  3060. align-items: baseline !important; }
  3061. .align-items-lg-stretch {
  3062. align-items: stretch !important; }
  3063. .align-content-lg-start {
  3064. align-content: flex-start !important; }
  3065. .align-content-lg-end {
  3066. align-content: flex-end !important; }
  3067. .align-content-lg-center {
  3068. align-content: center !important; }
  3069. .align-content-lg-between {
  3070. align-content: space-between !important; }
  3071. .align-content-lg-around {
  3072. align-content: space-around !important; }
  3073. .align-content-lg-stretch {
  3074. align-content: stretch !important; }
  3075. .align-self-lg-auto {
  3076. align-self: auto !important; }
  3077. .align-self-lg-start {
  3078. align-self: flex-start !important; }
  3079. .align-self-lg-end {
  3080. align-self: flex-end !important; }
  3081. .align-self-lg-center {
  3082. align-self: center !important; }
  3083. .align-self-lg-baseline {
  3084. align-self: baseline !important; }
  3085. .align-self-lg-stretch {
  3086. align-self: stretch !important; } }
  3087. @media (min-width: 1200px) {
  3088. .flex-xl-row {
  3089. flex-direction: row !important; }
  3090. .flex-xl-column {
  3091. flex-direction: column !important; }
  3092. .flex-xl-row-reverse {
  3093. flex-direction: row-reverse !important; }
  3094. .flex-xl-column-reverse {
  3095. flex-direction: column-reverse !important; }
  3096. .flex-xl-wrap {
  3097. flex-wrap: wrap !important; }
  3098. .flex-xl-nowrap {
  3099. flex-wrap: nowrap !important; }
  3100. .flex-xl-wrap-reverse {
  3101. flex-wrap: wrap-reverse !important; }
  3102. .justify-content-xl-start {
  3103. justify-content: flex-start !important; }
  3104. .justify-content-xl-end {
  3105. justify-content: flex-end !important; }
  3106. .justify-content-xl-center {
  3107. justify-content: center !important; }
  3108. .justify-content-xl-between {
  3109. justify-content: space-between !important; }
  3110. .justify-content-xl-around {
  3111. justify-content: space-around !important; }
  3112. .align-items-xl-start {
  3113. align-items: flex-start !important; }
  3114. .align-items-xl-end {
  3115. align-items: flex-end !important; }
  3116. .align-items-xl-center {
  3117. align-items: center !important; }
  3118. .align-items-xl-baseline {
  3119. align-items: baseline !important; }
  3120. .align-items-xl-stretch {
  3121. align-items: stretch !important; }
  3122. .align-content-xl-start {
  3123. align-content: flex-start !important; }
  3124. .align-content-xl-end {
  3125. align-content: flex-end !important; }
  3126. .align-content-xl-center {
  3127. align-content: center !important; }
  3128. .align-content-xl-between {
  3129. align-content: space-between !important; }
  3130. .align-content-xl-around {
  3131. align-content: space-around !important; }
  3132. .align-content-xl-stretch {
  3133. align-content: stretch !important; }
  3134. .align-self-xl-auto {
  3135. align-self: auto !important; }
  3136. .align-self-xl-start {
  3137. align-self: flex-start !important; }
  3138. .align-self-xl-end {
  3139. align-self: flex-end !important; }
  3140. .align-self-xl-center {
  3141. align-self: center !important; }
  3142. .align-self-xl-baseline {
  3143. align-self: baseline !important; }
  3144. .align-self-xl-stretch {
  3145. align-self: stretch !important; } }
  3146. .float-left {
  3147. float: left !important; }
  3148. .float-right {
  3149. float: right !important; }
  3150. .float-none {
  3151. float: none !important; }
  3152. @media (min-width: 576px) {
  3153. .float-sm-left {
  3154. float: left !important; }
  3155. .float-sm-right {
  3156. float: right !important; }
  3157. .float-sm-none {
  3158. float: none !important; } }
  3159. @media (min-width: 768px) {
  3160. .float-md-left {
  3161. float: left !important; }
  3162. .float-md-right {
  3163. float: right !important; }
  3164. .float-md-none {
  3165. float: none !important; } }
  3166. @media (min-width: 992px) {
  3167. .float-lg-left {
  3168. float: left !important; }
  3169. .float-lg-right {
  3170. float: right !important; }
  3171. .float-lg-none {
  3172. float: none !important; } }
  3173. @media (min-width: 1200px) {
  3174. .float-xl-left {
  3175. float: left !important; }
  3176. .float-xl-right {
  3177. float: right !important; }
  3178. .float-xl-none {
  3179. float: none !important; } }
  3180. .position-static {
  3181. position: static !important; }
  3182. .position-relative {
  3183. position: relative !important; }
  3184. .position-absolute {
  3185. position: absolute !important; }
  3186. .position-fixed {
  3187. position: fixed !important; }
  3188. .position-sticky {
  3189. position: sticky !important; }
  3190. .fixed-top {
  3191. position: fixed;
  3192. top: 0;
  3193. right: 0;
  3194. left: 0;
  3195. z-index: 1030; }
  3196. .fixed-bottom {
  3197. position: fixed;
  3198. right: 0;
  3199. bottom: 0;
  3200. left: 0;
  3201. z-index: 1030; }
  3202. @supports (position: sticky) {
  3203. .sticky-top {
  3204. position: sticky;
  3205. top: 0;
  3206. z-index: 1020; } }
  3207. .sr-only {
  3208. position: absolute;
  3209. width: 1px;
  3210. height: 1px;
  3211. padding: 0;
  3212. overflow: hidden;
  3213. clip: rect(0, 0, 0, 0);
  3214. white-space: nowrap;
  3215. clip-path: inset(50%);
  3216. border: 0; }
  3217. .sr-only-focusable:active, .sr-only-focusable:focus {
  3218. position: static;
  3219. width: auto;
  3220. height: auto;
  3221. overflow: visible;
  3222. clip: auto;
  3223. white-space: normal;
  3224. clip-path: none; }
  3225. .w-25 {
  3226. width: 25% !important; }
  3227. .w-50 {
  3228. width: 50% !important; }
  3229. .w-75 {
  3230. width: 75% !important; }
  3231. .w-100 {
  3232. width: 100% !important; }
  3233. .h-25 {
  3234. height: 25% !important; }
  3235. .h-50 {
  3236. height: 50% !important; }
  3237. .h-75 {
  3238. height: 75% !important; }
  3239. .h-100 {
  3240. height: 100% !important; }
  3241. .mw-100 {
  3242. max-width: 100% !important; }
  3243. .mh-100 {
  3244. max-height: 100% !important; }
  3245. .m-0 {
  3246. margin: 0 !important; }
  3247. .mt-0,
  3248. .my-0 {
  3249. margin-top: 0 !important; }
  3250. .mr-0,
  3251. .mx-0 {
  3252. margin-right: 0 !important; }
  3253. .mb-0,
  3254. .my-0 {
  3255. margin-bottom: 0 !important; }
  3256. .ml-0,
  3257. .mx-0 {
  3258. margin-left: 0 !important; }
  3259. .m-1 {
  3260. margin: 0.25rem !important; }
  3261. .mt-1,
  3262. .my-1 {
  3263. margin-top: 0.25rem !important; }
  3264. .mr-1,
  3265. .mx-1 {
  3266. margin-right: 0.25rem !important; }
  3267. .mb-1,
  3268. .my-1 {
  3269. margin-bottom: 0.25rem !important; }
  3270. .ml-1,
  3271. .mx-1 {
  3272. margin-left: 0.25rem !important; }
  3273. .m-2 {
  3274. margin: 0.5rem !important; }
  3275. .mt-2,
  3276. .my-2 {
  3277. margin-top: 0.5rem !important; }
  3278. .mr-2,
  3279. .mx-2 {
  3280. margin-right: 0.5rem !important; }
  3281. .mb-2,
  3282. .my-2 {
  3283. margin-bottom: 0.5rem !important; }
  3284. .ml-2,
  3285. .mx-2 {
  3286. margin-left: 0.5rem !important; }
  3287. .m-3 {
  3288. margin: 1rem !important; }
  3289. .mt-3,
  3290. .my-3 {
  3291. margin-top: 1rem !important; }
  3292. .mr-3,
  3293. .mx-3 {
  3294. margin-right: 1rem !important; }
  3295. .mb-3,
  3296. .my-3 {
  3297. margin-bottom: 1rem !important; }
  3298. .ml-3,
  3299. .mx-3 {
  3300. margin-left: 1rem !important; }
  3301. .m-4 {
  3302. margin: 1.5rem !important; }
  3303. .mt-4,
  3304. .my-4 {
  3305. margin-top: 1.5rem !important; }
  3306. .mr-4,
  3307. .mx-4 {
  3308. margin-right: 1.5rem !important; }
  3309. .mb-4,
  3310. .my-4 {
  3311. margin-bottom: 1.5rem !important; }
  3312. .ml-4,
  3313. .mx-4 {
  3314. margin-left: 1.5rem !important; }
  3315. .m-5 {
  3316. margin: 3rem !important; }
  3317. .mt-5,
  3318. .my-5 {
  3319. margin-top: 3rem !important; }
  3320. .mr-5,
  3321. .mx-5 {
  3322. margin-right: 3rem !important; }
  3323. .mb-5,
  3324. .my-5 {
  3325. margin-bottom: 3rem !important; }
  3326. .ml-5,
  3327. .mx-5 {
  3328. margin-left: 3rem !important; }
  3329. .p-0 {
  3330. padding: 0 !important; }
  3331. .pt-0,
  3332. .py-0 {
  3333. padding-top: 0 !important; }
  3334. .pr-0,
  3335. .px-0 {
  3336. padding-right: 0 !important; }
  3337. .pb-0,
  3338. .py-0 {
  3339. padding-bottom: 0 !important; }
  3340. .pl-0,
  3341. .px-0 {
  3342. padding-left: 0 !important; }
  3343. .p-1 {
  3344. padding: 0.25rem !important; }
  3345. .pt-1,
  3346. .py-1 {
  3347. padding-top: 0.25rem !important; }
  3348. .pr-1,
  3349. .px-1 {
  3350. padding-right: 0.25rem !important; }
  3351. .pb-1,
  3352. .py-1 {
  3353. padding-bottom: 0.25rem !important; }
  3354. .pl-1,
  3355. .px-1 {
  3356. padding-left: 0.25rem !important; }
  3357. .p-2 {
  3358. padding: 0.5rem !important; }
  3359. .pt-2,
  3360. .py-2 {
  3361. padding-top: 0.5rem !important; }
  3362. .pr-2,
  3363. .px-2 {
  3364. padding-right: 0.5rem !important; }
  3365. .pb-2,
  3366. .py-2 {
  3367. padding-bottom: 0.5rem !important; }
  3368. .pl-2,
  3369. .px-2 {
  3370. padding-left: 0.5rem !important; }
  3371. .p-3 {
  3372. padding: 1rem !important; }
  3373. .pt-3,
  3374. .py-3 {
  3375. padding-top: 1rem !important; }
  3376. .pr-3,
  3377. .px-3 {
  3378. padding-right: 1rem !important; }
  3379. .pb-3,
  3380. .py-3 {
  3381. padding-bottom: 1rem !important; }
  3382. .pl-3,
  3383. .px-3 {
  3384. padding-left: 1rem !important; }
  3385. .p-4 {
  3386. padding: 1.5rem !important; }
  3387. .pt-4,
  3388. .py-4 {
  3389. padding-top: 1.5rem !important; }
  3390. .pr-4,
  3391. .px-4 {
  3392. padding-right: 1.5rem !important; }
  3393. .pb-4,
  3394. .py-4 {
  3395. padding-bottom: 1.5rem !important; }
  3396. .pl-4,
  3397. .px-4 {
  3398. padding-left: 1.5rem !important; }
  3399. .p-5 {
  3400. padding: 3rem !important; }
  3401. .pt-5,
  3402. .py-5 {
  3403. padding-top: 3rem !important; }
  3404. .pr-5,
  3405. .px-5 {
  3406. padding-right: 3rem !important; }
  3407. .pb-5,
  3408. .py-5 {
  3409. padding-bottom: 3rem !important; }
  3410. .pl-5,
  3411. .px-5 {
  3412. padding-left: 3rem !important; }
  3413. .m-auto {
  3414. margin: auto !important; }
  3415. .mt-auto,
  3416. .my-auto {
  3417. margin-top: auto !important; }
  3418. .mr-auto,
  3419. .mx-auto {
  3420. margin-right: auto !important; }
  3421. .mb-auto,
  3422. .my-auto {
  3423. margin-bottom: auto !important; }
  3424. .ml-auto,
  3425. .mx-auto {
  3426. margin-left: auto !important; }
  3427. @media (min-width: 576px) {
  3428. .m-sm-0 {
  3429. margin: 0 !important; }
  3430. .mt-sm-0,
  3431. .my-sm-0 {
  3432. margin-top: 0 !important; }
  3433. .mr-sm-0,
  3434. .mx-sm-0 {
  3435. margin-right: 0 !important; }
  3436. .mb-sm-0,
  3437. .my-sm-0 {
  3438. margin-bottom: 0 !important; }
  3439. .ml-sm-0,
  3440. .mx-sm-0 {
  3441. margin-left: 0 !important; }
  3442. .m-sm-1 {
  3443. margin: 0.25rem !important; }
  3444. .mt-sm-1,
  3445. .my-sm-1 {
  3446. margin-top: 0.25rem !important; }
  3447. .mr-sm-1,
  3448. .mx-sm-1 {
  3449. margin-right: 0.25rem !important; }
  3450. .mb-sm-1,
  3451. .my-sm-1 {
  3452. margin-bottom: 0.25rem !important; }
  3453. .ml-sm-1,
  3454. .mx-sm-1 {
  3455. margin-left: 0.25rem !important; }
  3456. .m-sm-2 {
  3457. margin: 0.5rem !important; }
  3458. .mt-sm-2,
  3459. .my-sm-2 {
  3460. margin-top: 0.5rem !important; }
  3461. .mr-sm-2,
  3462. .mx-sm-2 {
  3463. margin-right: 0.5rem !important; }
  3464. .mb-sm-2,
  3465. .my-sm-2 {
  3466. margin-bottom: 0.5rem !important; }
  3467. .ml-sm-2,
  3468. .mx-sm-2 {
  3469. margin-left: 0.5rem !important; }
  3470. .m-sm-3 {
  3471. margin: 1rem !important; }
  3472. .mt-sm-3,
  3473. .my-sm-3 {
  3474. margin-top: 1rem !important; }
  3475. .mr-sm-3,
  3476. .mx-sm-3 {
  3477. margin-right: 1rem !important; }
  3478. .mb-sm-3,
  3479. .my-sm-3 {
  3480. margin-bottom: 1rem !important; }
  3481. .ml-sm-3,
  3482. .mx-sm-3 {
  3483. margin-left: 1rem !important; }
  3484. .m-sm-4 {
  3485. margin: 1.5rem !important; }
  3486. .mt-sm-4,
  3487. .my-sm-4 {
  3488. margin-top: 1.5rem !important; }
  3489. .mr-sm-4,
  3490. .mx-sm-4 {
  3491. margin-right: 1.5rem !important; }
  3492. .mb-sm-4,
  3493. .my-sm-4 {
  3494. margin-bottom: 1.5rem !important; }
  3495. .ml-sm-4,
  3496. .mx-sm-4 {
  3497. margin-left: 1.5rem !important; }
  3498. .m-sm-5 {
  3499. margin: 3rem !important; }
  3500. .mt-sm-5,
  3501. .my-sm-5 {
  3502. margin-top: 3rem !important; }
  3503. .mr-sm-5,
  3504. .mx-sm-5 {
  3505. margin-right: 3rem !important; }
  3506. .mb-sm-5,
  3507. .my-sm-5 {
  3508. margin-bottom: 3rem !important; }
  3509. .ml-sm-5,
  3510. .mx-sm-5 {
  3511. margin-left: 3rem !important; }
  3512. .p-sm-0 {
  3513. padding: 0 !important; }
  3514. .pt-sm-0,
  3515. .py-sm-0 {
  3516. padding-top: 0 !important; }
  3517. .pr-sm-0,
  3518. .px-sm-0 {
  3519. padding-right: 0 !important; }
  3520. .pb-sm-0,
  3521. .py-sm-0 {
  3522. padding-bottom: 0 !important; }
  3523. .pl-sm-0,
  3524. .px-sm-0 {
  3525. padding-left: 0 !important; }
  3526. .p-sm-1 {
  3527. padding: 0.25rem !important; }
  3528. .pt-sm-1,
  3529. .py-sm-1 {
  3530. padding-top: 0.25rem !important; }
  3531. .pr-sm-1,
  3532. .px-sm-1 {
  3533. padding-right: 0.25rem !important; }
  3534. .pb-sm-1,
  3535. .py-sm-1 {
  3536. padding-bottom: 0.25rem !important; }
  3537. .pl-sm-1,
  3538. .px-sm-1 {
  3539. padding-left: 0.25rem !important; }
  3540. .p-sm-2 {
  3541. padding: 0.5rem !important; }
  3542. .pt-sm-2,
  3543. .py-sm-2 {
  3544. padding-top: 0.5rem !important; }
  3545. .pr-sm-2,
  3546. .px-sm-2 {
  3547. padding-right: 0.5rem !important; }
  3548. .pb-sm-2,
  3549. .py-sm-2 {
  3550. padding-bottom: 0.5rem !important; }
  3551. .pl-sm-2,
  3552. .px-sm-2 {
  3553. padding-left: 0.5rem !important; }
  3554. .p-sm-3 {
  3555. padding: 1rem !important; }
  3556. .pt-sm-3,
  3557. .py-sm-3 {
  3558. padding-top: 1rem !important; }
  3559. .pr-sm-3,
  3560. .px-sm-3 {
  3561. padding-right: 1rem !important; }
  3562. .pb-sm-3,
  3563. .py-sm-3 {
  3564. padding-bottom: 1rem !important; }
  3565. .pl-sm-3,
  3566. .px-sm-3 {
  3567. padding-left: 1rem !important; }
  3568. .p-sm-4 {
  3569. padding: 1.5rem !important; }
  3570. .pt-sm-4,
  3571. .py-sm-4 {
  3572. padding-top: 1.5rem !important; }
  3573. .pr-sm-4,
  3574. .px-sm-4 {
  3575. padding-right: 1.5rem !important; }
  3576. .pb-sm-4,
  3577. .py-sm-4 {
  3578. padding-bottom: 1.5rem !important; }
  3579. .pl-sm-4,
  3580. .px-sm-4 {
  3581. padding-left: 1.5rem !important; }
  3582. .p-sm-5 {
  3583. padding: 3rem !important; }
  3584. .pt-sm-5,
  3585. .py-sm-5 {
  3586. padding-top: 3rem !important; }
  3587. .pr-sm-5,
  3588. .px-sm-5 {
  3589. padding-right: 3rem !important; }
  3590. .pb-sm-5,
  3591. .py-sm-5 {
  3592. padding-bottom: 3rem !important; }
  3593. .pl-sm-5,
  3594. .px-sm-5 {
  3595. padding-left: 3rem !important; }
  3596. .m-sm-auto {
  3597. margin: auto !important; }
  3598. .mt-sm-auto,
  3599. .my-sm-auto {
  3600. margin-top: auto !important; }
  3601. .mr-sm-auto,
  3602. .mx-sm-auto {
  3603. margin-right: auto !important; }
  3604. .mb-sm-auto,
  3605. .my-sm-auto {
  3606. margin-bottom: auto !important; }
  3607. .ml-sm-auto,
  3608. .mx-sm-auto {
  3609. margin-left: auto !important; } }
  3610. @media (min-width: 768px) {
  3611. .m-md-0 {
  3612. margin: 0 !important; }
  3613. .mt-md-0,
  3614. .my-md-0 {
  3615. margin-top: 0 !important; }
  3616. .mr-md-0,
  3617. .mx-md-0 {
  3618. margin-right: 0 !important; }
  3619. .mb-md-0,
  3620. .my-md-0 {
  3621. margin-bottom: 0 !important; }
  3622. .ml-md-0,
  3623. .mx-md-0 {
  3624. margin-left: 0 !important; }
  3625. .m-md-1 {
  3626. margin: 0.25rem !important; }
  3627. .mt-md-1,
  3628. .my-md-1 {
  3629. margin-top: 0.25rem !important; }
  3630. .mr-md-1,
  3631. .mx-md-1 {
  3632. margin-right: 0.25rem !important; }
  3633. .mb-md-1,
  3634. .my-md-1 {
  3635. margin-bottom: 0.25rem !important; }
  3636. .ml-md-1,
  3637. .mx-md-1 {
  3638. margin-left: 0.25rem !important; }
  3639. .m-md-2 {
  3640. margin: 0.5rem !important; }
  3641. .mt-md-2,
  3642. .my-md-2 {
  3643. margin-top: 0.5rem !important; }
  3644. .mr-md-2,
  3645. .mx-md-2 {
  3646. margin-right: 0.5rem !important; }
  3647. .mb-md-2,
  3648. .my-md-2 {
  3649. margin-bottom: 0.5rem !important; }
  3650. .ml-md-2,
  3651. .mx-md-2 {
  3652. margin-left: 0.5rem !important; }
  3653. .m-md-3 {
  3654. margin: 1rem !important; }
  3655. .mt-md-3,
  3656. .my-md-3 {
  3657. margin-top: 1rem !important; }
  3658. .mr-md-3,
  3659. .mx-md-3 {
  3660. margin-right: 1rem !important; }
  3661. .mb-md-3,
  3662. .my-md-3 {
  3663. margin-bottom: 1rem !important; }
  3664. .ml-md-3,
  3665. .mx-md-3 {
  3666. margin-left: 1rem !important; }
  3667. .m-md-4 {
  3668. margin: 1.5rem !important; }
  3669. .mt-md-4,
  3670. .my-md-4 {
  3671. margin-top: 1.5rem !important; }
  3672. .mr-md-4,
  3673. .mx-md-4 {
  3674. margin-right: 1.5rem !important; }
  3675. .mb-md-4,
  3676. .my-md-4 {
  3677. margin-bottom: 1.5rem !important; }
  3678. .ml-md-4,
  3679. .mx-md-4 {
  3680. margin-left: 1.5rem !important; }
  3681. .m-md-5 {
  3682. margin: 3rem !important; }
  3683. .mt-md-5,
  3684. .my-md-5 {
  3685. margin-top: 3rem !important; }
  3686. .mr-md-5,
  3687. .mx-md-5 {
  3688. margin-right: 3rem !important; }
  3689. .mb-md-5,
  3690. .my-md-5 {
  3691. margin-bottom: 3rem !important; }
  3692. .ml-md-5,
  3693. .mx-md-5 {
  3694. margin-left: 3rem !important; }
  3695. .p-md-0 {
  3696. padding: 0 !important; }
  3697. .pt-md-0,
  3698. .py-md-0 {
  3699. padding-top: 0 !important; }
  3700. .pr-md-0,
  3701. .px-md-0 {
  3702. padding-right: 0 !important; }
  3703. .pb-md-0,
  3704. .py-md-0 {
  3705. padding-bottom: 0 !important; }
  3706. .pl-md-0,
  3707. .px-md-0 {
  3708. padding-left: 0 !important; }
  3709. .p-md-1 {
  3710. padding: 0.25rem !important; }
  3711. .pt-md-1,
  3712. .py-md-1 {
  3713. padding-top: 0.25rem !important; }
  3714. .pr-md-1,
  3715. .px-md-1 {
  3716. padding-right: 0.25rem !important; }
  3717. .pb-md-1,
  3718. .py-md-1 {
  3719. padding-bottom: 0.25rem !important; }
  3720. .pl-md-1,
  3721. .px-md-1 {
  3722. padding-left: 0.25rem !important; }
  3723. .p-md-2 {
  3724. padding: 0.5rem !important; }
  3725. .pt-md-2,
  3726. .py-md-2 {
  3727. padding-top: 0.5rem !important; }
  3728. .pr-md-2,
  3729. .px-md-2 {
  3730. padding-right: 0.5rem !important; }
  3731. .pb-md-2,
  3732. .py-md-2 {
  3733. padding-bottom: 0.5rem !important; }
  3734. .pl-md-2,
  3735. .px-md-2 {
  3736. padding-left: 0.5rem !important; }
  3737. .p-md-3 {
  3738. padding: 1rem !important; }
  3739. .pt-md-3,
  3740. .py-md-3 {
  3741. padding-top: 1rem !important; }
  3742. .pr-md-3,
  3743. .px-md-3 {
  3744. padding-right: 1rem !important; }
  3745. .pb-md-3,
  3746. .py-md-3 {
  3747. padding-bottom: 1rem !important; }
  3748. .pl-md-3,
  3749. .px-md-3 {
  3750. padding-left: 1rem !important; }
  3751. .p-md-4 {
  3752. padding: 1.5rem !important; }
  3753. .pt-md-4,
  3754. .py-md-4 {
  3755. padding-top: 1.5rem !important; }
  3756. .pr-md-4,
  3757. .px-md-4 {
  3758. padding-right: 1.5rem !important; }
  3759. .pb-md-4,
  3760. .py-md-4 {
  3761. padding-bottom: 1.5rem !important; }
  3762. .pl-md-4,
  3763. .px-md-4 {
  3764. padding-left: 1.5rem !important; }
  3765. .p-md-5 {
  3766. padding: 3rem !important; }
  3767. .pt-md-5,
  3768. .py-md-5 {
  3769. padding-top: 3rem !important; }
  3770. .pr-md-5,
  3771. .px-md-5 {
  3772. padding-right: 3rem !important; }
  3773. .pb-md-5,
  3774. .py-md-5 {
  3775. padding-bottom: 3rem !important; }
  3776. .pl-md-5,
  3777. .px-md-5 {
  3778. padding-left: 3rem !important; }
  3779. .m-md-auto {
  3780. margin: auto !important; }
  3781. .mt-md-auto,
  3782. .my-md-auto {
  3783. margin-top: auto !important; }
  3784. .mr-md-auto,
  3785. .mx-md-auto {
  3786. margin-right: auto !important; }
  3787. .mb-md-auto,
  3788. .my-md-auto {
  3789. margin-bottom: auto !important; }
  3790. .ml-md-auto,
  3791. .mx-md-auto {
  3792. margin-left: auto !important; } }
  3793. @media (min-width: 992px) {
  3794. .m-lg-0 {
  3795. margin: 0 !important; }
  3796. .mt-lg-0,
  3797. .my-lg-0 {
  3798. margin-top: 0 !important; }
  3799. .mr-lg-0,
  3800. .mx-lg-0 {
  3801. margin-right: 0 !important; }
  3802. .mb-lg-0,
  3803. .my-lg-0 {
  3804. margin-bottom: 0 !important; }
  3805. .ml-lg-0,
  3806. .mx-lg-0 {
  3807. margin-left: 0 !important; }
  3808. .m-lg-1 {
  3809. margin: 0.25rem !important; }
  3810. .mt-lg-1,
  3811. .my-lg-1 {
  3812. margin-top: 0.25rem !important; }
  3813. .mr-lg-1,
  3814. .mx-lg-1 {
  3815. margin-right: 0.25rem !important; }
  3816. .mb-lg-1,
  3817. .my-lg-1 {
  3818. margin-bottom: 0.25rem !important; }
  3819. .ml-lg-1,
  3820. .mx-lg-1 {
  3821. margin-left: 0.25rem !important; }
  3822. .m-lg-2 {
  3823. margin: 0.5rem !important; }
  3824. .mt-lg-2,
  3825. .my-lg-2 {
  3826. margin-top: 0.5rem !important; }
  3827. .mr-lg-2,
  3828. .mx-lg-2 {
  3829. margin-right: 0.5rem !important; }
  3830. .mb-lg-2,
  3831. .my-lg-2 {
  3832. margin-bottom: 0.5rem !important; }
  3833. .ml-lg-2,
  3834. .mx-lg-2 {
  3835. margin-left: 0.5rem !important; }
  3836. .m-lg-3 {
  3837. margin: 1rem !important; }
  3838. .mt-lg-3,
  3839. .my-lg-3 {
  3840. margin-top: 1rem !important; }
  3841. .mr-lg-3,
  3842. .mx-lg-3 {
  3843. margin-right: 1rem !important; }
  3844. .mb-lg-3,
  3845. .my-lg-3 {
  3846. margin-bottom: 1rem !important; }
  3847. .ml-lg-3,
  3848. .mx-lg-3 {
  3849. margin-left: 1rem !important; }
  3850. .m-lg-4 {
  3851. margin: 1.5rem !important; }
  3852. .mt-lg-4,
  3853. .my-lg-4 {
  3854. margin-top: 1.5rem !important; }
  3855. .mr-lg-4,
  3856. .mx-lg-4 {
  3857. margin-right: 1.5rem !important; }
  3858. .mb-lg-4,
  3859. .my-lg-4 {
  3860. margin-bottom: 1.5rem !important; }
  3861. .ml-lg-4,
  3862. .mx-lg-4 {
  3863. margin-left: 1.5rem !important; }
  3864. .m-lg-5 {
  3865. margin: 3rem !important; }
  3866. .mt-lg-5,
  3867. .my-lg-5 {
  3868. margin-top: 3rem !important; }
  3869. .mr-lg-5,
  3870. .mx-lg-5 {
  3871. margin-right: 3rem !important; }
  3872. .mb-lg-5,
  3873. .my-lg-5 {
  3874. margin-bottom: 3rem !important; }
  3875. .ml-lg-5,
  3876. .mx-lg-5 {
  3877. margin-left: 3rem !important; }
  3878. .p-lg-0 {
  3879. padding: 0 !important; }
  3880. .pt-lg-0,
  3881. .py-lg-0 {
  3882. padding-top: 0 !important; }
  3883. .pr-lg-0,
  3884. .px-lg-0 {
  3885. padding-right: 0 !important; }
  3886. .pb-lg-0,
  3887. .py-lg-0 {
  3888. padding-bottom: 0 !important; }
  3889. .pl-lg-0,
  3890. .px-lg-0 {
  3891. padding-left: 0 !important; }
  3892. .p-lg-1 {
  3893. padding: 0.25rem !important; }
  3894. .pt-lg-1,
  3895. .py-lg-1 {
  3896. padding-top: 0.25rem !important; }
  3897. .pr-lg-1,
  3898. .px-lg-1 {
  3899. padding-right: 0.25rem !important; }
  3900. .pb-lg-1,
  3901. .py-lg-1 {
  3902. padding-bottom: 0.25rem !important; }
  3903. .pl-lg-1,
  3904. .px-lg-1 {
  3905. padding-left: 0.25rem !important; }
  3906. .p-lg-2 {
  3907. padding: 0.5rem !important; }
  3908. .pt-lg-2,
  3909. .py-lg-2 {
  3910. padding-top: 0.5rem !important; }
  3911. .pr-lg-2,
  3912. .px-lg-2 {
  3913. padding-right: 0.5rem !important; }
  3914. .pb-lg-2,
  3915. .py-lg-2 {
  3916. padding-bottom: 0.5rem !important; }
  3917. .pl-lg-2,
  3918. .px-lg-2 {
  3919. padding-left: 0.5rem !important; }
  3920. .p-lg-3 {
  3921. padding: 1rem !important; }
  3922. .pt-lg-3,
  3923. .py-lg-3 {
  3924. padding-top: 1rem !important; }
  3925. .pr-lg-3,
  3926. .px-lg-3 {
  3927. padding-right: 1rem !important; }
  3928. .pb-lg-3,
  3929. .py-lg-3 {
  3930. padding-bottom: 1rem !important; }
  3931. .pl-lg-3,
  3932. .px-lg-3 {
  3933. padding-left: 1rem !important; }
  3934. .p-lg-4 {
  3935. padding: 1.5rem !important; }
  3936. .pt-lg-4,
  3937. .py-lg-4 {
  3938. padding-top: 1.5rem !important; }
  3939. .pr-lg-4,
  3940. .px-lg-4 {
  3941. padding-right: 1.5rem !important; }
  3942. .pb-lg-4,
  3943. .py-lg-4 {
  3944. padding-bottom: 1.5rem !important; }
  3945. .pl-lg-4,
  3946. .px-lg-4 {
  3947. padding-left: 1.5rem !important; }
  3948. .p-lg-5 {
  3949. padding: 3rem !important; }
  3950. .pt-lg-5,
  3951. .py-lg-5 {
  3952. padding-top: 3rem !important; }
  3953. .pr-lg-5,
  3954. .px-lg-5 {
  3955. padding-right: 3rem !important; }
  3956. .pb-lg-5,
  3957. .py-lg-5 {
  3958. padding-bottom: 3rem !important; }
  3959. .pl-lg-5,
  3960. .px-lg-5 {
  3961. padding-left: 3rem !important; }
  3962. .m-lg-auto {
  3963. margin: auto !important; }
  3964. .mt-lg-auto,
  3965. .my-lg-auto {
  3966. margin-top: auto !important; }
  3967. .mr-lg-auto,
  3968. .mx-lg-auto {
  3969. margin-right: auto !important; }
  3970. .mb-lg-auto,
  3971. .my-lg-auto {
  3972. margin-bottom: auto !important; }
  3973. .ml-lg-auto,
  3974. .mx-lg-auto {
  3975. margin-left: auto !important; } }
  3976. @media (min-width: 1200px) {
  3977. .m-xl-0 {
  3978. margin: 0 !important; }
  3979. .mt-xl-0,
  3980. .my-xl-0 {
  3981. margin-top: 0 !important; }
  3982. .mr-xl-0,
  3983. .mx-xl-0 {
  3984. margin-right: 0 !important; }
  3985. .mb-xl-0,
  3986. .my-xl-0 {
  3987. margin-bottom: 0 !important; }
  3988. .ml-xl-0,
  3989. .mx-xl-0 {
  3990. margin-left: 0 !important; }
  3991. .m-xl-1 {
  3992. margin: 0.25rem !important; }
  3993. .mt-xl-1,
  3994. .my-xl-1 {
  3995. margin-top: 0.25rem !important; }
  3996. .mr-xl-1,
  3997. .mx-xl-1 {
  3998. margin-right: 0.25rem !important; }
  3999. .mb-xl-1,
  4000. .my-xl-1 {
  4001. margin-bottom: 0.25rem !important; }
  4002. .ml-xl-1,
  4003. .mx-xl-1 {
  4004. margin-left: 0.25rem !important; }
  4005. .m-xl-2 {
  4006. margin: 0.5rem !important; }
  4007. .mt-xl-2,
  4008. .my-xl-2 {
  4009. margin-top: 0.5rem !important; }
  4010. .mr-xl-2,
  4011. .mx-xl-2 {
  4012. margin-right: 0.5rem !important; }
  4013. .mb-xl-2,
  4014. .my-xl-2 {
  4015. margin-bottom: 0.5rem !important; }
  4016. .ml-xl-2,
  4017. .mx-xl-2 {
  4018. margin-left: 0.5rem !important; }
  4019. .m-xl-3 {
  4020. margin: 1rem !important; }
  4021. .mt-xl-3,
  4022. .my-xl-3 {
  4023. margin-top: 1rem !important; }
  4024. .mr-xl-3,
  4025. .mx-xl-3 {
  4026. margin-right: 1rem !important; }
  4027. .mb-xl-3,
  4028. .my-xl-3 {
  4029. margin-bottom: 1rem !important; }
  4030. .ml-xl-3,
  4031. .mx-xl-3 {
  4032. margin-left: 1rem !important; }
  4033. .m-xl-4 {
  4034. margin: 1.5rem !important; }
  4035. .mt-xl-4,
  4036. .my-xl-4 {
  4037. margin-top: 1.5rem !important; }
  4038. .mr-xl-4,
  4039. .mx-xl-4 {
  4040. margin-right: 1.5rem !important; }
  4041. .mb-xl-4,
  4042. .my-xl-4 {
  4043. margin-bottom: 1.5rem !important; }
  4044. .ml-xl-4,
  4045. .mx-xl-4 {
  4046. margin-left: 1.5rem !important; }
  4047. .m-xl-5 {
  4048. margin: 3rem !important; }
  4049. .mt-xl-5,
  4050. .my-xl-5 {
  4051. margin-top: 3rem !important; }
  4052. .mr-xl-5,
  4053. .mx-xl-5 {
  4054. margin-right: 3rem !important; }
  4055. .mb-xl-5,
  4056. .my-xl-5 {
  4057. margin-bottom: 3rem !important; }
  4058. .ml-xl-5,
  4059. .mx-xl-5 {
  4060. margin-left: 3rem !important; }
  4061. .p-xl-0 {
  4062. padding: 0 !important; }
  4063. .pt-xl-0,
  4064. .py-xl-0 {
  4065. padding-top: 0 !important; }
  4066. .pr-xl-0,
  4067. .px-xl-0 {
  4068. padding-right: 0 !important; }
  4069. .pb-xl-0,
  4070. .py-xl-0 {
  4071. padding-bottom: 0 !important; }
  4072. .pl-xl-0,
  4073. .px-xl-0 {
  4074. padding-left: 0 !important; }
  4075. .p-xl-1 {
  4076. padding: 0.25rem !important; }
  4077. .pt-xl-1,
  4078. .py-xl-1 {
  4079. padding-top: 0.25rem !important; }
  4080. .pr-xl-1,
  4081. .px-xl-1 {
  4082. padding-right: 0.25rem !important; }
  4083. .pb-xl-1,
  4084. .py-xl-1 {
  4085. padding-bottom: 0.25rem !important; }
  4086. .pl-xl-1,
  4087. .px-xl-1 {
  4088. padding-left: 0.25rem !important; }
  4089. .p-xl-2 {
  4090. padding: 0.5rem !important; }
  4091. .pt-xl-2,
  4092. .py-xl-2 {
  4093. padding-top: 0.5rem !important; }
  4094. .pr-xl-2,
  4095. .px-xl-2 {
  4096. padding-right: 0.5rem !important; }
  4097. .pb-xl-2,
  4098. .py-xl-2 {
  4099. padding-bottom: 0.5rem !important; }
  4100. .pl-xl-2,
  4101. .px-xl-2 {
  4102. padding-left: 0.5rem !important; }
  4103. .p-xl-3 {
  4104. padding: 1rem !important; }
  4105. .pt-xl-3,
  4106. .py-xl-3 {
  4107. padding-top: 1rem !important; }
  4108. .pr-xl-3,
  4109. .px-xl-3 {
  4110. padding-right: 1rem !important; }
  4111. .pb-xl-3,
  4112. .py-xl-3 {
  4113. padding-bottom: 1rem !important; }
  4114. .pl-xl-3,
  4115. .px-xl-3 {
  4116. padding-left: 1rem !important; }
  4117. .p-xl-4 {
  4118. padding: 1.5rem !important; }
  4119. .pt-xl-4,
  4120. .py-xl-4 {
  4121. padding-top: 1.5rem !important; }
  4122. .pr-xl-4,
  4123. .px-xl-4 {
  4124. padding-right: 1.5rem !important; }
  4125. .pb-xl-4,
  4126. .py-xl-4 {
  4127. padding-bottom: 1.5rem !important; }
  4128. .pl-xl-4,
  4129. .px-xl-4 {
  4130. padding-left: 1.5rem !important; }
  4131. .p-xl-5 {
  4132. padding: 3rem !important; }
  4133. .pt-xl-5,
  4134. .py-xl-5 {
  4135. padding-top: 3rem !important; }
  4136. .pr-xl-5,
  4137. .px-xl-5 {
  4138. padding-right: 3rem !important; }
  4139. .pb-xl-5,
  4140. .py-xl-5 {
  4141. padding-bottom: 3rem !important; }
  4142. .pl-xl-5,
  4143. .px-xl-5 {
  4144. padding-left: 3rem !important; }
  4145. .m-xl-auto {
  4146. margin: auto !important; }
  4147. .mt-xl-auto,
  4148. .my-xl-auto {
  4149. margin-top: auto !important; }
  4150. .mr-xl-auto,
  4151. .mx-xl-auto {
  4152. margin-right: auto !important; }
  4153. .mb-xl-auto,
  4154. .my-xl-auto {
  4155. margin-bottom: auto !important; }
  4156. .ml-xl-auto,
  4157. .mx-xl-auto {
  4158. margin-left: auto !important; } }
  4159. .text-justify {
  4160. text-align: justify !important; }
  4161. .text-nowrap {
  4162. white-space: nowrap !important; }
  4163. .text-truncate {
  4164. overflow: hidden;
  4165. text-overflow: ellipsis;
  4166. white-space: nowrap; }
  4167. .text-left {
  4168. text-align: left !important; }
  4169. .text-right {
  4170. text-align: right !important; }
  4171. .text-center {
  4172. text-align: center !important; }
  4173. @media (min-width: 576px) {
  4174. .text-sm-left {
  4175. text-align: left !important; }
  4176. .text-sm-right {
  4177. text-align: right !important; }
  4178. .text-sm-center {
  4179. text-align: center !important; } }
  4180. @media (min-width: 768px) {
  4181. .text-md-left {
  4182. text-align: left !important; }
  4183. .text-md-right {
  4184. text-align: right !important; }
  4185. .text-md-center {
  4186. text-align: center !important; } }
  4187. @media (min-width: 992px) {
  4188. .text-lg-left {
  4189. text-align: left !important; }
  4190. .text-lg-right {
  4191. text-align: right !important; }
  4192. .text-lg-center {
  4193. text-align: center !important; } }
  4194. @media (min-width: 1200px) {
  4195. .text-xl-left {
  4196. text-align: left !important; }
  4197. .text-xl-right {
  4198. text-align: right !important; }
  4199. .text-xl-center {
  4200. text-align: center !important; } }
  4201. .text-lowercase {
  4202. text-transform: lowercase !important; }
  4203. .text-uppercase {
  4204. text-transform: uppercase !important; }
  4205. .text-capitalize {
  4206. text-transform: capitalize !important; }
  4207. .font-weight-light {
  4208. font-weight: 300 !important; }
  4209. .font-weight-normal {
  4210. font-weight: 400 !important; }
  4211. .font-weight-bold {
  4212. font-weight: 700 !important; }
  4213. .font-italic {
  4214. font-style: italic !important; }
  4215. .text-white {
  4216. color: #fff !important; }
  4217. .text-primary {
  4218. color: #007bff !important; }
  4219. a.text-primary:hover, a.text-primary:focus {
  4220. color: #0062cc !important; }
  4221. .text-secondary {
  4222. color: #6c757d !important; }
  4223. a.text-secondary:hover, a.text-secondary:focus {
  4224. color: #545b62 !important; }
  4225. .text-success {
  4226. color: #28a745 !important; }
  4227. a.text-success:hover, a.text-success:focus {
  4228. color: #1e7e34 !important; }
  4229. .text-info {
  4230. color: #17a2b8 !important; }
  4231. a.text-info:hover, a.text-info:focus {
  4232. color: #117a8b !important; }
  4233. .text-warning {
  4234. color: #ffc107 !important; }
  4235. a.text-warning:hover, a.text-warning:focus {
  4236. color: #d39e00 !important; }
  4237. .text-danger {
  4238. color: #dc3545 !important; }
  4239. a.text-danger:hover, a.text-danger:focus {
  4240. color: #bd2130 !important; }
  4241. .text-light {
  4242. color: #f8f9fa !important; }
  4243. a.text-light:hover, a.text-light:focus {
  4244. color: #dae0e5 !important; }
  4245. .text-dark {
  4246. color: #343a40 !important; }
  4247. a.text-dark:hover, a.text-dark:focus {
  4248. color: #1d2124 !important; }
  4249. .text-muted {
  4250. color: #6c757d !important; }
  4251. .text-hide {
  4252. font: 0/0 a;
  4253. color: transparent;
  4254. text-shadow: none;
  4255. background-color: transparent;
  4256. border: 0; }
  4257. .visible {
  4258. visibility: visible !important; }
  4259. .invisible {
  4260. visibility: hidden !important; }
  4261. html {
  4262. width: 100%;
  4263. height: 100%; }
  4264. body {
  4265. width: 100%;
  4266. height: 100%;
  4267. font-family: "Lora", "Helvetica Neue", Helvetica, Arial, sans-serif;
  4268. color: #ffffff;
  4269. background-color: #211018; }
  4270. h1, h2, h3, h4, h5, h6 {
  4271. margin: 0 0 35px;
  4272. font-family: Futura,Helvetica,Trebuchet MS,Arial,sans-serif;
  4273. font-weight: normal;
  4274. letter-spacing: 1px; }
  4275. p {
  4276. margin: 0 0 25px;
  4277. font-size: 18px;
  4278. line-height: 1.5; }
  4279. @media (min-width: 767px) {
  4280. p {
  4281. margin: 0 0 35px;
  4282. font-size: 20px;
  4283. line-height: 1.6; } }
  4284. a {
  4285. color: #82B397;
  4286. -webkit-transition: all 0.2s ease-in-out;
  4287. -moz-transition: all 0.2s ease-in-out;
  4288. transition: all 0.2s ease-in-out; }
  4289. a:hover, a:focus {
  4290. text-decoration: none;
  4291. color: #00aaff; }
  4292. .light {
  4293. font-weight: 400; }
  4294. .navbar {
  4295. font-family: Futura,Helvetica,Trebuchet MS,Arial,sans-serif;
  4296. margin-bottom: 0;
  4297. background: transparent;
  4298. font-size: 95%;
  4299. font-weight: normal; }
  4300. .navbar .navbar-collapse {
  4301. justify-content: space-between; }
  4302. .navbar a {
  4303. color: white; }
  4304. .navbar-brand:focus {
  4305. outline: none; }
  4306. .navbar-custom a {
  4307. color: #ffffff; }
  4308. .navbar-custom .nav li a {
  4309. -webkit-transition: background 0.3s ease-in-out;
  4310. -moz-transition: background 0.3s ease-in-out;
  4311. transition: background 0.3s ease-in-out; }
  4312. .navbar-custom .nav li a:hover,
  4313. .navbar-custom .nav li a:focus,
  4314. .navbar-custom .nav li.active {
  4315. outline: none;
  4316. background-color: rgba(255, 255, 255, 0.2); }
  4317. .navbar-toggle {
  4318. padding: 4px 6px;
  4319. font-size: 16px;
  4320. color: #ffffff; }
  4321. .navbar-toggle:focus,
  4322. .navbar-toggle:active {
  4323. outline: none; }
  4324. @media (min-width: 767px) {
  4325. .navbar {
  4326. border-bottom: none;
  4327. letter-spacing: 1px;
  4328. background: transparent;
  4329. -webkit-transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
  4330. -moz-transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
  4331. transition: background 0.5s ease-in-out, padding 0.5s ease-in-out; }
  4332. .top-nav-collapse {
  4333. padding-top: 0;
  4334. padding-bottom: 0;
  4335. background-color: #211018; }
  4336. .navbar-custom.top-nav-collapse {
  4337. border-bottom: 1px solid rgba(255, 255, 255, 0.3); } }
  4338. @media (max-width: 480px) {
  4339. .navbar {
  4340. display: none; } }
  4341. .features-section,
  4342. .outro,
  4343. .intro {
  4344. width: 100%;
  4345. padding: 100px 0;
  4346. text-align: center;
  4347. color: #fff; }
  4348. .intro {
  4349. margin-top: -4em;
  4350. height: calc(100vh + 4em);
  4351. background: url(images/header.jpg) no-repeat bottom center scroll;
  4352. background-color: #211018;
  4353. -webkit-background-size: cover;
  4354. -moz-background-size: cover;
  4355. background-size: cover;
  4356. -o-background-size: cover; }
  4357. .features-section {
  4358. background: url("images/bgtr.svg") top right no-repeat, url("images/bgbl.svg") bottom left no-repeat, url("images/bgbl.svg") bottom left no-repeat, url("images/overlay.png"), linear-gradient(45deg, #85505f, #384955, #655361); }
  4359. .features-section a {
  4360. color: #82B397; }
  4361. .outro {
  4362. background: url("images/bgtr.svg") top right no-repeat, url("images/bgbl.svg") bottom left no-repeat, url("images/overlay.png"), linear-gradient(45deg, #384955, #655361, #85505f); }
  4363. section h2 {
  4364. color: #E7A151; }
  4365. section h3 {
  4366. color: #89B7CD; }
  4367. section h4 {
  4368. color: #5CBC86;
  4369. font-size: 1.5em; }
  4370. .brand-heading {
  4371. font-family: Futura,Helvetica,Trebuchet MS,Arial,sans-serif;
  4372. font-weight: normal;
  4373. font-size: 2em;
  4374. text-align: center;
  4375. margin-top: 1.5em; }
  4376. .brand-heading .icon-conversejs {
  4377. font-size: 60%; }
  4378. .brand-heading-embedded {
  4379. margin-top: 1.5em; }
  4380. .intro-text {
  4381. font-family: Futura,Helvetica,Trebuchet MS,Arial,sans-serif;
  4382. font-size: 18px; }
  4383. @media (min-width: 767px) {
  4384. .intro {
  4385. padding: 0; }
  4386. .brand-heading {
  4387. font-size: 80px; }
  4388. .intro-text {
  4389. font-size: 25px; } }
  4390. .btn-circle {
  4391. width: 70px;
  4392. height: 70px;
  4393. margin-top: 15px;
  4394. padding: 7px 16px;
  4395. border: 2px solid #ffffff;
  4396. border-radius: 35px;
  4397. font-size: 40px;
  4398. color: #ffffff;
  4399. background: transparent;
  4400. -webkit-transition: background 0.3s ease-in-out;
  4401. -moz-transition: background 0.3s ease-in-out;
  4402. transition: background 0.3s ease-in-out; }
  4403. .btn-circle:hover,
  4404. .btn-circle:focus {
  4405. outline: none;
  4406. color: #ffffff;
  4407. background: rgba(255, 255, 255, 0.1); }
  4408. .page-scroll .btn-circle i.animated {
  4409. -webkit-transition-property: -webkit-transform;
  4410. -webkit-transition-duration: 1s;
  4411. -moz-transition-property: -moz-transform;
  4412. -moz-transition-duration: 1s; }
  4413. .page-scroll .btn-circle:hover i.animated {
  4414. -webkit-animation-name: pulse;
  4415. -moz-animation-name: pulse;
  4416. -webkit-animation-duration: 1.5s;
  4417. -moz-animation-duration: 1.5s;
  4418. -webkit-animation-iteration-count: infinite;
  4419. -moz-animation-iteration-count: infinite;
  4420. -webkit-animation-timing-function: linear;
  4421. -moz-animation-timing-function: linear; }
  4422. .nav-item.active a {
  4423. color: #E7A151 !important; }
  4424. .content-section {
  4425. padding-top: 100px;
  4426. padding-top: 100px;
  4427. min-height: 100vh; }
  4428. .content-section .privacy-policy {
  4429. padding-top: 2em; }
  4430. .content-section .privacy-policy h4 {
  4431. padding-top: 1.5em; }
  4432. .content-section .privacy-policy p {
  4433. font-size: 1.2em;
  4434. padding-bottom: 0;
  4435. margin-bottom: 1em; }
  4436. .donate-section {
  4437. width: 100%;
  4438. padding: 50px 0;
  4439. color: #ffffff;
  4440. background-color: #211018; }
  4441. .donate-section p.bitcoin-header {
  4442. margin: 0 0 5px; }
  4443. @media (min-width: 767px) {
  4444. .content-section {
  4445. padding-bottom: 50px; }
  4446. .donate-section {
  4447. padding: 100px 0; } }
  4448. .btn {
  4449. font-family: Futura,Helvetica,Trebuchet MS,Arial,sans-serif;
  4450. font-weight: 400;
  4451. -webkit-transition: all 0.3s ease-in-out;
  4452. -moz-transition: all 0.3s ease-in-out;
  4453. transition: all 0.3s ease-in-out; }
  4454. .btn-default {
  4455. border: 1px solid #82B397;
  4456. color: #82B397;
  4457. background-color: transparent; }
  4458. .btn-default:hover,
  4459. .btn-default:focus {
  4460. border: 1px solid #82B397;
  4461. outline: none;
  4462. color: #211018;
  4463. background-color: #82B397; }
  4464. .btn-huge {
  4465. padding: 25px;
  4466. font-size: 26px; }
  4467. .banner-social-buttons {
  4468. padding-top: 3em; }
  4469. .banner-social-buttons a {
  4470. padding: 0.15em; }
  4471. .banner-social-buttons a i {
  4472. font-size: 115%; }
  4473. ::-moz-selection {
  4474. text-shadow: none;
  4475. background: #fcfcfc;
  4476. background: rgba(255, 255, 255, 0.2); }
  4477. ::selection {
  4478. text-shadow: none;
  4479. background: #fcfcfc;
  4480. background: rgba(255, 255, 255, 0.2); }
  4481. img::selection {
  4482. background: transparent; }
  4483. img::-moz-selection {
  4484. background: transparent; }
  4485. body {
  4486. webkit-tap-highlight-color: rgba(255, 255, 255, 0.2); }
  4487. ul.contact,
  4488. ul.integration,
  4489. ul.screencasts,
  4490. ul.features {
  4491. text-align: left;
  4492. font-size: 19px; }
  4493. .feature-icon {
  4494. display: inline-block;
  4495. position: relative;
  4496. padding-bottom: 5em;
  4497. margin-bottom: 2.75em;
  4498. cursor: default;
  4499. color: #fff; }
  4500. .feature-icon .fa {
  4501. display: inline-block;
  4502. width: 2em;
  4503. height: 2em;
  4504. font-size: 4em;
  4505. border-radius: 100%;
  4506. box-shadow: inset 0 0 0 1px white;
  4507. color: white;
  4508. line-height: 2.1em; }
  4509. .feature-icon:before {
  4510. content: '';
  4511. background: white;
  4512. position: absolute;
  4513. bottom: 0;
  4514. left: 50%;
  4515. margin-left: -0.325em;
  4516. width: 0.65em;
  4517. height: 0.65em;
  4518. display: block;
  4519. border-radius: 100%; }
  4520. .feature-icon:after {
  4521. content: '';
  4522. position: absolute;
  4523. left: 50%;
  4524. bottom: 0.65em;
  4525. width: 1px;
  4526. height: 4.35em;
  4527. background: white;
  4528. margin-left: -0.5px; }
  4529. .row {
  4530. margin-left: 0;
  4531. margin-right: 0; }
  4532. .mastodon {
  4533. width: 3.6em;
  4534. height: 3.6em;
  4535. margin-top: 0.6em; }
  4536. .sponsors {
  4537. clear: both;
  4538. font-size: 1.4em;
  4539. padding: 2em 0 6em 0; }
  4540. .sponsors ul {
  4541. padding: 0; }
  4542. .sponsors h2 {
  4543. text-align: center; }
  4544. .sponsors ul {
  4545. margin: 0 0 1em 0; }
  4546. .sponsors ul li {
  4547. margin: 1em 0;
  4548. list-style: none; }
  4549. .sponsors-text {
  4550. text-align: left;
  4551. padding: 0 0 2em 0; }
  4552. /*# sourceMappingURL=website.css.map */