custom.css 197 KB

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