bootstrap.css 148 KB

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