custom.css 225 KB

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