dashboard.css 217 KB

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