bootstrap.css 194 KB

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