Template.html 335 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478
  1. <meta charset="utf-8">
  2. <style>
  3. /*!
  4. * Bootstrap v5.3.3 (https://getbootstrap.com/)
  5. * Copyright 2011-2024 The Bootstrap Authors
  6. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
  7. */
  8. :root, [data-bs-theme=light] {
  9. --bs-blue: #0d6efd;
  10. --bs-indigo: #6610f2;
  11. --bs-purple: #6f42c1;
  12. --bs-pink: #d63384;
  13. --bs-red: #dc3545;
  14. --bs-orange: #fd7e14;
  15. --bs-yellow: #ffc107;
  16. --bs-green: #198754;
  17. --bs-teal: #20c997;
  18. --bs-cyan: #0dcaf0;
  19. --bs-black: #000;
  20. --bs-white: #fff;
  21. --bs-gray: #6c757d;
  22. --bs-gray-dark: #343a40;
  23. --bs-gray-100: #f8f9fa;
  24. --bs-gray-200: #e9ecef;
  25. --bs-gray-300: #dee2e6;
  26. --bs-gray-400: #ced4da;
  27. --bs-gray-500: #adb5bd;
  28. --bs-gray-600: #6c757d;
  29. --bs-gray-700: #495057;
  30. --bs-gray-800: #343a40;
  31. --bs-gray-900: #212529;
  32. --bs-primary: #0d6efd;
  33. --bs-secondary: #6c757d;
  34. --bs-success: #198754;
  35. --bs-info: #0dcaf0;
  36. --bs-warning: #ffc107;
  37. --bs-danger: #dc3545;
  38. --bs-light: #f8f9fa;
  39. --bs-dark: #212529;
  40. --bs-primary-rgb: 13, 110, 253;
  41. --bs-secondary-rgb: 108, 117, 125;
  42. --bs-success-rgb: 25, 135, 84;
  43. --bs-info-rgb: 13, 202, 240;
  44. --bs-warning-rgb: 255, 193, 7;
  45. --bs-danger-rgb: 220, 53, 69;
  46. --bs-light-rgb: 248, 249, 250;
  47. --bs-dark-rgb: 33, 37, 41;
  48. --bs-primary-text-emphasis: #052c65;
  49. --bs-secondary-text-emphasis: #2b2f32;
  50. --bs-success-text-emphasis: #0a3622;
  51. --bs-info-text-emphasis: #055160;
  52. --bs-warning-text-emphasis: #664d03;
  53. --bs-danger-text-emphasis: #58151c;
  54. --bs-light-text-emphasis: #495057;
  55. --bs-dark-text-emphasis: #495057;
  56. --bs-primary-bg-subtle: #cfe2ff;
  57. --bs-secondary-bg-subtle: #e2e3e5;
  58. --bs-success-bg-subtle: #d1e7dd;
  59. --bs-info-bg-subtle: #cff4fc;
  60. --bs-warning-bg-subtle: #fff3cd;
  61. --bs-danger-bg-subtle: #f8d7da;
  62. --bs-light-bg-subtle: #fcfcfd;
  63. --bs-dark-bg-subtle: #ced4da;
  64. --bs-primary-border-subtle: #9ec5fe;
  65. --bs-secondary-border-subtle: #c4c8cb;
  66. --bs-success-border-subtle: #a3cfbb;
  67. --bs-info-border-subtle: #9eeaf9;
  68. --bs-warning-border-subtle: #ffe69c;
  69. --bs-danger-border-subtle: #f1aeb5;
  70. --bs-light-border-subtle: #e9ecef;
  71. --bs-dark-border-subtle: #adb5bd;
  72. --bs-white-rgb: 255, 255, 255;
  73. --bs-black-rgb: 0, 0, 0;
  74. --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  75. --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  76. --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  77. --bs-body-font-family: var(--bs-font-sans-serif);
  78. --bs-body-font-size: 1rem;
  79. --bs-body-font-weight: 400;
  80. --bs-body-line-height: 1.5;
  81. --bs-body-color: #212529;
  82. --bs-body-color-rgb: 33, 37, 41;
  83. --bs-body-bg: #fff;
  84. --bs-body-bg-rgb: 255, 255, 255;
  85. --bs-emphasis-color: #000;
  86. --bs-emphasis-color-rgb: 0, 0, 0;
  87. --bs-secondary-color: rgba(33, 37, 41, 0.75);
  88. --bs-secondary-color-rgb: 33, 37, 41;
  89. --bs-secondary-bg: #e9ecef;
  90. --bs-secondary-bg-rgb: 233, 236, 239;
  91. --bs-tertiary-color: rgba(33, 37, 41, 0.5);
  92. --bs-tertiary-color-rgb: 33, 37, 41;
  93. --bs-tertiary-bg: #f8f9fa;
  94. --bs-tertiary-bg-rgb: 248, 249, 250;
  95. --bs-heading-color: inherit;
  96. --bs-link-color: #0d6efd;
  97. --bs-link-color-rgb: 13, 110, 253;
  98. --bs-link-decoration: underline;
  99. --bs-link-hover-color: #0a58ca;
  100. --bs-link-hover-color-rgb: 10, 88, 202;
  101. --bs-code-color: #d63384;
  102. --bs-highlight-color: #212529;
  103. --bs-highlight-bg: #fff3cd;
  104. --bs-border-width: 1px;
  105. --bs-border-style: solid;
  106. --bs-border-color: #dee2e6;
  107. --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  108. --bs-border-radius: 0.375rem;
  109. --bs-border-radius-sm: 0.25rem;
  110. --bs-border-radius-lg: 0.5rem;
  111. --bs-border-radius-xl: 1rem;
  112. --bs-border-radius-xxl: 2rem;
  113. --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  114. --bs-border-radius-pill: 50rem;
  115. --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  116. --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  117. --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  118. --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  119. --bs-focus-ring-width: 0.25rem;
  120. --bs-focus-ring-opacity: 0.25;
  121. --bs-focus-ring-color: rgba(13, 110, 253, 0.25);
  122. --bs-form-valid-color: #198754;
  123. --bs-form-valid-border-color: #198754;
  124. --bs-form-invalid-color: #dc3545;
  125. --bs-form-invalid-border-color: #dc3545
  126. }
  127. [data-bs-theme=dark] {
  128. color-scheme: dark;
  129. --bs-body-color: #dee2e6;
  130. --bs-body-color-rgb: 222, 226, 230;
  131. --bs-body-bg: #212529;
  132. --bs-body-bg-rgb: 33, 37, 41;
  133. --bs-emphasis-color: #fff;
  134. --bs-emphasis-color-rgb: 255, 255, 255;
  135. --bs-secondary-color: rgba(222, 226, 230, 0.75);
  136. --bs-secondary-color-rgb: 222, 226, 230;
  137. --bs-secondary-bg: #343a40;
  138. --bs-secondary-bg-rgb: 52, 58, 64;
  139. --bs-tertiary-color: rgba(222, 226, 230, 0.5);
  140. --bs-tertiary-color-rgb: 222, 226, 230;
  141. --bs-tertiary-bg: #2b3035;
  142. --bs-tertiary-bg-rgb: 43, 48, 53;
  143. --bs-primary-text-emphasis: #6ea8fe;
  144. --bs-secondary-text-emphasis: #a7acb1;
  145. --bs-success-text-emphasis: #75b798;
  146. --bs-info-text-emphasis: #6edff6;
  147. --bs-warning-text-emphasis: #ffda6a;
  148. --bs-danger-text-emphasis: #ea868f;
  149. --bs-light-text-emphasis: #f8f9fa;
  150. --bs-dark-text-emphasis: #dee2e6;
  151. --bs-primary-bg-subtle: #031633;
  152. --bs-secondary-bg-subtle: #161719;
  153. --bs-success-bg-subtle: #051b11;
  154. --bs-info-bg-subtle: #032830;
  155. --bs-warning-bg-subtle: #332701;
  156. --bs-danger-bg-subtle: #2c0b0e;
  157. --bs-light-bg-subtle: #343a40;
  158. --bs-dark-bg-subtle: #1a1d20;
  159. --bs-primary-border-subtle: #084298;
  160. --bs-secondary-border-subtle: #41464b;
  161. --bs-success-border-subtle: #0f5132;
  162. --bs-info-border-subtle: #087990;
  163. --bs-warning-border-subtle: #997404;
  164. --bs-danger-border-subtle: #842029;
  165. --bs-light-border-subtle: #495057;
  166. --bs-dark-border-subtle: #343a40;
  167. --bs-heading-color: inherit;
  168. --bs-link-color: #6ea8fe;
  169. --bs-link-hover-color: #8bb9fe;
  170. --bs-link-color-rgb: 110, 168, 254;
  171. --bs-link-hover-color-rgb: 139, 185, 254;
  172. --bs-code-color: #e685b5;
  173. --bs-highlight-color: #dee2e6;
  174. --bs-highlight-bg: #664d03;
  175. --bs-border-color: #495057;
  176. --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
  177. --bs-form-valid-color: #75b798;
  178. --bs-form-valid-border-color: #75b798;
  179. --bs-form-invalid-color: #ea868f;
  180. --bs-form-invalid-border-color: #ea868f
  181. }
  182. *, ::after, ::before {
  183. box-sizing: border-box
  184. }
  185. @media (prefers-reduced-motion: no-preference) {
  186. :root {
  187. scroll-behavior: smooth
  188. }
  189. }
  190. body {
  191. margin: 0;
  192. font-family: var(--bs-body-font-family);
  193. font-size: var(--bs-body-font-size);
  194. font-weight: var(--bs-body-font-weight);
  195. line-height: var(--bs-body-line-height);
  196. color: var(--bs-body-color);
  197. text-align: var(--bs-body-text-align);
  198. background-color: var(--bs-body-bg);
  199. -webkit-text-size-adjust: 100%;
  200. -webkit-tap-highlight-color: transparent
  201. }
  202. hr {
  203. margin: 1rem 0;
  204. color: inherit;
  205. border: 0;
  206. border-top: var(--bs-border-width) solid;
  207. opacity: .25
  208. }
  209. .h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  210. margin-top: 0;
  211. margin-bottom: .5rem;
  212. font-weight: 500;
  213. line-height: 1.2;
  214. color: var(--bs-heading-color)
  215. }
  216. .h1, h1 {
  217. font-size: calc(1.375rem + 1.5vw)
  218. }
  219. @media (min-width: 1200px) {
  220. .h1, h1 {
  221. font-size: 2.5rem
  222. }
  223. }
  224. .h2, h2 {
  225. font-size: calc(1.325rem + .9vw)
  226. }
  227. @media (min-width: 1200px) {
  228. .h2, h2 {
  229. font-size: 2rem
  230. }
  231. }
  232. .h3, h3 {
  233. font-size: calc(1.3rem + .6vw)
  234. }
  235. @media (min-width: 1200px) {
  236. .h3, h3 {
  237. font-size: 1.75rem
  238. }
  239. }
  240. .h4, h4 {
  241. font-size: calc(1.275rem + .3vw)
  242. }
  243. @media (min-width: 1200px) {
  244. .h4, h4 {
  245. font-size: 1.5rem
  246. }
  247. }
  248. .h5, h5 {
  249. font-size: 1.25rem
  250. }
  251. .h6, h6 {
  252. font-size: 1rem
  253. }
  254. p {
  255. margin-top: 0;
  256. margin-bottom: 1rem
  257. }
  258. abbr[title] {
  259. -webkit-text-decoration: underline dotted;
  260. text-decoration: underline dotted;
  261. cursor: help;
  262. -webkit-text-decoration-skip-ink: none;
  263. text-decoration-skip-ink: none
  264. }
  265. address {
  266. margin-bottom: 1rem;
  267. font-style: normal;
  268. line-height: inherit
  269. }
  270. ol, ul {
  271. padding-left: 2rem
  272. }
  273. dl, ol, ul {
  274. margin-top: 0;
  275. margin-bottom: 1rem
  276. }
  277. ol ol, ol ul, ul ol, ul ul {
  278. margin-bottom: 0
  279. }
  280. dt {
  281. font-weight: 700
  282. }
  283. dd {
  284. margin-bottom: .5rem;
  285. margin-left: 0
  286. }
  287. blockquote {
  288. margin: 0 0 1rem
  289. }
  290. b, strong {
  291. font-weight: bolder
  292. }
  293. .small, small {
  294. font-size: .875em
  295. }
  296. .mark, mark {
  297. padding: .1875em;
  298. color: var(--bs-highlight-color);
  299. background-color: var(--bs-highlight-bg)
  300. }
  301. sub, sup {
  302. position: relative;
  303. font-size: .75em;
  304. line-height: 0;
  305. vertical-align: baseline
  306. }
  307. sub {
  308. bottom: -.25em
  309. }
  310. sup {
  311. top: -.5em
  312. }
  313. a {
  314. color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  315. text-decoration: underline
  316. }
  317. a:hover {
  318. --bs-link-color-rgb: var(--bs-link-hover-color-rgb)
  319. }
  320. a:not([href]):not([class]), a:not([href]):not([class]):hover {
  321. color: inherit;
  322. text-decoration: none
  323. }
  324. code, kbd, pre, samp {
  325. font-family: var(--bs-font-monospace);
  326. font-size: 1em
  327. }
  328. pre {
  329. display: block;
  330. margin-top: 0;
  331. margin-bottom: 1rem;
  332. overflow: auto;
  333. font-size: .875em
  334. }
  335. pre code {
  336. font-size: inherit;
  337. color: inherit;
  338. word-break: normal
  339. }
  340. code {
  341. font-size: .875em;
  342. color: var(--bs-code-color);
  343. word-wrap: break-word
  344. }
  345. a > code {
  346. color: inherit
  347. }
  348. kbd {
  349. padding: .1875rem .375rem;
  350. font-size: .875em;
  351. color: var(--bs-body-bg);
  352. background-color: var(--bs-body-color);
  353. border-radius: .25rem
  354. }
  355. kbd kbd {
  356. padding: 0;
  357. font-size: 1em
  358. }
  359. figure {
  360. margin: 0 0 1rem
  361. }
  362. img, svg {
  363. vertical-align: middle
  364. }
  365. table {
  366. caption-side: bottom;
  367. border-collapse: collapse
  368. }
  369. caption {
  370. padding-top: .5rem;
  371. padding-bottom: .5rem;
  372. color: var(--bs-secondary-color);
  373. text-align: left
  374. }
  375. th {
  376. text-align: inherit;
  377. text-align: -webkit-match-parent
  378. }
  379. tbody, td, tfoot, th, thead, tr {
  380. border-color: inherit;
  381. border-style: solid;
  382. border-width: 0
  383. }
  384. label {
  385. display: inline-block
  386. }
  387. button {
  388. border-radius: 0
  389. }
  390. button:focus:not(:focus-visible) {
  391. outline: 0
  392. }
  393. button, input, optgroup, select, textarea {
  394. margin: 0;
  395. font-family: inherit;
  396. font-size: inherit;
  397. line-height: inherit
  398. }
  399. button, select {
  400. text-transform: none
  401. }
  402. [role=button] {
  403. cursor: pointer
  404. }
  405. select {
  406. word-wrap: normal
  407. }
  408. select:disabled {
  409. opacity: 1
  410. }
  411. [list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  412. display: none !important
  413. }
  414. [type=button], [type=reset], [type=submit], button {
  415. -webkit-appearance: button
  416. }
  417. [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
  418. cursor: pointer
  419. }
  420. ::-moz-focus-inner {
  421. padding: 0;
  422. border-style: none
  423. }
  424. textarea {
  425. resize: vertical
  426. }
  427. fieldset {
  428. min-width: 0;
  429. padding: 0;
  430. margin: 0;
  431. border: 0
  432. }
  433. legend {
  434. float: left;
  435. width: 100%;
  436. padding: 0;
  437. margin-bottom: .5rem;
  438. font-size: calc(1.275rem + .3vw);
  439. line-height: inherit
  440. }
  441. @media (min-width: 1200px) {
  442. legend {
  443. font-size: 1.5rem
  444. }
  445. }
  446. legend + * {
  447. clear: left
  448. }
  449. ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-fields-wrapper, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-text, ::-webkit-datetime-edit-year-field {
  450. padding: 0
  451. }
  452. ::-webkit-inner-spin-button {
  453. height: auto
  454. }
  455. [type=search] {
  456. -webkit-appearance: textfield;
  457. outline-offset: -2px
  458. }
  459. ::-webkit-search-decoration {
  460. -webkit-appearance: none
  461. }
  462. ::-webkit-color-swatch-wrapper {
  463. padding: 0
  464. }
  465. ::-webkit-file-upload-button {
  466. font: inherit;
  467. -webkit-appearance: button
  468. }
  469. ::file-selector-button {
  470. font: inherit;
  471. -webkit-appearance: button
  472. }
  473. output {
  474. display: inline-block
  475. }
  476. iframe {
  477. border: 0
  478. }
  479. summary {
  480. display: list-item;
  481. cursor: pointer
  482. }
  483. progress {
  484. vertical-align: baseline
  485. }
  486. [hidden] {
  487. display: none !important
  488. }
  489. .lead {
  490. font-size: 1.25rem;
  491. font-weight: 300
  492. }
  493. .display-1 {
  494. font-size: calc(1.625rem + 4.5vw);
  495. font-weight: 300;
  496. line-height: 1.2
  497. }
  498. @media (min-width: 1200px) {
  499. .display-1 {
  500. font-size: 5rem
  501. }
  502. }
  503. .display-2 {
  504. font-size: calc(1.575rem + 3.9vw);
  505. font-weight: 300;
  506. line-height: 1.2
  507. }
  508. @media (min-width: 1200px) {
  509. .display-2 {
  510. font-size: 4.5rem
  511. }
  512. }
  513. .display-3 {
  514. font-size: calc(1.525rem + 3.3vw);
  515. font-weight: 300;
  516. line-height: 1.2
  517. }
  518. @media (min-width: 1200px) {
  519. .display-3 {
  520. font-size: 4rem
  521. }
  522. }
  523. .display-4 {
  524. font-size: calc(1.475rem + 2.7vw);
  525. font-weight: 300;
  526. line-height: 1.2
  527. }
  528. @media (min-width: 1200px) {
  529. .display-4 {
  530. font-size: 3.5rem
  531. }
  532. }
  533. .display-5 {
  534. font-size: calc(1.425rem + 2.1vw);
  535. font-weight: 300;
  536. line-height: 1.2
  537. }
  538. @media (min-width: 1200px) {
  539. .display-5 {
  540. font-size: 3rem
  541. }
  542. }
  543. .display-6 {
  544. font-size: calc(1.375rem + 1.5vw);
  545. font-weight: 300;
  546. line-height: 1.2
  547. }
  548. @media (min-width: 1200px) {
  549. .display-6 {
  550. font-size: 2.5rem
  551. }
  552. }
  553. .list-unstyled {
  554. padding-left: 0;
  555. list-style: none
  556. }
  557. .list-inline {
  558. padding-left: 0;
  559. list-style: none
  560. }
  561. .list-inline-item {
  562. display: inline-block
  563. }
  564. .list-inline-item:not(:last-child) {
  565. margin-right: .5rem
  566. }
  567. .initialism {
  568. font-size: .875em;
  569. text-transform: uppercase
  570. }
  571. .blockquote {
  572. margin-bottom: 1rem;
  573. font-size: 1.25rem
  574. }
  575. .blockquote > :last-child {
  576. margin-bottom: 0
  577. }
  578. .blockquote-footer {
  579. margin-top: -1rem;
  580. margin-bottom: 1rem;
  581. font-size: .875em;
  582. color: #6c757d
  583. }
  584. .blockquote-footer::before {
  585. content: "— "
  586. }
  587. .img-fluid {
  588. max-width: 100%;
  589. height: auto
  590. }
  591. .img-thumbnail {
  592. padding: .25rem;
  593. background-color: var(--bs-body-bg);
  594. border: var(--bs-border-width) solid var(--bs-border-color);
  595. border-radius: var(--bs-border-radius);
  596. max-width: 100%;
  597. height: auto
  598. }
  599. .figure {
  600. display: inline-block
  601. }
  602. .figure-img {
  603. margin-bottom: .5rem;
  604. line-height: 1
  605. }
  606. .figure-caption {
  607. font-size: .875em;
  608. color: var(--bs-secondary-color)
  609. }
  610. .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  611. --bs-gutter-x: 1.5rem;
  612. --bs-gutter-y: 0;
  613. width: 100%;
  614. padding-right: calc(var(--bs-gutter-x) * .5);
  615. padding-left: calc(var(--bs-gutter-x) * .5);
  616. margin-right: auto;
  617. margin-left: auto
  618. }
  619. @media (min-width: 576px) {
  620. .container, .container-sm {
  621. max-width: 540px
  622. }
  623. }
  624. @media (min-width: 768px) {
  625. .container, .container-md, .container-sm {
  626. max-width: 720px
  627. }
  628. }
  629. @media (min-width: 992px) {
  630. .container, .container-lg, .container-md, .container-sm {
  631. max-width: 960px
  632. }
  633. }
  634. @media (min-width: 1200px) {
  635. .container, .container-lg, .container-md, .container-sm, .container-xl {
  636. max-width: 1140px
  637. }
  638. }
  639. @media (min-width: 1400px) {
  640. .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  641. max-width: 1320px
  642. }
  643. }
  644. :root {
  645. --bs-breakpoint-xs: 0;
  646. --bs-breakpoint-sm: 576px;
  647. --bs-breakpoint-md: 768px;
  648. --bs-breakpoint-lg: 992px;
  649. --bs-breakpoint-xl: 1200px;
  650. --bs-breakpoint-xxl: 1400px
  651. }
  652. .row {
  653. --bs-gutter-x: 1.5rem;
  654. --bs-gutter-y: 0;
  655. display: flex;
  656. flex-wrap: wrap;
  657. margin-top: calc(-1 * var(--bs-gutter-y));
  658. margin-right: calc(-.5 * var(--bs-gutter-x));
  659. margin-left: calc(-.5 * var(--bs-gutter-x))
  660. }
  661. .row > * {
  662. flex-shrink: 0;
  663. width: 100%;
  664. max-width: 100%;
  665. padding-right: calc(var(--bs-gutter-x) * .5);
  666. padding-left: calc(var(--bs-gutter-x) * .5);
  667. margin-top: var(--bs-gutter-y)
  668. }
  669. .col {
  670. flex: 1 0 0%
  671. }
  672. .row-cols-auto > * {
  673. flex: 0 0 auto;
  674. width: auto
  675. }
  676. .row-cols-1 > * {
  677. flex: 0 0 auto;
  678. width: 100%
  679. }
  680. .row-cols-2 > * {
  681. flex: 0 0 auto;
  682. width: 50%
  683. }
  684. .row-cols-3 > * {
  685. flex: 0 0 auto;
  686. width: 33.33333333%
  687. }
  688. .row-cols-4 > * {
  689. flex: 0 0 auto;
  690. width: 25%
  691. }
  692. .row-cols-5 > * {
  693. flex: 0 0 auto;
  694. width: 20%
  695. }
  696. .row-cols-6 > * {
  697. flex: 0 0 auto;
  698. width: 16.66666667%
  699. }
  700. .col-auto {
  701. flex: 0 0 auto;
  702. width: auto
  703. }
  704. .col-1 {
  705. flex: 0 0 auto;
  706. width: 8.33333333%
  707. }
  708. .col-2 {
  709. flex: 0 0 auto;
  710. width: 16.66666667%
  711. }
  712. .col-3 {
  713. flex: 0 0 auto;
  714. width: 25%
  715. }
  716. .col-4 {
  717. flex: 0 0 auto;
  718. width: 33.33333333%
  719. }
  720. .col-5 {
  721. flex: 0 0 auto;
  722. width: 41.66666667%
  723. }
  724. .col-6 {
  725. flex: 0 0 auto;
  726. width: 50%
  727. }
  728. .col-7 {
  729. flex: 0 0 auto;
  730. width: 58.33333333%
  731. }
  732. .col-8 {
  733. flex: 0 0 auto;
  734. width: 66.66666667%
  735. }
  736. .col-9 {
  737. flex: 0 0 auto;
  738. width: 75%
  739. }
  740. .col-10 {
  741. flex: 0 0 auto;
  742. width: 83.33333333%
  743. }
  744. .col-11 {
  745. flex: 0 0 auto;
  746. width: 91.66666667%
  747. }
  748. .col-12 {
  749. flex: 0 0 auto;
  750. width: 100%
  751. }
  752. .offset-1 {
  753. margin-left: 8.33333333%
  754. }
  755. .offset-2 {
  756. margin-left: 16.66666667%
  757. }
  758. .offset-3 {
  759. margin-left: 25%
  760. }
  761. .offset-4 {
  762. margin-left: 33.33333333%
  763. }
  764. .offset-5 {
  765. margin-left: 41.66666667%
  766. }
  767. .offset-6 {
  768. margin-left: 50%
  769. }
  770. .offset-7 {
  771. margin-left: 58.33333333%
  772. }
  773. .offset-8 {
  774. margin-left: 66.66666667%
  775. }
  776. .offset-9 {
  777. margin-left: 75%
  778. }
  779. .offset-10 {
  780. margin-left: 83.33333333%
  781. }
  782. .offset-11 {
  783. margin-left: 91.66666667%
  784. }
  785. .g-0, .gx-0 {
  786. --bs-gutter-x: 0
  787. }
  788. .g-0, .gy-0 {
  789. --bs-gutter-y: 0
  790. }
  791. .g-1, .gx-1 {
  792. --bs-gutter-x: 0.25rem
  793. }
  794. .g-1, .gy-1 {
  795. --bs-gutter-y: 0.25rem
  796. }
  797. .g-2, .gx-2 {
  798. --bs-gutter-x: 0.5rem
  799. }
  800. .g-2, .gy-2 {
  801. --bs-gutter-y: 0.5rem
  802. }
  803. .g-3, .gx-3 {
  804. --bs-gutter-x: 1rem
  805. }
  806. .g-3, .gy-3 {
  807. --bs-gutter-y: 1rem
  808. }
  809. .g-4, .gx-4 {
  810. --bs-gutter-x: 1.5rem
  811. }
  812. .g-4, .gy-4 {
  813. --bs-gutter-y: 1.5rem
  814. }
  815. .g-5, .gx-5 {
  816. --bs-gutter-x: 3rem
  817. }
  818. .g-5, .gy-5 {
  819. --bs-gutter-y: 3rem
  820. }
  821. @media (min-width: 576px) {
  822. .col-sm {
  823. flex: 1 0 0%
  824. }
  825. .row-cols-sm-auto > * {
  826. flex: 0 0 auto;
  827. width: auto
  828. }
  829. .row-cols-sm-1 > * {
  830. flex: 0 0 auto;
  831. width: 100%
  832. }
  833. .row-cols-sm-2 > * {
  834. flex: 0 0 auto;
  835. width: 50%
  836. }
  837. .row-cols-sm-3 > * {
  838. flex: 0 0 auto;
  839. width: 33.33333333%
  840. }
  841. .row-cols-sm-4 > * {
  842. flex: 0 0 auto;
  843. width: 25%
  844. }
  845. .row-cols-sm-5 > * {
  846. flex: 0 0 auto;
  847. width: 20%
  848. }
  849. .row-cols-sm-6 > * {
  850. flex: 0 0 auto;
  851. width: 16.66666667%
  852. }
  853. .col-sm-auto {
  854. flex: 0 0 auto;
  855. width: auto
  856. }
  857. .col-sm-1 {
  858. flex: 0 0 auto;
  859. width: 8.33333333%
  860. }
  861. .col-sm-2 {
  862. flex: 0 0 auto;
  863. width: 16.66666667%
  864. }
  865. .col-sm-3 {
  866. flex: 0 0 auto;
  867. width: 25%
  868. }
  869. .col-sm-4 {
  870. flex: 0 0 auto;
  871. width: 33.33333333%
  872. }
  873. .col-sm-5 {
  874. flex: 0 0 auto;
  875. width: 41.66666667%
  876. }
  877. .col-sm-6 {
  878. flex: 0 0 auto;
  879. width: 50%
  880. }
  881. .col-sm-7 {
  882. flex: 0 0 auto;
  883. width: 58.33333333%
  884. }
  885. .col-sm-8 {
  886. flex: 0 0 auto;
  887. width: 66.66666667%
  888. }
  889. .col-sm-9 {
  890. flex: 0 0 auto;
  891. width: 75%
  892. }
  893. .col-sm-10 {
  894. flex: 0 0 auto;
  895. width: 83.33333333%
  896. }
  897. .col-sm-11 {
  898. flex: 0 0 auto;
  899. width: 91.66666667%
  900. }
  901. .col-sm-12 {
  902. flex: 0 0 auto;
  903. width: 100%
  904. }
  905. .offset-sm-0 {
  906. margin-left: 0
  907. }
  908. .offset-sm-1 {
  909. margin-left: 8.33333333%
  910. }
  911. .offset-sm-2 {
  912. margin-left: 16.66666667%
  913. }
  914. .offset-sm-3 {
  915. margin-left: 25%
  916. }
  917. .offset-sm-4 {
  918. margin-left: 33.33333333%
  919. }
  920. .offset-sm-5 {
  921. margin-left: 41.66666667%
  922. }
  923. .offset-sm-6 {
  924. margin-left: 50%
  925. }
  926. .offset-sm-7 {
  927. margin-left: 58.33333333%
  928. }
  929. .offset-sm-8 {
  930. margin-left: 66.66666667%
  931. }
  932. .offset-sm-9 {
  933. margin-left: 75%
  934. }
  935. .offset-sm-10 {
  936. margin-left: 83.33333333%
  937. }
  938. .offset-sm-11 {
  939. margin-left: 91.66666667%
  940. }
  941. .g-sm-0, .gx-sm-0 {
  942. --bs-gutter-x: 0
  943. }
  944. .g-sm-0, .gy-sm-0 {
  945. --bs-gutter-y: 0
  946. }
  947. .g-sm-1, .gx-sm-1 {
  948. --bs-gutter-x: 0.25rem
  949. }
  950. .g-sm-1, .gy-sm-1 {
  951. --bs-gutter-y: 0.25rem
  952. }
  953. .g-sm-2, .gx-sm-2 {
  954. --bs-gutter-x: 0.5rem
  955. }
  956. .g-sm-2, .gy-sm-2 {
  957. --bs-gutter-y: 0.5rem
  958. }
  959. .g-sm-3, .gx-sm-3 {
  960. --bs-gutter-x: 1rem
  961. }
  962. .g-sm-3, .gy-sm-3 {
  963. --bs-gutter-y: 1rem
  964. }
  965. .g-sm-4, .gx-sm-4 {
  966. --bs-gutter-x: 1.5rem
  967. }
  968. .g-sm-4, .gy-sm-4 {
  969. --bs-gutter-y: 1.5rem
  970. }
  971. .g-sm-5, .gx-sm-5 {
  972. --bs-gutter-x: 3rem
  973. }
  974. .g-sm-5, .gy-sm-5 {
  975. --bs-gutter-y: 3rem
  976. }
  977. }
  978. @media (min-width: 768px) {
  979. .col-md {
  980. flex: 1 0 0%
  981. }
  982. .row-cols-md-auto > * {
  983. flex: 0 0 auto;
  984. width: auto
  985. }
  986. .row-cols-md-1 > * {
  987. flex: 0 0 auto;
  988. width: 100%
  989. }
  990. .row-cols-md-2 > * {
  991. flex: 0 0 auto;
  992. width: 50%
  993. }
  994. .row-cols-md-3 > * {
  995. flex: 0 0 auto;
  996. width: 33.33333333%
  997. }
  998. .row-cols-md-4 > * {
  999. flex: 0 0 auto;
  1000. width: 25%
  1001. }
  1002. .row-cols-md-5 > * {
  1003. flex: 0 0 auto;
  1004. width: 20%
  1005. }
  1006. .row-cols-md-6 > * {
  1007. flex: 0 0 auto;
  1008. width: 16.66666667%
  1009. }
  1010. .col-md-auto {
  1011. flex: 0 0 auto;
  1012. width: auto
  1013. }
  1014. .col-md-1 {
  1015. flex: 0 0 auto;
  1016. width: 8.33333333%
  1017. }
  1018. .col-md-2 {
  1019. flex: 0 0 auto;
  1020. width: 16.66666667%
  1021. }
  1022. .col-md-3 {
  1023. flex: 0 0 auto;
  1024. width: 25%
  1025. }
  1026. .col-md-4 {
  1027. flex: 0 0 auto;
  1028. width: 33.33333333%
  1029. }
  1030. .col-md-5 {
  1031. flex: 0 0 auto;
  1032. width: 41.66666667%
  1033. }
  1034. .col-md-6 {
  1035. flex: 0 0 auto;
  1036. width: 50%
  1037. }
  1038. .col-md-7 {
  1039. flex: 0 0 auto;
  1040. width: 58.33333333%
  1041. }
  1042. .col-md-8 {
  1043. flex: 0 0 auto;
  1044. width: 66.66666667%
  1045. }
  1046. .col-md-9 {
  1047. flex: 0 0 auto;
  1048. width: 75%
  1049. }
  1050. .col-md-10 {
  1051. flex: 0 0 auto;
  1052. width: 83.33333333%
  1053. }
  1054. .col-md-11 {
  1055. flex: 0 0 auto;
  1056. width: 91.66666667%
  1057. }
  1058. .col-md-12 {
  1059. flex: 0 0 auto;
  1060. width: 100%
  1061. }
  1062. .offset-md-0 {
  1063. margin-left: 0
  1064. }
  1065. .offset-md-1 {
  1066. margin-left: 8.33333333%
  1067. }
  1068. .offset-md-2 {
  1069. margin-left: 16.66666667%
  1070. }
  1071. .offset-md-3 {
  1072. margin-left: 25%
  1073. }
  1074. .offset-md-4 {
  1075. margin-left: 33.33333333%
  1076. }
  1077. .offset-md-5 {
  1078. margin-left: 41.66666667%
  1079. }
  1080. .offset-md-6 {
  1081. margin-left: 50%
  1082. }
  1083. .offset-md-7 {
  1084. margin-left: 58.33333333%
  1085. }
  1086. .offset-md-8 {
  1087. margin-left: 66.66666667%
  1088. }
  1089. .offset-md-9 {
  1090. margin-left: 75%
  1091. }
  1092. .offset-md-10 {
  1093. margin-left: 83.33333333%
  1094. }
  1095. .offset-md-11 {
  1096. margin-left: 91.66666667%
  1097. }
  1098. .g-md-0, .gx-md-0 {
  1099. --bs-gutter-x: 0
  1100. }
  1101. .g-md-0, .gy-md-0 {
  1102. --bs-gutter-y: 0
  1103. }
  1104. .g-md-1, .gx-md-1 {
  1105. --bs-gutter-x: 0.25rem
  1106. }
  1107. .g-md-1, .gy-md-1 {
  1108. --bs-gutter-y: 0.25rem
  1109. }
  1110. .g-md-2, .gx-md-2 {
  1111. --bs-gutter-x: 0.5rem
  1112. }
  1113. .g-md-2, .gy-md-2 {
  1114. --bs-gutter-y: 0.5rem
  1115. }
  1116. .g-md-3, .gx-md-3 {
  1117. --bs-gutter-x: 1rem
  1118. }
  1119. .g-md-3, .gy-md-3 {
  1120. --bs-gutter-y: 1rem
  1121. }
  1122. .g-md-4, .gx-md-4 {
  1123. --bs-gutter-x: 1.5rem
  1124. }
  1125. .g-md-4, .gy-md-4 {
  1126. --bs-gutter-y: 1.5rem
  1127. }
  1128. .g-md-5, .gx-md-5 {
  1129. --bs-gutter-x: 3rem
  1130. }
  1131. .g-md-5, .gy-md-5 {
  1132. --bs-gutter-y: 3rem
  1133. }
  1134. }
  1135. @media (min-width: 992px) {
  1136. .col-lg {
  1137. flex: 1 0 0%
  1138. }
  1139. .row-cols-lg-auto > * {
  1140. flex: 0 0 auto;
  1141. width: auto
  1142. }
  1143. .row-cols-lg-1 > * {
  1144. flex: 0 0 auto;
  1145. width: 100%
  1146. }
  1147. .row-cols-lg-2 > * {
  1148. flex: 0 0 auto;
  1149. width: 50%
  1150. }
  1151. .row-cols-lg-3 > * {
  1152. flex: 0 0 auto;
  1153. width: 33.33333333%
  1154. }
  1155. .row-cols-lg-4 > * {
  1156. flex: 0 0 auto;
  1157. width: 25%
  1158. }
  1159. .row-cols-lg-5 > * {
  1160. flex: 0 0 auto;
  1161. width: 20%
  1162. }
  1163. .row-cols-lg-6 > * {
  1164. flex: 0 0 auto;
  1165. width: 16.66666667%
  1166. }
  1167. .col-lg-auto {
  1168. flex: 0 0 auto;
  1169. width: auto
  1170. }
  1171. .col-lg-1 {
  1172. flex: 0 0 auto;
  1173. width: 8.33333333%
  1174. }
  1175. .col-lg-2 {
  1176. flex: 0 0 auto;
  1177. width: 16.66666667%
  1178. }
  1179. .col-lg-3 {
  1180. flex: 0 0 auto;
  1181. width: 25%
  1182. }
  1183. .col-lg-4 {
  1184. flex: 0 0 auto;
  1185. width: 33.33333333%
  1186. }
  1187. .col-lg-5 {
  1188. flex: 0 0 auto;
  1189. width: 41.66666667%
  1190. }
  1191. .col-lg-6 {
  1192. flex: 0 0 auto;
  1193. width: 50%
  1194. }
  1195. .col-lg-7 {
  1196. flex: 0 0 auto;
  1197. width: 58.33333333%
  1198. }
  1199. .col-lg-8 {
  1200. flex: 0 0 auto;
  1201. width: 66.66666667%
  1202. }
  1203. .col-lg-9 {
  1204. flex: 0 0 auto;
  1205. width: 75%
  1206. }
  1207. .col-lg-10 {
  1208. flex: 0 0 auto;
  1209. width: 83.33333333%
  1210. }
  1211. .col-lg-11 {
  1212. flex: 0 0 auto;
  1213. width: 91.66666667%
  1214. }
  1215. .col-lg-12 {
  1216. flex: 0 0 auto;
  1217. width: 100%
  1218. }
  1219. .offset-lg-0 {
  1220. margin-left: 0
  1221. }
  1222. .offset-lg-1 {
  1223. margin-left: 8.33333333%
  1224. }
  1225. .offset-lg-2 {
  1226. margin-left: 16.66666667%
  1227. }
  1228. .offset-lg-3 {
  1229. margin-left: 25%
  1230. }
  1231. .offset-lg-4 {
  1232. margin-left: 33.33333333%
  1233. }
  1234. .offset-lg-5 {
  1235. margin-left: 41.66666667%
  1236. }
  1237. .offset-lg-6 {
  1238. margin-left: 50%
  1239. }
  1240. .offset-lg-7 {
  1241. margin-left: 58.33333333%
  1242. }
  1243. .offset-lg-8 {
  1244. margin-left: 66.66666667%
  1245. }
  1246. .offset-lg-9 {
  1247. margin-left: 75%
  1248. }
  1249. .offset-lg-10 {
  1250. margin-left: 83.33333333%
  1251. }
  1252. .offset-lg-11 {
  1253. margin-left: 91.66666667%
  1254. }
  1255. .g-lg-0, .gx-lg-0 {
  1256. --bs-gutter-x: 0
  1257. }
  1258. .g-lg-0, .gy-lg-0 {
  1259. --bs-gutter-y: 0
  1260. }
  1261. .g-lg-1, .gx-lg-1 {
  1262. --bs-gutter-x: 0.25rem
  1263. }
  1264. .g-lg-1, .gy-lg-1 {
  1265. --bs-gutter-y: 0.25rem
  1266. }
  1267. .g-lg-2, .gx-lg-2 {
  1268. --bs-gutter-x: 0.5rem
  1269. }
  1270. .g-lg-2, .gy-lg-2 {
  1271. --bs-gutter-y: 0.5rem
  1272. }
  1273. .g-lg-3, .gx-lg-3 {
  1274. --bs-gutter-x: 1rem
  1275. }
  1276. .g-lg-3, .gy-lg-3 {
  1277. --bs-gutter-y: 1rem
  1278. }
  1279. .g-lg-4, .gx-lg-4 {
  1280. --bs-gutter-x: 1.5rem
  1281. }
  1282. .g-lg-4, .gy-lg-4 {
  1283. --bs-gutter-y: 1.5rem
  1284. }
  1285. .g-lg-5, .gx-lg-5 {
  1286. --bs-gutter-x: 3rem
  1287. }
  1288. .g-lg-5, .gy-lg-5 {
  1289. --bs-gutter-y: 3rem
  1290. }
  1291. }
  1292. @media (min-width: 1200px) {
  1293. .col-xl {
  1294. flex: 1 0 0%
  1295. }
  1296. .row-cols-xl-auto > * {
  1297. flex: 0 0 auto;
  1298. width: auto
  1299. }
  1300. .row-cols-xl-1 > * {
  1301. flex: 0 0 auto;
  1302. width: 100%
  1303. }
  1304. .row-cols-xl-2 > * {
  1305. flex: 0 0 auto;
  1306. width: 50%
  1307. }
  1308. .row-cols-xl-3 > * {
  1309. flex: 0 0 auto;
  1310. width: 33.33333333%
  1311. }
  1312. .row-cols-xl-4 > * {
  1313. flex: 0 0 auto;
  1314. width: 25%
  1315. }
  1316. .row-cols-xl-5 > * {
  1317. flex: 0 0 auto;
  1318. width: 20%
  1319. }
  1320. .row-cols-xl-6 > * {
  1321. flex: 0 0 auto;
  1322. width: 16.66666667%
  1323. }
  1324. .col-xl-auto {
  1325. flex: 0 0 auto;
  1326. width: auto
  1327. }
  1328. .col-xl-1 {
  1329. flex: 0 0 auto;
  1330. width: 8.33333333%
  1331. }
  1332. .col-xl-2 {
  1333. flex: 0 0 auto;
  1334. width: 16.66666667%
  1335. }
  1336. .col-xl-3 {
  1337. flex: 0 0 auto;
  1338. width: 25%
  1339. }
  1340. .col-xl-4 {
  1341. flex: 0 0 auto;
  1342. width: 33.33333333%
  1343. }
  1344. .col-xl-5 {
  1345. flex: 0 0 auto;
  1346. width: 41.66666667%
  1347. }
  1348. .col-xl-6 {
  1349. flex: 0 0 auto;
  1350. width: 50%
  1351. }
  1352. .col-xl-7 {
  1353. flex: 0 0 auto;
  1354. width: 58.33333333%
  1355. }
  1356. .col-xl-8 {
  1357. flex: 0 0 auto;
  1358. width: 66.66666667%
  1359. }
  1360. .col-xl-9 {
  1361. flex: 0 0 auto;
  1362. width: 75%
  1363. }
  1364. .col-xl-10 {
  1365. flex: 0 0 auto;
  1366. width: 83.33333333%
  1367. }
  1368. .col-xl-11 {
  1369. flex: 0 0 auto;
  1370. width: 91.66666667%
  1371. }
  1372. .col-xl-12 {
  1373. flex: 0 0 auto;
  1374. width: 100%
  1375. }
  1376. .offset-xl-0 {
  1377. margin-left: 0
  1378. }
  1379. .offset-xl-1 {
  1380. margin-left: 8.33333333%
  1381. }
  1382. .offset-xl-2 {
  1383. margin-left: 16.66666667%
  1384. }
  1385. .offset-xl-3 {
  1386. margin-left: 25%
  1387. }
  1388. .offset-xl-4 {
  1389. margin-left: 33.33333333%
  1390. }
  1391. .offset-xl-5 {
  1392. margin-left: 41.66666667%
  1393. }
  1394. .offset-xl-6 {
  1395. margin-left: 50%
  1396. }
  1397. .offset-xl-7 {
  1398. margin-left: 58.33333333%
  1399. }
  1400. .offset-xl-8 {
  1401. margin-left: 66.66666667%
  1402. }
  1403. .offset-xl-9 {
  1404. margin-left: 75%
  1405. }
  1406. .offset-xl-10 {
  1407. margin-left: 83.33333333%
  1408. }
  1409. .offset-xl-11 {
  1410. margin-left: 91.66666667%
  1411. }
  1412. .g-xl-0, .gx-xl-0 {
  1413. --bs-gutter-x: 0
  1414. }
  1415. .g-xl-0, .gy-xl-0 {
  1416. --bs-gutter-y: 0
  1417. }
  1418. .g-xl-1, .gx-xl-1 {
  1419. --bs-gutter-x: 0.25rem
  1420. }
  1421. .g-xl-1, .gy-xl-1 {
  1422. --bs-gutter-y: 0.25rem
  1423. }
  1424. .g-xl-2, .gx-xl-2 {
  1425. --bs-gutter-x: 0.5rem
  1426. }
  1427. .g-xl-2, .gy-xl-2 {
  1428. --bs-gutter-y: 0.5rem
  1429. }
  1430. .g-xl-3, .gx-xl-3 {
  1431. --bs-gutter-x: 1rem
  1432. }
  1433. .g-xl-3, .gy-xl-3 {
  1434. --bs-gutter-y: 1rem
  1435. }
  1436. .g-xl-4, .gx-xl-4 {
  1437. --bs-gutter-x: 1.5rem
  1438. }
  1439. .g-xl-4, .gy-xl-4 {
  1440. --bs-gutter-y: 1.5rem
  1441. }
  1442. .g-xl-5, .gx-xl-5 {
  1443. --bs-gutter-x: 3rem
  1444. }
  1445. .g-xl-5, .gy-xl-5 {
  1446. --bs-gutter-y: 3rem
  1447. }
  1448. }
  1449. @media (min-width: 1400px) {
  1450. .col-xxl {
  1451. flex: 1 0 0%
  1452. }
  1453. .row-cols-xxl-auto > * {
  1454. flex: 0 0 auto;
  1455. width: auto
  1456. }
  1457. .row-cols-xxl-1 > * {
  1458. flex: 0 0 auto;
  1459. width: 100%
  1460. }
  1461. .row-cols-xxl-2 > * {
  1462. flex: 0 0 auto;
  1463. width: 50%
  1464. }
  1465. .row-cols-xxl-3 > * {
  1466. flex: 0 0 auto;
  1467. width: 33.33333333%
  1468. }
  1469. .row-cols-xxl-4 > * {
  1470. flex: 0 0 auto;
  1471. width: 25%
  1472. }
  1473. .row-cols-xxl-5 > * {
  1474. flex: 0 0 auto;
  1475. width: 20%
  1476. }
  1477. .row-cols-xxl-6 > * {
  1478. flex: 0 0 auto;
  1479. width: 16.66666667%
  1480. }
  1481. .col-xxl-auto {
  1482. flex: 0 0 auto;
  1483. width: auto
  1484. }
  1485. .col-xxl-1 {
  1486. flex: 0 0 auto;
  1487. width: 8.33333333%
  1488. }
  1489. .col-xxl-2 {
  1490. flex: 0 0 auto;
  1491. width: 16.66666667%
  1492. }
  1493. .col-xxl-3 {
  1494. flex: 0 0 auto;
  1495. width: 25%
  1496. }
  1497. .col-xxl-4 {
  1498. flex: 0 0 auto;
  1499. width: 33.33333333%
  1500. }
  1501. .col-xxl-5 {
  1502. flex: 0 0 auto;
  1503. width: 41.66666667%
  1504. }
  1505. .col-xxl-6 {
  1506. flex: 0 0 auto;
  1507. width: 50%
  1508. }
  1509. .col-xxl-7 {
  1510. flex: 0 0 auto;
  1511. width: 58.33333333%
  1512. }
  1513. .col-xxl-8 {
  1514. flex: 0 0 auto;
  1515. width: 66.66666667%
  1516. }
  1517. .col-xxl-9 {
  1518. flex: 0 0 auto;
  1519. width: 75%
  1520. }
  1521. .col-xxl-10 {
  1522. flex: 0 0 auto;
  1523. width: 83.33333333%
  1524. }
  1525. .col-xxl-11 {
  1526. flex: 0 0 auto;
  1527. width: 91.66666667%
  1528. }
  1529. .col-xxl-12 {
  1530. flex: 0 0 auto;
  1531. width: 100%
  1532. }
  1533. .offset-xxl-0 {
  1534. margin-left: 0
  1535. }
  1536. .offset-xxl-1 {
  1537. margin-left: 8.33333333%
  1538. }
  1539. .offset-xxl-2 {
  1540. margin-left: 16.66666667%
  1541. }
  1542. .offset-xxl-3 {
  1543. margin-left: 25%
  1544. }
  1545. .offset-xxl-4 {
  1546. margin-left: 33.33333333%
  1547. }
  1548. .offset-xxl-5 {
  1549. margin-left: 41.66666667%
  1550. }
  1551. .offset-xxl-6 {
  1552. margin-left: 50%
  1553. }
  1554. .offset-xxl-7 {
  1555. margin-left: 58.33333333%
  1556. }
  1557. .offset-xxl-8 {
  1558. margin-left: 66.66666667%
  1559. }
  1560. .offset-xxl-9 {
  1561. margin-left: 75%
  1562. }
  1563. .offset-xxl-10 {
  1564. margin-left: 83.33333333%
  1565. }
  1566. .offset-xxl-11 {
  1567. margin-left: 91.66666667%
  1568. }
  1569. .g-xxl-0, .gx-xxl-0 {
  1570. --bs-gutter-x: 0
  1571. }
  1572. .g-xxl-0, .gy-xxl-0 {
  1573. --bs-gutter-y: 0
  1574. }
  1575. .g-xxl-1, .gx-xxl-1 {
  1576. --bs-gutter-x: 0.25rem
  1577. }
  1578. .g-xxl-1, .gy-xxl-1 {
  1579. --bs-gutter-y: 0.25rem
  1580. }
  1581. .g-xxl-2, .gx-xxl-2 {
  1582. --bs-gutter-x: 0.5rem
  1583. }
  1584. .g-xxl-2, .gy-xxl-2 {
  1585. --bs-gutter-y: 0.5rem
  1586. }
  1587. .g-xxl-3, .gx-xxl-3 {
  1588. --bs-gutter-x: 1rem
  1589. }
  1590. .g-xxl-3, .gy-xxl-3 {
  1591. --bs-gutter-y: 1rem
  1592. }
  1593. .g-xxl-4, .gx-xxl-4 {
  1594. --bs-gutter-x: 1.5rem
  1595. }
  1596. .g-xxl-4, .gy-xxl-4 {
  1597. --bs-gutter-y: 1.5rem
  1598. }
  1599. .g-xxl-5, .gx-xxl-5 {
  1600. --bs-gutter-x: 3rem
  1601. }
  1602. .g-xxl-5, .gy-xxl-5 {
  1603. --bs-gutter-y: 3rem
  1604. }
  1605. }
  1606. .table {
  1607. --bs-table-color-type: initial;
  1608. --bs-table-bg-type: initial;
  1609. --bs-table-color-state: initial;
  1610. --bs-table-bg-state: initial;
  1611. --bs-table-color: var(--bs-emphasis-color);
  1612. --bs-table-bg: var(--bs-body-bg);
  1613. --bs-table-border-color: var(--bs-border-color);
  1614. --bs-table-accent-bg: transparent;
  1615. --bs-table-striped-color: var(--bs-emphasis-color);
  1616. --bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 0.05);
  1617. --bs-table-active-color: var(--bs-emphasis-color);
  1618. --bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), 0.1);
  1619. --bs-table-hover-color: var(--bs-emphasis-color);
  1620. --bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), 0.075);
  1621. width: 100%;
  1622. margin-bottom: 1rem;
  1623. vertical-align: top;
  1624. border-color: var(--bs-table-border-color)
  1625. }
  1626. .table > :not(caption) > * > * {
  1627. padding: .5rem .5rem;
  1628. color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
  1629. background-color: var(--bs-table-bg);
  1630. border-bottom-width: var(--bs-border-width);
  1631. box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)))
  1632. }
  1633. .table > tbody {
  1634. vertical-align: inherit
  1635. }
  1636. .table > thead {
  1637. vertical-align: bottom
  1638. }
  1639. .table-group-divider {
  1640. border-top: calc(var(--bs-border-width) * 2) solid currentcolor
  1641. }
  1642. .caption-top {
  1643. caption-side: top
  1644. }
  1645. .table-sm > :not(caption) > * > * {
  1646. padding: .25rem .25rem
  1647. }
  1648. .table-bordered > :not(caption) > * {
  1649. border-width: var(--bs-border-width) 0
  1650. }
  1651. .table-bordered > :not(caption) > * > * {
  1652. border-width: 0 var(--bs-border-width)
  1653. }
  1654. .table-borderless > :not(caption) > * > * {
  1655. border-bottom-width: 0
  1656. }
  1657. .table-borderless > :not(:first-child) {
  1658. border-top-width: 0
  1659. }
  1660. .table-striped > tbody > tr:nth-of-type(odd) > * {
  1661. --bs-table-color-type: var(--bs-table-striped-color);
  1662. --bs-table-bg-type: var(--bs-table-striped-bg)
  1663. }
  1664. .table-striped-columns > :not(caption) > tr > :nth-child(2n) {
  1665. --bs-table-color-type: var(--bs-table-striped-color);
  1666. --bs-table-bg-type: var(--bs-table-striped-bg)
  1667. }
  1668. .table-active {
  1669. --bs-table-color-state: var(--bs-table-active-color);
  1670. --bs-table-bg-state: var(--bs-table-active-bg)
  1671. }
  1672. .table-hover > tbody > tr:hover > * {
  1673. --bs-table-color-state: var(--bs-table-hover-color);
  1674. --bs-table-bg-state: var(--bs-table-hover-bg)
  1675. }
  1676. .table-primary {
  1677. --bs-table-color: #000;
  1678. --bs-table-bg: #cfe2ff;
  1679. --bs-table-border-color: #a6b5cc;
  1680. --bs-table-striped-bg: #c5d7f2;
  1681. --bs-table-striped-color: #000;
  1682. --bs-table-active-bg: #bacbe6;
  1683. --bs-table-active-color: #000;
  1684. --bs-table-hover-bg: #bfd1ec;
  1685. --bs-table-hover-color: #000;
  1686. color: var(--bs-table-color);
  1687. border-color: var(--bs-table-border-color)
  1688. }
  1689. .table-secondary {
  1690. --bs-table-color: #000;
  1691. --bs-table-bg: #e2e3e5;
  1692. --bs-table-border-color: #b5b6b7;
  1693. --bs-table-striped-bg: #d7d8da;
  1694. --bs-table-striped-color: #000;
  1695. --bs-table-active-bg: #cbccce;
  1696. --bs-table-active-color: #000;
  1697. --bs-table-hover-bg: #d1d2d4;
  1698. --bs-table-hover-color: #000;
  1699. color: var(--bs-table-color);
  1700. border-color: var(--bs-table-border-color)
  1701. }
  1702. .table-success {
  1703. --bs-table-color: #000;
  1704. --bs-table-bg: #d1e7dd;
  1705. --bs-table-border-color: #a7b9b1;
  1706. --bs-table-striped-bg: #c7dbd2;
  1707. --bs-table-striped-color: #000;
  1708. --bs-table-active-bg: #bcd0c7;
  1709. --bs-table-active-color: #000;
  1710. --bs-table-hover-bg: #c1d6cc;
  1711. --bs-table-hover-color: #000;
  1712. color: var(--bs-table-color);
  1713. border-color: var(--bs-table-border-color)
  1714. }
  1715. .table-info {
  1716. --bs-table-color: #000;
  1717. --bs-table-bg: #cff4fc;
  1718. --bs-table-border-color: #a6c3ca;
  1719. --bs-table-striped-bg: #c5e8ef;
  1720. --bs-table-striped-color: #000;
  1721. --bs-table-active-bg: #badce3;
  1722. --bs-table-active-color: #000;
  1723. --bs-table-hover-bg: #bfe2e9;
  1724. --bs-table-hover-color: #000;
  1725. color: var(--bs-table-color);
  1726. border-color: var(--bs-table-border-color)
  1727. }
  1728. .table-warning {
  1729. --bs-table-color: #000;
  1730. --bs-table-bg: #fff3cd;
  1731. --bs-table-border-color: #ccc2a4;
  1732. --bs-table-striped-bg: #f2e7c3;
  1733. --bs-table-striped-color: #000;
  1734. --bs-table-active-bg: #e6dbb9;
  1735. --bs-table-active-color: #000;
  1736. --bs-table-hover-bg: #ece1be;
  1737. --bs-table-hover-color: #000;
  1738. color: var(--bs-table-color);
  1739. border-color: var(--bs-table-border-color)
  1740. }
  1741. .table-danger {
  1742. --bs-table-color: #000;
  1743. --bs-table-bg: #f8d7da;
  1744. --bs-table-border-color: #c6acae;
  1745. --bs-table-striped-bg: #eccccf;
  1746. --bs-table-striped-color: #000;
  1747. --bs-table-active-bg: #dfc2c4;
  1748. --bs-table-active-color: #000;
  1749. --bs-table-hover-bg: #e5c7ca;
  1750. --bs-table-hover-color: #000;
  1751. color: var(--bs-table-color);
  1752. border-color: var(--bs-table-border-color)
  1753. }
  1754. .table-light {
  1755. --bs-table-color: #000;
  1756. --bs-table-bg: #f8f9fa;
  1757. --bs-table-border-color: #c6c7c8;
  1758. --bs-table-striped-bg: #ecedee;
  1759. --bs-table-striped-color: #000;
  1760. --bs-table-active-bg: #dfe0e1;
  1761. --bs-table-active-color: #000;
  1762. --bs-table-hover-bg: #e5e6e7;
  1763. --bs-table-hover-color: #000;
  1764. color: var(--bs-table-color);
  1765. border-color: var(--bs-table-border-color)
  1766. }
  1767. .table-dark {
  1768. --bs-table-color: #fff;
  1769. --bs-table-bg: #212529;
  1770. --bs-table-border-color: #4d5154;
  1771. --bs-table-striped-bg: #2c3034;
  1772. --bs-table-striped-color: #fff;
  1773. --bs-table-active-bg: #373b3e;
  1774. --bs-table-active-color: #fff;
  1775. --bs-table-hover-bg: #323539;
  1776. --bs-table-hover-color: #fff;
  1777. color: var(--bs-table-color);
  1778. border-color: var(--bs-table-border-color)
  1779. }
  1780. .table-responsive {
  1781. overflow-x: auto;
  1782. -webkit-overflow-scrolling: touch
  1783. }
  1784. @media (max-width: 575.98px) {
  1785. .table-responsive-sm {
  1786. overflow-x: auto;
  1787. -webkit-overflow-scrolling: touch
  1788. }
  1789. }
  1790. @media (max-width: 767.98px) {
  1791. .table-responsive-md {
  1792. overflow-x: auto;
  1793. -webkit-overflow-scrolling: touch
  1794. }
  1795. }
  1796. @media (max-width: 991.98px) {
  1797. .table-responsive-lg {
  1798. overflow-x: auto;
  1799. -webkit-overflow-scrolling: touch
  1800. }
  1801. }
  1802. @media (max-width: 1199.98px) {
  1803. .table-responsive-xl {
  1804. overflow-x: auto;
  1805. -webkit-overflow-scrolling: touch
  1806. }
  1807. }
  1808. @media (max-width: 1399.98px) {
  1809. .table-responsive-xxl {
  1810. overflow-x: auto;
  1811. -webkit-overflow-scrolling: touch
  1812. }
  1813. }
  1814. .form-label {
  1815. margin-bottom: .5rem
  1816. }
  1817. .col-form-label {
  1818. padding-top: calc(.375rem + var(--bs-border-width));
  1819. padding-bottom: calc(.375rem + var(--bs-border-width));
  1820. margin-bottom: 0;
  1821. font-size: inherit;
  1822. line-height: 1.5
  1823. }
  1824. .col-form-label-lg {
  1825. padding-top: calc(.5rem + var(--bs-border-width));
  1826. padding-bottom: calc(.5rem + var(--bs-border-width));
  1827. font-size: 1.25rem
  1828. }
  1829. .col-form-label-sm {
  1830. padding-top: calc(.25rem + var(--bs-border-width));
  1831. padding-bottom: calc(.25rem + var(--bs-border-width));
  1832. font-size: .875rem
  1833. }
  1834. .form-text {
  1835. margin-top: .25rem;
  1836. font-size: .875em;
  1837. color: var(--bs-secondary-color)
  1838. }
  1839. .form-control {
  1840. display: block;
  1841. width: 100%;
  1842. padding: .375rem .75rem;
  1843. font-size: 1rem;
  1844. font-weight: 400;
  1845. line-height: 1.5;
  1846. color: var(--bs-body-color);
  1847. -webkit-appearance: none;
  1848. -moz-appearance: none;
  1849. appearance: none;
  1850. background-color: var(--bs-body-bg);
  1851. background-clip: padding-box;
  1852. border: var(--bs-border-width) solid var(--bs-border-color);
  1853. border-radius: var(--bs-border-radius);
  1854. transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
  1855. }
  1856. @media (prefers-reduced-motion: reduce) {
  1857. .form-control {
  1858. transition: none
  1859. }
  1860. }
  1861. .form-control[type=file] {
  1862. overflow: hidden
  1863. }
  1864. .form-control[type=file]:not(:disabled):not([readonly]) {
  1865. cursor: pointer
  1866. }
  1867. .form-control:focus {
  1868. color: var(--bs-body-color);
  1869. background-color: var(--bs-body-bg);
  1870. border-color: #86b7fe;
  1871. outline: 0;
  1872. box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
  1873. }
  1874. .form-control::-webkit-date-and-time-value {
  1875. min-width: 85px;
  1876. height: 1.5em;
  1877. margin: 0
  1878. }
  1879. .form-control::-webkit-datetime-edit {
  1880. display: block;
  1881. padding: 0
  1882. }
  1883. .form-control::-moz-placeholder {
  1884. color: var(--bs-secondary-color);
  1885. opacity: 1
  1886. }
  1887. .form-control::placeholder {
  1888. color: var(--bs-secondary-color);
  1889. opacity: 1
  1890. }
  1891. .form-control:disabled {
  1892. background-color: var(--bs-secondary-bg);
  1893. opacity: 1
  1894. }
  1895. .form-control::-webkit-file-upload-button {
  1896. padding: .375rem .75rem;
  1897. margin: -.375rem -.75rem;
  1898. -webkit-margin-end: .75rem;
  1899. margin-inline-end: .75rem;
  1900. color: var(--bs-body-color);
  1901. background-color: var(--bs-tertiary-bg);
  1902. pointer-events: none;
  1903. border-color: inherit;
  1904. border-style: solid;
  1905. border-width: 0;
  1906. border-inline-end-width: var(--bs-border-width);
  1907. border-radius: 0;
  1908. -webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  1909. transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
  1910. }
  1911. .form-control::file-selector-button {
  1912. padding: .375rem .75rem;
  1913. margin: -.375rem -.75rem;
  1914. -webkit-margin-end: .75rem;
  1915. margin-inline-end: .75rem;
  1916. color: var(--bs-body-color);
  1917. background-color: var(--bs-tertiary-bg);
  1918. pointer-events: none;
  1919. border-color: inherit;
  1920. border-style: solid;
  1921. border-width: 0;
  1922. border-inline-end-width: var(--bs-border-width);
  1923. border-radius: 0;
  1924. transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
  1925. }
  1926. @media (prefers-reduced-motion: reduce) {
  1927. .form-control::-webkit-file-upload-button {
  1928. -webkit-transition: none;
  1929. transition: none
  1930. }
  1931. .form-control::file-selector-button {
  1932. transition: none
  1933. }
  1934. }
  1935. .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  1936. background-color: var(--bs-secondary-bg)
  1937. }
  1938. .form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  1939. background-color: var(--bs-secondary-bg)
  1940. }
  1941. .form-control-plaintext {
  1942. display: block;
  1943. width: 100%;
  1944. padding: .375rem 0;
  1945. margin-bottom: 0;
  1946. line-height: 1.5;
  1947. color: var(--bs-body-color);
  1948. background-color: transparent;
  1949. border: solid transparent;
  1950. border-width: var(--bs-border-width) 0
  1951. }
  1952. .form-control-plaintext:focus {
  1953. outline: 0
  1954. }
  1955. .form-control-plaintext.form-control-lg, .form-control-plaintext.form-control-sm {
  1956. padding-right: 0;
  1957. padding-left: 0
  1958. }
  1959. .form-control-sm {
  1960. min-height: calc(1.5em + .5rem + calc(var(--bs-border-width) * 2));
  1961. padding: .25rem .5rem;
  1962. font-size: .875rem;
  1963. border-radius: var(--bs-border-radius-sm)
  1964. }
  1965. .form-control-sm::-webkit-file-upload-button {
  1966. padding: .25rem .5rem;
  1967. margin: -.25rem -.5rem;
  1968. -webkit-margin-end: .5rem;
  1969. margin-inline-end: .5rem
  1970. }
  1971. .form-control-sm::file-selector-button {
  1972. padding: .25rem .5rem;
  1973. margin: -.25rem -.5rem;
  1974. -webkit-margin-end: .5rem;
  1975. margin-inline-end: .5rem
  1976. }
  1977. .form-control-lg {
  1978. min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
  1979. padding: .5rem 1rem;
  1980. font-size: 1.25rem;
  1981. border-radius: var(--bs-border-radius-lg)
  1982. }
  1983. .form-control-lg::-webkit-file-upload-button {
  1984. padding: .5rem 1rem;
  1985. margin: -.5rem -1rem;
  1986. -webkit-margin-end: 1rem;
  1987. margin-inline-end: 1rem
  1988. }
  1989. .form-control-lg::file-selector-button {
  1990. padding: .5rem 1rem;
  1991. margin: -.5rem -1rem;
  1992. -webkit-margin-end: 1rem;
  1993. margin-inline-end: 1rem
  1994. }
  1995. textarea.form-control {
  1996. min-height: calc(1.5em + .75rem + calc(var(--bs-border-width) * 2))
  1997. }
  1998. textarea.form-control-sm {
  1999. min-height: calc(1.5em + .5rem + calc(var(--bs-border-width) * 2))
  2000. }
  2001. textarea.form-control-lg {
  2002. min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2))
  2003. }
  2004. .form-control-color {
  2005. width: 3rem;
  2006. height: calc(1.5em + .75rem + calc(var(--bs-border-width) * 2));
  2007. padding: .375rem
  2008. }
  2009. .form-control-color:not(:disabled):not([readonly]) {
  2010. cursor: pointer
  2011. }
  2012. .form-control-color::-moz-color-swatch {
  2013. border: 0 !important;
  2014. border-radius: var(--bs-border-radius)
  2015. }
  2016. .form-control-color::-webkit-color-swatch {
  2017. border: 0 !important;
  2018. border-radius: var(--bs-border-radius)
  2019. }
  2020. .form-control-color.form-control-sm {
  2021. height: calc(1.5em + .5rem + calc(var(--bs-border-width) * 2))
  2022. }
  2023. .form-control-color.form-control-lg {
  2024. height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2))
  2025. }
  2026. .form-select {
  2027. --bs-form-select-bg-img: 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 5 6 6 6-6'/%3e%3c/svg%3e");
  2028. display: block;
  2029. width: 100%;
  2030. padding: .375rem 2.25rem .375rem .75rem;
  2031. font-size: 1rem;
  2032. font-weight: 400;
  2033. line-height: 1.5;
  2034. color: var(--bs-body-color);
  2035. -webkit-appearance: none;
  2036. -moz-appearance: none;
  2037. appearance: none;
  2038. background-color: var(--bs-body-bg);
  2039. background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  2040. background-repeat: no-repeat;
  2041. background-position: right .75rem center;
  2042. background-size: 16px 12px;
  2043. border: var(--bs-border-width) solid var(--bs-border-color);
  2044. border-radius: var(--bs-border-radius);
  2045. transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
  2046. }
  2047. @media (prefers-reduced-motion: reduce) {
  2048. .form-select {
  2049. transition: none
  2050. }
  2051. }
  2052. .form-select:focus {
  2053. border-color: #86b7fe;
  2054. outline: 0;
  2055. box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
  2056. }
  2057. .form-select[multiple], .form-select[size]:not([size="1"]) {
  2058. padding-right: .75rem;
  2059. background-image: none
  2060. }
  2061. .form-select:disabled {
  2062. background-color: var(--bs-secondary-bg)
  2063. }
  2064. .form-select:-moz-focusring {
  2065. color: transparent;
  2066. text-shadow: 0 0 0 var(--bs-body-color)
  2067. }
  2068. .form-select-sm {
  2069. padding-top: .25rem;
  2070. padding-bottom: .25rem;
  2071. padding-left: .5rem;
  2072. font-size: .875rem;
  2073. border-radius: var(--bs-border-radius-sm)
  2074. }
  2075. .form-select-lg {
  2076. padding-top: .5rem;
  2077. padding-bottom: .5rem;
  2078. padding-left: 1rem;
  2079. font-size: 1.25rem;
  2080. border-radius: var(--bs-border-radius-lg)
  2081. }
  2082. [data-bs-theme=dark] .form-select {
  2083. --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e")
  2084. }
  2085. .form-check {
  2086. display: block;
  2087. min-height: 1.5rem;
  2088. padding-left: 1.5em;
  2089. margin-bottom: .125rem
  2090. }
  2091. .form-check .form-check-input {
  2092. float: left;
  2093. margin-left: -1.5em
  2094. }
  2095. .form-check-reverse {
  2096. padding-right: 1.5em;
  2097. padding-left: 0;
  2098. text-align: right
  2099. }
  2100. .form-check-reverse .form-check-input {
  2101. float: right;
  2102. margin-right: -1.5em;
  2103. margin-left: 0
  2104. }
  2105. .form-check-input {
  2106. --bs-form-check-bg: var(--bs-body-bg);
  2107. flex-shrink: 0;
  2108. width: 1em;
  2109. height: 1em;
  2110. margin-top: .25em;
  2111. vertical-align: top;
  2112. -webkit-appearance: none;
  2113. -moz-appearance: none;
  2114. appearance: none;
  2115. background-color: var(--bs-form-check-bg);
  2116. background-image: var(--bs-form-check-bg-image);
  2117. background-repeat: no-repeat;
  2118. background-position: center;
  2119. background-size: contain;
  2120. border: var(--bs-border-width) solid var(--bs-border-color);
  2121. -webkit-print-color-adjust: exact;
  2122. color-adjust: exact;
  2123. print-color-adjust: exact
  2124. }
  2125. .form-check-input[type=checkbox] {
  2126. border-radius: .25em
  2127. }
  2128. .form-check-input[type=radio] {
  2129. border-radius: 50%
  2130. }
  2131. .form-check-input:active {
  2132. filter: brightness(90%)
  2133. }
  2134. .form-check-input:focus {
  2135. border-color: #86b7fe;
  2136. outline: 0;
  2137. box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
  2138. }
  2139. .form-check-input:checked {
  2140. background-color: #0d6efd;
  2141. border-color: #0d6efd
  2142. }
  2143. .form-check-input:checked[type=checkbox] {
  2144. --bs-form-check-bg-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 10 3 3 6-6'/%3e%3c/svg%3e")
  2145. }
  2146. .form-check-input:checked[type=radio] {
  2147. --bs-form-check-bg-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")
  2148. }
  2149. .form-check-input[type=checkbox]:indeterminate {
  2150. background-color: #0d6efd;
  2151. border-color: #0d6efd;
  2152. --bs-form-check-bg-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")
  2153. }
  2154. .form-check-input:disabled {
  2155. pointer-events: none;
  2156. filter: none;
  2157. opacity: .5
  2158. }
  2159. .form-check-input:disabled ~ .form-check-label, .form-check-input[disabled] ~ .form-check-label {
  2160. cursor: default;
  2161. opacity: .5
  2162. }
  2163. .form-switch {
  2164. padding-left: 2.5em
  2165. }
  2166. .form-switch .form-check-input {
  2167. --bs-form-switch-bg: 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");
  2168. width: 2em;
  2169. margin-left: -2.5em;
  2170. background-image: var(--bs-form-switch-bg);
  2171. background-position: left center;
  2172. border-radius: 2em;
  2173. transition: background-position .15s ease-in-out
  2174. }
  2175. @media (prefers-reduced-motion: reduce) {
  2176. .form-switch .form-check-input {
  2177. transition: none
  2178. }
  2179. }
  2180. .form-switch .form-check-input:focus {
  2181. --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")
  2182. }
  2183. .form-switch .form-check-input:checked {
  2184. background-position: right center;
  2185. --bs-form-switch-bg: 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")
  2186. }
  2187. .form-switch.form-check-reverse {
  2188. padding-right: 2.5em;
  2189. padding-left: 0
  2190. }
  2191. .form-switch.form-check-reverse .form-check-input {
  2192. margin-right: -2.5em;
  2193. margin-left: 0
  2194. }
  2195. .form-check-inline {
  2196. display: inline-block;
  2197. margin-right: 1rem
  2198. }
  2199. .btn-check {
  2200. position: absolute;
  2201. clip: rect(0, 0, 0, 0);
  2202. pointer-events: none
  2203. }
  2204. .btn-check:disabled + .btn, .btn-check[disabled] + .btn {
  2205. pointer-events: none;
  2206. filter: none;
  2207. opacity: .65
  2208. }
  2209. [data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus) {
  2210. --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e")
  2211. }
  2212. .form-range {
  2213. width: 100%;
  2214. height: 1.5rem;
  2215. padding: 0;
  2216. -webkit-appearance: none;
  2217. -moz-appearance: none;
  2218. appearance: none;
  2219. background-color: transparent
  2220. }
  2221. .form-range:focus {
  2222. outline: 0
  2223. }
  2224. .form-range:focus::-webkit-slider-thumb {
  2225. box-shadow: 0 0 0 1px #fff, 0 0 0 .25rem rgba(13, 110, 253, .25)
  2226. }
  2227. .form-range:focus::-moz-range-thumb {
  2228. box-shadow: 0 0 0 1px #fff, 0 0 0 .25rem rgba(13, 110, 253, .25)
  2229. }
  2230. .form-range::-moz-focus-outer {
  2231. border: 0
  2232. }
  2233. .form-range::-webkit-slider-thumb {
  2234. width: 1rem;
  2235. height: 1rem;
  2236. margin-top: -.25rem;
  2237. -webkit-appearance: none;
  2238. appearance: none;
  2239. background-color: #0d6efd;
  2240. border: 0;
  2241. border-radius: 1rem;
  2242. -webkit-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  2243. transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
  2244. }
  2245. @media (prefers-reduced-motion: reduce) {
  2246. .form-range::-webkit-slider-thumb {
  2247. -webkit-transition: none;
  2248. transition: none
  2249. }
  2250. }
  2251. .form-range::-webkit-slider-thumb:active {
  2252. background-color: #b6d4fe
  2253. }
  2254. .form-range::-webkit-slider-runnable-track {
  2255. width: 100%;
  2256. height: .5rem;
  2257. color: transparent;
  2258. cursor: pointer;
  2259. background-color: var(--bs-secondary-bg);
  2260. border-color: transparent;
  2261. border-radius: 1rem
  2262. }
  2263. .form-range::-moz-range-thumb {
  2264. width: 1rem;
  2265. height: 1rem;
  2266. -moz-appearance: none;
  2267. appearance: none;
  2268. background-color: #0d6efd;
  2269. border: 0;
  2270. border-radius: 1rem;
  2271. -moz-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  2272. transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
  2273. }
  2274. @media (prefers-reduced-motion: reduce) {
  2275. .form-range::-moz-range-thumb {
  2276. -moz-transition: none;
  2277. transition: none
  2278. }
  2279. }
  2280. .form-range::-moz-range-thumb:active {
  2281. background-color: #b6d4fe
  2282. }
  2283. .form-range::-moz-range-track {
  2284. width: 100%;
  2285. height: .5rem;
  2286. color: transparent;
  2287. cursor: pointer;
  2288. background-color: var(--bs-secondary-bg);
  2289. border-color: transparent;
  2290. border-radius: 1rem
  2291. }
  2292. .form-range:disabled {
  2293. pointer-events: none
  2294. }
  2295. .form-range:disabled::-webkit-slider-thumb {
  2296. background-color: var(--bs-secondary-color)
  2297. }
  2298. .form-range:disabled::-moz-range-thumb {
  2299. background-color: var(--bs-secondary-color)
  2300. }
  2301. .form-floating {
  2302. position: relative
  2303. }
  2304. .form-floating > .form-control, .form-floating > .form-control-plaintext, .form-floating > .form-select {
  2305. height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  2306. min-height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  2307. line-height: 1.25
  2308. }
  2309. .form-floating > label {
  2310. position: absolute;
  2311. top: 0;
  2312. left: 0;
  2313. z-index: 2;
  2314. height: 100%;
  2315. padding: 1rem .75rem;
  2316. overflow: hidden;
  2317. text-align: start;
  2318. text-overflow: ellipsis;
  2319. white-space: nowrap;
  2320. pointer-events: none;
  2321. border: var(--bs-border-width) solid transparent;
  2322. transform-origin: 0 0;
  2323. transition: opacity .1s ease-in-out, transform .1s ease-in-out
  2324. }
  2325. @media (prefers-reduced-motion: reduce) {
  2326. .form-floating > label {
  2327. transition: none
  2328. }
  2329. }
  2330. .form-floating > .form-control, .form-floating > .form-control-plaintext {
  2331. padding: 1rem .75rem
  2332. }
  2333. .form-floating > .form-control-plaintext::-moz-placeholder, .form-floating > .form-control::-moz-placeholder {
  2334. color: transparent
  2335. }
  2336. .form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  2337. color: transparent
  2338. }
  2339. .form-floating > .form-control-plaintext:not(:-moz-placeholder-shown), .form-floating > .form-control:not(:-moz-placeholder-shown) {
  2340. padding-top: 1.625rem;
  2341. padding-bottom: .625rem
  2342. }
  2343. .form-floating > .form-control-plaintext:focus, .form-floating > .form-control-plaintext:not(:placeholder-shown), .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
  2344. padding-top: 1.625rem;
  2345. padding-bottom: .625rem
  2346. }
  2347. .form-floating > .form-control-plaintext:-webkit-autofill, .form-floating > .form-control:-webkit-autofill {
  2348. padding-top: 1.625rem;
  2349. padding-bottom: .625rem
  2350. }
  2351. .form-floating > .form-select {
  2352. padding-top: 1.625rem;
  2353. padding-bottom: .625rem
  2354. }
  2355. .form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  2356. color: rgba(var(--bs-body-color-rgb), .65);
  2357. transform: scale(.85) translateY(-.5rem) translateX(.15rem)
  2358. }
  2359. .form-floating > .form-control-plaintext ~ label, .form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
  2360. color: rgba(var(--bs-body-color-rgb), .65);
  2361. transform: scale(.85) translateY(-.5rem) translateX(.15rem)
  2362. }
  2363. .form-floating > .form-control:not(:-moz-placeholder-shown) ~ label::after {
  2364. position: absolute;
  2365. inset: 1rem 0.375rem;
  2366. z-index: -1;
  2367. height: 1.5em;
  2368. content: "";
  2369. background-color: var(--bs-body-bg);
  2370. border-radius: var(--bs-border-radius)
  2371. }
  2372. .form-floating > .form-control-plaintext ~ label::after, .form-floating > .form-control:focus ~ label::after, .form-floating > .form-control:not(:placeholder-shown) ~ label::after, .form-floating > .form-select ~ label::after {
  2373. position: absolute;
  2374. inset: 1rem 0.375rem;
  2375. z-index: -1;
  2376. height: 1.5em;
  2377. content: "";
  2378. background-color: var(--bs-body-bg);
  2379. border-radius: var(--bs-border-radius)
  2380. }
  2381. .form-floating > .form-control:-webkit-autofill ~ label {
  2382. color: rgba(var(--bs-body-color-rgb), .65);
  2383. transform: scale(.85) translateY(-.5rem) translateX(.15rem)
  2384. }
  2385. .form-floating > .form-control-plaintext ~ label {
  2386. border-width: var(--bs-border-width) 0
  2387. }
  2388. .form-floating > .form-control:disabled ~ label, .form-floating > :disabled ~ label {
  2389. color: #6c757d
  2390. }
  2391. .form-floating > .form-control:disabled ~ label::after, .form-floating > :disabled ~ label::after {
  2392. background-color: var(--bs-secondary-bg)
  2393. }
  2394. .input-group {
  2395. position: relative;
  2396. display: flex;
  2397. flex-wrap: wrap;
  2398. align-items: stretch;
  2399. width: 100%
  2400. }
  2401. .input-group > .form-control, .input-group > .form-floating, .input-group > .form-select {
  2402. position: relative;
  2403. flex: 1 1 auto;
  2404. width: 1%;
  2405. min-width: 0
  2406. }
  2407. .input-group > .form-control:focus, .input-group > .form-floating:focus-within, .input-group > .form-select:focus {
  2408. z-index: 5
  2409. }
  2410. .input-group .btn {
  2411. position: relative;
  2412. z-index: 2
  2413. }
  2414. .input-group .btn:focus {
  2415. z-index: 5
  2416. }
  2417. .input-group-text {
  2418. display: flex;
  2419. align-items: center;
  2420. padding: .375rem .75rem;
  2421. font-size: 1rem;
  2422. font-weight: 400;
  2423. line-height: 1.5;
  2424. color: var(--bs-body-color);
  2425. text-align: center;
  2426. white-space: nowrap;
  2427. background-color: var(--bs-tertiary-bg);
  2428. border: var(--bs-border-width) solid var(--bs-border-color);
  2429. border-radius: var(--bs-border-radius)
  2430. }
  2431. .input-group-lg > .btn, .input-group-lg > .form-control, .input-group-lg > .form-select, .input-group-lg > .input-group-text {
  2432. padding: .5rem 1rem;
  2433. font-size: 1.25rem;
  2434. border-radius: var(--bs-border-radius-lg)
  2435. }
  2436. .input-group-sm > .btn, .input-group-sm > .form-control, .input-group-sm > .form-select, .input-group-sm > .input-group-text {
  2437. padding: .25rem .5rem;
  2438. font-size: .875rem;
  2439. border-radius: var(--bs-border-radius-sm)
  2440. }
  2441. .input-group-lg > .form-select, .input-group-sm > .form-select {
  2442. padding-right: 3rem
  2443. }
  2444. .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3), .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control, .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select, .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
  2445. border-top-right-radius: 0;
  2446. border-bottom-right-radius: 0
  2447. }
  2448. .input-group.has-validation > .dropdown-toggle:nth-last-child(n+4), .input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control, .input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select, .input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
  2449. border-top-right-radius: 0;
  2450. border-bottom-right-radius: 0
  2451. }
  2452. .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  2453. margin-left: calc(var(--bs-border-width) * -1);
  2454. border-top-left-radius: 0;
  2455. border-bottom-left-radius: 0
  2456. }
  2457. .input-group > .form-floating:not(:first-child) > .form-control, .input-group > .form-floating:not(:first-child) > .form-select {
  2458. border-top-left-radius: 0;
  2459. border-bottom-left-radius: 0
  2460. }
  2461. .valid-feedback {
  2462. display: none;
  2463. width: 100%;
  2464. margin-top: .25rem;
  2465. font-size: .875em;
  2466. color: var(--bs-form-valid-color)
  2467. }
  2468. .valid-tooltip {
  2469. position: absolute;
  2470. top: 100%;
  2471. z-index: 5;
  2472. display: none;
  2473. max-width: 100%;
  2474. padding: .25rem .5rem;
  2475. margin-top: .1rem;
  2476. font-size: .875rem;
  2477. color: #fff;
  2478. background-color: var(--bs-success);
  2479. border-radius: var(--bs-border-radius)
  2480. }
  2481. .is-valid ~ .valid-feedback, .is-valid ~ .valid-tooltip, .was-validated :valid ~ .valid-feedback, .was-validated :valid ~ .valid-tooltip {
  2482. display: block
  2483. }
  2484. .form-control.is-valid, .was-validated .form-control:valid {
  2485. border-color: var(--bs-form-valid-border-color);
  2486. padding-right: calc(1.5em + .75rem);
  2487. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.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");
  2488. background-repeat: no-repeat;
  2489. background-position: right calc(.375em + .1875rem) center;
  2490. background-size: calc(.75em + .375rem) calc(.75em + .375rem)
  2491. }
  2492. .form-control.is-valid:focus, .was-validated .form-control:valid:focus {
  2493. border-color: var(--bs-form-valid-border-color);
  2494. box-shadow: 0 0 0 .25rem rgba(var(--bs-success-rgb), .25)
  2495. }
  2496. .was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  2497. padding-right: calc(1.5em + .75rem);
  2498. background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem)
  2499. }
  2500. .form-select.is-valid, .was-validated .form-select:valid {
  2501. border-color: var(--bs-form-valid-border-color)
  2502. }
  2503. .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"], .was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"] {
  2504. --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.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");
  2505. padding-right: 4.125rem;
  2506. background-position: right .75rem center, center right 2.25rem;
  2507. background-size: 16px 12px, calc(.75em + .375rem) calc(.75em + .375rem)
  2508. }
  2509. .form-select.is-valid:focus, .was-validated .form-select:valid:focus {
  2510. border-color: var(--bs-form-valid-border-color);
  2511. box-shadow: 0 0 0 .25rem rgba(var(--bs-success-rgb), .25)
  2512. }
  2513. .form-control-color.is-valid, .was-validated .form-control-color:valid {
  2514. width: calc(3rem + calc(1.5em + .75rem))
  2515. }
  2516. .form-check-input.is-valid, .was-validated .form-check-input:valid {
  2517. border-color: var(--bs-form-valid-border-color)
  2518. }
  2519. .form-check-input.is-valid:checked, .was-validated .form-check-input:valid:checked {
  2520. background-color: var(--bs-form-valid-color)
  2521. }
  2522. .form-check-input.is-valid:focus, .was-validated .form-check-input:valid:focus {
  2523. box-shadow: 0 0 0 .25rem rgba(var(--bs-success-rgb), .25)
  2524. }
  2525. .form-check-input.is-valid ~ .form-check-label, .was-validated .form-check-input:valid ~ .form-check-label {
  2526. color: var(--bs-form-valid-color)
  2527. }
  2528. .form-check-inline .form-check-input ~ .valid-feedback {
  2529. margin-left: .5em
  2530. }
  2531. .input-group > .form-control:not(:focus).is-valid, .input-group > .form-floating:not(:focus-within).is-valid, .input-group > .form-select:not(:focus).is-valid, .was-validated .input-group > .form-control:not(:focus):valid, .was-validated .input-group > .form-floating:not(:focus-within):valid, .was-validated .input-group > .form-select:not(:focus):valid {
  2532. z-index: 3
  2533. }
  2534. .invalid-feedback {
  2535. display: none;
  2536. width: 100%;
  2537. margin-top: .25rem;
  2538. font-size: .875em;
  2539. color: var(--bs-form-invalid-color)
  2540. }
  2541. .invalid-tooltip {
  2542. position: absolute;
  2543. top: 100%;
  2544. z-index: 5;
  2545. display: none;
  2546. max-width: 100%;
  2547. padding: .25rem .5rem;
  2548. margin-top: .1rem;
  2549. font-size: .875rem;
  2550. color: #fff;
  2551. background-color: var(--bs-danger);
  2552. border-radius: var(--bs-border-radius)
  2553. }
  2554. .is-invalid ~ .invalid-feedback, .is-invalid ~ .invalid-tooltip, .was-validated :invalid ~ .invalid-feedback, .was-validated :invalid ~ .invalid-tooltip {
  2555. display: block
  2556. }
  2557. .form-control.is-invalid, .was-validated .form-control:invalid {
  2558. border-color: var(--bs-form-invalid-border-color);
  2559. padding-right: calc(1.5em + .75rem);
  2560. 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='%23dc3545'%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='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  2561. background-repeat: no-repeat;
  2562. background-position: right calc(.375em + .1875rem) center;
  2563. background-size: calc(.75em + .375rem) calc(.75em + .375rem)
  2564. }
  2565. .form-control.is-invalid:focus, .was-validated .form-control:invalid:focus {
  2566. border-color: var(--bs-form-invalid-border-color);
  2567. box-shadow: 0 0 0 .25rem rgba(var(--bs-danger-rgb), .25)
  2568. }
  2569. .was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  2570. padding-right: calc(1.5em + .75rem);
  2571. background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem)
  2572. }
  2573. .form-select.is-invalid, .was-validated .form-select:invalid {
  2574. border-color: var(--bs-form-invalid-border-color)
  2575. }
  2576. .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"], .was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"] {
  2577. --bs-form-select-bg-icon: 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='%23dc3545'%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='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  2578. padding-right: 4.125rem;
  2579. background-position: right .75rem center, center right 2.25rem;
  2580. background-size: 16px 12px, calc(.75em + .375rem) calc(.75em + .375rem)
  2581. }
  2582. .form-select.is-invalid:focus, .was-validated .form-select:invalid:focus {
  2583. border-color: var(--bs-form-invalid-border-color);
  2584. box-shadow: 0 0 0 .25rem rgba(var(--bs-danger-rgb), .25)
  2585. }
  2586. .form-control-color.is-invalid, .was-validated .form-control-color:invalid {
  2587. width: calc(3rem + calc(1.5em + .75rem))
  2588. }
  2589. .form-check-input.is-invalid, .was-validated .form-check-input:invalid {
  2590. border-color: var(--bs-form-invalid-border-color)
  2591. }
  2592. .form-check-input.is-invalid:checked, .was-validated .form-check-input:invalid:checked {
  2593. background-color: var(--bs-form-invalid-color)
  2594. }
  2595. .form-check-input.is-invalid:focus, .was-validated .form-check-input:invalid:focus {
  2596. box-shadow: 0 0 0 .25rem rgba(var(--bs-danger-rgb), .25)
  2597. }
  2598. .form-check-input.is-invalid ~ .form-check-label, .was-validated .form-check-input:invalid ~ .form-check-label {
  2599. color: var(--bs-form-invalid-color)
  2600. }
  2601. .form-check-inline .form-check-input ~ .invalid-feedback {
  2602. margin-left: .5em
  2603. }
  2604. .input-group > .form-control:not(:focus).is-invalid, .input-group > .form-floating:not(:focus-within).is-invalid, .input-group > .form-select:not(:focus).is-invalid, .was-validated .input-group > .form-control:not(:focus):invalid, .was-validated .input-group > .form-floating:not(:focus-within):invalid, .was-validated .input-group > .form-select:not(:focus):invalid {
  2605. z-index: 4
  2606. }
  2607. .btn {
  2608. --bs-btn-padding-x: 0.75rem;
  2609. --bs-btn-padding-y: 0.375rem;
  2610. --bs-btn-font-family: ;
  2611. --bs-btn-font-size: 1rem;
  2612. --bs-btn-font-weight: 400;
  2613. --bs-btn-line-height: 1.5;
  2614. --bs-btn-color: var(--bs-body-color);
  2615. --bs-btn-bg: transparent;
  2616. --bs-btn-border-width: var(--bs-border-width);
  2617. --bs-btn-border-color: transparent;
  2618. --bs-btn-border-radius: var(--bs-border-radius);
  2619. --bs-btn-hover-border-color: transparent;
  2620. --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  2621. --bs-btn-disabled-opacity: 0.65;
  2622. --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  2623. display: inline-block;
  2624. padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  2625. font-family: var(--bs-btn-font-family);
  2626. font-size: var(--bs-btn-font-size);
  2627. font-weight: var(--bs-btn-font-weight);
  2628. line-height: var(--bs-btn-line-height);
  2629. color: var(--bs-btn-color);
  2630. text-align: center;
  2631. text-decoration: none;
  2632. vertical-align: middle;
  2633. cursor: pointer;
  2634. -webkit-user-select: none;
  2635. -moz-user-select: none;
  2636. user-select: none;
  2637. border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  2638. border-radius: var(--bs-btn-border-radius);
  2639. background-color: var(--bs-btn-bg);
  2640. transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
  2641. }
  2642. @media (prefers-reduced-motion: reduce) {
  2643. .btn {
  2644. transition: none
  2645. }
  2646. }
  2647. .btn:hover {
  2648. color: var(--bs-btn-hover-color);
  2649. background-color: var(--bs-btn-hover-bg);
  2650. border-color: var(--bs-btn-hover-border-color)
  2651. }
  2652. .btn-check + .btn:hover {
  2653. color: var(--bs-btn-color);
  2654. background-color: var(--bs-btn-bg);
  2655. border-color: var(--bs-btn-border-color)
  2656. }
  2657. .btn:focus-visible {
  2658. color: var(--bs-btn-hover-color);
  2659. background-color: var(--bs-btn-hover-bg);
  2660. border-color: var(--bs-btn-hover-border-color);
  2661. outline: 0;
  2662. box-shadow: var(--bs-btn-focus-box-shadow)
  2663. }
  2664. .btn-check:focus-visible + .btn {
  2665. border-color: var(--bs-btn-hover-border-color);
  2666. outline: 0;
  2667. box-shadow: var(--bs-btn-focus-box-shadow)
  2668. }
  2669. .btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
  2670. color: var(--bs-btn-active-color);
  2671. background-color: var(--bs-btn-active-bg);
  2672. border-color: var(--bs-btn-active-border-color)
  2673. }
  2674. .btn-check:checked + .btn:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible, .btn:first-child:active:focus-visible, :not(.btn-check) + .btn:active:focus-visible {
  2675. box-shadow: var(--bs-btn-focus-box-shadow)
  2676. }
  2677. .btn-check:checked:focus-visible + .btn {
  2678. box-shadow: var(--bs-btn-focus-box-shadow)
  2679. }
  2680. .btn.disabled, .btn:disabled, fieldset:disabled .btn {
  2681. color: var(--bs-btn-disabled-color);
  2682. pointer-events: none;
  2683. background-color: var(--bs-btn-disabled-bg);
  2684. border-color: var(--bs-btn-disabled-border-color);
  2685. opacity: var(--bs-btn-disabled-opacity)
  2686. }
  2687. .btn-primary {
  2688. --bs-btn-color: #fff;
  2689. --bs-btn-bg: #0d6efd;
  2690. --bs-btn-border-color: #0d6efd;
  2691. --bs-btn-hover-color: #fff;
  2692. --bs-btn-hover-bg: #0b5ed7;
  2693. --bs-btn-hover-border-color: #0a58ca;
  2694. --bs-btn-focus-shadow-rgb: 49, 132, 253;
  2695. --bs-btn-active-color: #fff;
  2696. --bs-btn-active-bg: #0a58ca;
  2697. --bs-btn-active-border-color: #0a53be;
  2698. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2699. --bs-btn-disabled-color: #fff;
  2700. --bs-btn-disabled-bg: #0d6efd;
  2701. --bs-btn-disabled-border-color: #0d6efd
  2702. }
  2703. .btn-secondary {
  2704. --bs-btn-color: #fff;
  2705. --bs-btn-bg: #6c757d;
  2706. --bs-btn-border-color: #6c757d;
  2707. --bs-btn-hover-color: #fff;
  2708. --bs-btn-hover-bg: #5c636a;
  2709. --bs-btn-hover-border-color: #565e64;
  2710. --bs-btn-focus-shadow-rgb: 130, 138, 145;
  2711. --bs-btn-active-color: #fff;
  2712. --bs-btn-active-bg: #565e64;
  2713. --bs-btn-active-border-color: #51585e;
  2714. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2715. --bs-btn-disabled-color: #fff;
  2716. --bs-btn-disabled-bg: #6c757d;
  2717. --bs-btn-disabled-border-color: #6c757d
  2718. }
  2719. .btn-success {
  2720. --bs-btn-color: #fff;
  2721. --bs-btn-bg: #198754;
  2722. --bs-btn-border-color: #198754;
  2723. --bs-btn-hover-color: #fff;
  2724. --bs-btn-hover-bg: #157347;
  2725. --bs-btn-hover-border-color: #146c43;
  2726. --bs-btn-focus-shadow-rgb: 60, 153, 110;
  2727. --bs-btn-active-color: #fff;
  2728. --bs-btn-active-bg: #146c43;
  2729. --bs-btn-active-border-color: #13653f;
  2730. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2731. --bs-btn-disabled-color: #fff;
  2732. --bs-btn-disabled-bg: #198754;
  2733. --bs-btn-disabled-border-color: #198754
  2734. }
  2735. .btn-info {
  2736. --bs-btn-color: #000;
  2737. --bs-btn-bg: #0dcaf0;
  2738. --bs-btn-border-color: #0dcaf0;
  2739. --bs-btn-hover-color: #000;
  2740. --bs-btn-hover-bg: #31d2f2;
  2741. --bs-btn-hover-border-color: #25cff2;
  2742. --bs-btn-focus-shadow-rgb: 11, 172, 204;
  2743. --bs-btn-active-color: #000;
  2744. --bs-btn-active-bg: #3dd5f3;
  2745. --bs-btn-active-border-color: #25cff2;
  2746. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2747. --bs-btn-disabled-color: #000;
  2748. --bs-btn-disabled-bg: #0dcaf0;
  2749. --bs-btn-disabled-border-color: #0dcaf0
  2750. }
  2751. .btn-warning {
  2752. --bs-btn-color: #000;
  2753. --bs-btn-bg: #ffc107;
  2754. --bs-btn-border-color: #ffc107;
  2755. --bs-btn-hover-color: #000;
  2756. --bs-btn-hover-bg: #ffca2c;
  2757. --bs-btn-hover-border-color: #ffc720;
  2758. --bs-btn-focus-shadow-rgb: 217, 164, 6;
  2759. --bs-btn-active-color: #000;
  2760. --bs-btn-active-bg: #ffcd39;
  2761. --bs-btn-active-border-color: #ffc720;
  2762. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2763. --bs-btn-disabled-color: #000;
  2764. --bs-btn-disabled-bg: #ffc107;
  2765. --bs-btn-disabled-border-color: #ffc107
  2766. }
  2767. .btn-danger {
  2768. --bs-btn-color: #fff;
  2769. --bs-btn-bg: #dc3545;
  2770. --bs-btn-border-color: #dc3545;
  2771. --bs-btn-hover-color: #fff;
  2772. --bs-btn-hover-bg: #bb2d3b;
  2773. --bs-btn-hover-border-color: #b02a37;
  2774. --bs-btn-focus-shadow-rgb: 225, 83, 97;
  2775. --bs-btn-active-color: #fff;
  2776. --bs-btn-active-bg: #b02a37;
  2777. --bs-btn-active-border-color: #a52834;
  2778. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2779. --bs-btn-disabled-color: #fff;
  2780. --bs-btn-disabled-bg: #dc3545;
  2781. --bs-btn-disabled-border-color: #dc3545
  2782. }
  2783. .btn-light {
  2784. --bs-btn-color: #000;
  2785. --bs-btn-bg: #f8f9fa;
  2786. --bs-btn-border-color: #f8f9fa;
  2787. --bs-btn-hover-color: #000;
  2788. --bs-btn-hover-bg: #d3d4d5;
  2789. --bs-btn-hover-border-color: #c6c7c8;
  2790. --bs-btn-focus-shadow-rgb: 211, 212, 213;
  2791. --bs-btn-active-color: #000;
  2792. --bs-btn-active-bg: #c6c7c8;
  2793. --bs-btn-active-border-color: #babbbc;
  2794. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2795. --bs-btn-disabled-color: #000;
  2796. --bs-btn-disabled-bg: #f8f9fa;
  2797. --bs-btn-disabled-border-color: #f8f9fa
  2798. }
  2799. .btn-dark {
  2800. --bs-btn-color: #fff;
  2801. --bs-btn-bg: #212529;
  2802. --bs-btn-border-color: #212529;
  2803. --bs-btn-hover-color: #fff;
  2804. --bs-btn-hover-bg: #424649;
  2805. --bs-btn-hover-border-color: #373b3e;
  2806. --bs-btn-focus-shadow-rgb: 66, 70, 73;
  2807. --bs-btn-active-color: #fff;
  2808. --bs-btn-active-bg: #4d5154;
  2809. --bs-btn-active-border-color: #373b3e;
  2810. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2811. --bs-btn-disabled-color: #fff;
  2812. --bs-btn-disabled-bg: #212529;
  2813. --bs-btn-disabled-border-color: #212529
  2814. }
  2815. .btn-outline-primary {
  2816. --bs-btn-color: #0d6efd;
  2817. --bs-btn-border-color: #0d6efd;
  2818. --bs-btn-hover-color: #fff;
  2819. --bs-btn-hover-bg: #0d6efd;
  2820. --bs-btn-hover-border-color: #0d6efd;
  2821. --bs-btn-focus-shadow-rgb: 13, 110, 253;
  2822. --bs-btn-active-color: #fff;
  2823. --bs-btn-active-bg: #0d6efd;
  2824. --bs-btn-active-border-color: #0d6efd;
  2825. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2826. --bs-btn-disabled-color: #0d6efd;
  2827. --bs-btn-disabled-bg: transparent;
  2828. --bs-btn-disabled-border-color: #0d6efd;
  2829. --bs-gradient: none
  2830. }
  2831. .btn-outline-secondary {
  2832. --bs-btn-color: #6c757d;
  2833. --bs-btn-border-color: #6c757d;
  2834. --bs-btn-hover-color: #fff;
  2835. --bs-btn-hover-bg: #6c757d;
  2836. --bs-btn-hover-border-color: #6c757d;
  2837. --bs-btn-focus-shadow-rgb: 108, 117, 125;
  2838. --bs-btn-active-color: #fff;
  2839. --bs-btn-active-bg: #6c757d;
  2840. --bs-btn-active-border-color: #6c757d;
  2841. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2842. --bs-btn-disabled-color: #6c757d;
  2843. --bs-btn-disabled-bg: transparent;
  2844. --bs-btn-disabled-border-color: #6c757d;
  2845. --bs-gradient: none
  2846. }
  2847. .btn-outline-success {
  2848. --bs-btn-color: #198754;
  2849. --bs-btn-border-color: #198754;
  2850. --bs-btn-hover-color: #fff;
  2851. --bs-btn-hover-bg: #198754;
  2852. --bs-btn-hover-border-color: #198754;
  2853. --bs-btn-focus-shadow-rgb: 25, 135, 84;
  2854. --bs-btn-active-color: #fff;
  2855. --bs-btn-active-bg: #198754;
  2856. --bs-btn-active-border-color: #198754;
  2857. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2858. --bs-btn-disabled-color: #198754;
  2859. --bs-btn-disabled-bg: transparent;
  2860. --bs-btn-disabled-border-color: #198754;
  2861. --bs-gradient: none
  2862. }
  2863. .btn-outline-info {
  2864. --bs-btn-color: #0dcaf0;
  2865. --bs-btn-border-color: #0dcaf0;
  2866. --bs-btn-hover-color: #000;
  2867. --bs-btn-hover-bg: #0dcaf0;
  2868. --bs-btn-hover-border-color: #0dcaf0;
  2869. --bs-btn-focus-shadow-rgb: 13, 202, 240;
  2870. --bs-btn-active-color: #000;
  2871. --bs-btn-active-bg: #0dcaf0;
  2872. --bs-btn-active-border-color: #0dcaf0;
  2873. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2874. --bs-btn-disabled-color: #0dcaf0;
  2875. --bs-btn-disabled-bg: transparent;
  2876. --bs-btn-disabled-border-color: #0dcaf0;
  2877. --bs-gradient: none
  2878. }
  2879. .btn-outline-warning {
  2880. --bs-btn-color: #ffc107;
  2881. --bs-btn-border-color: #ffc107;
  2882. --bs-btn-hover-color: #000;
  2883. --bs-btn-hover-bg: #ffc107;
  2884. --bs-btn-hover-border-color: #ffc107;
  2885. --bs-btn-focus-shadow-rgb: 255, 193, 7;
  2886. --bs-btn-active-color: #000;
  2887. --bs-btn-active-bg: #ffc107;
  2888. --bs-btn-active-border-color: #ffc107;
  2889. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2890. --bs-btn-disabled-color: #ffc107;
  2891. --bs-btn-disabled-bg: transparent;
  2892. --bs-btn-disabled-border-color: #ffc107;
  2893. --bs-gradient: none
  2894. }
  2895. .btn-outline-danger {
  2896. --bs-btn-color: #dc3545;
  2897. --bs-btn-border-color: #dc3545;
  2898. --bs-btn-hover-color: #fff;
  2899. --bs-btn-hover-bg: #dc3545;
  2900. --bs-btn-hover-border-color: #dc3545;
  2901. --bs-btn-focus-shadow-rgb: 220, 53, 69;
  2902. --bs-btn-active-color: #fff;
  2903. --bs-btn-active-bg: #dc3545;
  2904. --bs-btn-active-border-color: #dc3545;
  2905. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2906. --bs-btn-disabled-color: #dc3545;
  2907. --bs-btn-disabled-bg: transparent;
  2908. --bs-btn-disabled-border-color: #dc3545;
  2909. --bs-gradient: none
  2910. }
  2911. .btn-outline-light {
  2912. --bs-btn-color: #f8f9fa;
  2913. --bs-btn-border-color: #f8f9fa;
  2914. --bs-btn-hover-color: #000;
  2915. --bs-btn-hover-bg: #f8f9fa;
  2916. --bs-btn-hover-border-color: #f8f9fa;
  2917. --bs-btn-focus-shadow-rgb: 248, 249, 250;
  2918. --bs-btn-active-color: #000;
  2919. --bs-btn-active-bg: #f8f9fa;
  2920. --bs-btn-active-border-color: #f8f9fa;
  2921. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2922. --bs-btn-disabled-color: #f8f9fa;
  2923. --bs-btn-disabled-bg: transparent;
  2924. --bs-btn-disabled-border-color: #f8f9fa;
  2925. --bs-gradient: none
  2926. }
  2927. .btn-outline-dark {
  2928. --bs-btn-color: #212529;
  2929. --bs-btn-border-color: #212529;
  2930. --bs-btn-hover-color: #fff;
  2931. --bs-btn-hover-bg: #212529;
  2932. --bs-btn-hover-border-color: #212529;
  2933. --bs-btn-focus-shadow-rgb: 33, 37, 41;
  2934. --bs-btn-active-color: #fff;
  2935. --bs-btn-active-bg: #212529;
  2936. --bs-btn-active-border-color: #212529;
  2937. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2938. --bs-btn-disabled-color: #212529;
  2939. --bs-btn-disabled-bg: transparent;
  2940. --bs-btn-disabled-border-color: #212529;
  2941. --bs-gradient: none
  2942. }
  2943. .btn-link {
  2944. --bs-btn-font-weight: 400;
  2945. --bs-btn-color: var(--bs-link-color);
  2946. --bs-btn-bg: transparent;
  2947. --bs-btn-border-color: transparent;
  2948. --bs-btn-hover-color: var(--bs-link-hover-color);
  2949. --bs-btn-hover-border-color: transparent;
  2950. --bs-btn-active-color: var(--bs-link-hover-color);
  2951. --bs-btn-active-border-color: transparent;
  2952. --bs-btn-disabled-color: #6c757d;
  2953. --bs-btn-disabled-border-color: transparent;
  2954. --bs-btn-box-shadow: 0 0 0 #000;
  2955. --bs-btn-focus-shadow-rgb: 49, 132, 253;
  2956. text-decoration: underline
  2957. }
  2958. .btn-link:focus-visible {
  2959. color: var(--bs-btn-color)
  2960. }
  2961. .btn-link:hover {
  2962. color: var(--bs-btn-hover-color)
  2963. }
  2964. .btn-group-lg > .btn, .btn-lg {
  2965. --bs-btn-padding-y: 0.5rem;
  2966. --bs-btn-padding-x: 1rem;
  2967. --bs-btn-font-size: 1.25rem;
  2968. --bs-btn-border-radius: var(--bs-border-radius-lg)
  2969. }
  2970. .btn-group-sm > .btn, .btn-sm {
  2971. --bs-btn-padding-y: 0.25rem;
  2972. --bs-btn-padding-x: 0.5rem;
  2973. --bs-btn-font-size: 0.875rem;
  2974. --bs-btn-border-radius: var(--bs-border-radius-sm)
  2975. }
  2976. .fade {
  2977. transition: opacity .15s linear
  2978. }
  2979. @media (prefers-reduced-motion: reduce) {
  2980. .fade {
  2981. transition: none
  2982. }
  2983. }
  2984. .fade:not(.show) {
  2985. opacity: 0
  2986. }
  2987. .collapse:not(.show) {
  2988. display: none
  2989. }
  2990. .collapsing {
  2991. height: 0;
  2992. overflow: hidden;
  2993. transition: height .35s ease
  2994. }
  2995. @media (prefers-reduced-motion: reduce) {
  2996. .collapsing {
  2997. transition: none
  2998. }
  2999. }
  3000. .collapsing.collapse-horizontal {
  3001. width: 0;
  3002. height: auto;
  3003. transition: width .35s ease
  3004. }
  3005. @media (prefers-reduced-motion: reduce) {
  3006. .collapsing.collapse-horizontal {
  3007. transition: none
  3008. }
  3009. }
  3010. .dropdown, .dropdown-center, .dropend, .dropstart, .dropup, .dropup-center {
  3011. position: relative
  3012. }
  3013. .dropdown-toggle {
  3014. white-space: nowrap
  3015. }
  3016. .dropdown-toggle::after {
  3017. display: inline-block;
  3018. margin-left: .255em;
  3019. vertical-align: .255em;
  3020. content: "";
  3021. border-top: .3em solid;
  3022. border-right: .3em solid transparent;
  3023. border-bottom: 0;
  3024. border-left: .3em solid transparent
  3025. }
  3026. .dropdown-toggle:empty::after {
  3027. margin-left: 0
  3028. }
  3029. .dropdown-menu {
  3030. --bs-dropdown-zindex: 1000;
  3031. --bs-dropdown-min-width: 10rem;
  3032. --bs-dropdown-padding-x: 0;
  3033. --bs-dropdown-padding-y: 0.5rem;
  3034. --bs-dropdown-spacer: 0.125rem;
  3035. --bs-dropdown-font-size: 1rem;
  3036. --bs-dropdown-color: var(--bs-body-color);
  3037. --bs-dropdown-bg: var(--bs-body-bg);
  3038. --bs-dropdown-border-color: var(--bs-border-color-translucent);
  3039. --bs-dropdown-border-radius: var(--bs-border-radius);
  3040. --bs-dropdown-border-width: var(--bs-border-width);
  3041. --bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width));
  3042. --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  3043. --bs-dropdown-divider-margin-y: 0.5rem;
  3044. --bs-dropdown-box-shadow: var(--bs-box-shadow);
  3045. --bs-dropdown-link-color: var(--bs-body-color);
  3046. --bs-dropdown-link-hover-color: var(--bs-body-color);
  3047. --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
  3048. --bs-dropdown-link-active-color: #fff;
  3049. --bs-dropdown-link-active-bg: #0d6efd;
  3050. --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
  3051. --bs-dropdown-item-padding-x: 1rem;
  3052. --bs-dropdown-item-padding-y: 0.25rem;
  3053. --bs-dropdown-header-color: #6c757d;
  3054. --bs-dropdown-header-padding-x: 1rem;
  3055. --bs-dropdown-header-padding-y: 0.5rem;
  3056. position: absolute;
  3057. z-index: var(--bs-dropdown-zindex);
  3058. display: none;
  3059. min-width: var(--bs-dropdown-min-width);
  3060. padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  3061. margin: 0;
  3062. font-size: var(--bs-dropdown-font-size);
  3063. color: var(--bs-dropdown-color);
  3064. text-align: left;
  3065. list-style: none;
  3066. background-color: var(--bs-dropdown-bg);
  3067. background-clip: padding-box;
  3068. border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  3069. border-radius: var(--bs-dropdown-border-radius)
  3070. }
  3071. .dropdown-menu[data-bs-popper] {
  3072. top: 100%;
  3073. left: 0;
  3074. margin-top: var(--bs-dropdown-spacer)
  3075. }
  3076. .dropdown-menu-start {
  3077. --bs-position: start
  3078. }
  3079. .dropdown-menu-start[data-bs-popper] {
  3080. right: auto;
  3081. left: 0
  3082. }
  3083. .dropdown-menu-end {
  3084. --bs-position: end
  3085. }
  3086. .dropdown-menu-end[data-bs-popper] {
  3087. right: 0;
  3088. left: auto
  3089. }
  3090. @media (min-width: 576px) {
  3091. .dropdown-menu-sm-start {
  3092. --bs-position: start
  3093. }
  3094. .dropdown-menu-sm-start[data-bs-popper] {
  3095. right: auto;
  3096. left: 0
  3097. }
  3098. .dropdown-menu-sm-end {
  3099. --bs-position: end
  3100. }
  3101. .dropdown-menu-sm-end[data-bs-popper] {
  3102. right: 0;
  3103. left: auto
  3104. }
  3105. }
  3106. @media (min-width: 768px) {
  3107. .dropdown-menu-md-start {
  3108. --bs-position: start
  3109. }
  3110. .dropdown-menu-md-start[data-bs-popper] {
  3111. right: auto;
  3112. left: 0
  3113. }
  3114. .dropdown-menu-md-end {
  3115. --bs-position: end
  3116. }
  3117. .dropdown-menu-md-end[data-bs-popper] {
  3118. right: 0;
  3119. left: auto
  3120. }
  3121. }
  3122. @media (min-width: 992px) {
  3123. .dropdown-menu-lg-start {
  3124. --bs-position: start
  3125. }
  3126. .dropdown-menu-lg-start[data-bs-popper] {
  3127. right: auto;
  3128. left: 0
  3129. }
  3130. .dropdown-menu-lg-end {
  3131. --bs-position: end
  3132. }
  3133. .dropdown-menu-lg-end[data-bs-popper] {
  3134. right: 0;
  3135. left: auto
  3136. }
  3137. }
  3138. @media (min-width: 1200px) {
  3139. .dropdown-menu-xl-start {
  3140. --bs-position: start
  3141. }
  3142. .dropdown-menu-xl-start[data-bs-popper] {
  3143. right: auto;
  3144. left: 0
  3145. }
  3146. .dropdown-menu-xl-end {
  3147. --bs-position: end
  3148. }
  3149. .dropdown-menu-xl-end[data-bs-popper] {
  3150. right: 0;
  3151. left: auto
  3152. }
  3153. }
  3154. @media (min-width: 1400px) {
  3155. .dropdown-menu-xxl-start {
  3156. --bs-position: start
  3157. }
  3158. .dropdown-menu-xxl-start[data-bs-popper] {
  3159. right: auto;
  3160. left: 0
  3161. }
  3162. .dropdown-menu-xxl-end {
  3163. --bs-position: end
  3164. }
  3165. .dropdown-menu-xxl-end[data-bs-popper] {
  3166. right: 0;
  3167. left: auto
  3168. }
  3169. }
  3170. .dropup .dropdown-menu[data-bs-popper] {
  3171. top: auto;
  3172. bottom: 100%;
  3173. margin-top: 0;
  3174. margin-bottom: var(--bs-dropdown-spacer)
  3175. }
  3176. .dropup .dropdown-toggle::after {
  3177. display: inline-block;
  3178. margin-left: .255em;
  3179. vertical-align: .255em;
  3180. content: "";
  3181. border-top: 0;
  3182. border-right: .3em solid transparent;
  3183. border-bottom: .3em solid;
  3184. border-left: .3em solid transparent
  3185. }
  3186. .dropup .dropdown-toggle:empty::after {
  3187. margin-left: 0
  3188. }
  3189. .dropend .dropdown-menu[data-bs-popper] {
  3190. top: 0;
  3191. right: auto;
  3192. left: 100%;
  3193. margin-top: 0;
  3194. margin-left: var(--bs-dropdown-spacer)
  3195. }
  3196. .dropend .dropdown-toggle::after {
  3197. display: inline-block;
  3198. margin-left: .255em;
  3199. vertical-align: .255em;
  3200. content: "";
  3201. border-top: .3em solid transparent;
  3202. border-right: 0;
  3203. border-bottom: .3em solid transparent;
  3204. border-left: .3em solid
  3205. }
  3206. .dropend .dropdown-toggle:empty::after {
  3207. margin-left: 0
  3208. }
  3209. .dropend .dropdown-toggle::after {
  3210. vertical-align: 0
  3211. }
  3212. .dropstart .dropdown-menu[data-bs-popper] {
  3213. top: 0;
  3214. right: 100%;
  3215. left: auto;
  3216. margin-top: 0;
  3217. margin-right: var(--bs-dropdown-spacer)
  3218. }
  3219. .dropstart .dropdown-toggle::after {
  3220. display: inline-block;
  3221. margin-left: .255em;
  3222. vertical-align: .255em;
  3223. content: ""
  3224. }
  3225. .dropstart .dropdown-toggle::after {
  3226. display: none
  3227. }
  3228. .dropstart .dropdown-toggle::before {
  3229. display: inline-block;
  3230. margin-right: .255em;
  3231. vertical-align: .255em;
  3232. content: "";
  3233. border-top: .3em solid transparent;
  3234. border-right: .3em solid;
  3235. border-bottom: .3em solid transparent
  3236. }
  3237. .dropstart .dropdown-toggle:empty::after {
  3238. margin-left: 0
  3239. }
  3240. .dropstart .dropdown-toggle::before {
  3241. vertical-align: 0
  3242. }
  3243. .dropdown-divider {
  3244. height: 0;
  3245. margin: var(--bs-dropdown-divider-margin-y) 0;
  3246. overflow: hidden;
  3247. border-top: 1px solid var(--bs-dropdown-divider-bg);
  3248. opacity: 1
  3249. }
  3250. .dropdown-item {
  3251. display: block;
  3252. width: 100%;
  3253. padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  3254. clear: both;
  3255. font-weight: 400;
  3256. color: var(--bs-dropdown-link-color);
  3257. text-align: inherit;
  3258. text-decoration: none;
  3259. white-space: nowrap;
  3260. background-color: transparent;
  3261. border: 0;
  3262. border-radius: var(--bs-dropdown-item-border-radius, 0)
  3263. }
  3264. .dropdown-item:focus, .dropdown-item:hover {
  3265. color: var(--bs-dropdown-link-hover-color);
  3266. background-color: var(--bs-dropdown-link-hover-bg)
  3267. }
  3268. .dropdown-item.active, .dropdown-item:active {
  3269. color: var(--bs-dropdown-link-active-color);
  3270. text-decoration: none;
  3271. background-color: var(--bs-dropdown-link-active-bg)
  3272. }
  3273. .dropdown-item.disabled, .dropdown-item:disabled {
  3274. color: var(--bs-dropdown-link-disabled-color);
  3275. pointer-events: none;
  3276. background-color: transparent
  3277. }
  3278. .dropdown-menu.show {
  3279. display: block
  3280. }
  3281. .dropdown-header {
  3282. display: block;
  3283. padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  3284. margin-bottom: 0;
  3285. font-size: .875rem;
  3286. color: var(--bs-dropdown-header-color);
  3287. white-space: nowrap
  3288. }
  3289. .dropdown-item-text {
  3290. display: block;
  3291. padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  3292. color: var(--bs-dropdown-link-color)
  3293. }
  3294. .dropdown-menu-dark {
  3295. --bs-dropdown-color: #dee2e6;
  3296. --bs-dropdown-bg: #343a40;
  3297. --bs-dropdown-border-color: var(--bs-border-color-translucent);
  3298. --bs-dropdown-box-shadow: ;
  3299. --bs-dropdown-link-color: #dee2e6;
  3300. --bs-dropdown-link-hover-color: #fff;
  3301. --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  3302. --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  3303. --bs-dropdown-link-active-color: #fff;
  3304. --bs-dropdown-link-active-bg: #0d6efd;
  3305. --bs-dropdown-link-disabled-color: #adb5bd;
  3306. --bs-dropdown-header-color: #adb5bd
  3307. }
  3308. .btn-group, .btn-group-vertical {
  3309. position: relative;
  3310. display: inline-flex;
  3311. vertical-align: middle
  3312. }
  3313. .btn-group-vertical > .btn, .btn-group > .btn {
  3314. position: relative;
  3315. flex: 1 1 auto
  3316. }
  3317. .btn-group-vertical > .btn-check:checked + .btn, .btn-group-vertical > .btn-check:focus + .btn, .btn-group-vertical > .btn.active, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:hover, .btn-group > .btn-check:checked + .btn, .btn-group > .btn-check:focus + .btn, .btn-group > .btn.active, .btn-group > .btn:active, .btn-group > .btn:focus, .btn-group > .btn:hover {
  3318. z-index: 1
  3319. }
  3320. .btn-toolbar {
  3321. display: flex;
  3322. flex-wrap: wrap;
  3323. justify-content: flex-start
  3324. }
  3325. .btn-toolbar .input-group {
  3326. width: auto
  3327. }
  3328. .btn-group {
  3329. border-radius: var(--bs-border-radius)
  3330. }
  3331. .btn-group > .btn-group:not(:first-child), .btn-group > :not(.btn-check:first-child) + .btn {
  3332. margin-left: calc(var(--bs-border-width) * -1)
  3333. }
  3334. .btn-group > .btn-group:not(:last-child) > .btn, .btn-group > .btn.dropdown-toggle-split:first-child, .btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
  3335. border-top-right-radius: 0;
  3336. border-bottom-right-radius: 0
  3337. }
  3338. .btn-group > .btn-group:not(:first-child) > .btn, .btn-group > .btn:nth-child(n+3), .btn-group > :not(.btn-check) + .btn {
  3339. border-top-left-radius: 0;
  3340. border-bottom-left-radius: 0
  3341. }
  3342. .dropdown-toggle-split {
  3343. padding-right: .5625rem;
  3344. padding-left: .5625rem
  3345. }
  3346. .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after {
  3347. margin-left: 0
  3348. }
  3349. .dropstart .dropdown-toggle-split::before {
  3350. margin-right: 0
  3351. }
  3352. .btn-group-sm > .btn + .dropdown-toggle-split, .btn-sm + .dropdown-toggle-split {
  3353. padding-right: .375rem;
  3354. padding-left: .375rem
  3355. }
  3356. .btn-group-lg > .btn + .dropdown-toggle-split, .btn-lg + .dropdown-toggle-split {
  3357. padding-right: .75rem;
  3358. padding-left: .75rem
  3359. }
  3360. .btn-group-vertical {
  3361. flex-direction: column;
  3362. align-items: flex-start;
  3363. justify-content: center
  3364. }
  3365. .btn-group-vertical > .btn, .btn-group-vertical > .btn-group {
  3366. width: 100%
  3367. }
  3368. .btn-group-vertical > .btn-group:not(:first-child), .btn-group-vertical > .btn:not(:first-child) {
  3369. margin-top: calc(var(--bs-border-width) * -1)
  3370. }
  3371. .btn-group-vertical > .btn-group:not(:last-child) > .btn, .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle) {
  3372. border-bottom-right-radius: 0;
  3373. border-bottom-left-radius: 0
  3374. }
  3375. .btn-group-vertical > .btn-group:not(:first-child) > .btn, .btn-group-vertical > .btn ~ .btn {
  3376. border-top-left-radius: 0;
  3377. border-top-right-radius: 0
  3378. }
  3379. .nav {
  3380. --bs-nav-link-padding-x: 1rem;
  3381. --bs-nav-link-padding-y: 0.5rem;
  3382. --bs-nav-link-font-weight: ;
  3383. --bs-nav-link-color: var(--bs-link-color);
  3384. --bs-nav-link-hover-color: var(--bs-link-hover-color);
  3385. --bs-nav-link-disabled-color: var(--bs-secondary-color);
  3386. display: flex;
  3387. flex-wrap: wrap;
  3388. padding-left: 0;
  3389. margin-bottom: 0;
  3390. list-style: none
  3391. }
  3392. .nav-link {
  3393. display: block;
  3394. padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  3395. font-size: var(--bs-nav-link-font-size);
  3396. font-weight: var(--bs-nav-link-font-weight);
  3397. color: var(--bs-nav-link-color);
  3398. text-decoration: none;
  3399. background: 0 0;
  3400. border: 0;
  3401. transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out
  3402. }
  3403. @media (prefers-reduced-motion: reduce) {
  3404. .nav-link {
  3405. transition: none
  3406. }
  3407. }
  3408. .nav-link:focus, .nav-link:hover {
  3409. color: var(--bs-nav-link-hover-color)
  3410. }
  3411. .nav-link:focus-visible {
  3412. outline: 0;
  3413. box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
  3414. }
  3415. .nav-link.disabled, .nav-link:disabled {
  3416. color: var(--bs-nav-link-disabled-color);
  3417. pointer-events: none;
  3418. cursor: default
  3419. }
  3420. .nav-tabs {
  3421. --bs-nav-tabs-border-width: var(--bs-border-width);
  3422. --bs-nav-tabs-border-color: var(--bs-border-color);
  3423. --bs-nav-tabs-border-radius: var(--bs-border-radius);
  3424. --bs-nav-tabs-link-hover-border-color: var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);
  3425. --bs-nav-tabs-link-active-color: var(--bs-emphasis-color);
  3426. --bs-nav-tabs-link-active-bg: var(--bs-body-bg);
  3427. --bs-nav-tabs-link-active-border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);
  3428. border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color)
  3429. }
  3430. .nav-tabs .nav-link {
  3431. margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  3432. border: var(--bs-nav-tabs-border-width) solid transparent;
  3433. border-top-left-radius: var(--bs-nav-tabs-border-radius);
  3434. border-top-right-radius: var(--bs-nav-tabs-border-radius)
  3435. }
  3436. .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
  3437. isolation: isolate;
  3438. border-color: var(--bs-nav-tabs-link-hover-border-color)
  3439. }
  3440. .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  3441. color: var(--bs-nav-tabs-link-active-color);
  3442. background-color: var(--bs-nav-tabs-link-active-bg);
  3443. border-color: var(--bs-nav-tabs-link-active-border-color)
  3444. }
  3445. .nav-tabs .dropdown-menu {
  3446. margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
  3447. border-top-left-radius: 0;
  3448. border-top-right-radius: 0
  3449. }
  3450. .nav-pills {
  3451. --bs-nav-pills-border-radius: var(--bs-border-radius);
  3452. --bs-nav-pills-link-active-color: #fff;
  3453. --bs-nav-pills-link-active-bg: #0d6efd
  3454. }
  3455. .nav-pills .nav-link {
  3456. border-radius: var(--bs-nav-pills-border-radius)
  3457. }
  3458. .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  3459. color: var(--bs-nav-pills-link-active-color);
  3460. background-color: var(--bs-nav-pills-link-active-bg)
  3461. }
  3462. .nav-underline {
  3463. --bs-nav-underline-gap: 1rem;
  3464. --bs-nav-underline-border-width: 0.125rem;
  3465. --bs-nav-underline-link-active-color: var(--bs-emphasis-color);
  3466. gap: var(--bs-nav-underline-gap)
  3467. }
  3468. .nav-underline .nav-link {
  3469. padding-right: 0;
  3470. padding-left: 0;
  3471. border-bottom: var(--bs-nav-underline-border-width) solid transparent
  3472. }
  3473. .nav-underline .nav-link:focus, .nav-underline .nav-link:hover {
  3474. border-bottom-color: currentcolor
  3475. }
  3476. .nav-underline .nav-link.active, .nav-underline .show > .nav-link {
  3477. font-weight: 700;
  3478. color: var(--bs-nav-underline-link-active-color);
  3479. border-bottom-color: currentcolor
  3480. }
  3481. .nav-fill .nav-item, .nav-fill > .nav-link {
  3482. flex: 1 1 auto;
  3483. text-align: center
  3484. }
  3485. .nav-justified .nav-item, .nav-justified > .nav-link {
  3486. flex-basis: 0;
  3487. flex-grow: 1;
  3488. text-align: center
  3489. }
  3490. .nav-fill .nav-item .nav-link, .nav-justified .nav-item .nav-link {
  3491. width: 100%
  3492. }
  3493. .tab-content > .tab-pane {
  3494. display: none
  3495. }
  3496. .tab-content > .active {
  3497. display: block
  3498. }
  3499. .navbar {
  3500. --bs-navbar-padding-x: 0;
  3501. --bs-navbar-padding-y: 0.5rem;
  3502. --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.65);
  3503. --bs-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), 0.8);
  3504. --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
  3505. --bs-navbar-active-color: rgba(var(--bs-emphasis-color-rgb), 1);
  3506. --bs-navbar-brand-padding-y: 0.3125rem;
  3507. --bs-navbar-brand-margin-end: 1rem;
  3508. --bs-navbar-brand-font-size: 1.25rem;
  3509. --bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1);
  3510. --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1);
  3511. --bs-navbar-nav-link-padding-x: 0.5rem;
  3512. --bs-navbar-toggler-padding-y: 0.25rem;
  3513. --bs-navbar-toggler-padding-x: 0.75rem;
  3514. --bs-navbar-toggler-font-size: 1.25rem;
  3515. --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  3516. --bs-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), 0.15);
  3517. --bs-navbar-toggler-border-radius: var(--bs-border-radius);
  3518. --bs-navbar-toggler-focus-width: 0.25rem;
  3519. --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  3520. position: relative;
  3521. display: flex;
  3522. flex-wrap: wrap;
  3523. align-items: center;
  3524. justify-content: space-between;
  3525. padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x)
  3526. }
  3527. .navbar > .container, .navbar > .container-fluid, .navbar > .container-lg, .navbar > .container-md, .navbar > .container-sm, .navbar > .container-xl, .navbar > .container-xxl {
  3528. display: flex;
  3529. flex-wrap: inherit;
  3530. align-items: center;
  3531. justify-content: space-between
  3532. }
  3533. .navbar-brand {
  3534. padding-top: var(--bs-navbar-brand-padding-y);
  3535. padding-bottom: var(--bs-navbar-brand-padding-y);
  3536. margin-right: var(--bs-navbar-brand-margin-end);
  3537. font-size: var(--bs-navbar-brand-font-size);
  3538. color: var(--bs-navbar-brand-color);
  3539. text-decoration: none;
  3540. white-space: nowrap
  3541. }
  3542. .navbar-brand:focus, .navbar-brand:hover {
  3543. color: var(--bs-navbar-brand-hover-color)
  3544. }
  3545. .navbar-nav {
  3546. --bs-nav-link-padding-x: 0;
  3547. --bs-nav-link-padding-y: 0.5rem;
  3548. --bs-nav-link-font-weight: ;
  3549. --bs-nav-link-color: var(--bs-navbar-color);
  3550. --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  3551. --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  3552. display: flex;
  3553. flex-direction: column;
  3554. padding-left: 0;
  3555. margin-bottom: 0;
  3556. list-style: none
  3557. }
  3558. .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  3559. color: var(--bs-navbar-active-color)
  3560. }
  3561. .navbar-nav .dropdown-menu {
  3562. position: static
  3563. }
  3564. .navbar-text {
  3565. padding-top: .5rem;
  3566. padding-bottom: .5rem;
  3567. color: var(--bs-navbar-color)
  3568. }
  3569. .navbar-text a, .navbar-text a:focus, .navbar-text a:hover {
  3570. color: var(--bs-navbar-active-color)
  3571. }
  3572. .navbar-collapse {
  3573. flex-basis: 100%;
  3574. flex-grow: 1;
  3575. align-items: center
  3576. }
  3577. .navbar-toggler {
  3578. padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  3579. font-size: var(--bs-navbar-toggler-font-size);
  3580. line-height: 1;
  3581. color: var(--bs-navbar-color);
  3582. background-color: transparent;
  3583. border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  3584. border-radius: var(--bs-navbar-toggler-border-radius);
  3585. transition: var(--bs-navbar-toggler-transition)
  3586. }
  3587. @media (prefers-reduced-motion: reduce) {
  3588. .navbar-toggler {
  3589. transition: none
  3590. }
  3591. }
  3592. .navbar-toggler:hover {
  3593. text-decoration: none
  3594. }
  3595. .navbar-toggler:focus {
  3596. text-decoration: none;
  3597. outline: 0;
  3598. box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width)
  3599. }
  3600. .navbar-toggler-icon {
  3601. display: inline-block;
  3602. width: 1.5em;
  3603. height: 1.5em;
  3604. vertical-align: middle;
  3605. background-image: var(--bs-navbar-toggler-icon-bg);
  3606. background-repeat: no-repeat;
  3607. background-position: center;
  3608. background-size: 100%
  3609. }
  3610. .navbar-nav-scroll {
  3611. max-height: var(--bs-scroll-height, 75vh);
  3612. overflow-y: auto
  3613. }
  3614. @media (min-width: 576px) {
  3615. .navbar-expand-sm {
  3616. flex-wrap: nowrap;
  3617. justify-content: flex-start
  3618. }
  3619. .navbar-expand-sm .navbar-nav {
  3620. flex-direction: row
  3621. }
  3622. .navbar-expand-sm .navbar-nav .dropdown-menu {
  3623. position: absolute
  3624. }
  3625. .navbar-expand-sm .navbar-nav .nav-link {
  3626. padding-right: var(--bs-navbar-nav-link-padding-x);
  3627. padding-left: var(--bs-navbar-nav-link-padding-x)
  3628. }
  3629. .navbar-expand-sm .navbar-nav-scroll {
  3630. overflow: visible
  3631. }
  3632. .navbar-expand-sm .navbar-collapse {
  3633. display: flex !important;
  3634. flex-basis: auto
  3635. }
  3636. .navbar-expand-sm .navbar-toggler {
  3637. display: none
  3638. }
  3639. .navbar-expand-sm .offcanvas {
  3640. position: static;
  3641. z-index: auto;
  3642. flex-grow: 1;
  3643. width: auto !important;
  3644. height: auto !important;
  3645. visibility: visible !important;
  3646. background-color: transparent !important;
  3647. border: 0 !important;
  3648. transform: none !important;
  3649. transition: none
  3650. }
  3651. .navbar-expand-sm .offcanvas .offcanvas-header {
  3652. display: none
  3653. }
  3654. .navbar-expand-sm .offcanvas .offcanvas-body {
  3655. display: flex;
  3656. flex-grow: 0;
  3657. padding: 0;
  3658. overflow-y: visible
  3659. }
  3660. }
  3661. @media (min-width: 768px) {
  3662. .navbar-expand-md {
  3663. flex-wrap: nowrap;
  3664. justify-content: flex-start
  3665. }
  3666. .navbar-expand-md .navbar-nav {
  3667. flex-direction: row
  3668. }
  3669. .navbar-expand-md .navbar-nav .dropdown-menu {
  3670. position: absolute
  3671. }
  3672. .navbar-expand-md .navbar-nav .nav-link {
  3673. padding-right: var(--bs-navbar-nav-link-padding-x);
  3674. padding-left: var(--bs-navbar-nav-link-padding-x)
  3675. }
  3676. .navbar-expand-md .navbar-nav-scroll {
  3677. overflow: visible
  3678. }
  3679. .navbar-expand-md .navbar-collapse {
  3680. display: flex !important;
  3681. flex-basis: auto
  3682. }
  3683. .navbar-expand-md .navbar-toggler {
  3684. display: none
  3685. }
  3686. .navbar-expand-md .offcanvas {
  3687. position: static;
  3688. z-index: auto;
  3689. flex-grow: 1;
  3690. width: auto !important;
  3691. height: auto !important;
  3692. visibility: visible !important;
  3693. background-color: transparent !important;
  3694. border: 0 !important;
  3695. transform: none !important;
  3696. transition: none
  3697. }
  3698. .navbar-expand-md .offcanvas .offcanvas-header {
  3699. display: none
  3700. }
  3701. .navbar-expand-md .offcanvas .offcanvas-body {
  3702. display: flex;
  3703. flex-grow: 0;
  3704. padding: 0;
  3705. overflow-y: visible
  3706. }
  3707. }
  3708. @media (min-width: 992px) {
  3709. .navbar-expand-lg {
  3710. flex-wrap: nowrap;
  3711. justify-content: flex-start
  3712. }
  3713. .navbar-expand-lg .navbar-nav {
  3714. flex-direction: row
  3715. }
  3716. .navbar-expand-lg .navbar-nav .dropdown-menu {
  3717. position: absolute
  3718. }
  3719. .navbar-expand-lg .navbar-nav .nav-link {
  3720. padding-right: var(--bs-navbar-nav-link-padding-x);
  3721. padding-left: var(--bs-navbar-nav-link-padding-x)
  3722. }
  3723. .navbar-expand-lg .navbar-nav-scroll {
  3724. overflow: visible
  3725. }
  3726. .navbar-expand-lg .navbar-collapse {
  3727. display: flex !important;
  3728. flex-basis: auto
  3729. }
  3730. .navbar-expand-lg .navbar-toggler {
  3731. display: none
  3732. }
  3733. .navbar-expand-lg .offcanvas {
  3734. position: static;
  3735. z-index: auto;
  3736. flex-grow: 1;
  3737. width: auto !important;
  3738. height: auto !important;
  3739. visibility: visible !important;
  3740. background-color: transparent !important;
  3741. border: 0 !important;
  3742. transform: none !important;
  3743. transition: none
  3744. }
  3745. .navbar-expand-lg .offcanvas .offcanvas-header {
  3746. display: none
  3747. }
  3748. .navbar-expand-lg .offcanvas .offcanvas-body {
  3749. display: flex;
  3750. flex-grow: 0;
  3751. padding: 0;
  3752. overflow-y: visible
  3753. }
  3754. }
  3755. @media (min-width: 1200px) {
  3756. .navbar-expand-xl {
  3757. flex-wrap: nowrap;
  3758. justify-content: flex-start
  3759. }
  3760. .navbar-expand-xl .navbar-nav {
  3761. flex-direction: row
  3762. }
  3763. .navbar-expand-xl .navbar-nav .dropdown-menu {
  3764. position: absolute
  3765. }
  3766. .navbar-expand-xl .navbar-nav .nav-link {
  3767. padding-right: var(--bs-navbar-nav-link-padding-x);
  3768. padding-left: var(--bs-navbar-nav-link-padding-x)
  3769. }
  3770. .navbar-expand-xl .navbar-nav-scroll {
  3771. overflow: visible
  3772. }
  3773. .navbar-expand-xl .navbar-collapse {
  3774. display: flex !important;
  3775. flex-basis: auto
  3776. }
  3777. .navbar-expand-xl .navbar-toggler {
  3778. display: none
  3779. }
  3780. .navbar-expand-xl .offcanvas {
  3781. position: static;
  3782. z-index: auto;
  3783. flex-grow: 1;
  3784. width: auto !important;
  3785. height: auto !important;
  3786. visibility: visible !important;
  3787. background-color: transparent !important;
  3788. border: 0 !important;
  3789. transform: none !important;
  3790. transition: none
  3791. }
  3792. .navbar-expand-xl .offcanvas .offcanvas-header {
  3793. display: none
  3794. }
  3795. .navbar-expand-xl .offcanvas .offcanvas-body {
  3796. display: flex;
  3797. flex-grow: 0;
  3798. padding: 0;
  3799. overflow-y: visible
  3800. }
  3801. }
  3802. @media (min-width: 1400px) {
  3803. .navbar-expand-xxl {
  3804. flex-wrap: nowrap;
  3805. justify-content: flex-start
  3806. }
  3807. .navbar-expand-xxl .navbar-nav {
  3808. flex-direction: row
  3809. }
  3810. .navbar-expand-xxl .navbar-nav .dropdown-menu {
  3811. position: absolute
  3812. }
  3813. .navbar-expand-xxl .navbar-nav .nav-link {
  3814. padding-right: var(--bs-navbar-nav-link-padding-x);
  3815. padding-left: var(--bs-navbar-nav-link-padding-x)
  3816. }
  3817. .navbar-expand-xxl .navbar-nav-scroll {
  3818. overflow: visible
  3819. }
  3820. .navbar-expand-xxl .navbar-collapse {
  3821. display: flex !important;
  3822. flex-basis: auto
  3823. }
  3824. .navbar-expand-xxl .navbar-toggler {
  3825. display: none
  3826. }
  3827. .navbar-expand-xxl .offcanvas {
  3828. position: static;
  3829. z-index: auto;
  3830. flex-grow: 1;
  3831. width: auto !important;
  3832. height: auto !important;
  3833. visibility: visible !important;
  3834. background-color: transparent !important;
  3835. border: 0 !important;
  3836. transform: none !important;
  3837. transition: none
  3838. }
  3839. .navbar-expand-xxl .offcanvas .offcanvas-header {
  3840. display: none
  3841. }
  3842. .navbar-expand-xxl .offcanvas .offcanvas-body {
  3843. display: flex;
  3844. flex-grow: 0;
  3845. padding: 0;
  3846. overflow-y: visible
  3847. }
  3848. }
  3849. .navbar-expand {
  3850. flex-wrap: nowrap;
  3851. justify-content: flex-start
  3852. }
  3853. .navbar-expand .navbar-nav {
  3854. flex-direction: row
  3855. }
  3856. .navbar-expand .navbar-nav .dropdown-menu {
  3857. position: absolute
  3858. }
  3859. .navbar-expand .navbar-nav .nav-link {
  3860. padding-right: var(--bs-navbar-nav-link-padding-x);
  3861. padding-left: var(--bs-navbar-nav-link-padding-x)
  3862. }
  3863. .navbar-expand .navbar-nav-scroll {
  3864. overflow: visible
  3865. }
  3866. .navbar-expand .navbar-collapse {
  3867. display: flex !important;
  3868. flex-basis: auto
  3869. }
  3870. .navbar-expand .navbar-toggler {
  3871. display: none
  3872. }
  3873. .navbar-expand .offcanvas {
  3874. position: static;
  3875. z-index: auto;
  3876. flex-grow: 1;
  3877. width: auto !important;
  3878. height: auto !important;
  3879. visibility: visible !important;
  3880. background-color: transparent !important;
  3881. border: 0 !important;
  3882. transform: none !important;
  3883. transition: none
  3884. }
  3885. .navbar-expand .offcanvas .offcanvas-header {
  3886. display: none
  3887. }
  3888. .navbar-expand .offcanvas .offcanvas-body {
  3889. display: flex;
  3890. flex-grow: 0;
  3891. padding: 0;
  3892. overflow-y: visible
  3893. }
  3894. .navbar-dark, .navbar[data-bs-theme=dark] {
  3895. --bs-navbar-color: rgba(255, 255, 255, 0.55);
  3896. --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
  3897. --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
  3898. --bs-navbar-active-color: #fff;
  3899. --bs-navbar-brand-color: #fff;
  3900. --bs-navbar-brand-hover-color: #fff;
  3901. --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
  3902. --bs-navbar-toggler-icon-bg: 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")
  3903. }
  3904. [data-bs-theme=dark] .navbar-toggler-icon {
  3905. --bs-navbar-toggler-icon-bg: 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")
  3906. }
  3907. .card {
  3908. --bs-card-spacer-y: 1rem;
  3909. --bs-card-spacer-x: 1rem;
  3910. --bs-card-title-spacer-y: 0.5rem;
  3911. --bs-card-title-color: ;
  3912. --bs-card-subtitle-color: ;
  3913. --bs-card-border-width: var(--bs-border-width);
  3914. --bs-card-border-color: var(--bs-border-color-translucent);
  3915. --bs-card-border-radius: var(--bs-border-radius);
  3916. --bs-card-box-shadow: ;
  3917. --bs-card-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  3918. --bs-card-cap-padding-y: 0.5rem;
  3919. --bs-card-cap-padding-x: 1rem;
  3920. --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
  3921. --bs-card-cap-color: ;
  3922. --bs-card-height: ;
  3923. --bs-card-color: ;
  3924. --bs-card-bg: var(--bs-body-bg);
  3925. --bs-card-img-overlay-padding: 1rem;
  3926. --bs-card-group-margin: 0.75rem;
  3927. position: relative;
  3928. display: flex;
  3929. flex-direction: column;
  3930. min-width: 0;
  3931. height: var(--bs-card-height);
  3932. color: var(--bs-body-color);
  3933. word-wrap: break-word;
  3934. background-color: var(--bs-card-bg);
  3935. background-clip: border-box;
  3936. border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  3937. border-radius: var(--bs-card-border-radius)
  3938. }
  3939. .card > hr {
  3940. margin-right: 0;
  3941. margin-left: 0
  3942. }
  3943. .card > .list-group {
  3944. border-top: inherit;
  3945. border-bottom: inherit
  3946. }
  3947. .card > .list-group:first-child {
  3948. border-top-width: 0;
  3949. border-top-left-radius: var(--bs-card-inner-border-radius);
  3950. border-top-right-radius: var(--bs-card-inner-border-radius)
  3951. }
  3952. .card > .list-group:last-child {
  3953. border-bottom-width: 0;
  3954. border-bottom-right-radius: var(--bs-card-inner-border-radius);
  3955. border-bottom-left-radius: var(--bs-card-inner-border-radius)
  3956. }
  3957. .card > .card-header + .list-group, .card > .list-group + .card-footer {
  3958. border-top: 0
  3959. }
  3960. .card-body {
  3961. flex: 1 1 auto;
  3962. padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  3963. color: var(--bs-card-color)
  3964. }
  3965. .card-title {
  3966. margin-bottom: var(--bs-card-title-spacer-y);
  3967. color: var(--bs-card-title-color)
  3968. }
  3969. .card-subtitle {
  3970. margin-top: calc(-.5 * var(--bs-card-title-spacer-y));
  3971. margin-bottom: 0;
  3972. color: var(--bs-card-subtitle-color)
  3973. }
  3974. .card-text:last-child {
  3975. margin-bottom: 0
  3976. }
  3977. .card-link + .card-link {
  3978. margin-left: var(--bs-card-spacer-x)
  3979. }
  3980. .card-header {
  3981. padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  3982. margin-bottom: 0;
  3983. color: var(--bs-card-cap-color);
  3984. background-color: var(--bs-card-cap-bg);
  3985. border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color)
  3986. }
  3987. .card-header:first-child {
  3988. border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0
  3989. }
  3990. .card-footer {
  3991. padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  3992. color: var(--bs-card-cap-color);
  3993. background-color: var(--bs-card-cap-bg);
  3994. border-top: var(--bs-card-border-width) solid var(--bs-card-border-color)
  3995. }
  3996. .card-footer:last-child {
  3997. border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius)
  3998. }
  3999. .card-header-tabs {
  4000. margin-right: calc(-.5 * var(--bs-card-cap-padding-x));
  4001. margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  4002. margin-left: calc(-.5 * var(--bs-card-cap-padding-x));
  4003. border-bottom: 0
  4004. }
  4005. .card-header-tabs .nav-link.active {
  4006. background-color: var(--bs-card-bg);
  4007. border-bottom-color: var(--bs-card-bg)
  4008. }
  4009. .card-header-pills {
  4010. margin-right: calc(-.5 * var(--bs-card-cap-padding-x));
  4011. margin-left: calc(-.5 * var(--bs-card-cap-padding-x))
  4012. }
  4013. .card-img-overlay {
  4014. position: absolute;
  4015. top: 0;
  4016. right: 0;
  4017. bottom: 0;
  4018. left: 0;
  4019. padding: var(--bs-card-img-overlay-padding);
  4020. border-radius: var(--bs-card-inner-border-radius)
  4021. }
  4022. .card-img, .card-img-bottom, .card-img-top {
  4023. width: 100%
  4024. }
  4025. .card-img, .card-img-top {
  4026. border-top-left-radius: var(--bs-card-inner-border-radius);
  4027. border-top-right-radius: var(--bs-card-inner-border-radius)
  4028. }
  4029. .card-img, .card-img-bottom {
  4030. border-bottom-right-radius: var(--bs-card-inner-border-radius);
  4031. border-bottom-left-radius: var(--bs-card-inner-border-radius)
  4032. }
  4033. .card-group > .card {
  4034. margin-bottom: var(--bs-card-group-margin)
  4035. }
  4036. @media (min-width: 576px) {
  4037. .card-group {
  4038. display: flex;
  4039. flex-flow: row wrap
  4040. }
  4041. .card-group > .card {
  4042. flex: 1 0 0%;
  4043. margin-bottom: 0
  4044. }
  4045. .card-group > .card + .card {
  4046. margin-left: 0;
  4047. border-left: 0
  4048. }
  4049. .card-group > .card:not(:last-child) {
  4050. border-top-right-radius: 0;
  4051. border-bottom-right-radius: 0
  4052. }
  4053. .card-group > .card:not(:last-child) .card-header, .card-group > .card:not(:last-child) .card-img-top {
  4054. border-top-right-radius: 0
  4055. }
  4056. .card-group > .card:not(:last-child) .card-footer, .card-group > .card:not(:last-child) .card-img-bottom {
  4057. border-bottom-right-radius: 0
  4058. }
  4059. .card-group > .card:not(:first-child) {
  4060. border-top-left-radius: 0;
  4061. border-bottom-left-radius: 0
  4062. }
  4063. .card-group > .card:not(:first-child) .card-header, .card-group > .card:not(:first-child) .card-img-top {
  4064. border-top-left-radius: 0
  4065. }
  4066. .card-group > .card:not(:first-child) .card-footer, .card-group > .card:not(:first-child) .card-img-bottom {
  4067. border-bottom-left-radius: 0
  4068. }
  4069. }
  4070. .accordion {
  4071. --bs-accordion-color: var(--bs-body-color);
  4072. --bs-accordion-bg: var(--bs-body-bg);
  4073. --bs-accordion-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;
  4074. --bs-accordion-border-color: var(--bs-border-color);
  4075. --bs-accordion-border-width: var(--bs-border-width);
  4076. --bs-accordion-border-radius: var(--bs-border-radius);
  4077. --bs-accordion-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  4078. --bs-accordion-btn-padding-x: 1.25rem;
  4079. --bs-accordion-btn-padding-y: 1rem;
  4080. --bs-accordion-btn-color: var(--bs-body-color);
  4081. --bs-accordion-btn-bg: var(--bs-accordion-bg);
  4082. --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
  4083. --bs-accordion-btn-icon-width: 1.25rem;
  4084. --bs-accordion-btn-icon-transform: rotate(-180deg);
  4085. --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  4086. --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23052c65' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
  4087. --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  4088. --bs-accordion-body-padding-x: 1.25rem;
  4089. --bs-accordion-body-padding-y: 1rem;
  4090. --bs-accordion-active-color: var(--bs-primary-text-emphasis);
  4091. --bs-accordion-active-bg: var(--bs-primary-bg-subtle)
  4092. }
  4093. .accordion-button {
  4094. position: relative;
  4095. display: flex;
  4096. align-items: center;
  4097. width: 100%;
  4098. padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  4099. font-size: 1rem;
  4100. color: var(--bs-accordion-btn-color);
  4101. text-align: left;
  4102. background-color: var(--bs-accordion-btn-bg);
  4103. border: 0;
  4104. border-radius: 0;
  4105. overflow-anchor: none;
  4106. transition: var(--bs-accordion-transition)
  4107. }
  4108. @media (prefers-reduced-motion: reduce) {
  4109. .accordion-button {
  4110. transition: none
  4111. }
  4112. }
  4113. .accordion-button:not(.collapsed) {
  4114. color: var(--bs-accordion-active-color);
  4115. background-color: var(--bs-accordion-active-bg);
  4116. box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color)
  4117. }
  4118. .accordion-button:not(.collapsed)::after {
  4119. background-image: var(--bs-accordion-btn-active-icon);
  4120. transform: var(--bs-accordion-btn-icon-transform)
  4121. }
  4122. .accordion-button::after {
  4123. flex-shrink: 0;
  4124. width: var(--bs-accordion-btn-icon-width);
  4125. height: var(--bs-accordion-btn-icon-width);
  4126. margin-left: auto;
  4127. content: "";
  4128. background-image: var(--bs-accordion-btn-icon);
  4129. background-repeat: no-repeat;
  4130. background-size: var(--bs-accordion-btn-icon-width);
  4131. transition: var(--bs-accordion-btn-icon-transition)
  4132. }
  4133. @media (prefers-reduced-motion: reduce) {
  4134. .accordion-button::after {
  4135. transition: none
  4136. }
  4137. }
  4138. .accordion-button:hover {
  4139. z-index: 2
  4140. }
  4141. .accordion-button:focus {
  4142. z-index: 3;
  4143. outline: 0;
  4144. box-shadow: var(--bs-accordion-btn-focus-box-shadow)
  4145. }
  4146. .accordion-header {
  4147. margin-bottom: 0
  4148. }
  4149. .accordion-item {
  4150. color: var(--bs-accordion-color);
  4151. background-color: var(--bs-accordion-bg);
  4152. border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)
  4153. }
  4154. .accordion-item:first-of-type {
  4155. border-top-left-radius: var(--bs-accordion-border-radius);
  4156. border-top-right-radius: var(--bs-accordion-border-radius)
  4157. }
  4158. .accordion-item:first-of-type > .accordion-header .accordion-button {
  4159. border-top-left-radius: var(--bs-accordion-inner-border-radius);
  4160. border-top-right-radius: var(--bs-accordion-inner-border-radius)
  4161. }
  4162. .accordion-item:not(:first-of-type) {
  4163. border-top: 0
  4164. }
  4165. .accordion-item:last-of-type {
  4166. border-bottom-right-radius: var(--bs-accordion-border-radius);
  4167. border-bottom-left-radius: var(--bs-accordion-border-radius)
  4168. }
  4169. .accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  4170. border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  4171. border-bottom-left-radius: var(--bs-accordion-inner-border-radius)
  4172. }
  4173. .accordion-item:last-of-type > .accordion-collapse {
  4174. border-bottom-right-radius: var(--bs-accordion-border-radius);
  4175. border-bottom-left-radius: var(--bs-accordion-border-radius)
  4176. }
  4177. .accordion-body {
  4178. padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x)
  4179. }
  4180. .accordion-flush > .accordion-item {
  4181. border-right: 0;
  4182. border-left: 0;
  4183. border-radius: 0
  4184. }
  4185. .accordion-flush > .accordion-item:first-child {
  4186. border-top: 0
  4187. }
  4188. .accordion-flush > .accordion-item:last-child {
  4189. border-bottom: 0
  4190. }
  4191. .accordion-flush > .accordion-item > .accordion-header .accordion-button, .accordion-flush > .accordion-item > .accordion-header .accordion-button.collapsed {
  4192. border-radius: 0
  4193. }
  4194. .accordion-flush > .accordion-item > .accordion-collapse {
  4195. border-radius: 0
  4196. }
  4197. [data-bs-theme=dark] .accordion-button::after {
  4198. --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%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");
  4199. --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%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")
  4200. }
  4201. .breadcrumb {
  4202. --bs-breadcrumb-padding-x: 0;
  4203. --bs-breadcrumb-padding-y: 0;
  4204. --bs-breadcrumb-margin-bottom: 1rem;
  4205. --bs-breadcrumb-bg: ;
  4206. --bs-breadcrumb-border-radius: ;
  4207. --bs-breadcrumb-divider-color: var(--bs-secondary-color);
  4208. --bs-breadcrumb-item-padding-x: 0.5rem;
  4209. --bs-breadcrumb-item-active-color: var(--bs-secondary-color);
  4210. display: flex;
  4211. flex-wrap: wrap;
  4212. padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
  4213. margin-bottom: var(--bs-breadcrumb-margin-bottom);
  4214. font-size: var(--bs-breadcrumb-font-size);
  4215. list-style: none;
  4216. background-color: var(--bs-breadcrumb-bg);
  4217. border-radius: var(--bs-breadcrumb-border-radius)
  4218. }
  4219. .breadcrumb-item + .breadcrumb-item {
  4220. padding-left: var(--bs-breadcrumb-item-padding-x)
  4221. }
  4222. .breadcrumb-item + .breadcrumb-item::before {
  4223. float: left;
  4224. padding-right: var(--bs-breadcrumb-item-padding-x);
  4225. color: var(--bs-breadcrumb-divider-color);
  4226. content: var(--bs-breadcrumb-divider, "/")
  4227. }
  4228. .breadcrumb-item.active {
  4229. color: var(--bs-breadcrumb-item-active-color)
  4230. }
  4231. .pagination {
  4232. --bs-pagination-padding-x: 0.75rem;
  4233. --bs-pagination-padding-y: 0.375rem;
  4234. --bs-pagination-font-size: 1rem;
  4235. --bs-pagination-color: var(--bs-link-color);
  4236. --bs-pagination-bg: var(--bs-body-bg);
  4237. --bs-pagination-border-width: var(--bs-border-width);
  4238. --bs-pagination-border-color: var(--bs-border-color);
  4239. --bs-pagination-border-radius: var(--bs-border-radius);
  4240. --bs-pagination-hover-color: var(--bs-link-hover-color);
  4241. --bs-pagination-hover-bg: var(--bs-tertiary-bg);
  4242. --bs-pagination-hover-border-color: var(--bs-border-color);
  4243. --bs-pagination-focus-color: var(--bs-link-hover-color);
  4244. --bs-pagination-focus-bg: var(--bs-secondary-bg);
  4245. --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  4246. --bs-pagination-active-color: #fff;
  4247. --bs-pagination-active-bg: #0d6efd;
  4248. --bs-pagination-active-border-color: #0d6efd;
  4249. --bs-pagination-disabled-color: var(--bs-secondary-color);
  4250. --bs-pagination-disabled-bg: var(--bs-secondary-bg);
  4251. --bs-pagination-disabled-border-color: var(--bs-border-color);
  4252. display: flex;
  4253. padding-left: 0;
  4254. list-style: none
  4255. }
  4256. .page-link {
  4257. position: relative;
  4258. display: block;
  4259. padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  4260. font-size: var(--bs-pagination-font-size);
  4261. color: var(--bs-pagination-color);
  4262. text-decoration: none;
  4263. background-color: var(--bs-pagination-bg);
  4264. border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  4265. transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
  4266. }
  4267. @media (prefers-reduced-motion: reduce) {
  4268. .page-link {
  4269. transition: none
  4270. }
  4271. }
  4272. .page-link:hover {
  4273. z-index: 2;
  4274. color: var(--bs-pagination-hover-color);
  4275. background-color: var(--bs-pagination-hover-bg);
  4276. border-color: var(--bs-pagination-hover-border-color)
  4277. }
  4278. .page-link:focus {
  4279. z-index: 3;
  4280. color: var(--bs-pagination-focus-color);
  4281. background-color: var(--bs-pagination-focus-bg);
  4282. outline: 0;
  4283. box-shadow: var(--bs-pagination-focus-box-shadow)
  4284. }
  4285. .active > .page-link, .page-link.active {
  4286. z-index: 3;
  4287. color: var(--bs-pagination-active-color);
  4288. background-color: var(--bs-pagination-active-bg);
  4289. border-color: var(--bs-pagination-active-border-color)
  4290. }
  4291. .disabled > .page-link, .page-link.disabled {
  4292. color: var(--bs-pagination-disabled-color);
  4293. pointer-events: none;
  4294. background-color: var(--bs-pagination-disabled-bg);
  4295. border-color: var(--bs-pagination-disabled-border-color)
  4296. }
  4297. .page-item:not(:first-child) .page-link {
  4298. margin-left: calc(var(--bs-border-width) * -1)
  4299. }
  4300. .page-item:first-child .page-link {
  4301. border-top-left-radius: var(--bs-pagination-border-radius);
  4302. border-bottom-left-radius: var(--bs-pagination-border-radius)
  4303. }
  4304. .page-item:last-child .page-link {
  4305. border-top-right-radius: var(--bs-pagination-border-radius);
  4306. border-bottom-right-radius: var(--bs-pagination-border-radius)
  4307. }
  4308. .pagination-lg {
  4309. --bs-pagination-padding-x: 1.5rem;
  4310. --bs-pagination-padding-y: 0.75rem;
  4311. --bs-pagination-font-size: 1.25rem;
  4312. --bs-pagination-border-radius: var(--bs-border-radius-lg)
  4313. }
  4314. .pagination-sm {
  4315. --bs-pagination-padding-x: 0.5rem;
  4316. --bs-pagination-padding-y: 0.25rem;
  4317. --bs-pagination-font-size: 0.875rem;
  4318. --bs-pagination-border-radius: var(--bs-border-radius-sm)
  4319. }
  4320. .badge {
  4321. --bs-badge-padding-x: 0.65em;
  4322. --bs-badge-padding-y: 0.35em;
  4323. --bs-badge-font-size: 0.75em;
  4324. --bs-badge-font-weight: 700;
  4325. --bs-badge-color: #fff;
  4326. --bs-badge-border-radius: var(--bs-border-radius);
  4327. display: inline-block;
  4328. padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  4329. font-size: var(--bs-badge-font-size);
  4330. font-weight: var(--bs-badge-font-weight);
  4331. line-height: 1;
  4332. color: var(--bs-badge-color);
  4333. text-align: center;
  4334. white-space: nowrap;
  4335. vertical-align: baseline;
  4336. border-radius: var(--bs-badge-border-radius)
  4337. }
  4338. .badge:empty {
  4339. display: none
  4340. }
  4341. .btn .badge {
  4342. position: relative;
  4343. top: -1px
  4344. }
  4345. .alert {
  4346. --bs-alert-bg: transparent;
  4347. --bs-alert-padding-x: 1rem;
  4348. --bs-alert-padding-y: 1rem;
  4349. --bs-alert-margin-bottom: 1rem;
  4350. --bs-alert-color: inherit;
  4351. --bs-alert-border-color: transparent;
  4352. --bs-alert-border: var(--bs-border-width) solid var(--bs-alert-border-color);
  4353. --bs-alert-border-radius: var(--bs-border-radius);
  4354. --bs-alert-link-color: inherit;
  4355. position: relative;
  4356. padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  4357. margin-bottom: var(--bs-alert-margin-bottom);
  4358. color: var(--bs-alert-color);
  4359. background-color: var(--bs-alert-bg);
  4360. border: var(--bs-alert-border);
  4361. border-radius: var(--bs-alert-border-radius)
  4362. }
  4363. .alert-heading {
  4364. color: inherit
  4365. }
  4366. .alert-link {
  4367. font-weight: 700;
  4368. color: var(--bs-alert-link-color)
  4369. }
  4370. .alert-dismissible {
  4371. padding-right: 3rem
  4372. }
  4373. .alert-dismissible .btn-close {
  4374. position: absolute;
  4375. top: 0;
  4376. right: 0;
  4377. z-index: 2;
  4378. padding: 1.25rem 1rem
  4379. }
  4380. .alert-primary {
  4381. --bs-alert-color: var(--bs-primary-text-emphasis);
  4382. --bs-alert-bg: var(--bs-primary-bg-subtle);
  4383. --bs-alert-border-color: var(--bs-primary-border-subtle);
  4384. --bs-alert-link-color: var(--bs-primary-text-emphasis)
  4385. }
  4386. .alert-secondary {
  4387. --bs-alert-color: var(--bs-secondary-text-emphasis);
  4388. --bs-alert-bg: var(--bs-secondary-bg-subtle);
  4389. --bs-alert-border-color: var(--bs-secondary-border-subtle);
  4390. --bs-alert-link-color: var(--bs-secondary-text-emphasis)
  4391. }
  4392. .alert-success {
  4393. --bs-alert-color: var(--bs-success-text-emphasis);
  4394. --bs-alert-bg: var(--bs-success-bg-subtle);
  4395. --bs-alert-border-color: var(--bs-success-border-subtle);
  4396. --bs-alert-link-color: var(--bs-success-text-emphasis)
  4397. }
  4398. .alert-info {
  4399. --bs-alert-color: var(--bs-info-text-emphasis);
  4400. --bs-alert-bg: var(--bs-info-bg-subtle);
  4401. --bs-alert-border-color: var(--bs-info-border-subtle);
  4402. --bs-alert-link-color: var(--bs-info-text-emphasis)
  4403. }
  4404. .alert-warning {
  4405. --bs-alert-color: var(--bs-warning-text-emphasis);
  4406. --bs-alert-bg: var(--bs-warning-bg-subtle);
  4407. --bs-alert-border-color: var(--bs-warning-border-subtle);
  4408. --bs-alert-link-color: var(--bs-warning-text-emphasis)
  4409. }
  4410. .alert-danger {
  4411. --bs-alert-color: var(--bs-danger-text-emphasis);
  4412. --bs-alert-bg: var(--bs-danger-bg-subtle);
  4413. --bs-alert-border-color: var(--bs-danger-border-subtle);
  4414. --bs-alert-link-color: var(--bs-danger-text-emphasis)
  4415. }
  4416. .alert-light {
  4417. --bs-alert-color: var(--bs-light-text-emphasis);
  4418. --bs-alert-bg: var(--bs-light-bg-subtle);
  4419. --bs-alert-border-color: var(--bs-light-border-subtle);
  4420. --bs-alert-link-color: var(--bs-light-text-emphasis)
  4421. }
  4422. .alert-dark {
  4423. --bs-alert-color: var(--bs-dark-text-emphasis);
  4424. --bs-alert-bg: var(--bs-dark-bg-subtle);
  4425. --bs-alert-border-color: var(--bs-dark-border-subtle);
  4426. --bs-alert-link-color: var(--bs-dark-text-emphasis)
  4427. }
  4428. @keyframes progress-bar-stripes {
  4429. 0% {
  4430. background-position-x: 1rem
  4431. }
  4432. }
  4433. .progress, .progress-stacked {
  4434. --bs-progress-height: 1rem;
  4435. --bs-progress-font-size: 0.75rem;
  4436. --bs-progress-bg: var(--bs-secondary-bg);
  4437. --bs-progress-border-radius: var(--bs-border-radius);
  4438. --bs-progress-box-shadow: var(--bs-box-shadow-inset);
  4439. --bs-progress-bar-color: #fff;
  4440. --bs-progress-bar-bg: #0d6efd;
  4441. --bs-progress-bar-transition: width 0.6s ease;
  4442. display: flex;
  4443. height: var(--bs-progress-height);
  4444. overflow: hidden;
  4445. font-size: var(--bs-progress-font-size);
  4446. background-color: var(--bs-progress-bg);
  4447. border-radius: var(--bs-progress-border-radius)
  4448. }
  4449. .progress-bar {
  4450. display: flex;
  4451. flex-direction: column;
  4452. justify-content: center;
  4453. overflow: hidden;
  4454. color: var(--bs-progress-bar-color);
  4455. text-align: center;
  4456. white-space: nowrap;
  4457. background-color: var(--bs-progress-bar-bg);
  4458. transition: var(--bs-progress-bar-transition)
  4459. }
  4460. @media (prefers-reduced-motion: reduce) {
  4461. .progress-bar {
  4462. transition: none
  4463. }
  4464. }
  4465. .progress-bar-striped {
  4466. background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  4467. background-size: var(--bs-progress-height) var(--bs-progress-height)
  4468. }
  4469. .progress-stacked > .progress {
  4470. overflow: visible
  4471. }
  4472. .progress-stacked > .progress > .progress-bar {
  4473. width: 100%
  4474. }
  4475. .progress-bar-animated {
  4476. animation: 1s linear infinite progress-bar-stripes
  4477. }
  4478. @media (prefers-reduced-motion: reduce) {
  4479. .progress-bar-animated {
  4480. animation: none
  4481. }
  4482. }
  4483. .list-group {
  4484. --bs-list-group-color: var(--bs-body-color);
  4485. --bs-list-group-bg: var(--bs-body-bg);
  4486. --bs-list-group-border-color: var(--bs-border-color);
  4487. --bs-list-group-border-width: var(--bs-border-width);
  4488. --bs-list-group-border-radius: var(--bs-border-radius);
  4489. --bs-list-group-item-padding-x: 1rem;
  4490. --bs-list-group-item-padding-y: 0.5rem;
  4491. --bs-list-group-action-color: var(--bs-secondary-color);
  4492. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4493. --bs-list-group-action-hover-bg: var(--bs-tertiary-bg);
  4494. --bs-list-group-action-active-color: var(--bs-body-color);
  4495. --bs-list-group-action-active-bg: var(--bs-secondary-bg);
  4496. --bs-list-group-disabled-color: var(--bs-secondary-color);
  4497. --bs-list-group-disabled-bg: var(--bs-body-bg);
  4498. --bs-list-group-active-color: #fff;
  4499. --bs-list-group-active-bg: #0d6efd;
  4500. --bs-list-group-active-border-color: #0d6efd;
  4501. display: flex;
  4502. flex-direction: column;
  4503. padding-left: 0;
  4504. margin-bottom: 0;
  4505. border-radius: var(--bs-list-group-border-radius)
  4506. }
  4507. .list-group-numbered {
  4508. list-style-type: none;
  4509. counter-reset: section
  4510. }
  4511. .list-group-numbered > .list-group-item::before {
  4512. content: counters(section, ".") ". ";
  4513. counter-increment: section
  4514. }
  4515. .list-group-item-action {
  4516. width: 100%;
  4517. color: var(--bs-list-group-action-color);
  4518. text-align: inherit
  4519. }
  4520. .list-group-item-action:focus, .list-group-item-action:hover {
  4521. z-index: 1;
  4522. color: var(--bs-list-group-action-hover-color);
  4523. text-decoration: none;
  4524. background-color: var(--bs-list-group-action-hover-bg)
  4525. }
  4526. .list-group-item-action:active {
  4527. color: var(--bs-list-group-action-active-color);
  4528. background-color: var(--bs-list-group-action-active-bg)
  4529. }
  4530. .list-group-item {
  4531. position: relative;
  4532. display: block;
  4533. padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
  4534. color: var(--bs-list-group-color);
  4535. text-decoration: none;
  4536. background-color: var(--bs-list-group-bg);
  4537. border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color)
  4538. }
  4539. .list-group-item:first-child {
  4540. border-top-left-radius: inherit;
  4541. border-top-right-radius: inherit
  4542. }
  4543. .list-group-item:last-child {
  4544. border-bottom-right-radius: inherit;
  4545. border-bottom-left-radius: inherit
  4546. }
  4547. .list-group-item.disabled, .list-group-item:disabled {
  4548. color: var(--bs-list-group-disabled-color);
  4549. pointer-events: none;
  4550. background-color: var(--bs-list-group-disabled-bg)
  4551. }
  4552. .list-group-item.active {
  4553. z-index: 2;
  4554. color: var(--bs-list-group-active-color);
  4555. background-color: var(--bs-list-group-active-bg);
  4556. border-color: var(--bs-list-group-active-border-color)
  4557. }
  4558. .list-group-item + .list-group-item {
  4559. border-top-width: 0
  4560. }
  4561. .list-group-item + .list-group-item.active {
  4562. margin-top: calc(-1 * var(--bs-list-group-border-width));
  4563. border-top-width: var(--bs-list-group-border-width)
  4564. }
  4565. .list-group-horizontal {
  4566. flex-direction: row
  4567. }
  4568. .list-group-horizontal > .list-group-item:first-child:not(:last-child) {
  4569. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4570. border-top-right-radius: 0
  4571. }
  4572. .list-group-horizontal > .list-group-item:last-child:not(:first-child) {
  4573. border-top-right-radius: var(--bs-list-group-border-radius);
  4574. border-bottom-left-radius: 0
  4575. }
  4576. .list-group-horizontal > .list-group-item.active {
  4577. margin-top: 0
  4578. }
  4579. .list-group-horizontal > .list-group-item + .list-group-item {
  4580. border-top-width: var(--bs-list-group-border-width);
  4581. border-left-width: 0
  4582. }
  4583. .list-group-horizontal > .list-group-item + .list-group-item.active {
  4584. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4585. border-left-width: var(--bs-list-group-border-width)
  4586. }
  4587. @media (min-width: 576px) {
  4588. .list-group-horizontal-sm {
  4589. flex-direction: row
  4590. }
  4591. .list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) {
  4592. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4593. border-top-right-radius: 0
  4594. }
  4595. .list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) {
  4596. border-top-right-radius: var(--bs-list-group-border-radius);
  4597. border-bottom-left-radius: 0
  4598. }
  4599. .list-group-horizontal-sm > .list-group-item.active {
  4600. margin-top: 0
  4601. }
  4602. .list-group-horizontal-sm > .list-group-item + .list-group-item {
  4603. border-top-width: var(--bs-list-group-border-width);
  4604. border-left-width: 0
  4605. }
  4606. .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
  4607. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4608. border-left-width: var(--bs-list-group-border-width)
  4609. }
  4610. }
  4611. @media (min-width: 768px) {
  4612. .list-group-horizontal-md {
  4613. flex-direction: row
  4614. }
  4615. .list-group-horizontal-md > .list-group-item:first-child:not(:last-child) {
  4616. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4617. border-top-right-radius: 0
  4618. }
  4619. .list-group-horizontal-md > .list-group-item:last-child:not(:first-child) {
  4620. border-top-right-radius: var(--bs-list-group-border-radius);
  4621. border-bottom-left-radius: 0
  4622. }
  4623. .list-group-horizontal-md > .list-group-item.active {
  4624. margin-top: 0
  4625. }
  4626. .list-group-horizontal-md > .list-group-item + .list-group-item {
  4627. border-top-width: var(--bs-list-group-border-width);
  4628. border-left-width: 0
  4629. }
  4630. .list-group-horizontal-md > .list-group-item + .list-group-item.active {
  4631. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4632. border-left-width: var(--bs-list-group-border-width)
  4633. }
  4634. }
  4635. @media (min-width: 992px) {
  4636. .list-group-horizontal-lg {
  4637. flex-direction: row
  4638. }
  4639. .list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) {
  4640. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4641. border-top-right-radius: 0
  4642. }
  4643. .list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) {
  4644. border-top-right-radius: var(--bs-list-group-border-radius);
  4645. border-bottom-left-radius: 0
  4646. }
  4647. .list-group-horizontal-lg > .list-group-item.active {
  4648. margin-top: 0
  4649. }
  4650. .list-group-horizontal-lg > .list-group-item + .list-group-item {
  4651. border-top-width: var(--bs-list-group-border-width);
  4652. border-left-width: 0
  4653. }
  4654. .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
  4655. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4656. border-left-width: var(--bs-list-group-border-width)
  4657. }
  4658. }
  4659. @media (min-width: 1200px) {
  4660. .list-group-horizontal-xl {
  4661. flex-direction: row
  4662. }
  4663. .list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) {
  4664. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4665. border-top-right-radius: 0
  4666. }
  4667. .list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) {
  4668. border-top-right-radius: var(--bs-list-group-border-radius);
  4669. border-bottom-left-radius: 0
  4670. }
  4671. .list-group-horizontal-xl > .list-group-item.active {
  4672. margin-top: 0
  4673. }
  4674. .list-group-horizontal-xl > .list-group-item + .list-group-item {
  4675. border-top-width: var(--bs-list-group-border-width);
  4676. border-left-width: 0
  4677. }
  4678. .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
  4679. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4680. border-left-width: var(--bs-list-group-border-width)
  4681. }
  4682. }
  4683. @media (min-width: 1400px) {
  4684. .list-group-horizontal-xxl {
  4685. flex-direction: row
  4686. }
  4687. .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) {
  4688. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4689. border-top-right-radius: 0
  4690. }
  4691. .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) {
  4692. border-top-right-radius: var(--bs-list-group-border-radius);
  4693. border-bottom-left-radius: 0
  4694. }
  4695. .list-group-horizontal-xxl > .list-group-item.active {
  4696. margin-top: 0
  4697. }
  4698. .list-group-horizontal-xxl > .list-group-item + .list-group-item {
  4699. border-top-width: var(--bs-list-group-border-width);
  4700. border-left-width: 0
  4701. }
  4702. .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
  4703. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4704. border-left-width: var(--bs-list-group-border-width)
  4705. }
  4706. }
  4707. .list-group-flush {
  4708. border-radius: 0
  4709. }
  4710. .list-group-flush > .list-group-item {
  4711. border-width: 0 0 var(--bs-list-group-border-width)
  4712. }
  4713. .list-group-flush > .list-group-item:last-child {
  4714. border-bottom-width: 0
  4715. }
  4716. .list-group-item-primary {
  4717. --bs-list-group-color: var(--bs-primary-text-emphasis);
  4718. --bs-list-group-bg: var(--bs-primary-bg-subtle);
  4719. --bs-list-group-border-color: var(--bs-primary-border-subtle);
  4720. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4721. --bs-list-group-action-hover-bg: var(--bs-primary-border-subtle);
  4722. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4723. --bs-list-group-action-active-bg: var(--bs-primary-border-subtle);
  4724. --bs-list-group-active-color: var(--bs-primary-bg-subtle);
  4725. --bs-list-group-active-bg: var(--bs-primary-text-emphasis);
  4726. --bs-list-group-active-border-color: var(--bs-primary-text-emphasis)
  4727. }
  4728. .list-group-item-secondary {
  4729. --bs-list-group-color: var(--bs-secondary-text-emphasis);
  4730. --bs-list-group-bg: var(--bs-secondary-bg-subtle);
  4731. --bs-list-group-border-color: var(--bs-secondary-border-subtle);
  4732. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4733. --bs-list-group-action-hover-bg: var(--bs-secondary-border-subtle);
  4734. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4735. --bs-list-group-action-active-bg: var(--bs-secondary-border-subtle);
  4736. --bs-list-group-active-color: var(--bs-secondary-bg-subtle);
  4737. --bs-list-group-active-bg: var(--bs-secondary-text-emphasis);
  4738. --bs-list-group-active-border-color: var(--bs-secondary-text-emphasis)
  4739. }
  4740. .list-group-item-success {
  4741. --bs-list-group-color: var(--bs-success-text-emphasis);
  4742. --bs-list-group-bg: var(--bs-success-bg-subtle);
  4743. --bs-list-group-border-color: var(--bs-success-border-subtle);
  4744. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4745. --bs-list-group-action-hover-bg: var(--bs-success-border-subtle);
  4746. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4747. --bs-list-group-action-active-bg: var(--bs-success-border-subtle);
  4748. --bs-list-group-active-color: var(--bs-success-bg-subtle);
  4749. --bs-list-group-active-bg: var(--bs-success-text-emphasis);
  4750. --bs-list-group-active-border-color: var(--bs-success-text-emphasis)
  4751. }
  4752. .list-group-item-info {
  4753. --bs-list-group-color: var(--bs-info-text-emphasis);
  4754. --bs-list-group-bg: var(--bs-info-bg-subtle);
  4755. --bs-list-group-border-color: var(--bs-info-border-subtle);
  4756. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4757. --bs-list-group-action-hover-bg: var(--bs-info-border-subtle);
  4758. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4759. --bs-list-group-action-active-bg: var(--bs-info-border-subtle);
  4760. --bs-list-group-active-color: var(--bs-info-bg-subtle);
  4761. --bs-list-group-active-bg: var(--bs-info-text-emphasis);
  4762. --bs-list-group-active-border-color: var(--bs-info-text-emphasis)
  4763. }
  4764. .list-group-item-warning {
  4765. --bs-list-group-color: var(--bs-warning-text-emphasis);
  4766. --bs-list-group-bg: var(--bs-warning-bg-subtle);
  4767. --bs-list-group-border-color: var(--bs-warning-border-subtle);
  4768. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4769. --bs-list-group-action-hover-bg: var(--bs-warning-border-subtle);
  4770. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4771. --bs-list-group-action-active-bg: var(--bs-warning-border-subtle);
  4772. --bs-list-group-active-color: var(--bs-warning-bg-subtle);
  4773. --bs-list-group-active-bg: var(--bs-warning-text-emphasis);
  4774. --bs-list-group-active-border-color: var(--bs-warning-text-emphasis)
  4775. }
  4776. .list-group-item-danger {
  4777. --bs-list-group-color: var(--bs-danger-text-emphasis);
  4778. --bs-list-group-bg: var(--bs-danger-bg-subtle);
  4779. --bs-list-group-border-color: var(--bs-danger-border-subtle);
  4780. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4781. --bs-list-group-action-hover-bg: var(--bs-danger-border-subtle);
  4782. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4783. --bs-list-group-action-active-bg: var(--bs-danger-border-subtle);
  4784. --bs-list-group-active-color: var(--bs-danger-bg-subtle);
  4785. --bs-list-group-active-bg: var(--bs-danger-text-emphasis);
  4786. --bs-list-group-active-border-color: var(--bs-danger-text-emphasis)
  4787. }
  4788. .list-group-item-light {
  4789. --bs-list-group-color: var(--bs-light-text-emphasis);
  4790. --bs-list-group-bg: var(--bs-light-bg-subtle);
  4791. --bs-list-group-border-color: var(--bs-light-border-subtle);
  4792. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4793. --bs-list-group-action-hover-bg: var(--bs-light-border-subtle);
  4794. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4795. --bs-list-group-action-active-bg: var(--bs-light-border-subtle);
  4796. --bs-list-group-active-color: var(--bs-light-bg-subtle);
  4797. --bs-list-group-active-bg: var(--bs-light-text-emphasis);
  4798. --bs-list-group-active-border-color: var(--bs-light-text-emphasis)
  4799. }
  4800. .list-group-item-dark {
  4801. --bs-list-group-color: var(--bs-dark-text-emphasis);
  4802. --bs-list-group-bg: var(--bs-dark-bg-subtle);
  4803. --bs-list-group-border-color: var(--bs-dark-border-subtle);
  4804. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4805. --bs-list-group-action-hover-bg: var(--bs-dark-border-subtle);
  4806. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4807. --bs-list-group-action-active-bg: var(--bs-dark-border-subtle);
  4808. --bs-list-group-active-color: var(--bs-dark-bg-subtle);
  4809. --bs-list-group-active-bg: var(--bs-dark-text-emphasis);
  4810. --bs-list-group-active-border-color: var(--bs-dark-text-emphasis)
  4811. }
  4812. .btn-close {
  4813. --bs-btn-close-color: #000;
  4814. --bs-btn-close-bg: 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 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  4815. --bs-btn-close-opacity: 0.5;
  4816. --bs-btn-close-hover-opacity: 0.75;
  4817. --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  4818. --bs-btn-close-focus-opacity: 1;
  4819. --bs-btn-close-disabled-opacity: 0.25;
  4820. --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);
  4821. box-sizing: content-box;
  4822. width: 1em;
  4823. height: 1em;
  4824. padding: .25em .25em;
  4825. color: var(--bs-btn-close-color);
  4826. background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat;
  4827. border: 0;
  4828. border-radius: .375rem;
  4829. opacity: var(--bs-btn-close-opacity)
  4830. }
  4831. .btn-close:hover {
  4832. color: var(--bs-btn-close-color);
  4833. text-decoration: none;
  4834. opacity: var(--bs-btn-close-hover-opacity)
  4835. }
  4836. .btn-close:focus {
  4837. outline: 0;
  4838. box-shadow: var(--bs-btn-close-focus-shadow);
  4839. opacity: var(--bs-btn-close-focus-opacity)
  4840. }
  4841. .btn-close.disabled, .btn-close:disabled {
  4842. pointer-events: none;
  4843. -webkit-user-select: none;
  4844. -moz-user-select: none;
  4845. user-select: none;
  4846. opacity: var(--bs-btn-close-disabled-opacity)
  4847. }
  4848. .btn-close-white {
  4849. filter: var(--bs-btn-close-white-filter)
  4850. }
  4851. [data-bs-theme=dark] .btn-close {
  4852. filter: var(--bs-btn-close-white-filter)
  4853. }
  4854. .toast {
  4855. --bs-toast-zindex: 1090;
  4856. --bs-toast-padding-x: 0.75rem;
  4857. --bs-toast-padding-y: 0.5rem;
  4858. --bs-toast-spacing: 1.5rem;
  4859. --bs-toast-max-width: 350px;
  4860. --bs-toast-font-size: 0.875rem;
  4861. --bs-toast-color: ;
  4862. --bs-toast-bg: rgba(var(--bs-body-bg-rgb), 0.85);
  4863. --bs-toast-border-width: var(--bs-border-width);
  4864. --bs-toast-border-color: var(--bs-border-color-translucent);
  4865. --bs-toast-border-radius: var(--bs-border-radius);
  4866. --bs-toast-box-shadow: var(--bs-box-shadow);
  4867. --bs-toast-header-color: var(--bs-secondary-color);
  4868. --bs-toast-header-bg: rgba(var(--bs-body-bg-rgb), 0.85);
  4869. --bs-toast-header-border-color: var(--bs-border-color-translucent);
  4870. width: var(--bs-toast-max-width);
  4871. max-width: 100%;
  4872. font-size: var(--bs-toast-font-size);
  4873. color: var(--bs-toast-color);
  4874. pointer-events: auto;
  4875. background-color: var(--bs-toast-bg);
  4876. background-clip: padding-box;
  4877. border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
  4878. box-shadow: var(--bs-toast-box-shadow);
  4879. border-radius: var(--bs-toast-border-radius)
  4880. }
  4881. .toast.showing {
  4882. opacity: 0
  4883. }
  4884. .toast:not(.show) {
  4885. display: none
  4886. }
  4887. .toast-container {
  4888. --bs-toast-zindex: 1090;
  4889. position: absolute;
  4890. z-index: var(--bs-toast-zindex);
  4891. width: -webkit-max-content;
  4892. width: -moz-max-content;
  4893. width: max-content;
  4894. max-width: 100%;
  4895. pointer-events: none
  4896. }
  4897. .toast-container > :not(:last-child) {
  4898. margin-bottom: var(--bs-toast-spacing)
  4899. }
  4900. .toast-header {
  4901. display: flex;
  4902. align-items: center;
  4903. padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
  4904. color: var(--bs-toast-header-color);
  4905. background-color: var(--bs-toast-header-bg);
  4906. background-clip: padding-box;
  4907. border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
  4908. border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
  4909. border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width))
  4910. }
  4911. .toast-header .btn-close {
  4912. margin-right: calc(-.5 * var(--bs-toast-padding-x));
  4913. margin-left: var(--bs-toast-padding-x)
  4914. }
  4915. .toast-body {
  4916. padding: var(--bs-toast-padding-x);
  4917. word-wrap: break-word
  4918. }
  4919. .modal {
  4920. --bs-modal-zindex: 1055;
  4921. --bs-modal-width: 500px;
  4922. --bs-modal-padding: 1rem;
  4923. --bs-modal-margin: 0.5rem;
  4924. --bs-modal-color: ;
  4925. --bs-modal-bg: var(--bs-body-bg);
  4926. --bs-modal-border-color: var(--bs-border-color-translucent);
  4927. --bs-modal-border-width: var(--bs-border-width);
  4928. --bs-modal-border-radius: var(--bs-border-radius-lg);
  4929. --bs-modal-box-shadow: var(--bs-box-shadow-sm);
  4930. --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
  4931. --bs-modal-header-padding-x: 1rem;
  4932. --bs-modal-header-padding-y: 1rem;
  4933. --bs-modal-header-padding: 1rem 1rem;
  4934. --bs-modal-header-border-color: var(--bs-border-color);
  4935. --bs-modal-header-border-width: var(--bs-border-width);
  4936. --bs-modal-title-line-height: 1.5;
  4937. --bs-modal-footer-gap: 0.5rem;
  4938. --bs-modal-footer-bg: ;
  4939. --bs-modal-footer-border-color: var(--bs-border-color);
  4940. --bs-modal-footer-border-width: var(--bs-border-width);
  4941. position: fixed;
  4942. top: 0;
  4943. left: 0;
  4944. z-index: var(--bs-modal-zindex);
  4945. display: none;
  4946. width: 100%;
  4947. height: 100%;
  4948. overflow-x: hidden;
  4949. overflow-y: auto;
  4950. outline: 0
  4951. }
  4952. .modal-dialog {
  4953. position: relative;
  4954. width: auto;
  4955. margin: var(--bs-modal-margin);
  4956. pointer-events: none
  4957. }
  4958. .modal.fade .modal-dialog {
  4959. transition: transform .3s ease-out;
  4960. transform: translate(0, -50px)
  4961. }
  4962. @media (prefers-reduced-motion: reduce) {
  4963. .modal.fade .modal-dialog {
  4964. transition: none
  4965. }
  4966. }
  4967. .modal.show .modal-dialog {
  4968. transform: none
  4969. }
  4970. .modal.modal-static .modal-dialog {
  4971. transform: scale(1.02)
  4972. }
  4973. .modal-dialog-scrollable {
  4974. height: calc(100% - var(--bs-modal-margin) * 2)
  4975. }
  4976. .modal-dialog-scrollable .modal-content {
  4977. max-height: 100%;
  4978. overflow: hidden
  4979. }
  4980. .modal-dialog-scrollable .modal-body {
  4981. overflow-y: auto
  4982. }
  4983. .modal-dialog-centered {
  4984. display: flex;
  4985. align-items: center;
  4986. min-height: calc(100% - var(--bs-modal-margin) * 2)
  4987. }
  4988. .modal-content {
  4989. position: relative;
  4990. display: flex;
  4991. flex-direction: column;
  4992. width: 100%;
  4993. color: var(--bs-modal-color);
  4994. pointer-events: auto;
  4995. background-color: var(--bs-modal-bg);
  4996. background-clip: padding-box;
  4997. border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  4998. border-radius: var(--bs-modal-border-radius);
  4999. outline: 0
  5000. }
  5001. .modal-backdrop {
  5002. --bs-backdrop-zindex: 1050;
  5003. --bs-backdrop-bg: #000;
  5004. --bs-backdrop-opacity: 0.5;
  5005. position: fixed;
  5006. top: 0;
  5007. left: 0;
  5008. z-index: var(--bs-backdrop-zindex);
  5009. width: 100vw;
  5010. height: 100vh;
  5011. background-color: var(--bs-backdrop-bg)
  5012. }
  5013. .modal-backdrop.fade {
  5014. opacity: 0
  5015. }
  5016. .modal-backdrop.show {
  5017. opacity: var(--bs-backdrop-opacity)
  5018. }
  5019. .modal-header {
  5020. display: flex;
  5021. flex-shrink: 0;
  5022. align-items: center;
  5023. padding: var(--bs-modal-header-padding);
  5024. border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  5025. border-top-left-radius: var(--bs-modal-inner-border-radius);
  5026. border-top-right-radius: var(--bs-modal-inner-border-radius)
  5027. }
  5028. .modal-header .btn-close {
  5029. padding: calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);
  5030. margin: calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto
  5031. }
  5032. .modal-title {
  5033. margin-bottom: 0;
  5034. line-height: var(--bs-modal-title-line-height)
  5035. }
  5036. .modal-body {
  5037. position: relative;
  5038. flex: 1 1 auto;
  5039. padding: var(--bs-modal-padding)
  5040. }
  5041. .modal-footer {
  5042. display: flex;
  5043. flex-shrink: 0;
  5044. flex-wrap: wrap;
  5045. align-items: center;
  5046. justify-content: flex-end;
  5047. padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);
  5048. background-color: var(--bs-modal-footer-bg);
  5049. border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  5050. border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  5051. border-bottom-left-radius: var(--bs-modal-inner-border-radius)
  5052. }
  5053. .modal-footer > * {
  5054. margin: calc(var(--bs-modal-footer-gap) * .5)
  5055. }
  5056. @media (min-width: 576px) {
  5057. .modal {
  5058. --bs-modal-margin: 1.75rem;
  5059. --bs-modal-box-shadow: var(--bs-box-shadow)
  5060. }
  5061. .modal-dialog {
  5062. max-width: var(--bs-modal-width);
  5063. margin-right: auto;
  5064. margin-left: auto
  5065. }
  5066. .modal-sm {
  5067. --bs-modal-width: 300px
  5068. }
  5069. }
  5070. @media (min-width: 992px) {
  5071. .modal-lg, .modal-xl {
  5072. --bs-modal-width: 800px
  5073. }
  5074. }
  5075. @media (min-width: 1200px) {
  5076. .modal-xl {
  5077. --bs-modal-width: 1140px
  5078. }
  5079. }
  5080. .modal-fullscreen {
  5081. width: 100vw;
  5082. max-width: none;
  5083. height: 100%;
  5084. margin: 0
  5085. }
  5086. .modal-fullscreen .modal-content {
  5087. height: 100%;
  5088. border: 0;
  5089. border-radius: 0
  5090. }
  5091. .modal-fullscreen .modal-footer, .modal-fullscreen .modal-header {
  5092. border-radius: 0
  5093. }
  5094. .modal-fullscreen .modal-body {
  5095. overflow-y: auto
  5096. }
  5097. @media (max-width: 575.98px) {
  5098. .modal-fullscreen-sm-down {
  5099. width: 100vw;
  5100. max-width: none;
  5101. height: 100%;
  5102. margin: 0
  5103. }
  5104. .modal-fullscreen-sm-down .modal-content {
  5105. height: 100%;
  5106. border: 0;
  5107. border-radius: 0
  5108. }
  5109. .modal-fullscreen-sm-down .modal-footer, .modal-fullscreen-sm-down .modal-header {
  5110. border-radius: 0
  5111. }
  5112. .modal-fullscreen-sm-down .modal-body {
  5113. overflow-y: auto
  5114. }
  5115. }
  5116. @media (max-width: 767.98px) {
  5117. .modal-fullscreen-md-down {
  5118. width: 100vw;
  5119. max-width: none;
  5120. height: 100%;
  5121. margin: 0
  5122. }
  5123. .modal-fullscreen-md-down .modal-content {
  5124. height: 100%;
  5125. border: 0;
  5126. border-radius: 0
  5127. }
  5128. .modal-fullscreen-md-down .modal-footer, .modal-fullscreen-md-down .modal-header {
  5129. border-radius: 0
  5130. }
  5131. .modal-fullscreen-md-down .modal-body {
  5132. overflow-y: auto
  5133. }
  5134. }
  5135. @media (max-width: 991.98px) {
  5136. .modal-fullscreen-lg-down {
  5137. width: 100vw;
  5138. max-width: none;
  5139. height: 100%;
  5140. margin: 0
  5141. }
  5142. .modal-fullscreen-lg-down .modal-content {
  5143. height: 100%;
  5144. border: 0;
  5145. border-radius: 0
  5146. }
  5147. .modal-fullscreen-lg-down .modal-footer, .modal-fullscreen-lg-down .modal-header {
  5148. border-radius: 0
  5149. }
  5150. .modal-fullscreen-lg-down .modal-body {
  5151. overflow-y: auto
  5152. }
  5153. }
  5154. @media (max-width: 1199.98px) {
  5155. .modal-fullscreen-xl-down {
  5156. width: 100vw;
  5157. max-width: none;
  5158. height: 100%;
  5159. margin: 0
  5160. }
  5161. .modal-fullscreen-xl-down .modal-content {
  5162. height: 100%;
  5163. border: 0;
  5164. border-radius: 0
  5165. }
  5166. .modal-fullscreen-xl-down .modal-footer, .modal-fullscreen-xl-down .modal-header {
  5167. border-radius: 0
  5168. }
  5169. .modal-fullscreen-xl-down .modal-body {
  5170. overflow-y: auto
  5171. }
  5172. }
  5173. @media (max-width: 1399.98px) {
  5174. .modal-fullscreen-xxl-down {
  5175. width: 100vw;
  5176. max-width: none;
  5177. height: 100%;
  5178. margin: 0
  5179. }
  5180. .modal-fullscreen-xxl-down .modal-content {
  5181. height: 100%;
  5182. border: 0;
  5183. border-radius: 0
  5184. }
  5185. .modal-fullscreen-xxl-down .modal-footer, .modal-fullscreen-xxl-down .modal-header {
  5186. border-radius: 0
  5187. }
  5188. .modal-fullscreen-xxl-down .modal-body {
  5189. overflow-y: auto
  5190. }
  5191. }
  5192. .tooltip {
  5193. --bs-tooltip-zindex: 1080;
  5194. --bs-tooltip-max-width: 200px;
  5195. --bs-tooltip-padding-x: 0.5rem;
  5196. --bs-tooltip-padding-y: 0.25rem;
  5197. --bs-tooltip-margin: ;
  5198. --bs-tooltip-font-size: 0.875rem;
  5199. --bs-tooltip-color: var(--bs-body-bg);
  5200. --bs-tooltip-bg: var(--bs-emphasis-color);
  5201. --bs-tooltip-border-radius: var(--bs-border-radius);
  5202. --bs-tooltip-opacity: 0.9;
  5203. --bs-tooltip-arrow-width: 0.8rem;
  5204. --bs-tooltip-arrow-height: 0.4rem;
  5205. z-index: var(--bs-tooltip-zindex);
  5206. display: block;
  5207. margin: var(--bs-tooltip-margin);
  5208. font-family: var(--bs-font-sans-serif);
  5209. font-style: normal;
  5210. font-weight: 400;
  5211. line-height: 1.5;
  5212. text-align: left;
  5213. text-align: start;
  5214. text-decoration: none;
  5215. text-shadow: none;
  5216. text-transform: none;
  5217. letter-spacing: normal;
  5218. word-break: normal;
  5219. white-space: normal;
  5220. word-spacing: normal;
  5221. line-break: auto;
  5222. font-size: var(--bs-tooltip-font-size);
  5223. word-wrap: break-word;
  5224. opacity: 0
  5225. }
  5226. .tooltip.show {
  5227. opacity: var(--bs-tooltip-opacity)
  5228. }
  5229. .tooltip .tooltip-arrow {
  5230. display: block;
  5231. width: var(--bs-tooltip-arrow-width);
  5232. height: var(--bs-tooltip-arrow-height)
  5233. }
  5234. .tooltip .tooltip-arrow::before {
  5235. position: absolute;
  5236. content: "";
  5237. border-color: transparent;
  5238. border-style: solid
  5239. }
  5240. .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow, .bs-tooltip-top .tooltip-arrow {
  5241. bottom: calc(-1 * var(--bs-tooltip-arrow-height))
  5242. }
  5243. .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before, .bs-tooltip-top .tooltip-arrow::before {
  5244. top: -1px;
  5245. border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;
  5246. border-top-color: var(--bs-tooltip-bg)
  5247. }
  5248. .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow, .bs-tooltip-end .tooltip-arrow {
  5249. left: calc(-1 * var(--bs-tooltip-arrow-height));
  5250. width: var(--bs-tooltip-arrow-height);
  5251. height: var(--bs-tooltip-arrow-width)
  5252. }
  5253. .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before, .bs-tooltip-end .tooltip-arrow::before {
  5254. right: -1px;
  5255. border-width: calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;
  5256. border-right-color: var(--bs-tooltip-bg)
  5257. }
  5258. .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow, .bs-tooltip-bottom .tooltip-arrow {
  5259. top: calc(-1 * var(--bs-tooltip-arrow-height))
  5260. }
  5261. .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before, .bs-tooltip-bottom .tooltip-arrow::before {
  5262. bottom: -1px;
  5263. border-width: 0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);
  5264. border-bottom-color: var(--bs-tooltip-bg)
  5265. }
  5266. .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow, .bs-tooltip-start .tooltip-arrow {
  5267. right: calc(-1 * var(--bs-tooltip-arrow-height));
  5268. width: var(--bs-tooltip-arrow-height);
  5269. height: var(--bs-tooltip-arrow-width)
  5270. }
  5271. .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before, .bs-tooltip-start .tooltip-arrow::before {
  5272. left: -1px;
  5273. border-width: calc(var(--bs-tooltip-arrow-width) * .5) 0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);
  5274. border-left-color: var(--bs-tooltip-bg)
  5275. }
  5276. .tooltip-inner {
  5277. max-width: var(--bs-tooltip-max-width);
  5278. padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
  5279. color: var(--bs-tooltip-color);
  5280. text-align: center;
  5281. background-color: var(--bs-tooltip-bg);
  5282. border-radius: var(--bs-tooltip-border-radius)
  5283. }
  5284. .popover {
  5285. --bs-popover-zindex: 1070;
  5286. --bs-popover-max-width: 276px;
  5287. --bs-popover-font-size: 0.875rem;
  5288. --bs-popover-bg: var(--bs-body-bg);
  5289. --bs-popover-border-width: var(--bs-border-width);
  5290. --bs-popover-border-color: var(--bs-border-color-translucent);
  5291. --bs-popover-border-radius: var(--bs-border-radius-lg);
  5292. --bs-popover-inner-border-radius: calc(var(--bs-border-radius-lg) - var(--bs-border-width));
  5293. --bs-popover-box-shadow: var(--bs-box-shadow);
  5294. --bs-popover-header-padding-x: 1rem;
  5295. --bs-popover-header-padding-y: 0.5rem;
  5296. --bs-popover-header-font-size: 1rem;
  5297. --bs-popover-header-color: inherit;
  5298. --bs-popover-header-bg: var(--bs-secondary-bg);
  5299. --bs-popover-body-padding-x: 1rem;
  5300. --bs-popover-body-padding-y: 1rem;
  5301. --bs-popover-body-color: var(--bs-body-color);
  5302. --bs-popover-arrow-width: 1rem;
  5303. --bs-popover-arrow-height: 0.5rem;
  5304. --bs-popover-arrow-border: var(--bs-popover-border-color);
  5305. z-index: var(--bs-popover-zindex);
  5306. display: block;
  5307. max-width: var(--bs-popover-max-width);
  5308. font-family: var(--bs-font-sans-serif);
  5309. font-style: normal;
  5310. font-weight: 400;
  5311. line-height: 1.5;
  5312. text-align: left;
  5313. text-align: start;
  5314. text-decoration: none;
  5315. text-shadow: none;
  5316. text-transform: none;
  5317. letter-spacing: normal;
  5318. word-break: normal;
  5319. white-space: normal;
  5320. word-spacing: normal;
  5321. line-break: auto;
  5322. font-size: var(--bs-popover-font-size);
  5323. word-wrap: break-word;
  5324. background-color: var(--bs-popover-bg);
  5325. background-clip: padding-box;
  5326. border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  5327. border-radius: var(--bs-popover-border-radius)
  5328. }
  5329. .popover .popover-arrow {
  5330. display: block;
  5331. width: var(--bs-popover-arrow-width);
  5332. height: var(--bs-popover-arrow-height)
  5333. }
  5334. .popover .popover-arrow::after, .popover .popover-arrow::before {
  5335. position: absolute;
  5336. display: block;
  5337. content: "";
  5338. border-color: transparent;
  5339. border-style: solid;
  5340. border-width: 0
  5341. }
  5342. .bs-popover-auto[data-popper-placement^=top] > .popover-arrow, .bs-popover-top > .popover-arrow {
  5343. bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))
  5344. }
  5345. .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before, .bs-popover-top > .popover-arrow::after, .bs-popover-top > .popover-arrow::before {
  5346. border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0
  5347. }
  5348. .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before, .bs-popover-top > .popover-arrow::before {
  5349. bottom: 0;
  5350. border-top-color: var(--bs-popover-arrow-border)
  5351. }
  5352. .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after, .bs-popover-top > .popover-arrow::after {
  5353. bottom: var(--bs-popover-border-width);
  5354. border-top-color: var(--bs-popover-bg)
  5355. }
  5356. .bs-popover-auto[data-popper-placement^=right] > .popover-arrow, .bs-popover-end > .popover-arrow {
  5357. left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5358. width: var(--bs-popover-arrow-height);
  5359. height: var(--bs-popover-arrow-width)
  5360. }
  5361. .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before, .bs-popover-end > .popover-arrow::after, .bs-popover-end > .popover-arrow::before {
  5362. border-width: calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0
  5363. }
  5364. .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before, .bs-popover-end > .popover-arrow::before {
  5365. left: 0;
  5366. border-right-color: var(--bs-popover-arrow-border)
  5367. }
  5368. .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after, .bs-popover-end > .popover-arrow::after {
  5369. left: var(--bs-popover-border-width);
  5370. border-right-color: var(--bs-popover-bg)
  5371. }
  5372. .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow, .bs-popover-bottom > .popover-arrow {
  5373. top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))
  5374. }
  5375. .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::after, .bs-popover-bottom > .popover-arrow::before {
  5376. border-width: 0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)
  5377. }
  5378. .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::before {
  5379. top: 0;
  5380. border-bottom-color: var(--bs-popover-arrow-border)
  5381. }
  5382. .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after, .bs-popover-bottom > .popover-arrow::after {
  5383. top: var(--bs-popover-border-width);
  5384. border-bottom-color: var(--bs-popover-bg)
  5385. }
  5386. .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before, .bs-popover-bottom .popover-header::before {
  5387. position: absolute;
  5388. top: 0;
  5389. left: 50%;
  5390. display: block;
  5391. width: var(--bs-popover-arrow-width);
  5392. margin-left: calc(-.5 * var(--bs-popover-arrow-width));
  5393. content: "";
  5394. border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg)
  5395. }
  5396. .bs-popover-auto[data-popper-placement^=left] > .popover-arrow, .bs-popover-start > .popover-arrow {
  5397. right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5398. width: var(--bs-popover-arrow-height);
  5399. height: var(--bs-popover-arrow-width)
  5400. }
  5401. .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before, .bs-popover-start > .popover-arrow::after, .bs-popover-start > .popover-arrow::before {
  5402. border-width: calc(var(--bs-popover-arrow-width) * .5) 0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)
  5403. }
  5404. .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before, .bs-popover-start > .popover-arrow::before {
  5405. right: 0;
  5406. border-left-color: var(--bs-popover-arrow-border)
  5407. }
  5408. .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after, .bs-popover-start > .popover-arrow::after {
  5409. right: var(--bs-popover-border-width);
  5410. border-left-color: var(--bs-popover-bg)
  5411. }
  5412. .popover-header {
  5413. padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
  5414. margin-bottom: 0;
  5415. font-size: var(--bs-popover-header-font-size);
  5416. color: var(--bs-popover-header-color);
  5417. background-color: var(--bs-popover-header-bg);
  5418. border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  5419. border-top-left-radius: var(--bs-popover-inner-border-radius);
  5420. border-top-right-radius: var(--bs-popover-inner-border-radius)
  5421. }
  5422. .popover-header:empty {
  5423. display: none
  5424. }
  5425. .popover-body {
  5426. padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
  5427. color: var(--bs-popover-body-color)
  5428. }
  5429. .carousel {
  5430. position: relative
  5431. }
  5432. .carousel.pointer-event {
  5433. touch-action: pan-y
  5434. }
  5435. .carousel-inner {
  5436. position: relative;
  5437. width: 100%;
  5438. overflow: hidden
  5439. }
  5440. .carousel-inner::after {
  5441. display: block;
  5442. clear: both;
  5443. content: ""
  5444. }
  5445. .carousel-item {
  5446. position: relative;
  5447. display: none;
  5448. float: left;
  5449. width: 100%;
  5450. margin-right: -100%;
  5451. -webkit-backface-visibility: hidden;
  5452. backface-visibility: hidden;
  5453. transition: transform .6s ease-in-out
  5454. }
  5455. @media (prefers-reduced-motion: reduce) {
  5456. .carousel-item {
  5457. transition: none
  5458. }
  5459. }
  5460. .carousel-item-next, .carousel-item-prev, .carousel-item.active {
  5461. display: block
  5462. }
  5463. .active.carousel-item-end, .carousel-item-next:not(.carousel-item-start) {
  5464. transform: translateX(100%)
  5465. }
  5466. .active.carousel-item-start, .carousel-item-prev:not(.carousel-item-end) {
  5467. transform: translateX(-100%)
  5468. }
  5469. .carousel-fade .carousel-item {
  5470. opacity: 0;
  5471. transition-property: opacity;
  5472. transform: none
  5473. }
  5474. .carousel-fade .carousel-item-next.carousel-item-start, .carousel-fade .carousel-item-prev.carousel-item-end, .carousel-fade .carousel-item.active {
  5475. z-index: 1;
  5476. opacity: 1
  5477. }
  5478. .carousel-fade .active.carousel-item-end, .carousel-fade .active.carousel-item-start {
  5479. z-index: 0;
  5480. opacity: 0;
  5481. transition: opacity 0s .6s
  5482. }
  5483. @media (prefers-reduced-motion: reduce) {
  5484. .carousel-fade .active.carousel-item-end, .carousel-fade .active.carousel-item-start {
  5485. transition: none
  5486. }
  5487. }
  5488. .carousel-control-next, .carousel-control-prev {
  5489. position: absolute;
  5490. top: 0;
  5491. bottom: 0;
  5492. z-index: 1;
  5493. display: flex;
  5494. align-items: center;
  5495. justify-content: center;
  5496. width: 15%;
  5497. padding: 0;
  5498. color: #fff;
  5499. text-align: center;
  5500. background: 0 0;
  5501. border: 0;
  5502. opacity: .5;
  5503. transition: opacity .15s ease
  5504. }
  5505. @media (prefers-reduced-motion: reduce) {
  5506. .carousel-control-next, .carousel-control-prev {
  5507. transition: none
  5508. }
  5509. }
  5510. .carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
  5511. color: #fff;
  5512. text-decoration: none;
  5513. outline: 0;
  5514. opacity: .9
  5515. }
  5516. .carousel-control-prev {
  5517. left: 0
  5518. }
  5519. .carousel-control-next {
  5520. right: 0
  5521. }
  5522. .carousel-control-next-icon, .carousel-control-prev-icon {
  5523. display: inline-block;
  5524. width: 2rem;
  5525. height: 2rem;
  5526. background-repeat: no-repeat;
  5527. background-position: 50%;
  5528. background-size: 100% 100%
  5529. }
  5530. .carousel-control-prev-icon {
  5531. 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")
  5532. }
  5533. .carousel-control-next-icon {
  5534. 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")
  5535. }
  5536. .carousel-indicators {
  5537. position: absolute;
  5538. right: 0;
  5539. bottom: 0;
  5540. left: 0;
  5541. z-index: 2;
  5542. display: flex;
  5543. justify-content: center;
  5544. padding: 0;
  5545. margin-right: 15%;
  5546. margin-bottom: 1rem;
  5547. margin-left: 15%
  5548. }
  5549. .carousel-indicators [data-bs-target] {
  5550. box-sizing: content-box;
  5551. flex: 0 1 auto;
  5552. width: 30px;
  5553. height: 3px;
  5554. padding: 0;
  5555. margin-right: 3px;
  5556. margin-left: 3px;
  5557. text-indent: -999px;
  5558. cursor: pointer;
  5559. background-color: #fff;
  5560. background-clip: padding-box;
  5561. border: 0;
  5562. border-top: 10px solid transparent;
  5563. border-bottom: 10px solid transparent;
  5564. opacity: .5;
  5565. transition: opacity .6s ease
  5566. }
  5567. @media (prefers-reduced-motion: reduce) {
  5568. .carousel-indicators [data-bs-target] {
  5569. transition: none
  5570. }
  5571. }
  5572. .carousel-indicators .active {
  5573. opacity: 1
  5574. }
  5575. .carousel-caption {
  5576. position: absolute;
  5577. right: 15%;
  5578. bottom: 1.25rem;
  5579. left: 15%;
  5580. padding-top: 1.25rem;
  5581. padding-bottom: 1.25rem;
  5582. color: #fff;
  5583. text-align: center
  5584. }
  5585. .carousel-dark .carousel-control-next-icon, .carousel-dark .carousel-control-prev-icon {
  5586. filter: invert(1) grayscale(100)
  5587. }
  5588. .carousel-dark .carousel-indicators [data-bs-target] {
  5589. background-color: #000
  5590. }
  5591. .carousel-dark .carousel-caption {
  5592. color: #000
  5593. }
  5594. [data-bs-theme=dark] .carousel .carousel-control-next-icon, [data-bs-theme=dark] .carousel .carousel-control-prev-icon, [data-bs-theme=dark].carousel .carousel-control-next-icon, [data-bs-theme=dark].carousel .carousel-control-prev-icon {
  5595. filter: invert(1) grayscale(100)
  5596. }
  5597. [data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target], [data-bs-theme=dark].carousel .carousel-indicators [data-bs-target] {
  5598. background-color: #000
  5599. }
  5600. [data-bs-theme=dark] .carousel .carousel-caption, [data-bs-theme=dark].carousel .carousel-caption {
  5601. color: #000
  5602. }
  5603. .spinner-border, .spinner-grow {
  5604. display: inline-block;
  5605. width: var(--bs-spinner-width);
  5606. height: var(--bs-spinner-height);
  5607. vertical-align: var(--bs-spinner-vertical-align);
  5608. border-radius: 50%;
  5609. animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name)
  5610. }
  5611. @keyframes spinner-border {
  5612. to {
  5613. transform: rotate(360deg)
  5614. }
  5615. }
  5616. .spinner-border {
  5617. --bs-spinner-width: 2rem;
  5618. --bs-spinner-height: 2rem;
  5619. --bs-spinner-vertical-align: -0.125em;
  5620. --bs-spinner-border-width: 0.25em;
  5621. --bs-spinner-animation-speed: 0.75s;
  5622. --bs-spinner-animation-name: spinner-border;
  5623. border: var(--bs-spinner-border-width) solid currentcolor;
  5624. border-right-color: transparent
  5625. }
  5626. .spinner-border-sm {
  5627. --bs-spinner-width: 1rem;
  5628. --bs-spinner-height: 1rem;
  5629. --bs-spinner-border-width: 0.2em
  5630. }
  5631. @keyframes spinner-grow {
  5632. 0% {
  5633. transform: scale(0)
  5634. }
  5635. 50% {
  5636. opacity: 1;
  5637. transform: none
  5638. }
  5639. }
  5640. .spinner-grow {
  5641. --bs-spinner-width: 2rem;
  5642. --bs-spinner-height: 2rem;
  5643. --bs-spinner-vertical-align: -0.125em;
  5644. --bs-spinner-animation-speed: 0.75s;
  5645. --bs-spinner-animation-name: spinner-grow;
  5646. background-color: currentcolor;
  5647. opacity: 0
  5648. }
  5649. .spinner-grow-sm {
  5650. --bs-spinner-width: 1rem;
  5651. --bs-spinner-height: 1rem
  5652. }
  5653. @media (prefers-reduced-motion: reduce) {
  5654. .spinner-border, .spinner-grow {
  5655. --bs-spinner-animation-speed: 1.5s
  5656. }
  5657. }
  5658. .offcanvas, .offcanvas-lg, .offcanvas-md, .offcanvas-sm, .offcanvas-xl, .offcanvas-xxl {
  5659. --bs-offcanvas-zindex: 1045;
  5660. --bs-offcanvas-width: 400px;
  5661. --bs-offcanvas-height: 30vh;
  5662. --bs-offcanvas-padding-x: 1rem;
  5663. --bs-offcanvas-padding-y: 1rem;
  5664. --bs-offcanvas-color: var(--bs-body-color);
  5665. --bs-offcanvas-bg: var(--bs-body-bg);
  5666. --bs-offcanvas-border-width: var(--bs-border-width);
  5667. --bs-offcanvas-border-color: var(--bs-border-color-translucent);
  5668. --bs-offcanvas-box-shadow: var(--bs-box-shadow-sm);
  5669. --bs-offcanvas-transition: transform 0.3s ease-in-out;
  5670. --bs-offcanvas-title-line-height: 1.5
  5671. }
  5672. @media (max-width: 575.98px) {
  5673. .offcanvas-sm {
  5674. position: fixed;
  5675. bottom: 0;
  5676. z-index: var(--bs-offcanvas-zindex);
  5677. display: flex;
  5678. flex-direction: column;
  5679. max-width: 100%;
  5680. color: var(--bs-offcanvas-color);
  5681. visibility: hidden;
  5682. background-color: var(--bs-offcanvas-bg);
  5683. background-clip: padding-box;
  5684. outline: 0;
  5685. transition: var(--bs-offcanvas-transition)
  5686. }
  5687. }
  5688. @media (max-width: 575.98px) and (prefers-reduced-motion: reduce) {
  5689. .offcanvas-sm {
  5690. transition: none
  5691. }
  5692. }
  5693. @media (max-width: 575.98px) {
  5694. .offcanvas-sm.offcanvas-start {
  5695. top: 0;
  5696. left: 0;
  5697. width: var(--bs-offcanvas-width);
  5698. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5699. transform: translateX(-100%)
  5700. }
  5701. .offcanvas-sm.offcanvas-end {
  5702. top: 0;
  5703. right: 0;
  5704. width: var(--bs-offcanvas-width);
  5705. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5706. transform: translateX(100%)
  5707. }
  5708. .offcanvas-sm.offcanvas-top {
  5709. top: 0;
  5710. right: 0;
  5711. left: 0;
  5712. height: var(--bs-offcanvas-height);
  5713. max-height: 100%;
  5714. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5715. transform: translateY(-100%)
  5716. }
  5717. .offcanvas-sm.offcanvas-bottom {
  5718. right: 0;
  5719. left: 0;
  5720. height: var(--bs-offcanvas-height);
  5721. max-height: 100%;
  5722. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5723. transform: translateY(100%)
  5724. }
  5725. .offcanvas-sm.show:not(.hiding), .offcanvas-sm.showing {
  5726. transform: none
  5727. }
  5728. .offcanvas-sm.hiding, .offcanvas-sm.show, .offcanvas-sm.showing {
  5729. visibility: visible
  5730. }
  5731. }
  5732. @media (min-width: 576px) {
  5733. .offcanvas-sm {
  5734. --bs-offcanvas-height: auto;
  5735. --bs-offcanvas-border-width: 0;
  5736. background-color: transparent !important
  5737. }
  5738. .offcanvas-sm .offcanvas-header {
  5739. display: none
  5740. }
  5741. .offcanvas-sm .offcanvas-body {
  5742. display: flex;
  5743. flex-grow: 0;
  5744. padding: 0;
  5745. overflow-y: visible;
  5746. background-color: transparent !important
  5747. }
  5748. }
  5749. @media (max-width: 767.98px) {
  5750. .offcanvas-md {
  5751. position: fixed;
  5752. bottom: 0;
  5753. z-index: var(--bs-offcanvas-zindex);
  5754. display: flex;
  5755. flex-direction: column;
  5756. max-width: 100%;
  5757. color: var(--bs-offcanvas-color);
  5758. visibility: hidden;
  5759. background-color: var(--bs-offcanvas-bg);
  5760. background-clip: padding-box;
  5761. outline: 0;
  5762. transition: var(--bs-offcanvas-transition)
  5763. }
  5764. }
  5765. @media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
  5766. .offcanvas-md {
  5767. transition: none
  5768. }
  5769. }
  5770. @media (max-width: 767.98px) {
  5771. .offcanvas-md.offcanvas-start {
  5772. top: 0;
  5773. left: 0;
  5774. width: var(--bs-offcanvas-width);
  5775. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5776. transform: translateX(-100%)
  5777. }
  5778. .offcanvas-md.offcanvas-end {
  5779. top: 0;
  5780. right: 0;
  5781. width: var(--bs-offcanvas-width);
  5782. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5783. transform: translateX(100%)
  5784. }
  5785. .offcanvas-md.offcanvas-top {
  5786. top: 0;
  5787. right: 0;
  5788. left: 0;
  5789. height: var(--bs-offcanvas-height);
  5790. max-height: 100%;
  5791. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5792. transform: translateY(-100%)
  5793. }
  5794. .offcanvas-md.offcanvas-bottom {
  5795. right: 0;
  5796. left: 0;
  5797. height: var(--bs-offcanvas-height);
  5798. max-height: 100%;
  5799. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5800. transform: translateY(100%)
  5801. }
  5802. .offcanvas-md.show:not(.hiding), .offcanvas-md.showing {
  5803. transform: none
  5804. }
  5805. .offcanvas-md.hiding, .offcanvas-md.show, .offcanvas-md.showing {
  5806. visibility: visible
  5807. }
  5808. }
  5809. @media (min-width: 768px) {
  5810. .offcanvas-md {
  5811. --bs-offcanvas-height: auto;
  5812. --bs-offcanvas-border-width: 0;
  5813. background-color: transparent !important
  5814. }
  5815. .offcanvas-md .offcanvas-header {
  5816. display: none
  5817. }
  5818. .offcanvas-md .offcanvas-body {
  5819. display: flex;
  5820. flex-grow: 0;
  5821. padding: 0;
  5822. overflow-y: visible;
  5823. background-color: transparent !important
  5824. }
  5825. }
  5826. @media (max-width: 991.98px) {
  5827. .offcanvas-lg {
  5828. position: fixed;
  5829. bottom: 0;
  5830. z-index: var(--bs-offcanvas-zindex);
  5831. display: flex;
  5832. flex-direction: column;
  5833. max-width: 100%;
  5834. color: var(--bs-offcanvas-color);
  5835. visibility: hidden;
  5836. background-color: var(--bs-offcanvas-bg);
  5837. background-clip: padding-box;
  5838. outline: 0;
  5839. transition: var(--bs-offcanvas-transition)
  5840. }
  5841. }
  5842. @media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
  5843. .offcanvas-lg {
  5844. transition: none
  5845. }
  5846. }
  5847. @media (max-width: 991.98px) {
  5848. .offcanvas-lg.offcanvas-start {
  5849. top: 0;
  5850. left: 0;
  5851. width: var(--bs-offcanvas-width);
  5852. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5853. transform: translateX(-100%)
  5854. }
  5855. .offcanvas-lg.offcanvas-end {
  5856. top: 0;
  5857. right: 0;
  5858. width: var(--bs-offcanvas-width);
  5859. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5860. transform: translateX(100%)
  5861. }
  5862. .offcanvas-lg.offcanvas-top {
  5863. top: 0;
  5864. right: 0;
  5865. left: 0;
  5866. height: var(--bs-offcanvas-height);
  5867. max-height: 100%;
  5868. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5869. transform: translateY(-100%)
  5870. }
  5871. .offcanvas-lg.offcanvas-bottom {
  5872. right: 0;
  5873. left: 0;
  5874. height: var(--bs-offcanvas-height);
  5875. max-height: 100%;
  5876. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5877. transform: translateY(100%)
  5878. }
  5879. .offcanvas-lg.show:not(.hiding), .offcanvas-lg.showing {
  5880. transform: none
  5881. }
  5882. .offcanvas-lg.hiding, .offcanvas-lg.show, .offcanvas-lg.showing {
  5883. visibility: visible
  5884. }
  5885. }
  5886. @media (min-width: 992px) {
  5887. .offcanvas-lg {
  5888. --bs-offcanvas-height: auto;
  5889. --bs-offcanvas-border-width: 0;
  5890. background-color: transparent !important
  5891. }
  5892. .offcanvas-lg .offcanvas-header {
  5893. display: none
  5894. }
  5895. .offcanvas-lg .offcanvas-body {
  5896. display: flex;
  5897. flex-grow: 0;
  5898. padding: 0;
  5899. overflow-y: visible;
  5900. background-color: transparent !important
  5901. }
  5902. }
  5903. @media (max-width: 1199.98px) {
  5904. .offcanvas-xl {
  5905. position: fixed;
  5906. bottom: 0;
  5907. z-index: var(--bs-offcanvas-zindex);
  5908. display: flex;
  5909. flex-direction: column;
  5910. max-width: 100%;
  5911. color: var(--bs-offcanvas-color);
  5912. visibility: hidden;
  5913. background-color: var(--bs-offcanvas-bg);
  5914. background-clip: padding-box;
  5915. outline: 0;
  5916. transition: var(--bs-offcanvas-transition)
  5917. }
  5918. }
  5919. @media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
  5920. .offcanvas-xl {
  5921. transition: none
  5922. }
  5923. }
  5924. @media (max-width: 1199.98px) {
  5925. .offcanvas-xl.offcanvas-start {
  5926. top: 0;
  5927. left: 0;
  5928. width: var(--bs-offcanvas-width);
  5929. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5930. transform: translateX(-100%)
  5931. }
  5932. .offcanvas-xl.offcanvas-end {
  5933. top: 0;
  5934. right: 0;
  5935. width: var(--bs-offcanvas-width);
  5936. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5937. transform: translateX(100%)
  5938. }
  5939. .offcanvas-xl.offcanvas-top {
  5940. top: 0;
  5941. right: 0;
  5942. left: 0;
  5943. height: var(--bs-offcanvas-height);
  5944. max-height: 100%;
  5945. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5946. transform: translateY(-100%)
  5947. }
  5948. .offcanvas-xl.offcanvas-bottom {
  5949. right: 0;
  5950. left: 0;
  5951. height: var(--bs-offcanvas-height);
  5952. max-height: 100%;
  5953. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5954. transform: translateY(100%)
  5955. }
  5956. .offcanvas-xl.show:not(.hiding), .offcanvas-xl.showing {
  5957. transform: none
  5958. }
  5959. .offcanvas-xl.hiding, .offcanvas-xl.show, .offcanvas-xl.showing {
  5960. visibility: visible
  5961. }
  5962. }
  5963. @media (min-width: 1200px) {
  5964. .offcanvas-xl {
  5965. --bs-offcanvas-height: auto;
  5966. --bs-offcanvas-border-width: 0;
  5967. background-color: transparent !important
  5968. }
  5969. .offcanvas-xl .offcanvas-header {
  5970. display: none
  5971. }
  5972. .offcanvas-xl .offcanvas-body {
  5973. display: flex;
  5974. flex-grow: 0;
  5975. padding: 0;
  5976. overflow-y: visible;
  5977. background-color: transparent !important
  5978. }
  5979. }
  5980. @media (max-width: 1399.98px) {
  5981. .offcanvas-xxl {
  5982. position: fixed;
  5983. bottom: 0;
  5984. z-index: var(--bs-offcanvas-zindex);
  5985. display: flex;
  5986. flex-direction: column;
  5987. max-width: 100%;
  5988. color: var(--bs-offcanvas-color);
  5989. visibility: hidden;
  5990. background-color: var(--bs-offcanvas-bg);
  5991. background-clip: padding-box;
  5992. outline: 0;
  5993. transition: var(--bs-offcanvas-transition)
  5994. }
  5995. }
  5996. @media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) {
  5997. .offcanvas-xxl {
  5998. transition: none
  5999. }
  6000. }
  6001. @media (max-width: 1399.98px) {
  6002. .offcanvas-xxl.offcanvas-start {
  6003. top: 0;
  6004. left: 0;
  6005. width: var(--bs-offcanvas-width);
  6006. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6007. transform: translateX(-100%)
  6008. }
  6009. .offcanvas-xxl.offcanvas-end {
  6010. top: 0;
  6011. right: 0;
  6012. width: var(--bs-offcanvas-width);
  6013. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6014. transform: translateX(100%)
  6015. }
  6016. .offcanvas-xxl.offcanvas-top {
  6017. top: 0;
  6018. right: 0;
  6019. left: 0;
  6020. height: var(--bs-offcanvas-height);
  6021. max-height: 100%;
  6022. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6023. transform: translateY(-100%)
  6024. }
  6025. .offcanvas-xxl.offcanvas-bottom {
  6026. right: 0;
  6027. left: 0;
  6028. height: var(--bs-offcanvas-height);
  6029. max-height: 100%;
  6030. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6031. transform: translateY(100%)
  6032. }
  6033. .offcanvas-xxl.show:not(.hiding), .offcanvas-xxl.showing {
  6034. transform: none
  6035. }
  6036. .offcanvas-xxl.hiding, .offcanvas-xxl.show, .offcanvas-xxl.showing {
  6037. visibility: visible
  6038. }
  6039. }
  6040. @media (min-width: 1400px) {
  6041. .offcanvas-xxl {
  6042. --bs-offcanvas-height: auto;
  6043. --bs-offcanvas-border-width: 0;
  6044. background-color: transparent !important
  6045. }
  6046. .offcanvas-xxl .offcanvas-header {
  6047. display: none
  6048. }
  6049. .offcanvas-xxl .offcanvas-body {
  6050. display: flex;
  6051. flex-grow: 0;
  6052. padding: 0;
  6053. overflow-y: visible;
  6054. background-color: transparent !important
  6055. }
  6056. }
  6057. .offcanvas {
  6058. position: fixed;
  6059. bottom: 0;
  6060. z-index: var(--bs-offcanvas-zindex);
  6061. display: flex;
  6062. flex-direction: column;
  6063. max-width: 100%;
  6064. color: var(--bs-offcanvas-color);
  6065. visibility: hidden;
  6066. background-color: var(--bs-offcanvas-bg);
  6067. background-clip: padding-box;
  6068. outline: 0;
  6069. transition: var(--bs-offcanvas-transition)
  6070. }
  6071. @media (prefers-reduced-motion: reduce) {
  6072. .offcanvas {
  6073. transition: none
  6074. }
  6075. }
  6076. .offcanvas.offcanvas-start {
  6077. top: 0;
  6078. left: 0;
  6079. width: var(--bs-offcanvas-width);
  6080. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6081. transform: translateX(-100%)
  6082. }
  6083. .offcanvas.offcanvas-end {
  6084. top: 0;
  6085. right: 0;
  6086. width: var(--bs-offcanvas-width);
  6087. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6088. transform: translateX(100%)
  6089. }
  6090. .offcanvas.offcanvas-top {
  6091. top: 0;
  6092. right: 0;
  6093. left: 0;
  6094. height: var(--bs-offcanvas-height);
  6095. max-height: 100%;
  6096. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6097. transform: translateY(-100%)
  6098. }
  6099. .offcanvas.offcanvas-bottom {
  6100. right: 0;
  6101. left: 0;
  6102. height: var(--bs-offcanvas-height);
  6103. max-height: 100%;
  6104. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6105. transform: translateY(100%)
  6106. }
  6107. .offcanvas.show:not(.hiding), .offcanvas.showing {
  6108. transform: none
  6109. }
  6110. .offcanvas.hiding, .offcanvas.show, .offcanvas.showing {
  6111. visibility: visible
  6112. }
  6113. .offcanvas-backdrop {
  6114. position: fixed;
  6115. top: 0;
  6116. left: 0;
  6117. z-index: 1040;
  6118. width: 100vw;
  6119. height: 100vh;
  6120. background-color: #000
  6121. }
  6122. .offcanvas-backdrop.fade {
  6123. opacity: 0
  6124. }
  6125. .offcanvas-backdrop.show {
  6126. opacity: .5
  6127. }
  6128. .offcanvas-header {
  6129. display: flex;
  6130. align-items: center;
  6131. padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x)
  6132. }
  6133. .offcanvas-header .btn-close {
  6134. padding: calc(var(--bs-offcanvas-padding-y) * .5) calc(var(--bs-offcanvas-padding-x) * .5);
  6135. margin: calc(-.5 * var(--bs-offcanvas-padding-y)) calc(-.5 * var(--bs-offcanvas-padding-x)) calc(-.5 * var(--bs-offcanvas-padding-y)) auto
  6136. }
  6137. .offcanvas-title {
  6138. margin-bottom: 0;
  6139. line-height: var(--bs-offcanvas-title-line-height)
  6140. }
  6141. .offcanvas-body {
  6142. flex-grow: 1;
  6143. padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  6144. overflow-y: auto
  6145. }
  6146. .placeholder {
  6147. display: inline-block;
  6148. min-height: 1em;
  6149. vertical-align: middle;
  6150. cursor: wait;
  6151. background-color: currentcolor;
  6152. opacity: .5
  6153. }
  6154. .placeholder.btn::before {
  6155. display: inline-block;
  6156. content: ""
  6157. }
  6158. .placeholder-xs {
  6159. min-height: .6em
  6160. }
  6161. .placeholder-sm {
  6162. min-height: .8em
  6163. }
  6164. .placeholder-lg {
  6165. min-height: 1.2em
  6166. }
  6167. .placeholder-glow .placeholder {
  6168. animation: placeholder-glow 2s ease-in-out infinite
  6169. }
  6170. @keyframes placeholder-glow {
  6171. 50% {
  6172. opacity: .2
  6173. }
  6174. }
  6175. .placeholder-wave {
  6176. -webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  6177. mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  6178. -webkit-mask-size: 200% 100%;
  6179. mask-size: 200% 100%;
  6180. animation: placeholder-wave 2s linear infinite
  6181. }
  6182. @keyframes placeholder-wave {
  6183. 100% {
  6184. -webkit-mask-position: -200% 0%;
  6185. mask-position: -200% 0%
  6186. }
  6187. }
  6188. .clearfix::after {
  6189. display: block;
  6190. clear: both;
  6191. content: ""
  6192. }
  6193. .text-bg-primary {
  6194. color: #fff !important;
  6195. background-color: RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important
  6196. }
  6197. .text-bg-secondary {
  6198. color: #fff !important;
  6199. background-color: RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important
  6200. }
  6201. .text-bg-success {
  6202. color: #fff !important;
  6203. background-color: RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important
  6204. }
  6205. .text-bg-info {
  6206. color: #000 !important;
  6207. background-color: RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important
  6208. }
  6209. .text-bg-warning {
  6210. color: #000 !important;
  6211. background-color: RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important
  6212. }
  6213. .text-bg-danger {
  6214. color: #fff !important;
  6215. background-color: RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important
  6216. }
  6217. .text-bg-light {
  6218. color: #000 !important;
  6219. background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important
  6220. }
  6221. .text-bg-dark {
  6222. color: #fff !important;
  6223. background-color: RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important
  6224. }
  6225. .link-primary {
  6226. color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;
  6227. -webkit-text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6228. text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important
  6229. }
  6230. .link-primary:focus, .link-primary:hover {
  6231. color: RGBA(10, 88, 202, var(--bs-link-opacity, 1)) !important;
  6232. -webkit-text-decoration-color: RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1)) !important;
  6233. text-decoration-color: RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1)) !important
  6234. }
  6235. .link-secondary {
  6236. color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;
  6237. -webkit-text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6238. text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important
  6239. }
  6240. .link-secondary:focus, .link-secondary:hover {
  6241. color: RGBA(86, 94, 100, var(--bs-link-opacity, 1)) !important;
  6242. -webkit-text-decoration-color: RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)) !important;
  6243. text-decoration-color: RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)) !important
  6244. }
  6245. .link-success {
  6246. color: RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;
  6247. -webkit-text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6248. text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important
  6249. }
  6250. .link-success:focus, .link-success:hover {
  6251. color: RGBA(20, 108, 67, var(--bs-link-opacity, 1)) !important;
  6252. -webkit-text-decoration-color: RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1)) !important;
  6253. text-decoration-color: RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1)) !important
  6254. }
  6255. .link-info {
  6256. color: RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;
  6257. -webkit-text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6258. text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important
  6259. }
  6260. .link-info:focus, .link-info:hover {
  6261. color: RGBA(61, 213, 243, var(--bs-link-opacity, 1)) !important;
  6262. -webkit-text-decoration-color: RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1)) !important;
  6263. text-decoration-color: RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1)) !important
  6264. }
  6265. .link-warning {
  6266. color: RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;
  6267. -webkit-text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6268. text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important
  6269. }
  6270. .link-warning:focus, .link-warning:hover {
  6271. color: RGBA(255, 205, 57, var(--bs-link-opacity, 1)) !important;
  6272. -webkit-text-decoration-color: RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)) !important;
  6273. text-decoration-color: RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)) !important
  6274. }
  6275. .link-danger {
  6276. color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;
  6277. -webkit-text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6278. text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important
  6279. }
  6280. .link-danger:focus, .link-danger:hover {
  6281. color: RGBA(176, 42, 55, var(--bs-link-opacity, 1)) !important;
  6282. -webkit-text-decoration-color: RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1)) !important;
  6283. text-decoration-color: RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1)) !important
  6284. }
  6285. .link-light {
  6286. color: RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;
  6287. -webkit-text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6288. text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important
  6289. }
  6290. .link-light:focus, .link-light:hover {
  6291. color: RGBA(249, 250, 251, var(--bs-link-opacity, 1)) !important;
  6292. -webkit-text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important;
  6293. text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important
  6294. }
  6295. .link-dark {
  6296. color: RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;
  6297. -webkit-text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6298. text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important
  6299. }
  6300. .link-dark:focus, .link-dark:hover {
  6301. color: RGBA(26, 30, 33, var(--bs-link-opacity, 1)) !important;
  6302. -webkit-text-decoration-color: RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1)) !important;
  6303. text-decoration-color: RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1)) !important
  6304. }
  6305. .link-body-emphasis {
  6306. color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;
  6307. -webkit-text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6308. text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important
  6309. }
  6310. .link-body-emphasis:focus, .link-body-emphasis:hover {
  6311. color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, .75)) !important;
  6312. -webkit-text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important;
  6313. text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important
  6314. }
  6315. .focus-ring:focus {
  6316. outline: 0;
  6317. box-shadow: var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color)
  6318. }
  6319. .icon-link {
  6320. display: inline-flex;
  6321. gap: .375rem;
  6322. align-items: center;
  6323. -webkit-text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
  6324. text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
  6325. text-underline-offset: 0.25em;
  6326. -webkit-backface-visibility: hidden;
  6327. backface-visibility: hidden
  6328. }
  6329. .icon-link > .bi {
  6330. flex-shrink: 0;
  6331. width: 1em;
  6332. height: 1em;
  6333. fill: currentcolor;
  6334. transition: .2s ease-in-out transform
  6335. }
  6336. @media (prefers-reduced-motion: reduce) {
  6337. .icon-link > .bi {
  6338. transition: none
  6339. }
  6340. }
  6341. .icon-link-hover:focus-visible > .bi, .icon-link-hover:hover > .bi {
  6342. transform: var(--bs-icon-link-transform, translate3d(.25em, 0, 0))
  6343. }
  6344. .ratio {
  6345. position: relative;
  6346. width: 100%
  6347. }
  6348. .ratio::before {
  6349. display: block;
  6350. padding-top: var(--bs-aspect-ratio);
  6351. content: ""
  6352. }
  6353. .ratio > * {
  6354. position: absolute;
  6355. top: 0;
  6356. left: 0;
  6357. width: 100%;
  6358. height: 100%
  6359. }
  6360. .ratio-1x1 {
  6361. --bs-aspect-ratio: 100%
  6362. }
  6363. .ratio-4x3 {
  6364. --bs-aspect-ratio: 75%
  6365. }
  6366. .ratio-16x9 {
  6367. --bs-aspect-ratio: 56.25%
  6368. }
  6369. .ratio-21x9 {
  6370. --bs-aspect-ratio: 42.8571428571%
  6371. }
  6372. .fixed-top {
  6373. position: fixed;
  6374. top: 0;
  6375. right: 0;
  6376. left: 0;
  6377. z-index: 1030
  6378. }
  6379. .fixed-bottom {
  6380. position: fixed;
  6381. right: 0;
  6382. bottom: 0;
  6383. left: 0;
  6384. z-index: 1030
  6385. }
  6386. .sticky-top {
  6387. position: -webkit-sticky;
  6388. position: sticky;
  6389. top: 0;
  6390. z-index: 1020
  6391. }
  6392. .sticky-bottom {
  6393. position: -webkit-sticky;
  6394. position: sticky;
  6395. bottom: 0;
  6396. z-index: 1020
  6397. }
  6398. @media (min-width: 576px) {
  6399. .sticky-sm-top {
  6400. position: -webkit-sticky;
  6401. position: sticky;
  6402. top: 0;
  6403. z-index: 1020
  6404. }
  6405. .sticky-sm-bottom {
  6406. position: -webkit-sticky;
  6407. position: sticky;
  6408. bottom: 0;
  6409. z-index: 1020
  6410. }
  6411. }
  6412. @media (min-width: 768px) {
  6413. .sticky-md-top {
  6414. position: -webkit-sticky;
  6415. position: sticky;
  6416. top: 0;
  6417. z-index: 1020
  6418. }
  6419. .sticky-md-bottom {
  6420. position: -webkit-sticky;
  6421. position: sticky;
  6422. bottom: 0;
  6423. z-index: 1020
  6424. }
  6425. }
  6426. @media (min-width: 992px) {
  6427. .sticky-lg-top {
  6428. position: -webkit-sticky;
  6429. position: sticky;
  6430. top: 0;
  6431. z-index: 1020
  6432. }
  6433. .sticky-lg-bottom {
  6434. position: -webkit-sticky;
  6435. position: sticky;
  6436. bottom: 0;
  6437. z-index: 1020
  6438. }
  6439. }
  6440. @media (min-width: 1200px) {
  6441. .sticky-xl-top {
  6442. position: -webkit-sticky;
  6443. position: sticky;
  6444. top: 0;
  6445. z-index: 1020
  6446. }
  6447. .sticky-xl-bottom {
  6448. position: -webkit-sticky;
  6449. position: sticky;
  6450. bottom: 0;
  6451. z-index: 1020
  6452. }
  6453. }
  6454. @media (min-width: 1400px) {
  6455. .sticky-xxl-top {
  6456. position: -webkit-sticky;
  6457. position: sticky;
  6458. top: 0;
  6459. z-index: 1020
  6460. }
  6461. .sticky-xxl-bottom {
  6462. position: -webkit-sticky;
  6463. position: sticky;
  6464. bottom: 0;
  6465. z-index: 1020
  6466. }
  6467. }
  6468. .hstack {
  6469. display: flex;
  6470. flex-direction: row;
  6471. align-items: center;
  6472. align-self: stretch
  6473. }
  6474. .vstack {
  6475. display: flex;
  6476. flex: 1 1 auto;
  6477. flex-direction: column;
  6478. align-self: stretch
  6479. }
  6480. .visually-hidden, .visually-hidden-focusable:not(:focus):not(:focus-within) {
  6481. width: 1px !important;
  6482. height: 1px !important;
  6483. padding: 0 !important;
  6484. margin: -1px !important;
  6485. overflow: hidden !important;
  6486. clip: rect(0, 0, 0, 0) !important;
  6487. white-space: nowrap !important;
  6488. border: 0 !important
  6489. }
  6490. .visually-hidden-focusable:not(:focus):not(:focus-within):not(caption), .visually-hidden:not(caption) {
  6491. position: absolute !important
  6492. }
  6493. .stretched-link::after {
  6494. position: absolute;
  6495. top: 0;
  6496. right: 0;
  6497. bottom: 0;
  6498. left: 0;
  6499. z-index: 1;
  6500. content: ""
  6501. }
  6502. .text-truncate {
  6503. overflow: hidden;
  6504. text-overflow: ellipsis;
  6505. white-space: nowrap
  6506. }
  6507. .vr {
  6508. display: inline-block;
  6509. align-self: stretch;
  6510. width: var(--bs-border-width);
  6511. min-height: 1em;
  6512. background-color: currentcolor;
  6513. opacity: .25
  6514. }
  6515. .align-baseline {
  6516. vertical-align: baseline !important
  6517. }
  6518. .align-top {
  6519. vertical-align: top !important
  6520. }
  6521. .align-middle {
  6522. vertical-align: middle !important
  6523. }
  6524. .align-bottom {
  6525. vertical-align: bottom !important
  6526. }
  6527. .align-text-bottom {
  6528. vertical-align: text-bottom !important
  6529. }
  6530. .align-text-top {
  6531. vertical-align: text-top !important
  6532. }
  6533. .float-start {
  6534. float: left !important
  6535. }
  6536. .float-end {
  6537. float: right !important
  6538. }
  6539. .float-none {
  6540. float: none !important
  6541. }
  6542. .object-fit-contain {
  6543. -o-object-fit: contain !important;
  6544. object-fit: contain !important
  6545. }
  6546. .object-fit-cover {
  6547. -o-object-fit: cover !important;
  6548. object-fit: cover !important
  6549. }
  6550. .object-fit-fill {
  6551. -o-object-fit: fill !important;
  6552. object-fit: fill !important
  6553. }
  6554. .object-fit-scale {
  6555. -o-object-fit: scale-down !important;
  6556. object-fit: scale-down !important
  6557. }
  6558. .object-fit-none {
  6559. -o-object-fit: none !important;
  6560. object-fit: none !important
  6561. }
  6562. .opacity-0 {
  6563. opacity: 0 !important
  6564. }
  6565. .opacity-25 {
  6566. opacity: .25 !important
  6567. }
  6568. .opacity-50 {
  6569. opacity: .5 !important
  6570. }
  6571. .opacity-75 {
  6572. opacity: .75 !important
  6573. }
  6574. .opacity-100 {
  6575. opacity: 1 !important
  6576. }
  6577. .overflow-auto {
  6578. overflow: auto !important
  6579. }
  6580. .overflow-hidden {
  6581. overflow: hidden !important
  6582. }
  6583. .overflow-visible {
  6584. overflow: visible !important
  6585. }
  6586. .overflow-scroll {
  6587. overflow: scroll !important
  6588. }
  6589. .overflow-x-auto {
  6590. overflow-x: auto !important
  6591. }
  6592. .overflow-x-hidden {
  6593. overflow-x: hidden !important
  6594. }
  6595. .overflow-x-visible {
  6596. overflow-x: visible !important
  6597. }
  6598. .overflow-x-scroll {
  6599. overflow-x: scroll !important
  6600. }
  6601. .overflow-y-auto {
  6602. overflow-y: auto !important
  6603. }
  6604. .overflow-y-hidden {
  6605. overflow-y: hidden !important
  6606. }
  6607. .overflow-y-visible {
  6608. overflow-y: visible !important
  6609. }
  6610. .overflow-y-scroll {
  6611. overflow-y: scroll !important
  6612. }
  6613. .d-inline {
  6614. display: inline !important
  6615. }
  6616. .d-inline-block {
  6617. display: inline-block !important
  6618. }
  6619. .d-block {
  6620. display: block !important
  6621. }
  6622. .d-grid {
  6623. display: grid !important
  6624. }
  6625. .d-inline-grid {
  6626. display: inline-grid !important
  6627. }
  6628. .d-table {
  6629. display: table !important
  6630. }
  6631. .d-table-row {
  6632. display: table-row !important
  6633. }
  6634. .d-table-cell {
  6635. display: table-cell !important
  6636. }
  6637. .d-flex {
  6638. display: flex !important
  6639. }
  6640. .d-inline-flex {
  6641. display: inline-flex !important
  6642. }
  6643. .d-none {
  6644. display: none !important
  6645. }
  6646. .shadow {
  6647. box-shadow: var(--bs-box-shadow) !important
  6648. }
  6649. .shadow-sm {
  6650. box-shadow: var(--bs-box-shadow-sm) !important
  6651. }
  6652. .shadow-lg {
  6653. box-shadow: var(--bs-box-shadow-lg) !important
  6654. }
  6655. .shadow-none {
  6656. box-shadow: none !important
  6657. }
  6658. .focus-ring-primary {
  6659. --bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity))
  6660. }
  6661. .focus-ring-secondary {
  6662. --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity))
  6663. }
  6664. .focus-ring-success {
  6665. --bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity))
  6666. }
  6667. .focus-ring-info {
  6668. --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity))
  6669. }
  6670. .focus-ring-warning {
  6671. --bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity))
  6672. }
  6673. .focus-ring-danger {
  6674. --bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity))
  6675. }
  6676. .focus-ring-light {
  6677. --bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity))
  6678. }
  6679. .focus-ring-dark {
  6680. --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity))
  6681. }
  6682. .position-static {
  6683. position: static !important
  6684. }
  6685. .position-relative {
  6686. position: relative !important
  6687. }
  6688. .position-absolute {
  6689. position: absolute !important
  6690. }
  6691. .position-fixed {
  6692. position: fixed !important
  6693. }
  6694. .position-sticky {
  6695. position: -webkit-sticky !important;
  6696. position: sticky !important
  6697. }
  6698. .top-0 {
  6699. top: 0 !important
  6700. }
  6701. .top-50 {
  6702. top: 50% !important
  6703. }
  6704. .top-100 {
  6705. top: 100% !important
  6706. }
  6707. .bottom-0 {
  6708. bottom: 0 !important
  6709. }
  6710. .bottom-50 {
  6711. bottom: 50% !important
  6712. }
  6713. .bottom-100 {
  6714. bottom: 100% !important
  6715. }
  6716. .start-0 {
  6717. left: 0 !important
  6718. }
  6719. .start-50 {
  6720. left: 50% !important
  6721. }
  6722. .start-100 {
  6723. left: 100% !important
  6724. }
  6725. .end-0 {
  6726. right: 0 !important
  6727. }
  6728. .end-50 {
  6729. right: 50% !important
  6730. }
  6731. .end-100 {
  6732. right: 100% !important
  6733. }
  6734. .translate-middle {
  6735. transform: translate(-50%, -50%) !important
  6736. }
  6737. .translate-middle-x {
  6738. transform: translateX(-50%) !important
  6739. }
  6740. .translate-middle-y {
  6741. transform: translateY(-50%) !important
  6742. }
  6743. .border {
  6744. border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
  6745. }
  6746. .border-0 {
  6747. border: 0 !important
  6748. }
  6749. .border-top {
  6750. border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
  6751. }
  6752. .border-top-0 {
  6753. border-top: 0 !important
  6754. }
  6755. .border-end {
  6756. border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
  6757. }
  6758. .border-end-0 {
  6759. border-right: 0 !important
  6760. }
  6761. .border-bottom {
  6762. border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
  6763. }
  6764. .border-bottom-0 {
  6765. border-bottom: 0 !important
  6766. }
  6767. .border-start {
  6768. border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
  6769. }
  6770. .border-start-0 {
  6771. border-left: 0 !important
  6772. }
  6773. .border-primary {
  6774. --bs-border-opacity: 1;
  6775. border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important
  6776. }
  6777. .border-secondary {
  6778. --bs-border-opacity: 1;
  6779. border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important
  6780. }
  6781. .border-success {
  6782. --bs-border-opacity: 1;
  6783. border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important
  6784. }
  6785. .border-info {
  6786. --bs-border-opacity: 1;
  6787. border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important
  6788. }
  6789. .border-warning {
  6790. --bs-border-opacity: 1;
  6791. border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important
  6792. }
  6793. .border-danger {
  6794. --bs-border-opacity: 1;
  6795. border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important
  6796. }
  6797. .border-light {
  6798. --bs-border-opacity: 1;
  6799. border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important
  6800. }
  6801. .border-dark {
  6802. --bs-border-opacity: 1;
  6803. border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important
  6804. }
  6805. .border-black {
  6806. --bs-border-opacity: 1;
  6807. border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important
  6808. }
  6809. .border-white {
  6810. --bs-border-opacity: 1;
  6811. border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important
  6812. }
  6813. .border-primary-subtle {
  6814. border-color: var(--bs-primary-border-subtle) !important
  6815. }
  6816. .border-secondary-subtle {
  6817. border-color: var(--bs-secondary-border-subtle) !important
  6818. }
  6819. .border-success-subtle {
  6820. border-color: var(--bs-success-border-subtle) !important
  6821. }
  6822. .border-info-subtle {
  6823. border-color: var(--bs-info-border-subtle) !important
  6824. }
  6825. .border-warning-subtle {
  6826. border-color: var(--bs-warning-border-subtle) !important
  6827. }
  6828. .border-danger-subtle {
  6829. border-color: var(--bs-danger-border-subtle) !important
  6830. }
  6831. .border-light-subtle {
  6832. border-color: var(--bs-light-border-subtle) !important
  6833. }
  6834. .border-dark-subtle {
  6835. border-color: var(--bs-dark-border-subtle) !important
  6836. }
  6837. .border-1 {
  6838. border-width: 1px !important
  6839. }
  6840. .border-2 {
  6841. border-width: 2px !important
  6842. }
  6843. .border-3 {
  6844. border-width: 3px !important
  6845. }
  6846. .border-4 {
  6847. border-width: 4px !important
  6848. }
  6849. .border-5 {
  6850. border-width: 5px !important
  6851. }
  6852. .border-opacity-10 {
  6853. --bs-border-opacity: 0.1
  6854. }
  6855. .border-opacity-25 {
  6856. --bs-border-opacity: 0.25
  6857. }
  6858. .border-opacity-50 {
  6859. --bs-border-opacity: 0.5
  6860. }
  6861. .border-opacity-75 {
  6862. --bs-border-opacity: 0.75
  6863. }
  6864. .border-opacity-100 {
  6865. --bs-border-opacity: 1
  6866. }
  6867. .w-25 {
  6868. width: 25% !important
  6869. }
  6870. .w-50 {
  6871. width: 50% !important
  6872. }
  6873. .w-75 {
  6874. width: 75% !important
  6875. }
  6876. .w-100 {
  6877. width: 100% !important
  6878. }
  6879. .w-auto {
  6880. width: auto !important
  6881. }
  6882. .mw-100 {
  6883. max-width: 100% !important
  6884. }
  6885. .vw-100 {
  6886. width: 100vw !important
  6887. }
  6888. .min-vw-100 {
  6889. min-width: 100vw !important
  6890. }
  6891. .h-25 {
  6892. height: 25% !important
  6893. }
  6894. .h-50 {
  6895. height: 50% !important
  6896. }
  6897. .h-75 {
  6898. height: 75% !important
  6899. }
  6900. .h-100 {
  6901. height: 100% !important
  6902. }
  6903. .h-auto {
  6904. height: auto !important
  6905. }
  6906. .mh-100 {
  6907. max-height: 100% !important
  6908. }
  6909. .vh-100 {
  6910. height: 100vh !important
  6911. }
  6912. .min-vh-100 {
  6913. min-height: 100vh !important
  6914. }
  6915. .flex-fill {
  6916. flex: 1 1 auto !important
  6917. }
  6918. .flex-row {
  6919. flex-direction: row !important
  6920. }
  6921. .flex-column {
  6922. flex-direction: column !important
  6923. }
  6924. .flex-row-reverse {
  6925. flex-direction: row-reverse !important
  6926. }
  6927. .flex-column-reverse {
  6928. flex-direction: column-reverse !important
  6929. }
  6930. .flex-grow-0 {
  6931. flex-grow: 0 !important
  6932. }
  6933. .flex-grow-1 {
  6934. flex-grow: 1 !important
  6935. }
  6936. .flex-shrink-0 {
  6937. flex-shrink: 0 !important
  6938. }
  6939. .flex-shrink-1 {
  6940. flex-shrink: 1 !important
  6941. }
  6942. .flex-wrap {
  6943. flex-wrap: wrap !important
  6944. }
  6945. .flex-nowrap {
  6946. flex-wrap: nowrap !important
  6947. }
  6948. .flex-wrap-reverse {
  6949. flex-wrap: wrap-reverse !important
  6950. }
  6951. .justify-content-start {
  6952. justify-content: flex-start !important
  6953. }
  6954. .justify-content-end {
  6955. justify-content: flex-end !important
  6956. }
  6957. .justify-content-center {
  6958. justify-content: center !important
  6959. }
  6960. .justify-content-between {
  6961. justify-content: space-between !important
  6962. }
  6963. .justify-content-around {
  6964. justify-content: space-around !important
  6965. }
  6966. .justify-content-evenly {
  6967. justify-content: space-evenly !important
  6968. }
  6969. .align-items-start {
  6970. align-items: flex-start !important
  6971. }
  6972. .align-items-end {
  6973. align-items: flex-end !important
  6974. }
  6975. .align-items-center {
  6976. align-items: center !important
  6977. }
  6978. .align-items-baseline {
  6979. align-items: baseline !important
  6980. }
  6981. .align-items-stretch {
  6982. align-items: stretch !important
  6983. }
  6984. .align-content-start {
  6985. align-content: flex-start !important
  6986. }
  6987. .align-content-end {
  6988. align-content: flex-end !important
  6989. }
  6990. .align-content-center {
  6991. align-content: center !important
  6992. }
  6993. .align-content-between {
  6994. align-content: space-between !important
  6995. }
  6996. .align-content-around {
  6997. align-content: space-around !important
  6998. }
  6999. .align-content-stretch {
  7000. align-content: stretch !important
  7001. }
  7002. .align-self-auto {
  7003. align-self: auto !important
  7004. }
  7005. .align-self-start {
  7006. align-self: flex-start !important
  7007. }
  7008. .align-self-end {
  7009. align-self: flex-end !important
  7010. }
  7011. .align-self-center {
  7012. align-self: center !important
  7013. }
  7014. .align-self-baseline {
  7015. align-self: baseline !important
  7016. }
  7017. .align-self-stretch {
  7018. align-self: stretch !important
  7019. }
  7020. .order-first {
  7021. order: -1 !important
  7022. }
  7023. .order-0 {
  7024. order: 0 !important
  7025. }
  7026. .order-1 {
  7027. order: 1 !important
  7028. }
  7029. .order-2 {
  7030. order: 2 !important
  7031. }
  7032. .order-3 {
  7033. order: 3 !important
  7034. }
  7035. .order-4 {
  7036. order: 4 !important
  7037. }
  7038. .order-5 {
  7039. order: 5 !important
  7040. }
  7041. .order-last {
  7042. order: 6 !important
  7043. }
  7044. .m-0 {
  7045. margin: 0 !important
  7046. }
  7047. .m-1 {
  7048. margin: .25rem !important
  7049. }
  7050. .m-2 {
  7051. margin: .5rem !important
  7052. }
  7053. .m-3 {
  7054. margin: 1rem !important
  7055. }
  7056. .m-4 {
  7057. margin: 1.5rem !important
  7058. }
  7059. .m-5 {
  7060. margin: 3rem !important
  7061. }
  7062. .m-auto {
  7063. margin: auto !important
  7064. }
  7065. .mx-0 {
  7066. margin-right: 0 !important;
  7067. margin-left: 0 !important
  7068. }
  7069. .mx-1 {
  7070. margin-right: .25rem !important;
  7071. margin-left: .25rem !important
  7072. }
  7073. .mx-2 {
  7074. margin-right: .5rem !important;
  7075. margin-left: .5rem !important
  7076. }
  7077. .mx-3 {
  7078. margin-right: 1rem !important;
  7079. margin-left: 1rem !important
  7080. }
  7081. .mx-4 {
  7082. margin-right: 1.5rem !important;
  7083. margin-left: 1.5rem !important
  7084. }
  7085. .mx-5 {
  7086. margin-right: 3rem !important;
  7087. margin-left: 3rem !important
  7088. }
  7089. .mx-auto {
  7090. margin-right: auto !important;
  7091. margin-left: auto !important
  7092. }
  7093. .my-0 {
  7094. margin-top: 0 !important;
  7095. margin-bottom: 0 !important
  7096. }
  7097. .my-1 {
  7098. margin-top: .25rem !important;
  7099. margin-bottom: .25rem !important
  7100. }
  7101. .my-2 {
  7102. margin-top: .5rem !important;
  7103. margin-bottom: .5rem !important
  7104. }
  7105. .my-3 {
  7106. margin-top: 1rem !important;
  7107. margin-bottom: 1rem !important
  7108. }
  7109. .my-4 {
  7110. margin-top: 1.5rem !important;
  7111. margin-bottom: 1.5rem !important
  7112. }
  7113. .my-5 {
  7114. margin-top: 3rem !important;
  7115. margin-bottom: 3rem !important
  7116. }
  7117. .my-auto {
  7118. margin-top: auto !important;
  7119. margin-bottom: auto !important
  7120. }
  7121. .mt-0 {
  7122. margin-top: 0 !important
  7123. }
  7124. .mt-1 {
  7125. margin-top: .25rem !important
  7126. }
  7127. .mt-2 {
  7128. margin-top: .5rem !important
  7129. }
  7130. .mt-3 {
  7131. margin-top: 1rem !important
  7132. }
  7133. .mt-4 {
  7134. margin-top: 1.5rem !important
  7135. }
  7136. .mt-5 {
  7137. margin-top: 3rem !important
  7138. }
  7139. .mt-auto {
  7140. margin-top: auto !important
  7141. }
  7142. .me-0 {
  7143. margin-right: 0 !important
  7144. }
  7145. .me-1 {
  7146. margin-right: .25rem !important
  7147. }
  7148. .me-2 {
  7149. margin-right: .5rem !important
  7150. }
  7151. .me-3 {
  7152. margin-right: 1rem !important
  7153. }
  7154. .me-4 {
  7155. margin-right: 1.5rem !important
  7156. }
  7157. .me-5 {
  7158. margin-right: 3rem !important
  7159. }
  7160. .me-auto {
  7161. margin-right: auto !important
  7162. }
  7163. .mb-0 {
  7164. margin-bottom: 0 !important
  7165. }
  7166. .mb-1 {
  7167. margin-bottom: .25rem !important
  7168. }
  7169. .mb-2 {
  7170. margin-bottom: .5rem !important
  7171. }
  7172. .mb-3 {
  7173. margin-bottom: 1rem !important
  7174. }
  7175. .mb-4 {
  7176. margin-bottom: 1.5rem !important
  7177. }
  7178. .mb-5 {
  7179. margin-bottom: 3rem !important
  7180. }
  7181. .mb-auto {
  7182. margin-bottom: auto !important
  7183. }
  7184. .ms-0 {
  7185. margin-left: 0 !important
  7186. }
  7187. .ms-1 {
  7188. margin-left: .25rem !important
  7189. }
  7190. .ms-2 {
  7191. margin-left: .5rem !important
  7192. }
  7193. .ms-3 {
  7194. margin-left: 1rem !important
  7195. }
  7196. .ms-4 {
  7197. margin-left: 1.5rem !important
  7198. }
  7199. .ms-5 {
  7200. margin-left: 3rem !important
  7201. }
  7202. .ms-auto {
  7203. margin-left: auto !important
  7204. }
  7205. .p-0 {
  7206. padding: 0 !important
  7207. }
  7208. .p-1 {
  7209. padding: .25rem !important
  7210. }
  7211. .p-2 {
  7212. padding: .5rem !important
  7213. }
  7214. .p-3 {
  7215. padding: 1rem !important
  7216. }
  7217. .p-4 {
  7218. padding: 1.5rem !important
  7219. }
  7220. .p-5 {
  7221. padding: 3rem !important
  7222. }
  7223. .px-0 {
  7224. padding-right: 0 !important;
  7225. padding-left: 0 !important
  7226. }
  7227. .px-1 {
  7228. padding-right: .25rem !important;
  7229. padding-left: .25rem !important
  7230. }
  7231. .px-2 {
  7232. padding-right: .5rem !important;
  7233. padding-left: .5rem !important
  7234. }
  7235. .px-3 {
  7236. padding-right: 1rem !important;
  7237. padding-left: 1rem !important
  7238. }
  7239. .px-4 {
  7240. padding-right: 1.5rem !important;
  7241. padding-left: 1.5rem !important
  7242. }
  7243. .px-5 {
  7244. padding-right: 3rem !important;
  7245. padding-left: 3rem !important
  7246. }
  7247. .py-0 {
  7248. padding-top: 0 !important;
  7249. padding-bottom: 0 !important
  7250. }
  7251. .py-1 {
  7252. padding-top: .25rem !important;
  7253. padding-bottom: .25rem !important
  7254. }
  7255. .py-2 {
  7256. padding-top: .5rem !important;
  7257. padding-bottom: .5rem !important
  7258. }
  7259. .py-3 {
  7260. padding-top: 1rem !important;
  7261. padding-bottom: 1rem !important
  7262. }
  7263. .py-4 {
  7264. padding-top: 1.5rem !important;
  7265. padding-bottom: 1.5rem !important
  7266. }
  7267. .py-5 {
  7268. padding-top: 3rem !important;
  7269. padding-bottom: 3rem !important
  7270. }
  7271. .pt-0 {
  7272. padding-top: 0 !important
  7273. }
  7274. .pt-1 {
  7275. padding-top: .25rem !important
  7276. }
  7277. .pt-2 {
  7278. padding-top: .5rem !important
  7279. }
  7280. .pt-3 {
  7281. padding-top: 1rem !important
  7282. }
  7283. .pt-4 {
  7284. padding-top: 1.5rem !important
  7285. }
  7286. .pt-5 {
  7287. padding-top: 3rem !important
  7288. }
  7289. .pe-0 {
  7290. padding-right: 0 !important
  7291. }
  7292. .pe-1 {
  7293. padding-right: .25rem !important
  7294. }
  7295. .pe-2 {
  7296. padding-right: .5rem !important
  7297. }
  7298. .pe-3 {
  7299. padding-right: 1rem !important
  7300. }
  7301. .pe-4 {
  7302. padding-right: 1.5rem !important
  7303. }
  7304. .pe-5 {
  7305. padding-right: 3rem !important
  7306. }
  7307. .pb-0 {
  7308. padding-bottom: 0 !important
  7309. }
  7310. .pb-1 {
  7311. padding-bottom: .25rem !important
  7312. }
  7313. .pb-2 {
  7314. padding-bottom: .5rem !important
  7315. }
  7316. .pb-3 {
  7317. padding-bottom: 1rem !important
  7318. }
  7319. .pb-4 {
  7320. padding-bottom: 1.5rem !important
  7321. }
  7322. .pb-5 {
  7323. padding-bottom: 3rem !important
  7324. }
  7325. .ps-0 {
  7326. padding-left: 0 !important
  7327. }
  7328. .ps-1 {
  7329. padding-left: .25rem !important
  7330. }
  7331. .ps-2 {
  7332. padding-left: .5rem !important
  7333. }
  7334. .ps-3 {
  7335. padding-left: 1rem !important
  7336. }
  7337. .ps-4 {
  7338. padding-left: 1.5rem !important
  7339. }
  7340. .ps-5 {
  7341. padding-left: 3rem !important
  7342. }
  7343. .gap-0 {
  7344. gap: 0 !important
  7345. }
  7346. .gap-1 {
  7347. gap: .25rem !important
  7348. }
  7349. .gap-2 {
  7350. gap: .5rem !important
  7351. }
  7352. .gap-3 {
  7353. gap: 1rem !important
  7354. }
  7355. .gap-4 {
  7356. gap: 1.5rem !important
  7357. }
  7358. .gap-5 {
  7359. gap: 3rem !important
  7360. }
  7361. .row-gap-0 {
  7362. row-gap: 0 !important
  7363. }
  7364. .row-gap-1 {
  7365. row-gap: .25rem !important
  7366. }
  7367. .row-gap-2 {
  7368. row-gap: .5rem !important
  7369. }
  7370. .row-gap-3 {
  7371. row-gap: 1rem !important
  7372. }
  7373. .row-gap-4 {
  7374. row-gap: 1.5rem !important
  7375. }
  7376. .row-gap-5 {
  7377. row-gap: 3rem !important
  7378. }
  7379. .column-gap-0 {
  7380. -moz-column-gap: 0 !important;
  7381. column-gap: 0 !important
  7382. }
  7383. .column-gap-1 {
  7384. -moz-column-gap: 0.25rem !important;
  7385. column-gap: .25rem !important
  7386. }
  7387. .column-gap-2 {
  7388. -moz-column-gap: 0.5rem !important;
  7389. column-gap: .5rem !important
  7390. }
  7391. .column-gap-3 {
  7392. -moz-column-gap: 1rem !important;
  7393. column-gap: 1rem !important
  7394. }
  7395. .column-gap-4 {
  7396. -moz-column-gap: 1.5rem !important;
  7397. column-gap: 1.5rem !important
  7398. }
  7399. .column-gap-5 {
  7400. -moz-column-gap: 3rem !important;
  7401. column-gap: 3rem !important
  7402. }
  7403. .font-monospace {
  7404. font-family: var(--bs-font-monospace) !important
  7405. }
  7406. .fs-1 {
  7407. font-size: calc(1.375rem + 1.5vw) !important
  7408. }
  7409. .fs-2 {
  7410. font-size: calc(1.325rem + .9vw) !important
  7411. }
  7412. .fs-3 {
  7413. font-size: calc(1.3rem + .6vw) !important
  7414. }
  7415. .fs-4 {
  7416. font-size: calc(1.275rem + .3vw) !important
  7417. }
  7418. .fs-5 {
  7419. font-size: 1.25rem !important
  7420. }
  7421. .fs-6 {
  7422. font-size: 1rem !important
  7423. }
  7424. .fst-italic {
  7425. font-style: italic !important
  7426. }
  7427. .fst-normal {
  7428. font-style: normal !important
  7429. }
  7430. .fw-lighter {
  7431. font-weight: lighter !important
  7432. }
  7433. .fw-light {
  7434. font-weight: 300 !important
  7435. }
  7436. .fw-normal {
  7437. font-weight: 400 !important
  7438. }
  7439. .fw-medium {
  7440. font-weight: 500 !important
  7441. }
  7442. .fw-semibold {
  7443. font-weight: 600 !important
  7444. }
  7445. .fw-bold {
  7446. font-weight: 700 !important
  7447. }
  7448. .fw-bolder {
  7449. font-weight: bolder !important
  7450. }
  7451. .lh-1 {
  7452. line-height: 1 !important
  7453. }
  7454. .lh-sm {
  7455. line-height: 1.25 !important
  7456. }
  7457. .lh-base {
  7458. line-height: 1.5 !important
  7459. }
  7460. .lh-lg {
  7461. line-height: 2 !important
  7462. }
  7463. .text-start {
  7464. text-align: left !important
  7465. }
  7466. .text-end {
  7467. text-align: right !important
  7468. }
  7469. .text-center {
  7470. text-align: center !important
  7471. }
  7472. .text-decoration-none {
  7473. text-decoration: none !important
  7474. }
  7475. .text-decoration-underline {
  7476. text-decoration: underline !important
  7477. }
  7478. .text-decoration-line-through {
  7479. text-decoration: line-through !important
  7480. }
  7481. .text-lowercase {
  7482. text-transform: lowercase !important
  7483. }
  7484. .text-uppercase {
  7485. text-transform: uppercase !important
  7486. }
  7487. .text-capitalize {
  7488. text-transform: capitalize !important
  7489. }
  7490. .text-wrap {
  7491. white-space: normal !important
  7492. }
  7493. .text-nowrap {
  7494. white-space: nowrap !important
  7495. }
  7496. .text-break {
  7497. word-wrap: break-word !important;
  7498. word-break: break-word !important
  7499. }
  7500. .text-primary {
  7501. --bs-text-opacity: 1;
  7502. color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important
  7503. }
  7504. .text-secondary {
  7505. --bs-text-opacity: 1;
  7506. color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important
  7507. }
  7508. .text-success {
  7509. --bs-text-opacity: 1;
  7510. color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important
  7511. }
  7512. .text-info {
  7513. --bs-text-opacity: 1;
  7514. color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important
  7515. }
  7516. .text-warning {
  7517. --bs-text-opacity: 1;
  7518. color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important
  7519. }
  7520. .text-danger {
  7521. --bs-text-opacity: 1;
  7522. color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important
  7523. }
  7524. .text-light {
  7525. --bs-text-opacity: 1;
  7526. color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important
  7527. }
  7528. .text-dark {
  7529. --bs-text-opacity: 1;
  7530. color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important
  7531. }
  7532. .text-black {
  7533. --bs-text-opacity: 1;
  7534. color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important
  7535. }
  7536. .text-white {
  7537. --bs-text-opacity: 1;
  7538. color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important
  7539. }
  7540. .text-body {
  7541. --bs-text-opacity: 1;
  7542. color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important
  7543. }
  7544. .text-muted {
  7545. --bs-text-opacity: 1;
  7546. color: var(--bs-secondary-color) !important
  7547. }
  7548. .text-black-50 {
  7549. --bs-text-opacity: 1;
  7550. color: rgba(0, 0, 0, .5) !important
  7551. }
  7552. .text-white-50 {
  7553. --bs-text-opacity: 1;
  7554. color: rgba(255, 255, 255, .5) !important
  7555. }
  7556. .text-body-secondary {
  7557. --bs-text-opacity: 1;
  7558. color: var(--bs-secondary-color) !important
  7559. }
  7560. .text-body-tertiary {
  7561. --bs-text-opacity: 1;
  7562. color: var(--bs-tertiary-color) !important
  7563. }
  7564. .text-body-emphasis {
  7565. --bs-text-opacity: 1;
  7566. color: var(--bs-emphasis-color) !important
  7567. }
  7568. .text-reset {
  7569. --bs-text-opacity: 1;
  7570. color: inherit !important
  7571. }
  7572. .text-opacity-25 {
  7573. --bs-text-opacity: 0.25
  7574. }
  7575. .text-opacity-50 {
  7576. --bs-text-opacity: 0.5
  7577. }
  7578. .text-opacity-75 {
  7579. --bs-text-opacity: 0.75
  7580. }
  7581. .text-opacity-100 {
  7582. --bs-text-opacity: 1
  7583. }
  7584. .text-primary-emphasis {
  7585. color: var(--bs-primary-text-emphasis) !important
  7586. }
  7587. .text-secondary-emphasis {
  7588. color: var(--bs-secondary-text-emphasis) !important
  7589. }
  7590. .text-success-emphasis {
  7591. color: var(--bs-success-text-emphasis) !important
  7592. }
  7593. .text-info-emphasis {
  7594. color: var(--bs-info-text-emphasis) !important
  7595. }
  7596. .text-warning-emphasis {
  7597. color: var(--bs-warning-text-emphasis) !important
  7598. }
  7599. .text-danger-emphasis {
  7600. color: var(--bs-danger-text-emphasis) !important
  7601. }
  7602. .text-light-emphasis {
  7603. color: var(--bs-light-text-emphasis) !important
  7604. }
  7605. .text-dark-emphasis {
  7606. color: var(--bs-dark-text-emphasis) !important
  7607. }
  7608. .link-opacity-10 {
  7609. --bs-link-opacity: 0.1
  7610. }
  7611. .link-opacity-10-hover:hover {
  7612. --bs-link-opacity: 0.1
  7613. }
  7614. .link-opacity-25 {
  7615. --bs-link-opacity: 0.25
  7616. }
  7617. .link-opacity-25-hover:hover {
  7618. --bs-link-opacity: 0.25
  7619. }
  7620. .link-opacity-50 {
  7621. --bs-link-opacity: 0.5
  7622. }
  7623. .link-opacity-50-hover:hover {
  7624. --bs-link-opacity: 0.5
  7625. }
  7626. .link-opacity-75 {
  7627. --bs-link-opacity: 0.75
  7628. }
  7629. .link-opacity-75-hover:hover {
  7630. --bs-link-opacity: 0.75
  7631. }
  7632. .link-opacity-100 {
  7633. --bs-link-opacity: 1
  7634. }
  7635. .link-opacity-100-hover:hover {
  7636. --bs-link-opacity: 1
  7637. }
  7638. .link-offset-1 {
  7639. text-underline-offset: 0.125em !important
  7640. }
  7641. .link-offset-1-hover:hover {
  7642. text-underline-offset: 0.125em !important
  7643. }
  7644. .link-offset-2 {
  7645. text-underline-offset: 0.25em !important
  7646. }
  7647. .link-offset-2-hover:hover {
  7648. text-underline-offset: 0.25em !important
  7649. }
  7650. .link-offset-3 {
  7651. text-underline-offset: 0.375em !important
  7652. }
  7653. .link-offset-3-hover:hover {
  7654. text-underline-offset: 0.375em !important
  7655. }
  7656. .link-underline-primary {
  7657. --bs-link-underline-opacity: 1;
  7658. -webkit-text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
  7659. text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important
  7660. }
  7661. .link-underline-secondary {
  7662. --bs-link-underline-opacity: 1;
  7663. -webkit-text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
  7664. text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important
  7665. }
  7666. .link-underline-success {
  7667. --bs-link-underline-opacity: 1;
  7668. -webkit-text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
  7669. text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important
  7670. }
  7671. .link-underline-info {
  7672. --bs-link-underline-opacity: 1;
  7673. -webkit-text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
  7674. text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important
  7675. }
  7676. .link-underline-warning {
  7677. --bs-link-underline-opacity: 1;
  7678. -webkit-text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
  7679. text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important
  7680. }
  7681. .link-underline-danger {
  7682. --bs-link-underline-opacity: 1;
  7683. -webkit-text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
  7684. text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important
  7685. }
  7686. .link-underline-light {
  7687. --bs-link-underline-opacity: 1;
  7688. -webkit-text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
  7689. text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important
  7690. }
  7691. .link-underline-dark {
  7692. --bs-link-underline-opacity: 1;
  7693. -webkit-text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
  7694. text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important
  7695. }
  7696. .link-underline {
  7697. --bs-link-underline-opacity: 1;
  7698. -webkit-text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
  7699. text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important
  7700. }
  7701. .link-underline-opacity-0 {
  7702. --bs-link-underline-opacity: 0
  7703. }
  7704. .link-underline-opacity-0-hover:hover {
  7705. --bs-link-underline-opacity: 0
  7706. }
  7707. .link-underline-opacity-10 {
  7708. --bs-link-underline-opacity: 0.1
  7709. }
  7710. .link-underline-opacity-10-hover:hover {
  7711. --bs-link-underline-opacity: 0.1
  7712. }
  7713. .link-underline-opacity-25 {
  7714. --bs-link-underline-opacity: 0.25
  7715. }
  7716. .link-underline-opacity-25-hover:hover {
  7717. --bs-link-underline-opacity: 0.25
  7718. }
  7719. .link-underline-opacity-50 {
  7720. --bs-link-underline-opacity: 0.5
  7721. }
  7722. .link-underline-opacity-50-hover:hover {
  7723. --bs-link-underline-opacity: 0.5
  7724. }
  7725. .link-underline-opacity-75 {
  7726. --bs-link-underline-opacity: 0.75
  7727. }
  7728. .link-underline-opacity-75-hover:hover {
  7729. --bs-link-underline-opacity: 0.75
  7730. }
  7731. .link-underline-opacity-100 {
  7732. --bs-link-underline-opacity: 1
  7733. }
  7734. .link-underline-opacity-100-hover:hover {
  7735. --bs-link-underline-opacity: 1
  7736. }
  7737. .bg-primary {
  7738. --bs-bg-opacity: 1;
  7739. background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important
  7740. }
  7741. .bg-secondary {
  7742. --bs-bg-opacity: 1;
  7743. background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important
  7744. }
  7745. .bg-success {
  7746. --bs-bg-opacity: 1;
  7747. background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important
  7748. }
  7749. .bg-info {
  7750. --bs-bg-opacity: 1;
  7751. background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important
  7752. }
  7753. .bg-warning {
  7754. --bs-bg-opacity: 1;
  7755. background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important
  7756. }
  7757. .bg-danger {
  7758. --bs-bg-opacity: 1;
  7759. background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important
  7760. }
  7761. .bg-light {
  7762. --bs-bg-opacity: 1;
  7763. background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important
  7764. }
  7765. .bg-dark {
  7766. --bs-bg-opacity: 1;
  7767. background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important
  7768. }
  7769. .bg-black {
  7770. --bs-bg-opacity: 1;
  7771. background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important
  7772. }
  7773. .bg-white {
  7774. --bs-bg-opacity: 1;
  7775. background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important
  7776. }
  7777. .bg-body {
  7778. --bs-bg-opacity: 1;
  7779. background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important
  7780. }
  7781. .bg-transparent {
  7782. --bs-bg-opacity: 1;
  7783. background-color: transparent !important
  7784. }
  7785. .bg-body-secondary {
  7786. --bs-bg-opacity: 1;
  7787. background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important
  7788. }
  7789. .bg-body-tertiary {
  7790. --bs-bg-opacity: 1;
  7791. background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important
  7792. }
  7793. .bg-opacity-10 {
  7794. --bs-bg-opacity: 0.1
  7795. }
  7796. .bg-opacity-25 {
  7797. --bs-bg-opacity: 0.25
  7798. }
  7799. .bg-opacity-50 {
  7800. --bs-bg-opacity: 0.5
  7801. }
  7802. .bg-opacity-75 {
  7803. --bs-bg-opacity: 0.75
  7804. }
  7805. .bg-opacity-100 {
  7806. --bs-bg-opacity: 1
  7807. }
  7808. .bg-primary-subtle {
  7809. background-color: var(--bs-primary-bg-subtle) !important
  7810. }
  7811. .bg-secondary-subtle {
  7812. background-color: var(--bs-secondary-bg-subtle) !important
  7813. }
  7814. .bg-success-subtle {
  7815. background-color: var(--bs-success-bg-subtle) !important
  7816. }
  7817. .bg-info-subtle {
  7818. background-color: var(--bs-info-bg-subtle) !important
  7819. }
  7820. .bg-warning-subtle {
  7821. background-color: var(--bs-warning-bg-subtle) !important
  7822. }
  7823. .bg-danger-subtle {
  7824. background-color: var(--bs-danger-bg-subtle) !important
  7825. }
  7826. .bg-light-subtle {
  7827. background-color: var(--bs-light-bg-subtle) !important
  7828. }
  7829. .bg-dark-subtle {
  7830. background-color: var(--bs-dark-bg-subtle) !important
  7831. }
  7832. .bg-gradient {
  7833. background-image: var(--bs-gradient) !important
  7834. }
  7835. .user-select-all {
  7836. -webkit-user-select: all !important;
  7837. -moz-user-select: all !important;
  7838. user-select: all !important
  7839. }
  7840. .user-select-auto {
  7841. -webkit-user-select: auto !important;
  7842. -moz-user-select: auto !important;
  7843. user-select: auto !important
  7844. }
  7845. .user-select-none {
  7846. -webkit-user-select: none !important;
  7847. -moz-user-select: none !important;
  7848. user-select: none !important
  7849. }
  7850. .pe-none {
  7851. pointer-events: none !important
  7852. }
  7853. .pe-auto {
  7854. pointer-events: auto !important
  7855. }
  7856. .rounded {
  7857. border-radius: var(--bs-border-radius) !important
  7858. }
  7859. .rounded-0 {
  7860. border-radius: 0 !important
  7861. }
  7862. .rounded-1 {
  7863. border-radius: var(--bs-border-radius-sm) !important
  7864. }
  7865. .rounded-2 {
  7866. border-radius: var(--bs-border-radius) !important
  7867. }
  7868. .rounded-3 {
  7869. border-radius: var(--bs-border-radius-lg) !important
  7870. }
  7871. .rounded-4 {
  7872. border-radius: var(--bs-border-radius-xl) !important
  7873. }
  7874. .rounded-5 {
  7875. border-radius: var(--bs-border-radius-xxl) !important
  7876. }
  7877. .rounded-circle {
  7878. border-radius: 50% !important
  7879. }
  7880. .rounded-pill {
  7881. border-radius: var(--bs-border-radius-pill) !important
  7882. }
  7883. .rounded-top {
  7884. border-top-left-radius: var(--bs-border-radius) !important;
  7885. border-top-right-radius: var(--bs-border-radius) !important
  7886. }
  7887. .rounded-top-0 {
  7888. border-top-left-radius: 0 !important;
  7889. border-top-right-radius: 0 !important
  7890. }
  7891. .rounded-top-1 {
  7892. border-top-left-radius: var(--bs-border-radius-sm) !important;
  7893. border-top-right-radius: var(--bs-border-radius-sm) !important
  7894. }
  7895. .rounded-top-2 {
  7896. border-top-left-radius: var(--bs-border-radius) !important;
  7897. border-top-right-radius: var(--bs-border-radius) !important
  7898. }
  7899. .rounded-top-3 {
  7900. border-top-left-radius: var(--bs-border-radius-lg) !important;
  7901. border-top-right-radius: var(--bs-border-radius-lg) !important
  7902. }
  7903. .rounded-top-4 {
  7904. border-top-left-radius: var(--bs-border-radius-xl) !important;
  7905. border-top-right-radius: var(--bs-border-radius-xl) !important
  7906. }
  7907. .rounded-top-5 {
  7908. border-top-left-radius: var(--bs-border-radius-xxl) !important;
  7909. border-top-right-radius: var(--bs-border-radius-xxl) !important
  7910. }
  7911. .rounded-top-circle {
  7912. border-top-left-radius: 50% !important;
  7913. border-top-right-radius: 50% !important
  7914. }
  7915. .rounded-top-pill {
  7916. border-top-left-radius: var(--bs-border-radius-pill) !important;
  7917. border-top-right-radius: var(--bs-border-radius-pill) !important
  7918. }
  7919. .rounded-end {
  7920. border-top-right-radius: var(--bs-border-radius) !important;
  7921. border-bottom-right-radius: var(--bs-border-radius) !important
  7922. }
  7923. .rounded-end-0 {
  7924. border-top-right-radius: 0 !important;
  7925. border-bottom-right-radius: 0 !important
  7926. }
  7927. .rounded-end-1 {
  7928. border-top-right-radius: var(--bs-border-radius-sm) !important;
  7929. border-bottom-right-radius: var(--bs-border-radius-sm) !important
  7930. }
  7931. .rounded-end-2 {
  7932. border-top-right-radius: var(--bs-border-radius) !important;
  7933. border-bottom-right-radius: var(--bs-border-radius) !important
  7934. }
  7935. .rounded-end-3 {
  7936. border-top-right-radius: var(--bs-border-radius-lg) !important;
  7937. border-bottom-right-radius: var(--bs-border-radius-lg) !important
  7938. }
  7939. .rounded-end-4 {
  7940. border-top-right-radius: var(--bs-border-radius-xl) !important;
  7941. border-bottom-right-radius: var(--bs-border-radius-xl) !important
  7942. }
  7943. .rounded-end-5 {
  7944. border-top-right-radius: var(--bs-border-radius-xxl) !important;
  7945. border-bottom-right-radius: var(--bs-border-radius-xxl) !important
  7946. }
  7947. .rounded-end-circle {
  7948. border-top-right-radius: 50% !important;
  7949. border-bottom-right-radius: 50% !important
  7950. }
  7951. .rounded-end-pill {
  7952. border-top-right-radius: var(--bs-border-radius-pill) !important;
  7953. border-bottom-right-radius: var(--bs-border-radius-pill) !important
  7954. }
  7955. .rounded-bottom {
  7956. border-bottom-right-radius: var(--bs-border-radius) !important;
  7957. border-bottom-left-radius: var(--bs-border-radius) !important
  7958. }
  7959. .rounded-bottom-0 {
  7960. border-bottom-right-radius: 0 !important;
  7961. border-bottom-left-radius: 0 !important
  7962. }
  7963. .rounded-bottom-1 {
  7964. border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  7965. border-bottom-left-radius: var(--bs-border-radius-sm) !important
  7966. }
  7967. .rounded-bottom-2 {
  7968. border-bottom-right-radius: var(--bs-border-radius) !important;
  7969. border-bottom-left-radius: var(--bs-border-radius) !important
  7970. }
  7971. .rounded-bottom-3 {
  7972. border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  7973. border-bottom-left-radius: var(--bs-border-radius-lg) !important
  7974. }
  7975. .rounded-bottom-4 {
  7976. border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  7977. border-bottom-left-radius: var(--bs-border-radius-xl) !important
  7978. }
  7979. .rounded-bottom-5 {
  7980. border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  7981. border-bottom-left-radius: var(--bs-border-radius-xxl) !important
  7982. }
  7983. .rounded-bottom-circle {
  7984. border-bottom-right-radius: 50% !important;
  7985. border-bottom-left-radius: 50% !important
  7986. }
  7987. .rounded-bottom-pill {
  7988. border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  7989. border-bottom-left-radius: var(--bs-border-radius-pill) !important
  7990. }
  7991. .rounded-start {
  7992. border-bottom-left-radius: var(--bs-border-radius) !important;
  7993. border-top-left-radius: var(--bs-border-radius) !important
  7994. }
  7995. .rounded-start-0 {
  7996. border-bottom-left-radius: 0 !important;
  7997. border-top-left-radius: 0 !important
  7998. }
  7999. .rounded-start-1 {
  8000. border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  8001. border-top-left-radius: var(--bs-border-radius-sm) !important
  8002. }
  8003. .rounded-start-2 {
  8004. border-bottom-left-radius: var(--bs-border-radius) !important;
  8005. border-top-left-radius: var(--bs-border-radius) !important
  8006. }
  8007. .rounded-start-3 {
  8008. border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  8009. border-top-left-radius: var(--bs-border-radius-lg) !important
  8010. }
  8011. .rounded-start-4 {
  8012. border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  8013. border-top-left-radius: var(--bs-border-radius-xl) !important
  8014. }
  8015. .rounded-start-5 {
  8016. border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  8017. border-top-left-radius: var(--bs-border-radius-xxl) !important
  8018. }
  8019. .rounded-start-circle {
  8020. border-bottom-left-radius: 50% !important;
  8021. border-top-left-radius: 50% !important
  8022. }
  8023. .rounded-start-pill {
  8024. border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  8025. border-top-left-radius: var(--bs-border-radius-pill) !important
  8026. }
  8027. .visible {
  8028. visibility: visible !important
  8029. }
  8030. .invisible {
  8031. visibility: hidden !important
  8032. }
  8033. .z-n1 {
  8034. z-index: -1 !important
  8035. }
  8036. .z-0 {
  8037. z-index: 0 !important
  8038. }
  8039. .z-1 {
  8040. z-index: 1 !important
  8041. }
  8042. .z-2 {
  8043. z-index: 2 !important
  8044. }
  8045. .z-3 {
  8046. z-index: 3 !important
  8047. }
  8048. @media (min-width: 576px) {
  8049. .float-sm-start {
  8050. float: left !important
  8051. }
  8052. .float-sm-end {
  8053. float: right !important
  8054. }
  8055. .float-sm-none {
  8056. float: none !important
  8057. }
  8058. .object-fit-sm-contain {
  8059. -o-object-fit: contain !important;
  8060. object-fit: contain !important
  8061. }
  8062. .object-fit-sm-cover {
  8063. -o-object-fit: cover !important;
  8064. object-fit: cover !important
  8065. }
  8066. .object-fit-sm-fill {
  8067. -o-object-fit: fill !important;
  8068. object-fit: fill !important
  8069. }
  8070. .object-fit-sm-scale {
  8071. -o-object-fit: scale-down !important;
  8072. object-fit: scale-down !important
  8073. }
  8074. .object-fit-sm-none {
  8075. -o-object-fit: none !important;
  8076. object-fit: none !important
  8077. }
  8078. .d-sm-inline {
  8079. display: inline !important
  8080. }
  8081. .d-sm-inline-block {
  8082. display: inline-block !important
  8083. }
  8084. .d-sm-block {
  8085. display: block !important
  8086. }
  8087. .d-sm-grid {
  8088. display: grid !important
  8089. }
  8090. .d-sm-inline-grid {
  8091. display: inline-grid !important
  8092. }
  8093. .d-sm-table {
  8094. display: table !important
  8095. }
  8096. .d-sm-table-row {
  8097. display: table-row !important
  8098. }
  8099. .d-sm-table-cell {
  8100. display: table-cell !important
  8101. }
  8102. .d-sm-flex {
  8103. display: flex !important
  8104. }
  8105. .d-sm-inline-flex {
  8106. display: inline-flex !important
  8107. }
  8108. .d-sm-none {
  8109. display: none !important
  8110. }
  8111. .flex-sm-fill {
  8112. flex: 1 1 auto !important
  8113. }
  8114. .flex-sm-row {
  8115. flex-direction: row !important
  8116. }
  8117. .flex-sm-column {
  8118. flex-direction: column !important
  8119. }
  8120. .flex-sm-row-reverse {
  8121. flex-direction: row-reverse !important
  8122. }
  8123. .flex-sm-column-reverse {
  8124. flex-direction: column-reverse !important
  8125. }
  8126. .flex-sm-grow-0 {
  8127. flex-grow: 0 !important
  8128. }
  8129. .flex-sm-grow-1 {
  8130. flex-grow: 1 !important
  8131. }
  8132. .flex-sm-shrink-0 {
  8133. flex-shrink: 0 !important
  8134. }
  8135. .flex-sm-shrink-1 {
  8136. flex-shrink: 1 !important
  8137. }
  8138. .flex-sm-wrap {
  8139. flex-wrap: wrap !important
  8140. }
  8141. .flex-sm-nowrap {
  8142. flex-wrap: nowrap !important
  8143. }
  8144. .flex-sm-wrap-reverse {
  8145. flex-wrap: wrap-reverse !important
  8146. }
  8147. .justify-content-sm-start {
  8148. justify-content: flex-start !important
  8149. }
  8150. .justify-content-sm-end {
  8151. justify-content: flex-end !important
  8152. }
  8153. .justify-content-sm-center {
  8154. justify-content: center !important
  8155. }
  8156. .justify-content-sm-between {
  8157. justify-content: space-between !important
  8158. }
  8159. .justify-content-sm-around {
  8160. justify-content: space-around !important
  8161. }
  8162. .justify-content-sm-evenly {
  8163. justify-content: space-evenly !important
  8164. }
  8165. .align-items-sm-start {
  8166. align-items: flex-start !important
  8167. }
  8168. .align-items-sm-end {
  8169. align-items: flex-end !important
  8170. }
  8171. .align-items-sm-center {
  8172. align-items: center !important
  8173. }
  8174. .align-items-sm-baseline {
  8175. align-items: baseline !important
  8176. }
  8177. .align-items-sm-stretch {
  8178. align-items: stretch !important
  8179. }
  8180. .align-content-sm-start {
  8181. align-content: flex-start !important
  8182. }
  8183. .align-content-sm-end {
  8184. align-content: flex-end !important
  8185. }
  8186. .align-content-sm-center {
  8187. align-content: center !important
  8188. }
  8189. .align-content-sm-between {
  8190. align-content: space-between !important
  8191. }
  8192. .align-content-sm-around {
  8193. align-content: space-around !important
  8194. }
  8195. .align-content-sm-stretch {
  8196. align-content: stretch !important
  8197. }
  8198. .align-self-sm-auto {
  8199. align-self: auto !important
  8200. }
  8201. .align-self-sm-start {
  8202. align-self: flex-start !important
  8203. }
  8204. .align-self-sm-end {
  8205. align-self: flex-end !important
  8206. }
  8207. .align-self-sm-center {
  8208. align-self: center !important
  8209. }
  8210. .align-self-sm-baseline {
  8211. align-self: baseline !important
  8212. }
  8213. .align-self-sm-stretch {
  8214. align-self: stretch !important
  8215. }
  8216. .order-sm-first {
  8217. order: -1 !important
  8218. }
  8219. .order-sm-0 {
  8220. order: 0 !important
  8221. }
  8222. .order-sm-1 {
  8223. order: 1 !important
  8224. }
  8225. .order-sm-2 {
  8226. order: 2 !important
  8227. }
  8228. .order-sm-3 {
  8229. order: 3 !important
  8230. }
  8231. .order-sm-4 {
  8232. order: 4 !important
  8233. }
  8234. .order-sm-5 {
  8235. order: 5 !important
  8236. }
  8237. .order-sm-last {
  8238. order: 6 !important
  8239. }
  8240. .m-sm-0 {
  8241. margin: 0 !important
  8242. }
  8243. .m-sm-1 {
  8244. margin: .25rem !important
  8245. }
  8246. .m-sm-2 {
  8247. margin: .5rem !important
  8248. }
  8249. .m-sm-3 {
  8250. margin: 1rem !important
  8251. }
  8252. .m-sm-4 {
  8253. margin: 1.5rem !important
  8254. }
  8255. .m-sm-5 {
  8256. margin: 3rem !important
  8257. }
  8258. .m-sm-auto {
  8259. margin: auto !important
  8260. }
  8261. .mx-sm-0 {
  8262. margin-right: 0 !important;
  8263. margin-left: 0 !important
  8264. }
  8265. .mx-sm-1 {
  8266. margin-right: .25rem !important;
  8267. margin-left: .25rem !important
  8268. }
  8269. .mx-sm-2 {
  8270. margin-right: .5rem !important;
  8271. margin-left: .5rem !important
  8272. }
  8273. .mx-sm-3 {
  8274. margin-right: 1rem !important;
  8275. margin-left: 1rem !important
  8276. }
  8277. .mx-sm-4 {
  8278. margin-right: 1.5rem !important;
  8279. margin-left: 1.5rem !important
  8280. }
  8281. .mx-sm-5 {
  8282. margin-right: 3rem !important;
  8283. margin-left: 3rem !important
  8284. }
  8285. .mx-sm-auto {
  8286. margin-right: auto !important;
  8287. margin-left: auto !important
  8288. }
  8289. .my-sm-0 {
  8290. margin-top: 0 !important;
  8291. margin-bottom: 0 !important
  8292. }
  8293. .my-sm-1 {
  8294. margin-top: .25rem !important;
  8295. margin-bottom: .25rem !important
  8296. }
  8297. .my-sm-2 {
  8298. margin-top: .5rem !important;
  8299. margin-bottom: .5rem !important
  8300. }
  8301. .my-sm-3 {
  8302. margin-top: 1rem !important;
  8303. margin-bottom: 1rem !important
  8304. }
  8305. .my-sm-4 {
  8306. margin-top: 1.5rem !important;
  8307. margin-bottom: 1.5rem !important
  8308. }
  8309. .my-sm-5 {
  8310. margin-top: 3rem !important;
  8311. margin-bottom: 3rem !important
  8312. }
  8313. .my-sm-auto {
  8314. margin-top: auto !important;
  8315. margin-bottom: auto !important
  8316. }
  8317. .mt-sm-0 {
  8318. margin-top: 0 !important
  8319. }
  8320. .mt-sm-1 {
  8321. margin-top: .25rem !important
  8322. }
  8323. .mt-sm-2 {
  8324. margin-top: .5rem !important
  8325. }
  8326. .mt-sm-3 {
  8327. margin-top: 1rem !important
  8328. }
  8329. .mt-sm-4 {
  8330. margin-top: 1.5rem !important
  8331. }
  8332. .mt-sm-5 {
  8333. margin-top: 3rem !important
  8334. }
  8335. .mt-sm-auto {
  8336. margin-top: auto !important
  8337. }
  8338. .me-sm-0 {
  8339. margin-right: 0 !important
  8340. }
  8341. .me-sm-1 {
  8342. margin-right: .25rem !important
  8343. }
  8344. .me-sm-2 {
  8345. margin-right: .5rem !important
  8346. }
  8347. .me-sm-3 {
  8348. margin-right: 1rem !important
  8349. }
  8350. .me-sm-4 {
  8351. margin-right: 1.5rem !important
  8352. }
  8353. .me-sm-5 {
  8354. margin-right: 3rem !important
  8355. }
  8356. .me-sm-auto {
  8357. margin-right: auto !important
  8358. }
  8359. .mb-sm-0 {
  8360. margin-bottom: 0 !important
  8361. }
  8362. .mb-sm-1 {
  8363. margin-bottom: .25rem !important
  8364. }
  8365. .mb-sm-2 {
  8366. margin-bottom: .5rem !important
  8367. }
  8368. .mb-sm-3 {
  8369. margin-bottom: 1rem !important
  8370. }
  8371. .mb-sm-4 {
  8372. margin-bottom: 1.5rem !important
  8373. }
  8374. .mb-sm-5 {
  8375. margin-bottom: 3rem !important
  8376. }
  8377. .mb-sm-auto {
  8378. margin-bottom: auto !important
  8379. }
  8380. .ms-sm-0 {
  8381. margin-left: 0 !important
  8382. }
  8383. .ms-sm-1 {
  8384. margin-left: .25rem !important
  8385. }
  8386. .ms-sm-2 {
  8387. margin-left: .5rem !important
  8388. }
  8389. .ms-sm-3 {
  8390. margin-left: 1rem !important
  8391. }
  8392. .ms-sm-4 {
  8393. margin-left: 1.5rem !important
  8394. }
  8395. .ms-sm-5 {
  8396. margin-left: 3rem !important
  8397. }
  8398. .ms-sm-auto {
  8399. margin-left: auto !important
  8400. }
  8401. .p-sm-0 {
  8402. padding: 0 !important
  8403. }
  8404. .p-sm-1 {
  8405. padding: .25rem !important
  8406. }
  8407. .p-sm-2 {
  8408. padding: .5rem !important
  8409. }
  8410. .p-sm-3 {
  8411. padding: 1rem !important
  8412. }
  8413. .p-sm-4 {
  8414. padding: 1.5rem !important
  8415. }
  8416. .p-sm-5 {
  8417. padding: 3rem !important
  8418. }
  8419. .px-sm-0 {
  8420. padding-right: 0 !important;
  8421. padding-left: 0 !important
  8422. }
  8423. .px-sm-1 {
  8424. padding-right: .25rem !important;
  8425. padding-left: .25rem !important
  8426. }
  8427. .px-sm-2 {
  8428. padding-right: .5rem !important;
  8429. padding-left: .5rem !important
  8430. }
  8431. .px-sm-3 {
  8432. padding-right: 1rem !important;
  8433. padding-left: 1rem !important
  8434. }
  8435. .px-sm-4 {
  8436. padding-right: 1.5rem !important;
  8437. padding-left: 1.5rem !important
  8438. }
  8439. .px-sm-5 {
  8440. padding-right: 3rem !important;
  8441. padding-left: 3rem !important
  8442. }
  8443. .py-sm-0 {
  8444. padding-top: 0 !important;
  8445. padding-bottom: 0 !important
  8446. }
  8447. .py-sm-1 {
  8448. padding-top: .25rem !important;
  8449. padding-bottom: .25rem !important
  8450. }
  8451. .py-sm-2 {
  8452. padding-top: .5rem !important;
  8453. padding-bottom: .5rem !important
  8454. }
  8455. .py-sm-3 {
  8456. padding-top: 1rem !important;
  8457. padding-bottom: 1rem !important
  8458. }
  8459. .py-sm-4 {
  8460. padding-top: 1.5rem !important;
  8461. padding-bottom: 1.5rem !important
  8462. }
  8463. .py-sm-5 {
  8464. padding-top: 3rem !important;
  8465. padding-bottom: 3rem !important
  8466. }
  8467. .pt-sm-0 {
  8468. padding-top: 0 !important
  8469. }
  8470. .pt-sm-1 {
  8471. padding-top: .25rem !important
  8472. }
  8473. .pt-sm-2 {
  8474. padding-top: .5rem !important
  8475. }
  8476. .pt-sm-3 {
  8477. padding-top: 1rem !important
  8478. }
  8479. .pt-sm-4 {
  8480. padding-top: 1.5rem !important
  8481. }
  8482. .pt-sm-5 {
  8483. padding-top: 3rem !important
  8484. }
  8485. .pe-sm-0 {
  8486. padding-right: 0 !important
  8487. }
  8488. .pe-sm-1 {
  8489. padding-right: .25rem !important
  8490. }
  8491. .pe-sm-2 {
  8492. padding-right: .5rem !important
  8493. }
  8494. .pe-sm-3 {
  8495. padding-right: 1rem !important
  8496. }
  8497. .pe-sm-4 {
  8498. padding-right: 1.5rem !important
  8499. }
  8500. .pe-sm-5 {
  8501. padding-right: 3rem !important
  8502. }
  8503. .pb-sm-0 {
  8504. padding-bottom: 0 !important
  8505. }
  8506. .pb-sm-1 {
  8507. padding-bottom: .25rem !important
  8508. }
  8509. .pb-sm-2 {
  8510. padding-bottom: .5rem !important
  8511. }
  8512. .pb-sm-3 {
  8513. padding-bottom: 1rem !important
  8514. }
  8515. .pb-sm-4 {
  8516. padding-bottom: 1.5rem !important
  8517. }
  8518. .pb-sm-5 {
  8519. padding-bottom: 3rem !important
  8520. }
  8521. .ps-sm-0 {
  8522. padding-left: 0 !important
  8523. }
  8524. .ps-sm-1 {
  8525. padding-left: .25rem !important
  8526. }
  8527. .ps-sm-2 {
  8528. padding-left: .5rem !important
  8529. }
  8530. .ps-sm-3 {
  8531. padding-left: 1rem !important
  8532. }
  8533. .ps-sm-4 {
  8534. padding-left: 1.5rem !important
  8535. }
  8536. .ps-sm-5 {
  8537. padding-left: 3rem !important
  8538. }
  8539. .gap-sm-0 {
  8540. gap: 0 !important
  8541. }
  8542. .gap-sm-1 {
  8543. gap: .25rem !important
  8544. }
  8545. .gap-sm-2 {
  8546. gap: .5rem !important
  8547. }
  8548. .gap-sm-3 {
  8549. gap: 1rem !important
  8550. }
  8551. .gap-sm-4 {
  8552. gap: 1.5rem !important
  8553. }
  8554. .gap-sm-5 {
  8555. gap: 3rem !important
  8556. }
  8557. .row-gap-sm-0 {
  8558. row-gap: 0 !important
  8559. }
  8560. .row-gap-sm-1 {
  8561. row-gap: .25rem !important
  8562. }
  8563. .row-gap-sm-2 {
  8564. row-gap: .5rem !important
  8565. }
  8566. .row-gap-sm-3 {
  8567. row-gap: 1rem !important
  8568. }
  8569. .row-gap-sm-4 {
  8570. row-gap: 1.5rem !important
  8571. }
  8572. .row-gap-sm-5 {
  8573. row-gap: 3rem !important
  8574. }
  8575. .column-gap-sm-0 {
  8576. -moz-column-gap: 0 !important;
  8577. column-gap: 0 !important
  8578. }
  8579. .column-gap-sm-1 {
  8580. -moz-column-gap: 0.25rem !important;
  8581. column-gap: .25rem !important
  8582. }
  8583. .column-gap-sm-2 {
  8584. -moz-column-gap: 0.5rem !important;
  8585. column-gap: .5rem !important
  8586. }
  8587. .column-gap-sm-3 {
  8588. -moz-column-gap: 1rem !important;
  8589. column-gap: 1rem !important
  8590. }
  8591. .column-gap-sm-4 {
  8592. -moz-column-gap: 1.5rem !important;
  8593. column-gap: 1.5rem !important
  8594. }
  8595. .column-gap-sm-5 {
  8596. -moz-column-gap: 3rem !important;
  8597. column-gap: 3rem !important
  8598. }
  8599. .text-sm-start {
  8600. text-align: left !important
  8601. }
  8602. .text-sm-end {
  8603. text-align: right !important
  8604. }
  8605. .text-sm-center {
  8606. text-align: center !important
  8607. }
  8608. }
  8609. @media (min-width: 768px) {
  8610. .float-md-start {
  8611. float: left !important
  8612. }
  8613. .float-md-end {
  8614. float: right !important
  8615. }
  8616. .float-md-none {
  8617. float: none !important
  8618. }
  8619. .object-fit-md-contain {
  8620. -o-object-fit: contain !important;
  8621. object-fit: contain !important
  8622. }
  8623. .object-fit-md-cover {
  8624. -o-object-fit: cover !important;
  8625. object-fit: cover !important
  8626. }
  8627. .object-fit-md-fill {
  8628. -o-object-fit: fill !important;
  8629. object-fit: fill !important
  8630. }
  8631. .object-fit-md-scale {
  8632. -o-object-fit: scale-down !important;
  8633. object-fit: scale-down !important
  8634. }
  8635. .object-fit-md-none {
  8636. -o-object-fit: none !important;
  8637. object-fit: none !important
  8638. }
  8639. .d-md-inline {
  8640. display: inline !important
  8641. }
  8642. .d-md-inline-block {
  8643. display: inline-block !important
  8644. }
  8645. .d-md-block {
  8646. display: block !important
  8647. }
  8648. .d-md-grid {
  8649. display: grid !important
  8650. }
  8651. .d-md-inline-grid {
  8652. display: inline-grid !important
  8653. }
  8654. .d-md-table {
  8655. display: table !important
  8656. }
  8657. .d-md-table-row {
  8658. display: table-row !important
  8659. }
  8660. .d-md-table-cell {
  8661. display: table-cell !important
  8662. }
  8663. .d-md-flex {
  8664. display: flex !important
  8665. }
  8666. .d-md-inline-flex {
  8667. display: inline-flex !important
  8668. }
  8669. .d-md-none {
  8670. display: none !important
  8671. }
  8672. .flex-md-fill {
  8673. flex: 1 1 auto !important
  8674. }
  8675. .flex-md-row {
  8676. flex-direction: row !important
  8677. }
  8678. .flex-md-column {
  8679. flex-direction: column !important
  8680. }
  8681. .flex-md-row-reverse {
  8682. flex-direction: row-reverse !important
  8683. }
  8684. .flex-md-column-reverse {
  8685. flex-direction: column-reverse !important
  8686. }
  8687. .flex-md-grow-0 {
  8688. flex-grow: 0 !important
  8689. }
  8690. .flex-md-grow-1 {
  8691. flex-grow: 1 !important
  8692. }
  8693. .flex-md-shrink-0 {
  8694. flex-shrink: 0 !important
  8695. }
  8696. .flex-md-shrink-1 {
  8697. flex-shrink: 1 !important
  8698. }
  8699. .flex-md-wrap {
  8700. flex-wrap: wrap !important
  8701. }
  8702. .flex-md-nowrap {
  8703. flex-wrap: nowrap !important
  8704. }
  8705. .flex-md-wrap-reverse {
  8706. flex-wrap: wrap-reverse !important
  8707. }
  8708. .justify-content-md-start {
  8709. justify-content: flex-start !important
  8710. }
  8711. .justify-content-md-end {
  8712. justify-content: flex-end !important
  8713. }
  8714. .justify-content-md-center {
  8715. justify-content: center !important
  8716. }
  8717. .justify-content-md-between {
  8718. justify-content: space-between !important
  8719. }
  8720. .justify-content-md-around {
  8721. justify-content: space-around !important
  8722. }
  8723. .justify-content-md-evenly {
  8724. justify-content: space-evenly !important
  8725. }
  8726. .align-items-md-start {
  8727. align-items: flex-start !important
  8728. }
  8729. .align-items-md-end {
  8730. align-items: flex-end !important
  8731. }
  8732. .align-items-md-center {
  8733. align-items: center !important
  8734. }
  8735. .align-items-md-baseline {
  8736. align-items: baseline !important
  8737. }
  8738. .align-items-md-stretch {
  8739. align-items: stretch !important
  8740. }
  8741. .align-content-md-start {
  8742. align-content: flex-start !important
  8743. }
  8744. .align-content-md-end {
  8745. align-content: flex-end !important
  8746. }
  8747. .align-content-md-center {
  8748. align-content: center !important
  8749. }
  8750. .align-content-md-between {
  8751. align-content: space-between !important
  8752. }
  8753. .align-content-md-around {
  8754. align-content: space-around !important
  8755. }
  8756. .align-content-md-stretch {
  8757. align-content: stretch !important
  8758. }
  8759. .align-self-md-auto {
  8760. align-self: auto !important
  8761. }
  8762. .align-self-md-start {
  8763. align-self: flex-start !important
  8764. }
  8765. .align-self-md-end {
  8766. align-self: flex-end !important
  8767. }
  8768. .align-self-md-center {
  8769. align-self: center !important
  8770. }
  8771. .align-self-md-baseline {
  8772. align-self: baseline !important
  8773. }
  8774. .align-self-md-stretch {
  8775. align-self: stretch !important
  8776. }
  8777. .order-md-first {
  8778. order: -1 !important
  8779. }
  8780. .order-md-0 {
  8781. order: 0 !important
  8782. }
  8783. .order-md-1 {
  8784. order: 1 !important
  8785. }
  8786. .order-md-2 {
  8787. order: 2 !important
  8788. }
  8789. .order-md-3 {
  8790. order: 3 !important
  8791. }
  8792. .order-md-4 {
  8793. order: 4 !important
  8794. }
  8795. .order-md-5 {
  8796. order: 5 !important
  8797. }
  8798. .order-md-last {
  8799. order: 6 !important
  8800. }
  8801. .m-md-0 {
  8802. margin: 0 !important
  8803. }
  8804. .m-md-1 {
  8805. margin: .25rem !important
  8806. }
  8807. .m-md-2 {
  8808. margin: .5rem !important
  8809. }
  8810. .m-md-3 {
  8811. margin: 1rem !important
  8812. }
  8813. .m-md-4 {
  8814. margin: 1.5rem !important
  8815. }
  8816. .m-md-5 {
  8817. margin: 3rem !important
  8818. }
  8819. .m-md-auto {
  8820. margin: auto !important
  8821. }
  8822. .mx-md-0 {
  8823. margin-right: 0 !important;
  8824. margin-left: 0 !important
  8825. }
  8826. .mx-md-1 {
  8827. margin-right: .25rem !important;
  8828. margin-left: .25rem !important
  8829. }
  8830. .mx-md-2 {
  8831. margin-right: .5rem !important;
  8832. margin-left: .5rem !important
  8833. }
  8834. .mx-md-3 {
  8835. margin-right: 1rem !important;
  8836. margin-left: 1rem !important
  8837. }
  8838. .mx-md-4 {
  8839. margin-right: 1.5rem !important;
  8840. margin-left: 1.5rem !important
  8841. }
  8842. .mx-md-5 {
  8843. margin-right: 3rem !important;
  8844. margin-left: 3rem !important
  8845. }
  8846. .mx-md-auto {
  8847. margin-right: auto !important;
  8848. margin-left: auto !important
  8849. }
  8850. .my-md-0 {
  8851. margin-top: 0 !important;
  8852. margin-bottom: 0 !important
  8853. }
  8854. .my-md-1 {
  8855. margin-top: .25rem !important;
  8856. margin-bottom: .25rem !important
  8857. }
  8858. .my-md-2 {
  8859. margin-top: .5rem !important;
  8860. margin-bottom: .5rem !important
  8861. }
  8862. .my-md-3 {
  8863. margin-top: 1rem !important;
  8864. margin-bottom: 1rem !important
  8865. }
  8866. .my-md-4 {
  8867. margin-top: 1.5rem !important;
  8868. margin-bottom: 1.5rem !important
  8869. }
  8870. .my-md-5 {
  8871. margin-top: 3rem !important;
  8872. margin-bottom: 3rem !important
  8873. }
  8874. .my-md-auto {
  8875. margin-top: auto !important;
  8876. margin-bottom: auto !important
  8877. }
  8878. .mt-md-0 {
  8879. margin-top: 0 !important
  8880. }
  8881. .mt-md-1 {
  8882. margin-top: .25rem !important
  8883. }
  8884. .mt-md-2 {
  8885. margin-top: .5rem !important
  8886. }
  8887. .mt-md-3 {
  8888. margin-top: 1rem !important
  8889. }
  8890. .mt-md-4 {
  8891. margin-top: 1.5rem !important
  8892. }
  8893. .mt-md-5 {
  8894. margin-top: 3rem !important
  8895. }
  8896. .mt-md-auto {
  8897. margin-top: auto !important
  8898. }
  8899. .me-md-0 {
  8900. margin-right: 0 !important
  8901. }
  8902. .me-md-1 {
  8903. margin-right: .25rem !important
  8904. }
  8905. .me-md-2 {
  8906. margin-right: .5rem !important
  8907. }
  8908. .me-md-3 {
  8909. margin-right: 1rem !important
  8910. }
  8911. .me-md-4 {
  8912. margin-right: 1.5rem !important
  8913. }
  8914. .me-md-5 {
  8915. margin-right: 3rem !important
  8916. }
  8917. .me-md-auto {
  8918. margin-right: auto !important
  8919. }
  8920. .mb-md-0 {
  8921. margin-bottom: 0 !important
  8922. }
  8923. .mb-md-1 {
  8924. margin-bottom: .25rem !important
  8925. }
  8926. .mb-md-2 {
  8927. margin-bottom: .5rem !important
  8928. }
  8929. .mb-md-3 {
  8930. margin-bottom: 1rem !important
  8931. }
  8932. .mb-md-4 {
  8933. margin-bottom: 1.5rem !important
  8934. }
  8935. .mb-md-5 {
  8936. margin-bottom: 3rem !important
  8937. }
  8938. .mb-md-auto {
  8939. margin-bottom: auto !important
  8940. }
  8941. .ms-md-0 {
  8942. margin-left: 0 !important
  8943. }
  8944. .ms-md-1 {
  8945. margin-left: .25rem !important
  8946. }
  8947. .ms-md-2 {
  8948. margin-left: .5rem !important
  8949. }
  8950. .ms-md-3 {
  8951. margin-left: 1rem !important
  8952. }
  8953. .ms-md-4 {
  8954. margin-left: 1.5rem !important
  8955. }
  8956. .ms-md-5 {
  8957. margin-left: 3rem !important
  8958. }
  8959. .ms-md-auto {
  8960. margin-left: auto !important
  8961. }
  8962. .p-md-0 {
  8963. padding: 0 !important
  8964. }
  8965. .p-md-1 {
  8966. padding: .25rem !important
  8967. }
  8968. .p-md-2 {
  8969. padding: .5rem !important
  8970. }
  8971. .p-md-3 {
  8972. padding: 1rem !important
  8973. }
  8974. .p-md-4 {
  8975. padding: 1.5rem !important
  8976. }
  8977. .p-md-5 {
  8978. padding: 3rem !important
  8979. }
  8980. .px-md-0 {
  8981. padding-right: 0 !important;
  8982. padding-left: 0 !important
  8983. }
  8984. .px-md-1 {
  8985. padding-right: .25rem !important;
  8986. padding-left: .25rem !important
  8987. }
  8988. .px-md-2 {
  8989. padding-right: .5rem !important;
  8990. padding-left: .5rem !important
  8991. }
  8992. .px-md-3 {
  8993. padding-right: 1rem !important;
  8994. padding-left: 1rem !important
  8995. }
  8996. .px-md-4 {
  8997. padding-right: 1.5rem !important;
  8998. padding-left: 1.5rem !important
  8999. }
  9000. .px-md-5 {
  9001. padding-right: 3rem !important;
  9002. padding-left: 3rem !important
  9003. }
  9004. .py-md-0 {
  9005. padding-top: 0 !important;
  9006. padding-bottom: 0 !important
  9007. }
  9008. .py-md-1 {
  9009. padding-top: .25rem !important;
  9010. padding-bottom: .25rem !important
  9011. }
  9012. .py-md-2 {
  9013. padding-top: .5rem !important;
  9014. padding-bottom: .5rem !important
  9015. }
  9016. .py-md-3 {
  9017. padding-top: 1rem !important;
  9018. padding-bottom: 1rem !important
  9019. }
  9020. .py-md-4 {
  9021. padding-top: 1.5rem !important;
  9022. padding-bottom: 1.5rem !important
  9023. }
  9024. .py-md-5 {
  9025. padding-top: 3rem !important;
  9026. padding-bottom: 3rem !important
  9027. }
  9028. .pt-md-0 {
  9029. padding-top: 0 !important
  9030. }
  9031. .pt-md-1 {
  9032. padding-top: .25rem !important
  9033. }
  9034. .pt-md-2 {
  9035. padding-top: .5rem !important
  9036. }
  9037. .pt-md-3 {
  9038. padding-top: 1rem !important
  9039. }
  9040. .pt-md-4 {
  9041. padding-top: 1.5rem !important
  9042. }
  9043. .pt-md-5 {
  9044. padding-top: 3rem !important
  9045. }
  9046. .pe-md-0 {
  9047. padding-right: 0 !important
  9048. }
  9049. .pe-md-1 {
  9050. padding-right: .25rem !important
  9051. }
  9052. .pe-md-2 {
  9053. padding-right: .5rem !important
  9054. }
  9055. .pe-md-3 {
  9056. padding-right: 1rem !important
  9057. }
  9058. .pe-md-4 {
  9059. padding-right: 1.5rem !important
  9060. }
  9061. .pe-md-5 {
  9062. padding-right: 3rem !important
  9063. }
  9064. .pb-md-0 {
  9065. padding-bottom: 0 !important
  9066. }
  9067. .pb-md-1 {
  9068. padding-bottom: .25rem !important
  9069. }
  9070. .pb-md-2 {
  9071. padding-bottom: .5rem !important
  9072. }
  9073. .pb-md-3 {
  9074. padding-bottom: 1rem !important
  9075. }
  9076. .pb-md-4 {
  9077. padding-bottom: 1.5rem !important
  9078. }
  9079. .pb-md-5 {
  9080. padding-bottom: 3rem !important
  9081. }
  9082. .ps-md-0 {
  9083. padding-left: 0 !important
  9084. }
  9085. .ps-md-1 {
  9086. padding-left: .25rem !important
  9087. }
  9088. .ps-md-2 {
  9089. padding-left: .5rem !important
  9090. }
  9091. .ps-md-3 {
  9092. padding-left: 1rem !important
  9093. }
  9094. .ps-md-4 {
  9095. padding-left: 1.5rem !important
  9096. }
  9097. .ps-md-5 {
  9098. padding-left: 3rem !important
  9099. }
  9100. .gap-md-0 {
  9101. gap: 0 !important
  9102. }
  9103. .gap-md-1 {
  9104. gap: .25rem !important
  9105. }
  9106. .gap-md-2 {
  9107. gap: .5rem !important
  9108. }
  9109. .gap-md-3 {
  9110. gap: 1rem !important
  9111. }
  9112. .gap-md-4 {
  9113. gap: 1.5rem !important
  9114. }
  9115. .gap-md-5 {
  9116. gap: 3rem !important
  9117. }
  9118. .row-gap-md-0 {
  9119. row-gap: 0 !important
  9120. }
  9121. .row-gap-md-1 {
  9122. row-gap: .25rem !important
  9123. }
  9124. .row-gap-md-2 {
  9125. row-gap: .5rem !important
  9126. }
  9127. .row-gap-md-3 {
  9128. row-gap: 1rem !important
  9129. }
  9130. .row-gap-md-4 {
  9131. row-gap: 1.5rem !important
  9132. }
  9133. .row-gap-md-5 {
  9134. row-gap: 3rem !important
  9135. }
  9136. .column-gap-md-0 {
  9137. -moz-column-gap: 0 !important;
  9138. column-gap: 0 !important
  9139. }
  9140. .column-gap-md-1 {
  9141. -moz-column-gap: 0.25rem !important;
  9142. column-gap: .25rem !important
  9143. }
  9144. .column-gap-md-2 {
  9145. -moz-column-gap: 0.5rem !important;
  9146. column-gap: .5rem !important
  9147. }
  9148. .column-gap-md-3 {
  9149. -moz-column-gap: 1rem !important;
  9150. column-gap: 1rem !important
  9151. }
  9152. .column-gap-md-4 {
  9153. -moz-column-gap: 1.5rem !important;
  9154. column-gap: 1.5rem !important
  9155. }
  9156. .column-gap-md-5 {
  9157. -moz-column-gap: 3rem !important;
  9158. column-gap: 3rem !important
  9159. }
  9160. .text-md-start {
  9161. text-align: left !important
  9162. }
  9163. .text-md-end {
  9164. text-align: right !important
  9165. }
  9166. .text-md-center {
  9167. text-align: center !important
  9168. }
  9169. }
  9170. @media (min-width: 992px) {
  9171. .float-lg-start {
  9172. float: left !important
  9173. }
  9174. .float-lg-end {
  9175. float: right !important
  9176. }
  9177. .float-lg-none {
  9178. float: none !important
  9179. }
  9180. .object-fit-lg-contain {
  9181. -o-object-fit: contain !important;
  9182. object-fit: contain !important
  9183. }
  9184. .object-fit-lg-cover {
  9185. -o-object-fit: cover !important;
  9186. object-fit: cover !important
  9187. }
  9188. .object-fit-lg-fill {
  9189. -o-object-fit: fill !important;
  9190. object-fit: fill !important
  9191. }
  9192. .object-fit-lg-scale {
  9193. -o-object-fit: scale-down !important;
  9194. object-fit: scale-down !important
  9195. }
  9196. .object-fit-lg-none {
  9197. -o-object-fit: none !important;
  9198. object-fit: none !important
  9199. }
  9200. .d-lg-inline {
  9201. display: inline !important
  9202. }
  9203. .d-lg-inline-block {
  9204. display: inline-block !important
  9205. }
  9206. .d-lg-block {
  9207. display: block !important
  9208. }
  9209. .d-lg-grid {
  9210. display: grid !important
  9211. }
  9212. .d-lg-inline-grid {
  9213. display: inline-grid !important
  9214. }
  9215. .d-lg-table {
  9216. display: table !important
  9217. }
  9218. .d-lg-table-row {
  9219. display: table-row !important
  9220. }
  9221. .d-lg-table-cell {
  9222. display: table-cell !important
  9223. }
  9224. .d-lg-flex {
  9225. display: flex !important
  9226. }
  9227. .d-lg-inline-flex {
  9228. display: inline-flex !important
  9229. }
  9230. .d-lg-none {
  9231. display: none !important
  9232. }
  9233. .flex-lg-fill {
  9234. flex: 1 1 auto !important
  9235. }
  9236. .flex-lg-row {
  9237. flex-direction: row !important
  9238. }
  9239. .flex-lg-column {
  9240. flex-direction: column !important
  9241. }
  9242. .flex-lg-row-reverse {
  9243. flex-direction: row-reverse !important
  9244. }
  9245. .flex-lg-column-reverse {
  9246. flex-direction: column-reverse !important
  9247. }
  9248. .flex-lg-grow-0 {
  9249. flex-grow: 0 !important
  9250. }
  9251. .flex-lg-grow-1 {
  9252. flex-grow: 1 !important
  9253. }
  9254. .flex-lg-shrink-0 {
  9255. flex-shrink: 0 !important
  9256. }
  9257. .flex-lg-shrink-1 {
  9258. flex-shrink: 1 !important
  9259. }
  9260. .flex-lg-wrap {
  9261. flex-wrap: wrap !important
  9262. }
  9263. .flex-lg-nowrap {
  9264. flex-wrap: nowrap !important
  9265. }
  9266. .flex-lg-wrap-reverse {
  9267. flex-wrap: wrap-reverse !important
  9268. }
  9269. .justify-content-lg-start {
  9270. justify-content: flex-start !important
  9271. }
  9272. .justify-content-lg-end {
  9273. justify-content: flex-end !important
  9274. }
  9275. .justify-content-lg-center {
  9276. justify-content: center !important
  9277. }
  9278. .justify-content-lg-between {
  9279. justify-content: space-between !important
  9280. }
  9281. .justify-content-lg-around {
  9282. justify-content: space-around !important
  9283. }
  9284. .justify-content-lg-evenly {
  9285. justify-content: space-evenly !important
  9286. }
  9287. .align-items-lg-start {
  9288. align-items: flex-start !important
  9289. }
  9290. .align-items-lg-end {
  9291. align-items: flex-end !important
  9292. }
  9293. .align-items-lg-center {
  9294. align-items: center !important
  9295. }
  9296. .align-items-lg-baseline {
  9297. align-items: baseline !important
  9298. }
  9299. .align-items-lg-stretch {
  9300. align-items: stretch !important
  9301. }
  9302. .align-content-lg-start {
  9303. align-content: flex-start !important
  9304. }
  9305. .align-content-lg-end {
  9306. align-content: flex-end !important
  9307. }
  9308. .align-content-lg-center {
  9309. align-content: center !important
  9310. }
  9311. .align-content-lg-between {
  9312. align-content: space-between !important
  9313. }
  9314. .align-content-lg-around {
  9315. align-content: space-around !important
  9316. }
  9317. .align-content-lg-stretch {
  9318. align-content: stretch !important
  9319. }
  9320. .align-self-lg-auto {
  9321. align-self: auto !important
  9322. }
  9323. .align-self-lg-start {
  9324. align-self: flex-start !important
  9325. }
  9326. .align-self-lg-end {
  9327. align-self: flex-end !important
  9328. }
  9329. .align-self-lg-center {
  9330. align-self: center !important
  9331. }
  9332. .align-self-lg-baseline {
  9333. align-self: baseline !important
  9334. }
  9335. .align-self-lg-stretch {
  9336. align-self: stretch !important
  9337. }
  9338. .order-lg-first {
  9339. order: -1 !important
  9340. }
  9341. .order-lg-0 {
  9342. order: 0 !important
  9343. }
  9344. .order-lg-1 {
  9345. order: 1 !important
  9346. }
  9347. .order-lg-2 {
  9348. order: 2 !important
  9349. }
  9350. .order-lg-3 {
  9351. order: 3 !important
  9352. }
  9353. .order-lg-4 {
  9354. order: 4 !important
  9355. }
  9356. .order-lg-5 {
  9357. order: 5 !important
  9358. }
  9359. .order-lg-last {
  9360. order: 6 !important
  9361. }
  9362. .m-lg-0 {
  9363. margin: 0 !important
  9364. }
  9365. .m-lg-1 {
  9366. margin: .25rem !important
  9367. }
  9368. .m-lg-2 {
  9369. margin: .5rem !important
  9370. }
  9371. .m-lg-3 {
  9372. margin: 1rem !important
  9373. }
  9374. .m-lg-4 {
  9375. margin: 1.5rem !important
  9376. }
  9377. .m-lg-5 {
  9378. margin: 3rem !important
  9379. }
  9380. .m-lg-auto {
  9381. margin: auto !important
  9382. }
  9383. .mx-lg-0 {
  9384. margin-right: 0 !important;
  9385. margin-left: 0 !important
  9386. }
  9387. .mx-lg-1 {
  9388. margin-right: .25rem !important;
  9389. margin-left: .25rem !important
  9390. }
  9391. .mx-lg-2 {
  9392. margin-right: .5rem !important;
  9393. margin-left: .5rem !important
  9394. }
  9395. .mx-lg-3 {
  9396. margin-right: 1rem !important;
  9397. margin-left: 1rem !important
  9398. }
  9399. .mx-lg-4 {
  9400. margin-right: 1.5rem !important;
  9401. margin-left: 1.5rem !important
  9402. }
  9403. .mx-lg-5 {
  9404. margin-right: 3rem !important;
  9405. margin-left: 3rem !important
  9406. }
  9407. .mx-lg-auto {
  9408. margin-right: auto !important;
  9409. margin-left: auto !important
  9410. }
  9411. .my-lg-0 {
  9412. margin-top: 0 !important;
  9413. margin-bottom: 0 !important
  9414. }
  9415. .my-lg-1 {
  9416. margin-top: .25rem !important;
  9417. margin-bottom: .25rem !important
  9418. }
  9419. .my-lg-2 {
  9420. margin-top: .5rem !important;
  9421. margin-bottom: .5rem !important
  9422. }
  9423. .my-lg-3 {
  9424. margin-top: 1rem !important;
  9425. margin-bottom: 1rem !important
  9426. }
  9427. .my-lg-4 {
  9428. margin-top: 1.5rem !important;
  9429. margin-bottom: 1.5rem !important
  9430. }
  9431. .my-lg-5 {
  9432. margin-top: 3rem !important;
  9433. margin-bottom: 3rem !important
  9434. }
  9435. .my-lg-auto {
  9436. margin-top: auto !important;
  9437. margin-bottom: auto !important
  9438. }
  9439. .mt-lg-0 {
  9440. margin-top: 0 !important
  9441. }
  9442. .mt-lg-1 {
  9443. margin-top: .25rem !important
  9444. }
  9445. .mt-lg-2 {
  9446. margin-top: .5rem !important
  9447. }
  9448. .mt-lg-3 {
  9449. margin-top: 1rem !important
  9450. }
  9451. .mt-lg-4 {
  9452. margin-top: 1.5rem !important
  9453. }
  9454. .mt-lg-5 {
  9455. margin-top: 3rem !important
  9456. }
  9457. .mt-lg-auto {
  9458. margin-top: auto !important
  9459. }
  9460. .me-lg-0 {
  9461. margin-right: 0 !important
  9462. }
  9463. .me-lg-1 {
  9464. margin-right: .25rem !important
  9465. }
  9466. .me-lg-2 {
  9467. margin-right: .5rem !important
  9468. }
  9469. .me-lg-3 {
  9470. margin-right: 1rem !important
  9471. }
  9472. .me-lg-4 {
  9473. margin-right: 1.5rem !important
  9474. }
  9475. .me-lg-5 {
  9476. margin-right: 3rem !important
  9477. }
  9478. .me-lg-auto {
  9479. margin-right: auto !important
  9480. }
  9481. .mb-lg-0 {
  9482. margin-bottom: 0 !important
  9483. }
  9484. .mb-lg-1 {
  9485. margin-bottom: .25rem !important
  9486. }
  9487. .mb-lg-2 {
  9488. margin-bottom: .5rem !important
  9489. }
  9490. .mb-lg-3 {
  9491. margin-bottom: 1rem !important
  9492. }
  9493. .mb-lg-4 {
  9494. margin-bottom: 1.5rem !important
  9495. }
  9496. .mb-lg-5 {
  9497. margin-bottom: 3rem !important
  9498. }
  9499. .mb-lg-auto {
  9500. margin-bottom: auto !important
  9501. }
  9502. .ms-lg-0 {
  9503. margin-left: 0 !important
  9504. }
  9505. .ms-lg-1 {
  9506. margin-left: .25rem !important
  9507. }
  9508. .ms-lg-2 {
  9509. margin-left: .5rem !important
  9510. }
  9511. .ms-lg-3 {
  9512. margin-left: 1rem !important
  9513. }
  9514. .ms-lg-4 {
  9515. margin-left: 1.5rem !important
  9516. }
  9517. .ms-lg-5 {
  9518. margin-left: 3rem !important
  9519. }
  9520. .ms-lg-auto {
  9521. margin-left: auto !important
  9522. }
  9523. .p-lg-0 {
  9524. padding: 0 !important
  9525. }
  9526. .p-lg-1 {
  9527. padding: .25rem !important
  9528. }
  9529. .p-lg-2 {
  9530. padding: .5rem !important
  9531. }
  9532. .p-lg-3 {
  9533. padding: 1rem !important
  9534. }
  9535. .p-lg-4 {
  9536. padding: 1.5rem !important
  9537. }
  9538. .p-lg-5 {
  9539. padding: 3rem !important
  9540. }
  9541. .px-lg-0 {
  9542. padding-right: 0 !important;
  9543. padding-left: 0 !important
  9544. }
  9545. .px-lg-1 {
  9546. padding-right: .25rem !important;
  9547. padding-left: .25rem !important
  9548. }
  9549. .px-lg-2 {
  9550. padding-right: .5rem !important;
  9551. padding-left: .5rem !important
  9552. }
  9553. .px-lg-3 {
  9554. padding-right: 1rem !important;
  9555. padding-left: 1rem !important
  9556. }
  9557. .px-lg-4 {
  9558. padding-right: 1.5rem !important;
  9559. padding-left: 1.5rem !important
  9560. }
  9561. .px-lg-5 {
  9562. padding-right: 3rem !important;
  9563. padding-left: 3rem !important
  9564. }
  9565. .py-lg-0 {
  9566. padding-top: 0 !important;
  9567. padding-bottom: 0 !important
  9568. }
  9569. .py-lg-1 {
  9570. padding-top: .25rem !important;
  9571. padding-bottom: .25rem !important
  9572. }
  9573. .py-lg-2 {
  9574. padding-top: .5rem !important;
  9575. padding-bottom: .5rem !important
  9576. }
  9577. .py-lg-3 {
  9578. padding-top: 1rem !important;
  9579. padding-bottom: 1rem !important
  9580. }
  9581. .py-lg-4 {
  9582. padding-top: 1.5rem !important;
  9583. padding-bottom: 1.5rem !important
  9584. }
  9585. .py-lg-5 {
  9586. padding-top: 3rem !important;
  9587. padding-bottom: 3rem !important
  9588. }
  9589. .pt-lg-0 {
  9590. padding-top: 0 !important
  9591. }
  9592. .pt-lg-1 {
  9593. padding-top: .25rem !important
  9594. }
  9595. .pt-lg-2 {
  9596. padding-top: .5rem !important
  9597. }
  9598. .pt-lg-3 {
  9599. padding-top: 1rem !important
  9600. }
  9601. .pt-lg-4 {
  9602. padding-top: 1.5rem !important
  9603. }
  9604. .pt-lg-5 {
  9605. padding-top: 3rem !important
  9606. }
  9607. .pe-lg-0 {
  9608. padding-right: 0 !important
  9609. }
  9610. .pe-lg-1 {
  9611. padding-right: .25rem !important
  9612. }
  9613. .pe-lg-2 {
  9614. padding-right: .5rem !important
  9615. }
  9616. .pe-lg-3 {
  9617. padding-right: 1rem !important
  9618. }
  9619. .pe-lg-4 {
  9620. padding-right: 1.5rem !important
  9621. }
  9622. .pe-lg-5 {
  9623. padding-right: 3rem !important
  9624. }
  9625. .pb-lg-0 {
  9626. padding-bottom: 0 !important
  9627. }
  9628. .pb-lg-1 {
  9629. padding-bottom: .25rem !important
  9630. }
  9631. .pb-lg-2 {
  9632. padding-bottom: .5rem !important
  9633. }
  9634. .pb-lg-3 {
  9635. padding-bottom: 1rem !important
  9636. }
  9637. .pb-lg-4 {
  9638. padding-bottom: 1.5rem !important
  9639. }
  9640. .pb-lg-5 {
  9641. padding-bottom: 3rem !important
  9642. }
  9643. .ps-lg-0 {
  9644. padding-left: 0 !important
  9645. }
  9646. .ps-lg-1 {
  9647. padding-left: .25rem !important
  9648. }
  9649. .ps-lg-2 {
  9650. padding-left: .5rem !important
  9651. }
  9652. .ps-lg-3 {
  9653. padding-left: 1rem !important
  9654. }
  9655. .ps-lg-4 {
  9656. padding-left: 1.5rem !important
  9657. }
  9658. .ps-lg-5 {
  9659. padding-left: 3rem !important
  9660. }
  9661. .gap-lg-0 {
  9662. gap: 0 !important
  9663. }
  9664. .gap-lg-1 {
  9665. gap: .25rem !important
  9666. }
  9667. .gap-lg-2 {
  9668. gap: .5rem !important
  9669. }
  9670. .gap-lg-3 {
  9671. gap: 1rem !important
  9672. }
  9673. .gap-lg-4 {
  9674. gap: 1.5rem !important
  9675. }
  9676. .gap-lg-5 {
  9677. gap: 3rem !important
  9678. }
  9679. .row-gap-lg-0 {
  9680. row-gap: 0 !important
  9681. }
  9682. .row-gap-lg-1 {
  9683. row-gap: .25rem !important
  9684. }
  9685. .row-gap-lg-2 {
  9686. row-gap: .5rem !important
  9687. }
  9688. .row-gap-lg-3 {
  9689. row-gap: 1rem !important
  9690. }
  9691. .row-gap-lg-4 {
  9692. row-gap: 1.5rem !important
  9693. }
  9694. .row-gap-lg-5 {
  9695. row-gap: 3rem !important
  9696. }
  9697. .column-gap-lg-0 {
  9698. -moz-column-gap: 0 !important;
  9699. column-gap: 0 !important
  9700. }
  9701. .column-gap-lg-1 {
  9702. -moz-column-gap: 0.25rem !important;
  9703. column-gap: .25rem !important
  9704. }
  9705. .column-gap-lg-2 {
  9706. -moz-column-gap: 0.5rem !important;
  9707. column-gap: .5rem !important
  9708. }
  9709. .column-gap-lg-3 {
  9710. -moz-column-gap: 1rem !important;
  9711. column-gap: 1rem !important
  9712. }
  9713. .column-gap-lg-4 {
  9714. -moz-column-gap: 1.5rem !important;
  9715. column-gap: 1.5rem !important
  9716. }
  9717. .column-gap-lg-5 {
  9718. -moz-column-gap: 3rem !important;
  9719. column-gap: 3rem !important
  9720. }
  9721. .text-lg-start {
  9722. text-align: left !important
  9723. }
  9724. .text-lg-end {
  9725. text-align: right !important
  9726. }
  9727. .text-lg-center {
  9728. text-align: center !important
  9729. }
  9730. }
  9731. @media (min-width: 1200px) {
  9732. .float-xl-start {
  9733. float: left !important
  9734. }
  9735. .float-xl-end {
  9736. float: right !important
  9737. }
  9738. .float-xl-none {
  9739. float: none !important
  9740. }
  9741. .object-fit-xl-contain {
  9742. -o-object-fit: contain !important;
  9743. object-fit: contain !important
  9744. }
  9745. .object-fit-xl-cover {
  9746. -o-object-fit: cover !important;
  9747. object-fit: cover !important
  9748. }
  9749. .object-fit-xl-fill {
  9750. -o-object-fit: fill !important;
  9751. object-fit: fill !important
  9752. }
  9753. .object-fit-xl-scale {
  9754. -o-object-fit: scale-down !important;
  9755. object-fit: scale-down !important
  9756. }
  9757. .object-fit-xl-none {
  9758. -o-object-fit: none !important;
  9759. object-fit: none !important
  9760. }
  9761. .d-xl-inline {
  9762. display: inline !important
  9763. }
  9764. .d-xl-inline-block {
  9765. display: inline-block !important
  9766. }
  9767. .d-xl-block {
  9768. display: block !important
  9769. }
  9770. .d-xl-grid {
  9771. display: grid !important
  9772. }
  9773. .d-xl-inline-grid {
  9774. display: inline-grid !important
  9775. }
  9776. .d-xl-table {
  9777. display: table !important
  9778. }
  9779. .d-xl-table-row {
  9780. display: table-row !important
  9781. }
  9782. .d-xl-table-cell {
  9783. display: table-cell !important
  9784. }
  9785. .d-xl-flex {
  9786. display: flex !important
  9787. }
  9788. .d-xl-inline-flex {
  9789. display: inline-flex !important
  9790. }
  9791. .d-xl-none {
  9792. display: none !important
  9793. }
  9794. .flex-xl-fill {
  9795. flex: 1 1 auto !important
  9796. }
  9797. .flex-xl-row {
  9798. flex-direction: row !important
  9799. }
  9800. .flex-xl-column {
  9801. flex-direction: column !important
  9802. }
  9803. .flex-xl-row-reverse {
  9804. flex-direction: row-reverse !important
  9805. }
  9806. .flex-xl-column-reverse {
  9807. flex-direction: column-reverse !important
  9808. }
  9809. .flex-xl-grow-0 {
  9810. flex-grow: 0 !important
  9811. }
  9812. .flex-xl-grow-1 {
  9813. flex-grow: 1 !important
  9814. }
  9815. .flex-xl-shrink-0 {
  9816. flex-shrink: 0 !important
  9817. }
  9818. .flex-xl-shrink-1 {
  9819. flex-shrink: 1 !important
  9820. }
  9821. .flex-xl-wrap {
  9822. flex-wrap: wrap !important
  9823. }
  9824. .flex-xl-nowrap {
  9825. flex-wrap: nowrap !important
  9826. }
  9827. .flex-xl-wrap-reverse {
  9828. flex-wrap: wrap-reverse !important
  9829. }
  9830. .justify-content-xl-start {
  9831. justify-content: flex-start !important
  9832. }
  9833. .justify-content-xl-end {
  9834. justify-content: flex-end !important
  9835. }
  9836. .justify-content-xl-center {
  9837. justify-content: center !important
  9838. }
  9839. .justify-content-xl-between {
  9840. justify-content: space-between !important
  9841. }
  9842. .justify-content-xl-around {
  9843. justify-content: space-around !important
  9844. }
  9845. .justify-content-xl-evenly {
  9846. justify-content: space-evenly !important
  9847. }
  9848. .align-items-xl-start {
  9849. align-items: flex-start !important
  9850. }
  9851. .align-items-xl-end {
  9852. align-items: flex-end !important
  9853. }
  9854. .align-items-xl-center {
  9855. align-items: center !important
  9856. }
  9857. .align-items-xl-baseline {
  9858. align-items: baseline !important
  9859. }
  9860. .align-items-xl-stretch {
  9861. align-items: stretch !important
  9862. }
  9863. .align-content-xl-start {
  9864. align-content: flex-start !important
  9865. }
  9866. .align-content-xl-end {
  9867. align-content: flex-end !important
  9868. }
  9869. .align-content-xl-center {
  9870. align-content: center !important
  9871. }
  9872. .align-content-xl-between {
  9873. align-content: space-between !important
  9874. }
  9875. .align-content-xl-around {
  9876. align-content: space-around !important
  9877. }
  9878. .align-content-xl-stretch {
  9879. align-content: stretch !important
  9880. }
  9881. .align-self-xl-auto {
  9882. align-self: auto !important
  9883. }
  9884. .align-self-xl-start {
  9885. align-self: flex-start !important
  9886. }
  9887. .align-self-xl-end {
  9888. align-self: flex-end !important
  9889. }
  9890. .align-self-xl-center {
  9891. align-self: center !important
  9892. }
  9893. .align-self-xl-baseline {
  9894. align-self: baseline !important
  9895. }
  9896. .align-self-xl-stretch {
  9897. align-self: stretch !important
  9898. }
  9899. .order-xl-first {
  9900. order: -1 !important
  9901. }
  9902. .order-xl-0 {
  9903. order: 0 !important
  9904. }
  9905. .order-xl-1 {
  9906. order: 1 !important
  9907. }
  9908. .order-xl-2 {
  9909. order: 2 !important
  9910. }
  9911. .order-xl-3 {
  9912. order: 3 !important
  9913. }
  9914. .order-xl-4 {
  9915. order: 4 !important
  9916. }
  9917. .order-xl-5 {
  9918. order: 5 !important
  9919. }
  9920. .order-xl-last {
  9921. order: 6 !important
  9922. }
  9923. .m-xl-0 {
  9924. margin: 0 !important
  9925. }
  9926. .m-xl-1 {
  9927. margin: .25rem !important
  9928. }
  9929. .m-xl-2 {
  9930. margin: .5rem !important
  9931. }
  9932. .m-xl-3 {
  9933. margin: 1rem !important
  9934. }
  9935. .m-xl-4 {
  9936. margin: 1.5rem !important
  9937. }
  9938. .m-xl-5 {
  9939. margin: 3rem !important
  9940. }
  9941. .m-xl-auto {
  9942. margin: auto !important
  9943. }
  9944. .mx-xl-0 {
  9945. margin-right: 0 !important;
  9946. margin-left: 0 !important
  9947. }
  9948. .mx-xl-1 {
  9949. margin-right: .25rem !important;
  9950. margin-left: .25rem !important
  9951. }
  9952. .mx-xl-2 {
  9953. margin-right: .5rem !important;
  9954. margin-left: .5rem !important
  9955. }
  9956. .mx-xl-3 {
  9957. margin-right: 1rem !important;
  9958. margin-left: 1rem !important
  9959. }
  9960. .mx-xl-4 {
  9961. margin-right: 1.5rem !important;
  9962. margin-left: 1.5rem !important
  9963. }
  9964. .mx-xl-5 {
  9965. margin-right: 3rem !important;
  9966. margin-left: 3rem !important
  9967. }
  9968. .mx-xl-auto {
  9969. margin-right: auto !important;
  9970. margin-left: auto !important
  9971. }
  9972. .my-xl-0 {
  9973. margin-top: 0 !important;
  9974. margin-bottom: 0 !important
  9975. }
  9976. .my-xl-1 {
  9977. margin-top: .25rem !important;
  9978. margin-bottom: .25rem !important
  9979. }
  9980. .my-xl-2 {
  9981. margin-top: .5rem !important;
  9982. margin-bottom: .5rem !important
  9983. }
  9984. .my-xl-3 {
  9985. margin-top: 1rem !important;
  9986. margin-bottom: 1rem !important
  9987. }
  9988. .my-xl-4 {
  9989. margin-top: 1.5rem !important;
  9990. margin-bottom: 1.5rem !important
  9991. }
  9992. .my-xl-5 {
  9993. margin-top: 3rem !important;
  9994. margin-bottom: 3rem !important
  9995. }
  9996. .my-xl-auto {
  9997. margin-top: auto !important;
  9998. margin-bottom: auto !important
  9999. }
  10000. .mt-xl-0 {
  10001. margin-top: 0 !important
  10002. }
  10003. .mt-xl-1 {
  10004. margin-top: .25rem !important
  10005. }
  10006. .mt-xl-2 {
  10007. margin-top: .5rem !important
  10008. }
  10009. .mt-xl-3 {
  10010. margin-top: 1rem !important
  10011. }
  10012. .mt-xl-4 {
  10013. margin-top: 1.5rem !important
  10014. }
  10015. .mt-xl-5 {
  10016. margin-top: 3rem !important
  10017. }
  10018. .mt-xl-auto {
  10019. margin-top: auto !important
  10020. }
  10021. .me-xl-0 {
  10022. margin-right: 0 !important
  10023. }
  10024. .me-xl-1 {
  10025. margin-right: .25rem !important
  10026. }
  10027. .me-xl-2 {
  10028. margin-right: .5rem !important
  10029. }
  10030. .me-xl-3 {
  10031. margin-right: 1rem !important
  10032. }
  10033. .me-xl-4 {
  10034. margin-right: 1.5rem !important
  10035. }
  10036. .me-xl-5 {
  10037. margin-right: 3rem !important
  10038. }
  10039. .me-xl-auto {
  10040. margin-right: auto !important
  10041. }
  10042. .mb-xl-0 {
  10043. margin-bottom: 0 !important
  10044. }
  10045. .mb-xl-1 {
  10046. margin-bottom: .25rem !important
  10047. }
  10048. .mb-xl-2 {
  10049. margin-bottom: .5rem !important
  10050. }
  10051. .mb-xl-3 {
  10052. margin-bottom: 1rem !important
  10053. }
  10054. .mb-xl-4 {
  10055. margin-bottom: 1.5rem !important
  10056. }
  10057. .mb-xl-5 {
  10058. margin-bottom: 3rem !important
  10059. }
  10060. .mb-xl-auto {
  10061. margin-bottom: auto !important
  10062. }
  10063. .ms-xl-0 {
  10064. margin-left: 0 !important
  10065. }
  10066. .ms-xl-1 {
  10067. margin-left: .25rem !important
  10068. }
  10069. .ms-xl-2 {
  10070. margin-left: .5rem !important
  10071. }
  10072. .ms-xl-3 {
  10073. margin-left: 1rem !important
  10074. }
  10075. .ms-xl-4 {
  10076. margin-left: 1.5rem !important
  10077. }
  10078. .ms-xl-5 {
  10079. margin-left: 3rem !important
  10080. }
  10081. .ms-xl-auto {
  10082. margin-left: auto !important
  10083. }
  10084. .p-xl-0 {
  10085. padding: 0 !important
  10086. }
  10087. .p-xl-1 {
  10088. padding: .25rem !important
  10089. }
  10090. .p-xl-2 {
  10091. padding: .5rem !important
  10092. }
  10093. .p-xl-3 {
  10094. padding: 1rem !important
  10095. }
  10096. .p-xl-4 {
  10097. padding: 1.5rem !important
  10098. }
  10099. .p-xl-5 {
  10100. padding: 3rem !important
  10101. }
  10102. .px-xl-0 {
  10103. padding-right: 0 !important;
  10104. padding-left: 0 !important
  10105. }
  10106. .px-xl-1 {
  10107. padding-right: .25rem !important;
  10108. padding-left: .25rem !important
  10109. }
  10110. .px-xl-2 {
  10111. padding-right: .5rem !important;
  10112. padding-left: .5rem !important
  10113. }
  10114. .px-xl-3 {
  10115. padding-right: 1rem !important;
  10116. padding-left: 1rem !important
  10117. }
  10118. .px-xl-4 {
  10119. padding-right: 1.5rem !important;
  10120. padding-left: 1.5rem !important
  10121. }
  10122. .px-xl-5 {
  10123. padding-right: 3rem !important;
  10124. padding-left: 3rem !important
  10125. }
  10126. .py-xl-0 {
  10127. padding-top: 0 !important;
  10128. padding-bottom: 0 !important
  10129. }
  10130. .py-xl-1 {
  10131. padding-top: .25rem !important;
  10132. padding-bottom: .25rem !important
  10133. }
  10134. .py-xl-2 {
  10135. padding-top: .5rem !important;
  10136. padding-bottom: .5rem !important
  10137. }
  10138. .py-xl-3 {
  10139. padding-top: 1rem !important;
  10140. padding-bottom: 1rem !important
  10141. }
  10142. .py-xl-4 {
  10143. padding-top: 1.5rem !important;
  10144. padding-bottom: 1.5rem !important
  10145. }
  10146. .py-xl-5 {
  10147. padding-top: 3rem !important;
  10148. padding-bottom: 3rem !important
  10149. }
  10150. .pt-xl-0 {
  10151. padding-top: 0 !important
  10152. }
  10153. .pt-xl-1 {
  10154. padding-top: .25rem !important
  10155. }
  10156. .pt-xl-2 {
  10157. padding-top: .5rem !important
  10158. }
  10159. .pt-xl-3 {
  10160. padding-top: 1rem !important
  10161. }
  10162. .pt-xl-4 {
  10163. padding-top: 1.5rem !important
  10164. }
  10165. .pt-xl-5 {
  10166. padding-top: 3rem !important
  10167. }
  10168. .pe-xl-0 {
  10169. padding-right: 0 !important
  10170. }
  10171. .pe-xl-1 {
  10172. padding-right: .25rem !important
  10173. }
  10174. .pe-xl-2 {
  10175. padding-right: .5rem !important
  10176. }
  10177. .pe-xl-3 {
  10178. padding-right: 1rem !important
  10179. }
  10180. .pe-xl-4 {
  10181. padding-right: 1.5rem !important
  10182. }
  10183. .pe-xl-5 {
  10184. padding-right: 3rem !important
  10185. }
  10186. .pb-xl-0 {
  10187. padding-bottom: 0 !important
  10188. }
  10189. .pb-xl-1 {
  10190. padding-bottom: .25rem !important
  10191. }
  10192. .pb-xl-2 {
  10193. padding-bottom: .5rem !important
  10194. }
  10195. .pb-xl-3 {
  10196. padding-bottom: 1rem !important
  10197. }
  10198. .pb-xl-4 {
  10199. padding-bottom: 1.5rem !important
  10200. }
  10201. .pb-xl-5 {
  10202. padding-bottom: 3rem !important
  10203. }
  10204. .ps-xl-0 {
  10205. padding-left: 0 !important
  10206. }
  10207. .ps-xl-1 {
  10208. padding-left: .25rem !important
  10209. }
  10210. .ps-xl-2 {
  10211. padding-left: .5rem !important
  10212. }
  10213. .ps-xl-3 {
  10214. padding-left: 1rem !important
  10215. }
  10216. .ps-xl-4 {
  10217. padding-left: 1.5rem !important
  10218. }
  10219. .ps-xl-5 {
  10220. padding-left: 3rem !important
  10221. }
  10222. .gap-xl-0 {
  10223. gap: 0 !important
  10224. }
  10225. .gap-xl-1 {
  10226. gap: .25rem !important
  10227. }
  10228. .gap-xl-2 {
  10229. gap: .5rem !important
  10230. }
  10231. .gap-xl-3 {
  10232. gap: 1rem !important
  10233. }
  10234. .gap-xl-4 {
  10235. gap: 1.5rem !important
  10236. }
  10237. .gap-xl-5 {
  10238. gap: 3rem !important
  10239. }
  10240. .row-gap-xl-0 {
  10241. row-gap: 0 !important
  10242. }
  10243. .row-gap-xl-1 {
  10244. row-gap: .25rem !important
  10245. }
  10246. .row-gap-xl-2 {
  10247. row-gap: .5rem !important
  10248. }
  10249. .row-gap-xl-3 {
  10250. row-gap: 1rem !important
  10251. }
  10252. .row-gap-xl-4 {
  10253. row-gap: 1.5rem !important
  10254. }
  10255. .row-gap-xl-5 {
  10256. row-gap: 3rem !important
  10257. }
  10258. .column-gap-xl-0 {
  10259. -moz-column-gap: 0 !important;
  10260. column-gap: 0 !important
  10261. }
  10262. .column-gap-xl-1 {
  10263. -moz-column-gap: 0.25rem !important;
  10264. column-gap: .25rem !important
  10265. }
  10266. .column-gap-xl-2 {
  10267. -moz-column-gap: 0.5rem !important;
  10268. column-gap: .5rem !important
  10269. }
  10270. .column-gap-xl-3 {
  10271. -moz-column-gap: 1rem !important;
  10272. column-gap: 1rem !important
  10273. }
  10274. .column-gap-xl-4 {
  10275. -moz-column-gap: 1.5rem !important;
  10276. column-gap: 1.5rem !important
  10277. }
  10278. .column-gap-xl-5 {
  10279. -moz-column-gap: 3rem !important;
  10280. column-gap: 3rem !important
  10281. }
  10282. .text-xl-start {
  10283. text-align: left !important
  10284. }
  10285. .text-xl-end {
  10286. text-align: right !important
  10287. }
  10288. .text-xl-center {
  10289. text-align: center !important
  10290. }
  10291. }
  10292. @media (min-width: 1400px) {
  10293. .float-xxl-start {
  10294. float: left !important
  10295. }
  10296. .float-xxl-end {
  10297. float: right !important
  10298. }
  10299. .float-xxl-none {
  10300. float: none !important
  10301. }
  10302. .object-fit-xxl-contain {
  10303. -o-object-fit: contain !important;
  10304. object-fit: contain !important
  10305. }
  10306. .object-fit-xxl-cover {
  10307. -o-object-fit: cover !important;
  10308. object-fit: cover !important
  10309. }
  10310. .object-fit-xxl-fill {
  10311. -o-object-fit: fill !important;
  10312. object-fit: fill !important
  10313. }
  10314. .object-fit-xxl-scale {
  10315. -o-object-fit: scale-down !important;
  10316. object-fit: scale-down !important
  10317. }
  10318. .object-fit-xxl-none {
  10319. -o-object-fit: none !important;
  10320. object-fit: none !important
  10321. }
  10322. .d-xxl-inline {
  10323. display: inline !important
  10324. }
  10325. .d-xxl-inline-block {
  10326. display: inline-block !important
  10327. }
  10328. .d-xxl-block {
  10329. display: block !important
  10330. }
  10331. .d-xxl-grid {
  10332. display: grid !important
  10333. }
  10334. .d-xxl-inline-grid {
  10335. display: inline-grid !important
  10336. }
  10337. .d-xxl-table {
  10338. display: table !important
  10339. }
  10340. .d-xxl-table-row {
  10341. display: table-row !important
  10342. }
  10343. .d-xxl-table-cell {
  10344. display: table-cell !important
  10345. }
  10346. .d-xxl-flex {
  10347. display: flex !important
  10348. }
  10349. .d-xxl-inline-flex {
  10350. display: inline-flex !important
  10351. }
  10352. .d-xxl-none {
  10353. display: none !important
  10354. }
  10355. .flex-xxl-fill {
  10356. flex: 1 1 auto !important
  10357. }
  10358. .flex-xxl-row {
  10359. flex-direction: row !important
  10360. }
  10361. .flex-xxl-column {
  10362. flex-direction: column !important
  10363. }
  10364. .flex-xxl-row-reverse {
  10365. flex-direction: row-reverse !important
  10366. }
  10367. .flex-xxl-column-reverse {
  10368. flex-direction: column-reverse !important
  10369. }
  10370. .flex-xxl-grow-0 {
  10371. flex-grow: 0 !important
  10372. }
  10373. .flex-xxl-grow-1 {
  10374. flex-grow: 1 !important
  10375. }
  10376. .flex-xxl-shrink-0 {
  10377. flex-shrink: 0 !important
  10378. }
  10379. .flex-xxl-shrink-1 {
  10380. flex-shrink: 1 !important
  10381. }
  10382. .flex-xxl-wrap {
  10383. flex-wrap: wrap !important
  10384. }
  10385. .flex-xxl-nowrap {
  10386. flex-wrap: nowrap !important
  10387. }
  10388. .flex-xxl-wrap-reverse {
  10389. flex-wrap: wrap-reverse !important
  10390. }
  10391. .justify-content-xxl-start {
  10392. justify-content: flex-start !important
  10393. }
  10394. .justify-content-xxl-end {
  10395. justify-content: flex-end !important
  10396. }
  10397. .justify-content-xxl-center {
  10398. justify-content: center !important
  10399. }
  10400. .justify-content-xxl-between {
  10401. justify-content: space-between !important
  10402. }
  10403. .justify-content-xxl-around {
  10404. justify-content: space-around !important
  10405. }
  10406. .justify-content-xxl-evenly {
  10407. justify-content: space-evenly !important
  10408. }
  10409. .align-items-xxl-start {
  10410. align-items: flex-start !important
  10411. }
  10412. .align-items-xxl-end {
  10413. align-items: flex-end !important
  10414. }
  10415. .align-items-xxl-center {
  10416. align-items: center !important
  10417. }
  10418. .align-items-xxl-baseline {
  10419. align-items: baseline !important
  10420. }
  10421. .align-items-xxl-stretch {
  10422. align-items: stretch !important
  10423. }
  10424. .align-content-xxl-start {
  10425. align-content: flex-start !important
  10426. }
  10427. .align-content-xxl-end {
  10428. align-content: flex-end !important
  10429. }
  10430. .align-content-xxl-center {
  10431. align-content: center !important
  10432. }
  10433. .align-content-xxl-between {
  10434. align-content: space-between !important
  10435. }
  10436. .align-content-xxl-around {
  10437. align-content: space-around !important
  10438. }
  10439. .align-content-xxl-stretch {
  10440. align-content: stretch !important
  10441. }
  10442. .align-self-xxl-auto {
  10443. align-self: auto !important
  10444. }
  10445. .align-self-xxl-start {
  10446. align-self: flex-start !important
  10447. }
  10448. .align-self-xxl-end {
  10449. align-self: flex-end !important
  10450. }
  10451. .align-self-xxl-center {
  10452. align-self: center !important
  10453. }
  10454. .align-self-xxl-baseline {
  10455. align-self: baseline !important
  10456. }
  10457. .align-self-xxl-stretch {
  10458. align-self: stretch !important
  10459. }
  10460. .order-xxl-first {
  10461. order: -1 !important
  10462. }
  10463. .order-xxl-0 {
  10464. order: 0 !important
  10465. }
  10466. .order-xxl-1 {
  10467. order: 1 !important
  10468. }
  10469. .order-xxl-2 {
  10470. order: 2 !important
  10471. }
  10472. .order-xxl-3 {
  10473. order: 3 !important
  10474. }
  10475. .order-xxl-4 {
  10476. order: 4 !important
  10477. }
  10478. .order-xxl-5 {
  10479. order: 5 !important
  10480. }
  10481. .order-xxl-last {
  10482. order: 6 !important
  10483. }
  10484. .m-xxl-0 {
  10485. margin: 0 !important
  10486. }
  10487. .m-xxl-1 {
  10488. margin: .25rem !important
  10489. }
  10490. .m-xxl-2 {
  10491. margin: .5rem !important
  10492. }
  10493. .m-xxl-3 {
  10494. margin: 1rem !important
  10495. }
  10496. .m-xxl-4 {
  10497. margin: 1.5rem !important
  10498. }
  10499. .m-xxl-5 {
  10500. margin: 3rem !important
  10501. }
  10502. .m-xxl-auto {
  10503. margin: auto !important
  10504. }
  10505. .mx-xxl-0 {
  10506. margin-right: 0 !important;
  10507. margin-left: 0 !important
  10508. }
  10509. .mx-xxl-1 {
  10510. margin-right: .25rem !important;
  10511. margin-left: .25rem !important
  10512. }
  10513. .mx-xxl-2 {
  10514. margin-right: .5rem !important;
  10515. margin-left: .5rem !important
  10516. }
  10517. .mx-xxl-3 {
  10518. margin-right: 1rem !important;
  10519. margin-left: 1rem !important
  10520. }
  10521. .mx-xxl-4 {
  10522. margin-right: 1.5rem !important;
  10523. margin-left: 1.5rem !important
  10524. }
  10525. .mx-xxl-5 {
  10526. margin-right: 3rem !important;
  10527. margin-left: 3rem !important
  10528. }
  10529. .mx-xxl-auto {
  10530. margin-right: auto !important;
  10531. margin-left: auto !important
  10532. }
  10533. .my-xxl-0 {
  10534. margin-top: 0 !important;
  10535. margin-bottom: 0 !important
  10536. }
  10537. .my-xxl-1 {
  10538. margin-top: .25rem !important;
  10539. margin-bottom: .25rem !important
  10540. }
  10541. .my-xxl-2 {
  10542. margin-top: .5rem !important;
  10543. margin-bottom: .5rem !important
  10544. }
  10545. .my-xxl-3 {
  10546. margin-top: 1rem !important;
  10547. margin-bottom: 1rem !important
  10548. }
  10549. .my-xxl-4 {
  10550. margin-top: 1.5rem !important;
  10551. margin-bottom: 1.5rem !important
  10552. }
  10553. .my-xxl-5 {
  10554. margin-top: 3rem !important;
  10555. margin-bottom: 3rem !important
  10556. }
  10557. .my-xxl-auto {
  10558. margin-top: auto !important;
  10559. margin-bottom: auto !important
  10560. }
  10561. .mt-xxl-0 {
  10562. margin-top: 0 !important
  10563. }
  10564. .mt-xxl-1 {
  10565. margin-top: .25rem !important
  10566. }
  10567. .mt-xxl-2 {
  10568. margin-top: .5rem !important
  10569. }
  10570. .mt-xxl-3 {
  10571. margin-top: 1rem !important
  10572. }
  10573. .mt-xxl-4 {
  10574. margin-top: 1.5rem !important
  10575. }
  10576. .mt-xxl-5 {
  10577. margin-top: 3rem !important
  10578. }
  10579. .mt-xxl-auto {
  10580. margin-top: auto !important
  10581. }
  10582. .me-xxl-0 {
  10583. margin-right: 0 !important
  10584. }
  10585. .me-xxl-1 {
  10586. margin-right: .25rem !important
  10587. }
  10588. .me-xxl-2 {
  10589. margin-right: .5rem !important
  10590. }
  10591. .me-xxl-3 {
  10592. margin-right: 1rem !important
  10593. }
  10594. .me-xxl-4 {
  10595. margin-right: 1.5rem !important
  10596. }
  10597. .me-xxl-5 {
  10598. margin-right: 3rem !important
  10599. }
  10600. .me-xxl-auto {
  10601. margin-right: auto !important
  10602. }
  10603. .mb-xxl-0 {
  10604. margin-bottom: 0 !important
  10605. }
  10606. .mb-xxl-1 {
  10607. margin-bottom: .25rem !important
  10608. }
  10609. .mb-xxl-2 {
  10610. margin-bottom: .5rem !important
  10611. }
  10612. .mb-xxl-3 {
  10613. margin-bottom: 1rem !important
  10614. }
  10615. .mb-xxl-4 {
  10616. margin-bottom: 1.5rem !important
  10617. }
  10618. .mb-xxl-5 {
  10619. margin-bottom: 3rem !important
  10620. }
  10621. .mb-xxl-auto {
  10622. margin-bottom: auto !important
  10623. }
  10624. .ms-xxl-0 {
  10625. margin-left: 0 !important
  10626. }
  10627. .ms-xxl-1 {
  10628. margin-left: .25rem !important
  10629. }
  10630. .ms-xxl-2 {
  10631. margin-left: .5rem !important
  10632. }
  10633. .ms-xxl-3 {
  10634. margin-left: 1rem !important
  10635. }
  10636. .ms-xxl-4 {
  10637. margin-left: 1.5rem !important
  10638. }
  10639. .ms-xxl-5 {
  10640. margin-left: 3rem !important
  10641. }
  10642. .ms-xxl-auto {
  10643. margin-left: auto !important
  10644. }
  10645. .p-xxl-0 {
  10646. padding: 0 !important
  10647. }
  10648. .p-xxl-1 {
  10649. padding: .25rem !important
  10650. }
  10651. .p-xxl-2 {
  10652. padding: .5rem !important
  10653. }
  10654. .p-xxl-3 {
  10655. padding: 1rem !important
  10656. }
  10657. .p-xxl-4 {
  10658. padding: 1.5rem !important
  10659. }
  10660. .p-xxl-5 {
  10661. padding: 3rem !important
  10662. }
  10663. .px-xxl-0 {
  10664. padding-right: 0 !important;
  10665. padding-left: 0 !important
  10666. }
  10667. .px-xxl-1 {
  10668. padding-right: .25rem !important;
  10669. padding-left: .25rem !important
  10670. }
  10671. .px-xxl-2 {
  10672. padding-right: .5rem !important;
  10673. padding-left: .5rem !important
  10674. }
  10675. .px-xxl-3 {
  10676. padding-right: 1rem !important;
  10677. padding-left: 1rem !important
  10678. }
  10679. .px-xxl-4 {
  10680. padding-right: 1.5rem !important;
  10681. padding-left: 1.5rem !important
  10682. }
  10683. .px-xxl-5 {
  10684. padding-right: 3rem !important;
  10685. padding-left: 3rem !important
  10686. }
  10687. .py-xxl-0 {
  10688. padding-top: 0 !important;
  10689. padding-bottom: 0 !important
  10690. }
  10691. .py-xxl-1 {
  10692. padding-top: .25rem !important;
  10693. padding-bottom: .25rem !important
  10694. }
  10695. .py-xxl-2 {
  10696. padding-top: .5rem !important;
  10697. padding-bottom: .5rem !important
  10698. }
  10699. .py-xxl-3 {
  10700. padding-top: 1rem !important;
  10701. padding-bottom: 1rem !important
  10702. }
  10703. .py-xxl-4 {
  10704. padding-top: 1.5rem !important;
  10705. padding-bottom: 1.5rem !important
  10706. }
  10707. .py-xxl-5 {
  10708. padding-top: 3rem !important;
  10709. padding-bottom: 3rem !important
  10710. }
  10711. .pt-xxl-0 {
  10712. padding-top: 0 !important
  10713. }
  10714. .pt-xxl-1 {
  10715. padding-top: .25rem !important
  10716. }
  10717. .pt-xxl-2 {
  10718. padding-top: .5rem !important
  10719. }
  10720. .pt-xxl-3 {
  10721. padding-top: 1rem !important
  10722. }
  10723. .pt-xxl-4 {
  10724. padding-top: 1.5rem !important
  10725. }
  10726. .pt-xxl-5 {
  10727. padding-top: 3rem !important
  10728. }
  10729. .pe-xxl-0 {
  10730. padding-right: 0 !important
  10731. }
  10732. .pe-xxl-1 {
  10733. padding-right: .25rem !important
  10734. }
  10735. .pe-xxl-2 {
  10736. padding-right: .5rem !important
  10737. }
  10738. .pe-xxl-3 {
  10739. padding-right: 1rem !important
  10740. }
  10741. .pe-xxl-4 {
  10742. padding-right: 1.5rem !important
  10743. }
  10744. .pe-xxl-5 {
  10745. padding-right: 3rem !important
  10746. }
  10747. .pb-xxl-0 {
  10748. padding-bottom: 0 !important
  10749. }
  10750. .pb-xxl-1 {
  10751. padding-bottom: .25rem !important
  10752. }
  10753. .pb-xxl-2 {
  10754. padding-bottom: .5rem !important
  10755. }
  10756. .pb-xxl-3 {
  10757. padding-bottom: 1rem !important
  10758. }
  10759. .pb-xxl-4 {
  10760. padding-bottom: 1.5rem !important
  10761. }
  10762. .pb-xxl-5 {
  10763. padding-bottom: 3rem !important
  10764. }
  10765. .ps-xxl-0 {
  10766. padding-left: 0 !important
  10767. }
  10768. .ps-xxl-1 {
  10769. padding-left: .25rem !important
  10770. }
  10771. .ps-xxl-2 {
  10772. padding-left: .5rem !important
  10773. }
  10774. .ps-xxl-3 {
  10775. padding-left: 1rem !important
  10776. }
  10777. .ps-xxl-4 {
  10778. padding-left: 1.5rem !important
  10779. }
  10780. .ps-xxl-5 {
  10781. padding-left: 3rem !important
  10782. }
  10783. .gap-xxl-0 {
  10784. gap: 0 !important
  10785. }
  10786. .gap-xxl-1 {
  10787. gap: .25rem !important
  10788. }
  10789. .gap-xxl-2 {
  10790. gap: .5rem !important
  10791. }
  10792. .gap-xxl-3 {
  10793. gap: 1rem !important
  10794. }
  10795. .gap-xxl-4 {
  10796. gap: 1.5rem !important
  10797. }
  10798. .gap-xxl-5 {
  10799. gap: 3rem !important
  10800. }
  10801. .row-gap-xxl-0 {
  10802. row-gap: 0 !important
  10803. }
  10804. .row-gap-xxl-1 {
  10805. row-gap: .25rem !important
  10806. }
  10807. .row-gap-xxl-2 {
  10808. row-gap: .5rem !important
  10809. }
  10810. .row-gap-xxl-3 {
  10811. row-gap: 1rem !important
  10812. }
  10813. .row-gap-xxl-4 {
  10814. row-gap: 1.5rem !important
  10815. }
  10816. .row-gap-xxl-5 {
  10817. row-gap: 3rem !important
  10818. }
  10819. .column-gap-xxl-0 {
  10820. -moz-column-gap: 0 !important;
  10821. column-gap: 0 !important
  10822. }
  10823. .column-gap-xxl-1 {
  10824. -moz-column-gap: 0.25rem !important;
  10825. column-gap: .25rem !important
  10826. }
  10827. .column-gap-xxl-2 {
  10828. -moz-column-gap: 0.5rem !important;
  10829. column-gap: .5rem !important
  10830. }
  10831. .column-gap-xxl-3 {
  10832. -moz-column-gap: 1rem !important;
  10833. column-gap: 1rem !important
  10834. }
  10835. .column-gap-xxl-4 {
  10836. -moz-column-gap: 1.5rem !important;
  10837. column-gap: 1.5rem !important
  10838. }
  10839. .column-gap-xxl-5 {
  10840. -moz-column-gap: 3rem !important;
  10841. column-gap: 3rem !important
  10842. }
  10843. .text-xxl-start {
  10844. text-align: left !important
  10845. }
  10846. .text-xxl-end {
  10847. text-align: right !important
  10848. }
  10849. .text-xxl-center {
  10850. text-align: center !important
  10851. }
  10852. }
  10853. @media (min-width: 1200px) {
  10854. .fs-1 {
  10855. font-size: 2.5rem !important
  10856. }
  10857. .fs-2 {
  10858. font-size: 2rem !important
  10859. }
  10860. .fs-3 {
  10861. font-size: 1.75rem !important
  10862. }
  10863. .fs-4 {
  10864. font-size: 1.5rem !important
  10865. }
  10866. }
  10867. @media print {
  10868. .d-print-inline {
  10869. display: inline !important
  10870. }
  10871. .d-print-inline-block {
  10872. display: inline-block !important
  10873. }
  10874. .d-print-block {
  10875. display: block !important
  10876. }
  10877. .d-print-grid {
  10878. display: grid !important
  10879. }
  10880. .d-print-inline-grid {
  10881. display: inline-grid !important
  10882. }
  10883. .d-print-table {
  10884. display: table !important
  10885. }
  10886. .d-print-table-row {
  10887. display: table-row !important
  10888. }
  10889. .d-print-table-cell {
  10890. display: table-cell !important
  10891. }
  10892. .d-print-flex {
  10893. display: flex !important
  10894. }
  10895. .d-print-inline-flex {
  10896. display: inline-flex !important
  10897. }
  10898. .d-print-none {
  10899. display: none !important
  10900. }
  10901. }
  10902. /*# sourceMappingURL=bootstrap.min.css.map */
  10903. </style>
  10904. <div class="p-5 h-100 container d-flex justify-content-center align-items-center flex-column text-sm-center">
  10905. <h1 class="display-1 " style="font-size: 3.625rem">哈喽👋</h1>
  10906. <p>你在伴奏网网站上传的音频《{song_name}》已经处理完毕,快来下载吧!<br/><br/>
  10907. <a href="{href_link}" class="d-block">链接如此</a>
  10908. <br/>
  10909. 与其他网站不一样,本邮件发送邮箱真的有个伞兵在后面!
  10910. <br/>
  10911. 请随意骚扰!
  10912. </p>
  10913. <footer class="bottom-0 position-fixed mb-5">
  10914. ©Andy Xie Creativity Workgroup 2024
  10915. </footer>
  10916. </div>