bootstrap.css 188 KB

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