app.css 179 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050
  1. @charset "UTF-8";
  2. /*!
  3. * Bootstrap v4.6.0 (https://getbootstrap.com/)
  4. * Copyright 2011-2021 The Bootstrap Authors
  5. * Copyright 2011-2021 Twitter, Inc.
  6. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
  7. */
  8. :root {
  9. --blue: #3490dc;
  10. --indigo: #6574cd;
  11. --purple: #9561e2;
  12. --pink: #f66d9b;
  13. --red: #e3342f;
  14. --orange: #f6993f;
  15. --yellow: #ffed4a;
  16. --green: #38c172;
  17. --teal: #4dc0b5;
  18. --cyan: #6cb2eb;
  19. --white: #fff;
  20. --gray: #6c757d;
  21. --gray-dark: #343a40;
  22. --primary: #3490dc;
  23. --secondary: #6c757d;
  24. --success: #38c172;
  25. --info: #6cb2eb;
  26. --warning: #ffed4a;
  27. --danger: #e3342f;
  28. --light: #f8f9fa;
  29. --dark: #343a40;
  30. --breakpoint-xs: 0;
  31. --breakpoint-sm: 576px;
  32. --breakpoint-md: 768px;
  33. --breakpoint-lg: 992px;
  34. --breakpoint-xl: 1200px;
  35. --font-family-sans-serif: "Nunito", sans-serif;
  36. --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  37. }
  38. *,
  39. *::before,
  40. *::after {
  41. box-sizing: border-box;
  42. }
  43. html {
  44. font-family: sans-serif;
  45. line-height: 1.15;
  46. -webkit-text-size-adjust: 100%;
  47. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  48. }
  49. article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  50. display: block;
  51. }
  52. body {
  53. margin: 0;
  54. font-family: "Nunito", sans-serif;
  55. font-size: 0.9rem;
  56. font-weight: 400;
  57. line-height: 1.6;
  58. color: #212529;
  59. text-align: left;
  60. background-color: #f8fafc;
  61. }
  62. [tabindex="-1"]:focus:not(:focus-visible) {
  63. outline: 0 !important;
  64. }
  65. hr {
  66. box-sizing: content-box;
  67. height: 0;
  68. overflow: visible;
  69. }
  70. h1, h2, h3, h4, h5, h6 {
  71. margin-top: 0;
  72. margin-bottom: 0.5rem;
  73. }
  74. p {
  75. margin-top: 0;
  76. margin-bottom: 1rem;
  77. }
  78. abbr[title],
  79. abbr[data-original-title] {
  80. text-decoration: underline;
  81. -webkit-text-decoration: underline dotted;
  82. text-decoration: underline dotted;
  83. cursor: help;
  84. border-bottom: 0;
  85. -webkit-text-decoration-skip-ink: none;
  86. text-decoration-skip-ink: none;
  87. }
  88. address {
  89. margin-bottom: 1rem;
  90. font-style: normal;
  91. line-height: inherit;
  92. }
  93. ol,
  94. ul,
  95. dl {
  96. margin-top: 0;
  97. margin-bottom: 1rem;
  98. }
  99. ol ol,
  100. ul ul,
  101. ol ul,
  102. ul ol {
  103. margin-bottom: 0;
  104. }
  105. dt {
  106. font-weight: 700;
  107. }
  108. dd {
  109. margin-bottom: 0.5rem;
  110. margin-left: 0;
  111. }
  112. blockquote {
  113. margin: 0 0 1rem;
  114. }
  115. b,
  116. strong {
  117. font-weight: bolder;
  118. }
  119. small {
  120. font-size: 80%;
  121. }
  122. sub,
  123. sup {
  124. position: relative;
  125. font-size: 75%;
  126. line-height: 0;
  127. vertical-align: baseline;
  128. }
  129. sub {
  130. bottom: -0.25em;
  131. }
  132. sup {
  133. top: -0.5em;
  134. }
  135. a {
  136. color: #3490dc;
  137. text-decoration: none;
  138. background-color: transparent;
  139. }
  140. a:hover {
  141. color: #1d68a7;
  142. text-decoration: underline;
  143. }
  144. a:not([href]):not([class]) {
  145. color: inherit;
  146. text-decoration: none;
  147. }
  148. a:not([href]):not([class]):hover {
  149. color: inherit;
  150. text-decoration: none;
  151. }
  152. pre,
  153. code,
  154. kbd,
  155. samp {
  156. font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  157. font-size: 1em;
  158. }
  159. pre {
  160. margin-top: 0;
  161. margin-bottom: 1rem;
  162. overflow: auto;
  163. -ms-overflow-style: scrollbar;
  164. }
  165. figure {
  166. margin: 0 0 1rem;
  167. }
  168. img {
  169. vertical-align: middle;
  170. border-style: none;
  171. }
  172. svg {
  173. overflow: hidden;
  174. vertical-align: middle;
  175. }
  176. table {
  177. border-collapse: collapse;
  178. }
  179. caption {
  180. padding-top: 0.75rem;
  181. padding-bottom: 0.75rem;
  182. color: #6c757d;
  183. text-align: left;
  184. caption-side: bottom;
  185. }
  186. th {
  187. text-align: inherit;
  188. text-align: -webkit-match-parent;
  189. }
  190. label {
  191. display: inline-block;
  192. margin-bottom: 0.5rem;
  193. }
  194. button {
  195. border-radius: 0;
  196. }
  197. button:focus:not(:focus-visible) {
  198. outline: 0;
  199. }
  200. input,
  201. button,
  202. select,
  203. optgroup,
  204. textarea {
  205. margin: 0;
  206. font-family: inherit;
  207. font-size: inherit;
  208. line-height: inherit;
  209. }
  210. button,
  211. input {
  212. overflow: visible;
  213. }
  214. button,
  215. select {
  216. text-transform: none;
  217. }
  218. [role=button] {
  219. cursor: pointer;
  220. }
  221. select {
  222. word-wrap: normal;
  223. }
  224. button,
  225. [type=button],
  226. [type=reset],
  227. [type=submit] {
  228. -webkit-appearance: button;
  229. }
  230. button:not(:disabled),
  231. [type=button]:not(:disabled),
  232. [type=reset]:not(:disabled),
  233. [type=submit]:not(:disabled) {
  234. cursor: pointer;
  235. }
  236. button::-moz-focus-inner,
  237. [type=button]::-moz-focus-inner,
  238. [type=reset]::-moz-focus-inner,
  239. [type=submit]::-moz-focus-inner {
  240. padding: 0;
  241. border-style: none;
  242. }
  243. input[type=radio],
  244. input[type=checkbox] {
  245. box-sizing: border-box;
  246. padding: 0;
  247. }
  248. textarea {
  249. overflow: auto;
  250. resize: vertical;
  251. }
  252. fieldset {
  253. min-width: 0;
  254. padding: 0;
  255. margin: 0;
  256. border: 0;
  257. }
  258. legend {
  259. display: block;
  260. width: 100%;
  261. max-width: 100%;
  262. padding: 0;
  263. margin-bottom: 0.5rem;
  264. font-size: 1.5rem;
  265. line-height: inherit;
  266. color: inherit;
  267. white-space: normal;
  268. }
  269. progress {
  270. vertical-align: baseline;
  271. }
  272. [type=number]::-webkit-inner-spin-button,
  273. [type=number]::-webkit-outer-spin-button {
  274. height: auto;
  275. }
  276. [type=search] {
  277. outline-offset: -2px;
  278. -webkit-appearance: none;
  279. }
  280. [type=search]::-webkit-search-decoration {
  281. -webkit-appearance: none;
  282. }
  283. ::-webkit-file-upload-button {
  284. font: inherit;
  285. -webkit-appearance: button;
  286. }
  287. output {
  288. display: inline-block;
  289. }
  290. summary {
  291. display: list-item;
  292. cursor: pointer;
  293. }
  294. template {
  295. display: none;
  296. }
  297. [hidden] {
  298. display: none !important;
  299. }
  300. h1, h2, h3, h4, h5, h6,
  301. .h1, .h2, .h3, .h4, .h5, .h6 {
  302. margin-bottom: 0.5rem;
  303. font-weight: 500;
  304. line-height: 1.2;
  305. }
  306. h1, .h1 {
  307. font-size: 2.25rem;
  308. }
  309. h2, .h2 {
  310. font-size: 1.8rem;
  311. }
  312. h3, .h3 {
  313. font-size: 1.575rem;
  314. }
  315. h4, .h4 {
  316. font-size: 1.35rem;
  317. }
  318. h5, .h5 {
  319. font-size: 1.125rem;
  320. }
  321. h6, .h6 {
  322. font-size: 0.9rem;
  323. }
  324. .lead {
  325. font-size: 1.125rem;
  326. font-weight: 300;
  327. }
  328. .display-1 {
  329. font-size: 6rem;
  330. font-weight: 300;
  331. line-height: 1.2;
  332. }
  333. .display-2 {
  334. font-size: 5.5rem;
  335. font-weight: 300;
  336. line-height: 1.2;
  337. }
  338. .display-3 {
  339. font-size: 4.5rem;
  340. font-weight: 300;
  341. line-height: 1.2;
  342. }
  343. .display-4 {
  344. font-size: 3.5rem;
  345. font-weight: 300;
  346. line-height: 1.2;
  347. }
  348. hr {
  349. margin-top: 1rem;
  350. margin-bottom: 1rem;
  351. border: 0;
  352. border-top: 1px solid rgba(0, 0, 0, 0.1);
  353. }
  354. small,
  355. .small {
  356. font-size: 80%;
  357. font-weight: 400;
  358. }
  359. mark,
  360. .mark {
  361. padding: 0.2em;
  362. background-color: #fcf8e3;
  363. }
  364. .list-unstyled {
  365. padding-left: 0;
  366. list-style: none;
  367. }
  368. .list-inline {
  369. padding-left: 0;
  370. list-style: none;
  371. }
  372. .list-inline-item {
  373. display: inline-block;
  374. }
  375. .list-inline-item:not(:last-child) {
  376. margin-right: 0.5rem;
  377. }
  378. .initialism {
  379. font-size: 90%;
  380. text-transform: uppercase;
  381. }
  382. .blockquote {
  383. margin-bottom: 1rem;
  384. font-size: 1.125rem;
  385. }
  386. .blockquote-footer {
  387. display: block;
  388. font-size: 80%;
  389. color: #6c757d;
  390. }
  391. .blockquote-footer::before {
  392. content: "— ";
  393. }
  394. .img-fluid {
  395. max-width: 100%;
  396. height: auto;
  397. }
  398. .img-thumbnail {
  399. padding: 0.25rem;
  400. background-color: #f8fafc;
  401. border: 1px solid #dee2e6;
  402. border-radius: 0.25rem;
  403. max-width: 100%;
  404. height: auto;
  405. }
  406. .figure {
  407. display: inline-block;
  408. }
  409. .figure-img {
  410. margin-bottom: 0.5rem;
  411. line-height: 1;
  412. }
  413. .figure-caption {
  414. font-size: 90%;
  415. color: #6c757d;
  416. }
  417. code {
  418. font-size: 87.5%;
  419. color: #f66d9b;
  420. word-wrap: break-word;
  421. }
  422. a > code {
  423. color: inherit;
  424. }
  425. kbd {
  426. padding: 0.2rem 0.4rem;
  427. font-size: 87.5%;
  428. color: #fff;
  429. background-color: #212529;
  430. border-radius: 0.2rem;
  431. }
  432. kbd kbd {
  433. padding: 0;
  434. font-size: 100%;
  435. font-weight: 700;
  436. }
  437. pre {
  438. display: block;
  439. font-size: 87.5%;
  440. color: #212529;
  441. }
  442. pre code {
  443. font-size: inherit;
  444. color: inherit;
  445. word-break: normal;
  446. }
  447. .pre-scrollable {
  448. max-height: 340px;
  449. overflow-y: scroll;
  450. }
  451. .container,
  452. .container-fluid,
  453. .container-xl,
  454. .container-lg,
  455. .container-md,
  456. .container-sm {
  457. width: 100%;
  458. padding-right: 15px;
  459. padding-left: 15px;
  460. margin-right: auto;
  461. margin-left: auto;
  462. }
  463. @media (min-width: 576px) {
  464. .container-sm, .container {
  465. max-width: 540px;
  466. }
  467. }
  468. @media (min-width: 768px) {
  469. .container-md, .container-sm, .container {
  470. max-width: 720px;
  471. }
  472. }
  473. @media (min-width: 992px) {
  474. .container-lg, .container-md, .container-sm, .container {
  475. max-width: 960px;
  476. }
  477. }
  478. @media (min-width: 1200px) {
  479. .container-xl, .container-lg, .container-md, .container-sm, .container {
  480. max-width: 1140px;
  481. }
  482. }
  483. .row {
  484. display: flex;
  485. flex-wrap: wrap;
  486. margin-right: -15px;
  487. margin-left: -15px;
  488. }
  489. .no-gutters {
  490. margin-right: 0;
  491. margin-left: 0;
  492. }
  493. .no-gutters > .col,
  494. .no-gutters > [class*=col-] {
  495. padding-right: 0;
  496. padding-left: 0;
  497. }
  498. .col-xl,
  499. .col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
  500. .col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
  501. .col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
  502. .col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
  503. .col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  504. position: relative;
  505. width: 100%;
  506. padding-right: 15px;
  507. padding-left: 15px;
  508. }
  509. .col {
  510. flex-basis: 0;
  511. flex-grow: 1;
  512. max-width: 100%;
  513. }
  514. .row-cols-1 > * {
  515. flex: 0 0 100%;
  516. max-width: 100%;
  517. }
  518. .row-cols-2 > * {
  519. flex: 0 0 50%;
  520. max-width: 50%;
  521. }
  522. .row-cols-3 > * {
  523. flex: 0 0 33.3333333333%;
  524. max-width: 33.3333333333%;
  525. }
  526. .row-cols-4 > * {
  527. flex: 0 0 25%;
  528. max-width: 25%;
  529. }
  530. .row-cols-5 > * {
  531. flex: 0 0 20%;
  532. max-width: 20%;
  533. }
  534. .row-cols-6 > * {
  535. flex: 0 0 16.6666666667%;
  536. max-width: 16.6666666667%;
  537. }
  538. .col-auto {
  539. flex: 0 0 auto;
  540. width: auto;
  541. max-width: 100%;
  542. }
  543. .col-1 {
  544. flex: 0 0 8.3333333333%;
  545. max-width: 8.3333333333%;
  546. }
  547. .col-2 {
  548. flex: 0 0 16.6666666667%;
  549. max-width: 16.6666666667%;
  550. }
  551. .col-3 {
  552. flex: 0 0 25%;
  553. max-width: 25%;
  554. }
  555. .col-4 {
  556. flex: 0 0 33.3333333333%;
  557. max-width: 33.3333333333%;
  558. }
  559. .col-5 {
  560. flex: 0 0 41.6666666667%;
  561. max-width: 41.6666666667%;
  562. }
  563. .col-6 {
  564. flex: 0 0 50%;
  565. max-width: 50%;
  566. }
  567. .col-7 {
  568. flex: 0 0 58.3333333333%;
  569. max-width: 58.3333333333%;
  570. }
  571. .col-8 {
  572. flex: 0 0 66.6666666667%;
  573. max-width: 66.6666666667%;
  574. }
  575. .col-9 {
  576. flex: 0 0 75%;
  577. max-width: 75%;
  578. }
  579. .col-10 {
  580. flex: 0 0 83.3333333333%;
  581. max-width: 83.3333333333%;
  582. }
  583. .col-11 {
  584. flex: 0 0 91.6666666667%;
  585. max-width: 91.6666666667%;
  586. }
  587. .col-12 {
  588. flex: 0 0 100%;
  589. max-width: 100%;
  590. }
  591. .order-first {
  592. order: -1;
  593. }
  594. .order-last {
  595. order: 13;
  596. }
  597. .order-0 {
  598. order: 0;
  599. }
  600. .order-1 {
  601. order: 1;
  602. }
  603. .order-2 {
  604. order: 2;
  605. }
  606. .order-3 {
  607. order: 3;
  608. }
  609. .order-4 {
  610. order: 4;
  611. }
  612. .order-5 {
  613. order: 5;
  614. }
  615. .order-6 {
  616. order: 6;
  617. }
  618. .order-7 {
  619. order: 7;
  620. }
  621. .order-8 {
  622. order: 8;
  623. }
  624. .order-9 {
  625. order: 9;
  626. }
  627. .order-10 {
  628. order: 10;
  629. }
  630. .order-11 {
  631. order: 11;
  632. }
  633. .order-12 {
  634. order: 12;
  635. }
  636. .offset-1 {
  637. margin-left: 8.3333333333%;
  638. }
  639. .offset-2 {
  640. margin-left: 16.6666666667%;
  641. }
  642. .offset-3 {
  643. margin-left: 25%;
  644. }
  645. .offset-4 {
  646. margin-left: 33.3333333333%;
  647. }
  648. .offset-5 {
  649. margin-left: 41.6666666667%;
  650. }
  651. .offset-6 {
  652. margin-left: 50%;
  653. }
  654. .offset-7 {
  655. margin-left: 58.3333333333%;
  656. }
  657. .offset-8 {
  658. margin-left: 66.6666666667%;
  659. }
  660. .offset-9 {
  661. margin-left: 75%;
  662. }
  663. .offset-10 {
  664. margin-left: 83.3333333333%;
  665. }
  666. .offset-11 {
  667. margin-left: 91.6666666667%;
  668. }
  669. @media (min-width: 576px) {
  670. .col-sm {
  671. flex-basis: 0;
  672. flex-grow: 1;
  673. max-width: 100%;
  674. }
  675. .row-cols-sm-1 > * {
  676. flex: 0 0 100%;
  677. max-width: 100%;
  678. }
  679. .row-cols-sm-2 > * {
  680. flex: 0 0 50%;
  681. max-width: 50%;
  682. }
  683. .row-cols-sm-3 > * {
  684. flex: 0 0 33.3333333333%;
  685. max-width: 33.3333333333%;
  686. }
  687. .row-cols-sm-4 > * {
  688. flex: 0 0 25%;
  689. max-width: 25%;
  690. }
  691. .row-cols-sm-5 > * {
  692. flex: 0 0 20%;
  693. max-width: 20%;
  694. }
  695. .row-cols-sm-6 > * {
  696. flex: 0 0 16.6666666667%;
  697. max-width: 16.6666666667%;
  698. }
  699. .col-sm-auto {
  700. flex: 0 0 auto;
  701. width: auto;
  702. max-width: 100%;
  703. }
  704. .col-sm-1 {
  705. flex: 0 0 8.3333333333%;
  706. max-width: 8.3333333333%;
  707. }
  708. .col-sm-2 {
  709. flex: 0 0 16.6666666667%;
  710. max-width: 16.6666666667%;
  711. }
  712. .col-sm-3 {
  713. flex: 0 0 25%;
  714. max-width: 25%;
  715. }
  716. .col-sm-4 {
  717. flex: 0 0 33.3333333333%;
  718. max-width: 33.3333333333%;
  719. }
  720. .col-sm-5 {
  721. flex: 0 0 41.6666666667%;
  722. max-width: 41.6666666667%;
  723. }
  724. .col-sm-6 {
  725. flex: 0 0 50%;
  726. max-width: 50%;
  727. }
  728. .col-sm-7 {
  729. flex: 0 0 58.3333333333%;
  730. max-width: 58.3333333333%;
  731. }
  732. .col-sm-8 {
  733. flex: 0 0 66.6666666667%;
  734. max-width: 66.6666666667%;
  735. }
  736. .col-sm-9 {
  737. flex: 0 0 75%;
  738. max-width: 75%;
  739. }
  740. .col-sm-10 {
  741. flex: 0 0 83.3333333333%;
  742. max-width: 83.3333333333%;
  743. }
  744. .col-sm-11 {
  745. flex: 0 0 91.6666666667%;
  746. max-width: 91.6666666667%;
  747. }
  748. .col-sm-12 {
  749. flex: 0 0 100%;
  750. max-width: 100%;
  751. }
  752. .order-sm-first {
  753. order: -1;
  754. }
  755. .order-sm-last {
  756. order: 13;
  757. }
  758. .order-sm-0 {
  759. order: 0;
  760. }
  761. .order-sm-1 {
  762. order: 1;
  763. }
  764. .order-sm-2 {
  765. order: 2;
  766. }
  767. .order-sm-3 {
  768. order: 3;
  769. }
  770. .order-sm-4 {
  771. order: 4;
  772. }
  773. .order-sm-5 {
  774. order: 5;
  775. }
  776. .order-sm-6 {
  777. order: 6;
  778. }
  779. .order-sm-7 {
  780. order: 7;
  781. }
  782. .order-sm-8 {
  783. order: 8;
  784. }
  785. .order-sm-9 {
  786. order: 9;
  787. }
  788. .order-sm-10 {
  789. order: 10;
  790. }
  791. .order-sm-11 {
  792. order: 11;
  793. }
  794. .order-sm-12 {
  795. order: 12;
  796. }
  797. .offset-sm-0 {
  798. margin-left: 0;
  799. }
  800. .offset-sm-1 {
  801. margin-left: 8.3333333333%;
  802. }
  803. .offset-sm-2 {
  804. margin-left: 16.6666666667%;
  805. }
  806. .offset-sm-3 {
  807. margin-left: 25%;
  808. }
  809. .offset-sm-4 {
  810. margin-left: 33.3333333333%;
  811. }
  812. .offset-sm-5 {
  813. margin-left: 41.6666666667%;
  814. }
  815. .offset-sm-6 {
  816. margin-left: 50%;
  817. }
  818. .offset-sm-7 {
  819. margin-left: 58.3333333333%;
  820. }
  821. .offset-sm-8 {
  822. margin-left: 66.6666666667%;
  823. }
  824. .offset-sm-9 {
  825. margin-left: 75%;
  826. }
  827. .offset-sm-10 {
  828. margin-left: 83.3333333333%;
  829. }
  830. .offset-sm-11 {
  831. margin-left: 91.6666666667%;
  832. }
  833. }
  834. @media (min-width: 768px) {
  835. .col-md {
  836. flex-basis: 0;
  837. flex-grow: 1;
  838. max-width: 100%;
  839. }
  840. .row-cols-md-1 > * {
  841. flex: 0 0 100%;
  842. max-width: 100%;
  843. }
  844. .row-cols-md-2 > * {
  845. flex: 0 0 50%;
  846. max-width: 50%;
  847. }
  848. .row-cols-md-3 > * {
  849. flex: 0 0 33.3333333333%;
  850. max-width: 33.3333333333%;
  851. }
  852. .row-cols-md-4 > * {
  853. flex: 0 0 25%;
  854. max-width: 25%;
  855. }
  856. .row-cols-md-5 > * {
  857. flex: 0 0 20%;
  858. max-width: 20%;
  859. }
  860. .row-cols-md-6 > * {
  861. flex: 0 0 16.6666666667%;
  862. max-width: 16.6666666667%;
  863. }
  864. .col-md-auto {
  865. flex: 0 0 auto;
  866. width: auto;
  867. max-width: 100%;
  868. }
  869. .col-md-1 {
  870. flex: 0 0 8.3333333333%;
  871. max-width: 8.3333333333%;
  872. }
  873. .col-md-2 {
  874. flex: 0 0 16.6666666667%;
  875. max-width: 16.6666666667%;
  876. }
  877. .col-md-3 {
  878. flex: 0 0 25%;
  879. max-width: 25%;
  880. }
  881. .col-md-4 {
  882. flex: 0 0 33.3333333333%;
  883. max-width: 33.3333333333%;
  884. }
  885. .col-md-5 {
  886. flex: 0 0 41.6666666667%;
  887. max-width: 41.6666666667%;
  888. }
  889. .col-md-6 {
  890. flex: 0 0 50%;
  891. max-width: 50%;
  892. }
  893. .col-md-7 {
  894. flex: 0 0 58.3333333333%;
  895. max-width: 58.3333333333%;
  896. }
  897. .col-md-8 {
  898. flex: 0 0 66.6666666667%;
  899. max-width: 66.6666666667%;
  900. }
  901. .col-md-9 {
  902. flex: 0 0 75%;
  903. max-width: 75%;
  904. }
  905. .col-md-10 {
  906. flex: 0 0 83.3333333333%;
  907. max-width: 83.3333333333%;
  908. }
  909. .col-md-11 {
  910. flex: 0 0 91.6666666667%;
  911. max-width: 91.6666666667%;
  912. }
  913. .col-md-12 {
  914. flex: 0 0 100%;
  915. max-width: 100%;
  916. }
  917. .order-md-first {
  918. order: -1;
  919. }
  920. .order-md-last {
  921. order: 13;
  922. }
  923. .order-md-0 {
  924. order: 0;
  925. }
  926. .order-md-1 {
  927. order: 1;
  928. }
  929. .order-md-2 {
  930. order: 2;
  931. }
  932. .order-md-3 {
  933. order: 3;
  934. }
  935. .order-md-4 {
  936. order: 4;
  937. }
  938. .order-md-5 {
  939. order: 5;
  940. }
  941. .order-md-6 {
  942. order: 6;
  943. }
  944. .order-md-7 {
  945. order: 7;
  946. }
  947. .order-md-8 {
  948. order: 8;
  949. }
  950. .order-md-9 {
  951. order: 9;
  952. }
  953. .order-md-10 {
  954. order: 10;
  955. }
  956. .order-md-11 {
  957. order: 11;
  958. }
  959. .order-md-12 {
  960. order: 12;
  961. }
  962. .offset-md-0 {
  963. margin-left: 0;
  964. }
  965. .offset-md-1 {
  966. margin-left: 8.3333333333%;
  967. }
  968. .offset-md-2 {
  969. margin-left: 16.6666666667%;
  970. }
  971. .offset-md-3 {
  972. margin-left: 25%;
  973. }
  974. .offset-md-4 {
  975. margin-left: 33.3333333333%;
  976. }
  977. .offset-md-5 {
  978. margin-left: 41.6666666667%;
  979. }
  980. .offset-md-6 {
  981. margin-left: 50%;
  982. }
  983. .offset-md-7 {
  984. margin-left: 58.3333333333%;
  985. }
  986. .offset-md-8 {
  987. margin-left: 66.6666666667%;
  988. }
  989. .offset-md-9 {
  990. margin-left: 75%;
  991. }
  992. .offset-md-10 {
  993. margin-left: 83.3333333333%;
  994. }
  995. .offset-md-11 {
  996. margin-left: 91.6666666667%;
  997. }
  998. }
  999. @media (min-width: 992px) {
  1000. .col-lg {
  1001. flex-basis: 0;
  1002. flex-grow: 1;
  1003. max-width: 100%;
  1004. }
  1005. .row-cols-lg-1 > * {
  1006. flex: 0 0 100%;
  1007. max-width: 100%;
  1008. }
  1009. .row-cols-lg-2 > * {
  1010. flex: 0 0 50%;
  1011. max-width: 50%;
  1012. }
  1013. .row-cols-lg-3 > * {
  1014. flex: 0 0 33.3333333333%;
  1015. max-width: 33.3333333333%;
  1016. }
  1017. .row-cols-lg-4 > * {
  1018. flex: 0 0 25%;
  1019. max-width: 25%;
  1020. }
  1021. .row-cols-lg-5 > * {
  1022. flex: 0 0 20%;
  1023. max-width: 20%;
  1024. }
  1025. .row-cols-lg-6 > * {
  1026. flex: 0 0 16.6666666667%;
  1027. max-width: 16.6666666667%;
  1028. }
  1029. .col-lg-auto {
  1030. flex: 0 0 auto;
  1031. width: auto;
  1032. max-width: 100%;
  1033. }
  1034. .col-lg-1 {
  1035. flex: 0 0 8.3333333333%;
  1036. max-width: 8.3333333333%;
  1037. }
  1038. .col-lg-2 {
  1039. flex: 0 0 16.6666666667%;
  1040. max-width: 16.6666666667%;
  1041. }
  1042. .col-lg-3 {
  1043. flex: 0 0 25%;
  1044. max-width: 25%;
  1045. }
  1046. .col-lg-4 {
  1047. flex: 0 0 33.3333333333%;
  1048. max-width: 33.3333333333%;
  1049. }
  1050. .col-lg-5 {
  1051. flex: 0 0 41.6666666667%;
  1052. max-width: 41.6666666667%;
  1053. }
  1054. .col-lg-6 {
  1055. flex: 0 0 50%;
  1056. max-width: 50%;
  1057. }
  1058. .col-lg-7 {
  1059. flex: 0 0 58.3333333333%;
  1060. max-width: 58.3333333333%;
  1061. }
  1062. .col-lg-8 {
  1063. flex: 0 0 66.6666666667%;
  1064. max-width: 66.6666666667%;
  1065. }
  1066. .col-lg-9 {
  1067. flex: 0 0 75%;
  1068. max-width: 75%;
  1069. }
  1070. .col-lg-10 {
  1071. flex: 0 0 83.3333333333%;
  1072. max-width: 83.3333333333%;
  1073. }
  1074. .col-lg-11 {
  1075. flex: 0 0 91.6666666667%;
  1076. max-width: 91.6666666667%;
  1077. }
  1078. .col-lg-12 {
  1079. flex: 0 0 100%;
  1080. max-width: 100%;
  1081. }
  1082. .order-lg-first {
  1083. order: -1;
  1084. }
  1085. .order-lg-last {
  1086. order: 13;
  1087. }
  1088. .order-lg-0 {
  1089. order: 0;
  1090. }
  1091. .order-lg-1 {
  1092. order: 1;
  1093. }
  1094. .order-lg-2 {
  1095. order: 2;
  1096. }
  1097. .order-lg-3 {
  1098. order: 3;
  1099. }
  1100. .order-lg-4 {
  1101. order: 4;
  1102. }
  1103. .order-lg-5 {
  1104. order: 5;
  1105. }
  1106. .order-lg-6 {
  1107. order: 6;
  1108. }
  1109. .order-lg-7 {
  1110. order: 7;
  1111. }
  1112. .order-lg-8 {
  1113. order: 8;
  1114. }
  1115. .order-lg-9 {
  1116. order: 9;
  1117. }
  1118. .order-lg-10 {
  1119. order: 10;
  1120. }
  1121. .order-lg-11 {
  1122. order: 11;
  1123. }
  1124. .order-lg-12 {
  1125. order: 12;
  1126. }
  1127. .offset-lg-0 {
  1128. margin-left: 0;
  1129. }
  1130. .offset-lg-1 {
  1131. margin-left: 8.3333333333%;
  1132. }
  1133. .offset-lg-2 {
  1134. margin-left: 16.6666666667%;
  1135. }
  1136. .offset-lg-3 {
  1137. margin-left: 25%;
  1138. }
  1139. .offset-lg-4 {
  1140. margin-left: 33.3333333333%;
  1141. }
  1142. .offset-lg-5 {
  1143. margin-left: 41.6666666667%;
  1144. }
  1145. .offset-lg-6 {
  1146. margin-left: 50%;
  1147. }
  1148. .offset-lg-7 {
  1149. margin-left: 58.3333333333%;
  1150. }
  1151. .offset-lg-8 {
  1152. margin-left: 66.6666666667%;
  1153. }
  1154. .offset-lg-9 {
  1155. margin-left: 75%;
  1156. }
  1157. .offset-lg-10 {
  1158. margin-left: 83.3333333333%;
  1159. }
  1160. .offset-lg-11 {
  1161. margin-left: 91.6666666667%;
  1162. }
  1163. }
  1164. @media (min-width: 1200px) {
  1165. .col-xl {
  1166. flex-basis: 0;
  1167. flex-grow: 1;
  1168. max-width: 100%;
  1169. }
  1170. .row-cols-xl-1 > * {
  1171. flex: 0 0 100%;
  1172. max-width: 100%;
  1173. }
  1174. .row-cols-xl-2 > * {
  1175. flex: 0 0 50%;
  1176. max-width: 50%;
  1177. }
  1178. .row-cols-xl-3 > * {
  1179. flex: 0 0 33.3333333333%;
  1180. max-width: 33.3333333333%;
  1181. }
  1182. .row-cols-xl-4 > * {
  1183. flex: 0 0 25%;
  1184. max-width: 25%;
  1185. }
  1186. .row-cols-xl-5 > * {
  1187. flex: 0 0 20%;
  1188. max-width: 20%;
  1189. }
  1190. .row-cols-xl-6 > * {
  1191. flex: 0 0 16.6666666667%;
  1192. max-width: 16.6666666667%;
  1193. }
  1194. .col-xl-auto {
  1195. flex: 0 0 auto;
  1196. width: auto;
  1197. max-width: 100%;
  1198. }
  1199. .col-xl-1 {
  1200. flex: 0 0 8.3333333333%;
  1201. max-width: 8.3333333333%;
  1202. }
  1203. .col-xl-2 {
  1204. flex: 0 0 16.6666666667%;
  1205. max-width: 16.6666666667%;
  1206. }
  1207. .col-xl-3 {
  1208. flex: 0 0 25%;
  1209. max-width: 25%;
  1210. }
  1211. .col-xl-4 {
  1212. flex: 0 0 33.3333333333%;
  1213. max-width: 33.3333333333%;
  1214. }
  1215. .col-xl-5 {
  1216. flex: 0 0 41.6666666667%;
  1217. max-width: 41.6666666667%;
  1218. }
  1219. .col-xl-6 {
  1220. flex: 0 0 50%;
  1221. max-width: 50%;
  1222. }
  1223. .col-xl-7 {
  1224. flex: 0 0 58.3333333333%;
  1225. max-width: 58.3333333333%;
  1226. }
  1227. .col-xl-8 {
  1228. flex: 0 0 66.6666666667%;
  1229. max-width: 66.6666666667%;
  1230. }
  1231. .col-xl-9 {
  1232. flex: 0 0 75%;
  1233. max-width: 75%;
  1234. }
  1235. .col-xl-10 {
  1236. flex: 0 0 83.3333333333%;
  1237. max-width: 83.3333333333%;
  1238. }
  1239. .col-xl-11 {
  1240. flex: 0 0 91.6666666667%;
  1241. max-width: 91.6666666667%;
  1242. }
  1243. .col-xl-12 {
  1244. flex: 0 0 100%;
  1245. max-width: 100%;
  1246. }
  1247. .order-xl-first {
  1248. order: -1;
  1249. }
  1250. .order-xl-last {
  1251. order: 13;
  1252. }
  1253. .order-xl-0 {
  1254. order: 0;
  1255. }
  1256. .order-xl-1 {
  1257. order: 1;
  1258. }
  1259. .order-xl-2 {
  1260. order: 2;
  1261. }
  1262. .order-xl-3 {
  1263. order: 3;
  1264. }
  1265. .order-xl-4 {
  1266. order: 4;
  1267. }
  1268. .order-xl-5 {
  1269. order: 5;
  1270. }
  1271. .order-xl-6 {
  1272. order: 6;
  1273. }
  1274. .order-xl-7 {
  1275. order: 7;
  1276. }
  1277. .order-xl-8 {
  1278. order: 8;
  1279. }
  1280. .order-xl-9 {
  1281. order: 9;
  1282. }
  1283. .order-xl-10 {
  1284. order: 10;
  1285. }
  1286. .order-xl-11 {
  1287. order: 11;
  1288. }
  1289. .order-xl-12 {
  1290. order: 12;
  1291. }
  1292. .offset-xl-0 {
  1293. margin-left: 0;
  1294. }
  1295. .offset-xl-1 {
  1296. margin-left: 8.3333333333%;
  1297. }
  1298. .offset-xl-2 {
  1299. margin-left: 16.6666666667%;
  1300. }
  1301. .offset-xl-3 {
  1302. margin-left: 25%;
  1303. }
  1304. .offset-xl-4 {
  1305. margin-left: 33.3333333333%;
  1306. }
  1307. .offset-xl-5 {
  1308. margin-left: 41.6666666667%;
  1309. }
  1310. .offset-xl-6 {
  1311. margin-left: 50%;
  1312. }
  1313. .offset-xl-7 {
  1314. margin-left: 58.3333333333%;
  1315. }
  1316. .offset-xl-8 {
  1317. margin-left: 66.6666666667%;
  1318. }
  1319. .offset-xl-9 {
  1320. margin-left: 75%;
  1321. }
  1322. .offset-xl-10 {
  1323. margin-left: 83.3333333333%;
  1324. }
  1325. .offset-xl-11 {
  1326. margin-left: 91.6666666667%;
  1327. }
  1328. }
  1329. .table {
  1330. width: 100%;
  1331. margin-bottom: 1rem;
  1332. color: #212529;
  1333. }
  1334. .table th,
  1335. .table td {
  1336. padding: 0.75rem;
  1337. vertical-align: top;
  1338. border-top: 1px solid #dee2e6;
  1339. }
  1340. .table thead th {
  1341. vertical-align: bottom;
  1342. border-bottom: 2px solid #dee2e6;
  1343. }
  1344. .table tbody + tbody {
  1345. border-top: 2px solid #dee2e6;
  1346. }
  1347. .table-sm th,
  1348. .table-sm td {
  1349. padding: 0.3rem;
  1350. }
  1351. .table-bordered {
  1352. border: 1px solid #dee2e6;
  1353. }
  1354. .table-bordered th,
  1355. .table-bordered td {
  1356. border: 1px solid #dee2e6;
  1357. }
  1358. .table-bordered thead th,
  1359. .table-bordered thead td {
  1360. border-bottom-width: 2px;
  1361. }
  1362. .table-borderless th,
  1363. .table-borderless td,
  1364. .table-borderless thead th,
  1365. .table-borderless tbody + tbody {
  1366. border: 0;
  1367. }
  1368. .table-striped tbody tr:nth-of-type(odd) {
  1369. background-color: rgba(0, 0, 0, 0.05);
  1370. }
  1371. .table-hover tbody tr:hover {
  1372. color: #212529;
  1373. background-color: rgba(0, 0, 0, 0.075);
  1374. }
  1375. .table-primary,
  1376. .table-primary > th,
  1377. .table-primary > td {
  1378. background-color: #c6e0f5;
  1379. }
  1380. .table-primary th,
  1381. .table-primary td,
  1382. .table-primary thead th,
  1383. .table-primary tbody + tbody {
  1384. border-color: #95c5ed;
  1385. }
  1386. .table-hover .table-primary:hover {
  1387. background-color: #b0d4f1;
  1388. }
  1389. .table-hover .table-primary:hover > td,
  1390. .table-hover .table-primary:hover > th {
  1391. background-color: #b0d4f1;
  1392. }
  1393. .table-secondary,
  1394. .table-secondary > th,
  1395. .table-secondary > td {
  1396. background-color: #d6d8db;
  1397. }
  1398. .table-secondary th,
  1399. .table-secondary td,
  1400. .table-secondary thead th,
  1401. .table-secondary tbody + tbody {
  1402. border-color: #b3b7bb;
  1403. }
  1404. .table-hover .table-secondary:hover {
  1405. background-color: #c8cbcf;
  1406. }
  1407. .table-hover .table-secondary:hover > td,
  1408. .table-hover .table-secondary:hover > th {
  1409. background-color: #c8cbcf;
  1410. }
  1411. .table-success,
  1412. .table-success > th,
  1413. .table-success > td {
  1414. background-color: #c7eed8;
  1415. }
  1416. .table-success th,
  1417. .table-success td,
  1418. .table-success thead th,
  1419. .table-success tbody + tbody {
  1420. border-color: #98dfb6;
  1421. }
  1422. .table-hover .table-success:hover {
  1423. background-color: #b3e8ca;
  1424. }
  1425. .table-hover .table-success:hover > td,
  1426. .table-hover .table-success:hover > th {
  1427. background-color: #b3e8ca;
  1428. }
  1429. .table-info,
  1430. .table-info > th,
  1431. .table-info > td {
  1432. background-color: #d6e9f9;
  1433. }
  1434. .table-info th,
  1435. .table-info td,
  1436. .table-info thead th,
  1437. .table-info tbody + tbody {
  1438. border-color: #b3d7f5;
  1439. }
  1440. .table-hover .table-info:hover {
  1441. background-color: #c0ddf6;
  1442. }
  1443. .table-hover .table-info:hover > td,
  1444. .table-hover .table-info:hover > th {
  1445. background-color: #c0ddf6;
  1446. }
  1447. .table-warning,
  1448. .table-warning > th,
  1449. .table-warning > td {
  1450. background-color: #fffacc;
  1451. }
  1452. .table-warning th,
  1453. .table-warning td,
  1454. .table-warning thead th,
  1455. .table-warning tbody + tbody {
  1456. border-color: #fff6a1;
  1457. }
  1458. .table-hover .table-warning:hover {
  1459. background-color: #fff8b3;
  1460. }
  1461. .table-hover .table-warning:hover > td,
  1462. .table-hover .table-warning:hover > th {
  1463. background-color: #fff8b3;
  1464. }
  1465. .table-danger,
  1466. .table-danger > th,
  1467. .table-danger > td {
  1468. background-color: #f7c6c5;
  1469. }
  1470. .table-danger th,
  1471. .table-danger td,
  1472. .table-danger thead th,
  1473. .table-danger tbody + tbody {
  1474. border-color: #f09593;
  1475. }
  1476. .table-hover .table-danger:hover {
  1477. background-color: #f4b0af;
  1478. }
  1479. .table-hover .table-danger:hover > td,
  1480. .table-hover .table-danger:hover > th {
  1481. background-color: #f4b0af;
  1482. }
  1483. .table-light,
  1484. .table-light > th,
  1485. .table-light > td {
  1486. background-color: #fdfdfe;
  1487. }
  1488. .table-light th,
  1489. .table-light td,
  1490. .table-light thead th,
  1491. .table-light tbody + tbody {
  1492. border-color: #fbfcfc;
  1493. }
  1494. .table-hover .table-light:hover {
  1495. background-color: #ececf6;
  1496. }
  1497. .table-hover .table-light:hover > td,
  1498. .table-hover .table-light:hover > th {
  1499. background-color: #ececf6;
  1500. }
  1501. .table-dark,
  1502. .table-dark > th,
  1503. .table-dark > td {
  1504. background-color: #c6c8ca;
  1505. }
  1506. .table-dark th,
  1507. .table-dark td,
  1508. .table-dark thead th,
  1509. .table-dark tbody + tbody {
  1510. border-color: #95999c;
  1511. }
  1512. .table-hover .table-dark:hover {
  1513. background-color: #b9bbbe;
  1514. }
  1515. .table-hover .table-dark:hover > td,
  1516. .table-hover .table-dark:hover > th {
  1517. background-color: #b9bbbe;
  1518. }
  1519. .table-active,
  1520. .table-active > th,
  1521. .table-active > td {
  1522. background-color: rgba(0, 0, 0, 0.075);
  1523. }
  1524. .table-hover .table-active:hover {
  1525. background-color: rgba(0, 0, 0, 0.075);
  1526. }
  1527. .table-hover .table-active:hover > td,
  1528. .table-hover .table-active:hover > th {
  1529. background-color: rgba(0, 0, 0, 0.075);
  1530. }
  1531. .table .thead-dark th {
  1532. color: #fff;
  1533. background-color: #343a40;
  1534. border-color: #454d55;
  1535. }
  1536. .table .thead-light th {
  1537. color: #495057;
  1538. background-color: #e9ecef;
  1539. border-color: #dee2e6;
  1540. }
  1541. .table-dark {
  1542. color: #fff;
  1543. background-color: #343a40;
  1544. }
  1545. .table-dark th,
  1546. .table-dark td,
  1547. .table-dark thead th {
  1548. border-color: #454d55;
  1549. }
  1550. .table-dark.table-bordered {
  1551. border: 0;
  1552. }
  1553. .table-dark.table-striped tbody tr:nth-of-type(odd) {
  1554. background-color: rgba(255, 255, 255, 0.05);
  1555. }
  1556. .table-dark.table-hover tbody tr:hover {
  1557. color: #fff;
  1558. background-color: rgba(255, 255, 255, 0.075);
  1559. }
  1560. @media (max-width: 575.98px) {
  1561. .table-responsive-sm {
  1562. display: block;
  1563. width: 100%;
  1564. overflow-x: auto;
  1565. -webkit-overflow-scrolling: touch;
  1566. }
  1567. .table-responsive-sm > .table-bordered {
  1568. border: 0;
  1569. }
  1570. }
  1571. @media (max-width: 767.98px) {
  1572. .table-responsive-md {
  1573. display: block;
  1574. width: 100%;
  1575. overflow-x: auto;
  1576. -webkit-overflow-scrolling: touch;
  1577. }
  1578. .table-responsive-md > .table-bordered {
  1579. border: 0;
  1580. }
  1581. }
  1582. @media (max-width: 991.98px) {
  1583. .table-responsive-lg {
  1584. display: block;
  1585. width: 100%;
  1586. overflow-x: auto;
  1587. -webkit-overflow-scrolling: touch;
  1588. }
  1589. .table-responsive-lg > .table-bordered {
  1590. border: 0;
  1591. }
  1592. }
  1593. @media (max-width: 1199.98px) {
  1594. .table-responsive-xl {
  1595. display: block;
  1596. width: 100%;
  1597. overflow-x: auto;
  1598. -webkit-overflow-scrolling: touch;
  1599. }
  1600. .table-responsive-xl > .table-bordered {
  1601. border: 0;
  1602. }
  1603. }
  1604. .table-responsive {
  1605. display: block;
  1606. width: 100%;
  1607. overflow-x: auto;
  1608. -webkit-overflow-scrolling: touch;
  1609. }
  1610. .table-responsive > .table-bordered {
  1611. border: 0;
  1612. }
  1613. .form-control {
  1614. display: block;
  1615. width: 100%;
  1616. height: calc(1.6em + 0.75rem + 2px);
  1617. padding: 0.375rem 0.75rem;
  1618. font-size: 0.9rem;
  1619. font-weight: 400;
  1620. line-height: 1.6;
  1621. color: #495057;
  1622. background-color: #fff;
  1623. background-clip: padding-box;
  1624. border: 1px solid #ced4da;
  1625. border-radius: 0.25rem;
  1626. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  1627. }
  1628. @media (prefers-reduced-motion: reduce) {
  1629. .form-control {
  1630. transition: none;
  1631. }
  1632. }
  1633. .form-control::-ms-expand {
  1634. background-color: transparent;
  1635. border: 0;
  1636. }
  1637. .form-control:-moz-focusring {
  1638. color: transparent;
  1639. text-shadow: 0 0 0 #495057;
  1640. }
  1641. .form-control:focus {
  1642. color: #495057;
  1643. background-color: #fff;
  1644. border-color: #a1cbef;
  1645. outline: 0;
  1646. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  1647. }
  1648. .form-control::-moz-placeholder {
  1649. color: #6c757d;
  1650. opacity: 1;
  1651. }
  1652. .form-control:-ms-input-placeholder {
  1653. color: #6c757d;
  1654. opacity: 1;
  1655. }
  1656. .form-control::placeholder {
  1657. color: #6c757d;
  1658. opacity: 1;
  1659. }
  1660. .form-control:disabled, .form-control[readonly] {
  1661. background-color: #e9ecef;
  1662. opacity: 1;
  1663. }
  1664. input[type=date].form-control,
  1665. input[type=time].form-control,
  1666. input[type=datetime-local].form-control,
  1667. input[type=month].form-control {
  1668. -webkit-appearance: none;
  1669. -moz-appearance: none;
  1670. appearance: none;
  1671. }
  1672. select.form-control:focus::-ms-value {
  1673. color: #495057;
  1674. background-color: #fff;
  1675. }
  1676. .form-control-file,
  1677. .form-control-range {
  1678. display: block;
  1679. width: 100%;
  1680. }
  1681. .col-form-label {
  1682. padding-top: calc(0.375rem + 1px);
  1683. padding-bottom: calc(0.375rem + 1px);
  1684. margin-bottom: 0;
  1685. font-size: inherit;
  1686. line-height: 1.6;
  1687. }
  1688. .col-form-label-lg {
  1689. padding-top: calc(0.5rem + 1px);
  1690. padding-bottom: calc(0.5rem + 1px);
  1691. font-size: 1.125rem;
  1692. line-height: 1.5;
  1693. }
  1694. .col-form-label-sm {
  1695. padding-top: calc(0.25rem + 1px);
  1696. padding-bottom: calc(0.25rem + 1px);
  1697. font-size: 0.7875rem;
  1698. line-height: 1.5;
  1699. }
  1700. .form-control-plaintext {
  1701. display: block;
  1702. width: 100%;
  1703. padding: 0.375rem 0;
  1704. margin-bottom: 0;
  1705. font-size: 0.9rem;
  1706. line-height: 1.6;
  1707. color: #212529;
  1708. background-color: transparent;
  1709. border: solid transparent;
  1710. border-width: 1px 0;
  1711. }
  1712. .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  1713. padding-right: 0;
  1714. padding-left: 0;
  1715. }
  1716. .form-control-sm {
  1717. height: calc(1.5em + 0.5rem + 2px);
  1718. padding: 0.25rem 0.5rem;
  1719. font-size: 0.7875rem;
  1720. line-height: 1.5;
  1721. border-radius: 0.2rem;
  1722. }
  1723. .form-control-lg {
  1724. height: calc(1.5em + 1rem + 2px);
  1725. padding: 0.5rem 1rem;
  1726. font-size: 1.125rem;
  1727. line-height: 1.5;
  1728. border-radius: 0.3rem;
  1729. }
  1730. select.form-control[size], select.form-control[multiple] {
  1731. height: auto;
  1732. }
  1733. textarea.form-control {
  1734. height: auto;
  1735. }
  1736. .form-group {
  1737. margin-bottom: 1rem;
  1738. }
  1739. .form-text {
  1740. display: block;
  1741. margin-top: 0.25rem;
  1742. }
  1743. .form-row {
  1744. display: flex;
  1745. flex-wrap: wrap;
  1746. margin-right: -5px;
  1747. margin-left: -5px;
  1748. }
  1749. .form-row > .col,
  1750. .form-row > [class*=col-] {
  1751. padding-right: 5px;
  1752. padding-left: 5px;
  1753. }
  1754. .form-check {
  1755. position: relative;
  1756. display: block;
  1757. padding-left: 1.25rem;
  1758. }
  1759. .form-check-input {
  1760. position: absolute;
  1761. margin-top: 0.3rem;
  1762. margin-left: -1.25rem;
  1763. }
  1764. .form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  1765. color: #6c757d;
  1766. }
  1767. .form-check-label {
  1768. margin-bottom: 0;
  1769. }
  1770. .form-check-inline {
  1771. display: inline-flex;
  1772. align-items: center;
  1773. padding-left: 0;
  1774. margin-right: 0.75rem;
  1775. }
  1776. .form-check-inline .form-check-input {
  1777. position: static;
  1778. margin-top: 0;
  1779. margin-right: 0.3125rem;
  1780. margin-left: 0;
  1781. }
  1782. .valid-feedback {
  1783. display: none;
  1784. width: 100%;
  1785. margin-top: 0.25rem;
  1786. font-size: 80%;
  1787. color: #38c172;
  1788. }
  1789. .valid-tooltip {
  1790. position: absolute;
  1791. top: 100%;
  1792. left: 0;
  1793. z-index: 5;
  1794. display: none;
  1795. max-width: 100%;
  1796. padding: 0.25rem 0.5rem;
  1797. margin-top: 0.1rem;
  1798. font-size: 0.7875rem;
  1799. line-height: 1.6;
  1800. color: #fff;
  1801. background-color: rgba(56, 193, 114, 0.9);
  1802. border-radius: 0.25rem;
  1803. }
  1804. .form-row > .col > .valid-tooltip, .form-row > [class*=col-] > .valid-tooltip {
  1805. left: 5px;
  1806. }
  1807. .was-validated :valid ~ .valid-feedback,
  1808. .was-validated :valid ~ .valid-tooltip,
  1809. .is-valid ~ .valid-feedback,
  1810. .is-valid ~ .valid-tooltip {
  1811. display: block;
  1812. }
  1813. .was-validated .form-control:valid, .form-control.is-valid {
  1814. border-color: #38c172;
  1815. padding-right: calc(1.6em + 0.75rem);
  1816. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2338c172' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  1817. background-repeat: no-repeat;
  1818. background-position: right calc(0.4em + 0.1875rem) center;
  1819. background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
  1820. }
  1821. .was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  1822. border-color: #38c172;
  1823. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.25);
  1824. }
  1825. .was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  1826. padding-right: calc(1.6em + 0.75rem);
  1827. background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem);
  1828. }
  1829. .was-validated .custom-select:valid, .custom-select.is-valid {
  1830. border-color: #38c172;
  1831. padding-right: calc(0.75em + 2.3125rem);
  1832. background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2338c172' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(0.8em + 0.375rem) calc(0.8em + 0.375rem) no-repeat;
  1833. }
  1834. .was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  1835. border-color: #38c172;
  1836. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.25);
  1837. }
  1838. .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  1839. color: #38c172;
  1840. }
  1841. .was-validated .form-check-input:valid ~ .valid-feedback,
  1842. .was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
  1843. .form-check-input.is-valid ~ .valid-tooltip {
  1844. display: block;
  1845. }
  1846. .was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  1847. color: #38c172;
  1848. }
  1849. .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  1850. border-color: #38c172;
  1851. }
  1852. .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  1853. border-color: #5cd08d;
  1854. background-color: #5cd08d;
  1855. }
  1856. .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  1857. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.25);
  1858. }
  1859. .was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  1860. border-color: #38c172;
  1861. }
  1862. .was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  1863. border-color: #38c172;
  1864. }
  1865. .was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  1866. border-color: #38c172;
  1867. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.25);
  1868. }
  1869. .invalid-feedback {
  1870. display: none;
  1871. width: 100%;
  1872. margin-top: 0.25rem;
  1873. font-size: 80%;
  1874. color: #e3342f;
  1875. }
  1876. .invalid-tooltip {
  1877. position: absolute;
  1878. top: 100%;
  1879. left: 0;
  1880. z-index: 5;
  1881. display: none;
  1882. max-width: 100%;
  1883. padding: 0.25rem 0.5rem;
  1884. margin-top: 0.1rem;
  1885. font-size: 0.7875rem;
  1886. line-height: 1.6;
  1887. color: #fff;
  1888. background-color: rgba(227, 52, 47, 0.9);
  1889. border-radius: 0.25rem;
  1890. }
  1891. .form-row > .col > .invalid-tooltip, .form-row > [class*=col-] > .invalid-tooltip {
  1892. left: 5px;
  1893. }
  1894. .was-validated :invalid ~ .invalid-feedback,
  1895. .was-validated :invalid ~ .invalid-tooltip,
  1896. .is-invalid ~ .invalid-feedback,
  1897. .is-invalid ~ .invalid-tooltip {
  1898. display: block;
  1899. }
  1900. .was-validated .form-control:invalid, .form-control.is-invalid {
  1901. border-color: #e3342f;
  1902. padding-right: calc(1.6em + 0.75rem);
  1903. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23e3342f' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23e3342f' stroke='none'/%3e%3c/svg%3e");
  1904. background-repeat: no-repeat;
  1905. background-position: right calc(0.4em + 0.1875rem) center;
  1906. background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
  1907. }
  1908. .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  1909. border-color: #e3342f;
  1910. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
  1911. }
  1912. .was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  1913. padding-right: calc(1.6em + 0.75rem);
  1914. background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem);
  1915. }
  1916. .was-validated .custom-select:invalid, .custom-select.is-invalid {
  1917. border-color: #e3342f;
  1918. padding-right: calc(0.75em + 2.3125rem);
  1919. background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23e3342f' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23e3342f' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(0.8em + 0.375rem) calc(0.8em + 0.375rem) no-repeat;
  1920. }
  1921. .was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  1922. border-color: #e3342f;
  1923. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
  1924. }
  1925. .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  1926. color: #e3342f;
  1927. }
  1928. .was-validated .form-check-input:invalid ~ .invalid-feedback,
  1929. .was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
  1930. .form-check-input.is-invalid ~ .invalid-tooltip {
  1931. display: block;
  1932. }
  1933. .was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  1934. color: #e3342f;
  1935. }
  1936. .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  1937. border-color: #e3342f;
  1938. }
  1939. .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  1940. border-color: #e9605c;
  1941. background-color: #e9605c;
  1942. }
  1943. .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  1944. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
  1945. }
  1946. .was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  1947. border-color: #e3342f;
  1948. }
  1949. .was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  1950. border-color: #e3342f;
  1951. }
  1952. .was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  1953. border-color: #e3342f;
  1954. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
  1955. }
  1956. .form-inline {
  1957. display: flex;
  1958. flex-flow: row wrap;
  1959. align-items: center;
  1960. }
  1961. .form-inline .form-check {
  1962. width: 100%;
  1963. }
  1964. @media (min-width: 576px) {
  1965. .form-inline label {
  1966. display: flex;
  1967. align-items: center;
  1968. justify-content: center;
  1969. margin-bottom: 0;
  1970. }
  1971. .form-inline .form-group {
  1972. display: flex;
  1973. flex: 0 0 auto;
  1974. flex-flow: row wrap;
  1975. align-items: center;
  1976. margin-bottom: 0;
  1977. }
  1978. .form-inline .form-control {
  1979. display: inline-block;
  1980. width: auto;
  1981. vertical-align: middle;
  1982. }
  1983. .form-inline .form-control-plaintext {
  1984. display: inline-block;
  1985. }
  1986. .form-inline .input-group,
  1987. .form-inline .custom-select {
  1988. width: auto;
  1989. }
  1990. .form-inline .form-check {
  1991. display: flex;
  1992. align-items: center;
  1993. justify-content: center;
  1994. width: auto;
  1995. padding-left: 0;
  1996. }
  1997. .form-inline .form-check-input {
  1998. position: relative;
  1999. flex-shrink: 0;
  2000. margin-top: 0;
  2001. margin-right: 0.25rem;
  2002. margin-left: 0;
  2003. }
  2004. .form-inline .custom-control {
  2005. align-items: center;
  2006. justify-content: center;
  2007. }
  2008. .form-inline .custom-control-label {
  2009. margin-bottom: 0;
  2010. }
  2011. }
  2012. .btn {
  2013. display: inline-block;
  2014. font-weight: 400;
  2015. color: #212529;
  2016. text-align: center;
  2017. vertical-align: middle;
  2018. -webkit-user-select: none;
  2019. -moz-user-select: none;
  2020. -ms-user-select: none;
  2021. user-select: none;
  2022. background-color: transparent;
  2023. border: 1px solid transparent;
  2024. padding: 0.375rem 0.75rem;
  2025. font-size: 0.9rem;
  2026. line-height: 1.6;
  2027. border-radius: 0.25rem;
  2028. 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;
  2029. }
  2030. @media (prefers-reduced-motion: reduce) {
  2031. .btn {
  2032. transition: none;
  2033. }
  2034. }
  2035. .btn:hover {
  2036. color: #212529;
  2037. text-decoration: none;
  2038. }
  2039. .btn:focus, .btn.focus {
  2040. outline: 0;
  2041. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  2042. }
  2043. .btn.disabled, .btn:disabled {
  2044. opacity: 0.65;
  2045. }
  2046. .btn:not(:disabled):not(.disabled) {
  2047. cursor: pointer;
  2048. }
  2049. a.btn.disabled,
  2050. fieldset:disabled a.btn {
  2051. pointer-events: none;
  2052. }
  2053. .btn-primary {
  2054. color: #fff;
  2055. background-color: #3490dc;
  2056. border-color: #3490dc;
  2057. }
  2058. .btn-primary:hover {
  2059. color: #fff;
  2060. background-color: #227dc7;
  2061. border-color: #2176bd;
  2062. }
  2063. .btn-primary:focus, .btn-primary.focus {
  2064. color: #fff;
  2065. background-color: #227dc7;
  2066. border-color: #2176bd;
  2067. box-shadow: 0 0 0 0.2rem rgba(82, 161, 225, 0.5);
  2068. }
  2069. .btn-primary.disabled, .btn-primary:disabled {
  2070. color: #fff;
  2071. background-color: #3490dc;
  2072. border-color: #3490dc;
  2073. }
  2074. .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  2075. color: #fff;
  2076. background-color: #2176bd;
  2077. border-color: #1f6fb2;
  2078. }
  2079. .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  2080. box-shadow: 0 0 0 0.2rem rgba(82, 161, 225, 0.5);
  2081. }
  2082. .btn-secondary {
  2083. color: #fff;
  2084. background-color: #6c757d;
  2085. border-color: #6c757d;
  2086. }
  2087. .btn-secondary:hover {
  2088. color: #fff;
  2089. background-color: #5a6268;
  2090. border-color: #545b62;
  2091. }
  2092. .btn-secondary:focus, .btn-secondary.focus {
  2093. color: #fff;
  2094. background-color: #5a6268;
  2095. border-color: #545b62;
  2096. box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
  2097. }
  2098. .btn-secondary.disabled, .btn-secondary:disabled {
  2099. color: #fff;
  2100. background-color: #6c757d;
  2101. border-color: #6c757d;
  2102. }
  2103. .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  2104. color: #fff;
  2105. background-color: #545b62;
  2106. border-color: #4e555b;
  2107. }
  2108. .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  2109. box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
  2110. }
  2111. .btn-success {
  2112. color: #fff;
  2113. background-color: #38c172;
  2114. border-color: #38c172;
  2115. }
  2116. .btn-success:hover {
  2117. color: #fff;
  2118. background-color: #2fa360;
  2119. border-color: #2d995b;
  2120. }
  2121. .btn-success:focus, .btn-success.focus {
  2122. color: #fff;
  2123. background-color: #2fa360;
  2124. border-color: #2d995b;
  2125. box-shadow: 0 0 0 0.2rem rgba(86, 202, 135, 0.5);
  2126. }
  2127. .btn-success.disabled, .btn-success:disabled {
  2128. color: #fff;
  2129. background-color: #38c172;
  2130. border-color: #38c172;
  2131. }
  2132. .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  2133. color: #fff;
  2134. background-color: #2d995b;
  2135. border-color: #2a9055;
  2136. }
  2137. .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
  2138. box-shadow: 0 0 0 0.2rem rgba(86, 202, 135, 0.5);
  2139. }
  2140. .btn-info {
  2141. color: #212529;
  2142. background-color: #6cb2eb;
  2143. border-color: #6cb2eb;
  2144. }
  2145. .btn-info:hover {
  2146. color: #fff;
  2147. background-color: #4aa0e6;
  2148. border-color: #3f9ae5;
  2149. }
  2150. .btn-info:focus, .btn-info.focus {
  2151. color: #fff;
  2152. background-color: #4aa0e6;
  2153. border-color: #3f9ae5;
  2154. box-shadow: 0 0 0 0.2rem rgba(97, 157, 206, 0.5);
  2155. }
  2156. .btn-info.disabled, .btn-info:disabled {
  2157. color: #212529;
  2158. background-color: #6cb2eb;
  2159. border-color: #6cb2eb;
  2160. }
  2161. .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  2162. color: #fff;
  2163. background-color: #3f9ae5;
  2164. border-color: #3495e3;
  2165. }
  2166. .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
  2167. box-shadow: 0 0 0 0.2rem rgba(97, 157, 206, 0.5);
  2168. }
  2169. .btn-warning {
  2170. color: #212529;
  2171. background-color: #ffed4a;
  2172. border-color: #ffed4a;
  2173. }
  2174. .btn-warning:hover {
  2175. color: #212529;
  2176. background-color: #ffe924;
  2177. border-color: #ffe817;
  2178. }
  2179. .btn-warning:focus, .btn-warning.focus {
  2180. color: #212529;
  2181. background-color: #ffe924;
  2182. border-color: #ffe817;
  2183. box-shadow: 0 0 0 0.2rem rgba(222, 207, 69, 0.5);
  2184. }
  2185. .btn-warning.disabled, .btn-warning:disabled {
  2186. color: #212529;
  2187. background-color: #ffed4a;
  2188. border-color: #ffed4a;
  2189. }
  2190. .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  2191. color: #212529;
  2192. background-color: #ffe817;
  2193. border-color: #ffe70a;
  2194. }
  2195. .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
  2196. box-shadow: 0 0 0 0.2rem rgba(222, 207, 69, 0.5);
  2197. }
  2198. .btn-danger {
  2199. color: #fff;
  2200. background-color: #e3342f;
  2201. border-color: #e3342f;
  2202. }
  2203. .btn-danger:hover {
  2204. color: #fff;
  2205. background-color: #d0211c;
  2206. border-color: #c51f1a;
  2207. }
  2208. .btn-danger:focus, .btn-danger.focus {
  2209. color: #fff;
  2210. background-color: #d0211c;
  2211. border-color: #c51f1a;
  2212. box-shadow: 0 0 0 0.2rem rgba(231, 82, 78, 0.5);
  2213. }
  2214. .btn-danger.disabled, .btn-danger:disabled {
  2215. color: #fff;
  2216. background-color: #e3342f;
  2217. border-color: #e3342f;
  2218. }
  2219. .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  2220. color: #fff;
  2221. background-color: #c51f1a;
  2222. border-color: #b91d19;
  2223. }
  2224. .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
  2225. box-shadow: 0 0 0 0.2rem rgba(231, 82, 78, 0.5);
  2226. }
  2227. .btn-light {
  2228. color: #212529;
  2229. background-color: #f8f9fa;
  2230. border-color: #f8f9fa;
  2231. }
  2232. .btn-light:hover {
  2233. color: #212529;
  2234. background-color: #e2e6ea;
  2235. border-color: #dae0e5;
  2236. }
  2237. .btn-light:focus, .btn-light.focus {
  2238. color: #212529;
  2239. background-color: #e2e6ea;
  2240. border-color: #dae0e5;
  2241. box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
  2242. }
  2243. .btn-light.disabled, .btn-light:disabled {
  2244. color: #212529;
  2245. background-color: #f8f9fa;
  2246. border-color: #f8f9fa;
  2247. }
  2248. .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  2249. color: #212529;
  2250. background-color: #dae0e5;
  2251. border-color: #d3d9df;
  2252. }
  2253. .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
  2254. box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
  2255. }
  2256. .btn-dark {
  2257. color: #fff;
  2258. background-color: #343a40;
  2259. border-color: #343a40;
  2260. }
  2261. .btn-dark:hover {
  2262. color: #fff;
  2263. background-color: #23272b;
  2264. border-color: #1d2124;
  2265. }
  2266. .btn-dark:focus, .btn-dark.focus {
  2267. color: #fff;
  2268. background-color: #23272b;
  2269. border-color: #1d2124;
  2270. box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
  2271. }
  2272. .btn-dark.disabled, .btn-dark:disabled {
  2273. color: #fff;
  2274. background-color: #343a40;
  2275. border-color: #343a40;
  2276. }
  2277. .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  2278. color: #fff;
  2279. background-color: #1d2124;
  2280. border-color: #171a1d;
  2281. }
  2282. .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
  2283. box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
  2284. }
  2285. .btn-outline-primary {
  2286. color: #3490dc;
  2287. border-color: #3490dc;
  2288. }
  2289. .btn-outline-primary:hover {
  2290. color: #fff;
  2291. background-color: #3490dc;
  2292. border-color: #3490dc;
  2293. }
  2294. .btn-outline-primary:focus, .btn-outline-primary.focus {
  2295. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.5);
  2296. }
  2297. .btn-outline-primary.disabled, .btn-outline-primary:disabled {
  2298. color: #3490dc;
  2299. background-color: transparent;
  2300. }
  2301. .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  2302. color: #fff;
  2303. background-color: #3490dc;
  2304. border-color: #3490dc;
  2305. }
  2306. .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  2307. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.5);
  2308. }
  2309. .btn-outline-secondary {
  2310. color: #6c757d;
  2311. border-color: #6c757d;
  2312. }
  2313. .btn-outline-secondary:hover {
  2314. color: #fff;
  2315. background-color: #6c757d;
  2316. border-color: #6c757d;
  2317. }
  2318. .btn-outline-secondary:focus, .btn-outline-secondary.focus {
  2319. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  2320. }
  2321. .btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  2322. color: #6c757d;
  2323. background-color: transparent;
  2324. }
  2325. .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  2326. color: #fff;
  2327. background-color: #6c757d;
  2328. border-color: #6c757d;
  2329. }
  2330. .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  2331. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  2332. }
  2333. .btn-outline-success {
  2334. color: #38c172;
  2335. border-color: #38c172;
  2336. }
  2337. .btn-outline-success:hover {
  2338. color: #fff;
  2339. background-color: #38c172;
  2340. border-color: #38c172;
  2341. }
  2342. .btn-outline-success:focus, .btn-outline-success.focus {
  2343. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.5);
  2344. }
  2345. .btn-outline-success.disabled, .btn-outline-success:disabled {
  2346. color: #38c172;
  2347. background-color: transparent;
  2348. }
  2349. .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
  2350. color: #fff;
  2351. background-color: #38c172;
  2352. border-color: #38c172;
  2353. }
  2354. .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
  2355. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.5);
  2356. }
  2357. .btn-outline-info {
  2358. color: #6cb2eb;
  2359. border-color: #6cb2eb;
  2360. }
  2361. .btn-outline-info:hover {
  2362. color: #212529;
  2363. background-color: #6cb2eb;
  2364. border-color: #6cb2eb;
  2365. }
  2366. .btn-outline-info:focus, .btn-outline-info.focus {
  2367. box-shadow: 0 0 0 0.2rem rgba(108, 178, 235, 0.5);
  2368. }
  2369. .btn-outline-info.disabled, .btn-outline-info:disabled {
  2370. color: #6cb2eb;
  2371. background-color: transparent;
  2372. }
  2373. .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
  2374. color: #212529;
  2375. background-color: #6cb2eb;
  2376. border-color: #6cb2eb;
  2377. }
  2378. .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
  2379. box-shadow: 0 0 0 0.2rem rgba(108, 178, 235, 0.5);
  2380. }
  2381. .btn-outline-warning {
  2382. color: #ffed4a;
  2383. border-color: #ffed4a;
  2384. }
  2385. .btn-outline-warning:hover {
  2386. color: #212529;
  2387. background-color: #ffed4a;
  2388. border-color: #ffed4a;
  2389. }
  2390. .btn-outline-warning:focus, .btn-outline-warning.focus {
  2391. box-shadow: 0 0 0 0.2rem rgba(255, 237, 74, 0.5);
  2392. }
  2393. .btn-outline-warning.disabled, .btn-outline-warning:disabled {
  2394. color: #ffed4a;
  2395. background-color: transparent;
  2396. }
  2397. .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
  2398. color: #212529;
  2399. background-color: #ffed4a;
  2400. border-color: #ffed4a;
  2401. }
  2402. .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
  2403. box-shadow: 0 0 0 0.2rem rgba(255, 237, 74, 0.5);
  2404. }
  2405. .btn-outline-danger {
  2406. color: #e3342f;
  2407. border-color: #e3342f;
  2408. }
  2409. .btn-outline-danger:hover {
  2410. color: #fff;
  2411. background-color: #e3342f;
  2412. border-color: #e3342f;
  2413. }
  2414. .btn-outline-danger:focus, .btn-outline-danger.focus {
  2415. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.5);
  2416. }
  2417. .btn-outline-danger.disabled, .btn-outline-danger:disabled {
  2418. color: #e3342f;
  2419. background-color: transparent;
  2420. }
  2421. .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
  2422. color: #fff;
  2423. background-color: #e3342f;
  2424. border-color: #e3342f;
  2425. }
  2426. .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
  2427. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.5);
  2428. }
  2429. .btn-outline-light {
  2430. color: #f8f9fa;
  2431. border-color: #f8f9fa;
  2432. }
  2433. .btn-outline-light:hover {
  2434. color: #212529;
  2435. background-color: #f8f9fa;
  2436. border-color: #f8f9fa;
  2437. }
  2438. .btn-outline-light:focus, .btn-outline-light.focus {
  2439. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  2440. }
  2441. .btn-outline-light.disabled, .btn-outline-light:disabled {
  2442. color: #f8f9fa;
  2443. background-color: transparent;
  2444. }
  2445. .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
  2446. color: #212529;
  2447. background-color: #f8f9fa;
  2448. border-color: #f8f9fa;
  2449. }
  2450. .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
  2451. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  2452. }
  2453. .btn-outline-dark {
  2454. color: #343a40;
  2455. border-color: #343a40;
  2456. }
  2457. .btn-outline-dark:hover {
  2458. color: #fff;
  2459. background-color: #343a40;
  2460. border-color: #343a40;
  2461. }
  2462. .btn-outline-dark:focus, .btn-outline-dark.focus {
  2463. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  2464. }
  2465. .btn-outline-dark.disabled, .btn-outline-dark:disabled {
  2466. color: #343a40;
  2467. background-color: transparent;
  2468. }
  2469. .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  2470. color: #fff;
  2471. background-color: #343a40;
  2472. border-color: #343a40;
  2473. }
  2474. .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
  2475. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  2476. }
  2477. .btn-link {
  2478. font-weight: 400;
  2479. color: #3490dc;
  2480. text-decoration: none;
  2481. }
  2482. .btn-link:hover {
  2483. color: #1d68a7;
  2484. text-decoration: underline;
  2485. }
  2486. .btn-link:focus, .btn-link.focus {
  2487. text-decoration: underline;
  2488. }
  2489. .btn-link:disabled, .btn-link.disabled {
  2490. color: #6c757d;
  2491. pointer-events: none;
  2492. }
  2493. .btn-lg, .btn-group-lg > .btn {
  2494. padding: 0.5rem 1rem;
  2495. font-size: 1.125rem;
  2496. line-height: 1.5;
  2497. border-radius: 0.3rem;
  2498. }
  2499. .btn-sm, .btn-group-sm > .btn {
  2500. padding: 0.25rem 0.5rem;
  2501. font-size: 0.7875rem;
  2502. line-height: 1.5;
  2503. border-radius: 0.2rem;
  2504. }
  2505. .btn-block {
  2506. display: block;
  2507. width: 100%;
  2508. }
  2509. .btn-block + .btn-block {
  2510. margin-top: 0.5rem;
  2511. }
  2512. input[type=submit].btn-block,
  2513. input[type=reset].btn-block,
  2514. input[type=button].btn-block {
  2515. width: 100%;
  2516. }
  2517. .fade {
  2518. transition: opacity 0.15s linear;
  2519. }
  2520. @media (prefers-reduced-motion: reduce) {
  2521. .fade {
  2522. transition: none;
  2523. }
  2524. }
  2525. .fade:not(.show) {
  2526. opacity: 0;
  2527. }
  2528. .collapse:not(.show) {
  2529. display: none;
  2530. }
  2531. .collapsing {
  2532. position: relative;
  2533. height: 0;
  2534. overflow: hidden;
  2535. transition: height 0.35s ease;
  2536. }
  2537. @media (prefers-reduced-motion: reduce) {
  2538. .collapsing {
  2539. transition: none;
  2540. }
  2541. }
  2542. .dropup,
  2543. .dropright,
  2544. .dropdown,
  2545. .dropleft {
  2546. position: relative;
  2547. }
  2548. .dropdown-toggle {
  2549. white-space: nowrap;
  2550. }
  2551. .dropdown-toggle::after {
  2552. display: inline-block;
  2553. margin-left: 0.255em;
  2554. vertical-align: 0.255em;
  2555. content: "";
  2556. border-top: 0.3em solid;
  2557. border-right: 0.3em solid transparent;
  2558. border-bottom: 0;
  2559. border-left: 0.3em solid transparent;
  2560. }
  2561. .dropdown-toggle:empty::after {
  2562. margin-left: 0;
  2563. }
  2564. .dropdown-menu {
  2565. position: absolute;
  2566. top: 100%;
  2567. left: 0;
  2568. z-index: 1000;
  2569. display: none;
  2570. float: left;
  2571. min-width: 10rem;
  2572. padding: 0.5rem 0;
  2573. margin: 0.125rem 0 0;
  2574. font-size: 0.9rem;
  2575. color: #212529;
  2576. text-align: left;
  2577. list-style: none;
  2578. background-color: #fff;
  2579. background-clip: padding-box;
  2580. border: 1px solid rgba(0, 0, 0, 0.15);
  2581. border-radius: 0.25rem;
  2582. }
  2583. .dropdown-menu-left {
  2584. right: auto;
  2585. left: 0;
  2586. }
  2587. .dropdown-menu-right {
  2588. right: 0;
  2589. left: auto;
  2590. }
  2591. @media (min-width: 576px) {
  2592. .dropdown-menu-sm-left {
  2593. right: auto;
  2594. left: 0;
  2595. }
  2596. .dropdown-menu-sm-right {
  2597. right: 0;
  2598. left: auto;
  2599. }
  2600. }
  2601. @media (min-width: 768px) {
  2602. .dropdown-menu-md-left {
  2603. right: auto;
  2604. left: 0;
  2605. }
  2606. .dropdown-menu-md-right {
  2607. right: 0;
  2608. left: auto;
  2609. }
  2610. }
  2611. @media (min-width: 992px) {
  2612. .dropdown-menu-lg-left {
  2613. right: auto;
  2614. left: 0;
  2615. }
  2616. .dropdown-menu-lg-right {
  2617. right: 0;
  2618. left: auto;
  2619. }
  2620. }
  2621. @media (min-width: 1200px) {
  2622. .dropdown-menu-xl-left {
  2623. right: auto;
  2624. left: 0;
  2625. }
  2626. .dropdown-menu-xl-right {
  2627. right: 0;
  2628. left: auto;
  2629. }
  2630. }
  2631. .dropup .dropdown-menu {
  2632. top: auto;
  2633. bottom: 100%;
  2634. margin-top: 0;
  2635. margin-bottom: 0.125rem;
  2636. }
  2637. .dropup .dropdown-toggle::after {
  2638. display: inline-block;
  2639. margin-left: 0.255em;
  2640. vertical-align: 0.255em;
  2641. content: "";
  2642. border-top: 0;
  2643. border-right: 0.3em solid transparent;
  2644. border-bottom: 0.3em solid;
  2645. border-left: 0.3em solid transparent;
  2646. }
  2647. .dropup .dropdown-toggle:empty::after {
  2648. margin-left: 0;
  2649. }
  2650. .dropright .dropdown-menu {
  2651. top: 0;
  2652. right: auto;
  2653. left: 100%;
  2654. margin-top: 0;
  2655. margin-left: 0.125rem;
  2656. }
  2657. .dropright .dropdown-toggle::after {
  2658. display: inline-block;
  2659. margin-left: 0.255em;
  2660. vertical-align: 0.255em;
  2661. content: "";
  2662. border-top: 0.3em solid transparent;
  2663. border-right: 0;
  2664. border-bottom: 0.3em solid transparent;
  2665. border-left: 0.3em solid;
  2666. }
  2667. .dropright .dropdown-toggle:empty::after {
  2668. margin-left: 0;
  2669. }
  2670. .dropright .dropdown-toggle::after {
  2671. vertical-align: 0;
  2672. }
  2673. .dropleft .dropdown-menu {
  2674. top: 0;
  2675. right: 100%;
  2676. left: auto;
  2677. margin-top: 0;
  2678. margin-right: 0.125rem;
  2679. }
  2680. .dropleft .dropdown-toggle::after {
  2681. display: inline-block;
  2682. margin-left: 0.255em;
  2683. vertical-align: 0.255em;
  2684. content: "";
  2685. }
  2686. .dropleft .dropdown-toggle::after {
  2687. display: none;
  2688. }
  2689. .dropleft .dropdown-toggle::before {
  2690. display: inline-block;
  2691. margin-right: 0.255em;
  2692. vertical-align: 0.255em;
  2693. content: "";
  2694. border-top: 0.3em solid transparent;
  2695. border-right: 0.3em solid;
  2696. border-bottom: 0.3em solid transparent;
  2697. }
  2698. .dropleft .dropdown-toggle:empty::after {
  2699. margin-left: 0;
  2700. }
  2701. .dropleft .dropdown-toggle::before {
  2702. vertical-align: 0;
  2703. }
  2704. .dropdown-menu[x-placement^=top], .dropdown-menu[x-placement^=right], .dropdown-menu[x-placement^=bottom], .dropdown-menu[x-placement^=left] {
  2705. right: auto;
  2706. bottom: auto;
  2707. }
  2708. .dropdown-divider {
  2709. height: 0;
  2710. margin: 0.5rem 0;
  2711. overflow: hidden;
  2712. border-top: 1px solid #e9ecef;
  2713. }
  2714. .dropdown-item {
  2715. display: block;
  2716. width: 100%;
  2717. padding: 0.25rem 1.5rem;
  2718. clear: both;
  2719. font-weight: 400;
  2720. color: #212529;
  2721. text-align: inherit;
  2722. white-space: nowrap;
  2723. background-color: transparent;
  2724. border: 0;
  2725. }
  2726. .dropdown-item:hover, .dropdown-item:focus {
  2727. color: #16181b;
  2728. text-decoration: none;
  2729. background-color: #e9ecef;
  2730. }
  2731. .dropdown-item.active, .dropdown-item:active {
  2732. color: #fff;
  2733. text-decoration: none;
  2734. background-color: #3490dc;
  2735. }
  2736. .dropdown-item.disabled, .dropdown-item:disabled {
  2737. color: #adb5bd;
  2738. pointer-events: none;
  2739. background-color: transparent;
  2740. }
  2741. .dropdown-menu.show {
  2742. display: block;
  2743. }
  2744. .dropdown-header {
  2745. display: block;
  2746. padding: 0.5rem 1.5rem;
  2747. margin-bottom: 0;
  2748. font-size: 0.7875rem;
  2749. color: #6c757d;
  2750. white-space: nowrap;
  2751. }
  2752. .dropdown-item-text {
  2753. display: block;
  2754. padding: 0.25rem 1.5rem;
  2755. color: #212529;
  2756. }
  2757. .btn-group,
  2758. .btn-group-vertical {
  2759. position: relative;
  2760. display: inline-flex;
  2761. vertical-align: middle;
  2762. }
  2763. .btn-group > .btn,
  2764. .btn-group-vertical > .btn {
  2765. position: relative;
  2766. flex: 1 1 auto;
  2767. }
  2768. .btn-group > .btn:hover,
  2769. .btn-group-vertical > .btn:hover {
  2770. z-index: 1;
  2771. }
  2772. .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
  2773. .btn-group-vertical > .btn:focus,
  2774. .btn-group-vertical > .btn:active,
  2775. .btn-group-vertical > .btn.active {
  2776. z-index: 1;
  2777. }
  2778. .btn-toolbar {
  2779. display: flex;
  2780. flex-wrap: wrap;
  2781. justify-content: flex-start;
  2782. }
  2783. .btn-toolbar .input-group {
  2784. width: auto;
  2785. }
  2786. .btn-group > .btn:not(:first-child),
  2787. .btn-group > .btn-group:not(:first-child) {
  2788. margin-left: -1px;
  2789. }
  2790. .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
  2791. .btn-group > .btn-group:not(:last-child) > .btn {
  2792. border-top-right-radius: 0;
  2793. border-bottom-right-radius: 0;
  2794. }
  2795. .btn-group > .btn:not(:first-child),
  2796. .btn-group > .btn-group:not(:first-child) > .btn {
  2797. border-top-left-radius: 0;
  2798. border-bottom-left-radius: 0;
  2799. }
  2800. .dropdown-toggle-split {
  2801. padding-right: 0.5625rem;
  2802. padding-left: 0.5625rem;
  2803. }
  2804. .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after {
  2805. margin-left: 0;
  2806. }
  2807. .dropleft .dropdown-toggle-split::before {
  2808. margin-right: 0;
  2809. }
  2810. .btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  2811. padding-right: 0.375rem;
  2812. padding-left: 0.375rem;
  2813. }
  2814. .btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  2815. padding-right: 0.75rem;
  2816. padding-left: 0.75rem;
  2817. }
  2818. .btn-group-vertical {
  2819. flex-direction: column;
  2820. align-items: flex-start;
  2821. justify-content: center;
  2822. }
  2823. .btn-group-vertical > .btn,
  2824. .btn-group-vertical > .btn-group {
  2825. width: 100%;
  2826. }
  2827. .btn-group-vertical > .btn:not(:first-child),
  2828. .btn-group-vertical > .btn-group:not(:first-child) {
  2829. margin-top: -1px;
  2830. }
  2831. .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
  2832. .btn-group-vertical > .btn-group:not(:last-child) > .btn {
  2833. border-bottom-right-radius: 0;
  2834. border-bottom-left-radius: 0;
  2835. }
  2836. .btn-group-vertical > .btn:not(:first-child),
  2837. .btn-group-vertical > .btn-group:not(:first-child) > .btn {
  2838. border-top-left-radius: 0;
  2839. border-top-right-radius: 0;
  2840. }
  2841. .btn-group-toggle > .btn,
  2842. .btn-group-toggle > .btn-group > .btn {
  2843. margin-bottom: 0;
  2844. }
  2845. .btn-group-toggle > .btn input[type=radio],
  2846. .btn-group-toggle > .btn input[type=checkbox],
  2847. .btn-group-toggle > .btn-group > .btn input[type=radio],
  2848. .btn-group-toggle > .btn-group > .btn input[type=checkbox] {
  2849. position: absolute;
  2850. clip: rect(0, 0, 0, 0);
  2851. pointer-events: none;
  2852. }
  2853. .input-group {
  2854. position: relative;
  2855. display: flex;
  2856. flex-wrap: wrap;
  2857. align-items: stretch;
  2858. width: 100%;
  2859. }
  2860. .input-group > .form-control,
  2861. .input-group > .form-control-plaintext,
  2862. .input-group > .custom-select,
  2863. .input-group > .custom-file {
  2864. position: relative;
  2865. flex: 1 1 auto;
  2866. width: 1%;
  2867. min-width: 0;
  2868. margin-bottom: 0;
  2869. }
  2870. .input-group > .form-control + .form-control,
  2871. .input-group > .form-control + .custom-select,
  2872. .input-group > .form-control + .custom-file,
  2873. .input-group > .form-control-plaintext + .form-control,
  2874. .input-group > .form-control-plaintext + .custom-select,
  2875. .input-group > .form-control-plaintext + .custom-file,
  2876. .input-group > .custom-select + .form-control,
  2877. .input-group > .custom-select + .custom-select,
  2878. .input-group > .custom-select + .custom-file,
  2879. .input-group > .custom-file + .form-control,
  2880. .input-group > .custom-file + .custom-select,
  2881. .input-group > .custom-file + .custom-file {
  2882. margin-left: -1px;
  2883. }
  2884. .input-group > .form-control:focus,
  2885. .input-group > .custom-select:focus,
  2886. .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  2887. z-index: 3;
  2888. }
  2889. .input-group > .custom-file .custom-file-input:focus {
  2890. z-index: 4;
  2891. }
  2892. .input-group > .form-control:not(:first-child),
  2893. .input-group > .custom-select:not(:first-child) {
  2894. border-top-left-radius: 0;
  2895. border-bottom-left-radius: 0;
  2896. }
  2897. .input-group > .custom-file {
  2898. display: flex;
  2899. align-items: center;
  2900. }
  2901. .input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:first-child) .custom-file-label {
  2902. border-top-left-radius: 0;
  2903. border-bottom-left-radius: 0;
  2904. }
  2905. .input-group:not(.has-validation) > .form-control:not(:last-child),
  2906. .input-group:not(.has-validation) > .custom-select:not(:last-child),
  2907. .input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after {
  2908. border-top-right-radius: 0;
  2909. border-bottom-right-radius: 0;
  2910. }
  2911. .input-group.has-validation > .form-control:nth-last-child(n+3),
  2912. .input-group.has-validation > .custom-select:nth-last-child(n+3),
  2913. .input-group.has-validation > .custom-file:nth-last-child(n+3) .custom-file-label::after {
  2914. border-top-right-radius: 0;
  2915. border-bottom-right-radius: 0;
  2916. }
  2917. .input-group-prepend,
  2918. .input-group-append {
  2919. display: flex;
  2920. }
  2921. .input-group-prepend .btn,
  2922. .input-group-append .btn {
  2923. position: relative;
  2924. z-index: 2;
  2925. }
  2926. .input-group-prepend .btn:focus,
  2927. .input-group-append .btn:focus {
  2928. z-index: 3;
  2929. }
  2930. .input-group-prepend .btn + .btn,
  2931. .input-group-prepend .btn + .input-group-text,
  2932. .input-group-prepend .input-group-text + .input-group-text,
  2933. .input-group-prepend .input-group-text + .btn,
  2934. .input-group-append .btn + .btn,
  2935. .input-group-append .btn + .input-group-text,
  2936. .input-group-append .input-group-text + .input-group-text,
  2937. .input-group-append .input-group-text + .btn {
  2938. margin-left: -1px;
  2939. }
  2940. .input-group-prepend {
  2941. margin-right: -1px;
  2942. }
  2943. .input-group-append {
  2944. margin-left: -1px;
  2945. }
  2946. .input-group-text {
  2947. display: flex;
  2948. align-items: center;
  2949. padding: 0.375rem 0.75rem;
  2950. margin-bottom: 0;
  2951. font-size: 0.9rem;
  2952. font-weight: 400;
  2953. line-height: 1.6;
  2954. color: #495057;
  2955. text-align: center;
  2956. white-space: nowrap;
  2957. background-color: #e9ecef;
  2958. border: 1px solid #ced4da;
  2959. border-radius: 0.25rem;
  2960. }
  2961. .input-group-text input[type=radio],
  2962. .input-group-text input[type=checkbox] {
  2963. margin-top: 0;
  2964. }
  2965. .input-group-lg > .form-control:not(textarea),
  2966. .input-group-lg > .custom-select {
  2967. height: calc(1.5em + 1rem + 2px);
  2968. }
  2969. .input-group-lg > .form-control,
  2970. .input-group-lg > .custom-select,
  2971. .input-group-lg > .input-group-prepend > .input-group-text,
  2972. .input-group-lg > .input-group-append > .input-group-text,
  2973. .input-group-lg > .input-group-prepend > .btn,
  2974. .input-group-lg > .input-group-append > .btn {
  2975. padding: 0.5rem 1rem;
  2976. font-size: 1.125rem;
  2977. line-height: 1.5;
  2978. border-radius: 0.3rem;
  2979. }
  2980. .input-group-sm > .form-control:not(textarea),
  2981. .input-group-sm > .custom-select {
  2982. height: calc(1.5em + 0.5rem + 2px);
  2983. }
  2984. .input-group-sm > .form-control,
  2985. .input-group-sm > .custom-select,
  2986. .input-group-sm > .input-group-prepend > .input-group-text,
  2987. .input-group-sm > .input-group-append > .input-group-text,
  2988. .input-group-sm > .input-group-prepend > .btn,
  2989. .input-group-sm > .input-group-append > .btn {
  2990. padding: 0.25rem 0.5rem;
  2991. font-size: 0.7875rem;
  2992. line-height: 1.5;
  2993. border-radius: 0.2rem;
  2994. }
  2995. .input-group-lg > .custom-select,
  2996. .input-group-sm > .custom-select {
  2997. padding-right: 1.75rem;
  2998. }
  2999. .input-group > .input-group-prepend > .btn,
  3000. .input-group > .input-group-prepend > .input-group-text,
  3001. .input-group:not(.has-validation) > .input-group-append:not(:last-child) > .btn,
  3002. .input-group:not(.has-validation) > .input-group-append:not(:last-child) > .input-group-text,
  3003. .input-group.has-validation > .input-group-append:nth-last-child(n+3) > .btn,
  3004. .input-group.has-validation > .input-group-append:nth-last-child(n+3) > .input-group-text,
  3005. .input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  3006. .input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  3007. border-top-right-radius: 0;
  3008. border-bottom-right-radius: 0;
  3009. }
  3010. .input-group > .input-group-append > .btn,
  3011. .input-group > .input-group-append > .input-group-text,
  3012. .input-group > .input-group-prepend:not(:first-child) > .btn,
  3013. .input-group > .input-group-prepend:not(:first-child) > .input-group-text,
  3014. .input-group > .input-group-prepend:first-child > .btn:not(:first-child),
  3015. .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  3016. border-top-left-radius: 0;
  3017. border-bottom-left-radius: 0;
  3018. }
  3019. .custom-control {
  3020. position: relative;
  3021. z-index: 1;
  3022. display: block;
  3023. min-height: 1.44rem;
  3024. padding-left: 1.5rem;
  3025. -webkit-print-color-adjust: exact;
  3026. color-adjust: exact;
  3027. }
  3028. .custom-control-inline {
  3029. display: inline-flex;
  3030. margin-right: 1rem;
  3031. }
  3032. .custom-control-input {
  3033. position: absolute;
  3034. left: 0;
  3035. z-index: -1;
  3036. width: 1rem;
  3037. height: 1.22rem;
  3038. opacity: 0;
  3039. }
  3040. .custom-control-input:checked ~ .custom-control-label::before {
  3041. color: #fff;
  3042. border-color: #3490dc;
  3043. background-color: #3490dc;
  3044. }
  3045. .custom-control-input:focus ~ .custom-control-label::before {
  3046. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3047. }
  3048. .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  3049. border-color: #a1cbef;
  3050. }
  3051. .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  3052. color: #fff;
  3053. background-color: #cce3f6;
  3054. border-color: #cce3f6;
  3055. }
  3056. .custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  3057. color: #6c757d;
  3058. }
  3059. .custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  3060. background-color: #e9ecef;
  3061. }
  3062. .custom-control-label {
  3063. position: relative;
  3064. margin-bottom: 0;
  3065. vertical-align: top;
  3066. }
  3067. .custom-control-label::before {
  3068. position: absolute;
  3069. top: 0.22rem;
  3070. left: -1.5rem;
  3071. display: block;
  3072. width: 1rem;
  3073. height: 1rem;
  3074. pointer-events: none;
  3075. content: "";
  3076. background-color: #fff;
  3077. border: #adb5bd solid 1px;
  3078. }
  3079. .custom-control-label::after {
  3080. position: absolute;
  3081. top: 0.22rem;
  3082. left: -1.5rem;
  3083. display: block;
  3084. width: 1rem;
  3085. height: 1rem;
  3086. content: "";
  3087. background: 50%/50% 50% no-repeat;
  3088. }
  3089. .custom-checkbox .custom-control-label::before {
  3090. border-radius: 0.25rem;
  3091. }
  3092. .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  3093. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
  3094. }
  3095. .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  3096. border-color: #3490dc;
  3097. background-color: #3490dc;
  3098. }
  3099. .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  3100. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
  3101. }
  3102. .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  3103. background-color: rgba(52, 144, 220, 0.5);
  3104. }
  3105. .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  3106. background-color: rgba(52, 144, 220, 0.5);
  3107. }
  3108. .custom-radio .custom-control-label::before {
  3109. border-radius: 50%;
  3110. }
  3111. .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  3112. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  3113. }
  3114. .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  3115. background-color: rgba(52, 144, 220, 0.5);
  3116. }
  3117. .custom-switch {
  3118. padding-left: 2.25rem;
  3119. }
  3120. .custom-switch .custom-control-label::before {
  3121. left: -2.25rem;
  3122. width: 1.75rem;
  3123. pointer-events: all;
  3124. border-radius: 0.5rem;
  3125. }
  3126. .custom-switch .custom-control-label::after {
  3127. top: calc(0.22rem + 2px);
  3128. left: calc(-2.25rem + 2px);
  3129. width: calc(1rem - 4px);
  3130. height: calc(1rem - 4px);
  3131. background-color: #adb5bd;
  3132. border-radius: 0.5rem;
  3133. transition: transform 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;
  3134. }
  3135. @media (prefers-reduced-motion: reduce) {
  3136. .custom-switch .custom-control-label::after {
  3137. transition: none;
  3138. }
  3139. }
  3140. .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  3141. background-color: #fff;
  3142. transform: translateX(0.75rem);
  3143. }
  3144. .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  3145. background-color: rgba(52, 144, 220, 0.5);
  3146. }
  3147. .custom-select {
  3148. display: inline-block;
  3149. width: 100%;
  3150. height: calc(1.6em + 0.75rem + 2px);
  3151. padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  3152. font-size: 0.9rem;
  3153. font-weight: 400;
  3154. line-height: 1.6;
  3155. color: #495057;
  3156. vertical-align: middle;
  3157. background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat;
  3158. border: 1px solid #ced4da;
  3159. border-radius: 0.25rem;
  3160. -webkit-appearance: none;
  3161. -moz-appearance: none;
  3162. appearance: none;
  3163. }
  3164. .custom-select:focus {
  3165. border-color: #a1cbef;
  3166. outline: 0;
  3167. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3168. }
  3169. .custom-select:focus::-ms-value {
  3170. color: #495057;
  3171. background-color: #fff;
  3172. }
  3173. .custom-select[multiple], .custom-select[size]:not([size="1"]) {
  3174. height: auto;
  3175. padding-right: 0.75rem;
  3176. background-image: none;
  3177. }
  3178. .custom-select:disabled {
  3179. color: #6c757d;
  3180. background-color: #e9ecef;
  3181. }
  3182. .custom-select::-ms-expand {
  3183. display: none;
  3184. }
  3185. .custom-select:-moz-focusring {
  3186. color: transparent;
  3187. text-shadow: 0 0 0 #495057;
  3188. }
  3189. .custom-select-sm {
  3190. height: calc(1.5em + 0.5rem + 2px);
  3191. padding-top: 0.25rem;
  3192. padding-bottom: 0.25rem;
  3193. padding-left: 0.5rem;
  3194. font-size: 0.7875rem;
  3195. }
  3196. .custom-select-lg {
  3197. height: calc(1.5em + 1rem + 2px);
  3198. padding-top: 0.5rem;
  3199. padding-bottom: 0.5rem;
  3200. padding-left: 1rem;
  3201. font-size: 1.125rem;
  3202. }
  3203. .custom-file {
  3204. position: relative;
  3205. display: inline-block;
  3206. width: 100%;
  3207. height: calc(1.6em + 0.75rem + 2px);
  3208. margin-bottom: 0;
  3209. }
  3210. .custom-file-input {
  3211. position: relative;
  3212. z-index: 2;
  3213. width: 100%;
  3214. height: calc(1.6em + 0.75rem + 2px);
  3215. margin: 0;
  3216. overflow: hidden;
  3217. opacity: 0;
  3218. }
  3219. .custom-file-input:focus ~ .custom-file-label {
  3220. border-color: #a1cbef;
  3221. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3222. }
  3223. .custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label {
  3224. background-color: #e9ecef;
  3225. }
  3226. .custom-file-input:lang(en) ~ .custom-file-label::after {
  3227. content: "Browse";
  3228. }
  3229. .custom-file-input ~ .custom-file-label[data-browse]::after {
  3230. content: attr(data-browse);
  3231. }
  3232. .custom-file-label {
  3233. position: absolute;
  3234. top: 0;
  3235. right: 0;
  3236. left: 0;
  3237. z-index: 1;
  3238. height: calc(1.6em + 0.75rem + 2px);
  3239. padding: 0.375rem 0.75rem;
  3240. overflow: hidden;
  3241. font-weight: 400;
  3242. line-height: 1.6;
  3243. color: #495057;
  3244. background-color: #fff;
  3245. border: 1px solid #ced4da;
  3246. border-radius: 0.25rem;
  3247. }
  3248. .custom-file-label::after {
  3249. position: absolute;
  3250. top: 0;
  3251. right: 0;
  3252. bottom: 0;
  3253. z-index: 3;
  3254. display: block;
  3255. height: calc(1.6em + 0.75rem);
  3256. padding: 0.375rem 0.75rem;
  3257. line-height: 1.6;
  3258. color: #495057;
  3259. content: "Browse";
  3260. background-color: #e9ecef;
  3261. border-left: inherit;
  3262. border-radius: 0 0.25rem 0.25rem 0;
  3263. }
  3264. .custom-range {
  3265. width: 100%;
  3266. height: 1.4rem;
  3267. padding: 0;
  3268. background-color: transparent;
  3269. -webkit-appearance: none;
  3270. -moz-appearance: none;
  3271. appearance: none;
  3272. }
  3273. .custom-range:focus {
  3274. outline: 0;
  3275. }
  3276. .custom-range:focus::-webkit-slider-thumb {
  3277. box-shadow: 0 0 0 1px #f8fafc, 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3278. }
  3279. .custom-range:focus::-moz-range-thumb {
  3280. box-shadow: 0 0 0 1px #f8fafc, 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3281. }
  3282. .custom-range:focus::-ms-thumb {
  3283. box-shadow: 0 0 0 1px #f8fafc, 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3284. }
  3285. .custom-range::-moz-focus-outer {
  3286. border: 0;
  3287. }
  3288. .custom-range::-webkit-slider-thumb {
  3289. width: 1rem;
  3290. height: 1rem;
  3291. margin-top: -0.25rem;
  3292. background-color: #3490dc;
  3293. border: 0;
  3294. border-radius: 1rem;
  3295. -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3296. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3297. -webkit-appearance: none;
  3298. appearance: none;
  3299. }
  3300. @media (prefers-reduced-motion: reduce) {
  3301. .custom-range::-webkit-slider-thumb {
  3302. -webkit-transition: none;
  3303. transition: none;
  3304. }
  3305. }
  3306. .custom-range::-webkit-slider-thumb:active {
  3307. background-color: #cce3f6;
  3308. }
  3309. .custom-range::-webkit-slider-runnable-track {
  3310. width: 100%;
  3311. height: 0.5rem;
  3312. color: transparent;
  3313. cursor: pointer;
  3314. background-color: #dee2e6;
  3315. border-color: transparent;
  3316. border-radius: 1rem;
  3317. }
  3318. .custom-range::-moz-range-thumb {
  3319. width: 1rem;
  3320. height: 1rem;
  3321. background-color: #3490dc;
  3322. border: 0;
  3323. border-radius: 1rem;
  3324. -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3325. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3326. -moz-appearance: none;
  3327. appearance: none;
  3328. }
  3329. @media (prefers-reduced-motion: reduce) {
  3330. .custom-range::-moz-range-thumb {
  3331. -moz-transition: none;
  3332. transition: none;
  3333. }
  3334. }
  3335. .custom-range::-moz-range-thumb:active {
  3336. background-color: #cce3f6;
  3337. }
  3338. .custom-range::-moz-range-track {
  3339. width: 100%;
  3340. height: 0.5rem;
  3341. color: transparent;
  3342. cursor: pointer;
  3343. background-color: #dee2e6;
  3344. border-color: transparent;
  3345. border-radius: 1rem;
  3346. }
  3347. .custom-range::-ms-thumb {
  3348. width: 1rem;
  3349. height: 1rem;
  3350. margin-top: 0;
  3351. margin-right: 0.2rem;
  3352. margin-left: 0.2rem;
  3353. background-color: #3490dc;
  3354. border: 0;
  3355. border-radius: 1rem;
  3356. -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3357. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3358. appearance: none;
  3359. }
  3360. @media (prefers-reduced-motion: reduce) {
  3361. .custom-range::-ms-thumb {
  3362. -ms-transition: none;
  3363. transition: none;
  3364. }
  3365. }
  3366. .custom-range::-ms-thumb:active {
  3367. background-color: #cce3f6;
  3368. }
  3369. .custom-range::-ms-track {
  3370. width: 100%;
  3371. height: 0.5rem;
  3372. color: transparent;
  3373. cursor: pointer;
  3374. background-color: transparent;
  3375. border-color: transparent;
  3376. border-width: 0.5rem;
  3377. }
  3378. .custom-range::-ms-fill-lower {
  3379. background-color: #dee2e6;
  3380. border-radius: 1rem;
  3381. }
  3382. .custom-range::-ms-fill-upper {
  3383. margin-right: 15px;
  3384. background-color: #dee2e6;
  3385. border-radius: 1rem;
  3386. }
  3387. .custom-range:disabled::-webkit-slider-thumb {
  3388. background-color: #adb5bd;
  3389. }
  3390. .custom-range:disabled::-webkit-slider-runnable-track {
  3391. cursor: default;
  3392. }
  3393. .custom-range:disabled::-moz-range-thumb {
  3394. background-color: #adb5bd;
  3395. }
  3396. .custom-range:disabled::-moz-range-track {
  3397. cursor: default;
  3398. }
  3399. .custom-range:disabled::-ms-thumb {
  3400. background-color: #adb5bd;
  3401. }
  3402. .custom-control-label::before,
  3403. .custom-file-label,
  3404. .custom-select {
  3405. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3406. }
  3407. @media (prefers-reduced-motion: reduce) {
  3408. .custom-control-label::before,
  3409. .custom-file-label,
  3410. .custom-select {
  3411. transition: none;
  3412. }
  3413. }
  3414. .nav {
  3415. display: flex;
  3416. flex-wrap: wrap;
  3417. padding-left: 0;
  3418. margin-bottom: 0;
  3419. list-style: none;
  3420. }
  3421. .nav-link {
  3422. display: block;
  3423. padding: 0.5rem 1rem;
  3424. }
  3425. .nav-link:hover, .nav-link:focus {
  3426. text-decoration: none;
  3427. }
  3428. .nav-link.disabled {
  3429. color: #6c757d;
  3430. pointer-events: none;
  3431. cursor: default;
  3432. }
  3433. .nav-tabs {
  3434. border-bottom: 1px solid #dee2e6;
  3435. }
  3436. .nav-tabs .nav-link {
  3437. margin-bottom: -1px;
  3438. border: 1px solid transparent;
  3439. border-top-left-radius: 0.25rem;
  3440. border-top-right-radius: 0.25rem;
  3441. }
  3442. .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  3443. border-color: #e9ecef #e9ecef #dee2e6;
  3444. }
  3445. .nav-tabs .nav-link.disabled {
  3446. color: #6c757d;
  3447. background-color: transparent;
  3448. border-color: transparent;
  3449. }
  3450. .nav-tabs .nav-link.active,
  3451. .nav-tabs .nav-item.show .nav-link {
  3452. color: #495057;
  3453. background-color: #f8fafc;
  3454. border-color: #dee2e6 #dee2e6 #f8fafc;
  3455. }
  3456. .nav-tabs .dropdown-menu {
  3457. margin-top: -1px;
  3458. border-top-left-radius: 0;
  3459. border-top-right-radius: 0;
  3460. }
  3461. .nav-pills .nav-link {
  3462. border-radius: 0.25rem;
  3463. }
  3464. .nav-pills .nav-link.active,
  3465. .nav-pills .show > .nav-link {
  3466. color: #fff;
  3467. background-color: #3490dc;
  3468. }
  3469. .nav-fill > .nav-link,
  3470. .nav-fill .nav-item {
  3471. flex: 1 1 auto;
  3472. text-align: center;
  3473. }
  3474. .nav-justified > .nav-link,
  3475. .nav-justified .nav-item {
  3476. flex-basis: 0;
  3477. flex-grow: 1;
  3478. text-align: center;
  3479. }
  3480. .tab-content > .tab-pane {
  3481. display: none;
  3482. }
  3483. .tab-content > .active {
  3484. display: block;
  3485. }
  3486. .navbar {
  3487. position: relative;
  3488. display: flex;
  3489. flex-wrap: wrap;
  3490. align-items: center;
  3491. justify-content: space-between;
  3492. padding: 0.5rem 1rem;
  3493. }
  3494. .navbar .container,
  3495. .navbar .container-fluid,
  3496. .navbar .container-sm,
  3497. .navbar .container-md,
  3498. .navbar .container-lg,
  3499. .navbar .container-xl {
  3500. display: flex;
  3501. flex-wrap: wrap;
  3502. align-items: center;
  3503. justify-content: space-between;
  3504. }
  3505. .navbar-brand {
  3506. display: inline-block;
  3507. padding-top: 0.32rem;
  3508. padding-bottom: 0.32rem;
  3509. margin-right: 1rem;
  3510. font-size: 1.125rem;
  3511. line-height: inherit;
  3512. white-space: nowrap;
  3513. }
  3514. .navbar-brand:hover, .navbar-brand:focus {
  3515. text-decoration: none;
  3516. }
  3517. .navbar-nav {
  3518. display: flex;
  3519. flex-direction: column;
  3520. padding-left: 0;
  3521. margin-bottom: 0;
  3522. list-style: none;
  3523. }
  3524. .navbar-nav .nav-link {
  3525. padding-right: 0;
  3526. padding-left: 0;
  3527. }
  3528. .navbar-nav .dropdown-menu {
  3529. position: static;
  3530. float: none;
  3531. }
  3532. .navbar-text {
  3533. display: inline-block;
  3534. padding-top: 0.5rem;
  3535. padding-bottom: 0.5rem;
  3536. }
  3537. .navbar-collapse {
  3538. flex-basis: 100%;
  3539. flex-grow: 1;
  3540. align-items: center;
  3541. }
  3542. .navbar-toggler {
  3543. padding: 0.25rem 0.75rem;
  3544. font-size: 1.125rem;
  3545. line-height: 1;
  3546. background-color: transparent;
  3547. border: 1px solid transparent;
  3548. border-radius: 0.25rem;
  3549. }
  3550. .navbar-toggler:hover, .navbar-toggler:focus {
  3551. text-decoration: none;
  3552. }
  3553. .navbar-toggler-icon {
  3554. display: inline-block;
  3555. width: 1.5em;
  3556. height: 1.5em;
  3557. vertical-align: middle;
  3558. content: "";
  3559. background: 50%/100% 100% no-repeat;
  3560. }
  3561. .navbar-nav-scroll {
  3562. max-height: 75vh;
  3563. overflow-y: auto;
  3564. }
  3565. @media (max-width: 575.98px) {
  3566. .navbar-expand-sm > .container,
  3567. .navbar-expand-sm > .container-fluid,
  3568. .navbar-expand-sm > .container-sm,
  3569. .navbar-expand-sm > .container-md,
  3570. .navbar-expand-sm > .container-lg,
  3571. .navbar-expand-sm > .container-xl {
  3572. padding-right: 0;
  3573. padding-left: 0;
  3574. }
  3575. }
  3576. @media (min-width: 576px) {
  3577. .navbar-expand-sm {
  3578. flex-flow: row nowrap;
  3579. justify-content: flex-start;
  3580. }
  3581. .navbar-expand-sm .navbar-nav {
  3582. flex-direction: row;
  3583. }
  3584. .navbar-expand-sm .navbar-nav .dropdown-menu {
  3585. position: absolute;
  3586. }
  3587. .navbar-expand-sm .navbar-nav .nav-link {
  3588. padding-right: 0.5rem;
  3589. padding-left: 0.5rem;
  3590. }
  3591. .navbar-expand-sm > .container,
  3592. .navbar-expand-sm > .container-fluid,
  3593. .navbar-expand-sm > .container-sm,
  3594. .navbar-expand-sm > .container-md,
  3595. .navbar-expand-sm > .container-lg,
  3596. .navbar-expand-sm > .container-xl {
  3597. flex-wrap: nowrap;
  3598. }
  3599. .navbar-expand-sm .navbar-nav-scroll {
  3600. overflow: visible;
  3601. }
  3602. .navbar-expand-sm .navbar-collapse {
  3603. display: flex !important;
  3604. flex-basis: auto;
  3605. }
  3606. .navbar-expand-sm .navbar-toggler {
  3607. display: none;
  3608. }
  3609. }
  3610. @media (max-width: 767.98px) {
  3611. .navbar-expand-md > .container,
  3612. .navbar-expand-md > .container-fluid,
  3613. .navbar-expand-md > .container-sm,
  3614. .navbar-expand-md > .container-md,
  3615. .navbar-expand-md > .container-lg,
  3616. .navbar-expand-md > .container-xl {
  3617. padding-right: 0;
  3618. padding-left: 0;
  3619. }
  3620. }
  3621. @media (min-width: 768px) {
  3622. .navbar-expand-md {
  3623. flex-flow: row nowrap;
  3624. justify-content: flex-start;
  3625. }
  3626. .navbar-expand-md .navbar-nav {
  3627. flex-direction: row;
  3628. }
  3629. .navbar-expand-md .navbar-nav .dropdown-menu {
  3630. position: absolute;
  3631. }
  3632. .navbar-expand-md .navbar-nav .nav-link {
  3633. padding-right: 0.5rem;
  3634. padding-left: 0.5rem;
  3635. }
  3636. .navbar-expand-md > .container,
  3637. .navbar-expand-md > .container-fluid,
  3638. .navbar-expand-md > .container-sm,
  3639. .navbar-expand-md > .container-md,
  3640. .navbar-expand-md > .container-lg,
  3641. .navbar-expand-md > .container-xl {
  3642. flex-wrap: nowrap;
  3643. }
  3644. .navbar-expand-md .navbar-nav-scroll {
  3645. overflow: visible;
  3646. }
  3647. .navbar-expand-md .navbar-collapse {
  3648. display: flex !important;
  3649. flex-basis: auto;
  3650. }
  3651. .navbar-expand-md .navbar-toggler {
  3652. display: none;
  3653. }
  3654. }
  3655. @media (max-width: 991.98px) {
  3656. .navbar-expand-lg > .container,
  3657. .navbar-expand-lg > .container-fluid,
  3658. .navbar-expand-lg > .container-sm,
  3659. .navbar-expand-lg > .container-md,
  3660. .navbar-expand-lg > .container-lg,
  3661. .navbar-expand-lg > .container-xl {
  3662. padding-right: 0;
  3663. padding-left: 0;
  3664. }
  3665. }
  3666. @media (min-width: 992px) {
  3667. .navbar-expand-lg {
  3668. flex-flow: row nowrap;
  3669. justify-content: flex-start;
  3670. }
  3671. .navbar-expand-lg .navbar-nav {
  3672. flex-direction: row;
  3673. }
  3674. .navbar-expand-lg .navbar-nav .dropdown-menu {
  3675. position: absolute;
  3676. }
  3677. .navbar-expand-lg .navbar-nav .nav-link {
  3678. padding-right: 0.5rem;
  3679. padding-left: 0.5rem;
  3680. }
  3681. .navbar-expand-lg > .container,
  3682. .navbar-expand-lg > .container-fluid,
  3683. .navbar-expand-lg > .container-sm,
  3684. .navbar-expand-lg > .container-md,
  3685. .navbar-expand-lg > .container-lg,
  3686. .navbar-expand-lg > .container-xl {
  3687. flex-wrap: nowrap;
  3688. }
  3689. .navbar-expand-lg .navbar-nav-scroll {
  3690. overflow: visible;
  3691. }
  3692. .navbar-expand-lg .navbar-collapse {
  3693. display: flex !important;
  3694. flex-basis: auto;
  3695. }
  3696. .navbar-expand-lg .navbar-toggler {
  3697. display: none;
  3698. }
  3699. }
  3700. @media (max-width: 1199.98px) {
  3701. .navbar-expand-xl > .container,
  3702. .navbar-expand-xl > .container-fluid,
  3703. .navbar-expand-xl > .container-sm,
  3704. .navbar-expand-xl > .container-md,
  3705. .navbar-expand-xl > .container-lg,
  3706. .navbar-expand-xl > .container-xl {
  3707. padding-right: 0;
  3708. padding-left: 0;
  3709. }
  3710. }
  3711. @media (min-width: 1200px) {
  3712. .navbar-expand-xl {
  3713. flex-flow: row nowrap;
  3714. justify-content: flex-start;
  3715. }
  3716. .navbar-expand-xl .navbar-nav {
  3717. flex-direction: row;
  3718. }
  3719. .navbar-expand-xl .navbar-nav .dropdown-menu {
  3720. position: absolute;
  3721. }
  3722. .navbar-expand-xl .navbar-nav .nav-link {
  3723. padding-right: 0.5rem;
  3724. padding-left: 0.5rem;
  3725. }
  3726. .navbar-expand-xl > .container,
  3727. .navbar-expand-xl > .container-fluid,
  3728. .navbar-expand-xl > .container-sm,
  3729. .navbar-expand-xl > .container-md,
  3730. .navbar-expand-xl > .container-lg,
  3731. .navbar-expand-xl > .container-xl {
  3732. flex-wrap: nowrap;
  3733. }
  3734. .navbar-expand-xl .navbar-nav-scroll {
  3735. overflow: visible;
  3736. }
  3737. .navbar-expand-xl .navbar-collapse {
  3738. display: flex !important;
  3739. flex-basis: auto;
  3740. }
  3741. .navbar-expand-xl .navbar-toggler {
  3742. display: none;
  3743. }
  3744. }
  3745. .navbar-expand {
  3746. flex-flow: row nowrap;
  3747. justify-content: flex-start;
  3748. }
  3749. .navbar-expand > .container,
  3750. .navbar-expand > .container-fluid,
  3751. .navbar-expand > .container-sm,
  3752. .navbar-expand > .container-md,
  3753. .navbar-expand > .container-lg,
  3754. .navbar-expand > .container-xl {
  3755. padding-right: 0;
  3756. padding-left: 0;
  3757. }
  3758. .navbar-expand .navbar-nav {
  3759. flex-direction: row;
  3760. }
  3761. .navbar-expand .navbar-nav .dropdown-menu {
  3762. position: absolute;
  3763. }
  3764. .navbar-expand .navbar-nav .nav-link {
  3765. padding-right: 0.5rem;
  3766. padding-left: 0.5rem;
  3767. }
  3768. .navbar-expand > .container,
  3769. .navbar-expand > .container-fluid,
  3770. .navbar-expand > .container-sm,
  3771. .navbar-expand > .container-md,
  3772. .navbar-expand > .container-lg,
  3773. .navbar-expand > .container-xl {
  3774. flex-wrap: nowrap;
  3775. }
  3776. .navbar-expand .navbar-nav-scroll {
  3777. overflow: visible;
  3778. }
  3779. .navbar-expand .navbar-collapse {
  3780. display: flex !important;
  3781. flex-basis: auto;
  3782. }
  3783. .navbar-expand .navbar-toggler {
  3784. display: none;
  3785. }
  3786. .navbar-light .navbar-brand {
  3787. color: rgba(0, 0, 0, 0.9);
  3788. }
  3789. .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  3790. color: rgba(0, 0, 0, 0.9);
  3791. }
  3792. .navbar-light .navbar-nav .nav-link {
  3793. color: rgba(0, 0, 0, 0.5);
  3794. }
  3795. .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  3796. color: rgba(0, 0, 0, 0.7);
  3797. }
  3798. .navbar-light .navbar-nav .nav-link.disabled {
  3799. color: rgba(0, 0, 0, 0.3);
  3800. }
  3801. .navbar-light .navbar-nav .show > .nav-link,
  3802. .navbar-light .navbar-nav .active > .nav-link,
  3803. .navbar-light .navbar-nav .nav-link.show,
  3804. .navbar-light .navbar-nav .nav-link.active {
  3805. color: rgba(0, 0, 0, 0.9);
  3806. }
  3807. .navbar-light .navbar-toggler {
  3808. color: rgba(0, 0, 0, 0.5);
  3809. border-color: rgba(0, 0, 0, 0.1);
  3810. }
  3811. .navbar-light .navbar-toggler-icon {
  3812. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  3813. }
  3814. .navbar-light .navbar-text {
  3815. color: rgba(0, 0, 0, 0.5);
  3816. }
  3817. .navbar-light .navbar-text a {
  3818. color: rgba(0, 0, 0, 0.9);
  3819. }
  3820. .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  3821. color: rgba(0, 0, 0, 0.9);
  3822. }
  3823. .navbar-dark .navbar-brand {
  3824. color: #fff;
  3825. }
  3826. .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  3827. color: #fff;
  3828. }
  3829. .navbar-dark .navbar-nav .nav-link {
  3830. color: rgba(255, 255, 255, 0.5);
  3831. }
  3832. .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  3833. color: rgba(255, 255, 255, 0.75);
  3834. }
  3835. .navbar-dark .navbar-nav .nav-link.disabled {
  3836. color: rgba(255, 255, 255, 0.25);
  3837. }
  3838. .navbar-dark .navbar-nav .show > .nav-link,
  3839. .navbar-dark .navbar-nav .active > .nav-link,
  3840. .navbar-dark .navbar-nav .nav-link.show,
  3841. .navbar-dark .navbar-nav .nav-link.active {
  3842. color: #fff;
  3843. }
  3844. .navbar-dark .navbar-toggler {
  3845. color: rgba(255, 255, 255, 0.5);
  3846. border-color: rgba(255, 255, 255, 0.1);
  3847. }
  3848. .navbar-dark .navbar-toggler-icon {
  3849. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  3850. }
  3851. .navbar-dark .navbar-text {
  3852. color: rgba(255, 255, 255, 0.5);
  3853. }
  3854. .navbar-dark .navbar-text a {
  3855. color: #fff;
  3856. }
  3857. .navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  3858. color: #fff;
  3859. }
  3860. .card {
  3861. position: relative;
  3862. display: flex;
  3863. flex-direction: column;
  3864. min-width: 0;
  3865. word-wrap: break-word;
  3866. background-color: #fff;
  3867. background-clip: border-box;
  3868. border: 1px solid rgba(0, 0, 0, 0.125);
  3869. border-radius: 0.25rem;
  3870. }
  3871. .card > hr {
  3872. margin-right: 0;
  3873. margin-left: 0;
  3874. }
  3875. .card > .list-group {
  3876. border-top: inherit;
  3877. border-bottom: inherit;
  3878. }
  3879. .card > .list-group:first-child {
  3880. border-top-width: 0;
  3881. border-top-left-radius: calc(0.25rem - 1px);
  3882. border-top-right-radius: calc(0.25rem - 1px);
  3883. }
  3884. .card > .list-group:last-child {
  3885. border-bottom-width: 0;
  3886. border-bottom-right-radius: calc(0.25rem - 1px);
  3887. border-bottom-left-radius: calc(0.25rem - 1px);
  3888. }
  3889. .card > .card-header + .list-group,
  3890. .card > .list-group + .card-footer {
  3891. border-top: 0;
  3892. }
  3893. .card-body {
  3894. flex: 1 1 auto;
  3895. min-height: 1px;
  3896. padding: 1.25rem;
  3897. }
  3898. .card-title {
  3899. margin-bottom: 0.75rem;
  3900. }
  3901. .card-subtitle {
  3902. margin-top: -0.375rem;
  3903. margin-bottom: 0;
  3904. }
  3905. .card-text:last-child {
  3906. margin-bottom: 0;
  3907. }
  3908. .card-link:hover {
  3909. text-decoration: none;
  3910. }
  3911. .card-link + .card-link {
  3912. margin-left: 1.25rem;
  3913. }
  3914. .card-header {
  3915. padding: 0.75rem 1.25rem;
  3916. margin-bottom: 0;
  3917. background-color: rgba(0, 0, 0, 0.03);
  3918. border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  3919. }
  3920. .card-header:first-child {
  3921. border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
  3922. }
  3923. .card-footer {
  3924. padding: 0.75rem 1.25rem;
  3925. background-color: rgba(0, 0, 0, 0.03);
  3926. border-top: 1px solid rgba(0, 0, 0, 0.125);
  3927. }
  3928. .card-footer:last-child {
  3929. border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
  3930. }
  3931. .card-header-tabs {
  3932. margin-right: -0.625rem;
  3933. margin-bottom: -0.75rem;
  3934. margin-left: -0.625rem;
  3935. border-bottom: 0;
  3936. }
  3937. .card-header-pills {
  3938. margin-right: -0.625rem;
  3939. margin-left: -0.625rem;
  3940. }
  3941. .card-img-overlay {
  3942. position: absolute;
  3943. top: 0;
  3944. right: 0;
  3945. bottom: 0;
  3946. left: 0;
  3947. padding: 1.25rem;
  3948. border-radius: calc(0.25rem - 1px);
  3949. }
  3950. .card-img,
  3951. .card-img-top,
  3952. .card-img-bottom {
  3953. flex-shrink: 0;
  3954. width: 100%;
  3955. }
  3956. .card-img,
  3957. .card-img-top {
  3958. border-top-left-radius: calc(0.25rem - 1px);
  3959. border-top-right-radius: calc(0.25rem - 1px);
  3960. }
  3961. .card-img,
  3962. .card-img-bottom {
  3963. border-bottom-right-radius: calc(0.25rem - 1px);
  3964. border-bottom-left-radius: calc(0.25rem - 1px);
  3965. }
  3966. .card-deck .card {
  3967. margin-bottom: 15px;
  3968. }
  3969. @media (min-width: 576px) {
  3970. .card-deck {
  3971. display: flex;
  3972. flex-flow: row wrap;
  3973. margin-right: -15px;
  3974. margin-left: -15px;
  3975. }
  3976. .card-deck .card {
  3977. flex: 1 0 0%;
  3978. margin-right: 15px;
  3979. margin-bottom: 0;
  3980. margin-left: 15px;
  3981. }
  3982. }
  3983. .card-group > .card {
  3984. margin-bottom: 15px;
  3985. }
  3986. @media (min-width: 576px) {
  3987. .card-group {
  3988. display: flex;
  3989. flex-flow: row wrap;
  3990. }
  3991. .card-group > .card {
  3992. flex: 1 0 0%;
  3993. margin-bottom: 0;
  3994. }
  3995. .card-group > .card + .card {
  3996. margin-left: 0;
  3997. border-left: 0;
  3998. }
  3999. .card-group > .card:not(:last-child) {
  4000. border-top-right-radius: 0;
  4001. border-bottom-right-radius: 0;
  4002. }
  4003. .card-group > .card:not(:last-child) .card-img-top,
  4004. .card-group > .card:not(:last-child) .card-header {
  4005. border-top-right-radius: 0;
  4006. }
  4007. .card-group > .card:not(:last-child) .card-img-bottom,
  4008. .card-group > .card:not(:last-child) .card-footer {
  4009. border-bottom-right-radius: 0;
  4010. }
  4011. .card-group > .card:not(:first-child) {
  4012. border-top-left-radius: 0;
  4013. border-bottom-left-radius: 0;
  4014. }
  4015. .card-group > .card:not(:first-child) .card-img-top,
  4016. .card-group > .card:not(:first-child) .card-header {
  4017. border-top-left-radius: 0;
  4018. }
  4019. .card-group > .card:not(:first-child) .card-img-bottom,
  4020. .card-group > .card:not(:first-child) .card-footer {
  4021. border-bottom-left-radius: 0;
  4022. }
  4023. }
  4024. .card-columns .card {
  4025. margin-bottom: 0.75rem;
  4026. }
  4027. @media (min-width: 576px) {
  4028. .card-columns {
  4029. -moz-column-count: 3;
  4030. column-count: 3;
  4031. -moz-column-gap: 1.25rem;
  4032. column-gap: 1.25rem;
  4033. orphans: 1;
  4034. widows: 1;
  4035. }
  4036. .card-columns .card {
  4037. display: inline-block;
  4038. width: 100%;
  4039. }
  4040. }
  4041. .accordion {
  4042. overflow-anchor: none;
  4043. }
  4044. .accordion > .card {
  4045. overflow: hidden;
  4046. }
  4047. .accordion > .card:not(:last-of-type) {
  4048. border-bottom: 0;
  4049. border-bottom-right-radius: 0;
  4050. border-bottom-left-radius: 0;
  4051. }
  4052. .accordion > .card:not(:first-of-type) {
  4053. border-top-left-radius: 0;
  4054. border-top-right-radius: 0;
  4055. }
  4056. .accordion > .card > .card-header {
  4057. border-radius: 0;
  4058. margin-bottom: -1px;
  4059. }
  4060. .breadcrumb {
  4061. display: flex;
  4062. flex-wrap: wrap;
  4063. padding: 0.75rem 1rem;
  4064. margin-bottom: 1rem;
  4065. list-style: none;
  4066. background-color: #e9ecef;
  4067. border-radius: 0.25rem;
  4068. }
  4069. .breadcrumb-item + .breadcrumb-item {
  4070. padding-left: 0.5rem;
  4071. }
  4072. .breadcrumb-item + .breadcrumb-item::before {
  4073. float: left;
  4074. padding-right: 0.5rem;
  4075. color: #6c757d;
  4076. content: "/";
  4077. }
  4078. .breadcrumb-item + .breadcrumb-item:hover::before {
  4079. text-decoration: underline;
  4080. }
  4081. .breadcrumb-item + .breadcrumb-item:hover::before {
  4082. text-decoration: none;
  4083. }
  4084. .breadcrumb-item.active {
  4085. color: #6c757d;
  4086. }
  4087. .pagination {
  4088. display: flex;
  4089. padding-left: 0;
  4090. list-style: none;
  4091. border-radius: 0.25rem;
  4092. }
  4093. .page-link {
  4094. position: relative;
  4095. display: block;
  4096. padding: 0.5rem 0.75rem;
  4097. margin-left: -1px;
  4098. line-height: 1.25;
  4099. color: #3490dc;
  4100. background-color: #fff;
  4101. border: 1px solid #dee2e6;
  4102. }
  4103. .page-link:hover {
  4104. z-index: 2;
  4105. color: #1d68a7;
  4106. text-decoration: none;
  4107. background-color: #e9ecef;
  4108. border-color: #dee2e6;
  4109. }
  4110. .page-link:focus {
  4111. z-index: 3;
  4112. outline: 0;
  4113. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  4114. }
  4115. .page-item:first-child .page-link {
  4116. margin-left: 0;
  4117. border-top-left-radius: 0.25rem;
  4118. border-bottom-left-radius: 0.25rem;
  4119. }
  4120. .page-item:last-child .page-link {
  4121. border-top-right-radius: 0.25rem;
  4122. border-bottom-right-radius: 0.25rem;
  4123. }
  4124. .page-item.active .page-link {
  4125. z-index: 3;
  4126. color: #fff;
  4127. background-color: #3490dc;
  4128. border-color: #3490dc;
  4129. }
  4130. .page-item.disabled .page-link {
  4131. color: #6c757d;
  4132. pointer-events: none;
  4133. cursor: auto;
  4134. background-color: #fff;
  4135. border-color: #dee2e6;
  4136. }
  4137. .pagination-lg .page-link {
  4138. padding: 0.75rem 1.5rem;
  4139. font-size: 1.125rem;
  4140. line-height: 1.5;
  4141. }
  4142. .pagination-lg .page-item:first-child .page-link {
  4143. border-top-left-radius: 0.3rem;
  4144. border-bottom-left-radius: 0.3rem;
  4145. }
  4146. .pagination-lg .page-item:last-child .page-link {
  4147. border-top-right-radius: 0.3rem;
  4148. border-bottom-right-radius: 0.3rem;
  4149. }
  4150. .pagination-sm .page-link {
  4151. padding: 0.25rem 0.5rem;
  4152. font-size: 0.7875rem;
  4153. line-height: 1.5;
  4154. }
  4155. .pagination-sm .page-item:first-child .page-link {
  4156. border-top-left-radius: 0.2rem;
  4157. border-bottom-left-radius: 0.2rem;
  4158. }
  4159. .pagination-sm .page-item:last-child .page-link {
  4160. border-top-right-radius: 0.2rem;
  4161. border-bottom-right-radius: 0.2rem;
  4162. }
  4163. .badge {
  4164. display: inline-block;
  4165. padding: 0.25em 0.4em;
  4166. font-size: 75%;
  4167. font-weight: 700;
  4168. line-height: 1;
  4169. text-align: center;
  4170. white-space: nowrap;
  4171. vertical-align: baseline;
  4172. border-radius: 0.25rem;
  4173. 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;
  4174. }
  4175. @media (prefers-reduced-motion: reduce) {
  4176. .badge {
  4177. transition: none;
  4178. }
  4179. }
  4180. a.badge:hover, a.badge:focus {
  4181. text-decoration: none;
  4182. }
  4183. .badge:empty {
  4184. display: none;
  4185. }
  4186. .btn .badge {
  4187. position: relative;
  4188. top: -1px;
  4189. }
  4190. .badge-pill {
  4191. padding-right: 0.6em;
  4192. padding-left: 0.6em;
  4193. border-radius: 10rem;
  4194. }
  4195. .badge-primary {
  4196. color: #fff;
  4197. background-color: #3490dc;
  4198. }
  4199. a.badge-primary:hover, a.badge-primary:focus {
  4200. color: #fff;
  4201. background-color: #2176bd;
  4202. }
  4203. a.badge-primary:focus, a.badge-primary.focus {
  4204. outline: 0;
  4205. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.5);
  4206. }
  4207. .badge-secondary {
  4208. color: #fff;
  4209. background-color: #6c757d;
  4210. }
  4211. a.badge-secondary:hover, a.badge-secondary:focus {
  4212. color: #fff;
  4213. background-color: #545b62;
  4214. }
  4215. a.badge-secondary:focus, a.badge-secondary.focus {
  4216. outline: 0;
  4217. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  4218. }
  4219. .badge-success {
  4220. color: #fff;
  4221. background-color: #38c172;
  4222. }
  4223. a.badge-success:hover, a.badge-success:focus {
  4224. color: #fff;
  4225. background-color: #2d995b;
  4226. }
  4227. a.badge-success:focus, a.badge-success.focus {
  4228. outline: 0;
  4229. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.5);
  4230. }
  4231. .badge-info {
  4232. color: #212529;
  4233. background-color: #6cb2eb;
  4234. }
  4235. a.badge-info:hover, a.badge-info:focus {
  4236. color: #212529;
  4237. background-color: #3f9ae5;
  4238. }
  4239. a.badge-info:focus, a.badge-info.focus {
  4240. outline: 0;
  4241. box-shadow: 0 0 0 0.2rem rgba(108, 178, 235, 0.5);
  4242. }
  4243. .badge-warning {
  4244. color: #212529;
  4245. background-color: #ffed4a;
  4246. }
  4247. a.badge-warning:hover, a.badge-warning:focus {
  4248. color: #212529;
  4249. background-color: #ffe817;
  4250. }
  4251. a.badge-warning:focus, a.badge-warning.focus {
  4252. outline: 0;
  4253. box-shadow: 0 0 0 0.2rem rgba(255, 237, 74, 0.5);
  4254. }
  4255. .badge-danger {
  4256. color: #fff;
  4257. background-color: #e3342f;
  4258. }
  4259. a.badge-danger:hover, a.badge-danger:focus {
  4260. color: #fff;
  4261. background-color: #c51f1a;
  4262. }
  4263. a.badge-danger:focus, a.badge-danger.focus {
  4264. outline: 0;
  4265. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.5);
  4266. }
  4267. .badge-light {
  4268. color: #212529;
  4269. background-color: #f8f9fa;
  4270. }
  4271. a.badge-light:hover, a.badge-light:focus {
  4272. color: #212529;
  4273. background-color: #dae0e5;
  4274. }
  4275. a.badge-light:focus, a.badge-light.focus {
  4276. outline: 0;
  4277. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  4278. }
  4279. .badge-dark {
  4280. color: #fff;
  4281. background-color: #343a40;
  4282. }
  4283. a.badge-dark:hover, a.badge-dark:focus {
  4284. color: #fff;
  4285. background-color: #1d2124;
  4286. }
  4287. a.badge-dark:focus, a.badge-dark.focus {
  4288. outline: 0;
  4289. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  4290. }
  4291. .jumbotron {
  4292. padding: 2rem 1rem;
  4293. margin-bottom: 2rem;
  4294. background-color: #e9ecef;
  4295. border-radius: 0.3rem;
  4296. }
  4297. @media (min-width: 576px) {
  4298. .jumbotron {
  4299. padding: 4rem 2rem;
  4300. }
  4301. }
  4302. .jumbotron-fluid {
  4303. padding-right: 0;
  4304. padding-left: 0;
  4305. border-radius: 0;
  4306. }
  4307. .alert {
  4308. position: relative;
  4309. padding: 0.75rem 1.25rem;
  4310. margin-bottom: 1rem;
  4311. border: 1px solid transparent;
  4312. border-radius: 0.25rem;
  4313. }
  4314. .alert-heading {
  4315. color: inherit;
  4316. }
  4317. .alert-link {
  4318. font-weight: 700;
  4319. }
  4320. .alert-dismissible {
  4321. padding-right: 3.85rem;
  4322. }
  4323. .alert-dismissible .close {
  4324. position: absolute;
  4325. top: 0;
  4326. right: 0;
  4327. z-index: 2;
  4328. padding: 0.75rem 1.25rem;
  4329. color: inherit;
  4330. }
  4331. .alert-primary {
  4332. color: #1b4b72;
  4333. background-color: #d6e9f8;
  4334. border-color: #c6e0f5;
  4335. }
  4336. .alert-primary hr {
  4337. border-top-color: #b0d4f1;
  4338. }
  4339. .alert-primary .alert-link {
  4340. color: #113049;
  4341. }
  4342. .alert-secondary {
  4343. color: #383d41;
  4344. background-color: #e2e3e5;
  4345. border-color: #d6d8db;
  4346. }
  4347. .alert-secondary hr {
  4348. border-top-color: #c8cbcf;
  4349. }
  4350. .alert-secondary .alert-link {
  4351. color: #202326;
  4352. }
  4353. .alert-success {
  4354. color: #1d643b;
  4355. background-color: #d7f3e3;
  4356. border-color: #c7eed8;
  4357. }
  4358. .alert-success hr {
  4359. border-top-color: #b3e8ca;
  4360. }
  4361. .alert-success .alert-link {
  4362. color: #123c24;
  4363. }
  4364. .alert-info {
  4365. color: #385d7a;
  4366. background-color: #e2f0fb;
  4367. border-color: #d6e9f9;
  4368. }
  4369. .alert-info hr {
  4370. border-top-color: #c0ddf6;
  4371. }
  4372. .alert-info .alert-link {
  4373. color: #284257;
  4374. }
  4375. .alert-warning {
  4376. color: #857b26;
  4377. background-color: #fffbdb;
  4378. border-color: #fffacc;
  4379. }
  4380. .alert-warning hr {
  4381. border-top-color: #fff8b3;
  4382. }
  4383. .alert-warning .alert-link {
  4384. color: #5d561b;
  4385. }
  4386. .alert-danger {
  4387. color: #761b18;
  4388. background-color: #f9d6d5;
  4389. border-color: #f7c6c5;
  4390. }
  4391. .alert-danger hr {
  4392. border-top-color: #f4b0af;
  4393. }
  4394. .alert-danger .alert-link {
  4395. color: #4c110f;
  4396. }
  4397. .alert-light {
  4398. color: #818182;
  4399. background-color: #fefefe;
  4400. border-color: #fdfdfe;
  4401. }
  4402. .alert-light hr {
  4403. border-top-color: #ececf6;
  4404. }
  4405. .alert-light .alert-link {
  4406. color: #686868;
  4407. }
  4408. .alert-dark {
  4409. color: #1b1e21;
  4410. background-color: #d6d8d9;
  4411. border-color: #c6c8ca;
  4412. }
  4413. .alert-dark hr {
  4414. border-top-color: #b9bbbe;
  4415. }
  4416. .alert-dark .alert-link {
  4417. color: #040505;
  4418. }
  4419. @-webkit-keyframes progress-bar-stripes {
  4420. from {
  4421. background-position: 1rem 0;
  4422. }
  4423. to {
  4424. background-position: 0 0;
  4425. }
  4426. }
  4427. @keyframes progress-bar-stripes {
  4428. from {
  4429. background-position: 1rem 0;
  4430. }
  4431. to {
  4432. background-position: 0 0;
  4433. }
  4434. }
  4435. .progress {
  4436. display: flex;
  4437. height: 1rem;
  4438. overflow: hidden;
  4439. line-height: 0;
  4440. font-size: 0.675rem;
  4441. background-color: #e9ecef;
  4442. border-radius: 0.25rem;
  4443. }
  4444. .progress-bar {
  4445. display: flex;
  4446. flex-direction: column;
  4447. justify-content: center;
  4448. overflow: hidden;
  4449. color: #fff;
  4450. text-align: center;
  4451. white-space: nowrap;
  4452. background-color: #3490dc;
  4453. transition: width 0.6s ease;
  4454. }
  4455. @media (prefers-reduced-motion: reduce) {
  4456. .progress-bar {
  4457. transition: none;
  4458. }
  4459. }
  4460. .progress-bar-striped {
  4461. 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);
  4462. background-size: 1rem 1rem;
  4463. }
  4464. .progress-bar-animated {
  4465. -webkit-animation: 1s linear infinite progress-bar-stripes;
  4466. animation: 1s linear infinite progress-bar-stripes;
  4467. }
  4468. @media (prefers-reduced-motion: reduce) {
  4469. .progress-bar-animated {
  4470. -webkit-animation: none;
  4471. animation: none;
  4472. }
  4473. }
  4474. .media {
  4475. display: flex;
  4476. align-items: flex-start;
  4477. }
  4478. .media-body {
  4479. flex: 1;
  4480. }
  4481. .list-group {
  4482. display: flex;
  4483. flex-direction: column;
  4484. padding-left: 0;
  4485. margin-bottom: 0;
  4486. border-radius: 0.25rem;
  4487. }
  4488. .list-group-item-action {
  4489. width: 100%;
  4490. color: #495057;
  4491. text-align: inherit;
  4492. }
  4493. .list-group-item-action:hover, .list-group-item-action:focus {
  4494. z-index: 1;
  4495. color: #495057;
  4496. text-decoration: none;
  4497. background-color: #f8f9fa;
  4498. }
  4499. .list-group-item-action:active {
  4500. color: #212529;
  4501. background-color: #e9ecef;
  4502. }
  4503. .list-group-item {
  4504. position: relative;
  4505. display: block;
  4506. padding: 0.75rem 1.25rem;
  4507. background-color: #fff;
  4508. border: 1px solid rgba(0, 0, 0, 0.125);
  4509. }
  4510. .list-group-item:first-child {
  4511. border-top-left-radius: inherit;
  4512. border-top-right-radius: inherit;
  4513. }
  4514. .list-group-item:last-child {
  4515. border-bottom-right-radius: inherit;
  4516. border-bottom-left-radius: inherit;
  4517. }
  4518. .list-group-item.disabled, .list-group-item:disabled {
  4519. color: #6c757d;
  4520. pointer-events: none;
  4521. background-color: #fff;
  4522. }
  4523. .list-group-item.active {
  4524. z-index: 2;
  4525. color: #fff;
  4526. background-color: #3490dc;
  4527. border-color: #3490dc;
  4528. }
  4529. .list-group-item + .list-group-item {
  4530. border-top-width: 0;
  4531. }
  4532. .list-group-item + .list-group-item.active {
  4533. margin-top: -1px;
  4534. border-top-width: 1px;
  4535. }
  4536. .list-group-horizontal {
  4537. flex-direction: row;
  4538. }
  4539. .list-group-horizontal > .list-group-item:first-child {
  4540. border-bottom-left-radius: 0.25rem;
  4541. border-top-right-radius: 0;
  4542. }
  4543. .list-group-horizontal > .list-group-item:last-child {
  4544. border-top-right-radius: 0.25rem;
  4545. border-bottom-left-radius: 0;
  4546. }
  4547. .list-group-horizontal > .list-group-item.active {
  4548. margin-top: 0;
  4549. }
  4550. .list-group-horizontal > .list-group-item + .list-group-item {
  4551. border-top-width: 1px;
  4552. border-left-width: 0;
  4553. }
  4554. .list-group-horizontal > .list-group-item + .list-group-item.active {
  4555. margin-left: -1px;
  4556. border-left-width: 1px;
  4557. }
  4558. @media (min-width: 576px) {
  4559. .list-group-horizontal-sm {
  4560. flex-direction: row;
  4561. }
  4562. .list-group-horizontal-sm > .list-group-item:first-child {
  4563. border-bottom-left-radius: 0.25rem;
  4564. border-top-right-radius: 0;
  4565. }
  4566. .list-group-horizontal-sm > .list-group-item:last-child {
  4567. border-top-right-radius: 0.25rem;
  4568. border-bottom-left-radius: 0;
  4569. }
  4570. .list-group-horizontal-sm > .list-group-item.active {
  4571. margin-top: 0;
  4572. }
  4573. .list-group-horizontal-sm > .list-group-item + .list-group-item {
  4574. border-top-width: 1px;
  4575. border-left-width: 0;
  4576. }
  4577. .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
  4578. margin-left: -1px;
  4579. border-left-width: 1px;
  4580. }
  4581. }
  4582. @media (min-width: 768px) {
  4583. .list-group-horizontal-md {
  4584. flex-direction: row;
  4585. }
  4586. .list-group-horizontal-md > .list-group-item:first-child {
  4587. border-bottom-left-radius: 0.25rem;
  4588. border-top-right-radius: 0;
  4589. }
  4590. .list-group-horizontal-md > .list-group-item:last-child {
  4591. border-top-right-radius: 0.25rem;
  4592. border-bottom-left-radius: 0;
  4593. }
  4594. .list-group-horizontal-md > .list-group-item.active {
  4595. margin-top: 0;
  4596. }
  4597. .list-group-horizontal-md > .list-group-item + .list-group-item {
  4598. border-top-width: 1px;
  4599. border-left-width: 0;
  4600. }
  4601. .list-group-horizontal-md > .list-group-item + .list-group-item.active {
  4602. margin-left: -1px;
  4603. border-left-width: 1px;
  4604. }
  4605. }
  4606. @media (min-width: 992px) {
  4607. .list-group-horizontal-lg {
  4608. flex-direction: row;
  4609. }
  4610. .list-group-horizontal-lg > .list-group-item:first-child {
  4611. border-bottom-left-radius: 0.25rem;
  4612. border-top-right-radius: 0;
  4613. }
  4614. .list-group-horizontal-lg > .list-group-item:last-child {
  4615. border-top-right-radius: 0.25rem;
  4616. border-bottom-left-radius: 0;
  4617. }
  4618. .list-group-horizontal-lg > .list-group-item.active {
  4619. margin-top: 0;
  4620. }
  4621. .list-group-horizontal-lg > .list-group-item + .list-group-item {
  4622. border-top-width: 1px;
  4623. border-left-width: 0;
  4624. }
  4625. .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
  4626. margin-left: -1px;
  4627. border-left-width: 1px;
  4628. }
  4629. }
  4630. @media (min-width: 1200px) {
  4631. .list-group-horizontal-xl {
  4632. flex-direction: row;
  4633. }
  4634. .list-group-horizontal-xl > .list-group-item:first-child {
  4635. border-bottom-left-radius: 0.25rem;
  4636. border-top-right-radius: 0;
  4637. }
  4638. .list-group-horizontal-xl > .list-group-item:last-child {
  4639. border-top-right-radius: 0.25rem;
  4640. border-bottom-left-radius: 0;
  4641. }
  4642. .list-group-horizontal-xl > .list-group-item.active {
  4643. margin-top: 0;
  4644. }
  4645. .list-group-horizontal-xl > .list-group-item + .list-group-item {
  4646. border-top-width: 1px;
  4647. border-left-width: 0;
  4648. }
  4649. .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
  4650. margin-left: -1px;
  4651. border-left-width: 1px;
  4652. }
  4653. }
  4654. .list-group-flush {
  4655. border-radius: 0;
  4656. }
  4657. .list-group-flush > .list-group-item {
  4658. border-width: 0 0 1px;
  4659. }
  4660. .list-group-flush > .list-group-item:last-child {
  4661. border-bottom-width: 0;
  4662. }
  4663. .list-group-item-primary {
  4664. color: #1b4b72;
  4665. background-color: #c6e0f5;
  4666. }
  4667. .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  4668. color: #1b4b72;
  4669. background-color: #b0d4f1;
  4670. }
  4671. .list-group-item-primary.list-group-item-action.active {
  4672. color: #fff;
  4673. background-color: #1b4b72;
  4674. border-color: #1b4b72;
  4675. }
  4676. .list-group-item-secondary {
  4677. color: #383d41;
  4678. background-color: #d6d8db;
  4679. }
  4680. .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  4681. color: #383d41;
  4682. background-color: #c8cbcf;
  4683. }
  4684. .list-group-item-secondary.list-group-item-action.active {
  4685. color: #fff;
  4686. background-color: #383d41;
  4687. border-color: #383d41;
  4688. }
  4689. .list-group-item-success {
  4690. color: #1d643b;
  4691. background-color: #c7eed8;
  4692. }
  4693. .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  4694. color: #1d643b;
  4695. background-color: #b3e8ca;
  4696. }
  4697. .list-group-item-success.list-group-item-action.active {
  4698. color: #fff;
  4699. background-color: #1d643b;
  4700. border-color: #1d643b;
  4701. }
  4702. .list-group-item-info {
  4703. color: #385d7a;
  4704. background-color: #d6e9f9;
  4705. }
  4706. .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  4707. color: #385d7a;
  4708. background-color: #c0ddf6;
  4709. }
  4710. .list-group-item-info.list-group-item-action.active {
  4711. color: #fff;
  4712. background-color: #385d7a;
  4713. border-color: #385d7a;
  4714. }
  4715. .list-group-item-warning {
  4716. color: #857b26;
  4717. background-color: #fffacc;
  4718. }
  4719. .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  4720. color: #857b26;
  4721. background-color: #fff8b3;
  4722. }
  4723. .list-group-item-warning.list-group-item-action.active {
  4724. color: #fff;
  4725. background-color: #857b26;
  4726. border-color: #857b26;
  4727. }
  4728. .list-group-item-danger {
  4729. color: #761b18;
  4730. background-color: #f7c6c5;
  4731. }
  4732. .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  4733. color: #761b18;
  4734. background-color: #f4b0af;
  4735. }
  4736. .list-group-item-danger.list-group-item-action.active {
  4737. color: #fff;
  4738. background-color: #761b18;
  4739. border-color: #761b18;
  4740. }
  4741. .list-group-item-light {
  4742. color: #818182;
  4743. background-color: #fdfdfe;
  4744. }
  4745. .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  4746. color: #818182;
  4747. background-color: #ececf6;
  4748. }
  4749. .list-group-item-light.list-group-item-action.active {
  4750. color: #fff;
  4751. background-color: #818182;
  4752. border-color: #818182;
  4753. }
  4754. .list-group-item-dark {
  4755. color: #1b1e21;
  4756. background-color: #c6c8ca;
  4757. }
  4758. .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  4759. color: #1b1e21;
  4760. background-color: #b9bbbe;
  4761. }
  4762. .list-group-item-dark.list-group-item-action.active {
  4763. color: #fff;
  4764. background-color: #1b1e21;
  4765. border-color: #1b1e21;
  4766. }
  4767. .close {
  4768. float: right;
  4769. font-size: 1.35rem;
  4770. font-weight: 700;
  4771. line-height: 1;
  4772. color: #000;
  4773. text-shadow: 0 1px 0 #fff;
  4774. opacity: 0.5;
  4775. }
  4776. .close:hover {
  4777. color: #000;
  4778. text-decoration: none;
  4779. }
  4780. .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  4781. opacity: 0.75;
  4782. }
  4783. button.close {
  4784. padding: 0;
  4785. background-color: transparent;
  4786. border: 0;
  4787. }
  4788. a.close.disabled {
  4789. pointer-events: none;
  4790. }
  4791. .toast {
  4792. flex-basis: 350px;
  4793. max-width: 350px;
  4794. font-size: 0.875rem;
  4795. background-color: rgba(255, 255, 255, 0.85);
  4796. background-clip: padding-box;
  4797. border: 1px solid rgba(0, 0, 0, 0.1);
  4798. box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  4799. opacity: 0;
  4800. border-radius: 0.25rem;
  4801. }
  4802. .toast:not(:last-child) {
  4803. margin-bottom: 0.75rem;
  4804. }
  4805. .toast.showing {
  4806. opacity: 1;
  4807. }
  4808. .toast.show {
  4809. display: block;
  4810. opacity: 1;
  4811. }
  4812. .toast.hide {
  4813. display: none;
  4814. }
  4815. .toast-header {
  4816. display: flex;
  4817. align-items: center;
  4818. padding: 0.25rem 0.75rem;
  4819. color: #6c757d;
  4820. background-color: rgba(255, 255, 255, 0.85);
  4821. background-clip: padding-box;
  4822. border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  4823. border-top-left-radius: calc(0.25rem - 1px);
  4824. border-top-right-radius: calc(0.25rem - 1px);
  4825. }
  4826. .toast-body {
  4827. padding: 0.75rem;
  4828. }
  4829. .modal-open {
  4830. overflow: hidden;
  4831. }
  4832. .modal-open .modal {
  4833. overflow-x: hidden;
  4834. overflow-y: auto;
  4835. }
  4836. .modal {
  4837. position: fixed;
  4838. top: 0;
  4839. left: 0;
  4840. z-index: 1050;
  4841. display: none;
  4842. width: 100%;
  4843. height: 100%;
  4844. overflow: hidden;
  4845. outline: 0;
  4846. }
  4847. .modal-dialog {
  4848. position: relative;
  4849. width: auto;
  4850. margin: 0.5rem;
  4851. pointer-events: none;
  4852. }
  4853. .modal.fade .modal-dialog {
  4854. transition: transform 0.3s ease-out;
  4855. transform: translate(0, -50px);
  4856. }
  4857. @media (prefers-reduced-motion: reduce) {
  4858. .modal.fade .modal-dialog {
  4859. transition: none;
  4860. }
  4861. }
  4862. .modal.show .modal-dialog {
  4863. transform: none;
  4864. }
  4865. .modal.modal-static .modal-dialog {
  4866. transform: scale(1.02);
  4867. }
  4868. .modal-dialog-scrollable {
  4869. display: flex;
  4870. max-height: calc(100% - 1rem);
  4871. }
  4872. .modal-dialog-scrollable .modal-content {
  4873. max-height: calc(100vh - 1rem);
  4874. overflow: hidden;
  4875. }
  4876. .modal-dialog-scrollable .modal-header,
  4877. .modal-dialog-scrollable .modal-footer {
  4878. flex-shrink: 0;
  4879. }
  4880. .modal-dialog-scrollable .modal-body {
  4881. overflow-y: auto;
  4882. }
  4883. .modal-dialog-centered {
  4884. display: flex;
  4885. align-items: center;
  4886. min-height: calc(100% - 1rem);
  4887. }
  4888. .modal-dialog-centered::before {
  4889. display: block;
  4890. height: calc(100vh - 1rem);
  4891. height: -webkit-min-content;
  4892. height: -moz-min-content;
  4893. height: min-content;
  4894. content: "";
  4895. }
  4896. .modal-dialog-centered.modal-dialog-scrollable {
  4897. flex-direction: column;
  4898. justify-content: center;
  4899. height: 100%;
  4900. }
  4901. .modal-dialog-centered.modal-dialog-scrollable .modal-content {
  4902. max-height: none;
  4903. }
  4904. .modal-dialog-centered.modal-dialog-scrollable::before {
  4905. content: none;
  4906. }
  4907. .modal-content {
  4908. position: relative;
  4909. display: flex;
  4910. flex-direction: column;
  4911. width: 100%;
  4912. pointer-events: auto;
  4913. background-color: #fff;
  4914. background-clip: padding-box;
  4915. border: 1px solid rgba(0, 0, 0, 0.2);
  4916. border-radius: 0.3rem;
  4917. outline: 0;
  4918. }
  4919. .modal-backdrop {
  4920. position: fixed;
  4921. top: 0;
  4922. left: 0;
  4923. z-index: 1040;
  4924. width: 100vw;
  4925. height: 100vh;
  4926. background-color: #000;
  4927. }
  4928. .modal-backdrop.fade {
  4929. opacity: 0;
  4930. }
  4931. .modal-backdrop.show {
  4932. opacity: 0.5;
  4933. }
  4934. .modal-header {
  4935. display: flex;
  4936. align-items: flex-start;
  4937. justify-content: space-between;
  4938. padding: 1rem 1rem;
  4939. border-bottom: 1px solid #dee2e6;
  4940. border-top-left-radius: calc(0.3rem - 1px);
  4941. border-top-right-radius: calc(0.3rem - 1px);
  4942. }
  4943. .modal-header .close {
  4944. padding: 1rem 1rem;
  4945. margin: -1rem -1rem -1rem auto;
  4946. }
  4947. .modal-title {
  4948. margin-bottom: 0;
  4949. line-height: 1.6;
  4950. }
  4951. .modal-body {
  4952. position: relative;
  4953. flex: 1 1 auto;
  4954. padding: 1rem;
  4955. }
  4956. .modal-footer {
  4957. display: flex;
  4958. flex-wrap: wrap;
  4959. align-items: center;
  4960. justify-content: flex-end;
  4961. padding: 0.75rem;
  4962. border-top: 1px solid #dee2e6;
  4963. border-bottom-right-radius: calc(0.3rem - 1px);
  4964. border-bottom-left-radius: calc(0.3rem - 1px);
  4965. }
  4966. .modal-footer > * {
  4967. margin: 0.25rem;
  4968. }
  4969. .modal-scrollbar-measure {
  4970. position: absolute;
  4971. top: -9999px;
  4972. width: 50px;
  4973. height: 50px;
  4974. overflow: scroll;
  4975. }
  4976. @media (min-width: 576px) {
  4977. .modal-dialog {
  4978. max-width: 500px;
  4979. margin: 1.75rem auto;
  4980. }
  4981. .modal-dialog-scrollable {
  4982. max-height: calc(100% - 3.5rem);
  4983. }
  4984. .modal-dialog-scrollable .modal-content {
  4985. max-height: calc(100vh - 3.5rem);
  4986. }
  4987. .modal-dialog-centered {
  4988. min-height: calc(100% - 3.5rem);
  4989. }
  4990. .modal-dialog-centered::before {
  4991. height: calc(100vh - 3.5rem);
  4992. height: -webkit-min-content;
  4993. height: -moz-min-content;
  4994. height: min-content;
  4995. }
  4996. .modal-sm {
  4997. max-width: 300px;
  4998. }
  4999. }
  5000. @media (min-width: 992px) {
  5001. .modal-lg,
  5002. .modal-xl {
  5003. max-width: 800px;
  5004. }
  5005. }
  5006. @media (min-width: 1200px) {
  5007. .modal-xl {
  5008. max-width: 1140px;
  5009. }
  5010. }
  5011. .tooltip {
  5012. position: absolute;
  5013. z-index: 1070;
  5014. display: block;
  5015. margin: 0;
  5016. font-family: "Nunito", sans-serif;
  5017. font-style: normal;
  5018. font-weight: 400;
  5019. line-height: 1.6;
  5020. text-align: left;
  5021. text-align: start;
  5022. text-decoration: none;
  5023. text-shadow: none;
  5024. text-transform: none;
  5025. letter-spacing: normal;
  5026. word-break: normal;
  5027. word-spacing: normal;
  5028. white-space: normal;
  5029. line-break: auto;
  5030. font-size: 0.7875rem;
  5031. word-wrap: break-word;
  5032. opacity: 0;
  5033. }
  5034. .tooltip.show {
  5035. opacity: 0.9;
  5036. }
  5037. .tooltip .arrow {
  5038. position: absolute;
  5039. display: block;
  5040. width: 0.8rem;
  5041. height: 0.4rem;
  5042. }
  5043. .tooltip .arrow::before {
  5044. position: absolute;
  5045. content: "";
  5046. border-color: transparent;
  5047. border-style: solid;
  5048. }
  5049. .bs-tooltip-top, .bs-tooltip-auto[x-placement^=top] {
  5050. padding: 0.4rem 0;
  5051. }
  5052. .bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=top] .arrow {
  5053. bottom: 0;
  5054. }
  5055. .bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=top] .arrow::before {
  5056. top: 0;
  5057. border-width: 0.4rem 0.4rem 0;
  5058. border-top-color: #000;
  5059. }
  5060. .bs-tooltip-right, .bs-tooltip-auto[x-placement^=right] {
  5061. padding: 0 0.4rem;
  5062. }
  5063. .bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=right] .arrow {
  5064. left: 0;
  5065. width: 0.4rem;
  5066. height: 0.8rem;
  5067. }
  5068. .bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=right] .arrow::before {
  5069. right: 0;
  5070. border-width: 0.4rem 0.4rem 0.4rem 0;
  5071. border-right-color: #000;
  5072. }
  5073. .bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=bottom] {
  5074. padding: 0.4rem 0;
  5075. }
  5076. .bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=bottom] .arrow {
  5077. top: 0;
  5078. }
  5079. .bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  5080. bottom: 0;
  5081. border-width: 0 0.4rem 0.4rem;
  5082. border-bottom-color: #000;
  5083. }
  5084. .bs-tooltip-left, .bs-tooltip-auto[x-placement^=left] {
  5085. padding: 0 0.4rem;
  5086. }
  5087. .bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=left] .arrow {
  5088. right: 0;
  5089. width: 0.4rem;
  5090. height: 0.8rem;
  5091. }
  5092. .bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=left] .arrow::before {
  5093. left: 0;
  5094. border-width: 0.4rem 0 0.4rem 0.4rem;
  5095. border-left-color: #000;
  5096. }
  5097. .tooltip-inner {
  5098. max-width: 200px;
  5099. padding: 0.25rem 0.5rem;
  5100. color: #fff;
  5101. text-align: center;
  5102. background-color: #000;
  5103. border-radius: 0.25rem;
  5104. }
  5105. .popover {
  5106. position: absolute;
  5107. top: 0;
  5108. left: 0;
  5109. z-index: 1060;
  5110. display: block;
  5111. max-width: 276px;
  5112. font-family: "Nunito", sans-serif;
  5113. font-style: normal;
  5114. font-weight: 400;
  5115. line-height: 1.6;
  5116. text-align: left;
  5117. text-align: start;
  5118. text-decoration: none;
  5119. text-shadow: none;
  5120. text-transform: none;
  5121. letter-spacing: normal;
  5122. word-break: normal;
  5123. word-spacing: normal;
  5124. white-space: normal;
  5125. line-break: auto;
  5126. font-size: 0.7875rem;
  5127. word-wrap: break-word;
  5128. background-color: #fff;
  5129. background-clip: padding-box;
  5130. border: 1px solid rgba(0, 0, 0, 0.2);
  5131. border-radius: 0.3rem;
  5132. }
  5133. .popover .arrow {
  5134. position: absolute;
  5135. display: block;
  5136. width: 1rem;
  5137. height: 0.5rem;
  5138. margin: 0 0.3rem;
  5139. }
  5140. .popover .arrow::before, .popover .arrow::after {
  5141. position: absolute;
  5142. display: block;
  5143. content: "";
  5144. border-color: transparent;
  5145. border-style: solid;
  5146. }
  5147. .bs-popover-top, .bs-popover-auto[x-placement^=top] {
  5148. margin-bottom: 0.5rem;
  5149. }
  5150. .bs-popover-top > .arrow, .bs-popover-auto[x-placement^=top] > .arrow {
  5151. bottom: calc(-0.5rem - 1px);
  5152. }
  5153. .bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^=top] > .arrow::before {
  5154. bottom: 0;
  5155. border-width: 0.5rem 0.5rem 0;
  5156. border-top-color: rgba(0, 0, 0, 0.25);
  5157. }
  5158. .bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^=top] > .arrow::after {
  5159. bottom: 1px;
  5160. border-width: 0.5rem 0.5rem 0;
  5161. border-top-color: #fff;
  5162. }
  5163. .bs-popover-right, .bs-popover-auto[x-placement^=right] {
  5164. margin-left: 0.5rem;
  5165. }
  5166. .bs-popover-right > .arrow, .bs-popover-auto[x-placement^=right] > .arrow {
  5167. left: calc(-0.5rem - 1px);
  5168. width: 0.5rem;
  5169. height: 1rem;
  5170. margin: 0.3rem 0;
  5171. }
  5172. .bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^=right] > .arrow::before {
  5173. left: 0;
  5174. border-width: 0.5rem 0.5rem 0.5rem 0;
  5175. border-right-color: rgba(0, 0, 0, 0.25);
  5176. }
  5177. .bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^=right] > .arrow::after {
  5178. left: 1px;
  5179. border-width: 0.5rem 0.5rem 0.5rem 0;
  5180. border-right-color: #fff;
  5181. }
  5182. .bs-popover-bottom, .bs-popover-auto[x-placement^=bottom] {
  5183. margin-top: 0.5rem;
  5184. }
  5185. .bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^=bottom] > .arrow {
  5186. top: calc(-0.5rem - 1px);
  5187. }
  5188. .bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^=bottom] > .arrow::before {
  5189. top: 0;
  5190. border-width: 0 0.5rem 0.5rem 0.5rem;
  5191. border-bottom-color: rgba(0, 0, 0, 0.25);
  5192. }
  5193. .bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^=bottom] > .arrow::after {
  5194. top: 1px;
  5195. border-width: 0 0.5rem 0.5rem 0.5rem;
  5196. border-bottom-color: #fff;
  5197. }
  5198. .bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^=bottom] .popover-header::before {
  5199. position: absolute;
  5200. top: 0;
  5201. left: 50%;
  5202. display: block;
  5203. width: 1rem;
  5204. margin-left: -0.5rem;
  5205. content: "";
  5206. border-bottom: 1px solid #f7f7f7;
  5207. }
  5208. .bs-popover-left, .bs-popover-auto[x-placement^=left] {
  5209. margin-right: 0.5rem;
  5210. }
  5211. .bs-popover-left > .arrow, .bs-popover-auto[x-placement^=left] > .arrow {
  5212. right: calc(-0.5rem - 1px);
  5213. width: 0.5rem;
  5214. height: 1rem;
  5215. margin: 0.3rem 0;
  5216. }
  5217. .bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^=left] > .arrow::before {
  5218. right: 0;
  5219. border-width: 0.5rem 0 0.5rem 0.5rem;
  5220. border-left-color: rgba(0, 0, 0, 0.25);
  5221. }
  5222. .bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^=left] > .arrow::after {
  5223. right: 1px;
  5224. border-width: 0.5rem 0 0.5rem 0.5rem;
  5225. border-left-color: #fff;
  5226. }
  5227. .popover-header {
  5228. padding: 0.5rem 0.75rem;
  5229. margin-bottom: 0;
  5230. font-size: 0.9rem;
  5231. background-color: #f7f7f7;
  5232. border-bottom: 1px solid #ebebeb;
  5233. border-top-left-radius: calc(0.3rem - 1px);
  5234. border-top-right-radius: calc(0.3rem - 1px);
  5235. }
  5236. .popover-header:empty {
  5237. display: none;
  5238. }
  5239. .popover-body {
  5240. padding: 0.5rem 0.75rem;
  5241. color: #212529;
  5242. }
  5243. .carousel {
  5244. position: relative;
  5245. }
  5246. .carousel.pointer-event {
  5247. touch-action: pan-y;
  5248. }
  5249. .carousel-inner {
  5250. position: relative;
  5251. width: 100%;
  5252. overflow: hidden;
  5253. }
  5254. .carousel-inner::after {
  5255. display: block;
  5256. clear: both;
  5257. content: "";
  5258. }
  5259. .carousel-item {
  5260. position: relative;
  5261. display: none;
  5262. float: left;
  5263. width: 100%;
  5264. margin-right: -100%;
  5265. -webkit-backface-visibility: hidden;
  5266. backface-visibility: hidden;
  5267. transition: transform 0.6s ease-in-out;
  5268. }
  5269. @media (prefers-reduced-motion: reduce) {
  5270. .carousel-item {
  5271. transition: none;
  5272. }
  5273. }
  5274. .carousel-item.active,
  5275. .carousel-item-next,
  5276. .carousel-item-prev {
  5277. display: block;
  5278. }
  5279. .carousel-item-next:not(.carousel-item-left),
  5280. .active.carousel-item-right {
  5281. transform: translateX(100%);
  5282. }
  5283. .carousel-item-prev:not(.carousel-item-right),
  5284. .active.carousel-item-left {
  5285. transform: translateX(-100%);
  5286. }
  5287. .carousel-fade .carousel-item {
  5288. opacity: 0;
  5289. transition-property: opacity;
  5290. transform: none;
  5291. }
  5292. .carousel-fade .carousel-item.active,
  5293. .carousel-fade .carousel-item-next.carousel-item-left,
  5294. .carousel-fade .carousel-item-prev.carousel-item-right {
  5295. z-index: 1;
  5296. opacity: 1;
  5297. }
  5298. .carousel-fade .active.carousel-item-left,
  5299. .carousel-fade .active.carousel-item-right {
  5300. z-index: 0;
  5301. opacity: 0;
  5302. transition: opacity 0s 0.6s;
  5303. }
  5304. @media (prefers-reduced-motion: reduce) {
  5305. .carousel-fade .active.carousel-item-left,
  5306. .carousel-fade .active.carousel-item-right {
  5307. transition: none;
  5308. }
  5309. }
  5310. .carousel-control-prev,
  5311. .carousel-control-next {
  5312. position: absolute;
  5313. top: 0;
  5314. bottom: 0;
  5315. z-index: 1;
  5316. display: flex;
  5317. align-items: center;
  5318. justify-content: center;
  5319. width: 15%;
  5320. color: #fff;
  5321. text-align: center;
  5322. opacity: 0.5;
  5323. transition: opacity 0.15s ease;
  5324. }
  5325. @media (prefers-reduced-motion: reduce) {
  5326. .carousel-control-prev,
  5327. .carousel-control-next {
  5328. transition: none;
  5329. }
  5330. }
  5331. .carousel-control-prev:hover, .carousel-control-prev:focus,
  5332. .carousel-control-next:hover,
  5333. .carousel-control-next:focus {
  5334. color: #fff;
  5335. text-decoration: none;
  5336. outline: 0;
  5337. opacity: 0.9;
  5338. }
  5339. .carousel-control-prev {
  5340. left: 0;
  5341. }
  5342. .carousel-control-next {
  5343. right: 0;
  5344. }
  5345. .carousel-control-prev-icon,
  5346. .carousel-control-next-icon {
  5347. display: inline-block;
  5348. width: 20px;
  5349. height: 20px;
  5350. background: 50%/100% 100% no-repeat;
  5351. }
  5352. .carousel-control-prev-icon {
  5353. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
  5354. }
  5355. .carousel-control-next-icon {
  5356. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
  5357. }
  5358. .carousel-indicators {
  5359. position: absolute;
  5360. right: 0;
  5361. bottom: 0;
  5362. left: 0;
  5363. z-index: 15;
  5364. display: flex;
  5365. justify-content: center;
  5366. padding-left: 0;
  5367. margin-right: 15%;
  5368. margin-left: 15%;
  5369. list-style: none;
  5370. }
  5371. .carousel-indicators li {
  5372. box-sizing: content-box;
  5373. flex: 0 1 auto;
  5374. width: 30px;
  5375. height: 3px;
  5376. margin-right: 3px;
  5377. margin-left: 3px;
  5378. text-indent: -999px;
  5379. cursor: pointer;
  5380. background-color: #fff;
  5381. background-clip: padding-box;
  5382. border-top: 10px solid transparent;
  5383. border-bottom: 10px solid transparent;
  5384. opacity: 0.5;
  5385. transition: opacity 0.6s ease;
  5386. }
  5387. @media (prefers-reduced-motion: reduce) {
  5388. .carousel-indicators li {
  5389. transition: none;
  5390. }
  5391. }
  5392. .carousel-indicators .active {
  5393. opacity: 1;
  5394. }
  5395. .carousel-caption {
  5396. position: absolute;
  5397. right: 15%;
  5398. bottom: 20px;
  5399. left: 15%;
  5400. z-index: 10;
  5401. padding-top: 20px;
  5402. padding-bottom: 20px;
  5403. color: #fff;
  5404. text-align: center;
  5405. }
  5406. @-webkit-keyframes spinner-border {
  5407. to {
  5408. transform: rotate(360deg);
  5409. }
  5410. }
  5411. @keyframes spinner-border {
  5412. to {
  5413. transform: rotate(360deg);
  5414. }
  5415. }
  5416. .spinner-border {
  5417. display: inline-block;
  5418. width: 2rem;
  5419. height: 2rem;
  5420. vertical-align: text-bottom;
  5421. border: 0.25em solid currentColor;
  5422. border-right-color: transparent;
  5423. border-radius: 50%;
  5424. -webkit-animation: 0.75s linear infinite spinner-border;
  5425. animation: 0.75s linear infinite spinner-border;
  5426. }
  5427. .spinner-border-sm {
  5428. width: 1rem;
  5429. height: 1rem;
  5430. border-width: 0.2em;
  5431. }
  5432. @-webkit-keyframes spinner-grow {
  5433. 0% {
  5434. transform: scale(0);
  5435. }
  5436. 50% {
  5437. opacity: 1;
  5438. transform: none;
  5439. }
  5440. }
  5441. @keyframes spinner-grow {
  5442. 0% {
  5443. transform: scale(0);
  5444. }
  5445. 50% {
  5446. opacity: 1;
  5447. transform: none;
  5448. }
  5449. }
  5450. .spinner-grow {
  5451. display: inline-block;
  5452. width: 2rem;
  5453. height: 2rem;
  5454. vertical-align: text-bottom;
  5455. background-color: currentColor;
  5456. border-radius: 50%;
  5457. opacity: 0;
  5458. -webkit-animation: 0.75s linear infinite spinner-grow;
  5459. animation: 0.75s linear infinite spinner-grow;
  5460. }
  5461. .spinner-grow-sm {
  5462. width: 1rem;
  5463. height: 1rem;
  5464. }
  5465. @media (prefers-reduced-motion: reduce) {
  5466. .spinner-border,
  5467. .spinner-grow {
  5468. -webkit-animation-duration: 1.5s;
  5469. animation-duration: 1.5s;
  5470. }
  5471. }
  5472. .align-baseline {
  5473. vertical-align: baseline !important;
  5474. }
  5475. .align-top {
  5476. vertical-align: top !important;
  5477. }
  5478. .align-middle {
  5479. vertical-align: middle !important;
  5480. }
  5481. .align-bottom {
  5482. vertical-align: bottom !important;
  5483. }
  5484. .align-text-bottom {
  5485. vertical-align: text-bottom !important;
  5486. }
  5487. .align-text-top {
  5488. vertical-align: text-top !important;
  5489. }
  5490. .bg-primary {
  5491. background-color: #3490dc !important;
  5492. }
  5493. a.bg-primary:hover, a.bg-primary:focus,
  5494. button.bg-primary:hover,
  5495. button.bg-primary:focus {
  5496. background-color: #2176bd !important;
  5497. }
  5498. .bg-secondary {
  5499. background-color: #6c757d !important;
  5500. }
  5501. a.bg-secondary:hover, a.bg-secondary:focus,
  5502. button.bg-secondary:hover,
  5503. button.bg-secondary:focus {
  5504. background-color: #545b62 !important;
  5505. }
  5506. .bg-success {
  5507. background-color: #38c172 !important;
  5508. }
  5509. a.bg-success:hover, a.bg-success:focus,
  5510. button.bg-success:hover,
  5511. button.bg-success:focus {
  5512. background-color: #2d995b !important;
  5513. }
  5514. .bg-info {
  5515. background-color: #6cb2eb !important;
  5516. }
  5517. a.bg-info:hover, a.bg-info:focus,
  5518. button.bg-info:hover,
  5519. button.bg-info:focus {
  5520. background-color: #3f9ae5 !important;
  5521. }
  5522. .bg-warning {
  5523. background-color: #ffed4a !important;
  5524. }
  5525. a.bg-warning:hover, a.bg-warning:focus,
  5526. button.bg-warning:hover,
  5527. button.bg-warning:focus {
  5528. background-color: #ffe817 !important;
  5529. }
  5530. .bg-danger {
  5531. background-color: #e3342f !important;
  5532. }
  5533. a.bg-danger:hover, a.bg-danger:focus,
  5534. button.bg-danger:hover,
  5535. button.bg-danger:focus {
  5536. background-color: #c51f1a !important;
  5537. }
  5538. .bg-light {
  5539. background-color: #f8f9fa !important;
  5540. }
  5541. a.bg-light:hover, a.bg-light:focus,
  5542. button.bg-light:hover,
  5543. button.bg-light:focus {
  5544. background-color: #dae0e5 !important;
  5545. }
  5546. .bg-dark {
  5547. background-color: #343a40 !important;
  5548. }
  5549. a.bg-dark:hover, a.bg-dark:focus,
  5550. button.bg-dark:hover,
  5551. button.bg-dark:focus {
  5552. background-color: #1d2124 !important;
  5553. }
  5554. .bg-white {
  5555. background-color: #fff !important;
  5556. }
  5557. .bg-transparent {
  5558. background-color: transparent !important;
  5559. }
  5560. .border {
  5561. border: 1px solid #dee2e6 !important;
  5562. }
  5563. .border-top {
  5564. border-top: 1px solid #dee2e6 !important;
  5565. }
  5566. .border-right {
  5567. border-right: 1px solid #dee2e6 !important;
  5568. }
  5569. .border-bottom {
  5570. border-bottom: 1px solid #dee2e6 !important;
  5571. }
  5572. .border-left {
  5573. border-left: 1px solid #dee2e6 !important;
  5574. }
  5575. .border-0 {
  5576. border: 0 !important;
  5577. }
  5578. .border-top-0 {
  5579. border-top: 0 !important;
  5580. }
  5581. .border-right-0 {
  5582. border-right: 0 !important;
  5583. }
  5584. .border-bottom-0 {
  5585. border-bottom: 0 !important;
  5586. }
  5587. .border-left-0 {
  5588. border-left: 0 !important;
  5589. }
  5590. .border-primary {
  5591. border-color: #3490dc !important;
  5592. }
  5593. .border-secondary {
  5594. border-color: #6c757d !important;
  5595. }
  5596. .border-success {
  5597. border-color: #38c172 !important;
  5598. }
  5599. .border-info {
  5600. border-color: #6cb2eb !important;
  5601. }
  5602. .border-warning {
  5603. border-color: #ffed4a !important;
  5604. }
  5605. .border-danger {
  5606. border-color: #e3342f !important;
  5607. }
  5608. .border-light {
  5609. border-color: #f8f9fa !important;
  5610. }
  5611. .border-dark {
  5612. border-color: #343a40 !important;
  5613. }
  5614. .border-white {
  5615. border-color: #fff !important;
  5616. }
  5617. .rounded-sm {
  5618. border-radius: 0.2rem !important;
  5619. }
  5620. .rounded {
  5621. border-radius: 0.25rem !important;
  5622. }
  5623. .rounded-top {
  5624. border-top-left-radius: 0.25rem !important;
  5625. border-top-right-radius: 0.25rem !important;
  5626. }
  5627. .rounded-right {
  5628. border-top-right-radius: 0.25rem !important;
  5629. border-bottom-right-radius: 0.25rem !important;
  5630. }
  5631. .rounded-bottom {
  5632. border-bottom-right-radius: 0.25rem !important;
  5633. border-bottom-left-radius: 0.25rem !important;
  5634. }
  5635. .rounded-left {
  5636. border-top-left-radius: 0.25rem !important;
  5637. border-bottom-left-radius: 0.25rem !important;
  5638. }
  5639. .rounded-lg {
  5640. border-radius: 0.3rem !important;
  5641. }
  5642. .rounded-circle {
  5643. border-radius: 50% !important;
  5644. }
  5645. .rounded-pill {
  5646. border-radius: 50rem !important;
  5647. }
  5648. .rounded-0 {
  5649. border-radius: 0 !important;
  5650. }
  5651. .clearfix::after {
  5652. display: block;
  5653. clear: both;
  5654. content: "";
  5655. }
  5656. .d-none {
  5657. display: none !important;
  5658. }
  5659. .d-inline {
  5660. display: inline !important;
  5661. }
  5662. .d-inline-block {
  5663. display: inline-block !important;
  5664. }
  5665. .d-block {
  5666. display: block !important;
  5667. }
  5668. .d-table {
  5669. display: table !important;
  5670. }
  5671. .d-table-row {
  5672. display: table-row !important;
  5673. }
  5674. .d-table-cell {
  5675. display: table-cell !important;
  5676. }
  5677. .d-flex {
  5678. display: flex !important;
  5679. }
  5680. .d-inline-flex {
  5681. display: inline-flex !important;
  5682. }
  5683. @media (min-width: 576px) {
  5684. .d-sm-none {
  5685. display: none !important;
  5686. }
  5687. .d-sm-inline {
  5688. display: inline !important;
  5689. }
  5690. .d-sm-inline-block {
  5691. display: inline-block !important;
  5692. }
  5693. .d-sm-block {
  5694. display: block !important;
  5695. }
  5696. .d-sm-table {
  5697. display: table !important;
  5698. }
  5699. .d-sm-table-row {
  5700. display: table-row !important;
  5701. }
  5702. .d-sm-table-cell {
  5703. display: table-cell !important;
  5704. }
  5705. .d-sm-flex {
  5706. display: flex !important;
  5707. }
  5708. .d-sm-inline-flex {
  5709. display: inline-flex !important;
  5710. }
  5711. }
  5712. @media (min-width: 768px) {
  5713. .d-md-none {
  5714. display: none !important;
  5715. }
  5716. .d-md-inline {
  5717. display: inline !important;
  5718. }
  5719. .d-md-inline-block {
  5720. display: inline-block !important;
  5721. }
  5722. .d-md-block {
  5723. display: block !important;
  5724. }
  5725. .d-md-table {
  5726. display: table !important;
  5727. }
  5728. .d-md-table-row {
  5729. display: table-row !important;
  5730. }
  5731. .d-md-table-cell {
  5732. display: table-cell !important;
  5733. }
  5734. .d-md-flex {
  5735. display: flex !important;
  5736. }
  5737. .d-md-inline-flex {
  5738. display: inline-flex !important;
  5739. }
  5740. }
  5741. @media (min-width: 992px) {
  5742. .d-lg-none {
  5743. display: none !important;
  5744. }
  5745. .d-lg-inline {
  5746. display: inline !important;
  5747. }
  5748. .d-lg-inline-block {
  5749. display: inline-block !important;
  5750. }
  5751. .d-lg-block {
  5752. display: block !important;
  5753. }
  5754. .d-lg-table {
  5755. display: table !important;
  5756. }
  5757. .d-lg-table-row {
  5758. display: table-row !important;
  5759. }
  5760. .d-lg-table-cell {
  5761. display: table-cell !important;
  5762. }
  5763. .d-lg-flex {
  5764. display: flex !important;
  5765. }
  5766. .d-lg-inline-flex {
  5767. display: inline-flex !important;
  5768. }
  5769. }
  5770. @media (min-width: 1200px) {
  5771. .d-xl-none {
  5772. display: none !important;
  5773. }
  5774. .d-xl-inline {
  5775. display: inline !important;
  5776. }
  5777. .d-xl-inline-block {
  5778. display: inline-block !important;
  5779. }
  5780. .d-xl-block {
  5781. display: block !important;
  5782. }
  5783. .d-xl-table {
  5784. display: table !important;
  5785. }
  5786. .d-xl-table-row {
  5787. display: table-row !important;
  5788. }
  5789. .d-xl-table-cell {
  5790. display: table-cell !important;
  5791. }
  5792. .d-xl-flex {
  5793. display: flex !important;
  5794. }
  5795. .d-xl-inline-flex {
  5796. display: inline-flex !important;
  5797. }
  5798. }
  5799. @media print {
  5800. .d-print-none {
  5801. display: none !important;
  5802. }
  5803. .d-print-inline {
  5804. display: inline !important;
  5805. }
  5806. .d-print-inline-block {
  5807. display: inline-block !important;
  5808. }
  5809. .d-print-block {
  5810. display: block !important;
  5811. }
  5812. .d-print-table {
  5813. display: table !important;
  5814. }
  5815. .d-print-table-row {
  5816. display: table-row !important;
  5817. }
  5818. .d-print-table-cell {
  5819. display: table-cell !important;
  5820. }
  5821. .d-print-flex {
  5822. display: flex !important;
  5823. }
  5824. .d-print-inline-flex {
  5825. display: inline-flex !important;
  5826. }
  5827. }
  5828. .embed-responsive {
  5829. position: relative;
  5830. display: block;
  5831. width: 100%;
  5832. padding: 0;
  5833. overflow: hidden;
  5834. }
  5835. .embed-responsive::before {
  5836. display: block;
  5837. content: "";
  5838. }
  5839. .embed-responsive .embed-responsive-item,
  5840. .embed-responsive iframe,
  5841. .embed-responsive embed,
  5842. .embed-responsive object,
  5843. .embed-responsive video {
  5844. position: absolute;
  5845. top: 0;
  5846. bottom: 0;
  5847. left: 0;
  5848. width: 100%;
  5849. height: 100%;
  5850. border: 0;
  5851. }
  5852. .embed-responsive-21by9::before {
  5853. padding-top: 42.8571428571%;
  5854. }
  5855. .embed-responsive-16by9::before {
  5856. padding-top: 56.25%;
  5857. }
  5858. .embed-responsive-4by3::before {
  5859. padding-top: 75%;
  5860. }
  5861. .embed-responsive-1by1::before {
  5862. padding-top: 100%;
  5863. }
  5864. .flex-row {
  5865. flex-direction: row !important;
  5866. }
  5867. .flex-column {
  5868. flex-direction: column !important;
  5869. }
  5870. .flex-row-reverse {
  5871. flex-direction: row-reverse !important;
  5872. }
  5873. .flex-column-reverse {
  5874. flex-direction: column-reverse !important;
  5875. }
  5876. .flex-wrap {
  5877. flex-wrap: wrap !important;
  5878. }
  5879. .flex-nowrap {
  5880. flex-wrap: nowrap !important;
  5881. }
  5882. .flex-wrap-reverse {
  5883. flex-wrap: wrap-reverse !important;
  5884. }
  5885. .flex-fill {
  5886. flex: 1 1 auto !important;
  5887. }
  5888. .flex-grow-0 {
  5889. flex-grow: 0 !important;
  5890. }
  5891. .flex-grow-1 {
  5892. flex-grow: 1 !important;
  5893. }
  5894. .flex-shrink-0 {
  5895. flex-shrink: 0 !important;
  5896. }
  5897. .flex-shrink-1 {
  5898. flex-shrink: 1 !important;
  5899. }
  5900. .justify-content-start {
  5901. justify-content: flex-start !important;
  5902. }
  5903. .justify-content-end {
  5904. justify-content: flex-end !important;
  5905. }
  5906. .justify-content-center {
  5907. justify-content: center !important;
  5908. }
  5909. .justify-content-between {
  5910. justify-content: space-between !important;
  5911. }
  5912. .justify-content-around {
  5913. justify-content: space-around !important;
  5914. }
  5915. .align-items-start {
  5916. align-items: flex-start !important;
  5917. }
  5918. .align-items-end {
  5919. align-items: flex-end !important;
  5920. }
  5921. .align-items-center {
  5922. align-items: center !important;
  5923. }
  5924. .align-items-baseline {
  5925. align-items: baseline !important;
  5926. }
  5927. .align-items-stretch {
  5928. align-items: stretch !important;
  5929. }
  5930. .align-content-start {
  5931. align-content: flex-start !important;
  5932. }
  5933. .align-content-end {
  5934. align-content: flex-end !important;
  5935. }
  5936. .align-content-center {
  5937. align-content: center !important;
  5938. }
  5939. .align-content-between {
  5940. align-content: space-between !important;
  5941. }
  5942. .align-content-around {
  5943. align-content: space-around !important;
  5944. }
  5945. .align-content-stretch {
  5946. align-content: stretch !important;
  5947. }
  5948. .align-self-auto {
  5949. align-self: auto !important;
  5950. }
  5951. .align-self-start {
  5952. align-self: flex-start !important;
  5953. }
  5954. .align-self-end {
  5955. align-self: flex-end !important;
  5956. }
  5957. .align-self-center {
  5958. align-self: center !important;
  5959. }
  5960. .align-self-baseline {
  5961. align-self: baseline !important;
  5962. }
  5963. .align-self-stretch {
  5964. align-self: stretch !important;
  5965. }
  5966. @media (min-width: 576px) {
  5967. .flex-sm-row {
  5968. flex-direction: row !important;
  5969. }
  5970. .flex-sm-column {
  5971. flex-direction: column !important;
  5972. }
  5973. .flex-sm-row-reverse {
  5974. flex-direction: row-reverse !important;
  5975. }
  5976. .flex-sm-column-reverse {
  5977. flex-direction: column-reverse !important;
  5978. }
  5979. .flex-sm-wrap {
  5980. flex-wrap: wrap !important;
  5981. }
  5982. .flex-sm-nowrap {
  5983. flex-wrap: nowrap !important;
  5984. }
  5985. .flex-sm-wrap-reverse {
  5986. flex-wrap: wrap-reverse !important;
  5987. }
  5988. .flex-sm-fill {
  5989. flex: 1 1 auto !important;
  5990. }
  5991. .flex-sm-grow-0 {
  5992. flex-grow: 0 !important;
  5993. }
  5994. .flex-sm-grow-1 {
  5995. flex-grow: 1 !important;
  5996. }
  5997. .flex-sm-shrink-0 {
  5998. flex-shrink: 0 !important;
  5999. }
  6000. .flex-sm-shrink-1 {
  6001. flex-shrink: 1 !important;
  6002. }
  6003. .justify-content-sm-start {
  6004. justify-content: flex-start !important;
  6005. }
  6006. .justify-content-sm-end {
  6007. justify-content: flex-end !important;
  6008. }
  6009. .justify-content-sm-center {
  6010. justify-content: center !important;
  6011. }
  6012. .justify-content-sm-between {
  6013. justify-content: space-between !important;
  6014. }
  6015. .justify-content-sm-around {
  6016. justify-content: space-around !important;
  6017. }
  6018. .align-items-sm-start {
  6019. align-items: flex-start !important;
  6020. }
  6021. .align-items-sm-end {
  6022. align-items: flex-end !important;
  6023. }
  6024. .align-items-sm-center {
  6025. align-items: center !important;
  6026. }
  6027. .align-items-sm-baseline {
  6028. align-items: baseline !important;
  6029. }
  6030. .align-items-sm-stretch {
  6031. align-items: stretch !important;
  6032. }
  6033. .align-content-sm-start {
  6034. align-content: flex-start !important;
  6035. }
  6036. .align-content-sm-end {
  6037. align-content: flex-end !important;
  6038. }
  6039. .align-content-sm-center {
  6040. align-content: center !important;
  6041. }
  6042. .align-content-sm-between {
  6043. align-content: space-between !important;
  6044. }
  6045. .align-content-sm-around {
  6046. align-content: space-around !important;
  6047. }
  6048. .align-content-sm-stretch {
  6049. align-content: stretch !important;
  6050. }
  6051. .align-self-sm-auto {
  6052. align-self: auto !important;
  6053. }
  6054. .align-self-sm-start {
  6055. align-self: flex-start !important;
  6056. }
  6057. .align-self-sm-end {
  6058. align-self: flex-end !important;
  6059. }
  6060. .align-self-sm-center {
  6061. align-self: center !important;
  6062. }
  6063. .align-self-sm-baseline {
  6064. align-self: baseline !important;
  6065. }
  6066. .align-self-sm-stretch {
  6067. align-self: stretch !important;
  6068. }
  6069. }
  6070. @media (min-width: 768px) {
  6071. .flex-md-row {
  6072. flex-direction: row !important;
  6073. }
  6074. .flex-md-column {
  6075. flex-direction: column !important;
  6076. }
  6077. .flex-md-row-reverse {
  6078. flex-direction: row-reverse !important;
  6079. }
  6080. .flex-md-column-reverse {
  6081. flex-direction: column-reverse !important;
  6082. }
  6083. .flex-md-wrap {
  6084. flex-wrap: wrap !important;
  6085. }
  6086. .flex-md-nowrap {
  6087. flex-wrap: nowrap !important;
  6088. }
  6089. .flex-md-wrap-reverse {
  6090. flex-wrap: wrap-reverse !important;
  6091. }
  6092. .flex-md-fill {
  6093. flex: 1 1 auto !important;
  6094. }
  6095. .flex-md-grow-0 {
  6096. flex-grow: 0 !important;
  6097. }
  6098. .flex-md-grow-1 {
  6099. flex-grow: 1 !important;
  6100. }
  6101. .flex-md-shrink-0 {
  6102. flex-shrink: 0 !important;
  6103. }
  6104. .flex-md-shrink-1 {
  6105. flex-shrink: 1 !important;
  6106. }
  6107. .justify-content-md-start {
  6108. justify-content: flex-start !important;
  6109. }
  6110. .justify-content-md-end {
  6111. justify-content: flex-end !important;
  6112. }
  6113. .justify-content-md-center {
  6114. justify-content: center !important;
  6115. }
  6116. .justify-content-md-between {
  6117. justify-content: space-between !important;
  6118. }
  6119. .justify-content-md-around {
  6120. justify-content: space-around !important;
  6121. }
  6122. .align-items-md-start {
  6123. align-items: flex-start !important;
  6124. }
  6125. .align-items-md-end {
  6126. align-items: flex-end !important;
  6127. }
  6128. .align-items-md-center {
  6129. align-items: center !important;
  6130. }
  6131. .align-items-md-baseline {
  6132. align-items: baseline !important;
  6133. }
  6134. .align-items-md-stretch {
  6135. align-items: stretch !important;
  6136. }
  6137. .align-content-md-start {
  6138. align-content: flex-start !important;
  6139. }
  6140. .align-content-md-end {
  6141. align-content: flex-end !important;
  6142. }
  6143. .align-content-md-center {
  6144. align-content: center !important;
  6145. }
  6146. .align-content-md-between {
  6147. align-content: space-between !important;
  6148. }
  6149. .align-content-md-around {
  6150. align-content: space-around !important;
  6151. }
  6152. .align-content-md-stretch {
  6153. align-content: stretch !important;
  6154. }
  6155. .align-self-md-auto {
  6156. align-self: auto !important;
  6157. }
  6158. .align-self-md-start {
  6159. align-self: flex-start !important;
  6160. }
  6161. .align-self-md-end {
  6162. align-self: flex-end !important;
  6163. }
  6164. .align-self-md-center {
  6165. align-self: center !important;
  6166. }
  6167. .align-self-md-baseline {
  6168. align-self: baseline !important;
  6169. }
  6170. .align-self-md-stretch {
  6171. align-self: stretch !important;
  6172. }
  6173. }
  6174. @media (min-width: 992px) {
  6175. .flex-lg-row {
  6176. flex-direction: row !important;
  6177. }
  6178. .flex-lg-column {
  6179. flex-direction: column !important;
  6180. }
  6181. .flex-lg-row-reverse {
  6182. flex-direction: row-reverse !important;
  6183. }
  6184. .flex-lg-column-reverse {
  6185. flex-direction: column-reverse !important;
  6186. }
  6187. .flex-lg-wrap {
  6188. flex-wrap: wrap !important;
  6189. }
  6190. .flex-lg-nowrap {
  6191. flex-wrap: nowrap !important;
  6192. }
  6193. .flex-lg-wrap-reverse {
  6194. flex-wrap: wrap-reverse !important;
  6195. }
  6196. .flex-lg-fill {
  6197. flex: 1 1 auto !important;
  6198. }
  6199. .flex-lg-grow-0 {
  6200. flex-grow: 0 !important;
  6201. }
  6202. .flex-lg-grow-1 {
  6203. flex-grow: 1 !important;
  6204. }
  6205. .flex-lg-shrink-0 {
  6206. flex-shrink: 0 !important;
  6207. }
  6208. .flex-lg-shrink-1 {
  6209. flex-shrink: 1 !important;
  6210. }
  6211. .justify-content-lg-start {
  6212. justify-content: flex-start !important;
  6213. }
  6214. .justify-content-lg-end {
  6215. justify-content: flex-end !important;
  6216. }
  6217. .justify-content-lg-center {
  6218. justify-content: center !important;
  6219. }
  6220. .justify-content-lg-between {
  6221. justify-content: space-between !important;
  6222. }
  6223. .justify-content-lg-around {
  6224. justify-content: space-around !important;
  6225. }
  6226. .align-items-lg-start {
  6227. align-items: flex-start !important;
  6228. }
  6229. .align-items-lg-end {
  6230. align-items: flex-end !important;
  6231. }
  6232. .align-items-lg-center {
  6233. align-items: center !important;
  6234. }
  6235. .align-items-lg-baseline {
  6236. align-items: baseline !important;
  6237. }
  6238. .align-items-lg-stretch {
  6239. align-items: stretch !important;
  6240. }
  6241. .align-content-lg-start {
  6242. align-content: flex-start !important;
  6243. }
  6244. .align-content-lg-end {
  6245. align-content: flex-end !important;
  6246. }
  6247. .align-content-lg-center {
  6248. align-content: center !important;
  6249. }
  6250. .align-content-lg-between {
  6251. align-content: space-between !important;
  6252. }
  6253. .align-content-lg-around {
  6254. align-content: space-around !important;
  6255. }
  6256. .align-content-lg-stretch {
  6257. align-content: stretch !important;
  6258. }
  6259. .align-self-lg-auto {
  6260. align-self: auto !important;
  6261. }
  6262. .align-self-lg-start {
  6263. align-self: flex-start !important;
  6264. }
  6265. .align-self-lg-end {
  6266. align-self: flex-end !important;
  6267. }
  6268. .align-self-lg-center {
  6269. align-self: center !important;
  6270. }
  6271. .align-self-lg-baseline {
  6272. align-self: baseline !important;
  6273. }
  6274. .align-self-lg-stretch {
  6275. align-self: stretch !important;
  6276. }
  6277. }
  6278. @media (min-width: 1200px) {
  6279. .flex-xl-row {
  6280. flex-direction: row !important;
  6281. }
  6282. .flex-xl-column {
  6283. flex-direction: column !important;
  6284. }
  6285. .flex-xl-row-reverse {
  6286. flex-direction: row-reverse !important;
  6287. }
  6288. .flex-xl-column-reverse {
  6289. flex-direction: column-reverse !important;
  6290. }
  6291. .flex-xl-wrap {
  6292. flex-wrap: wrap !important;
  6293. }
  6294. .flex-xl-nowrap {
  6295. flex-wrap: nowrap !important;
  6296. }
  6297. .flex-xl-wrap-reverse {
  6298. flex-wrap: wrap-reverse !important;
  6299. }
  6300. .flex-xl-fill {
  6301. flex: 1 1 auto !important;
  6302. }
  6303. .flex-xl-grow-0 {
  6304. flex-grow: 0 !important;
  6305. }
  6306. .flex-xl-grow-1 {
  6307. flex-grow: 1 !important;
  6308. }
  6309. .flex-xl-shrink-0 {
  6310. flex-shrink: 0 !important;
  6311. }
  6312. .flex-xl-shrink-1 {
  6313. flex-shrink: 1 !important;
  6314. }
  6315. .justify-content-xl-start {
  6316. justify-content: flex-start !important;
  6317. }
  6318. .justify-content-xl-end {
  6319. justify-content: flex-end !important;
  6320. }
  6321. .justify-content-xl-center {
  6322. justify-content: center !important;
  6323. }
  6324. .justify-content-xl-between {
  6325. justify-content: space-between !important;
  6326. }
  6327. .justify-content-xl-around {
  6328. justify-content: space-around !important;
  6329. }
  6330. .align-items-xl-start {
  6331. align-items: flex-start !important;
  6332. }
  6333. .align-items-xl-end {
  6334. align-items: flex-end !important;
  6335. }
  6336. .align-items-xl-center {
  6337. align-items: center !important;
  6338. }
  6339. .align-items-xl-baseline {
  6340. align-items: baseline !important;
  6341. }
  6342. .align-items-xl-stretch {
  6343. align-items: stretch !important;
  6344. }
  6345. .align-content-xl-start {
  6346. align-content: flex-start !important;
  6347. }
  6348. .align-content-xl-end {
  6349. align-content: flex-end !important;
  6350. }
  6351. .align-content-xl-center {
  6352. align-content: center !important;
  6353. }
  6354. .align-content-xl-between {
  6355. align-content: space-between !important;
  6356. }
  6357. .align-content-xl-around {
  6358. align-content: space-around !important;
  6359. }
  6360. .align-content-xl-stretch {
  6361. align-content: stretch !important;
  6362. }
  6363. .align-self-xl-auto {
  6364. align-self: auto !important;
  6365. }
  6366. .align-self-xl-start {
  6367. align-self: flex-start !important;
  6368. }
  6369. .align-self-xl-end {
  6370. align-self: flex-end !important;
  6371. }
  6372. .align-self-xl-center {
  6373. align-self: center !important;
  6374. }
  6375. .align-self-xl-baseline {
  6376. align-self: baseline !important;
  6377. }
  6378. .align-self-xl-stretch {
  6379. align-self: stretch !important;
  6380. }
  6381. }
  6382. .float-left {
  6383. float: left !important;
  6384. }
  6385. .float-right {
  6386. float: right !important;
  6387. }
  6388. .float-none {
  6389. float: none !important;
  6390. }
  6391. @media (min-width: 576px) {
  6392. .float-sm-left {
  6393. float: left !important;
  6394. }
  6395. .float-sm-right {
  6396. float: right !important;
  6397. }
  6398. .float-sm-none {
  6399. float: none !important;
  6400. }
  6401. }
  6402. @media (min-width: 768px) {
  6403. .float-md-left {
  6404. float: left !important;
  6405. }
  6406. .float-md-right {
  6407. float: right !important;
  6408. }
  6409. .float-md-none {
  6410. float: none !important;
  6411. }
  6412. }
  6413. @media (min-width: 992px) {
  6414. .float-lg-left {
  6415. float: left !important;
  6416. }
  6417. .float-lg-right {
  6418. float: right !important;
  6419. }
  6420. .float-lg-none {
  6421. float: none !important;
  6422. }
  6423. }
  6424. @media (min-width: 1200px) {
  6425. .float-xl-left {
  6426. float: left !important;
  6427. }
  6428. .float-xl-right {
  6429. float: right !important;
  6430. }
  6431. .float-xl-none {
  6432. float: none !important;
  6433. }
  6434. }
  6435. .user-select-all {
  6436. -webkit-user-select: all !important;
  6437. -moz-user-select: all !important;
  6438. user-select: all !important;
  6439. }
  6440. .user-select-auto {
  6441. -webkit-user-select: auto !important;
  6442. -moz-user-select: auto !important;
  6443. -ms-user-select: auto !important;
  6444. user-select: auto !important;
  6445. }
  6446. .user-select-none {
  6447. -webkit-user-select: none !important;
  6448. -moz-user-select: none !important;
  6449. -ms-user-select: none !important;
  6450. user-select: none !important;
  6451. }
  6452. .overflow-auto {
  6453. overflow: auto !important;
  6454. }
  6455. .overflow-hidden {
  6456. overflow: hidden !important;
  6457. }
  6458. .position-static {
  6459. position: static !important;
  6460. }
  6461. .position-relative {
  6462. position: relative !important;
  6463. }
  6464. .position-absolute {
  6465. position: absolute !important;
  6466. }
  6467. .position-fixed {
  6468. position: fixed !important;
  6469. }
  6470. .position-sticky {
  6471. position: sticky !important;
  6472. }
  6473. .fixed-top {
  6474. position: fixed;
  6475. top: 0;
  6476. right: 0;
  6477. left: 0;
  6478. z-index: 1030;
  6479. }
  6480. .fixed-bottom {
  6481. position: fixed;
  6482. right: 0;
  6483. bottom: 0;
  6484. left: 0;
  6485. z-index: 1030;
  6486. }
  6487. @supports (position: sticky) {
  6488. .sticky-top {
  6489. position: sticky;
  6490. top: 0;
  6491. z-index: 1020;
  6492. }
  6493. }
  6494. .sr-only {
  6495. position: absolute;
  6496. width: 1px;
  6497. height: 1px;
  6498. padding: 0;
  6499. margin: -1px;
  6500. overflow: hidden;
  6501. clip: rect(0, 0, 0, 0);
  6502. white-space: nowrap;
  6503. border: 0;
  6504. }
  6505. .sr-only-focusable:active, .sr-only-focusable:focus {
  6506. position: static;
  6507. width: auto;
  6508. height: auto;
  6509. overflow: visible;
  6510. clip: auto;
  6511. white-space: normal;
  6512. }
  6513. .shadow-sm {
  6514. box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  6515. }
  6516. .shadow {
  6517. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  6518. }
  6519. .shadow-lg {
  6520. box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  6521. }
  6522. .shadow-none {
  6523. box-shadow: none !important;
  6524. }
  6525. .w-25 {
  6526. width: 25% !important;
  6527. }
  6528. .w-50 {
  6529. width: 50% !important;
  6530. }
  6531. .w-75 {
  6532. width: 75% !important;
  6533. }
  6534. .w-100 {
  6535. width: 100% !important;
  6536. }
  6537. .w-auto {
  6538. width: auto !important;
  6539. }
  6540. .h-25 {
  6541. height: 25% !important;
  6542. }
  6543. .h-50 {
  6544. height: 50% !important;
  6545. }
  6546. .h-75 {
  6547. height: 75% !important;
  6548. }
  6549. .h-100 {
  6550. height: 100% !important;
  6551. }
  6552. .h-auto {
  6553. height: auto !important;
  6554. }
  6555. .mw-100 {
  6556. max-width: 100% !important;
  6557. }
  6558. .mh-100 {
  6559. max-height: 100% !important;
  6560. }
  6561. .min-vw-100 {
  6562. min-width: 100vw !important;
  6563. }
  6564. .min-vh-100 {
  6565. min-height: 100vh !important;
  6566. }
  6567. .vw-100 {
  6568. width: 100vw !important;
  6569. }
  6570. .vh-100 {
  6571. height: 100vh !important;
  6572. }
  6573. .m-0 {
  6574. margin: 0 !important;
  6575. }
  6576. .mt-0,
  6577. .my-0 {
  6578. margin-top: 0 !important;
  6579. }
  6580. .mr-0,
  6581. .mx-0 {
  6582. margin-right: 0 !important;
  6583. }
  6584. .mb-0,
  6585. .my-0 {
  6586. margin-bottom: 0 !important;
  6587. }
  6588. .ml-0,
  6589. .mx-0 {
  6590. margin-left: 0 !important;
  6591. }
  6592. .m-1 {
  6593. margin: 0.25rem !important;
  6594. }
  6595. .mt-1,
  6596. .my-1 {
  6597. margin-top: 0.25rem !important;
  6598. }
  6599. .mr-1,
  6600. .mx-1 {
  6601. margin-right: 0.25rem !important;
  6602. }
  6603. .mb-1,
  6604. .my-1 {
  6605. margin-bottom: 0.25rem !important;
  6606. }
  6607. .ml-1,
  6608. .mx-1 {
  6609. margin-left: 0.25rem !important;
  6610. }
  6611. .m-2 {
  6612. margin: 0.5rem !important;
  6613. }
  6614. .mt-2,
  6615. .my-2 {
  6616. margin-top: 0.5rem !important;
  6617. }
  6618. .mr-2,
  6619. .mx-2 {
  6620. margin-right: 0.5rem !important;
  6621. }
  6622. .mb-2,
  6623. .my-2 {
  6624. margin-bottom: 0.5rem !important;
  6625. }
  6626. .ml-2,
  6627. .mx-2 {
  6628. margin-left: 0.5rem !important;
  6629. }
  6630. .m-3 {
  6631. margin: 1rem !important;
  6632. }
  6633. .mt-3,
  6634. .my-3 {
  6635. margin-top: 1rem !important;
  6636. }
  6637. .mr-3,
  6638. .mx-3 {
  6639. margin-right: 1rem !important;
  6640. }
  6641. .mb-3,
  6642. .my-3 {
  6643. margin-bottom: 1rem !important;
  6644. }
  6645. .ml-3,
  6646. .mx-3 {
  6647. margin-left: 1rem !important;
  6648. }
  6649. .m-4 {
  6650. margin: 1.5rem !important;
  6651. }
  6652. .mt-4,
  6653. .my-4 {
  6654. margin-top: 1.5rem !important;
  6655. }
  6656. .mr-4,
  6657. .mx-4 {
  6658. margin-right: 1.5rem !important;
  6659. }
  6660. .mb-4,
  6661. .my-4 {
  6662. margin-bottom: 1.5rem !important;
  6663. }
  6664. .ml-4,
  6665. .mx-4 {
  6666. margin-left: 1.5rem !important;
  6667. }
  6668. .m-5 {
  6669. margin: 3rem !important;
  6670. }
  6671. .mt-5,
  6672. .my-5 {
  6673. margin-top: 3rem !important;
  6674. }
  6675. .mr-5,
  6676. .mx-5 {
  6677. margin-right: 3rem !important;
  6678. }
  6679. .mb-5,
  6680. .my-5 {
  6681. margin-bottom: 3rem !important;
  6682. }
  6683. .ml-5,
  6684. .mx-5 {
  6685. margin-left: 3rem !important;
  6686. }
  6687. .p-0 {
  6688. padding: 0 !important;
  6689. }
  6690. .pt-0,
  6691. .py-0 {
  6692. padding-top: 0 !important;
  6693. }
  6694. .pr-0,
  6695. .px-0 {
  6696. padding-right: 0 !important;
  6697. }
  6698. .pb-0,
  6699. .py-0 {
  6700. padding-bottom: 0 !important;
  6701. }
  6702. .pl-0,
  6703. .px-0 {
  6704. padding-left: 0 !important;
  6705. }
  6706. .p-1 {
  6707. padding: 0.25rem !important;
  6708. }
  6709. .pt-1,
  6710. .py-1 {
  6711. padding-top: 0.25rem !important;
  6712. }
  6713. .pr-1,
  6714. .px-1 {
  6715. padding-right: 0.25rem !important;
  6716. }
  6717. .pb-1,
  6718. .py-1 {
  6719. padding-bottom: 0.25rem !important;
  6720. }
  6721. .pl-1,
  6722. .px-1 {
  6723. padding-left: 0.25rem !important;
  6724. }
  6725. .p-2 {
  6726. padding: 0.5rem !important;
  6727. }
  6728. .pt-2,
  6729. .py-2 {
  6730. padding-top: 0.5rem !important;
  6731. }
  6732. .pr-2,
  6733. .px-2 {
  6734. padding-right: 0.5rem !important;
  6735. }
  6736. .pb-2,
  6737. .py-2 {
  6738. padding-bottom: 0.5rem !important;
  6739. }
  6740. .pl-2,
  6741. .px-2 {
  6742. padding-left: 0.5rem !important;
  6743. }
  6744. .p-3 {
  6745. padding: 1rem !important;
  6746. }
  6747. .pt-3,
  6748. .py-3 {
  6749. padding-top: 1rem !important;
  6750. }
  6751. .pr-3,
  6752. .px-3 {
  6753. padding-right: 1rem !important;
  6754. }
  6755. .pb-3,
  6756. .py-3 {
  6757. padding-bottom: 1rem !important;
  6758. }
  6759. .pl-3,
  6760. .px-3 {
  6761. padding-left: 1rem !important;
  6762. }
  6763. .p-4 {
  6764. padding: 1.5rem !important;
  6765. }
  6766. .pt-4,
  6767. .py-4 {
  6768. padding-top: 1.5rem !important;
  6769. }
  6770. .pr-4,
  6771. .px-4 {
  6772. padding-right: 1.5rem !important;
  6773. }
  6774. .pb-4,
  6775. .py-4 {
  6776. padding-bottom: 1.5rem !important;
  6777. }
  6778. .pl-4,
  6779. .px-4 {
  6780. padding-left: 1.5rem !important;
  6781. }
  6782. .p-5 {
  6783. padding: 3rem !important;
  6784. }
  6785. .pt-5,
  6786. .py-5 {
  6787. padding-top: 3rem !important;
  6788. }
  6789. .pr-5,
  6790. .px-5 {
  6791. padding-right: 3rem !important;
  6792. }
  6793. .pb-5,
  6794. .py-5 {
  6795. padding-bottom: 3rem !important;
  6796. }
  6797. .pl-5,
  6798. .px-5 {
  6799. padding-left: 3rem !important;
  6800. }
  6801. .m-n1 {
  6802. margin: -0.25rem !important;
  6803. }
  6804. .mt-n1,
  6805. .my-n1 {
  6806. margin-top: -0.25rem !important;
  6807. }
  6808. .mr-n1,
  6809. .mx-n1 {
  6810. margin-right: -0.25rem !important;
  6811. }
  6812. .mb-n1,
  6813. .my-n1 {
  6814. margin-bottom: -0.25rem !important;
  6815. }
  6816. .ml-n1,
  6817. .mx-n1 {
  6818. margin-left: -0.25rem !important;
  6819. }
  6820. .m-n2 {
  6821. margin: -0.5rem !important;
  6822. }
  6823. .mt-n2,
  6824. .my-n2 {
  6825. margin-top: -0.5rem !important;
  6826. }
  6827. .mr-n2,
  6828. .mx-n2 {
  6829. margin-right: -0.5rem !important;
  6830. }
  6831. .mb-n2,
  6832. .my-n2 {
  6833. margin-bottom: -0.5rem !important;
  6834. }
  6835. .ml-n2,
  6836. .mx-n2 {
  6837. margin-left: -0.5rem !important;
  6838. }
  6839. .m-n3 {
  6840. margin: -1rem !important;
  6841. }
  6842. .mt-n3,
  6843. .my-n3 {
  6844. margin-top: -1rem !important;
  6845. }
  6846. .mr-n3,
  6847. .mx-n3 {
  6848. margin-right: -1rem !important;
  6849. }
  6850. .mb-n3,
  6851. .my-n3 {
  6852. margin-bottom: -1rem !important;
  6853. }
  6854. .ml-n3,
  6855. .mx-n3 {
  6856. margin-left: -1rem !important;
  6857. }
  6858. .m-n4 {
  6859. margin: -1.5rem !important;
  6860. }
  6861. .mt-n4,
  6862. .my-n4 {
  6863. margin-top: -1.5rem !important;
  6864. }
  6865. .mr-n4,
  6866. .mx-n4 {
  6867. margin-right: -1.5rem !important;
  6868. }
  6869. .mb-n4,
  6870. .my-n4 {
  6871. margin-bottom: -1.5rem !important;
  6872. }
  6873. .ml-n4,
  6874. .mx-n4 {
  6875. margin-left: -1.5rem !important;
  6876. }
  6877. .m-n5 {
  6878. margin: -3rem !important;
  6879. }
  6880. .mt-n5,
  6881. .my-n5 {
  6882. margin-top: -3rem !important;
  6883. }
  6884. .mr-n5,
  6885. .mx-n5 {
  6886. margin-right: -3rem !important;
  6887. }
  6888. .mb-n5,
  6889. .my-n5 {
  6890. margin-bottom: -3rem !important;
  6891. }
  6892. .ml-n5,
  6893. .mx-n5 {
  6894. margin-left: -3rem !important;
  6895. }
  6896. .m-auto {
  6897. margin: auto !important;
  6898. }
  6899. .mt-auto,
  6900. .my-auto {
  6901. margin-top: auto !important;
  6902. }
  6903. .mr-auto,
  6904. .mx-auto {
  6905. margin-right: auto !important;
  6906. }
  6907. .mb-auto,
  6908. .my-auto {
  6909. margin-bottom: auto !important;
  6910. }
  6911. .ml-auto,
  6912. .mx-auto {
  6913. margin-left: auto !important;
  6914. }
  6915. @media (min-width: 576px) {
  6916. .m-sm-0 {
  6917. margin: 0 !important;
  6918. }
  6919. .mt-sm-0,
  6920. .my-sm-0 {
  6921. margin-top: 0 !important;
  6922. }
  6923. .mr-sm-0,
  6924. .mx-sm-0 {
  6925. margin-right: 0 !important;
  6926. }
  6927. .mb-sm-0,
  6928. .my-sm-0 {
  6929. margin-bottom: 0 !important;
  6930. }
  6931. .ml-sm-0,
  6932. .mx-sm-0 {
  6933. margin-left: 0 !important;
  6934. }
  6935. .m-sm-1 {
  6936. margin: 0.25rem !important;
  6937. }
  6938. .mt-sm-1,
  6939. .my-sm-1 {
  6940. margin-top: 0.25rem !important;
  6941. }
  6942. .mr-sm-1,
  6943. .mx-sm-1 {
  6944. margin-right: 0.25rem !important;
  6945. }
  6946. .mb-sm-1,
  6947. .my-sm-1 {
  6948. margin-bottom: 0.25rem !important;
  6949. }
  6950. .ml-sm-1,
  6951. .mx-sm-1 {
  6952. margin-left: 0.25rem !important;
  6953. }
  6954. .m-sm-2 {
  6955. margin: 0.5rem !important;
  6956. }
  6957. .mt-sm-2,
  6958. .my-sm-2 {
  6959. margin-top: 0.5rem !important;
  6960. }
  6961. .mr-sm-2,
  6962. .mx-sm-2 {
  6963. margin-right: 0.5rem !important;
  6964. }
  6965. .mb-sm-2,
  6966. .my-sm-2 {
  6967. margin-bottom: 0.5rem !important;
  6968. }
  6969. .ml-sm-2,
  6970. .mx-sm-2 {
  6971. margin-left: 0.5rem !important;
  6972. }
  6973. .m-sm-3 {
  6974. margin: 1rem !important;
  6975. }
  6976. .mt-sm-3,
  6977. .my-sm-3 {
  6978. margin-top: 1rem !important;
  6979. }
  6980. .mr-sm-3,
  6981. .mx-sm-3 {
  6982. margin-right: 1rem !important;
  6983. }
  6984. .mb-sm-3,
  6985. .my-sm-3 {
  6986. margin-bottom: 1rem !important;
  6987. }
  6988. .ml-sm-3,
  6989. .mx-sm-3 {
  6990. margin-left: 1rem !important;
  6991. }
  6992. .m-sm-4 {
  6993. margin: 1.5rem !important;
  6994. }
  6995. .mt-sm-4,
  6996. .my-sm-4 {
  6997. margin-top: 1.5rem !important;
  6998. }
  6999. .mr-sm-4,
  7000. .mx-sm-4 {
  7001. margin-right: 1.5rem !important;
  7002. }
  7003. .mb-sm-4,
  7004. .my-sm-4 {
  7005. margin-bottom: 1.5rem !important;
  7006. }
  7007. .ml-sm-4,
  7008. .mx-sm-4 {
  7009. margin-left: 1.5rem !important;
  7010. }
  7011. .m-sm-5 {
  7012. margin: 3rem !important;
  7013. }
  7014. .mt-sm-5,
  7015. .my-sm-5 {
  7016. margin-top: 3rem !important;
  7017. }
  7018. .mr-sm-5,
  7019. .mx-sm-5 {
  7020. margin-right: 3rem !important;
  7021. }
  7022. .mb-sm-5,
  7023. .my-sm-5 {
  7024. margin-bottom: 3rem !important;
  7025. }
  7026. .ml-sm-5,
  7027. .mx-sm-5 {
  7028. margin-left: 3rem !important;
  7029. }
  7030. .p-sm-0 {
  7031. padding: 0 !important;
  7032. }
  7033. .pt-sm-0,
  7034. .py-sm-0 {
  7035. padding-top: 0 !important;
  7036. }
  7037. .pr-sm-0,
  7038. .px-sm-0 {
  7039. padding-right: 0 !important;
  7040. }
  7041. .pb-sm-0,
  7042. .py-sm-0 {
  7043. padding-bottom: 0 !important;
  7044. }
  7045. .pl-sm-0,
  7046. .px-sm-0 {
  7047. padding-left: 0 !important;
  7048. }
  7049. .p-sm-1 {
  7050. padding: 0.25rem !important;
  7051. }
  7052. .pt-sm-1,
  7053. .py-sm-1 {
  7054. padding-top: 0.25rem !important;
  7055. }
  7056. .pr-sm-1,
  7057. .px-sm-1 {
  7058. padding-right: 0.25rem !important;
  7059. }
  7060. .pb-sm-1,
  7061. .py-sm-1 {
  7062. padding-bottom: 0.25rem !important;
  7063. }
  7064. .pl-sm-1,
  7065. .px-sm-1 {
  7066. padding-left: 0.25rem !important;
  7067. }
  7068. .p-sm-2 {
  7069. padding: 0.5rem !important;
  7070. }
  7071. .pt-sm-2,
  7072. .py-sm-2 {
  7073. padding-top: 0.5rem !important;
  7074. }
  7075. .pr-sm-2,
  7076. .px-sm-2 {
  7077. padding-right: 0.5rem !important;
  7078. }
  7079. .pb-sm-2,
  7080. .py-sm-2 {
  7081. padding-bottom: 0.5rem !important;
  7082. }
  7083. .pl-sm-2,
  7084. .px-sm-2 {
  7085. padding-left: 0.5rem !important;
  7086. }
  7087. .p-sm-3 {
  7088. padding: 1rem !important;
  7089. }
  7090. .pt-sm-3,
  7091. .py-sm-3 {
  7092. padding-top: 1rem !important;
  7093. }
  7094. .pr-sm-3,
  7095. .px-sm-3 {
  7096. padding-right: 1rem !important;
  7097. }
  7098. .pb-sm-3,
  7099. .py-sm-3 {
  7100. padding-bottom: 1rem !important;
  7101. }
  7102. .pl-sm-3,
  7103. .px-sm-3 {
  7104. padding-left: 1rem !important;
  7105. }
  7106. .p-sm-4 {
  7107. padding: 1.5rem !important;
  7108. }
  7109. .pt-sm-4,
  7110. .py-sm-4 {
  7111. padding-top: 1.5rem !important;
  7112. }
  7113. .pr-sm-4,
  7114. .px-sm-4 {
  7115. padding-right: 1.5rem !important;
  7116. }
  7117. .pb-sm-4,
  7118. .py-sm-4 {
  7119. padding-bottom: 1.5rem !important;
  7120. }
  7121. .pl-sm-4,
  7122. .px-sm-4 {
  7123. padding-left: 1.5rem !important;
  7124. }
  7125. .p-sm-5 {
  7126. padding: 3rem !important;
  7127. }
  7128. .pt-sm-5,
  7129. .py-sm-5 {
  7130. padding-top: 3rem !important;
  7131. }
  7132. .pr-sm-5,
  7133. .px-sm-5 {
  7134. padding-right: 3rem !important;
  7135. }
  7136. .pb-sm-5,
  7137. .py-sm-5 {
  7138. padding-bottom: 3rem !important;
  7139. }
  7140. .pl-sm-5,
  7141. .px-sm-5 {
  7142. padding-left: 3rem !important;
  7143. }
  7144. .m-sm-n1 {
  7145. margin: -0.25rem !important;
  7146. }
  7147. .mt-sm-n1,
  7148. .my-sm-n1 {
  7149. margin-top: -0.25rem !important;
  7150. }
  7151. .mr-sm-n1,
  7152. .mx-sm-n1 {
  7153. margin-right: -0.25rem !important;
  7154. }
  7155. .mb-sm-n1,
  7156. .my-sm-n1 {
  7157. margin-bottom: -0.25rem !important;
  7158. }
  7159. .ml-sm-n1,
  7160. .mx-sm-n1 {
  7161. margin-left: -0.25rem !important;
  7162. }
  7163. .m-sm-n2 {
  7164. margin: -0.5rem !important;
  7165. }
  7166. .mt-sm-n2,
  7167. .my-sm-n2 {
  7168. margin-top: -0.5rem !important;
  7169. }
  7170. .mr-sm-n2,
  7171. .mx-sm-n2 {
  7172. margin-right: -0.5rem !important;
  7173. }
  7174. .mb-sm-n2,
  7175. .my-sm-n2 {
  7176. margin-bottom: -0.5rem !important;
  7177. }
  7178. .ml-sm-n2,
  7179. .mx-sm-n2 {
  7180. margin-left: -0.5rem !important;
  7181. }
  7182. .m-sm-n3 {
  7183. margin: -1rem !important;
  7184. }
  7185. .mt-sm-n3,
  7186. .my-sm-n3 {
  7187. margin-top: -1rem !important;
  7188. }
  7189. .mr-sm-n3,
  7190. .mx-sm-n3 {
  7191. margin-right: -1rem !important;
  7192. }
  7193. .mb-sm-n3,
  7194. .my-sm-n3 {
  7195. margin-bottom: -1rem !important;
  7196. }
  7197. .ml-sm-n3,
  7198. .mx-sm-n3 {
  7199. margin-left: -1rem !important;
  7200. }
  7201. .m-sm-n4 {
  7202. margin: -1.5rem !important;
  7203. }
  7204. .mt-sm-n4,
  7205. .my-sm-n4 {
  7206. margin-top: -1.5rem !important;
  7207. }
  7208. .mr-sm-n4,
  7209. .mx-sm-n4 {
  7210. margin-right: -1.5rem !important;
  7211. }
  7212. .mb-sm-n4,
  7213. .my-sm-n4 {
  7214. margin-bottom: -1.5rem !important;
  7215. }
  7216. .ml-sm-n4,
  7217. .mx-sm-n4 {
  7218. margin-left: -1.5rem !important;
  7219. }
  7220. .m-sm-n5 {
  7221. margin: -3rem !important;
  7222. }
  7223. .mt-sm-n5,
  7224. .my-sm-n5 {
  7225. margin-top: -3rem !important;
  7226. }
  7227. .mr-sm-n5,
  7228. .mx-sm-n5 {
  7229. margin-right: -3rem !important;
  7230. }
  7231. .mb-sm-n5,
  7232. .my-sm-n5 {
  7233. margin-bottom: -3rem !important;
  7234. }
  7235. .ml-sm-n5,
  7236. .mx-sm-n5 {
  7237. margin-left: -3rem !important;
  7238. }
  7239. .m-sm-auto {
  7240. margin: auto !important;
  7241. }
  7242. .mt-sm-auto,
  7243. .my-sm-auto {
  7244. margin-top: auto !important;
  7245. }
  7246. .mr-sm-auto,
  7247. .mx-sm-auto {
  7248. margin-right: auto !important;
  7249. }
  7250. .mb-sm-auto,
  7251. .my-sm-auto {
  7252. margin-bottom: auto !important;
  7253. }
  7254. .ml-sm-auto,
  7255. .mx-sm-auto {
  7256. margin-left: auto !important;
  7257. }
  7258. }
  7259. @media (min-width: 768px) {
  7260. .m-md-0 {
  7261. margin: 0 !important;
  7262. }
  7263. .mt-md-0,
  7264. .my-md-0 {
  7265. margin-top: 0 !important;
  7266. }
  7267. .mr-md-0,
  7268. .mx-md-0 {
  7269. margin-right: 0 !important;
  7270. }
  7271. .mb-md-0,
  7272. .my-md-0 {
  7273. margin-bottom: 0 !important;
  7274. }
  7275. .ml-md-0,
  7276. .mx-md-0 {
  7277. margin-left: 0 !important;
  7278. }
  7279. .m-md-1 {
  7280. margin: 0.25rem !important;
  7281. }
  7282. .mt-md-1,
  7283. .my-md-1 {
  7284. margin-top: 0.25rem !important;
  7285. }
  7286. .mr-md-1,
  7287. .mx-md-1 {
  7288. margin-right: 0.25rem !important;
  7289. }
  7290. .mb-md-1,
  7291. .my-md-1 {
  7292. margin-bottom: 0.25rem !important;
  7293. }
  7294. .ml-md-1,
  7295. .mx-md-1 {
  7296. margin-left: 0.25rem !important;
  7297. }
  7298. .m-md-2 {
  7299. margin: 0.5rem !important;
  7300. }
  7301. .mt-md-2,
  7302. .my-md-2 {
  7303. margin-top: 0.5rem !important;
  7304. }
  7305. .mr-md-2,
  7306. .mx-md-2 {
  7307. margin-right: 0.5rem !important;
  7308. }
  7309. .mb-md-2,
  7310. .my-md-2 {
  7311. margin-bottom: 0.5rem !important;
  7312. }
  7313. .ml-md-2,
  7314. .mx-md-2 {
  7315. margin-left: 0.5rem !important;
  7316. }
  7317. .m-md-3 {
  7318. margin: 1rem !important;
  7319. }
  7320. .mt-md-3,
  7321. .my-md-3 {
  7322. margin-top: 1rem !important;
  7323. }
  7324. .mr-md-3,
  7325. .mx-md-3 {
  7326. margin-right: 1rem !important;
  7327. }
  7328. .mb-md-3,
  7329. .my-md-3 {
  7330. margin-bottom: 1rem !important;
  7331. }
  7332. .ml-md-3,
  7333. .mx-md-3 {
  7334. margin-left: 1rem !important;
  7335. }
  7336. .m-md-4 {
  7337. margin: 1.5rem !important;
  7338. }
  7339. .mt-md-4,
  7340. .my-md-4 {
  7341. margin-top: 1.5rem !important;
  7342. }
  7343. .mr-md-4,
  7344. .mx-md-4 {
  7345. margin-right: 1.5rem !important;
  7346. }
  7347. .mb-md-4,
  7348. .my-md-4 {
  7349. margin-bottom: 1.5rem !important;
  7350. }
  7351. .ml-md-4,
  7352. .mx-md-4 {
  7353. margin-left: 1.5rem !important;
  7354. }
  7355. .m-md-5 {
  7356. margin: 3rem !important;
  7357. }
  7358. .mt-md-5,
  7359. .my-md-5 {
  7360. margin-top: 3rem !important;
  7361. }
  7362. .mr-md-5,
  7363. .mx-md-5 {
  7364. margin-right: 3rem !important;
  7365. }
  7366. .mb-md-5,
  7367. .my-md-5 {
  7368. margin-bottom: 3rem !important;
  7369. }
  7370. .ml-md-5,
  7371. .mx-md-5 {
  7372. margin-left: 3rem !important;
  7373. }
  7374. .p-md-0 {
  7375. padding: 0 !important;
  7376. }
  7377. .pt-md-0,
  7378. .py-md-0 {
  7379. padding-top: 0 !important;
  7380. }
  7381. .pr-md-0,
  7382. .px-md-0 {
  7383. padding-right: 0 !important;
  7384. }
  7385. .pb-md-0,
  7386. .py-md-0 {
  7387. padding-bottom: 0 !important;
  7388. }
  7389. .pl-md-0,
  7390. .px-md-0 {
  7391. padding-left: 0 !important;
  7392. }
  7393. .p-md-1 {
  7394. padding: 0.25rem !important;
  7395. }
  7396. .pt-md-1,
  7397. .py-md-1 {
  7398. padding-top: 0.25rem !important;
  7399. }
  7400. .pr-md-1,
  7401. .px-md-1 {
  7402. padding-right: 0.25rem !important;
  7403. }
  7404. .pb-md-1,
  7405. .py-md-1 {
  7406. padding-bottom: 0.25rem !important;
  7407. }
  7408. .pl-md-1,
  7409. .px-md-1 {
  7410. padding-left: 0.25rem !important;
  7411. }
  7412. .p-md-2 {
  7413. padding: 0.5rem !important;
  7414. }
  7415. .pt-md-2,
  7416. .py-md-2 {
  7417. padding-top: 0.5rem !important;
  7418. }
  7419. .pr-md-2,
  7420. .px-md-2 {
  7421. padding-right: 0.5rem !important;
  7422. }
  7423. .pb-md-2,
  7424. .py-md-2 {
  7425. padding-bottom: 0.5rem !important;
  7426. }
  7427. .pl-md-2,
  7428. .px-md-2 {
  7429. padding-left: 0.5rem !important;
  7430. }
  7431. .p-md-3 {
  7432. padding: 1rem !important;
  7433. }
  7434. .pt-md-3,
  7435. .py-md-3 {
  7436. padding-top: 1rem !important;
  7437. }
  7438. .pr-md-3,
  7439. .px-md-3 {
  7440. padding-right: 1rem !important;
  7441. }
  7442. .pb-md-3,
  7443. .py-md-3 {
  7444. padding-bottom: 1rem !important;
  7445. }
  7446. .pl-md-3,
  7447. .px-md-3 {
  7448. padding-left: 1rem !important;
  7449. }
  7450. .p-md-4 {
  7451. padding: 1.5rem !important;
  7452. }
  7453. .pt-md-4,
  7454. .py-md-4 {
  7455. padding-top: 1.5rem !important;
  7456. }
  7457. .pr-md-4,
  7458. .px-md-4 {
  7459. padding-right: 1.5rem !important;
  7460. }
  7461. .pb-md-4,
  7462. .py-md-4 {
  7463. padding-bottom: 1.5rem !important;
  7464. }
  7465. .pl-md-4,
  7466. .px-md-4 {
  7467. padding-left: 1.5rem !important;
  7468. }
  7469. .p-md-5 {
  7470. padding: 3rem !important;
  7471. }
  7472. .pt-md-5,
  7473. .py-md-5 {
  7474. padding-top: 3rem !important;
  7475. }
  7476. .pr-md-5,
  7477. .px-md-5 {
  7478. padding-right: 3rem !important;
  7479. }
  7480. .pb-md-5,
  7481. .py-md-5 {
  7482. padding-bottom: 3rem !important;
  7483. }
  7484. .pl-md-5,
  7485. .px-md-5 {
  7486. padding-left: 3rem !important;
  7487. }
  7488. .m-md-n1 {
  7489. margin: -0.25rem !important;
  7490. }
  7491. .mt-md-n1,
  7492. .my-md-n1 {
  7493. margin-top: -0.25rem !important;
  7494. }
  7495. .mr-md-n1,
  7496. .mx-md-n1 {
  7497. margin-right: -0.25rem !important;
  7498. }
  7499. .mb-md-n1,
  7500. .my-md-n1 {
  7501. margin-bottom: -0.25rem !important;
  7502. }
  7503. .ml-md-n1,
  7504. .mx-md-n1 {
  7505. margin-left: -0.25rem !important;
  7506. }
  7507. .m-md-n2 {
  7508. margin: -0.5rem !important;
  7509. }
  7510. .mt-md-n2,
  7511. .my-md-n2 {
  7512. margin-top: -0.5rem !important;
  7513. }
  7514. .mr-md-n2,
  7515. .mx-md-n2 {
  7516. margin-right: -0.5rem !important;
  7517. }
  7518. .mb-md-n2,
  7519. .my-md-n2 {
  7520. margin-bottom: -0.5rem !important;
  7521. }
  7522. .ml-md-n2,
  7523. .mx-md-n2 {
  7524. margin-left: -0.5rem !important;
  7525. }
  7526. .m-md-n3 {
  7527. margin: -1rem !important;
  7528. }
  7529. .mt-md-n3,
  7530. .my-md-n3 {
  7531. margin-top: -1rem !important;
  7532. }
  7533. .mr-md-n3,
  7534. .mx-md-n3 {
  7535. margin-right: -1rem !important;
  7536. }
  7537. .mb-md-n3,
  7538. .my-md-n3 {
  7539. margin-bottom: -1rem !important;
  7540. }
  7541. .ml-md-n3,
  7542. .mx-md-n3 {
  7543. margin-left: -1rem !important;
  7544. }
  7545. .m-md-n4 {
  7546. margin: -1.5rem !important;
  7547. }
  7548. .mt-md-n4,
  7549. .my-md-n4 {
  7550. margin-top: -1.5rem !important;
  7551. }
  7552. .mr-md-n4,
  7553. .mx-md-n4 {
  7554. margin-right: -1.5rem !important;
  7555. }
  7556. .mb-md-n4,
  7557. .my-md-n4 {
  7558. margin-bottom: -1.5rem !important;
  7559. }
  7560. .ml-md-n4,
  7561. .mx-md-n4 {
  7562. margin-left: -1.5rem !important;
  7563. }
  7564. .m-md-n5 {
  7565. margin: -3rem !important;
  7566. }
  7567. .mt-md-n5,
  7568. .my-md-n5 {
  7569. margin-top: -3rem !important;
  7570. }
  7571. .mr-md-n5,
  7572. .mx-md-n5 {
  7573. margin-right: -3rem !important;
  7574. }
  7575. .mb-md-n5,
  7576. .my-md-n5 {
  7577. margin-bottom: -3rem !important;
  7578. }
  7579. .ml-md-n5,
  7580. .mx-md-n5 {
  7581. margin-left: -3rem !important;
  7582. }
  7583. .m-md-auto {
  7584. margin: auto !important;
  7585. }
  7586. .mt-md-auto,
  7587. .my-md-auto {
  7588. margin-top: auto !important;
  7589. }
  7590. .mr-md-auto,
  7591. .mx-md-auto {
  7592. margin-right: auto !important;
  7593. }
  7594. .mb-md-auto,
  7595. .my-md-auto {
  7596. margin-bottom: auto !important;
  7597. }
  7598. .ml-md-auto,
  7599. .mx-md-auto {
  7600. margin-left: auto !important;
  7601. }
  7602. }
  7603. @media (min-width: 992px) {
  7604. .m-lg-0 {
  7605. margin: 0 !important;
  7606. }
  7607. .mt-lg-0,
  7608. .my-lg-0 {
  7609. margin-top: 0 !important;
  7610. }
  7611. .mr-lg-0,
  7612. .mx-lg-0 {
  7613. margin-right: 0 !important;
  7614. }
  7615. .mb-lg-0,
  7616. .my-lg-0 {
  7617. margin-bottom: 0 !important;
  7618. }
  7619. .ml-lg-0,
  7620. .mx-lg-0 {
  7621. margin-left: 0 !important;
  7622. }
  7623. .m-lg-1 {
  7624. margin: 0.25rem !important;
  7625. }
  7626. .mt-lg-1,
  7627. .my-lg-1 {
  7628. margin-top: 0.25rem !important;
  7629. }
  7630. .mr-lg-1,
  7631. .mx-lg-1 {
  7632. margin-right: 0.25rem !important;
  7633. }
  7634. .mb-lg-1,
  7635. .my-lg-1 {
  7636. margin-bottom: 0.25rem !important;
  7637. }
  7638. .ml-lg-1,
  7639. .mx-lg-1 {
  7640. margin-left: 0.25rem !important;
  7641. }
  7642. .m-lg-2 {
  7643. margin: 0.5rem !important;
  7644. }
  7645. .mt-lg-2,
  7646. .my-lg-2 {
  7647. margin-top: 0.5rem !important;
  7648. }
  7649. .mr-lg-2,
  7650. .mx-lg-2 {
  7651. margin-right: 0.5rem !important;
  7652. }
  7653. .mb-lg-2,
  7654. .my-lg-2 {
  7655. margin-bottom: 0.5rem !important;
  7656. }
  7657. .ml-lg-2,
  7658. .mx-lg-2 {
  7659. margin-left: 0.5rem !important;
  7660. }
  7661. .m-lg-3 {
  7662. margin: 1rem !important;
  7663. }
  7664. .mt-lg-3,
  7665. .my-lg-3 {
  7666. margin-top: 1rem !important;
  7667. }
  7668. .mr-lg-3,
  7669. .mx-lg-3 {
  7670. margin-right: 1rem !important;
  7671. }
  7672. .mb-lg-3,
  7673. .my-lg-3 {
  7674. margin-bottom: 1rem !important;
  7675. }
  7676. .ml-lg-3,
  7677. .mx-lg-3 {
  7678. margin-left: 1rem !important;
  7679. }
  7680. .m-lg-4 {
  7681. margin: 1.5rem !important;
  7682. }
  7683. .mt-lg-4,
  7684. .my-lg-4 {
  7685. margin-top: 1.5rem !important;
  7686. }
  7687. .mr-lg-4,
  7688. .mx-lg-4 {
  7689. margin-right: 1.5rem !important;
  7690. }
  7691. .mb-lg-4,
  7692. .my-lg-4 {
  7693. margin-bottom: 1.5rem !important;
  7694. }
  7695. .ml-lg-4,
  7696. .mx-lg-4 {
  7697. margin-left: 1.5rem !important;
  7698. }
  7699. .m-lg-5 {
  7700. margin: 3rem !important;
  7701. }
  7702. .mt-lg-5,
  7703. .my-lg-5 {
  7704. margin-top: 3rem !important;
  7705. }
  7706. .mr-lg-5,
  7707. .mx-lg-5 {
  7708. margin-right: 3rem !important;
  7709. }
  7710. .mb-lg-5,
  7711. .my-lg-5 {
  7712. margin-bottom: 3rem !important;
  7713. }
  7714. .ml-lg-5,
  7715. .mx-lg-5 {
  7716. margin-left: 3rem !important;
  7717. }
  7718. .p-lg-0 {
  7719. padding: 0 !important;
  7720. }
  7721. .pt-lg-0,
  7722. .py-lg-0 {
  7723. padding-top: 0 !important;
  7724. }
  7725. .pr-lg-0,
  7726. .px-lg-0 {
  7727. padding-right: 0 !important;
  7728. }
  7729. .pb-lg-0,
  7730. .py-lg-0 {
  7731. padding-bottom: 0 !important;
  7732. }
  7733. .pl-lg-0,
  7734. .px-lg-0 {
  7735. padding-left: 0 !important;
  7736. }
  7737. .p-lg-1 {
  7738. padding: 0.25rem !important;
  7739. }
  7740. .pt-lg-1,
  7741. .py-lg-1 {
  7742. padding-top: 0.25rem !important;
  7743. }
  7744. .pr-lg-1,
  7745. .px-lg-1 {
  7746. padding-right: 0.25rem !important;
  7747. }
  7748. .pb-lg-1,
  7749. .py-lg-1 {
  7750. padding-bottom: 0.25rem !important;
  7751. }
  7752. .pl-lg-1,
  7753. .px-lg-1 {
  7754. padding-left: 0.25rem !important;
  7755. }
  7756. .p-lg-2 {
  7757. padding: 0.5rem !important;
  7758. }
  7759. .pt-lg-2,
  7760. .py-lg-2 {
  7761. padding-top: 0.5rem !important;
  7762. }
  7763. .pr-lg-2,
  7764. .px-lg-2 {
  7765. padding-right: 0.5rem !important;
  7766. }
  7767. .pb-lg-2,
  7768. .py-lg-2 {
  7769. padding-bottom: 0.5rem !important;
  7770. }
  7771. .pl-lg-2,
  7772. .px-lg-2 {
  7773. padding-left: 0.5rem !important;
  7774. }
  7775. .p-lg-3 {
  7776. padding: 1rem !important;
  7777. }
  7778. .pt-lg-3,
  7779. .py-lg-3 {
  7780. padding-top: 1rem !important;
  7781. }
  7782. .pr-lg-3,
  7783. .px-lg-3 {
  7784. padding-right: 1rem !important;
  7785. }
  7786. .pb-lg-3,
  7787. .py-lg-3 {
  7788. padding-bottom: 1rem !important;
  7789. }
  7790. .pl-lg-3,
  7791. .px-lg-3 {
  7792. padding-left: 1rem !important;
  7793. }
  7794. .p-lg-4 {
  7795. padding: 1.5rem !important;
  7796. }
  7797. .pt-lg-4,
  7798. .py-lg-4 {
  7799. padding-top: 1.5rem !important;
  7800. }
  7801. .pr-lg-4,
  7802. .px-lg-4 {
  7803. padding-right: 1.5rem !important;
  7804. }
  7805. .pb-lg-4,
  7806. .py-lg-4 {
  7807. padding-bottom: 1.5rem !important;
  7808. }
  7809. .pl-lg-4,
  7810. .px-lg-4 {
  7811. padding-left: 1.5rem !important;
  7812. }
  7813. .p-lg-5 {
  7814. padding: 3rem !important;
  7815. }
  7816. .pt-lg-5,
  7817. .py-lg-5 {
  7818. padding-top: 3rem !important;
  7819. }
  7820. .pr-lg-5,
  7821. .px-lg-5 {
  7822. padding-right: 3rem !important;
  7823. }
  7824. .pb-lg-5,
  7825. .py-lg-5 {
  7826. padding-bottom: 3rem !important;
  7827. }
  7828. .pl-lg-5,
  7829. .px-lg-5 {
  7830. padding-left: 3rem !important;
  7831. }
  7832. .m-lg-n1 {
  7833. margin: -0.25rem !important;
  7834. }
  7835. .mt-lg-n1,
  7836. .my-lg-n1 {
  7837. margin-top: -0.25rem !important;
  7838. }
  7839. .mr-lg-n1,
  7840. .mx-lg-n1 {
  7841. margin-right: -0.25rem !important;
  7842. }
  7843. .mb-lg-n1,
  7844. .my-lg-n1 {
  7845. margin-bottom: -0.25rem !important;
  7846. }
  7847. .ml-lg-n1,
  7848. .mx-lg-n1 {
  7849. margin-left: -0.25rem !important;
  7850. }
  7851. .m-lg-n2 {
  7852. margin: -0.5rem !important;
  7853. }
  7854. .mt-lg-n2,
  7855. .my-lg-n2 {
  7856. margin-top: -0.5rem !important;
  7857. }
  7858. .mr-lg-n2,
  7859. .mx-lg-n2 {
  7860. margin-right: -0.5rem !important;
  7861. }
  7862. .mb-lg-n2,
  7863. .my-lg-n2 {
  7864. margin-bottom: -0.5rem !important;
  7865. }
  7866. .ml-lg-n2,
  7867. .mx-lg-n2 {
  7868. margin-left: -0.5rem !important;
  7869. }
  7870. .m-lg-n3 {
  7871. margin: -1rem !important;
  7872. }
  7873. .mt-lg-n3,
  7874. .my-lg-n3 {
  7875. margin-top: -1rem !important;
  7876. }
  7877. .mr-lg-n3,
  7878. .mx-lg-n3 {
  7879. margin-right: -1rem !important;
  7880. }
  7881. .mb-lg-n3,
  7882. .my-lg-n3 {
  7883. margin-bottom: -1rem !important;
  7884. }
  7885. .ml-lg-n3,
  7886. .mx-lg-n3 {
  7887. margin-left: -1rem !important;
  7888. }
  7889. .m-lg-n4 {
  7890. margin: -1.5rem !important;
  7891. }
  7892. .mt-lg-n4,
  7893. .my-lg-n4 {
  7894. margin-top: -1.5rem !important;
  7895. }
  7896. .mr-lg-n4,
  7897. .mx-lg-n4 {
  7898. margin-right: -1.5rem !important;
  7899. }
  7900. .mb-lg-n4,
  7901. .my-lg-n4 {
  7902. margin-bottom: -1.5rem !important;
  7903. }
  7904. .ml-lg-n4,
  7905. .mx-lg-n4 {
  7906. margin-left: -1.5rem !important;
  7907. }
  7908. .m-lg-n5 {
  7909. margin: -3rem !important;
  7910. }
  7911. .mt-lg-n5,
  7912. .my-lg-n5 {
  7913. margin-top: -3rem !important;
  7914. }
  7915. .mr-lg-n5,
  7916. .mx-lg-n5 {
  7917. margin-right: -3rem !important;
  7918. }
  7919. .mb-lg-n5,
  7920. .my-lg-n5 {
  7921. margin-bottom: -3rem !important;
  7922. }
  7923. .ml-lg-n5,
  7924. .mx-lg-n5 {
  7925. margin-left: -3rem !important;
  7926. }
  7927. .m-lg-auto {
  7928. margin: auto !important;
  7929. }
  7930. .mt-lg-auto,
  7931. .my-lg-auto {
  7932. margin-top: auto !important;
  7933. }
  7934. .mr-lg-auto,
  7935. .mx-lg-auto {
  7936. margin-right: auto !important;
  7937. }
  7938. .mb-lg-auto,
  7939. .my-lg-auto {
  7940. margin-bottom: auto !important;
  7941. }
  7942. .ml-lg-auto,
  7943. .mx-lg-auto {
  7944. margin-left: auto !important;
  7945. }
  7946. }
  7947. @media (min-width: 1200px) {
  7948. .m-xl-0 {
  7949. margin: 0 !important;
  7950. }
  7951. .mt-xl-0,
  7952. .my-xl-0 {
  7953. margin-top: 0 !important;
  7954. }
  7955. .mr-xl-0,
  7956. .mx-xl-0 {
  7957. margin-right: 0 !important;
  7958. }
  7959. .mb-xl-0,
  7960. .my-xl-0 {
  7961. margin-bottom: 0 !important;
  7962. }
  7963. .ml-xl-0,
  7964. .mx-xl-0 {
  7965. margin-left: 0 !important;
  7966. }
  7967. .m-xl-1 {
  7968. margin: 0.25rem !important;
  7969. }
  7970. .mt-xl-1,
  7971. .my-xl-1 {
  7972. margin-top: 0.25rem !important;
  7973. }
  7974. .mr-xl-1,
  7975. .mx-xl-1 {
  7976. margin-right: 0.25rem !important;
  7977. }
  7978. .mb-xl-1,
  7979. .my-xl-1 {
  7980. margin-bottom: 0.25rem !important;
  7981. }
  7982. .ml-xl-1,
  7983. .mx-xl-1 {
  7984. margin-left: 0.25rem !important;
  7985. }
  7986. .m-xl-2 {
  7987. margin: 0.5rem !important;
  7988. }
  7989. .mt-xl-2,
  7990. .my-xl-2 {
  7991. margin-top: 0.5rem !important;
  7992. }
  7993. .mr-xl-2,
  7994. .mx-xl-2 {
  7995. margin-right: 0.5rem !important;
  7996. }
  7997. .mb-xl-2,
  7998. .my-xl-2 {
  7999. margin-bottom: 0.5rem !important;
  8000. }
  8001. .ml-xl-2,
  8002. .mx-xl-2 {
  8003. margin-left: 0.5rem !important;
  8004. }
  8005. .m-xl-3 {
  8006. margin: 1rem !important;
  8007. }
  8008. .mt-xl-3,
  8009. .my-xl-3 {
  8010. margin-top: 1rem !important;
  8011. }
  8012. .mr-xl-3,
  8013. .mx-xl-3 {
  8014. margin-right: 1rem !important;
  8015. }
  8016. .mb-xl-3,
  8017. .my-xl-3 {
  8018. margin-bottom: 1rem !important;
  8019. }
  8020. .ml-xl-3,
  8021. .mx-xl-3 {
  8022. margin-left: 1rem !important;
  8023. }
  8024. .m-xl-4 {
  8025. margin: 1.5rem !important;
  8026. }
  8027. .mt-xl-4,
  8028. .my-xl-4 {
  8029. margin-top: 1.5rem !important;
  8030. }
  8031. .mr-xl-4,
  8032. .mx-xl-4 {
  8033. margin-right: 1.5rem !important;
  8034. }
  8035. .mb-xl-4,
  8036. .my-xl-4 {
  8037. margin-bottom: 1.5rem !important;
  8038. }
  8039. .ml-xl-4,
  8040. .mx-xl-4 {
  8041. margin-left: 1.5rem !important;
  8042. }
  8043. .m-xl-5 {
  8044. margin: 3rem !important;
  8045. }
  8046. .mt-xl-5,
  8047. .my-xl-5 {
  8048. margin-top: 3rem !important;
  8049. }
  8050. .mr-xl-5,
  8051. .mx-xl-5 {
  8052. margin-right: 3rem !important;
  8053. }
  8054. .mb-xl-5,
  8055. .my-xl-5 {
  8056. margin-bottom: 3rem !important;
  8057. }
  8058. .ml-xl-5,
  8059. .mx-xl-5 {
  8060. margin-left: 3rem !important;
  8061. }
  8062. .p-xl-0 {
  8063. padding: 0 !important;
  8064. }
  8065. .pt-xl-0,
  8066. .py-xl-0 {
  8067. padding-top: 0 !important;
  8068. }
  8069. .pr-xl-0,
  8070. .px-xl-0 {
  8071. padding-right: 0 !important;
  8072. }
  8073. .pb-xl-0,
  8074. .py-xl-0 {
  8075. padding-bottom: 0 !important;
  8076. }
  8077. .pl-xl-0,
  8078. .px-xl-0 {
  8079. padding-left: 0 !important;
  8080. }
  8081. .p-xl-1 {
  8082. padding: 0.25rem !important;
  8083. }
  8084. .pt-xl-1,
  8085. .py-xl-1 {
  8086. padding-top: 0.25rem !important;
  8087. }
  8088. .pr-xl-1,
  8089. .px-xl-1 {
  8090. padding-right: 0.25rem !important;
  8091. }
  8092. .pb-xl-1,
  8093. .py-xl-1 {
  8094. padding-bottom: 0.25rem !important;
  8095. }
  8096. .pl-xl-1,
  8097. .px-xl-1 {
  8098. padding-left: 0.25rem !important;
  8099. }
  8100. .p-xl-2 {
  8101. padding: 0.5rem !important;
  8102. }
  8103. .pt-xl-2,
  8104. .py-xl-2 {
  8105. padding-top: 0.5rem !important;
  8106. }
  8107. .pr-xl-2,
  8108. .px-xl-2 {
  8109. padding-right: 0.5rem !important;
  8110. }
  8111. .pb-xl-2,
  8112. .py-xl-2 {
  8113. padding-bottom: 0.5rem !important;
  8114. }
  8115. .pl-xl-2,
  8116. .px-xl-2 {
  8117. padding-left: 0.5rem !important;
  8118. }
  8119. .p-xl-3 {
  8120. padding: 1rem !important;
  8121. }
  8122. .pt-xl-3,
  8123. .py-xl-3 {
  8124. padding-top: 1rem !important;
  8125. }
  8126. .pr-xl-3,
  8127. .px-xl-3 {
  8128. padding-right: 1rem !important;
  8129. }
  8130. .pb-xl-3,
  8131. .py-xl-3 {
  8132. padding-bottom: 1rem !important;
  8133. }
  8134. .pl-xl-3,
  8135. .px-xl-3 {
  8136. padding-left: 1rem !important;
  8137. }
  8138. .p-xl-4 {
  8139. padding: 1.5rem !important;
  8140. }
  8141. .pt-xl-4,
  8142. .py-xl-4 {
  8143. padding-top: 1.5rem !important;
  8144. }
  8145. .pr-xl-4,
  8146. .px-xl-4 {
  8147. padding-right: 1.5rem !important;
  8148. }
  8149. .pb-xl-4,
  8150. .py-xl-4 {
  8151. padding-bottom: 1.5rem !important;
  8152. }
  8153. .pl-xl-4,
  8154. .px-xl-4 {
  8155. padding-left: 1.5rem !important;
  8156. }
  8157. .p-xl-5 {
  8158. padding: 3rem !important;
  8159. }
  8160. .pt-xl-5,
  8161. .py-xl-5 {
  8162. padding-top: 3rem !important;
  8163. }
  8164. .pr-xl-5,
  8165. .px-xl-5 {
  8166. padding-right: 3rem !important;
  8167. }
  8168. .pb-xl-5,
  8169. .py-xl-5 {
  8170. padding-bottom: 3rem !important;
  8171. }
  8172. .pl-xl-5,
  8173. .px-xl-5 {
  8174. padding-left: 3rem !important;
  8175. }
  8176. .m-xl-n1 {
  8177. margin: -0.25rem !important;
  8178. }
  8179. .mt-xl-n1,
  8180. .my-xl-n1 {
  8181. margin-top: -0.25rem !important;
  8182. }
  8183. .mr-xl-n1,
  8184. .mx-xl-n1 {
  8185. margin-right: -0.25rem !important;
  8186. }
  8187. .mb-xl-n1,
  8188. .my-xl-n1 {
  8189. margin-bottom: -0.25rem !important;
  8190. }
  8191. .ml-xl-n1,
  8192. .mx-xl-n1 {
  8193. margin-left: -0.25rem !important;
  8194. }
  8195. .m-xl-n2 {
  8196. margin: -0.5rem !important;
  8197. }
  8198. .mt-xl-n2,
  8199. .my-xl-n2 {
  8200. margin-top: -0.5rem !important;
  8201. }
  8202. .mr-xl-n2,
  8203. .mx-xl-n2 {
  8204. margin-right: -0.5rem !important;
  8205. }
  8206. .mb-xl-n2,
  8207. .my-xl-n2 {
  8208. margin-bottom: -0.5rem !important;
  8209. }
  8210. .ml-xl-n2,
  8211. .mx-xl-n2 {
  8212. margin-left: -0.5rem !important;
  8213. }
  8214. .m-xl-n3 {
  8215. margin: -1rem !important;
  8216. }
  8217. .mt-xl-n3,
  8218. .my-xl-n3 {
  8219. margin-top: -1rem !important;
  8220. }
  8221. .mr-xl-n3,
  8222. .mx-xl-n3 {
  8223. margin-right: -1rem !important;
  8224. }
  8225. .mb-xl-n3,
  8226. .my-xl-n3 {
  8227. margin-bottom: -1rem !important;
  8228. }
  8229. .ml-xl-n3,
  8230. .mx-xl-n3 {
  8231. margin-left: -1rem !important;
  8232. }
  8233. .m-xl-n4 {
  8234. margin: -1.5rem !important;
  8235. }
  8236. .mt-xl-n4,
  8237. .my-xl-n4 {
  8238. margin-top: -1.5rem !important;
  8239. }
  8240. .mr-xl-n4,
  8241. .mx-xl-n4 {
  8242. margin-right: -1.5rem !important;
  8243. }
  8244. .mb-xl-n4,
  8245. .my-xl-n4 {
  8246. margin-bottom: -1.5rem !important;
  8247. }
  8248. .ml-xl-n4,
  8249. .mx-xl-n4 {
  8250. margin-left: -1.5rem !important;
  8251. }
  8252. .m-xl-n5 {
  8253. margin: -3rem !important;
  8254. }
  8255. .mt-xl-n5,
  8256. .my-xl-n5 {
  8257. margin-top: -3rem !important;
  8258. }
  8259. .mr-xl-n5,
  8260. .mx-xl-n5 {
  8261. margin-right: -3rem !important;
  8262. }
  8263. .mb-xl-n5,
  8264. .my-xl-n5 {
  8265. margin-bottom: -3rem !important;
  8266. }
  8267. .ml-xl-n5,
  8268. .mx-xl-n5 {
  8269. margin-left: -3rem !important;
  8270. }
  8271. .m-xl-auto {
  8272. margin: auto !important;
  8273. }
  8274. .mt-xl-auto,
  8275. .my-xl-auto {
  8276. margin-top: auto !important;
  8277. }
  8278. .mr-xl-auto,
  8279. .mx-xl-auto {
  8280. margin-right: auto !important;
  8281. }
  8282. .mb-xl-auto,
  8283. .my-xl-auto {
  8284. margin-bottom: auto !important;
  8285. }
  8286. .ml-xl-auto,
  8287. .mx-xl-auto {
  8288. margin-left: auto !important;
  8289. }
  8290. }
  8291. .stretched-link::after {
  8292. position: absolute;
  8293. top: 0;
  8294. right: 0;
  8295. bottom: 0;
  8296. left: 0;
  8297. z-index: 1;
  8298. pointer-events: auto;
  8299. content: "";
  8300. background-color: rgba(0, 0, 0, 0);
  8301. }
  8302. .text-monospace {
  8303. font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
  8304. }
  8305. .text-justify {
  8306. text-align: justify !important;
  8307. }
  8308. .text-wrap {
  8309. white-space: normal !important;
  8310. }
  8311. .text-nowrap {
  8312. white-space: nowrap !important;
  8313. }
  8314. .text-truncate {
  8315. overflow: hidden;
  8316. text-overflow: ellipsis;
  8317. white-space: nowrap;
  8318. }
  8319. .text-left {
  8320. text-align: left !important;
  8321. }
  8322. .text-right {
  8323. text-align: right !important;
  8324. }
  8325. .text-center {
  8326. text-align: center !important;
  8327. }
  8328. @media (min-width: 576px) {
  8329. .text-sm-left {
  8330. text-align: left !important;
  8331. }
  8332. .text-sm-right {
  8333. text-align: right !important;
  8334. }
  8335. .text-sm-center {
  8336. text-align: center !important;
  8337. }
  8338. }
  8339. @media (min-width: 768px) {
  8340. .text-md-left {
  8341. text-align: left !important;
  8342. }
  8343. .text-md-right {
  8344. text-align: right !important;
  8345. }
  8346. .text-md-center {
  8347. text-align: center !important;
  8348. }
  8349. }
  8350. @media (min-width: 992px) {
  8351. .text-lg-left {
  8352. text-align: left !important;
  8353. }
  8354. .text-lg-right {
  8355. text-align: right !important;
  8356. }
  8357. .text-lg-center {
  8358. text-align: center !important;
  8359. }
  8360. }
  8361. @media (min-width: 1200px) {
  8362. .text-xl-left {
  8363. text-align: left !important;
  8364. }
  8365. .text-xl-right {
  8366. text-align: right !important;
  8367. }
  8368. .text-xl-center {
  8369. text-align: center !important;
  8370. }
  8371. }
  8372. .text-lowercase {
  8373. text-transform: lowercase !important;
  8374. }
  8375. .text-uppercase {
  8376. text-transform: uppercase !important;
  8377. }
  8378. .text-capitalize {
  8379. text-transform: capitalize !important;
  8380. }
  8381. .font-weight-light {
  8382. font-weight: 300 !important;
  8383. }
  8384. .font-weight-lighter {
  8385. font-weight: lighter !important;
  8386. }
  8387. .font-weight-normal {
  8388. font-weight: 400 !important;
  8389. }
  8390. .font-weight-bold {
  8391. font-weight: 700 !important;
  8392. }
  8393. .font-weight-bolder {
  8394. font-weight: bolder !important;
  8395. }
  8396. .font-italic {
  8397. font-style: italic !important;
  8398. }
  8399. .text-white {
  8400. color: #fff !important;
  8401. }
  8402. .text-primary {
  8403. color: #3490dc !important;
  8404. }
  8405. a.text-primary:hover, a.text-primary:focus {
  8406. color: #1d68a7 !important;
  8407. }
  8408. .text-secondary {
  8409. color: #6c757d !important;
  8410. }
  8411. a.text-secondary:hover, a.text-secondary:focus {
  8412. color: #494f54 !important;
  8413. }
  8414. .text-success {
  8415. color: #38c172 !important;
  8416. }
  8417. a.text-success:hover, a.text-success:focus {
  8418. color: #27864f !important;
  8419. }
  8420. .text-info {
  8421. color: #6cb2eb !important;
  8422. }
  8423. a.text-info:hover, a.text-info:focus {
  8424. color: #298fe2 !important;
  8425. }
  8426. .text-warning {
  8427. color: #ffed4a !important;
  8428. }
  8429. a.text-warning:hover, a.text-warning:focus {
  8430. color: #fde300 !important;
  8431. }
  8432. .text-danger {
  8433. color: #e3342f !important;
  8434. }
  8435. a.text-danger:hover, a.text-danger:focus {
  8436. color: #ae1c17 !important;
  8437. }
  8438. .text-light {
  8439. color: #f8f9fa !important;
  8440. }
  8441. a.text-light:hover, a.text-light:focus {
  8442. color: #cbd3da !important;
  8443. }
  8444. .text-dark {
  8445. color: #343a40 !important;
  8446. }
  8447. a.text-dark:hover, a.text-dark:focus {
  8448. color: #121416 !important;
  8449. }
  8450. .text-body {
  8451. color: #212529 !important;
  8452. }
  8453. .text-muted {
  8454. color: #6c757d !important;
  8455. }
  8456. .text-black-50 {
  8457. color: rgba(0, 0, 0, 0.5) !important;
  8458. }
  8459. .text-white-50 {
  8460. color: rgba(255, 255, 255, 0.5) !important;
  8461. }
  8462. .text-hide {
  8463. font: 0/0 a;
  8464. color: transparent;
  8465. text-shadow: none;
  8466. background-color: transparent;
  8467. border: 0;
  8468. }
  8469. .text-decoration-none {
  8470. text-decoration: none !important;
  8471. }
  8472. .text-break {
  8473. word-break: break-word !important;
  8474. word-wrap: break-word !important;
  8475. }
  8476. .text-reset {
  8477. color: inherit !important;
  8478. }
  8479. .visible {
  8480. visibility: visible !important;
  8481. }
  8482. .invisible {
  8483. visibility: hidden !important;
  8484. }
  8485. @media print {
  8486. *,
  8487. *::before,
  8488. *::after {
  8489. text-shadow: none !important;
  8490. box-shadow: none !important;
  8491. }
  8492. a:not(.btn) {
  8493. text-decoration: underline;
  8494. }
  8495. abbr[title]::after {
  8496. content: " (" attr(title) ")";
  8497. }
  8498. pre {
  8499. white-space: pre-wrap !important;
  8500. }
  8501. pre,
  8502. blockquote {
  8503. border: 1px solid #adb5bd;
  8504. page-break-inside: avoid;
  8505. }
  8506. thead {
  8507. display: table-header-group;
  8508. }
  8509. tr,
  8510. img {
  8511. page-break-inside: avoid;
  8512. }
  8513. p,
  8514. h2,
  8515. h3 {
  8516. orphans: 3;
  8517. widows: 3;
  8518. }
  8519. h2,
  8520. h3 {
  8521. page-break-after: avoid;
  8522. }
  8523. @page {
  8524. size: a3;
  8525. }
  8526. body {
  8527. min-width: 992px !important;
  8528. }
  8529. .container {
  8530. min-width: 992px !important;
  8531. }
  8532. .navbar {
  8533. display: none;
  8534. }
  8535. .badge {
  8536. border: 1px solid #000;
  8537. }
  8538. .table {
  8539. border-collapse: collapse !important;
  8540. }
  8541. .table td,
  8542. .table th {
  8543. background-color: #fff !important;
  8544. }
  8545. .table-bordered th,
  8546. .table-bordered td {
  8547. border: 1px solid #dee2e6 !important;
  8548. }
  8549. .table-dark {
  8550. color: inherit;
  8551. }
  8552. .table-dark th,
  8553. .table-dark td,
  8554. .table-dark thead th,
  8555. .table-dark tbody + tbody {
  8556. border-color: #dee2e6;
  8557. }
  8558. .table .thead-dark th {
  8559. color: inherit;
  8560. border-color: #dee2e6;
  8561. }
  8562. }
  8563. /* universal */
  8564. body {
  8565. font-family: Hiragino Sans GB, "Hiragino Sans GB", Helvetica, "Microsoft YaHei", Arial, sans-serif;
  8566. font-size: 14px;
  8567. }
  8568. /* header */
  8569. .navbar-static-top {
  8570. border-color: #e7e7e7;
  8571. background-color: #fff;
  8572. box-shadow: 0px 1px 11px 2px rgba(42, 42, 42, 0.1);
  8573. border-top: 4px solid #00b5ad;
  8574. border-bottom: 1px solid #e8e8e8;
  8575. margin-bottom: 40px;
  8576. margin-top: 0px;
  8577. }
  8578. /* Sticky footer styles */
  8579. html {
  8580. position: relative;
  8581. min-height: 100%;
  8582. }
  8583. body {
  8584. /* Margin bottom by footer height */
  8585. margin-bottom: 60px;
  8586. }
  8587. .footer {
  8588. position: absolute;
  8589. bottom: 0;
  8590. width: 100%;
  8591. /* Set the fixed height of the footer here */
  8592. height: 60px;
  8593. background-color: #000;
  8594. }
  8595. .footer .container {
  8596. padding-right: 15px;
  8597. padding-left: 15px;
  8598. }
  8599. .footer .container p {
  8600. margin: 19px 0;
  8601. color: #c1c1c1;
  8602. }
  8603. .footer .container p a {
  8604. color: inherit;
  8605. }