bootstrap.css 196 KB

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