app.css 178 KB

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