bootstrap.css 192 KB

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