custom.css 197 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473
  1. a {
  2. color: var(--bs-success);
  3. text-decoration: none; }
  4. .wp-block-button__link {
  5. -webkit-border-radius: 2px;
  6. border-radius: 2px;
  7. -webkit-border-radius: 2px;
  8. border-radius: 2px;
  9. -webkit-box-shadow: none;
  10. -webkit-transition: background-color 0.2s ease-in-out;
  11. transition: background-color 0.2s ease-in-out;
  12. white-space: nowrap; }
  13. /*!
  14. * Bootstrap v5.0.0-beta1 (https://getbootstrap.com/)
  15. * Copyright 2011-2020 The Bootstrap Authors
  16. * Copyright 2011-2020 Twitter, Inc.
  17. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
  18. */
  19. :root {
  20. --bs-blue: #38537A;
  21. --bs-indigo: #343C70;
  22. --bs-purple: #6f42c1;
  23. --bs-pink: #d63384;
  24. --bs-red: #dc3545;
  25. --bs-orange: #fd7e14;
  26. --bs-yellow: #ffc107;
  27. --bs-green: #198754;
  28. --bs-teal: #20c997;
  29. --bs-cyan: #0dcaf0;
  30. --bs-white: #fff;
  31. --bs-gray: #6c757d;
  32. --bs-gray-dark: #343a40;
  33. --bs-primary: #325363;
  34. --bs-secondary: #343C70;
  35. --bs-success: #5177B0;
  36. --bs-info: #50A7AD;
  37. --bs-warning: #E0DC67;
  38. --bs-danger: #CC7C84;
  39. --bs-light: #f8f9fa;
  40. --bs-dark: #212529;
  41. --bs-font-sans-serif: "Lato", Helvetica, Arial, sans-serif;
  42. --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  43. --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)); }
  44. *,
  45. *::before,
  46. *::after {
  47. box-sizing: border-box; }
  48. @media (prefers-reduced-motion: no-preference) {
  49. :root {
  50. scroll-behavior: smooth; } }
  51. body {
  52. margin: 0;
  53. font-family: var(--bs-font-sans-serif);
  54. font-size: 1rem;
  55. font-weight: 400;
  56. line-height: 1.5;
  57. color: #212529;
  58. background-color: #fff;
  59. -webkit-text-size-adjust: 100%;
  60. -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  61. [tabindex="-1"]:focus:not(:focus-visible) {
  62. outline: 0 !important; }
  63. hr {
  64. margin: 1rem 0;
  65. color: inherit;
  66. background-color: currentColor;
  67. border: 0;
  68. opacity: 0.25; }
  69. hr:not([size]) {
  70. height: 1px; }
  71. h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  72. margin-top: 0;
  73. margin-bottom: 0.5rem;
  74. font-weight: 500;
  75. line-height: 1.2; }
  76. h1, .h1 {
  77. font-size: calc(1.375rem + 1.5vw); }
  78. @media (min-width: 1200px) {
  79. h1, .h1 {
  80. font-size: 2.5rem; } }
  81. h2, .h2 {
  82. font-size: calc(1.325rem + 0.9vw); }
  83. @media (min-width: 1200px) {
  84. h2, .h2 {
  85. font-size: 2rem; } }
  86. h3, .h3 {
  87. font-size: calc(1.3rem + 0.6vw); }
  88. @media (min-width: 1200px) {
  89. h3, .h3 {
  90. font-size: 1.75rem; } }
  91. h4, .h4 {
  92. font-size: calc(1.275rem + 0.3vw); }
  93. @media (min-width: 1200px) {
  94. h4, .h4 {
  95. font-size: 1.5rem; } }
  96. h5, .h5 {
  97. font-size: 1.25rem; }
  98. h6, .h6 {
  99. font-size: 1rem; }
  100. p {
  101. margin-top: 0;
  102. margin-bottom: 1rem; }
  103. abbr[title],
  104. abbr[data-bs-original-title] {
  105. text-decoration: underline;
  106. text-decoration: underline dotted;
  107. cursor: help;
  108. text-decoration-skip-ink: none; }
  109. address {
  110. margin-bottom: 1rem;
  111. font-style: normal;
  112. line-height: inherit; }
  113. ol,
  114. ul {
  115. padding-left: 2rem; }
  116. ol,
  117. ul,
  118. dl {
  119. margin-top: 0;
  120. margin-bottom: 1rem; }
  121. ol ol,
  122. ul ul,
  123. ol ul,
  124. ul ol {
  125. margin-bottom: 0; }
  126. dt {
  127. font-weight: 700; }
  128. dd {
  129. margin-bottom: .5rem;
  130. margin-left: 0; }
  131. blockquote {
  132. margin: 0 0 1rem; }
  133. b,
  134. strong {
  135. font-weight: bolder; }
  136. small, .small {
  137. font-size: 0.875em; }
  138. mark, .mark {
  139. padding: 0.2em;
  140. background-color: #fcf8e3; }
  141. sub,
  142. sup {
  143. position: relative;
  144. font-size: 0.75em;
  145. line-height: 0;
  146. vertical-align: baseline; }
  147. sub {
  148. bottom: -.25em; }
  149. sup {
  150. top: -.5em; }
  151. a {
  152. color: #325363;
  153. text-decoration: underline; }
  154. a:hover {
  155. color: #28424f; }
  156. a:not([href]):not([class]), a:not([href]):not([class]):hover {
  157. color: inherit;
  158. text-decoration: none; }
  159. pre,
  160. code,
  161. kbd,
  162. samp {
  163. font-family: var(--bs-font-monospace);
  164. font-size: 1em;
  165. direction: ltr /* rtl:ignore */;
  166. unicode-bidi: bidi-override; }
  167. pre {
  168. display: block;
  169. margin-top: 0;
  170. margin-bottom: 1rem;
  171. overflow: auto;
  172. font-size: 0.875em; }
  173. pre code {
  174. font-size: inherit;
  175. color: inherit;
  176. word-break: normal; }
  177. code {
  178. font-size: 0.875em;
  179. color: #d63384;
  180. word-wrap: break-word; }
  181. a > code {
  182. color: inherit; }
  183. kbd {
  184. padding: 0.2rem 0.4rem;
  185. font-size: 0.875em;
  186. color: #fff;
  187. background-color: #212529;
  188. border-radius: 0.2rem; }
  189. kbd kbd {
  190. padding: 0;
  191. font-size: 1em;
  192. font-weight: 700; }
  193. figure {
  194. margin: 0 0 1rem; }
  195. img,
  196. svg {
  197. vertical-align: middle; }
  198. table {
  199. caption-side: bottom;
  200. border-collapse: collapse; }
  201. caption {
  202. padding-top: 0.5rem;
  203. padding-bottom: 0.5rem;
  204. color: #6c757d;
  205. text-align: left; }
  206. th {
  207. text-align: inherit;
  208. text-align: -webkit-match-parent; }
  209. thead,
  210. tbody,
  211. tfoot,
  212. tr,
  213. td,
  214. th {
  215. border-color: inherit;
  216. border-style: solid;
  217. border-width: 0; }
  218. label {
  219. display: inline-block; }
  220. button {
  221. border-radius: 0; }
  222. button:focus {
  223. outline: dotted 1px;
  224. outline: -webkit-focus-ring-color auto 5px; }
  225. input,
  226. button,
  227. select,
  228. optgroup,
  229. textarea {
  230. margin: 0;
  231. font-family: inherit;
  232. font-size: inherit;
  233. line-height: inherit; }
  234. button,
  235. select {
  236. text-transform: none; }
  237. [role="button"] {
  238. cursor: pointer; }
  239. select {
  240. word-wrap: normal; }
  241. [list]::-webkit-calendar-picker-indicator {
  242. display: none; }
  243. button,
  244. [type="button"],
  245. [type="reset"],
  246. [type="submit"] {
  247. -webkit-appearance: button; }
  248. button:not(:disabled),
  249. [type="button"]:not(:disabled),
  250. [type="reset"]:not(:disabled),
  251. [type="submit"]:not(:disabled) {
  252. cursor: pointer; }
  253. ::-moz-focus-inner {
  254. padding: 0;
  255. border-style: none; }
  256. textarea {
  257. resize: vertical; }
  258. fieldset {
  259. min-width: 0;
  260. padding: 0;
  261. margin: 0;
  262. border: 0; }
  263. legend {
  264. float: left;
  265. width: 100%;
  266. padding: 0;
  267. margin-bottom: 0.5rem;
  268. font-size: calc(1.275rem + 0.3vw);
  269. line-height: inherit; }
  270. @media (min-width: 1200px) {
  271. legend {
  272. font-size: 1.5rem; } }
  273. legend + * {
  274. clear: left; }
  275. ::-webkit-datetime-edit-fields-wrapper,
  276. ::-webkit-datetime-edit-text,
  277. ::-webkit-datetime-edit-minute,
  278. ::-webkit-datetime-edit-hour-field,
  279. ::-webkit-datetime-edit-day-field,
  280. ::-webkit-datetime-edit-month-field,
  281. ::-webkit-datetime-edit-year-field {
  282. padding: 0; }
  283. ::-webkit-inner-spin-button {
  284. height: auto; }
  285. [type="search"] {
  286. outline-offset: -2px;
  287. -webkit-appearance: textfield; }
  288. /* rtl:raw:
  289. [type="tel"],
  290. [type="url"],
  291. [type="email"],
  292. [type="number"] {
  293. direction: ltr;
  294. }
  295. */
  296. ::-webkit-search-decoration {
  297. -webkit-appearance: none; }
  298. ::-webkit-color-swatch-wrapper {
  299. padding: 0; }
  300. ::file-selector-button {
  301. font: inherit; }
  302. ::-webkit-file-upload-button {
  303. font: inherit;
  304. -webkit-appearance: button; }
  305. output {
  306. display: inline-block; }
  307. iframe {
  308. border: 0; }
  309. summary {
  310. display: list-item;
  311. cursor: pointer; }
  312. progress {
  313. vertical-align: baseline; }
  314. [hidden] {
  315. display: none !important; }
  316. .lead {
  317. font-size: 1.25rem;
  318. font-weight: 300; }
  319. .display-1 {
  320. font-size: calc(1.625rem + 4.5vw);
  321. font-weight: 300;
  322. line-height: 1.2; }
  323. @media (min-width: 1200px) {
  324. .display-1 {
  325. font-size: 5rem; } }
  326. .display-2 {
  327. font-size: calc(1.575rem + 3.9vw);
  328. font-weight: 300;
  329. line-height: 1.2; }
  330. @media (min-width: 1200px) {
  331. .display-2 {
  332. font-size: 4.5rem; } }
  333. .display-3 {
  334. font-size: calc(1.525rem + 3.3vw);
  335. font-weight: 300;
  336. line-height: 1.2; }
  337. @media (min-width: 1200px) {
  338. .display-3 {
  339. font-size: 4rem; } }
  340. .display-4 {
  341. font-size: calc(1.475rem + 2.7vw);
  342. font-weight: 300;
  343. line-height: 1.2; }
  344. @media (min-width: 1200px) {
  345. .display-4 {
  346. font-size: 3.5rem; } }
  347. .display-5 {
  348. font-size: calc(1.425rem + 2.1vw);
  349. font-weight: 300;
  350. line-height: 1.2; }
  351. @media (min-width: 1200px) {
  352. .display-5 {
  353. font-size: 3rem; } }
  354. .display-6 {
  355. font-size: calc(1.375rem + 1.5vw);
  356. font-weight: 300;
  357. line-height: 1.2; }
  358. @media (min-width: 1200px) {
  359. .display-6 {
  360. font-size: 2.5rem; } }
  361. .list-unstyled {
  362. padding-left: 0;
  363. list-style: none; }
  364. .list-inline {
  365. padding-left: 0;
  366. list-style: none; }
  367. .list-inline-item {
  368. display: inline-block; }
  369. .list-inline-item:not(:last-child) {
  370. margin-right: 0.5rem; }
  371. .initialism {
  372. font-size: 0.875em;
  373. text-transform: uppercase; }
  374. .blockquote {
  375. margin-bottom: 1rem;
  376. font-size: 1.25rem; }
  377. .blockquote > :last-child {
  378. margin-bottom: 0; }
  379. .blockquote-footer {
  380. margin-top: -1rem;
  381. margin-bottom: 1rem;
  382. font-size: 0.875em;
  383. color: #6c757d; }
  384. .blockquote-footer::before {
  385. content: "\2014\00A0"; }
  386. .img-fluid {
  387. max-width: 100%;
  388. height: auto; }
  389. .img-thumbnail {
  390. padding: 0.25rem;
  391. background-color: #fff;
  392. border: 1px solid #dee2e6;
  393. border-radius: 0.25rem;
  394. max-width: 100%;
  395. height: auto; }
  396. .figure {
  397. display: inline-block; }
  398. .figure-img {
  399. margin-bottom: 0.5rem;
  400. line-height: 1; }
  401. .figure-caption {
  402. font-size: 0.875em;
  403. color: #6c757d; }
  404. .container,
  405. .container-fluid,
  406. .container-sm,
  407. .container-md,
  408. .container-lg,
  409. .container-xl,
  410. .container-xxl {
  411. width: 100%;
  412. padding-right: var(--bs-gutter-x, 0.75rem);
  413. padding-left: var(--bs-gutter-x, 0.75rem);
  414. margin-right: auto;
  415. margin-left: auto; }
  416. @media (min-width: 576px) {
  417. .container, .container-sm {
  418. max-width: 540px; } }
  419. @media (min-width: 768px) {
  420. .container, .container-sm, .container-md {
  421. max-width: 720px; } }
  422. @media (min-width: 992px) {
  423. .container, .container-sm, .container-md, .container-lg {
  424. max-width: 960px; } }
  425. @media (min-width: 1200px) {
  426. .container, .container-sm, .container-md, .container-lg, .container-xl {
  427. max-width: 1140px; } }
  428. @media (min-width: 1400px) {
  429. .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
  430. max-width: 1320px; } }
  431. .row {
  432. --bs-gutter-x: 1.5rem;
  433. --bs-gutter-y: 0;
  434. display: flex;
  435. flex-wrap: wrap;
  436. margin-top: calc(var(--bs-gutter-y) * -1);
  437. margin-right: calc(var(--bs-gutter-x) / -2);
  438. margin-left: calc(var(--bs-gutter-x) / -2); }
  439. .row > * {
  440. flex-shrink: 0;
  441. width: 100%;
  442. max-width: 100%;
  443. padding-right: calc(var(--bs-gutter-x) / 2);
  444. padding-left: calc(var(--bs-gutter-x) / 2);
  445. margin-top: var(--bs-gutter-y); }
  446. .col {
  447. flex: 1 0 0%; }
  448. .row-cols-auto > * {
  449. flex: 0 0 auto;
  450. width: auto; }
  451. .row-cols-1 > * {
  452. flex: 0 0 auto;
  453. width: 100%; }
  454. .row-cols-2 > * {
  455. flex: 0 0 auto;
  456. width: 50%; }
  457. .row-cols-3 > * {
  458. flex: 0 0 auto;
  459. width: 33.33333%; }
  460. .row-cols-4 > * {
  461. flex: 0 0 auto;
  462. width: 25%; }
  463. .row-cols-5 > * {
  464. flex: 0 0 auto;
  465. width: 20%; }
  466. .row-cols-6 > * {
  467. flex: 0 0 auto;
  468. width: 16.66667%; }
  469. .col-auto {
  470. flex: 0 0 auto;
  471. width: auto; }
  472. .col-1 {
  473. flex: 0 0 auto;
  474. width: 8.33333%; }
  475. .col-2 {
  476. flex: 0 0 auto;
  477. width: 16.66667%; }
  478. .col-3 {
  479. flex: 0 0 auto;
  480. width: 25%; }
  481. .col-4 {
  482. flex: 0 0 auto;
  483. width: 33.33333%; }
  484. .col-5 {
  485. flex: 0 0 auto;
  486. width: 41.66667%; }
  487. .col-6 {
  488. flex: 0 0 auto;
  489. width: 50%; }
  490. .col-7 {
  491. flex: 0 0 auto;
  492. width: 58.33333%; }
  493. .col-8 {
  494. flex: 0 0 auto;
  495. width: 66.66667%; }
  496. .col-9 {
  497. flex: 0 0 auto;
  498. width: 75%; }
  499. .col-10 {
  500. flex: 0 0 auto;
  501. width: 83.33333%; }
  502. .col-11 {
  503. flex: 0 0 auto;
  504. width: 91.66667%; }
  505. .col-12 {
  506. flex: 0 0 auto;
  507. width: 100%; }
  508. .offset-1 {
  509. margin-left: 8.33333%; }
  510. .offset-2 {
  511. margin-left: 16.66667%; }
  512. .offset-3 {
  513. margin-left: 25%; }
  514. .offset-4 {
  515. margin-left: 33.33333%; }
  516. .offset-5 {
  517. margin-left: 41.66667%; }
  518. .offset-6 {
  519. margin-left: 50%; }
  520. .offset-7 {
  521. margin-left: 58.33333%; }
  522. .offset-8 {
  523. margin-left: 66.66667%; }
  524. .offset-9 {
  525. margin-left: 75%; }
  526. .offset-10 {
  527. margin-left: 83.33333%; }
  528. .offset-11 {
  529. margin-left: 91.66667%; }
  530. .g-0,
  531. .gx-0 {
  532. --bs-gutter-x: 0; }
  533. .g-0,
  534. .gy-0 {
  535. --bs-gutter-y: 0; }
  536. .g-1,
  537. .gx-1 {
  538. --bs-gutter-x: 0.25rem; }
  539. .g-1,
  540. .gy-1 {
  541. --bs-gutter-y: 0.25rem; }
  542. .g-2,
  543. .gx-2 {
  544. --bs-gutter-x: 0.5rem; }
  545. .g-2,
  546. .gy-2 {
  547. --bs-gutter-y: 0.5rem; }
  548. .g-3,
  549. .gx-3 {
  550. --bs-gutter-x: 1rem; }
  551. .g-3,
  552. .gy-3 {
  553. --bs-gutter-y: 1rem; }
  554. .g-4,
  555. .gx-4 {
  556. --bs-gutter-x: 1.5rem; }
  557. .g-4,
  558. .gy-4 {
  559. --bs-gutter-y: 1.5rem; }
  560. .g-5,
  561. .gx-5 {
  562. --bs-gutter-x: 3rem; }
  563. .g-5,
  564. .gy-5 {
  565. --bs-gutter-y: 3rem; }
  566. @media (min-width: 576px) {
  567. .col-sm {
  568. flex: 1 0 0%; }
  569. .row-cols-sm-auto > * {
  570. flex: 0 0 auto;
  571. width: auto; }
  572. .row-cols-sm-1 > * {
  573. flex: 0 0 auto;
  574. width: 100%; }
  575. .row-cols-sm-2 > * {
  576. flex: 0 0 auto;
  577. width: 50%; }
  578. .row-cols-sm-3 > * {
  579. flex: 0 0 auto;
  580. width: 33.33333%; }
  581. .row-cols-sm-4 > * {
  582. flex: 0 0 auto;
  583. width: 25%; }
  584. .row-cols-sm-5 > * {
  585. flex: 0 0 auto;
  586. width: 20%; }
  587. .row-cols-sm-6 > * {
  588. flex: 0 0 auto;
  589. width: 16.66667%; }
  590. .col-sm-auto {
  591. flex: 0 0 auto;
  592. width: auto; }
  593. .col-sm-1 {
  594. flex: 0 0 auto;
  595. width: 8.33333%; }
  596. .col-sm-2 {
  597. flex: 0 0 auto;
  598. width: 16.66667%; }
  599. .col-sm-3 {
  600. flex: 0 0 auto;
  601. width: 25%; }
  602. .col-sm-4 {
  603. flex: 0 0 auto;
  604. width: 33.33333%; }
  605. .col-sm-5 {
  606. flex: 0 0 auto;
  607. width: 41.66667%; }
  608. .col-sm-6 {
  609. flex: 0 0 auto;
  610. width: 50%; }
  611. .col-sm-7 {
  612. flex: 0 0 auto;
  613. width: 58.33333%; }
  614. .col-sm-8 {
  615. flex: 0 0 auto;
  616. width: 66.66667%; }
  617. .col-sm-9 {
  618. flex: 0 0 auto;
  619. width: 75%; }
  620. .col-sm-10 {
  621. flex: 0 0 auto;
  622. width: 83.33333%; }
  623. .col-sm-11 {
  624. flex: 0 0 auto;
  625. width: 91.66667%; }
  626. .col-sm-12 {
  627. flex: 0 0 auto;
  628. width: 100%; }
  629. .offset-sm-0 {
  630. margin-left: 0; }
  631. .offset-sm-1 {
  632. margin-left: 8.33333%; }
  633. .offset-sm-2 {
  634. margin-left: 16.66667%; }
  635. .offset-sm-3 {
  636. margin-left: 25%; }
  637. .offset-sm-4 {
  638. margin-left: 33.33333%; }
  639. .offset-sm-5 {
  640. margin-left: 41.66667%; }
  641. .offset-sm-6 {
  642. margin-left: 50%; }
  643. .offset-sm-7 {
  644. margin-left: 58.33333%; }
  645. .offset-sm-8 {
  646. margin-left: 66.66667%; }
  647. .offset-sm-9 {
  648. margin-left: 75%; }
  649. .offset-sm-10 {
  650. margin-left: 83.33333%; }
  651. .offset-sm-11 {
  652. margin-left: 91.66667%; }
  653. .g-sm-0,
  654. .gx-sm-0 {
  655. --bs-gutter-x: 0; }
  656. .g-sm-0,
  657. .gy-sm-0 {
  658. --bs-gutter-y: 0; }
  659. .g-sm-1,
  660. .gx-sm-1 {
  661. --bs-gutter-x: 0.25rem; }
  662. .g-sm-1,
  663. .gy-sm-1 {
  664. --bs-gutter-y: 0.25rem; }
  665. .g-sm-2,
  666. .gx-sm-2 {
  667. --bs-gutter-x: 0.5rem; }
  668. .g-sm-2,
  669. .gy-sm-2 {
  670. --bs-gutter-y: 0.5rem; }
  671. .g-sm-3,
  672. .gx-sm-3 {
  673. --bs-gutter-x: 1rem; }
  674. .g-sm-3,
  675. .gy-sm-3 {
  676. --bs-gutter-y: 1rem; }
  677. .g-sm-4,
  678. .gx-sm-4 {
  679. --bs-gutter-x: 1.5rem; }
  680. .g-sm-4,
  681. .gy-sm-4 {
  682. --bs-gutter-y: 1.5rem; }
  683. .g-sm-5,
  684. .gx-sm-5 {
  685. --bs-gutter-x: 3rem; }
  686. .g-sm-5,
  687. .gy-sm-5 {
  688. --bs-gutter-y: 3rem; } }
  689. @media (min-width: 768px) {
  690. .col-md {
  691. flex: 1 0 0%; }
  692. .row-cols-md-auto > * {
  693. flex: 0 0 auto;
  694. width: auto; }
  695. .row-cols-md-1 > * {
  696. flex: 0 0 auto;
  697. width: 100%; }
  698. .row-cols-md-2 > * {
  699. flex: 0 0 auto;
  700. width: 50%; }
  701. .row-cols-md-3 > * {
  702. flex: 0 0 auto;
  703. width: 33.33333%; }
  704. .row-cols-md-4 > * {
  705. flex: 0 0 auto;
  706. width: 25%; }
  707. .row-cols-md-5 > * {
  708. flex: 0 0 auto;
  709. width: 20%; }
  710. .row-cols-md-6 > * {
  711. flex: 0 0 auto;
  712. width: 16.66667%; }
  713. .col-md-auto {
  714. flex: 0 0 auto;
  715. width: auto; }
  716. .col-md-1 {
  717. flex: 0 0 auto;
  718. width: 8.33333%; }
  719. .col-md-2 {
  720. flex: 0 0 auto;
  721. width: 16.66667%; }
  722. .col-md-3 {
  723. flex: 0 0 auto;
  724. width: 25%; }
  725. .col-md-4 {
  726. flex: 0 0 auto;
  727. width: 33.33333%; }
  728. .col-md-5 {
  729. flex: 0 0 auto;
  730. width: 41.66667%; }
  731. .col-md-6 {
  732. flex: 0 0 auto;
  733. width: 50%; }
  734. .col-md-7 {
  735. flex: 0 0 auto;
  736. width: 58.33333%; }
  737. .col-md-8 {
  738. flex: 0 0 auto;
  739. width: 66.66667%; }
  740. .col-md-9 {
  741. flex: 0 0 auto;
  742. width: 75%; }
  743. .col-md-10 {
  744. flex: 0 0 auto;
  745. width: 83.33333%; }
  746. .col-md-11 {
  747. flex: 0 0 auto;
  748. width: 91.66667%; }
  749. .col-md-12 {
  750. flex: 0 0 auto;
  751. width: 100%; }
  752. .offset-md-0 {
  753. margin-left: 0; }
  754. .offset-md-1 {
  755. margin-left: 8.33333%; }
  756. .offset-md-2 {
  757. margin-left: 16.66667%; }
  758. .offset-md-3 {
  759. margin-left: 25%; }
  760. .offset-md-4 {
  761. margin-left: 33.33333%; }
  762. .offset-md-5 {
  763. margin-left: 41.66667%; }
  764. .offset-md-6 {
  765. margin-left: 50%; }
  766. .offset-md-7 {
  767. margin-left: 58.33333%; }
  768. .offset-md-8 {
  769. margin-left: 66.66667%; }
  770. .offset-md-9 {
  771. margin-left: 75%; }
  772. .offset-md-10 {
  773. margin-left: 83.33333%; }
  774. .offset-md-11 {
  775. margin-left: 91.66667%; }
  776. .g-md-0,
  777. .gx-md-0 {
  778. --bs-gutter-x: 0; }
  779. .g-md-0,
  780. .gy-md-0 {
  781. --bs-gutter-y: 0; }
  782. .g-md-1,
  783. .gx-md-1 {
  784. --bs-gutter-x: 0.25rem; }
  785. .g-md-1,
  786. .gy-md-1 {
  787. --bs-gutter-y: 0.25rem; }
  788. .g-md-2,
  789. .gx-md-2 {
  790. --bs-gutter-x: 0.5rem; }
  791. .g-md-2,
  792. .gy-md-2 {
  793. --bs-gutter-y: 0.5rem; }
  794. .g-md-3,
  795. .gx-md-3 {
  796. --bs-gutter-x: 1rem; }
  797. .g-md-3,
  798. .gy-md-3 {
  799. --bs-gutter-y: 1rem; }
  800. .g-md-4,
  801. .gx-md-4 {
  802. --bs-gutter-x: 1.5rem; }
  803. .g-md-4,
  804. .gy-md-4 {
  805. --bs-gutter-y: 1.5rem; }
  806. .g-md-5,
  807. .gx-md-5 {
  808. --bs-gutter-x: 3rem; }
  809. .g-md-5,
  810. .gy-md-5 {
  811. --bs-gutter-y: 3rem; } }
  812. @media (min-width: 992px) {
  813. .col-lg {
  814. flex: 1 0 0%; }
  815. .row-cols-lg-auto > * {
  816. flex: 0 0 auto;
  817. width: auto; }
  818. .row-cols-lg-1 > * {
  819. flex: 0 0 auto;
  820. width: 100%; }
  821. .row-cols-lg-2 > * {
  822. flex: 0 0 auto;
  823. width: 50%; }
  824. .row-cols-lg-3 > * {
  825. flex: 0 0 auto;
  826. width: 33.33333%; }
  827. .row-cols-lg-4 > * {
  828. flex: 0 0 auto;
  829. width: 25%; }
  830. .row-cols-lg-5 > * {
  831. flex: 0 0 auto;
  832. width: 20%; }
  833. .row-cols-lg-6 > * {
  834. flex: 0 0 auto;
  835. width: 16.66667%; }
  836. .col-lg-auto {
  837. flex: 0 0 auto;
  838. width: auto; }
  839. .col-lg-1 {
  840. flex: 0 0 auto;
  841. width: 8.33333%; }
  842. .col-lg-2 {
  843. flex: 0 0 auto;
  844. width: 16.66667%; }
  845. .col-lg-3 {
  846. flex: 0 0 auto;
  847. width: 25%; }
  848. .col-lg-4 {
  849. flex: 0 0 auto;
  850. width: 33.33333%; }
  851. .col-lg-5 {
  852. flex: 0 0 auto;
  853. width: 41.66667%; }
  854. .col-lg-6 {
  855. flex: 0 0 auto;
  856. width: 50%; }
  857. .col-lg-7 {
  858. flex: 0 0 auto;
  859. width: 58.33333%; }
  860. .col-lg-8 {
  861. flex: 0 0 auto;
  862. width: 66.66667%; }
  863. .col-lg-9 {
  864. flex: 0 0 auto;
  865. width: 75%; }
  866. .col-lg-10 {
  867. flex: 0 0 auto;
  868. width: 83.33333%; }
  869. .col-lg-11 {
  870. flex: 0 0 auto;
  871. width: 91.66667%; }
  872. .col-lg-12 {
  873. flex: 0 0 auto;
  874. width: 100%; }
  875. .offset-lg-0 {
  876. margin-left: 0; }
  877. .offset-lg-1 {
  878. margin-left: 8.33333%; }
  879. .offset-lg-2 {
  880. margin-left: 16.66667%; }
  881. .offset-lg-3 {
  882. margin-left: 25%; }
  883. .offset-lg-4 {
  884. margin-left: 33.33333%; }
  885. .offset-lg-5 {
  886. margin-left: 41.66667%; }
  887. .offset-lg-6 {
  888. margin-left: 50%; }
  889. .offset-lg-7 {
  890. margin-left: 58.33333%; }
  891. .offset-lg-8 {
  892. margin-left: 66.66667%; }
  893. .offset-lg-9 {
  894. margin-left: 75%; }
  895. .offset-lg-10 {
  896. margin-left: 83.33333%; }
  897. .offset-lg-11 {
  898. margin-left: 91.66667%; }
  899. .g-lg-0,
  900. .gx-lg-0 {
  901. --bs-gutter-x: 0; }
  902. .g-lg-0,
  903. .gy-lg-0 {
  904. --bs-gutter-y: 0; }
  905. .g-lg-1,
  906. .gx-lg-1 {
  907. --bs-gutter-x: 0.25rem; }
  908. .g-lg-1,
  909. .gy-lg-1 {
  910. --bs-gutter-y: 0.25rem; }
  911. .g-lg-2,
  912. .gx-lg-2 {
  913. --bs-gutter-x: 0.5rem; }
  914. .g-lg-2,
  915. .gy-lg-2 {
  916. --bs-gutter-y: 0.5rem; }
  917. .g-lg-3,
  918. .gx-lg-3 {
  919. --bs-gutter-x: 1rem; }
  920. .g-lg-3,
  921. .gy-lg-3 {
  922. --bs-gutter-y: 1rem; }
  923. .g-lg-4,
  924. .gx-lg-4 {
  925. --bs-gutter-x: 1.5rem; }
  926. .g-lg-4,
  927. .gy-lg-4 {
  928. --bs-gutter-y: 1.5rem; }
  929. .g-lg-5,
  930. .gx-lg-5 {
  931. --bs-gutter-x: 3rem; }
  932. .g-lg-5,
  933. .gy-lg-5 {
  934. --bs-gutter-y: 3rem; } }
  935. @media (min-width: 1200px) {
  936. .col-xl {
  937. flex: 1 0 0%; }
  938. .row-cols-xl-auto > * {
  939. flex: 0 0 auto;
  940. width: auto; }
  941. .row-cols-xl-1 > * {
  942. flex: 0 0 auto;
  943. width: 100%; }
  944. .row-cols-xl-2 > * {
  945. flex: 0 0 auto;
  946. width: 50%; }
  947. .row-cols-xl-3 > * {
  948. flex: 0 0 auto;
  949. width: 33.33333%; }
  950. .row-cols-xl-4 > * {
  951. flex: 0 0 auto;
  952. width: 25%; }
  953. .row-cols-xl-5 > * {
  954. flex: 0 0 auto;
  955. width: 20%; }
  956. .row-cols-xl-6 > * {
  957. flex: 0 0 auto;
  958. width: 16.66667%; }
  959. .col-xl-auto {
  960. flex: 0 0 auto;
  961. width: auto; }
  962. .col-xl-1 {
  963. flex: 0 0 auto;
  964. width: 8.33333%; }
  965. .col-xl-2 {
  966. flex: 0 0 auto;
  967. width: 16.66667%; }
  968. .col-xl-3 {
  969. flex: 0 0 auto;
  970. width: 25%; }
  971. .col-xl-4 {
  972. flex: 0 0 auto;
  973. width: 33.33333%; }
  974. .col-xl-5 {
  975. flex: 0 0 auto;
  976. width: 41.66667%; }
  977. .col-xl-6 {
  978. flex: 0 0 auto;
  979. width: 50%; }
  980. .col-xl-7 {
  981. flex: 0 0 auto;
  982. width: 58.33333%; }
  983. .col-xl-8 {
  984. flex: 0 0 auto;
  985. width: 66.66667%; }
  986. .col-xl-9 {
  987. flex: 0 0 auto;
  988. width: 75%; }
  989. .col-xl-10 {
  990. flex: 0 0 auto;
  991. width: 83.33333%; }
  992. .col-xl-11 {
  993. flex: 0 0 auto;
  994. width: 91.66667%; }
  995. .col-xl-12 {
  996. flex: 0 0 auto;
  997. width: 100%; }
  998. .offset-xl-0 {
  999. margin-left: 0; }
  1000. .offset-xl-1 {
  1001. margin-left: 8.33333%; }
  1002. .offset-xl-2 {
  1003. margin-left: 16.66667%; }
  1004. .offset-xl-3 {
  1005. margin-left: 25%; }
  1006. .offset-xl-4 {
  1007. margin-left: 33.33333%; }
  1008. .offset-xl-5 {
  1009. margin-left: 41.66667%; }
  1010. .offset-xl-6 {
  1011. margin-left: 50%; }
  1012. .offset-xl-7 {
  1013. margin-left: 58.33333%; }
  1014. .offset-xl-8 {
  1015. margin-left: 66.66667%; }
  1016. .offset-xl-9 {
  1017. margin-left: 75%; }
  1018. .offset-xl-10 {
  1019. margin-left: 83.33333%; }
  1020. .offset-xl-11 {
  1021. margin-left: 91.66667%; }
  1022. .g-xl-0,
  1023. .gx-xl-0 {
  1024. --bs-gutter-x: 0; }
  1025. .g-xl-0,
  1026. .gy-xl-0 {
  1027. --bs-gutter-y: 0; }
  1028. .g-xl-1,
  1029. .gx-xl-1 {
  1030. --bs-gutter-x: 0.25rem; }
  1031. .g-xl-1,
  1032. .gy-xl-1 {
  1033. --bs-gutter-y: 0.25rem; }
  1034. .g-xl-2,
  1035. .gx-xl-2 {
  1036. --bs-gutter-x: 0.5rem; }
  1037. .g-xl-2,
  1038. .gy-xl-2 {
  1039. --bs-gutter-y: 0.5rem; }
  1040. .g-xl-3,
  1041. .gx-xl-3 {
  1042. --bs-gutter-x: 1rem; }
  1043. .g-xl-3,
  1044. .gy-xl-3 {
  1045. --bs-gutter-y: 1rem; }
  1046. .g-xl-4,
  1047. .gx-xl-4 {
  1048. --bs-gutter-x: 1.5rem; }
  1049. .g-xl-4,
  1050. .gy-xl-4 {
  1051. --bs-gutter-y: 1.5rem; }
  1052. .g-xl-5,
  1053. .gx-xl-5 {
  1054. --bs-gutter-x: 3rem; }
  1055. .g-xl-5,
  1056. .gy-xl-5 {
  1057. --bs-gutter-y: 3rem; } }
  1058. @media (min-width: 1400px) {
  1059. .col-xxl {
  1060. flex: 1 0 0%; }
  1061. .row-cols-xxl-auto > * {
  1062. flex: 0 0 auto;
  1063. width: auto; }
  1064. .row-cols-xxl-1 > * {
  1065. flex: 0 0 auto;
  1066. width: 100%; }
  1067. .row-cols-xxl-2 > * {
  1068. flex: 0 0 auto;
  1069. width: 50%; }
  1070. .row-cols-xxl-3 > * {
  1071. flex: 0 0 auto;
  1072. width: 33.33333%; }
  1073. .row-cols-xxl-4 > * {
  1074. flex: 0 0 auto;
  1075. width: 25%; }
  1076. .row-cols-xxl-5 > * {
  1077. flex: 0 0 auto;
  1078. width: 20%; }
  1079. .row-cols-xxl-6 > * {
  1080. flex: 0 0 auto;
  1081. width: 16.66667%; }
  1082. .col-xxl-auto {
  1083. flex: 0 0 auto;
  1084. width: auto; }
  1085. .col-xxl-1 {
  1086. flex: 0 0 auto;
  1087. width: 8.33333%; }
  1088. .col-xxl-2 {
  1089. flex: 0 0 auto;
  1090. width: 16.66667%; }
  1091. .col-xxl-3 {
  1092. flex: 0 0 auto;
  1093. width: 25%; }
  1094. .col-xxl-4 {
  1095. flex: 0 0 auto;
  1096. width: 33.33333%; }
  1097. .col-xxl-5 {
  1098. flex: 0 0 auto;
  1099. width: 41.66667%; }
  1100. .col-xxl-6 {
  1101. flex: 0 0 auto;
  1102. width: 50%; }
  1103. .col-xxl-7 {
  1104. flex: 0 0 auto;
  1105. width: 58.33333%; }
  1106. .col-xxl-8 {
  1107. flex: 0 0 auto;
  1108. width: 66.66667%; }
  1109. .col-xxl-9 {
  1110. flex: 0 0 auto;
  1111. width: 75%; }
  1112. .col-xxl-10 {
  1113. flex: 0 0 auto;
  1114. width: 83.33333%; }
  1115. .col-xxl-11 {
  1116. flex: 0 0 auto;
  1117. width: 91.66667%; }
  1118. .col-xxl-12 {
  1119. flex: 0 0 auto;
  1120. width: 100%; }
  1121. .offset-xxl-0 {
  1122. margin-left: 0; }
  1123. .offset-xxl-1 {
  1124. margin-left: 8.33333%; }
  1125. .offset-xxl-2 {
  1126. margin-left: 16.66667%; }
  1127. .offset-xxl-3 {
  1128. margin-left: 25%; }
  1129. .offset-xxl-4 {
  1130. margin-left: 33.33333%; }
  1131. .offset-xxl-5 {
  1132. margin-left: 41.66667%; }
  1133. .offset-xxl-6 {
  1134. margin-left: 50%; }
  1135. .offset-xxl-7 {
  1136. margin-left: 58.33333%; }
  1137. .offset-xxl-8 {
  1138. margin-left: 66.66667%; }
  1139. .offset-xxl-9 {
  1140. margin-left: 75%; }
  1141. .offset-xxl-10 {
  1142. margin-left: 83.33333%; }
  1143. .offset-xxl-11 {
  1144. margin-left: 91.66667%; }
  1145. .g-xxl-0,
  1146. .gx-xxl-0 {
  1147. --bs-gutter-x: 0; }
  1148. .g-xxl-0,
  1149. .gy-xxl-0 {
  1150. --bs-gutter-y: 0; }
  1151. .g-xxl-1,
  1152. .gx-xxl-1 {
  1153. --bs-gutter-x: 0.25rem; }
  1154. .g-xxl-1,
  1155. .gy-xxl-1 {
  1156. --bs-gutter-y: 0.25rem; }
  1157. .g-xxl-2,
  1158. .gx-xxl-2 {
  1159. --bs-gutter-x: 0.5rem; }
  1160. .g-xxl-2,
  1161. .gy-xxl-2 {
  1162. --bs-gutter-y: 0.5rem; }
  1163. .g-xxl-3,
  1164. .gx-xxl-3 {
  1165. --bs-gutter-x: 1rem; }
  1166. .g-xxl-3,
  1167. .gy-xxl-3 {
  1168. --bs-gutter-y: 1rem; }
  1169. .g-xxl-4,
  1170. .gx-xxl-4 {
  1171. --bs-gutter-x: 1.5rem; }
  1172. .g-xxl-4,
  1173. .gy-xxl-4 {
  1174. --bs-gutter-y: 1.5rem; }
  1175. .g-xxl-5,
  1176. .gx-xxl-5 {
  1177. --bs-gutter-x: 3rem; }
  1178. .g-xxl-5,
  1179. .gy-xxl-5 {
  1180. --bs-gutter-y: 3rem; } }
  1181. .table {
  1182. --bs-table-bg: transparent;
  1183. --bs-table-striped-color: #212529;
  1184. --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  1185. --bs-table-active-color: #212529;
  1186. --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  1187. --bs-table-hover-color: #212529;
  1188. --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  1189. width: 100%;
  1190. margin-bottom: 1rem;
  1191. color: #212529;
  1192. vertical-align: top;
  1193. border-color: #dee2e6; }
  1194. .table > :not(caption) > * > * {
  1195. padding: 0.5rem 0.5rem;
  1196. background-color: var(--bs-table-bg);
  1197. background-image: linear-gradient(var(--bs-table-accent-bg), var(--bs-table-accent-bg));
  1198. border-bottom-width: 1px; }
  1199. .table > tbody {
  1200. vertical-align: inherit; }
  1201. .table > thead {
  1202. vertical-align: bottom; }
  1203. .table > :not(:last-child) > :last-child > * {
  1204. border-bottom-color: currentColor; }
  1205. .caption-top {
  1206. caption-side: top; }
  1207. .table-sm > :not(caption) > * > * {
  1208. padding: 0.25rem 0.25rem; }
  1209. .table-bordered > :not(caption) > * {
  1210. border-width: 1px 0; }
  1211. .table-bordered > :not(caption) > * > * {
  1212. border-width: 0 1px; }
  1213. .table-borderless > :not(caption) > * > * {
  1214. border-bottom-width: 0; }
  1215. .table-striped > tbody > tr:nth-of-type(odd) {
  1216. --bs-table-accent-bg: var(--bs-table-striped-bg);
  1217. color: var(--bs-table-striped-color); }
  1218. .table-active {
  1219. --bs-table-accent-bg: var(--bs-table-active-bg);
  1220. color: var(--bs-table-active-color); }
  1221. .table-hover > tbody > tr:hover {
  1222. --bs-table-accent-bg: var(--bs-table-hover-bg);
  1223. color: var(--bs-table-hover-color); }
  1224. .table-primary {
  1225. --bs-table-bg: #d6dde0;
  1226. --bs-table-striped-bg: #cbd2d5;
  1227. --bs-table-striped-color: #000;
  1228. --bs-table-active-bg: #c1c7ca;
  1229. --bs-table-active-color: #000;
  1230. --bs-table-hover-bg: #c6cccf;
  1231. --bs-table-hover-color: #000;
  1232. color: #000;
  1233. border-color: #c1c7ca; }
  1234. .table-secondary {
  1235. --bs-table-bg: #d6d8e2;
  1236. --bs-table-striped-bg: #cbcdd7;
  1237. --bs-table-striped-color: #000;
  1238. --bs-table-active-bg: #c1c2cb;
  1239. --bs-table-active-color: #000;
  1240. --bs-table-hover-bg: #c6c8d1;
  1241. --bs-table-hover-color: #000;
  1242. color: #000;
  1243. border-color: #c1c2cb; }
  1244. .table-success {
  1245. --bs-table-bg: #dce4ef;
  1246. --bs-table-striped-bg: #d1d9e3;
  1247. --bs-table-striped-color: #000;
  1248. --bs-table-active-bg: #c6cdd7;
  1249. --bs-table-active-color: #000;
  1250. --bs-table-hover-bg: #ccd3dd;
  1251. --bs-table-hover-color: #000;
  1252. color: #000;
  1253. border-color: #c6cdd7; }
  1254. .table-info {
  1255. --bs-table-bg: #dcedef;
  1256. --bs-table-striped-bg: #d1e1e3;
  1257. --bs-table-striped-color: #000;
  1258. --bs-table-active-bg: #c6d5d7;
  1259. --bs-table-active-color: #000;
  1260. --bs-table-hover-bg: #ccdbdd;
  1261. --bs-table-hover-color: #000;
  1262. color: #000;
  1263. border-color: #c6d5d7; }
  1264. .table-warning {
  1265. --bs-table-bg: #f9f8e1;
  1266. --bs-table-striped-bg: #edecd6;
  1267. --bs-table-striped-color: #000;
  1268. --bs-table-active-bg: #e0dfcb;
  1269. --bs-table-active-color: #000;
  1270. --bs-table-hover-bg: #e6e5d0;
  1271. --bs-table-hover-color: #000;
  1272. color: #000;
  1273. border-color: #e0dfcb; }
  1274. .table-danger {
  1275. --bs-table-bg: #f5e5e6;
  1276. --bs-table-striped-bg: #e9dadb;
  1277. --bs-table-striped-color: #000;
  1278. --bs-table-active-bg: #ddcecf;
  1279. --bs-table-active-color: #000;
  1280. --bs-table-hover-bg: #e3d4d5;
  1281. --bs-table-hover-color: #000;
  1282. color: #000;
  1283. border-color: #ddcecf; }
  1284. .table-light {
  1285. --bs-table-bg: #f8f9fa;
  1286. --bs-table-striped-bg: #ecedee;
  1287. --bs-table-striped-color: #000;
  1288. --bs-table-active-bg: #dfe0e1;
  1289. --bs-table-active-color: #000;
  1290. --bs-table-hover-bg: #e5e6e7;
  1291. --bs-table-hover-color: #000;
  1292. color: #000;
  1293. border-color: #dfe0e1; }
  1294. .table-dark {
  1295. --bs-table-bg: #212529;
  1296. --bs-table-striped-bg: #2c3034;
  1297. --bs-table-striped-color: #fff;
  1298. --bs-table-active-bg: #373b3e;
  1299. --bs-table-active-color: #fff;
  1300. --bs-table-hover-bg: #323539;
  1301. --bs-table-hover-color: #fff;
  1302. color: #fff;
  1303. border-color: #373b3e; }
  1304. .table-responsive {
  1305. overflow-x: auto;
  1306. -webkit-overflow-scrolling: touch; }
  1307. @media (max-width: 575.98px) {
  1308. .table-responsive-sm {
  1309. overflow-x: auto;
  1310. -webkit-overflow-scrolling: touch; } }
  1311. @media (max-width: 767.98px) {
  1312. .table-responsive-md {
  1313. overflow-x: auto;
  1314. -webkit-overflow-scrolling: touch; } }
  1315. @media (max-width: 991.98px) {
  1316. .table-responsive-lg {
  1317. overflow-x: auto;
  1318. -webkit-overflow-scrolling: touch; } }
  1319. @media (max-width: 1199.98px) {
  1320. .table-responsive-xl {
  1321. overflow-x: auto;
  1322. -webkit-overflow-scrolling: touch; } }
  1323. @media (max-width: 1399.98px) {
  1324. .table-responsive-xxl {
  1325. overflow-x: auto;
  1326. -webkit-overflow-scrolling: touch; } }
  1327. .form-label {
  1328. margin-bottom: 0.5rem; }
  1329. .col-form-label {
  1330. padding-top: calc(0.375rem + 1px);
  1331. padding-bottom: calc(0.375rem + 1px);
  1332. margin-bottom: 0;
  1333. font-size: inherit;
  1334. line-height: 1.5; }
  1335. .col-form-label-lg {
  1336. padding-top: calc(0.5rem + 1px);
  1337. padding-bottom: calc(0.5rem + 1px);
  1338. font-size: 1.25rem; }
  1339. .col-form-label-sm {
  1340. padding-top: calc(0.25rem + 1px);
  1341. padding-bottom: calc(0.25rem + 1px);
  1342. font-size: 0.875rem; }
  1343. .form-text {
  1344. margin-top: 0.25rem;
  1345. font-size: 0.875em;
  1346. color: #6c757d; }
  1347. .form-control {
  1348. display: block;
  1349. width: 100%;
  1350. padding: 0.375rem 0.75rem;
  1351. font-size: 1rem;
  1352. font-weight: 400;
  1353. line-height: 1.5;
  1354. color: #212529;
  1355. background-color: #fff;
  1356. background-clip: padding-box;
  1357. border: 1px solid #ced4da;
  1358. appearance: none;
  1359. border-radius: 0.25rem;
  1360. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  1361. @media (prefers-reduced-motion: reduce) {
  1362. .form-control {
  1363. transition: none; } }
  1364. .form-control[type="file"] {
  1365. overflow: hidden; }
  1366. .form-control[type="file"]:not(:disabled):not([readonly]) {
  1367. cursor: pointer; }
  1368. .form-control:focus {
  1369. color: #212529;
  1370. background-color: #fff;
  1371. border-color: #99a9b1;
  1372. outline: 0;
  1373. box-shadow: 0 0 0 0.25rem rgba(50, 83, 99, 0.25); }
  1374. .form-control::-webkit-date-and-time-value {
  1375. height: 1.5em; }
  1376. .form-control::placeholder {
  1377. color: #6c757d;
  1378. opacity: 1; }
  1379. .form-control:disabled, .form-control[readonly] {
  1380. background-color: #e9ecef;
  1381. opacity: 1; }
  1382. .form-control::file-selector-button {
  1383. padding: 0.375rem 0.75rem;
  1384. margin: -0.375rem -0.75rem;
  1385. margin-inline-end: 0.75rem;
  1386. color: #212529;
  1387. background-color: #e9ecef;
  1388. pointer-events: none;
  1389. border-color: inherit;
  1390. border-style: solid;
  1391. border-width: 0;
  1392. border-inline-end-width: 1px;
  1393. border-radius: 0;
  1394. 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; }
  1395. @media (prefers-reduced-motion: reduce) {
  1396. .form-control::file-selector-button {
  1397. transition: none; } }
  1398. .form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  1399. background-color: #dde0e3; }
  1400. .form-control::-webkit-file-upload-button {
  1401. padding: 0.375rem 0.75rem;
  1402. margin: -0.375rem -0.75rem;
  1403. margin-inline-end: 0.75rem;
  1404. color: #212529;
  1405. background-color: #e9ecef;
  1406. pointer-events: none;
  1407. border-color: inherit;
  1408. border-style: solid;
  1409. border-width: 0;
  1410. border-inline-end-width: 1px;
  1411. border-radius: 0;
  1412. 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; }
  1413. @media (prefers-reduced-motion: reduce) {
  1414. .form-control::-webkit-file-upload-button {
  1415. transition: none; } }
  1416. .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  1417. background-color: #dde0e3; }
  1418. .form-control-plaintext {
  1419. display: block;
  1420. width: 100%;
  1421. padding: 0.375rem 0;
  1422. margin-bottom: 0;
  1423. line-height: 1.5;
  1424. color: #212529;
  1425. background-color: transparent;
  1426. border: solid transparent;
  1427. border-width: 1px 0; }
  1428. .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  1429. padding-right: 0;
  1430. padding-left: 0; }
  1431. .form-control-sm {
  1432. min-height: calc(1.5em + 0.5rem + 2px);
  1433. padding: 0.25rem 0.5rem;
  1434. font-size: 0.875rem;
  1435. border-radius: 0.2rem; }
  1436. .form-control-sm::file-selector-button {
  1437. padding: 0.25rem 0.5rem;
  1438. margin: -0.25rem -0.5rem;
  1439. margin-inline-end: 0.5rem; }
  1440. .form-control-sm::-webkit-file-upload-button {
  1441. padding: 0.25rem 0.5rem;
  1442. margin: -0.25rem -0.5rem;
  1443. margin-inline-end: 0.5rem; }
  1444. .form-control-lg {
  1445. min-height: calc(1.5em + 1rem + 2px);
  1446. padding: 0.5rem 1rem;
  1447. font-size: 1.25rem;
  1448. border-radius: 0.3rem; }
  1449. .form-control-lg::file-selector-button {
  1450. padding: 0.5rem 1rem;
  1451. margin: -0.5rem -1rem;
  1452. margin-inline-end: 1rem; }
  1453. .form-control-lg::-webkit-file-upload-button {
  1454. padding: 0.5rem 1rem;
  1455. margin: -0.5rem -1rem;
  1456. margin-inline-end: 1rem; }
  1457. textarea.form-control {
  1458. min-height: calc(1.5em + 0.75rem + 2px); }
  1459. textarea.form-control-sm {
  1460. min-height: calc(1.5em + 0.5rem + 2px); }
  1461. textarea.form-control-lg {
  1462. min-height: calc(1.5em + 1rem + 2px); }
  1463. .form-control-color {
  1464. max-width: 3rem;
  1465. height: auto;
  1466. padding: 0.375rem; }
  1467. .form-control-color:not(:disabled):not([readonly]) {
  1468. cursor: pointer; }
  1469. .form-control-color::-moz-color-swatch {
  1470. height: 1.5em;
  1471. border-radius: 0.25rem; }
  1472. .form-control-color::-webkit-color-swatch {
  1473. height: 1.5em;
  1474. border-radius: 0.25rem; }
  1475. .form-select {
  1476. display: block;
  1477. width: 100%;
  1478. padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  1479. font-size: 1rem;
  1480. font-weight: 400;
  1481. line-height: 1.5;
  1482. color: #212529;
  1483. vertical-align: middle;
  1484. background-color: #fff;
  1485. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  1486. background-repeat: no-repeat;
  1487. background-position: right 0.75rem center;
  1488. background-size: 16px 12px;
  1489. border: 1px solid #ced4da;
  1490. border-radius: 0.25rem;
  1491. appearance: none; }
  1492. .form-select:focus {
  1493. border-color: #99a9b1;
  1494. outline: 0;
  1495. box-shadow: 0 0 0 0.25rem rgba(50, 83, 99, 0.25); }
  1496. .form-select[multiple], .form-select[size]:not([size="1"]) {
  1497. padding-right: 0.75rem;
  1498. background-image: none; }
  1499. .form-select:disabled {
  1500. color: #6c757d;
  1501. background-color: #e9ecef; }
  1502. .form-select:-moz-focusring {
  1503. color: transparent;
  1504. text-shadow: 0 0 0 #212529; }
  1505. .form-select-sm {
  1506. padding-top: 0.25rem;
  1507. padding-bottom: 0.25rem;
  1508. padding-left: 0.5rem;
  1509. font-size: 0.875rem; }
  1510. .form-select-lg {
  1511. padding-top: 0.5rem;
  1512. padding-bottom: 0.5rem;
  1513. padding-left: 1rem;
  1514. font-size: 1.25rem; }
  1515. .form-check {
  1516. display: block;
  1517. min-height: 1.5rem;
  1518. padding-left: 1.5em;
  1519. margin-bottom: 0.125rem; }
  1520. .form-check .form-check-input {
  1521. float: left;
  1522. margin-left: -1.5em; }
  1523. .form-check-input {
  1524. width: 1em;
  1525. height: 1em;
  1526. margin-top: 0.25em;
  1527. vertical-align: top;
  1528. background-color: #fff;
  1529. background-repeat: no-repeat;
  1530. background-position: center;
  1531. background-size: contain;
  1532. border: 1px solid rgba(0, 0, 0, 0.25);
  1533. appearance: none;
  1534. color-adjust: exact;
  1535. transition: background-color 0.15s ease-in-out, background-position 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  1536. @media (prefers-reduced-motion: reduce) {
  1537. .form-check-input {
  1538. transition: none; } }
  1539. .form-check-input[type="checkbox"] {
  1540. border-radius: 0.25em; }
  1541. .form-check-input[type="radio"] {
  1542. border-radius: 50%; }
  1543. .form-check-input:active {
  1544. filter: brightness(90%); }
  1545. .form-check-input:focus {
  1546. border-color: #99a9b1;
  1547. outline: 0;
  1548. box-shadow: 0 0 0 0.25rem rgba(50, 83, 99, 0.25); }
  1549. .form-check-input:checked {
  1550. background-color: #325363;
  1551. border-color: #325363; }
  1552. .form-check-input:checked[type="checkbox"] {
  1553. 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"); }
  1554. .form-check-input:checked[type="radio"] {
  1555. 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"); }
  1556. .form-check-input[type="checkbox"]:indeterminate {
  1557. background-color: #325363;
  1558. border-color: #325363;
  1559. 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"); }
  1560. .form-check-input:disabled {
  1561. pointer-events: none;
  1562. filter: none;
  1563. opacity: 0.5; }
  1564. .form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  1565. opacity: 0.5; }
  1566. .form-switch {
  1567. padding-left: 2.5em; }
  1568. .form-switch .form-check-input {
  1569. width: 2em;
  1570. margin-left: -2.5em;
  1571. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  1572. background-position: left center;
  1573. border-radius: 2em; }
  1574. .form-switch .form-check-input:focus {
  1575. 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='%2399a9b1'/%3e%3c/svg%3e"); }
  1576. .form-switch .form-check-input:checked {
  1577. background-position: right center;
  1578. 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"); }
  1579. .form-check-inline {
  1580. display: inline-block;
  1581. margin-right: 1rem; }
  1582. .btn-check {
  1583. position: absolute;
  1584. clip: rect(0, 0, 0, 0);
  1585. pointer-events: none; }
  1586. .btn-check[disabled] + .btn, .is-style-bootstrap-primary > .btn-check[disabled] + a, .is-style-bootstrap-outline-primary > .btn-check[disabled] + a, .is-style-bootstrap-primary-lg > .btn-check[disabled] + a, .btn-check:disabled + .btn, .is-style-bootstrap-primary > .btn-check:disabled + a, .is-style-bootstrap-outline-primary > .btn-check:disabled + a, .is-style-bootstrap-primary-lg > .btn-check:disabled + a {
  1587. pointer-events: none;
  1588. filter: none;
  1589. opacity: 0.65; }
  1590. .form-range {
  1591. width: 100%;
  1592. height: 1.5rem;
  1593. padding: 0;
  1594. background-color: transparent;
  1595. appearance: none; }
  1596. .form-range:focus {
  1597. outline: none; }
  1598. .form-range:focus::-webkit-slider-thumb {
  1599. box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(50, 83, 99, 0.25); }
  1600. .form-range:focus::-moz-range-thumb {
  1601. box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(50, 83, 99, 0.25); }
  1602. .form-range::-moz-focus-outer {
  1603. border: 0; }
  1604. .form-range::-webkit-slider-thumb {
  1605. width: 1rem;
  1606. height: 1rem;
  1607. margin-top: -0.25rem;
  1608. background-color: #325363;
  1609. border: 0;
  1610. border-radius: 1rem;
  1611. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  1612. appearance: none; }
  1613. @media (prefers-reduced-motion: reduce) {
  1614. .form-range::-webkit-slider-thumb {
  1615. transition: none; } }
  1616. .form-range::-webkit-slider-thumb:active {
  1617. background-color: #c2cbd0; }
  1618. .form-range::-webkit-slider-runnable-track {
  1619. width: 100%;
  1620. height: 0.5rem;
  1621. color: transparent;
  1622. cursor: pointer;
  1623. background-color: #dee2e6;
  1624. border-color: transparent;
  1625. border-radius: 1rem; }
  1626. .form-range::-moz-range-thumb {
  1627. width: 1rem;
  1628. height: 1rem;
  1629. background-color: #325363;
  1630. border: 0;
  1631. border-radius: 1rem;
  1632. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  1633. appearance: none; }
  1634. @media (prefers-reduced-motion: reduce) {
  1635. .form-range::-moz-range-thumb {
  1636. transition: none; } }
  1637. .form-range::-moz-range-thumb:active {
  1638. background-color: #c2cbd0; }
  1639. .form-range::-moz-range-track {
  1640. width: 100%;
  1641. height: 0.5rem;
  1642. color: transparent;
  1643. cursor: pointer;
  1644. background-color: #dee2e6;
  1645. border-color: transparent;
  1646. border-radius: 1rem; }
  1647. .form-range:disabled {
  1648. pointer-events: none; }
  1649. .form-range:disabled::-webkit-slider-thumb {
  1650. background-color: #adb5bd; }
  1651. .form-range:disabled::-moz-range-thumb {
  1652. background-color: #adb5bd; }
  1653. .form-floating {
  1654. position: relative; }
  1655. .form-floating > .form-control,
  1656. .form-floating > .form-select {
  1657. height: calc(3.5rem + 2px);
  1658. padding: 1rem 0.75rem; }
  1659. .form-floating > label {
  1660. position: absolute;
  1661. top: 0;
  1662. left: 0;
  1663. height: 100%;
  1664. padding: 1rem 0.75rem;
  1665. pointer-events: none;
  1666. border: 1px solid transparent;
  1667. transform-origin: 0 0;
  1668. transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out; }
  1669. @media (prefers-reduced-motion: reduce) {
  1670. .form-floating > label {
  1671. transition: none; } }
  1672. .form-floating > .form-control::placeholder {
  1673. color: transparent; }
  1674. .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
  1675. padding-top: 1.625rem;
  1676. padding-bottom: 0.625rem; }
  1677. .form-floating > .form-control:-webkit-autofill {
  1678. padding-top: 1.625rem;
  1679. padding-bottom: 0.625rem; }
  1680. .form-floating > .form-select {
  1681. padding-top: 1.625rem;
  1682. padding-bottom: 0.625rem; }
  1683. .form-floating > .form-control:focus ~ label,
  1684. .form-floating > .form-control:not(:placeholder-shown) ~ label,
  1685. .form-floating > .form-select ~ label {
  1686. opacity: 0.65;
  1687. transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); }
  1688. .form-floating > .form-control:-webkit-autofill ~ label {
  1689. opacity: 0.65;
  1690. transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); }
  1691. .input-group {
  1692. position: relative;
  1693. display: flex;
  1694. flex-wrap: wrap;
  1695. align-items: stretch;
  1696. width: 100%; }
  1697. .input-group > .form-control,
  1698. .input-group > .form-select {
  1699. position: relative;
  1700. flex: 1 1 auto;
  1701. width: 1%;
  1702. min-width: 0; }
  1703. .input-group > .form-control:focus,
  1704. .input-group > .form-select:focus {
  1705. z-index: 3; }
  1706. .input-group .btn, .input-group .is-style-bootstrap-primary > a, .input-group .is-style-bootstrap-outline-primary > a, .input-group .is-style-bootstrap-primary-lg > a {
  1707. position: relative;
  1708. z-index: 2; }
  1709. .input-group .btn:focus, .input-group .is-style-bootstrap-primary > a:focus, .input-group .is-style-bootstrap-outline-primary > a:focus, .input-group .is-style-bootstrap-primary-lg > a:focus {
  1710. z-index: 3; }
  1711. .input-group-text {
  1712. display: flex;
  1713. align-items: center;
  1714. padding: 0.375rem 0.75rem;
  1715. font-size: 1rem;
  1716. font-weight: 400;
  1717. line-height: 1.5;
  1718. color: #212529;
  1719. text-align: center;
  1720. white-space: nowrap;
  1721. background-color: #e9ecef;
  1722. border: 1px solid #ced4da;
  1723. border-radius: 0.25rem; }
  1724. .input-group-lg > .form-control,
  1725. .input-group-lg > .form-select,
  1726. .input-group-lg > .input-group-text,
  1727. .input-group-lg > .btn,
  1728. .is-style-bootstrap-primary.input-group-lg > a,
  1729. .is-style-bootstrap-outline-primary.input-group-lg > a,
  1730. .is-style-bootstrap-primary-lg.input-group-lg > a {
  1731. padding: 0.5rem 1rem;
  1732. font-size: 1.25rem;
  1733. border-radius: 0.3rem; }
  1734. .input-group-sm > .form-control,
  1735. .input-group-sm > .form-select,
  1736. .input-group-sm > .input-group-text,
  1737. .input-group-sm > .btn,
  1738. .is-style-bootstrap-primary.input-group-sm > a,
  1739. .is-style-bootstrap-outline-primary.input-group-sm > a,
  1740. .is-style-bootstrap-primary-lg.input-group-sm > a {
  1741. padding: 0.25rem 0.5rem;
  1742. font-size: 0.875rem;
  1743. border-radius: 0.2rem; }
  1744. .input-group-lg > .form-select,
  1745. .input-group-sm > .form-select {
  1746. padding-right: 1.75rem; }
  1747. .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
  1748. .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3) {
  1749. border-top-right-radius: 0;
  1750. border-bottom-right-radius: 0; }
  1751. .input-group.has-validation > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu),
  1752. .input-group.has-validation > .dropdown-toggle:nth-last-child(n + 4) {
  1753. border-top-right-radius: 0;
  1754. border-bottom-right-radius: 0; }
  1755. .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  1756. margin-left: -1px;
  1757. border-top-left-radius: 0;
  1758. border-bottom-left-radius: 0; }
  1759. .valid-feedback {
  1760. display: none;
  1761. width: 100%;
  1762. margin-top: 0.25rem;
  1763. font-size: 0.875em;
  1764. color: #5177B0; }
  1765. .valid-tooltip {
  1766. position: absolute;
  1767. top: 100%;
  1768. z-index: 5;
  1769. display: none;
  1770. max-width: 100%;
  1771. padding: 0.25rem 0.5rem;
  1772. margin-top: .1rem;
  1773. font-size: 0.875rem;
  1774. color: #fff;
  1775. background-color: rgba(81, 119, 176, 0.9);
  1776. border-radius: 0.25rem; }
  1777. .was-validated :valid ~ .valid-feedback,
  1778. .was-validated :valid ~ .valid-tooltip,
  1779. .is-valid ~ .valid-feedback,
  1780. .is-valid ~ .valid-tooltip {
  1781. display: block; }
  1782. .was-validated .form-control:valid, .form-control.is-valid {
  1783. border-color: #5177B0;
  1784. padding-right: calc(1.5em + 0.75rem);
  1785. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%235177B0' 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");
  1786. background-repeat: no-repeat;
  1787. background-position: right calc(0.375em + 0.1875rem) center;
  1788. background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); }
  1789. .was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  1790. border-color: #5177B0;
  1791. box-shadow: 0 0 0 0.25rem rgba(81, 119, 176, 0.25); }
  1792. .was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  1793. padding-right: calc(1.5em + 0.75rem);
  1794. background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); }
  1795. .was-validated .form-select:valid, .form-select.is-valid {
  1796. border-color: #5177B0;
  1797. padding-right: calc(0.75em + 2.3125rem);
  1798. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%235177B0' 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");
  1799. background-position: right 0.75rem center, center right 1.75rem;
  1800. background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); }
  1801. .was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  1802. border-color: #5177B0;
  1803. box-shadow: 0 0 0 0.25rem rgba(81, 119, 176, 0.25); }
  1804. .was-validated .form-check-input:valid, .form-check-input.is-valid {
  1805. border-color: #5177B0; }
  1806. .was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  1807. background-color: #5177B0; }
  1808. .was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  1809. box-shadow: 0 0 0 0.25rem rgba(81, 119, 176, 0.25); }
  1810. .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  1811. color: #5177B0; }
  1812. .form-check-inline .form-check-input ~ .valid-feedback {
  1813. margin-left: .5em; }
  1814. .invalid-feedback {
  1815. display: none;
  1816. width: 100%;
  1817. margin-top: 0.25rem;
  1818. font-size: 0.875em;
  1819. color: #CC7C84; }
  1820. .invalid-tooltip {
  1821. position: absolute;
  1822. top: 100%;
  1823. z-index: 5;
  1824. display: none;
  1825. max-width: 100%;
  1826. padding: 0.25rem 0.5rem;
  1827. margin-top: .1rem;
  1828. font-size: 0.875rem;
  1829. color: #000;
  1830. background-color: rgba(204, 124, 132, 0.9);
  1831. border-radius: 0.25rem; }
  1832. .was-validated :invalid ~ .invalid-feedback,
  1833. .was-validated :invalid ~ .invalid-tooltip,
  1834. .is-invalid ~ .invalid-feedback,
  1835. .is-invalid ~ .invalid-tooltip {
  1836. display: block; }
  1837. .was-validated .form-control:invalid, .form-control.is-invalid {
  1838. border-color: #CC7C84;
  1839. padding-right: calc(1.5em + 0.75rem);
  1840. 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='%23CC7C84'%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='%23CC7C84' stroke='none'/%3e%3c/svg%3e");
  1841. background-repeat: no-repeat;
  1842. background-position: right calc(0.375em + 0.1875rem) center;
  1843. background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); }
  1844. .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  1845. border-color: #CC7C84;
  1846. box-shadow: 0 0 0 0.25rem rgba(204, 124, 132, 0.25); }
  1847. .was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  1848. padding-right: calc(1.5em + 0.75rem);
  1849. background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); }
  1850. .was-validated .form-select:invalid, .form-select.is-invalid {
  1851. border-color: #CC7C84;
  1852. padding-right: calc(0.75em + 2.3125rem);
  1853. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23CC7C84'%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='%23CC7C84' stroke='none'/%3e%3c/svg%3e");
  1854. background-position: right 0.75rem center, center right 1.75rem;
  1855. background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); }
  1856. .was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  1857. border-color: #CC7C84;
  1858. box-shadow: 0 0 0 0.25rem rgba(204, 124, 132, 0.25); }
  1859. .was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  1860. border-color: #CC7C84; }
  1861. .was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  1862. background-color: #CC7C84; }
  1863. .was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  1864. box-shadow: 0 0 0 0.25rem rgba(204, 124, 132, 0.25); }
  1865. .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  1866. color: #CC7C84; }
  1867. .form-check-inline .form-check-input ~ .invalid-feedback {
  1868. margin-left: .5em; }
  1869. .btn, .is-style-bootstrap-primary > a, .is-style-bootstrap-outline-primary > a, .is-style-bootstrap-primary-lg > a {
  1870. display: inline-block;
  1871. font-weight: 400;
  1872. line-height: 1.5;
  1873. color: #212529;
  1874. text-align: center;
  1875. text-decoration: none;
  1876. vertical-align: middle;
  1877. cursor: pointer;
  1878. user-select: none;
  1879. background-color: transparent;
  1880. border: 1px solid transparent;
  1881. padding: 0.375rem 0.75rem;
  1882. font-size: 1rem;
  1883. border-radius: 0.25rem;
  1884. 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; }
  1885. @media (prefers-reduced-motion: reduce) {
  1886. .btn, .is-style-bootstrap-primary > a, .is-style-bootstrap-outline-primary > a, .is-style-bootstrap-primary-lg > a {
  1887. transition: none; } }
  1888. .btn:hover, .is-style-bootstrap-primary > a:hover, .is-style-bootstrap-outline-primary > a:hover, .is-style-bootstrap-primary-lg > a:hover {
  1889. color: #212529; }
  1890. .btn-check:focus + .btn, .is-style-bootstrap-primary > .btn-check:focus + a, .is-style-bootstrap-outline-primary > .btn-check:focus + a, .is-style-bootstrap-primary-lg > .btn-check:focus + a, .btn:focus, .is-style-bootstrap-primary > a:focus, .is-style-bootstrap-outline-primary > a:focus, .is-style-bootstrap-primary-lg > a:focus {
  1891. outline: 0;
  1892. box-shadow: 0 0 0 0.25rem rgba(50, 83, 99, 0.25); }
  1893. .btn:disabled, .is-style-bootstrap-primary > a:disabled, .is-style-bootstrap-outline-primary > a:disabled, .is-style-bootstrap-primary-lg > a:disabled, .btn.disabled, .is-style-bootstrap-primary > a.disabled, .is-style-bootstrap-outline-primary > a.disabled, .is-style-bootstrap-primary-lg > a.disabled,
  1894. fieldset:disabled .btn,
  1895. fieldset:disabled .is-style-bootstrap-primary > a,
  1896. fieldset:disabled .is-style-bootstrap-outline-primary > a,
  1897. fieldset:disabled .is-style-bootstrap-primary-lg > a {
  1898. pointer-events: none;
  1899. opacity: 0.65; }
  1900. .btn-primary, .is-style-bootstrap-primary > a {
  1901. color: #fff;
  1902. background-color: #325363;
  1903. border-color: #325363; }
  1904. .btn-primary:hover, .is-style-bootstrap-primary > a:hover {
  1905. color: #fff;
  1906. background-color: #2b4754;
  1907. border-color: #28424f; }
  1908. .btn-check:focus + .btn-primary, .is-style-bootstrap-primary > .btn-check:focus + a, .btn-primary:focus, .is-style-bootstrap-primary > a:focus {
  1909. color: #fff;
  1910. background-color: #2b4754;
  1911. border-color: #28424f;
  1912. box-shadow: 0 0 0 0.25rem rgba(81, 109, 122, 0.5); }
  1913. .btn-check:checked + .btn-primary, .is-style-bootstrap-primary > .btn-check:checked + a,
  1914. .btn-check:active + .btn-primary,
  1915. .is-style-bootstrap-primary > .btn-check:active + a, .btn-primary:active, .is-style-bootstrap-primary > a:active, .btn-primary.active, .is-style-bootstrap-primary > a.active,
  1916. .show > .btn-primary.dropdown-toggle,
  1917. .is-style-bootstrap-primary.show > a.dropdown-toggle {
  1918. color: #fff;
  1919. background-color: #28424f;
  1920. border-color: #263e4a; }
  1921. .btn-check:checked + .btn-primary:focus, .is-style-bootstrap-primary > .btn-check:checked + a:focus,
  1922. .btn-check:active + .btn-primary:focus,
  1923. .is-style-bootstrap-primary > .btn-check:active + a:focus, .btn-primary:active:focus, .is-style-bootstrap-primary > a:active:focus, .btn-primary.active:focus, .is-style-bootstrap-primary > a.active:focus,
  1924. .show > .btn-primary.dropdown-toggle:focus,
  1925. .is-style-bootstrap-primary.show > a.dropdown-toggle:focus {
  1926. box-shadow: 0 0 0 0.25rem rgba(81, 109, 122, 0.5); }
  1927. .btn-primary:disabled, .is-style-bootstrap-primary > a:disabled, .btn-primary.disabled, .is-style-bootstrap-primary > a.disabled {
  1928. color: #fff;
  1929. background-color: #325363;
  1930. border-color: #325363; }
  1931. .btn-secondary {
  1932. color: #fff;
  1933. background-color: #343C70;
  1934. border-color: #343C70; }
  1935. .btn-secondary:hover {
  1936. color: #fff;
  1937. background-color: #2c335f;
  1938. border-color: #2a305a; }
  1939. .btn-check:focus + .btn-secondary, .btn-secondary:focus {
  1940. color: #fff;
  1941. background-color: #2c335f;
  1942. border-color: #2a305a;
  1943. box-shadow: 0 0 0 0.25rem rgba(82, 89, 133, 0.5); }
  1944. .btn-check:checked + .btn-secondary,
  1945. .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active,
  1946. .show > .btn-secondary.dropdown-toggle {
  1947. color: #fff;
  1948. background-color: #2a305a;
  1949. border-color: #272d54; }
  1950. .btn-check:checked + .btn-secondary:focus,
  1951. .btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus,
  1952. .show > .btn-secondary.dropdown-toggle:focus {
  1953. box-shadow: 0 0 0 0.25rem rgba(82, 89, 133, 0.5); }
  1954. .btn-secondary:disabled, .btn-secondary.disabled {
  1955. color: #fff;
  1956. background-color: #343C70;
  1957. border-color: #343C70; }
  1958. .btn-success {
  1959. color: #fff;
  1960. background-color: #5177B0;
  1961. border-color: #5177B0; }
  1962. .btn-success:hover {
  1963. color: #fff;
  1964. background-color: #456596;
  1965. border-color: #415f8d; }
  1966. .btn-check:focus + .btn-success, .btn-success:focus {
  1967. color: #fff;
  1968. background-color: #456596;
  1969. border-color: #415f8d;
  1970. box-shadow: 0 0 0 0.25rem rgba(107, 139, 188, 0.5); }
  1971. .btn-check:checked + .btn-success,
  1972. .btn-check:active + .btn-success, .btn-success:active, .btn-success.active,
  1973. .show > .btn-success.dropdown-toggle {
  1974. color: #fff;
  1975. background-color: #415f8d;
  1976. border-color: #3d5984; }
  1977. .btn-check:checked + .btn-success:focus,
  1978. .btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus,
  1979. .show > .btn-success.dropdown-toggle:focus {
  1980. box-shadow: 0 0 0 0.25rem rgba(107, 139, 188, 0.5); }
  1981. .btn-success:disabled, .btn-success.disabled {
  1982. color: #fff;
  1983. background-color: #5177B0;
  1984. border-color: #5177B0; }
  1985. .btn-info {
  1986. color: #000;
  1987. background-color: #50A7AD;
  1988. border-color: #50A7AD; }
  1989. .btn-info:hover {
  1990. color: #000;
  1991. background-color: #6ab4b9;
  1992. border-color: #62b0b5; }
  1993. .btn-check:focus + .btn-info, .btn-info:focus {
  1994. color: #000;
  1995. background-color: #6ab4b9;
  1996. border-color: #62b0b5;
  1997. box-shadow: 0 0 0 0.25rem rgba(68, 142, 147, 0.5); }
  1998. .btn-check:checked + .btn-info,
  1999. .btn-check:active + .btn-info, .btn-info:active, .btn-info.active,
  2000. .show > .btn-info.dropdown-toggle {
  2001. color: #000;
  2002. background-color: #73b9bd;
  2003. border-color: #62b0b5; }
  2004. .btn-check:checked + .btn-info:focus,
  2005. .btn-check:active + .btn-info:focus, .btn-info:active:focus, .btn-info.active:focus,
  2006. .show > .btn-info.dropdown-toggle:focus {
  2007. box-shadow: 0 0 0 0.25rem rgba(68, 142, 147, 0.5); }
  2008. .btn-info:disabled, .btn-info.disabled {
  2009. color: #000;
  2010. background-color: #50A7AD;
  2011. border-color: #50A7AD; }
  2012. .btn-warning {
  2013. color: #000;
  2014. background-color: #E0DC67;
  2015. border-color: #E0DC67; }
  2016. .btn-warning:hover {
  2017. color: #000;
  2018. background-color: #e5e17e;
  2019. border-color: #e3e076; }
  2020. .btn-check:focus + .btn-warning, .btn-warning:focus {
  2021. color: #000;
  2022. background-color: #e5e17e;
  2023. border-color: #e3e076;
  2024. box-shadow: 0 0 0 0.25rem rgba(190, 187, 88, 0.5); }
  2025. .btn-check:checked + .btn-warning,
  2026. .btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active,
  2027. .show > .btn-warning.dropdown-toggle {
  2028. color: #000;
  2029. background-color: #e6e385;
  2030. border-color: #e3e076; }
  2031. .btn-check:checked + .btn-warning:focus,
  2032. .btn-check:active + .btn-warning:focus, .btn-warning:active:focus, .btn-warning.active:focus,
  2033. .show > .btn-warning.dropdown-toggle:focus {
  2034. box-shadow: 0 0 0 0.25rem rgba(190, 187, 88, 0.5); }
  2035. .btn-warning:disabled, .btn-warning.disabled {
  2036. color: #000;
  2037. background-color: #E0DC67;
  2038. border-color: #E0DC67; }
  2039. .btn-danger {
  2040. color: #000;
  2041. background-color: #CC7C84;
  2042. border-color: #CC7C84; }
  2043. .btn-danger:hover {
  2044. color: #000;
  2045. background-color: #d49096;
  2046. border-color: #d18990; }
  2047. .btn-check:focus + .btn-danger, .btn-danger:focus {
  2048. color: #000;
  2049. background-color: #d49096;
  2050. border-color: #d18990;
  2051. box-shadow: 0 0 0 0.25rem rgba(173, 105, 112, 0.5); }
  2052. .btn-check:checked + .btn-danger,
  2053. .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active,
  2054. .show > .btn-danger.dropdown-toggle {
  2055. color: #000;
  2056. background-color: #d6969d;
  2057. border-color: #d18990; }
  2058. .btn-check:checked + .btn-danger:focus,
  2059. .btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus,
  2060. .show > .btn-danger.dropdown-toggle:focus {
  2061. box-shadow: 0 0 0 0.25rem rgba(173, 105, 112, 0.5); }
  2062. .btn-danger:disabled, .btn-danger.disabled {
  2063. color: #000;
  2064. background-color: #CC7C84;
  2065. border-color: #CC7C84; }
  2066. .btn-light {
  2067. color: #000;
  2068. background-color: #f8f9fa;
  2069. border-color: #f8f9fa; }
  2070. .btn-light:hover {
  2071. color: #000;
  2072. background-color: #f9fafb;
  2073. border-color: #f9fafb; }
  2074. .btn-check:focus + .btn-light, .btn-light:focus {
  2075. color: #000;
  2076. background-color: #f9fafb;
  2077. border-color: #f9fafb;
  2078. box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5); }
  2079. .btn-check:checked + .btn-light,
  2080. .btn-check:active + .btn-light, .btn-light:active, .btn-light.active,
  2081. .show > .btn-light.dropdown-toggle {
  2082. color: #000;
  2083. background-color: #f9fafb;
  2084. border-color: #f9fafb; }
  2085. .btn-check:checked + .btn-light:focus,
  2086. .btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus,
  2087. .show > .btn-light.dropdown-toggle:focus {
  2088. box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5); }
  2089. .btn-light:disabled, .btn-light.disabled {
  2090. color: #000;
  2091. background-color: #f8f9fa;
  2092. border-color: #f8f9fa; }
  2093. .btn-dark {
  2094. color: #fff;
  2095. background-color: #212529;
  2096. border-color: #212529; }
  2097. .btn-dark:hover {
  2098. color: #fff;
  2099. background-color: #1c1f23;
  2100. border-color: #1a1e21; }
  2101. .btn-check:focus + .btn-dark, .btn-dark:focus {
  2102. color: #fff;
  2103. background-color: #1c1f23;
  2104. border-color: #1a1e21;
  2105. box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5); }
  2106. .btn-check:checked + .btn-dark,
  2107. .btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active,
  2108. .show > .btn-dark.dropdown-toggle {
  2109. color: #fff;
  2110. background-color: #1a1e21;
  2111. border-color: #191c1f; }
  2112. .btn-check:checked + .btn-dark:focus,
  2113. .btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus,
  2114. .show > .btn-dark.dropdown-toggle:focus {
  2115. box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5); }
  2116. .btn-dark:disabled, .btn-dark.disabled {
  2117. color: #fff;
  2118. background-color: #212529;
  2119. border-color: #212529; }
  2120. .btn-outline-primary, .is-style-bootstrap-outline-primary > a, .is-style-bootstrap-primary-lg > a {
  2121. color: #325363;
  2122. border-color: #325363; }
  2123. .btn-outline-primary:hover, .is-style-bootstrap-outline-primary > a:hover, .is-style-bootstrap-primary-lg > a:hover {
  2124. color: #fff;
  2125. background-color: #325363;
  2126. border-color: #325363; }
  2127. .btn-check:focus + .btn-outline-primary, .is-style-bootstrap-outline-primary > .btn-check:focus + a, .is-style-bootstrap-primary-lg > .btn-check:focus + a, .btn-outline-primary:focus, .is-style-bootstrap-outline-primary > a:focus, .is-style-bootstrap-primary-lg > a:focus {
  2128. box-shadow: 0 0 0 0.25rem rgba(50, 83, 99, 0.5); }
  2129. .btn-check:checked + .btn-outline-primary, .is-style-bootstrap-outline-primary > .btn-check:checked + a, .is-style-bootstrap-primary-lg > .btn-check:checked + a,
  2130. .btn-check:active + .btn-outline-primary,
  2131. .is-style-bootstrap-outline-primary > .btn-check:active + a,
  2132. .is-style-bootstrap-primary-lg > .btn-check:active + a, .btn-outline-primary:active, .is-style-bootstrap-outline-primary > a:active, .is-style-bootstrap-primary-lg > a:active, .btn-outline-primary.active, .is-style-bootstrap-outline-primary > a.active, .is-style-bootstrap-primary-lg > a.active, .btn-outline-primary.dropdown-toggle.show, .is-style-bootstrap-outline-primary > a.dropdown-toggle.show, .is-style-bootstrap-primary-lg > a.dropdown-toggle.show {
  2133. color: #fff;
  2134. background-color: #325363;
  2135. border-color: #325363; }
  2136. .btn-check:checked + .btn-outline-primary:focus, .is-style-bootstrap-outline-primary > .btn-check:checked + a:focus, .is-style-bootstrap-primary-lg > .btn-check:checked + a:focus,
  2137. .btn-check:active + .btn-outline-primary:focus,
  2138. .is-style-bootstrap-outline-primary > .btn-check:active + a:focus,
  2139. .is-style-bootstrap-primary-lg > .btn-check:active + a:focus, .btn-outline-primary:active:focus, .is-style-bootstrap-outline-primary > a:active:focus, .is-style-bootstrap-primary-lg > a:active:focus, .btn-outline-primary.active:focus, .is-style-bootstrap-outline-primary > a.active:focus, .is-style-bootstrap-primary-lg > a.active:focus, .btn-outline-primary.dropdown-toggle.show:focus, .is-style-bootstrap-outline-primary > a.dropdown-toggle.show:focus, .is-style-bootstrap-primary-lg > a.dropdown-toggle.show:focus {
  2140. box-shadow: 0 0 0 0.25rem rgba(50, 83, 99, 0.5); }
  2141. .btn-outline-primary:disabled, .is-style-bootstrap-outline-primary > a:disabled, .is-style-bootstrap-primary-lg > a:disabled, .btn-outline-primary.disabled, .is-style-bootstrap-outline-primary > a.disabled, .is-style-bootstrap-primary-lg > a.disabled {
  2142. color: #325363;
  2143. background-color: transparent; }
  2144. .btn-outline-secondary {
  2145. color: #343C70;
  2146. border-color: #343C70; }
  2147. .btn-outline-secondary:hover {
  2148. color: #fff;
  2149. background-color: #343C70;
  2150. border-color: #343C70; }
  2151. .btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {
  2152. box-shadow: 0 0 0 0.25rem rgba(52, 60, 112, 0.5); }
  2153. .btn-check:checked + .btn-outline-secondary,
  2154. .btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show {
  2155. color: #fff;
  2156. background-color: #343C70;
  2157. border-color: #343C70; }
  2158. .btn-check:checked + .btn-outline-secondary:focus,
  2159. .btn-check:active + .btn-outline-secondary:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus {
  2160. box-shadow: 0 0 0 0.25rem rgba(52, 60, 112, 0.5); }
  2161. .btn-outline-secondary:disabled, .btn-outline-secondary.disabled {
  2162. color: #343C70;
  2163. background-color: transparent; }
  2164. .btn-outline-success {
  2165. color: #5177B0;
  2166. border-color: #5177B0; }
  2167. .btn-outline-success:hover {
  2168. color: #fff;
  2169. background-color: #5177B0;
  2170. border-color: #5177B0; }
  2171. .btn-check:focus + .btn-outline-success, .btn-outline-success:focus {
  2172. box-shadow: 0 0 0 0.25rem rgba(81, 119, 176, 0.5); }
  2173. .btn-check:checked + .btn-outline-success,
  2174. .btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show {
  2175. color: #fff;
  2176. background-color: #5177B0;
  2177. border-color: #5177B0; }
  2178. .btn-check:checked + .btn-outline-success:focus,
  2179. .btn-check:active + .btn-outline-success:focus, .btn-outline-success:active:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus {
  2180. box-shadow: 0 0 0 0.25rem rgba(81, 119, 176, 0.5); }
  2181. .btn-outline-success:disabled, .btn-outline-success.disabled {
  2182. color: #5177B0;
  2183. background-color: transparent; }
  2184. .btn-outline-info {
  2185. color: #50A7AD;
  2186. border-color: #50A7AD; }
  2187. .btn-outline-info:hover {
  2188. color: #000;
  2189. background-color: #50A7AD;
  2190. border-color: #50A7AD; }
  2191. .btn-check:focus + .btn-outline-info, .btn-outline-info:focus {
  2192. box-shadow: 0 0 0 0.25rem rgba(80, 167, 173, 0.5); }
  2193. .btn-check:checked + .btn-outline-info,
  2194. .btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show {
  2195. color: #000;
  2196. background-color: #50A7AD;
  2197. border-color: #50A7AD; }
  2198. .btn-check:checked + .btn-outline-info:focus,
  2199. .btn-check:active + .btn-outline-info:focus, .btn-outline-info:active:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus {
  2200. box-shadow: 0 0 0 0.25rem rgba(80, 167, 173, 0.5); }
  2201. .btn-outline-info:disabled, .btn-outline-info.disabled {
  2202. color: #50A7AD;
  2203. background-color: transparent; }
  2204. .btn-outline-warning {
  2205. color: #E0DC67;
  2206. border-color: #E0DC67; }
  2207. .btn-outline-warning:hover {
  2208. color: #000;
  2209. background-color: #E0DC67;
  2210. border-color: #E0DC67; }
  2211. .btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus {
  2212. box-shadow: 0 0 0 0.25rem rgba(224, 220, 103, 0.5); }
  2213. .btn-check:checked + .btn-outline-warning,
  2214. .btn-check:active + .btn-outline-warning, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show {
  2215. color: #000;
  2216. background-color: #E0DC67;
  2217. border-color: #E0DC67; }
  2218. .btn-check:checked + .btn-outline-warning:focus,
  2219. .btn-check:active + .btn-outline-warning:focus, .btn-outline-warning:active:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus {
  2220. box-shadow: 0 0 0 0.25rem rgba(224, 220, 103, 0.5); }
  2221. .btn-outline-warning:disabled, .btn-outline-warning.disabled {
  2222. color: #E0DC67;
  2223. background-color: transparent; }
  2224. .btn-outline-danger {
  2225. color: #CC7C84;
  2226. border-color: #CC7C84; }
  2227. .btn-outline-danger:hover {
  2228. color: #000;
  2229. background-color: #CC7C84;
  2230. border-color: #CC7C84; }
  2231. .btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {
  2232. box-shadow: 0 0 0 0.25rem rgba(204, 124, 132, 0.5); }
  2233. .btn-check:checked + .btn-outline-danger,
  2234. .btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show {
  2235. color: #000;
  2236. background-color: #CC7C84;
  2237. border-color: #CC7C84; }
  2238. .btn-check:checked + .btn-outline-danger:focus,
  2239. .btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus {
  2240. box-shadow: 0 0 0 0.25rem rgba(204, 124, 132, 0.5); }
  2241. .btn-outline-danger:disabled, .btn-outline-danger.disabled {
  2242. color: #CC7C84;
  2243. background-color: transparent; }
  2244. .btn-outline-light {
  2245. color: #f8f9fa;
  2246. border-color: #f8f9fa; }
  2247. .btn-outline-light:hover {
  2248. color: #000;
  2249. background-color: #f8f9fa;
  2250. border-color: #f8f9fa; }
  2251. .btn-check:focus + .btn-outline-light, .btn-outline-light:focus {
  2252. box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5); }
  2253. .btn-check:checked + .btn-outline-light,
  2254. .btn-check:active + .btn-outline-light, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show {
  2255. color: #000;
  2256. background-color: #f8f9fa;
  2257. border-color: #f8f9fa; }
  2258. .btn-check:checked + .btn-outline-light:focus,
  2259. .btn-check:active + .btn-outline-light:focus, .btn-outline-light:active:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus {
  2260. box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5); }
  2261. .btn-outline-light:disabled, .btn-outline-light.disabled {
  2262. color: #f8f9fa;
  2263. background-color: transparent; }
  2264. .btn-outline-dark {
  2265. color: #212529;
  2266. border-color: #212529; }
  2267. .btn-outline-dark:hover {
  2268. color: #fff;
  2269. background-color: #212529;
  2270. border-color: #212529; }
  2271. .btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus {
  2272. box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5); }
  2273. .btn-check:checked + .btn-outline-dark,
  2274. .btn-check:active + .btn-outline-dark, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.dropdown-toggle.show {
  2275. color: #fff;
  2276. background-color: #212529;
  2277. border-color: #212529; }
  2278. .btn-check:checked + .btn-outline-dark:focus,
  2279. .btn-check:active + .btn-outline-dark:focus, .btn-outline-dark:active:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus {
  2280. box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5); }
  2281. .btn-outline-dark:disabled, .btn-outline-dark.disabled {
  2282. color: #212529;
  2283. background-color: transparent; }
  2284. .btn-link {
  2285. font-weight: 400;
  2286. color: #325363;
  2287. text-decoration: underline; }
  2288. .btn-link:hover {
  2289. color: #28424f; }
  2290. .btn-link:disabled, .btn-link.disabled {
  2291. color: #6c757d; }
  2292. .btn-lg, .is-style-bootstrap-primary-lg > a, .btn-group-lg > .btn, .is-style-bootstrap-primary.btn-group-lg > a, .is-style-bootstrap-outline-primary.btn-group-lg > a {
  2293. padding: 0.5rem 1rem;
  2294. font-size: 1.25rem;
  2295. border-radius: 0.3rem; }
  2296. .btn-sm, .btn-group-sm > .btn, .is-style-bootstrap-primary.btn-group-sm > a, .is-style-bootstrap-outline-primary.btn-group-sm > a, .is-style-bootstrap-primary-lg.btn-group-sm > a {
  2297. padding: 0.25rem 0.5rem;
  2298. font-size: 0.875rem;
  2299. border-radius: 0.2rem; }
  2300. .fade {
  2301. transition: opacity 0.15s linear; }
  2302. @media (prefers-reduced-motion: reduce) {
  2303. .fade {
  2304. transition: none; } }
  2305. .fade:not(.show) {
  2306. opacity: 0; }
  2307. .collapse:not(.show) {
  2308. display: none; }
  2309. .collapsing {
  2310. height: 0;
  2311. overflow: hidden;
  2312. transition: height 0.35s ease; }
  2313. @media (prefers-reduced-motion: reduce) {
  2314. .collapsing {
  2315. transition: none; } }
  2316. .dropup,
  2317. .dropend,
  2318. .dropdown,
  2319. .dropstart {
  2320. position: relative; }
  2321. .dropdown-toggle {
  2322. white-space: nowrap; }
  2323. .dropdown-toggle::after {
  2324. display: inline-block;
  2325. margin-left: 0.255em;
  2326. vertical-align: 0.255em;
  2327. content: "";
  2328. border-top: 0.3em solid;
  2329. border-right: 0.3em solid transparent;
  2330. border-bottom: 0;
  2331. border-left: 0.3em solid transparent; }
  2332. .dropdown-toggle:empty::after {
  2333. margin-left: 0; }
  2334. .dropdown-menu {
  2335. position: absolute;
  2336. top: 100%;
  2337. left: 0;
  2338. z-index: 1000;
  2339. display: none;
  2340. min-width: 10rem;
  2341. padding: 0.5rem 0;
  2342. margin: 0.125rem 0 0;
  2343. font-size: 1rem;
  2344. color: #212529;
  2345. text-align: left;
  2346. list-style: none;
  2347. background-color: #fff;
  2348. background-clip: padding-box;
  2349. border: 1px solid rgba(0, 0, 0, 0.15);
  2350. border-radius: 0.25rem; }
  2351. .dropdown-menu[style] {
  2352. right: auto !important; }
  2353. .dropdown-menu-start {
  2354. --bs-position: start;
  2355. right: auto /* rtl:ignore */;
  2356. left: 0 /* rtl:ignore */; }
  2357. .dropdown-menu-end {
  2358. --bs-position: end;
  2359. right: 0 /* rtl:ignore */;
  2360. left: auto /* rtl:ignore */; }
  2361. @media (min-width: 576px) {
  2362. .dropdown-menu-sm-start {
  2363. --bs-position: start;
  2364. right: auto /* rtl:ignore */;
  2365. left: 0 /* rtl:ignore */; }
  2366. .dropdown-menu-sm-end {
  2367. --bs-position: end;
  2368. right: 0 /* rtl:ignore */;
  2369. left: auto /* rtl:ignore */; } }
  2370. @media (min-width: 768px) {
  2371. .dropdown-menu-md-start {
  2372. --bs-position: start;
  2373. right: auto /* rtl:ignore */;
  2374. left: 0 /* rtl:ignore */; }
  2375. .dropdown-menu-md-end {
  2376. --bs-position: end;
  2377. right: 0 /* rtl:ignore */;
  2378. left: auto /* rtl:ignore */; } }
  2379. @media (min-width: 992px) {
  2380. .dropdown-menu-lg-start {
  2381. --bs-position: start;
  2382. right: auto /* rtl:ignore */;
  2383. left: 0 /* rtl:ignore */; }
  2384. .dropdown-menu-lg-end {
  2385. --bs-position: end;
  2386. right: 0 /* rtl:ignore */;
  2387. left: auto /* rtl:ignore */; } }
  2388. @media (min-width: 1200px) {
  2389. .dropdown-menu-xl-start {
  2390. --bs-position: start;
  2391. right: auto /* rtl:ignore */;
  2392. left: 0 /* rtl:ignore */; }
  2393. .dropdown-menu-xl-end {
  2394. --bs-position: end;
  2395. right: 0 /* rtl:ignore */;
  2396. left: auto /* rtl:ignore */; } }
  2397. @media (min-width: 1400px) {
  2398. .dropdown-menu-xxl-start {
  2399. --bs-position: start;
  2400. right: auto /* rtl:ignore */;
  2401. left: 0 /* rtl:ignore */; }
  2402. .dropdown-menu-xxl-end {
  2403. --bs-position: end;
  2404. right: 0 /* rtl:ignore */;
  2405. left: auto /* rtl:ignore */; } }
  2406. .dropup .dropdown-menu {
  2407. top: auto;
  2408. bottom: 100%;
  2409. margin-top: 0;
  2410. margin-bottom: 0.125rem; }
  2411. .dropup .dropdown-toggle::after {
  2412. display: inline-block;
  2413. margin-left: 0.255em;
  2414. vertical-align: 0.255em;
  2415. content: "";
  2416. border-top: 0;
  2417. border-right: 0.3em solid transparent;
  2418. border-bottom: 0.3em solid;
  2419. border-left: 0.3em solid transparent; }
  2420. .dropup .dropdown-toggle:empty::after {
  2421. margin-left: 0; }
  2422. .dropend .dropdown-menu {
  2423. top: 0;
  2424. right: auto;
  2425. left: 100%;
  2426. margin-top: 0;
  2427. margin-left: 0.125rem; }
  2428. .dropend .dropdown-toggle::after {
  2429. display: inline-block;
  2430. margin-left: 0.255em;
  2431. vertical-align: 0.255em;
  2432. content: "";
  2433. border-top: 0.3em solid transparent;
  2434. border-right: 0;
  2435. border-bottom: 0.3em solid transparent;
  2436. border-left: 0.3em solid; }
  2437. .dropend .dropdown-toggle:empty::after {
  2438. margin-left: 0; }
  2439. .dropend .dropdown-toggle::after {
  2440. vertical-align: 0; }
  2441. .dropstart .dropdown-menu {
  2442. top: 0;
  2443. right: 100%;
  2444. left: auto;
  2445. margin-top: 0;
  2446. margin-right: 0.125rem; }
  2447. .dropstart .dropdown-toggle::after {
  2448. display: inline-block;
  2449. margin-left: 0.255em;
  2450. vertical-align: 0.255em;
  2451. content: ""; }
  2452. .dropstart .dropdown-toggle::after {
  2453. display: none; }
  2454. .dropstart .dropdown-toggle::before {
  2455. display: inline-block;
  2456. margin-right: 0.255em;
  2457. vertical-align: 0.255em;
  2458. content: "";
  2459. border-top: 0.3em solid transparent;
  2460. border-right: 0.3em solid;
  2461. border-bottom: 0.3em solid transparent; }
  2462. .dropstart .dropdown-toggle:empty::after {
  2463. margin-left: 0; }
  2464. .dropstart .dropdown-toggle::before {
  2465. vertical-align: 0; }
  2466. .dropdown-divider {
  2467. height: 0;
  2468. margin: 0.5rem 0;
  2469. overflow: hidden;
  2470. border-top: 1px solid rgba(0, 0, 0, 0.15); }
  2471. .dropdown-item {
  2472. display: block;
  2473. width: 100%;
  2474. padding: 0.25rem 1rem;
  2475. clear: both;
  2476. font-weight: 400;
  2477. color: #212529;
  2478. text-align: inherit;
  2479. text-decoration: none;
  2480. white-space: nowrap;
  2481. background-color: transparent;
  2482. border: 0; }
  2483. .dropdown-item:hover, .dropdown-item:focus {
  2484. color: #1e2125;
  2485. background-color: #f8f9fa; }
  2486. .dropdown-item.active, .dropdown-item:active {
  2487. color: #fff;
  2488. text-decoration: none;
  2489. background-color: #325363; }
  2490. .dropdown-item.disabled, .dropdown-item:disabled {
  2491. color: #6c757d;
  2492. pointer-events: none;
  2493. background-color: transparent; }
  2494. .dropdown-menu.show {
  2495. display: block; }
  2496. .dropdown-header {
  2497. display: block;
  2498. padding: 0.5rem 1rem;
  2499. margin-bottom: 0;
  2500. font-size: 0.875rem;
  2501. color: #6c757d;
  2502. white-space: nowrap; }
  2503. .dropdown-item-text {
  2504. display: block;
  2505. padding: 0.25rem 1rem;
  2506. color: #212529; }
  2507. .dropdown-menu-dark {
  2508. color: #dee2e6;
  2509. background-color: #343a40;
  2510. border-color: rgba(0, 0, 0, 0.15); }
  2511. .dropdown-menu-dark .dropdown-item {
  2512. color: #dee2e6; }
  2513. .dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {
  2514. color: #fff;
  2515. background-color: rgba(255, 255, 255, 0.15); }
  2516. .dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {
  2517. color: #fff;
  2518. background-color: #325363; }
  2519. .dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
  2520. color: #adb5bd; }
  2521. .dropdown-menu-dark .dropdown-divider {
  2522. border-color: rgba(0, 0, 0, 0.15); }
  2523. .dropdown-menu-dark .dropdown-item-text {
  2524. color: #dee2e6; }
  2525. .dropdown-menu-dark .dropdown-header {
  2526. color: #adb5bd; }
  2527. .btn-group,
  2528. .btn-group-vertical {
  2529. position: relative;
  2530. display: inline-flex;
  2531. vertical-align: middle; }
  2532. .btn-group > .btn, .is-style-bootstrap-primary.btn-group > a, .is-style-bootstrap-outline-primary.btn-group > a, .is-style-bootstrap-primary-lg.btn-group > a,
  2533. .btn-group-vertical > .btn,
  2534. .is-style-bootstrap-primary.btn-group-vertical > a,
  2535. .is-style-bootstrap-outline-primary.btn-group-vertical > a,
  2536. .is-style-bootstrap-primary-lg.btn-group-vertical > a {
  2537. position: relative;
  2538. flex: 1 1 auto; }
  2539. .btn-group > .btn-check:checked + .btn, .is-style-bootstrap-primary.btn-group > .btn-check:checked + a, .is-style-bootstrap-outline-primary.btn-group > .btn-check:checked + a, .is-style-bootstrap-primary-lg.btn-group > .btn-check:checked + a,
  2540. .btn-group > .btn-check:focus + .btn,
  2541. .is-style-bootstrap-primary.btn-group > .btn-check:focus + a,
  2542. .is-style-bootstrap-outline-primary.btn-group > .btn-check:focus + a,
  2543. .is-style-bootstrap-primary-lg.btn-group > .btn-check:focus + a,
  2544. .btn-group > .btn:hover,
  2545. .is-style-bootstrap-primary.btn-group > a:hover,
  2546. .is-style-bootstrap-outline-primary.btn-group > a:hover,
  2547. .is-style-bootstrap-primary-lg.btn-group > a:hover,
  2548. .btn-group > .btn:focus,
  2549. .is-style-bootstrap-primary.btn-group > a:focus,
  2550. .is-style-bootstrap-outline-primary.btn-group > a:focus,
  2551. .is-style-bootstrap-primary-lg.btn-group > a:focus,
  2552. .btn-group > .btn:active,
  2553. .is-style-bootstrap-primary.btn-group > a:active,
  2554. .is-style-bootstrap-outline-primary.btn-group > a:active,
  2555. .is-style-bootstrap-primary-lg.btn-group > a:active,
  2556. .btn-group > .btn.active,
  2557. .is-style-bootstrap-primary.btn-group > a.active,
  2558. .is-style-bootstrap-outline-primary.btn-group > a.active,
  2559. .is-style-bootstrap-primary-lg.btn-group > a.active,
  2560. .btn-group-vertical > .btn-check:checked + .btn,
  2561. .is-style-bootstrap-primary.btn-group-vertical > .btn-check:checked + a,
  2562. .is-style-bootstrap-outline-primary.btn-group-vertical > .btn-check:checked + a,
  2563. .is-style-bootstrap-primary-lg.btn-group-vertical > .btn-check:checked + a,
  2564. .btn-group-vertical > .btn-check:focus + .btn,
  2565. .is-style-bootstrap-primary.btn-group-vertical > .btn-check:focus + a,
  2566. .is-style-bootstrap-outline-primary.btn-group-vertical > .btn-check:focus + a,
  2567. .is-style-bootstrap-primary-lg.btn-group-vertical > .btn-check:focus + a,
  2568. .btn-group-vertical > .btn:hover,
  2569. .is-style-bootstrap-primary.btn-group-vertical > a:hover,
  2570. .is-style-bootstrap-outline-primary.btn-group-vertical > a:hover,
  2571. .is-style-bootstrap-primary-lg.btn-group-vertical > a:hover,
  2572. .btn-group-vertical > .btn:focus,
  2573. .is-style-bootstrap-primary.btn-group-vertical > a:focus,
  2574. .is-style-bootstrap-outline-primary.btn-group-vertical > a:focus,
  2575. .is-style-bootstrap-primary-lg.btn-group-vertical > a:focus,
  2576. .btn-group-vertical > .btn:active,
  2577. .is-style-bootstrap-primary.btn-group-vertical > a:active,
  2578. .is-style-bootstrap-outline-primary.btn-group-vertical > a:active,
  2579. .is-style-bootstrap-primary-lg.btn-group-vertical > a:active,
  2580. .btn-group-vertical > .btn.active,
  2581. .is-style-bootstrap-primary.btn-group-vertical > a.active,
  2582. .is-style-bootstrap-outline-primary.btn-group-vertical > a.active,
  2583. .is-style-bootstrap-primary-lg.btn-group-vertical > a.active {
  2584. z-index: 1; }
  2585. .btn-toolbar {
  2586. display: flex;
  2587. flex-wrap: wrap;
  2588. justify-content: flex-start; }
  2589. .btn-toolbar .input-group {
  2590. width: auto; }
  2591. .btn-group > .btn:not(:first-child), .is-style-bootstrap-primary.btn-group > a:not(:first-child), .is-style-bootstrap-outline-primary.btn-group > a:not(:first-child), .is-style-bootstrap-primary-lg.btn-group > a:not(:first-child),
  2592. .btn-group > .btn-group:not(:first-child) {
  2593. margin-left: -1px; }
  2594. .btn-group > .btn:not(:last-child):not(.dropdown-toggle), .is-style-bootstrap-primary.btn-group > a:not(:last-child):not(.dropdown-toggle), .is-style-bootstrap-outline-primary.btn-group > a:not(:last-child):not(.dropdown-toggle), .is-style-bootstrap-primary-lg.btn-group > a:not(:last-child):not(.dropdown-toggle),
  2595. .btn-group > .btn-group:not(:last-child) > .btn,
  2596. .btn-group > .is-style-bootstrap-primary.btn-group:not(:last-child) > a,
  2597. .btn-group > .is-style-bootstrap-outline-primary.btn-group:not(:last-child) > a,
  2598. .btn-group > .is-style-bootstrap-primary-lg.btn-group:not(:last-child) > a {
  2599. border-top-right-radius: 0;
  2600. border-bottom-right-radius: 0; }
  2601. .btn-group > .btn:nth-child(n + 3), .is-style-bootstrap-primary.btn-group > a:nth-child(n + 3), .is-style-bootstrap-outline-primary.btn-group > a:nth-child(n + 3), .is-style-bootstrap-primary-lg.btn-group > a:nth-child(n + 3),
  2602. .btn-group > :not(.btn-check) + .btn,
  2603. .is-style-bootstrap-primary.btn-group > :not(.btn-check) + a,
  2604. .is-style-bootstrap-outline-primary.btn-group > :not(.btn-check) + a,
  2605. .is-style-bootstrap-primary-lg.btn-group > :not(.btn-check) + a,
  2606. .btn-group > .btn-group:not(:first-child) > .btn,
  2607. .btn-group > .is-style-bootstrap-primary.btn-group:not(:first-child) > a,
  2608. .btn-group > .is-style-bootstrap-outline-primary.btn-group:not(:first-child) > a,
  2609. .btn-group > .is-style-bootstrap-primary-lg.btn-group:not(:first-child) > a {
  2610. border-top-left-radius: 0;
  2611. border-bottom-left-radius: 0; }
  2612. .dropdown-toggle-split {
  2613. padding-right: 0.5625rem;
  2614. padding-left: 0.5625rem; }
  2615. .dropdown-toggle-split::after,
  2616. .dropup .dropdown-toggle-split::after,
  2617. .dropend .dropdown-toggle-split::after {
  2618. margin-left: 0; }
  2619. .dropstart .dropdown-toggle-split::before {
  2620. margin-right: 0; }
  2621. .btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split, .is-style-bootstrap-primary.btn-group-sm > a + .dropdown-toggle-split, .is-style-bootstrap-outline-primary.btn-group-sm > a + .dropdown-toggle-split, .is-style-bootstrap-primary-lg.btn-group-sm > a + .dropdown-toggle-split {
  2622. padding-right: 0.375rem;
  2623. padding-left: 0.375rem; }
  2624. .btn-lg + .dropdown-toggle-split, .is-style-bootstrap-primary-lg > a + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split, .is-style-bootstrap-primary.btn-group-lg > a + .dropdown-toggle-split, .is-style-bootstrap-outline-primary.btn-group-lg > a + .dropdown-toggle-split {
  2625. padding-right: 0.75rem;
  2626. padding-left: 0.75rem; }
  2627. .btn-group-vertical {
  2628. flex-direction: column;
  2629. align-items: flex-start;
  2630. justify-content: center; }
  2631. .btn-group-vertical > .btn,
  2632. .is-style-bootstrap-primary.btn-group-vertical > a,
  2633. .is-style-bootstrap-outline-primary.btn-group-vertical > a,
  2634. .is-style-bootstrap-primary-lg.btn-group-vertical > a,
  2635. .btn-group-vertical > .btn-group {
  2636. width: 100%; }
  2637. .btn-group-vertical > .btn:not(:first-child), .is-style-bootstrap-primary.btn-group-vertical > a:not(:first-child), .is-style-bootstrap-outline-primary.btn-group-vertical > a:not(:first-child), .is-style-bootstrap-primary-lg.btn-group-vertical > a:not(:first-child),
  2638. .btn-group-vertical > .btn-group:not(:first-child) {
  2639. margin-top: -1px; }
  2640. .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), .is-style-bootstrap-primary.btn-group-vertical > a:not(:last-child):not(.dropdown-toggle), .is-style-bootstrap-outline-primary.btn-group-vertical > a:not(:last-child):not(.dropdown-toggle), .is-style-bootstrap-primary-lg.btn-group-vertical > a:not(:last-child):not(.dropdown-toggle),
  2641. .btn-group-vertical > .btn-group:not(:last-child) > .btn,
  2642. .btn-group-vertical > .is-style-bootstrap-primary.btn-group:not(:last-child) > a,
  2643. .btn-group-vertical > .is-style-bootstrap-outline-primary.btn-group:not(:last-child) > a,
  2644. .btn-group-vertical > .is-style-bootstrap-primary-lg.btn-group:not(:last-child) > a {
  2645. border-bottom-right-radius: 0;
  2646. border-bottom-left-radius: 0; }
  2647. .btn-group-vertical > .btn ~ .btn, .is-style-bootstrap-primary.btn-group-vertical > a ~ .btn, .is-style-bootstrap-outline-primary.btn-group-vertical > a ~ .btn, .is-style-bootstrap-primary-lg.btn-group-vertical > a ~ .btn, .is-style-bootstrap-primary.btn-group-vertical > .btn ~ a, .is-style-bootstrap-primary.btn-group-vertical > a ~ a, .is-style-bootstrap-outline-primary.btn-group-vertical > .btn ~ a, .is-style-bootstrap-outline-primary.btn-group-vertical > a ~ a, .is-style-bootstrap-primary-lg.btn-group-vertical > .btn ~ a, .is-style-bootstrap-primary-lg.btn-group-vertical > a ~ a,
  2648. .btn-group-vertical > .btn-group:not(:first-child) > .btn,
  2649. .btn-group-vertical > .is-style-bootstrap-primary.btn-group:not(:first-child) > a,
  2650. .btn-group-vertical > .is-style-bootstrap-outline-primary.btn-group:not(:first-child) > a,
  2651. .btn-group-vertical > .is-style-bootstrap-primary-lg.btn-group:not(:first-child) > a {
  2652. border-top-left-radius: 0;
  2653. border-top-right-radius: 0; }
  2654. .nav {
  2655. display: flex;
  2656. flex-wrap: wrap;
  2657. padding-left: 0;
  2658. margin-bottom: 0;
  2659. list-style: none; }
  2660. .nav-link {
  2661. display: block;
  2662. padding: 0.5rem 1rem;
  2663. text-decoration: none;
  2664. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out; }
  2665. @media (prefers-reduced-motion: reduce) {
  2666. .nav-link {
  2667. transition: none; } }
  2668. .nav-link.disabled {
  2669. color: #6c757d;
  2670. pointer-events: none;
  2671. cursor: default; }
  2672. .nav-tabs {
  2673. border-bottom: 1px solid #dee2e6; }
  2674. .nav-tabs .nav-link {
  2675. margin-bottom: -1px;
  2676. border: 1px solid transparent;
  2677. border-top-left-radius: 0.25rem;
  2678. border-top-right-radius: 0.25rem; }
  2679. .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  2680. border-color: #e9ecef #e9ecef #dee2e6; }
  2681. .nav-tabs .nav-link.disabled {
  2682. color: #6c757d;
  2683. background-color: transparent;
  2684. border-color: transparent; }
  2685. .nav-tabs .nav-link.active,
  2686. .nav-tabs .nav-item.show .nav-link {
  2687. color: #495057;
  2688. background-color: #fff;
  2689. border-color: #dee2e6 #dee2e6 #fff; }
  2690. .nav-tabs .dropdown-menu {
  2691. margin-top: -1px;
  2692. border-top-left-radius: 0;
  2693. border-top-right-radius: 0; }
  2694. .nav-pills .nav-link {
  2695. border-radius: 0.25rem; }
  2696. .nav-pills .nav-link.active,
  2697. .nav-pills .show > .nav-link {
  2698. color: #fff;
  2699. background-color: #325363; }
  2700. .nav-fill > .nav-link,
  2701. .nav-fill .nav-item {
  2702. flex: 1 1 auto;
  2703. text-align: center; }
  2704. .nav-justified > .nav-link,
  2705. .nav-justified .nav-item {
  2706. flex-basis: 0;
  2707. flex-grow: 1;
  2708. text-align: center; }
  2709. .tab-content > .tab-pane {
  2710. display: none; }
  2711. .tab-content > .active {
  2712. display: block; }
  2713. .navbar {
  2714. position: relative;
  2715. display: flex;
  2716. flex-wrap: wrap;
  2717. align-items: center;
  2718. justify-content: space-between;
  2719. padding-top: 0.5rem;
  2720. padding-bottom: 0.5rem; }
  2721. .navbar > .container,
  2722. .navbar > .container-fluid, .navbar > .container-sm, .navbar > .container-md, .navbar > .container-lg, .navbar > .container-xl, .navbar > .container-xxl {
  2723. display: flex;
  2724. flex-wrap: inherit;
  2725. align-items: center;
  2726. justify-content: space-between; }
  2727. .navbar-brand {
  2728. padding-top: 0.3125rem;
  2729. padding-bottom: 0.3125rem;
  2730. margin-right: 1rem;
  2731. font-size: 1.25rem;
  2732. text-decoration: none;
  2733. white-space: nowrap; }
  2734. .navbar-nav {
  2735. display: flex;
  2736. flex-direction: column;
  2737. padding-left: 0;
  2738. margin-bottom: 0;
  2739. list-style: none; }
  2740. .navbar-nav .nav-link {
  2741. padding-right: 0;
  2742. padding-left: 0; }
  2743. .navbar-nav .dropdown-menu {
  2744. position: static; }
  2745. .navbar-text {
  2746. padding-top: 0.5rem;
  2747. padding-bottom: 0.5rem; }
  2748. .navbar-collapse {
  2749. align-items: center;
  2750. width: 100%; }
  2751. .navbar-toggler {
  2752. padding: 0.25rem 0.75rem;
  2753. font-size: 1.25rem;
  2754. line-height: 1;
  2755. background-color: transparent;
  2756. border: 1px solid transparent;
  2757. border-radius: 0.25rem;
  2758. transition: box-shadow 0.15s ease-in-out; }
  2759. @media (prefers-reduced-motion: reduce) {
  2760. .navbar-toggler {
  2761. transition: none; } }
  2762. .navbar-toggler:hover {
  2763. text-decoration: none; }
  2764. .navbar-toggler:focus {
  2765. text-decoration: none;
  2766. outline: 0;
  2767. box-shadow: 0 0 0 0.25rem; }
  2768. .navbar-toggler-icon {
  2769. display: inline-block;
  2770. width: 1.5em;
  2771. height: 1.5em;
  2772. vertical-align: middle;
  2773. background-repeat: no-repeat;
  2774. background-position: center;
  2775. background-size: 100%; }
  2776. @media (min-width: 576px) {
  2777. .navbar-expand-sm {
  2778. flex-wrap: nowrap;
  2779. justify-content: flex-start; }
  2780. .navbar-expand-sm .navbar-nav {
  2781. flex-direction: row; }
  2782. .navbar-expand-sm .navbar-nav .dropdown-menu {
  2783. position: absolute; }
  2784. .navbar-expand-sm .navbar-nav .nav-link {
  2785. padding-right: 0.5rem;
  2786. padding-left: 0.5rem; }
  2787. .navbar-expand-sm .navbar-collapse {
  2788. display: flex !important; }
  2789. .navbar-expand-sm .navbar-toggler {
  2790. display: none; } }
  2791. @media (min-width: 768px) {
  2792. .navbar-expand-md {
  2793. flex-wrap: nowrap;
  2794. justify-content: flex-start; }
  2795. .navbar-expand-md .navbar-nav {
  2796. flex-direction: row; }
  2797. .navbar-expand-md .navbar-nav .dropdown-menu {
  2798. position: absolute; }
  2799. .navbar-expand-md .navbar-nav .nav-link {
  2800. padding-right: 0.5rem;
  2801. padding-left: 0.5rem; }
  2802. .navbar-expand-md .navbar-collapse {
  2803. display: flex !important; }
  2804. .navbar-expand-md .navbar-toggler {
  2805. display: none; } }
  2806. @media (min-width: 992px) {
  2807. .navbar-expand-lg {
  2808. flex-wrap: nowrap;
  2809. justify-content: flex-start; }
  2810. .navbar-expand-lg .navbar-nav {
  2811. flex-direction: row; }
  2812. .navbar-expand-lg .navbar-nav .dropdown-menu {
  2813. position: absolute; }
  2814. .navbar-expand-lg .navbar-nav .nav-link {
  2815. padding-right: 0.5rem;
  2816. padding-left: 0.5rem; }
  2817. .navbar-expand-lg .navbar-collapse {
  2818. display: flex !important; }
  2819. .navbar-expand-lg .navbar-toggler {
  2820. display: none; } }
  2821. @media (min-width: 1200px) {
  2822. .navbar-expand-xl {
  2823. flex-wrap: nowrap;
  2824. justify-content: flex-start; }
  2825. .navbar-expand-xl .navbar-nav {
  2826. flex-direction: row; }
  2827. .navbar-expand-xl .navbar-nav .dropdown-menu {
  2828. position: absolute; }
  2829. .navbar-expand-xl .navbar-nav .nav-link {
  2830. padding-right: 0.5rem;
  2831. padding-left: 0.5rem; }
  2832. .navbar-expand-xl .navbar-collapse {
  2833. display: flex !important; }
  2834. .navbar-expand-xl .navbar-toggler {
  2835. display: none; } }
  2836. @media (min-width: 1400px) {
  2837. .navbar-expand-xxl {
  2838. flex-wrap: nowrap;
  2839. justify-content: flex-start; }
  2840. .navbar-expand-xxl .navbar-nav {
  2841. flex-direction: row; }
  2842. .navbar-expand-xxl .navbar-nav .dropdown-menu {
  2843. position: absolute; }
  2844. .navbar-expand-xxl .navbar-nav .nav-link {
  2845. padding-right: 0.5rem;
  2846. padding-left: 0.5rem; }
  2847. .navbar-expand-xxl .navbar-collapse {
  2848. display: flex !important; }
  2849. .navbar-expand-xxl .navbar-toggler {
  2850. display: none; } }
  2851. .navbar-expand {
  2852. flex-wrap: nowrap;
  2853. justify-content: flex-start; }
  2854. .navbar-expand .navbar-nav {
  2855. flex-direction: row; }
  2856. .navbar-expand .navbar-nav .dropdown-menu {
  2857. position: absolute; }
  2858. .navbar-expand .navbar-nav .nav-link {
  2859. padding-right: 0.5rem;
  2860. padding-left: 0.5rem; }
  2861. .navbar-expand .navbar-collapse {
  2862. display: flex !important; }
  2863. .navbar-expand .navbar-toggler {
  2864. display: none; }
  2865. .navbar-light .navbar-brand {
  2866. color: rgba(0, 0, 0, 0.9); }
  2867. .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  2868. color: rgba(0, 0, 0, 0.9); }
  2869. .navbar-light .navbar-nav .nav-link {
  2870. color: rgba(0, 0, 0, 0.55); }
  2871. .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  2872. color: rgba(0, 0, 0, 0.7); }
  2873. .navbar-light .navbar-nav .nav-link.disabled {
  2874. color: rgba(0, 0, 0, 0.3); }
  2875. .navbar-light .navbar-nav .show > .nav-link,
  2876. .navbar-light .navbar-nav .nav-link.active {
  2877. color: rgba(0, 0, 0, 0.9); }
  2878. .navbar-light .navbar-toggler {
  2879. color: rgba(0, 0, 0, 0.55);
  2880. border-color: rgba(0, 0, 0, 0.1); }
  2881. .navbar-light .navbar-toggler-icon {
  2882. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
  2883. .navbar-light .navbar-text {
  2884. color: rgba(0, 0, 0, 0.55); }
  2885. .navbar-light .navbar-text a,
  2886. .navbar-light .navbar-text a:hover,
  2887. .navbar-light .navbar-text a:focus {
  2888. color: rgba(0, 0, 0, 0.9); }
  2889. .navbar-dark .navbar-brand {
  2890. color: #fff; }
  2891. .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  2892. color: #fff; }
  2893. .navbar-dark .navbar-nav .nav-link {
  2894. color: rgba(255, 255, 255, 0.55); }
  2895. .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  2896. color: rgba(255, 255, 255, 0.75); }
  2897. .navbar-dark .navbar-nav .nav-link.disabled {
  2898. color: rgba(255, 255, 255, 0.25); }
  2899. .navbar-dark .navbar-nav .show > .nav-link,
  2900. .navbar-dark .navbar-nav .nav-link.active {
  2901. color: #fff; }
  2902. .navbar-dark .navbar-toggler {
  2903. color: rgba(255, 255, 255, 0.55);
  2904. border-color: rgba(255, 255, 255, 0.1); }
  2905. .navbar-dark .navbar-toggler-icon {
  2906. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
  2907. .navbar-dark .navbar-text {
  2908. color: rgba(255, 255, 255, 0.55); }
  2909. .navbar-dark .navbar-text a,
  2910. .navbar-dark .navbar-text a:hover,
  2911. .navbar-dark .navbar-text a:focus {
  2912. color: #fff; }
  2913. .card {
  2914. position: relative;
  2915. display: flex;
  2916. flex-direction: column;
  2917. min-width: 0;
  2918. word-wrap: break-word;
  2919. background-color: #fff;
  2920. background-clip: border-box;
  2921. border: 1px solid rgba(0, 0, 0, 0.125);
  2922. border-radius: 0.25rem; }
  2923. .card > hr {
  2924. margin-right: 0;
  2925. margin-left: 0; }
  2926. .card > .list-group {
  2927. border-top: inherit;
  2928. border-bottom: inherit; }
  2929. .card > .list-group:first-child {
  2930. border-top-width: 0;
  2931. border-top-left-radius: calc(0.25rem - 1px);
  2932. border-top-right-radius: calc(0.25rem - 1px); }
  2933. .card > .list-group:last-child {
  2934. border-bottom-width: 0;
  2935. border-bottom-right-radius: calc(0.25rem - 1px);
  2936. border-bottom-left-radius: calc(0.25rem - 1px); }
  2937. .card > .card-header + .list-group,
  2938. .card > .list-group + .card-footer {
  2939. border-top: 0; }
  2940. .card-body {
  2941. flex: 1 1 auto;
  2942. padding: 1rem 1rem; }
  2943. .card-title {
  2944. margin-bottom: 0.5rem; }
  2945. .card-subtitle {
  2946. margin-top: -0.25rem;
  2947. margin-bottom: 0; }
  2948. .card-text:last-child {
  2949. margin-bottom: 0; }
  2950. .card-link:hover {
  2951. text-decoration: none; }
  2952. .card-link + .card-link {
  2953. margin-left: 1rem /* rtl:ignore */; }
  2954. .card-header {
  2955. padding: 0.5rem 1rem;
  2956. margin-bottom: 0;
  2957. background-color: rgba(0, 0, 0, 0.03);
  2958. border-bottom: 1px solid rgba(0, 0, 0, 0.125); }
  2959. .card-header:first-child {
  2960. border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; }
  2961. .card-footer {
  2962. padding: 0.5rem 1rem;
  2963. background-color: rgba(0, 0, 0, 0.03);
  2964. border-top: 1px solid rgba(0, 0, 0, 0.125); }
  2965. .card-footer:last-child {
  2966. border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); }
  2967. .card-header-tabs {
  2968. margin-right: -0.5rem;
  2969. margin-bottom: -0.5rem;
  2970. margin-left: -0.5rem;
  2971. border-bottom: 0; }
  2972. .card-header-pills {
  2973. margin-right: -0.5rem;
  2974. margin-left: -0.5rem; }
  2975. .card-img-overlay {
  2976. position: absolute;
  2977. top: 0;
  2978. right: 0;
  2979. bottom: 0;
  2980. left: 0;
  2981. padding: 1rem;
  2982. border-radius: calc(0.25rem - 1px); }
  2983. .card-img,
  2984. .card-img-top,
  2985. .card-img-bottom {
  2986. width: 100%; }
  2987. .card-img,
  2988. .card-img-top {
  2989. border-top-left-radius: calc(0.25rem - 1px);
  2990. border-top-right-radius: calc(0.25rem - 1px); }
  2991. .card-img,
  2992. .card-img-bottom {
  2993. border-bottom-right-radius: calc(0.25rem - 1px);
  2994. border-bottom-left-radius: calc(0.25rem - 1px); }
  2995. .card-group > .card {
  2996. margin-bottom: 0.75rem; }
  2997. @media (min-width: 576px) {
  2998. .card-group {
  2999. display: flex;
  3000. flex-flow: row wrap; }
  3001. .card-group > .card {
  3002. flex: 1 0 0%;
  3003. margin-bottom: 0; }
  3004. .card-group > .card + .card {
  3005. margin-left: 0;
  3006. border-left: 0; }
  3007. .card-group > .card:not(:last-child) {
  3008. border-top-right-radius: 0;
  3009. border-bottom-right-radius: 0; }
  3010. .card-group > .card:not(:last-child) .card-img-top,
  3011. .card-group > .card:not(:last-child) .card-header {
  3012. border-top-right-radius: 0; }
  3013. .card-group > .card:not(:last-child) .card-img-bottom,
  3014. .card-group > .card:not(:last-child) .card-footer {
  3015. border-bottom-right-radius: 0; }
  3016. .card-group > .card:not(:first-child) {
  3017. border-top-left-radius: 0;
  3018. border-bottom-left-radius: 0; }
  3019. .card-group > .card:not(:first-child) .card-img-top,
  3020. .card-group > .card:not(:first-child) .card-header {
  3021. border-top-left-radius: 0; }
  3022. .card-group > .card:not(:first-child) .card-img-bottom,
  3023. .card-group > .card:not(:first-child) .card-footer {
  3024. border-bottom-left-radius: 0; } }
  3025. .accordion-button {
  3026. position: relative;
  3027. display: flex;
  3028. align-items: center;
  3029. width: 100%;
  3030. padding: 1rem 1.25rem;
  3031. font-size: 1rem;
  3032. color: #212529;
  3033. background-color: transparent;
  3034. border: 1px solid rgba(0, 0, 0, 0.125);
  3035. border-radius: 0;
  3036. overflow-anchor: none;
  3037. 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; }
  3038. @media (prefers-reduced-motion: reduce) {
  3039. .accordion-button {
  3040. transition: none; } }
  3041. .accordion-button.collapsed {
  3042. border-bottom-width: 0; }
  3043. .accordion-button:not(.collapsed) {
  3044. color: #2d4b59;
  3045. background-color: #ebeeef; }
  3046. .accordion-button:not(.collapsed)::after {
  3047. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232d4b59'%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");
  3048. transform: rotate(180deg); }
  3049. .accordion-button::after {
  3050. flex-shrink: 0;
  3051. width: 1.25rem;
  3052. height: 1.25rem;
  3053. margin-left: auto;
  3054. content: "";
  3055. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  3056. background-repeat: no-repeat;
  3057. background-size: 1.25rem;
  3058. transition: transform 0.2s ease-in-out; }
  3059. @media (prefers-reduced-motion: reduce) {
  3060. .accordion-button::after {
  3061. transition: none; } }
  3062. .accordion-button:hover {
  3063. z-index: 2; }
  3064. .accordion-button:focus {
  3065. z-index: 3;
  3066. border-color: #99a9b1;
  3067. outline: 0;
  3068. box-shadow: 0 0 0 0.25rem rgba(50, 83, 99, 0.25); }
  3069. .accordion-header {
  3070. margin-bottom: 0; }
  3071. .accordion-item:first-of-type .accordion-button {
  3072. border-top-left-radius: 0.25rem;
  3073. border-top-right-radius: 0.25rem; }
  3074. .accordion-item:last-of-type .accordion-button.collapsed {
  3075. border-bottom-width: 1px;
  3076. border-bottom-right-radius: 0.25rem;
  3077. border-bottom-left-radius: 0.25rem; }
  3078. .accordion-item:last-of-type .accordion-collapse {
  3079. border-bottom-width: 1px;
  3080. border-bottom-right-radius: 0.25rem;
  3081. border-bottom-left-radius: 0.25rem; }
  3082. .accordion-collapse {
  3083. border: solid rgba(0, 0, 0, 0.125);
  3084. border-width: 0 1px; }
  3085. .accordion-body {
  3086. padding: 1rem 1.25rem; }
  3087. .accordion-flush .accordion-button {
  3088. border-right: 0;
  3089. border-left: 0;
  3090. border-radius: 0; }
  3091. .accordion-flush .accordion-collapse {
  3092. border-width: 0; }
  3093. .accordion-flush .accordion-item:first-of-type .accordion-button {
  3094. border-top-width: 0;
  3095. border-top-left-radius: 0;
  3096. border-top-right-radius: 0; }
  3097. .accordion-flush .accordion-item:last-of-type .accordion-button.collapsed {
  3098. border-bottom-width: 0;
  3099. border-bottom-right-radius: 0;
  3100. border-bottom-left-radius: 0; }
  3101. .breadcrumb {
  3102. display: flex;
  3103. flex-wrap: wrap;
  3104. padding: 0 0;
  3105. margin-bottom: 1rem;
  3106. list-style: none; }
  3107. .breadcrumb-item + .breadcrumb-item {
  3108. padding-left: 0.5rem; }
  3109. .breadcrumb-item + .breadcrumb-item::before {
  3110. float: left;
  3111. padding-right: 0.5rem;
  3112. color: #6c757d;
  3113. content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */; }
  3114. .breadcrumb-item.active {
  3115. color: #6c757d; }
  3116. .pagination {
  3117. display: flex;
  3118. padding-left: 0;
  3119. list-style: none; }
  3120. .page-link {
  3121. position: relative;
  3122. display: block;
  3123. color: #325363;
  3124. text-decoration: none;
  3125. background-color: #fff;
  3126. border: 1px solid #dee2e6;
  3127. 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; }
  3128. @media (prefers-reduced-motion: reduce) {
  3129. .page-link {
  3130. transition: none; } }
  3131. .page-link:hover {
  3132. z-index: 2;
  3133. color: #28424f;
  3134. background-color: #e9ecef;
  3135. border-color: #dee2e6; }
  3136. .page-link:focus {
  3137. z-index: 3;
  3138. color: #28424f;
  3139. background-color: #e9ecef;
  3140. outline: 0;
  3141. box-shadow: 0 0 0 0.25rem rgba(50, 83, 99, 0.25); }
  3142. .page-item:not(:first-child) .page-link {
  3143. margin-left: -1px; }
  3144. .page-item.active .page-link {
  3145. z-index: 3;
  3146. color: #fff;
  3147. background-color: #325363;
  3148. border-color: #325363; }
  3149. .page-item.disabled .page-link {
  3150. color: #6c757d;
  3151. pointer-events: none;
  3152. background-color: #fff;
  3153. border-color: #dee2e6; }
  3154. .page-link {
  3155. padding: 0.375rem 0.75rem; }
  3156. .page-item:first-child .page-link {
  3157. border-top-left-radius: 0.25rem;
  3158. border-bottom-left-radius: 0.25rem; }
  3159. .page-item:last-child .page-link {
  3160. border-top-right-radius: 0.25rem;
  3161. border-bottom-right-radius: 0.25rem; }
  3162. .pagination-lg .page-link {
  3163. padding: 0.75rem 1.5rem;
  3164. font-size: 1.25rem; }
  3165. .pagination-lg .page-item:first-child .page-link {
  3166. border-top-left-radius: 0.3rem;
  3167. border-bottom-left-radius: 0.3rem; }
  3168. .pagination-lg .page-item:last-child .page-link {
  3169. border-top-right-radius: 0.3rem;
  3170. border-bottom-right-radius: 0.3rem; }
  3171. .pagination-sm .page-link {
  3172. padding: 0.25rem 0.5rem;
  3173. font-size: 0.875rem; }
  3174. .pagination-sm .page-item:first-child .page-link {
  3175. border-top-left-radius: 0.2rem;
  3176. border-bottom-left-radius: 0.2rem; }
  3177. .pagination-sm .page-item:last-child .page-link {
  3178. border-top-right-radius: 0.2rem;
  3179. border-bottom-right-radius: 0.2rem; }
  3180. .badge {
  3181. display: inline-block;
  3182. padding: 0.35em 0.65em;
  3183. font-size: 0.75em;
  3184. font-weight: 700;
  3185. line-height: 1;
  3186. color: #fff;
  3187. text-align: center;
  3188. white-space: nowrap;
  3189. vertical-align: baseline;
  3190. border-radius: 0.25rem; }
  3191. .badge:empty {
  3192. display: none; }
  3193. .btn .badge, .is-style-bootstrap-primary > a .badge, .is-style-bootstrap-outline-primary > a .badge, .is-style-bootstrap-primary-lg > a .badge {
  3194. position: relative;
  3195. top: -1px; }
  3196. .alert {
  3197. position: relative;
  3198. padding: 1rem 1rem;
  3199. margin-bottom: 1rem;
  3200. border: 1px solid transparent;
  3201. border-radius: 0.25rem; }
  3202. .alert-heading {
  3203. color: inherit; }
  3204. .alert-link {
  3205. font-weight: 700; }
  3206. .alert-dismissible {
  3207. padding-right: 3rem; }
  3208. .alert-dismissible .btn-close {
  3209. position: absolute;
  3210. top: 0;
  3211. right: 0;
  3212. z-index: 2;
  3213. padding: 1.25rem 1rem; }
  3214. .alert-primary {
  3215. color: #1e323b;
  3216. background-color: #d6dde0;
  3217. border-color: #c2cbd0; }
  3218. .alert-primary .alert-link {
  3219. color: #18282f; }
  3220. .alert-secondary {
  3221. color: #1f2443;
  3222. background-color: #d6d8e2;
  3223. border-color: #c2c5d4; }
  3224. .alert-secondary .alert-link {
  3225. color: #191d36; }
  3226. .alert-success {
  3227. color: #31476a;
  3228. background-color: #dce4ef;
  3229. border-color: #cbd6e7; }
  3230. .alert-success .alert-link {
  3231. color: #273955; }
  3232. .alert-info {
  3233. color: #306468;
  3234. background-color: #dcedef;
  3235. border-color: #cbe5e6; }
  3236. .alert-info .alert-link {
  3237. color: #265053; }
  3238. .alert-warning {
  3239. color: #5a5829;
  3240. background-color: #f9f8e1;
  3241. border-color: #f6f5d1; }
  3242. .alert-warning .alert-link {
  3243. color: #484621; }
  3244. .alert-danger {
  3245. color: #7a4a4f;
  3246. background-color: #f5e5e6;
  3247. border-color: #f0d8da; }
  3248. .alert-danger .alert-link {
  3249. color: #623b3f; }
  3250. .alert-light {
  3251. color: #636464;
  3252. background-color: #fefefe;
  3253. border-color: #fdfdfe; }
  3254. .alert-light .alert-link {
  3255. color: #4f5050; }
  3256. .alert-dark {
  3257. color: #141619;
  3258. background-color: #d3d3d4;
  3259. border-color: #bcbebf; }
  3260. .alert-dark .alert-link {
  3261. color: #101214; }
  3262. @keyframes progress-bar-stripes {
  3263. 0% {
  3264. background-position-x: 1rem; } }
  3265. .progress {
  3266. display: flex;
  3267. height: 1rem;
  3268. overflow: hidden;
  3269. font-size: 0.75rem;
  3270. background-color: #e9ecef;
  3271. border-radius: 0.25rem; }
  3272. .progress-bar {
  3273. display: flex;
  3274. flex-direction: column;
  3275. justify-content: center;
  3276. overflow: hidden;
  3277. color: #fff;
  3278. text-align: center;
  3279. white-space: nowrap;
  3280. background-color: #325363;
  3281. transition: width 0.6s ease; }
  3282. @media (prefers-reduced-motion: reduce) {
  3283. .progress-bar {
  3284. transition: none; } }
  3285. .progress-bar-striped {
  3286. 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);
  3287. background-size: 1rem 1rem; }
  3288. .progress-bar-animated {
  3289. animation: 1s linear infinite progress-bar-stripes; }
  3290. @media (prefers-reduced-motion: reduce) {
  3291. .progress-bar-animated {
  3292. animation: none; } }
  3293. .list-group {
  3294. display: flex;
  3295. flex-direction: column;
  3296. padding-left: 0;
  3297. margin-bottom: 0;
  3298. border-radius: 0.25rem; }
  3299. .list-group-item-action {
  3300. width: 100%;
  3301. color: #495057;
  3302. text-align: inherit; }
  3303. .list-group-item-action:hover, .list-group-item-action:focus {
  3304. z-index: 1;
  3305. color: #495057;
  3306. text-decoration: none;
  3307. background-color: #f8f9fa; }
  3308. .list-group-item-action:active {
  3309. color: #212529;
  3310. background-color: #e9ecef; }
  3311. .list-group-item {
  3312. position: relative;
  3313. display: block;
  3314. padding: 0.5rem 1rem;
  3315. text-decoration: none;
  3316. background-color: #fff;
  3317. border: 1px solid rgba(0, 0, 0, 0.125); }
  3318. .list-group-item:first-child {
  3319. border-top-left-radius: inherit;
  3320. border-top-right-radius: inherit; }
  3321. .list-group-item:last-child {
  3322. border-bottom-right-radius: inherit;
  3323. border-bottom-left-radius: inherit; }
  3324. .list-group-item.disabled, .list-group-item:disabled {
  3325. color: #6c757d;
  3326. pointer-events: none;
  3327. background-color: #fff; }
  3328. .list-group-item.active {
  3329. z-index: 2;
  3330. color: #fff;
  3331. background-color: #325363;
  3332. border-color: #325363; }
  3333. .list-group-item + .list-group-item {
  3334. border-top-width: 0; }
  3335. .list-group-item + .list-group-item.active {
  3336. margin-top: -1px;
  3337. border-top-width: 1px; }
  3338. .list-group-horizontal {
  3339. flex-direction: row; }
  3340. .list-group-horizontal > .list-group-item:first-child {
  3341. border-bottom-left-radius: 0.25rem;
  3342. border-top-right-radius: 0; }
  3343. .list-group-horizontal > .list-group-item:last-child {
  3344. border-top-right-radius: 0.25rem;
  3345. border-bottom-left-radius: 0; }
  3346. .list-group-horizontal > .list-group-item.active {
  3347. margin-top: 0; }
  3348. .list-group-horizontal > .list-group-item + .list-group-item {
  3349. border-top-width: 1px;
  3350. border-left-width: 0; }
  3351. .list-group-horizontal > .list-group-item + .list-group-item.active {
  3352. margin-left: -1px;
  3353. border-left-width: 1px; }
  3354. @media (min-width: 576px) {
  3355. .list-group-horizontal-sm {
  3356. flex-direction: row; }
  3357. .list-group-horizontal-sm > .list-group-item:first-child {
  3358. border-bottom-left-radius: 0.25rem;
  3359. border-top-right-radius: 0; }
  3360. .list-group-horizontal-sm > .list-group-item:last-child {
  3361. border-top-right-radius: 0.25rem;
  3362. border-bottom-left-radius: 0; }
  3363. .list-group-horizontal-sm > .list-group-item.active {
  3364. margin-top: 0; }
  3365. .list-group-horizontal-sm > .list-group-item + .list-group-item {
  3366. border-top-width: 1px;
  3367. border-left-width: 0; }
  3368. .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
  3369. margin-left: -1px;
  3370. border-left-width: 1px; } }
  3371. @media (min-width: 768px) {
  3372. .list-group-horizontal-md {
  3373. flex-direction: row; }
  3374. .list-group-horizontal-md > .list-group-item:first-child {
  3375. border-bottom-left-radius: 0.25rem;
  3376. border-top-right-radius: 0; }
  3377. .list-group-horizontal-md > .list-group-item:last-child {
  3378. border-top-right-radius: 0.25rem;
  3379. border-bottom-left-radius: 0; }
  3380. .list-group-horizontal-md > .list-group-item.active {
  3381. margin-top: 0; }
  3382. .list-group-horizontal-md > .list-group-item + .list-group-item {
  3383. border-top-width: 1px;
  3384. border-left-width: 0; }
  3385. .list-group-horizontal-md > .list-group-item + .list-group-item.active {
  3386. margin-left: -1px;
  3387. border-left-width: 1px; } }
  3388. @media (min-width: 992px) {
  3389. .list-group-horizontal-lg {
  3390. flex-direction: row; }
  3391. .list-group-horizontal-lg > .list-group-item:first-child {
  3392. border-bottom-left-radius: 0.25rem;
  3393. border-top-right-radius: 0; }
  3394. .list-group-horizontal-lg > .list-group-item:last-child {
  3395. border-top-right-radius: 0.25rem;
  3396. border-bottom-left-radius: 0; }
  3397. .list-group-horizontal-lg > .list-group-item.active {
  3398. margin-top: 0; }
  3399. .list-group-horizontal-lg > .list-group-item + .list-group-item {
  3400. border-top-width: 1px;
  3401. border-left-width: 0; }
  3402. .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
  3403. margin-left: -1px;
  3404. border-left-width: 1px; } }
  3405. @media (min-width: 1200px) {
  3406. .list-group-horizontal-xl {
  3407. flex-direction: row; }
  3408. .list-group-horizontal-xl > .list-group-item:first-child {
  3409. border-bottom-left-radius: 0.25rem;
  3410. border-top-right-radius: 0; }
  3411. .list-group-horizontal-xl > .list-group-item:last-child {
  3412. border-top-right-radius: 0.25rem;
  3413. border-bottom-left-radius: 0; }
  3414. .list-group-horizontal-xl > .list-group-item.active {
  3415. margin-top: 0; }
  3416. .list-group-horizontal-xl > .list-group-item + .list-group-item {
  3417. border-top-width: 1px;
  3418. border-left-width: 0; }
  3419. .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
  3420. margin-left: -1px;
  3421. border-left-width: 1px; } }
  3422. @media (min-width: 1400px) {
  3423. .list-group-horizontal-xxl {
  3424. flex-direction: row; }
  3425. .list-group-horizontal-xxl > .list-group-item:first-child {
  3426. border-bottom-left-radius: 0.25rem;
  3427. border-top-right-radius: 0; }
  3428. .list-group-horizontal-xxl > .list-group-item:last-child {
  3429. border-top-right-radius: 0.25rem;
  3430. border-bottom-left-radius: 0; }
  3431. .list-group-horizontal-xxl > .list-group-item.active {
  3432. margin-top: 0; }
  3433. .list-group-horizontal-xxl > .list-group-item + .list-group-item {
  3434. border-top-width: 1px;
  3435. border-left-width: 0; }
  3436. .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
  3437. margin-left: -1px;
  3438. border-left-width: 1px; } }
  3439. .list-group-flush {
  3440. border-radius: 0; }
  3441. .list-group-flush > .list-group-item {
  3442. border-width: 0 0 1px; }
  3443. .list-group-flush > .list-group-item:last-child {
  3444. border-bottom-width: 0; }
  3445. .list-group-item-primary {
  3446. color: #1e323b;
  3447. background-color: #d6dde0; }
  3448. .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  3449. color: #1e323b;
  3450. background-color: #c1c7ca; }
  3451. .list-group-item-primary.list-group-item-action.active {
  3452. color: #fff;
  3453. background-color: #1e323b;
  3454. border-color: #1e323b; }
  3455. .list-group-item-secondary {
  3456. color: #1f2443;
  3457. background-color: #d6d8e2; }
  3458. .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  3459. color: #1f2443;
  3460. background-color: #c1c2cb; }
  3461. .list-group-item-secondary.list-group-item-action.active {
  3462. color: #fff;
  3463. background-color: #1f2443;
  3464. border-color: #1f2443; }
  3465. .list-group-item-success {
  3466. color: #31476a;
  3467. background-color: #dce4ef; }
  3468. .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  3469. color: #31476a;
  3470. background-color: #c6cdd7; }
  3471. .list-group-item-success.list-group-item-action.active {
  3472. color: #fff;
  3473. background-color: #31476a;
  3474. border-color: #31476a; }
  3475. .list-group-item-info {
  3476. color: #306468;
  3477. background-color: #dcedef; }
  3478. .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  3479. color: #306468;
  3480. background-color: #c6d5d7; }
  3481. .list-group-item-info.list-group-item-action.active {
  3482. color: #fff;
  3483. background-color: #306468;
  3484. border-color: #306468; }
  3485. .list-group-item-warning {
  3486. color: #5a5829;
  3487. background-color: #f9f8e1; }
  3488. .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  3489. color: #5a5829;
  3490. background-color: #e0dfcb; }
  3491. .list-group-item-warning.list-group-item-action.active {
  3492. color: #fff;
  3493. background-color: #5a5829;
  3494. border-color: #5a5829; }
  3495. .list-group-item-danger {
  3496. color: #7a4a4f;
  3497. background-color: #f5e5e6; }
  3498. .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  3499. color: #7a4a4f;
  3500. background-color: #ddcecf; }
  3501. .list-group-item-danger.list-group-item-action.active {
  3502. color: #fff;
  3503. background-color: #7a4a4f;
  3504. border-color: #7a4a4f; }
  3505. .list-group-item-light {
  3506. color: #636464;
  3507. background-color: #fefefe; }
  3508. .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  3509. color: #636464;
  3510. background-color: #e5e5e5; }
  3511. .list-group-item-light.list-group-item-action.active {
  3512. color: #fff;
  3513. background-color: #636464;
  3514. border-color: #636464; }
  3515. .list-group-item-dark {
  3516. color: #141619;
  3517. background-color: #d3d3d4; }
  3518. .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  3519. color: #141619;
  3520. background-color: #bebebf; }
  3521. .list-group-item-dark.list-group-item-action.active {
  3522. color: #fff;
  3523. background-color: #141619;
  3524. border-color: #141619; }
  3525. .btn-close {
  3526. box-sizing: content-box;
  3527. width: 1em;
  3528. height: 1em;
  3529. padding: 0.25em 0.25em;
  3530. color: #000;
  3531. background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  3532. border: 0;
  3533. border-radius: 0.25rem;
  3534. opacity: 0.5; }
  3535. .btn-close:hover {
  3536. color: #000;
  3537. text-decoration: none;
  3538. opacity: 0.75; }
  3539. .btn-close:focus {
  3540. outline: none;
  3541. box-shadow: 0 0 0 0.25rem rgba(50, 83, 99, 0.25);
  3542. opacity: 1; }
  3543. .btn-close:disabled, .btn-close.disabled {
  3544. pointer-events: none;
  3545. user-select: none;
  3546. opacity: 0.25; }
  3547. .btn-close-white {
  3548. filter: invert(1) grayscale(100%) brightness(200%); }
  3549. .toast {
  3550. width: 350px;
  3551. max-width: 100%;
  3552. font-size: 0.875rem;
  3553. pointer-events: auto;
  3554. background-color: rgba(255, 255, 255, 0.85);
  3555. background-clip: padding-box;
  3556. border: 1px solid rgba(0, 0, 0, 0.1);
  3557. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  3558. border-radius: 0.25rem; }
  3559. .toast:not(.showing):not(.show) {
  3560. opacity: 0; }
  3561. .toast.hide {
  3562. display: none; }
  3563. .toast-container {
  3564. width: max-content;
  3565. max-width: 100%;
  3566. pointer-events: none; }
  3567. .toast-container > :not(:last-child) {
  3568. margin-bottom: 0.75rem; }
  3569. .toast-header {
  3570. display: flex;
  3571. align-items: center;
  3572. padding: 0.5rem 0.75rem;
  3573. color: #6c757d;
  3574. background-color: rgba(255, 255, 255, 0.85);
  3575. background-clip: padding-box;
  3576. border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  3577. border-top-left-radius: calc(0.25rem - 1px);
  3578. border-top-right-radius: calc(0.25rem - 1px); }
  3579. .toast-header .btn-close {
  3580. margin-right: -0.375rem;
  3581. margin-left: 0.75rem; }
  3582. .toast-body {
  3583. padding: 0.75rem; }
  3584. .modal-open {
  3585. overflow: hidden; }
  3586. .modal-open .modal {
  3587. overflow-x: hidden;
  3588. overflow-y: auto; }
  3589. .modal {
  3590. position: fixed;
  3591. top: 0;
  3592. left: 0;
  3593. z-index: 1050;
  3594. display: none;
  3595. width: 100%;
  3596. height: 100%;
  3597. overflow: hidden;
  3598. outline: 0; }
  3599. .modal-dialog {
  3600. position: relative;
  3601. width: auto;
  3602. margin: 0.5rem;
  3603. pointer-events: none; }
  3604. .modal.fade .modal-dialog {
  3605. transition: transform 0.3s ease-out;
  3606. transform: translate(0, -50px); }
  3607. @media (prefers-reduced-motion: reduce) {
  3608. .modal.fade .modal-dialog {
  3609. transition: none; } }
  3610. .modal.show .modal-dialog {
  3611. transform: none; }
  3612. .modal.modal-static .modal-dialog {
  3613. transform: scale(1.02); }
  3614. .modal-dialog-scrollable {
  3615. height: calc(100% - 1rem); }
  3616. .modal-dialog-scrollable .modal-content {
  3617. max-height: 100%;
  3618. overflow: hidden; }
  3619. .modal-dialog-scrollable .modal-body {
  3620. overflow-y: auto; }
  3621. .modal-dialog-centered {
  3622. display: flex;
  3623. align-items: center;
  3624. min-height: calc(100% - 1rem); }
  3625. .modal-content {
  3626. position: relative;
  3627. display: flex;
  3628. flex-direction: column;
  3629. width: 100%;
  3630. pointer-events: auto;
  3631. background-color: #fff;
  3632. background-clip: padding-box;
  3633. border: 1px solid rgba(0, 0, 0, 0.2);
  3634. border-radius: 0.3rem;
  3635. outline: 0; }
  3636. .modal-backdrop {
  3637. position: fixed;
  3638. top: 0;
  3639. left: 0;
  3640. z-index: 1040;
  3641. width: 100vw;
  3642. height: 100vh;
  3643. background-color: #000; }
  3644. .modal-backdrop.fade {
  3645. opacity: 0; }
  3646. .modal-backdrop.show {
  3647. opacity: 0.5; }
  3648. .modal-header {
  3649. display: flex;
  3650. flex-shrink: 0;
  3651. align-items: center;
  3652. justify-content: space-between;
  3653. padding: 1rem 1rem;
  3654. border-bottom: 1px solid #dee2e6;
  3655. border-top-left-radius: calc(0.3rem - 1px);
  3656. border-top-right-radius: calc(0.3rem - 1px); }
  3657. .modal-header .btn-close {
  3658. padding: 0.5rem 0.5rem;
  3659. margin: -0.5rem -0.5rem -0.5rem auto; }
  3660. .modal-title {
  3661. margin-bottom: 0;
  3662. line-height: 1.5; }
  3663. .modal-body {
  3664. position: relative;
  3665. flex: 1 1 auto;
  3666. padding: 1rem; }
  3667. .modal-footer {
  3668. display: flex;
  3669. flex-wrap: wrap;
  3670. flex-shrink: 0;
  3671. align-items: center;
  3672. justify-content: flex-end;
  3673. padding: 0.75rem;
  3674. border-top: 1px solid #dee2e6;
  3675. border-bottom-right-radius: calc(0.3rem - 1px);
  3676. border-bottom-left-radius: calc(0.3rem - 1px); }
  3677. .modal-footer > * {
  3678. margin: 0.25rem; }
  3679. .modal-scrollbar-measure {
  3680. position: absolute;
  3681. top: -9999px;
  3682. width: 50px;
  3683. height: 50px;
  3684. overflow: scroll; }
  3685. @media (min-width: 576px) {
  3686. .modal-dialog {
  3687. max-width: 500px;
  3688. margin: 1.75rem auto; }
  3689. .modal-dialog-scrollable {
  3690. height: calc(100% - 3.5rem); }
  3691. .modal-dialog-centered {
  3692. min-height: calc(100% - 3.5rem); }
  3693. .modal-sm {
  3694. max-width: 300px; } }
  3695. @media (min-width: 992px) {
  3696. .modal-lg,
  3697. .modal-xl {
  3698. max-width: 800px; } }
  3699. @media (min-width: 1200px) {
  3700. .modal-xl {
  3701. max-width: 1140px; } }
  3702. .modal-fullscreen {
  3703. width: 100vw;
  3704. max-width: none;
  3705. height: 100%;
  3706. margin: 0; }
  3707. .modal-fullscreen .modal-content {
  3708. height: 100%;
  3709. border: 0;
  3710. border-radius: 0; }
  3711. .modal-fullscreen .modal-header {
  3712. border-radius: 0; }
  3713. .modal-fullscreen .modal-body {
  3714. overflow-y: auto; }
  3715. .modal-fullscreen .modal-footer {
  3716. border-radius: 0; }
  3717. @media (max-width: 575.98px) {
  3718. .modal-fullscreen-sm-down {
  3719. width: 100vw;
  3720. max-width: none;
  3721. height: 100%;
  3722. margin: 0; }
  3723. .modal-fullscreen-sm-down .modal-content {
  3724. height: 100%;
  3725. border: 0;
  3726. border-radius: 0; }
  3727. .modal-fullscreen-sm-down .modal-header {
  3728. border-radius: 0; }
  3729. .modal-fullscreen-sm-down .modal-body {
  3730. overflow-y: auto; }
  3731. .modal-fullscreen-sm-down .modal-footer {
  3732. border-radius: 0; } }
  3733. @media (max-width: 767.98px) {
  3734. .modal-fullscreen-md-down {
  3735. width: 100vw;
  3736. max-width: none;
  3737. height: 100%;
  3738. margin: 0; }
  3739. .modal-fullscreen-md-down .modal-content {
  3740. height: 100%;
  3741. border: 0;
  3742. border-radius: 0; }
  3743. .modal-fullscreen-md-down .modal-header {
  3744. border-radius: 0; }
  3745. .modal-fullscreen-md-down .modal-body {
  3746. overflow-y: auto; }
  3747. .modal-fullscreen-md-down .modal-footer {
  3748. border-radius: 0; } }
  3749. @media (max-width: 991.98px) {
  3750. .modal-fullscreen-lg-down {
  3751. width: 100vw;
  3752. max-width: none;
  3753. height: 100%;
  3754. margin: 0; }
  3755. .modal-fullscreen-lg-down .modal-content {
  3756. height: 100%;
  3757. border: 0;
  3758. border-radius: 0; }
  3759. .modal-fullscreen-lg-down .modal-header {
  3760. border-radius: 0; }
  3761. .modal-fullscreen-lg-down .modal-body {
  3762. overflow-y: auto; }
  3763. .modal-fullscreen-lg-down .modal-footer {
  3764. border-radius: 0; } }
  3765. @media (max-width: 1199.98px) {
  3766. .modal-fullscreen-xl-down {
  3767. width: 100vw;
  3768. max-width: none;
  3769. height: 100%;
  3770. margin: 0; }
  3771. .modal-fullscreen-xl-down .modal-content {
  3772. height: 100%;
  3773. border: 0;
  3774. border-radius: 0; }
  3775. .modal-fullscreen-xl-down .modal-header {
  3776. border-radius: 0; }
  3777. .modal-fullscreen-xl-down .modal-body {
  3778. overflow-y: auto; }
  3779. .modal-fullscreen-xl-down .modal-footer {
  3780. border-radius: 0; } }
  3781. @media (max-width: 1399.98px) {
  3782. .modal-fullscreen-xxl-down {
  3783. width: 100vw;
  3784. max-width: none;
  3785. height: 100%;
  3786. margin: 0; }
  3787. .modal-fullscreen-xxl-down .modal-content {
  3788. height: 100%;
  3789. border: 0;
  3790. border-radius: 0; }
  3791. .modal-fullscreen-xxl-down .modal-header {
  3792. border-radius: 0; }
  3793. .modal-fullscreen-xxl-down .modal-body {
  3794. overflow-y: auto; }
  3795. .modal-fullscreen-xxl-down .modal-footer {
  3796. border-radius: 0; } }
  3797. .tooltip {
  3798. position: absolute;
  3799. z-index: 1070;
  3800. display: block;
  3801. margin: 0;
  3802. font-family: var(--bs-font-sans-serif);
  3803. font-style: normal;
  3804. font-weight: 400;
  3805. line-height: 1.5;
  3806. text-align: left;
  3807. text-align: start;
  3808. text-decoration: none;
  3809. text-shadow: none;
  3810. text-transform: none;
  3811. letter-spacing: normal;
  3812. word-break: normal;
  3813. word-spacing: normal;
  3814. white-space: normal;
  3815. line-break: auto;
  3816. font-size: 0.875rem;
  3817. word-wrap: break-word;
  3818. opacity: 0; }
  3819. .tooltip.show {
  3820. opacity: 0.9; }
  3821. .tooltip .tooltip-arrow {
  3822. position: absolute;
  3823. display: block;
  3824. width: 0.8rem;
  3825. height: 0.4rem; }
  3826. .tooltip .tooltip-arrow::before {
  3827. position: absolute;
  3828. content: "";
  3829. border-color: transparent;
  3830. border-style: solid; }
  3831. .bs-tooltip-top, .bs-tooltip-auto[data-popper-placement^="top"] {
  3832. padding: 0.4rem 0; }
  3833. .bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow {
  3834. bottom: 0; }
  3835. .bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before {
  3836. top: -1px;
  3837. border-width: 0.4rem 0.4rem 0;
  3838. border-top-color: #000; }
  3839. .bs-tooltip-end, .bs-tooltip-auto[data-popper-placement^="right"] {
  3840. padding: 0 0.4rem; }
  3841. .bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow {
  3842. left: 0;
  3843. width: 0.4rem;
  3844. height: 0.8rem; }
  3845. .bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before {
  3846. right: -1px;
  3847. border-width: 0.4rem 0.4rem 0.4rem 0;
  3848. border-right-color: #000; }
  3849. .bs-tooltip-bottom, .bs-tooltip-auto[data-popper-placement^="bottom"] {
  3850. padding: 0.4rem 0; }
  3851. .bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow {
  3852. top: 0; }
  3853. .bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before {
  3854. bottom: -1px;
  3855. border-width: 0 0.4rem 0.4rem;
  3856. border-bottom-color: #000; }
  3857. .bs-tooltip-start, .bs-tooltip-auto[data-popper-placement^="left"] {
  3858. padding: 0 0.4rem; }
  3859. .bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow {
  3860. right: 0;
  3861. width: 0.4rem;
  3862. height: 0.8rem; }
  3863. .bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before {
  3864. left: -1px;
  3865. border-width: 0.4rem 0 0.4rem 0.4rem;
  3866. border-left-color: #000; }
  3867. .tooltip-inner {
  3868. max-width: 200px;
  3869. padding: 0.25rem 0.5rem;
  3870. color: #fff;
  3871. text-align: center;
  3872. background-color: #000;
  3873. border-radius: 0.25rem; }
  3874. .popover {
  3875. position: absolute;
  3876. top: 0;
  3877. left: 0 /* rtl:ignore */;
  3878. z-index: 1060;
  3879. display: block;
  3880. max-width: 276px;
  3881. font-family: var(--bs-font-sans-serif);
  3882. font-style: normal;
  3883. font-weight: 400;
  3884. line-height: 1.5;
  3885. text-align: left;
  3886. text-align: start;
  3887. text-decoration: none;
  3888. text-shadow: none;
  3889. text-transform: none;
  3890. letter-spacing: normal;
  3891. word-break: normal;
  3892. word-spacing: normal;
  3893. white-space: normal;
  3894. line-break: auto;
  3895. font-size: 0.875rem;
  3896. word-wrap: break-word;
  3897. background-color: #fff;
  3898. background-clip: padding-box;
  3899. border: 1px solid rgba(0, 0, 0, 0.2);
  3900. border-radius: 0.3rem; }
  3901. .popover .popover-arrow {
  3902. position: absolute;
  3903. display: block;
  3904. width: 1rem;
  3905. height: 0.5rem;
  3906. margin: 0 0.3rem; }
  3907. .popover .popover-arrow::before, .popover .popover-arrow::after {
  3908. position: absolute;
  3909. display: block;
  3910. content: "";
  3911. border-color: transparent;
  3912. border-style: solid; }
  3913. .bs-popover-top, .bs-popover-auto[data-popper-placement^="top"] {
  3914. margin-bottom: 0.5rem !important; }
  3915. .bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow {
  3916. bottom: calc(-0.5rem - 1px); }
  3917. .bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::before {
  3918. bottom: 0;
  3919. border-width: 0.5rem 0.5rem 0;
  3920. border-top-color: rgba(0, 0, 0, 0.25); }
  3921. .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::after {
  3922. bottom: 1px;
  3923. border-width: 0.5rem 0.5rem 0;
  3924. border-top-color: #fff; }
  3925. .bs-popover-end, .bs-popover-auto[data-popper-placement^="right"] {
  3926. margin-left: 0.5rem !important; }
  3927. .bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow {
  3928. left: calc(-0.5rem - 1px);
  3929. width: 0.5rem;
  3930. height: 1rem;
  3931. margin: 0.3rem 0; }
  3932. .bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::before {
  3933. left: 0;
  3934. border-width: 0.5rem 0.5rem 0.5rem 0;
  3935. border-right-color: rgba(0, 0, 0, 0.25); }
  3936. .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::after {
  3937. left: 1px;
  3938. border-width: 0.5rem 0.5rem 0.5rem 0;
  3939. border-right-color: #fff; }
  3940. .bs-popover-bottom, .bs-popover-auto[data-popper-placement^="bottom"] {
  3941. margin-top: 0.5rem !important; }
  3942. .bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow {
  3943. top: calc(-0.5rem - 1px); }
  3944. .bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::before {
  3945. top: 0;
  3946. border-width: 0 0.5rem 0.5rem 0.5rem;
  3947. border-bottom-color: rgba(0, 0, 0, 0.25); }
  3948. .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::after {
  3949. top: 1px;
  3950. border-width: 0 0.5rem 0.5rem 0.5rem;
  3951. border-bottom-color: #fff; }
  3952. .bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^="bottom"] .popover-header::before {
  3953. position: absolute;
  3954. top: 0;
  3955. left: 50%;
  3956. display: block;
  3957. width: 1rem;
  3958. margin-left: -0.5rem;
  3959. content: "";
  3960. border-bottom: 1px solid #f0f0f0; }
  3961. .bs-popover-start, .bs-popover-auto[data-popper-placement^="left"] {
  3962. margin-right: 0.5rem !important; }
  3963. .bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow {
  3964. right: calc(-0.5rem - 1px);
  3965. width: 0.5rem;
  3966. height: 1rem;
  3967. margin: 0.3rem 0; }
  3968. .bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::before {
  3969. right: 0;
  3970. border-width: 0.5rem 0 0.5rem 0.5rem;
  3971. border-left-color: rgba(0, 0, 0, 0.25); }
  3972. .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::after {
  3973. right: 1px;
  3974. border-width: 0.5rem 0 0.5rem 0.5rem;
  3975. border-left-color: #fff; }
  3976. .popover-header {
  3977. padding: 0.5rem 1rem;
  3978. margin-bottom: 0;
  3979. font-size: 1rem;
  3980. background-color: #f0f0f0;
  3981. border-bottom: 1px solid #d8d8d8;
  3982. border-top-left-radius: calc(0.3rem - 1px);
  3983. border-top-right-radius: calc(0.3rem - 1px); }
  3984. .popover-header:empty {
  3985. display: none; }
  3986. .popover-body {
  3987. padding: 1rem 1rem;
  3988. color: #212529; }
  3989. .carousel {
  3990. position: relative; }
  3991. .carousel.pointer-event {
  3992. touch-action: pan-y; }
  3993. .carousel-inner {
  3994. position: relative;
  3995. width: 100%;
  3996. overflow: hidden; }
  3997. .carousel-inner::after {
  3998. display: block;
  3999. clear: both;
  4000. content: ""; }
  4001. .carousel-item {
  4002. position: relative;
  4003. display: none;
  4004. float: left;
  4005. width: 100%;
  4006. margin-right: -100%;
  4007. backface-visibility: hidden;
  4008. transition: transform 0.6s ease-in-out; }
  4009. @media (prefers-reduced-motion: reduce) {
  4010. .carousel-item {
  4011. transition: none; } }
  4012. .carousel-item.active,
  4013. .carousel-item-next,
  4014. .carousel-item-prev {
  4015. display: block; }
  4016. /* rtl:begin:ignore */
  4017. .carousel-item-next:not(.carousel-item-start),
  4018. .active.carousel-item-end {
  4019. transform: translateX(100%); }
  4020. .carousel-item-prev:not(.carousel-item-end),
  4021. .active.carousel-item-start {
  4022. transform: translateX(-100%); }
  4023. /* rtl:end:ignore */
  4024. .carousel-fade .carousel-item {
  4025. opacity: 0;
  4026. transition-property: opacity;
  4027. transform: none; }
  4028. .carousel-fade .carousel-item.active,
  4029. .carousel-fade .carousel-item-next.carousel-item-start,
  4030. .carousel-fade .carousel-item-prev.carousel-item-end {
  4031. z-index: 1;
  4032. opacity: 1; }
  4033. .carousel-fade .active.carousel-item-start,
  4034. .carousel-fade .active.carousel-item-end {
  4035. z-index: 0;
  4036. opacity: 0;
  4037. transition: opacity 0s 0.6s; }
  4038. @media (prefers-reduced-motion: reduce) {
  4039. .carousel-fade .active.carousel-item-start,
  4040. .carousel-fade .active.carousel-item-end {
  4041. transition: none; } }
  4042. .carousel-control-prev,
  4043. .carousel-control-next {
  4044. position: absolute;
  4045. top: 0;
  4046. bottom: 0;
  4047. z-index: 1;
  4048. display: flex;
  4049. align-items: center;
  4050. justify-content: center;
  4051. width: 15%;
  4052. color: #fff;
  4053. text-align: center;
  4054. opacity: 0.5;
  4055. transition: opacity 0.15s ease; }
  4056. @media (prefers-reduced-motion: reduce) {
  4057. .carousel-control-prev,
  4058. .carousel-control-next {
  4059. transition: none; } }
  4060. .carousel-control-prev:hover, .carousel-control-prev:focus,
  4061. .carousel-control-next:hover,
  4062. .carousel-control-next:focus {
  4063. color: #fff;
  4064. text-decoration: none;
  4065. outline: 0;
  4066. opacity: 0.9; }
  4067. .carousel-control-prev {
  4068. left: 0; }
  4069. .carousel-control-next {
  4070. right: 0; }
  4071. .carousel-control-prev-icon,
  4072. .carousel-control-next-icon {
  4073. display: inline-block;
  4074. width: 2rem;
  4075. height: 2rem;
  4076. background-repeat: no-repeat;
  4077. background-position: 50%;
  4078. background-size: 100% 100%; }
  4079. /* rtl:options: {
  4080. "autoRename": true,
  4081. "stringMap":[ {
  4082. "name" : "prev-next",
  4083. "search" : "prev",
  4084. "replace" : "next"
  4085. } ]
  4086. } */
  4087. .carousel-control-prev-icon {
  4088. 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"); }
  4089. .carousel-control-next-icon {
  4090. 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"); }
  4091. .carousel-indicators {
  4092. position: absolute;
  4093. right: 0;
  4094. bottom: 0;
  4095. left: 0;
  4096. z-index: 2;
  4097. display: flex;
  4098. justify-content: center;
  4099. padding-left: 0;
  4100. margin-right: 15%;
  4101. margin-left: 15%;
  4102. list-style: none; }
  4103. .carousel-indicators li {
  4104. box-sizing: content-box;
  4105. flex: 0 1 auto;
  4106. width: 30px;
  4107. height: 3px;
  4108. margin-right: 3px;
  4109. margin-left: 3px;
  4110. text-indent: -999px;
  4111. cursor: pointer;
  4112. background-color: #fff;
  4113. background-clip: padding-box;
  4114. border-top: 10px solid transparent;
  4115. border-bottom: 10px solid transparent;
  4116. opacity: 0.5;
  4117. transition: opacity 0.6s ease; }
  4118. @media (prefers-reduced-motion: reduce) {
  4119. .carousel-indicators li {
  4120. transition: none; } }
  4121. .carousel-indicators .active {
  4122. opacity: 1; }
  4123. .carousel-caption {
  4124. position: absolute;
  4125. right: 15%;
  4126. bottom: 1.25rem;
  4127. left: 15%;
  4128. padding-top: 1.25rem;
  4129. padding-bottom: 1.25rem;
  4130. color: #fff;
  4131. text-align: center; }
  4132. .carousel-dark .carousel-control-prev-icon,
  4133. .carousel-dark .carousel-control-next-icon {
  4134. filter: invert(1) grayscale(100); }
  4135. .carousel-dark .carousel-indicators li {
  4136. background-color: #000; }
  4137. .carousel-dark .carousel-caption {
  4138. color: #000; }
  4139. @keyframes spinner-border {
  4140. to {
  4141. transform: rotate(360deg) /* rtl:ignore */; } }
  4142. .spinner-border {
  4143. display: inline-block;
  4144. width: 2rem;
  4145. height: 2rem;
  4146. vertical-align: text-bottom;
  4147. border: 0.25em solid currentColor;
  4148. border-right-color: transparent;
  4149. border-radius: 50%;
  4150. animation: 0.75s linear infinite spinner-border; }
  4151. .spinner-border-sm {
  4152. width: 1rem;
  4153. height: 1rem;
  4154. border-width: 0.2em; }
  4155. @keyframes spinner-grow {
  4156. 0% {
  4157. transform: scale(0); }
  4158. 50% {
  4159. opacity: 1;
  4160. transform: none; } }
  4161. .spinner-grow {
  4162. display: inline-block;
  4163. width: 2rem;
  4164. height: 2rem;
  4165. vertical-align: text-bottom;
  4166. background-color: currentColor;
  4167. border-radius: 50%;
  4168. opacity: 0;
  4169. animation: 0.75s linear infinite spinner-grow; }
  4170. .spinner-grow-sm {
  4171. width: 1rem;
  4172. height: 1rem; }
  4173. @media (prefers-reduced-motion: reduce) {
  4174. .spinner-border,
  4175. .spinner-grow {
  4176. animation-duration: 1.5s; } }
  4177. .clearfix::after {
  4178. display: block;
  4179. clear: both;
  4180. content: ""; }
  4181. .link-primary {
  4182. color: #325363; }
  4183. .link-primary:hover, .link-primary:focus {
  4184. color: #28424f; }
  4185. .link-secondary {
  4186. color: #343C70; }
  4187. .link-secondary:hover, .link-secondary:focus {
  4188. color: #2a305a; }
  4189. .link-success {
  4190. color: #5177B0; }
  4191. .link-success:hover, .link-success:focus {
  4192. color: #415f8d; }
  4193. .link-info {
  4194. color: #50A7AD; }
  4195. .link-info:hover, .link-info:focus {
  4196. color: #73b9bd; }
  4197. .link-warning {
  4198. color: #E0DC67; }
  4199. .link-warning:hover, .link-warning:focus {
  4200. color: #e6e385; }
  4201. .link-danger {
  4202. color: #CC7C84; }
  4203. .link-danger:hover, .link-danger:focus {
  4204. color: #d6969d; }
  4205. .link-light {
  4206. color: #f8f9fa; }
  4207. .link-light:hover, .link-light:focus {
  4208. color: #f9fafb; }
  4209. .link-dark {
  4210. color: #212529; }
  4211. .link-dark:hover, .link-dark:focus {
  4212. color: #1a1e21; }
  4213. .ratio {
  4214. position: relative;
  4215. width: 100%; }
  4216. .ratio::before {
  4217. display: block;
  4218. padding-top: var(--aspect-ratio);
  4219. content: ""; }
  4220. .ratio > * {
  4221. position: absolute;
  4222. top: 0;
  4223. left: 0;
  4224. width: 100%;
  4225. height: 100%; }
  4226. .ratio-1x1 {
  4227. --aspect-ratio: 100%; }
  4228. .ratio-4x3 {
  4229. --aspect-ratio: calc(3 / 4 * 100%); }
  4230. .ratio-16x9 {
  4231. --aspect-ratio: calc(9 / 16 * 100%); }
  4232. .ratio-21x9 {
  4233. --aspect-ratio: calc(9 / 21 * 100%); }
  4234. .fixed-top {
  4235. position: fixed;
  4236. top: 0;
  4237. right: 0;
  4238. left: 0;
  4239. z-index: 1030; }
  4240. .fixed-bottom {
  4241. position: fixed;
  4242. right: 0;
  4243. bottom: 0;
  4244. left: 0;
  4245. z-index: 1030; }
  4246. .sticky-top {
  4247. position: sticky;
  4248. top: 0;
  4249. z-index: 1020; }
  4250. @media (min-width: 576px) {
  4251. .sticky-sm-top {
  4252. position: sticky;
  4253. top: 0;
  4254. z-index: 1020; } }
  4255. @media (min-width: 768px) {
  4256. .sticky-md-top {
  4257. position: sticky;
  4258. top: 0;
  4259. z-index: 1020; } }
  4260. @media (min-width: 992px) {
  4261. .sticky-lg-top {
  4262. position: sticky;
  4263. top: 0;
  4264. z-index: 1020; } }
  4265. @media (min-width: 1200px) {
  4266. .sticky-xl-top {
  4267. position: sticky;
  4268. top: 0;
  4269. z-index: 1020; } }
  4270. @media (min-width: 1400px) {
  4271. .sticky-xxl-top {
  4272. position: sticky;
  4273. top: 0;
  4274. z-index: 1020; } }
  4275. .visually-hidden,
  4276. .visually-hidden-focusable:not(:focus) {
  4277. position: absolute !important;
  4278. width: 1px !important;
  4279. height: 1px !important;
  4280. padding: 0 !important;
  4281. margin: -1px !important;
  4282. overflow: hidden !important;
  4283. clip: rect(0, 0, 0, 0) !important;
  4284. white-space: nowrap !important;
  4285. border: 0 !important; }
  4286. .stretched-link::after {
  4287. position: absolute;
  4288. top: 0;
  4289. right: 0;
  4290. bottom: 0;
  4291. left: 0;
  4292. z-index: 1;
  4293. content: ""; }
  4294. .text-truncate {
  4295. overflow: hidden;
  4296. text-overflow: ellipsis;
  4297. white-space: nowrap; }
  4298. .align-baseline {
  4299. vertical-align: baseline !important; }
  4300. .align-top {
  4301. vertical-align: top !important; }
  4302. .align-middle {
  4303. vertical-align: middle !important; }
  4304. .align-bottom {
  4305. vertical-align: bottom !important; }
  4306. .align-text-bottom {
  4307. vertical-align: text-bottom !important; }
  4308. .align-text-top {
  4309. vertical-align: text-top !important; }
  4310. .float-start {
  4311. float: left !important; }
  4312. .float-end {
  4313. float: right !important; }
  4314. .float-none {
  4315. float: none !important; }
  4316. .overflow-auto {
  4317. overflow: auto !important; }
  4318. .overflow-hidden {
  4319. overflow: hidden !important; }
  4320. .overflow-visible {
  4321. overflow: visible !important; }
  4322. .overflow-scroll {
  4323. overflow: scroll !important; }
  4324. .d-inline {
  4325. display: inline !important; }
  4326. .d-inline-block {
  4327. display: inline-block !important; }
  4328. .d-block {
  4329. display: block !important; }
  4330. .d-grid {
  4331. display: grid !important; }
  4332. .d-table {
  4333. display: table !important; }
  4334. .d-table-row {
  4335. display: table-row !important; }
  4336. .d-table-cell {
  4337. display: table-cell !important; }
  4338. .d-flex {
  4339. display: flex !important; }
  4340. .d-inline-flex {
  4341. display: inline-flex !important; }
  4342. .d-none {
  4343. display: none !important; }
  4344. .shadow {
  4345. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; }
  4346. .shadow-sm {
  4347. box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; }
  4348. .shadow-lg {
  4349. box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; }
  4350. .shadow-none {
  4351. box-shadow: none !important; }
  4352. .position-static {
  4353. position: static !important; }
  4354. .position-relative {
  4355. position: relative !important; }
  4356. .position-absolute {
  4357. position: absolute !important; }
  4358. .position-fixed {
  4359. position: fixed !important; }
  4360. .position-sticky {
  4361. position: sticky !important; }
  4362. .top-0 {
  4363. top: 0 !important; }
  4364. .top-50 {
  4365. top: 50% !important; }
  4366. .top-100 {
  4367. top: 100% !important; }
  4368. .bottom-0 {
  4369. bottom: 0 !important; }
  4370. .bottom-50 {
  4371. bottom: 50% !important; }
  4372. .bottom-100 {
  4373. bottom: 100% !important; }
  4374. .start-0 {
  4375. left: 0 !important; }
  4376. .start-50 {
  4377. left: 50% !important; }
  4378. .start-100 {
  4379. left: 100% !important; }
  4380. .end-0 {
  4381. right: 0 !important; }
  4382. .end-50 {
  4383. right: 50% !important; }
  4384. .end-100 {
  4385. right: 100% !important; }
  4386. .translate-middle {
  4387. transform: translate(-50%, -50%) !important; }
  4388. .translate-middle-x {
  4389. transform: translateX(-50%) !important; }
  4390. .translate-middle-y {
  4391. transform: translateY(-50%) !important; }
  4392. .border {
  4393. border: 1px solid #dee2e6 !important; }
  4394. .border-0 {
  4395. border: 0 !important; }
  4396. .border-top {
  4397. border-top: 1px solid #dee2e6 !important; }
  4398. .border-top-0 {
  4399. border-top: 0 !important; }
  4400. .border-end {
  4401. border-right: 1px solid #dee2e6 !important; }
  4402. .border-end-0 {
  4403. border-right: 0 !important; }
  4404. .border-bottom {
  4405. border-bottom: 1px solid #dee2e6 !important; }
  4406. .border-bottom-0 {
  4407. border-bottom: 0 !important; }
  4408. .border-start {
  4409. border-left: 1px solid #dee2e6 !important; }
  4410. .border-start-0 {
  4411. border-left: 0 !important; }
  4412. .border-primary {
  4413. border-color: #325363 !important; }
  4414. .border-secondary {
  4415. border-color: #343C70 !important; }
  4416. .border-success {
  4417. border-color: #5177B0 !important; }
  4418. .border-info {
  4419. border-color: #50A7AD !important; }
  4420. .border-warning {
  4421. border-color: #E0DC67 !important; }
  4422. .border-danger {
  4423. border-color: #CC7C84 !important; }
  4424. .border-light {
  4425. border-color: #f8f9fa !important; }
  4426. .border-dark {
  4427. border-color: #212529 !important; }
  4428. .border-white {
  4429. border-color: #fff !important; }
  4430. .border-0 {
  4431. border-width: 0 !important; }
  4432. .border-1 {
  4433. border-width: 1px !important; }
  4434. .border-2 {
  4435. border-width: 2px !important; }
  4436. .border-3 {
  4437. border-width: 3px !important; }
  4438. .border-4 {
  4439. border-width: 4px !important; }
  4440. .border-5 {
  4441. border-width: 5px !important; }
  4442. .w-25 {
  4443. width: 25% !important; }
  4444. .w-50 {
  4445. width: 50% !important; }
  4446. .w-75 {
  4447. width: 75% !important; }
  4448. .w-100 {
  4449. width: 100% !important; }
  4450. .w-auto {
  4451. width: auto !important; }
  4452. .mw-100 {
  4453. max-width: 100% !important; }
  4454. .vw-100 {
  4455. width: 100vw !important; }
  4456. .min-vw-100 {
  4457. min-width: 100vw !important; }
  4458. .h-25 {
  4459. height: 25% !important; }
  4460. .h-50 {
  4461. height: 50% !important; }
  4462. .h-75 {
  4463. height: 75% !important; }
  4464. .h-100 {
  4465. height: 100% !important; }
  4466. .h-auto {
  4467. height: auto !important; }
  4468. .mh-100 {
  4469. max-height: 100% !important; }
  4470. .vh-100 {
  4471. height: 100vh !important; }
  4472. .min-vh-100 {
  4473. min-height: 100vh !important; }
  4474. .flex-fill {
  4475. flex: 1 1 auto !important; }
  4476. .flex-row {
  4477. flex-direction: row !important; }
  4478. .flex-column {
  4479. flex-direction: column !important; }
  4480. .flex-row-reverse {
  4481. flex-direction: row-reverse !important; }
  4482. .flex-column-reverse {
  4483. flex-direction: column-reverse !important; }
  4484. .flex-grow-0 {
  4485. flex-grow: 0 !important; }
  4486. .flex-grow-1 {
  4487. flex-grow: 1 !important; }
  4488. .flex-shrink-0 {
  4489. flex-shrink: 0 !important; }
  4490. .flex-shrink-1 {
  4491. flex-shrink: 1 !important; }
  4492. .flex-wrap {
  4493. flex-wrap: wrap !important; }
  4494. .flex-nowrap {
  4495. flex-wrap: nowrap !important; }
  4496. .flex-wrap-reverse {
  4497. flex-wrap: wrap-reverse !important; }
  4498. .gap-0 {
  4499. gap: 0 !important; }
  4500. .gap-1 {
  4501. gap: 0.25rem !important; }
  4502. .gap-2 {
  4503. gap: 0.5rem !important; }
  4504. .gap-3 {
  4505. gap: 1rem !important; }
  4506. .gap-4 {
  4507. gap: 1.5rem !important; }
  4508. .gap-5 {
  4509. gap: 3rem !important; }
  4510. .justify-content-start {
  4511. justify-content: flex-start !important; }
  4512. .justify-content-end {
  4513. justify-content: flex-end !important; }
  4514. .justify-content-center {
  4515. justify-content: center !important; }
  4516. .justify-content-between {
  4517. justify-content: space-between !important; }
  4518. .justify-content-around {
  4519. justify-content: space-around !important; }
  4520. .justify-content-evenly {
  4521. justify-content: space-evenly !important; }
  4522. .align-items-start {
  4523. align-items: flex-start !important; }
  4524. .align-items-end {
  4525. align-items: flex-end !important; }
  4526. .align-items-center {
  4527. align-items: center !important; }
  4528. .align-items-baseline {
  4529. align-items: baseline !important; }
  4530. .align-items-stretch {
  4531. align-items: stretch !important; }
  4532. .align-content-start {
  4533. align-content: flex-start !important; }
  4534. .align-content-end {
  4535. align-content: flex-end !important; }
  4536. .align-content-center {
  4537. align-content: center !important; }
  4538. .align-content-between {
  4539. align-content: space-between !important; }
  4540. .align-content-around {
  4541. align-content: space-around !important; }
  4542. .align-content-stretch {
  4543. align-content: stretch !important; }
  4544. .align-self-auto {
  4545. align-self: auto !important; }
  4546. .align-self-start {
  4547. align-self: flex-start !important; }
  4548. .align-self-end {
  4549. align-self: flex-end !important; }
  4550. .align-self-center {
  4551. align-self: center !important; }
  4552. .align-self-baseline {
  4553. align-self: baseline !important; }
  4554. .align-self-stretch {
  4555. align-self: stretch !important; }
  4556. .order-first {
  4557. order: -1 !important; }
  4558. .order-0 {
  4559. order: 0 !important; }
  4560. .order-1 {
  4561. order: 1 !important; }
  4562. .order-2 {
  4563. order: 2 !important; }
  4564. .order-3 {
  4565. order: 3 !important; }
  4566. .order-4 {
  4567. order: 4 !important; }
  4568. .order-5 {
  4569. order: 5 !important; }
  4570. .order-last {
  4571. order: 6 !important; }
  4572. .m-0 {
  4573. margin: 0 !important; }
  4574. .m-1 {
  4575. margin: 0.25rem !important; }
  4576. .m-2 {
  4577. margin: 0.5rem !important; }
  4578. .m-3 {
  4579. margin: 1rem !important; }
  4580. .m-4 {
  4581. margin: 1.5rem !important; }
  4582. .m-5 {
  4583. margin: 3rem !important; }
  4584. .m-auto {
  4585. margin: auto !important; }
  4586. .mx-0 {
  4587. margin-right: 0 !important;
  4588. margin-left: 0 !important; }
  4589. .mx-1 {
  4590. margin-right: 0.25rem !important;
  4591. margin-left: 0.25rem !important; }
  4592. .mx-2 {
  4593. margin-right: 0.5rem !important;
  4594. margin-left: 0.5rem !important; }
  4595. .mx-3 {
  4596. margin-right: 1rem !important;
  4597. margin-left: 1rem !important; }
  4598. .mx-4 {
  4599. margin-right: 1.5rem !important;
  4600. margin-left: 1.5rem !important; }
  4601. .mx-5 {
  4602. margin-right: 3rem !important;
  4603. margin-left: 3rem !important; }
  4604. .mx-auto {
  4605. margin-right: auto !important;
  4606. margin-left: auto !important; }
  4607. .my-0 {
  4608. margin-top: 0 !important;
  4609. margin-bottom: 0 !important; }
  4610. .my-1 {
  4611. margin-top: 0.25rem !important;
  4612. margin-bottom: 0.25rem !important; }
  4613. .my-2 {
  4614. margin-top: 0.5rem !important;
  4615. margin-bottom: 0.5rem !important; }
  4616. .my-3 {
  4617. margin-top: 1rem !important;
  4618. margin-bottom: 1rem !important; }
  4619. .my-4 {
  4620. margin-top: 1.5rem !important;
  4621. margin-bottom: 1.5rem !important; }
  4622. .my-5 {
  4623. margin-top: 3rem !important;
  4624. margin-bottom: 3rem !important; }
  4625. .my-auto {
  4626. margin-top: auto !important;
  4627. margin-bottom: auto !important; }
  4628. .mt-0 {
  4629. margin-top: 0 !important; }
  4630. .mt-1 {
  4631. margin-top: 0.25rem !important; }
  4632. .mt-2 {
  4633. margin-top: 0.5rem !important; }
  4634. .mt-3 {
  4635. margin-top: 1rem !important; }
  4636. .mt-4 {
  4637. margin-top: 1.5rem !important; }
  4638. .mt-5 {
  4639. margin-top: 3rem !important; }
  4640. .mt-auto {
  4641. margin-top: auto !important; }
  4642. .me-0 {
  4643. margin-right: 0 !important; }
  4644. .me-1 {
  4645. margin-right: 0.25rem !important; }
  4646. .me-2 {
  4647. margin-right: 0.5rem !important; }
  4648. .me-3 {
  4649. margin-right: 1rem !important; }
  4650. .me-4 {
  4651. margin-right: 1.5rem !important; }
  4652. .me-5 {
  4653. margin-right: 3rem !important; }
  4654. .me-auto {
  4655. margin-right: auto !important; }
  4656. .mb-0 {
  4657. margin-bottom: 0 !important; }
  4658. .mb-1 {
  4659. margin-bottom: 0.25rem !important; }
  4660. .mb-2 {
  4661. margin-bottom: 0.5rem !important; }
  4662. .mb-3 {
  4663. margin-bottom: 1rem !important; }
  4664. .mb-4 {
  4665. margin-bottom: 1.5rem !important; }
  4666. .mb-5 {
  4667. margin-bottom: 3rem !important; }
  4668. .mb-auto {
  4669. margin-bottom: auto !important; }
  4670. .ms-0 {
  4671. margin-left: 0 !important; }
  4672. .ms-1 {
  4673. margin-left: 0.25rem !important; }
  4674. .ms-2 {
  4675. margin-left: 0.5rem !important; }
  4676. .ms-3 {
  4677. margin-left: 1rem !important; }
  4678. .ms-4 {
  4679. margin-left: 1.5rem !important; }
  4680. .ms-5 {
  4681. margin-left: 3rem !important; }
  4682. .ms-auto {
  4683. margin-left: auto !important; }
  4684. .p-0 {
  4685. padding: 0 !important; }
  4686. .p-1 {
  4687. padding: 0.25rem !important; }
  4688. .p-2 {
  4689. padding: 0.5rem !important; }
  4690. .p-3 {
  4691. padding: 1rem !important; }
  4692. .p-4 {
  4693. padding: 1.5rem !important; }
  4694. .p-5 {
  4695. padding: 3rem !important; }
  4696. .px-0 {
  4697. padding-right: 0 !important;
  4698. padding-left: 0 !important; }
  4699. .px-1 {
  4700. padding-right: 0.25rem !important;
  4701. padding-left: 0.25rem !important; }
  4702. .px-2 {
  4703. padding-right: 0.5rem !important;
  4704. padding-left: 0.5rem !important; }
  4705. .px-3 {
  4706. padding-right: 1rem !important;
  4707. padding-left: 1rem !important; }
  4708. .px-4 {
  4709. padding-right: 1.5rem !important;
  4710. padding-left: 1.5rem !important; }
  4711. .px-5 {
  4712. padding-right: 3rem !important;
  4713. padding-left: 3rem !important; }
  4714. .py-0 {
  4715. padding-top: 0 !important;
  4716. padding-bottom: 0 !important; }
  4717. .py-1 {
  4718. padding-top: 0.25rem !important;
  4719. padding-bottom: 0.25rem !important; }
  4720. .py-2 {
  4721. padding-top: 0.5rem !important;
  4722. padding-bottom: 0.5rem !important; }
  4723. .py-3 {
  4724. padding-top: 1rem !important;
  4725. padding-bottom: 1rem !important; }
  4726. .py-4 {
  4727. padding-top: 1.5rem !important;
  4728. padding-bottom: 1.5rem !important; }
  4729. .py-5 {
  4730. padding-top: 3rem !important;
  4731. padding-bottom: 3rem !important; }
  4732. .pt-0 {
  4733. padding-top: 0 !important; }
  4734. .pt-1 {
  4735. padding-top: 0.25rem !important; }
  4736. .pt-2 {
  4737. padding-top: 0.5rem !important; }
  4738. .pt-3 {
  4739. padding-top: 1rem !important; }
  4740. .pt-4 {
  4741. padding-top: 1.5rem !important; }
  4742. .pt-5 {
  4743. padding-top: 3rem !important; }
  4744. .pe-0 {
  4745. padding-right: 0 !important; }
  4746. .pe-1 {
  4747. padding-right: 0.25rem !important; }
  4748. .pe-2 {
  4749. padding-right: 0.5rem !important; }
  4750. .pe-3 {
  4751. padding-right: 1rem !important; }
  4752. .pe-4 {
  4753. padding-right: 1.5rem !important; }
  4754. .pe-5 {
  4755. padding-right: 3rem !important; }
  4756. .pb-0 {
  4757. padding-bottom: 0 !important; }
  4758. .pb-1 {
  4759. padding-bottom: 0.25rem !important; }
  4760. .pb-2 {
  4761. padding-bottom: 0.5rem !important; }
  4762. .pb-3 {
  4763. padding-bottom: 1rem !important; }
  4764. .pb-4 {
  4765. padding-bottom: 1.5rem !important; }
  4766. .pb-5 {
  4767. padding-bottom: 3rem !important; }
  4768. .ps-0 {
  4769. padding-left: 0 !important; }
  4770. .ps-1 {
  4771. padding-left: 0.25rem !important; }
  4772. .ps-2 {
  4773. padding-left: 0.5rem !important; }
  4774. .ps-3 {
  4775. padding-left: 1rem !important; }
  4776. .ps-4 {
  4777. padding-left: 1.5rem !important; }
  4778. .ps-5 {
  4779. padding-left: 3rem !important; }
  4780. .fs-1 {
  4781. font-size: calc(1.375rem + 1.5vw) !important; }
  4782. .fs-2 {
  4783. font-size: calc(1.325rem + 0.9vw) !important; }
  4784. .fs-3 {
  4785. font-size: calc(1.3rem + 0.6vw) !important; }
  4786. .fs-4 {
  4787. font-size: calc(1.275rem + 0.3vw) !important; }
  4788. .fs-5 {
  4789. font-size: 1.25rem !important; }
  4790. .fs-6 {
  4791. font-size: 1rem !important; }
  4792. .fst-italic {
  4793. font-style: italic !important; }
  4794. .fst-normal {
  4795. font-style: normal !important; }
  4796. .fw-light {
  4797. font-weight: 300 !important; }
  4798. .fw-lighter {
  4799. font-weight: lighter !important; }
  4800. .fw-normal {
  4801. font-weight: 400 !important; }
  4802. .fw-bold {
  4803. font-weight: 700 !important; }
  4804. .fw-bolder {
  4805. font-weight: bolder !important; }
  4806. .text-lowercase {
  4807. text-transform: lowercase !important; }
  4808. .text-uppercase {
  4809. text-transform: uppercase !important; }
  4810. .text-capitalize {
  4811. text-transform: capitalize !important; }
  4812. .text-start {
  4813. text-align: left !important; }
  4814. .text-end {
  4815. text-align: right !important; }
  4816. .text-center {
  4817. text-align: center !important; }
  4818. .text-primary {
  4819. color: #325363 !important; }
  4820. .text-secondary {
  4821. color: #343C70 !important; }
  4822. .text-success {
  4823. color: #5177B0 !important; }
  4824. .text-info {
  4825. color: #50A7AD !important; }
  4826. .text-warning {
  4827. color: #E0DC67 !important; }
  4828. .text-danger {
  4829. color: #CC7C84 !important; }
  4830. .text-light {
  4831. color: #f8f9fa !important; }
  4832. .text-dark {
  4833. color: #212529 !important; }
  4834. .text-white {
  4835. color: #fff !important; }
  4836. .text-body {
  4837. color: #212529 !important; }
  4838. .text-muted {
  4839. color: #6c757d !important; }
  4840. .text-black-50 {
  4841. color: rgba(0, 0, 0, 0.5) !important; }
  4842. .text-white-50 {
  4843. color: rgba(255, 255, 255, 0.5) !important; }
  4844. .text-reset {
  4845. color: inherit !important; }
  4846. .lh-1 {
  4847. line-height: 1 !important; }
  4848. .lh-sm {
  4849. line-height: 1.25 !important; }
  4850. .lh-base {
  4851. line-height: 1.5 !important; }
  4852. .lh-lg {
  4853. line-height: 2 !important; }
  4854. .bg-primary {
  4855. background-color: #325363 !important; }
  4856. .bg-secondary {
  4857. background-color: #343C70 !important; }
  4858. .bg-success {
  4859. background-color: #5177B0 !important; }
  4860. .bg-info {
  4861. background-color: #50A7AD !important; }
  4862. .bg-warning {
  4863. background-color: #E0DC67 !important; }
  4864. .bg-danger {
  4865. background-color: #CC7C84 !important; }
  4866. .bg-light {
  4867. background-color: #f8f9fa !important; }
  4868. .bg-dark {
  4869. background-color: #212529 !important; }
  4870. .bg-body {
  4871. background-color: #fff !important; }
  4872. .bg-white {
  4873. background-color: #fff !important; }
  4874. .bg-transparent {
  4875. background-color: transparent !important; }
  4876. .bg-gradient {
  4877. background-image: var(--bs-gradient) !important; }
  4878. .text-wrap {
  4879. white-space: normal !important; }
  4880. .text-nowrap {
  4881. white-space: nowrap !important; }
  4882. .text-decoration-none {
  4883. text-decoration: none !important; }
  4884. .text-decoration-underline {
  4885. text-decoration: underline !important; }
  4886. .text-decoration-line-through {
  4887. text-decoration: line-through !important; }
  4888. /* rtl:begin:remove */
  4889. .text-break {
  4890. word-wrap: break-word !important;
  4891. word-break: break-word !important; }
  4892. /* rtl:end:remove */
  4893. .font-monospace {
  4894. font-family: var(--bs-font-monospace) !important; }
  4895. .user-select-all {
  4896. user-select: all !important; }
  4897. .user-select-auto {
  4898. user-select: auto !important; }
  4899. .user-select-none {
  4900. user-select: none !important; }
  4901. .pe-none {
  4902. pointer-events: none !important; }
  4903. .pe-auto {
  4904. pointer-events: auto !important; }
  4905. .rounded {
  4906. border-radius: 0.25rem !important; }
  4907. .rounded-0 {
  4908. border-radius: 0 !important; }
  4909. .rounded-1 {
  4910. border-radius: 0.2rem !important; }
  4911. .rounded-2 {
  4912. border-radius: 0.25rem !important; }
  4913. .rounded-3 {
  4914. border-radius: 0.3rem !important; }
  4915. .rounded-circle {
  4916. border-radius: 50% !important; }
  4917. .rounded-pill {
  4918. border-radius: 50rem !important; }
  4919. .rounded-top {
  4920. border-top-left-radius: 0.25rem !important;
  4921. border-top-right-radius: 0.25rem !important; }
  4922. .rounded-end {
  4923. border-top-right-radius: 0.25rem !important;
  4924. border-bottom-right-radius: 0.25rem !important; }
  4925. .rounded-bottom {
  4926. border-bottom-right-radius: 0.25rem !important;
  4927. border-bottom-left-radius: 0.25rem !important; }
  4928. .rounded-start {
  4929. border-bottom-left-radius: 0.25rem !important;
  4930. border-top-left-radius: 0.25rem !important; }
  4931. .visible {
  4932. visibility: visible !important; }
  4933. .invisible {
  4934. visibility: hidden !important; }
  4935. @media (min-width: 576px) {
  4936. .float-sm-start {
  4937. float: left !important; }
  4938. .float-sm-end {
  4939. float: right !important; }
  4940. .float-sm-none {
  4941. float: none !important; }
  4942. .d-sm-inline {
  4943. display: inline !important; }
  4944. .d-sm-inline-block {
  4945. display: inline-block !important; }
  4946. .d-sm-block {
  4947. display: block !important; }
  4948. .d-sm-grid {
  4949. display: grid !important; }
  4950. .d-sm-table {
  4951. display: table !important; }
  4952. .d-sm-table-row {
  4953. display: table-row !important; }
  4954. .d-sm-table-cell {
  4955. display: table-cell !important; }
  4956. .d-sm-flex {
  4957. display: flex !important; }
  4958. .d-sm-inline-flex {
  4959. display: inline-flex !important; }
  4960. .d-sm-none {
  4961. display: none !important; }
  4962. .flex-sm-fill {
  4963. flex: 1 1 auto !important; }
  4964. .flex-sm-row {
  4965. flex-direction: row !important; }
  4966. .flex-sm-column {
  4967. flex-direction: column !important; }
  4968. .flex-sm-row-reverse {
  4969. flex-direction: row-reverse !important; }
  4970. .flex-sm-column-reverse {
  4971. flex-direction: column-reverse !important; }
  4972. .flex-sm-grow-0 {
  4973. flex-grow: 0 !important; }
  4974. .flex-sm-grow-1 {
  4975. flex-grow: 1 !important; }
  4976. .flex-sm-shrink-0 {
  4977. flex-shrink: 0 !important; }
  4978. .flex-sm-shrink-1 {
  4979. flex-shrink: 1 !important; }
  4980. .flex-sm-wrap {
  4981. flex-wrap: wrap !important; }
  4982. .flex-sm-nowrap {
  4983. flex-wrap: nowrap !important; }
  4984. .flex-sm-wrap-reverse {
  4985. flex-wrap: wrap-reverse !important; }
  4986. .gap-sm-0 {
  4987. gap: 0 !important; }
  4988. .gap-sm-1 {
  4989. gap: 0.25rem !important; }
  4990. .gap-sm-2 {
  4991. gap: 0.5rem !important; }
  4992. .gap-sm-3 {
  4993. gap: 1rem !important; }
  4994. .gap-sm-4 {
  4995. gap: 1.5rem !important; }
  4996. .gap-sm-5 {
  4997. gap: 3rem !important; }
  4998. .justify-content-sm-start {
  4999. justify-content: flex-start !important; }
  5000. .justify-content-sm-end {
  5001. justify-content: flex-end !important; }
  5002. .justify-content-sm-center {
  5003. justify-content: center !important; }
  5004. .justify-content-sm-between {
  5005. justify-content: space-between !important; }
  5006. .justify-content-sm-around {
  5007. justify-content: space-around !important; }
  5008. .justify-content-sm-evenly {
  5009. justify-content: space-evenly !important; }
  5010. .align-items-sm-start {
  5011. align-items: flex-start !important; }
  5012. .align-items-sm-end {
  5013. align-items: flex-end !important; }
  5014. .align-items-sm-center {
  5015. align-items: center !important; }
  5016. .align-items-sm-baseline {
  5017. align-items: baseline !important; }
  5018. .align-items-sm-stretch {
  5019. align-items: stretch !important; }
  5020. .align-content-sm-start {
  5021. align-content: flex-start !important; }
  5022. .align-content-sm-end {
  5023. align-content: flex-end !important; }
  5024. .align-content-sm-center {
  5025. align-content: center !important; }
  5026. .align-content-sm-between {
  5027. align-content: space-between !important; }
  5028. .align-content-sm-around {
  5029. align-content: space-around !important; }
  5030. .align-content-sm-stretch {
  5031. align-content: stretch !important; }
  5032. .align-self-sm-auto {
  5033. align-self: auto !important; }
  5034. .align-self-sm-start {
  5035. align-self: flex-start !important; }
  5036. .align-self-sm-end {
  5037. align-self: flex-end !important; }
  5038. .align-self-sm-center {
  5039. align-self: center !important; }
  5040. .align-self-sm-baseline {
  5041. align-self: baseline !important; }
  5042. .align-self-sm-stretch {
  5043. align-self: stretch !important; }
  5044. .order-sm-first {
  5045. order: -1 !important; }
  5046. .order-sm-0 {
  5047. order: 0 !important; }
  5048. .order-sm-1 {
  5049. order: 1 !important; }
  5050. .order-sm-2 {
  5051. order: 2 !important; }
  5052. .order-sm-3 {
  5053. order: 3 !important; }
  5054. .order-sm-4 {
  5055. order: 4 !important; }
  5056. .order-sm-5 {
  5057. order: 5 !important; }
  5058. .order-sm-last {
  5059. order: 6 !important; }
  5060. .m-sm-0 {
  5061. margin: 0 !important; }
  5062. .m-sm-1 {
  5063. margin: 0.25rem !important; }
  5064. .m-sm-2 {
  5065. margin: 0.5rem !important; }
  5066. .m-sm-3 {
  5067. margin: 1rem !important; }
  5068. .m-sm-4 {
  5069. margin: 1.5rem !important; }
  5070. .m-sm-5 {
  5071. margin: 3rem !important; }
  5072. .m-sm-auto {
  5073. margin: auto !important; }
  5074. .mx-sm-0 {
  5075. margin-right: 0 !important;
  5076. margin-left: 0 !important; }
  5077. .mx-sm-1 {
  5078. margin-right: 0.25rem !important;
  5079. margin-left: 0.25rem !important; }
  5080. .mx-sm-2 {
  5081. margin-right: 0.5rem !important;
  5082. margin-left: 0.5rem !important; }
  5083. .mx-sm-3 {
  5084. margin-right: 1rem !important;
  5085. margin-left: 1rem !important; }
  5086. .mx-sm-4 {
  5087. margin-right: 1.5rem !important;
  5088. margin-left: 1.5rem !important; }
  5089. .mx-sm-5 {
  5090. margin-right: 3rem !important;
  5091. margin-left: 3rem !important; }
  5092. .mx-sm-auto {
  5093. margin-right: auto !important;
  5094. margin-left: auto !important; }
  5095. .my-sm-0 {
  5096. margin-top: 0 !important;
  5097. margin-bottom: 0 !important; }
  5098. .my-sm-1 {
  5099. margin-top: 0.25rem !important;
  5100. margin-bottom: 0.25rem !important; }
  5101. .my-sm-2 {
  5102. margin-top: 0.5rem !important;
  5103. margin-bottom: 0.5rem !important; }
  5104. .my-sm-3 {
  5105. margin-top: 1rem !important;
  5106. margin-bottom: 1rem !important; }
  5107. .my-sm-4 {
  5108. margin-top: 1.5rem !important;
  5109. margin-bottom: 1.5rem !important; }
  5110. .my-sm-5 {
  5111. margin-top: 3rem !important;
  5112. margin-bottom: 3rem !important; }
  5113. .my-sm-auto {
  5114. margin-top: auto !important;
  5115. margin-bottom: auto !important; }
  5116. .mt-sm-0 {
  5117. margin-top: 0 !important; }
  5118. .mt-sm-1 {
  5119. margin-top: 0.25rem !important; }
  5120. .mt-sm-2 {
  5121. margin-top: 0.5rem !important; }
  5122. .mt-sm-3 {
  5123. margin-top: 1rem !important; }
  5124. .mt-sm-4 {
  5125. margin-top: 1.5rem !important; }
  5126. .mt-sm-5 {
  5127. margin-top: 3rem !important; }
  5128. .mt-sm-auto {
  5129. margin-top: auto !important; }
  5130. .me-sm-0 {
  5131. margin-right: 0 !important; }
  5132. .me-sm-1 {
  5133. margin-right: 0.25rem !important; }
  5134. .me-sm-2 {
  5135. margin-right: 0.5rem !important; }
  5136. .me-sm-3 {
  5137. margin-right: 1rem !important; }
  5138. .me-sm-4 {
  5139. margin-right: 1.5rem !important; }
  5140. .me-sm-5 {
  5141. margin-right: 3rem !important; }
  5142. .me-sm-auto {
  5143. margin-right: auto !important; }
  5144. .mb-sm-0 {
  5145. margin-bottom: 0 !important; }
  5146. .mb-sm-1 {
  5147. margin-bottom: 0.25rem !important; }
  5148. .mb-sm-2 {
  5149. margin-bottom: 0.5rem !important; }
  5150. .mb-sm-3 {
  5151. margin-bottom: 1rem !important; }
  5152. .mb-sm-4 {
  5153. margin-bottom: 1.5rem !important; }
  5154. .mb-sm-5 {
  5155. margin-bottom: 3rem !important; }
  5156. .mb-sm-auto {
  5157. margin-bottom: auto !important; }
  5158. .ms-sm-0 {
  5159. margin-left: 0 !important; }
  5160. .ms-sm-1 {
  5161. margin-left: 0.25rem !important; }
  5162. .ms-sm-2 {
  5163. margin-left: 0.5rem !important; }
  5164. .ms-sm-3 {
  5165. margin-left: 1rem !important; }
  5166. .ms-sm-4 {
  5167. margin-left: 1.5rem !important; }
  5168. .ms-sm-5 {
  5169. margin-left: 3rem !important; }
  5170. .ms-sm-auto {
  5171. margin-left: auto !important; }
  5172. .p-sm-0 {
  5173. padding: 0 !important; }
  5174. .p-sm-1 {
  5175. padding: 0.25rem !important; }
  5176. .p-sm-2 {
  5177. padding: 0.5rem !important; }
  5178. .p-sm-3 {
  5179. padding: 1rem !important; }
  5180. .p-sm-4 {
  5181. padding: 1.5rem !important; }
  5182. .p-sm-5 {
  5183. padding: 3rem !important; }
  5184. .px-sm-0 {
  5185. padding-right: 0 !important;
  5186. padding-left: 0 !important; }
  5187. .px-sm-1 {
  5188. padding-right: 0.25rem !important;
  5189. padding-left: 0.25rem !important; }
  5190. .px-sm-2 {
  5191. padding-right: 0.5rem !important;
  5192. padding-left: 0.5rem !important; }
  5193. .px-sm-3 {
  5194. padding-right: 1rem !important;
  5195. padding-left: 1rem !important; }
  5196. .px-sm-4 {
  5197. padding-right: 1.5rem !important;
  5198. padding-left: 1.5rem !important; }
  5199. .px-sm-5 {
  5200. padding-right: 3rem !important;
  5201. padding-left: 3rem !important; }
  5202. .py-sm-0 {
  5203. padding-top: 0 !important;
  5204. padding-bottom: 0 !important; }
  5205. .py-sm-1 {
  5206. padding-top: 0.25rem !important;
  5207. padding-bottom: 0.25rem !important; }
  5208. .py-sm-2 {
  5209. padding-top: 0.5rem !important;
  5210. padding-bottom: 0.5rem !important; }
  5211. .py-sm-3 {
  5212. padding-top: 1rem !important;
  5213. padding-bottom: 1rem !important; }
  5214. .py-sm-4 {
  5215. padding-top: 1.5rem !important;
  5216. padding-bottom: 1.5rem !important; }
  5217. .py-sm-5 {
  5218. padding-top: 3rem !important;
  5219. padding-bottom: 3rem !important; }
  5220. .pt-sm-0 {
  5221. padding-top: 0 !important; }
  5222. .pt-sm-1 {
  5223. padding-top: 0.25rem !important; }
  5224. .pt-sm-2 {
  5225. padding-top: 0.5rem !important; }
  5226. .pt-sm-3 {
  5227. padding-top: 1rem !important; }
  5228. .pt-sm-4 {
  5229. padding-top: 1.5rem !important; }
  5230. .pt-sm-5 {
  5231. padding-top: 3rem !important; }
  5232. .pe-sm-0 {
  5233. padding-right: 0 !important; }
  5234. .pe-sm-1 {
  5235. padding-right: 0.25rem !important; }
  5236. .pe-sm-2 {
  5237. padding-right: 0.5rem !important; }
  5238. .pe-sm-3 {
  5239. padding-right: 1rem !important; }
  5240. .pe-sm-4 {
  5241. padding-right: 1.5rem !important; }
  5242. .pe-sm-5 {
  5243. padding-right: 3rem !important; }
  5244. .pb-sm-0 {
  5245. padding-bottom: 0 !important; }
  5246. .pb-sm-1 {
  5247. padding-bottom: 0.25rem !important; }
  5248. .pb-sm-2 {
  5249. padding-bottom: 0.5rem !important; }
  5250. .pb-sm-3 {
  5251. padding-bottom: 1rem !important; }
  5252. .pb-sm-4 {
  5253. padding-bottom: 1.5rem !important; }
  5254. .pb-sm-5 {
  5255. padding-bottom: 3rem !important; }
  5256. .ps-sm-0 {
  5257. padding-left: 0 !important; }
  5258. .ps-sm-1 {
  5259. padding-left: 0.25rem !important; }
  5260. .ps-sm-2 {
  5261. padding-left: 0.5rem !important; }
  5262. .ps-sm-3 {
  5263. padding-left: 1rem !important; }
  5264. .ps-sm-4 {
  5265. padding-left: 1.5rem !important; }
  5266. .ps-sm-5 {
  5267. padding-left: 3rem !important; }
  5268. .text-sm-start {
  5269. text-align: left !important; }
  5270. .text-sm-end {
  5271. text-align: right !important; }
  5272. .text-sm-center {
  5273. text-align: center !important; } }
  5274. @media (min-width: 768px) {
  5275. .float-md-start {
  5276. float: left !important; }
  5277. .float-md-end {
  5278. float: right !important; }
  5279. .float-md-none {
  5280. float: none !important; }
  5281. .d-md-inline {
  5282. display: inline !important; }
  5283. .d-md-inline-block {
  5284. display: inline-block !important; }
  5285. .d-md-block {
  5286. display: block !important; }
  5287. .d-md-grid {
  5288. display: grid !important; }
  5289. .d-md-table {
  5290. display: table !important; }
  5291. .d-md-table-row {
  5292. display: table-row !important; }
  5293. .d-md-table-cell {
  5294. display: table-cell !important; }
  5295. .d-md-flex {
  5296. display: flex !important; }
  5297. .d-md-inline-flex {
  5298. display: inline-flex !important; }
  5299. .d-md-none {
  5300. display: none !important; }
  5301. .flex-md-fill {
  5302. flex: 1 1 auto !important; }
  5303. .flex-md-row {
  5304. flex-direction: row !important; }
  5305. .flex-md-column {
  5306. flex-direction: column !important; }
  5307. .flex-md-row-reverse {
  5308. flex-direction: row-reverse !important; }
  5309. .flex-md-column-reverse {
  5310. flex-direction: column-reverse !important; }
  5311. .flex-md-grow-0 {
  5312. flex-grow: 0 !important; }
  5313. .flex-md-grow-1 {
  5314. flex-grow: 1 !important; }
  5315. .flex-md-shrink-0 {
  5316. flex-shrink: 0 !important; }
  5317. .flex-md-shrink-1 {
  5318. flex-shrink: 1 !important; }
  5319. .flex-md-wrap {
  5320. flex-wrap: wrap !important; }
  5321. .flex-md-nowrap {
  5322. flex-wrap: nowrap !important; }
  5323. .flex-md-wrap-reverse {
  5324. flex-wrap: wrap-reverse !important; }
  5325. .gap-md-0 {
  5326. gap: 0 !important; }
  5327. .gap-md-1 {
  5328. gap: 0.25rem !important; }
  5329. .gap-md-2 {
  5330. gap: 0.5rem !important; }
  5331. .gap-md-3 {
  5332. gap: 1rem !important; }
  5333. .gap-md-4 {
  5334. gap: 1.5rem !important; }
  5335. .gap-md-5 {
  5336. gap: 3rem !important; }
  5337. .justify-content-md-start {
  5338. justify-content: flex-start !important; }
  5339. .justify-content-md-end {
  5340. justify-content: flex-end !important; }
  5341. .justify-content-md-center {
  5342. justify-content: center !important; }
  5343. .justify-content-md-between {
  5344. justify-content: space-between !important; }
  5345. .justify-content-md-around {
  5346. justify-content: space-around !important; }
  5347. .justify-content-md-evenly {
  5348. justify-content: space-evenly !important; }
  5349. .align-items-md-start {
  5350. align-items: flex-start !important; }
  5351. .align-items-md-end {
  5352. align-items: flex-end !important; }
  5353. .align-items-md-center {
  5354. align-items: center !important; }
  5355. .align-items-md-baseline {
  5356. align-items: baseline !important; }
  5357. .align-items-md-stretch {
  5358. align-items: stretch !important; }
  5359. .align-content-md-start {
  5360. align-content: flex-start !important; }
  5361. .align-content-md-end {
  5362. align-content: flex-end !important; }
  5363. .align-content-md-center {
  5364. align-content: center !important; }
  5365. .align-content-md-between {
  5366. align-content: space-between !important; }
  5367. .align-content-md-around {
  5368. align-content: space-around !important; }
  5369. .align-content-md-stretch {
  5370. align-content: stretch !important; }
  5371. .align-self-md-auto {
  5372. align-self: auto !important; }
  5373. .align-self-md-start {
  5374. align-self: flex-start !important; }
  5375. .align-self-md-end {
  5376. align-self: flex-end !important; }
  5377. .align-self-md-center {
  5378. align-self: center !important; }
  5379. .align-self-md-baseline {
  5380. align-self: baseline !important; }
  5381. .align-self-md-stretch {
  5382. align-self: stretch !important; }
  5383. .order-md-first {
  5384. order: -1 !important; }
  5385. .order-md-0 {
  5386. order: 0 !important; }
  5387. .order-md-1 {
  5388. order: 1 !important; }
  5389. .order-md-2 {
  5390. order: 2 !important; }
  5391. .order-md-3 {
  5392. order: 3 !important; }
  5393. .order-md-4 {
  5394. order: 4 !important; }
  5395. .order-md-5 {
  5396. order: 5 !important; }
  5397. .order-md-last {
  5398. order: 6 !important; }
  5399. .m-md-0 {
  5400. margin: 0 !important; }
  5401. .m-md-1 {
  5402. margin: 0.25rem !important; }
  5403. .m-md-2 {
  5404. margin: 0.5rem !important; }
  5405. .m-md-3 {
  5406. margin: 1rem !important; }
  5407. .m-md-4 {
  5408. margin: 1.5rem !important; }
  5409. .m-md-5 {
  5410. margin: 3rem !important; }
  5411. .m-md-auto {
  5412. margin: auto !important; }
  5413. .mx-md-0 {
  5414. margin-right: 0 !important;
  5415. margin-left: 0 !important; }
  5416. .mx-md-1 {
  5417. margin-right: 0.25rem !important;
  5418. margin-left: 0.25rem !important; }
  5419. .mx-md-2 {
  5420. margin-right: 0.5rem !important;
  5421. margin-left: 0.5rem !important; }
  5422. .mx-md-3 {
  5423. margin-right: 1rem !important;
  5424. margin-left: 1rem !important; }
  5425. .mx-md-4 {
  5426. margin-right: 1.5rem !important;
  5427. margin-left: 1.5rem !important; }
  5428. .mx-md-5 {
  5429. margin-right: 3rem !important;
  5430. margin-left: 3rem !important; }
  5431. .mx-md-auto {
  5432. margin-right: auto !important;
  5433. margin-left: auto !important; }
  5434. .my-md-0 {
  5435. margin-top: 0 !important;
  5436. margin-bottom: 0 !important; }
  5437. .my-md-1 {
  5438. margin-top: 0.25rem !important;
  5439. margin-bottom: 0.25rem !important; }
  5440. .my-md-2 {
  5441. margin-top: 0.5rem !important;
  5442. margin-bottom: 0.5rem !important; }
  5443. .my-md-3 {
  5444. margin-top: 1rem !important;
  5445. margin-bottom: 1rem !important; }
  5446. .my-md-4 {
  5447. margin-top: 1.5rem !important;
  5448. margin-bottom: 1.5rem !important; }
  5449. .my-md-5 {
  5450. margin-top: 3rem !important;
  5451. margin-bottom: 3rem !important; }
  5452. .my-md-auto {
  5453. margin-top: auto !important;
  5454. margin-bottom: auto !important; }
  5455. .mt-md-0 {
  5456. margin-top: 0 !important; }
  5457. .mt-md-1 {
  5458. margin-top: 0.25rem !important; }
  5459. .mt-md-2 {
  5460. margin-top: 0.5rem !important; }
  5461. .mt-md-3 {
  5462. margin-top: 1rem !important; }
  5463. .mt-md-4 {
  5464. margin-top: 1.5rem !important; }
  5465. .mt-md-5 {
  5466. margin-top: 3rem !important; }
  5467. .mt-md-auto {
  5468. margin-top: auto !important; }
  5469. .me-md-0 {
  5470. margin-right: 0 !important; }
  5471. .me-md-1 {
  5472. margin-right: 0.25rem !important; }
  5473. .me-md-2 {
  5474. margin-right: 0.5rem !important; }
  5475. .me-md-3 {
  5476. margin-right: 1rem !important; }
  5477. .me-md-4 {
  5478. margin-right: 1.5rem !important; }
  5479. .me-md-5 {
  5480. margin-right: 3rem !important; }
  5481. .me-md-auto {
  5482. margin-right: auto !important; }
  5483. .mb-md-0 {
  5484. margin-bottom: 0 !important; }
  5485. .mb-md-1 {
  5486. margin-bottom: 0.25rem !important; }
  5487. .mb-md-2 {
  5488. margin-bottom: 0.5rem !important; }
  5489. .mb-md-3 {
  5490. margin-bottom: 1rem !important; }
  5491. .mb-md-4 {
  5492. margin-bottom: 1.5rem !important; }
  5493. .mb-md-5 {
  5494. margin-bottom: 3rem !important; }
  5495. .mb-md-auto {
  5496. margin-bottom: auto !important; }
  5497. .ms-md-0 {
  5498. margin-left: 0 !important; }
  5499. .ms-md-1 {
  5500. margin-left: 0.25rem !important; }
  5501. .ms-md-2 {
  5502. margin-left: 0.5rem !important; }
  5503. .ms-md-3 {
  5504. margin-left: 1rem !important; }
  5505. .ms-md-4 {
  5506. margin-left: 1.5rem !important; }
  5507. .ms-md-5 {
  5508. margin-left: 3rem !important; }
  5509. .ms-md-auto {
  5510. margin-left: auto !important; }
  5511. .p-md-0 {
  5512. padding: 0 !important; }
  5513. .p-md-1 {
  5514. padding: 0.25rem !important; }
  5515. .p-md-2 {
  5516. padding: 0.5rem !important; }
  5517. .p-md-3 {
  5518. padding: 1rem !important; }
  5519. .p-md-4 {
  5520. padding: 1.5rem !important; }
  5521. .p-md-5 {
  5522. padding: 3rem !important; }
  5523. .px-md-0 {
  5524. padding-right: 0 !important;
  5525. padding-left: 0 !important; }
  5526. .px-md-1 {
  5527. padding-right: 0.25rem !important;
  5528. padding-left: 0.25rem !important; }
  5529. .px-md-2 {
  5530. padding-right: 0.5rem !important;
  5531. padding-left: 0.5rem !important; }
  5532. .px-md-3 {
  5533. padding-right: 1rem !important;
  5534. padding-left: 1rem !important; }
  5535. .px-md-4 {
  5536. padding-right: 1.5rem !important;
  5537. padding-left: 1.5rem !important; }
  5538. .px-md-5 {
  5539. padding-right: 3rem !important;
  5540. padding-left: 3rem !important; }
  5541. .py-md-0 {
  5542. padding-top: 0 !important;
  5543. padding-bottom: 0 !important; }
  5544. .py-md-1 {
  5545. padding-top: 0.25rem !important;
  5546. padding-bottom: 0.25rem !important; }
  5547. .py-md-2 {
  5548. padding-top: 0.5rem !important;
  5549. padding-bottom: 0.5rem !important; }
  5550. .py-md-3 {
  5551. padding-top: 1rem !important;
  5552. padding-bottom: 1rem !important; }
  5553. .py-md-4 {
  5554. padding-top: 1.5rem !important;
  5555. padding-bottom: 1.5rem !important; }
  5556. .py-md-5 {
  5557. padding-top: 3rem !important;
  5558. padding-bottom: 3rem !important; }
  5559. .pt-md-0 {
  5560. padding-top: 0 !important; }
  5561. .pt-md-1 {
  5562. padding-top: 0.25rem !important; }
  5563. .pt-md-2 {
  5564. padding-top: 0.5rem !important; }
  5565. .pt-md-3 {
  5566. padding-top: 1rem !important; }
  5567. .pt-md-4 {
  5568. padding-top: 1.5rem !important; }
  5569. .pt-md-5 {
  5570. padding-top: 3rem !important; }
  5571. .pe-md-0 {
  5572. padding-right: 0 !important; }
  5573. .pe-md-1 {
  5574. padding-right: 0.25rem !important; }
  5575. .pe-md-2 {
  5576. padding-right: 0.5rem !important; }
  5577. .pe-md-3 {
  5578. padding-right: 1rem !important; }
  5579. .pe-md-4 {
  5580. padding-right: 1.5rem !important; }
  5581. .pe-md-5 {
  5582. padding-right: 3rem !important; }
  5583. .pb-md-0 {
  5584. padding-bottom: 0 !important; }
  5585. .pb-md-1 {
  5586. padding-bottom: 0.25rem !important; }
  5587. .pb-md-2 {
  5588. padding-bottom: 0.5rem !important; }
  5589. .pb-md-3 {
  5590. padding-bottom: 1rem !important; }
  5591. .pb-md-4 {
  5592. padding-bottom: 1.5rem !important; }
  5593. .pb-md-5 {
  5594. padding-bottom: 3rem !important; }
  5595. .ps-md-0 {
  5596. padding-left: 0 !important; }
  5597. .ps-md-1 {
  5598. padding-left: 0.25rem !important; }
  5599. .ps-md-2 {
  5600. padding-left: 0.5rem !important; }
  5601. .ps-md-3 {
  5602. padding-left: 1rem !important; }
  5603. .ps-md-4 {
  5604. padding-left: 1.5rem !important; }
  5605. .ps-md-5 {
  5606. padding-left: 3rem !important; }
  5607. .text-md-start {
  5608. text-align: left !important; }
  5609. .text-md-end {
  5610. text-align: right !important; }
  5611. .text-md-center {
  5612. text-align: center !important; } }
  5613. @media (min-width: 992px) {
  5614. .float-lg-start {
  5615. float: left !important; }
  5616. .float-lg-end {
  5617. float: right !important; }
  5618. .float-lg-none {
  5619. float: none !important; }
  5620. .d-lg-inline {
  5621. display: inline !important; }
  5622. .d-lg-inline-block {
  5623. display: inline-block !important; }
  5624. .d-lg-block {
  5625. display: block !important; }
  5626. .d-lg-grid {
  5627. display: grid !important; }
  5628. .d-lg-table {
  5629. display: table !important; }
  5630. .d-lg-table-row {
  5631. display: table-row !important; }
  5632. .d-lg-table-cell {
  5633. display: table-cell !important; }
  5634. .d-lg-flex {
  5635. display: flex !important; }
  5636. .d-lg-inline-flex {
  5637. display: inline-flex !important; }
  5638. .d-lg-none {
  5639. display: none !important; }
  5640. .flex-lg-fill {
  5641. flex: 1 1 auto !important; }
  5642. .flex-lg-row {
  5643. flex-direction: row !important; }
  5644. .flex-lg-column {
  5645. flex-direction: column !important; }
  5646. .flex-lg-row-reverse {
  5647. flex-direction: row-reverse !important; }
  5648. .flex-lg-column-reverse {
  5649. flex-direction: column-reverse !important; }
  5650. .flex-lg-grow-0 {
  5651. flex-grow: 0 !important; }
  5652. .flex-lg-grow-1 {
  5653. flex-grow: 1 !important; }
  5654. .flex-lg-shrink-0 {
  5655. flex-shrink: 0 !important; }
  5656. .flex-lg-shrink-1 {
  5657. flex-shrink: 1 !important; }
  5658. .flex-lg-wrap {
  5659. flex-wrap: wrap !important; }
  5660. .flex-lg-nowrap {
  5661. flex-wrap: nowrap !important; }
  5662. .flex-lg-wrap-reverse {
  5663. flex-wrap: wrap-reverse !important; }
  5664. .gap-lg-0 {
  5665. gap: 0 !important; }
  5666. .gap-lg-1 {
  5667. gap: 0.25rem !important; }
  5668. .gap-lg-2 {
  5669. gap: 0.5rem !important; }
  5670. .gap-lg-3 {
  5671. gap: 1rem !important; }
  5672. .gap-lg-4 {
  5673. gap: 1.5rem !important; }
  5674. .gap-lg-5 {
  5675. gap: 3rem !important; }
  5676. .justify-content-lg-start {
  5677. justify-content: flex-start !important; }
  5678. .justify-content-lg-end {
  5679. justify-content: flex-end !important; }
  5680. .justify-content-lg-center {
  5681. justify-content: center !important; }
  5682. .justify-content-lg-between {
  5683. justify-content: space-between !important; }
  5684. .justify-content-lg-around {
  5685. justify-content: space-around !important; }
  5686. .justify-content-lg-evenly {
  5687. justify-content: space-evenly !important; }
  5688. .align-items-lg-start {
  5689. align-items: flex-start !important; }
  5690. .align-items-lg-end {
  5691. align-items: flex-end !important; }
  5692. .align-items-lg-center {
  5693. align-items: center !important; }
  5694. .align-items-lg-baseline {
  5695. align-items: baseline !important; }
  5696. .align-items-lg-stretch {
  5697. align-items: stretch !important; }
  5698. .align-content-lg-start {
  5699. align-content: flex-start !important; }
  5700. .align-content-lg-end {
  5701. align-content: flex-end !important; }
  5702. .align-content-lg-center {
  5703. align-content: center !important; }
  5704. .align-content-lg-between {
  5705. align-content: space-between !important; }
  5706. .align-content-lg-around {
  5707. align-content: space-around !important; }
  5708. .align-content-lg-stretch {
  5709. align-content: stretch !important; }
  5710. .align-self-lg-auto {
  5711. align-self: auto !important; }
  5712. .align-self-lg-start {
  5713. align-self: flex-start !important; }
  5714. .align-self-lg-end {
  5715. align-self: flex-end !important; }
  5716. .align-self-lg-center {
  5717. align-self: center !important; }
  5718. .align-self-lg-baseline {
  5719. align-self: baseline !important; }
  5720. .align-self-lg-stretch {
  5721. align-self: stretch !important; }
  5722. .order-lg-first {
  5723. order: -1 !important; }
  5724. .order-lg-0 {
  5725. order: 0 !important; }
  5726. .order-lg-1 {
  5727. order: 1 !important; }
  5728. .order-lg-2 {
  5729. order: 2 !important; }
  5730. .order-lg-3 {
  5731. order: 3 !important; }
  5732. .order-lg-4 {
  5733. order: 4 !important; }
  5734. .order-lg-5 {
  5735. order: 5 !important; }
  5736. .order-lg-last {
  5737. order: 6 !important; }
  5738. .m-lg-0 {
  5739. margin: 0 !important; }
  5740. .m-lg-1 {
  5741. margin: 0.25rem !important; }
  5742. .m-lg-2 {
  5743. margin: 0.5rem !important; }
  5744. .m-lg-3 {
  5745. margin: 1rem !important; }
  5746. .m-lg-4 {
  5747. margin: 1.5rem !important; }
  5748. .m-lg-5 {
  5749. margin: 3rem !important; }
  5750. .m-lg-auto {
  5751. margin: auto !important; }
  5752. .mx-lg-0 {
  5753. margin-right: 0 !important;
  5754. margin-left: 0 !important; }
  5755. .mx-lg-1 {
  5756. margin-right: 0.25rem !important;
  5757. margin-left: 0.25rem !important; }
  5758. .mx-lg-2 {
  5759. margin-right: 0.5rem !important;
  5760. margin-left: 0.5rem !important; }
  5761. .mx-lg-3 {
  5762. margin-right: 1rem !important;
  5763. margin-left: 1rem !important; }
  5764. .mx-lg-4 {
  5765. margin-right: 1.5rem !important;
  5766. margin-left: 1.5rem !important; }
  5767. .mx-lg-5 {
  5768. margin-right: 3rem !important;
  5769. margin-left: 3rem !important; }
  5770. .mx-lg-auto {
  5771. margin-right: auto !important;
  5772. margin-left: auto !important; }
  5773. .my-lg-0 {
  5774. margin-top: 0 !important;
  5775. margin-bottom: 0 !important; }
  5776. .my-lg-1 {
  5777. margin-top: 0.25rem !important;
  5778. margin-bottom: 0.25rem !important; }
  5779. .my-lg-2 {
  5780. margin-top: 0.5rem !important;
  5781. margin-bottom: 0.5rem !important; }
  5782. .my-lg-3 {
  5783. margin-top: 1rem !important;
  5784. margin-bottom: 1rem !important; }
  5785. .my-lg-4 {
  5786. margin-top: 1.5rem !important;
  5787. margin-bottom: 1.5rem !important; }
  5788. .my-lg-5 {
  5789. margin-top: 3rem !important;
  5790. margin-bottom: 3rem !important; }
  5791. .my-lg-auto {
  5792. margin-top: auto !important;
  5793. margin-bottom: auto !important; }
  5794. .mt-lg-0 {
  5795. margin-top: 0 !important; }
  5796. .mt-lg-1 {
  5797. margin-top: 0.25rem !important; }
  5798. .mt-lg-2 {
  5799. margin-top: 0.5rem !important; }
  5800. .mt-lg-3 {
  5801. margin-top: 1rem !important; }
  5802. .mt-lg-4 {
  5803. margin-top: 1.5rem !important; }
  5804. .mt-lg-5 {
  5805. margin-top: 3rem !important; }
  5806. .mt-lg-auto {
  5807. margin-top: auto !important; }
  5808. .me-lg-0 {
  5809. margin-right: 0 !important; }
  5810. .me-lg-1 {
  5811. margin-right: 0.25rem !important; }
  5812. .me-lg-2 {
  5813. margin-right: 0.5rem !important; }
  5814. .me-lg-3 {
  5815. margin-right: 1rem !important; }
  5816. .me-lg-4 {
  5817. margin-right: 1.5rem !important; }
  5818. .me-lg-5 {
  5819. margin-right: 3rem !important; }
  5820. .me-lg-auto {
  5821. margin-right: auto !important; }
  5822. .mb-lg-0 {
  5823. margin-bottom: 0 !important; }
  5824. .mb-lg-1 {
  5825. margin-bottom: 0.25rem !important; }
  5826. .mb-lg-2 {
  5827. margin-bottom: 0.5rem !important; }
  5828. .mb-lg-3 {
  5829. margin-bottom: 1rem !important; }
  5830. .mb-lg-4 {
  5831. margin-bottom: 1.5rem !important; }
  5832. .mb-lg-5 {
  5833. margin-bottom: 3rem !important; }
  5834. .mb-lg-auto {
  5835. margin-bottom: auto !important; }
  5836. .ms-lg-0 {
  5837. margin-left: 0 !important; }
  5838. .ms-lg-1 {
  5839. margin-left: 0.25rem !important; }
  5840. .ms-lg-2 {
  5841. margin-left: 0.5rem !important; }
  5842. .ms-lg-3 {
  5843. margin-left: 1rem !important; }
  5844. .ms-lg-4 {
  5845. margin-left: 1.5rem !important; }
  5846. .ms-lg-5 {
  5847. margin-left: 3rem !important; }
  5848. .ms-lg-auto {
  5849. margin-left: auto !important; }
  5850. .p-lg-0 {
  5851. padding: 0 !important; }
  5852. .p-lg-1 {
  5853. padding: 0.25rem !important; }
  5854. .p-lg-2 {
  5855. padding: 0.5rem !important; }
  5856. .p-lg-3 {
  5857. padding: 1rem !important; }
  5858. .p-lg-4 {
  5859. padding: 1.5rem !important; }
  5860. .p-lg-5 {
  5861. padding: 3rem !important; }
  5862. .px-lg-0 {
  5863. padding-right: 0 !important;
  5864. padding-left: 0 !important; }
  5865. .px-lg-1 {
  5866. padding-right: 0.25rem !important;
  5867. padding-left: 0.25rem !important; }
  5868. .px-lg-2 {
  5869. padding-right: 0.5rem !important;
  5870. padding-left: 0.5rem !important; }
  5871. .px-lg-3 {
  5872. padding-right: 1rem !important;
  5873. padding-left: 1rem !important; }
  5874. .px-lg-4 {
  5875. padding-right: 1.5rem !important;
  5876. padding-left: 1.5rem !important; }
  5877. .px-lg-5 {
  5878. padding-right: 3rem !important;
  5879. padding-left: 3rem !important; }
  5880. .py-lg-0 {
  5881. padding-top: 0 !important;
  5882. padding-bottom: 0 !important; }
  5883. .py-lg-1 {
  5884. padding-top: 0.25rem !important;
  5885. padding-bottom: 0.25rem !important; }
  5886. .py-lg-2 {
  5887. padding-top: 0.5rem !important;
  5888. padding-bottom: 0.5rem !important; }
  5889. .py-lg-3 {
  5890. padding-top: 1rem !important;
  5891. padding-bottom: 1rem !important; }
  5892. .py-lg-4 {
  5893. padding-top: 1.5rem !important;
  5894. padding-bottom: 1.5rem !important; }
  5895. .py-lg-5 {
  5896. padding-top: 3rem !important;
  5897. padding-bottom: 3rem !important; }
  5898. .pt-lg-0 {
  5899. padding-top: 0 !important; }
  5900. .pt-lg-1 {
  5901. padding-top: 0.25rem !important; }
  5902. .pt-lg-2 {
  5903. padding-top: 0.5rem !important; }
  5904. .pt-lg-3 {
  5905. padding-top: 1rem !important; }
  5906. .pt-lg-4 {
  5907. padding-top: 1.5rem !important; }
  5908. .pt-lg-5 {
  5909. padding-top: 3rem !important; }
  5910. .pe-lg-0 {
  5911. padding-right: 0 !important; }
  5912. .pe-lg-1 {
  5913. padding-right: 0.25rem !important; }
  5914. .pe-lg-2 {
  5915. padding-right: 0.5rem !important; }
  5916. .pe-lg-3 {
  5917. padding-right: 1rem !important; }
  5918. .pe-lg-4 {
  5919. padding-right: 1.5rem !important; }
  5920. .pe-lg-5 {
  5921. padding-right: 3rem !important; }
  5922. .pb-lg-0 {
  5923. padding-bottom: 0 !important; }
  5924. .pb-lg-1 {
  5925. padding-bottom: 0.25rem !important; }
  5926. .pb-lg-2 {
  5927. padding-bottom: 0.5rem !important; }
  5928. .pb-lg-3 {
  5929. padding-bottom: 1rem !important; }
  5930. .pb-lg-4 {
  5931. padding-bottom: 1.5rem !important; }
  5932. .pb-lg-5 {
  5933. padding-bottom: 3rem !important; }
  5934. .ps-lg-0 {
  5935. padding-left: 0 !important; }
  5936. .ps-lg-1 {
  5937. padding-left: 0.25rem !important; }
  5938. .ps-lg-2 {
  5939. padding-left: 0.5rem !important; }
  5940. .ps-lg-3 {
  5941. padding-left: 1rem !important; }
  5942. .ps-lg-4 {
  5943. padding-left: 1.5rem !important; }
  5944. .ps-lg-5 {
  5945. padding-left: 3rem !important; }
  5946. .text-lg-start {
  5947. text-align: left !important; }
  5948. .text-lg-end {
  5949. text-align: right !important; }
  5950. .text-lg-center {
  5951. text-align: center !important; } }
  5952. @media (min-width: 1200px) {
  5953. .float-xl-start {
  5954. float: left !important; }
  5955. .float-xl-end {
  5956. float: right !important; }
  5957. .float-xl-none {
  5958. float: none !important; }
  5959. .d-xl-inline {
  5960. display: inline !important; }
  5961. .d-xl-inline-block {
  5962. display: inline-block !important; }
  5963. .d-xl-block {
  5964. display: block !important; }
  5965. .d-xl-grid {
  5966. display: grid !important; }
  5967. .d-xl-table {
  5968. display: table !important; }
  5969. .d-xl-table-row {
  5970. display: table-row !important; }
  5971. .d-xl-table-cell {
  5972. display: table-cell !important; }
  5973. .d-xl-flex {
  5974. display: flex !important; }
  5975. .d-xl-inline-flex {
  5976. display: inline-flex !important; }
  5977. .d-xl-none {
  5978. display: none !important; }
  5979. .flex-xl-fill {
  5980. flex: 1 1 auto !important; }
  5981. .flex-xl-row {
  5982. flex-direction: row !important; }
  5983. .flex-xl-column {
  5984. flex-direction: column !important; }
  5985. .flex-xl-row-reverse {
  5986. flex-direction: row-reverse !important; }
  5987. .flex-xl-column-reverse {
  5988. flex-direction: column-reverse !important; }
  5989. .flex-xl-grow-0 {
  5990. flex-grow: 0 !important; }
  5991. .flex-xl-grow-1 {
  5992. flex-grow: 1 !important; }
  5993. .flex-xl-shrink-0 {
  5994. flex-shrink: 0 !important; }
  5995. .flex-xl-shrink-1 {
  5996. flex-shrink: 1 !important; }
  5997. .flex-xl-wrap {
  5998. flex-wrap: wrap !important; }
  5999. .flex-xl-nowrap {
  6000. flex-wrap: nowrap !important; }
  6001. .flex-xl-wrap-reverse {
  6002. flex-wrap: wrap-reverse !important; }
  6003. .gap-xl-0 {
  6004. gap: 0 !important; }
  6005. .gap-xl-1 {
  6006. gap: 0.25rem !important; }
  6007. .gap-xl-2 {
  6008. gap: 0.5rem !important; }
  6009. .gap-xl-3 {
  6010. gap: 1rem !important; }
  6011. .gap-xl-4 {
  6012. gap: 1.5rem !important; }
  6013. .gap-xl-5 {
  6014. gap: 3rem !important; }
  6015. .justify-content-xl-start {
  6016. justify-content: flex-start !important; }
  6017. .justify-content-xl-end {
  6018. justify-content: flex-end !important; }
  6019. .justify-content-xl-center {
  6020. justify-content: center !important; }
  6021. .justify-content-xl-between {
  6022. justify-content: space-between !important; }
  6023. .justify-content-xl-around {
  6024. justify-content: space-around !important; }
  6025. .justify-content-xl-evenly {
  6026. justify-content: space-evenly !important; }
  6027. .align-items-xl-start {
  6028. align-items: flex-start !important; }
  6029. .align-items-xl-end {
  6030. align-items: flex-end !important; }
  6031. .align-items-xl-center {
  6032. align-items: center !important; }
  6033. .align-items-xl-baseline {
  6034. align-items: baseline !important; }
  6035. .align-items-xl-stretch {
  6036. align-items: stretch !important; }
  6037. .align-content-xl-start {
  6038. align-content: flex-start !important; }
  6039. .align-content-xl-end {
  6040. align-content: flex-end !important; }
  6041. .align-content-xl-center {
  6042. align-content: center !important; }
  6043. .align-content-xl-between {
  6044. align-content: space-between !important; }
  6045. .align-content-xl-around {
  6046. align-content: space-around !important; }
  6047. .align-content-xl-stretch {
  6048. align-content: stretch !important; }
  6049. .align-self-xl-auto {
  6050. align-self: auto !important; }
  6051. .align-self-xl-start {
  6052. align-self: flex-start !important; }
  6053. .align-self-xl-end {
  6054. align-self: flex-end !important; }
  6055. .align-self-xl-center {
  6056. align-self: center !important; }
  6057. .align-self-xl-baseline {
  6058. align-self: baseline !important; }
  6059. .align-self-xl-stretch {
  6060. align-self: stretch !important; }
  6061. .order-xl-first {
  6062. order: -1 !important; }
  6063. .order-xl-0 {
  6064. order: 0 !important; }
  6065. .order-xl-1 {
  6066. order: 1 !important; }
  6067. .order-xl-2 {
  6068. order: 2 !important; }
  6069. .order-xl-3 {
  6070. order: 3 !important; }
  6071. .order-xl-4 {
  6072. order: 4 !important; }
  6073. .order-xl-5 {
  6074. order: 5 !important; }
  6075. .order-xl-last {
  6076. order: 6 !important; }
  6077. .m-xl-0 {
  6078. margin: 0 !important; }
  6079. .m-xl-1 {
  6080. margin: 0.25rem !important; }
  6081. .m-xl-2 {
  6082. margin: 0.5rem !important; }
  6083. .m-xl-3 {
  6084. margin: 1rem !important; }
  6085. .m-xl-4 {
  6086. margin: 1.5rem !important; }
  6087. .m-xl-5 {
  6088. margin: 3rem !important; }
  6089. .m-xl-auto {
  6090. margin: auto !important; }
  6091. .mx-xl-0 {
  6092. margin-right: 0 !important;
  6093. margin-left: 0 !important; }
  6094. .mx-xl-1 {
  6095. margin-right: 0.25rem !important;
  6096. margin-left: 0.25rem !important; }
  6097. .mx-xl-2 {
  6098. margin-right: 0.5rem !important;
  6099. margin-left: 0.5rem !important; }
  6100. .mx-xl-3 {
  6101. margin-right: 1rem !important;
  6102. margin-left: 1rem !important; }
  6103. .mx-xl-4 {
  6104. margin-right: 1.5rem !important;
  6105. margin-left: 1.5rem !important; }
  6106. .mx-xl-5 {
  6107. margin-right: 3rem !important;
  6108. margin-left: 3rem !important; }
  6109. .mx-xl-auto {
  6110. margin-right: auto !important;
  6111. margin-left: auto !important; }
  6112. .my-xl-0 {
  6113. margin-top: 0 !important;
  6114. margin-bottom: 0 !important; }
  6115. .my-xl-1 {
  6116. margin-top: 0.25rem !important;
  6117. margin-bottom: 0.25rem !important; }
  6118. .my-xl-2 {
  6119. margin-top: 0.5rem !important;
  6120. margin-bottom: 0.5rem !important; }
  6121. .my-xl-3 {
  6122. margin-top: 1rem !important;
  6123. margin-bottom: 1rem !important; }
  6124. .my-xl-4 {
  6125. margin-top: 1.5rem !important;
  6126. margin-bottom: 1.5rem !important; }
  6127. .my-xl-5 {
  6128. margin-top: 3rem !important;
  6129. margin-bottom: 3rem !important; }
  6130. .my-xl-auto {
  6131. margin-top: auto !important;
  6132. margin-bottom: auto !important; }
  6133. .mt-xl-0 {
  6134. margin-top: 0 !important; }
  6135. .mt-xl-1 {
  6136. margin-top: 0.25rem !important; }
  6137. .mt-xl-2 {
  6138. margin-top: 0.5rem !important; }
  6139. .mt-xl-3 {
  6140. margin-top: 1rem !important; }
  6141. .mt-xl-4 {
  6142. margin-top: 1.5rem !important; }
  6143. .mt-xl-5 {
  6144. margin-top: 3rem !important; }
  6145. .mt-xl-auto {
  6146. margin-top: auto !important; }
  6147. .me-xl-0 {
  6148. margin-right: 0 !important; }
  6149. .me-xl-1 {
  6150. margin-right: 0.25rem !important; }
  6151. .me-xl-2 {
  6152. margin-right: 0.5rem !important; }
  6153. .me-xl-3 {
  6154. margin-right: 1rem !important; }
  6155. .me-xl-4 {
  6156. margin-right: 1.5rem !important; }
  6157. .me-xl-5 {
  6158. margin-right: 3rem !important; }
  6159. .me-xl-auto {
  6160. margin-right: auto !important; }
  6161. .mb-xl-0 {
  6162. margin-bottom: 0 !important; }
  6163. .mb-xl-1 {
  6164. margin-bottom: 0.25rem !important; }
  6165. .mb-xl-2 {
  6166. margin-bottom: 0.5rem !important; }
  6167. .mb-xl-3 {
  6168. margin-bottom: 1rem !important; }
  6169. .mb-xl-4 {
  6170. margin-bottom: 1.5rem !important; }
  6171. .mb-xl-5 {
  6172. margin-bottom: 3rem !important; }
  6173. .mb-xl-auto {
  6174. margin-bottom: auto !important; }
  6175. .ms-xl-0 {
  6176. margin-left: 0 !important; }
  6177. .ms-xl-1 {
  6178. margin-left: 0.25rem !important; }
  6179. .ms-xl-2 {
  6180. margin-left: 0.5rem !important; }
  6181. .ms-xl-3 {
  6182. margin-left: 1rem !important; }
  6183. .ms-xl-4 {
  6184. margin-left: 1.5rem !important; }
  6185. .ms-xl-5 {
  6186. margin-left: 3rem !important; }
  6187. .ms-xl-auto {
  6188. margin-left: auto !important; }
  6189. .p-xl-0 {
  6190. padding: 0 !important; }
  6191. .p-xl-1 {
  6192. padding: 0.25rem !important; }
  6193. .p-xl-2 {
  6194. padding: 0.5rem !important; }
  6195. .p-xl-3 {
  6196. padding: 1rem !important; }
  6197. .p-xl-4 {
  6198. padding: 1.5rem !important; }
  6199. .p-xl-5 {
  6200. padding: 3rem !important; }
  6201. .px-xl-0 {
  6202. padding-right: 0 !important;
  6203. padding-left: 0 !important; }
  6204. .px-xl-1 {
  6205. padding-right: 0.25rem !important;
  6206. padding-left: 0.25rem !important; }
  6207. .px-xl-2 {
  6208. padding-right: 0.5rem !important;
  6209. padding-left: 0.5rem !important; }
  6210. .px-xl-3 {
  6211. padding-right: 1rem !important;
  6212. padding-left: 1rem !important; }
  6213. .px-xl-4 {
  6214. padding-right: 1.5rem !important;
  6215. padding-left: 1.5rem !important; }
  6216. .px-xl-5 {
  6217. padding-right: 3rem !important;
  6218. padding-left: 3rem !important; }
  6219. .py-xl-0 {
  6220. padding-top: 0 !important;
  6221. padding-bottom: 0 !important; }
  6222. .py-xl-1 {
  6223. padding-top: 0.25rem !important;
  6224. padding-bottom: 0.25rem !important; }
  6225. .py-xl-2 {
  6226. padding-top: 0.5rem !important;
  6227. padding-bottom: 0.5rem !important; }
  6228. .py-xl-3 {
  6229. padding-top: 1rem !important;
  6230. padding-bottom: 1rem !important; }
  6231. .py-xl-4 {
  6232. padding-top: 1.5rem !important;
  6233. padding-bottom: 1.5rem !important; }
  6234. .py-xl-5 {
  6235. padding-top: 3rem !important;
  6236. padding-bottom: 3rem !important; }
  6237. .pt-xl-0 {
  6238. padding-top: 0 !important; }
  6239. .pt-xl-1 {
  6240. padding-top: 0.25rem !important; }
  6241. .pt-xl-2 {
  6242. padding-top: 0.5rem !important; }
  6243. .pt-xl-3 {
  6244. padding-top: 1rem !important; }
  6245. .pt-xl-4 {
  6246. padding-top: 1.5rem !important; }
  6247. .pt-xl-5 {
  6248. padding-top: 3rem !important; }
  6249. .pe-xl-0 {
  6250. padding-right: 0 !important; }
  6251. .pe-xl-1 {
  6252. padding-right: 0.25rem !important; }
  6253. .pe-xl-2 {
  6254. padding-right: 0.5rem !important; }
  6255. .pe-xl-3 {
  6256. padding-right: 1rem !important; }
  6257. .pe-xl-4 {
  6258. padding-right: 1.5rem !important; }
  6259. .pe-xl-5 {
  6260. padding-right: 3rem !important; }
  6261. .pb-xl-0 {
  6262. padding-bottom: 0 !important; }
  6263. .pb-xl-1 {
  6264. padding-bottom: 0.25rem !important; }
  6265. .pb-xl-2 {
  6266. padding-bottom: 0.5rem !important; }
  6267. .pb-xl-3 {
  6268. padding-bottom: 1rem !important; }
  6269. .pb-xl-4 {
  6270. padding-bottom: 1.5rem !important; }
  6271. .pb-xl-5 {
  6272. padding-bottom: 3rem !important; }
  6273. .ps-xl-0 {
  6274. padding-left: 0 !important; }
  6275. .ps-xl-1 {
  6276. padding-left: 0.25rem !important; }
  6277. .ps-xl-2 {
  6278. padding-left: 0.5rem !important; }
  6279. .ps-xl-3 {
  6280. padding-left: 1rem !important; }
  6281. .ps-xl-4 {
  6282. padding-left: 1.5rem !important; }
  6283. .ps-xl-5 {
  6284. padding-left: 3rem !important; }
  6285. .text-xl-start {
  6286. text-align: left !important; }
  6287. .text-xl-end {
  6288. text-align: right !important; }
  6289. .text-xl-center {
  6290. text-align: center !important; } }
  6291. @media (min-width: 1400px) {
  6292. .float-xxl-start {
  6293. float: left !important; }
  6294. .float-xxl-end {
  6295. float: right !important; }
  6296. .float-xxl-none {
  6297. float: none !important; }
  6298. .d-xxl-inline {
  6299. display: inline !important; }
  6300. .d-xxl-inline-block {
  6301. display: inline-block !important; }
  6302. .d-xxl-block {
  6303. display: block !important; }
  6304. .d-xxl-grid {
  6305. display: grid !important; }
  6306. .d-xxl-table {
  6307. display: table !important; }
  6308. .d-xxl-table-row {
  6309. display: table-row !important; }
  6310. .d-xxl-table-cell {
  6311. display: table-cell !important; }
  6312. .d-xxl-flex {
  6313. display: flex !important; }
  6314. .d-xxl-inline-flex {
  6315. display: inline-flex !important; }
  6316. .d-xxl-none {
  6317. display: none !important; }
  6318. .flex-xxl-fill {
  6319. flex: 1 1 auto !important; }
  6320. .flex-xxl-row {
  6321. flex-direction: row !important; }
  6322. .flex-xxl-column {
  6323. flex-direction: column !important; }
  6324. .flex-xxl-row-reverse {
  6325. flex-direction: row-reverse !important; }
  6326. .flex-xxl-column-reverse {
  6327. flex-direction: column-reverse !important; }
  6328. .flex-xxl-grow-0 {
  6329. flex-grow: 0 !important; }
  6330. .flex-xxl-grow-1 {
  6331. flex-grow: 1 !important; }
  6332. .flex-xxl-shrink-0 {
  6333. flex-shrink: 0 !important; }
  6334. .flex-xxl-shrink-1 {
  6335. flex-shrink: 1 !important; }
  6336. .flex-xxl-wrap {
  6337. flex-wrap: wrap !important; }
  6338. .flex-xxl-nowrap {
  6339. flex-wrap: nowrap !important; }
  6340. .flex-xxl-wrap-reverse {
  6341. flex-wrap: wrap-reverse !important; }
  6342. .gap-xxl-0 {
  6343. gap: 0 !important; }
  6344. .gap-xxl-1 {
  6345. gap: 0.25rem !important; }
  6346. .gap-xxl-2 {
  6347. gap: 0.5rem !important; }
  6348. .gap-xxl-3 {
  6349. gap: 1rem !important; }
  6350. .gap-xxl-4 {
  6351. gap: 1.5rem !important; }
  6352. .gap-xxl-5 {
  6353. gap: 3rem !important; }
  6354. .justify-content-xxl-start {
  6355. justify-content: flex-start !important; }
  6356. .justify-content-xxl-end {
  6357. justify-content: flex-end !important; }
  6358. .justify-content-xxl-center {
  6359. justify-content: center !important; }
  6360. .justify-content-xxl-between {
  6361. justify-content: space-between !important; }
  6362. .justify-content-xxl-around {
  6363. justify-content: space-around !important; }
  6364. .justify-content-xxl-evenly {
  6365. justify-content: space-evenly !important; }
  6366. .align-items-xxl-start {
  6367. align-items: flex-start !important; }
  6368. .align-items-xxl-end {
  6369. align-items: flex-end !important; }
  6370. .align-items-xxl-center {
  6371. align-items: center !important; }
  6372. .align-items-xxl-baseline {
  6373. align-items: baseline !important; }
  6374. .align-items-xxl-stretch {
  6375. align-items: stretch !important; }
  6376. .align-content-xxl-start {
  6377. align-content: flex-start !important; }
  6378. .align-content-xxl-end {
  6379. align-content: flex-end !important; }
  6380. .align-content-xxl-center {
  6381. align-content: center !important; }
  6382. .align-content-xxl-between {
  6383. align-content: space-between !important; }
  6384. .align-content-xxl-around {
  6385. align-content: space-around !important; }
  6386. .align-content-xxl-stretch {
  6387. align-content: stretch !important; }
  6388. .align-self-xxl-auto {
  6389. align-self: auto !important; }
  6390. .align-self-xxl-start {
  6391. align-self: flex-start !important; }
  6392. .align-self-xxl-end {
  6393. align-self: flex-end !important; }
  6394. .align-self-xxl-center {
  6395. align-self: center !important; }
  6396. .align-self-xxl-baseline {
  6397. align-self: baseline !important; }
  6398. .align-self-xxl-stretch {
  6399. align-self: stretch !important; }
  6400. .order-xxl-first {
  6401. order: -1 !important; }
  6402. .order-xxl-0 {
  6403. order: 0 !important; }
  6404. .order-xxl-1 {
  6405. order: 1 !important; }
  6406. .order-xxl-2 {
  6407. order: 2 !important; }
  6408. .order-xxl-3 {
  6409. order: 3 !important; }
  6410. .order-xxl-4 {
  6411. order: 4 !important; }
  6412. .order-xxl-5 {
  6413. order: 5 !important; }
  6414. .order-xxl-last {
  6415. order: 6 !important; }
  6416. .m-xxl-0 {
  6417. margin: 0 !important; }
  6418. .m-xxl-1 {
  6419. margin: 0.25rem !important; }
  6420. .m-xxl-2 {
  6421. margin: 0.5rem !important; }
  6422. .m-xxl-3 {
  6423. margin: 1rem !important; }
  6424. .m-xxl-4 {
  6425. margin: 1.5rem !important; }
  6426. .m-xxl-5 {
  6427. margin: 3rem !important; }
  6428. .m-xxl-auto {
  6429. margin: auto !important; }
  6430. .mx-xxl-0 {
  6431. margin-right: 0 !important;
  6432. margin-left: 0 !important; }
  6433. .mx-xxl-1 {
  6434. margin-right: 0.25rem !important;
  6435. margin-left: 0.25rem !important; }
  6436. .mx-xxl-2 {
  6437. margin-right: 0.5rem !important;
  6438. margin-left: 0.5rem !important; }
  6439. .mx-xxl-3 {
  6440. margin-right: 1rem !important;
  6441. margin-left: 1rem !important; }
  6442. .mx-xxl-4 {
  6443. margin-right: 1.5rem !important;
  6444. margin-left: 1.5rem !important; }
  6445. .mx-xxl-5 {
  6446. margin-right: 3rem !important;
  6447. margin-left: 3rem !important; }
  6448. .mx-xxl-auto {
  6449. margin-right: auto !important;
  6450. margin-left: auto !important; }
  6451. .my-xxl-0 {
  6452. margin-top: 0 !important;
  6453. margin-bottom: 0 !important; }
  6454. .my-xxl-1 {
  6455. margin-top: 0.25rem !important;
  6456. margin-bottom: 0.25rem !important; }
  6457. .my-xxl-2 {
  6458. margin-top: 0.5rem !important;
  6459. margin-bottom: 0.5rem !important; }
  6460. .my-xxl-3 {
  6461. margin-top: 1rem !important;
  6462. margin-bottom: 1rem !important; }
  6463. .my-xxl-4 {
  6464. margin-top: 1.5rem !important;
  6465. margin-bottom: 1.5rem !important; }
  6466. .my-xxl-5 {
  6467. margin-top: 3rem !important;
  6468. margin-bottom: 3rem !important; }
  6469. .my-xxl-auto {
  6470. margin-top: auto !important;
  6471. margin-bottom: auto !important; }
  6472. .mt-xxl-0 {
  6473. margin-top: 0 !important; }
  6474. .mt-xxl-1 {
  6475. margin-top: 0.25rem !important; }
  6476. .mt-xxl-2 {
  6477. margin-top: 0.5rem !important; }
  6478. .mt-xxl-3 {
  6479. margin-top: 1rem !important; }
  6480. .mt-xxl-4 {
  6481. margin-top: 1.5rem !important; }
  6482. .mt-xxl-5 {
  6483. margin-top: 3rem !important; }
  6484. .mt-xxl-auto {
  6485. margin-top: auto !important; }
  6486. .me-xxl-0 {
  6487. margin-right: 0 !important; }
  6488. .me-xxl-1 {
  6489. margin-right: 0.25rem !important; }
  6490. .me-xxl-2 {
  6491. margin-right: 0.5rem !important; }
  6492. .me-xxl-3 {
  6493. margin-right: 1rem !important; }
  6494. .me-xxl-4 {
  6495. margin-right: 1.5rem !important; }
  6496. .me-xxl-5 {
  6497. margin-right: 3rem !important; }
  6498. .me-xxl-auto {
  6499. margin-right: auto !important; }
  6500. .mb-xxl-0 {
  6501. margin-bottom: 0 !important; }
  6502. .mb-xxl-1 {
  6503. margin-bottom: 0.25rem !important; }
  6504. .mb-xxl-2 {
  6505. margin-bottom: 0.5rem !important; }
  6506. .mb-xxl-3 {
  6507. margin-bottom: 1rem !important; }
  6508. .mb-xxl-4 {
  6509. margin-bottom: 1.5rem !important; }
  6510. .mb-xxl-5 {
  6511. margin-bottom: 3rem !important; }
  6512. .mb-xxl-auto {
  6513. margin-bottom: auto !important; }
  6514. .ms-xxl-0 {
  6515. margin-left: 0 !important; }
  6516. .ms-xxl-1 {
  6517. margin-left: 0.25rem !important; }
  6518. .ms-xxl-2 {
  6519. margin-left: 0.5rem !important; }
  6520. .ms-xxl-3 {
  6521. margin-left: 1rem !important; }
  6522. .ms-xxl-4 {
  6523. margin-left: 1.5rem !important; }
  6524. .ms-xxl-5 {
  6525. margin-left: 3rem !important; }
  6526. .ms-xxl-auto {
  6527. margin-left: auto !important; }
  6528. .p-xxl-0 {
  6529. padding: 0 !important; }
  6530. .p-xxl-1 {
  6531. padding: 0.25rem !important; }
  6532. .p-xxl-2 {
  6533. padding: 0.5rem !important; }
  6534. .p-xxl-3 {
  6535. padding: 1rem !important; }
  6536. .p-xxl-4 {
  6537. padding: 1.5rem !important; }
  6538. .p-xxl-5 {
  6539. padding: 3rem !important; }
  6540. .px-xxl-0 {
  6541. padding-right: 0 !important;
  6542. padding-left: 0 !important; }
  6543. .px-xxl-1 {
  6544. padding-right: 0.25rem !important;
  6545. padding-left: 0.25rem !important; }
  6546. .px-xxl-2 {
  6547. padding-right: 0.5rem !important;
  6548. padding-left: 0.5rem !important; }
  6549. .px-xxl-3 {
  6550. padding-right: 1rem !important;
  6551. padding-left: 1rem !important; }
  6552. .px-xxl-4 {
  6553. padding-right: 1.5rem !important;
  6554. padding-left: 1.5rem !important; }
  6555. .px-xxl-5 {
  6556. padding-right: 3rem !important;
  6557. padding-left: 3rem !important; }
  6558. .py-xxl-0 {
  6559. padding-top: 0 !important;
  6560. padding-bottom: 0 !important; }
  6561. .py-xxl-1 {
  6562. padding-top: 0.25rem !important;
  6563. padding-bottom: 0.25rem !important; }
  6564. .py-xxl-2 {
  6565. padding-top: 0.5rem !important;
  6566. padding-bottom: 0.5rem !important; }
  6567. .py-xxl-3 {
  6568. padding-top: 1rem !important;
  6569. padding-bottom: 1rem !important; }
  6570. .py-xxl-4 {
  6571. padding-top: 1.5rem !important;
  6572. padding-bottom: 1.5rem !important; }
  6573. .py-xxl-5 {
  6574. padding-top: 3rem !important;
  6575. padding-bottom: 3rem !important; }
  6576. .pt-xxl-0 {
  6577. padding-top: 0 !important; }
  6578. .pt-xxl-1 {
  6579. padding-top: 0.25rem !important; }
  6580. .pt-xxl-2 {
  6581. padding-top: 0.5rem !important; }
  6582. .pt-xxl-3 {
  6583. padding-top: 1rem !important; }
  6584. .pt-xxl-4 {
  6585. padding-top: 1.5rem !important; }
  6586. .pt-xxl-5 {
  6587. padding-top: 3rem !important; }
  6588. .pe-xxl-0 {
  6589. padding-right: 0 !important; }
  6590. .pe-xxl-1 {
  6591. padding-right: 0.25rem !important; }
  6592. .pe-xxl-2 {
  6593. padding-right: 0.5rem !important; }
  6594. .pe-xxl-3 {
  6595. padding-right: 1rem !important; }
  6596. .pe-xxl-4 {
  6597. padding-right: 1.5rem !important; }
  6598. .pe-xxl-5 {
  6599. padding-right: 3rem !important; }
  6600. .pb-xxl-0 {
  6601. padding-bottom: 0 !important; }
  6602. .pb-xxl-1 {
  6603. padding-bottom: 0.25rem !important; }
  6604. .pb-xxl-2 {
  6605. padding-bottom: 0.5rem !important; }
  6606. .pb-xxl-3 {
  6607. padding-bottom: 1rem !important; }
  6608. .pb-xxl-4 {
  6609. padding-bottom: 1.5rem !important; }
  6610. .pb-xxl-5 {
  6611. padding-bottom: 3rem !important; }
  6612. .ps-xxl-0 {
  6613. padding-left: 0 !important; }
  6614. .ps-xxl-1 {
  6615. padding-left: 0.25rem !important; }
  6616. .ps-xxl-2 {
  6617. padding-left: 0.5rem !important; }
  6618. .ps-xxl-3 {
  6619. padding-left: 1rem !important; }
  6620. .ps-xxl-4 {
  6621. padding-left: 1.5rem !important; }
  6622. .ps-xxl-5 {
  6623. padding-left: 3rem !important; }
  6624. .text-xxl-start {
  6625. text-align: left !important; }
  6626. .text-xxl-end {
  6627. text-align: right !important; }
  6628. .text-xxl-center {
  6629. text-align: center !important; } }
  6630. @media (min-width: 1200px) {
  6631. .fs-1 {
  6632. font-size: 2.5rem !important; }
  6633. .fs-2 {
  6634. font-size: 2rem !important; }
  6635. .fs-3 {
  6636. font-size: 1.75rem !important; }
  6637. .fs-4 {
  6638. font-size: 1.5rem !important; }
  6639. .fs-sm-1 {
  6640. font-size: 2.5rem !important; }
  6641. .fs-sm-2 {
  6642. font-size: 2rem !important; }
  6643. .fs-sm-3 {
  6644. font-size: 1.75rem !important; }
  6645. .fs-sm-4 {
  6646. font-size: 1.5rem !important; }
  6647. .fs-md-1 {
  6648. font-size: 2.5rem !important; }
  6649. .fs-md-2 {
  6650. font-size: 2rem !important; }
  6651. .fs-md-3 {
  6652. font-size: 1.75rem !important; }
  6653. .fs-md-4 {
  6654. font-size: 1.5rem !important; }
  6655. .fs-lg-1 {
  6656. font-size: 2.5rem !important; }
  6657. .fs-lg-2 {
  6658. font-size: 2rem !important; }
  6659. .fs-lg-3 {
  6660. font-size: 1.75rem !important; }
  6661. .fs-lg-4 {
  6662. font-size: 1.5rem !important; } }
  6663. @media print {
  6664. .d-print-inline {
  6665. display: inline !important; }
  6666. .d-print-inline-block {
  6667. display: inline-block !important; }
  6668. .d-print-block {
  6669. display: block !important; }
  6670. .d-print-grid {
  6671. display: grid !important; }
  6672. .d-print-table {
  6673. display: table !important; }
  6674. .d-print-table-row {
  6675. display: table-row !important; }
  6676. .d-print-table-cell {
  6677. display: table-cell !important; }
  6678. .d-print-flex {
  6679. display: flex !important; }
  6680. .d-print-inline-flex {
  6681. display: inline-flex !important; }
  6682. .d-print-none {
  6683. display: none !important; } }