custom.css 201 KB

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