morph-bootstrap.css 225 KB

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