app.css 178 KB

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